From 5f343ad2d3c974a61f497a8a3ddf920fe200309f Mon Sep 17 00:00:00 2001 From: hl-valdemar Date: Wed, 22 Jul 2026 00:37:48 +0200 Subject: [PATCH] unify catch fallback value sources --- LANGUAGE.md | 2 +- TODO.md | 5 + compiler/checker/checker.odin | 47 +- compiler/checker/comptime.odin | 8 +- compiler/lower/lower.odin | 8 +- compiler/parser/parser.odin | 22 +- compiler_tests.odin | 66 + tree-sitter-brolang/grammar.js | 21 +- tree-sitter-brolang/src/grammar.json | 217 +- tree-sitter-brolang/src/node-types.json | 40 +- tree-sitter-brolang/src/parser.c | 1372165 +++++++++++++----- tree-sitter-brolang/test/corpus/catch.txt | 110 + 12 files changed, 1048397 insertions(+), 324314 deletions(-) create mode 100644 tree-sitter-brolang/test/corpus/catch.txt diff --git a/LANGUAGE.md b/LANGUAGE.md index 98bbe58..abe90bc 100644 --- a/LANGUAGE.md +++ b/LANGUAGE.md @@ -102,7 +102,7 @@ fields. `_` is not a keyword member name. - bare void `return`, same-line `return value`, value blocks, value `if` with implicit single-expression branches, value loops, value `match`, and strictly value-producing `yield value` / `yield :label value` - `match` statements/expressions over enums, tagged unions, and scalars, including exhaustiveness checks, payload captures, pointer payload captures, multi-pattern arms, and scalar range patterns - a final `expand |value|:` enum arm or `expand |payload[, tag]|:` tagged-union arm generates one specialized arm for each variant not covered earlier; enum values and optional tags are comptime-known, while union payloads keep their concrete variant type -- fallible `try`, fallback `catch`, and `catch |e| { ... }` handler blocks +- fallible `try` and uniform `catch [|e|] value_source` fallbacks; captures work with ordinary expressions, value blocks, and value-producing `if` / loops / `match` - direct `return match ...` and `yield match ...` value-control-flow operands #### bitwise operations diff --git a/TODO.md b/TODO.md index 296a854..9ea4cf0 100644 --- a/TODO.md +++ b/TODO.md @@ -955,6 +955,11 @@ - `noreturn` expressions coerce to any expected value type and terminate path analysis - `unreachable` always traps at runtime and reports an error during comptime evaluation +49. unify catch fallback value sources (implemented) + - `expr catch [|error|] value_source` uses the same ordinary expression, value block, and + value-producing control-flow forms with or without an error capture + - void fallthrough and diverging `noreturn` fallbacks remain valid + ## A word on unchecked casts For casts that bypass safety checks, Honey provides builtin functions: diff --git a/compiler/checker/checker.odin b/compiler/checker/checker.odin index 64298f1..dbc33c9 100644 --- a/compiler/checker/checker.odin +++ b/compiler/checker/checker.odin @@ -4737,23 +4737,21 @@ infer_compound_expr :: proc( value := infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types, left_expected) success := types.fallible_success(value, store) error_type := types.fallible_error(value, store) + fallback_locals: [dynamic]Infer_Local + fallback_locals.allocator = checker.allocator + defer delete(fallback_locals) + append(&fallback_locals, ..locals) + if symbol.is_valid(expr.name) && expr.name != checker.sink_symbol && types.is_valid(error_type) { + append(&fallback_locals, Infer_Local{name=expr.name, type=error_type, declared=error_type, statement=ast.INVALID_STMT}) + } if expr.right != ast.INVALID_EXPR { - fallback := infer_nested_expr(checker, expr.right, locals, pkg, file, demanded, local_types) + fallback := infer_nested_expr(checker, expr.right, fallback_locals[:], pkg, file, demanded, local_types) if types.is_valid(success) && types.is_valid(fallback) && !types.equal(success, fallback) { return types.widest(success, fallback) } return success if types.is_valid(success) else fallback } - block_locals: [dynamic]Infer_Local - block_locals.allocator = checker.allocator - defer delete(block_locals) - append(&block_locals, ..locals) - capture_start := len(block_locals) - if symbol.is_valid(expr.name) && expr.name != checker.sink_symbol && types.is_valid(error_type) { - append(&block_locals, Infer_Local{name=expr.name, type=error_type, declared=error_type, statement=ast.INVALID_STMT}) - } - infer_statements(checker, expr.body, &block_locals, local_types, pkg, file, demanded, &success, success) - resize(&block_locals, capture_start) + infer_statements(checker, expr.body, &fallback_locals, local_types, pkg, file, demanded, &success, success) return success case .Struct_Literal: value := types.INVALID @@ -8139,26 +8137,37 @@ build_compound_expr :: proc( block_handler := false void_fallthrough := false fallback := hir.INVALID_EXPR + ctx := checker.current_build_ctx + capture_start := 0 + if symbol.is_valid(expr.name) && expr.name != checker.sink_symbol { + if ctx == nil { + id := source.add(checker.diagnostics, expr.span, "a captured catch fallback is only valid in a function body") + return invalid_hir_expr(checker, expr.span, id, success) + } + capture_start = len(ctx.locals^) + error_type := types.fallible_error(channel_type, store) + capture = append_build_local(ctx, expr.name, error_type, false, expr.span) + } if expr.right != ast.INVALID_EXPR { - fallback = build_nested_expr(checker, expr.right, locals, global_reads, calls, success, pkg, file) + fallback_locals := locals + if capture != hir.INVALID_LOCAL { + fallback_locals = ctx.locals^[:] + } + fallback = build_nested_expr(checker, expr.right, fallback_locals, global_reads, calls, success, pkg, file) fallback = coerce_expr(checker, fallback, success, checker.module.exprs[fallback].span) } else { block_handler = true - ctx := checker.current_build_ctx if ctx == nil { id := source.add(checker.diagnostics, expr.span, "catch block form is only valid in a function body") return invalid_hir_expr(checker, expr.span, id, success) } - capture_start := len(ctx.locals^) - error_type := types.fallible_error(channel_type, store) - if symbol.is_valid(expr.name) && expr.name != checker.sink_symbol { - capture = append_build_local(ctx, expr.name, error_type, false, expr.span) - } handler: [dynamic]hir.Stmt_Id handler.allocator = checker.allocator - fallback, _ = build_value_source(ctx, &handler, expr.body, success, expr.span, allow_exit=true) + fallback, _ = build_value_source(ctx, &handler, expr.body, success, expr.span, value_control_flow=expr.integer != 0, allow_exit=true) void_fallthrough = fallback == hir.INVALID_EXPR && !all_paths_exit(&checker.module, handler[:]) body = handler[:] + } + if capture != hir.INVALID_LOCAL { resize(ctx.locals, capture_start) } catch_mode := hir.CATCH_EXPRESSION diff --git a/compiler/checker/comptime.odin b/compiler/checker/comptime.odin index 57aeb91..41d1b01 100644 --- a/compiler/checker/comptime.odin +++ b/compiler/checker/comptime.odin @@ -3763,14 +3763,16 @@ ct_eval_catch_expr :: proc(state: ^Ct_State, expr: ast.Expr, expected: types.Typ if value.active == 0 { return payload, ct_flow(.Normal), true } - if expr.right != ast.INVALID_EXPR { - return ct_eval_expr(state, expr.right, success, depth+1) - } scope_start := len(state.bindings) if symbol.is_valid(expr.name) && expr.name != checker.sink_symbol && payload != INVALID_CT_VALUE { error_type := types.fallible_error(value.type, &checker.module.types) ct_bind_value(state, expr.name, error_type, payload, false) } + if expr.right != ast.INVALID_EXPR { + result, result_flow, result_ok := ct_eval_expr(state, expr.right, success, depth+1) + ct_pop_bindings(state, scope_start) + return result, result_flow, result_ok + } handler, handler_ok := ct_exec_statements(state, expr.body, true, depth+1) ct_pop_bindings(state, scope_start) if !handler_ok { diff --git a/compiler/lower/lower.odin b/compiler/lower/lower.odin index 270c8c1..33ad731 100644 --- a/compiler/lower/lower.odin +++ b/compiler/lower/lower.odin @@ -468,9 +468,8 @@ lower_compound_expr :: proc(state: ^State, expr_id: hir.Expr_Id) -> ir.Instructi diagnostic=source.INVALID_DIAGNOSTIC, }) } else { - if expr.integer != hir.CATCH_EXPRESSION { - capture := hir.as_local(expr.target) - if capture != hir.INVALID_LOCAL && int(capture) < len(state.func_locals) { + capture := hir.as_local(expr.target) + if capture != hir.INVALID_LOCAL && int(capture) < len(state.func_locals) { error_type := state.func_locals[capture].type error_value := append_instruction(state, ir.Instruction{ op=.Fallible_Error, span=expr.span, type=error_type, @@ -489,7 +488,8 @@ lower_compound_expr :: proc(state: ^State, expr_id: hir.Expr_Id) -> ir.Instructi target=ir.INVALID_REF, a=capture_slot, b=error_value, diagnostic=source.INVALID_DIAGNOSTIC, }) - } + } + if expr.integer != hir.CATCH_EXPRESSION { lower_statements(state, expr.body) if expr.integer == hir.CATCH_VOID_FALLTHROUGH { append_instruction(state, ir.Instruction{ diff --git a/compiler/parser/parser.odin b/compiler/parser/parser.odin index 0d22999..c7e29d5 100644 --- a/compiler/parser/parser.odin +++ b/compiler/parser/parser.odin @@ -1470,8 +1470,9 @@ parse_expression_bp :: proc(parser: ^Parser, minimum_binding_power, nesting: int skip_newlines(parser) if operator.kind == .Keyword_Catch { left_expr := parser.module.exprs[left] + capture := token.Token{} if _, pipe_ok := allow(parser, .Pipe); pipe_ok { - capture := current(parser) + capture = current(parser) if capture.kind != .Identifier && capture.kind != .Underscore { source.add(parser.diagnostics, capture.span, "expected a catch capture name") } else { @@ -1480,6 +1481,9 @@ parse_expression_bp :: proc(parser: ^Parser, minimum_binding_power, nesting: int if _, close_ok := allow(parser, .Pipe); !close_ok { source.add(parser.diagnostics, current(parser).span, "expected '|' after catch capture") } + skip_newlines(parser) + } + if current(parser).kind == .Left_Brace { body := parse_block(parser) end := previous(parser) left = add_expr(parser, ast.Expr{ @@ -1493,11 +1497,27 @@ parse_expression_bp :: proc(parser: ^Parser, minimum_binding_power, nesting: int }) continue } + if cf, is_cf := parse_value_control_flow(parser); is_cf { + body := make([]ast.Stmt_Id, 1, parser.module.allocator) + body[0] = cf + left = add_expr(parser, ast.Expr{ + kind=.Catch, + span=span_from(left_expr.span, parser.module.statements[cf].span), + name=capture.symbol, + left=left, + right=ast.INVALID_EXPR, + body=body, + integer=1, + diagnostic=source.INVALID_DIAGNOSTIC, + }) + continue + } right := parse_expression_bp(parser, right_power, nesting+1) right_expr := parser.module.exprs[right] left = add_expr(parser, ast.Expr{ kind=.Catch, span=span_from(left_expr.span, right_expr.span), + name=capture.symbol, left=left, right=right, diagnostic=source.INVALID_DIAGNOSTIC, diff --git a/compiler_tests.odin b/compiler_tests.odin index 8fc0709..c001710 100644 --- a/compiler_tests.odin +++ b/compiler_tests.odin @@ -6097,6 +6097,72 @@ main func() i32 { testing.expect_value(t, state.exit_code, 0) } +@(test) +catch_fallback_value_sources_compile_and_run :: proc(t: ^testing.T) { + text := `Failure :: enum { + bad + worse +} +value func(fail bool, worse bool) i32 ! Failure { + if fail { + if worse { return .worse } + return .bad + } + return 10 +} +void_value func(fail bool) void ! Failure { + if fail { return .bad } +} +capture_score func(err Failure) i32 { + return match err { + .bad: 1 + .worse: 2 + } +} +consume func(err Failure) void { _ = err } +comptime_recovery func() i32 { + return value(true, false) catch |err| capture_score(err) +} +main func() i32 { + a :: value(true, false) catch 3 + b :: value(true, false) catch |err| capture_score(err) + c :: value(true, true) catch |err| match err { + .bad: 4 + .worse: 5 + } + d :: value(true, false) catch if true { + yield 6 + } else { + yield 7 + } + e :: value(true, false) catch { + yield 8 + } + f :: value(true, false) catch |err| { + _ = err + yield 9 + } + g :: value(false, false) catch unreachable + h :: value(false, false) catch |_| unreachable + void_value(true) catch |err| consume(err) + void_value(false) catch {} + ct i32 :: $comptime_recovery() + return a + b + c + d + e + f + g + h + ct - 53 +} +` + directory := "/tmp/brolang-test-catch-value-sources" + main_path := "/tmp/brolang-test-catch-value-sources/main.bro" + output := "/tmp/brolang-test-catch-value-sources-output" + _ = os2.remove_all(directory) + defer _ = os2.remove_all(directory) + defer _ = os.remove(output) + testing.expect(t, os.make_directory(directory) == nil) + testing.expect(t, os.write_entire_file(main_path, transmute([]byte)text)) + testing.expect_value(t, compiler_core.compile_package(directory, output), 0) + state := run_executable(output) + testing.expect_value(t, state.exit_code, 0) +} + @(test) fallible_void_fallthrough_compiles_at_runtime_and_comptime :: proc(t: ^testing.T) { text := `Failure :: enum { diff --git a/tree-sitter-brolang/grammar.js b/tree-sitter-brolang/grammar.js index 6004415..1a70d5e 100644 --- a/tree-sitter-brolang/grammar.js +++ b/tree-sitter-brolang/grammar.js @@ -33,6 +33,8 @@ module.exports = grammar({ [$.array_type, $.expression], [$.array_type, $.array_literal], [$.expression_statement, $.parenthesized_expression], + [$.assignment_statement, $.expression_statement], + [$.labeled_block, $.expression], [$.block, $.tuple_literal, $.anonymous_record_literal], [$.field_initializer, $.expression], [$.capture_list, $.expression], @@ -310,8 +312,8 @@ module.exports = grammar({ field('value', $._value), ), - break_statement: $ => seq('break', optional(seq(':', field('label', $.identifier)))), - continue_statement: $ => seq('continue', optional(seq(':', field('label', $.identifier)))), + break_statement: $ => prec.right(seq('break', optional(seq(':', field('label', $.identifier))))), + continue_statement: $ => prec.right(seq('continue', optional(seq(':', field('label', $.identifier))))), defer_statement: $ => choice( seq('defer', repeat($._newline), field('body', $.statement)), @@ -468,7 +470,7 @@ module.exports = grammar({ binary_expression: $ => choice( prec.left(PREC.RANGE, seq(field('left', $.expression), field('operator', choice('..', '..=')), repeat($._newline), field('right', $.expression))), - prec.left(PREC.FALLBACK, seq(field('left', $.expression), field('operator', choice('orelse', 'catch')), repeat($._newline), field('right', $.expression))), + prec.left(PREC.FALLBACK, seq(field('left', $.expression), field('operator', 'orelse'), repeat($._newline), field('right', $.expression))), prec.left(PREC.OR, seq(field('left', $.expression), 'or', repeat($._newline), field('right', $.expression))), prec.left(PREC.AND, seq(field('left', $.expression), 'and', repeat($._newline), field('right', $.expression))), prec.left(PREC.COMPARE, seq(field('left', $.expression), field('operator', choice('==', '!=', '<', '<=', '>', '>=')), repeat($._newline), field('right', $.expression))), @@ -481,11 +483,16 @@ module.exports = grammar({ catch_expression: $ => prec.left(PREC.FALLBACK, seq( field('value', $.expression), 'catch', - '|', - field('name', choice($.identifier, $.sink)), - '|', + optional(field('capture', $.error_capture)), repeat($._newline), - field('body', $.block), + field('fallback', choice( + $.block, + $.if_statement, + $.while_statement, + $.for_statement, + $.match_statement, + $.expression, + )), )), unary_expression: $ => prec(PREC.PREFIX, seq( diff --git a/tree-sitter-brolang/src/grammar.json b/tree-sitter-brolang/src/grammar.json index 807d927..90af61b 100644 --- a/tree-sitter-brolang/src/grammar.json +++ b/tree-sitter-brolang/src/grammar.json @@ -2072,72 +2072,80 @@ ] }, "break_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "break" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } }, "continue_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "continue" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "continue" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } }, "defer_statement": { "type": "CHOICE", @@ -3299,17 +3307,8 @@ "type": "FIELD", "name": "operator", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "orelse" - }, - { - "type": "STRING", - "value": "catch" - } - ] + "type": "STRING", + "value": "orelse" } }, { @@ -3692,29 +3691,20 @@ "value": "catch" }, { - "type": "STRING", - "value": "|" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "capture", + "content": { "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "sink" + "name": "error_capture" } - ] - } - }, - { - "type": "STRING", - "value": "|" + }, + { + "type": "BLANK" + } + ] }, { "type": "REPEAT", @@ -3725,10 +3715,35 @@ }, { "type": "FIELD", - "name": "body", + "name": "fallback", "content": { - "type": "SYMBOL", - "name": "block" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "match_statement" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] } } ] @@ -5481,6 +5496,14 @@ "expression_statement", "parenthesized_expression" ], + [ + "assignment_statement", + "expression_statement" + ], + [ + "labeled_block", + "expression" + ], [ "block", "tuple_literal", diff --git a/tree-sitter-brolang/src/node-types.json b/tree-sitter-brolang/src/node-types.json index be9bc62..079780c 100644 --- a/tree-sitter-brolang/src/node-types.json +++ b/tree-sitter-brolang/src/node-types.json @@ -290,10 +290,6 @@ "type": ">>", "named": false }, - { - "type": "catch", - "named": false - }, { "type": "orelse", "named": false @@ -436,26 +432,42 @@ "type": "catch_expression", "named": true, "fields": { - "body": { + "capture": { + "multiple": false, + "required": false, + "types": [ + { + "type": "error_capture", + "named": true + } + ] + }, + "fallback": { "multiple": false, "required": true, "types": [ { "type": "block", "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "identifier", + "type": "expression", "named": true }, { - "type": "sink", + "type": "for_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "match_statement", + "named": true + }, + { + "type": "while_statement", "named": true } ] diff --git a/tree-sitter-brolang/src/parser.c b/tree-sitter-brolang/src/parser.c index 8d313c3..92edbb4 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 5296 -#define LARGE_STATE_COUNT 2413 +#define STATE_COUNT 16163 +#define LARGE_STATE_COUNT 7590 #define SYMBOL_COUNT 233 #define ALIAS_COUNT 0 #define TOKEN_COUNT 131 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 40 +#define FIELD_COUNT 41 #define MAX_ALIAS_SEQUENCE_LENGTH 16 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 383 +#define PRODUCTION_ID_COUNT 385 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -115,22 +115,22 @@ enum ts_symbol_identifiers { anon_sym_DOT_DOT = 93, anon_sym_DOT_DOT_EQ = 94, anon_sym_orelse = 95, - anon_sym_catch = 96, - anon_sym_or = 97, - anon_sym_and = 98, - anon_sym_EQ_EQ = 99, - anon_sym_BANG_EQ = 100, - anon_sym_LT = 101, - anon_sym_LT_EQ = 102, - anon_sym_GT = 103, - anon_sym_GT_EQ = 104, - anon_sym_AMP = 105, - anon_sym_xor = 106, - anon_sym_LT_LT = 107, - anon_sym_GT_GT = 108, - anon_sym_LT_LT_PIPE = 109, - anon_sym_PLUS = 110, - anon_sym_SLASH = 111, + anon_sym_or = 96, + anon_sym_and = 97, + anon_sym_EQ_EQ = 98, + anon_sym_BANG_EQ = 99, + anon_sym_LT = 100, + anon_sym_LT_EQ = 101, + anon_sym_GT = 102, + anon_sym_GT_EQ = 103, + anon_sym_AMP = 104, + anon_sym_xor = 105, + anon_sym_LT_LT = 106, + anon_sym_GT_GT = 107, + anon_sym_LT_LT_PIPE = 108, + anon_sym_PLUS = 109, + anon_sym_SLASH = 110, + anon_sym_catch = 111, anon_sym_TILDE = 112, anon_sym_try = 113, anon_sym_DOT = 114, @@ -351,7 +351,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOT_DOT] = "..", [anon_sym_DOT_DOT_EQ] = "..=", [anon_sym_orelse] = "orelse", - [anon_sym_catch] = "catch", [anon_sym_or] = "or", [anon_sym_and] = "and", [anon_sym_EQ_EQ] = "==", @@ -367,6 +366,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT_LT_PIPE] = "<<|", [anon_sym_PLUS] = "+", [anon_sym_SLASH] = "/", + [anon_sym_catch] = "catch", [anon_sym_TILDE] = "~", [anon_sym_try] = "try", [anon_sym_DOT] = ".", @@ -587,7 +587,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_DOT_DOT_EQ] = anon_sym_DOT_DOT_EQ, [anon_sym_orelse] = anon_sym_orelse, - [anon_sym_catch] = anon_sym_catch, [anon_sym_or] = anon_sym_or, [anon_sym_and] = anon_sym_and, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, @@ -603,6 +602,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT_LT_PIPE] = anon_sym_LT_LT_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_catch] = anon_sym_catch, [anon_sym_TILDE] = anon_sym_TILDE, [anon_sym_try] = anon_sym_try, [anon_sym_DOT] = anon_sym_DOT, @@ -1111,10 +1111,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_catch] = { - .visible = true, - .named = false, - }, [anon_sym_or] = { .visible = true, .named = false, @@ -1175,6 +1171,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_catch] = { + .visible = true, + .named = false, + }, [anon_sym_TILDE] = { .visible = true, .named = false, @@ -1674,34 +1674,35 @@ enum ts_field_identifiers { 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, + field_fallback = 13, + field_field = 14, + field_fields = 15, + field_function = 16, + field_guard = 17, + field_index = 18, + field_item = 19, + field_iterable = 20, + field_kind = 21, + field_label = 22, + field_left = 23, + field_length = 24, + field_marker = 25, + field_name = 26, + field_operand = 27, + field_operator = 28, + field_parameters = 29, + field_path = 30, + field_pattern = 31, + field_qualifier = 32, + field_result = 33, + field_right = 34, + field_sentinel = 35, + field_start = 36, + field_subject = 37, + field_tag = 38, + field_type = 39, + field_update = 40, + field_value = 41, }; static const char * const ts_field_names[] = { @@ -1718,6 +1719,7 @@ static const char * const ts_field_names[] = { [field_element] = "element", [field_end] = "end", [field_error] = "error", + [field_fallback] = "fallback", [field_field] = "field", [field_fields] = "fields", [field_function] = "function", @@ -1788,348 +1790,350 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [38] = {.index = 67, .length = 2}, [39] = {.index = 69, .length = 2}, [40] = {.index = 71, .length = 2}, - [41] = {.index = 73, .length = 5}, - [42] = {.index = 78, .length = 1}, - [43] = {.index = 79, .length = 4}, - [44] = {.index = 83, .length = 1}, - [45] = {.index = 84, .length = 2}, - [46] = {.index = 86, .length = 3}, - [47] = {.index = 89, .length = 5}, - [48] = {.index = 94, .length = 4}, - [49] = {.index = 98, .length = 3}, - [50] = {.index = 101, .length = 2}, - [51] = {.index = 103, .length = 1}, - [52] = {.index = 104, .length = 1}, - [53] = {.index = 105, .length = 2}, + [41] = {.index = 73, .length = 2}, + [42] = {.index = 75, .length = 5}, + [43] = {.index = 80, .length = 1}, + [44] = {.index = 81, .length = 4}, + [45] = {.index = 85, .length = 1}, + [46] = {.index = 86, .length = 2}, + [47] = {.index = 88, .length = 3}, + [48] = {.index = 91, .length = 5}, + [49] = {.index = 96, .length = 4}, + [50] = {.index = 100, .length = 3}, + [51] = {.index = 103, .length = 2}, + [52] = {.index = 105, .length = 1}, + [53] = {.index = 106, .length = 1}, [54] = {.index = 107, .length = 2}, [55] = {.index = 109, .length = 2}, [56] = {.index = 111, .length = 2}, [57] = {.index = 113, .length = 2}, - [58] = {.index = 115, .length = 1}, - [59] = {.index = 116, .length = 3}, - [60] = {.index = 119, .length = 1}, - [61] = {.index = 120, .length = 2}, + [58] = {.index = 115, .length = 2}, + [59] = {.index = 117, .length = 1}, + [60] = {.index = 118, .length = 3}, + [61] = {.index = 121, .length = 1}, [62] = {.index = 122, .length = 2}, [63] = {.index = 124, .length = 2}, - [64] = {.index = 126, .length = 2}, - [65] = {.index = 128, .length = 3}, + [64] = {.index = 126, .length = 3}, + [65] = {.index = 129, .length = 2}, [66] = {.index = 131, .length = 2}, [67] = {.index = 133, .length = 2}, - [68] = {.index = 135, .length = 5}, - [69] = {.index = 140, .length = 5}, - [70] = {.index = 145, .length = 5}, - [71] = {.index = 150, .length = 2}, - [72] = {.index = 152, .length = 2}, - [73] = {.index = 154, .length = 1}, - [74] = {.index = 155, .length = 2}, - [75] = {.index = 157, .length = 5}, - [76] = {.index = 162, .length = 5}, - [77] = {.index = 167, .length = 5}, - [78] = {.index = 172, .length = 2}, - [79] = {.index = 174, .length = 2}, - [80] = {.index = 176, .length = 1}, - [81] = {.index = 177, .length = 2}, - [82] = {.index = 179, .length = 2}, - [83] = {.index = 181, .length = 2}, - [84] = {.index = 183, .length = 2}, - [85] = {.index = 185, .length = 3}, + [68] = {.index = 135, .length = 3}, + [69] = {.index = 138, .length = 2}, + [70] = {.index = 140, .length = 2}, + [71] = {.index = 142, .length = 5}, + [72] = {.index = 147, .length = 5}, + [73] = {.index = 152, .length = 5}, + [74] = {.index = 157, .length = 2}, + [75] = {.index = 159, .length = 2}, + [76] = {.index = 161, .length = 1}, + [77] = {.index = 162, .length = 2}, + [78] = {.index = 164, .length = 5}, + [79] = {.index = 169, .length = 5}, + [80] = {.index = 174, .length = 5}, + [81] = {.index = 179, .length = 2}, + [82] = {.index = 181, .length = 2}, + [83] = {.index = 183, .length = 1}, + [84] = {.index = 184, .length = 2}, + [85] = {.index = 186, .length = 2}, [86] = {.index = 188, .length = 2}, - [87] = {.index = 190, .length = 3}, - [88] = {.index = 193, .length = 3}, - [89] = {.index = 196, .length = 2}, - [90] = {.index = 198, .length = 1}, - [91] = {.index = 199, .length = 2}, - [92] = {.index = 201, .length = 2}, - [93] = {.index = 203, .length = 2}, - [94] = {.index = 205, .length = 3}, - [95] = {.index = 208, .length = 1}, - [96] = {.index = 209, .length = 6}, - [97] = {.index = 215, .length = 2}, - [98] = {.index = 217, .length = 5}, - [99] = {.index = 222, .length = 5}, - [100] = {.index = 227, .length = 2}, - [101] = {.index = 229, .length = 2}, - [102] = {.index = 231, .length = 3}, - [103] = {.index = 234, .length = 2}, - [104] = {.index = 236, .length = 2}, - [105] = {.index = 238, .length = 1}, - [106] = {.index = 239, .length = 6}, - [107] = {.index = 245, .length = 5}, - [108] = {.index = 250, .length = 5}, - [109] = {.index = 255, .length = 3}, - [110] = {.index = 258, .length = 2}, - [111] = {.index = 260, .length = 3}, - [112] = {.index = 263, .length = 2}, + [87] = {.index = 190, .length = 2}, + [88] = {.index = 192, .length = 3}, + [89] = {.index = 195, .length = 2}, + [90] = {.index = 197, .length = 3}, + [91] = {.index = 200, .length = 3}, + [92] = {.index = 203, .length = 2}, + [93] = {.index = 205, .length = 1}, + [94] = {.index = 206, .length = 2}, + [95] = {.index = 208, .length = 2}, + [96] = {.index = 210, .length = 2}, + [97] = {.index = 212, .length = 3}, + [98] = {.index = 215, .length = 3}, + [99] = {.index = 218, .length = 1}, + [100] = {.index = 219, .length = 6}, + [101] = {.index = 225, .length = 2}, + [102] = {.index = 227, .length = 5}, + [103] = {.index = 232, .length = 5}, + [104] = {.index = 237, .length = 2}, + [105] = {.index = 239, .length = 2}, + [106] = {.index = 241, .length = 3}, + [107] = {.index = 244, .length = 2}, + [108] = {.index = 246, .length = 2}, + [109] = {.index = 248, .length = 1}, + [110] = {.index = 249, .length = 6}, + [111] = {.index = 255, .length = 5}, + [112] = {.index = 260, .length = 5}, [113] = {.index = 265, .length = 3}, - [114] = {.index = 268, .length = 3}, - [115] = {.index = 271, .length = 2}, - [116] = {.index = 273, .length = 3}, - [117] = {.index = 276, .length = 3}, - [118] = {.index = 279, .length = 3}, - [119] = {.index = 282, .length = 3}, - [120] = {.index = 285, .length = 3}, - [121] = {.index = 288, .length = 3}, - [122] = {.index = 291, .length = 3}, - [123] = {.index = 294, .length = 3}, - [124] = {.index = 297, .length = 2}, - [125] = {.index = 299, .length = 3}, - [126] = {.index = 302, .length = 2}, - [127] = {.index = 304, .length = 2}, - [128] = {.index = 306, .length = 3}, - [129] = {.index = 309, .length = 1}, - [130] = {.index = 310, .length = 6}, - [131] = {.index = 316, .length = 6}, - [132] = {.index = 322, .length = 2}, - [133] = {.index = 324, .length = 2}, - [134] = {.index = 326, .length = 3}, + [114] = {.index = 268, .length = 2}, + [115] = {.index = 270, .length = 3}, + [116] = {.index = 273, .length = 2}, + [117] = {.index = 275, .length = 3}, + [118] = {.index = 278, .length = 3}, + [119] = {.index = 281, .length = 2}, + [120] = {.index = 283, .length = 3}, + [121] = {.index = 286, .length = 3}, + [122] = {.index = 289, .length = 3}, + [123] = {.index = 292, .length = 3}, + [124] = {.index = 295, .length = 3}, + [125] = {.index = 298, .length = 3}, + [126] = {.index = 301, .length = 3}, + [127] = {.index = 304, .length = 3}, + [128] = {.index = 307, .length = 2}, + [129] = {.index = 309, .length = 3}, + [130] = {.index = 312, .length = 2}, + [131] = {.index = 314, .length = 2}, + [132] = {.index = 316, .length = 1}, + [133] = {.index = 317, .length = 6}, + [134] = {.index = 323, .length = 6}, [135] = {.index = 329, .length = 2}, - [136] = {.index = 331, .length = 3}, - [137] = {.index = 334, .length = 2}, - [138] = {.index = 336, .length = 6}, - [139] = {.index = 342, .length = 6}, - [140] = {.index = 348, .length = 3}, - [141] = {.index = 351, .length = 3}, - [142] = {.index = 354, .length = 3}, - [143] = {.index = 357, .length = 1}, + [136] = {.index = 331, .length = 2}, + [137] = {.index = 333, .length = 3}, + [138] = {.index = 336, .length = 2}, + [139] = {.index = 338, .length = 3}, + [140] = {.index = 341, .length = 2}, + [141] = {.index = 343, .length = 6}, + [142] = {.index = 349, .length = 6}, + [143] = {.index = 355, .length = 3}, [144] = {.index = 358, .length = 3}, [145] = {.index = 361, .length = 3}, - [146] = {.index = 364, .length = 3}, - [147] = {.index = 367, .length = 3}, - [148] = {.index = 370, .length = 3}, - [149] = {.index = 373, .length = 5}, - [150] = {.index = 378, .length = 4}, - [151] = {.index = 382, .length = 3}, - [152] = {.index = 385, .length = 3}, - [153] = {.index = 388, .length = 3}, - [154] = {.index = 391, .length = 3}, - [155] = {.index = 394, .length = 3}, - [156] = {.index = 397, .length = 3}, - [157] = {.index = 400, .length = 3}, - [158] = {.index = 403, .length = 3}, - [159] = {.index = 406, .length = 3}, - [160] = {.index = 409, .length = 2}, - [161] = {.index = 411, .length = 1}, - [162] = {.index = 412, .length = 3}, - [163] = {.index = 415, .length = 3}, - [164] = {.index = 418, .length = 3}, - [165] = {.index = 421, .length = 6}, - [166] = {.index = 427, .length = 2}, - [167] = {.index = 429, .length = 3}, - [168] = {.index = 432, .length = 2}, - [169] = {.index = 434, .length = 3}, - [170] = {.index = 437, .length = 6}, - [171] = {.index = 443, .length = 3}, - [172] = {.index = 446, .length = 1}, + [146] = {.index = 364, .length = 1}, + [147] = {.index = 365, .length = 3}, + [148] = {.index = 368, .length = 3}, + [149] = {.index = 371, .length = 3}, + [150] = {.index = 374, .length = 3}, + [151] = {.index = 377, .length = 3}, + [152] = {.index = 380, .length = 5}, + [153] = {.index = 385, .length = 4}, + [154] = {.index = 389, .length = 3}, + [155] = {.index = 392, .length = 3}, + [156] = {.index = 395, .length = 3}, + [157] = {.index = 398, .length = 3}, + [158] = {.index = 401, .length = 3}, + [159] = {.index = 404, .length = 3}, + [160] = {.index = 407, .length = 3}, + [161] = {.index = 410, .length = 3}, + [162] = {.index = 413, .length = 3}, + [163] = {.index = 416, .length = 2}, + [164] = {.index = 418, .length = 1}, + [165] = {.index = 419, .length = 3}, + [166] = {.index = 422, .length = 3}, + [167] = {.index = 425, .length = 6}, + [168] = {.index = 431, .length = 2}, + [169] = {.index = 433, .length = 3}, + [170] = {.index = 436, .length = 2}, + [171] = {.index = 438, .length = 3}, + [172] = {.index = 441, .length = 6}, [173] = {.index = 447, .length = 3}, - [174] = {.index = 450, .length = 3}, - [175] = {.index = 453, .length = 3}, - [176] = {.index = 456, .length = 3}, - [177] = {.index = 459, .length = 3}, - [178] = {.index = 462, .length = 5}, - [179] = {.index = 467, .length = 6}, - [180] = {.index = 473, .length = 4}, - [181] = {.index = 477, .length = 4}, - [182] = {.index = 481, .length = 5}, - [183] = {.index = 486, .length = 4}, - [184] = {.index = 490, .length = 5}, - [185] = {.index = 495, .length = 4}, - [186] = {.index = 499, .length = 3}, - [187] = {.index = 502, .length = 3}, - [188] = {.index = 505, .length = 3}, - [189] = {.index = 508, .length = 3}, - [190] = {.index = 511, .length = 3}, - [191] = {.index = 514, .length = 3}, - [192] = {.index = 517, .length = 4}, - [193] = {.index = 521, .length = 4}, - [194] = {.index = 525, .length = 3}, - [195] = {.index = 528, .length = 2}, - [196] = {.index = 530, .length = 1}, - [197] = {.index = 531, .length = 1}, - [198] = {.index = 532, .length = 3}, - [199] = {.index = 535, .length = 2}, - [200] = {.index = 537, .length = 3}, - [201] = {.index = 540, .length = 3}, - [202] = {.index = 543, .length = 3}, - [203] = {.index = 546, .length = 3}, - [204] = {.index = 549, .length = 6}, - [205] = {.index = 555, .length = 6}, - [206] = {.index = 561, .length = 7}, - [207] = {.index = 568, .length = 4}, - [208] = {.index = 572, .length = 5}, - [209] = {.index = 577, .length = 6}, - [210] = {.index = 583, .length = 4}, - [211] = {.index = 587, .length = 4}, - [212] = {.index = 591, .length = 5}, - [213] = {.index = 596, .length = 6}, - [214] = {.index = 602, .length = 4}, - [215] = {.index = 606, .length = 4}, - [216] = {.index = 610, .length = 5}, - [217] = {.index = 615, .length = 4}, - [218] = {.index = 619, .length = 3}, - [219] = {.index = 622, .length = 4}, - [220] = {.index = 626, .length = 4}, - [221] = {.index = 630, .length = 3}, - [222] = {.index = 633, .length = 3}, - [223] = {.index = 636, .length = 3}, - [224] = {.index = 639, .length = 4}, - [225] = {.index = 643, .length = 4}, - [226] = {.index = 647, .length = 4}, - [227] = {.index = 651, .length = 4}, - [228] = {.index = 655, .length = 4}, - [229] = {.index = 659, .length = 3}, - [230] = {.index = 662, .length = 2}, - [231] = {.index = 664, .length = 3}, - [232] = {.index = 667, .length = 3}, - [233] = {.index = 670, .length = 6}, - [234] = {.index = 676, .length = 6}, - [235] = {.index = 682, .length = 7}, - [236] = {.index = 689, .length = 7}, - [237] = {.index = 696, .length = 6}, - [238] = {.index = 702, .length = 6}, - [239] = {.index = 708, .length = 7}, - [240] = {.index = 715, .length = 4}, - [241] = {.index = 719, .length = 6}, - [242] = {.index = 725, .length = 6}, - [243] = {.index = 731, .length = 7}, - [244] = {.index = 738, .length = 4}, - [245] = {.index = 742, .length = 5}, - [246] = {.index = 747, .length = 6}, - [247] = {.index = 753, .length = 4}, - [248] = {.index = 757, .length = 4}, - [249] = {.index = 761, .length = 4}, - [250] = {.index = 765, .length = 4}, - [251] = {.index = 769, .length = 4}, - [252] = {.index = 773, .length = 4}, - [253] = {.index = 777, .length = 4}, - [254] = {.index = 781, .length = 3}, - [255] = {.index = 784, .length = 3}, - [256] = {.index = 787, .length = 4}, - [257] = {.index = 791, .length = 4}, - [258] = {.index = 795, .length = 3}, - [259] = {.index = 798, .length = 4}, - [260] = {.index = 802, .length = 4}, - [261] = {.index = 806, .length = 4}, - [262] = {.index = 810, .length = 5}, - [263] = {.index = 815, .length = 4}, - [264] = {.index = 819, .length = 4}, - [265] = {.index = 823, .length = 4}, - [266] = {.index = 827, .length = 2}, - [267] = {.index = 829, .length = 6}, - [268] = {.index = 835, .length = 7}, - [269] = {.index = 842, .length = 7}, - [270] = {.index = 849, .length = 8}, - [271] = {.index = 857, .length = 6}, - [272] = {.index = 863, .length = 6}, - [273] = {.index = 869, .length = 7}, - [274] = {.index = 876, .length = 7}, - [275] = {.index = 883, .length = 6}, - [276] = {.index = 889, .length = 6}, - [277] = {.index = 895, .length = 7}, - [278] = {.index = 902, .length = 7}, - [279] = {.index = 909, .length = 6}, - [280] = {.index = 915, .length = 6}, - [281] = {.index = 921, .length = 7}, - [282] = {.index = 928, .length = 4}, - [283] = {.index = 932, .length = 4}, - [284] = {.index = 936, .length = 4}, - [285] = {.index = 940, .length = 4}, - [286] = {.index = 944, .length = 5}, - [287] = {.index = 949, .length = 4}, - [288] = {.index = 953, .length = 4}, - [289] = {.index = 957, .length = 4}, - [290] = {.index = 961, .length = 4}, - [291] = {.index = 965, .length = 4}, - [292] = {.index = 969, .length = 4}, - [293] = {.index = 973, .length = 4}, - [294] = {.index = 977, .length = 4}, - [295] = {.index = 981, .length = 3}, - [296] = {.index = 984, .length = 5}, - [297] = {.index = 989, .length = 4}, - [298] = {.index = 993, .length = 5}, - [299] = {.index = 998, .length = 5}, - [300] = {.index = 1003, .length = 4}, - [301] = {.index = 1007, .length = 4}, - [302] = {.index = 1011, .length = 4}, - [303] = {.index = 1015, .length = 7}, - [304] = {.index = 1022, .length = 8}, - [305] = {.index = 1030, .length = 8}, - [306] = {.index = 1038, .length = 6}, - [307] = {.index = 1044, .length = 7}, - [308] = {.index = 1051, .length = 7}, - [309] = {.index = 1058, .length = 8}, - [310] = {.index = 1066, .length = 6}, - [311] = {.index = 1072, .length = 7}, - [312] = {.index = 1079, .length = 7}, - [313] = {.index = 1086, .length = 8}, - [314] = {.index = 1094, .length = 6}, - [315] = {.index = 1100, .length = 6}, - [316] = {.index = 1106, .length = 7}, - [317] = {.index = 1113, .length = 7}, - [318] = {.index = 1120, .length = 5}, - [319] = {.index = 1125, .length = 4}, - [320] = {.index = 1129, .length = 5}, - [321] = {.index = 1134, .length = 5}, - [322] = {.index = 1139, .length = 4}, - [323] = {.index = 1143, .length = 4}, - [324] = {.index = 1147, .length = 4}, - [325] = {.index = 1151, .length = 4}, - [326] = {.index = 1155, .length = 4}, - [327] = {.index = 1159, .length = 4}, - [328] = {.index = 1163, .length = 5}, - [329] = {.index = 1168, .length = 4}, - [330] = {.index = 1172, .length = 4}, - [331] = {.index = 1176, .length = 4}, - [332] = {.index = 1180, .length = 5}, - [333] = {.index = 1185, .length = 5}, - [334] = {.index = 1190, .length = 5}, - [335] = {.index = 1195, .length = 5}, - [336] = {.index = 1200, .length = 4}, - [337] = {.index = 1204, .length = 8}, - [338] = {.index = 1212, .length = 7}, - [339] = {.index = 1219, .length = 8}, - [340] = {.index = 1227, .length = 8}, - [341] = {.index = 1235, .length = 7}, - [342] = {.index = 1242, .length = 8}, - [343] = {.index = 1250, .length = 8}, - [344] = {.index = 1258, .length = 6}, - [345] = {.index = 1264, .length = 7}, - [346] = {.index = 1271, .length = 7}, - [347] = {.index = 1278, .length = 8}, - [348] = {.index = 1286, .length = 5}, - [349] = {.index = 1291, .length = 5}, - [350] = {.index = 1296, .length = 5}, - [351] = {.index = 1301, .length = 5}, - [352] = {.index = 1306, .length = 4}, - [353] = {.index = 1310, .length = 5}, - [354] = {.index = 1315, .length = 4}, - [355] = {.index = 1319, .length = 5}, - [356] = {.index = 1324, .length = 5}, - [357] = {.index = 1329, .length = 4}, - [358] = {.index = 1333, .length = 4}, - [359] = {.index = 1337, .length = 4}, - [360] = {.index = 1341, .length = 5}, - [361] = {.index = 1346, .length = 5}, - [362] = {.index = 1351, .length = 5}, - [363] = {.index = 1356, .length = 8}, - [364] = {.index = 1364, .length = 8}, - [365] = {.index = 1372, .length = 7}, - [366] = {.index = 1379, .length = 8}, - [367] = {.index = 1387, .length = 8}, - [368] = {.index = 1395, .length = 5}, - [369] = {.index = 1400, .length = 5}, - [370] = {.index = 1405, .length = 5}, - [371] = {.index = 1410, .length = 5}, - [372] = {.index = 1415, .length = 5}, - [373] = {.index = 1420, .length = 5}, - [374] = {.index = 1425, .length = 5}, - [375] = {.index = 1430, .length = 4}, - [376] = {.index = 1434, .length = 5}, - [377] = {.index = 1439, .length = 8}, - [378] = {.index = 1447, .length = 5}, - [379] = {.index = 1452, .length = 5}, - [380] = {.index = 1457, .length = 5}, - [381] = {.index = 1462, .length = 5}, - [382] = {.index = 1467, .length = 5}, + [174] = {.index = 450, .length = 1}, + [175] = {.index = 451, .length = 3}, + [176] = {.index = 454, .length = 3}, + [177] = {.index = 457, .length = 3}, + [178] = {.index = 460, .length = 3}, + [179] = {.index = 463, .length = 3}, + [180] = {.index = 466, .length = 5}, + [181] = {.index = 471, .length = 6}, + [182] = {.index = 477, .length = 4}, + [183] = {.index = 481, .length = 4}, + [184] = {.index = 485, .length = 5}, + [185] = {.index = 490, .length = 4}, + [186] = {.index = 494, .length = 5}, + [187] = {.index = 499, .length = 4}, + [188] = {.index = 503, .length = 3}, + [189] = {.index = 506, .length = 3}, + [190] = {.index = 509, .length = 3}, + [191] = {.index = 512, .length = 3}, + [192] = {.index = 515, .length = 3}, + [193] = {.index = 518, .length = 3}, + [194] = {.index = 521, .length = 4}, + [195] = {.index = 525, .length = 4}, + [196] = {.index = 529, .length = 3}, + [197] = {.index = 532, .length = 2}, + [198] = {.index = 534, .length = 1}, + [199] = {.index = 535, .length = 1}, + [200] = {.index = 536, .length = 3}, + [201] = {.index = 539, .length = 2}, + [202] = {.index = 541, .length = 3}, + [203] = {.index = 544, .length = 3}, + [204] = {.index = 547, .length = 3}, + [205] = {.index = 550, .length = 3}, + [206] = {.index = 553, .length = 6}, + [207] = {.index = 559, .length = 6}, + [208] = {.index = 565, .length = 7}, + [209] = {.index = 572, .length = 4}, + [210] = {.index = 576, .length = 5}, + [211] = {.index = 581, .length = 6}, + [212] = {.index = 587, .length = 4}, + [213] = {.index = 591, .length = 4}, + [214] = {.index = 595, .length = 5}, + [215] = {.index = 600, .length = 6}, + [216] = {.index = 606, .length = 4}, + [217] = {.index = 610, .length = 4}, + [218] = {.index = 614, .length = 5}, + [219] = {.index = 619, .length = 4}, + [220] = {.index = 623, .length = 3}, + [221] = {.index = 626, .length = 4}, + [222] = {.index = 630, .length = 4}, + [223] = {.index = 634, .length = 3}, + [224] = {.index = 637, .length = 3}, + [225] = {.index = 640, .length = 3}, + [226] = {.index = 643, .length = 4}, + [227] = {.index = 647, .length = 4}, + [228] = {.index = 651, .length = 4}, + [229] = {.index = 655, .length = 4}, + [230] = {.index = 659, .length = 4}, + [231] = {.index = 663, .length = 3}, + [232] = {.index = 666, .length = 2}, + [233] = {.index = 668, .length = 3}, + [234] = {.index = 671, .length = 3}, + [235] = {.index = 674, .length = 6}, + [236] = {.index = 680, .length = 6}, + [237] = {.index = 686, .length = 7}, + [238] = {.index = 693, .length = 7}, + [239] = {.index = 700, .length = 6}, + [240] = {.index = 706, .length = 6}, + [241] = {.index = 712, .length = 7}, + [242] = {.index = 719, .length = 4}, + [243] = {.index = 723, .length = 6}, + [244] = {.index = 729, .length = 6}, + [245] = {.index = 735, .length = 7}, + [246] = {.index = 742, .length = 4}, + [247] = {.index = 746, .length = 5}, + [248] = {.index = 751, .length = 6}, + [249] = {.index = 757, .length = 4}, + [250] = {.index = 761, .length = 4}, + [251] = {.index = 765, .length = 4}, + [252] = {.index = 769, .length = 4}, + [253] = {.index = 773, .length = 4}, + [254] = {.index = 777, .length = 4}, + [255] = {.index = 781, .length = 4}, + [256] = {.index = 785, .length = 3}, + [257] = {.index = 788, .length = 3}, + [258] = {.index = 791, .length = 4}, + [259] = {.index = 795, .length = 4}, + [260] = {.index = 799, .length = 3}, + [261] = {.index = 802, .length = 4}, + [262] = {.index = 806, .length = 4}, + [263] = {.index = 810, .length = 4}, + [264] = {.index = 814, .length = 5}, + [265] = {.index = 819, .length = 4}, + [266] = {.index = 823, .length = 4}, + [267] = {.index = 827, .length = 4}, + [268] = {.index = 831, .length = 2}, + [269] = {.index = 833, .length = 6}, + [270] = {.index = 839, .length = 7}, + [271] = {.index = 846, .length = 7}, + [272] = {.index = 853, .length = 8}, + [273] = {.index = 861, .length = 6}, + [274] = {.index = 867, .length = 6}, + [275] = {.index = 873, .length = 7}, + [276] = {.index = 880, .length = 7}, + [277] = {.index = 887, .length = 6}, + [278] = {.index = 893, .length = 6}, + [279] = {.index = 899, .length = 7}, + [280] = {.index = 906, .length = 7}, + [281] = {.index = 913, .length = 6}, + [282] = {.index = 919, .length = 6}, + [283] = {.index = 925, .length = 7}, + [284] = {.index = 932, .length = 4}, + [285] = {.index = 936, .length = 4}, + [286] = {.index = 940, .length = 4}, + [287] = {.index = 944, .length = 4}, + [288] = {.index = 948, .length = 5}, + [289] = {.index = 953, .length = 4}, + [290] = {.index = 957, .length = 4}, + [291] = {.index = 961, .length = 4}, + [292] = {.index = 965, .length = 4}, + [293] = {.index = 969, .length = 4}, + [294] = {.index = 973, .length = 4}, + [295] = {.index = 977, .length = 4}, + [296] = {.index = 981, .length = 4}, + [297] = {.index = 985, .length = 3}, + [298] = {.index = 988, .length = 5}, + [299] = {.index = 993, .length = 4}, + [300] = {.index = 997, .length = 5}, + [301] = {.index = 1002, .length = 5}, + [302] = {.index = 1007, .length = 4}, + [303] = {.index = 1011, .length = 4}, + [304] = {.index = 1015, .length = 4}, + [305] = {.index = 1019, .length = 7}, + [306] = {.index = 1026, .length = 8}, + [307] = {.index = 1034, .length = 8}, + [308] = {.index = 1042, .length = 6}, + [309] = {.index = 1048, .length = 7}, + [310] = {.index = 1055, .length = 7}, + [311] = {.index = 1062, .length = 8}, + [312] = {.index = 1070, .length = 6}, + [313] = {.index = 1076, .length = 7}, + [314] = {.index = 1083, .length = 7}, + [315] = {.index = 1090, .length = 8}, + [316] = {.index = 1098, .length = 6}, + [317] = {.index = 1104, .length = 6}, + [318] = {.index = 1110, .length = 7}, + [319] = {.index = 1117, .length = 7}, + [320] = {.index = 1124, .length = 5}, + [321] = {.index = 1129, .length = 4}, + [322] = {.index = 1133, .length = 5}, + [323] = {.index = 1138, .length = 5}, + [324] = {.index = 1143, .length = 4}, + [325] = {.index = 1147, .length = 4}, + [326] = {.index = 1151, .length = 4}, + [327] = {.index = 1155, .length = 4}, + [328] = {.index = 1159, .length = 4}, + [329] = {.index = 1163, .length = 4}, + [330] = {.index = 1167, .length = 5}, + [331] = {.index = 1172, .length = 4}, + [332] = {.index = 1176, .length = 4}, + [333] = {.index = 1180, .length = 4}, + [334] = {.index = 1184, .length = 5}, + [335] = {.index = 1189, .length = 5}, + [336] = {.index = 1194, .length = 5}, + [337] = {.index = 1199, .length = 5}, + [338] = {.index = 1204, .length = 4}, + [339] = {.index = 1208, .length = 8}, + [340] = {.index = 1216, .length = 7}, + [341] = {.index = 1223, .length = 8}, + [342] = {.index = 1231, .length = 8}, + [343] = {.index = 1239, .length = 7}, + [344] = {.index = 1246, .length = 8}, + [345] = {.index = 1254, .length = 8}, + [346] = {.index = 1262, .length = 6}, + [347] = {.index = 1268, .length = 7}, + [348] = {.index = 1275, .length = 7}, + [349] = {.index = 1282, .length = 8}, + [350] = {.index = 1290, .length = 5}, + [351] = {.index = 1295, .length = 5}, + [352] = {.index = 1300, .length = 5}, + [353] = {.index = 1305, .length = 5}, + [354] = {.index = 1310, .length = 4}, + [355] = {.index = 1314, .length = 5}, + [356] = {.index = 1319, .length = 4}, + [357] = {.index = 1323, .length = 5}, + [358] = {.index = 1328, .length = 5}, + [359] = {.index = 1333, .length = 4}, + [360] = {.index = 1337, .length = 4}, + [361] = {.index = 1341, .length = 4}, + [362] = {.index = 1345, .length = 5}, + [363] = {.index = 1350, .length = 5}, + [364] = {.index = 1355, .length = 5}, + [365] = {.index = 1360, .length = 8}, + [366] = {.index = 1368, .length = 8}, + [367] = {.index = 1376, .length = 7}, + [368] = {.index = 1383, .length = 8}, + [369] = {.index = 1391, .length = 8}, + [370] = {.index = 1399, .length = 5}, + [371] = {.index = 1404, .length = 5}, + [372] = {.index = 1409, .length = 5}, + [373] = {.index = 1414, .length = 5}, + [374] = {.index = 1419, .length = 5}, + [375] = {.index = 1424, .length = 5}, + [376] = {.index = 1429, .length = 5}, + [377] = {.index = 1434, .length = 4}, + [378] = {.index = 1438, .length = 5}, + [379] = {.index = 1443, .length = 8}, + [380] = {.index = 1451, .length = 5}, + [381] = {.index = 1456, .length = 5}, + [382] = {.index = 1461, .length = 5}, + [383] = {.index = 1466, .length = 5}, + [384] = {.index = 1471, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2237,668 +2241,674 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_left, 0}, {field_right, 2}, [67] = - {field_field, 2}, + {field_fallback, 2}, {field_value, 0}, [69] = + {field_field, 2}, + {field_value, 0}, + [71] = {field_fields, 2}, {field_type, 0}, - [71] = + [73] = {field_name, 0}, {field_type, 1}, - [73] = + [75] = {field_body, 4}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [78] = + [80] = {field_result, 3}, - [79] = + [81] = {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [83] = + [85] = {field_element, 3}, - [84] = + [86] = {field_element, 3}, {field_length, 1}, - [86] = + [88] = {field_name, 0}, {field_type, 1}, {field_value, 4}, - [89] = + [91] = {field_body, 5}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 4}, - [94] = + [96] = {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 5}, - [98] = + [100] = {field_name, 1}, {field_type, 2}, {field_value, 5}, - [101] = + [103] = {field_body, 3}, {field_result, 2}, - [103] = - {field_label, 2}, - [104] = - {field_body, 2}, [105] = + {field_label, 2}, + [106] = + {field_body, 2}, + [107] = {field_body, 2}, {field_capture, 1}, - [107] = - {field_condition, 1}, - {field_consequence, 3}, [109] = - {field_condition, 2}, + {field_condition, 1}, {field_consequence, 3}, [111] = - {field_body, 3}, - {field_condition, 1}, + {field_condition, 2}, + {field_consequence, 3}, [113] = {field_body, 3}, - {field_condition, 2}, + {field_condition, 1}, [115] = + {field_body, 3}, + {field_condition, 2}, + [117] = {field_subject, 1}, - [116] = + [118] = {field_left, 0}, {field_operator, 1}, {field_right, 3}, - [119] = - {field_value, 0}, - [120] = - {field_index, 2}, + [121] = {field_value, 0}, [122] = + {field_index, 2}, + {field_value, 0}, + [124] = {field_left, 0}, {field_right, 3}, - [124] = + [126] = + {field_capture, 2}, + {field_fallback, 3}, + {field_value, 0}, + [129] = + {field_fallback, 3}, + {field_value, 0}, + [131] = {field_alias, 0}, {field_path, 5}, - [126] = + [133] = {field_name, 1}, {field_type, 2}, - [128] = + [135] = {field_name, 0}, {field_name, 1, .inherited = true}, {field_type, 2}, - [131] = + [138] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [133] = + [140] = {field_error, 4}, {field_result, 2}, - [135] = + [142] = {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [140] = + [147] = {field_body, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [145] = + [152] = {field_body, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [150] = + [157] = {field_element, 4}, {field_sentinel, 2}, - [152] = + [159] = {field_element, 4}, {field_length, 1}, - [154] = + [161] = {field_element, 4}, - [155] = + [162] = {field_element, 4}, {field_length, 2}, - [157] = + [164] = {field_error, 6}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 4}, - [162] = + [169] = {field_body, 6}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 4}, - [167] = + [174] = {field_body, 6}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 5}, - [172] = + [179] = {field_body, 4}, {field_result, 2}, - [174] = + [181] = {field_body, 4}, {field_result, 3}, - [176] = + [183] = {field_backing, 2}, - [177] = + [184] = {field_label, 2}, {field_value, 3}, - [179] = + [186] = {field_body, 3}, {field_capture, 1}, - [181] = + [188] = {field_body, 3}, {field_capture, 2}, - [183] = + [190] = {field_condition, 1}, {field_consequence, 4}, - [185] = + [192] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [188] = + [195] = {field_condition, 2}, {field_consequence, 4}, - [190] = + [197] = {field_body, 4}, {field_condition, 1}, {field_update, 3}, - [193] = + [200] = {field_body, 4}, {field_condition, 1}, {field_label, 2}, - [196] = + [203] = {field_body, 4}, {field_condition, 2}, - [198] = + [205] = {field_subject, 2}, - [199] = + [206] = {field_end, 3}, {field_value, 0}, - [201] = + [208] = {field_start, 2}, {field_value, 0}, - [203] = + [210] = {field_index, 3}, {field_value, 0}, - [205] = + [212] = + {field_capture, 2}, + {field_fallback, 4}, + {field_value, 0}, + [215] = {field_name, 1}, {field_name, 2, .inherited = true}, {field_type, 3}, - [208] = + [218] = {field_name, 2}, - [209] = + [219] = {field_body, 6}, {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [215] = + [225] = {field_error, 5}, {field_result, 3}, - [217] = + [227] = {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [222] = + [232] = {field_body, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [227] = + [237] = {field_element, 5}, {field_sentinel, 3}, - [229] = + [239] = {field_element, 5}, {field_sentinel, 2}, - [231] = + [241] = {field_element, 5}, {field_length, 1}, {field_sentinel, 3}, - [234] = + [244] = {field_element, 5}, {field_length, 1}, - [236] = + [246] = {field_element, 5}, {field_length, 2}, - [238] = + [248] = {field_element, 5}, - [239] = + [249] = {field_body, 7}, {field_error, 6}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 4}, - [245] = + [255] = {field_error, 7}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 5}, - [250] = + [260] = {field_body, 7}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 5}, - [255] = + [265] = {field_body, 5}, {field_error, 4}, {field_result, 2}, - [258] = + [268] = {field_body, 5}, {field_result, 3}, - [260] = + [270] = {field_default, 3}, {field_name, 0}, {field_type, 1}, - [263] = + [273] = {field_body, 4}, {field_capture, 2}, - [265] = + [275] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [268] = + [278] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 2}, - [271] = + [281] = {field_condition, 2}, {field_consequence, 5}, - [273] = + [283] = {field_alternative, 5}, {field_condition, 2}, {field_consequence, 3}, - [276] = + [286] = {field_body, 5}, {field_condition, 1}, {field_update, 3}, - [279] = + [289] = {field_body, 5}, {field_condition, 1}, {field_update, 4}, - [282] = + [292] = {field_body, 5}, {field_condition, 1}, {field_label, 2}, - [285] = + [295] = {field_body, 5}, {field_condition, 1}, {field_label, 3}, - [288] = + [298] = {field_body, 5}, {field_condition, 2}, {field_update, 4}, - [291] = + [301] = {field_body, 5}, {field_condition, 2}, {field_label, 3}, - [294] = + [304] = {field_body, 5}, {field_item, 3}, {field_iterable, 1}, - [297] = + [307] = {field_body, 2}, {field_pattern, 0}, - [299] = + [309] = {field_end, 4}, {field_start, 2}, {field_value, 0}, - [302] = + [312] = {field_end, 4}, {field_value, 0}, - [304] = + [314] = {field_start, 3}, {field_value, 0}, - [306] = - {field_body, 5}, + [316] = {field_name, 3}, - {field_value, 0}, - [309] = - {field_name, 3}, - [310] = + [317] = {field_body, 7}, {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [316] = + [323] = {field_body, 7}, {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [322] = + [329] = {field_element, 6}, {field_sentinel, 3}, - [324] = + [331] = {field_element, 6}, {field_sentinel, 2}, - [326] = + [333] = {field_element, 6}, {field_length, 1}, {field_sentinel, 3}, - [329] = - {field_element, 6}, - {field_sentinel, 4}, - [331] = - {field_element, 6}, - {field_length, 2}, - {field_sentinel, 4}, - [334] = - {field_element, 6}, - {field_length, 2}, [336] = + {field_element, 6}, + {field_sentinel, 4}, + [338] = + {field_element, 6}, + {field_length, 2}, + {field_sentinel, 4}, + [341] = + {field_element, 6}, + {field_length, 2}, + [343] = {field_body, 8}, {field_error, 6}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 4}, - [342] = + [349] = {field_body, 8}, {field_error, 7}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 5}, - [348] = + [355] = {field_body, 6}, {field_error, 4}, {field_result, 2}, - [351] = + [358] = {field_body, 6}, {field_error, 5}, {field_result, 3}, - [354] = + [361] = {field_default, 4}, {field_name, 0}, {field_type, 1}, - [357] = + [364] = {field_guard, 3}, - [358] = + [365] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, - [361] = + [368] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 4}, - [364] = + [371] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 2}, - [367] = + [374] = {field_alternative, 6}, {field_condition, 2}, {field_consequence, 4}, - [370] = + [377] = {field_alternative, 6}, {field_condition, 2}, {field_consequence, 3}, - [373] = + [380] = {field_body, 6}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [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, 4}, + {field_update, 3}, + [389] = + {field_body, 6}, + {field_condition, 1}, + {field_update, 4}, + [392] = {field_body, 6}, {field_condition, 1}, {field_label, 3}, - [388] = + [395] = {field_body, 6}, {field_condition, 2}, {field_update, 4}, - [391] = + [398] = {field_body, 6}, {field_condition, 2}, {field_update, 5}, - [394] = + [401] = {field_body, 6}, {field_condition, 2}, {field_label, 3}, - [397] = + [404] = {field_body, 6}, {field_condition, 2}, {field_label, 4}, - [400] = + [407] = {field_body, 6}, {field_item, 4}, {field_iterable, 2}, - [403] = + [410] = {field_body, 6}, {field_item, 4}, {field_iterable, 1}, - [406] = + [413] = {field_body, 6}, {field_item, 3}, {field_iterable, 1}, - [409] = + [416] = {field_body, 3}, {field_pattern, 0}, - [411] = + [418] = {field_body, 3}, - [412] = + [419] = {field_body, 3}, {field_pattern, 0}, {field_pattern, 1}, - [415] = + [422] = {field_end, 5}, {field_start, 3}, {field_value, 0}, - [418] = - {field_body, 6}, - {field_name, 3}, - {field_value, 0}, - [421] = + [425] = {field_body, 8}, {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [427] = + [431] = {field_element, 7}, {field_sentinel, 3}, - [429] = + [433] = {field_element, 7}, {field_length, 1}, {field_sentinel, 3}, - [432] = + [436] = {field_element, 7}, {field_sentinel, 4}, - [434] = + [438] = {field_element, 7}, {field_length, 2}, {field_sentinel, 4}, - [437] = + [441] = {field_body, 9}, {field_error, 7}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 5}, - [443] = + [447] = {field_body, 7}, {field_error, 5}, {field_result, 3}, - [446] = + [450] = {field_guard, 4}, - [447] = + [451] = {field_alternative, 7}, {field_condition, 1}, {field_consequence, 3}, - [450] = + [454] = {field_alternative, 7}, {field_condition, 1}, {field_consequence, 4}, - [453] = + [457] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 4}, - [456] = + [460] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 5}, - [459] = + [463] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 3}, - [462] = + [466] = {field_body, 7}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [467] = + [471] = {field_body, 7}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [473] = - {field_body, 7}, - {field_condition, 1}, - {field_label, 4}, - {field_update, 3}, [477] = {field_body, 7}, {field_condition, 1}, - {field_label, 5}, + {field_label, 4}, {field_update, 3}, [481] = + {field_body, 7}, + {field_condition, 1}, + {field_label, 5}, + {field_update, 3}, + [485] = {field_body, 7}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [486] = + [490] = {field_body, 7}, {field_condition, 1}, {field_label, 5}, {field_update, 4}, - [490] = + [494] = {field_body, 7}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [495] = + [499] = {field_body, 7}, {field_condition, 2}, {field_label, 5}, {field_update, 4}, - [499] = + [503] = {field_body, 7}, {field_condition, 2}, {field_update, 5}, - [502] = + [506] = {field_body, 7}, {field_condition, 2}, {field_label, 4}, - [505] = + [509] = {field_body, 7}, {field_item, 5}, {field_iterable, 2}, - [508] = + [512] = {field_body, 7}, {field_item, 4}, {field_iterable, 2}, - [511] = + [515] = {field_body, 7}, {field_item, 5}, {field_iterable, 3}, - [514] = + [518] = {field_body, 7}, {field_item, 4}, {field_iterable, 1}, - [517] = + [521] = {field_body, 7}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, - [521] = + [525] = {field_body, 7}, {field_item, 3}, {field_iterable, 1}, {field_label, 5}, - [525] = + [529] = {field_body, 7}, {field_item, 5}, {field_iterable, 1}, - [528] = - {field_body, 4}, - {field_pattern, 0}, - [530] = - {field_value, 2}, - [531] = - {field_body, 4}, [532] = {field_body, 4}, {field_pattern, 0}, - {field_pattern, 1}, + [534] = + {field_value, 2}, [535] = + {field_body, 4}, + [536] = + {field_body, 4}, + {field_pattern, 0}, + {field_pattern, 1}, + [539] = {field_element, 8}, {field_sentinel, 4}, - [537] = + [541] = {field_element, 8}, {field_length, 2}, {field_sentinel, 4}, - [540] = + [544] = {field_alternative, 8}, {field_condition, 1}, {field_consequence, 4}, - [543] = + [547] = {field_alternative, 8}, {field_condition, 2}, {field_consequence, 4}, - [546] = + [550] = {field_alternative, 8}, {field_condition, 2}, {field_consequence, 5}, - [549] = + [553] = {field_body, 8}, {field_condition, 1}, {field_label, 6}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [555] = + [559] = {field_body, 8}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [561] = + [565] = {field_body, 8}, {field_condition, 1}, {field_update, 3}, @@ -2906,149 +2916,149 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [568] = - {field_body, 8}, - {field_condition, 1}, - {field_label, 5}, - {field_update, 3}, [572] = + {field_body, 8}, + {field_condition, 1}, + {field_label, 5}, + {field_update, 3}, + [576] = {field_body, 8}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [577] = + [581] = {field_body, 8}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [583] = - {field_body, 8}, - {field_condition, 1}, - {field_label, 5}, - {field_update, 4}, [587] = {field_body, 8}, {field_condition, 1}, - {field_label, 6}, + {field_label, 5}, {field_update, 4}, [591] = + {field_body, 8}, + {field_condition, 1}, + {field_label, 6}, + {field_update, 4}, + [595] = {field_body, 8}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [596] = + [600] = {field_body, 8}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [602] = - {field_body, 8}, - {field_condition, 2}, - {field_label, 5}, - {field_update, 4}, [606] = {field_body, 8}, {field_condition, 2}, - {field_label, 6}, + {field_label, 5}, {field_update, 4}, [610] = + {field_body, 8}, + {field_condition, 2}, + {field_label, 6}, + {field_update, 4}, + [614] = {field_body, 8}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [615] = + [619] = {field_body, 8}, {field_condition, 2}, {field_label, 6}, {field_update, 5}, - [619] = + [623] = {field_body, 8}, {field_item, 5}, {field_iterable, 2}, - [622] = - {field_body, 8}, - {field_index, 6}, - {field_item, 4}, - {field_iterable, 2}, [626] = + {field_body, 8}, + {field_index, 6}, + {field_item, 4}, + {field_iterable, 2}, + [630] = {field_body, 8}, {field_item, 4}, {field_iterable, 2}, {field_label, 6}, - [630] = + [634] = {field_body, 8}, {field_item, 6}, {field_iterable, 2}, - [633] = + [637] = {field_body, 8}, {field_item, 6}, {field_iterable, 3}, - [636] = + [640] = {field_body, 8}, {field_item, 5}, {field_iterable, 3}, - [639] = + [643] = {field_body, 8}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, - [643] = + [647] = {field_body, 8}, {field_item, 4}, {field_iterable, 1}, {field_label, 6}, - [647] = + [651] = {field_body, 8}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, - [651] = - {field_body, 8}, - {field_item, 3}, - {field_iterable, 1}, - {field_label, 5}, [655] = {field_body, 8}, {field_item, 3}, {field_iterable, 1}, - {field_label, 6}, + {field_label, 5}, [659] = + {field_body, 8}, + {field_item, 3}, + {field_iterable, 1}, + {field_label, 6}, + [663] = {field_body, 8}, {field_item, 5}, {field_iterable, 1}, - [662] = + [666] = {field_tag, 3}, {field_value, 1}, - [664] = + [668] = {field_body, 5}, {field_pattern, 0}, {field_pattern, 1}, - [667] = + [671] = {field_alternative, 9}, {field_condition, 2}, {field_consequence, 5}, - [670] = + [674] = {field_body, 9}, {field_condition, 1}, {field_label, 6}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [676] = + [680] = {field_body, 9}, {field_condition, 1}, {field_label, 7}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [682] = + [686] = {field_body, 9}, {field_condition, 1}, {field_label, 7}, @@ -3056,7 +3066,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [689] = + [693] = {field_body, 9}, {field_condition, 1}, {field_update, 3}, @@ -3064,21 +3074,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [696] = + [700] = {field_body, 9}, {field_condition, 1}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [702] = + [706] = {field_body, 9}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [708] = + [712] = {field_body, 9}, {field_condition, 1}, {field_update, 4}, @@ -3086,26 +3096,26 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [715] = - {field_body, 9}, - {field_condition, 1}, - {field_label, 6}, - {field_update, 4}, [719] = + {field_body, 9}, + {field_condition, 1}, + {field_label, 6}, + {field_update, 4}, + [723] = {field_body, 9}, {field_condition, 2}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [725] = + [729] = {field_body, 9}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [731] = + [735] = {field_body, 9}, {field_condition, 2}, {field_update, 4}, @@ -3113,128 +3123,128 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [738] = - {field_body, 9}, - {field_condition, 2}, - {field_label, 6}, - {field_update, 4}, [742] = + {field_body, 9}, + {field_condition, 2}, + {field_label, 6}, + {field_update, 4}, + [746] = {field_body, 9}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [747] = + [751] = {field_body, 9}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, {field_update, 8}, - [753] = + [757] = {field_body, 9}, {field_condition, 2}, {field_label, 6}, {field_update, 5}, - [757] = + [761] = {field_body, 9}, {field_condition, 2}, {field_label, 7}, {field_update, 5}, - [761] = + [765] = {field_body, 9}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, - [765] = + [769] = {field_body, 9}, {field_item, 5}, {field_iterable, 2}, {field_label, 7}, - [769] = + [773] = {field_body, 9}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, - [773] = - {field_body, 9}, - {field_item, 4}, - {field_iterable, 2}, - {field_label, 6}, [777] = {field_body, 9}, {field_item, 4}, {field_iterable, 2}, - {field_label, 7}, + {field_label, 6}, [781] = + {field_body, 9}, + {field_item, 4}, + {field_iterable, 2}, + {field_label, 7}, + [785] = {field_body, 9}, {field_item, 6}, {field_iterable, 2}, - [784] = + [788] = {field_body, 9}, {field_item, 6}, {field_iterable, 3}, - [787] = + [791] = {field_body, 9}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, - [791] = + [795] = {field_body, 9}, {field_item, 5}, {field_iterable, 3}, {field_label, 7}, - [795] = + [799] = {field_body, 9}, {field_item, 7}, {field_iterable, 3}, - [798] = + [802] = {field_body, 9}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, - [802] = - {field_body, 9}, - {field_item, 4}, - {field_iterable, 1}, - {field_label, 6}, [806] = {field_body, 9}, {field_item, 4}, {field_iterable, 1}, - {field_label, 7}, + {field_label, 6}, [810] = + {field_body, 9}, + {field_item, 4}, + {field_iterable, 1}, + {field_label, 7}, + [814] = {field_body, 9}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 7}, - [815] = + [819] = {field_body, 9}, {field_item, 3}, {field_iterable, 1}, {field_label, 6}, - [819] = + [823] = {field_body, 9}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, - [823] = + [827] = {field_body, 9}, {field_item, 5}, {field_iterable, 1}, {field_label, 7}, - [827] = + [831] = {field_tag, 4}, {field_value, 2}, - [829] = + [833] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [835] = + [839] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, @@ -3242,7 +3252,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [842] = + [846] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, @@ -3250,7 +3260,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [849] = + [853] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, @@ -3259,21 +3269,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [857] = + [861] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [863] = + [867] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [869] = + [873] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, @@ -3281,7 +3291,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [876] = + [880] = {field_body, 10}, {field_condition, 1}, {field_update, 4}, @@ -3289,21 +3299,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [883] = + [887] = {field_body, 10}, {field_condition, 2}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [889] = + [893] = {field_body, 10}, {field_condition, 2}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [895] = + [899] = {field_body, 10}, {field_condition, 2}, {field_label, 8}, @@ -3311,7 +3321,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [902] = + [906] = {field_body, 10}, {field_condition, 2}, {field_update, 4}, @@ -3319,21 +3329,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [909] = + [913] = {field_body, 10}, {field_condition, 2}, {field_label, 8}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [915] = + [919] = {field_body, 10}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, {field_update, 8}, - [921] = + [925] = {field_body, 10}, {field_condition, 2}, {field_update, 5}, @@ -3341,115 +3351,115 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [928] = + [932] = {field_body, 10}, {field_condition, 2}, {field_label, 7}, {field_update, 5}, - [932] = + [936] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, - [936] = - {field_body, 10}, - {field_item, 5}, - {field_iterable, 2}, - {field_label, 7}, [940] = {field_body, 10}, {field_item, 5}, {field_iterable, 2}, - {field_label, 8}, + {field_label, 7}, [944] = + {field_body, 10}, + {field_item, 5}, + {field_iterable, 2}, + {field_label, 8}, + [948] = {field_body, 10}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 8}, - [949] = + [953] = {field_body, 10}, {field_item, 4}, {field_iterable, 2}, {field_label, 7}, - [953] = - {field_body, 10}, - {field_index, 8}, - {field_item, 6}, - {field_iterable, 2}, [957] = + {field_body, 10}, + {field_index, 8}, + {field_item, 6}, + {field_iterable, 2}, + [961] = {field_body, 10}, {field_item, 6}, {field_iterable, 2}, {field_label, 8}, - [961] = + [965] = {field_body, 10}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, - [965] = + [969] = {field_body, 10}, {field_item, 6}, {field_iterable, 3}, {field_label, 8}, - [969] = + [973] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, - [973] = - {field_body, 10}, - {field_item, 5}, - {field_iterable, 3}, - {field_label, 7}, [977] = {field_body, 10}, {field_item, 5}, {field_iterable, 3}, - {field_label, 8}, + {field_label, 7}, [981] = + {field_body, 10}, + {field_item, 5}, + {field_iterable, 3}, + {field_label, 8}, + [985] = {field_body, 10}, {field_item, 7}, {field_iterable, 3}, - [984] = + [988] = {field_body, 10}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 8}, - [989] = + [993] = {field_body, 10}, {field_item, 4}, {field_iterable, 1}, {field_label, 7}, - [993] = + [997] = {field_body, 10}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 7}, - [998] = + [1002] = {field_body, 10}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 8}, - [1003] = + [1007] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, - [1007] = - {field_body, 10}, - {field_item, 5}, - {field_iterable, 1}, - {field_label, 7}, [1011] = {field_body, 10}, {field_item, 5}, {field_iterable, 1}, - {field_label, 8}, + {field_label, 7}, [1015] = + {field_body, 10}, + {field_item, 5}, + {field_iterable, 1}, + {field_label, 8}, + [1019] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, @@ -3457,7 +3467,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [1022] = + [1026] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, @@ -3466,7 +3476,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1030] = + [1034] = {field_body, 11}, {field_condition, 1}, {field_label, 9}, @@ -3475,14 +3485,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1038] = + [1042] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [1044] = + [1048] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, @@ -3490,7 +3500,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1051] = + [1055] = {field_body, 11}, {field_condition, 1}, {field_label, 9}, @@ -3498,7 +3508,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1058] = + [1062] = {field_body, 11}, {field_condition, 1}, {field_label, 9}, @@ -3507,14 +3517,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1066] = + [1070] = {field_body, 11}, {field_condition, 2}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [1072] = + [1076] = {field_body, 11}, {field_condition, 2}, {field_label, 8}, @@ -3522,7 +3532,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1079] = + [1083] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, @@ -3530,7 +3540,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1086] = + [1090] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, @@ -3539,21 +3549,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1094] = + [1098] = {field_body, 11}, {field_condition, 2}, {field_label, 8}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1100] = + [1104] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1106] = + [1110] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, @@ -3561,7 +3571,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1113] = + [1117] = {field_body, 11}, {field_condition, 2}, {field_update, 5}, @@ -3569,110 +3579,110 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1120] = + [1124] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 9}, - [1125] = + [1129] = {field_body, 11}, {field_item, 5}, {field_iterable, 2}, {field_label, 8}, - [1129] = + [1133] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 8}, - [1134] = + [1138] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 9}, - [1139] = + [1143] = {field_body, 11}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, - [1143] = - {field_body, 11}, - {field_item, 6}, - {field_iterable, 2}, - {field_label, 8}, [1147] = {field_body, 11}, {field_item, 6}, {field_iterable, 2}, - {field_label, 9}, + {field_label, 8}, [1151] = + {field_body, 11}, + {field_item, 6}, + {field_iterable, 2}, + {field_label, 9}, + [1155] = {field_body, 11}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, - [1155] = - {field_body, 11}, - {field_item, 6}, - {field_iterable, 3}, - {field_label, 8}, [1159] = {field_body, 11}, {field_item, 6}, {field_iterable, 3}, - {field_label, 9}, + {field_label, 8}, [1163] = + {field_body, 11}, + {field_item, 6}, + {field_iterable, 3}, + {field_label, 9}, + [1167] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, {field_label, 9}, - [1168] = + [1172] = {field_body, 11}, {field_item, 5}, {field_iterable, 3}, {field_label, 8}, - [1172] = + [1176] = {field_body, 11}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, - [1176] = + [1180] = {field_body, 11}, {field_item, 7}, {field_iterable, 3}, {field_label, 9}, - [1180] = + [1184] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 8}, - [1185] = + [1189] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 9}, - [1190] = + [1194] = {field_body, 11}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 8}, - [1195] = + [1199] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 9}, - [1200] = + [1204] = {field_body, 11}, {field_item, 5}, {field_iterable, 1}, {field_label, 8}, - [1204] = + [1208] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3681,7 +3691,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1212] = + [1216] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3689,7 +3699,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1219] = + [1223] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3698,7 +3708,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1227] = + [1231] = {field_body, 12}, {field_condition, 1}, {field_label, 10}, @@ -3707,7 +3717,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1235] = + [1239] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, @@ -3715,7 +3725,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1242] = + [1246] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, @@ -3724,7 +3734,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1250] = + [1254] = {field_body, 12}, {field_condition, 2}, {field_label, 10}, @@ -3733,14 +3743,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1258] = + [1262] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1264] = + [1268] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, @@ -3748,7 +3758,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1271] = + [1275] = {field_body, 12}, {field_condition, 2}, {field_label, 10}, @@ -3756,7 +3766,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1278] = + [1282] = {field_body, 12}, {field_condition, 2}, {field_label, 10}, @@ -3765,92 +3775,92 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1286] = + [1290] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 9}, - [1291] = + [1295] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 10}, - [1296] = + [1300] = {field_body, 12}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 9}, - [1301] = + [1305] = {field_body, 12}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 10}, - [1306] = - {field_body, 12}, - {field_item, 6}, - {field_iterable, 2}, - {field_label, 9}, [1310] = + {field_body, 12}, + {field_item, 6}, + {field_iterable, 2}, + {field_label, 9}, + [1314] = {field_body, 12}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, {field_label, 10}, - [1315] = + [1319] = {field_body, 12}, {field_item, 6}, {field_iterable, 3}, {field_label, 9}, - [1319] = + [1323] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, {field_label, 9}, - [1324] = + [1328] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, {field_label, 10}, - [1329] = + [1333] = {field_body, 12}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, - [1333] = - {field_body, 12}, - {field_item, 7}, - {field_iterable, 3}, - {field_label, 9}, [1337] = {field_body, 12}, {field_item, 7}, {field_iterable, 3}, - {field_label, 10}, + {field_label, 9}, [1341] = + {field_body, 12}, + {field_item, 7}, + {field_iterable, 3}, + {field_label, 10}, + [1345] = {field_body, 12}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 9}, - [1346] = + [1350] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 9}, - [1351] = + [1355] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 10}, - [1356] = + [1360] = {field_body, 13}, {field_condition, 1}, {field_label, 10}, @@ -3859,7 +3869,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1364] = + [1368] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3868,7 +3878,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1372] = + [1376] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3876,7 +3886,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1379] = + [1383] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3885,7 +3895,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1387] = + [1391] = {field_body, 13}, {field_condition, 2}, {field_label, 11}, @@ -3894,60 +3904,60 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1395] = + [1399] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 10}, - [1400] = + [1404] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 10}, - [1405] = + [1409] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 11}, - [1410] = + [1414] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, {field_label, 10}, - [1415] = + [1419] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, {field_label, 11}, - [1420] = + [1424] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, {field_label, 10}, - [1425] = + [1429] = {field_body, 13}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, {field_label, 11}, - [1430] = + [1434] = {field_body, 13}, {field_item, 7}, {field_iterable, 3}, {field_label, 10}, - [1434] = + [1438] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 10}, - [1439] = + [1443] = {field_body, 14}, {field_condition, 2}, {field_label, 11}, @@ -3956,31 +3966,31 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1447] = + [1451] = {field_body, 14}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 11}, - [1452] = + [1456] = {field_body, 14}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, {field_label, 11}, - [1457] = + [1461] = {field_body, 14}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, {field_label, 11}, - [1462] = + [1466] = {field_body, 14}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, {field_label, 12}, - [1467] = + [1471] = {field_body, 15}, {field_index, 9}, {field_item, 7}, @@ -4003,533 +4013,533 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 3, - [5] = 2, - [6] = 2, - [7] = 3, - [8] = 2, - [9] = 3, - [10] = 2, - [11] = 2, - [12] = 3, - [13] = 2, - [14] = 3, - [15] = 2, - [16] = 3, - [17] = 2, - [18] = 3, - [19] = 3, - [20] = 20, - [21] = 20, - [22] = 20, - [23] = 20, - [24] = 20, - [25] = 20, - [26] = 20, - [27] = 20, - [28] = 20, - [29] = 20, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 40, - [41] = 41, - [42] = 36, - [43] = 41, - [44] = 37, - [45] = 38, - [46] = 39, - [47] = 47, - [48] = 47, - [49] = 49, - [50] = 50, - [51] = 51, - [52] = 52, - [53] = 53, - [54] = 54, - [55] = 55, - [56] = 56, - [57] = 57, - [58] = 58, - [59] = 59, - [60] = 50, - [61] = 61, - [62] = 51, - [63] = 63, - [64] = 49, - [65] = 59, - [66] = 63, - [67] = 49, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, - [72] = 72, - [73] = 68, - [74] = 69, - [75] = 52, - [76] = 53, - [77] = 54, - [78] = 70, - [79] = 55, - [80] = 56, - [81] = 57, - [82] = 58, - [83] = 50, - [84] = 61, - [85] = 51, - [86] = 59, - [87] = 63, - [88] = 68, - [89] = 69, - [90] = 70, - [91] = 71, - [92] = 72, - [93] = 71, - [94] = 72, - [95] = 52, - [96] = 53, - [97] = 53, - [98] = 54, - [99] = 55, - [100] = 56, - [101] = 57, - [102] = 58, - [103] = 50, - [104] = 61, - [105] = 51, - [106] = 59, - [107] = 63, - [108] = 49, - [109] = 68, - [110] = 69, - [111] = 61, - [112] = 71, - [113] = 72, - [114] = 52, - [115] = 53, - [116] = 55, - [117] = 54, - [118] = 55, - [119] = 56, - [120] = 57, - [121] = 58, - [122] = 50, - [123] = 61, - [124] = 51, - [125] = 59, - [126] = 63, - [127] = 49, - [128] = 68, - [129] = 69, - [130] = 70, - [131] = 71, - [132] = 72, - [133] = 56, - [134] = 52, - [135] = 53, - [136] = 54, - [137] = 55, - [138] = 56, - [139] = 57, - [140] = 58, - [141] = 50, - [142] = 61, - [143] = 51, - [144] = 59, - [145] = 63, - [146] = 49, - [147] = 68, - [148] = 69, - [149] = 70, - [150] = 71, - [151] = 72, - [152] = 52, - [153] = 57, - [154] = 58, - [155] = 54, - [156] = 70, + [3] = 2, + [4] = 2, + [5] = 5, + [6] = 6, + [7] = 5, + [8] = 6, + [9] = 5, + [10] = 6, + [11] = 5, + [12] = 6, + [13] = 6, + [14] = 5, + [15] = 5, + [16] = 5, + [17] = 5, + [18] = 5, + [19] = 5, + [20] = 5, + [21] = 5, + [22] = 5, + [23] = 5, + [24] = 5, + [25] = 5, + [26] = 5, + [27] = 2, + [28] = 5, + [29] = 5, + [30] = 5, + [31] = 5, + [32] = 5, + [33] = 5, + [34] = 5, + [35] = 5, + [36] = 6, + [37] = 5, + [38] = 6, + [39] = 5, + [40] = 6, + [41] = 5, + [42] = 6, + [43] = 5, + [44] = 5, + [45] = 5, + [46] = 5, + [47] = 5, + [48] = 5, + [49] = 5, + [50] = 5, + [51] = 5, + [52] = 5, + [53] = 5, + [54] = 5, + [55] = 5, + [56] = 5, + [57] = 5, + [58] = 5, + [59] = 5, + [60] = 6, + [61] = 6, + [62] = 5, + [63] = 6, + [64] = 6, + [65] = 5, + [66] = 5, + [67] = 5, + [68] = 5, + [69] = 6, + [70] = 5, + [71] = 6, + [72] = 6, + [73] = 6, + [74] = 6, + [75] = 6, + [76] = 6, + [77] = 6, + [78] = 6, + [79] = 6, + [80] = 6, + [81] = 6, + [82] = 6, + [83] = 6, + [84] = 6, + [85] = 6, + [86] = 6, + [87] = 6, + [88] = 6, + [89] = 6, + [90] = 6, + [91] = 6, + [92] = 6, + [93] = 6, + [94] = 6, + [95] = 6, + [96] = 6, + [97] = 6, + [98] = 6, + [99] = 6, + [100] = 6, + [101] = 6, + [102] = 6, + [103] = 6, + [104] = 6, + [105] = 6, + [106] = 6, + [107] = 6, + [108] = 6, + [109] = 2, + [110] = 5, + [111] = 2, + [112] = 2, + [113] = 2, + [114] = 2, + [115] = 2, + [116] = 116, + [117] = 116, + [118] = 116, + [119] = 116, + [120] = 116, + [121] = 116, + [122] = 116, + [123] = 116, + [124] = 116, + [125] = 116, + [126] = 116, + [127] = 116, + [128] = 116, + [129] = 116, + [130] = 2, + [131] = 116, + [132] = 116, + [133] = 116, + [134] = 2, + [135] = 2, + [136] = 2, + [137] = 2, + [138] = 2, + [139] = 2, + [140] = 2, + [141] = 2, + [142] = 2, + [143] = 2, + [144] = 2, + [145] = 2, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 163, - [165] = 163, - [166] = 162, - [167] = 163, - [168] = 162, - [169] = 162, - [170] = 163, - [171] = 162, - [172] = 163, - [173] = 162, - [174] = 163, - [175] = 162, - [176] = 163, - [177] = 162, - [178] = 163, - [179] = 162, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 183, - [184] = 184, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 189, - [190] = 190, - [191] = 191, - [192] = 180, - [193] = 193, - [194] = 194, - [195] = 195, - [196] = 196, + [158] = 2, + [159] = 2, + [160] = 2, + [161] = 2, + [162] = 2, + [163] = 155, + [164] = 2, + [165] = 2, + [166] = 156, + [167] = 151, + [168] = 147, + [169] = 2, + [170] = 2, + [171] = 2, + [172] = 154, + [173] = 2, + [174] = 2, + [175] = 2, + [176] = 154, + [177] = 147, + [178] = 157, + [179] = 156, + [180] = 2, + [181] = 2, + [182] = 148, + [183] = 150, + [184] = 146, + [185] = 152, + [186] = 153, + [187] = 154, + [188] = 149, + [189] = 155, + [190] = 154, + [191] = 154, + [192] = 2, + [193] = 2, + [194] = 154, + [195] = 157, + [196] = 151, [197] = 197, - [198] = 198, - [199] = 199, - [200] = 200, - [201] = 201, - [202] = 202, - [203] = 203, - [204] = 204, - [205] = 205, - [206] = 206, - [207] = 207, - [208] = 208, - [209] = 181, - [210] = 210, - [211] = 186, - [212] = 187, - [213] = 213, - [214] = 188, - [215] = 189, - [216] = 216, - [217] = 217, - [218] = 190, - [219] = 219, - [220] = 213, - [221] = 182, - [222] = 183, - [223] = 184, - [224] = 185, - [225] = 186, - [226] = 187, - [227] = 188, - [228] = 189, - [229] = 190, - [230] = 191, - [231] = 180, - [232] = 193, - [233] = 191, - [234] = 193, - [235] = 194, - [236] = 195, - [237] = 196, - [238] = 197, - [239] = 194, - [240] = 195, - [241] = 196, - [242] = 197, + [198] = 157, + [199] = 147, + [200] = 148, + [201] = 157, + [202] = 150, + [203] = 154, + [204] = 152, + [205] = 146, + [206] = 157, + [207] = 157, + [208] = 153, + [209] = 157, + [210] = 156, + [211] = 149, + [212] = 156, + [213] = 2, + [214] = 155, + [215] = 155, + [216] = 151, + [217] = 147, + [218] = 151, + [219] = 154, + [220] = 2, + [221] = 157, + [222] = 2, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 223, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 223, + [239] = 239, + [240] = 240, + [241] = 232, + [242] = 242, [243] = 243, - [244] = 198, - [245] = 199, - [246] = 200, - [247] = 201, - [248] = 202, - [249] = 203, - [250] = 204, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 205, - [255] = 206, - [256] = 207, - [257] = 208, - [258] = 258, - [259] = 181, - [260] = 210, - [261] = 216, - [262] = 217, - [263] = 182, - [264] = 184, - [265] = 185, - [266] = 189, - [267] = 216, - [268] = 217, - [269] = 182, - [270] = 184, - [271] = 185, - [272] = 189, - [273] = 210, - [274] = 213, - [275] = 198, - [276] = 199, - [277] = 216, - [278] = 217, - [279] = 200, - [280] = 201, - [281] = 202, - [282] = 182, - [283] = 184, - [284] = 185, - [285] = 203, - [286] = 204, - [287] = 189, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 216, - [294] = 217, - [295] = 206, - [296] = 207, - [297] = 208, - [298] = 298, - [299] = 210, - [300] = 213, - [301] = 181, - [302] = 216, - [303] = 217, - [304] = 182, - [305] = 184, - [306] = 185, - [307] = 189, - [308] = 216, - [309] = 217, - [310] = 182, - [311] = 183, - [312] = 184, - [313] = 185, - [314] = 210, - [315] = 213, - [316] = 186, - [317] = 187, - [318] = 188, - [319] = 189, - [320] = 190, - [321] = 191, - [322] = 180, - [323] = 193, - [324] = 194, - [325] = 195, - [326] = 196, - [327] = 197, - [328] = 198, - [329] = 199, - [330] = 200, - [331] = 201, - [332] = 202, - [333] = 210, - [334] = 203, - [335] = 204, - [336] = 213, - [337] = 205, - [338] = 206, - [339] = 207, - [340] = 208, - [341] = 181, - [342] = 182, - [343] = 210, - [344] = 213, - [345] = 183, - [346] = 183, - [347] = 186, - [348] = 187, - [349] = 188, - [350] = 190, - [351] = 191, - [352] = 180, - [353] = 193, - [354] = 194, - [355] = 195, - [356] = 196, - [357] = 197, - [358] = 198, - [359] = 199, - [360] = 200, - [361] = 201, - [362] = 202, - [363] = 203, - [364] = 204, - [365] = 205, - [366] = 206, - [367] = 207, - [368] = 208, - [369] = 181, - [370] = 183, - [371] = 186, - [372] = 187, - [373] = 188, - [374] = 190, - [375] = 191, - [376] = 180, - [377] = 193, - [378] = 194, - [379] = 195, - [380] = 196, - [381] = 197, - [382] = 198, - [383] = 199, - [384] = 200, - [385] = 201, - [386] = 202, - [387] = 203, - [388] = 204, - [389] = 205, - [390] = 206, - [391] = 207, - [392] = 208, - [393] = 181, - [394] = 216, - [395] = 217, - [396] = 182, - [397] = 184, - [398] = 185, - [399] = 189, - [400] = 184, - [401] = 185, - [402] = 183, - [403] = 186, - [404] = 187, - [405] = 188, - [406] = 190, - [407] = 191, - [408] = 180, - [409] = 193, - [410] = 194, - [411] = 195, - [412] = 196, - [413] = 197, - [414] = 198, - [415] = 199, - [416] = 200, - [417] = 201, - [418] = 202, - [419] = 203, - [420] = 204, - [421] = 205, - [422] = 206, - [423] = 207, - [424] = 208, - [425] = 181, - [426] = 216, - [427] = 217, - [428] = 183, - [429] = 186, - [430] = 187, - [431] = 188, - [432] = 190, - [433] = 191, - [434] = 180, - [435] = 193, - [436] = 194, - [437] = 195, - [438] = 196, - [439] = 197, - [440] = 198, - [441] = 199, - [442] = 200, - [443] = 201, - [444] = 202, - [445] = 203, - [446] = 204, - [447] = 205, - [448] = 206, - [449] = 207, - [450] = 208, - [451] = 181, - [452] = 183, - [453] = 186, - [454] = 187, - [455] = 188, - [456] = 190, - [457] = 191, - [458] = 180, - [459] = 193, - [460] = 194, - [461] = 195, - [462] = 196, - [463] = 197, - [464] = 198, - [465] = 199, - [466] = 200, - [467] = 201, - [468] = 202, - [469] = 203, - [470] = 204, - [471] = 205, - [472] = 206, - [473] = 207, - [474] = 208, - [475] = 205, - [476] = 476, - [477] = 476, - [478] = 478, - [479] = 476, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 478, - [484] = 480, - [485] = 481, - [486] = 486, - [487] = 482, - [488] = 478, - [489] = 486, - [490] = 476, - [491] = 480, - [492] = 481, - [493] = 476, - [494] = 480, - [495] = 481, - [496] = 482, - [497] = 478, - [498] = 486, - [499] = 481, - [500] = 482, - [501] = 481, - [502] = 482, - [503] = 478, - [504] = 486, - [505] = 476, - [506] = 480, - [507] = 481, - [508] = 482, - [509] = 478, - [510] = 486, - [511] = 486, - [512] = 476, - [513] = 476, - [514] = 480, - [515] = 481, - [516] = 482, - [517] = 478, - [518] = 486, - [519] = 482, - [520] = 478, - [521] = 476, - [522] = 480, - [523] = 481, - [524] = 482, - [525] = 478, - [526] = 486, - [527] = 480, - [528] = 486, - [529] = 480, + [244] = 224, + [245] = 225, + [246] = 226, + [247] = 227, + [248] = 228, + [249] = 229, + [250] = 230, + [251] = 223, + [252] = 232, + [253] = 233, + [254] = 234, + [255] = 235, + [256] = 236, + [257] = 237, + [258] = 239, + [259] = 240, + [260] = 239, + [261] = 242, + [262] = 243, + [263] = 224, + [264] = 225, + [265] = 226, + [266] = 227, + [267] = 228, + [268] = 229, + [269] = 230, + [270] = 223, + [271] = 232, + [272] = 233, + [273] = 234, + [274] = 235, + [275] = 236, + [276] = 237, + [277] = 233, + [278] = 239, + [279] = 240, + [280] = 240, + [281] = 242, + [282] = 243, + [283] = 224, + [284] = 225, + [285] = 226, + [286] = 227, + [287] = 228, + [288] = 229, + [289] = 230, + [290] = 239, + [291] = 232, + [292] = 233, + [293] = 234, + [294] = 235, + [295] = 236, + [296] = 237, + [297] = 242, + [298] = 239, + [299] = 240, + [300] = 242, + [301] = 242, + [302] = 243, + [303] = 224, + [304] = 225, + [305] = 226, + [306] = 227, + [307] = 228, + [308] = 229, + [309] = 230, + [310] = 224, + [311] = 232, + [312] = 233, + [313] = 234, + [314] = 235, + [315] = 236, + [316] = 237, + [317] = 234, + [318] = 229, + [319] = 243, + [320] = 224, + [321] = 225, + [322] = 226, + [323] = 230, + [324] = 227, + [325] = 228, + [326] = 229, + [327] = 223, + [328] = 230, + [329] = 223, + [330] = 232, + [331] = 233, + [332] = 234, + [333] = 235, + [334] = 236, + [335] = 237, + [336] = 232, + [337] = 235, + [338] = 233, + [339] = 234, + [340] = 235, + [341] = 236, + [342] = 237, + [343] = 236, + [344] = 225, + [345] = 226, + [346] = 243, + [347] = 227, + [348] = 228, + [349] = 229, + [350] = 224, + [351] = 237, + [352] = 240, + [353] = 225, + [354] = 226, + [355] = 239, + [356] = 240, + [357] = 227, + [358] = 242, + [359] = 228, + [360] = 243, + [361] = 224, + [362] = 225, + [363] = 226, + [364] = 227, + [365] = 228, + [366] = 229, + [367] = 230, + [368] = 223, + [369] = 232, + [370] = 233, + [371] = 234, + [372] = 235, + [373] = 236, + [374] = 237, + [375] = 243, + [376] = 239, + [377] = 239, + [378] = 240, + [379] = 240, + [380] = 242, + [381] = 230, + [382] = 242, + [383] = 243, + [384] = 223, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 390, + [393] = 391, + [394] = 391, + [395] = 391, + [396] = 390, + [397] = 391, + [398] = 391, + [399] = 390, + [400] = 391, + [401] = 391, + [402] = 390, + [403] = 390, + [404] = 391, + [405] = 390, + [406] = 390, + [407] = 391, + [408] = 390, + [409] = 390, + [410] = 390, + [411] = 391, + [412] = 390, + [413] = 391, + [414] = 390, + [415] = 391, + [416] = 391, + [417] = 390, + [418] = 391, + [419] = 391, + [420] = 390, + [421] = 390, + [422] = 391, + [423] = 390, + [424] = 391, + [425] = 391, + [426] = 390, + [427] = 390, + [428] = 391, + [429] = 390, + [430] = 391, + [431] = 391, + [432] = 390, + [433] = 390, + [434] = 391, + [435] = 390, + [436] = 391, + [437] = 390, + [438] = 390, + [439] = 391, + [440] = 390, + [441] = 391, + [442] = 390, + [443] = 391, + [444] = 390, + [445] = 391, + [446] = 391, + [447] = 390, + [448] = 390, + [449] = 391, + [450] = 390, + [451] = 391, + [452] = 391, + [453] = 390, + [454] = 390, + [455] = 391, + [456] = 390, + [457] = 391, + [458] = 390, + [459] = 391, + [460] = 391, + [461] = 390, + [462] = 390, + [463] = 391, + [464] = 390, + [465] = 390, + [466] = 391, + [467] = 390, + [468] = 391, + [469] = 391, + [470] = 390, + [471] = 391, + [472] = 391, + [473] = 390, + [474] = 391, + [475] = 390, + [476] = 390, + [477] = 391, + [478] = 390, + [479] = 390, + [480] = 391, + [481] = 390, + [482] = 391, + [483] = 390, + [484] = 391, + [485] = 390, + [486] = 391, + [487] = 391, + [488] = 390, + [489] = 391, + [490] = 390, + [491] = 391, + [492] = 391, + [493] = 390, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, [530] = 530, [531] = 531, [532] = 532, @@ -4537,7 +4547,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [534] = 534, [535] = 535, [536] = 536, - [537] = 537, + [537] = 494, [538] = 538, [539] = 539, [540] = 540, @@ -4548,1659 +4558,1659 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [545] = 545, [546] = 546, [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, + [548] = 495, + [549] = 499, + [550] = 500, [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 581, + [552] = 510, + [553] = 511, + [554] = 512, + [555] = 513, + [556] = 524, + [557] = 525, + [558] = 526, + [559] = 527, + [560] = 528, + [561] = 530, + [562] = 531, + [563] = 532, + [564] = 533, + [565] = 534, + [566] = 535, + [567] = 536, + [568] = 494, + [569] = 538, + [570] = 539, + [571] = 540, + [572] = 541, + [573] = 542, + [574] = 543, + [575] = 544, + [576] = 545, + [577] = 546, + [578] = 547, + [579] = 495, + [580] = 499, + [581] = 500, [582] = 582, - [583] = 583, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, + [583] = 510, + [584] = 511, + [585] = 512, + [586] = 513, + [587] = 524, + [588] = 525, + [589] = 526, + [590] = 527, + [591] = 528, + [592] = 530, + [593] = 531, + [594] = 532, + [595] = 533, + [596] = 534, + [597] = 535, + [598] = 536, + [599] = 494, + [600] = 538, + [601] = 539, + [602] = 540, + [603] = 541, + [604] = 542, + [605] = 543, + [606] = 544, + [607] = 545, + [608] = 546, + [609] = 547, + [610] = 495, + [611] = 499, [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 619, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 623, - [624] = 624, - [625] = 625, - [626] = 626, - [627] = 627, - [628] = 628, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 41, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 672, - [673] = 673, + [613] = 500, + [614] = 499, + [615] = 500, + [616] = 510, + [617] = 511, + [618] = 512, + [619] = 513, + [620] = 524, + [621] = 525, + [622] = 526, + [623] = 527, + [624] = 528, + [625] = 530, + [626] = 531, + [627] = 532, + [628] = 533, + [629] = 534, + [630] = 535, + [631] = 536, + [632] = 494, + [633] = 538, + [634] = 539, + [635] = 540, + [636] = 541, + [637] = 542, + [638] = 543, + [639] = 544, + [640] = 545, + [641] = 546, + [642] = 547, + [643] = 495, + [644] = 499, + [645] = 500, + [646] = 510, + [647] = 511, + [648] = 512, + [649] = 513, + [650] = 524, + [651] = 525, + [652] = 526, + [653] = 527, + [654] = 528, + [655] = 530, + [656] = 531, + [657] = 532, + [658] = 533, + [659] = 534, + [660] = 535, + [661] = 536, + [662] = 494, + [663] = 538, + [664] = 539, + [665] = 540, + [666] = 541, + [667] = 542, + [668] = 543, + [669] = 544, + [670] = 545, + [671] = 546, + [672] = 547, + [673] = 495, [674] = 674, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 47, - [711] = 711, - [712] = 712, - [713] = 32, - [714] = 30, - [715] = 34, - [716] = 35, - [717] = 717, - [718] = 33, - [719] = 719, - [720] = 31, - [721] = 721, - [722] = 721, - [723] = 721, - [724] = 721, - [725] = 721, - [726] = 721, - [727] = 717, - [728] = 719, - [729] = 719, - [730] = 717, - [731] = 711, - [732] = 732, - [733] = 712, - [734] = 734, - [735] = 719, - [736] = 711, - [737] = 717, - [738] = 709, - [739] = 712, - [740] = 712, - [741] = 711, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 719, - [746] = 712, - [747] = 732, - [748] = 717, - [749] = 749, - [750] = 742, - [751] = 751, - [752] = 752, - [753] = 711, - [754] = 559, - [755] = 617, - [756] = 703, - [757] = 558, - [758] = 658, - [759] = 561, - [760] = 571, - [761] = 574, - [762] = 575, - [763] = 579, - [764] = 587, - [765] = 588, - [766] = 589, - [767] = 590, - [768] = 742, - [769] = 592, - [770] = 593, - [771] = 684, - [772] = 596, - [773] = 597, - [774] = 598, - [775] = 599, - [776] = 600, - [777] = 601, - [778] = 602, - [779] = 687, - [780] = 688, - [781] = 603, - [782] = 604, - [783] = 605, - [784] = 606, - [785] = 614, - [786] = 640, - [787] = 615, - [788] = 616, - [789] = 591, - [790] = 742, - [791] = 550, - [792] = 742, - [793] = 556, + [675] = 499, + [676] = 500, + [677] = 510, + [678] = 511, + [679] = 512, + [680] = 513, + [681] = 524, + [682] = 525, + [683] = 526, + [684] = 527, + [685] = 528, + [686] = 530, + [687] = 531, + [688] = 532, + [689] = 533, + [690] = 534, + [691] = 535, + [692] = 536, + [693] = 494, + [694] = 538, + [695] = 539, + [696] = 540, + [697] = 541, + [698] = 542, + [699] = 543, + [700] = 544, + [701] = 545, + [702] = 546, + [703] = 547, + [704] = 495, + [705] = 499, + [706] = 500, + [707] = 510, + [708] = 511, + [709] = 512, + [710] = 513, + [711] = 524, + [712] = 525, + [713] = 526, + [714] = 527, + [715] = 528, + [716] = 530, + [717] = 531, + [718] = 532, + [719] = 533, + [720] = 534, + [721] = 535, + [722] = 536, + [723] = 494, + [724] = 538, + [725] = 539, + [726] = 540, + [727] = 541, + [728] = 542, + [729] = 543, + [730] = 544, + [731] = 545, + [732] = 546, + [733] = 547, + [734] = 495, + [735] = 735, + [736] = 499, + [737] = 500, + [738] = 510, + [739] = 511, + [740] = 512, + [741] = 513, + [742] = 524, + [743] = 525, + [744] = 526, + [745] = 527, + [746] = 528, + [747] = 530, + [748] = 531, + [749] = 532, + [750] = 533, + [751] = 534, + [752] = 535, + [753] = 536, + [754] = 494, + [755] = 538, + [756] = 539, + [757] = 540, + [758] = 541, + [759] = 542, + [760] = 543, + [761] = 544, + [762] = 545, + [763] = 546, + [764] = 547, + [765] = 495, + [766] = 766, + [767] = 767, + [768] = 510, + [769] = 511, + [770] = 499, + [771] = 500, + [772] = 512, + [773] = 513, + [774] = 510, + [775] = 511, + [776] = 512, + [777] = 513, + [778] = 524, + [779] = 525, + [780] = 526, + [781] = 527, + [782] = 528, + [783] = 530, + [784] = 531, + [785] = 532, + [786] = 533, + [787] = 534, + [788] = 535, + [789] = 536, + [790] = 494, + [791] = 538, + [792] = 539, + [793] = 540, [794] = 541, - [795] = 532, - [796] = 540, - [797] = 537, - [798] = 539, - [799] = 542, - [800] = 742, - [801] = 801, - [802] = 701, - [803] = 702, - [804] = 674, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 675, - [809] = 585, - [810] = 810, - [811] = 811, - [812] = 807, - [813] = 813, - [814] = 676, - [815] = 677, - [816] = 560, - [817] = 700, - [818] = 810, - [819] = 811, - [820] = 807, - [821] = 813, - [822] = 822, - [823] = 584, - [824] = 586, - [825] = 641, - [826] = 826, - [827] = 827, - [828] = 813, - [829] = 637, - [830] = 638, - [831] = 647, - [832] = 581, - [833] = 608, - [834] = 834, - [835] = 611, - [836] = 826, - [837] = 594, - [838] = 595, - [839] = 705, - [840] = 649, - [841] = 650, - [842] = 826, - [843] = 827, - [844] = 652, - [845] = 653, - [846] = 654, - [847] = 578, - [848] = 582, - [849] = 827, - [850] = 620, - [851] = 621, - [852] = 622, - [853] = 624, - [854] = 661, - [855] = 625, - [856] = 626, - [857] = 662, - [858] = 627, - [859] = 628, - [860] = 663, - [861] = 664, - [862] = 665, - [863] = 666, - [864] = 667, - [865] = 630, - [866] = 631, - [867] = 583, - [868] = 607, - [869] = 562, - [870] = 632, - [871] = 633, - [872] = 634, - [873] = 635, - [874] = 874, - [875] = 875, - [876] = 660, - [877] = 668, - [878] = 669, - [879] = 670, - [880] = 671, - [881] = 672, - [882] = 565, - [883] = 683, - [884] = 806, - [885] = 567, - [886] = 678, - [887] = 679, - [888] = 680, - [889] = 681, - [890] = 682, - [891] = 689, - [892] = 690, - [893] = 691, - [894] = 692, - [895] = 693, - [896] = 742, - [897] = 805, - [898] = 806, - [899] = 810, - [900] = 811, - [901] = 807, - [902] = 813, - [903] = 557, - [904] = 826, - [905] = 827, - [906] = 685, - [907] = 694, - [908] = 695, - [909] = 696, - [910] = 697, - [911] = 698, - [912] = 568, - [913] = 569, - [914] = 914, - [915] = 915, - [916] = 704, - [917] = 648, - [918] = 629, - [919] = 636, - [920] = 642, - [921] = 659, - [922] = 563, - [923] = 923, - [924] = 686, - [925] = 655, - [926] = 657, - [927] = 673, - [928] = 610, - [929] = 612, - [930] = 613, - [931] = 619, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 643, - [937] = 644, - [938] = 651, - [939] = 810, - [940] = 566, - [941] = 570, - [942] = 805, - [943] = 806, - [944] = 810, - [945] = 811, - [946] = 807, - [947] = 813, - [948] = 826, - [949] = 827, - [950] = 572, - [951] = 811, - [952] = 805, - [953] = 806, - [954] = 810, - [955] = 811, - [956] = 807, - [957] = 813, - [958] = 826, - [959] = 827, - [960] = 699, - [961] = 805, - [962] = 806, - [963] = 810, - [964] = 811, - [965] = 807, - [966] = 813, - [967] = 826, - [968] = 827, - [969] = 742, - [970] = 805, - [971] = 806, - [972] = 810, - [973] = 811, - [974] = 807, - [975] = 813, - [976] = 826, - [977] = 827, - [978] = 577, - [979] = 609, - [980] = 573, - [981] = 805, - [982] = 806, - [983] = 810, - [984] = 811, - [985] = 807, - [986] = 813, - [987] = 826, - [988] = 827, - [989] = 618, - [990] = 564, - [991] = 576, - [992] = 639, - [993] = 993, - [994] = 805, - [995] = 806, - [996] = 646, - [997] = 805, - [998] = 998, - [999] = 998, - [1000] = 1000, - [1001] = 998, - [1002] = 1002, - [1003] = 998, - [1004] = 998, - [1005] = 998, - [1006] = 998, - [1007] = 998, - [1008] = 742, - [1009] = 998, - [1010] = 41, - [1011] = 1011, - [1012] = 1011, - [1013] = 1011, - [1014] = 1011, - [1015] = 1011, - [1016] = 1011, - [1017] = 1011, - [1018] = 1011, - [1019] = 41, - [1020] = 1011, - [1021] = 1021, - [1022] = 551, - [1023] = 1023, - [1024] = 31, - [1025] = 35, - [1026] = 34, - [1027] = 33, - [1028] = 732, - [1029] = 32, - [1030] = 30, - [1031] = 1031, - [1032] = 545, - [1033] = 548, - [1034] = 553, - [1035] = 554, - [1036] = 555, - [1037] = 533, - [1038] = 41, - [1039] = 623, + [795] = 542, + [796] = 543, + [797] = 544, + [798] = 545, + [799] = 546, + [800] = 547, + [801] = 495, + [802] = 499, + [803] = 500, + [804] = 510, + [805] = 511, + [806] = 512, + [807] = 513, + [808] = 524, + [809] = 525, + [810] = 526, + [811] = 527, + [812] = 528, + [813] = 530, + [814] = 531, + [815] = 532, + [816] = 533, + [817] = 534, + [818] = 535, + [819] = 536, + [820] = 494, + [821] = 538, + [822] = 539, + [823] = 540, + [824] = 541, + [825] = 542, + [826] = 543, + [827] = 544, + [828] = 545, + [829] = 546, + [830] = 547, + [831] = 495, + [832] = 499, + [833] = 500, + [834] = 510, + [835] = 511, + [836] = 512, + [837] = 513, + [838] = 524, + [839] = 525, + [840] = 526, + [841] = 527, + [842] = 528, + [843] = 530, + [844] = 531, + [845] = 532, + [846] = 533, + [847] = 534, + [848] = 535, + [849] = 536, + [850] = 494, + [851] = 538, + [852] = 539, + [853] = 540, + [854] = 541, + [855] = 542, + [856] = 543, + [857] = 544, + [858] = 545, + [859] = 546, + [860] = 547, + [861] = 495, + [862] = 499, + [863] = 500, + [864] = 510, + [865] = 511, + [866] = 512, + [867] = 513, + [868] = 524, + [869] = 525, + [870] = 526, + [871] = 527, + [872] = 528, + [873] = 530, + [874] = 531, + [875] = 532, + [876] = 533, + [877] = 534, + [878] = 535, + [879] = 536, + [880] = 494, + [881] = 538, + [882] = 539, + [883] = 540, + [884] = 541, + [885] = 542, + [886] = 543, + [887] = 544, + [888] = 545, + [889] = 546, + [890] = 547, + [891] = 495, + [892] = 499, + [893] = 500, + [894] = 510, + [895] = 511, + [896] = 512, + [897] = 513, + [898] = 524, + [899] = 525, + [900] = 526, + [901] = 527, + [902] = 528, + [903] = 530, + [904] = 531, + [905] = 532, + [906] = 533, + [907] = 534, + [908] = 535, + [909] = 536, + [910] = 494, + [911] = 538, + [912] = 539, + [913] = 540, + [914] = 541, + [915] = 542, + [916] = 543, + [917] = 544, + [918] = 545, + [919] = 546, + [920] = 547, + [921] = 495, + [922] = 499, + [923] = 500, + [924] = 510, + [925] = 511, + [926] = 512, + [927] = 513, + [928] = 524, + [929] = 525, + [930] = 526, + [931] = 527, + [932] = 528, + [933] = 530, + [934] = 531, + [935] = 532, + [936] = 533, + [937] = 534, + [938] = 535, + [939] = 536, + [940] = 494, + [941] = 538, + [942] = 539, + [943] = 540, + [944] = 541, + [945] = 542, + [946] = 543, + [947] = 544, + [948] = 545, + [949] = 546, + [950] = 547, + [951] = 495, + [952] = 499, + [953] = 500, + [954] = 510, + [955] = 511, + [956] = 512, + [957] = 513, + [958] = 524, + [959] = 525, + [960] = 526, + [961] = 527, + [962] = 528, + [963] = 530, + [964] = 531, + [965] = 532, + [966] = 533, + [967] = 534, + [968] = 535, + [969] = 536, + [970] = 494, + [971] = 538, + [972] = 539, + [973] = 540, + [974] = 541, + [975] = 542, + [976] = 543, + [977] = 544, + [978] = 545, + [979] = 546, + [980] = 547, + [981] = 495, + [982] = 525, + [983] = 526, + [984] = 527, + [985] = 499, + [986] = 500, + [987] = 528, + [988] = 510, + [989] = 511, + [990] = 512, + [991] = 513, + [992] = 524, + [993] = 525, + [994] = 526, + [995] = 527, + [996] = 528, + [997] = 530, + [998] = 531, + [999] = 532, + [1000] = 533, + [1001] = 534, + [1002] = 535, + [1003] = 536, + [1004] = 538, + [1005] = 539, + [1006] = 540, + [1007] = 541, + [1008] = 542, + [1009] = 543, + [1010] = 544, + [1011] = 545, + [1012] = 546, + [1013] = 547, + [1014] = 495, + [1015] = 1015, + [1016] = 499, + [1017] = 500, + [1018] = 510, + [1019] = 511, + [1020] = 512, + [1021] = 513, + [1022] = 524, + [1023] = 525, + [1024] = 526, + [1025] = 527, + [1026] = 528, + [1027] = 530, + [1028] = 531, + [1029] = 532, + [1030] = 533, + [1031] = 534, + [1032] = 535, + [1033] = 536, + [1034] = 494, + [1035] = 538, + [1036] = 539, + [1037] = 540, + [1038] = 541, + [1039] = 542, [1040] = 543, - [1041] = 531, - [1042] = 546, - [1043] = 534, - [1044] = 535, - [1045] = 536, - [1046] = 549, - [1047] = 547, - [1048] = 47, - [1049] = 1049, - [1050] = 552, - [1051] = 530, - [1052] = 47, - [1053] = 41, - [1054] = 41, - [1055] = 41, - [1056] = 35, - [1057] = 47, - [1058] = 30, - [1059] = 31, - [1060] = 33, - [1061] = 34, - [1062] = 32, - [1063] = 47, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, - [1069] = 1068, - [1070] = 1070, - [1071] = 47, - [1072] = 1070, - [1073] = 1073, - [1074] = 1074, - [1075] = 1068, - [1076] = 47, - [1077] = 1077, - [1078] = 1078, - [1079] = 1070, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1081, - [1084] = 1084, - [1085] = 1085, - [1086] = 1081, - [1087] = 1082, - [1088] = 1084, - [1089] = 1085, - [1090] = 1085, - [1091] = 1082, - [1092] = 1084, - [1093] = 1081, - [1094] = 1082, - [1095] = 1084, - [1096] = 1085, - [1097] = 1085, - [1098] = 1082, - [1099] = 1084, - [1100] = 1085, - [1101] = 1081, - [1102] = 1102, - [1103] = 1082, - [1104] = 1084, - [1105] = 1085, - [1106] = 1081, - [1107] = 1082, - [1108] = 1084, - [1109] = 1085, - [1110] = 1081, - [1111] = 1084, - [1112] = 1081, - [1113] = 1082, - [1114] = 1084, - [1115] = 1081, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1137, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 1129, - [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 1132, - [1164] = 1158, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1165, - [1181] = 1166, - [1182] = 1131, - [1183] = 1167, - [1184] = 1143, - [1185] = 1142, - [1186] = 1129, - [1187] = 1187, - [1188] = 1148, - [1189] = 1149, - [1190] = 1190, - [1191] = 1140, - [1192] = 1141, - [1193] = 1130, - [1194] = 1132, - [1195] = 1133, - [1196] = 1134, - [1197] = 1135, - [1198] = 1136, - [1199] = 1137, - [1200] = 1138, - [1201] = 1144, - [1202] = 1145, - [1203] = 1129, - [1204] = 1148, - [1205] = 1149, - [1206] = 1150, - [1207] = 1151, - [1208] = 1152, - [1209] = 1153, - [1210] = 1154, - [1211] = 1155, - [1212] = 1156, - [1213] = 1157, - [1214] = 1159, - [1215] = 1160, - [1216] = 1138, - [1217] = 1135, - [1218] = 1158, - [1219] = 1165, - [1220] = 1166, - [1221] = 1167, - [1222] = 1168, - [1223] = 1169, - [1224] = 1170, - [1225] = 1171, - [1226] = 1172, - [1227] = 1173, - [1228] = 1174, - [1229] = 1229, - [1230] = 1150, - [1231] = 1175, - [1232] = 1176, - [1233] = 1177, - [1234] = 1178, - [1235] = 1179, - [1236] = 1140, - [1237] = 1150, - [1238] = 1151, - [1239] = 1131, - [1240] = 1151, - [1241] = 1143, - [1242] = 1152, - [1243] = 1132, - [1244] = 1153, - [1245] = 1187, - [1246] = 1154, - [1247] = 1155, - [1248] = 1190, - [1249] = 1140, - [1250] = 1141, - [1251] = 1130, - [1252] = 1132, - [1253] = 1133, - [1254] = 1134, - [1255] = 1135, - [1256] = 1136, - [1257] = 1137, - [1258] = 1138, - [1259] = 1144, - [1260] = 1145, - [1261] = 1261, - [1262] = 1148, - [1263] = 1149, - [1264] = 1150, - [1265] = 1151, - [1266] = 1152, - [1267] = 1153, - [1268] = 1154, - [1269] = 1155, - [1270] = 1156, - [1271] = 1157, - [1272] = 1159, - [1273] = 1160, - [1274] = 1158, - [1275] = 1165, - [1276] = 1166, - [1277] = 1167, - [1278] = 1168, - [1279] = 1169, - [1280] = 1170, - [1281] = 1171, - [1282] = 1172, - [1283] = 1173, - [1284] = 1174, - [1285] = 1175, - [1286] = 1176, - [1287] = 1177, - [1288] = 1178, - [1289] = 1179, - [1290] = 1131, - [1291] = 1156, - [1292] = 1157, - [1293] = 1187, - [1294] = 1143, - [1295] = 1144, - [1296] = 1190, - [1297] = 1140, - [1298] = 1141, - [1299] = 1130, - [1300] = 1143, - [1301] = 1132, - [1302] = 1133, - [1303] = 1134, - [1304] = 1135, - [1305] = 1136, - [1306] = 1137, - [1307] = 1138, - [1308] = 1144, - [1309] = 1145, - [1310] = 1142, - [1311] = 1129, - [1312] = 1148, - [1313] = 1149, - [1314] = 1150, - [1315] = 1151, - [1316] = 1152, - [1317] = 1153, - [1318] = 1154, - [1319] = 1155, - [1320] = 1156, - [1321] = 1321, - [1322] = 1159, - [1323] = 1160, - [1324] = 1158, - [1325] = 1165, - [1326] = 1166, - [1327] = 1167, - [1328] = 1168, - [1329] = 1169, - [1330] = 1170, - [1331] = 1171, - [1332] = 1172, - [1333] = 1173, - [1334] = 1174, - [1335] = 1175, - [1336] = 1176, - [1337] = 1177, - [1338] = 1178, - [1339] = 1179, - [1340] = 1131, - [1341] = 1142, - [1342] = 1145, - [1343] = 1187, - [1344] = 1159, - [1345] = 1160, - [1346] = 1190, - [1347] = 1132, - [1348] = 1129, - [1349] = 1148, - [1350] = 1149, - [1351] = 1158, - [1352] = 1165, - [1353] = 1166, - [1354] = 1167, - [1355] = 1175, - [1356] = 1176, - [1357] = 1177, - [1358] = 1131, - [1359] = 1133, - [1360] = 1360, - [1361] = 1187, - [1362] = 1158, - [1363] = 1165, - [1364] = 1190, - [1365] = 1132, - [1366] = 1129, - [1367] = 1148, - [1368] = 1149, - [1369] = 1158, - [1370] = 1165, - [1371] = 1166, - [1372] = 1167, - [1373] = 1175, - [1374] = 1176, - [1375] = 1177, - [1376] = 1131, - [1377] = 1166, - [1378] = 1167, - [1379] = 1168, - [1380] = 1162, - [1381] = 1169, - [1382] = 1170, - [1383] = 1321, - [1384] = 1384, - [1385] = 1171, - [1386] = 1142, - [1387] = 1172, - [1388] = 1152, - [1389] = 1173, - [1390] = 1153, - [1391] = 1133, - [1392] = 1168, - [1393] = 1154, - [1394] = 1178, - [1395] = 1169, - [1396] = 1170, - [1397] = 1134, - [1398] = 1155, - [1399] = 1171, - [1400] = 1172, - [1401] = 1173, - [1402] = 1156, - [1403] = 1321, - [1404] = 1143, - [1405] = 1321, - [1406] = 1142, - [1407] = 1162, - [1408] = 1179, - [1409] = 1135, - [1410] = 1157, - [1411] = 1174, - [1412] = 1384, - [1413] = 1136, - [1414] = 1175, - [1415] = 1176, - [1416] = 1416, - [1417] = 1321, - [1418] = 1177, - [1419] = 1142, - [1420] = 1162, - [1421] = 1384, - [1422] = 1162, - [1423] = 1384, - [1424] = 1162, - [1425] = 1384, - [1426] = 1178, - [1427] = 1179, - [1428] = 1102, - [1429] = 1129, - [1430] = 1148, - [1431] = 1137, - [1432] = 1131, - [1433] = 1138, - [1434] = 1141, - [1435] = 1143, - [1436] = 1321, - [1437] = 1142, - [1438] = 1321, - [1439] = 1187, - [1440] = 1143, - [1441] = 1149, - [1442] = 1190, - [1443] = 1142, - [1444] = 1130, - [1445] = 1143, - [1446] = 1175, - [1447] = 1321, - [1448] = 1159, - [1449] = 1187, - [1450] = 1176, - [1451] = 1177, - [1452] = 1134, - [1453] = 1160, - [1454] = 1143, - [1455] = 1321, - [1456] = 1136, - [1457] = 1457, - [1458] = 1384, - [1459] = 1321, - [1460] = 1142, - [1461] = 1143, - [1462] = 1142, - [1463] = 1130, - [1464] = 1190, - [1465] = 1140, - [1466] = 1187, - [1467] = 1141, - [1468] = 1468, - [1469] = 1144, - [1470] = 1174, - [1471] = 1190, - [1472] = 1145, - [1473] = 1321, - [1474] = 1157, - [1475] = 1475, - [1476] = 1476, - [1477] = 1475, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1483, - [1487] = 1476, - [1488] = 1484, - [1489] = 1489, - [1490] = 1490, - [1491] = 1491, - [1492] = 1492, - [1493] = 1493, - [1494] = 1491, - [1495] = 1495, - [1496] = 1492, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1485, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1493, - [1506] = 1506, - [1507] = 1497, - [1508] = 1498, - [1509] = 1499, - [1510] = 1495, - [1511] = 1475, - [1512] = 1485, - [1513] = 1502, - [1514] = 1503, - [1515] = 1504, - [1516] = 1516, - [1517] = 1517, - [1518] = 1482, - [1519] = 1476, - [1520] = 1475, - [1521] = 1479, - [1522] = 1481, - [1523] = 1483, - [1524] = 1484, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1479, - [1529] = 34, - [1530] = 35, - [1531] = 1481, - [1532] = 1532, - [1533] = 1502, - [1534] = 1503, - [1535] = 1504, - [1536] = 1490, - [1537] = 1121, - [1538] = 1483, - [1539] = 1478, - [1540] = 1490, - [1541] = 1541, - [1542] = 1491, - [1543] = 1492, - [1544] = 1497, - [1545] = 1478, - [1546] = 1498, - [1547] = 1490, - [1548] = 1499, - [1549] = 1491, - [1550] = 1492, - [1551] = 1497, - [1552] = 1498, - [1553] = 1499, - [1554] = 1485, - [1555] = 1502, - [1556] = 1503, - [1557] = 1504, - [1558] = 1485, - [1559] = 1502, - [1560] = 1516, - [1561] = 1517, - [1562] = 1482, - [1563] = 1476, - [1564] = 1475, - [1565] = 1479, - [1566] = 1481, - [1567] = 1483, - [1568] = 1484, - [1569] = 1503, - [1570] = 1478, - [1571] = 1504, - [1572] = 1572, - [1573] = 1573, - [1574] = 1490, - [1575] = 1516, - [1576] = 1517, - [1577] = 1482, - [1578] = 1476, - [1579] = 1475, - [1580] = 1580, - [1581] = 1491, - [1582] = 1492, - [1583] = 1497, - [1584] = 1498, - [1585] = 1499, - [1586] = 1479, - [1587] = 1485, - [1588] = 1502, - [1589] = 1503, - [1590] = 1504, - [1591] = 1481, - [1592] = 1483, - [1593] = 1484, - [1594] = 1594, - [1595] = 1489, - [1596] = 1527, - [1597] = 1516, - [1598] = 1517, - [1599] = 1482, - [1600] = 1516, - [1601] = 1476, - [1602] = 1475, - [1603] = 1479, - [1604] = 1481, - [1605] = 1483, - [1606] = 1484, - [1607] = 1517, - [1608] = 1608, - [1609] = 1609, - [1610] = 1493, - [1611] = 1495, - [1612] = 1482, - [1613] = 1613, - [1614] = 1580, - [1615] = 1615, - [1616] = 1616, - [1617] = 1617, - [1618] = 1618, - [1619] = 1484, - [1620] = 1620, - [1621] = 1490, - [1622] = 1478, - [1623] = 1573, - [1624] = 1491, - [1625] = 1492, - [1626] = 1580, - [1627] = 1497, - [1628] = 1498, - [1629] = 1499, - [1630] = 1489, - [1631] = 1527, - [1632] = 1485, - [1633] = 1481, - [1634] = 1503, - [1635] = 1504, - [1636] = 1491, - [1637] = 1493, - [1638] = 1495, - [1639] = 1492, - [1640] = 1497, - [1641] = 1516, - [1642] = 1516, - [1643] = 1517, - [1644] = 1482, - [1645] = 1476, - [1646] = 1475, - [1647] = 1479, - [1648] = 1481, - [1649] = 1483, - [1650] = 1484, - [1651] = 1478, - [1652] = 1580, - [1653] = 1489, - [1654] = 1527, - [1655] = 1517, - [1656] = 1493, - [1657] = 1495, - [1658] = 1482, - [1659] = 1580, - [1660] = 1490, - [1661] = 1476, - [1662] = 1491, - [1663] = 1492, - [1664] = 1497, - [1665] = 1498, - [1666] = 1499, - [1667] = 1482, - [1668] = 1485, - [1669] = 1502, - [1670] = 1503, - [1671] = 1504, - [1672] = 1478, - [1673] = 1476, - [1674] = 1516, - [1675] = 1517, - [1676] = 1482, - [1677] = 1476, - [1678] = 1475, - [1679] = 1479, - [1680] = 1481, - [1681] = 1483, - [1682] = 1484, - [1683] = 1683, - [1684] = 1500, - [1685] = 1573, - [1686] = 1613, - [1687] = 1580, - [1688] = 1478, - [1689] = 1490, - [1690] = 1491, - [1691] = 1492, - [1692] = 1497, - [1693] = 1498, - [1694] = 1499, - [1695] = 1485, - [1696] = 1502, - [1697] = 1503, - [1698] = 1504, - [1699] = 1516, - [1700] = 1517, - [1701] = 1482, - [1702] = 1476, - [1703] = 1475, - [1704] = 1479, - [1705] = 1481, - [1706] = 1483, - [1707] = 1484, - [1708] = 1500, - [1709] = 1573, - [1710] = 1613, - [1711] = 1580, - [1712] = 1500, - [1713] = 1573, - [1714] = 1613, - [1715] = 1580, - [1716] = 1500, - [1717] = 1573, - [1718] = 1613, - [1719] = 1478, - [1720] = 1500, - [1721] = 1573, - [1722] = 1613, - [1723] = 1516, - [1724] = 1573, - [1725] = 1479, - [1726] = 1478, - [1727] = 1481, - [1728] = 1490, - [1729] = 1517, - [1730] = 1483, - [1731] = 1475, - [1732] = 1573, - [1733] = 1478, - [1734] = 1580, - [1735] = 1491, - [1736] = 1492, - [1737] = 1497, - [1738] = 1490, - [1739] = 1498, - [1740] = 1499, - [1741] = 1741, - [1742] = 1485, - [1743] = 30, - [1744] = 1502, - [1745] = 1503, - [1746] = 1504, - [1747] = 1747, - [1748] = 1748, - [1749] = 1484, - [1750] = 33, - [1751] = 1491, - [1752] = 1479, - [1753] = 1492, - [1754] = 1497, - [1755] = 1498, - [1756] = 1499, - [1757] = 1485, - [1758] = 1502, - [1759] = 1503, - [1760] = 1504, - [1761] = 1489, - [1762] = 1527, - [1763] = 1498, - [1764] = 1499, - [1765] = 1490, - [1766] = 31, - [1767] = 32, - [1768] = 1516, - [1769] = 1517, - [1770] = 1502, - [1771] = 33, - [1772] = 34, - [1773] = 31, - [1774] = 30, - [1775] = 32, - [1776] = 35, - [1777] = 1777, - [1778] = 1778, - [1779] = 30, - [1780] = 32, - [1781] = 34, - [1782] = 31, - [1783] = 35, - [1784] = 33, - [1785] = 35, - [1786] = 31, - [1787] = 30, - [1788] = 33, - [1789] = 32, - [1790] = 34, - [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [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] = 1845, - [1846] = 1846, - [1847] = 1847, - [1848] = 1848, - [1849] = 1849, - [1850] = 1850, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1857, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1861, - [1862] = 618, - [1863] = 1863, - [1864] = 1864, - [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1870, - [1871] = 1871, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1875, - [1876] = 1876, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1889, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1902, - [1903] = 1903, - [1904] = 1904, - [1905] = 1905, - [1906] = 1906, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 1914, - [1915] = 1915, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1920, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 1925, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 1931, - [1932] = 1932, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1944, - [1945] = 1945, - [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 1953, - [1954] = 1954, - [1955] = 1955, - [1956] = 1956, - [1957] = 1957, - [1958] = 646, - [1959] = 1959, - [1960] = 1960, - [1961] = 1961, - [1962] = 1962, - [1963] = 1963, - [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1967, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, - [1971] = 1971, - [1972] = 1972, - [1973] = 1973, - [1974] = 1974, - [1975] = 1975, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, - [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1982, - [1983] = 1983, - [1984] = 1984, - [1985] = 1985, - [1986] = 1986, - [1987] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, - [1992] = 1992, - [1993] = 1993, - [1994] = 1994, - [1995] = 1995, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, - [2002] = 2002, - [2003] = 2003, - [2004] = 2004, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 2014, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 2023, - [2024] = 2024, - [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, - [2029] = 2029, - [2030] = 2030, - [2031] = 2031, - [2032] = 2032, - [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 2048, - [2049] = 2049, - [2050] = 2050, - [2051] = 2051, - [2052] = 2052, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, - [2058] = 2058, - [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2059, - [2063] = 2060, - [2064] = 2064, - [2065] = 2065, - [2066] = 2064, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, - [2071] = 2071, - [2072] = 2067, - [2073] = 2073, - [2074] = 2074, - [2075] = 2075, - [2076] = 2076, - [2077] = 2065, - [2078] = 2078, - [2079] = 2078, - [2080] = 2080, - [2081] = 2080, - [2082] = 2058, - [2083] = 2067, - [2084] = 2078, - [2085] = 2080, - [2086] = 2086, - [2087] = 2087, - [2088] = 2087, - [2089] = 2057, - [2090] = 2090, - [2091] = 2086, - [2092] = 2092, - [2093] = 2061, - [2094] = 2059, - [2095] = 2069, - [2096] = 2064, - [2097] = 2086, - [2098] = 2070, - [2099] = 2071, - [2100] = 2087, - [2101] = 2101, - [2102] = 2073, - [2103] = 2074, - [2104] = 2075, - [2105] = 2057, - [2106] = 2090, - [2107] = 2076, - [2108] = 2058, - [2109] = 2070, - [2110] = 2067, - [2111] = 2078, - [2112] = 2080, - [2113] = 2086, - [2114] = 2087, - [2115] = 2057, - [2116] = 2090, - [2117] = 2092, - [2118] = 2071, - [2119] = 2073, - [2120] = 2073, - [2121] = 2076, - [2122] = 2061, - [2123] = 2068, - [2124] = 2101, + [1041] = 544, + [1042] = 545, + [1043] = 546, + [1044] = 547, + [1045] = 495, + [1046] = 499, + [1047] = 500, + [1048] = 510, + [1049] = 511, + [1050] = 512, + [1051] = 513, + [1052] = 524, + [1053] = 525, + [1054] = 526, + [1055] = 527, + [1056] = 528, + [1057] = 530, + [1058] = 531, + [1059] = 532, + [1060] = 533, + [1061] = 534, + [1062] = 535, + [1063] = 536, + [1064] = 494, + [1065] = 538, + [1066] = 539, + [1067] = 540, + [1068] = 541, + [1069] = 542, + [1070] = 543, + [1071] = 544, + [1072] = 545, + [1073] = 546, + [1074] = 547, + [1075] = 495, + [1076] = 499, + [1077] = 500, + [1078] = 510, + [1079] = 511, + [1080] = 512, + [1081] = 513, + [1082] = 524, + [1083] = 525, + [1084] = 526, + [1085] = 527, + [1086] = 528, + [1087] = 530, + [1088] = 531, + [1089] = 532, + [1090] = 533, + [1091] = 534, + [1092] = 535, + [1093] = 536, + [1094] = 494, + [1095] = 538, + [1096] = 539, + [1097] = 540, + [1098] = 541, + [1099] = 542, + [1100] = 543, + [1101] = 544, + [1102] = 545, + [1103] = 546, + [1104] = 547, + [1105] = 495, + [1106] = 499, + [1107] = 500, + [1108] = 510, + [1109] = 511, + [1110] = 512, + [1111] = 513, + [1112] = 524, + [1113] = 525, + [1114] = 526, + [1115] = 527, + [1116] = 528, + [1117] = 530, + [1118] = 531, + [1119] = 532, + [1120] = 533, + [1121] = 534, + [1122] = 535, + [1123] = 536, + [1124] = 494, + [1125] = 538, + [1126] = 539, + [1127] = 540, + [1128] = 541, + [1129] = 542, + [1130] = 543, + [1131] = 544, + [1132] = 545, + [1133] = 546, + [1134] = 547, + [1135] = 495, + [1136] = 499, + [1137] = 500, + [1138] = 510, + [1139] = 511, + [1140] = 512, + [1141] = 513, + [1142] = 524, + [1143] = 525, + [1144] = 526, + [1145] = 527, + [1146] = 528, + [1147] = 530, + [1148] = 531, + [1149] = 532, + [1150] = 533, + [1151] = 534, + [1152] = 535, + [1153] = 536, + [1154] = 494, + [1155] = 538, + [1156] = 539, + [1157] = 540, + [1158] = 541, + [1159] = 542, + [1160] = 543, + [1161] = 544, + [1162] = 545, + [1163] = 546, + [1164] = 547, + [1165] = 495, + [1166] = 499, + [1167] = 500, + [1168] = 510, + [1169] = 511, + [1170] = 512, + [1171] = 513, + [1172] = 524, + [1173] = 525, + [1174] = 526, + [1175] = 527, + [1176] = 528, + [1177] = 530, + [1178] = 531, + [1179] = 532, + [1180] = 533, + [1181] = 534, + [1182] = 535, + [1183] = 536, + [1184] = 494, + [1185] = 538, + [1186] = 539, + [1187] = 540, + [1188] = 541, + [1189] = 542, + [1190] = 543, + [1191] = 544, + [1192] = 545, + [1193] = 546, + [1194] = 547, + [1195] = 495, + [1196] = 551, + [1197] = 1197, + [1198] = 530, + [1199] = 531, + [1200] = 532, + [1201] = 499, + [1202] = 500, + [1203] = 533, + [1204] = 534, + [1205] = 535, + [1206] = 510, + [1207] = 511, + [1208] = 512, + [1209] = 513, + [1210] = 536, + [1211] = 1211, + [1212] = 1212, + [1213] = 524, + [1214] = 525, + [1215] = 526, + [1216] = 527, + [1217] = 528, + [1218] = 1218, + [1219] = 1219, + [1220] = 530, + [1221] = 531, + [1222] = 532, + [1223] = 533, + [1224] = 534, + [1225] = 535, + [1226] = 536, + [1227] = 494, + [1228] = 538, + [1229] = 539, + [1230] = 540, + [1231] = 541, + [1232] = 542, + [1233] = 543, + [1234] = 544, + [1235] = 545, + [1236] = 546, + [1237] = 547, + [1238] = 495, + [1239] = 499, + [1240] = 500, + [1241] = 1241, + [1242] = 510, + [1243] = 512, + [1244] = 513, + [1245] = 527, + [1246] = 499, + [1247] = 500, + [1248] = 510, + [1249] = 512, + [1250] = 513, + [1251] = 527, + [1252] = 499, + [1253] = 500, + [1254] = 510, + [1255] = 512, + [1256] = 513, + [1257] = 527, + [1258] = 499, + [1259] = 500, + [1260] = 510, + [1261] = 512, + [1262] = 513, + [1263] = 527, + [1264] = 499, + [1265] = 500, + [1266] = 510, + [1267] = 512, + [1268] = 513, + [1269] = 527, + [1270] = 499, + [1271] = 500, + [1272] = 510, + [1273] = 512, + [1274] = 513, + [1275] = 527, + [1276] = 499, + [1277] = 500, + [1278] = 510, + [1279] = 512, + [1280] = 513, + [1281] = 527, + [1282] = 499, + [1283] = 500, + [1284] = 510, + [1285] = 512, + [1286] = 513, + [1287] = 527, + [1288] = 499, + [1289] = 500, + [1290] = 494, + [1291] = 510, + [1292] = 512, + [1293] = 513, + [1294] = 527, + [1295] = 499, + [1296] = 500, + [1297] = 538, + [1298] = 510, + [1299] = 512, + [1300] = 513, + [1301] = 527, + [1302] = 499, + [1303] = 500, + [1304] = 539, + [1305] = 510, + [1306] = 512, + [1307] = 513, + [1308] = 527, + [1309] = 499, + [1310] = 500, + [1311] = 540, + [1312] = 510, + [1313] = 512, + [1314] = 513, + [1315] = 527, + [1316] = 499, + [1317] = 500, + [1318] = 541, + [1319] = 510, + [1320] = 512, + [1321] = 513, + [1322] = 527, + [1323] = 542, + [1324] = 499, + [1325] = 500, + [1326] = 543, + [1327] = 510, + [1328] = 512, + [1329] = 513, + [1330] = 527, + [1331] = 499, + [1332] = 500, + [1333] = 1333, + [1334] = 510, + [1335] = 512, + [1336] = 513, + [1337] = 527, + [1338] = 499, + [1339] = 500, + [1340] = 1340, + [1341] = 510, + [1342] = 512, + [1343] = 513, + [1344] = 527, + [1345] = 499, + [1346] = 500, + [1347] = 1347, + [1348] = 510, + [1349] = 512, + [1350] = 513, + [1351] = 527, + [1352] = 499, + [1353] = 500, + [1354] = 1354, + [1355] = 510, + [1356] = 512, + [1357] = 513, + [1358] = 527, + [1359] = 499, + [1360] = 500, + [1361] = 510, + [1362] = 512, + [1363] = 513, + [1364] = 527, + [1365] = 499, + [1366] = 500, + [1367] = 510, + [1368] = 512, + [1369] = 513, + [1370] = 527, + [1371] = 551, + [1372] = 1197, + [1373] = 499, + [1374] = 500, + [1375] = 510, + [1376] = 512, + [1377] = 513, + [1378] = 527, + [1379] = 544, + [1380] = 545, + [1381] = 546, + [1382] = 547, + [1383] = 1383, + [1384] = 499, + [1385] = 500, + [1386] = 510, + [1387] = 512, + [1388] = 513, + [1389] = 527, + [1390] = 499, + [1391] = 500, + [1392] = 510, + [1393] = 512, + [1394] = 513, + [1395] = 527, + [1396] = 495, + [1397] = 551, + [1398] = 1197, + [1399] = 499, + [1400] = 500, + [1401] = 510, + [1402] = 512, + [1403] = 513, + [1404] = 527, + [1405] = 1197, + [1406] = 551, + [1407] = 1197, + [1408] = 499, + [1409] = 500, + [1410] = 551, + [1411] = 1197, + [1412] = 1412, + [1413] = 1413, + [1414] = 510, + [1415] = 511, + [1416] = 512, + [1417] = 513, + [1418] = 551, + [1419] = 1197, + [1420] = 1420, + [1421] = 1421, + [1422] = 524, + [1423] = 525, + [1424] = 526, + [1425] = 527, + [1426] = 528, + [1427] = 551, + [1428] = 1197, + [1429] = 530, + [1430] = 531, + [1431] = 532, + [1432] = 533, + [1433] = 534, + [1434] = 535, + [1435] = 536, + [1436] = 551, + [1437] = 1197, + [1438] = 494, + [1439] = 538, + [1440] = 539, + [1441] = 540, + [1442] = 541, + [1443] = 542, + [1444] = 543, + [1445] = 551, + [1446] = 1197, + [1447] = 544, + [1448] = 545, + [1449] = 546, + [1450] = 547, + [1451] = 495, + [1452] = 511, + [1453] = 524, + [1454] = 525, + [1455] = 526, + [1456] = 528, + [1457] = 530, + [1458] = 531, + [1459] = 532, + [1460] = 533, + [1461] = 534, + [1462] = 535, + [1463] = 536, + [1464] = 494, + [1465] = 538, + [1466] = 539, + [1467] = 540, + [1468] = 541, + [1469] = 542, + [1470] = 543, + [1471] = 544, + [1472] = 545, + [1473] = 546, + [1474] = 547, + [1475] = 495, + [1476] = 511, + [1477] = 524, + [1478] = 525, + [1479] = 526, + [1480] = 528, + [1481] = 530, + [1482] = 531, + [1483] = 532, + [1484] = 533, + [1485] = 534, + [1486] = 535, + [1487] = 536, + [1488] = 494, + [1489] = 538, + [1490] = 539, + [1491] = 540, + [1492] = 541, + [1493] = 542, + [1494] = 543, + [1495] = 544, + [1496] = 545, + [1497] = 546, + [1498] = 547, + [1499] = 495, + [1500] = 511, + [1501] = 524, + [1502] = 525, + [1503] = 526, + [1504] = 528, + [1505] = 530, + [1506] = 531, + [1507] = 532, + [1508] = 533, + [1509] = 534, + [1510] = 535, + [1511] = 536, + [1512] = 494, + [1513] = 538, + [1514] = 539, + [1515] = 540, + [1516] = 541, + [1517] = 542, + [1518] = 543, + [1519] = 544, + [1520] = 545, + [1521] = 546, + [1522] = 547, + [1523] = 495, + [1524] = 511, + [1525] = 524, + [1526] = 525, + [1527] = 526, + [1528] = 528, + [1529] = 530, + [1530] = 531, + [1531] = 532, + [1532] = 533, + [1533] = 534, + [1534] = 535, + [1535] = 536, + [1536] = 494, + [1537] = 538, + [1538] = 539, + [1539] = 540, + [1540] = 541, + [1541] = 542, + [1542] = 543, + [1543] = 544, + [1544] = 545, + [1545] = 546, + [1546] = 547, + [1547] = 495, + [1548] = 499, + [1549] = 500, + [1550] = 510, + [1551] = 512, + [1552] = 513, + [1553] = 527, + [1554] = 499, + [1555] = 500, + [1556] = 510, + [1557] = 512, + [1558] = 513, + [1559] = 527, + [1560] = 499, + [1561] = 500, + [1562] = 510, + [1563] = 512, + [1564] = 513, + [1565] = 527, + [1566] = 511, + [1567] = 524, + [1568] = 525, + [1569] = 526, + [1570] = 528, + [1571] = 530, + [1572] = 531, + [1573] = 532, + [1574] = 533, + [1575] = 534, + [1576] = 535, + [1577] = 536, + [1578] = 494, + [1579] = 538, + [1580] = 539, + [1581] = 540, + [1582] = 541, + [1583] = 542, + [1584] = 543, + [1585] = 544, + [1586] = 545, + [1587] = 546, + [1588] = 547, + [1589] = 495, + [1590] = 511, + [1591] = 524, + [1592] = 525, + [1593] = 526, + [1594] = 528, + [1595] = 530, + [1596] = 531, + [1597] = 532, + [1598] = 533, + [1599] = 534, + [1600] = 535, + [1601] = 536, + [1602] = 494, + [1603] = 538, + [1604] = 539, + [1605] = 540, + [1606] = 541, + [1607] = 542, + [1608] = 543, + [1609] = 544, + [1610] = 545, + [1611] = 546, + [1612] = 547, + [1613] = 495, + [1614] = 511, + [1615] = 524, + [1616] = 525, + [1617] = 526, + [1618] = 528, + [1619] = 530, + [1620] = 531, + [1621] = 532, + [1622] = 533, + [1623] = 534, + [1624] = 535, + [1625] = 536, + [1626] = 494, + [1627] = 538, + [1628] = 539, + [1629] = 540, + [1630] = 541, + [1631] = 542, + [1632] = 543, + [1633] = 544, + [1634] = 545, + [1635] = 546, + [1636] = 547, + [1637] = 495, + [1638] = 511, + [1639] = 524, + [1640] = 525, + [1641] = 526, + [1642] = 528, + [1643] = 530, + [1644] = 531, + [1645] = 532, + [1646] = 533, + [1647] = 534, + [1648] = 535, + [1649] = 536, + [1650] = 494, + [1651] = 538, + [1652] = 539, + [1653] = 540, + [1654] = 541, + [1655] = 542, + [1656] = 543, + [1657] = 544, + [1658] = 545, + [1659] = 546, + [1660] = 547, + [1661] = 495, + [1662] = 511, + [1663] = 524, + [1664] = 525, + [1665] = 526, + [1666] = 528, + [1667] = 530, + [1668] = 531, + [1669] = 532, + [1670] = 533, + [1671] = 534, + [1672] = 535, + [1673] = 536, + [1674] = 494, + [1675] = 538, + [1676] = 539, + [1677] = 540, + [1678] = 541, + [1679] = 542, + [1680] = 543, + [1681] = 544, + [1682] = 545, + [1683] = 546, + [1684] = 547, + [1685] = 495, + [1686] = 511, + [1687] = 524, + [1688] = 525, + [1689] = 526, + [1690] = 528, + [1691] = 530, + [1692] = 531, + [1693] = 532, + [1694] = 533, + [1695] = 534, + [1696] = 535, + [1697] = 536, + [1698] = 494, + [1699] = 538, + [1700] = 539, + [1701] = 540, + [1702] = 541, + [1703] = 542, + [1704] = 543, + [1705] = 544, + [1706] = 545, + [1707] = 546, + [1708] = 547, + [1709] = 495, + [1710] = 511, + [1711] = 524, + [1712] = 525, + [1713] = 526, + [1714] = 528, + [1715] = 530, + [1716] = 531, + [1717] = 532, + [1718] = 533, + [1719] = 534, + [1720] = 535, + [1721] = 536, + [1722] = 494, + [1723] = 538, + [1724] = 539, + [1725] = 540, + [1726] = 541, + [1727] = 542, + [1728] = 543, + [1729] = 544, + [1730] = 545, + [1731] = 546, + [1732] = 547, + [1733] = 495, + [1734] = 511, + [1735] = 524, + [1736] = 525, + [1737] = 526, + [1738] = 528, + [1739] = 530, + [1740] = 531, + [1741] = 532, + [1742] = 533, + [1743] = 534, + [1744] = 535, + [1745] = 536, + [1746] = 494, + [1747] = 538, + [1748] = 539, + [1749] = 540, + [1750] = 541, + [1751] = 542, + [1752] = 543, + [1753] = 544, + [1754] = 545, + [1755] = 546, + [1756] = 547, + [1757] = 495, + [1758] = 511, + [1759] = 524, + [1760] = 525, + [1761] = 526, + [1762] = 528, + [1763] = 530, + [1764] = 531, + [1765] = 532, + [1766] = 533, + [1767] = 534, + [1768] = 535, + [1769] = 536, + [1770] = 494, + [1771] = 538, + [1772] = 539, + [1773] = 540, + [1774] = 541, + [1775] = 542, + [1776] = 543, + [1777] = 544, + [1778] = 545, + [1779] = 546, + [1780] = 547, + [1781] = 495, + [1782] = 511, + [1783] = 524, + [1784] = 525, + [1785] = 526, + [1786] = 528, + [1787] = 530, + [1788] = 531, + [1789] = 532, + [1790] = 533, + [1791] = 534, + [1792] = 535, + [1793] = 536, + [1794] = 494, + [1795] = 538, + [1796] = 539, + [1797] = 540, + [1798] = 541, + [1799] = 542, + [1800] = 543, + [1801] = 544, + [1802] = 545, + [1803] = 546, + [1804] = 547, + [1805] = 495, + [1806] = 511, + [1807] = 524, + [1808] = 525, + [1809] = 526, + [1810] = 528, + [1811] = 530, + [1812] = 531, + [1813] = 532, + [1814] = 533, + [1815] = 534, + [1816] = 535, + [1817] = 536, + [1818] = 494, + [1819] = 538, + [1820] = 539, + [1821] = 540, + [1822] = 541, + [1823] = 542, + [1824] = 543, + [1825] = 544, + [1826] = 545, + [1827] = 546, + [1828] = 547, + [1829] = 495, + [1830] = 511, + [1831] = 524, + [1832] = 525, + [1833] = 526, + [1834] = 528, + [1835] = 530, + [1836] = 531, + [1837] = 532, + [1838] = 533, + [1839] = 534, + [1840] = 535, + [1841] = 536, + [1842] = 494, + [1843] = 538, + [1844] = 539, + [1845] = 540, + [1846] = 541, + [1847] = 542, + [1848] = 543, + [1849] = 544, + [1850] = 545, + [1851] = 546, + [1852] = 547, + [1853] = 495, + [1854] = 511, + [1855] = 524, + [1856] = 525, + [1857] = 526, + [1858] = 528, + [1859] = 530, + [1860] = 531, + [1861] = 532, + [1862] = 533, + [1863] = 534, + [1864] = 535, + [1865] = 536, + [1866] = 494, + [1867] = 538, + [1868] = 539, + [1869] = 540, + [1870] = 541, + [1871] = 542, + [1872] = 543, + [1873] = 544, + [1874] = 545, + [1875] = 546, + [1876] = 547, + [1877] = 495, + [1878] = 511, + [1879] = 524, + [1880] = 525, + [1881] = 526, + [1882] = 528, + [1883] = 530, + [1884] = 531, + [1885] = 532, + [1886] = 533, + [1887] = 534, + [1888] = 535, + [1889] = 536, + [1890] = 494, + [1891] = 538, + [1892] = 539, + [1893] = 540, + [1894] = 541, + [1895] = 542, + [1896] = 543, + [1897] = 544, + [1898] = 545, + [1899] = 546, + [1900] = 547, + [1901] = 495, + [1902] = 511, + [1903] = 524, + [1904] = 525, + [1905] = 526, + [1906] = 528, + [1907] = 530, + [1908] = 531, + [1909] = 532, + [1910] = 533, + [1911] = 534, + [1912] = 535, + [1913] = 536, + [1914] = 494, + [1915] = 538, + [1916] = 539, + [1917] = 540, + [1918] = 541, + [1919] = 542, + [1920] = 543, + [1921] = 544, + [1922] = 545, + [1923] = 546, + [1924] = 547, + [1925] = 495, + [1926] = 511, + [1927] = 524, + [1928] = 525, + [1929] = 526, + [1930] = 528, + [1931] = 530, + [1932] = 531, + [1933] = 532, + [1934] = 533, + [1935] = 534, + [1936] = 535, + [1937] = 536, + [1938] = 494, + [1939] = 538, + [1940] = 539, + [1941] = 540, + [1942] = 541, + [1943] = 542, + [1944] = 543, + [1945] = 544, + [1946] = 545, + [1947] = 546, + [1948] = 547, + [1949] = 495, + [1950] = 511, + [1951] = 524, + [1952] = 525, + [1953] = 526, + [1954] = 528, + [1955] = 530, + [1956] = 531, + [1957] = 532, + [1958] = 533, + [1959] = 534, + [1960] = 535, + [1961] = 536, + [1962] = 494, + [1963] = 538, + [1964] = 539, + [1965] = 540, + [1966] = 541, + [1967] = 542, + [1968] = 543, + [1969] = 544, + [1970] = 545, + [1971] = 546, + [1972] = 547, + [1973] = 495, + [1974] = 511, + [1975] = 524, + [1976] = 525, + [1977] = 526, + [1978] = 528, + [1979] = 530, + [1980] = 531, + [1981] = 532, + [1982] = 533, + [1983] = 534, + [1984] = 535, + [1985] = 536, + [1986] = 494, + [1987] = 538, + [1988] = 539, + [1989] = 540, + [1990] = 541, + [1991] = 542, + [1992] = 543, + [1993] = 544, + [1994] = 545, + [1995] = 546, + [1996] = 547, + [1997] = 495, + [1998] = 511, + [1999] = 524, + [2000] = 525, + [2001] = 526, + [2002] = 528, + [2003] = 530, + [2004] = 531, + [2005] = 532, + [2006] = 533, + [2007] = 534, + [2008] = 535, + [2009] = 536, + [2010] = 494, + [2011] = 538, + [2012] = 539, + [2013] = 540, + [2014] = 541, + [2015] = 542, + [2016] = 543, + [2017] = 544, + [2018] = 545, + [2019] = 546, + [2020] = 547, + [2021] = 495, + [2022] = 511, + [2023] = 524, + [2024] = 525, + [2025] = 526, + [2026] = 528, + [2027] = 530, + [2028] = 531, + [2029] = 532, + [2030] = 533, + [2031] = 534, + [2032] = 535, + [2033] = 536, + [2034] = 494, + [2035] = 538, + [2036] = 539, + [2037] = 540, + [2038] = 541, + [2039] = 542, + [2040] = 543, + [2041] = 544, + [2042] = 545, + [2043] = 546, + [2044] = 547, + [2045] = 495, + [2046] = 511, + [2047] = 524, + [2048] = 525, + [2049] = 526, + [2050] = 528, + [2051] = 530, + [2052] = 531, + [2053] = 532, + [2054] = 533, + [2055] = 534, + [2056] = 535, + [2057] = 536, + [2058] = 494, + [2059] = 538, + [2060] = 539, + [2061] = 540, + [2062] = 541, + [2063] = 542, + [2064] = 543, + [2065] = 544, + [2066] = 545, + [2067] = 546, + [2068] = 547, + [2069] = 495, + [2070] = 511, + [2071] = 524, + [2072] = 525, + [2073] = 526, + [2074] = 528, + [2075] = 530, + [2076] = 531, + [2077] = 532, + [2078] = 533, + [2079] = 534, + [2080] = 535, + [2081] = 536, + [2082] = 494, + [2083] = 538, + [2084] = 539, + [2085] = 540, + [2086] = 541, + [2087] = 542, + [2088] = 543, + [2089] = 544, + [2090] = 545, + [2091] = 546, + [2092] = 547, + [2093] = 495, + [2094] = 511, + [2095] = 524, + [2096] = 525, + [2097] = 526, + [2098] = 528, + [2099] = 530, + [2100] = 531, + [2101] = 532, + [2102] = 533, + [2103] = 534, + [2104] = 535, + [2105] = 536, + [2106] = 494, + [2107] = 538, + [2108] = 539, + [2109] = 540, + [2110] = 541, + [2111] = 542, + [2112] = 543, + [2113] = 544, + [2114] = 545, + [2115] = 546, + [2116] = 547, + [2117] = 524, + [2118] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 2121, + [2122] = 2122, + [2123] = 2123, + [2124] = 2118, [2125] = 2125, - [2126] = 2087, - [2127] = 2057, - [2128] = 2090, - [2129] = 2125, - [2130] = 2075, - [2131] = 2092, - [2132] = 2059, - [2133] = 2068, - [2134] = 2101, - [2135] = 2125, - [2136] = 2069, - [2137] = 2074, - [2138] = 2070, - [2139] = 2061, - [2140] = 2059, - [2141] = 2060, - [2142] = 2064, - [2143] = 2060, - [2144] = 2065, - [2145] = 2068, - [2146] = 2101, - [2147] = 2125, - [2148] = 2075, - [2149] = 2069, - [2150] = 2070, - [2151] = 2071, - [2152] = 2073, - [2153] = 2074, - [2154] = 2075, - [2155] = 2071, - [2156] = 2061, - [2157] = 2059, - [2158] = 2064, - [2159] = 2058, - [2160] = 2060, - [2161] = 2064, - [2162] = 2058, - [2163] = 2067, - [2164] = 2078, - [2165] = 2065, - [2166] = 2080, - [2167] = 2086, - [2168] = 2060, - [2169] = 2065, - [2170] = 2092, - [2171] = 2087, - [2172] = 2057, - [2173] = 2090, - [2174] = 2090, - [2175] = 2092, - [2176] = 2069, - [2177] = 2076, - [2178] = 2076, - [2179] = 2069, - [2180] = 2070, - [2181] = 2071, - [2182] = 2073, - [2183] = 2074, - [2184] = 2075, - [2185] = 2068, - [2186] = 2065, - [2187] = 2076, - [2188] = 2058, - [2189] = 2068, - [2190] = 2101, - [2191] = 2067, - [2192] = 2101, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, + [2129] = 2129, + [2130] = 2130, + [2131] = 2131, + [2132] = 2132, + [2133] = 2133, + [2134] = 2134, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2119, + [2139] = 2139, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 2143, + [2144] = 2144, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2123, + [2150] = 2118, + [2151] = 2151, + [2152] = 2123, + [2153] = 2118, + [2154] = 2125, + [2155] = 2130, + [2156] = 2131, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, + [2160] = 2160, + [2161] = 2119, + [2162] = 2118, + [2163] = 2125, + [2164] = 2125, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2130, + [2174] = 2123, + [2175] = 2118, + [2176] = 2125, + [2177] = 2131, + [2178] = 2178, + [2179] = 2130, + [2180] = 2131, + [2181] = 2181, + [2182] = 2119, + [2183] = 2183, + [2184] = 2184, + [2185] = 2185, + [2186] = 2186, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 2119, + [2191] = 2123, + [2192] = 2118, [2193] = 2125, - [2194] = 2061, - [2195] = 2078, - [2196] = 2080, - [2197] = 2125, - [2198] = 2086, - [2199] = 2092, - [2200] = 2074, + [2194] = 2194, + [2195] = 2195, + [2196] = 2130, + [2197] = 2131, + [2198] = 2198, + [2199] = 2199, + [2200] = 2119, [2201] = 2201, [2202] = 2202, [2203] = 2203, @@ -6209,210 +6219,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2206] = 2206, [2207] = 2207, [2208] = 2208, - [2209] = 2208, - [2210] = 2210, - [2211] = 2210, - [2212] = 2207, + [2209] = 2123, + [2210] = 2119, + [2211] = 2118, + [2212] = 2125, [2213] = 2213, [2214] = 2214, - [2215] = 2206, - [2216] = 2216, - [2217] = 2216, - [2218] = 2214, - [2219] = 537, - [2220] = 623, - [2221] = 540, - [2222] = 539, - [2223] = 551, - [2224] = 541, - [2225] = 558, - [2226] = 593, - [2227] = 594, - [2228] = 595, - [2229] = 635, - [2230] = 596, - [2231] = 597, - [2232] = 598, - [2233] = 552, - [2234] = 530, - [2235] = 2235, - [2236] = 545, - [2237] = 548, - [2238] = 553, - [2239] = 599, - [2240] = 600, - [2241] = 554, - [2242] = 555, - [2243] = 601, - [2244] = 684, - [2245] = 557, - [2246] = 620, - [2247] = 621, - [2248] = 622, - [2249] = 624, - [2250] = 534, - [2251] = 685, - [2252] = 602, - [2253] = 603, - [2254] = 604, - [2255] = 686, - [2256] = 533, - [2257] = 625, - [2258] = 605, - [2259] = 606, - [2260] = 614, - [2261] = 615, - [2262] = 616, - [2263] = 617, - [2264] = 542, - [2265] = 687, - [2266] = 549, - [2267] = 626, - [2268] = 688, - [2269] = 627, - [2270] = 628, - [2271] = 640, - [2272] = 699, - [2273] = 701, - [2274] = 702, - [2275] = 589, - [2276] = 590, - [2277] = 535, - [2278] = 630, - [2279] = 631, - [2280] = 588, - [2281] = 559, + [2215] = 2130, + [2216] = 2131, + [2217] = 2217, + [2218] = 2119, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2123, + [2231] = 2118, + [2232] = 2125, + [2233] = 2233, + [2234] = 2234, + [2235] = 2130, + [2236] = 2131, + [2237] = 2237, + [2238] = 2238, + [2239] = 2119, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 2246, + [2247] = 2247, + [2248] = 2248, + [2249] = 2249, + [2250] = 2250, + [2251] = 2251, + [2252] = 2252, + [2253] = 2253, + [2254] = 2254, + [2255] = 2123, + [2256] = 2118, + [2257] = 2125, + [2258] = 2258, + [2259] = 2130, + [2260] = 2131, + [2261] = 2261, + [2262] = 2262, + [2263] = 2119, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 2273, + [2274] = 2274, + [2275] = 2275, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, + [2281] = 2281, [2282] = 2282, - [2283] = 658, - [2284] = 560, - [2285] = 536, - [2286] = 632, - [2287] = 633, - [2288] = 543, - [2289] = 547, - [2290] = 531, - [2291] = 561, - [2292] = 571, - [2293] = 574, - [2294] = 575, - [2295] = 579, - [2296] = 532, - [2297] = 584, - [2298] = 586, - [2299] = 591, - [2300] = 634, - [2301] = 587, - [2302] = 592, - [2303] = 550, - [2304] = 546, - [2305] = 556, - [2306] = 703, - [2307] = 693, - [2308] = 691, - [2309] = 653, - [2310] = 654, - [2311] = 690, - [2312] = 689, - [2313] = 694, - [2314] = 695, - [2315] = 696, - [2316] = 697, - [2317] = 638, - [2318] = 698, - [2319] = 704, - [2320] = 648, - [2321] = 565, - [2322] = 629, - [2323] = 568, - [2324] = 661, - [2325] = 662, - [2326] = 668, - [2327] = 569, + [2283] = 2283, + [2284] = 2284, + [2285] = 2123, + [2286] = 2286, + [2287] = 2118, + [2288] = 2125, + [2289] = 2289, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2130, + [2294] = 2131, + [2295] = 2295, + [2296] = 2296, + [2297] = 2297, + [2298] = 2298, + [2299] = 2119, + [2300] = 2300, + [2301] = 2301, + [2302] = 2302, + [2303] = 2303, + [2304] = 2304, + [2305] = 2305, + [2306] = 2306, + [2307] = 2307, + [2308] = 2308, + [2309] = 2309, + [2310] = 2310, + [2311] = 2311, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, + [2317] = 2317, + [2318] = 2318, + [2319] = 2319, + [2320] = 2320, + [2321] = 2321, + [2322] = 2322, + [2323] = 2323, + [2324] = 2123, + [2325] = 2118, + [2326] = 2125, + [2327] = 2327, [2328] = 2328, - [2329] = 585, - [2330] = 669, - [2331] = 670, - [2332] = 671, - [2333] = 636, - [2334] = 642, - [2335] = 672, - [2336] = 663, - [2337] = 659, - [2338] = 563, - [2339] = 664, - [2340] = 610, - [2341] = 611, - [2342] = 683, - [2343] = 655, - [2344] = 657, - [2345] = 673, - [2346] = 650, - [2347] = 567, + [2329] = 2130, + [2330] = 2131, + [2331] = 2331, + [2332] = 2332, + [2333] = 2333, + [2334] = 2334, + [2335] = 2119, + [2336] = 2336, + [2337] = 2337, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, + [2341] = 2341, + [2342] = 2342, + [2343] = 2343, + [2344] = 2344, + [2345] = 2345, + [2346] = 2346, + [2347] = 2347, [2348] = 2348, - [2349] = 612, - [2350] = 618, - [2351] = 646, - [2352] = 665, - [2353] = 678, - [2354] = 613, - [2355] = 619, - [2356] = 643, - [2357] = 639, - [2358] = 644, + [2349] = 2349, + [2350] = 2350, + [2351] = 2351, + [2352] = 2352, + [2353] = 2353, + [2354] = 2354, + [2355] = 2355, + [2356] = 2356, + [2357] = 2357, + [2358] = 2358, [2359] = 2359, - [2360] = 651, - [2361] = 660, - [2362] = 566, - [2363] = 705, - [2364] = 570, - [2365] = 666, - [2366] = 637, - [2367] = 578, - [2368] = 667, - [2369] = 679, - [2370] = 582, - [2371] = 583, - [2372] = 607, - [2373] = 572, - [2374] = 562, - [2375] = 674, - [2376] = 577, - [2377] = 609, - [2378] = 675, - [2379] = 641, - [2380] = 564, - [2381] = 652, - [2382] = 680, - [2383] = 576, - [2384] = 649, - [2385] = 676, - [2386] = 677, - [2387] = 581, - [2388] = 700, - [2389] = 573, - [2390] = 681, - [2391] = 647, - [2392] = 608, - [2393] = 682, - [2394] = 692, - [2395] = 1121, - [2396] = 2396, - [2397] = 2396, - [2398] = 2214, - [2399] = 2396, - [2400] = 2216, - [2401] = 2396, - [2402] = 2396, - [2403] = 2207, - [2404] = 2396, - [2405] = 2396, - [2406] = 2208, - [2407] = 2396, - [2408] = 2396, - [2409] = 2396, - [2410] = 2210, - [2411] = 2206, - [2412] = 2396, + [2360] = 2123, + [2361] = 2118, + [2362] = 2125, + [2363] = 2363, + [2364] = 2364, + [2365] = 2130, + [2366] = 2131, + [2367] = 2367, + [2368] = 2368, + [2369] = 2369, + [2370] = 2370, + [2371] = 2119, + [2372] = 2372, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 2381, + [2382] = 2382, + [2383] = 2383, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 2387, + [2388] = 2388, + [2389] = 2389, + [2390] = 2390, + [2391] = 2391, + [2392] = 2392, + [2393] = 2393, + [2394] = 2394, + [2395] = 2395, + [2396] = 2123, + [2397] = 2118, + [2398] = 2125, + [2399] = 2399, + [2400] = 2400, + [2401] = 2130, + [2402] = 2131, + [2403] = 2403, + [2404] = 2404, + [2405] = 2405, + [2406] = 2406, + [2407] = 2119, + [2408] = 2408, + [2409] = 2409, + [2410] = 2410, + [2411] = 2411, + [2412] = 2412, [2413] = 2413, [2414] = 2414, [2415] = 2415, @@ -6423,2879 +6433,13746 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2420] = 2420, [2421] = 2421, [2422] = 2422, - [2423] = 2422, + [2423] = 2423, [2424] = 2424, - [2425] = 2424, - [2426] = 2422, - [2427] = 2422, - [2428] = 2424, - [2429] = 2422, - [2430] = 2422, - [2431] = 2424, - [2432] = 2424, - [2433] = 2422, - [2434] = 2434, - [2435] = 2424, - [2436] = 2422, - [2437] = 2424, - [2438] = 2424, + [2425] = 2425, + [2426] = 2426, + [2427] = 2427, + [2428] = 2428, + [2429] = 2429, + [2430] = 2430, + [2431] = 2431, + [2432] = 2123, + [2433] = 2118, + [2434] = 2125, + [2435] = 2435, + [2436] = 2436, + [2437] = 2130, + [2438] = 2131, [2439] = 2439, [2440] = 2440, [2441] = 2441, [2442] = 2442, - [2443] = 2440, + [2443] = 2119, [2444] = 2444, [2445] = 2445, - [2446] = 2445, - [2447] = 2439, - [2448] = 2440, - [2449] = 2445, - [2450] = 2444, - [2451] = 2444, - [2452] = 2445, - [2453] = 2444, + [2446] = 2446, + [2447] = 2447, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2451, + [2452] = 2452, + [2453] = 2453, [2454] = 2454, - [2455] = 2440, - [2456] = 2439, - [2457] = 2440, - [2458] = 2440, - [2459] = 2445, - [2460] = 2444, - [2461] = 2439, - [2462] = 2445, - [2463] = 2445, - [2464] = 2439, - [2465] = 2444, - [2466] = 2444, - [2467] = 2444, - [2468] = 2444, - [2469] = 2445, - [2470] = 2470, - [2471] = 2439, - [2472] = 2445, - [2473] = 2473, - [2474] = 2474, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 2461, + [2462] = 2462, + [2463] = 2463, + [2464] = 2464, + [2465] = 2465, + [2466] = 2466, + [2467] = 2467, + [2468] = 2123, + [2469] = 2118, + [2470] = 2125, + [2471] = 2471, + [2472] = 2472, + [2473] = 2130, + [2474] = 2131, [2475] = 2475, [2476] = 2476, [2477] = 2477, - [2478] = 2475, - [2479] = 2479, + [2478] = 2478, + [2479] = 2119, [2480] = 2480, [2481] = 2481, [2482] = 2482, - [2483] = 2476, - [2484] = 2476, - [2485] = 2475, + [2483] = 2483, + [2484] = 2484, + [2485] = 2485, [2486] = 2486, - [2487] = 2475, + [2487] = 2487, [2488] = 2488, - [2489] = 2476, - [2490] = 2475, - [2491] = 2476, - [2492] = 2475, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, [2493] = 2493, - [2494] = 2476, + [2494] = 2494, [2495] = 2495, - [2496] = 2475, - [2497] = 2475, - [2498] = 2476, - [2499] = 2488, - [2500] = 2500, - [2501] = 2482, - [2502] = 2481, - [2503] = 2476, - [2504] = 2475, - [2505] = 2488, - [2506] = 2500, - [2507] = 2482, - [2508] = 2481, - [2509] = 2509, + [2496] = 2496, + [2497] = 2497, + [2498] = 2123, + [2499] = 2118, + [2500] = 2125, + [2501] = 2123, + [2502] = 2130, + [2503] = 2131, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 2118, + [2508] = 2119, + [2509] = 2125, [2510] = 2510, - [2511] = 2488, - [2512] = 2500, - [2513] = 2482, - [2514] = 2481, - [2515] = 2488, - [2516] = 2500, - [2517] = 2482, - [2518] = 2481, - [2519] = 2476, - [2520] = 2488, - [2521] = 2500, - [2522] = 2482, - [2523] = 2481, - [2524] = 2488, - [2525] = 2500, - [2526] = 2488, - [2527] = 2500, - [2528] = 2500, + [2511] = 2130, + [2512] = 2131, + [2513] = 2513, + [2514] = 2514, + [2515] = 2119, + [2516] = 2123, + [2517] = 2118, + [2518] = 2125, + [2519] = 2130, + [2520] = 2131, + [2521] = 2119, + [2522] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 2525, + [2526] = 2526, + [2527] = 2527, + [2528] = 2528, [2529] = 2529, [2530] = 2530, [2531] = 2531, - [2532] = 2532, - [2533] = 2533, + [2532] = 2123, + [2533] = 2123, [2534] = 2534, [2535] = 2535, [2536] = 2536, [2537] = 2537, - [2538] = 2535, - [2539] = 2536, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, - [2544] = 2540, + [2538] = 2123, + [2539] = 2118, + [2540] = 2125, + [2541] = 2125, + [2542] = 2130, + [2543] = 2131, + [2544] = 2544, [2545] = 2545, [2546] = 2546, [2547] = 2547, - [2548] = 2530, - [2549] = 2531, - [2550] = 2532, - [2551] = 2533, - [2552] = 2534, - [2553] = 2541, - [2554] = 2537, - [2555] = 2535, - [2556] = 2536, - [2557] = 2540, - [2558] = 2541, - [2559] = 2542, - [2560] = 2543, - [2561] = 2545, - [2562] = 2546, - [2563] = 2547, - [2564] = 2530, - [2565] = 2531, - [2566] = 2532, - [2567] = 2533, - [2568] = 2568, + [2548] = 2548, + [2549] = 2549, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 2555, + [2556] = 2556, + [2557] = 2123, + [2558] = 2558, + [2559] = 2559, + [2560] = 2118, + [2561] = 2125, + [2562] = 2130, + [2563] = 2563, + [2564] = 2564, + [2565] = 2565, + [2566] = 2130, + [2567] = 2131, + [2568] = 2131, [2569] = 2569, - [2570] = 2529, - [2571] = 2542, - [2572] = 2529, - [2573] = 2534, - [2574] = 2574, - [2575] = 2543, - [2576] = 2574, - [2577] = 2545, - [2578] = 2568, - [2579] = 2546, - [2580] = 2546, - [2581] = 2547, - [2582] = 2537, - [2583] = 2535, - [2584] = 2536, - [2585] = 2540, - [2586] = 2547, - [2587] = 2530, - [2588] = 2531, - [2589] = 2541, - [2590] = 2542, - [2591] = 2543, - [2592] = 2545, - [2593] = 2530, - [2594] = 2546, - [2595] = 2547, - [2596] = 2530, - [2597] = 2531, - [2598] = 2569, - [2599] = 2531, - [2600] = 2574, - [2601] = 2532, - [2602] = 2568, - [2603] = 2568, - [2604] = 2532, - [2605] = 2533, - [2606] = 2529, - [2607] = 2529, - [2608] = 2533, - [2609] = 2574, - [2610] = 2529, - [2611] = 2568, - [2612] = 2534, - [2613] = 2574, - [2614] = 2534, - [2615] = 2574, - [2616] = 2534, - [2617] = 2574, - [2618] = 2534, - [2619] = 2537, - [2620] = 2535, - [2621] = 2547, - [2622] = 2540, - [2623] = 2537, - [2624] = 2568, - [2625] = 2535, - [2626] = 2536, - [2627] = 2540, - [2628] = 2541, - [2629] = 2542, - [2630] = 2543, - [2631] = 2545, - [2632] = 2532, - [2633] = 2533, - [2634] = 2546, - [2635] = 2547, - [2636] = 2530, - [2637] = 2531, - [2638] = 2568, - [2639] = 2537, - [2640] = 2532, - [2641] = 2533, - [2642] = 2568, - [2643] = 2568, - [2644] = 2537, - [2645] = 2529, - [2646] = 2535, - [2647] = 2536, - [2648] = 2540, - [2649] = 2529, - [2650] = 2541, - [2651] = 2534, - [2652] = 2574, - [2653] = 2542, - [2654] = 2543, - [2655] = 2537, - [2656] = 2545, - [2657] = 2546, - [2658] = 2535, - [2659] = 2536, - [2660] = 2540, - [2661] = 2547, - [2662] = 2530, - [2663] = 2531, - [2664] = 2541, - [2665] = 2542, - [2666] = 2543, - [2667] = 2574, - [2668] = 2545, - [2669] = 2532, - [2670] = 2533, - [2671] = 2541, - [2672] = 2542, - [2673] = 2543, - [2674] = 2545, - [2675] = 2534, - [2676] = 2537, - [2677] = 2535, - [2678] = 2536, - [2679] = 2540, - [2680] = 2541, - [2681] = 2542, - [2682] = 2543, - [2683] = 2545, - [2684] = 2546, - [2685] = 2569, - [2686] = 2546, - [2687] = 2547, - [2688] = 2530, - [2689] = 2531, - [2690] = 2532, - [2691] = 2533, - [2692] = 2529, - [2693] = 2569, - [2694] = 2569, - [2695] = 2569, - [2696] = 2569, - [2697] = 2569, - [2698] = 2569, - [2699] = 2536, - [2700] = 2700, - [2701] = 2701, - [2702] = 2702, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2573, + [2574] = 2119, + [2575] = 2575, + [2576] = 2576, + [2577] = 2577, + [2578] = 2578, + [2579] = 2579, + [2580] = 2580, + [2581] = 2581, + [2582] = 2582, + [2583] = 2583, + [2584] = 2584, + [2585] = 2585, + [2586] = 2586, + [2587] = 2587, + [2588] = 2588, + [2589] = 2589, + [2590] = 2590, + [2591] = 2591, + [2592] = 2592, + [2593] = 2593, + [2594] = 2594, + [2595] = 2595, + [2596] = 2596, + [2597] = 2597, + [2598] = 2598, + [2599] = 2599, + [2600] = 2600, + [2601] = 2601, + [2602] = 2602, + [2603] = 2603, + [2604] = 2604, + [2605] = 2123, + [2606] = 2606, + [2607] = 2118, + [2608] = 2125, + [2609] = 2609, + [2610] = 2610, + [2611] = 2130, + [2612] = 2131, + [2613] = 2613, + [2614] = 2119, + [2615] = 2123, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2118, + [2621] = 2125, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2123, + [2626] = 2118, + [2627] = 2125, + [2628] = 2130, + [2629] = 2131, + [2630] = 2130, + [2631] = 2119, + [2632] = 2131, + [2633] = 2633, + [2634] = 2634, + [2635] = 2635, + [2636] = 2636, + [2637] = 2637, + [2638] = 2123, + [2639] = 2118, + [2640] = 2125, + [2641] = 2130, + [2642] = 2131, + [2643] = 2119, + [2644] = 2119, + [2645] = 2645, + [2646] = 2646, + [2647] = 2119, + [2648] = 2648, + [2649] = 2649, + [2650] = 2123, + [2651] = 2118, + [2652] = 2125, + [2653] = 2130, + [2654] = 2131, + [2655] = 2655, + [2656] = 2119, + [2657] = 2657, + [2658] = 2658, + [2659] = 2659, + [2660] = 2660, + [2661] = 2123, + [2662] = 2118, + [2663] = 2125, + [2664] = 2130, + [2665] = 2131, + [2666] = 2119, + [2667] = 2667, + [2668] = 2668, + [2669] = 2669, + [2670] = 2670, + [2671] = 2123, + [2672] = 2118, + [2673] = 2125, + [2674] = 2130, + [2675] = 2131, + [2676] = 2119, + [2677] = 2123, + [2678] = 2118, + [2679] = 2125, + [2680] = 2123, + [2681] = 2118, + [2682] = 2125, + [2683] = 2130, + [2684] = 2131, + [2685] = 2119, + [2686] = 2686, + [2687] = 2687, + [2688] = 2123, + [2689] = 2118, + [2690] = 2125, + [2691] = 2130, + [2692] = 2131, + [2693] = 2119, + [2694] = 2130, + [2695] = 2131, + [2696] = 2696, + [2697] = 2697, + [2698] = 2123, + [2699] = 2118, + [2700] = 2125, + [2701] = 2130, + [2702] = 2131, [2703] = 2703, - [2704] = 2704, - [2705] = 2705, - [2706] = 2706, - [2707] = 2707, - [2708] = 2704, - [2709] = 2709, - [2710] = 2709, - [2711] = 2702, + [2704] = 2119, + [2705] = 2123, + [2706] = 2118, + [2707] = 2125, + [2708] = 2130, + [2709] = 2131, + [2710] = 2119, + [2711] = 2119, [2712] = 2712, - [2713] = 2703, - [2714] = 2703, - [2715] = 2705, - [2716] = 2716, - [2717] = 2700, - [2718] = 2718, - [2719] = 2705, - [2720] = 2720, + [2713] = 2713, + [2714] = 2714, + [2715] = 2123, + [2716] = 2118, + [2717] = 2125, + [2718] = 2130, + [2719] = 2131, + [2720] = 2119, [2721] = 2721, - [2722] = 2722, - [2723] = 2723, - [2724] = 2724, - [2725] = 2701, - [2726] = 2726, - [2727] = 2704, - [2728] = 2706, - [2729] = 2707, - [2730] = 2709, - [2731] = 2702, - [2732] = 2716, - [2733] = 2703, - [2734] = 2705, - [2735] = 2716, - [2736] = 2700, - [2737] = 2700, - [2738] = 2718, - [2739] = 2718, - [2740] = 2720, - [2741] = 2721, - [2742] = 2722, - [2743] = 2723, - [2744] = 2724, - [2745] = 2720, - [2746] = 2701, - [2747] = 2726, - [2748] = 2704, - [2749] = 2706, - [2750] = 2707, - [2751] = 2709, - [2752] = 2702, - [2753] = 2703, - [2754] = 2705, - [2755] = 2716, - [2756] = 2718, - [2757] = 2720, - [2758] = 2721, - [2759] = 2722, - [2760] = 2723, - [2761] = 2724, - [2762] = 2701, - [2763] = 2726, - [2764] = 2764, - [2765] = 2721, - [2766] = 2722, - [2767] = 2712, - [2768] = 2768, - [2769] = 2723, - [2770] = 2770, - [2771] = 2771, - [2772] = 2768, - [2773] = 2724, - [2774] = 2704, - [2775] = 2764, - [2776] = 2716, - [2777] = 2700, - [2778] = 2718, - [2779] = 2706, - [2780] = 2707, - [2781] = 2701, - [2782] = 2726, - [2783] = 2720, - [2784] = 2709, - [2785] = 2702, - [2786] = 2703, - [2787] = 2705, - [2788] = 2716, - [2789] = 2700, - [2790] = 2718, - [2791] = 2720, - [2792] = 2768, - [2793] = 2704, - [2794] = 2764, - [2795] = 2764, - [2796] = 2768, - [2797] = 2721, - [2798] = 2722, - [2799] = 2723, - [2800] = 2724, - [2801] = 2701, - [2802] = 2726, - [2803] = 2768, - [2804] = 2768, - [2805] = 2764, - [2806] = 2704, - [2807] = 2704, - [2808] = 2706, - [2809] = 2707, - [2810] = 2764, - [2811] = 2706, - [2812] = 2707, - [2813] = 2709, - [2814] = 2702, - [2815] = 2703, - [2816] = 2705, - [2817] = 2721, - [2818] = 2722, - [2819] = 2723, - [2820] = 2724, - [2821] = 2706, - [2822] = 2716, - [2823] = 2700, - [2824] = 2718, - [2825] = 2707, - [2826] = 2720, - [2827] = 2764, - [2828] = 2768, - [2829] = 2721, - [2830] = 2722, - [2831] = 2723, - [2832] = 2724, - [2833] = 2764, - [2834] = 2764, - [2835] = 2701, - [2836] = 2726, - [2837] = 2768, - [2838] = 2704, - [2839] = 2709, - [2840] = 2706, - [2841] = 2702, - [2842] = 2706, - [2843] = 2703, - [2844] = 2707, - [2845] = 2707, - [2846] = 2705, - [2847] = 2701, - [2848] = 2726, - [2849] = 2716, - [2850] = 2709, - [2851] = 2702, - [2852] = 2703, - [2853] = 2700, - [2854] = 2705, - [2855] = 2718, - [2856] = 2726, - [2857] = 2720, - [2858] = 2721, - [2859] = 2722, - [2860] = 2723, - [2861] = 2712, - [2862] = 2716, - [2863] = 2700, - [2864] = 2718, - [2865] = 2724, - [2866] = 2720, - [2867] = 2721, - [2868] = 2722, - [2869] = 2723, - [2870] = 2724, - [2871] = 2701, - [2872] = 2726, - [2873] = 2768, - [2874] = 2709, - [2875] = 2712, - [2876] = 2712, - [2877] = 2712, - [2878] = 2712, - [2879] = 2712, - [2880] = 2702, - [2881] = 2881, - [2882] = 2881, - [2883] = 2881, - [2884] = 2881, - [2885] = 2881, - [2886] = 2881, - [2887] = 2881, - [2888] = 2881, - [2889] = 2881, - [2890] = 557, - [2891] = 539, - [2892] = 537, - [2893] = 541, - [2894] = 540, - [2895] = 591, - [2896] = 558, - [2897] = 686, - [2898] = 634, - [2899] = 584, - [2900] = 559, - [2901] = 586, - [2902] = 658, - [2903] = 594, - [2904] = 635, - [2905] = 595, - [2906] = 684, - [2907] = 699, - [2908] = 540, - [2909] = 561, - [2910] = 701, - [2911] = 541, - [2912] = 702, - [2913] = 571, - [2914] = 574, - [2915] = 575, - [2916] = 615, - [2917] = 579, - [2918] = 621, - [2919] = 622, - [2920] = 587, - [2921] = 624, - [2922] = 588, - [2923] = 589, - [2924] = 687, - [2925] = 590, - [2926] = 688, - [2927] = 592, - [2928] = 625, - [2929] = 593, - [2930] = 596, - [2931] = 597, - [2932] = 626, - [2933] = 598, - [2934] = 599, - [2935] = 627, - [2936] = 628, - [2937] = 600, - [2938] = 640, - [2939] = 630, - [2940] = 601, - [2941] = 631, - [2942] = 616, - [2943] = 602, - [2944] = 632, - [2945] = 633, - [2946] = 703, - [2947] = 603, - [2948] = 560, - [2949] = 604, - [2950] = 605, - [2951] = 606, - [2952] = 617, - [2953] = 685, - [2954] = 614, - [2955] = 620, - [2956] = 2956, - [2957] = 564, - [2958] = 573, - [2959] = 2959, - [2960] = 2960, - [2961] = 623, - [2962] = 551, - [2963] = 1121, - [2964] = 2964, - [2965] = 536, - [2966] = 547, - [2967] = 543, - [2968] = 552, - [2969] = 2969, - [2970] = 553, - [2971] = 549, - [2972] = 555, - [2973] = 531, - [2974] = 554, - [2975] = 732, - [2976] = 530, - [2977] = 545, - [2978] = 533, - [2979] = 546, - [2980] = 548, - [2981] = 534, - [2982] = 535, - [2983] = 2983, - [2984] = 2984, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 2988, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, - [2992] = 732, - [2993] = 2993, - [2994] = 554, - [2995] = 551, - [2996] = 533, - [2997] = 545, - [2998] = 543, - [2999] = 540, - [3000] = 531, - [3001] = 548, - [3002] = 732, - [3003] = 553, - [3004] = 537, - [3005] = 546, - [3006] = 555, - [3007] = 549, - [3008] = 534, - [3009] = 623, - [3010] = 535, - [3011] = 536, - [3012] = 547, - [3013] = 552, - [3014] = 541, - [3015] = 530, - [3016] = 539, - [3017] = 550, - [3018] = 556, - [3019] = 626, - [3020] = 590, - [3021] = 620, - [3022] = 591, - [3023] = 549, - [3024] = 533, - [3025] = 543, - [3026] = 531, - [3027] = 592, - [3028] = 546, - [3029] = 688, - [3030] = 534, - [3031] = 593, - [3032] = 535, - [3033] = 536, - [3034] = 594, - [3035] = 595, - [3036] = 3036, - [3037] = 635, - [3038] = 596, - [3039] = 597, - [3040] = 598, - [3041] = 599, - [3042] = 627, - [3043] = 628, - [3044] = 600, - [3045] = 640, - [3046] = 732, - [3047] = 601, - [3048] = 602, - [3049] = 603, - [3050] = 604, - [3051] = 605, - [3052] = 606, - [3053] = 699, - [3054] = 614, - [3055] = 701, - [3056] = 547, - [3057] = 615, - [3058] = 552, - [3059] = 616, - [3060] = 530, - [3061] = 687, - [3062] = 545, - [3063] = 702, - [3064] = 548, - [3065] = 553, - [3066] = 554, - [3067] = 732, - [3068] = 555, - [3069] = 621, - [3070] = 630, - [3071] = 631, - [3072] = 703, - [3073] = 558, - [3074] = 622, - [3075] = 559, - [3076] = 684, - [3077] = 624, - [3078] = 658, - [3079] = 560, - [3080] = 632, - [3081] = 633, - [3082] = 561, - [3083] = 532, - [3084] = 557, - [3085] = 571, - [3086] = 685, - [3087] = 574, - [3088] = 686, - [3089] = 575, - [3090] = 579, - [3091] = 542, - [3092] = 584, - [3093] = 586, - [3094] = 634, - [3095] = 587, - [3096] = 625, - [3097] = 588, - [3098] = 3098, - [3099] = 589, - [3100] = 617, - [3101] = 698, - [3102] = 655, - [3103] = 683, - [3104] = 657, - [3105] = 647, - [3106] = 673, - [3107] = 691, - [3108] = 692, - [3109] = 693, - [3110] = 573, - [3111] = 697, - [3112] = 650, - [3113] = 653, - [3114] = 565, - [3115] = 654, - [3116] = 705, - [3117] = 661, - [3118] = 662, - [3119] = 663, - [3120] = 704, - [3121] = 664, - [3122] = 648, - [3123] = 665, - [3124] = 666, - [3125] = 629, - [3126] = 636, - [3127] = 576, - [3128] = 642, - [3129] = 667, - [3130] = 659, - [3131] = 563, - [3132] = 610, - [3133] = 646, - [3134] = 612, - [3135] = 613, - [3136] = 619, - [3137] = 643, - [3138] = 652, - [3139] = 644, - [3140] = 651, - [3141] = 690, - [3142] = 566, - [3143] = 570, - [3144] = 572, - [3145] = 567, - [3146] = 639, - [3147] = 732, - [3148] = 675, - [3149] = 568, - [3150] = 569, - [3151] = 676, - [3152] = 577, - [3153] = 581, - [3154] = 637, - [3155] = 694, - [3156] = 638, - [3157] = 668, - [3158] = 608, - [3159] = 669, - [3160] = 677, - [3161] = 670, - [3162] = 671, - [3163] = 695, - [3164] = 700, - [3165] = 672, - [3166] = 678, - [3167] = 679, - [3168] = 696, - [3169] = 609, - [3170] = 578, - [3171] = 582, - [3172] = 583, - [3173] = 607, - [3174] = 562, - [3175] = 680, - [3176] = 641, - [3177] = 681, - [3178] = 564, - [3179] = 611, - [3180] = 618, - [3181] = 660, - [3182] = 682, - [3183] = 585, - [3184] = 689, - [3185] = 649, - [3186] = 674, - [3187] = 541, - [3188] = 539, - [3189] = 540, - [3190] = 537, - [3191] = 590, - [3192] = 584, - [3193] = 687, - [3194] = 586, - [3195] = 591, - [3196] = 571, - [3197] = 556, - [3198] = 559, - [3199] = 600, - [3200] = 550, - [3201] = 640, - [3202] = 602, - [3203] = 592, - [3204] = 615, - [3205] = 616, - [3206] = 593, - [3207] = 617, - [3208] = 557, - [3209] = 631, - [3210] = 603, - [3211] = 623, - [3212] = 551, - [3213] = 634, - [3214] = 587, - [3215] = 633, - [3216] = 532, - [3217] = 625, - [3218] = 594, - [3219] = 595, - [3220] = 1031, - [3221] = 684, - [3222] = 604, - [3223] = 574, - [3224] = 542, - [3225] = 601, - [3226] = 628, - [3227] = 561, - [3228] = 686, - [3229] = 605, - [3230] = 588, - [3231] = 606, - [3232] = 560, - [3233] = 575, - [3234] = 589, - [3235] = 620, - [3236] = 621, - [3237] = 558, - [3238] = 622, - [3239] = 614, - [3240] = 635, - [3241] = 596, - [3242] = 699, - [3243] = 597, - [3244] = 626, - [3245] = 701, - [3246] = 702, - [3247] = 658, - [3248] = 688, - [3249] = 627, - [3250] = 632, - [3251] = 598, - [3252] = 579, - [3253] = 599, - [3254] = 630, - [3255] = 703, - [3256] = 624, - [3257] = 685, - [3258] = 680, - [3259] = 682, - [3260] = 689, - [3261] = 690, - [3262] = 691, - [3263] = 692, - [3264] = 693, - [3265] = 694, - [3266] = 695, - [3267] = 696, - [3268] = 697, - [3269] = 698, - [3270] = 704, - [3271] = 648, - [3272] = 629, - [3273] = 636, - [3274] = 642, - [3275] = 659, - [3276] = 563, - [3277] = 610, - [3278] = 612, - [3279] = 613, - [3280] = 619, - [3281] = 643, - [3282] = 644, - [3283] = 651, - [3284] = 566, - [3285] = 570, - [3286] = 572, - [3287] = 577, - [3288] = 578, - [3289] = 582, - [3290] = 583, - [3291] = 607, - [3292] = 562, - [3293] = 609, - [3294] = 585, - [3295] = 623, - [3296] = 618, - [3297] = 564, - [3298] = 565, - [3299] = 646, - [3300] = 567, - [3301] = 568, - [3302] = 569, - [3303] = 573, - [3304] = 576, - [3305] = 681, - [3306] = 581, - [3307] = 608, - [3308] = 611, - [3309] = 660, - [3310] = 683, - [3311] = 549, - [3312] = 533, - [3313] = 551, - [3314] = 543, - [3315] = 531, - [3316] = 546, - [3317] = 534, - [3318] = 535, - [3319] = 536, - [3320] = 655, - [3321] = 657, - [3322] = 673, - [3323] = 674, - [3324] = 675, - [3325] = 676, - [3326] = 677, - [3327] = 700, - [3328] = 641, - [3329] = 547, - [3330] = 552, - [3331] = 637, - [3332] = 638, - [3333] = 530, - [3334] = 545, - [3335] = 548, - [3336] = 553, - [3337] = 554, - [3338] = 555, - [3339] = 647, - [3340] = 705, - [3341] = 649, - [3342] = 650, - [3343] = 652, - [3344] = 653, - [3345] = 654, - [3346] = 661, - [3347] = 662, - [3348] = 663, - [3349] = 664, - [3350] = 665, - [3351] = 666, - [3352] = 667, - [3353] = 668, - [3354] = 669, - [3355] = 670, - [3356] = 671, - [3357] = 672, - [3358] = 678, - [3359] = 679, - [3360] = 639, - [3361] = 530, - [3362] = 549, - [3363] = 553, - [3364] = 545, - [3365] = 548, - [3366] = 546, - [3367] = 547, - [3368] = 554, - [3369] = 555, - [3370] = 1049, - [3371] = 543, - [3372] = 552, - [3373] = 531, - [3374] = 535, - [3375] = 533, - [3376] = 534, - [3377] = 536, - [3378] = 3378, - [3379] = 3378, - [3380] = 3378, - [3381] = 3381, - [3382] = 3382, - [3383] = 3383, - [3384] = 3382, - [3385] = 3385, - [3386] = 3386, - [3387] = 3378, - [3388] = 3385, - [3389] = 3382, - [3390] = 3378, - [3391] = 3378, - [3392] = 3382, - [3393] = 3382, - [3394] = 3382, - [3395] = 3395, - [3396] = 3396, - [3397] = 3378, - [3398] = 3398, - [3399] = 3382, - [3400] = 3386, - [3401] = 3382, - [3402] = 3402, - [3403] = 3378, - [3404] = 3404, - [3405] = 3405, - [3406] = 534, - [3407] = 3407, - [3408] = 535, - [3409] = 3409, - [3410] = 3410, - [3411] = 536, - [3412] = 3404, - [3413] = 3413, - [3414] = 3414, - [3415] = 3407, - [3416] = 3404, - [3417] = 3414, - [3418] = 3405, - [3419] = 3419, - [3420] = 3404, - [3421] = 1031, - [3422] = 3422, - [3423] = 547, - [3424] = 552, - [3425] = 3413, - [3426] = 3407, - [3427] = 530, - [3428] = 545, - [3429] = 548, - [3430] = 553, - [3431] = 554, - [3432] = 555, - [3433] = 3410, - [3434] = 3413, - [3435] = 3419, - [3436] = 3410, - [3437] = 3437, - [3438] = 3407, - [3439] = 3439, - [3440] = 3440, - [3441] = 3405, - [3442] = 3405, - [3443] = 3407, - [3444] = 3410, - [3445] = 3414, - [3446] = 3407, - [3447] = 3447, - [3448] = 3405, - [3449] = 3414, - [3450] = 3404, - [3451] = 3405, - [3452] = 3414, - [3453] = 3405, - [3454] = 549, - [3455] = 3410, - [3456] = 533, - [3457] = 3457, - [3458] = 3404, - [3459] = 543, - [3460] = 3414, - [3461] = 3414, - [3462] = 3413, - [3463] = 531, - [3464] = 3413, - [3465] = 546, - [3466] = 3413, - [3467] = 3410, - [3468] = 3468, - [3469] = 3414, - [3470] = 3405, - [3471] = 3471, - [3472] = 3471, - [3473] = 3473, - [3474] = 3474, - [3475] = 3475, - [3476] = 3475, - [3477] = 3471, - [3478] = 3478, - [3479] = 3474, - [3480] = 3475, - [3481] = 3474, - [3482] = 3475, - [3483] = 3483, - [3484] = 3471, - [3485] = 3483, - [3486] = 3471, - [3487] = 3475, - [3488] = 3475, - [3489] = 3483, - [3490] = 3483, - [3491] = 3471, - [3492] = 3471, - [3493] = 3475, - [3494] = 3494, - [3495] = 1049, - [3496] = 3474, - [3497] = 3475, - [3498] = 3474, - [3499] = 3475, - [3500] = 3483, - [3501] = 3483, - [3502] = 3471, - [3503] = 3471, - [3504] = 3504, - [3505] = 3474, - [3506] = 3506, - [3507] = 3507, - [3508] = 3483, - [3509] = 3509, - [3510] = 539, - [3511] = 3511, - [3512] = 3512, - [3513] = 744, - [3514] = 3514, - [3515] = 3447, - [3516] = 3516, - [3517] = 749, - [3518] = 743, - [3519] = 752, - [3520] = 751, - [3521] = 3509, - [3522] = 1049, - [3523] = 3514, - [3524] = 3422, - [3525] = 3474, - [3526] = 3509, - [3527] = 3527, - [3528] = 744, - [3529] = 749, - [3530] = 623, - [3531] = 743, - [3532] = 3527, - [3533] = 3533, - [3534] = 752, - [3535] = 3512, - [3536] = 751, + [2722] = 2123, + [2723] = 2118, + [2724] = 2125, + [2725] = 2130, + [2726] = 2131, + [2727] = 2119, + [2728] = 2123, + [2729] = 2118, + [2730] = 2125, + [2731] = 2130, + [2732] = 2131, + [2733] = 2119, + [2734] = 2734, + [2735] = 2735, + [2736] = 2736, + [2737] = 2123, + [2738] = 2118, + [2739] = 2125, + [2740] = 2130, + [2741] = 2131, + [2742] = 2119, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, + [2746] = 2746, + [2747] = 2123, + [2748] = 2118, + [2749] = 2125, + [2750] = 2130, + [2751] = 2131, + [2752] = 2119, + [2753] = 2753, + [2754] = 2123, + [2755] = 2118, + [2756] = 2125, + [2757] = 2130, + [2758] = 2131, + [2759] = 2119, + [2760] = 2123, + [2761] = 2118, + [2762] = 2125, + [2763] = 2130, + [2764] = 2131, + [2765] = 2119, + [2766] = 2123, + [2767] = 2118, + [2768] = 2125, + [2769] = 2130, + [2770] = 2131, + [2771] = 2119, + [2772] = 2123, + [2773] = 2118, + [2774] = 2125, + [2775] = 2130, + [2776] = 2131, + [2777] = 2119, + [2778] = 2123, + [2779] = 2118, + [2780] = 2125, + [2781] = 2130, + [2782] = 2131, + [2783] = 2119, + [2784] = 2123, + [2785] = 2118, + [2786] = 2125, + [2787] = 2130, + [2788] = 2131, + [2789] = 2119, + [2790] = 2123, + [2791] = 2118, + [2792] = 2125, + [2793] = 2130, + [2794] = 2131, + [2795] = 2119, + [2796] = 2123, + [2797] = 2118, + [2798] = 2125, + [2799] = 2130, + [2800] = 2131, + [2801] = 2119, + [2802] = 2802, + [2803] = 2123, + [2804] = 2118, + [2805] = 2125, + [2806] = 2130, + [2807] = 2131, + [2808] = 2119, + [2809] = 2123, + [2810] = 2130, + [2811] = 2118, + [2812] = 2125, + [2813] = 2131, + [2814] = 2814, + [2815] = 2815, + [2816] = 2123, + [2817] = 2118, + [2818] = 2125, + [2819] = 2130, + [2820] = 2131, + [2821] = 2119, + [2822] = 2130, + [2823] = 2131, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2123, + [2828] = 2118, + [2829] = 2125, + [2830] = 2130, + [2831] = 2131, + [2832] = 2119, + [2833] = 2119, + [2834] = 2123, + [2835] = 2118, + [2836] = 2125, + [2837] = 2130, + [2838] = 2131, + [2839] = 2119, + [2840] = 2840, + [2841] = 2841, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 2849, + [2850] = 2123, + [2851] = 2118, + [2852] = 2125, + [2853] = 2130, + [2854] = 2131, + [2855] = 2119, + [2856] = 2856, + [2857] = 2857, + [2858] = 1412, + [2859] = 1413, + [2860] = 1420, + [2861] = 1421, + [2862] = 767, + [2863] = 154, + [2864] = 154, + [2865] = 2865, + [2866] = 2866, + [2867] = 154, + [2868] = 157, + [2869] = 2649, + [2870] = 517, + [2871] = 518, + [2872] = 519, + [2873] = 520, + [2874] = 521, + [2875] = 522, + [2876] = 523, + [2877] = 529, + [2878] = 2141, + [2879] = 501, + [2880] = 502, + [2881] = 767, + [2882] = 674, + [2883] = 1412, + [2884] = 1413, + [2885] = 1420, + [2886] = 1421, + [2887] = 2648, + [2888] = 504, + [2889] = 2524, + [2890] = 2534, + [2891] = 496, + [2892] = 515, + [2893] = 503, + [2894] = 505, + [2895] = 506, + [2896] = 507, + [2897] = 157, + [2898] = 516, + [2899] = 612, + [2900] = 735, + [2901] = 508, + [2902] = 766, + [2903] = 497, + [2904] = 2147, + [2905] = 2148, + [2906] = 2129, + [2907] = 2132, + [2908] = 2136, + [2909] = 1412, + [2910] = 1413, + [2911] = 2140, + [2912] = 2142, + [2913] = 2145, + [2914] = 509, + [2915] = 1420, + [2916] = 1421, + [2917] = 157, + [2918] = 514, + [2919] = 498, + [2920] = 2669, + [2921] = 1420, + [2922] = 2451, + [2923] = 2452, + [2924] = 2453, + [2925] = 2454, + [2926] = 2455, + [2927] = 2456, + [2928] = 2457, + [2929] = 2458, + [2930] = 2459, + [2931] = 2460, + [2932] = 2419, + [2933] = 2420, + [2934] = 2461, + [2935] = 2462, + [2936] = 2463, + [2937] = 2464, + [2938] = 2465, + [2939] = 2466, + [2940] = 2467, + [2941] = 2471, + [2942] = 2472, + [2943] = 2475, + [2944] = 2476, + [2945] = 2477, + [2946] = 2478, + [2947] = 2480, + [2948] = 2481, + [2949] = 2482, + [2950] = 2483, + [2951] = 2484, + [2952] = 2485, + [2953] = 2486, + [2954] = 2487, + [2955] = 2488, + [2956] = 2489, + [2957] = 2490, + [2958] = 2491, + [2959] = 2492, + [2960] = 2493, + [2961] = 2494, + [2962] = 2495, + [2963] = 2556, + [2964] = 2603, + [2965] = 2606, + [2966] = 2609, + [2967] = 2610, + [2968] = 2254, + [2969] = 2613, + [2970] = 2496, + [2971] = 2497, + [2972] = 1412, + [2973] = 2258, + [2974] = 1413, + [2975] = 2616, + [2976] = 2558, + [2977] = 2617, + [2978] = 2559, + [2979] = 2618, + [2980] = 2417, + [2981] = 2619, + [2982] = 2157, + [2983] = 2504, + [2984] = 2505, + [2985] = 2506, + [2986] = 2261, + [2987] = 2252, + [2988] = 2262, + [2989] = 2264, + [2990] = 2265, + [2991] = 2266, + [2992] = 1421, + [2993] = 2623, + [2994] = 2624, + [2995] = 2563, + [2996] = 2564, + [2997] = 2565, + [2998] = 2168, + [2999] = 2510, + [3000] = 2267, + [3001] = 2268, + [3002] = 2269, + [3003] = 2270, + [3004] = 2271, + [3005] = 2272, + [3006] = 2273, + [3007] = 2234, + [3008] = 2274, + [3009] = 2636, + [3010] = 2637, + [3011] = 2569, + [3012] = 2570, + [3013] = 2571, + [3014] = 2572, + [3015] = 2250, + [3016] = 2418, + [3017] = 2573, + [3018] = 2513, + [3019] = 2416, + [3020] = 2514, + [3021] = 2275, + [3022] = 2134, + [3023] = 2135, + [3024] = 2137, + [3025] = 2139, + [3026] = 2523, + [3027] = 2421, + [3028] = 2604, + [3029] = 2276, + [3030] = 2277, + [3031] = 2278, + [3032] = 2279, + [3033] = 2655, + [3034] = 2578, + [3035] = 2528, + [3036] = 2529, + [3037] = 2530, + [3038] = 2531, + [3039] = 2579, + [3040] = 2151, + [3041] = 2422, + [3042] = 2536, + [3043] = 2580, + [3044] = 2581, + [3045] = 2582, + [3046] = 2583, + [3047] = 2584, + [3048] = 2526, + [3049] = 2527, + [3050] = 2280, + [3051] = 2544, + [3052] = 2545, + [3053] = 2547, + [3054] = 2281, + [3055] = 148, + [3056] = 2548, + [3057] = 2549, + [3058] = 2423, + [3059] = 2550, + [3060] = 2551, + [3061] = 2282, + [3062] = 2283, + [3063] = 2660, + [3064] = 2585, + [3065] = 2586, + [3066] = 2552, + [3067] = 2587, + [3068] = 2553, + [3069] = 2554, + [3070] = 2555, + [3071] = 2588, + [3072] = 2589, + [3073] = 2575, + [3074] = 2576, + [3075] = 2577, + [3076] = 2590, + [3077] = 2591, + [3078] = 2424, + [3079] = 2425, + [3080] = 2426, + [3081] = 2427, + [3082] = 2253, + [3083] = 2284, + [3084] = 2286, + [3085] = 2289, + [3086] = 2595, + [3087] = 2596, + [3088] = 2597, + [3089] = 2592, + [3090] = 2593, + [3091] = 2594, + [3092] = 2622, + [3093] = 2633, + [3094] = 2634, + [3095] = 2635, + [3096] = 2645, + [3097] = 2598, + [3098] = 2599, + [3099] = 2290, + [3100] = 2600, + [3101] = 2601, + [3102] = 2646, + [3103] = 2602, + [3104] = 2657, + [3105] = 2658, + [3106] = 2659, + [3107] = 2291, + [3108] = 2428, + [3109] = 2292, + [3110] = 2295, + [3111] = 2296, + [3112] = 2297, + [3113] = 2298, + [3114] = 2300, + [3115] = 2301, + [3116] = 2667, + [3117] = 2668, + [3118] = 2251, + [3119] = 2670, + [3120] = 2686, + [3121] = 2687, + [3122] = 2696, + [3123] = 2697, + [3124] = 2703, + [3125] = 2712, + [3126] = 2713, + [3127] = 2714, + [3128] = 2721, + [3129] = 2302, + [3130] = 2522, + [3131] = 2303, + [3132] = 2304, + [3133] = 2305, + [3134] = 2306, + [3135] = 2307, + [3136] = 150, + [3137] = 2734, + [3138] = 2735, + [3139] = 2736, + [3140] = 2743, + [3141] = 2744, + [3142] = 2745, + [3143] = 2746, + [3144] = 2753, + [3145] = 2802, + [3146] = 2415, + [3147] = 2308, + [3148] = 2309, + [3149] = 2310, + [3150] = 2311, + [3151] = 2814, + [3152] = 2312, + [3153] = 2815, + [3154] = 2824, + [3155] = 2825, + [3156] = 2826, + [3157] = 2313, + [3158] = 2314, + [3159] = 2315, + [3160] = 2429, + [3161] = 2316, + [3162] = 2430, + [3163] = 2317, + [3164] = 2318, + [3165] = 2319, + [3166] = 2840, + [3167] = 2841, + [3168] = 2842, + [3169] = 2843, + [3170] = 2844, + [3171] = 2845, + [3172] = 2846, + [3173] = 2847, + [3174] = 2848, + [3175] = 2849, + [3176] = 2320, + [3177] = 2321, + [3178] = 2322, + [3179] = 2323, + [3180] = 2327, + [3181] = 152, + [3182] = 153, + [3183] = 2328, + [3184] = 2120, + [3185] = 2121, + [3186] = 2122, + [3187] = 2331, + [3188] = 2332, + [3189] = 2333, + [3190] = 2334, + [3191] = 2336, + [3192] = 2337, + [3193] = 2338, + [3194] = 2537, + [3195] = 2431, + [3196] = 2435, + [3197] = 2339, + [3198] = 2340, + [3199] = 2341, + [3200] = 2126, + [3201] = 2127, + [3202] = 2342, + [3203] = 2343, + [3204] = 2344, + [3205] = 2345, + [3206] = 2346, + [3207] = 2347, + [3208] = 2128, + [3209] = 2348, + [3210] = 149, + [3211] = 2349, + [3212] = 2350, + [3213] = 2351, + [3214] = 2352, + [3215] = 2353, + [3216] = 2354, + [3217] = 2355, + [3218] = 2356, + [3219] = 2357, + [3220] = 2358, + [3221] = 2359, + [3222] = 2363, + [3223] = 2364, + [3224] = 2367, + [3225] = 2368, + [3226] = 2369, + [3227] = 2370, + [3228] = 2372, + [3229] = 2373, + [3230] = 2374, + [3231] = 2375, + [3232] = 2376, + [3233] = 2377, + [3234] = 2378, + [3235] = 2379, + [3236] = 2133, + [3237] = 2143, + [3238] = 2525, + [3239] = 2144, + [3240] = 2146, + [3241] = 2436, + [3242] = 2380, + [3243] = 2381, + [3244] = 2382, + [3245] = 2383, + [3246] = 2439, + [3247] = 2384, + [3248] = 2385, + [3249] = 2535, + [3250] = 2158, + [3251] = 2159, + [3252] = 2160, + [3253] = 2386, + [3254] = 2387, + [3255] = 2388, + [3256] = 2165, + [3257] = 2389, + [3258] = 2166, + [3259] = 2167, + [3260] = 2440, + [3261] = 2169, + [3262] = 2170, + [3263] = 2171, + [3264] = 2172, + [3265] = 2441, + [3266] = 2442, + [3267] = 2178, + [3268] = 2181, + [3269] = 2444, + [3270] = 2445, + [3271] = 2446, + [3272] = 2546, + [3273] = 2183, + [3274] = 2184, + [3275] = 2390, + [3276] = 2447, + [3277] = 2391, + [3278] = 2185, + [3279] = 2186, + [3280] = 2187, + [3281] = 2188, + [3282] = 2189, + [3283] = 2392, + [3284] = 2194, + [3285] = 2195, + [3286] = 2198, + [3287] = 2199, + [3288] = 2448, + [3289] = 2449, + [3290] = 2201, + [3291] = 2202, + [3292] = 2450, + [3293] = 2393, + [3294] = 2394, + [3295] = 2395, + [3296] = 2399, + [3297] = 2203, + [3298] = 2400, + [3299] = 2204, + [3300] = 2205, + [3301] = 2206, + [3302] = 2207, + [3303] = 2208, + [3304] = 2213, + [3305] = 2214, + [3306] = 2217, + [3307] = 2403, + [3308] = 2404, + [3309] = 2219, + [3310] = 2405, + [3311] = 2406, + [3312] = 2220, + [3313] = 2221, + [3314] = 2222, + [3315] = 2223, + [3316] = 2224, + [3317] = 2225, + [3318] = 2226, + [3319] = 2227, + [3320] = 2228, + [3321] = 2229, + [3322] = 2408, + [3323] = 2233, + [3324] = 2409, + [3325] = 2410, + [3326] = 2237, + [3327] = 2238, + [3328] = 2411, + [3329] = 2412, + [3330] = 2240, + [3331] = 2241, + [3332] = 2242, + [3333] = 2243, + [3334] = 2244, + [3335] = 2245, + [3336] = 2246, + [3337] = 2247, + [3338] = 2248, + [3339] = 2413, + [3340] = 2414, + [3341] = 2249, + [3342] = 146, + [3343] = 3343, + [3344] = 3343, + [3345] = 3343, + [3346] = 3343, + [3347] = 3343, + [3348] = 3343, + [3349] = 3343, + [3350] = 3343, + [3351] = 3343, + [3352] = 2648, + [3353] = 2649, + [3354] = 2142, + [3355] = 2140, + [3356] = 2145, + [3357] = 2136, + [3358] = 2132, + [3359] = 2129, + [3360] = 2132, + [3361] = 2142, + [3362] = 2534, + [3363] = 2136, + [3364] = 2140, + [3365] = 2145, + [3366] = 2129, + [3367] = 2524, + [3368] = 2534, + [3369] = 518, + [3370] = 519, + [3371] = 520, + [3372] = 521, + [3373] = 2649, + [3374] = 2141, + [3375] = 522, + [3376] = 735, + [3377] = 1412, + [3378] = 503, + [3379] = 523, + [3380] = 501, + [3381] = 502, + [3382] = 1420, + [3383] = 1413, + [3384] = 2648, + [3385] = 504, + [3386] = 505, + [3387] = 506, + [3388] = 507, + [3389] = 508, + [3390] = 1421, + [3391] = 2141, + [3392] = 509, + [3393] = 497, + [3394] = 2, + [3395] = 1420, + [3396] = 1421, + [3397] = 514, + [3398] = 2534, + [3399] = 2524, + [3400] = 2524, + [3401] = 515, + [3402] = 1412, + [3403] = 1413, + [3404] = 517, + [3405] = 1420, + [3406] = 1421, + [3407] = 496, + [3408] = 767, + [3409] = 2648, + [3410] = 1412, + [3411] = 1413, + [3412] = 2147, + [3413] = 2148, + [3414] = 766, + [3415] = 1412, + [3416] = 1413, + [3417] = 3417, + [3418] = 529, + [3419] = 498, + [3420] = 2129, + [3421] = 612, + [3422] = 1420, + [3423] = 2132, + [3424] = 2136, + [3425] = 2140, + [3426] = 2142, + [3427] = 2145, + [3428] = 767, + [3429] = 516, + [3430] = 2534, + [3431] = 1421, + [3432] = 2534, + [3433] = 2649, + [3434] = 674, + [3435] = 2480, + [3436] = 2590, + [3437] = 2591, + [3438] = 2618, + [3439] = 2604, + [3440] = 2528, + [3441] = 2529, + [3442] = 2530, + [3443] = 2531, + [3444] = 2234, + [3445] = 2151, + [3446] = 2522, + [3447] = 2536, + [3448] = 2544, + [3449] = 2545, + [3450] = 2547, + [3451] = 2546, + [3452] = 2548, + [3453] = 2549, + [3454] = 2550, + [3455] = 2551, + [3456] = 2552, + [3457] = 2553, + [3458] = 2554, + [3459] = 2555, + [3460] = 2575, + [3461] = 2576, + [3462] = 2577, + [3463] = 2592, + [3464] = 2593, + [3465] = 2594, + [3466] = 2622, + [3467] = 2633, + [3468] = 2634, + [3469] = 2603, + [3470] = 2635, + [3471] = 2645, + [3472] = 2646, + [3473] = 2657, + [3474] = 2658, + [3475] = 2659, + [3476] = 2595, + [3477] = 2596, + [3478] = 2667, + [3479] = 2668, + [3480] = 2669, + [3481] = 2670, + [3482] = 2686, + [3483] = 2687, + [3484] = 2696, + [3485] = 2697, + [3486] = 2597, + [3487] = 2598, + [3488] = 2599, + [3489] = 2703, + [3490] = 2712, + [3491] = 2713, + [3492] = 2714, + [3493] = 2721, + [3494] = 2734, + [3495] = 2735, + [3496] = 2736, + [3497] = 2743, + [3498] = 2744, + [3499] = 2745, + [3500] = 2746, + [3501] = 2753, + [3502] = 2802, + [3503] = 2814, + [3504] = 2815, + [3505] = 2824, + [3506] = 2825, + [3507] = 2826, + [3508] = 2, + [3509] = 2840, + [3510] = 2841, + [3511] = 2842, + [3512] = 2843, + [3513] = 2844, + [3514] = 2845, + [3515] = 2846, + [3516] = 2847, + [3517] = 2848, + [3518] = 2849, + [3519] = 2120, + [3520] = 2121, + [3521] = 2122, + [3522] = 2619, + [3523] = 2126, + [3524] = 2127, + [3525] = 2128, + [3526] = 2133, + [3527] = 2636, + [3528] = 2143, + [3529] = 2525, + [3530] = 2637, + [3531] = 2144, + [3532] = 2146, + [3533] = 2535, + [3534] = 2158, + [3535] = 2159, + [3536] = 2160, [3537] = 3537, - [3538] = 3527, - [3539] = 3539, - [3540] = 3512, - [3541] = 3541, - [3542] = 3516, - [3543] = 3422, - [3544] = 3509, - [3545] = 3545, - [3546] = 3546, - [3547] = 3514, - [3548] = 3506, - [3549] = 3447, - [3550] = 3550, - [3551] = 3539, - [3552] = 3506, - [3553] = 3506, - [3554] = 3506, - [3555] = 540, - [3556] = 3514, - [3557] = 3474, - [3558] = 3509, - [3559] = 3507, - [3560] = 3516, - [3561] = 3422, - [3562] = 537, - [3563] = 3509, - [3564] = 3516, - [3565] = 3483, - [3566] = 3483, - [3567] = 3507, - [3568] = 3447, - [3569] = 3569, - [3570] = 3539, - [3571] = 3571, - [3572] = 3507, - [3573] = 3447, - [3574] = 3516, - [3575] = 3514, - [3576] = 3539, - [3577] = 3514, - [3578] = 3527, - [3579] = 3447, - [3580] = 3527, - [3581] = 551, - [3582] = 3516, - [3583] = 3506, - [3584] = 3539, - [3585] = 3512, - [3586] = 541, - [3587] = 3539, - [3588] = 3422, - [3589] = 3507, - [3590] = 3474, - [3591] = 3422, - [3592] = 3527, - [3593] = 3507, - [3594] = 3512, - [3595] = 3512, - [3596] = 635, - [3597] = 550, - [3598] = 605, - [3599] = 594, - [3600] = 546, - [3601] = 551, - [3602] = 599, - [3603] = 615, - [3604] = 614, - [3605] = 532, - [3606] = 586, - [3607] = 595, - [3608] = 549, - [3609] = 533, - [3610] = 616, - [3611] = 556, - [3612] = 543, - [3613] = 617, - [3614] = 531, - [3615] = 684, - [3616] = 602, - [3617] = 546, - [3618] = 534, - [3619] = 596, - [3620] = 535, - [3621] = 536, - [3622] = 3622, - [3623] = 534, - [3624] = 597, - [3625] = 630, - [3626] = 699, - [3627] = 560, - [3628] = 557, - [3629] = 701, - [3630] = 702, - [3631] = 625, - [3632] = 687, - [3633] = 640, - [3634] = 530, - [3635] = 545, - [3636] = 632, - [3637] = 633, - [3638] = 547, - [3639] = 552, - [3640] = 542, - [3641] = 530, - [3642] = 545, - [3643] = 548, - [3644] = 553, - [3645] = 554, - [3646] = 555, - [3647] = 561, - [3648] = 604, - [3649] = 571, - [3650] = 601, - [3651] = 574, - [3652] = 624, - [3653] = 575, - [3654] = 626, - [3655] = 579, - [3656] = 548, - [3657] = 631, - [3658] = 703, - [3659] = 553, - [3660] = 688, - [3661] = 554, - [3662] = 533, - [3663] = 620, - [3664] = 531, - [3665] = 603, - [3666] = 555, - [3667] = 627, - [3668] = 634, - [3669] = 558, - [3670] = 587, - [3671] = 588, - [3672] = 535, - [3673] = 589, - [3674] = 559, - [3675] = 590, - [3676] = 591, - [3677] = 628, - [3678] = 592, - [3679] = 593, - [3680] = 584, - [3681] = 621, - [3682] = 536, - [3683] = 658, - [3684] = 623, - [3685] = 549, - [3686] = 600, - [3687] = 547, - [3688] = 552, - [3689] = 686, - [3690] = 598, - [3691] = 685, - [3692] = 622, - [3693] = 543, - [3694] = 606, - [3695] = 562, - [3696] = 638, - [3697] = 565, - [3698] = 567, - [3699] = 564, - [3700] = 647, - [3701] = 573, - [3702] = 609, - [3703] = 576, - [3704] = 646, - [3705] = 705, - [3706] = 649, - [3707] = 650, - [3708] = 568, - [3709] = 652, - [3710] = 653, - [3711] = 654, - [3712] = 618, - [3713] = 661, - [3714] = 581, - [3715] = 662, - [3716] = 663, - [3717] = 655, - [3718] = 664, - [3719] = 665, - [3720] = 666, - [3721] = 657, - [3722] = 673, - [3723] = 608, - [3724] = 667, - [3725] = 578, - [3726] = 582, - [3727] = 668, - [3728] = 669, - [3729] = 670, - [3730] = 671, - [3731] = 672, - [3732] = 637, - [3733] = 679, - [3734] = 680, - [3735] = 681, - [3736] = 682, - [3737] = 689, - [3738] = 690, - [3739] = 691, - [3740] = 692, - [3741] = 693, - [3742] = 611, - [3743] = 694, - [3744] = 695, - [3745] = 696, - [3746] = 697, - [3747] = 698, - [3748] = 704, - [3749] = 648, - [3750] = 629, - [3751] = 636, - [3752] = 642, - [3753] = 659, - [3754] = 563, - [3755] = 660, - [3756] = 610, - [3757] = 612, - [3758] = 613, - [3759] = 619, - [3760] = 643, - [3761] = 644, - [3762] = 651, - [3763] = 566, - [3764] = 570, - [3765] = 572, - [3766] = 683, - [3767] = 577, - [3768] = 569, - [3769] = 583, - [3770] = 607, - [3771] = 674, - [3772] = 675, - [3773] = 676, - [3774] = 677, - [3775] = 639, - [3776] = 700, - [3777] = 641, - [3778] = 585, - [3779] = 678, - [3780] = 3780, - [3781] = 3781, - [3782] = 3782, - [3783] = 557, - [3784] = 3784, - [3785] = 627, - [3786] = 3786, - [3787] = 595, - [3788] = 631, - [3789] = 624, - [3790] = 586, - [3791] = 625, - [3792] = 626, - [3793] = 3793, - [3794] = 686, - [3795] = 620, - [3796] = 584, - [3797] = 634, - [3798] = 621, - [3799] = 699, - [3800] = 537, - [3801] = 635, - [3802] = 685, - [3803] = 702, - [3804] = 622, - [3805] = 633, - [3806] = 628, - [3807] = 701, - [3808] = 3808, - [3809] = 560, - [3810] = 594, - [3811] = 3811, - [3812] = 3812, - [3813] = 3813, - [3814] = 3814, - [3815] = 540, - [3816] = 541, - [3817] = 539, - [3818] = 3818, - [3819] = 591, - [3820] = 590, - [3821] = 575, - [3822] = 615, - [3823] = 616, - [3824] = 617, - [3825] = 602, - [3826] = 592, - [3827] = 596, - [3828] = 593, - [3829] = 571, - [3830] = 597, - [3831] = 561, - [3832] = 598, - [3833] = 630, - [3834] = 599, - [3835] = 601, - [3836] = 579, - [3837] = 587, - [3838] = 600, - [3839] = 684, - [3840] = 687, - [3841] = 603, - [3842] = 604, - [3843] = 605, - [3844] = 658, - [3845] = 632, - [3846] = 574, - [3847] = 606, - [3848] = 614, - [3849] = 588, - [3850] = 640, - [3851] = 559, - [3852] = 688, - [3853] = 589, - [3854] = 703, - [3855] = 558, - [3856] = 537, - [3857] = 540, - [3858] = 539, - [3859] = 541, - [3860] = 3860, - [3861] = 541, - [3862] = 540, - [3863] = 3863, - [3864] = 540, - [3865] = 2210, - [3866] = 2207, - [3867] = 2216, - [3868] = 541, - [3869] = 2210, - [3870] = 630, - [3871] = 3871, - [3872] = 3872, - [3873] = 3873, - [3874] = 3874, - [3875] = 2216, - [3876] = 3876, - [3877] = 3877, - [3878] = 3878, - [3879] = 3879, - [3880] = 2214, - [3881] = 632, - [3882] = 3882, - [3883] = 2208, - [3884] = 3884, - [3885] = 2206, - [3886] = 2208, - [3887] = 2207, - [3888] = 2206, - [3889] = 3889, - [3890] = 3890, - [3891] = 3891, - [3892] = 2214, - [3893] = 3893, - [3894] = 3894, - [3895] = 3895, - [3896] = 3896, - [3897] = 3897, - [3898] = 3898, - [3899] = 3899, - [3900] = 3900, - [3901] = 3901, - [3902] = 3902, - [3903] = 577, - [3904] = 3904, - [3905] = 3905, - [3906] = 3906, + [3538] = 2569, + [3539] = 2165, + [3540] = 2570, + [3541] = 2166, + [3542] = 2167, + [3543] = 2571, + [3544] = 2572, + [3545] = 2169, + [3546] = 2170, + [3547] = 2171, + [3548] = 2172, + [3549] = 2178, + [3550] = 2181, + [3551] = 2573, + [3552] = 2534, + [3553] = 2183, + [3554] = 2184, + [3555] = 2185, + [3556] = 2186, + [3557] = 1412, + [3558] = 1413, + [3559] = 2537, + [3560] = 2187, + [3561] = 2188, + [3562] = 2189, + [3563] = 2194, + [3564] = 2195, + [3565] = 2198, + [3566] = 2199, + [3567] = 1420, + [3568] = 2201, + [3569] = 2202, + [3570] = 2203, + [3571] = 1421, + [3572] = 2204, + [3573] = 2205, + [3574] = 2206, + [3575] = 2606, + [3576] = 2534, + [3577] = 2207, + [3578] = 2208, + [3579] = 2213, + [3580] = 2609, + [3581] = 2214, + [3582] = 2610, + [3583] = 2217, + [3584] = 2219, + [3585] = 2220, + [3586] = 2221, + [3587] = 2222, + [3588] = 2223, + [3589] = 2224, + [3590] = 2225, + [3591] = 2226, + [3592] = 2227, + [3593] = 2228, + [3594] = 2600, + [3595] = 2601, + [3596] = 2602, + [3597] = 2229, + [3598] = 2233, + [3599] = 2237, + [3600] = 2238, + [3601] = 2240, + [3602] = 2241, + [3603] = 2242, + [3604] = 2243, + [3605] = 2244, + [3606] = 2245, + [3607] = 2246, + [3608] = 2247, + [3609] = 2248, + [3610] = 2249, + [3611] = 2250, + [3612] = 2251, + [3613] = 2252, + [3614] = 2253, + [3615] = 2254, + [3616] = 2258, + [3617] = 2261, + [3618] = 2262, + [3619] = 2264, + [3620] = 2655, + [3621] = 2265, + [3622] = 2266, + [3623] = 2267, + [3624] = 2268, + [3625] = 2269, + [3626] = 2270, + [3627] = 2271, + [3628] = 2272, + [3629] = 2273, + [3630] = 2274, + [3631] = 2275, + [3632] = 2276, + [3633] = 2277, + [3634] = 2278, + [3635] = 2279, + [3636] = 2280, + [3637] = 2281, + [3638] = 2282, + [3639] = 2283, + [3640] = 2578, + [3641] = 2579, + [3642] = 2580, + [3643] = 2284, + [3644] = 2286, + [3645] = 2289, + [3646] = 2290, + [3647] = 2291, + [3648] = 2292, + [3649] = 2295, + [3650] = 2296, + [3651] = 2297, + [3652] = 2298, + [3653] = 2300, + [3654] = 2301, + [3655] = 2302, + [3656] = 2303, + [3657] = 2304, + [3658] = 2305, + [3659] = 2306, + [3660] = 2307, + [3661] = 2308, + [3662] = 2309, + [3663] = 2310, + [3664] = 2311, + [3665] = 2313, + [3666] = 2581, + [3667] = 2314, + [3668] = 2315, + [3669] = 2582, + [3670] = 2316, + [3671] = 2317, + [3672] = 2318, + [3673] = 2319, + [3674] = 2320, + [3675] = 2321, + [3676] = 2322, + [3677] = 2323, + [3678] = 2327, + [3679] = 2328, + [3680] = 2331, + [3681] = 2332, + [3682] = 2333, + [3683] = 2334, + [3684] = 2336, + [3685] = 2337, + [3686] = 2338, + [3687] = 2339, + [3688] = 2340, + [3689] = 2341, + [3690] = 2583, + [3691] = 2584, + [3692] = 2616, + [3693] = 2342, + [3694] = 2623, + [3695] = 2343, + [3696] = 2344, + [3697] = 2345, + [3698] = 2346, + [3699] = 2347, + [3700] = 2348, + [3701] = 2349, + [3702] = 2350, + [3703] = 2351, + [3704] = 2352, + [3705] = 2353, + [3706] = 2354, + [3707] = 2355, + [3708] = 2356, + [3709] = 2357, + [3710] = 2358, + [3711] = 2359, + [3712] = 2363, + [3713] = 2364, + [3714] = 2367, + [3715] = 2368, + [3716] = 2369, + [3717] = 2370, + [3718] = 2372, + [3719] = 2373, + [3720] = 2374, + [3721] = 2375, + [3722] = 2376, + [3723] = 2377, + [3724] = 2378, + [3725] = 2379, + [3726] = 2380, + [3727] = 2381, + [3728] = 2382, + [3729] = 2383, + [3730] = 2384, + [3731] = 2385, + [3732] = 2386, + [3733] = 2387, + [3734] = 2388, + [3735] = 2389, + [3736] = 2390, + [3737] = 2391, + [3738] = 2392, + [3739] = 2393, + [3740] = 2394, + [3741] = 2624, + [3742] = 2395, + [3743] = 2399, + [3744] = 2400, + [3745] = 2403, + [3746] = 2404, + [3747] = 2405, + [3748] = 2406, + [3749] = 2408, + [3750] = 2409, + [3751] = 2410, + [3752] = 2411, + [3753] = 2412, + [3754] = 2413, + [3755] = 2414, + [3756] = 2415, + [3757] = 2416, + [3758] = 2417, + [3759] = 2418, + [3760] = 2419, + [3761] = 2420, + [3762] = 2421, + [3763] = 2422, + [3764] = 2423, + [3765] = 2424, + [3766] = 2563, + [3767] = 2564, + [3768] = 2565, + [3769] = 2425, + [3770] = 2426, + [3771] = 2427, + [3772] = 2428, + [3773] = 2429, + [3774] = 2430, + [3775] = 2431, + [3776] = 2435, + [3777] = 2436, + [3778] = 2439, + [3779] = 2440, + [3780] = 2441, + [3781] = 2442, + [3782] = 2444, + [3783] = 2445, + [3784] = 2446, + [3785] = 2447, + [3786] = 2448, + [3787] = 2449, + [3788] = 2450, + [3789] = 2451, + [3790] = 2452, + [3791] = 2453, + [3792] = 2454, + [3793] = 2455, + [3794] = 2456, + [3795] = 2457, + [3796] = 2458, + [3797] = 2459, + [3798] = 2460, + [3799] = 2461, + [3800] = 2462, + [3801] = 2463, + [3802] = 2464, + [3803] = 2465, + [3804] = 2466, + [3805] = 2467, + [3806] = 2471, + [3807] = 2472, + [3808] = 2475, + [3809] = 2476, + [3810] = 2477, + [3811] = 2478, + [3812] = 2481, + [3813] = 2482, + [3814] = 2483, + [3815] = 2484, + [3816] = 2485, + [3817] = 2486, + [3818] = 2487, + [3819] = 2488, + [3820] = 2489, + [3821] = 2490, + [3822] = 2491, + [3823] = 2492, + [3824] = 2493, + [3825] = 2494, + [3826] = 2495, + [3827] = 2496, + [3828] = 2497, + [3829] = 2558, + [3830] = 2617, + [3831] = 2157, + [3832] = 2504, + [3833] = 2505, + [3834] = 2506, + [3835] = 2613, + [3836] = 3836, + [3837] = 3837, + [3838] = 3838, + [3839] = 3839, + [3840] = 2168, + [3841] = 2510, + [3842] = 2559, + [3843] = 2556, + [3844] = 2513, + [3845] = 2514, + [3846] = 2660, + [3847] = 2585, + [3848] = 2586, + [3849] = 2526, + [3850] = 2527, + [3851] = 2587, + [3852] = 2588, + [3853] = 2589, + [3854] = 2134, + [3855] = 2135, + [3856] = 2137, + [3857] = 2139, + [3858] = 2523, + [3859] = 2312, + [3860] = 2564, + [3861] = 2581, + [3862] = 2583, + [3863] = 2565, + [3864] = 2168, + [3865] = 2571, + [3866] = 2584, + [3867] = 2590, + [3868] = 2563, + [3869] = 2556, + [3870] = 2591, + [3871] = 2572, + [3872] = 2595, + [3873] = 2579, + [3874] = 2596, + [3875] = 2597, + [3876] = 2598, + [3877] = 2599, + [3878] = 2558, + [3879] = 2569, + [3880] = 2585, + [3881] = 2157, + [3882] = 2578, + [3883] = 2586, + [3884] = 2600, + [3885] = 2601, + [3886] = 2559, + [3887] = 2582, + [3888] = 2602, + [3889] = 2587, + [3890] = 2573, + [3891] = 2588, + [3892] = 2589, + [3893] = 2570, + [3894] = 2, + [3895] = 2580, + [3896] = 2, + [3897] = 612, + [3898] = 2, + [3899] = 496, + [3900] = 766, + [3901] = 735, + [3902] = 503, + [3903] = 674, + [3904] = 2, + [3905] = 498, + [3906] = 516, [3907] = 3907, - [3908] = 3908, + [3908] = 2227, [3909] = 3909, - [3910] = 3910, - [3911] = 3911, - [3912] = 3912, - [3913] = 3913, + [3910] = 2228, + [3911] = 2528, + [3912] = 2139, + [3913] = 2229, [3914] = 3914, - [3915] = 3915, - [3916] = 3916, - [3917] = 3917, - [3918] = 3918, + [3915] = 2494, + [3916] = 2233, + [3917] = 2419, + [3918] = 2553, [3919] = 3919, - [3920] = 3920, + [3920] = 2237, [3921] = 3921, - [3922] = 609, - [3923] = 3923, - [3924] = 3924, + [3922] = 3922, + [3923] = 3907, + [3924] = 2238, [3925] = 3925, - [3926] = 3926, - [3927] = 3927, - [3928] = 3928, - [3929] = 3929, - [3930] = 3930, - [3931] = 3931, - [3932] = 3932, - [3933] = 3933, - [3934] = 3934, - [3935] = 3935, - [3936] = 3936, - [3937] = 3937, - [3938] = 3938, - [3939] = 3939, + [3926] = 3909, + [3927] = 2487, + [3928] = 3919, + [3929] = 3921, + [3930] = 3922, + [3931] = 2426, + [3932] = 3907, + [3933] = 3925, + [3934] = 3914, + [3935] = 2523, + [3936] = 3919, + [3937] = 3921, + [3938] = 3922, + [3939] = 3907, [3940] = 3940, [3941] = 3941, [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] = 3962, - [3963] = 3963, - [3964] = 3964, - [3965] = 3956, - [3966] = 3966, - [3967] = 3967, - [3968] = 3968, - [3969] = 3969, - [3970] = 3968, - [3971] = 3971, - [3972] = 3972, - [3973] = 3973, - [3974] = 3974, - [3975] = 3975, - [3976] = 3976, - [3977] = 3969, - [3978] = 3978, - [3979] = 3979, - [3980] = 3980, - [3981] = 3981, - [3982] = 3973, - [3983] = 3958, - [3984] = 3984, - [3985] = 3985, - [3986] = 3986, - [3987] = 3984, - [3988] = 3981, - [3989] = 3954, - [3990] = 3990, - [3991] = 3991, - [3992] = 3992, - [3993] = 3981, - [3994] = 3895, - [3995] = 3991, - [3996] = 3981, - [3997] = 3997, - [3998] = 3998, - [3999] = 3991, - [4000] = 4000, - [4001] = 4001, - [4002] = 3976, - [4003] = 4003, - [4004] = 3986, - [4005] = 3992, - [4006] = 4001, - [4007] = 3955, - [4008] = 3978, - [4009] = 4009, - [4010] = 4000, - [4011] = 3957, - [4012] = 4001, - [4013] = 3958, - [4014] = 3959, - [4015] = 3961, - [4016] = 3962, - [4017] = 3976, - [4018] = 3980, - [4019] = 3964, - [4020] = 3956, - [4021] = 3978, - [4022] = 3955, - [4023] = 3968, - [4024] = 3969, - [4025] = 4003, - [4026] = 3973, - [4027] = 3986, - [4028] = 3992, - [4029] = 3955, - [4030] = 3957, - [4031] = 3958, - [4032] = 3959, - [4033] = 4033, - [4034] = 4034, - [4035] = 3976, - [4036] = 3978, - [4037] = 4037, - [4038] = 3895, - [4039] = 3980, - [4040] = 3959, - [4041] = 4000, - [4042] = 3961, - [4043] = 4043, - [4044] = 4044, - [4045] = 4045, - [4046] = 3984, - [4047] = 3984, - [4048] = 4048, - [4049] = 3962, - [4050] = 4050, - [4051] = 3954, - [4052] = 3990, - [4053] = 3964, - [4054] = 4001, - [4055] = 3981, - [4056] = 3956, - [4057] = 4003, - [4058] = 4058, - [4059] = 3956, - [4060] = 4001, - [4061] = 3958, - [4062] = 3973, - [4063] = 4063, - [4064] = 4064, - [4065] = 4065, - [4066] = 4066, - [4067] = 3954, - [4068] = 3990, - [4069] = 3980, - [4070] = 4070, - [4071] = 4071, - [4072] = 3981, - [4073] = 3968, - [4074] = 4001, - [4075] = 3969, - [4076] = 4076, - [4077] = 3958, - [4078] = 3973, - [4079] = 4079, - [4080] = 3986, - [4081] = 3992, - [4082] = 4082, + [3943] = 3909, + [3944] = 3925, + [3945] = 2623, + [3946] = 3914, + [3947] = 3940, + [3948] = 3941, + [3949] = 2495, + [3950] = 2313, + [3951] = 3914, + [3952] = 2314, + [3953] = 2624, + [3954] = 3914, + [3955] = 2240, + [3956] = 2315, + [3957] = 2316, + [3958] = 3919, + [3959] = 3909, + [3960] = 2317, + [3961] = 3919, + [3962] = 3909, + [3963] = 3919, + [3964] = 2622, + [3965] = 3921, + [3966] = 3922, + [3967] = 3907, + [3968] = 3925, + [3969] = 2814, + [3970] = 3921, + [3971] = 3940, + [3972] = 3941, + [3973] = 2241, + [3974] = 2242, + [3975] = 3909, + [3976] = 3922, + [3977] = 3909, + [3978] = 3907, + [3979] = 3925, + [3980] = 3921, + [3981] = 3922, + [3982] = 3907, + [3983] = 3940, + [3984] = 3941, + [3985] = 3925, + [3986] = 2815, + [3987] = 2243, + [3988] = 2244, + [3989] = 2824, + [3990] = 2245, + [3991] = 3919, + [3992] = 3909, + [3993] = 2577, + [3994] = 3914, + [3995] = 2825, + [3996] = 3914, + [3997] = 2318, + [3998] = 3921, + [3999] = 2319, + [4000] = 3922, + [4001] = 2826, + [4002] = 2320, + [4003] = 2636, + [4004] = 2637, + [4005] = 3907, + [4006] = 3940, + [4007] = 2246, + [4008] = 2247, + [4009] = 2248, + [4010] = 2249, + [4011] = 2250, + [4012] = 3940, + [4013] = 2251, + [4014] = 3941, + [4015] = 2252, + [4016] = 3919, + [4017] = 3909, + [4018] = 3941, + [4019] = 2253, + [4020] = 2254, + [4021] = 3921, + [4022] = 2165, + [4023] = 2526, + [4024] = 2527, + [4025] = 3922, + [4026] = 3907, + [4027] = 2258, + [4028] = 2478, + [4029] = 3914, + [4030] = 3919, + [4031] = 3909, + [4032] = 3921, + [4033] = 3922, + [4034] = 3907, + [4035] = 3925, + [4036] = 3940, + [4037] = 3941, + [4038] = 3914, + [4039] = 3919, + [4040] = 3909, + [4041] = 2321, + [4042] = 3921, + [4043] = 3922, + [4044] = 3907, + [4045] = 3925, + [4046] = 3940, + [4047] = 3941, + [4048] = 3914, + [4049] = 2322, + [4050] = 3925, + [4051] = 2323, + [4052] = 2261, + [4053] = 3925, + [4054] = 2327, + [4055] = 3919, + [4056] = 3909, + [4057] = 2687, + [4058] = 3940, + [4059] = 3921, + [4060] = 3922, + [4061] = 3907, + [4062] = 3925, + [4063] = 3921, + [4064] = 3941, + [4065] = 3940, + [4066] = 3941, + [4067] = 2262, + [4068] = 2264, + [4069] = 2265, + [4070] = 2266, + [4071] = 2451, + [4072] = 2390, + [4073] = 2391, + [4074] = 2655, + [4075] = 2267, + [4076] = 3919, + [4077] = 3909, + [4078] = 2268, + [4079] = 2269, + [4080] = 2270, + [4081] = 2271, + [4082] = 2272, [4083] = 4083, - [4084] = 4084, - [4085] = 3954, - [4086] = 4086, + [4084] = 2273, + [4085] = 3921, + [4086] = 3922, [4087] = 4087, - [4088] = 4088, - [4089] = 4089, - [4090] = 4090, - [4091] = 4091, - [4092] = 4092, - [4093] = 4093, - [4094] = 3973, - [4095] = 4095, - [4096] = 4096, - [4097] = 4097, - [4098] = 3955, - [4099] = 4099, - [4100] = 3991, - [4101] = 4101, - [4102] = 3961, - [4103] = 3962, - [4104] = 3976, - [4105] = 3978, - [4106] = 4106, - [4107] = 4107, - [4108] = 3980, - [4109] = 4109, - [4110] = 3968, - [4111] = 3964, - [4112] = 4112, - [4113] = 4113, - [4114] = 4114, - [4115] = 3990, - [4116] = 2210, - [4117] = 2214, - [4118] = 3954, - [4119] = 3957, - [4120] = 3990, - [4121] = 3984, - [4122] = 4122, - [4123] = 3958, - [4124] = 4124, - [4125] = 3984, - [4126] = 3954, - [4127] = 4127, - [4128] = 3959, - [4129] = 4129, - [4130] = 3981, - [4131] = 4131, - [4132] = 3991, - [4133] = 3969, - [4134] = 3990, - [4135] = 4135, - [4136] = 4136, - [4137] = 3954, - [4138] = 4138, - [4139] = 4139, - [4140] = 3957, - [4141] = 4141, - [4142] = 2208, - [4143] = 2206, - [4144] = 4000, - [4145] = 3954, - [4146] = 3990, - [4147] = 4001, - [4148] = 4003, - [4149] = 3986, - [4150] = 3961, - [4151] = 3990, - [4152] = 3992, - [4153] = 3955, - [4154] = 4000, - [4155] = 2214, - [4156] = 4156, - [4157] = 4157, - [4158] = 3962, - [4159] = 4159, - [4160] = 2207, - [4161] = 2216, - [4162] = 3957, - [4163] = 3958, - [4164] = 3959, - [4165] = 4003, - [4166] = 3981, - [4167] = 4167, - [4168] = 3991, - [4169] = 3964, - [4170] = 3961, - [4171] = 3962, - [4172] = 3973, - [4173] = 3964, - [4174] = 4174, - [4175] = 4175, - [4176] = 2208, - [4177] = 4177, - [4178] = 2210, - [4179] = 4179, - [4180] = 2206, - [4181] = 3956, - [4182] = 4182, - [4183] = 4183, - [4184] = 4000, - [4185] = 3968, - [4186] = 3969, - [4187] = 3973, - [4188] = 4188, - [4189] = 4189, - [4190] = 4190, - [4191] = 4001, - [4192] = 4003, - [4193] = 3986, - [4194] = 2207, - [4195] = 2216, - [4196] = 4196, - [4197] = 4197, - [4198] = 3976, - [4199] = 4199, - [4200] = 3978, - [4201] = 3992, - [4202] = 4202, - [4203] = 3980, - [4204] = 4204, - [4205] = 4205, - [4206] = 4206, - [4207] = 4207, - [4208] = 4208, - [4209] = 4209, - [4210] = 4210, - [4211] = 4211, - [4212] = 4212, - [4213] = 4210, - [4214] = 4214, - [4215] = 4215, - [4216] = 4216, - [4217] = 4217, - [4218] = 4218, - [4219] = 4219, - [4220] = 4219, - [4221] = 4221, - [4222] = 4222, - [4223] = 4223, - [4224] = 4224, - [4225] = 4217, - [4226] = 4226, - [4227] = 4227, - [4228] = 4228, - [4229] = 4229, - [4230] = 4230, - [4231] = 4231, - [4232] = 4232, - [4233] = 4233, - [4234] = 4234, - [4235] = 4235, - [4236] = 4236, - [4237] = 4237, - [4238] = 4238, - [4239] = 4239, - [4240] = 4240, - [4241] = 4241, - [4242] = 4242, - [4243] = 4243, - [4244] = 4244, + [4088] = 3914, + [4089] = 2328, + [4090] = 3907, + [4091] = 2331, + [4092] = 3925, + [4093] = 2392, + [4094] = 2332, + [4095] = 3919, + [4096] = 3909, + [4097] = 2393, + [4098] = 2274, + [4099] = 3921, + [4100] = 3922, + [4101] = 3907, + [4102] = 3925, + [4103] = 2275, + [4104] = 3940, + [4105] = 3940, + [4106] = 3941, + [4107] = 2276, + [4108] = 2427, + [4109] = 2277, + [4110] = 2428, + [4111] = 2429, + [4112] = 2278, + [4113] = 2279, + [4114] = 2280, + [4115] = 2281, + [4116] = 2282, + [4117] = 2283, + [4118] = 3922, + [4119] = 2284, + [4120] = 3907, + [4121] = 3941, + [4122] = 2394, + [4123] = 3914, + [4124] = 2635, + [4125] = 2660, + [4126] = 2395, + [4127] = 3919, + [4128] = 3940, + [4129] = 2333, + [4130] = 3940, + [4131] = 2334, + [4132] = 2286, + [4133] = 3940, + [4134] = 2336, + [4135] = 3919, + [4136] = 3909, + [4137] = 3941, + [4138] = 3941, + [4139] = 3921, + [4140] = 3922, + [4141] = 3907, + [4142] = 3925, + [4143] = 2488, + [4144] = 2399, + [4145] = 3940, + [4146] = 3941, + [4147] = 2400, + [4148] = 2403, + [4149] = 2536, + [4150] = 3925, + [4151] = 2430, + [4152] = 2713, + [4153] = 2431, + [4154] = 2435, + [4155] = 2289, + [4156] = 3919, + [4157] = 2436, + [4158] = 3909, + [4159] = 3909, + [4160] = 2696, + [4161] = 3919, + [4162] = 2480, + [4163] = 3921, + [4164] = 3922, + [4165] = 3907, + [4166] = 3925, + [4167] = 2714, + [4168] = 3921, + [4169] = 3914, + [4170] = 2337, + [4171] = 3940, + [4172] = 2338, + [4173] = 3909, + [4174] = 2459, + [4175] = 2339, + [4176] = 3919, + [4177] = 3909, + [4178] = 3941, + [4179] = 2448, + [4180] = 3921, + [4181] = 3922, + [4182] = 3907, + [4183] = 3925, + [4184] = 2481, + [4185] = 2404, + [4186] = 3940, + [4187] = 3941, + [4188] = 3921, + [4189] = 3922, + [4190] = 3907, + [4191] = 3925, + [4192] = 2460, + [4193] = 2461, + [4194] = 2405, + [4195] = 2462, + [4196] = 2463, + [4197] = 2450, + [4198] = 2452, + [4199] = 2453, + [4200] = 3907, + [4201] = 3925, + [4202] = 2151, + [4203] = 2454, + [4204] = 2482, + [4205] = 3922, + [4206] = 2483, + [4207] = 3914, + [4208] = 2420, + [4209] = 2340, + [4210] = 2548, + [4211] = 2341, + [4212] = 3919, + [4213] = 2342, + [4214] = 3919, + [4215] = 3909, + [4216] = 3909, + [4217] = 3921, + [4218] = 3922, + [4219] = 3907, + [4220] = 3925, + [4221] = 3907, + [4222] = 3941, + [4223] = 3940, + [4224] = 3941, + [4225] = 2158, + [4226] = 3940, + [4227] = 3941, + [4228] = 2137, + [4229] = 2166, + [4230] = 2167, + [4231] = 2169, + [4232] = 3940, + [4233] = 3941, + [4234] = 2170, + [4235] = 3925, + [4236] = 2290, + [4237] = 2593, + [4238] = 3914, + [4239] = 2291, + [4240] = 2549, + [4241] = 3921, + [4242] = 3922, + [4243] = 3919, + [4244] = 3909, [4245] = 4245, - [4246] = 4246, - [4247] = 4247, - [4248] = 4246, - [4249] = 4249, - [4250] = 4250, - [4251] = 4251, - [4252] = 4252, - [4253] = 4253, - [4254] = 4254, - [4255] = 4255, - [4256] = 4256, - [4257] = 4257, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 4258, - [4263] = 4263, - [4264] = 4264, - [4265] = 4265, - [4266] = 4266, - [4267] = 4267, - [4268] = 4268, - [4269] = 4269, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4273, - [4274] = 4274, - [4275] = 4250, - [4276] = 4214, - [4277] = 4229, - [4278] = 4278, - [4279] = 4251, - [4280] = 4222, - [4281] = 4252, - [4282] = 4253, - [4283] = 4254, - [4284] = 4241, - [4285] = 4217, - [4286] = 4286, - [4287] = 4287, - [4288] = 4286, - [4289] = 4289, - [4290] = 4290, - [4291] = 4278, - [4292] = 4292, - [4293] = 4259, - [4294] = 4294, - [4295] = 4260, - [4296] = 4296, - [4297] = 4297, - [4298] = 4298, - [4299] = 4299, - [4300] = 4221, - [4301] = 4301, - [4302] = 4302, - [4303] = 4303, - [4304] = 4258, - [4305] = 4305, - [4306] = 4298, - [4307] = 4222, - [4308] = 4308, - [4309] = 4211, - [4310] = 4210, - [4311] = 4311, - [4312] = 4219, - [4313] = 4313, - [4314] = 4314, - [4315] = 4315, - [4316] = 4219, - [4317] = 4317, - [4318] = 4241, - [4319] = 4263, - [4320] = 4320, - [4321] = 4214, - [4322] = 4217, - [4323] = 4229, - [4324] = 4221, - [4325] = 4325, - [4326] = 4221, - [4327] = 4229, - [4328] = 4230, - [4329] = 4329, - [4330] = 4230, - [4331] = 4232, - [4332] = 4233, - [4333] = 4333, - [4334] = 4235, - [4335] = 4266, - [4336] = 4336, - [4337] = 4263, - [4338] = 4238, - [4339] = 4232, - [4340] = 4233, - [4341] = 4267, - [4342] = 4239, - [4343] = 4240, - [4344] = 4235, - [4345] = 4345, - [4346] = 4272, - [4347] = 4246, - [4348] = 4348, - [4349] = 4273, - [4350] = 4350, - [4351] = 4274, - [4352] = 4352, - [4353] = 4238, - [4354] = 4250, - [4355] = 4294, - [4356] = 4251, - [4357] = 4252, - [4358] = 4253, - [4359] = 4254, - [4360] = 4290, - [4361] = 4361, - [4362] = 4362, - [4363] = 4363, - [4364] = 4364, - [4365] = 4365, - [4366] = 4366, - [4367] = 4259, - [4368] = 4260, - [4369] = 4239, - [4370] = 4240, - [4371] = 4258, - [4372] = 4263, - [4373] = 4373, - [4374] = 4374, - [4375] = 4266, - [4376] = 4230, - [4377] = 4267, - [4378] = 4378, - [4379] = 4272, - [4380] = 4273, - [4381] = 4274, - [4382] = 4382, - [4383] = 4286, - [4384] = 4278, - [4385] = 4214, - [4386] = 4278, - [4387] = 4222, - [4388] = 4388, - [4389] = 4241, - [4390] = 4390, - [4391] = 4251, - [4392] = 4222, - [4393] = 4286, - [4394] = 4394, - [4395] = 4395, - [4396] = 4232, - [4397] = 4246, - [4398] = 4233, - [4399] = 4290, - [4400] = 4400, - [4401] = 4401, - [4402] = 4402, - [4403] = 4403, - [4404] = 4404, - [4405] = 4241, - [4406] = 4406, - [4407] = 4294, - [4408] = 4408, - [4409] = 4409, - [4410] = 4297, - [4411] = 4298, - [4412] = 4217, - [4413] = 4297, - [4414] = 4286, - [4415] = 4415, - [4416] = 4252, - [4417] = 4211, - [4418] = 4210, - [4419] = 4298, - [4420] = 4219, - [4421] = 4250, - [4422] = 4422, - [4423] = 4221, - [4424] = 4266, - [4425] = 4229, - [4426] = 4232, - [4427] = 4233, - [4428] = 4240, - [4429] = 4429, - [4430] = 4430, - [4431] = 4290, - [4432] = 4250, - [4433] = 4251, - [4434] = 4253, - [4435] = 4254, - [4436] = 4272, - [4437] = 4252, - [4438] = 4253, - [4439] = 4267, - [4440] = 4254, - [4441] = 4441, - [4442] = 4221, - [4443] = 4278, - [4444] = 4297, - [4445] = 4445, - [4446] = 4446, - [4447] = 4447, - [4448] = 4210, - [4449] = 4449, - [4450] = 4219, - [4451] = 4259, - [4452] = 4452, - [4453] = 4453, - [4454] = 4221, - [4455] = 4260, - [4456] = 4456, - [4457] = 4229, - [4458] = 4458, - [4459] = 2214, - [4460] = 4232, - [4461] = 4233, - [4462] = 4240, - [4463] = 4463, - [4464] = 4250, - [4465] = 4253, - [4466] = 4254, - [4467] = 4467, + [4246] = 3907, + [4247] = 2, + [4248] = 3925, + [4249] = 2343, + [4250] = 2171, + [4251] = 3921, + [4252] = 2344, + [4253] = 3922, + [4254] = 3940, + [4255] = 3907, + [4256] = 3941, + [4257] = 3925, + [4258] = 2172, + [4259] = 2721, + [4260] = 3940, + [4261] = 3941, + [4262] = 2659, + [4263] = 2159, + [4264] = 3941, + [4265] = 3940, + [4266] = 3941, + [4267] = 2178, + [4268] = 3921, + [4269] = 2477, + [4270] = 2455, + [4271] = 2525, + [4272] = 2456, + [4273] = 2513, + [4274] = 3922, + [4275] = 2514, + [4276] = 2545, + [4277] = 3907, + [4278] = 3919, + [4279] = 2181, + [4280] = 2345, + [4281] = 3909, + [4282] = 2346, + [4283] = 3925, + [4284] = 3919, + [4285] = 2347, + [4286] = 3919, + [4287] = 3909, + [4288] = 3909, + [4289] = 3921, + [4290] = 3922, + [4291] = 3907, + [4292] = 3925, + [4293] = 3940, + [4294] = 3941, + [4295] = 2148, + [4296] = 2510, + [4297] = 2489, + [4298] = 3914, + [4299] = 3909, + [4300] = 3914, + [4301] = 3914, + [4302] = 3919, + [4303] = 3909, + [4304] = 3921, + [4305] = 3922, + [4306] = 3907, + [4307] = 3925, + [4308] = 3940, + [4309] = 3941, + [4310] = 2292, + [4311] = 2, + [4312] = 2295, + [4313] = 2703, + [4314] = 2296, + [4315] = 3919, + [4316] = 2348, + [4317] = 2550, + [4318] = 2349, + [4319] = 3909, + [4320] = 2387, + [4321] = 2350, + [4322] = 2457, + [4323] = 2449, + [4324] = 2476, + [4325] = 2183, + [4326] = 2184, + [4327] = 2185, + [4328] = 2186, + [4329] = 3940, + [4330] = 3941, + [4331] = 2496, + [4332] = 2458, + [4333] = 2484, + [4334] = 4334, + [4335] = 3921, + [4336] = 2187, + [4337] = 2188, + [4338] = 2189, + [4339] = 3921, + [4340] = 2490, + [4341] = 2194, + [4342] = 2195, + [4343] = 2551, + [4344] = 3940, + [4345] = 2491, + [4346] = 3922, + [4347] = 2198, + [4348] = 2297, + [4349] = 2351, + [4350] = 3922, + [4351] = 2352, + [4352] = 3907, + [4353] = 3925, + [4354] = 2353, + [4355] = 3907, + [4356] = 2645, + [4357] = 2298, + [4358] = 3925, + [4359] = 2594, + [4360] = 2300, + [4361] = 2497, + [4362] = 3919, + [4363] = 2531, + [4364] = 3941, + [4365] = 2199, + [4366] = 2544, + [4367] = 4367, + [4368] = 2388, + [4369] = 2421, + [4370] = 2422, + [4371] = 2423, + [4372] = 2424, + [4373] = 2529, + [4374] = 2552, + [4375] = 2670, + [4376] = 2201, + [4377] = 3921, + [4378] = 2354, + [4379] = 3921, + [4380] = 2355, + [4381] = 3921, + [4382] = 2356, + [4383] = 3922, + [4384] = 3907, + [4385] = 2160, + [4386] = 2646, + [4387] = 3922, + [4388] = 2202, + [4389] = 2203, + [4390] = 2147, + [4391] = 4391, + [4392] = 3940, + [4393] = 3941, + [4394] = 3914, + [4395] = 2301, + [4396] = 3914, + [4397] = 2302, + [4398] = 3919, + [4399] = 3921, + [4400] = 3922, + [4401] = 3907, + [4402] = 3940, + [4403] = 3941, + [4404] = 3909, + [4405] = 2204, + [4406] = 2205, + [4407] = 2206, + [4408] = 2207, + [4409] = 2357, + [4410] = 3907, + [4411] = 2358, + [4412] = 2208, + [4413] = 3925, + [4414] = 2359, + [4415] = 3940, + [4416] = 3921, + [4417] = 2213, + [4418] = 3940, + [4419] = 2697, + [4420] = 2686, + [4421] = 154, + [4422] = 2712, + [4423] = 2734, + [4424] = 3914, + [4425] = 2735, + [4426] = 2303, + [4427] = 3909, + [4428] = 3925, + [4429] = 2304, + [4430] = 2530, + [4431] = 2736, + [4432] = 2305, + [4433] = 4433, + [4434] = 2389, + [4435] = 2214, + [4436] = 2306, + [4437] = 3919, + [4438] = 3909, + [4439] = 3941, + [4440] = 2363, + [4441] = 3922, + [4442] = 2364, + [4443] = 3941, + [4444] = 3925, + [4445] = 2504, + [4446] = 2485, + [4447] = 3921, + [4448] = 3922, + [4449] = 3907, + [4450] = 3925, + [4451] = 2657, + [4452] = 3940, + [4453] = 3941, + [4454] = 3922, + [4455] = 2606, + [4456] = 2743, + [4457] = 3914, + [4458] = 2744, + [4459] = 2745, + [4460] = 2492, + [4461] = 2217, + [4462] = 2746, + [4463] = 2753, + [4464] = 2386, + [4465] = 2609, + [4466] = 4466, + [4467] = 2610, [4468] = 4468, - [4469] = 4272, - [4470] = 4258, - [4471] = 2208, - [4472] = 4472, - [4473] = 2206, - [4474] = 2207, - [4475] = 2216, - [4476] = 4210, - [4477] = 2210, - [4478] = 4263, - [4479] = 4232, - [4480] = 4253, - [4481] = 4481, - [4482] = 4482, - [4483] = 4467, - [4484] = 4484, - [4485] = 4235, - [4486] = 4274, - [4487] = 4487, - [4488] = 4488, - [4489] = 4489, - [4490] = 4490, - [4491] = 4491, - [4492] = 2214, - [4493] = 4493, - [4494] = 4303, - [4495] = 4308, + [4469] = 2367, + [4470] = 3907, + [4471] = 2368, + [4472] = 3925, + [4473] = 3919, + [4474] = 2369, + [4475] = 2613, + [4476] = 2464, + [4477] = 2219, + [4478] = 2465, + [4479] = 3909, + [4480] = 3914, + [4481] = 2547, + [4482] = 2220, + [4483] = 3919, + [4484] = 3914, + [4485] = 3919, + [4486] = 3909, + [4487] = 3921, + [4488] = 2840, + [4489] = 2466, + [4490] = 2667, + [4491] = 3922, + [4492] = 3907, + [4493] = 3925, + [4494] = 3940, + [4495] = 3914, [4496] = 4496, - [4497] = 4497, - [4498] = 4498, - [4499] = 2208, - [4500] = 2206, - [4501] = 4449, - [4502] = 4488, - [4503] = 2207, - [4504] = 4504, - [4505] = 2216, - [4506] = 4266, - [4507] = 4507, - [4508] = 4508, - [4509] = 4509, - [4510] = 2210, - [4511] = 4511, - [4512] = 4512, - [4513] = 4513, - [4514] = 4211, - [4515] = 4515, - [4516] = 4267, - [4517] = 4238, - [4518] = 4301, - [4519] = 4519, - [4520] = 4520, - [4521] = 4521, - [4522] = 4522, - [4523] = 4523, - [4524] = 4524, - [4525] = 4272, - [4526] = 4239, - [4527] = 4273, - [4528] = 4290, - [4529] = 4246, - [4530] = 4274, - [4531] = 4531, - [4532] = 4532, - [4533] = 4240, - [4534] = 4534, - [4535] = 4535, - [4536] = 4536, - [4537] = 4537, - [4538] = 4538, - [4539] = 4294, - [4540] = 4540, - [4541] = 4253, - [4542] = 4297, - [4543] = 4298, - [4544] = 4544, - [4545] = 4545, - [4546] = 4546, - [4547] = 4259, - [4548] = 4278, - [4549] = 4301, - [4550] = 4550, - [4551] = 4254, - [4552] = 4552, - [4553] = 4553, - [4554] = 4554, - [4555] = 4487, - [4556] = 4272, - [4557] = 4211, - [4558] = 4222, - [4559] = 4210, - [4560] = 4560, - [4561] = 4219, - [4562] = 4562, - [4563] = 4229, - [4564] = 4564, - [4565] = 4565, - [4566] = 4241, - [4567] = 4567, - [4568] = 4294, - [4569] = 4569, - [4570] = 4467, - [4571] = 4571, - [4572] = 4572, - [4573] = 4286, - [4574] = 4574, - [4575] = 4575, - [4576] = 4576, - [4577] = 4577, - [4578] = 4487, - [4579] = 4488, - [4580] = 4580, - [4581] = 4303, - [4582] = 4308, - [4583] = 4250, - [4584] = 4584, - [4585] = 4585, - [4586] = 4230, - [4587] = 4587, - [4588] = 4290, - [4589] = 4589, - [4590] = 4214, - [4591] = 4232, - [4592] = 4592, - [4593] = 4217, - [4594] = 4507, - [4595] = 4260, - [4596] = 4596, - [4597] = 4297, - [4598] = 4221, - [4599] = 4233, - [4600] = 4600, - [4601] = 4601, - [4602] = 4602, - [4603] = 4603, - [4604] = 4467, - [4605] = 4298, - [4606] = 4606, - [4607] = 4487, - [4608] = 4488, - [4609] = 4294, - [4610] = 4303, - [4611] = 4308, - [4612] = 4612, - [4613] = 4613, - [4614] = 4614, - [4615] = 4467, - [4616] = 4616, - [4617] = 4617, - [4618] = 4487, - [4619] = 4488, - [4620] = 4620, - [4621] = 4303, - [4622] = 4308, - [4623] = 4623, - [4624] = 4624, - [4625] = 4625, - [4626] = 4467, - [4627] = 4235, - [4628] = 4628, - [4629] = 4487, - [4630] = 4488, - [4631] = 4229, - [4632] = 4303, - [4633] = 4308, - [4634] = 4467, - [4635] = 4487, - [4636] = 4488, - [4637] = 4303, - [4638] = 4308, - [4639] = 4467, - [4640] = 4487, - [4641] = 4488, - [4642] = 4303, - [4643] = 4308, - [4644] = 4467, - [4645] = 4487, - [4646] = 4488, - [4647] = 4303, - [4648] = 4308, - [4649] = 4230, - [4650] = 4214, - [4651] = 4232, - [4652] = 4233, - [4653] = 4294, - [4654] = 4654, - [4655] = 4235, - [4656] = 4656, - [4657] = 4238, - [4658] = 4238, - [4659] = 4659, - [4660] = 4297, - [4661] = 4661, - [4662] = 4239, - [4663] = 4240, - [4664] = 4298, - [4665] = 4301, - [4666] = 4666, - [4667] = 4301, - [4668] = 4301, - [4669] = 4669, - [4670] = 4670, - [4671] = 4671, - [4672] = 4672, - [4673] = 4673, - [4674] = 4674, - [4675] = 4675, - [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4246, - [4680] = 4680, - [4681] = 4273, - [4682] = 4250, - [4683] = 4251, - [4684] = 4252, - [4685] = 4253, - [4686] = 4254, - [4687] = 4687, - [4688] = 4688, - [4689] = 4211, - [4690] = 4690, - [4691] = 4259, - [4692] = 4260, - [4693] = 4210, - [4694] = 4239, - [4695] = 4258, - [4696] = 4219, - [4697] = 4697, - [4698] = 4211, - [4699] = 4263, - [4700] = 4240, - [4701] = 4210, - [4702] = 4702, - [4703] = 4703, - [4704] = 4704, - [4705] = 4266, - [4706] = 4267, - [4707] = 4274, - [4708] = 4272, - [4709] = 4273, - [4710] = 4710, - [4711] = 4711, - [4712] = 4712, - [4713] = 4713, - [4714] = 4714, - [4715] = 4715, - [4716] = 4715, - [4717] = 4717, - [4718] = 4718, - [4719] = 4719, - [4720] = 4720, - [4721] = 4719, - [4722] = 4720, - [4723] = 4723, - [4724] = 4724, - [4725] = 4725, - [4726] = 4723, - [4727] = 4727, - [4728] = 4728, - [4729] = 4729, - [4730] = 4715, - [4731] = 4731, - [4732] = 4732, - [4733] = 4733, - [4734] = 4734, - [4735] = 4724, - [4736] = 4736, - [4737] = 4719, - [4738] = 4738, - [4739] = 4739, - [4740] = 4740, - [4741] = 4741, - [4742] = 4720, - [4743] = 4723, - [4744] = 4744, - [4745] = 4724, - [4746] = 4746, - [4747] = 4747, - [4748] = 4748, - [4749] = 4749, - [4750] = 4712, - [4751] = 4713, - [4752] = 4752, - [4753] = 4729, - [4754] = 4719, - [4755] = 4720, - [4756] = 4723, - [4757] = 4724, - [4758] = 4731, - [4759] = 4732, - [4760] = 4733, - [4761] = 4734, - [4762] = 4736, - [4763] = 4738, - [4764] = 4739, - [4765] = 4734, - [4766] = 4766, - [4767] = 4767, - [4768] = 4768, - [4769] = 4769, - [4770] = 4715, - [4771] = 4725, - [4772] = 4772, - [4773] = 4749, - [4774] = 4738, - [4775] = 4739, - [4776] = 4712, - [4777] = 4777, - [4778] = 4778, - [4779] = 4779, - [4780] = 4713, - [4781] = 4781, - [4782] = 4782, - [4783] = 4783, - [4784] = 4729, - [4785] = 4725, - [4786] = 4786, - [4787] = 4779, - [4788] = 4788, - [4789] = 4738, - [4790] = 4767, - [4791] = 4739, - [4792] = 4736, - [4793] = 4747, - [4794] = 4731, - [4795] = 4715, - [4796] = 4796, - [4797] = 4732, - [4798] = 4798, - [4799] = 4799, - [4800] = 4800, - [4801] = 4733, - [4802] = 4731, - [4803] = 4732, - [4804] = 4717, - [4805] = 4733, - [4806] = 4734, - [4807] = 4782, - [4808] = 4752, - [4809] = 4809, - [4810] = 4810, - [4811] = 4734, - [4812] = 4788, - [4813] = 4768, - [4814] = 4738, - [4815] = 4739, - [4816] = 4816, - [4817] = 4817, - [4818] = 4782, - [4819] = 4747, - [4820] = 4719, - [4821] = 4821, - [4822] = 4821, - [4823] = 4823, - [4824] = 4746, - [4825] = 4720, - [4826] = 4723, + [4497] = 2555, + [4498] = 3941, + [4499] = 2370, + [4500] = 2668, + [4501] = 2372, + [4502] = 2841, + [4503] = 2467, + [4504] = 2373, + [4505] = 2406, + [4506] = 2408, + [4507] = 2409, + [4508] = 2842, + [4509] = 2471, + [4510] = 2843, + [4511] = 2307, + [4512] = 2844, + [4513] = 2308, + [4514] = 2802, + [4515] = 2669, + [4516] = 2845, + [4517] = 2604, + [4518] = 2309, + [4519] = 3914, + [4520] = 2221, + [4521] = 3919, + [4522] = 3909, + [4523] = 3921, + [4524] = 3922, + [4525] = 2222, + [4526] = 3919, + [4527] = 3907, + [4528] = 3909, + [4529] = 2472, + [4530] = 2475, + [4531] = 2374, + [4532] = 3909, + [4533] = 4533, + [4534] = 2375, + [4535] = 2505, + [4536] = 3921, + [4537] = 2616, + [4538] = 3922, + [4539] = 2617, + [4540] = 3907, + [4541] = 3925, + [4542] = 2633, + [4543] = 2223, + [4544] = 2224, + [4545] = 2618, + [4546] = 3921, + [4547] = 3922, + [4548] = 3907, + [4549] = 3940, + [4550] = 3925, + [4551] = 3925, + [4552] = 2575, + [4553] = 3941, + [4554] = 2410, + [4555] = 4555, + [4556] = 2554, + [4557] = 2846, + [4558] = 2847, + [4559] = 2848, + [4560] = 2849, + [4561] = 2376, + [4562] = 2658, + [4563] = 2411, + [4564] = 2377, + [4565] = 2412, + [4566] = 2413, + [4567] = 2634, + [4568] = 3909, + [4569] = 3925, + [4570] = 2120, + [4571] = 2121, + [4572] = 3914, + [4573] = 154, + [4574] = 2122, + [4575] = 2592, + [4576] = 3940, + [4577] = 3940, + [4578] = 2134, + [4579] = 3941, + [4580] = 2225, + [4581] = 2576, + [4582] = 3919, + [4583] = 3919, + [4584] = 3909, + [4585] = 2619, + [4586] = 2439, + [4587] = 2440, + [4588] = 2441, + [4589] = 2442, + [4590] = 2506, + [4591] = 3919, + [4592] = 3909, + [4593] = 3921, + [4594] = 3922, + [4595] = 3925, + [4596] = 3940, + [4597] = 3941, + [4598] = 3914, + [4599] = 3919, + [4600] = 3909, + [4601] = 3921, + [4602] = 3922, + [4603] = 3907, + [4604] = 3925, + [4605] = 3940, + [4606] = 3941, + [4607] = 3919, + [4608] = 3909, + [4609] = 3921, + [4610] = 3922, + [4611] = 3907, + [4612] = 3925, + [4613] = 3940, + [4614] = 3941, + [4615] = 2378, + [4616] = 3914, + [4617] = 2379, + [4618] = 3919, + [4619] = 3909, + [4620] = 3921, + [4621] = 3922, + [4622] = 3907, + [4623] = 3925, + [4624] = 3940, + [4625] = 3941, + [4626] = 3919, + [4627] = 3909, + [4628] = 3921, + [4629] = 3922, + [4630] = 3907, + [4631] = 3925, + [4632] = 3940, + [4633] = 3941, + [4634] = 3914, + [4635] = 3919, + [4636] = 3921, + [4637] = 3922, + [4638] = 3907, + [4639] = 3940, + [4640] = 3941, + [4641] = 3914, + [4642] = 3919, + [4643] = 3909, + [4644] = 3921, + [4645] = 3922, + [4646] = 3907, + [4647] = 3925, + [4648] = 3940, + [4649] = 3941, + [4650] = 3919, + [4651] = 3909, + [4652] = 3921, + [4653] = 3922, + [4654] = 3907, + [4655] = 3925, + [4656] = 3940, + [4657] = 3941, + [4658] = 3919, + [4659] = 3909, + [4660] = 3921, + [4661] = 3922, + [4662] = 3907, + [4663] = 3925, + [4664] = 3940, + [4665] = 3941, + [4666] = 2493, + [4667] = 3921, + [4668] = 3914, + [4669] = 3919, + [4670] = 3921, + [4671] = 3922, + [4672] = 3907, + [4673] = 3940, + [4674] = 3941, + [4675] = 2380, + [4676] = 2381, + [4677] = 3919, + [4678] = 3909, + [4679] = 2382, + [4680] = 3921, + [4681] = 3922, + [4682] = 3907, + [4683] = 3925, + [4684] = 3940, + [4685] = 3941, + [4686] = 3922, + [4687] = 3907, + [4688] = 3919, + [4689] = 3909, + [4690] = 3921, + [4691] = 3922, + [4692] = 2444, + [4693] = 2445, + [4694] = 2446, + [4695] = 3907, + [4696] = 3925, + [4697] = 3940, + [4698] = 3941, + [4699] = 2603, + [4700] = 2414, + [4701] = 3925, + [4702] = 2415, + [4703] = 2416, + [4704] = 2226, + [4705] = 2535, + [4706] = 3914, + [4707] = 3919, + [4708] = 3909, + [4709] = 3921, + [4710] = 3922, + [4711] = 3907, + [4712] = 3925, + [4713] = 3940, + [4714] = 3941, + [4715] = 2383, + [4716] = 2486, + [4717] = 2417, + [4718] = 2126, + [4719] = 3919, + [4720] = 2127, + [4721] = 3914, + [4722] = 2128, + [4723] = 2133, + [4724] = 3919, + [4725] = 3909, + [4726] = 2418, + [4727] = 2310, + [4728] = 2143, + [4729] = 3909, + [4730] = 2447, + [4731] = 2144, + [4732] = 3921, + [4733] = 3922, + [4734] = 3907, + [4735] = 3925, + [4736] = 3919, + [4737] = 2311, + [4738] = 3940, + [4739] = 2135, + [4740] = 2384, + [4741] = 3914, + [4742] = 3940, + [4743] = 2385, + [4744] = 3941, + [4745] = 3941, + [4746] = 2146, + [4747] = 3909, + [4748] = 3925, + [4749] = 3914, + [4750] = 3914, + [4751] = 3914, + [4752] = 2312, + [4753] = 3914, + [4754] = 3914, + [4755] = 3914, + [4756] = 3914, + [4757] = 3914, + [4758] = 2425, + [4759] = 4759, + [4760] = 4759, + [4761] = 4759, + [4762] = 4759, + [4763] = 154, + [4764] = 4759, + [4765] = 4759, + [4766] = 4759, + [4767] = 4759, + [4768] = 4759, + [4769] = 4759, + [4770] = 4759, + [4771] = 4759, + [4772] = 150, + [4773] = 4759, + [4774] = 4759, + [4775] = 148, + [4776] = 4759, + [4777] = 4759, + [4778] = 4759, + [4779] = 4759, + [4780] = 4759, + [4781] = 4759, + [4782] = 146, + [4783] = 4759, + [4784] = 149, + [4785] = 4785, + [4786] = 4759, + [4787] = 4759, + [4788] = 154, + [4789] = 4759, + [4790] = 4759, + [4791] = 4759, + [4792] = 4759, + [4793] = 4759, + [4794] = 4759, + [4795] = 4759, + [4796] = 4759, + [4797] = 4759, + [4798] = 4759, + [4799] = 154, + [4800] = 4759, + [4801] = 154, + [4802] = 4759, + [4803] = 154, + [4804] = 4759, + [4805] = 4759, + [4806] = 4759, + [4807] = 152, + [4808] = 153, + [4809] = 4759, + [4810] = 4759, + [4811] = 4759, + [4812] = 4759, + [4813] = 4759, + [4814] = 4759, + [4815] = 4759, + [4816] = 4759, + [4817] = 4759, + [4818] = 4818, + [4819] = 4759, + [4820] = 4759, + [4821] = 4759, + [4822] = 4759, + [4823] = 4759, + [4824] = 2, + [4825] = 4825, + [4826] = 154, [4827] = 4827, - [4828] = 4725, - [4829] = 4829, - [4830] = 4729, - [4831] = 4713, - [4832] = 3941, - [4833] = 4736, - [4834] = 4752, - [4835] = 4829, - [4836] = 4809, - [4837] = 4837, - [4838] = 4810, - [4839] = 4712, - [4840] = 4719, - [4841] = 4738, - [4842] = 4715, - [4843] = 4739, - [4844] = 4796, - [4845] = 4713, - [4846] = 4821, - [4847] = 4724, - [4848] = 4779, - [4849] = 4767, - [4850] = 4796, - [4851] = 4798, - [4852] = 4799, - [4853] = 4717, - [4854] = 4798, - [4855] = 4752, - [4856] = 4782, - [4857] = 4857, - [4858] = 4719, - [4859] = 4799, - [4860] = 4860, - [4861] = 4861, - [4862] = 4788, - [4863] = 4752, - [4864] = 4731, - [4865] = 4809, - [4866] = 4768, - [4867] = 4817, - [4868] = 4810, - [4869] = 4720, - [4870] = 4720, - [4871] = 4712, - [4872] = 4713, - [4873] = 4809, - [4874] = 4779, - [4875] = 4752, - [4876] = 4723, - [4877] = 4724, - [4878] = 4809, - [4879] = 4810, - [4880] = 4747, - [4881] = 4723, - [4882] = 4821, - [4883] = 4810, - [4884] = 4732, - [4885] = 4733, - [4886] = 4734, - [4887] = 4712, - [4888] = 4713, - [4889] = 4749, - [4890] = 4749, - [4891] = 4749, - [4892] = 4892, - [4893] = 4821, - [4894] = 4894, - [4895] = 4779, - [4896] = 4767, - [4897] = 4796, - [4898] = 4798, - [4899] = 4799, - [4900] = 4717, - [4901] = 4733, - [4902] = 4738, - [4903] = 4903, - [4904] = 4829, - [4905] = 4788, - [4906] = 4729, - [4907] = 4739, - [4908] = 4908, - [4909] = 4817, - [4910] = 4829, - [4911] = 4911, - [4912] = 4809, - [4913] = 4829, - [4914] = 4914, - [4915] = 4715, - [4916] = 4916, - [4917] = 4767, - [4918] = 4918, - [4919] = 4719, - [4920] = 4720, - [4921] = 4921, - [4922] = 4723, - [4923] = 4724, - [4924] = 4768, - [4925] = 4817, - [4926] = 4736, - [4927] = 4717, - [4928] = 4712, - [4929] = 4713, - [4930] = 4731, - [4931] = 4732, - [4932] = 4717, - [4933] = 4733, - [4934] = 4749, - [4935] = 4779, - [4936] = 4767, - [4937] = 4796, - [4938] = 4798, - [4939] = 4799, - [4940] = 4717, - [4941] = 4715, - [4942] = 4798, - [4943] = 4724, - [4944] = 4734, - [4945] = 4712, - [4946] = 4719, - [4947] = 4720, - [4948] = 4723, - [4949] = 4724, - [4950] = 4950, - [4951] = 4768, - [4952] = 4817, - [4953] = 4779, - [4954] = 4746, - [4955] = 4799, - [4956] = 4731, - [4957] = 4732, - [4958] = 4731, - [4959] = 4733, - [4960] = 4960, - [4961] = 4768, - [4962] = 4782, - [4963] = 4734, - [4964] = 4788, - [4965] = 4965, - [4966] = 4796, - [4967] = 4829, - [4968] = 4821, - [4969] = 4969, - [4970] = 4712, - [4971] = 4829, - [4972] = 4738, - [4973] = 4973, - [4974] = 4739, - [4975] = 4975, - [4976] = 4713, - [4977] = 4977, - [4978] = 4731, - [4979] = 4732, - [4980] = 4733, - [4981] = 4734, - [4982] = 4746, - [4983] = 4746, - [4984] = 4984, - [4985] = 4985, - [4986] = 4768, - [4987] = 4987, - [4988] = 4747, - [4989] = 4799, - [4990] = 4810, - [4991] = 4767, - [4992] = 4829, - [4993] = 4817, - [4994] = 4817, - [4995] = 4796, - [4996] = 4746, - [4997] = 4997, - [4998] = 4798, - [4999] = 4999, - [5000] = 4747, - [5001] = 4725, - [5002] = 4779, - [5003] = 4767, - [5004] = 4796, - [5005] = 4798, - [5006] = 4799, - [5007] = 4717, - [5008] = 4779, - [5009] = 4767, - [5010] = 4796, - [5011] = 4798, - [5012] = 4799, - [5013] = 4717, - [5014] = 4729, - [5015] = 5015, - [5016] = 4736, - [5017] = 4725, - [5018] = 4732, - [5019] = 5019, - [5020] = 5020, - [5021] = 4768, - [5022] = 4738, - [5023] = 4739, - [5024] = 4817, - [5025] = 4788, - [5026] = 4782, + [4828] = 4827, + [4829] = 4825, + [4830] = 4825, + [4831] = 4831, + [4832] = 4827, + [4833] = 4825, + [4834] = 4831, + [4835] = 4835, + [4836] = 4835, + [4837] = 154, + [4838] = 4827, + [4839] = 4825, + [4840] = 4831, + [4841] = 4835, + [4842] = 4827, + [4843] = 4825, + [4844] = 4831, + [4845] = 4835, + [4846] = 4831, + [4847] = 4831, + [4848] = 4831, + [4849] = 4827, + [4850] = 4825, + [4851] = 4831, + [4852] = 4831, + [4853] = 4835, + [4854] = 4835, + [4855] = 4827, + [4856] = 4825, + [4857] = 4831, + [4858] = 4835, + [4859] = 4827, + [4860] = 4825, + [4861] = 4831, + [4862] = 4835, + [4863] = 4831, + [4864] = 4827, + [4865] = 4825, + [4866] = 4831, + [4867] = 4835, + [4868] = 4831, + [4869] = 4827, + [4870] = 4825, + [4871] = 4835, + [4872] = 4831, + [4873] = 4831, + [4874] = 154, + [4875] = 4827, + [4876] = 4825, + [4877] = 4835, + [4878] = 148, + [4879] = 4831, + [4880] = 150, + [4881] = 146, + [4882] = 4827, + [4883] = 4825, + [4884] = 4827, + [4885] = 4825, + [4886] = 4831, + [4887] = 4831, + [4888] = 4835, + [4889] = 152, + [4890] = 153, + [4891] = 4827, + [4892] = 4825, + [4893] = 4835, + [4894] = 4831, + [4895] = 4835, + [4896] = 4831, + [4897] = 4831, + [4898] = 149, + [4899] = 4831, + [4900] = 4831, + [4901] = 4831, + [4902] = 4827, + [4903] = 4825, + [4904] = 4835, + [4905] = 4831, + [4906] = 4827, + [4907] = 4825, + [4908] = 4831, + [4909] = 4835, + [4910] = 4831, + [4911] = 4827, + [4912] = 4825, + [4913] = 4835, + [4914] = 4831, + [4915] = 4827, + [4916] = 4825, + [4917] = 4831, + [4918] = 4835, + [4919] = 4827, + [4920] = 4825, + [4921] = 4831, + [4922] = 4827, + [4923] = 4825, + [4924] = 4835, + [4925] = 4827, + [4926] = 4825, + [4927] = 4835, + [4928] = 154, + [4929] = 4827, + [4930] = 4825, + [4931] = 4835, + [4932] = 4831, + [4933] = 4827, + [4934] = 4825, + [4935] = 4835, + [4936] = 4827, + [4937] = 4825, + [4938] = 4831, + [4939] = 4835, + [4940] = 4827, + [4941] = 4831, + [4942] = 4835, + [4943] = 4827, + [4944] = 4825, + [4945] = 4831, + [4946] = 4835, + [4947] = 4827, + [4948] = 4825, + [4949] = 4831, + [4950] = 4835, + [4951] = 4831, + [4952] = 4827, + [4953] = 4825, + [4954] = 4831, + [4955] = 4835, + [4956] = 4831, + [4957] = 4831, + [4958] = 4827, + [4959] = 4825, + [4960] = 4831, + [4961] = 4835, + [4962] = 4831, + [4963] = 4827, + [4964] = 4825, + [4965] = 4831, + [4966] = 4835, + [4967] = 4831, + [4968] = 4827, + [4969] = 4825, + [4970] = 4835, + [4971] = 4831, + [4972] = 4831, + [4973] = 4827, + [4974] = 4825, + [4975] = 4831, + [4976] = 4835, + [4977] = 154, + [4978] = 4827, + [4979] = 4825, + [4980] = 4835, + [4981] = 4831, + [4982] = 4831, + [4983] = 4831, + [4984] = 4827, + [4985] = 4825, + [4986] = 4835, + [4987] = 4831, + [4988] = 4827, + [4989] = 4825, + [4990] = 4835, + [4991] = 4831, + [4992] = 4827, + [4993] = 4825, + [4994] = 4835, + [4995] = 4827, + [4996] = 4825, + [4997] = 4835, + [4998] = 4827, + [4999] = 4825, + [5000] = 4835, + [5001] = 4827, + [5002] = 4825, + [5003] = 4835, + [5004] = 4827, + [5005] = 4825, + [5006] = 4835, + [5007] = 4827, + [5008] = 4825, + [5009] = 4835, + [5010] = 4827, + [5011] = 4825, + [5012] = 4835, + [5013] = 4827, + [5014] = 4825, + [5015] = 4835, + [5016] = 4835, + [5017] = 154, + [5018] = 157, + [5019] = 2129, + [5020] = 2132, + [5021] = 2136, + [5022] = 2140, + [5023] = 2142, + [5024] = 2145, + [5025] = 5025, + [5026] = 157, [5027] = 5027, - [5028] = 5028, - [5029] = 5029, - [5030] = 5030, - [5031] = 5031, - [5032] = 5032, - [5033] = 5033, - [5034] = 5034, - [5035] = 5031, - [5036] = 5036, - [5037] = 5037, - [5038] = 5028, - [5039] = 5039, - [5040] = 5028, - [5041] = 5028, - [5042] = 5042, - [5043] = 5043, - [5044] = 5028, - [5045] = 5043, - [5046] = 5030, - [5047] = 5029, - [5048] = 5029, - [5049] = 5029, - [5050] = 5050, - [5051] = 5051, - [5052] = 5052, - [5053] = 5042, - [5054] = 5029, - [5055] = 5055, - [5056] = 5031, - [5057] = 5057, - [5058] = 5030, - [5059] = 5059, - [5060] = 5060, - [5061] = 5061, - [5062] = 5062, - [5063] = 5031, - [5064] = 5028, - [5065] = 5042, - [5066] = 5028, - [5067] = 5042, - [5068] = 5030, - [5069] = 5030, - [5070] = 5070, - [5071] = 5071, - [5072] = 5072, - [5073] = 5030, - [5074] = 5057, - [5075] = 5057, - [5076] = 5076, - [5077] = 5077, - [5078] = 5042, - [5079] = 5070, - [5080] = 5042, - [5081] = 5081, - [5082] = 5082, - [5083] = 5083, - [5084] = 5084, - [5085] = 5030, - [5086] = 5086, - [5087] = 5042, - [5088] = 5088, - [5089] = 5089, - [5090] = 5057, - [5091] = 5030, - [5092] = 5030, - [5093] = 5028, - [5094] = 5070, - [5095] = 5095, - [5096] = 5096, - [5097] = 5097, - [5098] = 5057, - [5099] = 5042, - [5100] = 5076, - [5101] = 5070, - [5102] = 5029, - [5103] = 5076, - [5104] = 5070, - [5105] = 5105, - [5106] = 5057, - [5107] = 5076, - [5108] = 5070, - [5109] = 5031, - [5110] = 5110, - [5111] = 5076, - [5112] = 5112, - [5113] = 5113, - [5114] = 5114, - [5115] = 5031, - [5116] = 5076, - [5117] = 5117, - [5118] = 5028, - [5119] = 5042, - [5120] = 5120, - [5121] = 5121, - [5122] = 5120, - [5123] = 5123, - [5124] = 5124, - [5125] = 5125, - [5126] = 5126, - [5127] = 5127, - [5128] = 5128, - [5129] = 5129, - [5130] = 5130, - [5131] = 5131, - [5132] = 5132, - [5133] = 5133, - [5134] = 5134, + [5028] = 497, + [5029] = 2648, + [5030] = 154, + [5031] = 2649, + [5032] = 2534, + [5033] = 2524, + [5034] = 2534, + [5035] = 2534, + [5036] = 154, + [5037] = 2141, + [5038] = 2648, + [5039] = 2132, + [5040] = 2136, + [5041] = 2649, + [5042] = 2524, + [5043] = 2140, + [5044] = 2142, + [5045] = 2145, + [5046] = 157, + [5047] = 154, + [5048] = 154, + [5049] = 2129, + [5050] = 154, + [5051] = 157, + [5052] = 2141, + [5053] = 2132, + [5054] = 157, + [5055] = 501, + [5056] = 2537, + [5057] = 502, + [5058] = 504, + [5059] = 505, + [5060] = 506, + [5061] = 2129, + [5062] = 507, + [5063] = 508, + [5064] = 2136, + [5065] = 509, + [5066] = 2140, + [5067] = 2142, + [5068] = 514, + [5069] = 515, + [5070] = 517, + [5071] = 518, + [5072] = 519, + [5073] = 520, + [5074] = 521, + [5075] = 522, + [5076] = 2145, + [5077] = 157, + [5078] = 529, + [5079] = 157, + [5080] = 523, + [5081] = 154, + [5082] = 154, + [5083] = 154, + [5084] = 157, + [5085] = 2524, + [5086] = 154, + [5087] = 154, + [5088] = 157, + [5089] = 154, + [5090] = 2649, + [5091] = 154, + [5092] = 154, + [5093] = 154, + [5094] = 2648, + [5095] = 157, + [5096] = 157, + [5097] = 154, + [5098] = 157, + [5099] = 154, + [5100] = 154, + [5101] = 154, + [5102] = 157, + [5103] = 157, + [5104] = 154, + [5105] = 157, + [5106] = 157, + [5107] = 157, + [5108] = 157, + [5109] = 154, + [5110] = 154, + [5111] = 154, + [5112] = 154, + [5113] = 154, + [5114] = 154, + [5115] = 157, + [5116] = 157, + [5117] = 154, + [5118] = 150, + [5119] = 157, + [5120] = 146, + [5121] = 157, + [5122] = 157, + [5123] = 148, + [5124] = 149, + [5125] = 157, + [5126] = 152, + [5127] = 157, + [5128] = 153, + [5129] = 157, + [5130] = 157, + [5131] = 157, + [5132] = 157, + [5133] = 154, + [5134] = 157, [5135] = 5135, - [5136] = 5133, + [5136] = 5136, [5137] = 5137, [5138] = 5138, [5139] = 5139, - [5140] = 5140, + [5140] = 5136, [5141] = 5141, [5142] = 5142, [5143] = 5143, - [5144] = 5130, - [5145] = 5145, - [5146] = 5141, - [5147] = 5145, - [5148] = 5148, - [5149] = 5149, - [5150] = 5150, + [5144] = 5137, + [5145] = 5138, + [5146] = 5139, + [5147] = 5135, + [5148] = 5136, + [5149] = 5138, + [5150] = 5139, [5151] = 5151, - [5152] = 5130, - [5153] = 5153, - [5154] = 5141, - [5155] = 5130, - [5156] = 5141, - [5157] = 5133, - [5158] = 5158, - [5159] = 5159, - [5160] = 5160, - [5161] = 5141, - [5162] = 5162, - [5163] = 5163, - [5164] = 5164, - [5165] = 5165, - [5166] = 5166, - [5167] = 5167, - [5168] = 5168, - [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 5172, - [5173] = 5173, - [5174] = 5174, - [5175] = 5175, - [5176] = 5176, - [5177] = 5177, - [5178] = 5178, - [5179] = 5179, - [5180] = 5180, - [5181] = 5181, - [5182] = 5182, - [5183] = 5183, - [5184] = 5141, - [5185] = 5163, - [5186] = 5186, - [5187] = 5187, - [5188] = 5188, - [5189] = 5130, - [5190] = 5190, - [5191] = 5191, - [5192] = 5140, - [5193] = 5145, - [5194] = 5194, - [5195] = 5130, - [5196] = 5141, - [5197] = 5163, - [5198] = 5198, - [5199] = 5133, - [5200] = 5200, - [5201] = 5201, - [5202] = 5163, - [5203] = 5140, - [5204] = 5204, - [5205] = 5205, - [5206] = 5206, - [5207] = 5207, - [5208] = 5208, - [5209] = 5209, - [5210] = 5210, + [5152] = 5152, + [5153] = 5138, + [5154] = 5139, + [5155] = 5135, + [5156] = 5136, + [5157] = 5141, + [5158] = 5142, + [5159] = 5143, + [5160] = 5137, + [5161] = 5151, + [5162] = 5152, + [5163] = 5151, + [5164] = 5138, + [5165] = 5139, + [5166] = 5135, + [5167] = 5136, + [5168] = 5141, + [5169] = 5142, + [5170] = 5143, + [5171] = 5137, + [5172] = 5135, + [5173] = 5137, + [5174] = 5151, + [5175] = 5152, + [5176] = 5151, + [5177] = 5152, + [5178] = 5138, + [5179] = 5139, + [5180] = 5135, + [5181] = 5136, + [5182] = 157, + [5183] = 5141, + [5184] = 5142, + [5185] = 5143, + [5186] = 5137, + [5187] = 157, + [5188] = 5152, + [5189] = 5152, + [5190] = 5139, + [5191] = 5135, + [5192] = 5136, + [5193] = 5141, + [5194] = 157, + [5195] = 5142, + [5196] = 5143, + [5197] = 5137, + [5198] = 5151, + [5199] = 5152, + [5200] = 157, + [5201] = 5139, + [5202] = 157, + [5203] = 157, + [5204] = 157, + [5205] = 5135, + [5206] = 5136, + [5207] = 5141, + [5208] = 5142, + [5209] = 5143, + [5210] = 5137, [5211] = 5211, - [5212] = 5212, - [5213] = 5141, - [5214] = 5214, - [5215] = 5215, - [5216] = 5163, - [5217] = 5217, - [5218] = 5218, - [5219] = 5219, - [5220] = 5140, - [5221] = 5120, - [5222] = 5222, - [5223] = 5145, - [5224] = 5224, - [5225] = 5225, - [5226] = 5141, - [5227] = 5227, - [5228] = 5133, - [5229] = 5229, - [5230] = 5230, - [5231] = 5163, - [5232] = 5232, - [5233] = 5233, - [5234] = 5234, - [5235] = 5130, + [5212] = 5141, + [5213] = 5142, + [5214] = 5152, + [5215] = 5139, + [5216] = 5135, + [5217] = 5136, + [5218] = 5141, + [5219] = 5142, + [5220] = 5143, + [5221] = 5137, + [5222] = 5143, + [5223] = 5152, + [5224] = 5139, + [5225] = 5135, + [5226] = 5136, + [5227] = 5141, + [5228] = 5142, + [5229] = 5143, + [5230] = 5137, + [5231] = 157, + [5232] = 5141, + [5233] = 5142, + [5234] = 5143, + [5235] = 5152, [5236] = 5236, [5237] = 5237, [5238] = 5238, - [5239] = 5239, - [5240] = 5240, - [5241] = 5241, - [5242] = 5163, - [5243] = 5243, - [5244] = 5130, - [5245] = 5245, - [5246] = 5140, - [5247] = 5145, - [5248] = 5248, - [5249] = 5249, - [5250] = 5250, - [5251] = 5163, - [5252] = 5133, - [5253] = 5120, - [5254] = 5254, - [5255] = 5255, - [5256] = 5256, - [5257] = 5257, - [5258] = 5258, - [5259] = 5129, - [5260] = 5130, - [5261] = 5261, - [5262] = 5262, - [5263] = 5140, - [5264] = 5120, - [5265] = 5265, - [5266] = 5145, - [5267] = 5129, - [5268] = 5268, - [5269] = 5269, - [5270] = 5120, - [5271] = 5129, - [5272] = 5272, - [5273] = 5129, - [5274] = 5140, - [5275] = 5145, - [5276] = 5120, - [5277] = 5277, - [5278] = 5140, - [5279] = 5129, - [5280] = 5145, - [5281] = 5120, - [5282] = 5282, + [5239] = 5238, + [5240] = 5236, + [5241] = 5238, + [5242] = 5242, + [5243] = 5237, + [5244] = 5244, + [5245] = 5236, + [5246] = 5236, + [5247] = 5238, + [5248] = 5236, + [5249] = 5242, + [5250] = 5237, + [5251] = 5238, + [5252] = 5242, + [5253] = 5237, + [5254] = 5242, + [5255] = 5237, + [5256] = 5237, + [5257] = 5236, + [5258] = 5242, + [5259] = 5236, + [5260] = 5238, + [5261] = 5242, + [5262] = 5237, + [5263] = 5236, + [5264] = 5238, + [5265] = 5242, + [5266] = 5242, + [5267] = 5236, + [5268] = 5238, + [5269] = 5242, + [5270] = 5237, + [5271] = 5237, + [5272] = 5236, + [5273] = 5238, + [5274] = 5237, + [5275] = 5242, + [5276] = 5237, + [5277] = 5236, + [5278] = 5242, + [5279] = 5236, + [5280] = 5238, + [5281] = 5242, + [5282] = 5238, [5283] = 5283, - [5284] = 5129, - [5285] = 5120, + [5284] = 5283, + [5285] = 5285, [5286] = 5286, [5287] = 5287, - [5288] = 5129, + [5288] = 5287, [5289] = 5289, [5290] = 5290, - [5291] = 5129, - [5292] = 5140, + [5291] = 5291, + [5292] = 5292, [5293] = 5293, [5294] = 5294, - [5295] = 5295, + [5295] = 5286, + [5296] = 5285, + [5297] = 5287, + [5298] = 5298, + [5299] = 5299, + [5300] = 5287, + [5301] = 5286, + [5302] = 5302, + [5303] = 5298, + [5304] = 5299, + [5305] = 5286, + [5306] = 5285, + [5307] = 5287, + [5308] = 5286, + [5309] = 5298, + [5310] = 5298, + [5311] = 5299, + [5312] = 5287, + [5313] = 157, + [5314] = 5289, + [5315] = 5290, + [5316] = 5291, + [5317] = 5292, + [5318] = 5293, + [5319] = 5294, + [5320] = 5283, + [5321] = 5285, + [5322] = 5286, + [5323] = 5298, + [5324] = 5291, + [5325] = 5299, + [5326] = 5287, + [5327] = 5286, + [5328] = 5293, + [5329] = 5294, + [5330] = 5298, + [5331] = 5292, + [5332] = 5299, + [5333] = 5299, + [5334] = 5289, + [5335] = 5290, + [5336] = 5291, + [5337] = 5292, + [5338] = 5293, + [5339] = 5294, + [5340] = 5283, + [5341] = 5285, + [5342] = 5287, + [5343] = 5283, + [5344] = 5286, + [5345] = 5298, + [5346] = 5299, + [5347] = 5286, + [5348] = 5289, + [5349] = 5290, + [5350] = 5291, + [5351] = 5292, + [5352] = 5293, + [5353] = 5294, + [5354] = 5283, + [5355] = 5285, + [5356] = 5289, + [5357] = 5290, + [5358] = 5291, + [5359] = 5292, + [5360] = 5293, + [5361] = 5294, + [5362] = 5283, + [5363] = 5285, + [5364] = 5289, + [5365] = 5290, + [5366] = 5291, + [5367] = 5292, + [5368] = 5293, + [5369] = 5294, + [5370] = 5283, + [5371] = 5285, + [5372] = 5289, + [5373] = 5290, + [5374] = 5291, + [5375] = 5292, + [5376] = 5293, + [5377] = 5294, + [5378] = 5283, + [5379] = 5285, + [5380] = 5289, + [5381] = 5290, + [5382] = 5291, + [5383] = 5292, + [5384] = 5293, + [5385] = 5294, + [5386] = 5283, + [5387] = 5285, + [5388] = 5287, + [5389] = 5299, + [5390] = 5299, + [5391] = 5289, + [5392] = 5298, + [5393] = 5290, + [5394] = 5291, + [5395] = 5292, + [5396] = 5289, + [5397] = 5287, + [5398] = 5293, + [5399] = 5286, + [5400] = 5298, + [5401] = 5299, + [5402] = 5294, + [5403] = 5290, + [5404] = 157, + [5405] = 5298, + [5406] = 5406, + [5407] = 5407, + [5408] = 5408, + [5409] = 5409, + [5410] = 5410, + [5411] = 5411, + [5412] = 5412, + [5413] = 5413, + [5414] = 5414, + [5415] = 5415, + [5416] = 5416, + [5417] = 5417, + [5418] = 5418, + [5419] = 5419, + [5420] = 5420, + [5421] = 5421, + [5422] = 5422, + [5423] = 5423, + [5424] = 5424, + [5425] = 5425, + [5426] = 5426, + [5427] = 5427, + [5428] = 5427, + [5429] = 5427, + [5430] = 5426, + [5431] = 5427, + [5432] = 5432, + [5433] = 5433, + [5434] = 5426, + [5435] = 5435, + [5436] = 5427, + [5437] = 5437, + [5438] = 5438, + [5439] = 5439, + [5440] = 5440, + [5441] = 5441, + [5442] = 5442, + [5443] = 5443, + [5444] = 5444, + [5445] = 5445, + [5446] = 5446, + [5447] = 5447, + [5448] = 5448, + [5449] = 5427, + [5450] = 5450, + [5451] = 5451, + [5452] = 5406, + [5453] = 5453, + [5454] = 5454, + [5455] = 5432, + [5456] = 5433, + [5457] = 5438, + [5458] = 5458, + [5459] = 5459, + [5460] = 5460, + [5461] = 5461, + [5462] = 5462, + [5463] = 5407, + [5464] = 5408, + [5465] = 5409, + [5466] = 5410, + [5467] = 5411, + [5468] = 5412, + [5469] = 5413, + [5470] = 5414, + [5471] = 5415, + [5472] = 5416, + [5473] = 5417, + [5474] = 5418, + [5475] = 5419, + [5476] = 5420, + [5477] = 5421, + [5478] = 5422, + [5479] = 5423, + [5480] = 5424, + [5481] = 5425, + [5482] = 5458, + [5483] = 5426, + [5484] = 5459, + [5485] = 5460, + [5486] = 5461, + [5487] = 5462, + [5488] = 5435, + [5489] = 5437, + [5490] = 5439, + [5491] = 5440, + [5492] = 5441, + [5493] = 5442, + [5494] = 5443, + [5495] = 5444, + [5496] = 5445, + [5497] = 5446, + [5498] = 5447, + [5499] = 5448, + [5500] = 5450, + [5501] = 5451, + [5502] = 5406, + [5503] = 5453, + [5504] = 5454, + [5505] = 5432, + [5506] = 5433, + [5507] = 5438, + [5508] = 5458, + [5509] = 5459, + [5510] = 5460, + [5511] = 5461, + [5512] = 5462, + [5513] = 5407, + [5514] = 5408, + [5515] = 5409, + [5516] = 5410, + [5517] = 5411, + [5518] = 5412, + [5519] = 5413, + [5520] = 5414, + [5521] = 5415, + [5522] = 5416, + [5523] = 5417, + [5524] = 5418, + [5525] = 5419, + [5526] = 5420, + [5527] = 5421, + [5528] = 5422, + [5529] = 5423, + [5530] = 5424, + [5531] = 5425, + [5532] = 5426, + [5533] = 5435, + [5534] = 5437, + [5535] = 5439, + [5536] = 5440, + [5537] = 5441, + [5538] = 5442, + [5539] = 5443, + [5540] = 5444, + [5541] = 5445, + [5542] = 5446, + [5543] = 5447, + [5544] = 5448, + [5545] = 5450, + [5546] = 5451, + [5547] = 5406, + [5548] = 5453, + [5549] = 5454, + [5550] = 5432, + [5551] = 5433, + [5552] = 5438, + [5553] = 5458, + [5554] = 5459, + [5555] = 5460, + [5556] = 5461, + [5557] = 5462, + [5558] = 5426, + [5559] = 5407, + [5560] = 5408, + [5561] = 5409, + [5562] = 5410, + [5563] = 5411, + [5564] = 5412, + [5565] = 5413, + [5566] = 5414, + [5567] = 5415, + [5568] = 5416, + [5569] = 5417, + [5570] = 5418, + [5571] = 5419, + [5572] = 5437, + [5573] = 5420, + [5574] = 5421, + [5575] = 5422, + [5576] = 5423, + [5577] = 5424, + [5578] = 5425, + [5579] = 5426, + [5580] = 5435, + [5581] = 5437, + [5582] = 5439, + [5583] = 5440, + [5584] = 5441, + [5585] = 5442, + [5586] = 5443, + [5587] = 5444, + [5588] = 5445, + [5589] = 5446, + [5590] = 5447, + [5591] = 5448, + [5592] = 5450, + [5593] = 5451, + [5594] = 5406, + [5595] = 5453, + [5596] = 5454, + [5597] = 5432, + [5598] = 5433, + [5599] = 5438, + [5600] = 5458, + [5601] = 5459, + [5602] = 5460, + [5603] = 5461, + [5604] = 5462, + [5605] = 5427, + [5606] = 5407, + [5607] = 5408, + [5608] = 5409, + [5609] = 5410, + [5610] = 5411, + [5611] = 5412, + [5612] = 5413, + [5613] = 5414, + [5614] = 5415, + [5615] = 5416, + [5616] = 5417, + [5617] = 5418, + [5618] = 5419, + [5619] = 5420, + [5620] = 5421, + [5621] = 5422, + [5622] = 5423, + [5623] = 5424, + [5624] = 5425, + [5625] = 5426, + [5626] = 5435, + [5627] = 5437, + [5628] = 5439, + [5629] = 5440, + [5630] = 5441, + [5631] = 5442, + [5632] = 5443, + [5633] = 5444, + [5634] = 5445, + [5635] = 5446, + [5636] = 5447, + [5637] = 5448, + [5638] = 5450, + [5639] = 5451, + [5640] = 5406, + [5641] = 5453, + [5642] = 5454, + [5643] = 5432, + [5644] = 5433, + [5645] = 5438, + [5646] = 5458, + [5647] = 5459, + [5648] = 5460, + [5649] = 5461, + [5650] = 5462, + [5651] = 5407, + [5652] = 5408, + [5653] = 5653, + [5654] = 5409, + [5655] = 5410, + [5656] = 5411, + [5657] = 5412, + [5658] = 5413, + [5659] = 5414, + [5660] = 5415, + [5661] = 5416, + [5662] = 5417, + [5663] = 5418, + [5664] = 5419, + [5665] = 5420, + [5666] = 5421, + [5667] = 5422, + [5668] = 5423, + [5669] = 5424, + [5670] = 5425, + [5671] = 5426, + [5672] = 5435, + [5673] = 5437, + [5674] = 5462, + [5675] = 5440, + [5676] = 5441, + [5677] = 5442, + [5678] = 5443, + [5679] = 5444, + [5680] = 5445, + [5681] = 5446, + [5682] = 5447, + [5683] = 5448, + [5684] = 5450, + [5685] = 5451, + [5686] = 5453, + [5687] = 5454, + [5688] = 5432, + [5689] = 5433, + [5690] = 5438, + [5691] = 5458, + [5692] = 5459, + [5693] = 5460, + [5694] = 5461, + [5695] = 5462, + [5696] = 5407, + [5697] = 5408, + [5698] = 5409, + [5699] = 5410, + [5700] = 5411, + [5701] = 5412, + [5702] = 5413, + [5703] = 5414, + [5704] = 5415, + [5705] = 5416, + [5706] = 5417, + [5707] = 5418, + [5708] = 5419, + [5709] = 5420, + [5710] = 5421, + [5711] = 5422, + [5712] = 5423, + [5713] = 5424, + [5714] = 5425, + [5715] = 5426, + [5716] = 5435, + [5717] = 5437, + [5718] = 5439, + [5719] = 5440, + [5720] = 5441, + [5721] = 5442, + [5722] = 5443, + [5723] = 5444, + [5724] = 5445, + [5725] = 5446, + [5726] = 5447, + [5727] = 5448, + [5728] = 5450, + [5729] = 5451, + [5730] = 5406, + [5731] = 5453, + [5732] = 5454, + [5733] = 5432, + [5734] = 5433, + [5735] = 5438, + [5736] = 5458, + [5737] = 5459, + [5738] = 5460, + [5739] = 5461, + [5740] = 5462, + [5741] = 5407, + [5742] = 5408, + [5743] = 5409, + [5744] = 5410, + [5745] = 5411, + [5746] = 5412, + [5747] = 5413, + [5748] = 5414, + [5749] = 5415, + [5750] = 5416, + [5751] = 5417, + [5752] = 5418, + [5753] = 5419, + [5754] = 5420, + [5755] = 5421, + [5756] = 5422, + [5757] = 5423, + [5758] = 5424, + [5759] = 5425, + [5760] = 5435, + [5761] = 5437, + [5762] = 5442, + [5763] = 5406, + [5764] = 5453, + [5765] = 5454, + [5766] = 5409, + [5767] = 5410, + [5768] = 5411, + [5769] = 5412, + [5770] = 5420, + [5771] = 5421, + [5772] = 5422, + [5773] = 5425, + [5774] = 5435, + [5775] = 5437, + [5776] = 5442, + [5777] = 5406, + [5778] = 5453, + [5779] = 5454, + [5780] = 5409, + [5781] = 5410, + [5782] = 5411, + [5783] = 5412, + [5784] = 5420, + [5785] = 5421, + [5786] = 5422, + [5787] = 5425, + [5788] = 5788, + [5789] = 5789, + [5790] = 5790, + [5791] = 5791, + [5792] = 5426, + [5793] = 5427, + [5794] = 5427, + [5795] = 5426, + [5796] = 5407, + [5797] = 5788, + [5798] = 5789, + [5799] = 5790, + [5800] = 5408, + [5801] = 5791, + [5802] = 5409, + [5803] = 5410, + [5804] = 5411, + [5805] = 5412, + [5806] = 5788, + [5807] = 5790, + [5808] = 5788, + [5809] = 5790, + [5810] = 5426, + [5811] = 5788, + [5812] = 5425, + [5813] = 5790, + [5814] = 5427, + [5815] = 5435, + [5816] = 5788, + [5817] = 5427, + [5818] = 5790, + [5819] = 5788, + [5820] = 5790, + [5821] = 5788, + [5822] = 5790, + [5823] = 5427, + [5824] = 5443, + [5825] = 5444, + [5826] = 5445, + [5827] = 5413, + [5828] = 5414, + [5829] = 5415, + [5830] = 5416, + [5831] = 5417, + [5832] = 5418, + [5833] = 5446, + [5834] = 5447, + [5835] = 5448, + [5836] = 5791, + [5837] = 5439, + [5838] = 5427, + [5839] = 5440, + [5840] = 5419, + [5841] = 5789, + [5842] = 5420, + [5843] = 5421, + [5844] = 5422, + [5845] = 5845, + [5846] = 5442, + [5847] = 5847, + [5848] = 5423, + [5849] = 5849, + [5850] = 5424, + [5851] = 5851, + [5852] = 5426, + [5853] = 5427, + [5854] = 5244, + [5855] = 5441, + [5856] = 5790, + [5857] = 5788, + [5858] = 5450, + [5859] = 5451, + [5860] = 5426, + [5861] = 5427, + [5862] = 5406, + [5863] = 5453, + [5864] = 5454, + [5865] = 5426, + [5866] = 5435, + [5867] = 5427, + [5868] = 5437, + [5869] = 5439, + [5870] = 5440, + [5871] = 5441, + [5872] = 5872, + [5873] = 5442, + [5874] = 5443, + [5875] = 5444, + [5876] = 5445, + [5877] = 5446, + [5878] = 5447, + [5879] = 5448, + [5880] = 5450, + [5881] = 5451, + [5882] = 5406, + [5883] = 5453, + [5884] = 5454, + [5885] = 5432, + [5886] = 5433, + [5887] = 5438, + [5888] = 5458, + [5889] = 5459, + [5890] = 5460, + [5891] = 5461, + [5892] = 5439, + [5893] = 5893, + [5894] = 5894, + [5895] = 5895, + [5896] = 5896, + [5897] = 5897, + [5898] = 5898, + [5899] = 5899, + [5900] = 5900, + [5901] = 5901, + [5902] = 5902, + [5903] = 5903, + [5904] = 5904, + [5905] = 5893, + [5906] = 5906, + [5907] = 5907, + [5908] = 5894, + [5909] = 5899, + [5910] = 5900, + [5911] = 5906, + [5912] = 5897, + [5913] = 5898, + [5914] = 5897, + [5915] = 5898, + [5916] = 5916, + [5917] = 5917, + [5918] = 5918, + [5919] = 5919, + [5920] = 5920, + [5921] = 5918, + [5922] = 5920, + [5923] = 5916, + [5924] = 5924, + [5925] = 5925, + [5926] = 5916, + [5927] = 5924, + [5928] = 5917, + [5929] = 5929, + [5930] = 5925, + [5931] = 5931, + [5932] = 5929, + [5933] = 5933, + [5934] = 5895, + [5935] = 5896, + [5936] = 5933, + [5937] = 5931, + [5938] = 5938, + [5939] = 5939, + [5940] = 5940, + [5941] = 5895, + [5942] = 5896, + [5943] = 5901, + [5944] = 5902, + [5945] = 5938, + [5946] = 5946, + [5947] = 5939, + [5948] = 5903, + [5949] = 5901, + [5950] = 5902, + [5951] = 5940, + [5952] = 5939, + [5953] = 5904, + [5954] = 5893, + [5955] = 5907, + [5956] = 5894, + [5957] = 5899, + [5958] = 5900, + [5959] = 5906, + [5960] = 5897, + [5961] = 5898, + [5962] = 5918, + [5963] = 5920, + [5964] = 5916, + [5965] = 5917, + [5966] = 5924, + [5967] = 5929, + [5968] = 5925, + [5969] = 5931, + [5970] = 5924, + [5971] = 5925, + [5972] = 5895, + [5973] = 5896, + [5974] = 5933, + [5975] = 5938, + [5976] = 5939, + [5977] = 5917, + [5978] = 5940, + [5979] = 5901, + [5980] = 5902, + [5981] = 5903, + [5982] = 5917, + [5983] = 5904, + [5984] = 5929, + [5985] = 5893, + [5986] = 5931, + [5987] = 5907, + [5988] = 5894, + [5989] = 5899, + [5990] = 5895, + [5991] = 5896, + [5992] = 5940, + [5993] = 5900, + [5994] = 5906, + [5995] = 5918, + [5996] = 5920, + [5997] = 5929, + [5998] = 5897, + [5999] = 5916, + [6000] = 5924, + [6001] = 5925, + [6002] = 5931, + [6003] = 5898, + [6004] = 5895, + [6005] = 5896, + [6006] = 5933, + [6007] = 5901, + [6008] = 5902, + [6009] = 5938, + [6010] = 5939, + [6011] = 5940, + [6012] = 5901, + [6013] = 5938, + [6014] = 5933, + [6015] = 5902, + [6016] = 5917, + [6017] = 5929, + [6018] = 5918, + [6019] = 5931, + [6020] = 5920, + [6021] = 5916, + [6022] = 5924, + [6023] = 5925, + [6024] = 5933, + [6025] = 5917, + [6026] = 5917, + [6027] = 5929, + [6028] = 5939, + [6029] = 5931, + [6030] = 5931, + [6031] = 5931, + [6032] = 5931, + [6033] = 5931, + [6034] = 5931, + [6035] = 5931, + [6036] = 5931, + [6037] = 5931, + [6038] = 5931, + [6039] = 5931, + [6040] = 5931, + [6041] = 5931, + [6042] = 5931, + [6043] = 5931, + [6044] = 5931, + [6045] = 5931, + [6046] = 5931, + [6047] = 5931, + [6048] = 5931, + [6049] = 5931, + [6050] = 5931, + [6051] = 5931, + [6052] = 5931, + [6053] = 5931, + [6054] = 5931, + [6055] = 5931, + [6056] = 5931, + [6057] = 5931, + [6058] = 5931, + [6059] = 5931, + [6060] = 5931, + [6061] = 5931, + [6062] = 5931, + [6063] = 5931, + [6064] = 5931, + [6065] = 5931, + [6066] = 5931, + [6067] = 5919, + [6068] = 5929, + [6069] = 6069, + [6070] = 6070, + [6071] = 5931, + [6072] = 6072, + [6073] = 5938, + [6074] = 5903, + [6075] = 5903, + [6076] = 5917, + [6077] = 5939, + [6078] = 5903, + [6079] = 5940, + [6080] = 5904, + [6081] = 5893, + [6082] = 5907, + [6083] = 5894, + [6084] = 5899, + [6085] = 5900, + [6086] = 5906, + [6087] = 5897, + [6088] = 5898, + [6089] = 5918, + [6090] = 5920, + [6091] = 5916, + [6092] = 5924, + [6093] = 5925, + [6094] = 5933, + [6095] = 5938, + [6096] = 5939, + [6097] = 5940, + [6098] = 5903, + [6099] = 5904, + [6100] = 5925, + [6101] = 5907, + [6102] = 5894, + [6103] = 5899, + [6104] = 5900, + [6105] = 5906, + [6106] = 5897, + [6107] = 5898, + [6108] = 5919, + [6109] = 5929, + [6110] = 6069, + [6111] = 6070, + [6112] = 5931, + [6113] = 6072, + [6114] = 5931, + [6115] = 5904, + [6116] = 5893, + [6117] = 5940, + [6118] = 5907, + [6119] = 5918, + [6120] = 5920, + [6121] = 5916, + [6122] = 5924, + [6123] = 5925, + [6124] = 5933, + [6125] = 5938, + [6126] = 5939, + [6127] = 5940, + [6128] = 6128, + [6129] = 5894, + [6130] = 5899, + [6131] = 5900, + [6132] = 5906, + [6133] = 5929, + [6134] = 5903, + [6135] = 5919, + [6136] = 5929, + [6137] = 6069, + [6138] = 6070, + [6139] = 6069, + [6140] = 5931, + [6141] = 6072, + [6142] = 5897, + [6143] = 5898, + [6144] = 5919, + [6145] = 5929, + [6146] = 6069, + [6147] = 6070, + [6148] = 6072, + [6149] = 5917, + [6150] = 5938, + [6151] = 5903, + [6152] = 5919, + [6153] = 5929, + [6154] = 6069, + [6155] = 6070, + [6156] = 6072, + [6157] = 5917, + [6158] = 5919, + [6159] = 5929, + [6160] = 6069, + [6161] = 6070, + [6162] = 6072, + [6163] = 5929, + [6164] = 5904, + [6165] = 148, + [6166] = 5904, + [6167] = 5904, + [6168] = 5893, + [6169] = 5919, + [6170] = 5929, + [6171] = 6069, + [6172] = 6070, + [6173] = 6072, + [6174] = 5893, + [6175] = 5931, + [6176] = 5907, + [6177] = 5894, + [6178] = 5899, + [6179] = 5919, + [6180] = 5929, + [6181] = 6069, + [6182] = 6070, + [6183] = 6072, + [6184] = 5893, + [6185] = 5900, + [6186] = 5907, + [6187] = 5906, + [6188] = 5897, + [6189] = 5898, + [6190] = 5929, + [6191] = 6069, + [6192] = 6072, + [6193] = 5929, + [6194] = 5929, + [6195] = 5929, + [6196] = 5929, + [6197] = 5929, + [6198] = 5929, + [6199] = 5929, + [6200] = 5929, + [6201] = 5929, + [6202] = 5929, + [6203] = 5929, + [6204] = 5929, + [6205] = 5929, + [6206] = 5929, + [6207] = 5929, + [6208] = 5929, + [6209] = 5929, + [6210] = 5929, + [6211] = 5929, + [6212] = 5929, + [6213] = 5929, + [6214] = 5929, + [6215] = 5929, + [6216] = 5929, + [6217] = 5929, + [6218] = 5929, + [6219] = 5929, + [6220] = 5929, + [6221] = 5929, + [6222] = 5929, + [6223] = 5929, + [6224] = 6224, + [6225] = 6225, + [6226] = 5895, + [6227] = 5918, + [6228] = 5917, + [6229] = 5931, + [6230] = 5895, + [6231] = 5896, + [6232] = 150, + [6233] = 146, + [6234] = 6234, + [6235] = 6235, + [6236] = 6072, + [6237] = 5918, + [6238] = 5920, + [6239] = 5894, + [6240] = 5916, + [6241] = 5924, + [6242] = 5924, + [6243] = 6243, + [6244] = 6244, + [6245] = 5896, + [6246] = 6246, + [6247] = 5925, + [6248] = 5933, + [6249] = 5920, + [6250] = 5918, + [6251] = 6251, + [6252] = 5938, + [6253] = 5916, + [6254] = 5939, + [6255] = 5940, + [6256] = 5924, + [6257] = 6070, + [6258] = 5925, + [6259] = 5933, + [6260] = 5918, + [6261] = 5938, + [6262] = 5939, + [6263] = 6224, + [6264] = 5940, + [6265] = 5907, + [6266] = 5920, + [6267] = 5916, + [6268] = 5894, + [6269] = 5901, + [6270] = 6270, + [6271] = 5901, + [6272] = 5894, + [6273] = 5302, + [6274] = 152, + [6275] = 153, + [6276] = 5899, + [6277] = 5902, + [6278] = 6278, + [6279] = 6225, + [6280] = 5904, + [6281] = 6281, + [6282] = 5903, + [6283] = 5902, + [6284] = 5904, + [6285] = 5893, + [6286] = 5907, + [6287] = 5894, + [6288] = 5899, + [6289] = 5900, + [6290] = 5906, + [6291] = 5897, + [6292] = 5898, + [6293] = 5903, + [6294] = 5933, + [6295] = 5895, + [6296] = 6296, + [6297] = 5896, + [6298] = 5924, + [6299] = 5925, + [6300] = 5933, + [6301] = 5938, + [6302] = 5939, + [6303] = 5918, + [6304] = 5920, + [6305] = 5916, + [6306] = 5924, + [6307] = 5925, + [6308] = 5933, + [6309] = 5938, + [6310] = 5939, + [6311] = 5940, + [6312] = 5946, + [6313] = 6313, + [6314] = 5940, + [6315] = 5899, + [6316] = 5917, + [6317] = 5900, + [6318] = 5893, + [6319] = 5918, + [6320] = 5903, + [6321] = 5920, + [6322] = 149, + [6323] = 5906, + [6324] = 5897, + [6325] = 5916, + [6326] = 5904, + [6327] = 5893, + [6328] = 5898, + [6329] = 5907, + [6330] = 5894, + [6331] = 5899, + [6332] = 5900, + [6333] = 5906, + [6334] = 5897, + [6335] = 5898, + [6336] = 5894, + [6337] = 5924, + [6338] = 5907, + [6339] = 5924, + [6340] = 5894, + [6341] = 5899, + [6342] = 5900, + [6343] = 5900, + [6344] = 5906, + [6345] = 5897, + [6346] = 5917, + [6347] = 5901, + [6348] = 5903, + [6349] = 6349, + [6350] = 5906, + [6351] = 5904, + [6352] = 5893, + [6353] = 5907, + [6354] = 5894, + [6355] = 5899, + [6356] = 5900, + [6357] = 5906, + [6358] = 5897, + [6359] = 5898, + [6360] = 5898, + [6361] = 5902, + [6362] = 5903, + [6363] = 5918, + [6364] = 5918, + [6365] = 5920, + [6366] = 5894, + [6367] = 5924, + [6368] = 5916, + [6369] = 5924, + [6370] = 6224, + [6371] = 6225, + [6372] = 5925, + [6373] = 5933, + [6374] = 5938, + [6375] = 5939, + [6376] = 5940, + [6377] = 5894, + [6378] = 5924, + [6379] = 6379, + [6380] = 5894, + [6381] = 5924, + [6382] = 5894, + [6383] = 5924, + [6384] = 6224, + [6385] = 6225, + [6386] = 5917, + [6387] = 5904, + [6388] = 5929, + [6389] = 5893, + [6390] = 5894, + [6391] = 5924, + [6392] = 5903, + [6393] = 5920, + [6394] = 5931, + [6395] = 5904, + [6396] = 5893, + [6397] = 5907, + [6398] = 5894, + [6399] = 5894, + [6400] = 5924, + [6401] = 6224, + [6402] = 6225, + [6403] = 5899, + [6404] = 5900, + [6405] = 5906, + [6406] = 5897, + [6407] = 5898, + [6408] = 5916, + [6409] = 5907, + [6410] = 5903, + [6411] = 5895, + [6412] = 5896, + [6413] = 6224, + [6414] = 6225, + [6415] = 5918, + [6416] = 5920, + [6417] = 5916, + [6418] = 5924, + [6419] = 5897, + [6420] = 5924, + [6421] = 5898, + [6422] = 6224, + [6423] = 6225, + [6424] = 5925, + [6425] = 5920, + [6426] = 5933, + [6427] = 5904, + [6428] = 5938, + [6429] = 5939, + [6430] = 6224, + [6431] = 6225, + [6432] = 5940, + [6433] = 5925, + [6434] = 5933, + [6435] = 5938, + [6436] = 6224, + [6437] = 6225, + [6438] = 5939, + [6439] = 5940, + [6440] = 5917, + [6441] = 5901, + [6442] = 5902, + [6443] = 6224, + [6444] = 6225, + [6445] = 5893, + [6446] = 5894, + [6447] = 5924, + [6448] = 6246, + [6449] = 6243, + [6450] = 6244, + [6451] = 6313, + [6452] = 5894, + [6453] = 5924, + [6454] = 5894, + [6455] = 5924, + [6456] = 5894, + [6457] = 5924, + [6458] = 5894, + [6459] = 5924, + [6460] = 5894, + [6461] = 5907, + [6462] = 5924, + [6463] = 5894, + [6464] = 5894, + [6465] = 5924, + [6466] = 5894, + [6467] = 5929, + [6468] = 5924, + [6469] = 5899, + [6470] = 5894, + [6471] = 5900, + [6472] = 5924, + [6473] = 5894, + [6474] = 5931, + [6475] = 5924, + [6476] = 5906, + [6477] = 5894, + [6478] = 5924, + [6479] = 5894, + [6480] = 5924, + [6481] = 5894, + [6482] = 5924, + [6483] = 5894, + [6484] = 5924, + [6485] = 5894, + [6486] = 5924, + [6487] = 5894, + [6488] = 5924, + [6489] = 5894, + [6490] = 5924, + [6491] = 5894, + [6492] = 5924, + [6493] = 5894, + [6494] = 5924, + [6495] = 6251, + [6496] = 6270, + [6497] = 6278, + [6498] = 5946, + [6499] = 6251, + [6500] = 6270, + [6501] = 6278, + [6502] = 5946, + [6503] = 6251, + [6504] = 6270, + [6505] = 6278, + [6506] = 5946, + [6507] = 6251, + [6508] = 6270, + [6509] = 6278, + [6510] = 5946, + [6511] = 6251, + [6512] = 6270, + [6513] = 6278, + [6514] = 5946, + [6515] = 6251, + [6516] = 6270, + [6517] = 6278, + [6518] = 5946, + [6519] = 6251, + [6520] = 6270, + [6521] = 6278, + [6522] = 5946, + [6523] = 6251, + [6524] = 6270, + [6525] = 6278, + [6526] = 5946, + [6527] = 6251, + [6528] = 6270, + [6529] = 6278, + [6530] = 5929, + [6531] = 146, + [6532] = 152, + [6533] = 148, + [6534] = 149, + [6535] = 153, + [6536] = 150, + [6537] = 6537, + [6538] = 6538, + [6539] = 2524, + [6540] = 2141, + [6541] = 2136, + [6542] = 2129, + [6543] = 2132, + [6544] = 2649, + [6545] = 2140, + [6546] = 2142, + [6547] = 2145, + [6548] = 2648, + [6549] = 2537, + [6550] = 497, + [6551] = 2142, + [6552] = 506, + [6553] = 522, + [6554] = 523, + [6555] = 2129, + [6556] = 2132, + [6557] = 2136, + [6558] = 2140, + [6559] = 2142, + [6560] = 2145, + [6561] = 2129, + [6562] = 2648, + [6563] = 508, + [6564] = 2132, + [6565] = 2136, + [6566] = 2140, + [6567] = 150, + [6568] = 2145, + [6569] = 504, + [6570] = 509, + [6571] = 2534, + [6572] = 146, + [6573] = 529, + [6574] = 2534, + [6575] = 505, + [6576] = 501, + [6577] = 2524, + [6578] = 515, + [6579] = 152, + [6580] = 2649, + [6581] = 517, + [6582] = 518, + [6583] = 519, + [6584] = 507, + [6585] = 148, + [6586] = 520, + [6587] = 521, + [6588] = 153, + [6589] = 514, + [6590] = 502, + [6591] = 149, + [6592] = 2534, + [6593] = 2524, + [6594] = 2534, + [6595] = 2648, + [6596] = 2649, + [6597] = 152, + [6598] = 148, + [6599] = 149, + [6600] = 150, + [6601] = 146, + [6602] = 153, + [6603] = 2148, + [6604] = 2147, + [6605] = 2278, + [6606] = 2316, + [6607] = 2317, + [6608] = 2205, + [6609] = 2338, + [6610] = 2339, + [6611] = 2424, + [6612] = 2425, + [6613] = 2426, + [6614] = 2405, + [6615] = 2262, + [6616] = 2383, + [6617] = 2184, + [6618] = 2252, + [6619] = 2370, + [6620] = 2390, + [6621] = 2185, + [6622] = 2334, + [6623] = 2264, + [6624] = 2406, + [6625] = 2440, + [6626] = 2340, + [6627] = 2341, + [6628] = 2342, + [6629] = 2343, + [6630] = 2408, + [6631] = 2267, + [6632] = 2392, + [6633] = 2441, + [6634] = 2356, + [6635] = 2442, + [6636] = 2367, + [6637] = 2368, + [6638] = 2427, + [6639] = 2444, + [6640] = 2445, + [6641] = 2446, + [6642] = 2447, + [6643] = 2169, + [6644] = 2170, + [6645] = 2171, + [6646] = 2172, + [6647] = 2448, + [6648] = 2378, + [6649] = 2308, + [6650] = 2409, + [6651] = 2268, + [6652] = 2269, + [6653] = 2270, + [6654] = 2369, + [6655] = 2167, + [6656] = 2271, + [6657] = 2166, + [6658] = 2272, + [6659] = 2449, + [6660] = 2350, + [6661] = 2146, + [6662] = 2410, + [6663] = 2187, + [6664] = 2188, + [6665] = 2189, + [6666] = 2490, + [6667] = 2307, + [6668] = 2194, + [6669] = 2265, + [6670] = 2345, + [6671] = 2202, + [6672] = 2266, + [6673] = 2229, + [6674] = 2359, + [6675] = 2491, + [6676] = 2411, + [6677] = 2312, + [6678] = 2391, + [6679] = 2393, + [6680] = 2233, + [6681] = 2492, + [6682] = 2421, + [6683] = 2237, + [6684] = 2422, + [6685] = 2273, + [6686] = 2394, + [6687] = 2238, + [6688] = 2274, + [6689] = 2423, + [6690] = 2399, + [6691] = 2346, + [6692] = 2328, + [6693] = 2275, + [6694] = 2204, + [6695] = 2400, + [6696] = 2276, + [6697] = 2403, + [6698] = 2351, + [6699] = 2412, + [6700] = 2336, + [6701] = 2450, + [6702] = 2451, + [6703] = 2452, + [6704] = 2453, + [6705] = 2454, + [6706] = 2310, + [6707] = 2315, + [6708] = 2357, + [6709] = 2455, + [6710] = 2456, + [6711] = 2178, + [6712] = 2195, + [6713] = 2198, + [6714] = 2457, + [6715] = 2181, + [6716] = 2277, + [6717] = 2458, + [6718] = 2420, + [6719] = 2279, + [6720] = 2337, + [6721] = 2344, + [6722] = 2309, + [6723] = 2280, + [6724] = 2459, + [6725] = 2460, + [6726] = 2379, + [6727] = 2352, + [6728] = 2380, + [6729] = 2331, + [6730] = 2413, + [6731] = 2428, + [6732] = 2207, + [6733] = 2372, + [6734] = 2208, + [6735] = 2213, + [6736] = 2358, + [6737] = 2144, + [6738] = 2461, + [6739] = 2281, + [6740] = 2414, + [6741] = 2384, + [6742] = 2373, + [6743] = 2282, + [6744] = 2283, + [6745] = 2284, + [6746] = 2374, + [6747] = 2286, + [6748] = 2363, + [6749] = 2382, + [6750] = 2429, + [6751] = 2375, + [6752] = 2353, + [6753] = 2364, + [6754] = 2318, + [6755] = 2314, + [6756] = 2332, + [6757] = 2289, + [6758] = 2463, + [6759] = 2290, + [6760] = 2493, + [6761] = 2158, + [6762] = 2291, + [6763] = 2292, + [6764] = 2295, + [6765] = 2296, + [6766] = 2319, + [6767] = 2430, + [6768] = 2297, + [6769] = 2298, + [6770] = 2431, + [6771] = 2377, + [6772] = 2214, + [6773] = 2404, + [6774] = 2159, + [6775] = 2160, + [6776] = 2217, + [6777] = 2464, + [6778] = 2300, + [6779] = 2301, + [6780] = 2465, + [6781] = 2302, + [6782] = 2466, + [6783] = 2303, + [6784] = 2467, + [6785] = 2304, + [6786] = 2381, + [6787] = 2305, + [6788] = 2435, + [6789] = 2306, + [6790] = 2494, + [6791] = 2436, + [6792] = 2219, + [6793] = 2415, + [6794] = 2206, + [6795] = 2220, + [6796] = 2201, + [6797] = 2221, + [6798] = 2495, + [6799] = 2199, + [6800] = 2222, + [6801] = 2223, + [6802] = 2471, + [6803] = 2320, + [6804] = 2472, + [6805] = 2203, + [6806] = 2347, + [6807] = 2475, + [6808] = 2224, + [6809] = 2240, + [6810] = 2225, + [6811] = 2476, + [6812] = 2477, + [6813] = 2478, + [6814] = 2241, + [6815] = 2416, + [6816] = 2242, + [6817] = 2321, + [6818] = 2322, + [6819] = 2243, + [6820] = 2244, + [6821] = 2480, + [6822] = 2333, + [6823] = 2417, + [6824] = 2481, + [6825] = 2482, + [6826] = 2323, + [6827] = 2253, + [6828] = 2483, + [6829] = 2245, + [6830] = 2186, + [6831] = 2246, + [6832] = 2247, + [6833] = 2248, + [6834] = 2249, + [6835] = 2226, + [6836] = 2385, + [6837] = 2354, + [6838] = 2227, + [6839] = 2228, + [6840] = 2254, + [6841] = 2418, + [6842] = 2258, + [6843] = 2311, + [6844] = 2355, + [6845] = 2250, + [6846] = 2419, + [6847] = 2327, + [6848] = 2165, + [6849] = 2484, + [6850] = 2251, + [6851] = 2485, + [6852] = 2486, + [6853] = 2487, + [6854] = 2489, + [6855] = 2488, + [6856] = 2376, + [6857] = 2348, + [6858] = 2387, + [6859] = 2313, + [6860] = 2183, + [6861] = 2386, + [6862] = 2439, + [6863] = 2388, + [6864] = 2261, + [6865] = 2389, + [6866] = 2349, + [6867] = 2395, + [6868] = 2462, + [6869] = 6869, + [6870] = 6870, + [6871] = 6871, + [6872] = 6872, + [6873] = 6873, + [6874] = 6874, + [6875] = 6875, + [6876] = 6876, + [6877] = 6873, + [6878] = 6874, + [6879] = 6875, + [6880] = 6880, + [6881] = 6870, + [6882] = 6882, + [6883] = 6883, + [6884] = 6884, + [6885] = 6885, + [6886] = 6869, + [6887] = 6887, + [6888] = 6871, + [6889] = 6889, + [6890] = 6890, + [6891] = 6891, + [6892] = 6892, + [6893] = 6893, + [6894] = 6889, + [6895] = 6895, + [6896] = 6896, + [6897] = 6897, + [6898] = 6898, + [6899] = 6899, + [6900] = 6882, + [6901] = 6890, + [6902] = 6891, + [6903] = 6884, + [6904] = 6880, + [6905] = 6870, + [6906] = 6871, + [6907] = 6872, + [6908] = 6873, + [6909] = 6874, + [6910] = 6875, + [6911] = 6876, + [6912] = 6892, + [6913] = 6872, + [6914] = 6883, + [6915] = 6885, + [6916] = 6869, + [6917] = 6887, + [6918] = 6876, + [6919] = 6889, + [6920] = 6890, + [6921] = 6891, + [6922] = 6892, + [6923] = 6893, + [6924] = 6895, + [6925] = 6896, + [6926] = 6897, + [6927] = 6898, + [6928] = 6899, + [6929] = 6882, + [6930] = 6884, + [6931] = 6880, + [6932] = 6870, + [6933] = 6871, + [6934] = 6872, + [6935] = 6873, + [6936] = 6874, + [6937] = 6875, + [6938] = 6876, + [6939] = 6883, + [6940] = 6885, + [6941] = 6869, + [6942] = 6887, + [6943] = 6889, + [6944] = 6890, + [6945] = 6891, + [6946] = 6892, + [6947] = 6893, + [6948] = 6895, + [6949] = 6896, + [6950] = 6897, + [6951] = 6898, + [6952] = 6899, + [6953] = 6882, + [6954] = 6884, + [6955] = 6880, + [6956] = 6870, + [6957] = 6871, + [6958] = 6872, + [6959] = 6873, + [6960] = 6874, + [6961] = 6875, + [6962] = 6876, + [6963] = 6883, + [6964] = 6885, + [6965] = 6869, + [6966] = 6887, + [6967] = 6889, + [6968] = 6890, + [6969] = 6891, + [6970] = 6892, + [6971] = 6893, + [6972] = 6895, + [6973] = 6896, + [6974] = 6897, + [6975] = 6898, + [6976] = 6899, + [6977] = 6882, + [6978] = 6884, + [6979] = 6880, + [6980] = 6870, + [6981] = 6871, + [6982] = 6872, + [6983] = 6873, + [6984] = 6874, + [6985] = 6875, + [6986] = 6876, + [6987] = 6883, + [6988] = 6885, + [6989] = 6887, + [6990] = 6889, + [6991] = 6890, + [6992] = 6891, + [6993] = 6892, + [6994] = 6885, + [6995] = 6893, + [6996] = 6869, + [6997] = 6887, + [6998] = 6895, + [6999] = 6896, + [7000] = 6897, + [7001] = 6898, + [7002] = 6899, + [7003] = 6882, + [7004] = 6884, + [7005] = 6880, + [7006] = 6870, + [7007] = 6871, + [7008] = 6872, + [7009] = 6873, + [7010] = 6874, + [7011] = 6875, + [7012] = 6876, + [7013] = 6883, + [7014] = 6885, + [7015] = 6869, + [7016] = 6887, + [7017] = 6889, + [7018] = 6890, + [7019] = 6891, + [7020] = 6892, + [7021] = 6893, + [7022] = 6895, + [7023] = 6896, + [7024] = 6897, + [7025] = 6898, + [7026] = 6899, + [7027] = 6882, + [7028] = 6884, + [7029] = 6880, + [7030] = 6870, + [7031] = 6871, + [7032] = 6872, + [7033] = 6873, + [7034] = 6874, + [7035] = 6875, + [7036] = 6876, + [7037] = 6883, + [7038] = 6885, + [7039] = 6869, + [7040] = 6887, + [7041] = 6889, + [7042] = 6890, + [7043] = 6891, + [7044] = 6892, + [7045] = 6893, + [7046] = 6895, + [7047] = 6896, + [7048] = 6897, + [7049] = 6898, + [7050] = 6899, + [7051] = 6882, + [7052] = 6884, + [7053] = 6880, + [7054] = 6870, + [7055] = 6871, + [7056] = 6872, + [7057] = 6873, + [7058] = 6874, + [7059] = 6875, + [7060] = 6876, + [7061] = 6893, + [7062] = 6895, + [7063] = 6896, + [7064] = 6897, + [7065] = 6883, + [7066] = 6898, + [7067] = 6899, + [7068] = 6882, + [7069] = 6884, + [7070] = 6883, + [7071] = 6885, + [7072] = 6869, + [7073] = 6887, + [7074] = 6889, + [7075] = 6890, + [7076] = 6891, + [7077] = 6892, + [7078] = 6893, + [7079] = 6895, + [7080] = 6896, + [7081] = 6897, + [7082] = 6898, + [7083] = 6899, + [7084] = 6880, + [7085] = 7085, + [7086] = 7086, + [7087] = 7087, + [7088] = 7088, + [7089] = 2141, + [7090] = 7090, + [7091] = 7091, + [7092] = 2129, + [7093] = 2132, + [7094] = 2129, + [7095] = 674, + [7096] = 2136, + [7097] = 2140, + [7098] = 2142, + [7099] = 2132, + [7100] = 2136, + [7101] = 2140, + [7102] = 2142, + [7103] = 766, + [7104] = 2145, + [7105] = 2537, + [7106] = 735, + [7107] = 2145, + [7108] = 497, + [7109] = 612, + [7110] = 2597, + [7111] = 498, + [7112] = 503, + [7113] = 2623, + [7114] = 2660, + [7115] = 2585, + [7116] = 2586, + [7117] = 2587, + [7118] = 2588, + [7119] = 2589, + [7120] = 2590, + [7121] = 2591, + [7122] = 2624, + [7123] = 2563, + [7124] = 2595, + [7125] = 2596, + [7126] = 2564, + [7127] = 2598, + [7128] = 2599, + [7129] = 2565, + [7130] = 2636, + [7131] = 2637, + [7132] = 2569, + [7133] = 2570, + [7134] = 2571, + [7135] = 2572, + [7136] = 2573, + [7137] = 2600, + [7138] = 2601, + [7139] = 2602, + [7140] = 2147, + [7141] = 2148, + [7142] = 501, + [7143] = 502, + [7144] = 504, + [7145] = 505, + [7146] = 506, + [7147] = 507, + [7148] = 508, + [7149] = 509, + [7150] = 514, + [7151] = 515, + [7152] = 517, + [7153] = 518, + [7154] = 519, + [7155] = 520, + [7156] = 521, + [7157] = 522, + [7158] = 523, + [7159] = 2129, + [7160] = 2132, + [7161] = 2136, + [7162] = 2619, + [7163] = 2142, + [7164] = 2145, + [7165] = 529, + [7166] = 2524, + [7167] = 496, + [7168] = 2648, + [7169] = 2649, + [7170] = 2655, + [7171] = 2578, + [7172] = 2496, + [7173] = 2497, + [7174] = 2157, + [7175] = 2504, + [7176] = 2505, + [7177] = 2506, + [7178] = 2168, + [7179] = 2510, + [7180] = 2579, + [7181] = 2513, + [7182] = 2514, + [7183] = 2526, + [7184] = 2527, + [7185] = 2129, + [7186] = 2132, + [7187] = 2136, + [7188] = 2140, + [7189] = 2142, + [7190] = 2145, + [7191] = 2580, + [7192] = 2556, + [7193] = 2603, + [7194] = 2581, + [7195] = 2606, + [7196] = 2609, + [7197] = 2610, + [7198] = 2582, + [7199] = 2583, + [7200] = 2613, + [7201] = 2584, + [7202] = 516, + [7203] = 2616, + [7204] = 2558, + [7205] = 2617, + [7206] = 2559, + [7207] = 2618, + [7208] = 2140, + [7209] = 2318, + [7210] = 2525, + [7211] = 2604, + [7212] = 2144, + [7213] = 2146, + [7214] = 2843, + [7215] = 2844, + [7216] = 2735, + [7217] = 2535, + [7218] = 2158, + [7219] = 2159, + [7220] = 2160, + [7221] = 2165, + [7222] = 2166, + [7223] = 2167, + [7224] = 2659, + [7225] = 2151, + [7226] = 2648, + [7227] = 2646, + [7228] = 2845, + [7229] = 2536, + [7230] = 2667, + [7231] = 2668, + [7232] = 2669, + [7233] = 2169, + [7234] = 2170, + [7235] = 2171, + [7236] = 2172, + [7237] = 2178, + [7238] = 2181, + [7239] = 2183, + [7240] = 2184, + [7241] = 2185, + [7242] = 2186, + [7243] = 2551, + [7244] = 2846, + [7245] = 2649, + [7246] = 2847, + [7247] = 2552, + [7248] = 2670, + [7249] = 2686, + [7250] = 2687, + [7251] = 2187, + [7252] = 2188, + [7253] = 2189, + [7254] = 2194, + [7255] = 2195, + [7256] = 2198, + [7257] = 2199, + [7258] = 2137, + [7259] = 2736, + [7260] = 2696, + [7261] = 2848, + [7262] = 2849, + [7263] = 2697, + [7264] = 2703, + [7265] = 7265, + [7266] = 2743, + [7267] = 2201, + [7268] = 2139, + [7269] = 2202, + [7270] = 2203, + [7271] = 2204, + [7272] = 2205, + [7273] = 2206, + [7274] = 2712, + [7275] = 2523, + [7276] = 2553, + [7277] = 2744, + [7278] = 2207, + [7279] = 2208, + [7280] = 2213, + [7281] = 2214, + [7282] = 2745, + [7283] = 2217, + [7284] = 2544, + [7285] = 2219, + [7286] = 2220, + [7287] = 2221, + [7288] = 2222, + [7289] = 2223, + [7290] = 2224, + [7291] = 2225, + [7292] = 2226, + [7293] = 2227, + [7294] = 2228, + [7295] = 2229, + [7296] = 2233, + [7297] = 2237, + [7298] = 2238, + [7299] = 2240, + [7300] = 2241, + [7301] = 2242, + [7302] = 2243, + [7303] = 2244, + [7304] = 2245, + [7305] = 2246, + [7306] = 2247, + [7307] = 2248, + [7308] = 2249, + [7309] = 2250, + [7310] = 2251, + [7311] = 2252, + [7312] = 2713, + [7313] = 2545, + [7314] = 2253, + [7315] = 2254, + [7316] = 2258, + [7317] = 2261, + [7318] = 2262, + [7319] = 2264, + [7320] = 2265, + [7321] = 2266, + [7322] = 2267, + [7323] = 2268, + [7324] = 2269, + [7325] = 2270, + [7326] = 2271, + [7327] = 2272, + [7328] = 2273, + [7329] = 2274, + [7330] = 2275, + [7331] = 2276, + [7332] = 2277, + [7333] = 2278, + [7334] = 2279, + [7335] = 2280, + [7336] = 2281, + [7337] = 2282, + [7338] = 2283, + [7339] = 2284, + [7340] = 2286, + [7341] = 2289, + [7342] = 2290, + [7343] = 2291, + [7344] = 2292, + [7345] = 2295, + [7346] = 2296, + [7347] = 2297, + [7348] = 2298, + [7349] = 2300, + [7350] = 2301, + [7351] = 2302, + [7352] = 2303, + [7353] = 2304, + [7354] = 2305, + [7355] = 2306, + [7356] = 2307, + [7357] = 2308, + [7358] = 2309, + [7359] = 2310, + [7360] = 2311, + [7361] = 2312, + [7362] = 2313, + [7363] = 2314, + [7364] = 2315, + [7365] = 2316, + [7366] = 2317, + [7367] = 2645, + [7368] = 2319, + [7369] = 2320, + [7370] = 2321, + [7371] = 2322, + [7372] = 2323, + [7373] = 2327, + [7374] = 2328, + [7375] = 2331, + [7376] = 2332, + [7377] = 2333, + [7378] = 2334, + [7379] = 2336, + [7380] = 2337, + [7381] = 2338, + [7382] = 2339, + [7383] = 2340, + [7384] = 2341, + [7385] = 2342, + [7386] = 2343, + [7387] = 2344, + [7388] = 2345, + [7389] = 2346, + [7390] = 2347, + [7391] = 2348, + [7392] = 2349, + [7393] = 2350, + [7394] = 2351, + [7395] = 2352, + [7396] = 2353, + [7397] = 2354, + [7398] = 2355, + [7399] = 2356, + [7400] = 2357, + [7401] = 2358, + [7402] = 2359, + [7403] = 2363, + [7404] = 2364, + [7405] = 2367, + [7406] = 2368, + [7407] = 2369, + [7408] = 2370, + [7409] = 2372, + [7410] = 2374, + [7411] = 2375, + [7412] = 2376, + [7413] = 2377, + [7414] = 2528, + [7415] = 2378, + [7416] = 2379, + [7417] = 2380, + [7418] = 2381, + [7419] = 2382, + [7420] = 2383, + [7421] = 2384, + [7422] = 2385, + [7423] = 2386, + [7424] = 2387, + [7425] = 2388, + [7426] = 2389, + [7427] = 2390, + [7428] = 2391, + [7429] = 2392, + [7430] = 2393, + [7431] = 2394, + [7432] = 2395, + [7433] = 2399, + [7434] = 2400, + [7435] = 2403, + [7436] = 2404, + [7437] = 2405, + [7438] = 2406, + [7439] = 2408, + [7440] = 2409, + [7441] = 2410, + [7442] = 2411, + [7443] = 2412, + [7444] = 2413, + [7445] = 2414, + [7446] = 2415, + [7447] = 2416, + [7448] = 2417, + [7449] = 2418, + [7450] = 2419, + [7451] = 2420, + [7452] = 2421, + [7453] = 2422, + [7454] = 2423, + [7455] = 2424, + [7456] = 2425, + [7457] = 2426, + [7458] = 2427, + [7459] = 2428, + [7460] = 2429, + [7461] = 2430, + [7462] = 2431, + [7463] = 2435, + [7464] = 2436, + [7465] = 2439, + [7466] = 2440, + [7467] = 2441, + [7468] = 2442, + [7469] = 2444, + [7470] = 2445, + [7471] = 2446, + [7472] = 2447, + [7473] = 2448, + [7474] = 2449, + [7475] = 2450, + [7476] = 2451, + [7477] = 2452, + [7478] = 2453, + [7479] = 2454, + [7480] = 2455, + [7481] = 2456, + [7482] = 2457, + [7483] = 2458, + [7484] = 2459, + [7485] = 2460, + [7486] = 2461, + [7487] = 2462, + [7488] = 2463, + [7489] = 2464, + [7490] = 2465, + [7491] = 2466, + [7492] = 2467, + [7493] = 2471, + [7494] = 2472, + [7495] = 2475, + [7496] = 2476, + [7497] = 2477, + [7498] = 2478, + [7499] = 2480, + [7500] = 2481, + [7501] = 2482, + [7502] = 2483, + [7503] = 2484, + [7504] = 2485, + [7505] = 2486, + [7506] = 2487, + [7507] = 2488, + [7508] = 2489, + [7509] = 2490, + [7510] = 2491, + [7511] = 2492, + [7512] = 2493, + [7513] = 2494, + [7514] = 2495, + [7515] = 2547, + [7516] = 2529, + [7517] = 2548, + [7518] = 2714, + [7519] = 2746, + [7520] = 2753, + [7521] = 2802, + [7522] = 2721, + [7523] = 2549, + [7524] = 2530, + [7525] = 2554, + [7526] = 7526, + [7527] = 2550, + [7528] = 2575, + [7529] = 2555, + [7530] = 2531, + [7531] = 2657, + [7532] = 2840, + [7533] = 2841, + [7534] = 2842, + [7535] = 2658, + [7536] = 2576, + [7537] = 2120, + [7538] = 2121, + [7539] = 2134, + [7540] = 2122, + [7541] = 2135, + [7542] = 2577, + [7543] = 2592, + [7544] = 2524, + [7545] = 2126, + [7546] = 2593, + [7547] = 2594, + [7548] = 2622, + [7549] = 2127, + [7550] = 2128, + [7551] = 2734, + [7552] = 2814, + [7553] = 2633, + [7554] = 2133, + [7555] = 2143, + [7556] = 2815, + [7557] = 2824, + [7558] = 2825, + [7559] = 2826, + [7560] = 2634, + [7561] = 2635, + [7562] = 2373, + [7563] = 7563, + [7564] = 7564, + [7565] = 7565, + [7566] = 7566, + [7567] = 7566, + [7568] = 5302, + [7569] = 7566, + [7570] = 7566, + [7571] = 7566, + [7572] = 7566, + [7573] = 7566, + [7574] = 2132, + [7575] = 7566, + [7576] = 7566, + [7577] = 7566, + [7578] = 2136, + [7579] = 2145, + [7580] = 2140, + [7581] = 2142, + [7582] = 7566, + [7583] = 7566, + [7584] = 7566, + [7585] = 7566, + [7586] = 7566, + [7587] = 7566, + [7588] = 2129, + [7589] = 7566, + [7590] = 7590, + [7591] = 7591, + [7592] = 7592, + [7593] = 7593, + [7594] = 7594, + [7595] = 7595, + [7596] = 7596, + [7597] = 7597, + [7598] = 7598, + [7599] = 7599, + [7600] = 7600, + [7601] = 7599, + [7602] = 7600, + [7603] = 7599, + [7604] = 7600, + [7605] = 7599, + [7606] = 7600, + [7607] = 7599, + [7608] = 7600, + [7609] = 7599, + [7610] = 7600, + [7611] = 7600, + [7612] = 7599, + [7613] = 7599, + [7614] = 7600, + [7615] = 7599, + [7616] = 7600, + [7617] = 7600, + [7618] = 7599, + [7619] = 7619, + [7620] = 7600, + [7621] = 7599, + [7622] = 7622, + [7623] = 7623, + [7624] = 7624, + [7625] = 7625, + [7626] = 7624, + [7627] = 7624, + [7628] = 7622, + [7629] = 7623, + [7630] = 7625, + [7631] = 7622, + [7632] = 7623, + [7633] = 7622, + [7634] = 7623, + [7635] = 7635, + [7636] = 7623, + [7637] = 7622, + [7638] = 7623, + [7639] = 7622, + [7640] = 7623, + [7641] = 7624, + [7642] = 7622, + [7643] = 7622, + [7644] = 7624, + [7645] = 7625, + [7646] = 7624, + [7647] = 7625, + [7648] = 7625, + [7649] = 7625, + [7650] = 7624, + [7651] = 7625, + [7652] = 7652, + [7653] = 7653, + [7654] = 7625, + [7655] = 7624, + [7656] = 7624, + [7657] = 7625, + [7658] = 7625, + [7659] = 7622, + [7660] = 7623, + [7661] = 7625, + [7662] = 7625, + [7663] = 7623, + [7664] = 7664, + [7665] = 7624, + [7666] = 7624, + [7667] = 7624, + [7668] = 7668, + [7669] = 7669, + [7670] = 7670, + [7671] = 7671, + [7672] = 7672, + [7673] = 7673, + [7674] = 7674, + [7675] = 7675, + [7676] = 7670, + [7677] = 7677, + [7678] = 7678, + [7679] = 7673, + [7680] = 7674, + [7681] = 7675, + [7682] = 7670, + [7683] = 7678, + [7684] = 7673, + [7685] = 7673, + [7686] = 7674, + [7687] = 7675, + [7688] = 7670, + [7689] = 7674, + [7690] = 7675, + [7691] = 7673, + [7692] = 7674, + [7693] = 7673, + [7694] = 7674, + [7695] = 7670, + [7696] = 7677, + [7697] = 7697, + [7698] = 7678, + [7699] = 7675, + [7700] = 7673, + [7701] = 7677, + [7702] = 7702, + [7703] = 7678, + [7704] = 7678, + [7705] = 7705, + [7706] = 7678, + [7707] = 7677, + [7708] = 7677, + [7709] = 7675, + [7710] = 7678, + [7711] = 7678, + [7712] = 7670, + [7713] = 7677, + [7714] = 7714, + [7715] = 7677, + [7716] = 7673, + [7717] = 7674, + [7718] = 7675, + [7719] = 7670, + [7720] = 7673, + [7721] = 7678, + [7722] = 7677, + [7723] = 7677, + [7724] = 7674, + [7725] = 7675, + [7726] = 7674, + [7727] = 7673, + [7728] = 7674, + [7729] = 7675, + [7730] = 7677, + [7731] = 7678, + [7732] = 7670, + [7733] = 7670, + [7734] = 7734, + [7735] = 7678, + [7736] = 7677, + [7737] = 7673, + [7738] = 7678, + [7739] = 7677, + [7740] = 7674, + [7741] = 7741, + [7742] = 7742, + [7743] = 7743, + [7744] = 7744, + [7745] = 7745, + [7746] = 7746, + [7747] = 7747, + [7748] = 7748, + [7749] = 7749, + [7750] = 7750, + [7751] = 7751, + [7752] = 7752, + [7753] = 7747, + [7754] = 7754, + [7755] = 7746, + [7756] = 7743, + [7757] = 7751, + [7758] = 7748, + [7759] = 7759, + [7760] = 7743, + [7761] = 7749, + [7762] = 7750, + [7763] = 7763, + [7764] = 7764, + [7765] = 7748, + [7766] = 7743, + [7767] = 7749, + [7768] = 7750, + [7769] = 7769, + [7770] = 7747, + [7771] = 7752, + [7772] = 7772, + [7773] = 7752, + [7774] = 7772, + [7775] = 7754, + [7776] = 7754, + [7777] = 7764, + [7778] = 7764, + [7779] = 7748, + [7780] = 7759, + [7781] = 7747, + [7782] = 7769, + [7783] = 7744, + [7784] = 7745, + [7785] = 7785, + [7786] = 7763, + [7787] = 7746, + [7788] = 7788, + [7789] = 7751, + [7790] = 7747, + [7791] = 7763, + [7792] = 7749, + [7793] = 7743, + [7794] = 7748, + [7795] = 7759, + [7796] = 7752, + [7797] = 7772, + [7798] = 7754, + [7799] = 7764, + [7800] = 7785, + [7801] = 7742, + [7802] = 7788, + [7803] = 7769, + [7804] = 7744, + [7805] = 7763, + [7806] = 7745, + [7807] = 7749, + [7808] = 7750, + [7809] = 7743, + [7810] = 7747, + [7811] = 7742, + [7812] = 7748, + [7813] = 7763, + [7814] = 7752, + [7815] = 7746, + [7816] = 7752, + [7817] = 7772, + [7818] = 7772, + [7819] = 7754, + [7820] = 7751, + [7821] = 7759, + [7822] = 7748, + [7823] = 7769, + [7824] = 7744, + [7825] = 7749, + [7826] = 7750, + [7827] = 7747, + [7828] = 7764, + [7829] = 7754, + [7830] = 7745, + [7831] = 7763, + [7832] = 7754, + [7833] = 7746, + [7834] = 7751, + [7835] = 7764, + [7836] = 7743, + [7837] = 7748, + [7838] = 7749, + [7839] = 7750, + [7840] = 7743, + [7841] = 7752, + [7842] = 7772, + [7843] = 7754, + [7844] = 7764, + [7845] = 7750, + [7846] = 7759, + [7847] = 7769, + [7848] = 7744, + [7849] = 7745, + [7850] = 7785, + [7851] = 7788, + [7852] = 7759, + [7853] = 7763, + [7854] = 7769, + [7855] = 7759, + [7856] = 7744, + [7857] = 7769, + [7858] = 7744, + [7859] = 7745, + [7860] = 7746, + [7861] = 7764, + [7862] = 7751, + [7863] = 7749, + [7864] = 7763, + [7865] = 7750, + [7866] = 7785, + [7867] = 7747, + [7868] = 7759, + [7869] = 7751, + [7870] = 7769, + [7871] = 7744, + [7872] = 7745, + [7873] = 7745, + [7874] = 7785, + [7875] = 7788, + [7876] = 7752, + [7877] = 7772, + [7878] = 7747, + [7879] = 7763, + [7880] = 7746, + [7881] = 7751, + [7882] = 7746, + [7883] = 7743, + [7884] = 7748, + [7885] = 7749, + [7886] = 7750, + [7887] = 7752, + [7888] = 7752, + [7889] = 7772, + [7890] = 7754, + [7891] = 7764, + [7892] = 7772, + [7893] = 7759, + [7894] = 7769, + [7895] = 7744, + [7896] = 7745, + [7897] = 7785, + [7898] = 7788, + [7899] = 7763, + [7900] = 7754, + [7901] = 7747, + [7902] = 7751, + [7903] = 7788, + [7904] = 7744, + [7905] = 7785, + [7906] = 7785, + [7907] = 7764, + [7908] = 7788, + [7909] = 7752, + [7910] = 7745, + [7911] = 7785, + [7912] = 7788, + [7913] = 7743, + [7914] = 7743, + [7915] = 7785, + [7916] = 7772, + [7917] = 7788, + [7918] = 7754, + [7919] = 7746, + [7920] = 7759, + [7921] = 7788, + [7922] = 7785, + [7923] = 7788, + [7924] = 7748, + [7925] = 7759, + [7926] = 7747, + [7927] = 7769, + [7928] = 7746, + [7929] = 7751, + [7930] = 7769, + [7931] = 7749, + [7932] = 7750, + [7933] = 7785, + [7934] = 7788, + [7935] = 7744, + [7936] = 7751, + [7937] = 7742, + [7938] = 7763, + [7939] = 7764, + [7940] = 7742, + [7941] = 7742, + [7942] = 7763, + [7943] = 7745, + [7944] = 7742, + [7945] = 7742, + [7946] = 7742, + [7947] = 7747, + [7948] = 7742, + [7949] = 7748, + [7950] = 7742, + [7951] = 7746, + [7952] = 7751, + [7953] = 7749, + [7954] = 7743, + [7955] = 7742, + [7956] = 7745, + [7957] = 7748, + [7958] = 7749, + [7959] = 7750, + [7960] = 7750, + [7961] = 7752, + [7962] = 7772, + [7963] = 7754, + [7964] = 7764, + [7965] = 7772, + [7966] = 7759, + [7967] = 7769, + [7968] = 7744, + [7969] = 7746, + [7970] = 7970, + [7971] = 7971, + [7972] = 7972, + [7973] = 7973, + [7974] = 7974, + [7975] = 7975, + [7976] = 7976, + [7977] = 7977, + [7978] = 7978, + [7979] = 7972, + [7980] = 7980, + [7981] = 7971, + [7982] = 7976, + [7983] = 7973, + [7984] = 7972, + [7985] = 7973, + [7986] = 7986, + [7987] = 7980, + [7988] = 7980, + [7989] = 7989, + [7990] = 7972, + [7991] = 7991, + [7992] = 7972, + [7993] = 7993, + [7994] = 7980, + [7995] = 7973, + [7996] = 7973, + [7997] = 7997, + [7998] = 7998, + [7999] = 7971, + [8000] = 7975, + [8001] = 7978, + [8002] = 7980, + [8003] = 7997, + [8004] = 7986, + [8005] = 8005, + [8006] = 8006, + [8007] = 7998, + [8008] = 7977, + [8009] = 7978, + [8010] = 7980, + [8011] = 7989, + [8012] = 7989, + [8013] = 8005, + [8014] = 7991, + [8015] = 7991, + [8016] = 7993, + [8017] = 7993, + [8018] = 8006, + [8019] = 7977, + [8020] = 7998, + [8021] = 7978, + [8022] = 7998, + [8023] = 7971, + [8024] = 7976, + [8025] = 7971, + [8026] = 7975, + [8027] = 7977, + [8028] = 7974, + [8029] = 7978, + [8030] = 7976, + [8031] = 7975, + [8032] = 7986, + [8033] = 7978, + [8034] = 7989, + [8035] = 7977, + [8036] = 7997, + [8037] = 7991, + [8038] = 7993, + [8039] = 7977, + [8040] = 8005, + [8041] = 8006, + [8042] = 7980, + [8043] = 8043, + [8044] = 8005, + [8045] = 7998, + [8046] = 7977, + [8047] = 7977, + [8048] = 7970, + [8049] = 8005, + [8050] = 7986, + [8051] = 7975, + [8052] = 8005, + [8053] = 8043, + [8054] = 8006, + [8055] = 7989, + [8056] = 8005, + [8057] = 7991, + [8058] = 7974, + [8059] = 7993, + [8060] = 7976, + [8061] = 7976, + [8062] = 7974, + [8063] = 7971, + [8064] = 7977, + [8065] = 7970, + [8066] = 8043, + [8067] = 7974, + [8068] = 7972, + [8069] = 7973, + [8070] = 8006, + [8071] = 7980, + [8072] = 7975, + [8073] = 7989, + [8074] = 7998, + [8075] = 7991, + [8076] = 7993, + [8077] = 7997, + [8078] = 7976, + [8079] = 7998, + [8080] = 7971, + [8081] = 7975, + [8082] = 7978, + [8083] = 7986, + [8084] = 7997, + [8085] = 7976, + [8086] = 8005, + [8087] = 8006, + [8088] = 7977, + [8089] = 7997, + [8090] = 7986, + [8091] = 7998, + [8092] = 8006, + [8093] = 8006, + [8094] = 7974, + [8095] = 8005, + [8096] = 7989, + [8097] = 7997, + [8098] = 7972, + [8099] = 7973, + [8100] = 7986, + [8101] = 7980, + [8102] = 7970, + [8103] = 7971, + [8104] = 8006, + [8105] = 7975, + [8106] = 7978, + [8107] = 7972, + [8108] = 7975, + [8109] = 7973, + [8110] = 8043, + [8111] = 7980, + [8112] = 7974, + [8113] = 7971, + [8114] = 7975, + [8115] = 7978, + [8116] = 7978, + [8117] = 7997, + [8118] = 8043, + [8119] = 7970, + [8120] = 8120, + [8121] = 7989, + [8122] = 7997, + [8123] = 8043, + [8124] = 7971, + [8125] = 8125, + [8126] = 7975, + [8127] = 7978, + [8128] = 7991, + [8129] = 7970, + [8130] = 7997, + [8131] = 8043, + [8132] = 7998, + [8133] = 7971, + [8134] = 7971, + [8135] = 7975, + [8136] = 7978, + [8137] = 7986, + [8138] = 7986, + [8139] = 8005, + [8140] = 8006, + [8141] = 7993, + [8142] = 8142, + [8143] = 8043, + [8144] = 8043, + [8145] = 7972, + [8146] = 7973, + [8147] = 7974, + [8148] = 7976, + [8149] = 7977, + [8150] = 7972, + [8151] = 7997, + [8152] = 7980, + [8153] = 7974, + [8154] = 8043, + [8155] = 8005, + [8156] = 8120, + [8157] = 7977, + [8158] = 7970, + [8159] = 7970, + [8160] = 7989, + [8161] = 8120, + [8162] = 7989, + [8163] = 8120, + [8164] = 7974, + [8165] = 7976, + [8166] = 7973, + [8167] = 8120, + [8168] = 7998, + [8169] = 8005, + [8170] = 8120, + [8171] = 7974, + [8172] = 8120, + [8173] = 7986, + [8174] = 7986, + [8175] = 7991, + [8176] = 7991, + [8177] = 8120, + [8178] = 7976, + [8179] = 8043, + [8180] = 7993, + [8181] = 8120, + [8182] = 7993, + [8183] = 8120, + [8184] = 7972, + [8185] = 7991, + [8186] = 8006, + [8187] = 8120, + [8188] = 7970, + [8189] = 7974, + [8190] = 7993, + [8191] = 7976, + [8192] = 7973, + [8193] = 7986, + [8194] = 7970, + [8195] = 7970, + [8196] = 8006, + [8197] = 7989, + [8198] = 7972, + [8199] = 7973, + [8200] = 7998, + [8201] = 7980, + [8202] = 7998, + [8203] = 7989, + [8204] = 7970, + [8205] = 7991, + [8206] = 7993, + [8207] = 8043, + [8208] = 7991, + [8209] = 7993, + [8210] = 7997, + [8211] = 8211, + [8212] = 8211, + [8213] = 8211, + [8214] = 8211, + [8215] = 8211, + [8216] = 8211, + [8217] = 8211, + [8218] = 8211, + [8219] = 8211, + [8220] = 8211, + [8221] = 8211, + [8222] = 8211, + [8223] = 612, + [8224] = 2603, + [8225] = 674, + [8226] = 766, + [8227] = 735, + [8228] = 2565, + [8229] = 2168, + [8230] = 2623, + [8231] = 2624, + [8232] = 2527, + [8233] = 2636, + [8234] = 2637, + [8235] = 2606, + [8236] = 2609, + [8237] = 2610, + [8238] = 766, + [8239] = 2613, + [8240] = 2655, + [8241] = 2157, + [8242] = 2496, + [8243] = 2497, + [8244] = 2556, + [8245] = 2660, + [8246] = 2616, + [8247] = 2617, + [8248] = 2504, + [8249] = 2558, + [8250] = 2559, + [8251] = 2505, + [8252] = 2618, + [8253] = 2506, + [8254] = 2619, + [8255] = 2563, + [8256] = 2564, + [8257] = 2569, + [8258] = 2570, + [8259] = 2571, + [8260] = 2572, + [8261] = 2573, + [8262] = 735, + [8263] = 2578, + [8264] = 2579, + [8265] = 2580, + [8266] = 2581, + [8267] = 2582, + [8268] = 2583, + [8269] = 2584, + [8270] = 2585, + [8271] = 2586, + [8272] = 2587, + [8273] = 2588, + [8274] = 2589, + [8275] = 2590, + [8276] = 2591, + [8277] = 2595, + [8278] = 2596, + [8279] = 2597, + [8280] = 2598, + [8281] = 2599, + [8282] = 2513, + [8283] = 2600, + [8284] = 2601, + [8285] = 2602, + [8286] = 2510, + [8287] = 2514, + [8288] = 2526, + [8289] = 674, + [8290] = 612, + [8291] = 2535, + [8292] = 2525, + [8293] = 735, + [8294] = 766, + [8295] = 8295, + [8296] = 2602, + [8297] = 2571, + [8298] = 2537, + [8299] = 2572, + [8300] = 2526, + [8301] = 2527, + [8302] = 2558, + [8303] = 2589, + [8304] = 498, + [8305] = 2514, + [8306] = 516, + [8307] = 496, + [8308] = 2600, + [8309] = 2157, + [8310] = 2606, + [8311] = 497, + [8312] = 2609, + [8313] = 2590, + [8314] = 2636, + [8315] = 2601, + [8316] = 2591, + [8317] = 2504, + [8318] = 2505, + [8319] = 2506, + [8320] = 2595, + [8321] = 2596, + [8322] = 2597, + [8323] = 2598, + [8324] = 2599, + [8325] = 2613, + [8326] = 2623, + [8327] = 2624, + [8328] = 2587, + [8329] = 2588, + [8330] = 2655, + [8331] = 2578, + [8332] = 2141, + [8333] = 2579, + [8334] = 2580, + [8335] = 2581, + [8336] = 2637, + [8337] = 2582, + [8338] = 2569, + [8339] = 2616, + [8340] = 2583, + [8341] = 2563, + [8342] = 2584, + [8343] = 2496, + [8344] = 2564, + [8345] = 2497, + [8346] = 2617, + [8347] = 2168, + [8348] = 2510, + [8349] = 503, + [8350] = 2565, + [8351] = 2570, + [8352] = 2141, + [8353] = 2559, + [8354] = 2573, + [8355] = 8355, + [8356] = 2618, + [8357] = 2619, + [8358] = 2603, + [8359] = 2660, + [8360] = 2585, + [8361] = 2610, + [8362] = 2586, + [8363] = 2556, + [8364] = 2513, + [8365] = 8365, + [8366] = 2461, + [8367] = 2668, + [8368] = 2669, + [8369] = 2670, + [8370] = 2686, + [8371] = 2340, + [8372] = 2341, + [8373] = 2687, + [8374] = 2342, + [8375] = 2291, + [8376] = 2270, + [8377] = 2203, + [8378] = 2204, + [8379] = 2205, + [8380] = 2696, + [8381] = 2206, + [8382] = 2697, + [8383] = 2292, + [8384] = 2343, + [8385] = 2344, + [8386] = 2345, + [8387] = 2346, + [8388] = 2347, + [8389] = 2348, + [8390] = 2349, + [8391] = 2554, + [8392] = 2181, + [8393] = 2350, + [8394] = 2240, + [8395] = 2535, + [8396] = 2351, + [8397] = 2158, + [8398] = 2352, + [8399] = 2353, + [8400] = 2159, + [8401] = 2354, + [8402] = 2355, + [8403] = 2160, + [8404] = 2555, + [8405] = 2356, + [8406] = 2357, + [8407] = 2358, + [8408] = 2165, + [8409] = 2359, + [8410] = 2363, + [8411] = 2364, + [8412] = 2367, + [8413] = 2368, + [8414] = 2369, + [8415] = 2370, + [8416] = 2372, + [8417] = 2703, + [8418] = 2373, + [8419] = 2374, + [8420] = 2712, + [8421] = 2375, + [8422] = 2376, + [8423] = 2377, + [8424] = 2378, + [8425] = 2379, + [8426] = 2380, + [8427] = 2381, + [8428] = 2382, + [8429] = 2383, + [8430] = 2384, + [8431] = 2385, + [8432] = 2386, + [8433] = 2387, + [8434] = 2388, + [8435] = 2389, + [8436] = 2604, + [8437] = 2390, + [8438] = 2391, + [8439] = 2392, + [8440] = 2393, + [8441] = 2394, + [8442] = 2395, + [8443] = 2713, + [8444] = 2714, + [8445] = 2721, + [8446] = 2399, + [8447] = 2400, + [8448] = 2403, + [8449] = 2404, + [8450] = 2405, + [8451] = 2406, + [8452] = 2408, + [8453] = 2409, + [8454] = 2410, + [8455] = 2411, + [8456] = 2412, + [8457] = 2413, + [8458] = 2414, + [8459] = 2415, + [8460] = 2416, + [8461] = 2166, + [8462] = 529, + [8463] = 2417, + [8464] = 2418, + [8465] = 2419, + [8466] = 2420, + [8467] = 2421, + [8468] = 2422, + [8469] = 2423, + [8470] = 2424, + [8471] = 2425, + [8472] = 2426, + [8473] = 2427, + [8474] = 2428, + [8475] = 2295, + [8476] = 2528, + [8477] = 2296, + [8478] = 2167, + [8479] = 2529, + [8480] = 501, + [8481] = 502, + [8482] = 2297, + [8483] = 2298, + [8484] = 2300, + [8485] = 2429, + [8486] = 2207, + [8487] = 2208, + [8488] = 2213, + [8489] = 2430, + [8490] = 504, + [8491] = 505, + [8492] = 2301, + [8493] = 2431, + [8494] = 8494, + [8495] = 2214, + [8496] = 5302, + [8497] = 506, + [8498] = 2530, + [8499] = 2531, + [8500] = 2217, + [8501] = 507, + [8502] = 2435, + [8503] = 2302, + [8504] = 508, + [8505] = 2219, + [8506] = 2303, + [8507] = 2220, + [8508] = 2221, + [8509] = 2436, + [8510] = 2439, + [8511] = 2440, + [8512] = 2304, + [8513] = 2222, + [8514] = 2441, + [8515] = 2442, + [8516] = 2444, + [8517] = 2445, + [8518] = 2446, + [8519] = 2447, + [8520] = 2448, + [8521] = 2449, + [8522] = 2450, + [8523] = 2451, + [8524] = 2452, + [8525] = 2453, + [8526] = 2454, + [8527] = 2455, + [8528] = 2456, + [8529] = 2457, + [8530] = 2458, + [8531] = 2459, + [8532] = 2460, + [8533] = 2189, + [8534] = 2462, + [8535] = 2463, + [8536] = 2464, + [8537] = 2465, + [8538] = 2466, + [8539] = 2467, + [8540] = 2471, + [8541] = 2472, + [8542] = 2475, + [8543] = 2476, + [8544] = 2477, + [8545] = 2478, + [8546] = 2480, + [8547] = 2481, + [8548] = 2482, + [8549] = 2483, + [8550] = 2484, + [8551] = 2485, + [8552] = 2486, + [8553] = 2487, + [8554] = 2223, + [8555] = 2488, + [8556] = 2224, + [8557] = 2489, + [8558] = 2225, + [8559] = 2490, + [8560] = 2226, + [8561] = 2227, + [8562] = 2228, + [8563] = 2249, + [8564] = 2552, + [8565] = 2575, + [8566] = 2492, + [8567] = 2493, + [8568] = 2305, + [8569] = 2494, + [8570] = 2576, + [8571] = 2577, + [8572] = 2553, + [8573] = 2495, + [8574] = 509, + [8575] = 2734, + [8576] = 2271, + [8577] = 2735, + [8578] = 2183, + [8579] = 2184, + [8580] = 2736, + [8581] = 2537, + [8582] = 2185, + [8583] = 2272, + [8584] = 2128, + [8585] = 2306, + [8586] = 2307, + [8587] = 2743, + [8588] = 2195, + [8589] = 2308, + [8590] = 2309, + [8591] = 2186, + [8592] = 2238, + [8593] = 2310, + [8594] = 2311, + [8595] = 2744, + [8596] = 514, + [8597] = 2745, + [8598] = 2312, + [8599] = 2313, + [8600] = 2746, + [8601] = 2753, + [8602] = 2802, + [8603] = 2314, + [8604] = 2315, + [8605] = 497, + [8606] = 2592, + [8607] = 2264, + [8608] = 2151, + [8609] = 2316, + [8610] = 2172, + [8611] = 2814, + [8612] = 2815, + [8613] = 2824, + [8614] = 2286, + [8615] = 2825, + [8616] = 2826, + [8617] = 2593, + [8618] = 2198, + [8619] = 2317, + [8620] = 2594, + [8621] = 2318, + [8622] = 515, + [8623] = 2265, + [8624] = 2229, + [8625] = 2319, + [8626] = 2170, + [8627] = 2241, + [8628] = 2320, + [8629] = 2321, + [8630] = 2199, + [8631] = 2622, + [8632] = 2273, + [8633] = 2274, + [8634] = 2536, + [8635] = 2322, + [8636] = 2275, + [8637] = 2258, + [8638] = 2840, + [8639] = 2841, + [8640] = 2842, + [8641] = 2843, + [8642] = 2844, + [8643] = 2845, + [8644] = 2134, + [8645] = 2633, + [8646] = 2251, + [8647] = 2634, + [8648] = 2323, + [8649] = 2242, + [8650] = 2250, + [8651] = 2252, + [8652] = 2327, + [8653] = 2135, + [8654] = 2846, + [8655] = 2847, + [8656] = 2848, + [8657] = 2849, + [8658] = 2328, + [8659] = 2137, + [8660] = 2139, + [8661] = 2523, + [8662] = 2635, + [8663] = 2645, + [8664] = 517, + [8665] = 2646, + [8666] = 2194, + [8667] = 2266, + [8668] = 2267, + [8669] = 2550, + [8670] = 2331, + [8671] = 518, + [8672] = 2243, + [8673] = 2133, + [8674] = 2657, + [8675] = 2171, + [8676] = 519, + [8677] = 2544, + [8678] = 2658, + [8679] = 2659, + [8680] = 2268, + [8681] = 2247, + [8682] = 520, + [8683] = 521, + [8684] = 2545, + [8685] = 2261, + [8686] = 2551, + [8687] = 2547, + [8688] = 2120, + [8689] = 522, + [8690] = 2121, + [8691] = 2122, + [8692] = 2548, + [8693] = 2549, + [8694] = 2178, + [8695] = 2143, + [8696] = 523, + [8697] = 2169, + [8698] = 2332, + [8699] = 2289, + [8700] = 2333, + [8701] = 2201, + [8702] = 2276, + [8703] = 2277, + [8704] = 2334, + [8705] = 2278, + [8706] = 2279, + [8707] = 2233, + [8708] = 2336, + [8709] = 2237, + [8710] = 2244, + [8711] = 2280, + [8712] = 2290, + [8713] = 2245, + [8714] = 2337, + [8715] = 2146, + [8716] = 2147, + [8717] = 2148, + [8718] = 2667, + [8719] = 2281, + [8720] = 2269, + [8721] = 2282, + [8722] = 2202, + [8723] = 2525, + [8724] = 2283, + [8725] = 2144, + [8726] = 2246, + [8727] = 2248, + [8728] = 2262, + [8729] = 2253, + [8730] = 2338, + [8731] = 2126, + [8732] = 2127, + [8733] = 2339, + [8734] = 2254, + [8735] = 2187, + [8736] = 2188, + [8737] = 2284, + [8738] = 2491, + [8739] = 2136, + [8740] = 519, + [8741] = 2142, + [8742] = 506, + [8743] = 515, + [8744] = 2129, + [8745] = 2534, + [8746] = 507, + [8747] = 508, + [8748] = 2129, + [8749] = 2140, + [8750] = 509, + [8751] = 2145, + [8752] = 520, + [8753] = 2129, + [8754] = 529, + [8755] = 521, + [8756] = 2534, + [8757] = 522, + [8758] = 523, + [8759] = 2136, + [8760] = 2132, + [8761] = 2648, + [8762] = 2132, + [8763] = 504, + [8764] = 2132, + [8765] = 2136, + [8766] = 2129, + [8767] = 517, + [8768] = 2140, + [8769] = 2142, + [8770] = 2524, + [8771] = 2142, + [8772] = 2649, + [8773] = 501, + [8774] = 502, + [8775] = 505, + [8776] = 2140, + [8777] = 2534, + [8778] = 2142, + [8779] = 2132, + [8780] = 518, + [8781] = 2534, + [8782] = 2136, + [8783] = 2534, + [8784] = 2648, + [8785] = 2524, + [8786] = 2140, + [8787] = 2145, + [8788] = 2145, + [8789] = 2649, + [8790] = 2145, + [8791] = 8791, + [8792] = 514, + [8793] = 8793, + [8794] = 8794, + [8795] = 8795, + [8796] = 2534, + [8797] = 2648, + [8798] = 8798, + [8799] = 2649, + [8800] = 2534, + [8801] = 2534, + [8802] = 2534, + [8803] = 2524, + [8804] = 2534, + [8805] = 8805, + [8806] = 8806, + [8807] = 8807, + [8808] = 2648, + [8809] = 8809, + [8810] = 8810, + [8811] = 2649, + [8812] = 8812, + [8813] = 2524, + [8814] = 2145, + [8815] = 529, + [8816] = 2141, + [8817] = 2648, + [8818] = 2649, + [8819] = 2129, + [8820] = 2132, + [8821] = 519, + [8822] = 2136, + [8823] = 2140, + [8824] = 501, + [8825] = 502, + [8826] = 2141, + [8827] = 520, + [8828] = 2142, + [8829] = 514, + [8830] = 506, + [8831] = 504, + [8832] = 517, + [8833] = 2524, + [8834] = 507, + [8835] = 518, + [8836] = 2534, + [8837] = 2142, + [8838] = 2129, + [8839] = 508, + [8840] = 2132, + [8841] = 2145, + [8842] = 2534, + [8843] = 2136, + [8844] = 521, + [8845] = 522, + [8846] = 515, + [8847] = 505, + [8848] = 509, + [8849] = 523, + [8850] = 2140, + [8851] = 2142, + [8852] = 2129, + [8853] = 2534, + [8854] = 2132, + [8855] = 2136, + [8856] = 2140, + [8857] = 2524, + [8858] = 2534, + [8859] = 2145, + [8860] = 2534, + [8861] = 735, + [8862] = 2534, + [8863] = 766, + [8864] = 2129, + [8865] = 2132, + [8866] = 2136, + [8867] = 2140, + [8868] = 2142, + [8869] = 2145, + [8870] = 2141, + [8871] = 612, + [8872] = 2129, + [8873] = 2132, + [8874] = 2136, + [8875] = 2140, + [8876] = 2142, + [8877] = 2145, + [8878] = 2534, + [8879] = 2129, + [8880] = 2132, + [8881] = 2534, + [8882] = 2136, + [8883] = 2140, + [8884] = 2142, + [8885] = 2145, + [8886] = 2534, + [8887] = 2648, + [8888] = 2649, + [8889] = 2648, + [8890] = 2649, + [8891] = 2648, + [8892] = 2649, + [8893] = 2537, + [8894] = 497, + [8895] = 2524, + [8896] = 2524, + [8897] = 674, + [8898] = 517, + [8899] = 2534, + [8900] = 2585, + [8901] = 498, + [8902] = 2586, + [8903] = 2534, + [8904] = 2168, + [8905] = 2587, + [8906] = 2510, + [8907] = 503, + [8908] = 2588, + [8909] = 501, + [8910] = 502, + [8911] = 2565, + [8912] = 2534, + [8913] = 2648, + [8914] = 2513, + [8915] = 2649, + [8916] = 516, + [8917] = 2570, + [8918] = 2534, + [8919] = 2648, + [8920] = 2514, + [8921] = 2584, + [8922] = 2589, + [8923] = 2623, + [8924] = 2537, + [8925] = 497, + [8926] = 8926, + [8927] = 2496, + [8928] = 2595, + [8929] = 2596, + [8930] = 2597, + [8931] = 2598, + [8932] = 2599, + [8933] = 8933, + [8934] = 2636, + [8935] = 2637, + [8936] = 504, + [8937] = 2129, + [8938] = 505, + [8939] = 2571, + [8940] = 506, + [8941] = 2132, + [8942] = 2655, + [8943] = 2569, + [8944] = 2136, + [8945] = 2140, + [8946] = 2142, + [8947] = 507, + [8948] = 2145, + [8949] = 2624, + [8950] = 2147, + [8951] = 2148, + [8952] = 501, + [8953] = 502, + [8954] = 2648, + [8955] = 504, + [8956] = 505, + [8957] = 506, + [8958] = 507, + [8959] = 508, + [8960] = 509, + [8961] = 2556, + [8962] = 2603, + [8963] = 2572, + [8964] = 514, + [8965] = 515, + [8966] = 2600, + [8967] = 2649, + [8968] = 2564, + [8969] = 518, + [8970] = 519, + [8971] = 520, + [8972] = 521, + [8973] = 522, + [8974] = 523, + [8975] = 2601, + [8976] = 2606, + [8977] = 2609, + [8978] = 2660, + [8979] = 2613, + [8980] = 529, + [8981] = 2602, + [8982] = 2129, + [8983] = 2132, + [8984] = 2136, + [8985] = 2140, + [8986] = 2142, + [8987] = 2145, + [8988] = 2616, + [8989] = 2558, + [8990] = 2617, + [8991] = 2559, + [8992] = 2618, + [8993] = 2619, + [8994] = 2129, + [8995] = 2132, + [8996] = 2136, + [8997] = 2140, + [8998] = 2142, + [8999] = 2145, + [9000] = 508, + [9001] = 2573, + [9002] = 509, + [9003] = 2578, + [9004] = 2579, + [9005] = 514, + [9006] = 2129, + [9007] = 2132, + [9008] = 2136, + [9009] = 2534, + [9010] = 2140, + [9011] = 2534, + [9012] = 2142, + [9013] = 2145, + [9014] = 515, + [9015] = 2649, + [9016] = 517, + [9017] = 2580, + [9018] = 518, + [9019] = 519, + [9020] = 2524, + [9021] = 520, + [9022] = 2524, + [9023] = 2534, + [9024] = 2534, + [9025] = 2534, + [9026] = 521, + [9027] = 522, + [9028] = 2581, + [9029] = 523, + [9030] = 2648, + [9031] = 2649, + [9032] = 2582, + [9033] = 529, + [9034] = 2563, + [9035] = 2526, + [9036] = 2527, + [9037] = 2524, + [9038] = 2497, + [9039] = 2157, + [9040] = 2590, + [9041] = 2504, + [9042] = 2505, + [9043] = 2506, + [9044] = 2534, + [9045] = 496, + [9046] = 2583, + [9047] = 2524, + [9048] = 2591, + [9049] = 2610, + [9050] = 2444, + [9051] = 2849, + [9052] = 2120, + [9053] = 2121, + [9054] = 2122, + [9055] = 2648, + [9056] = 2649, + [9057] = 2134, + [9058] = 2536, + [9059] = 2135, + [9060] = 2126, + [9061] = 2127, + [9062] = 2493, + [9063] = 2128, + [9064] = 2137, + [9065] = 2139, + [9066] = 2544, + [9067] = 2545, + [9068] = 2547, + [9069] = 2523, + [9070] = 2548, + [9071] = 2549, + [9072] = 2133, + [9073] = 2492, + [9074] = 2143, + [9075] = 2525, + [9076] = 2144, + [9077] = 2550, + [9078] = 2551, + [9079] = 2146, + [9080] = 2552, + [9081] = 2535, + [9082] = 2158, + [9083] = 2159, + [9084] = 2160, + [9085] = 2165, + [9086] = 2166, + [9087] = 2167, + [9088] = 2553, + [9089] = 2554, + [9090] = 2528, + [9091] = 2555, + [9092] = 2575, + [9093] = 2576, + [9094] = 2169, + [9095] = 2170, + [9096] = 2171, + [9097] = 2172, + [9098] = 2178, + [9099] = 2181, + [9100] = 2577, + [9101] = 2592, + [9102] = 2183, + [9103] = 2184, + [9104] = 2185, + [9105] = 2186, + [9106] = 2529, + [9107] = 2593, + [9108] = 2594, + [9109] = 2622, + [9110] = 2633, + [9111] = 2634, + [9112] = 2635, + [9113] = 2645, + [9114] = 2646, + [9115] = 2187, + [9116] = 2188, + [9117] = 2189, + [9118] = 2194, + [9119] = 2195, + [9120] = 2198, + [9121] = 2199, + [9122] = 2201, + [9123] = 2202, + [9124] = 2203, + [9125] = 2204, + [9126] = 2205, + [9127] = 2206, + [9128] = 2657, + [9129] = 2207, + [9130] = 2208, + [9131] = 2213, + [9132] = 2214, + [9133] = 2530, + [9134] = 2217, + [9135] = 2531, + [9136] = 2219, + [9137] = 2220, + [9138] = 2221, + [9139] = 2222, + [9140] = 2223, + [9141] = 2224, + [9142] = 2225, + [9143] = 2226, + [9144] = 2227, + [9145] = 2228, + [9146] = 2495, + [9147] = 2229, + [9148] = 2233, + [9149] = 2237, + [9150] = 2238, + [9151] = 2240, + [9152] = 2241, + [9153] = 2242, + [9154] = 2243, + [9155] = 2244, + [9156] = 2245, + [9157] = 2246, + [9158] = 2247, + [9159] = 2248, + [9160] = 2249, + [9161] = 2250, + [9162] = 2251, + [9163] = 2252, + [9164] = 2658, + [9165] = 2253, + [9166] = 2254, + [9167] = 2258, + [9168] = 2261, + [9169] = 2262, + [9170] = 2264, + [9171] = 2265, + [9172] = 2266, + [9173] = 2267, + [9174] = 2268, + [9175] = 2269, + [9176] = 2270, + [9177] = 2271, + [9178] = 2272, + [9179] = 2273, + [9180] = 2274, + [9181] = 2275, + [9182] = 2276, + [9183] = 2277, + [9184] = 2278, + [9185] = 2279, + [9186] = 2280, + [9187] = 2534, + [9188] = 2281, + [9189] = 2282, + [9190] = 2283, + [9191] = 2284, + [9192] = 2286, + [9193] = 2289, + [9194] = 2290, + [9195] = 2291, + [9196] = 2292, + [9197] = 2295, + [9198] = 2296, + [9199] = 2297, + [9200] = 2298, + [9201] = 2300, + [9202] = 2301, + [9203] = 2302, + [9204] = 2303, + [9205] = 2304, + [9206] = 2305, + [9207] = 2306, + [9208] = 2307, + [9209] = 2308, + [9210] = 2309, + [9211] = 2659, + [9212] = 2604, + [9213] = 2310, + [9214] = 2311, + [9215] = 2648, + [9216] = 2667, + [9217] = 2649, + [9218] = 2668, + [9219] = 2312, + [9220] = 2314, + [9221] = 2669, + [9222] = 2315, + [9223] = 2670, + [9224] = 2316, + [9225] = 2317, + [9226] = 2318, + [9227] = 2319, + [9228] = 2320, + [9229] = 2321, + [9230] = 2686, + [9231] = 2322, + [9232] = 2323, + [9233] = 2327, + [9234] = 2328, + [9235] = 2331, + [9236] = 2332, + [9237] = 2687, + [9238] = 2333, + [9239] = 2334, + [9240] = 2336, + [9241] = 2696, + [9242] = 2697, + [9243] = 2337, + [9244] = 2338, + [9245] = 2339, + [9246] = 2703, + [9247] = 2340, + [9248] = 2341, + [9249] = 2712, + [9250] = 2713, + [9251] = 2714, + [9252] = 2342, + [9253] = 2343, + [9254] = 2721, + [9255] = 2151, + [9256] = 2344, + [9257] = 2345, + [9258] = 2346, + [9259] = 2347, + [9260] = 2348, + [9261] = 2349, + [9262] = 2350, + [9263] = 2351, + [9264] = 2352, + [9265] = 2353, + [9266] = 2354, + [9267] = 2355, + [9268] = 2356, + [9269] = 2357, + [9270] = 2358, + [9271] = 2359, + [9272] = 2363, + [9273] = 2734, + [9274] = 2364, + [9275] = 2367, + [9276] = 2368, + [9277] = 2369, + [9278] = 2370, + [9279] = 2372, + [9280] = 2373, + [9281] = 2374, + [9282] = 2375, + [9283] = 2735, + [9284] = 2736, + [9285] = 2743, + [9286] = 2744, + [9287] = 2534, + [9288] = 2745, + [9289] = 2746, + [9290] = 2753, + [9291] = 2524, + [9292] = 2534, + [9293] = 2802, + [9294] = 2814, + [9295] = 2376, + [9296] = 2377, + [9297] = 2129, + [9298] = 2378, + [9299] = 2132, + [9300] = 2136, + [9301] = 2140, + [9302] = 2142, + [9303] = 2145, + [9304] = 2379, + [9305] = 2380, + [9306] = 2381, + [9307] = 2382, + [9308] = 2383, + [9309] = 2384, + [9310] = 2385, + [9311] = 2386, + [9312] = 2387, + [9313] = 2388, + [9314] = 2389, + [9315] = 2390, + [9316] = 2391, + [9317] = 2392, + [9318] = 2393, + [9319] = 2394, + [9320] = 2395, + [9321] = 2399, + [9322] = 2400, + [9323] = 2403, + [9324] = 2404, + [9325] = 2405, + [9326] = 2406, + [9327] = 2408, + [9328] = 2409, + [9329] = 2410, + [9330] = 2411, + [9331] = 2412, + [9332] = 2413, + [9333] = 2414, + [9334] = 2415, + [9335] = 2416, + [9336] = 2417, + [9337] = 2418, + [9338] = 2419, + [9339] = 2420, + [9340] = 2421, + [9341] = 2422, + [9342] = 2423, + [9343] = 2424, + [9344] = 2425, + [9345] = 2815, + [9346] = 2824, + [9347] = 2426, + [9348] = 2427, + [9349] = 2428, + [9350] = 2429, + [9351] = 2430, + [9352] = 2431, + [9353] = 2435, + [9354] = 2436, + [9355] = 2439, + [9356] = 2440, + [9357] = 2441, + [9358] = 2442, + [9359] = 2445, + [9360] = 2446, + [9361] = 2447, + [9362] = 2448, + [9363] = 2449, + [9364] = 2450, + [9365] = 2451, + [9366] = 2452, + [9367] = 2453, + [9368] = 2454, + [9369] = 2455, + [9370] = 2456, + [9371] = 2457, + [9372] = 2458, + [9373] = 2459, + [9374] = 2460, + [9375] = 2461, + [9376] = 2462, + [9377] = 2463, + [9378] = 2464, + [9379] = 2465, + [9380] = 2466, + [9381] = 2467, + [9382] = 2471, + [9383] = 2472, + [9384] = 2475, + [9385] = 2476, + [9386] = 2477, + [9387] = 2478, + [9388] = 2480, + [9389] = 2481, + [9390] = 2482, + [9391] = 2483, + [9392] = 2825, + [9393] = 2484, + [9394] = 2485, + [9395] = 2486, + [9396] = 2826, + [9397] = 2487, + [9398] = 2488, + [9399] = 2489, + [9400] = 2490, + [9401] = 2494, + [9402] = 2840, + [9403] = 2841, + [9404] = 2491, + [9405] = 2534, + [9406] = 2842, + [9407] = 2843, + [9408] = 2844, + [9409] = 2524, + [9410] = 2845, + [9411] = 2534, + [9412] = 2846, + [9413] = 2847, + [9414] = 2848, + [9415] = 2313, + [9416] = 2648, + [9417] = 2534, + [9418] = 2534, + [9419] = 2524, + [9420] = 2649, + [9421] = 612, + [9422] = 674, + [9423] = 735, + [9424] = 766, + [9425] = 2141, + [9426] = 2606, + [9427] = 2573, + [9428] = 2591, + [9429] = 2157, + [9430] = 2526, + [9431] = 2497, + [9432] = 2616, + [9433] = 2565, + [9434] = 2504, + [9435] = 2609, + [9436] = 2563, + [9437] = 2141, + [9438] = 2619, + [9439] = 2610, + [9440] = 2618, + [9441] = 516, + [9442] = 2595, + [9443] = 2585, + [9444] = 498, + [9445] = 2141, + [9446] = 2623, + [9447] = 2636, + [9448] = 2637, + [9449] = 2624, + [9450] = 2578, + [9451] = 2600, + [9452] = 497, + [9453] = 2596, + [9454] = 2613, + [9455] = 2537, + [9456] = 2579, + [9457] = 2589, + [9458] = 2601, + [9459] = 2602, + [9460] = 2559, + [9461] = 2588, + [9462] = 2168, + [9463] = 2513, + [9464] = 496, + [9465] = 2569, + [9466] = 2496, + [9467] = 2598, + [9468] = 2581, + [9469] = 2514, + [9470] = 2582, + [9471] = 2597, + [9472] = 2570, + [9473] = 2603, + [9474] = 2660, + [9475] = 2583, + [9476] = 2510, + [9477] = 2655, + [9478] = 2571, + [9479] = 2527, + [9480] = 2586, + [9481] = 2572, + [9482] = 2558, + [9483] = 2556, + [9484] = 2584, + [9485] = 2564, + [9486] = 503, + [9487] = 2599, + [9488] = 2506, + [9489] = 2587, + [9490] = 2617, + [9491] = 2505, + [9492] = 2590, + [9493] = 2580, + [9494] = 2385, + [9495] = 2203, + [9496] = 2166, + [9497] = 2187, + [9498] = 2183, + [9499] = 2184, + [9500] = 2451, + [9501] = 2139, + [9502] = 2133, + [9503] = 2188, + [9504] = 2189, + [9505] = 2743, + [9506] = 2336, + [9507] = 2525, + [9508] = 2744, + [9509] = 2458, + [9510] = 2745, + [9511] = 2746, + [9512] = 2753, + [9513] = 2802, + [9514] = 2240, + [9515] = 2337, + [9516] = 2338, + [9517] = 2657, + [9518] = 2459, + [9519] = 2460, + [9520] = 2658, + [9521] = 2143, + [9522] = 2194, + [9523] = 2195, + [9524] = 2604, + [9525] = 2535, + [9526] = 2339, + [9527] = 2659, + [9528] = 2144, + [9529] = 2536, + [9530] = 2281, + [9531] = 2345, + [9532] = 2282, + [9533] = 2283, + [9534] = 2241, + [9535] = 2242, + [9536] = 2346, + [9537] = 2840, + [9538] = 2523, + [9539] = 2347, + [9540] = 2243, + [9541] = 2244, + [9542] = 2245, + [9543] = 2204, + [9544] = 2544, + [9545] = 2545, + [9546] = 2547, + [9547] = 2246, + [9548] = 2151, + [9549] = 2178, + [9550] = 2146, + [9551] = 2147, + [9552] = 2148, + [9553] = 2185, + [9554] = 2284, + [9555] = 2286, + [9556] = 2247, + [9557] = 2461, + [9558] = 2340, + [9559] = 2814, + [9560] = 2667, + [9561] = 2815, + [9562] = 2668, + [9563] = 2824, + [9564] = 2669, + [9565] = 2453, + [9566] = 2825, + [9567] = 2826, + [9568] = 2248, + [9569] = 2482, + [9570] = 2548, + [9571] = 2549, + [9572] = 2249, + [9573] = 2454, + [9574] = 2670, + [9575] = 2314, + [9576] = 2472, + [9577] = 2686, + [9578] = 2687, + [9579] = 2696, + [9580] = 529, + [9581] = 2697, + [9582] = 2158, + [9583] = 2159, + [9584] = 2198, + [9585] = 2160, + [9586] = 501, + [9587] = 2483, + [9588] = 2462, + [9589] = 2528, + [9590] = 2250, + [9591] = 502, + [9592] = 2251, + [9593] = 2463, + [9594] = 2126, + [9595] = 2252, + [9596] = 2475, + [9597] = 2127, + [9598] = 2301, + [9599] = 2302, + [9600] = 2303, + [9601] = 2315, + [9602] = 2304, + [9603] = 2305, + [9604] = 2306, + [9605] = 2307, + [9606] = 2316, + [9607] = 2308, + [9608] = 2841, + [9609] = 2484, + [9610] = 2207, + [9611] = 2208, + [9612] = 2309, + [9613] = 2842, + [9614] = 2843, + [9615] = 2213, + [9616] = 2529, + [9617] = 2844, + [9618] = 2845, + [9619] = 2464, + [9620] = 2310, + [9621] = 2311, + [9622] = 2169, + [9623] = 2214, + [9624] = 2312, + [9625] = 2229, + [9626] = 2233, + [9627] = 2317, + [9628] = 504, + [9629] = 2318, + [9630] = 2734, + [9631] = 2298, + [9632] = 2313, + [9633] = 2735, + [9634] = 505, + [9635] = 2170, + [9636] = 2217, + [9637] = 506, + [9638] = 2120, + [9639] = 2736, + [9640] = 2348, + [9641] = 2319, + [9642] = 2349, + [9643] = 507, + [9644] = 2121, + [9645] = 2485, + [9646] = 2530, + [9647] = 508, + [9648] = 2350, + [9649] = 2165, + [9650] = 2531, + [9651] = 2550, + [9652] = 2351, + [9653] = 2352, + [9654] = 509, + [9655] = 2353, + [9656] = 2551, + [9657] = 2552, + [9658] = 2486, + [9659] = 2553, + [9660] = 2219, + [9661] = 2341, + [9662] = 2122, + [9663] = 2220, + [9664] = 2221, + [9665] = 2554, + [9666] = 2555, + [9667] = 2320, + [9668] = 2253, + [9669] = 2254, + [9670] = 2354, + [9671] = 2355, + [9672] = 2186, + [9673] = 2356, + [9674] = 2357, + [9675] = 2358, + [9676] = 2258, + [9677] = 2261, + [9678] = 2262, + [9679] = 2465, + [9680] = 2222, + [9681] = 2466, + [9682] = 2264, + [9683] = 2265, + [9684] = 2575, + [9685] = 2576, + [9686] = 2846, + [9687] = 2577, + [9688] = 2223, + [9689] = 2266, + [9690] = 2267, + [9691] = 2224, + [9692] = 2225, + [9693] = 2848, + [9694] = 2268, + [9695] = 2269, + [9696] = 2181, + [9697] = 2270, + [9698] = 2271, + [9699] = 2300, + [9700] = 2272, + [9701] = 2199, + [9702] = 2849, + [9703] = 497, + [9704] = 2226, + [9705] = 2273, + [9706] = 2274, + [9707] = 2275, + [9708] = 2227, + [9709] = 2592, + [9710] = 2487, + [9711] = 2276, + [9712] = 2237, + [9713] = 2359, + [9714] = 2363, + [9715] = 514, + [9716] = 515, + [9717] = 2364, + [9718] = 2452, + [9719] = 2593, + [9720] = 2594, + [9721] = 517, + [9722] = 2321, + [9723] = 518, + [9724] = 519, + [9725] = 2322, + [9726] = 520, + [9727] = 521, + [9728] = 2206, + [9729] = 2622, + [9730] = 522, + [9731] = 2467, + [9732] = 2277, + [9733] = 2633, + [9734] = 523, + [9735] = 2634, + [9736] = 2456, + [9737] = 2238, + [9738] = 2228, + [9739] = 2134, + [9740] = 2171, + [9741] = 2135, + [9742] = 2488, + [9743] = 2367, + [9744] = 2368, + [9745] = 2457, + [9746] = 2369, + [9747] = 2323, + [9748] = 2370, + [9749] = 2537, + [9750] = 2372, + [9751] = 2373, + [9752] = 2374, + [9753] = 2490, + [9754] = 2375, + [9755] = 2376, + [9756] = 2489, + [9757] = 2377, + [9758] = 2378, + [9759] = 2379, + [9760] = 2137, + [9761] = 2380, + [9762] = 2381, + [9763] = 2635, + [9764] = 2382, + [9765] = 2383, + [9766] = 2491, + [9767] = 2384, + [9768] = 2492, + [9769] = 2493, + [9770] = 2494, + [9771] = 2645, + [9772] = 2278, + [9773] = 2201, + [9774] = 2386, + [9775] = 2387, + [9776] = 2646, + [9777] = 2388, + [9778] = 2128, + [9779] = 2389, + [9780] = 2390, + [9781] = 2205, + [9782] = 2391, + [9783] = 2392, + [9784] = 2393, + [9785] = 2394, + [9786] = 2395, + [9787] = 2399, + [9788] = 2400, + [9789] = 2403, + [9790] = 2404, + [9791] = 2405, + [9792] = 2406, + [9793] = 2408, + [9794] = 2409, + [9795] = 2410, + [9796] = 2411, + [9797] = 2412, + [9798] = 2413, + [9799] = 2414, + [9800] = 2703, + [9801] = 2415, + [9802] = 2416, + [9803] = 2495, + [9804] = 2712, + [9805] = 2279, + [9806] = 2280, + [9807] = 2476, + [9808] = 2289, + [9809] = 2417, + [9810] = 2342, + [9811] = 2713, + [9812] = 2418, + [9813] = 2419, + [9814] = 2714, + [9815] = 2327, + [9816] = 2420, + [9817] = 2421, + [9818] = 2343, + [9819] = 2477, + [9820] = 2422, + [9821] = 2344, + [9822] = 2721, + [9823] = 2167, + [9824] = 2328, + [9825] = 2455, + [9826] = 2290, + [9827] = 2423, + [9828] = 2424, + [9829] = 2425, + [9830] = 2426, + [9831] = 2427, + [9832] = 2428, + [9833] = 2429, + [9834] = 2430, + [9835] = 2478, + [9836] = 2291, + [9837] = 2480, + [9838] = 2471, + [9839] = 2331, + [9840] = 2292, + [9841] = 2332, + [9842] = 2295, + [9843] = 2333, + [9844] = 2334, + [9845] = 2481, + [9846] = 2431, + [9847] = 2435, + [9848] = 2436, + [9849] = 2296, + [9850] = 2172, + [9851] = 2439, + [9852] = 2440, + [9853] = 2441, + [9854] = 2442, + [9855] = 2444, + [9856] = 2297, + [9857] = 2445, + [9858] = 2446, + [9859] = 2447, + [9860] = 2448, + [9861] = 2449, + [9862] = 2450, + [9863] = 2202, + [9864] = 2847, + [9865] = 507, + [9866] = 2129, + [9867] = 514, + [9868] = 508, + [9869] = 515, + [9870] = 2142, + [9871] = 2524, + [9872] = 505, + [9873] = 2145, + [9874] = 2132, + [9875] = 2145, + [9876] = 2132, + [9877] = 2136, + [9878] = 2145, + [9879] = 2648, + [9880] = 2132, + [9881] = 2649, + [9882] = 2145, + [9883] = 2129, + [9884] = 2140, + [9885] = 504, + [9886] = 2142, + [9887] = 2142, + [9888] = 2140, + [9889] = 502, + [9890] = 2129, + [9891] = 520, + [9892] = 521, + [9893] = 2142, + [9894] = 2136, + [9895] = 2136, + [9896] = 2524, + [9897] = 517, + [9898] = 506, + [9899] = 2132, + [9900] = 518, + [9901] = 522, + [9902] = 519, + [9903] = 509, + [9904] = 529, + [9905] = 2129, + [9906] = 2648, + [9907] = 523, + [9908] = 2140, + [9909] = 2649, + [9910] = 2140, + [9911] = 501, + [9912] = 2136, + [9913] = 9913, + [9914] = 9914, + [9915] = 2648, + [9916] = 9916, + [9917] = 2524, + [9918] = 2648, + [9919] = 9919, + [9920] = 9913, + [9921] = 2649, + [9922] = 9916, + [9923] = 9913, + [9924] = 9913, + [9925] = 9916, + [9926] = 9916, + [9927] = 9914, + [9928] = 9913, + [9929] = 9913, + [9930] = 9916, + [9931] = 9919, + [9932] = 9919, + [9933] = 9913, + [9934] = 9934, + [9935] = 9935, + [9936] = 9919, + [9937] = 2524, + [9938] = 9934, + [9939] = 2649, + [9940] = 9934, + [9941] = 9913, + [9942] = 9934, + [9943] = 9916, + [9944] = 9935, + [9945] = 9919, + [9946] = 9919, + [9947] = 9914, + [9948] = 9934, + [9949] = 9919, + [9950] = 9919, + [9951] = 9916, + [9952] = 9935, + [9953] = 9913, + [9954] = 9916, + [9955] = 9914, + [9956] = 9916, + [9957] = 9914, + [9958] = 9919, + [9959] = 9935, + [9960] = 9913, + [9961] = 9913, + [9962] = 9935, + [9963] = 9919, + [9964] = 9916, + [9965] = 9919, + [9966] = 9935, + [9967] = 9935, + [9968] = 9935, + [9969] = 9969, + [9970] = 9935, + [9971] = 9935, + [9972] = 9972, + [9973] = 2136, + [9974] = 9974, + [9975] = 9975, + [9976] = 2129, + [9977] = 9977, + [9978] = 2142, + [9979] = 2141, + [9980] = 9980, + [9981] = 9981, + [9982] = 9982, + [9983] = 9983, + [9984] = 9974, + [9985] = 519, + [9986] = 520, + [9987] = 9980, + [9988] = 509, + [9989] = 529, + [9990] = 9990, + [9991] = 9991, + [9992] = 514, + [9993] = 9980, + [9994] = 2145, + [9995] = 9981, + [9996] = 505, + [9997] = 2136, + [9998] = 9990, + [9999] = 9974, + [10000] = 9972, + [10001] = 515, + [10002] = 9990, + [10003] = 10003, + [10004] = 9981, + [10005] = 9974, + [10006] = 10006, + [10007] = 9980, + [10008] = 2140, + [10009] = 521, + [10010] = 2140, + [10011] = 2141, + [10012] = 9981, + [10013] = 2129, + [10014] = 2132, + [10015] = 10003, + [10016] = 522, + [10017] = 9981, + [10018] = 9983, + [10019] = 9981, + [10020] = 9974, + [10021] = 10003, + [10022] = 2142, + [10023] = 10003, + [10024] = 9981, + [10025] = 2145, + [10026] = 9980, + [10027] = 9980, + [10028] = 9981, + [10029] = 9980, + [10030] = 9990, + [10031] = 523, + [10032] = 9990, + [10033] = 9977, + [10034] = 2648, + [10035] = 9974, + [10036] = 9983, + [10037] = 2141, + [10038] = 9983, + [10039] = 517, + [10040] = 9974, + [10041] = 508, + [10042] = 10042, + [10043] = 501, + [10044] = 9990, + [10045] = 518, + [10046] = 2524, + [10047] = 504, + [10048] = 10003, + [10049] = 9983, + [10050] = 10050, + [10051] = 9991, + [10052] = 507, + [10053] = 10053, + [10054] = 2649, + [10055] = 502, + [10056] = 10056, + [10057] = 9981, + [10058] = 506, + [10059] = 9990, + [10060] = 10003, + [10061] = 9981, + [10062] = 9991, + [10063] = 10003, + [10064] = 10003, + [10065] = 9980, + [10066] = 9983, + [10067] = 9990, + [10068] = 2141, + [10069] = 9983, + [10070] = 9974, + [10071] = 10003, + [10072] = 9990, + [10073] = 9983, + [10074] = 9981, + [10075] = 9980, + [10076] = 2132, + [10077] = 9980, + [10078] = 9983, + [10079] = 9974, + [10080] = 9980, + [10081] = 9972, + [10082] = 10082, + [10083] = 10083, + [10084] = 735, + [10085] = 10085, + [10086] = 10085, + [10087] = 10087, + [10088] = 10088, + [10089] = 2145, + [10090] = 10087, + [10091] = 2649, + [10092] = 10088, + [10093] = 10093, + [10094] = 2537, + [10095] = 10093, + [10096] = 10085, + [10097] = 497, + [10098] = 2129, + [10099] = 2132, + [10100] = 674, + [10101] = 2136, + [10102] = 2140, + [10103] = 10088, + [10104] = 2648, + [10105] = 2142, + [10106] = 2145, + [10107] = 2141, + [10108] = 10085, + [10109] = 10087, + [10110] = 10088, + [10111] = 10093, + [10112] = 10087, + [10113] = 10087, + [10114] = 10093, + [10115] = 10088, + [10116] = 2129, + [10117] = 10093, + [10118] = 2132, + [10119] = 2136, + [10120] = 2140, + [10121] = 2142, + [10122] = 2145, + [10123] = 10087, + [10124] = 10093, + [10125] = 2524, + [10126] = 10087, + [10127] = 766, + [10128] = 10087, + [10129] = 10129, + [10130] = 10093, + [10131] = 10085, + [10132] = 10093, + [10133] = 10087, + [10134] = 10088, + [10135] = 10093, + [10136] = 10085, + [10137] = 10087, + [10138] = 10085, + [10139] = 10139, + [10140] = 2648, + [10141] = 2649, + [10142] = 10088, + [10143] = 10088, + [10144] = 2145, + [10145] = 10085, + [10146] = 10087, + [10147] = 2648, + [10148] = 2649, + [10149] = 612, + [10150] = 2129, + [10151] = 10085, + [10152] = 10087, + [10153] = 2132, + [10154] = 2136, + [10155] = 10088, + [10156] = 10129, + [10157] = 10157, + [10158] = 10158, + [10159] = 10158, + [10160] = 10093, + [10161] = 2129, + [10162] = 2132, + [10163] = 10093, + [10164] = 2136, + [10165] = 10157, + [10166] = 2140, + [10167] = 2140, + [10168] = 2142, + [10169] = 10129, + [10170] = 10157, + [10171] = 10158, + [10172] = 2524, + [10173] = 2142, + [10174] = 2524, + [10175] = 10129, + [10176] = 10157, + [10177] = 10158, + [10178] = 10129, + [10179] = 10157, + [10180] = 10158, + [10181] = 10129, + [10182] = 10157, + [10183] = 10158, + [10184] = 10129, + [10185] = 10157, + [10186] = 10158, + [10187] = 10129, + [10188] = 10157, + [10189] = 10158, + [10190] = 10129, + [10191] = 10157, + [10192] = 10158, + [10193] = 10129, + [10194] = 10157, + [10195] = 10158, + [10196] = 10093, + [10197] = 2168, + [10198] = 10198, + [10199] = 10199, + [10200] = 10200, + [10201] = 529, + [10202] = 2145, + [10203] = 10199, + [10204] = 2648, + [10205] = 10088, + [10206] = 2497, + [10207] = 2556, + [10208] = 10006, + [10209] = 10198, + [10210] = 10199, + [10211] = 2649, + [10212] = 2145, + [10213] = 10213, + [10214] = 10214, + [10215] = 2655, + [10216] = 2140, + [10217] = 2649, + [10218] = 3537, + [10219] = 2132, + [10220] = 504, + [10221] = 10214, + [10222] = 2136, + [10223] = 2136, + [10224] = 2595, + [10225] = 2129, + [10226] = 2603, + [10227] = 10214, + [10228] = 2132, + [10229] = 2140, + [10230] = 2578, + [10231] = 2129, + [10232] = 2596, + [10233] = 2140, + [10234] = 10234, + [10235] = 2524, + [10236] = 498, + [10237] = 2537, + [10238] = 2579, + [10239] = 10239, + [10240] = 2142, + [10241] = 10241, + [10242] = 2129, + [10243] = 10243, + [10244] = 10213, + [10245] = 2597, + [10246] = 2580, + [10247] = 3836, + [10248] = 504, + [10249] = 505, + [10250] = 3837, + [10251] = 3838, + [10252] = 505, + [10253] = 3839, + [10254] = 2598, + [10255] = 506, + [10256] = 2142, + [10257] = 10241, + [10258] = 10199, + [10259] = 507, + [10260] = 2610, + [10261] = 10261, + [10262] = 2648, + [10263] = 10214, + [10264] = 508, + [10265] = 2524, + [10266] = 2649, + [10267] = 10241, + [10268] = 10198, + [10269] = 509, + [10270] = 10270, + [10271] = 2623, + [10272] = 2581, + [10273] = 10006, + [10274] = 10200, + [10275] = 10241, + [10276] = 10261, + [10277] = 10277, + [10278] = 2624, + [10279] = 10198, + [10280] = 10261, + [10281] = 2563, + [10282] = 2600, + [10283] = 501, + [10284] = 2564, + [10285] = 2565, + [10286] = 10261, + [10287] = 2504, + [10288] = 514, + [10289] = 2505, + [10290] = 515, + [10291] = 516, + [10292] = 10198, + [10293] = 10239, + [10294] = 10050, + [10295] = 10295, + [10296] = 2601, + [10297] = 517, + [10298] = 518, + [10299] = 2132, + [10300] = 10300, + [10301] = 2506, + [10302] = 10239, + [10303] = 10050, + [10304] = 10085, + [10305] = 2582, + [10306] = 519, + [10307] = 10295, + [10308] = 520, + [10309] = 2602, + [10310] = 2591, + [10311] = 506, + [10312] = 521, + [10313] = 10006, + [10314] = 522, + [10315] = 10213, + [10316] = 10199, + [10317] = 10270, + [10318] = 2616, + [10319] = 523, + [10320] = 10241, + [10321] = 2599, + [10322] = 2558, + [10323] = 10200, + [10324] = 2527, + [10325] = 2142, + [10326] = 509, + [10327] = 10006, + [10328] = 10239, + [10329] = 10270, + [10330] = 10261, + [10331] = 10088, + [10332] = 10213, + [10333] = 496, + [10334] = 10270, + [10335] = 10213, + [10336] = 10200, + [10337] = 10199, + [10338] = 10199, + [10339] = 2660, + [10340] = 10214, + [10341] = 10270, + [10342] = 10342, + [10343] = 2617, + [10344] = 10200, + [10345] = 2157, + [10346] = 2585, + [10347] = 10214, + [10348] = 2586, + [10349] = 10006, + [10350] = 10295, + [10351] = 10261, + [10352] = 10198, + [10353] = 2587, + [10354] = 2588, + [10355] = 10270, + [10356] = 2559, + [10357] = 10213, + [10358] = 2136, + [10359] = 3537, + [10360] = 10270, + [10361] = 10200, + [10362] = 10270, + [10363] = 2636, + [10364] = 2637, + [10365] = 2569, + [10366] = 2147, + [10367] = 2524, + [10368] = 2570, + [10369] = 514, + [10370] = 3836, + [10371] = 515, + [10372] = 3837, + [10373] = 10239, + [10374] = 3838, + [10375] = 10050, + [10376] = 2571, + [10377] = 2583, + [10378] = 10295, + [10379] = 3839, + [10380] = 10006, + [10381] = 497, + [10382] = 10006, + [10383] = 10199, + [10384] = 2510, + [10385] = 502, + [10386] = 2572, + [10387] = 10270, + [10388] = 2618, + [10389] = 2619, + [10390] = 10200, + [10391] = 10241, + [10392] = 2140, + [10393] = 2573, + [10394] = 517, + [10395] = 518, + [10396] = 10213, + [10397] = 10261, + [10398] = 10214, + [10399] = 519, + [10400] = 520, + [10401] = 2148, + [10402] = 521, + [10403] = 10270, + [10404] = 10198, + [10405] = 2584, + [10406] = 10200, + [10407] = 10407, + [10408] = 522, + [10409] = 2129, + [10410] = 2142, + [10411] = 10006, + [10412] = 10412, + [10413] = 507, + [10414] = 10239, + [10415] = 523, + [10416] = 10239, + [10417] = 10050, + [10418] = 10198, + [10419] = 10200, + [10420] = 9975, + [10421] = 10056, + [10422] = 9982, + [10423] = 2145, + [10424] = 10295, + [10425] = 10213, + [10426] = 10050, + [10427] = 10241, + [10428] = 508, + [10429] = 529, + [10430] = 10261, + [10431] = 10088, + [10432] = 10198, + [10433] = 10295, + [10434] = 10199, + [10435] = 10085, + [10436] = 501, + [10437] = 10261, + [10438] = 10239, + [10439] = 10050, + [10440] = 10085, + [10441] = 2145, + [10442] = 10200, + [10443] = 2132, + [10444] = 2589, + [10445] = 2648, + [10446] = 2613, + [10447] = 10213, + [10448] = 2513, + [10449] = 2524, + [10450] = 2514, + [10451] = 2649, + [10452] = 10239, + [10453] = 502, + [10454] = 503, + [10455] = 10214, + [10456] = 10050, + [10457] = 10295, + [10458] = 2648, + [10459] = 10050, + [10460] = 2136, + [10461] = 10295, + [10462] = 10295, + [10463] = 10241, + [10464] = 2606, + [10465] = 2609, + [10466] = 2590, + [10467] = 2526, + [10468] = 2496, + [10469] = 10214, + [10470] = 10241, + [10471] = 2321, + [10472] = 2670, + [10473] = 2331, + [10474] = 2482, + [10475] = 2121, + [10476] = 2430, + [10477] = 2380, + [10478] = 2669, + [10479] = 2128, + [10480] = 2451, + [10481] = 2452, + [10482] = 2734, + [10483] = 2169, + [10484] = 2842, + [10485] = 2389, + [10486] = 2659, + [10487] = 2270, + [10488] = 2489, + [10489] = 2170, + [10490] = 2341, + [10491] = 2171, + [10492] = 2377, + [10493] = 2222, + [10494] = 2223, + [10495] = 2172, + [10496] = 2453, + [10497] = 2277, + [10498] = 2214, + [10499] = 2439, + [10500] = 2436, + [10501] = 2703, + [10502] = 2224, + [10503] = 2440, + [10504] = 2225, + [10505] = 2714, + [10506] = 2203, + [10507] = 2332, + [10508] = 2525, + [10509] = 2226, + [10510] = 2548, + [10511] = 2387, + [10512] = 2227, + [10513] = 2843, + [10514] = 2178, + [10515] = 2336, + [10516] = 2454, + [10517] = 2204, + [10518] = 2712, + [10519] = 2686, + [10520] = 2844, + [10521] = 2181, + [10522] = 2333, + [10523] = 2735, + [10524] = 2490, + [10525] = 2491, + [10526] = 2483, + [10527] = 2845, + [10528] = 2492, + [10529] = 2455, + [10530] = 2217, + [10531] = 2143, + [10532] = 2343, + [10533] = 2344, + [10534] = 2345, + [10535] = 2456, + [10536] = 2457, + [10537] = 2458, + [10538] = 2459, + [10539] = 2493, + [10540] = 2228, + [10541] = 2352, + [10542] = 2494, + [10543] = 2441, + [10544] = 2435, + [10545] = 2388, + [10546] = 2736, + [10547] = 2278, + [10548] = 2356, + [10549] = 2460, + [10550] = 2279, + [10551] = 2484, + [10552] = 2205, + [10553] = 2485, + [10554] = 2390, + [10555] = 2378, + [10556] = 2743, + [10557] = 2379, + [10558] = 2426, + [10559] = 2744, + [10560] = 2280, + [10561] = 2745, + [10562] = 2635, + [10563] = 2370, + [10564] = 2645, + [10565] = 2427, + [10566] = 2202, + [10567] = 2846, + [10568] = 2372, + [10569] = 2183, + [10570] = 2486, + [10571] = 2184, + [10572] = 2604, + [10573] = 2381, + [10574] = 2342, + [10575] = 2382, + [10576] = 2487, + [10577] = 2536, + [10578] = 2185, + [10579] = 2488, + [10580] = 2495, + [10581] = 2847, + [10582] = 2353, + [10583] = 2186, + [10584] = 2444, + [10585] = 10585, + [10586] = 2145, + [10587] = 2549, + [10588] = 2126, + [10589] = 2346, + [10590] = 2201, + [10591] = 2127, + [10592] = 2281, + [10593] = 2575, + [10594] = 2282, + [10595] = 2283, + [10596] = 2848, + [10597] = 2524, + [10598] = 2354, + [10599] = 2347, + [10600] = 2849, + [10601] = 2419, + [10602] = 2348, + [10603] = 2165, + [10604] = 2350, + [10605] = 2357, + [10606] = 2351, + [10607] = 2422, + [10608] = 2544, + [10609] = 2284, + [10610] = 2349, + [10611] = 2137, + [10612] = 2528, + [10613] = 2253, + [10614] = 2373, + [10615] = 2151, + [10616] = 2386, + [10617] = 2358, + [10618] = 2713, + [10619] = 2374, + [10620] = 2403, + [10621] = 2592, + [10622] = 2649, + [10623] = 2478, + [10624] = 2286, + [10625] = 2646, + [10626] = 2428, + [10627] = 2338, + [10628] = 2289, + [10629] = 2290, + [10630] = 2746, + [10631] = 2404, + [10632] = 2291, + [10633] = 2648, + [10634] = 2395, + [10635] = 2405, + [10636] = 2687, + [10637] = 2464, + [10638] = 2339, + [10639] = 2721, + [10640] = 2166, + [10641] = 2576, + [10642] = 2406, + [10643] = 2423, + [10644] = 2593, + [10645] = 2136, + [10646] = 2753, + [10647] = 2594, + [10648] = 2328, + [10649] = 2268, + [10650] = 2408, + [10651] = 2658, + [10652] = 2696, + [10653] = 2545, + [10654] = 2375, + [10655] = 2531, + [10656] = 2409, + [10657] = 2420, + [10658] = 2229, + [10659] = 2461, + [10660] = 2292, + [10661] = 2649, + [10662] = 2480, + [10663] = 2445, + [10664] = 2391, + [10665] = 2577, + [10666] = 2295, + [10667] = 2296, + [10668] = 2297, + [10669] = 2298, + [10670] = 2529, + [10671] = 2233, + [10672] = 2551, + [10673] = 2144, + [10674] = 2450, + [10675] = 2337, + [10676] = 2359, + [10677] = 2657, + [10678] = 2667, + [10679] = 2271, + [10680] = 2462, + [10681] = 2237, + [10682] = 2158, + [10683] = 2159, + [10684] = 2254, + [10685] = 2238, + [10686] = 2449, + [10687] = 2465, + [10688] = 2466, + [10689] = 2167, + [10690] = 2334, + [10691] = 2393, + [10692] = 2272, + [10693] = 2300, + [10694] = 2421, + [10695] = 2122, + [10696] = 2301, + [10697] = 2302, + [10698] = 2410, + [10699] = 2303, + [10700] = 2206, + [10701] = 2363, + [10702] = 2304, + [10703] = 2160, + [10704] = 2524, + [10705] = 2446, + [10706] = 2207, + [10707] = 2442, + [10708] = 2273, + [10709] = 2424, + [10710] = 2814, + [10711] = 2305, + [10712] = 2240, + [10713] = 2447, + [10714] = 2208, + [10715] = 2274, + [10716] = 2411, + [10717] = 2241, + [10718] = 2213, + [10719] = 2275, + [10720] = 2242, + [10721] = 2276, + [10722] = 2258, + [10723] = 2467, + [10724] = 2243, + [10725] = 2697, + [10726] = 2802, + [10727] = 2244, + [10728] = 2269, + [10729] = 2245, + [10730] = 2815, + [10731] = 2306, + [10732] = 2261, + [10733] = 2412, + [10734] = 2246, + [10735] = 2364, + [10736] = 2307, + [10737] = 2308, + [10738] = 2247, + [10739] = 2367, + [10740] = 2413, + [10741] = 2139, + [10742] = 2248, + [10743] = 2552, + [10744] = 2414, + [10745] = 2399, + [10746] = 2535, + [10747] = 2340, + [10748] = 2471, + [10749] = 2219, + [10750] = 2262, + [10751] = 2140, + [10752] = 2554, + [10753] = 2530, + [10754] = 2249, + [10755] = 2622, + [10756] = 2187, + [10757] = 2188, + [10758] = 2189, + [10759] = 2309, + [10760] = 2250, + [10761] = 2310, + [10762] = 2824, + [10763] = 2668, + [10764] = 2264, + [10765] = 2385, + [10766] = 2633, + [10767] = 2142, + [10768] = 2311, + [10769] = 2312, + [10770] = 2415, + [10771] = 2251, + [10772] = 2313, + [10773] = 2314, + [10774] = 2416, + [10775] = 2394, + [10776] = 2146, + [10777] = 2425, + [10778] = 2133, + [10779] = 2194, + [10780] = 2252, + [10781] = 2195, + [10782] = 2553, + [10783] = 2135, + [10784] = 2355, + [10785] = 2368, + [10786] = 2369, + [10787] = 2555, + [10788] = 2472, + [10789] = 2220, + [10790] = 2221, + [10791] = 2431, + [10792] = 2265, + [10793] = 2266, + [10794] = 2448, + [10795] = 2267, + [10796] = 2384, + [10797] = 2475, + [10798] = 2634, + [10799] = 2476, + [10800] = 2400, + [10801] = 2417, + [10802] = 2315, + [10803] = 2383, + [10804] = 2825, + [10805] = 2129, + [10806] = 2477, + [10807] = 2826, + [10808] = 2550, + [10809] = 2418, + [10810] = 2376, + [10811] = 2463, + [10812] = 2198, + [10813] = 2481, + [10814] = 2648, + [10815] = 2429, + [10816] = 2199, + [10817] = 2316, + [10818] = 2317, + [10819] = 2318, + [10820] = 2319, + [10821] = 2320, + [10822] = 2134, + [10823] = 2322, + [10824] = 2523, + [10825] = 2323, + [10826] = 2327, + [10827] = 2132, + [10828] = 2840, + [10829] = 2547, + [10830] = 2120, + [10831] = 2841, + [10832] = 2392, + [10833] = 2649, + [10834] = 2524, + [10835] = 2648, + [10836] = 10836, + [10837] = 10837, + [10838] = 2603, + [10839] = 10839, + [10840] = 10840, + [10841] = 2618, + [10842] = 2496, + [10843] = 2527, + [10844] = 2497, + [10845] = 2660, + [10846] = 2616, + [10847] = 2637, + [10848] = 674, + [10849] = 10849, + [10850] = 2617, + [10851] = 2513, + [10852] = 2514, + [10853] = 10853, + [10854] = 2624, + [10855] = 2606, + [10856] = 2609, + [10857] = 2619, + [10858] = 2610, + [10859] = 10859, + [10860] = 2655, + [10861] = 10861, + [10862] = 2510, + [10863] = 2504, + [10864] = 2505, + [10865] = 2506, + [10866] = 2613, + [10867] = 2526, + [10868] = 612, + [10869] = 10869, + [10870] = 10870, + [10871] = 735, + [10872] = 10872, + [10873] = 766, + [10874] = 10874, + [10875] = 2600, + [10876] = 2623, + [10877] = 2168, + [10878] = 2636, + [10879] = 2556, + [10880] = 2601, + [10881] = 2558, + [10882] = 2559, + [10883] = 2563, + [10884] = 2564, + [10885] = 2565, + [10886] = 2602, + [10887] = 2570, + [10888] = 2157, + [10889] = 2571, + [10890] = 2572, + [10891] = 2573, + [10892] = 2578, + [10893] = 2579, + [10894] = 2580, + [10895] = 2581, + [10896] = 2582, + [10897] = 2583, + [10898] = 2584, + [10899] = 2585, + [10900] = 2586, + [10901] = 2587, + [10902] = 2588, + [10903] = 2589, + [10904] = 2590, + [10905] = 2591, + [10906] = 2595, + [10907] = 2596, + [10908] = 2597, + [10909] = 2598, + [10910] = 2599, + [10911] = 2569, + [10912] = 674, + [10913] = 735, + [10914] = 766, + [10915] = 612, + [10916] = 766, + [10917] = 735, + [10918] = 735, + [10919] = 10919, + [10920] = 766, + [10921] = 2145, + [10922] = 10922, + [10923] = 2140, + [10924] = 2142, + [10925] = 10925, + [10926] = 2140, + [10927] = 10927, + [10928] = 10928, + [10929] = 2129, + [10930] = 10930, + [10931] = 10931, + [10932] = 2142, + [10933] = 2636, + [10934] = 2129, + [10935] = 2132, + [10936] = 2136, + [10937] = 10937, + [10938] = 2145, + [10939] = 10939, + [10940] = 10940, + [10941] = 2623, + [10942] = 10942, + [10943] = 10943, + [10944] = 10944, + [10945] = 10945, + [10946] = 2132, + [10947] = 2136, + [10948] = 10948, + [10949] = 10949, + [10950] = 10950, + [10951] = 10951, + [10952] = 10952, + [10953] = 10953, + [10954] = 10954, + [10955] = 10955, + [10956] = 10956, + [10957] = 10957, + [10958] = 10958, + [10959] = 10959, + [10960] = 10960, + [10961] = 10961, + [10962] = 10962, + [10963] = 10963, + [10964] = 10964, + [10965] = 10965, + [10966] = 10966, + [10967] = 10967, + [10968] = 10968, + [10969] = 10969, + [10970] = 10970, + [10971] = 10971, + [10972] = 10972, + [10973] = 10973, + [10974] = 2133, + [10975] = 10975, + [10976] = 10976, + [10977] = 10977, + [10978] = 10978, + [10979] = 10979, + [10980] = 10980, + [10981] = 10981, + [10982] = 10982, + [10983] = 10983, + [10984] = 10984, + [10985] = 10985, + [10986] = 10986, + [10987] = 10987, + [10988] = 10988, + [10989] = 10989, + [10990] = 10990, + [10991] = 2143, + [10992] = 10992, + [10993] = 10993, + [10994] = 10994, + [10995] = 10995, + [10996] = 10996, + [10997] = 10997, + [10998] = 10998, + [10999] = 10999, + [11000] = 11000, + [11001] = 11001, + [11002] = 11002, + [11003] = 11003, + [11004] = 11004, + [11005] = 11005, + [11006] = 10949, + [11007] = 11007, + [11008] = 11008, + [11009] = 11009, + [11010] = 11010, + [11011] = 11011, + [11012] = 11012, + [11013] = 11013, + [11014] = 11014, + [11015] = 11015, + [11016] = 11016, + [11017] = 11017, + [11018] = 11018, + [11019] = 11019, + [11020] = 11020, + [11021] = 11021, + [11022] = 11022, + [11023] = 11023, + [11024] = 11024, + [11025] = 11025, + [11026] = 11026, + [11027] = 11027, + [11028] = 11028, + [11029] = 11029, + [11030] = 11030, + [11031] = 11031, + [11032] = 11032, + [11033] = 11033, + [11034] = 11034, + [11035] = 11035, + [11036] = 11036, + [11037] = 11037, + [11038] = 11038, + [11039] = 11039, + [11040] = 11040, + [11041] = 11041, + [11042] = 11042, + [11043] = 11043, + [11044] = 11044, + [11045] = 11045, + [11046] = 11046, + [11047] = 11047, + [11048] = 11048, + [11049] = 11049, + [11050] = 11050, + [11051] = 11051, + [11052] = 11052, + [11053] = 11053, + [11054] = 11054, + [11055] = 11055, + [11056] = 11056, + [11057] = 11055, + [11058] = 11058, + [11059] = 11059, + [11060] = 11060, + [11061] = 2132, + [11062] = 11055, + [11063] = 2136, + [11064] = 10952, + [11065] = 11065, + [11066] = 11066, + [11067] = 11067, + [11068] = 11068, + [11069] = 11059, + [11070] = 11070, + [11071] = 11071, + [11072] = 11072, + [11073] = 11073, + [11074] = 11074, + [11075] = 11075, + [11076] = 11076, + [11077] = 11077, + [11078] = 11078, + [11079] = 11079, + [11080] = 11080, + [11081] = 11081, + [11082] = 11082, + [11083] = 11083, + [11084] = 11084, + [11085] = 11012, + [11086] = 11013, + [11087] = 11014, + [11088] = 11088, + [11089] = 11015, + [11090] = 11053, + [11091] = 11054, + [11092] = 11058, + [11093] = 11016, + [11094] = 11068, + [11095] = 11056, + [11096] = 11017, + [11097] = 11065, + [11098] = 11066, + [11099] = 11018, + [11100] = 11100, + [11101] = 11072, + [11102] = 11058, + [11103] = 11068, + [11104] = 11104, + [11105] = 11100, + [11106] = 11106, + [11107] = 11107, + [11108] = 11108, + [11109] = 11109, + [11110] = 11110, + [11111] = 11111, + [11112] = 11112, + [11113] = 11113, + [11114] = 11114, + [11115] = 11067, + [11116] = 2140, + [11117] = 2142, + [11118] = 11020, + [11119] = 11108, + [11120] = 11120, + [11121] = 11109, + [11122] = 11110, + [11123] = 11111, + [11124] = 11021, + [11125] = 11070, + [11126] = 11113, + [11127] = 11127, + [11128] = 11128, + [11129] = 11129, + [11130] = 11130, + [11131] = 11131, + [11132] = 11132, + [11133] = 11133, + [11134] = 11114, + [11135] = 11104, + [11136] = 11022, + [11137] = 11071, + [11138] = 11023, + [11139] = 11120, + [11140] = 11140, + [11141] = 11141, + [11142] = 11011, + [11143] = 11143, + [11144] = 11144, + [11145] = 11145, + [11146] = 11146, + [11147] = 11147, + [11148] = 11148, + [11149] = 11149, + [11150] = 11150, + [11151] = 11073, + [11152] = 11024, + [11153] = 11075, + [11154] = 11019, + [11155] = 11050, + [11156] = 11060, + [11157] = 11074, + [11158] = 11076, + [11159] = 11078, + [11160] = 11080, + [11161] = 11081, + [11162] = 11012, + [11163] = 11013, + [11164] = 11014, + [11165] = 11015, + [11166] = 11016, + [11167] = 11017, + [11168] = 11018, + [11169] = 11025, + [11170] = 11077, + [11171] = 11026, + [11172] = 11020, + [11173] = 11021, + [11174] = 11022, + [11175] = 11023, + [11176] = 11024, + [11177] = 11025, + [11178] = 11026, + [11179] = 11027, + [11180] = 11028, + [11181] = 11029, + [11182] = 11030, + [11183] = 11031, + [11184] = 11032, + [11185] = 11033, + [11186] = 11034, + [11187] = 11027, + [11188] = 11035, + [11189] = 11036, + [11190] = 11037, + [11191] = 11038, + [11192] = 11039, + [11193] = 11040, + [11194] = 11041, + [11195] = 11042, + [11196] = 11043, + [11197] = 11044, + [11198] = 11045, + [11199] = 11046, + [11200] = 11047, + [11201] = 11048, + [11202] = 11049, + [11203] = 11028, + [11204] = 11029, + [11205] = 11051, + [11206] = 11052, + [11207] = 2145, + [11208] = 11127, + [11209] = 11055, + [11210] = 11128, + [11211] = 11129, + [11212] = 11130, + [11213] = 11131, + [11214] = 11132, + [11215] = 11133, + [11216] = 11030, + [11217] = 10952, + [11218] = 11070, + [11219] = 11079, + [11220] = 11079, + [11221] = 11104, + [11222] = 11083, + [11223] = 11031, + [11224] = 11065, + [11225] = 11066, + [11226] = 11100, + [11227] = 11032, + [11228] = 11100, + [11229] = 11108, + [11230] = 11109, + [11231] = 11110, + [11232] = 11111, + [11233] = 11127, + [11234] = 11128, + [11235] = 11129, + [11236] = 11130, + [11237] = 11131, + [11238] = 11132, + [11239] = 11133, + [11240] = 11140, + [11241] = 11141, + [11242] = 11140, + [11243] = 11141, + [11244] = 11011, + [11245] = 11143, + [11246] = 11144, + [11247] = 11145, + [11248] = 11146, + [11249] = 11147, + [11250] = 11148, + [11251] = 11149, + [11252] = 11150, + [11253] = 11011, + [11254] = 11019, + [11255] = 11050, + [11256] = 11060, + [11257] = 11074, + [11258] = 11076, + [11259] = 11078, + [11260] = 11080, + [11261] = 11081, + [11262] = 11012, + [11263] = 11013, + [11264] = 11014, + [11265] = 11015, + [11266] = 11016, + [11267] = 11017, + [11268] = 11018, + [11269] = 11020, + [11270] = 11021, + [11271] = 11022, + [11272] = 11023, + [11273] = 11024, + [11274] = 11025, + [11275] = 11026, + [11276] = 11027, + [11277] = 11028, + [11278] = 11029, + [11279] = 11030, + [11280] = 11031, + [11281] = 11032, + [11282] = 11033, + [11283] = 11034, + [11284] = 11035, + [11285] = 11036, + [11286] = 11037, + [11287] = 11038, + [11288] = 11039, + [11289] = 11040, + [11290] = 11041, + [11291] = 11042, + [11292] = 11043, + [11293] = 11044, + [11294] = 11045, + [11295] = 11046, + [11296] = 11047, + [11297] = 11048, + [11298] = 11049, + [11299] = 11143, + [11300] = 11051, + [11301] = 11052, + [11302] = 11144, + [11303] = 11145, + [11304] = 11146, + [11305] = 11147, + [11306] = 11148, + [11307] = 11149, + [11308] = 11055, + [11309] = 11150, + [11310] = 11033, + [11311] = 11034, + [11312] = 11035, + [11313] = 11070, + [11314] = 11083, + [11315] = 11019, + [11316] = 11050, + [11317] = 11100, + [11318] = 11060, + [11319] = 11074, + [11320] = 11076, + [11321] = 11078, + [11322] = 11080, + [11323] = 11081, + [11324] = 11012, + [11325] = 11013, + [11326] = 11014, + [11327] = 11015, + [11328] = 11016, + [11329] = 11017, + [11330] = 11018, + [11331] = 11036, + [11332] = 11020, + [11333] = 11021, + [11334] = 11022, + [11335] = 11023, + [11336] = 11024, + [11337] = 11025, + [11338] = 11026, + [11339] = 11027, + [11340] = 11028, + [11341] = 11029, + [11342] = 11030, + [11343] = 11031, + [11344] = 11032, + [11345] = 11033, + [11346] = 11034, + [11347] = 11037, + [11348] = 11035, + [11349] = 11036, + [11350] = 11037, + [11351] = 11038, + [11352] = 11039, + [11353] = 11040, + [11354] = 11041, + [11355] = 11042, + [11356] = 11043, + [11357] = 11038, + [11358] = 11051, + [11359] = 11044, + [11360] = 11045, + [11361] = 11046, + [11362] = 11047, + [11363] = 11048, + [11364] = 11049, + [11365] = 11039, + [11366] = 11040, + [11367] = 11082, + [11368] = 11041, + [11369] = 11042, + [11370] = 11083, + [11371] = 11084, + [11372] = 11140, + [11373] = 11141, + [11374] = 11043, + [11375] = 11011, + [11376] = 11053, + [11377] = 11054, + [11378] = 11056, + [11379] = 11082, + [11380] = 11143, + [11381] = 11044, + [11382] = 11144, + [11383] = 11065, + [11384] = 11066, + [11385] = 11072, + [11386] = 11145, + [11387] = 11045, + [11388] = 11046, + [11389] = 11146, + [11390] = 11147, + [11391] = 11148, + [11392] = 11149, + [11393] = 11058, + [11394] = 11068, + [11395] = 11047, + [11396] = 11150, + [11397] = 11100, + [11398] = 11048, + [11399] = 11049, + [11400] = 11049, + [11401] = 11401, + [11402] = 11051, + [11403] = 11052, + [11404] = 11404, + [11405] = 11405, + [11406] = 11066, + [11407] = 11055, + [11408] = 11075, + [11409] = 11059, + [11410] = 11108, + [11411] = 11109, + [11412] = 11110, + [11413] = 11111, + [11414] = 11077, + [11415] = 11113, + [11416] = 11067, + [11417] = 11114, + [11418] = 11070, + [11419] = 11132, + [11420] = 11071, + [11421] = 11073, + [11422] = 11075, + [11423] = 11077, + [11424] = 11065, + [11425] = 11051, + [11426] = 11052, + [11427] = 11120, + [11428] = 11079, + [11429] = 11140, + [11430] = 11083, + [11431] = 11127, + [11432] = 11082, + [11433] = 11083, + [11434] = 11084, + [11435] = 11051, + [11436] = 11052, + [11437] = 11055, + [11438] = 11053, + [11439] = 11054, + [11440] = 11056, + [11441] = 11059, + [11442] = 11055, + [11443] = 11065, + [11444] = 11066, + [11445] = 11059, + [11446] = 11127, + [11447] = 11072, + [11448] = 11128, + [11449] = 11129, + [11450] = 11130, + [11451] = 11058, + [11452] = 11131, + [11453] = 11068, + [11454] = 11132, + [11455] = 11133, + [11456] = 11100, + [11457] = 11141, + [11458] = 11104, + [11459] = 11128, + [11460] = 11072, + [11461] = 11019, + [11462] = 11050, + [11463] = 11108, + [11464] = 11109, + [11465] = 11110, + [11466] = 11111, + [11467] = 11067, + [11468] = 11070, + [11469] = 11113, + [11470] = 11114, + [11471] = 11071, + [11472] = 11060, + [11473] = 11073, + [11474] = 11074, + [11475] = 11120, + [11476] = 11140, + [11477] = 11141, + [11478] = 11130, + [11479] = 11143, + [11480] = 11144, + [11481] = 11127, + [11482] = 11128, + [11483] = 11129, + [11484] = 11130, + [11485] = 11131, + [11486] = 11132, + [11487] = 11133, + [11488] = 11145, + [11489] = 11146, + [11490] = 11147, + [11491] = 11148, + [11492] = 11104, + [11493] = 11149, + [11494] = 11150, + [11495] = 11075, + [11496] = 11076, + [11497] = 11078, + [11498] = 11077, + [11499] = 11140, + [11500] = 11141, + [11501] = 11011, + [11502] = 11143, + [11503] = 11144, + [11504] = 11145, + [11505] = 11146, + [11506] = 11147, + [11507] = 11148, + [11508] = 11149, + [11509] = 11150, + [11510] = 11080, + [11511] = 11019, + [11512] = 11050, + [11513] = 11019, + [11514] = 11050, + [11515] = 11060, + [11516] = 11074, + [11517] = 11076, + [11518] = 11078, + [11519] = 11080, + [11520] = 11081, + [11521] = 11012, + [11522] = 11013, + [11523] = 11014, + [11524] = 11015, + [11525] = 11016, + [11526] = 11017, + [11527] = 11018, + [11528] = 11060, + [11529] = 11074, + [11530] = 11020, + [11531] = 11021, + [11532] = 11022, + [11533] = 11023, + [11534] = 11024, + [11535] = 11025, + [11536] = 11026, + [11537] = 11027, + [11538] = 11028, + [11539] = 11029, + [11540] = 11030, + [11541] = 11031, + [11542] = 11032, + [11543] = 11033, + [11544] = 11034, + [11545] = 11035, + [11546] = 11036, + [11547] = 11131, + [11548] = 11038, + [11549] = 11039, + [11550] = 11040, + [11551] = 11041, + [11552] = 11042, + [11553] = 11043, + [11554] = 11129, + [11555] = 11044, + [11556] = 11045, + [11557] = 11046, + [11558] = 11047, + [11559] = 11048, + [11560] = 11011, + [11561] = 11049, + [11562] = 11076, + [11563] = 11078, + [11564] = 11080, + [11565] = 11081, + [11566] = 11012, + [11567] = 11013, + [11568] = 11014, + [11569] = 11015, + [11570] = 11016, + [11571] = 11017, + [11572] = 11018, + [11573] = 11079, + [11574] = 11129, + [11575] = 11143, + [11576] = 11020, + [11577] = 11021, + [11578] = 11022, + [11579] = 11023, + [11580] = 11024, + [11581] = 11025, + [11582] = 11026, + [11583] = 11027, + [11584] = 11028, + [11585] = 11029, + [11586] = 11030, + [11587] = 11031, + [11588] = 11032, + [11589] = 11033, + [11590] = 11034, + [11591] = 11081, + [11592] = 11051, + [11593] = 11052, + [11594] = 11035, + [11595] = 11036, + [11596] = 11037, + [11597] = 11055, + [11598] = 11038, + [11599] = 11059, + [11600] = 11039, + [11601] = 11040, + [11602] = 11041, + [11603] = 11042, + [11604] = 11043, + [11605] = 11067, + [11606] = 11070, + [11607] = 11044, + [11608] = 11071, + [11609] = 11073, + [11610] = 11075, + [11611] = 11077, + [11612] = 11079, + [11613] = 11082, + [11614] = 11083, + [11615] = 11045, + [11616] = 11084, + [11617] = 11046, + [11618] = 11047, + [11619] = 11053, + [11620] = 11054, + [11621] = 11048, + [11622] = 11056, + [11623] = 11065, + [11624] = 11066, + [11625] = 11072, + [11626] = 11058, + [11627] = 11068, + [11628] = 11100, + [11629] = 11049, + [11630] = 11108, + [11631] = 11109, + [11632] = 11110, + [11633] = 11111, + [11634] = 11113, + [11635] = 11114, + [11636] = 11120, + [11637] = 11012, + [11638] = 11130, + [11639] = 11127, + [11640] = 11128, + [11641] = 11129, + [11642] = 11130, + [11643] = 11131, + [11644] = 11132, + [11645] = 11133, + [11646] = 11013, + [11647] = 11014, + [11648] = 11104, + [11649] = 11082, + [11650] = 11015, + [11651] = 11016, + [11652] = 11140, + [11653] = 11141, + [11654] = 11011, + [11655] = 11143, + [11656] = 11144, + [11657] = 11145, + [11658] = 11146, + [11659] = 11147, + [11660] = 11148, + [11661] = 11149, + [11662] = 11150, + [11663] = 11017, + [11664] = 11083, + [11665] = 11084, + [11666] = 11019, + [11667] = 11050, + [11668] = 11060, + [11669] = 11074, + [11670] = 11076, + [11671] = 11078, + [11672] = 11080, + [11673] = 11081, + [11674] = 11012, + [11675] = 11013, + [11676] = 11014, + [11677] = 11015, + [11678] = 11016, + [11679] = 11017, + [11680] = 11018, + [11681] = 11053, + [11682] = 11020, + [11683] = 11021, + [11684] = 11022, + [11685] = 11023, + [11686] = 11024, + [11687] = 11025, + [11688] = 11026, + [11689] = 11027, + [11690] = 11028, + [11691] = 11029, + [11692] = 11030, + [11693] = 11031, + [11694] = 11032, + [11695] = 11033, + [11696] = 11034, + [11697] = 11018, + [11698] = 11035, + [11699] = 11036, + [11700] = 11037, + [11701] = 11038, + [11702] = 11039, + [11703] = 11040, + [11704] = 11041, + [11705] = 11042, + [11706] = 11043, + [11707] = 11044, + [11708] = 11045, + [11709] = 11046, + [11710] = 11047, + [11711] = 11048, + [11712] = 11049, + [11713] = 11054, + [11714] = 11056, + [11715] = 11067, + [11716] = 11108, + [11717] = 11131, + [11718] = 11109, + [11719] = 11084, + [11720] = 11110, + [11721] = 11065, + [11722] = 11111, + [11723] = 11020, + [11724] = 11066, + [11725] = 11021, + [11726] = 11022, + [11727] = 11051, + [11728] = 11052, + [11729] = 11070, + [11730] = 11023, + [11731] = 11024, + [11732] = 11072, + [11733] = 11055, + [11734] = 11059, + [11735] = 11025, + [11736] = 11026, + [11737] = 11058, + [11738] = 11068, + [11739] = 11027, + [11740] = 11071, + [11741] = 11067, + [11742] = 11028, + [11743] = 11070, + [11744] = 11100, + [11745] = 11071, + [11746] = 11073, + [11747] = 11075, + [11748] = 11077, + [11749] = 11029, + [11750] = 11079, + [11751] = 11751, + [11752] = 11030, + [11753] = 11031, + [11754] = 11082, + [11755] = 11083, + [11756] = 11032, + [11757] = 11084, + [11758] = 11113, + [11759] = 11033, + [11760] = 11067, + [11761] = 11053, + [11762] = 11054, + [11763] = 11114, + [11764] = 11056, + [11765] = 11065, + [11766] = 11066, + [11767] = 11034, + [11768] = 11072, + [11769] = 11059, + [11770] = 11051, + [11771] = 11058, + [11772] = 11073, + [11773] = 11068, + [11774] = 11052, + [11775] = 11100, + [11776] = 11075, + [11777] = 11132, + [11778] = 11108, + [11779] = 11109, + [11780] = 11110, + [11781] = 11111, + [11782] = 11077, + [11783] = 11144, + [11784] = 11113, + [11785] = 11133, + [11786] = 11114, + [11787] = 11035, + [11788] = 11108, + [11789] = 11109, + [11790] = 11120, + [11791] = 11036, + [11792] = 11792, + [11793] = 11037, + [11794] = 11127, + [11795] = 11128, + [11796] = 11129, + [11797] = 11130, + [11798] = 11131, + [11799] = 11132, + [11800] = 11133, + [11801] = 11038, + [11802] = 11110, + [11803] = 11803, + [11804] = 11104, + [11805] = 11120, + [11806] = 11039, + [11807] = 11111, + [11808] = 2129, + [11809] = 11140, + [11810] = 11141, + [11811] = 11011, + [11812] = 11143, + [11813] = 11144, + [11814] = 11145, + [11815] = 11146, + [11816] = 11147, + [11817] = 11148, + [11818] = 11149, + [11819] = 11150, + [11820] = 11040, + [11821] = 11079, + [11822] = 11041, + [11823] = 11113, + [11824] = 11019, + [11825] = 11050, + [11826] = 11060, + [11827] = 11074, + [11828] = 11076, + [11829] = 11078, + [11830] = 11080, + [11831] = 11081, + [11832] = 11012, + [11833] = 11013, + [11834] = 11014, + [11835] = 11015, + [11836] = 11016, + [11837] = 11017, + [11838] = 11018, + [11839] = 11042, + [11840] = 11020, + [11841] = 11021, + [11842] = 11022, + [11843] = 11023, + [11844] = 11024, + [11845] = 11025, + [11846] = 11026, + [11847] = 11027, + [11848] = 11028, + [11849] = 11029, + [11850] = 11030, + [11851] = 11031, + [11852] = 11032, + [11853] = 11033, + [11854] = 11034, + [11855] = 11035, + [11856] = 11036, + [11857] = 11037, + [11858] = 11038, + [11859] = 11039, + [11860] = 11040, + [11861] = 11041, + [11862] = 11042, + [11863] = 11043, + [11864] = 11044, + [11865] = 11045, + [11866] = 11046, + [11867] = 11047, + [11868] = 11048, + [11869] = 11049, + [11870] = 11114, + [11871] = 11145, + [11872] = 11120, + [11873] = 11079, + [11874] = 11043, + [11875] = 11146, + [11876] = 11147, + [11877] = 11148, + [11878] = 11149, + [11879] = 11127, + [11880] = 11128, + [11881] = 11129, + [11882] = 11044, + [11883] = 11130, + [11884] = 11131, + [11885] = 11070, + [11886] = 11132, + [11887] = 11887, + [11888] = 11051, + [11889] = 11052, + [11890] = 11133, + [11891] = 11053, + [11892] = 11054, + [11893] = 11055, + [11894] = 11150, + [11895] = 11059, + [11896] = 11104, + [11897] = 11082, + [11898] = 11051, + [11899] = 11052, + [11900] = 11083, + [11901] = 11104, + [11902] = 11140, + [11903] = 11045, + [11904] = 11141, + [11905] = 11067, + [11906] = 2129, + [11907] = 11070, + [11908] = 11071, + [11909] = 11073, + [11910] = 11075, + [11911] = 2132, + [11912] = 11077, + [11913] = 11079, + [11914] = 2136, + [11915] = 2140, + [11916] = 11082, + [11917] = 2142, + [11918] = 11083, + [11919] = 11046, + [11920] = 11084, + [11921] = 11056, + [11922] = 11011, + [11923] = 11047, + [11924] = 11053, + [11925] = 11054, + [11926] = 2145, + [11927] = 11056, + [11928] = 11065, + [11929] = 11066, + [11930] = 11143, + [11931] = 11144, + [11932] = 11145, + [11933] = 11072, + [11934] = 11048, + [11935] = 11058, + [11936] = 11146, + [11937] = 11068, + [11938] = 11147, + [11939] = 11148, + [11940] = 11149, + [11941] = 11100, + [11942] = 11150, + [11943] = 11084, + [11944] = 11133, + [11945] = 11019, + [11946] = 11108, + [11947] = 11109, + [11948] = 11110, + [11949] = 11111, + [11950] = 11050, + [11951] = 11060, + [11952] = 11113, + [11953] = 11114, + [11954] = 11071, + [11955] = 11074, + [11956] = 11120, + [11957] = 11076, + [11958] = 11073, + [11959] = 11078, + [11960] = 11080, + [11961] = 11081, + [11962] = 11127, + [11963] = 11128, + [11964] = 11037, + [11965] = 11965, + [11966] = 11966, + [11967] = 11967, + [11968] = 11968, + [11969] = 11969, + [11970] = 11970, + [11971] = 11971, + [11972] = 11972, + [11973] = 11973, + [11974] = 11974, + [11975] = 11975, + [11976] = 11976, + [11977] = 11977, + [11978] = 11978, + [11979] = 11979, + [11980] = 11980, + [11981] = 11981, + [11982] = 11982, + [11983] = 11983, + [11984] = 11984, + [11985] = 11985, + [11986] = 11986, + [11987] = 11987, + [11988] = 11988, + [11989] = 11989, + [11990] = 11990, + [11991] = 11991, + [11992] = 11992, + [11993] = 11993, + [11994] = 11994, + [11995] = 11995, + [11996] = 11996, + [11997] = 11997, + [11998] = 11998, + [11999] = 11999, + [12000] = 12000, + [12001] = 12001, + [12002] = 12002, + [12003] = 12003, + [12004] = 12004, + [12005] = 12005, + [12006] = 12006, + [12007] = 12007, + [12008] = 12008, + [12009] = 12009, + [12010] = 12010, + [12011] = 12011, + [12012] = 12012, + [12013] = 12013, + [12014] = 12014, + [12015] = 11965, + [12016] = 12016, + [12017] = 12017, + [12018] = 12018, + [12019] = 12019, + [12020] = 12020, + [12021] = 12021, + [12022] = 12022, + [12023] = 12023, + [12024] = 12024, + [12025] = 12025, + [12026] = 12026, + [12027] = 12027, + [12028] = 12028, + [12029] = 12029, + [12030] = 12030, + [12031] = 12031, + [12032] = 12032, + [12033] = 12033, + [12034] = 12034, + [12035] = 12035, + [12036] = 12036, + [12037] = 11966, + [12038] = 11971, + [12039] = 11974, + [12040] = 11976, + [12041] = 12041, + [12042] = 11993, + [12043] = 11997, + [12044] = 12044, + [12045] = 12009, + [12046] = 12011, + [12047] = 12019, + [12048] = 12036, + [12049] = 12049, + [12050] = 12044, + [12051] = 12051, + [12052] = 12052, + [12053] = 12053, + [12054] = 12054, + [12055] = 12055, + [12056] = 12056, + [12057] = 12057, + [12058] = 12058, + [12059] = 12059, + [12060] = 12060, + [12061] = 12061, + [12062] = 12062, + [12063] = 12063, + [12064] = 12064, + [12065] = 12065, + [12066] = 12066, + [12067] = 11978, + [12068] = 12041, + [12069] = 12069, + [12070] = 12070, + [12071] = 12071, + [12072] = 12072, + [12073] = 12073, + [12074] = 12074, + [12075] = 12075, + [12076] = 12051, + [12077] = 12077, + [12078] = 12078, + [12079] = 12079, + [12080] = 12080, + [12081] = 12081, + [12082] = 12082, + [12083] = 12083, + [12084] = 12084, + [12085] = 12085, + [12086] = 12086, + [12087] = 12087, + [12088] = 12088, + [12089] = 12089, + [12090] = 12090, + [12091] = 12091, + [12092] = 12092, + [12093] = 12093, + [12094] = 12094, + [12095] = 12095, + [12096] = 12096, + [12097] = 12097, + [12098] = 12098, + [12099] = 12099, + [12100] = 12100, + [12101] = 12101, + [12102] = 12102, + [12103] = 12103, + [12104] = 12104, + [12105] = 12105, + [12106] = 12052, + [12107] = 12053, + [12108] = 12002, + [12109] = 12109, + [12110] = 12110, + [12111] = 12111, + [12112] = 12112, + [12113] = 12054, + [12114] = 12114, + [12115] = 12115, + [12116] = 12116, + [12117] = 12117, + [12118] = 12055, + [12119] = 12119, + [12120] = 12056, + [12121] = 12121, + [12122] = 12122, + [12123] = 12123, + [12124] = 12057, + [12125] = 12125, + [12126] = 12126, + [12127] = 12127, + [12128] = 12058, + [12129] = 12129, + [12130] = 12130, + [12131] = 12131, + [12132] = 11969, + [12133] = 12133, + [12134] = 12059, + [12135] = 12135, + [12136] = 12060, + [12137] = 12137, + [12138] = 12138, + [12139] = 11975, + [12140] = 11967, + [12141] = 11968, + [12142] = 11979, + [12143] = 12143, + [12144] = 11984, + [12145] = 12061, + [12146] = 11970, + [12147] = 11999, + [12148] = 12000, + [12149] = 12062, + [12150] = 12007, + [12151] = 11972, + [12152] = 11973, + [12153] = 12014, + [12154] = 12114, + [12155] = 12063, + [12156] = 12064, + [12157] = 12065, + [12158] = 11977, + [12159] = 12129, + [12160] = 12137, + [12161] = 12049, + [12162] = 12066, + [12163] = 12103, + [12164] = 12105, + [12165] = 11978, + [12166] = 11980, + [12167] = 12167, + [12168] = 12168, + [12169] = 12110, + [12170] = 12111, + [12171] = 12112, + [12172] = 11981, + [12173] = 12115, + [12174] = 11982, + [12175] = 11983, + [12176] = 12121, + [12177] = 12123, + [12178] = 12041, + [12179] = 11985, + [12180] = 12133, + [12181] = 11986, + [12182] = 11987, + [12183] = 11967, + [12184] = 11968, + [12185] = 11988, + [12186] = 11970, + [12187] = 11989, + [12188] = 11972, + [12189] = 11973, + [12190] = 11990, + [12191] = 11991, + [12192] = 11992, + [12193] = 11977, + [12194] = 12069, + [12195] = 11994, + [12196] = 11980, + [12197] = 11981, + [12198] = 11982, + [12199] = 11983, + [12200] = 11995, + [12201] = 11985, + [12202] = 11996, + [12203] = 11986, + [12204] = 11987, + [12205] = 11988, + [12206] = 11989, + [12207] = 11990, + [12208] = 11991, + [12209] = 11992, + [12210] = 12070, + [12211] = 11994, + [12212] = 11995, + [12213] = 11996, + [12214] = 11998, + [12215] = 11998, + [12216] = 12071, + [12217] = 12072, + [12218] = 12001, + [12219] = 12001, + [12220] = 12003, + [12221] = 12004, + [12222] = 12005, + [12223] = 12006, + [12224] = 12073, + [12225] = 12008, + [12226] = 12003, + [12227] = 12010, + [12228] = 12004, + [12229] = 12012, + [12230] = 12013, + [12231] = 12005, + [12232] = 12006, + [12233] = 12074, + [12234] = 11965, + [12235] = 12016, + [12236] = 12017, + [12237] = 12018, + [12238] = 12008, + [12239] = 12020, + [12240] = 12021, + [12241] = 12241, + [12242] = 12022, + [12243] = 12023, + [12244] = 12024, + [12245] = 12025, + [12246] = 12026, + [12247] = 12027, + [12248] = 12028, + [12249] = 12029, + [12250] = 12030, + [12251] = 12031, + [12252] = 12032, + [12253] = 12033, + [12254] = 12168, + [12255] = 12255, + [12256] = 12034, + [12257] = 12035, + [12258] = 12075, + [12259] = 11966, + [12260] = 11971, + [12261] = 11974, + [12262] = 11976, + [12263] = 2129, + [12264] = 12010, + [12265] = 11993, + [12266] = 11997, + [12267] = 12267, + [12268] = 12268, + [12269] = 12066, + [12270] = 12009, + [12271] = 12011, + [12272] = 12019, + [12273] = 12036, + [12274] = 12012, + [12275] = 12044, + [12276] = 12051, + [12277] = 12052, + [12278] = 12053, + [12279] = 2132, + [12280] = 12054, + [12281] = 2136, + [12282] = 12055, + [12283] = 12056, + [12284] = 12057, + [12285] = 12058, + [12286] = 12059, + [12287] = 12060, + [12288] = 12288, + [12289] = 12061, + [12290] = 12062, + [12291] = 2140, + [12292] = 12063, + [12293] = 12064, + [12294] = 2142, + [12295] = 12065, + [12296] = 12066, + [12297] = 12297, + [12298] = 11978, + [12299] = 12041, + [12300] = 12069, + [12301] = 12070, + [12302] = 12071, + [12303] = 2145, + [12304] = 12072, + [12305] = 12073, + [12306] = 12074, + [12307] = 12075, + [12308] = 12013, + [12309] = 12077, + [12310] = 12078, + [12311] = 12079, + [12312] = 12080, + [12313] = 12081, + [12314] = 12082, + [12315] = 12083, + [12316] = 12084, + [12317] = 12085, + [12318] = 12077, + [12319] = 12086, + [12320] = 12087, + [12321] = 12088, + [12322] = 12089, + [12323] = 12090, + [12324] = 12091, + [12325] = 12092, + [12326] = 12093, + [12327] = 12094, + [12328] = 12095, + [12329] = 12096, + [12330] = 12097, + [12331] = 12098, + [12332] = 12099, + [12333] = 12100, + [12334] = 12101, + [12335] = 11965, + [12336] = 12016, + [12337] = 12017, + [12338] = 12018, + [12339] = 12127, + [12340] = 12078, + [12341] = 12341, + [12342] = 12342, + [12343] = 12020, + [12344] = 12129, + [12345] = 12130, + [12346] = 12346, + [12347] = 12021, + [12348] = 12022, + [12349] = 12023, + [12350] = 12350, + [12351] = 12351, + [12352] = 12352, + [12353] = 12024, + [12354] = 12354, + [12355] = 12025, + [12356] = 12026, + [12357] = 12102, + [12358] = 12358, + [12359] = 12131, + [12360] = 12027, + [12361] = 12028, + [12362] = 12029, + [12363] = 12104, + [12364] = 12364, + [12365] = 12365, + [12366] = 12030, + [12367] = 12031, + [12368] = 12032, + [12369] = 12369, + [12370] = 12033, + [12371] = 12137, + [12372] = 12255, + [12373] = 12002, + [12374] = 12034, + [12375] = 12035, + [12376] = 12079, + [12377] = 11966, + [12378] = 11971, + [12379] = 11974, + [12380] = 12138, + [12381] = 11976, + [12382] = 12080, + [12383] = 12117, + [12384] = 12384, + [12385] = 11993, + [12386] = 11997, + [12387] = 12081, + [12388] = 12009, + [12389] = 12135, + [12390] = 12011, + [12391] = 12346, + [12392] = 12364, + [12393] = 12137, + [12394] = 12138, + [12395] = 12395, + [12396] = 12019, + [12397] = 12036, + [12398] = 12398, + [12399] = 12399, + [12400] = 12400, + [12401] = 12082, + [12402] = 12402, + [12403] = 12403, + [12404] = 12044, + [12405] = 12405, + [12406] = 12406, + [12407] = 12407, + [12408] = 12408, + [12409] = 12051, + [12410] = 12052, + [12411] = 12053, + [12412] = 12288, + [12413] = 12109, + [12414] = 12054, + [12415] = 12122, + [12416] = 12055, + [12417] = 12417, + [12418] = 12114, + [12419] = 12419, + [12420] = 12056, + [12421] = 12116, + [12422] = 12057, + [12423] = 12058, + [12424] = 12059, + [12425] = 12060, + [12426] = 12426, + [12427] = 12427, + [12428] = 12061, + [12429] = 12429, + [12430] = 12430, + [12431] = 12062, + [12432] = 12063, + [12433] = 12433, + [12434] = 12064, + [12435] = 12065, + [12436] = 12066, + [12437] = 11978, + [12438] = 12041, + [12439] = 12439, + [12440] = 12069, + [12441] = 12441, + [12442] = 12070, + [12443] = 12071, + [12444] = 12408, + [12445] = 12125, + [12446] = 12072, + [12447] = 12073, + [12448] = 12127, + [12449] = 12074, + [12450] = 12075, + [12451] = 12451, + [12452] = 12083, + [12453] = 12077, + [12454] = 12078, + [12455] = 12079, + [12456] = 12456, + [12457] = 12080, + [12458] = 12143, + [12459] = 12081, + [12460] = 12241, + [12461] = 12461, + [12462] = 12127, + [12463] = 12082, + [12464] = 12464, + [12465] = 12342, + [12466] = 12083, + [12467] = 12168, + [12468] = 12255, + [12469] = 12129, + [12470] = 12130, + [12471] = 12398, + [12472] = 12400, + [12473] = 12084, + [12474] = 12085, + [12475] = 12267, + [12476] = 12268, + [12477] = 12086, + [12478] = 12352, + [12479] = 12479, + [12480] = 12480, + [12481] = 12354, + [12482] = 12087, + [12483] = 12088, + [12484] = 12484, + [12485] = 12297, + [12486] = 12405, + [12487] = 12358, + [12488] = 12131, + [12489] = 12089, + [12490] = 12090, + [12491] = 12406, + [12492] = 12091, + [12493] = 12267, + [12494] = 12494, + [12495] = 12092, + [12496] = 12369, + [12497] = 12093, + [12498] = 12094, + [12499] = 12268, + [12500] = 12095, + [12501] = 12501, + [12502] = 12096, + [12503] = 12097, + [12504] = 12504, + [12505] = 12098, + [12506] = 12099, + [12507] = 12507, + [12508] = 12508, + [12509] = 12384, + [12510] = 12100, + [12511] = 12101, + [12512] = 12352, + [12513] = 12403, + [12514] = 12084, + [12515] = 12135, + [12516] = 12407, + [12517] = 12346, + [12518] = 12364, + [12519] = 12137, + [12520] = 12138, + [12521] = 12408, + [12522] = 11969, + [12523] = 12523, + [12524] = 12085, + [12525] = 12086, + [12526] = 12398, + [12527] = 12400, + [12528] = 12354, + [12529] = 12288, + [12530] = 12087, + [12531] = 12088, + [12532] = 12405, + [12533] = 12288, + [12534] = 12534, + [12535] = 12109, + [12536] = 12456, + [12537] = 12426, + [12538] = 12427, + [12539] = 12089, + [12540] = 12429, + [12541] = 12358, + [12542] = 12131, + [12543] = 11975, + [12544] = 12544, + [12545] = 12090, + [12546] = 12433, + [12547] = 12417, + [12548] = 12114, + [12549] = 12384, + [12550] = 12091, + [12551] = 12116, + [12552] = 12092, + [12553] = 11979, + [12554] = 12451, + [12555] = 12093, + [12556] = 11984, + [12557] = 12417, + [12558] = 12143, + [12559] = 12461, + [12560] = 12464, + [12561] = 12114, + [12562] = 12350, + [12563] = 12351, + [12564] = 12094, + [12565] = 12102, + [12566] = 12095, + [12567] = 12104, + [12568] = 12096, + [12569] = 12002, + [12570] = 12297, + [12571] = 12116, + [12572] = 12501, + [12573] = 12430, + [12574] = 12504, + [12575] = 12097, + [12576] = 12098, + [12577] = 12507, + [12578] = 12508, + [12579] = 12099, + [12580] = 12369, + [12581] = 12100, + [12582] = 12116, + [12583] = 12101, + [12584] = 12584, + [12585] = 12585, + [12586] = 12523, + [12587] = 12049, + [12588] = 12439, + [12589] = 12117, + [12590] = 12534, + [12591] = 12077, + [12592] = 12441, + [12593] = 12078, + [12594] = 12534, + [12595] = 12241, + [12596] = 12122, + [12597] = 12544, + [12598] = 12103, + [12599] = 11999, + [12600] = 12000, + [12601] = 12168, + [12602] = 12255, + [12603] = 12079, + [12604] = 12604, + [12605] = 12350, + [12606] = 12351, + [12607] = 12267, + [12608] = 12268, + [12609] = 12125, + [12610] = 12102, + [12611] = 12297, + [12612] = 12104, + [12613] = 12080, + [12614] = 12002, + [12615] = 12081, + [12616] = 12125, + [12617] = 12456, + [12618] = 12082, + [12619] = 12430, + [12620] = 12117, + [12621] = 12105, + [12622] = 12534, + [12623] = 12007, + [12624] = 12122, + [12625] = 12241, + [12626] = 11969, + [12627] = 12627, + [12628] = 12127, + [12629] = 11969, + [12630] = 12083, + [12631] = 12342, + [12632] = 12168, + [12633] = 12255, + [12634] = 11975, + [12635] = 12635, + [12636] = 12129, + [12637] = 11979, + [12638] = 12267, + [12639] = 12268, + [12640] = 11984, + [12641] = 12130, + [12642] = 12073, + [12643] = 11999, + [12644] = 12000, + [12645] = 12403, + [12646] = 12007, + [12647] = 12084, + [12648] = 12352, + [12649] = 12014, + [12650] = 12407, + [12651] = 12085, + [12652] = 12241, + [12653] = 12384, + [12654] = 12354, + [12655] = 12049, + [12656] = 12407, + [12657] = 12103, + [12658] = 12105, + [12659] = 12168, + [12660] = 12255, + [12661] = 12086, + [12662] = 11975, + [12663] = 12408, + [12664] = 12369, + [12665] = 12267, + [12666] = 12268, + [12667] = 11979, + [12668] = 12110, + [12669] = 12111, + [12670] = 12112, + [12671] = 12074, + [12672] = 12115, + [12673] = 12358, + [12674] = 12131, + [12675] = 12121, + [12676] = 12123, + [12677] = 12241, + [12678] = 12110, + [12679] = 12111, + [12680] = 12133, + [12681] = 12087, + [12682] = 12369, + [12683] = 11967, + [12684] = 12168, + [12685] = 12255, + [12686] = 11968, + [12687] = 12403, + [12688] = 11970, + [12689] = 12109, + [12690] = 12267, + [12691] = 12268, + [12692] = 11972, + [12693] = 11973, + [12694] = 12135, + [12695] = 12407, + [12696] = 12408, + [12697] = 11977, + [12698] = 12346, + [12699] = 12364, + [12700] = 11980, + [12701] = 11981, + [12702] = 12241, + [12703] = 11982, + [12704] = 11983, + [12705] = 12137, + [12706] = 11985, + [12707] = 11984, + [12708] = 12168, + [12709] = 12255, + [12710] = 11986, + [12711] = 11987, + [12712] = 11988, + [12713] = 11989, + [12714] = 12267, + [12715] = 12268, + [12716] = 11990, + [12717] = 11991, + [12718] = 11992, + [12719] = 12384, + [12720] = 11994, + [12721] = 11995, + [12722] = 11996, + [12723] = 12112, + [12724] = 11998, + [12725] = 12138, + [12726] = 12241, + [12727] = 12117, + [12728] = 12001, + [12729] = 12729, + [12730] = 12003, + [12731] = 12004, + [12732] = 12168, + [12733] = 12255, + [12734] = 12005, + [12735] = 12006, + [12736] = 12088, + [12737] = 12008, + [12738] = 12267, + [12739] = 12268, + [12740] = 12135, + [12741] = 12010, + [12742] = 12089, + [12743] = 12012, + [12744] = 12013, + [12745] = 12346, + [12746] = 12364, + [12747] = 12016, + [12748] = 12017, + [12749] = 12241, + [12750] = 12018, + [12751] = 12137, + [12752] = 12168, + [12753] = 12255, + [12754] = 12020, + [12755] = 12021, + [12756] = 12267, + [12757] = 12268, + [12758] = 12022, + [12759] = 12023, + [12760] = 12024, + [12761] = 12025, + [12762] = 12026, + [12763] = 12027, + [12764] = 12241, + [12765] = 12168, + [12766] = 12255, + [12767] = 12267, + [12768] = 12268, + [12769] = 12028, + [12770] = 12241, + [12771] = 12168, + [12772] = 12255, + [12773] = 12267, + [12774] = 12268, + [12775] = 12029, + [12776] = 12030, + [12777] = 12031, + [12778] = 12032, + [12779] = 12033, + [12780] = 12034, + [12781] = 12035, + [12782] = 12138, + [12783] = 11966, + [12784] = 11971, + [12785] = 11974, + [12786] = 11976, + [12787] = 12787, + [12788] = 11993, + [12789] = 11997, + [12790] = 12109, + [12791] = 12009, + [12792] = 12011, + [12793] = 12019, + [12794] = 12036, + [12795] = 12398, + [12796] = 12044, + [12797] = 12051, + [12798] = 12052, + [12799] = 12053, + [12800] = 12054, + [12801] = 12055, + [12802] = 12056, + [12803] = 12057, + [12804] = 12058, + [12805] = 12059, + [12806] = 12060, + [12807] = 12061, + [12808] = 12398, + [12809] = 12062, + [12810] = 12063, + [12811] = 12064, + [12812] = 12065, + [12813] = 12066, + [12814] = 11978, + [12815] = 12041, + [12816] = 12069, + [12817] = 12070, + [12818] = 12071, + [12819] = 12072, + [12820] = 12073, + [12821] = 12074, + [12822] = 12075, + [12823] = 12823, + [12824] = 12077, + [12825] = 12078, + [12826] = 12079, + [12827] = 12080, + [12828] = 12081, + [12829] = 12082, + [12830] = 12083, + [12831] = 12084, + [12832] = 12085, + [12833] = 12086, + [12834] = 12087, + [12835] = 12088, + [12836] = 12089, + [12837] = 12090, + [12838] = 12091, + [12839] = 12092, + [12840] = 12093, + [12841] = 12094, + [12842] = 12095, + [12843] = 12096, + [12844] = 12097, + [12845] = 12098, + [12846] = 12099, + [12847] = 12100, + [12848] = 12101, + [12849] = 12400, + [12850] = 12400, + [12851] = 11999, + [12852] = 12000, + [12853] = 12405, + [12854] = 12007, + [12855] = 12501, + [12856] = 12090, + [12857] = 12014, + [12858] = 12426, + [12859] = 12427, + [12860] = 12091, + [12861] = 12429, + [12862] = 12049, + [12863] = 12417, + [12864] = 12103, + [12865] = 12105, + [12866] = 12405, + [12867] = 12406, + [12868] = 12417, + [12869] = 12433, + [12870] = 12110, + [12871] = 12111, + [12872] = 12112, + [12873] = 12114, + [12874] = 12115, + [12875] = 12288, + [12876] = 12114, + [12877] = 12121, + [12878] = 12123, + [12879] = 12115, + [12880] = 12116, + [12881] = 12133, + [12882] = 12069, + [12883] = 12544, + [12884] = 11967, + [12885] = 11968, + [12886] = 12116, + [12887] = 11970, + [12888] = 12451, + [12889] = 11972, + [12890] = 11973, + [12891] = 12092, + [12892] = 12121, + [12893] = 12426, + [12894] = 11977, + [12895] = 12427, + [12896] = 12093, + [12897] = 11980, + [12898] = 11981, + [12899] = 11982, + [12900] = 11983, + [12901] = 12143, + [12902] = 11985, + [12903] = 12461, + [12904] = 12403, + [12905] = 11986, + [12906] = 11987, + [12907] = 11988, + [12908] = 12407, + [12909] = 12408, + [12910] = 12464, + [12911] = 12429, + [12912] = 11989, + [12913] = 11990, + [12914] = 11991, + [12915] = 12109, + [12916] = 11992, + [12917] = 12430, + [12918] = 11994, + [12919] = 11995, + [12920] = 11996, + [12921] = 12123, + [12922] = 11998, + [12923] = 12417, + [12924] = 12114, + [12925] = 12417, + [12926] = 12433, + [12927] = 12116, + [12928] = 12094, + [12929] = 12071, + [12930] = 12001, + [12931] = 12501, + [12932] = 12003, + [12933] = 12004, + [12934] = 12005, + [12935] = 12006, + [12936] = 12072, + [12937] = 12430, + [12938] = 12008, + [12939] = 12504, + [12940] = 12010, + [12941] = 12133, + [12942] = 12012, + [12943] = 12013, + [12944] = 12430, + [12945] = 11965, + [12946] = 12507, + [12947] = 12016, + [12948] = 12017, + [12949] = 12508, + [12950] = 12018, + [12951] = 12122, + [12952] = 12020, + [12953] = 12439, + [12954] = 12095, + [12955] = 12021, + [12956] = 12441, + [12957] = 12439, + [12958] = 12022, + [12959] = 12479, + [12960] = 12023, + [12961] = 12125, + [12962] = 12523, + [12963] = 12024, + [12964] = 12025, + [12965] = 12026, + [12966] = 12027, + [12967] = 12504, + [12968] = 12028, + [12969] = 12029, + [12970] = 12030, + [12971] = 12456, + [12972] = 12031, + [12973] = 12032, + [12974] = 12033, + [12975] = 12441, + [12976] = 12034, + [12977] = 12035, + [12978] = 12127, + [12979] = 12979, + [12980] = 12534, + [12981] = 12342, + [12982] = 12439, + [12983] = 12129, + [12984] = 12130, + [12985] = 11966, + [12986] = 11971, + [12987] = 11974, + [12988] = 11976, + [12989] = 11967, + [12990] = 11993, + [12991] = 11997, + [12992] = 11968, + [12993] = 12352, + [12994] = 12009, + [12995] = 12011, + [12996] = 12019, + [12997] = 12354, + [12998] = 12544, + [12999] = 12451, + [13000] = 12036, + [13001] = 12125, + [13002] = 12044, + [13003] = 12358, + [13004] = 12131, + [13005] = 12441, + [13006] = 12051, + [13007] = 12052, + [13008] = 12053, + [13009] = 13009, + [13010] = 12369, + [13011] = 11970, + [13012] = 12054, + [13013] = 12055, + [13014] = 12056, + [13015] = 12057, + [13016] = 12350, + [13017] = 12058, + [13018] = 12059, + [13019] = 12060, + [13020] = 12061, + [13021] = 12062, + [13022] = 12063, + [13023] = 12384, + [13024] = 12351, + [13025] = 12064, + [13026] = 12096, + [13027] = 12065, + [13028] = 12066, + [13029] = 11978, + [13030] = 12135, + [13031] = 12102, + [13032] = 12346, + [13033] = 12364, + [13034] = 12137, + [13035] = 12138, + [13036] = 12041, + [13037] = 12069, + [13038] = 12070, + [13039] = 12071, + [13040] = 12072, + [13041] = 12073, + [13042] = 12074, + [13043] = 12075, + [13044] = 13044, + [13045] = 12398, + [13046] = 12077, + [13047] = 12400, + [13048] = 12078, + [13049] = 12079, + [13050] = 12080, + [13051] = 12081, + [13052] = 12405, + [13053] = 12104, + [13054] = 11972, + [13055] = 12426, + [13056] = 12427, + [13057] = 12002, + [13058] = 12429, + [13059] = 11973, + [13060] = 12082, + [13061] = 12083, + [13062] = 12084, + [13063] = 12085, + [13064] = 12433, + [13065] = 12456, + [13066] = 12086, + [13067] = 11969, + [13068] = 12087, + [13069] = 12088, + [13070] = 12089, + [13071] = 12090, + [13072] = 12091, + [13073] = 12092, + [13074] = 12093, + [13075] = 12451, + [13076] = 12097, + [13077] = 12114, + [13078] = 12095, + [13079] = 12096, + [13080] = 12097, + [13081] = 12143, + [13082] = 12461, + [13083] = 12464, + [13084] = 12098, + [13085] = 12099, + [13086] = 12100, + [13087] = 12101, + [13088] = 12070, + [13089] = 12014, + [13090] = 12117, + [13091] = 13091, + [13092] = 13092, + [13093] = 12501, + [13094] = 12507, + [13095] = 12504, + [13096] = 12127, + [13097] = 12523, + [13098] = 12507, + [13099] = 12508, + [13100] = 12143, + [13101] = 12122, + [13102] = 12461, + [13103] = 12464, + [13104] = 11969, + [13105] = 12523, + [13106] = 12342, + [13107] = 11977, + [13108] = 2129, + [13109] = 11975, + [13110] = 12534, + [13111] = 12129, + [13112] = 12049, + [13113] = 12544, + [13114] = 12130, + [13115] = 11979, + [13116] = 12350, + [13117] = 12351, + [13118] = 11984, + [13119] = 12102, + [13120] = 12098, + [13121] = 12104, + [13122] = 12508, + [13123] = 12002, + [13124] = 11999, + [13125] = 12000, + [13126] = 12352, + [13127] = 12007, + [13128] = 12354, + [13129] = 12117, + [13130] = 11975, + [13131] = 2132, + [13132] = 12014, + [13133] = 12508, + [13134] = 2136, + [13135] = 12122, + [13136] = 12103, + [13137] = 12105, + [13138] = 12099, + [13139] = 11969, + [13140] = 12100, + [13141] = 12358, + [13142] = 11975, + [13143] = 12049, + [13144] = 12131, + [13145] = 11979, + [13146] = 11984, + [13147] = 12103, + [13148] = 12105, + [13149] = 11999, + [13150] = 12000, + [13151] = 11980, + [13152] = 12007, + [13153] = 11981, + [13154] = 12125, + [13155] = 12014, + [13156] = 11982, + [13157] = 11983, + [13158] = 12110, + [13159] = 12111, + [13160] = 12049, + [13161] = 12112, + [13162] = 12103, + [13163] = 12105, + [13164] = 12369, + [13165] = 2140, + [13166] = 2142, + [13167] = 12115, + [13168] = 12110, + [13169] = 12111, + [13170] = 12112, + [13171] = 12350, + [13172] = 12115, + [13173] = 11985, + [13174] = 12121, + [13175] = 12121, + [13176] = 12123, + [13177] = 12123, + [13178] = 12075, + [13179] = 12133, + [13180] = 12384, + [13181] = 12133, + [13182] = 11967, + [13183] = 11968, + [13184] = 11986, + [13185] = 11970, + [13186] = 12439, + [13187] = 11972, + [13188] = 11973, + [13189] = 11967, + [13190] = 11968, + [13191] = 11987, + [13192] = 11977, + [13193] = 11970, + [13194] = 11988, + [13195] = 11980, + [13196] = 11981, + [13197] = 11982, + [13198] = 11983, + [13199] = 11972, + [13200] = 11985, + [13201] = 11973, + [13202] = 11986, + [13203] = 11987, + [13204] = 11988, + [13205] = 11989, + [13206] = 11990, + [13207] = 11991, + [13208] = 11992, + [13209] = 12441, + [13210] = 11994, + [13211] = 11995, + [13212] = 11996, + [13213] = 12135, + [13214] = 11998, + [13215] = 11989, + [13216] = 11977, + [13217] = 12001, + [13218] = 12346, + [13219] = 12003, + [13220] = 12004, + [13221] = 12005, + [13222] = 12006, + [13223] = 12364, + [13224] = 12008, + [13225] = 11980, + [13226] = 12010, + [13227] = 11981, + [13228] = 12012, + [13229] = 12013, + [13230] = 11982, + [13231] = 11965, + [13232] = 12016, + [13233] = 12017, + [13234] = 12018, + [13235] = 11983, + [13236] = 12020, + [13237] = 12021, + [13238] = 12022, + [13239] = 12023, + [13240] = 12024, + [13241] = 12025, + [13242] = 12026, + [13243] = 12027, + [13244] = 12028, + [13245] = 12029, + [13246] = 12030, + [13247] = 12031, + [13248] = 12032, + [13249] = 12033, + [13250] = 12034, + [13251] = 12035, + [13252] = 12137, + [13253] = 11966, + [13254] = 11971, + [13255] = 11974, + [13256] = 11976, + [13257] = 11985, + [13258] = 11993, + [13259] = 11997, + [13260] = 12138, + [13261] = 12009, + [13262] = 12011, + [13263] = 12019, + [13264] = 12036, + [13265] = 11986, + [13266] = 12044, + [13267] = 12051, + [13268] = 12052, + [13269] = 12053, + [13270] = 12054, + [13271] = 12055, + [13272] = 12056, + [13273] = 12057, + [13274] = 12058, + [13275] = 12059, + [13276] = 12060, + [13277] = 12061, + [13278] = 12062, + [13279] = 12063, + [13280] = 12064, + [13281] = 12065, + [13282] = 12066, + [13283] = 11978, + [13284] = 12041, + [13285] = 12069, + [13286] = 12070, + [13287] = 12071, + [13288] = 12072, + [13289] = 12073, + [13290] = 12074, + [13291] = 12075, + [13292] = 11987, + [13293] = 12077, + [13294] = 12078, + [13295] = 12079, + [13296] = 12080, + [13297] = 12081, + [13298] = 12082, + [13299] = 12083, + [13300] = 12084, + [13301] = 12085, + [13302] = 12086, + [13303] = 12087, + [13304] = 12088, + [13305] = 12089, + [13306] = 12090, + [13307] = 12091, + [13308] = 12092, + [13309] = 12093, + [13310] = 12094, + [13311] = 12095, + [13312] = 12096, + [13313] = 12097, + [13314] = 12098, + [13315] = 12099, + [13316] = 12100, + [13317] = 12101, + [13318] = 2145, + [13319] = 11988, + [13320] = 11989, + [13321] = 11990, + [13322] = 11991, + [13323] = 11992, + [13324] = 11990, + [13325] = 12342, + [13326] = 12426, + [13327] = 12427, + [13328] = 11994, + [13329] = 11995, + [13330] = 11996, + [13331] = 12429, + [13332] = 13332, + [13333] = 12110, + [13334] = 12111, + [13335] = 12112, + [13336] = 12101, + [13337] = 11998, + [13338] = 12115, + [13339] = 11991, + [13340] = 11992, + [13341] = 12001, + [13342] = 12403, + [13343] = 12121, + [13344] = 12407, + [13345] = 12408, + [13346] = 12125, + [13347] = 12003, + [13348] = 12123, + [13349] = 12241, + [13350] = 12109, + [13351] = 12004, + [13352] = 12005, + [13353] = 12006, + [13354] = 12129, + [13355] = 11979, + [13356] = 12133, + [13357] = 12417, + [13358] = 12114, + [13359] = 12008, + [13360] = 12116, + [13361] = 12398, + [13362] = 12010, + [13363] = 12400, + [13364] = 12130, + [13365] = 11967, + [13366] = 12012, + [13367] = 11968, + [13368] = 12430, + [13369] = 12013, + [13370] = 11994, + [13371] = 11965, + [13372] = 11970, + [13373] = 12016, + [13374] = 12017, + [13375] = 12018, + [13376] = 11995, + [13377] = 12439, + [13378] = 12020, + [13379] = 11972, + [13380] = 12441, + [13381] = 12021, + [13382] = 11973, + [13383] = 12022, + [13384] = 12125, + [13385] = 12023, + [13386] = 12024, + [13387] = 12025, + [13388] = 12026, + [13389] = 12027, + [13390] = 12456, + [13391] = 12028, + [13392] = 11977, + [13393] = 12029, + [13394] = 12433, + [13395] = 12127, + [13396] = 12030, + [13397] = 12031, + [13398] = 12342, + [13399] = 12032, + [13400] = 12129, + [13401] = 12130, + [13402] = 12033, + [13403] = 12034, + [13404] = 12352, + [13405] = 12035, + [13406] = 11980, + [13407] = 11981, + [13408] = 12354, + [13409] = 12405, + [13410] = 11966, + [13411] = 11982, + [13412] = 11971, + [13413] = 12358, + [13414] = 12131, + [13415] = 11974, + [13416] = 11983, + [13417] = 11976, + [13418] = 12369, + [13419] = 11996, + [13420] = 11993, + [13421] = 11985, + [13422] = 12403, + [13423] = 11997, + [13424] = 11984, + [13425] = 12009, + [13426] = 12384, + [13427] = 12011, + [13428] = 12019, + [13429] = 12036, + [13430] = 12426, + [13431] = 11986, + [13432] = 12135, + [13433] = 12044, + [13434] = 12346, + [13435] = 12364, + [13436] = 12137, + [13437] = 12138, + [13438] = 11987, + [13439] = 11988, + [13440] = 11989, + [13441] = 12051, + [13442] = 12398, + [13443] = 11990, + [13444] = 12400, + [13445] = 11991, + [13446] = 11992, + [13447] = 12052, + [13448] = 12405, + [13449] = 12053, + [13450] = 12054, + [13451] = 12426, + [13452] = 12427, + [13453] = 12055, + [13454] = 12429, + [13455] = 12056, + [13456] = 12057, + [13457] = 12058, + [13458] = 12433, + [13459] = 12059, + [13460] = 12060, + [13461] = 12061, + [13462] = 12062, + [13463] = 12063, + [13464] = 13464, + [13465] = 12064, + [13466] = 11994, + [13467] = 11995, + [13468] = 12451, + [13469] = 12065, + [13470] = 11996, + [13471] = 12143, + [13472] = 12461, + [13473] = 12464, + [13474] = 13474, + [13475] = 12066, + [13476] = 11998, + [13477] = 12451, + [13478] = 11978, + [13479] = 12041, + [13480] = 12069, + [13481] = 12501, + [13482] = 12070, + [13483] = 12504, + [13484] = 12071, + [13485] = 12072, + [13486] = 12507, + [13487] = 12508, + [13488] = 12073, + [13489] = 12074, + [13490] = 12075, + [13491] = 12427, + [13492] = 12077, + [13493] = 12078, + [13494] = 12001, + [13495] = 12523, + [13496] = 12079, + [13497] = 12080, + [13498] = 12081, + [13499] = 12352, + [13500] = 12003, + [13501] = 12004, + [13502] = 12534, + [13503] = 12005, + [13504] = 12544, + [13505] = 12082, + [13506] = 12083, + [13507] = 12006, + [13508] = 12084, + [13509] = 12085, + [13510] = 12350, + [13511] = 12351, + [13512] = 12086, + [13513] = 12102, + [13514] = 12087, + [13515] = 12104, + [13516] = 12088, + [13517] = 12002, + [13518] = 12089, + [13519] = 12090, + [13520] = 12091, + [13521] = 12092, + [13522] = 12093, + [13523] = 12117, + [13524] = 12094, + [13525] = 12095, + [13526] = 12008, + [13527] = 12096, + [13528] = 12122, + [13529] = 12097, + [13530] = 12010, + [13531] = 12098, + [13532] = 11969, + [13533] = 12099, + [13534] = 12100, + [13535] = 11975, + [13536] = 12101, + [13537] = 12403, + [13538] = 11979, + [13539] = 11984, + [13540] = 11998, + [13541] = 12429, + [13542] = 11999, + [13543] = 12000, + [13544] = 12407, + [13545] = 12007, + [13546] = 12408, + [13547] = 12351, + [13548] = 12014, + [13549] = 12507, + [13550] = 13550, + [13551] = 12479, + [13552] = 12297, + [13553] = 12049, + [13554] = 12001, + [13555] = 12103, + [13556] = 12105, + [13557] = 12433, + [13558] = 12501, + [13559] = 12110, + [13560] = 12111, + [13561] = 12112, + [13562] = 12417, + [13563] = 12115, + [13564] = 12114, + [13565] = 11999, + [13566] = 12121, + [13567] = 12123, + [13568] = 12116, + [13569] = 12003, + [13570] = 12133, + [13571] = 12504, + [13572] = 12004, + [13573] = 11967, + [13574] = 11968, + [13575] = 12456, + [13576] = 11970, + [13577] = 12507, + [13578] = 11972, + [13579] = 11973, + [13580] = 12508, + [13581] = 12430, + [13582] = 13582, + [13583] = 11977, + [13584] = 12451, + [13585] = 12005, + [13586] = 11980, + [13587] = 11981, + [13588] = 11982, + [13589] = 11983, + [13590] = 12006, + [13591] = 11985, + [13592] = 12012, + [13593] = 11986, + [13594] = 11987, + [13595] = 11988, + [13596] = 11989, + [13597] = 11990, + [13598] = 11991, + [13599] = 11992, + [13600] = 12000, + [13601] = 11994, + [13602] = 11995, + [13603] = 11996, + [13604] = 12143, + [13605] = 11998, + [13606] = 12125, + [13607] = 12544, + [13608] = 12001, + [13609] = 12461, + [13610] = 12003, + [13611] = 12004, + [13612] = 12005, + [13613] = 12006, + [13614] = 12523, + [13615] = 12008, + [13616] = 12464, + [13617] = 12010, + [13618] = 12008, + [13619] = 12012, + [13620] = 12013, + [13621] = 12456, + [13622] = 11965, + [13623] = 12016, + [13624] = 12017, + [13625] = 12018, + [13626] = 12127, + [13627] = 12020, + [13628] = 12021, + [13629] = 12022, + [13630] = 12023, + [13631] = 12024, + [13632] = 12025, + [13633] = 12026, + [13634] = 12027, + [13635] = 12028, + [13636] = 12029, + [13637] = 12030, + [13638] = 12031, + [13639] = 12032, + [13640] = 12033, + [13641] = 12034, + [13642] = 12035, + [13643] = 12102, + [13644] = 11966, + [13645] = 11971, + [13646] = 11974, + [13647] = 11976, + [13648] = 12129, + [13649] = 11993, + [13650] = 11997, + [13651] = 12130, + [13652] = 12009, + [13653] = 12011, + [13654] = 12019, + [13655] = 12036, + [13656] = 12131, + [13657] = 12044, + [13658] = 12051, + [13659] = 12052, + [13660] = 12053, + [13661] = 12054, + [13662] = 12055, + [13663] = 12056, + [13664] = 12057, + [13665] = 12058, + [13666] = 12059, + [13667] = 12060, + [13668] = 12061, + [13669] = 12062, + [13670] = 12063, + [13671] = 12064, + [13672] = 12065, + [13673] = 12066, + [13674] = 11978, + [13675] = 12041, + [13676] = 12069, + [13677] = 12070, + [13678] = 12071, + [13679] = 12072, + [13680] = 12073, + [13681] = 12074, + [13682] = 12075, + [13683] = 13683, + [13684] = 12077, + [13685] = 12078, + [13686] = 12079, + [13687] = 12080, + [13688] = 12081, + [13689] = 12082, + [13690] = 12083, + [13691] = 12084, + [13692] = 12085, + [13693] = 12086, + [13694] = 12087, + [13695] = 12088, + [13696] = 12089, + [13697] = 12090, + [13698] = 12091, + [13699] = 12092, + [13700] = 12093, + [13701] = 12094, + [13702] = 12095, + [13703] = 12096, + [13704] = 12097, + [13705] = 12098, + [13706] = 12099, + [13707] = 12100, + [13708] = 12101, + [13709] = 12013, + [13710] = 12109, + [13711] = 12010, + [13712] = 12369, + [13713] = 13713, + [13714] = 12135, + [13715] = 11965, + [13716] = 12456, + [13717] = 12403, + [13718] = 12007, + [13719] = 12534, + [13720] = 13720, + [13721] = 12135, + [13722] = 12016, + [13723] = 12501, + [13724] = 12017, + [13725] = 12018, + [13726] = 13726, + [13727] = 12137, + [13728] = 12138, + [13729] = 12012, + [13730] = 12020, + [13731] = 12021, + [13732] = 12504, + [13733] = 13733, + [13734] = 12426, + [13735] = 12022, + [13736] = 12427, + [13737] = 12023, + [13738] = 12024, + [13739] = 12354, + [13740] = 12025, + [13741] = 12143, + [13742] = 12026, + [13743] = 12027, + [13744] = 12403, + [13745] = 12028, + [13746] = 12013, + [13747] = 12407, + [13748] = 12408, + [13749] = 12429, + [13750] = 12065, + [13751] = 12544, + [13752] = 12029, + [13753] = 12109, + [13754] = 13754, + [13755] = 12030, + [13756] = 12031, + [13757] = 12032, + [13758] = 12143, + [13759] = 12417, + [13760] = 12114, + [13761] = 12033, + [13762] = 12507, + [13763] = 12116, + [13764] = 12501, + [13765] = 12508, + [13766] = 12504, + [13767] = 12034, + [13768] = 11965, + [13769] = 12016, + [13770] = 12035, + [13771] = 12507, + [13772] = 12430, + [13773] = 12508, + [13774] = 12017, + [13775] = 12523, + [13776] = 12018, + [13777] = 12407, + [13778] = 12523, + [13779] = 12350, + [13780] = 11966, + [13781] = 12351, + [13782] = 12439, + [13783] = 12104, + [13784] = 12441, + [13785] = 12408, + [13786] = 12350, + [13787] = 12351, + [13788] = 12125, + [13789] = 13683, + [13790] = 12020, + [13791] = 12358, + [13792] = 12604, + [13793] = 11971, + [13794] = 12102, + [13795] = 13332, + [13796] = 12021, + [13797] = 11974, + [13798] = 11976, + [13799] = 12456, + [13800] = 13800, + [13801] = 12104, + [13802] = 12022, + [13803] = 12131, + [13804] = 12002, + [13805] = 12127, + [13806] = 12534, + [13807] = 12127, + [13808] = 12342, + [13809] = 12023, + [13810] = 12129, + [13811] = 12130, + [13812] = 12024, + [13813] = 11993, + [13814] = 11997, + [13815] = 12352, + [13816] = 12544, + [13817] = 12117, + [13818] = 12354, + [13819] = 12025, + [13820] = 12026, + [13821] = 11969, + [13822] = 13822, + [13823] = 12009, + [13824] = 12358, + [13825] = 12131, + [13826] = 12350, + [13827] = 12011, + [13828] = 12019, + [13829] = 12351, + [13830] = 12369, + [13831] = 11975, + [13832] = 12027, + [13833] = 12102, + [13834] = 11979, + [13835] = 11984, + [13836] = 12036, + [13837] = 12028, + [13838] = 12044, + [13839] = 12461, + [13840] = 13683, + [13841] = 12604, + [13842] = 12464, + [13843] = 13332, + [13844] = 12384, + [13845] = 12104, + [13846] = 11999, + [13847] = 12000, + [13848] = 12029, + [13849] = 12007, + [13850] = 12002, + [13851] = 12135, + [13852] = 12030, + [13853] = 12346, + [13854] = 12364, + [13855] = 12137, + [13856] = 13683, + [13857] = 12604, + [13858] = 12138, + [13859] = 13332, + [13860] = 12051, + [13861] = 12014, + [13862] = 12052, + [13863] = 12031, + [13864] = 12053, + [13865] = 12398, + [13866] = 12054, + [13867] = 12400, + [13868] = 13683, + [13869] = 12604, + [13870] = 13332, + [13871] = 12032, + [13872] = 12033, + [13873] = 13873, + [13874] = 12405, + [13875] = 12034, + [13876] = 12049, + [13877] = 13683, + [13878] = 12604, + [13879] = 12426, + [13880] = 13332, + [13881] = 12427, + [13882] = 12117, + [13883] = 13683, + [13884] = 12604, + [13885] = 12429, + [13886] = 13332, + [13887] = 12103, + [13888] = 12055, + [13889] = 13683, + [13890] = 12604, + [13891] = 12105, + [13892] = 13332, + [13893] = 12035, + [13894] = 13683, + [13895] = 12604, + [13896] = 12439, + [13897] = 13332, + [13898] = 12433, + [13899] = 12110, + [13900] = 13683, + [13901] = 12604, + [13902] = 12056, + [13903] = 13332, + [13904] = 12111, + [13905] = 12112, + [13906] = 12342, + [13907] = 12057, + [13908] = 12441, + [13909] = 12058, + [13910] = 12059, + [13911] = 12451, + [13912] = 12115, + [13913] = 12014, + [13914] = 12129, + [13915] = 12060, + [13916] = 12143, + [13917] = 12461, + [13918] = 12464, + [13919] = 12430, + [13920] = 12061, + [13921] = 12062, + [13922] = 12121, + [13923] = 12063, + [13924] = 12123, + [13925] = 12064, + [13926] = 12122, + [13927] = 12504, + [13928] = 12130, + [13929] = 12501, + [13930] = 12133, + [13931] = 12094, + [13932] = 13932, + [13933] = 13933, + [13934] = 13934, + [13935] = 10955, + [13936] = 13936, + [13937] = 13937, + [13938] = 13938, + [13939] = 13933, + [13940] = 13940, + [13941] = 13941, + [13942] = 13933, + [13943] = 13941, + [13944] = 13944, + [13945] = 13945, + [13946] = 13946, + [13947] = 13947, + [13948] = 13948, + [13949] = 13949, + [13950] = 13934, + [13951] = 13946, + [13952] = 13952, + [13953] = 13947, + [13954] = 13948, + [13955] = 13955, + [13956] = 13956, + [13957] = 13957, + [13958] = 13958, + [13959] = 13959, + [13960] = 13960, + [13961] = 13961, + [13962] = 13962, + [13963] = 13963, + [13964] = 13964, + [13965] = 13965, + [13966] = 13966, + [13967] = 13967, + [13968] = 13968, + [13969] = 13969, + [13970] = 13970, + [13971] = 13971, + [13972] = 13972, + [13973] = 13973, + [13974] = 13974, + [13975] = 13975, + [13976] = 13976, + [13977] = 13932, + [13978] = 13978, + [13979] = 13979, + [13980] = 13980, + [13981] = 13981, + [13982] = 13941, + [13983] = 13955, + [13984] = 13956, + [13985] = 13957, + [13986] = 13958, + [13987] = 13945, + [13988] = 13959, + [13989] = 13960, + [13990] = 13961, + [13991] = 13932, + [13992] = 13949, + [13993] = 13934, + [13994] = 13946, + [13995] = 13995, + [13996] = 13947, + [13997] = 13948, + [13998] = 13955, + [13999] = 13956, + [14000] = 13957, + [14001] = 13958, + [14002] = 13959, + [14003] = 13960, + [14004] = 13961, + [14005] = 13962, + [14006] = 13963, + [14007] = 13964, + [14008] = 13965, + [14009] = 13966, + [14010] = 13967, + [14011] = 13968, + [14012] = 13969, + [14013] = 13970, + [14014] = 13971, + [14015] = 13972, + [14016] = 13973, + [14017] = 13974, + [14018] = 13975, + [14019] = 13979, + [14020] = 14020, + [14021] = 13976, + [14022] = 14022, + [14023] = 13962, + [14024] = 13963, + [14025] = 13964, + [14026] = 13965, + [14027] = 13945, + [14028] = 13966, + [14029] = 13967, + [14030] = 13949, + [14031] = 13934, + [14032] = 13946, + [14033] = 13947, + [14034] = 13948, + [14035] = 13955, + [14036] = 13956, + [14037] = 13957, + [14038] = 13958, + [14039] = 13959, + [14040] = 13960, + [14041] = 13961, + [14042] = 13962, + [14043] = 13963, + [14044] = 13964, + [14045] = 13965, + [14046] = 13966, + [14047] = 13967, + [14048] = 13968, + [14049] = 13969, + [14050] = 13970, + [14051] = 13971, + [14052] = 13972, + [14053] = 13973, + [14054] = 13974, + [14055] = 13975, + [14056] = 13968, + [14057] = 13969, + [14058] = 13937, + [14059] = 13979, + [14060] = 13970, + [14061] = 13971, + [14062] = 13972, + [14063] = 13973, + [14064] = 13974, + [14065] = 14065, + [14066] = 13975, + [14067] = 13933, + [14068] = 13940, + [14069] = 13944, + [14070] = 13932, + [14071] = 13979, + [14072] = 13976, + [14073] = 14020, + [14074] = 13995, + [14075] = 13978, + [14076] = 13980, + [14077] = 14077, + [14078] = 14022, + [14079] = 13937, + [14080] = 14080, + [14081] = 14081, + [14082] = 14082, + [14083] = 14083, + [14084] = 14022, + [14085] = 13976, + [14086] = 14065, + [14087] = 14087, + [14088] = 14087, + [14089] = 14089, + [14090] = 14090, + [14091] = 14091, + [14092] = 14089, + [14093] = 14090, + [14094] = 13976, + [14095] = 14095, + [14096] = 13941, + [14097] = 14097, + [14098] = 14065, + [14099] = 13962, + [14100] = 13952, + [14101] = 13960, + [14102] = 14102, + [14103] = 13981, + [14104] = 14087, + [14105] = 13963, + [14106] = 13964, + [14107] = 14089, + [14108] = 14090, + [14109] = 14091, + [14110] = 14080, + [14111] = 14020, + [14112] = 14112, + [14113] = 14097, + [14114] = 13965, + [14115] = 13966, + [14116] = 13933, + [14117] = 13967, + [14118] = 13933, + [14119] = 13995, + [14120] = 13952, + [14121] = 13995, + [14122] = 14065, + [14123] = 14123, + [14124] = 14080, + [14125] = 14097, + [14126] = 14126, + [14127] = 13968, + [14128] = 13969, + [14129] = 13978, + [14130] = 13980, + [14131] = 14123, + [14132] = 14126, + [14133] = 14022, + [14134] = 13937, + [14135] = 14135, + [14136] = 13978, + [14137] = 13980, + [14138] = 14081, + [14139] = 14022, + [14140] = 13937, + [14141] = 14141, + [14142] = 14123, + [14143] = 14123, + [14144] = 14126, + [14145] = 14020, + [14146] = 14135, + [14147] = 14141, + [14148] = 14148, + [14149] = 14135, + [14150] = 14065, + [14151] = 13940, + [14152] = 13944, + [14153] = 14087, + [14154] = 14141, + [14155] = 14087, + [14156] = 14089, + [14157] = 13937, + [14158] = 14090, + [14159] = 14091, + [14160] = 14089, + [14161] = 14090, + [14162] = 14091, + [14163] = 13933, + [14164] = 14126, + [14165] = 14135, + [14166] = 14141, + [14167] = 14065, + [14168] = 13978, + [14169] = 13980, + [14170] = 14123, + [14171] = 14087, + [14172] = 14089, + [14173] = 14090, + [14174] = 14091, + [14175] = 14126, + [14176] = 14176, + [14177] = 14095, + [14178] = 13995, + [14179] = 13940, + [14180] = 14135, + [14181] = 13995, + [14182] = 14141, + [14183] = 14095, + [14184] = 13940, + [14185] = 13944, + [14186] = 14091, + [14187] = 13976, + [14188] = 13944, + [14189] = 14082, + [14190] = 14082, + [14191] = 14083, + [14192] = 13932, + [14193] = 13979, + [14194] = 14083, + [14195] = 13932, + [14196] = 13933, + [14197] = 13979, + [14198] = 14081, + [14199] = 13978, + [14200] = 13980, + [14201] = 13976, + [14202] = 14202, + [14203] = 14022, + [14204] = 14080, + [14205] = 13937, + [14206] = 14097, + [14207] = 14207, + [14208] = 13981, + [14209] = 14209, + [14210] = 14020, + [14211] = 14081, + [14212] = 14095, + [14213] = 13933, + [14214] = 14123, + [14215] = 14126, + [14216] = 14135, + [14217] = 14141, + [14218] = 14218, + [14219] = 13940, + [14220] = 13944, + [14221] = 13932, + [14222] = 13979, + [14223] = 13976, + [14224] = 14224, + [14225] = 13995, + [14226] = 14065, + [14227] = 13958, + [14228] = 13936, + [14229] = 14022, + [14230] = 13937, + [14231] = 13940, + [14232] = 13944, + [14233] = 13938, + [14234] = 14087, + [14235] = 14089, + [14236] = 14090, + [14237] = 14091, + [14238] = 14202, + [14239] = 14239, + [14240] = 13933, + [14241] = 13940, + [14242] = 14218, + [14243] = 13944, + [14244] = 13932, + [14245] = 13979, + [14246] = 13936, + [14247] = 13976, + [14248] = 13938, + [14249] = 13933, + [14250] = 13940, + [14251] = 13944, + [14252] = 13932, + [14253] = 13979, + [14254] = 13976, + [14255] = 13933, + [14256] = 14123, + [14257] = 14126, + [14258] = 14082, + [14259] = 14083, + [14260] = 14082, + [14261] = 14135, + [14262] = 14141, + [14263] = 14083, + [14264] = 14065, + [14265] = 13940, + [14266] = 13944, + [14267] = 14082, + [14268] = 14087, + [14269] = 13932, + [14270] = 13979, + [14271] = 14089, + [14272] = 14090, + [14273] = 14091, + [14274] = 14083, + [14275] = 13932, + [14276] = 13979, + [14277] = 13976, + [14278] = 14095, + [14279] = 13976, + [14280] = 13941, + [14281] = 14087, + [14282] = 13952, + [14283] = 13981, + [14284] = 13974, + [14285] = 13945, + [14286] = 13944, + [14287] = 13946, + [14288] = 13976, + [14289] = 14089, + [14290] = 13933, + [14291] = 13940, + [14292] = 13944, + [14293] = 13932, + [14294] = 14090, + [14295] = 13979, + [14296] = 13976, + [14297] = 13933, + [14298] = 13949, + [14299] = 13934, + [14300] = 13933, + [14301] = 13940, + [14302] = 13944, + [14303] = 13932, + [14304] = 14081, + [14305] = 13946, + [14306] = 13979, + [14307] = 13947, + [14308] = 13948, + [14309] = 13955, + [14310] = 13956, + [14311] = 13957, + [14312] = 13958, + [14313] = 13959, + [14314] = 13960, + [14315] = 13961, + [14316] = 13962, + [14317] = 13963, + [14318] = 13964, + [14319] = 13965, + [14320] = 13966, + [14321] = 13967, + [14322] = 13968, + [14323] = 13969, + [14324] = 13970, + [14325] = 13971, + [14326] = 13972, + [14327] = 13973, + [14328] = 13974, + [14329] = 13975, + [14330] = 13932, + [14331] = 13976, + [14332] = 13933, + [14333] = 13979, + [14334] = 13933, + [14335] = 13940, + [14336] = 13944, + [14337] = 13932, + [14338] = 13979, + [14339] = 13976, + [14340] = 13976, + [14341] = 14080, + [14342] = 13940, + [14343] = 14097, + [14344] = 13944, + [14345] = 13933, + [14346] = 13940, + [14347] = 13944, + [14348] = 13932, + [14349] = 13979, + [14350] = 13976, + [14351] = 14351, + [14352] = 14123, + [14353] = 14081, + [14354] = 14123, + [14355] = 14126, + [14356] = 14135, + [14357] = 14141, + [14358] = 13933, + [14359] = 13940, + [14360] = 13944, + [14361] = 13932, + [14362] = 13979, + [14363] = 13941, + [14364] = 13976, + [14365] = 13952, + [14366] = 13981, + [14367] = 14126, + [14368] = 14135, + [14369] = 13933, + [14370] = 13940, + [14371] = 13944, + [14372] = 13932, + [14373] = 13979, + [14374] = 13976, + [14375] = 13940, + [14376] = 14091, + [14377] = 13944, + [14378] = 14080, + [14379] = 14141, + [14380] = 13933, + [14381] = 13940, + [14382] = 13944, + [14383] = 13932, + [14384] = 13979, + [14385] = 13976, + [14386] = 14202, + [14387] = 14097, + [14388] = 14218, + [14389] = 13933, + [14390] = 13940, + [14391] = 13944, + [14392] = 13936, + [14393] = 13932, + [14394] = 13938, + [14395] = 13970, + [14396] = 13940, + [14397] = 13979, + [14398] = 13976, + [14399] = 13976, + [14400] = 13947, + [14401] = 13948, + [14402] = 14082, + [14403] = 14083, + [14404] = 13933, + [14405] = 13940, + [14406] = 13944, + [14407] = 14407, + [14408] = 13932, + [14409] = 13979, + [14410] = 13976, + [14411] = 14411, + [14412] = 13933, + [14413] = 13940, + [14414] = 13944, + [14415] = 13932, + [14416] = 13932, + [14417] = 13979, + [14418] = 13979, + [14419] = 13976, + [14420] = 13995, + [14421] = 13949, + [14422] = 13934, + [14423] = 13933, + [14424] = 13940, + [14425] = 13944, + [14426] = 13932, + [14427] = 13979, + [14428] = 13976, + [14429] = 13961, + [14430] = 14095, + [14431] = 13933, + [14432] = 13933, + [14433] = 13940, + [14434] = 13975, + [14435] = 13944, + [14436] = 13932, + [14437] = 13940, + [14438] = 13944, + [14439] = 13932, + [14440] = 13979, + [14441] = 13978, + [14442] = 13980, + [14443] = 13976, + [14444] = 13941, + [14445] = 13979, + [14446] = 14022, + [14447] = 13937, + [14448] = 13952, + [14449] = 14449, + [14450] = 14020, + [14451] = 13981, + [14452] = 13976, + [14453] = 13933, + [14454] = 13940, + [14455] = 13944, + [14456] = 13932, + [14457] = 13979, + [14458] = 13976, + [14459] = 13933, + [14460] = 13940, + [14461] = 14202, + [14462] = 13944, + [14463] = 13932, + [14464] = 13979, + [14465] = 13976, + [14466] = 14202, + [14467] = 13979, + [14468] = 14123, + [14469] = 14126, + [14470] = 14065, + [14471] = 14135, + [14472] = 14141, + [14473] = 13971, + [14474] = 14087, + [14475] = 14089, + [14476] = 14090, + [14477] = 14091, + [14478] = 14081, + [14479] = 14095, + [14480] = 13932, + [14481] = 13952, + [14482] = 14482, + [14483] = 13976, + [14484] = 13978, + [14485] = 13980, + [14486] = 13945, + [14487] = 13955, + [14488] = 14218, + [14489] = 14218, + [14490] = 13933, + [14491] = 13978, + [14492] = 14080, + [14493] = 14087, + [14494] = 13936, + [14495] = 14022, + [14496] = 14080, + [14497] = 13949, + [14498] = 14097, + [14499] = 13934, + [14500] = 13937, + [14501] = 13946, + [14502] = 14502, + [14503] = 13936, + [14504] = 13947, + [14505] = 13948, + [14506] = 13955, + [14507] = 14123, + [14508] = 14126, + [14509] = 14135, + [14510] = 14141, + [14511] = 13956, + [14512] = 13957, + [14513] = 13958, + [14514] = 13959, + [14515] = 13938, + [14516] = 13960, + [14517] = 13961, + [14518] = 13962, + [14519] = 13963, + [14520] = 13964, + [14521] = 13940, + [14522] = 13944, + [14523] = 13965, + [14524] = 13966, + [14525] = 13967, + [14526] = 14202, + [14527] = 13968, + [14528] = 13969, + [14529] = 14218, + [14530] = 13936, + [14531] = 13970, + [14532] = 13938, + [14533] = 14533, + [14534] = 13971, + [14535] = 13972, + [14536] = 13973, + [14537] = 14020, + [14538] = 14082, + [14539] = 14083, + [14540] = 13974, + [14541] = 13932, + [14542] = 13979, + [14543] = 13975, + [14544] = 13941, + [14545] = 13952, + [14546] = 13981, + [14547] = 13933, + [14548] = 13940, + [14549] = 13944, + [14550] = 13932, + [14551] = 13979, + [14552] = 13976, + [14553] = 14553, + [14554] = 13976, + [14555] = 14081, + [14556] = 13933, + [14557] = 13940, + [14558] = 13944, + [14559] = 13932, + [14560] = 13979, + [14561] = 13976, + [14562] = 13940, + [14563] = 13944, + [14564] = 13938, + [14565] = 14089, + [14566] = 14090, + [14567] = 14091, + [14568] = 13972, + [14569] = 13973, + [14570] = 14097, + [14571] = 14081, + [14572] = 13933, + [14573] = 13940, + [14574] = 13944, + [14575] = 13932, + [14576] = 13979, + [14577] = 13976, + [14578] = 13933, + [14579] = 13940, + [14580] = 13944, + [14581] = 13932, + [14582] = 13979, + [14583] = 13976, + [14584] = 13933, + [14585] = 13940, + [14586] = 13944, + [14587] = 13932, + [14588] = 13979, + [14589] = 13976, + [14590] = 13933, + [14591] = 13940, + [14592] = 13944, + [14593] = 13932, + [14594] = 13979, + [14595] = 13976, + [14596] = 13933, + [14597] = 13940, + [14598] = 13944, + [14599] = 13932, + [14600] = 13979, + [14601] = 13976, + [14602] = 13933, + [14603] = 13940, + [14604] = 13944, + [14605] = 13932, + [14606] = 13979, + [14607] = 13976, + [14608] = 13933, + [14609] = 13940, + [14610] = 13944, + [14611] = 13932, + [14612] = 13979, + [14613] = 13976, + [14614] = 13933, + [14615] = 13940, + [14616] = 13944, + [14617] = 13932, + [14618] = 13979, + [14619] = 13976, + [14620] = 13933, + [14621] = 13940, + [14622] = 13944, + [14623] = 13932, + [14624] = 13979, + [14625] = 13976, + [14626] = 13933, + [14627] = 13940, + [14628] = 13944, + [14629] = 13932, + [14630] = 13979, + [14631] = 13976, + [14632] = 13933, + [14633] = 13940, + [14634] = 13944, + [14635] = 13932, + [14636] = 13979, + [14637] = 13976, + [14638] = 13933, + [14639] = 13940, + [14640] = 13944, + [14641] = 13932, + [14642] = 13979, + [14643] = 13976, + [14644] = 13933, + [14645] = 13940, + [14646] = 13944, + [14647] = 13932, + [14648] = 13979, + [14649] = 13976, + [14650] = 13933, + [14651] = 13940, + [14652] = 13944, + [14653] = 13932, + [14654] = 13979, + [14655] = 13976, + [14656] = 13933, + [14657] = 13940, + [14658] = 13944, + [14659] = 13932, + [14660] = 13979, + [14661] = 13976, + [14662] = 13957, + [14663] = 13933, + [14664] = 13940, + [14665] = 13944, + [14666] = 13932, + [14667] = 13979, + [14668] = 13976, + [14669] = 14202, + [14670] = 14082, + [14671] = 14083, + [14672] = 14095, + [14673] = 14218, + [14674] = 14674, + [14675] = 14675, + [14676] = 13945, + [14677] = 13940, + [14678] = 13995, + [14679] = 13936, + [14680] = 13980, + [14681] = 13938, + [14682] = 13944, + [14683] = 13949, + [14684] = 13934, + [14685] = 13946, + [14686] = 13947, + [14687] = 13948, + [14688] = 13955, + [14689] = 13956, + [14690] = 13957, + [14691] = 13958, + [14692] = 13959, + [14693] = 13960, + [14694] = 13961, + [14695] = 13962, + [14696] = 13963, + [14697] = 13964, + [14698] = 13965, + [14699] = 13966, + [14700] = 13967, + [14701] = 13968, + [14702] = 13969, + [14703] = 13970, + [14704] = 13971, + [14705] = 13972, + [14706] = 13973, + [14707] = 13974, + [14708] = 13975, + [14709] = 13981, + [14710] = 13959, + [14711] = 14022, + [14712] = 14082, + [14713] = 14083, + [14714] = 13945, + [14715] = 13932, + [14716] = 13933, + [14717] = 13940, + [14718] = 13944, + [14719] = 13932, + [14720] = 13979, + [14721] = 13976, + [14722] = 14020, + [14723] = 13933, + [14724] = 13940, + [14725] = 13944, + [14726] = 13932, + [14727] = 13979, + [14728] = 13976, + [14729] = 13979, + [14730] = 13945, + [14731] = 14202, + [14732] = 13995, + [14733] = 13932, + [14734] = 13949, + [14735] = 13934, + [14736] = 13979, + [14737] = 13946, + [14738] = 13937, + [14739] = 13947, + [14740] = 13948, + [14741] = 13955, + [14742] = 13956, + [14743] = 13957, + [14744] = 13958, + [14745] = 13959, + [14746] = 13960, + [14747] = 13961, + [14748] = 13962, + [14749] = 13963, + [14750] = 14750, + [14751] = 13964, + [14752] = 13965, + [14753] = 13966, + [14754] = 13967, + [14755] = 13968, + [14756] = 13969, + [14757] = 13970, + [14758] = 13971, + [14759] = 13972, + [14760] = 13995, + [14761] = 13973, + [14762] = 13974, + [14763] = 13978, + [14764] = 13980, + [14765] = 13975, + [14766] = 14022, + [14767] = 13937, + [14768] = 14020, + [14769] = 14082, + [14770] = 14083, + [14771] = 14065, + [14772] = 14087, + [14773] = 14089, + [14774] = 14090, + [14775] = 14091, + [14776] = 14095, + [14777] = 13945, + [14778] = 13956, + [14779] = 13978, + [14780] = 13980, + [14781] = 13933, + [14782] = 14782, + [14783] = 14218, + [14784] = 13945, + [14785] = 14080, + [14786] = 14022, + [14787] = 14097, + [14788] = 13941, + [14789] = 13933, + [14790] = 13952, + [14791] = 13981, + [14792] = 13949, + [14793] = 13934, + [14794] = 13946, + [14795] = 13949, + [14796] = 14123, + [14797] = 14126, + [14798] = 14135, + [14799] = 14141, + [14800] = 13947, + [14801] = 13948, + [14802] = 13955, + [14803] = 13956, + [14804] = 13957, + [14805] = 13958, + [14806] = 13959, + [14807] = 13960, + [14808] = 13961, + [14809] = 13962, + [14810] = 13963, + [14811] = 13964, + [14812] = 13965, + [14813] = 13966, + [14814] = 13940, + [14815] = 13944, + [14816] = 13967, + [14817] = 13968, + [14818] = 13969, + [14819] = 13970, + [14820] = 13971, + [14821] = 13972, + [14822] = 13973, + [14823] = 14202, + [14824] = 13974, + [14825] = 14218, + [14826] = 14207, + [14827] = 13936, + [14828] = 13938, + [14829] = 13975, + [14830] = 14830, + [14831] = 14082, + [14832] = 14083, + [14833] = 14065, + [14834] = 14834, + [14835] = 14835, + [14836] = 14836, + [14837] = 14837, + [14838] = 14838, + [14839] = 14839, + [14840] = 14840, + [14841] = 14841, + [14842] = 14835, + [14843] = 14843, + [14844] = 14843, + [14845] = 14843, + [14846] = 14843, + [14847] = 14843, + [14848] = 14848, + [14849] = 14837, + [14850] = 14841, + [14851] = 14843, + [14852] = 14843, + [14853] = 14853, + [14854] = 14854, + [14855] = 14843, + [14856] = 14856, + [14857] = 14841, + [14858] = 14858, + [14859] = 14859, + [14860] = 14860, + [14861] = 14861, + [14862] = 14862, + [14863] = 14839, + [14864] = 14853, + [14865] = 14865, + [14866] = 14860, + [14867] = 14841, + [14868] = 14868, + [14869] = 14856, + [14870] = 14834, + [14871] = 14837, + [14872] = 14834, + [14873] = 14840, + [14874] = 14838, + [14875] = 14835, + [14876] = 14853, + [14877] = 14877, + [14878] = 14838, + [14879] = 14843, + [14880] = 14858, + [14881] = 14834, + [14882] = 14882, + [14883] = 14883, + [14884] = 14836, + [14885] = 14843, + [14886] = 14836, + [14887] = 14836, + [14888] = 14836, + [14889] = 14840, + [14890] = 14836, + [14891] = 14838, + [14892] = 14860, + [14893] = 14843, + [14894] = 14839, + [14895] = 14868, + [14896] = 14840, + [14897] = 14837, + [14898] = 14854, + [14899] = 14835, + [14900] = 14853, + [14901] = 14860, + [14902] = 14902, + [14903] = 14838, + [14904] = 14904, + [14905] = 14883, + [14906] = 14843, + [14907] = 14834, + [14908] = 14839, + [14909] = 14841, + [14910] = 14868, + [14911] = 14840, + [14912] = 14843, + [14913] = 14837, + [14914] = 14914, + [14915] = 14915, + [14916] = 14839, + [14917] = 14835, + [14918] = 14904, + [14919] = 14853, + [14920] = 14843, + [14921] = 14921, + [14922] = 14860, + [14923] = 14923, + [14924] = 14854, + [14925] = 14843, + [14926] = 14843, + [14927] = 14834, + [14928] = 14848, + [14929] = 14856, + [14930] = 14858, + [14931] = 14859, + [14932] = 14843, + [14933] = 14841, + [14934] = 14861, + [14935] = 14862, + [14936] = 14868, + [14937] = 14883, + [14938] = 14865, + [14939] = 14834, + [14940] = 14843, + [14941] = 14854, + [14942] = 14843, + [14943] = 14883, + [14944] = 14860, + [14945] = 14945, + [14946] = 14843, + [14947] = 14843, + [14948] = 14948, + [14949] = 14837, + [14950] = 14921, + [14951] = 14951, + [14952] = 14840, + [14953] = 14841, + [14954] = 14843, + [14955] = 14835, + [14956] = 14843, + [14957] = 14843, + [14958] = 14848, + [14959] = 14848, + [14960] = 14838, + [14961] = 14865, + [14962] = 14856, + [14963] = 14858, + [14964] = 14859, + [14965] = 14853, + [14966] = 14843, + [14967] = 14848, + [14968] = 14861, + [14969] = 14862, + [14970] = 14843, + [14971] = 14856, + [14972] = 14865, + [14973] = 14835, + [14974] = 14843, + [14975] = 14836, + [14976] = 14976, + [14977] = 14843, + [14978] = 14841, + [14979] = 14840, + [14980] = 14848, + [14981] = 14856, + [14982] = 14858, + [14983] = 14859, + [14984] = 14858, + [14985] = 14861, + [14986] = 14862, + [14987] = 14859, + [14988] = 14853, + [14989] = 14860, + [14990] = 14843, + [14991] = 14921, + [14992] = 14848, + [14993] = 14834, + [14994] = 14839, + [14995] = 14856, + [14996] = 14858, + [14997] = 14859, + [14998] = 14861, + [14999] = 14862, + [15000] = 14868, + [15001] = 14839, + [15002] = 14865, + [15003] = 14848, + [15004] = 14837, + [15005] = 14856, + [15006] = 14858, + [15007] = 14859, + [15008] = 14861, + [15009] = 14862, + [15010] = 14904, + [15011] = 14865, + [15012] = 14921, + [15013] = 14848, + [15014] = 14854, + [15015] = 14843, + [15016] = 15016, + [15017] = 14856, + [15018] = 14858, + [15019] = 14859, + [15020] = 15020, + [15021] = 14841, + [15022] = 14861, + [15023] = 14862, + [15024] = 14868, + [15025] = 14865, + [15026] = 14835, + [15027] = 14853, + [15028] = 14834, + [15029] = 14856, + [15030] = 14858, + [15031] = 14859, + [15032] = 14861, + [15033] = 14862, + [15034] = 14843, + [15035] = 14865, + [15036] = 15036, + [15037] = 14860, + [15038] = 14843, + [15039] = 14860, + [15040] = 14861, + [15041] = 14904, + [15042] = 14843, + [15043] = 14834, + [15044] = 15044, + [15045] = 14862, + [15046] = 14843, + [15047] = 14921, + [15048] = 14838, + [15049] = 14854, + [15050] = 14859, + [15051] = 14904, + [15052] = 14834, + [15053] = 14836, + [15054] = 14865, + [15055] = 14843, + [15056] = 14843, + [15057] = 14843, + [15058] = 14837, + [15059] = 14883, + [15060] = 14835, + [15061] = 14843, + [15062] = 14843, + [15063] = 15063, + [15064] = 15064, + [15065] = 14843, + [15066] = 14904, + [15067] = 14843, + [15068] = 14841, + [15069] = 14840, + [15070] = 14921, + [15071] = 14853, + [15072] = 14854, + [15073] = 14860, + [15074] = 14904, + [15075] = 14836, + [15076] = 14868, + [15077] = 14843, + [15078] = 14843, + [15079] = 15079, + [15080] = 15080, + [15081] = 14843, + [15082] = 14839, + [15083] = 14904, + [15084] = 14838, + [15085] = 14843, + [15086] = 14868, + [15087] = 14843, + [15088] = 14921, + [15089] = 14854, + [15090] = 14840, + [15091] = 14921, + [15092] = 14843, + [15093] = 14841, + [15094] = 14836, + [15095] = 14843, + [15096] = 14838, + [15097] = 14840, + [15098] = 14843, + [15099] = 14841, + [15100] = 14834, + [15101] = 15101, + [15102] = 14837, + [15103] = 14839, + [15104] = 14868, + [15105] = 14843, + [15106] = 14837, + [15107] = 14921, + [15108] = 14838, + [15109] = 14904, + [15110] = 14839, + [15111] = 14854, + [15112] = 14843, + [15113] = 14835, + [15114] = 14843, + [15115] = 14853, + [15116] = 14868, + [15117] = 14861, + [15118] = 14862, + [15119] = 14865, + [15120] = 15120, + [15121] = 15121, + [15122] = 15122, + [15123] = 15123, + [15124] = 15124, + [15125] = 15125, + [15126] = 15120, + [15127] = 15127, + [15128] = 15128, + [15129] = 15129, + [15130] = 15130, + [15131] = 15131, + [15132] = 15132, + [15133] = 15133, + [15134] = 15134, + [15135] = 15135, + [15136] = 15136, + [15137] = 15137, + [15138] = 15138, + [15139] = 15139, + [15140] = 15140, + [15141] = 15141, + [15142] = 15142, + [15143] = 15143, + [15144] = 15122, + [15145] = 15145, + [15146] = 15146, + [15147] = 15147, + [15148] = 15148, + [15149] = 15149, + [15150] = 15150, + [15151] = 15125, + [15152] = 15120, + [15153] = 15153, + [15154] = 15154, + [15155] = 15128, + [15156] = 15156, + [15157] = 15129, + [15158] = 15141, + [15159] = 15159, + [15160] = 15160, + [15161] = 15161, + [15162] = 15162, + [15163] = 15163, + [15164] = 15164, + [15165] = 15165, + [15166] = 15166, + [15167] = 15167, + [15168] = 15136, + [15169] = 15130, + [15170] = 15170, + [15171] = 15138, + [15172] = 15172, + [15173] = 15173, + [15174] = 15174, + [15175] = 15175, + [15176] = 15176, + [15177] = 15177, + [15178] = 15178, + [15179] = 15179, + [15180] = 15180, + [15181] = 15181, + [15182] = 15143, + [15183] = 15124, + [15184] = 15184, + [15185] = 15147, + [15186] = 15141, + [15187] = 15187, + [15188] = 15133, + [15189] = 15189, + [15190] = 15135, + [15191] = 15164, + [15192] = 15146, + [15193] = 15193, + [15194] = 15159, + [15195] = 15195, + [15196] = 15161, + [15197] = 15174, + [15198] = 15198, + [15199] = 15163, + [15200] = 15200, + [15201] = 15132, + [15202] = 15202, + [15203] = 15203, + [15204] = 15204, + [15205] = 15167, + [15206] = 15206, + [15207] = 15175, + [15208] = 15208, + [15209] = 15209, + [15210] = 15134, + [15211] = 15211, + [15212] = 15212, + [15213] = 15213, + [15214] = 15124, + [15215] = 15215, + [15216] = 15216, + [15217] = 15133, + [15218] = 15218, + [15219] = 15135, + [15220] = 15220, + [15221] = 15125, + [15222] = 15146, + [15223] = 15137, + [15224] = 15224, + [15225] = 15153, + [15226] = 15159, + [15227] = 15227, + [15228] = 15200, + [15229] = 15202, + [15230] = 15193, + [15231] = 15203, + [15232] = 15204, + [15233] = 15206, + [15234] = 15234, + [15235] = 15235, + [15236] = 15161, + [15237] = 15237, + [15238] = 15209, + [15239] = 15239, + [15240] = 15153, + [15241] = 15241, + [15242] = 15216, + [15243] = 15139, + [15244] = 15244, + [15245] = 15140, + [15246] = 15246, + [15247] = 15247, + [15248] = 15248, + [15249] = 15220, + [15250] = 15224, + [15251] = 15251, + [15252] = 15227, + [15253] = 15120, + [15254] = 15254, + [15255] = 15142, + [15256] = 15234, + [15257] = 15149, + [15258] = 15235, + [15259] = 15259, + [15260] = 15195, + [15261] = 15261, + [15262] = 15237, + [15263] = 15239, + [15264] = 15241, + [15265] = 15244, + [15266] = 15246, + [15267] = 15247, + [15268] = 15248, + [15269] = 15259, + [15270] = 15270, + [15271] = 15261, + [15272] = 15270, + [15273] = 15163, + [15274] = 15274, + [15275] = 15274, + [15276] = 15121, + [15277] = 15127, + [15278] = 15153, + [15279] = 15198, + [15280] = 15141, + [15281] = 15122, + [15282] = 15121, + [15283] = 15127, + [15284] = 15150, + [15285] = 15128, + [15286] = 15130, + [15287] = 15132, + [15288] = 15122, + [15289] = 15134, + [15290] = 15137, + [15291] = 15139, + [15292] = 15140, + [15293] = 15128, + [15294] = 15130, + [15295] = 15132, + [15296] = 15134, + [15297] = 15137, + [15298] = 15154, + [15299] = 15211, + [15300] = 15142, + [15301] = 15149, + [15302] = 15150, + [15303] = 15154, + [15304] = 15139, + [15305] = 15156, + [15306] = 15160, + [15307] = 15162, + [15308] = 15140, + [15309] = 15165, + [15310] = 15166, + [15311] = 15170, + [15312] = 15179, + [15313] = 15180, + [15314] = 15181, + [15315] = 15184, + [15316] = 15187, + [15317] = 15189, + [15318] = 15164, + [15319] = 15193, + [15320] = 15195, + [15321] = 15153, + [15322] = 15198, + [15323] = 15142, + [15324] = 15208, + [15325] = 15211, + [15326] = 15156, + [15327] = 15213, + [15328] = 15215, + [15329] = 15149, + [15330] = 15150, + [15331] = 15218, + [15332] = 15129, + [15333] = 15174, + [15334] = 15154, + [15335] = 15153, + [15336] = 15156, + [15337] = 15160, + [15338] = 15160, + [15339] = 15162, + [15340] = 15125, + [15341] = 15165, + [15342] = 15166, + [15343] = 15170, + [15344] = 15179, + [15345] = 15153, + [15346] = 15180, + [15347] = 15181, + [15348] = 15184, + [15349] = 15187, + [15350] = 15189, + [15351] = 15164, + [15352] = 15153, + [15353] = 15193, + [15354] = 15216, + [15355] = 15153, + [15356] = 15195, + [15357] = 15198, + [15358] = 15208, + [15359] = 15211, + [15360] = 15213, + [15361] = 15215, + [15362] = 15218, + [15363] = 15153, + [15364] = 15120, + [15365] = 15167, + [15366] = 15163, + [15367] = 15208, + [15368] = 15200, + [15369] = 15202, + [15370] = 15174, + [15371] = 15153, + [15372] = 15125, + [15373] = 15120, + [15374] = 15159, + [15375] = 15375, + [15376] = 15175, + [15377] = 15203, + [15378] = 15167, + [15379] = 15153, + [15380] = 15204, + [15381] = 15206, + [15382] = 15125, + [15383] = 15224, + [15384] = 15161, + [15385] = 15209, + [15386] = 15129, + [15387] = 15153, + [15388] = 15125, + [15389] = 15120, + [15390] = 15216, + [15391] = 15163, + [15392] = 15220, + [15393] = 15224, + [15394] = 15129, + [15395] = 15153, + [15396] = 15136, + [15397] = 15125, + [15398] = 15120, + [15399] = 15153, + [15400] = 15400, + [15401] = 15227, + [15402] = 15402, + [15403] = 15153, + [15404] = 15141, + [15405] = 15211, + [15406] = 15234, + [15407] = 15235, + [15408] = 15213, + [15409] = 15237, + [15410] = 15124, + [15411] = 15153, + [15412] = 15227, + [15413] = 15239, + [15414] = 15159, + [15415] = 15241, + [15416] = 15244, + [15417] = 15153, + [15418] = 15129, + [15419] = 15153, + [15420] = 15246, + [15421] = 15234, + [15422] = 15247, + [15423] = 15248, + [15424] = 15235, + [15425] = 15259, + [15426] = 15143, + [15427] = 15153, + [15428] = 15261, + [15429] = 15270, + [15430] = 15167, + [15431] = 15274, + [15432] = 15215, + [15433] = 15121, + [15434] = 15127, + [15435] = 15141, + [15436] = 15122, + [15437] = 15141, + [15438] = 15438, + [15439] = 15128, + [15440] = 15153, + [15441] = 15136, + [15442] = 15130, + [15443] = 15138, + [15444] = 15132, + [15445] = 15134, + [15446] = 15137, + [15447] = 15153, + [15448] = 15139, + [15449] = 15140, + [15450] = 15142, + [15451] = 15145, + [15452] = 15153, + [15453] = 15143, + [15454] = 15136, + [15455] = 15153, + [15456] = 15133, + [15457] = 15147, + [15458] = 15149, + [15459] = 15150, + [15460] = 15154, + [15461] = 15138, + [15462] = 15159, + [15463] = 15156, + [15464] = 15161, + [15465] = 15147, + [15466] = 15163, + [15467] = 15467, + [15468] = 15135, + [15469] = 15160, + [15470] = 15167, + [15471] = 15162, + [15472] = 15175, + [15473] = 15218, + [15474] = 15146, + [15475] = 15143, + [15476] = 15141, + [15477] = 15124, + [15478] = 15478, + [15479] = 15208, + [15480] = 15165, + [15481] = 15166, + [15482] = 15133, + [15483] = 15483, + [15484] = 15135, + [15485] = 15153, + [15486] = 15162, + [15487] = 15125, + [15488] = 15120, + [15489] = 15153, + [15490] = 15162, + [15491] = 15146, + [15492] = 15153, + [15493] = 15147, + [15494] = 15237, + [15495] = 15153, + [15496] = 15496, + [15497] = 15497, + [15498] = 15200, + [15499] = 15438, + [15500] = 15202, + [15501] = 15129, + [15502] = 15203, + [15503] = 15204, + [15504] = 15206, + [15505] = 15136, + [15506] = 15145, + [15507] = 15153, + [15508] = 15209, + [15509] = 15165, + [15510] = 15170, + [15511] = 15179, + [15512] = 15467, + [15513] = 15216, + [15514] = 15180, + [15515] = 15218, + [15516] = 15136, + [15517] = 15483, + [15518] = 15220, + [15519] = 15224, + [15520] = 15496, + [15521] = 15497, + [15522] = 15522, + [15523] = 15138, + [15524] = 15227, + [15525] = 15522, + [15526] = 15375, + [15527] = 15527, + [15528] = 15375, + [15529] = 15529, + [15530] = 15234, + [15531] = 15531, + [15532] = 15532, + [15533] = 15533, + [15534] = 15534, + [15535] = 15400, + [15536] = 15402, + [15537] = 15131, + [15538] = 15235, + [15539] = 15527, + [15540] = 15143, + [15541] = 15237, + [15542] = 15147, + [15543] = 15239, + [15544] = 15241, + [15545] = 15244, + [15546] = 15246, + [15547] = 15159, + [15548] = 15247, + [15549] = 15161, + [15550] = 15248, + [15551] = 15163, + [15552] = 15259, + [15553] = 15200, + [15554] = 15261, + [15555] = 15167, + [15556] = 15270, + [15557] = 15175, + [15558] = 15529, + [15559] = 15274, + [15560] = 15202, + [15561] = 15124, + [15562] = 15121, + [15563] = 15127, + [15564] = 15133, + [15565] = 15122, + [15566] = 15135, + [15567] = 15128, + [15568] = 15146, + [15569] = 15130, + [15570] = 15132, + [15571] = 15134, + [15572] = 15200, + [15573] = 15202, + [15574] = 15203, + [15575] = 15204, + [15576] = 15206, + [15577] = 15137, + [15578] = 15209, + [15579] = 15139, + [15580] = 15140, + [15581] = 15142, + [15582] = 15216, + [15583] = 15149, + [15584] = 15220, + [15585] = 15224, + [15586] = 15150, + [15587] = 15227, + [15588] = 15154, + [15589] = 15234, + [15590] = 15235, + [15591] = 15156, + [15592] = 15237, + [15593] = 15239, + [15594] = 15241, + [15595] = 15244, + [15596] = 15246, + [15597] = 15247, + [15598] = 15248, + [15599] = 15259, + [15600] = 15160, + [15601] = 15261, + [15602] = 15270, + [15603] = 15162, + [15604] = 15274, + [15605] = 15181, + [15606] = 15121, + [15607] = 15127, + [15608] = 15122, + [15609] = 15128, + [15610] = 15130, + [15611] = 15132, + [15612] = 15134, + [15613] = 15137, + [15614] = 15139, + [15615] = 15140, + [15616] = 15142, + [15617] = 15149, + [15618] = 15150, + [15619] = 15154, + [15620] = 15156, + [15621] = 15160, + [15622] = 15162, + [15623] = 15165, + [15624] = 15165, + [15625] = 15166, + [15626] = 15170, + [15627] = 15179, + [15628] = 15180, + [15629] = 15181, + [15630] = 15184, + [15631] = 15187, + [15632] = 15189, + [15633] = 15164, + [15634] = 15193, + [15635] = 15195, + [15636] = 15198, + [15637] = 15208, + [15638] = 15211, + [15639] = 15213, + [15640] = 15215, + [15641] = 15218, + [15642] = 15166, + [15643] = 15170, + [15644] = 15179, + [15645] = 15138, + [15646] = 15180, + [15647] = 15181, + [15648] = 15184, + [15649] = 15187, + [15650] = 15189, + [15651] = 15164, + [15652] = 15193, + [15653] = 15141, + [15654] = 15153, + [15655] = 15195, + [15656] = 15198, + [15657] = 15208, + [15658] = 15211, + [15659] = 15213, + [15660] = 15215, + [15661] = 15218, + [15662] = 15531, + [15663] = 15153, + [15664] = 15532, + [15665] = 15533, + [15666] = 15534, + [15667] = 15400, + [15668] = 15174, + [15669] = 15402, + [15670] = 15153, + [15671] = 15131, + [15672] = 15125, + [15673] = 15184, + [15674] = 15120, + [15675] = 15438, + [15676] = 15153, + [15677] = 15125, + [15678] = 15120, + [15679] = 15145, + [15680] = 15187, + [15681] = 15153, + [15682] = 15189, + [15683] = 15467, + [15684] = 15164, + [15685] = 15193, + [15686] = 15195, + [15687] = 15129, + [15688] = 15483, + [15689] = 15198, + [15690] = 15208, + [15691] = 15496, + [15692] = 15497, + [15693] = 15211, + [15694] = 15213, + [15695] = 15153, + [15696] = 15522, + [15697] = 15375, + [15698] = 15527, + [15699] = 15215, + [15700] = 15529, + [15701] = 15153, + [15702] = 15531, + [15703] = 15532, + [15704] = 15533, + [15705] = 15534, + [15706] = 15400, + [15707] = 15402, + [15708] = 15131, + [15709] = 15218, + [15710] = 15153, + [15711] = 15159, + [15712] = 15160, + [15713] = 15203, + [15714] = 15138, + [15715] = 15251, + [15716] = 15153, + [15717] = 15165, + [15718] = 15251, + [15719] = 15254, + [15720] = 15161, + [15721] = 15143, + [15722] = 15204, + [15723] = 15147, + [15724] = 15166, + [15725] = 15163, + [15726] = 15206, + [15727] = 15254, + [15728] = 15138, + [15729] = 15153, + [15730] = 15159, + [15731] = 15209, + [15732] = 15161, + [15733] = 15167, + [15734] = 15163, + [15735] = 15166, + [15736] = 15170, + [15737] = 15175, + [15738] = 15170, + [15739] = 15203, + [15740] = 15438, + [15741] = 15167, + [15742] = 15179, + [15743] = 15175, + [15744] = 15145, + [15745] = 15153, + [15746] = 15746, + [15747] = 15216, + [15748] = 15467, + [15749] = 15251, + [15750] = 15124, + [15751] = 15254, + [15752] = 15180, + [15753] = 15483, + [15754] = 15204, + [15755] = 15153, + [15756] = 15496, + [15757] = 15497, + [15758] = 15527, + [15759] = 15124, + [15760] = 15220, + [15761] = 15522, + [15762] = 15375, + [15763] = 15527, + [15764] = 15133, + [15765] = 15529, + [15766] = 15224, + [15767] = 15531, + [15768] = 15532, + [15769] = 15533, + [15770] = 15534, + [15771] = 15400, + [15772] = 15402, + [15773] = 15131, + [15774] = 15133, + [15775] = 15775, + [15776] = 15135, + [15777] = 15135, + [15778] = 15143, + [15779] = 15146, + [15780] = 15220, + [15781] = 15146, + [15782] = 15227, + [15783] = 15181, + [15784] = 15179, + [15785] = 15200, + [15786] = 15234, + [15787] = 15202, + [15788] = 15438, + [15789] = 15203, + [15790] = 15204, + [15791] = 15206, + [15792] = 15145, + [15793] = 15200, + [15794] = 15153, + [15795] = 15153, + [15796] = 15467, + [15797] = 15202, + [15798] = 15175, + [15799] = 15209, + [15800] = 15141, + [15801] = 15483, + [15802] = 15203, + [15803] = 15204, + [15804] = 15496, + [15805] = 15497, + [15806] = 15206, + [15807] = 15235, + [15808] = 15209, + [15809] = 15522, + [15810] = 15375, + [15811] = 15527, + [15812] = 15147, + [15813] = 15529, + [15814] = 15237, + [15815] = 15531, + [15816] = 15532, + [15817] = 15533, + [15818] = 15534, + [15819] = 15400, + [15820] = 15402, + [15821] = 15131, + [15822] = 15239, + [15823] = 15153, + [15824] = 15438, + [15825] = 15216, + [15826] = 15206, + [15827] = 15180, + [15828] = 15145, + [15829] = 15216, + [15830] = 15220, + [15831] = 15241, + [15832] = 15467, + [15833] = 15220, + [15834] = 15174, + [15835] = 15251, + [15836] = 15224, + [15837] = 15483, + [15838] = 15224, + [15839] = 15244, + [15840] = 15496, + [15841] = 15497, + [15842] = 15842, + [15843] = 15227, + [15844] = 15143, + [15845] = 15522, + [15846] = 15375, + [15847] = 15527, + [15848] = 15227, + [15849] = 15529, + [15850] = 15234, + [15851] = 15531, + [15852] = 15532, + [15853] = 15533, + [15854] = 15534, + [15855] = 15400, + [15856] = 15402, + [15857] = 15131, + [15858] = 15246, + [15859] = 15235, + [15860] = 15438, + [15861] = 15861, + [15862] = 15237, + [15863] = 15239, + [15864] = 15145, + [15865] = 15865, + [15866] = 15241, + [15867] = 15124, + [15868] = 15467, + [15869] = 15234, + [15870] = 15244, + [15871] = 15246, + [15872] = 15181, + [15873] = 15483, + [15874] = 15235, + [15875] = 15247, + [15876] = 15496, + [15877] = 15497, + [15878] = 15247, + [15879] = 15237, + [15880] = 15248, + [15881] = 15522, + [15882] = 15375, + [15883] = 15527, + [15884] = 15239, + [15885] = 15529, + [15886] = 15213, + [15887] = 15531, + [15888] = 15532, + [15889] = 15533, + [15890] = 15534, + [15891] = 15400, + [15892] = 15402, + [15893] = 15131, + [15894] = 15215, + [15895] = 15254, + [15896] = 15438, + [15897] = 15241, + [15898] = 15209, + [15899] = 15153, + [15900] = 15145, + [15901] = 15147, + [15902] = 15184, + [15903] = 15438, + [15904] = 15467, + [15905] = 15483, + [15906] = 15259, + [15907] = 15244, + [15908] = 15246, + [15909] = 15483, + [15910] = 15247, + [15911] = 15133, + [15912] = 15496, + [15913] = 15497, + [15914] = 15248, + [15915] = 15261, + [15916] = 15270, + [15917] = 15522, + [15918] = 15375, + [15919] = 15527, + [15920] = 15496, + [15921] = 15529, + [15922] = 15259, + [15923] = 15531, + [15924] = 15532, + [15925] = 15533, + [15926] = 15534, + [15927] = 15400, + [15928] = 15402, + [15929] = 15131, + [15930] = 15274, + [15931] = 15438, + [15932] = 15141, + [15933] = 15248, + [15934] = 15121, + [15935] = 15145, + [15936] = 15239, + [15937] = 15127, + [15938] = 15261, + [15939] = 15467, + [15940] = 15241, + [15941] = 15153, + [15942] = 15251, + [15943] = 15254, + [15944] = 15483, + [15945] = 15497, + [15946] = 15135, + [15947] = 15496, + [15948] = 15497, + [15949] = 15270, + [15950] = 15187, + [15951] = 15122, + [15952] = 15522, + [15953] = 15375, + [15954] = 15527, + [15955] = 15259, + [15956] = 15529, + [15957] = 15128, + [15958] = 15531, + [15959] = 15532, + [15960] = 15533, + [15961] = 15534, + [15962] = 15400, + [15963] = 15402, + [15964] = 15131, + [15965] = 15438, + [15966] = 15244, + [15967] = 15130, + [15968] = 15145, + [15969] = 15438, + [15970] = 15132, + [15971] = 15145, + [15972] = 15274, + [15973] = 15134, + [15974] = 15137, + [15975] = 15139, + [15976] = 15140, + [15977] = 15142, + [15978] = 15149, + [15979] = 15150, + [15980] = 15154, + [15981] = 15246, + [15982] = 15156, + [15983] = 15160, + [15984] = 15162, + [15985] = 15985, + [15986] = 15165, + [15987] = 15166, + [15988] = 15170, + [15989] = 15179, + [15990] = 15189, + [15991] = 15180, + [15992] = 15181, + [15993] = 15153, + [15994] = 15184, + [15995] = 15187, + [15996] = 15189, + [15997] = 15164, + [15998] = 15184, + [15999] = 15467, + [16000] = 15174, + [16001] = 15251, + [16002] = 15193, + [16003] = 15195, + [16004] = 15198, + [16005] = 16005, + [16006] = 15208, + [16007] = 15211, + [16008] = 15213, + [16009] = 15215, + [16010] = 15218, + [16011] = 15164, + [16012] = 15129, + [16013] = 15529, + [16014] = 15174, + [16015] = 15141, + [16016] = 15531, + [16017] = 15174, + [16018] = 15254, + [16019] = 15121, + [16020] = 15127, + [16021] = 15522, + [16022] = 15161, + [16023] = 15247, + [16024] = 15251, + [16025] = 15122, + [16026] = 15141, + [16027] = 15128, + [16028] = 15125, + [16029] = 15193, + [16030] = 15156, + [16031] = 15153, + [16032] = 15248, + [16033] = 15254, + [16034] = 15129, + [16035] = 15130, + [16036] = 15146, + [16037] = 15132, + [16038] = 15174, + [16039] = 15195, + [16040] = 15134, + [16041] = 15137, + [16042] = 15139, + [16043] = 15174, + [16044] = 15136, + [16045] = 15136, + [16046] = 15140, + [16047] = 15138, + [16048] = 15142, + [16049] = 15532, + [16050] = 15138, + [16051] = 15259, + [16052] = 15143, + [16053] = 15141, + [16054] = 15533, + [16055] = 15149, + [16056] = 15200, + [16057] = 15150, + [16058] = 15147, + [16059] = 15154, + [16060] = 15156, + [16061] = 15160, + [16062] = 15162, + [16063] = 15159, + [16064] = 15261, + [16065] = 15161, + [16066] = 15165, + [16067] = 15163, + [16068] = 15166, + [16069] = 15202, + [16070] = 15170, + [16071] = 15179, + [16072] = 15180, + [16073] = 15167, + [16074] = 15181, + [16075] = 15175, + [16076] = 15184, + [16077] = 15198, + [16078] = 16078, + [16079] = 15534, + [16080] = 15124, + [16081] = 15187, + [16082] = 15189, + [16083] = 15164, + [16084] = 15261, + [16085] = 15133, + [16086] = 15193, + [16087] = 15135, + [16088] = 15270, + [16089] = 15146, + [16090] = 15153, + [16091] = 15195, + [16092] = 15198, + [16093] = 15200, + [16094] = 15202, + [16095] = 15203, + [16096] = 15204, + [16097] = 15206, + [16098] = 15208, + [16099] = 15209, + [16100] = 15211, + [16101] = 15153, + [16102] = 15251, + [16103] = 15216, + [16104] = 15254, + [16105] = 15213, + [16106] = 15220, + [16107] = 15224, + [16108] = 15153, + [16109] = 15227, + [16110] = 15153, + [16111] = 15234, + [16112] = 15235, + [16113] = 15251, + [16114] = 15237, + [16115] = 15239, + [16116] = 15254, + [16117] = 15241, + [16118] = 16118, + [16119] = 15244, + [16120] = 15215, + [16121] = 15218, + [16122] = 15270, + [16123] = 15246, + [16124] = 15187, + [16125] = 15247, + [16126] = 15248, + [16127] = 15259, + [16128] = 15274, + [16129] = 15261, + [16130] = 15270, + [16131] = 16131, + [16132] = 16132, + [16133] = 15274, + [16134] = 15274, + [16135] = 15189, + [16136] = 15175, + [16137] = 15121, + [16138] = 15127, + [16139] = 15122, + [16140] = 15128, + [16141] = 15130, + [16142] = 15121, + [16143] = 15132, + [16144] = 15134, + [16145] = 15137, + [16146] = 15139, + [16147] = 15140, + [16148] = 15142, + [16149] = 15127, + [16150] = 15149, + [16151] = 15150, + [16152] = 15154, + [16153] = 16118, + [16154] = 16118, + [16155] = 16118, + [16156] = 16118, + [16157] = 16118, + [16158] = 16118, + [16159] = 16118, + [16160] = 16118, + [16161] = 16118, + [16162] = 15136, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -9303,779 +20180,816 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(25); + if (eof) ADVANCE(26); ADVANCE_MAP( - '\n', 120, - '!', 28, - '"', 113, - '#', 119, - '$', 39, - '&', 75, - '\'', 14, - '(', 31, - ')', 32, - '*', 46, - '+', 85, - ',', 34, - '-', 37, - '.', 90, - '/', 87, - ':', 61, - ';', 48, - '<', 68, - '=', 30, - '>', 71, - '?', 43, - '@', 44, - '[', 47, - '\\', 16, - ']', 49, - '^', 93, - '`', 117, - 's', 104, - 'x', 98, - '{', 33, - '|', 62, - '}', 35, - '~', 88, + '\n', 121, + '!', 29, + '"', 114, + '#', 120, + '$', 40, + '&', 76, + '\'', 15, + '(', 32, + ')', 33, + '*', 47, + '+', 86, + ',', 35, + '-', 38, + '.', 91, + '/', 88, + ':', 62, + ';', 49, + '<', 69, + '=', 31, + '>', 72, + '?', 44, + '@', 45, + '[', 48, + '\\', 17, + ']', 50, + '^', 94, + '`', 118, + 's', 105, + 'x', 99, + '{', 34, + '|', 63, + '}', 36, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(19); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(109); + lookahead == ' ') SKIP(20); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 1: ADVANCE_MAP( - '\n', 120, - '!', 28, - '#', 119, - '&', 74, - '(', 31, - '*', 45, - '+', 84, - '-', 36, - '.', 90, - '/', 86, + '\n', 121, + '!', 29, + '"', 114, + '#', 120, + '$', 40, + '&', 76, + '\'', 15, + '(', 32, + '*', 47, + '+', 86, + '-', 38, + '.', 91, + '/', 88, + ':', 61, '<', 69, - '=', 13, + '=', 31, '>', 72, - '?', 43, - '[', 47, - '^', 93, + '?', 44, + '[', 48, + '^', 94, + '`', 118, 'x', 99, - '{', 33, - '|', 62, + '{', 34, + '|', 63, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 2: ADVANCE_MAP( - '\n', 120, - '!', 27, - '"', 113, - '#', 119, - '$', 39, - '&', 74, - '\'', 14, - '(', 31, - ')', 32, - '*', 45, - ',', 34, - '-', 36, - '.', 92, - ';', 48, - '[', 47, - ']', 49, - '`', 117, - '{', 33, - '|', 40, - '}', 35, - '~', 88, + '\n', 121, + '!', 29, + '"', 114, + '#', 120, + '$', 40, + '&', 75, + '\'', 15, + '(', 32, + '*', 46, + '+', 85, + '-', 37, + '.', 91, + '/', 87, + ':', 61, + '<', 70, + '=', 14, + '>', 73, + '?', 44, + '[', 48, + '^', 94, + '`', 118, + 'x', 100, + '{', 34, + '|', 63, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 3: ADVANCE_MAP( - '\n', 120, - '!', 27, - '#', 119, - '(', 31, - '*', 45, - ',', 34, - '.', 89, - ':', 11, - '=', 29, - '?', 43, - '@', 44, - '[', 47, - 's', 104, - '|', 40, - '}', 35, + '\n', 121, + '!', 28, + '"', 114, + '#', 120, + '$', 40, + '&', 75, + '\'', 15, + '(', 32, + ')', 33, + '*', 46, + ',', 35, + '-', 37, + '.', 93, + ';', 49, + '[', 48, + ']', 50, + '`', 118, + '{', 34, + '|', 41, + '}', 36, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 4: ADVANCE_MAP( - '\n', 120, - '!', 12, - '#', 119, - '&', 74, - '\'', 14, - '(', 31, - '*', 45, - '+', 84, - ',', 34, - '-', 36, + '\n', 121, + '!', 28, + '#', 120, + '(', 32, + '*', 46, + ',', 35, '.', 90, - '/', 86, - '<', 69, - '=', 13, - '>', 72, - '?', 43, - '@', 44, - '[', 47, - '^', 93, - 's', 104, - 'x', 99, - '|', 62, + ':', 12, + '=', 30, + '?', 44, + '@', 45, + '[', 48, + 's', 105, + '|', 41, + '}', 36, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(120); - if (lookahead == '#') ADVANCE(119); - if (lookahead == '$') ADVANCE(39); - if (lookahead == ')') ADVANCE(32); - if (lookahead == '.') ADVANCE(9); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(5); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); - END_STATE(); - case 6: ADVANCE_MAP( - '\n', 120, - '#', 119, - '(', 31, - '*', 45, - '?', 43, - '@', 44, - '[', 47, - 's', 104, - '|', 62, + '\n', 121, + '!', 13, + '#', 120, + '&', 75, + '\'', 15, + '(', 32, + '*', 46, + '+', 85, + '-', 37, + '.', 91, + '/', 87, + '<', 70, + '=', 14, + '>', 73, + '?', 44, + '@', 45, + '[', 48, + '^', 94, + 's', 105, + 'x', 100, + '|', 63, ); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(6); + lookahead == ' ') SKIP(5); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 7: - if (lookahead == '"') ADVANCE(113); - if (lookahead == '#') ADVANCE(115); - if (lookahead == '\\') ADVANCE(16); + case 6: + if (lookahead == '\n') ADVANCE(121); + if (lookahead == '#') ADVANCE(120); + if (lookahead == '$') ADVANCE(40); + if (lookahead == ')') ADVANCE(33); + if (lookahead == '.') ADVANCE(10); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(114); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(115); + lookahead == ' ') SKIP(6); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + END_STATE(); + case 7: + ADVANCE_MAP( + '\n', 121, + '#', 120, + '(', 32, + '*', 46, + '?', 44, + '@', 45, + '[', 48, + 's', 105, + '|', 63, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(7); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 8: - if (lookahead == '\'') ADVANCE(118); + if (lookahead == '"') ADVANCE(114); + if (lookahead == '#') ADVANCE(116); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(115); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(116); END_STATE(); case 9: - if (lookahead == '.') ADVANCE(10); + if (lookahead == '\'') ADVANCE(119); END_STATE(); case 10: - if (lookahead == '.') ADVANCE(38); + if (lookahead == '.') ADVANCE(11); END_STATE(); case 11: - if (lookahead == ':') ADVANCE(26); + if (lookahead == '.') ADVANCE(39); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(67); + if (lookahead == ':') ADVANCE(27); END_STATE(); case 13: - if (lookahead == '=') ADVANCE(66); + if (lookahead == '=') ADVANCE(68); END_STATE(); case 14: - if (lookahead == '\\') ADVANCE(17); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\'') ADVANCE(8); + if (lookahead == '=') ADVANCE(67); END_STATE(); case 15: - if (lookahead == '`') ADVANCE(117); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(15); + if (lookahead == '\\') ADVANCE(18); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'') ADVANCE(9); END_STATE(); case 16: + if (lookahead == '`') ADVANCE(118); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(16); + END_STATE(); + case 17: if (lookahead == '"' || lookahead == '0' || lookahead == '\\' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(116); + lookahead == 't') ADVANCE(117); END_STATE(); - case 17: + case 18: if (lookahead == '\'' || lookahead == '0' || lookahead == '\\' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(8); - END_STATE(); - case 18: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + lookahead == 't') ADVANCE(9); END_STATE(); case 19: - if (eof) ADVANCE(25); - ADVANCE_MAP( - '\n', 120, - '!', 28, - '"', 113, - '#', 119, - '$', 39, - '&', 75, - '\'', 14, - '(', 31, - ')', 32, - '*', 46, - '+', 85, - ',', 34, - '-', 37, - '.', 90, - '/', 87, - ':', 61, - ';', 48, - '<', 68, - '=', 30, - '>', 71, - '?', 43, - '@', 44, - '[', 47, - ']', 49, - '^', 93, - '`', 117, - 's', 104, - 'x', 98, - '{', 33, - '|', 62, - '}', 35, - '~', 88, - ); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(19); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); case 20: - if (eof) ADVANCE(25); + if (eof) ADVANCE(26); ADVANCE_MAP( - '\n', 120, - '!', 28, - '"', 113, - '#', 119, - '$', 39, - '&', 75, - '\'', 14, - '(', 31, - ')', 32, - '*', 46, - '+', 85, - ',', 34, - '-', 37, - '.', 90, - '/', 87, - ':', 61, - '<', 68, - '=', 30, - '>', 71, - '?', 43, - '@', 44, - '[', 47, - '^', 93, - '`', 117, - 's', 104, - 'x', 98, - '{', 33, - '|', 41, - '}', 35, - '~', 88, + '\n', 121, + '!', 29, + '"', 114, + '#', 120, + '$', 40, + '&', 76, + '\'', 15, + '(', 32, + ')', 33, + '*', 47, + '+', 86, + ',', 35, + '-', 38, + '.', 91, + '/', 88, + ':', 62, + ';', 49, + '<', 69, + '=', 31, + '>', 72, + '?', 44, + '@', 45, + '[', 48, + ']', 50, + '^', 94, + '`', 118, + 's', 105, + 'x', 99, + '{', 34, + '|', 63, + '}', 36, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 21: - if (eof) ADVANCE(25); + if (eof) ADVANCE(26); ADVANCE_MAP( - '\n', 120, - '!', 28, - '"', 113, - '#', 119, - '$', 39, - '&', 75, - '\'', 14, - '(', 31, - ')', 32, - '*', 46, - '+', 85, - ',', 34, - '-', 37, - '.', 90, - '/', 87, - '<', 68, - '=', 30, - '>', 71, - '?', 43, - '[', 47, - '^', 93, - '`', 117, - 'x', 98, - '{', 33, - '|', 41, - '}', 35, - '~', 88, + '\n', 121, + '!', 29, + '"', 114, + '#', 120, + '$', 40, + '&', 76, + '\'', 15, + '(', 32, + ')', 33, + '*', 47, + '+', 86, + ',', 35, + '-', 38, + '.', 91, + '/', 88, + ':', 62, + ';', 49, + '<', 69, + '=', 31, + '>', 72, + '?', 44, + '@', 45, + '[', 48, + ']', 50, + '^', 94, + '`', 118, + 's', 105, + 'x', 99, + '{', 34, + '|', 42, + '}', 36, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 22: - if (eof) ADVANCE(25); + if (eof) ADVANCE(26); ADVANCE_MAP( - '\n', 120, - '!', 28, - '"', 113, - '#', 119, - '$', 39, - '&', 74, - '\'', 14, - '(', 31, - ')', 32, - '*', 45, - '+', 84, - ',', 34, - '-', 36, - '.', 90, - '/', 86, + '\n', 121, + '!', 29, + '"', 114, + '#', 120, + '$', 40, + '&', 76, + '\'', 15, + '(', 32, + ')', 33, + '*', 47, + '+', 86, + ',', 35, + '-', 38, + '.', 91, + '/', 88, ':', 61, - ';', 48, + ';', 49, '<', 69, - '=', 30, + '=', 31, '>', 72, - '?', 43, - '[', 47, - ']', 49, - '^', 93, - '`', 117, + '?', 44, + '[', 48, + ']', 50, + '^', 94, + '`', 118, 'x', 99, - '{', 33, - '|', 40, - '}', 35, - '~', 88, + '{', 34, + '|', 42, + '}', 36, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 23: - if (eof) ADVANCE(25); + if (eof) ADVANCE(26); ADVANCE_MAP( - '\n', 120, - '!', 28, - '"', 113, - '#', 119, - '$', 39, - '&', 74, - '\'', 14, - '(', 31, - ')', 32, - '*', 45, - '+', 84, - ',', 34, - '-', 36, - '.', 90, - '/', 86, - ':', 60, - ';', 48, - '<', 69, - '=', 13, - '>', 72, - '?', 43, - '@', 44, - '[', 47, - ']', 49, - '^', 93, - '`', 117, - 's', 104, - 'x', 99, - '{', 33, - '|', 40, - '}', 35, - '~', 88, + '\n', 121, + '!', 29, + '"', 114, + '#', 120, + '$', 40, + '&', 75, + '\'', 15, + '(', 32, + ')', 33, + '*', 46, + '+', 85, + ',', 35, + '-', 37, + '.', 91, + '/', 87, + ':', 62, + ';', 49, + '<', 70, + '=', 31, + '>', 73, + '?', 44, + '[', 48, + ']', 50, + '^', 94, + '`', 118, + 'x', 100, + '{', 34, + '|', 41, + '}', 36, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 24: - if (eof) ADVANCE(25); + if (eof) ADVANCE(26); ADVANCE_MAP( - '\n', 120, - '!', 27, - '"', 113, - '#', 119, - '$', 39, - '&', 74, - '\'', 14, - '(', 31, - ')', 32, - '*', 45, - ',', 34, - '-', 36, + '\n', 121, + '!', 29, + '"', 114, + '#', 120, + '$', 40, + '&', 75, + '\'', 15, + '(', 32, + ')', 33, + '*', 46, + '+', 85, + ',', 35, + '-', 37, '.', 91, + '/', 87, ':', 61, - ';', 48, - '=', 29, - '@', 44, - '[', 47, - ']', 49, - '`', 117, - '{', 33, - '|', 40, - '}', 35, - '~', 88, + ';', 49, + '<', 70, + '=', 14, + '>', 73, + '?', 44, + '@', 45, + '[', 48, + ']', 50, + '^', 94, + '`', 118, + 's', 105, + 'x', 100, + '{', 34, + '|', 41, + '}', 36, + '~', 89, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 25: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(26); + ADVANCE_MAP( + '\n', 121, + '!', 28, + '"', 114, + '#', 120, + '$', 40, + '&', 75, + '\'', 15, + '(', 32, + ')', 33, + '*', 46, + ',', 35, + '-', 37, + '.', 92, + ':', 62, + ';', 49, + '=', 30, + '@', 45, + '[', 48, + ']', 50, + '`', 118, + '{', 34, + '|', 41, + '}', 36, + '~', 89, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 26: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 28: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(67); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(68); END_STATE(); case 30: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(66); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(67); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 37: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(51); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(52); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 41: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(55); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_struct_type_BANG); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(56); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_struct_type_BANG); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 46: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(52); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(53); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_xor_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_xor_EQ); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_LT_LT_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LT_LT_PIPE_EQ); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(26); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_PIPE2); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(27); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_PIPE2); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '=') ADVANCE(65); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '=') ADVANCE(66); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '=') ADVANCE(70); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(79); - if (lookahead == '=') ADVANCE(70); + if (lookahead == '=') ADVANCE(71); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(80); + if (lookahead == '=') ADVANCE(71); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(73); - if (lookahead == '>') ADVANCE(81); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(73); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '=') ADVANCE(74); + if (lookahead == '>') ADVANCE(82); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(74); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 75: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(54); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '=') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(55); END_STATE(); case 77: ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '=') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(57); - if (lookahead == '|') ADVANCE(83); + ACCEPT_TOKEN(anon_sym_xor); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 79: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '|') ADVANCE(82); + if (lookahead == '=') ADVANCE(58); + if (lookahead == '|') ADVANCE(84); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '|') ADVANCE(83); END_STATE(); case 81: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(58); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(59); END_STATE(); case 83: ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); - if (lookahead == '=') ADVANCE(59); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); + if (lookahead == '=') ADVANCE(60); END_STATE(); case 85: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(50); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(51); END_STATE(); case 87: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(53); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(54); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 90: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(64); END_STATE(); case 91: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(63); + if (lookahead == '.') ADVANCE(65); END_STATE(); case 92: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(10); + if (lookahead == '.') ADVANCE(64); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(11); END_STATE(); case 94: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 95: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(106); + if (lookahead == '!') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 96: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(105); + if (lookahead == '_') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 97: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'c') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 98: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(102); + if (lookahead == 'e') ADVANCE(95); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 99: ACCEPT_TOKEN(sym_identifier); @@ -10083,31 +20997,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 100: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(97); + if (lookahead == 'o') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 101: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(107); + if (lookahead == 'p') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 102: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(76); + if (lookahead == 'r') ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 103: ACCEPT_TOKEN(sym_identifier); @@ -10115,108 +21029,116 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 104: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(101); + if (lookahead == 'r') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 105: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(95); + if (lookahead == 't') ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 106: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(108); + if (lookahead == 't') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 107: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(96); + if (lookahead == 't') ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 108: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(100); + if (lookahead == 'u') ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 109: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + END_STATE(); + case 110: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); - END_STATE(); - case 110: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 111: ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(19); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); case 112: - ACCEPT_TOKEN(sym_float); + ACCEPT_TOKEN(sym_integer); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); case 114: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 115: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '#') ADVANCE(115); + if (lookahead == '#') ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(114); + lookahead == ' ') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(115); + lookahead != '\\') ADVANCE(116); END_STATE(); - case 115: + case 116: ACCEPT_TOKEN(sym_string_content); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(115); - END_STATE(); - case 116: - ACCEPT_TOKEN(sym_escape_sequence); + lookahead != '\\') ADVANCE(116); END_STATE(); case 117: - ACCEPT_TOKEN(sym_multiline_string); - if (lookahead == '\n') ADVANCE(15); - if (lookahead != 0) ADVANCE(117); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 118: - ACCEPT_TOKEN(sym_character); + ACCEPT_TOKEN(sym_multiline_string); + if (lookahead == '\n') ADVANCE(16); + if (lookahead != 0) ADVANCE(118); END_STATE(); case 119: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(119); + ACCEPT_TOKEN(sym_character); END_STATE(); case 120: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(120); + END_STATE(); + case 121: ACCEPT_TOKEN(sym__newline); END_STATE(); default: @@ -11167,2144 +22089,2144 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 24}, + [1] = {.lex_state = 25}, [2] = {.lex_state = 22}, - [3] = {.lex_state = 22}, + [3] = {.lex_state = 21}, [4] = {.lex_state = 22}, - [5] = {.lex_state = 22}, - [6] = {.lex_state = 22}, - [7] = {.lex_state = 22}, - [8] = {.lex_state = 22}, - [9] = {.lex_state = 22}, - [10] = {.lex_state = 22}, - [11] = {.lex_state = 22}, - [12] = {.lex_state = 22}, - [13] = {.lex_state = 22}, - [14] = {.lex_state = 22}, - [15] = {.lex_state = 22}, - [16] = {.lex_state = 22}, - [17] = {.lex_state = 22}, - [18] = {.lex_state = 22}, - [19] = {.lex_state = 22}, - [20] = {.lex_state = 22}, - [21] = {.lex_state = 22}, - [22] = {.lex_state = 22}, - [23] = {.lex_state = 22}, - [24] = {.lex_state = 22}, - [25] = {.lex_state = 22}, - [26] = {.lex_state = 22}, - [27] = {.lex_state = 22}, - [28] = {.lex_state = 22}, - [29] = {.lex_state = 22}, - [30] = {.lex_state = 20}, - [31] = {.lex_state = 20}, - [32] = {.lex_state = 20}, - [33] = {.lex_state = 20}, - [34] = {.lex_state = 20}, - [35] = {.lex_state = 20}, - [36] = {.lex_state = 20}, - [37] = {.lex_state = 20}, - [38] = {.lex_state = 20}, - [39] = {.lex_state = 20}, - [40] = {.lex_state = 20}, - [41] = {.lex_state = 20}, - [42] = {.lex_state = 20}, - [43] = {.lex_state = 20}, - [44] = {.lex_state = 20}, - [45] = {.lex_state = 20}, - [46] = {.lex_state = 20}, - [47] = {.lex_state = 20}, - [48] = {.lex_state = 20}, - [49] = {.lex_state = 22}, - [50] = {.lex_state = 22}, - [51] = {.lex_state = 22}, - [52] = {.lex_state = 22}, - [53] = {.lex_state = 22}, - [54] = {.lex_state = 22}, - [55] = {.lex_state = 22}, - [56] = {.lex_state = 22}, - [57] = {.lex_state = 22}, - [58] = {.lex_state = 22}, - [59] = {.lex_state = 22}, - [60] = {.lex_state = 22}, - [61] = {.lex_state = 22}, - [62] = {.lex_state = 22}, - [63] = {.lex_state = 22}, - [64] = {.lex_state = 22}, - [65] = {.lex_state = 22}, - [66] = {.lex_state = 22}, - [67] = {.lex_state = 22}, - [68] = {.lex_state = 22}, - [69] = {.lex_state = 22}, - [70] = {.lex_state = 22}, - [71] = {.lex_state = 22}, - [72] = {.lex_state = 22}, - [73] = {.lex_state = 22}, - [74] = {.lex_state = 22}, - [75] = {.lex_state = 22}, - [76] = {.lex_state = 22}, - [77] = {.lex_state = 22}, - [78] = {.lex_state = 22}, - [79] = {.lex_state = 22}, - [80] = {.lex_state = 22}, - [81] = {.lex_state = 22}, - [82] = {.lex_state = 22}, - [83] = {.lex_state = 22}, - [84] = {.lex_state = 22}, - [85] = {.lex_state = 22}, - [86] = {.lex_state = 22}, - [87] = {.lex_state = 22}, - [88] = {.lex_state = 22}, - [89] = {.lex_state = 22}, - [90] = {.lex_state = 22}, - [91] = {.lex_state = 22}, - [92] = {.lex_state = 22}, - [93] = {.lex_state = 22}, - [94] = {.lex_state = 22}, - [95] = {.lex_state = 22}, - [96] = {.lex_state = 22}, - [97] = {.lex_state = 22}, - [98] = {.lex_state = 22}, - [99] = {.lex_state = 22}, - [100] = {.lex_state = 22}, - [101] = {.lex_state = 22}, - [102] = {.lex_state = 22}, - [103] = {.lex_state = 22}, - [104] = {.lex_state = 22}, - [105] = {.lex_state = 22}, - [106] = {.lex_state = 22}, - [107] = {.lex_state = 22}, - [108] = {.lex_state = 22}, + [5] = {.lex_state = 23}, + [6] = {.lex_state = 23}, + [7] = {.lex_state = 23}, + [8] = {.lex_state = 23}, + [9] = {.lex_state = 23}, + [10] = {.lex_state = 23}, + [11] = {.lex_state = 23}, + [12] = {.lex_state = 23}, + [13] = {.lex_state = 23}, + [14] = {.lex_state = 23}, + [15] = {.lex_state = 23}, + [16] = {.lex_state = 23}, + [17] = {.lex_state = 23}, + [18] = {.lex_state = 23}, + [19] = {.lex_state = 23}, + [20] = {.lex_state = 23}, + [21] = {.lex_state = 23}, + [22] = {.lex_state = 23}, + [23] = {.lex_state = 23}, + [24] = {.lex_state = 23}, + [25] = {.lex_state = 23}, + [26] = {.lex_state = 23}, + [27] = {.lex_state = 1}, + [28] = {.lex_state = 23}, + [29] = {.lex_state = 23}, + [30] = {.lex_state = 23}, + [31] = {.lex_state = 23}, + [32] = {.lex_state = 23}, + [33] = {.lex_state = 23}, + [34] = {.lex_state = 23}, + [35] = {.lex_state = 23}, + [36] = {.lex_state = 23}, + [37] = {.lex_state = 23}, + [38] = {.lex_state = 23}, + [39] = {.lex_state = 23}, + [40] = {.lex_state = 23}, + [41] = {.lex_state = 23}, + [42] = {.lex_state = 23}, + [43] = {.lex_state = 23}, + [44] = {.lex_state = 23}, + [45] = {.lex_state = 23}, + [46] = {.lex_state = 23}, + [47] = {.lex_state = 23}, + [48] = {.lex_state = 23}, + [49] = {.lex_state = 23}, + [50] = {.lex_state = 23}, + [51] = {.lex_state = 23}, + [52] = {.lex_state = 23}, + [53] = {.lex_state = 23}, + [54] = {.lex_state = 23}, + [55] = {.lex_state = 23}, + [56] = {.lex_state = 23}, + [57] = {.lex_state = 23}, + [58] = {.lex_state = 23}, + [59] = {.lex_state = 23}, + [60] = {.lex_state = 23}, + [61] = {.lex_state = 23}, + [62] = {.lex_state = 23}, + [63] = {.lex_state = 23}, + [64] = {.lex_state = 23}, + [65] = {.lex_state = 23}, + [66] = {.lex_state = 23}, + [67] = {.lex_state = 23}, + [68] = {.lex_state = 23}, + [69] = {.lex_state = 23}, + [70] = {.lex_state = 23}, + [71] = {.lex_state = 23}, + [72] = {.lex_state = 23}, + [73] = {.lex_state = 23}, + [74] = {.lex_state = 23}, + [75] = {.lex_state = 23}, + [76] = {.lex_state = 23}, + [77] = {.lex_state = 23}, + [78] = {.lex_state = 23}, + [79] = {.lex_state = 23}, + [80] = {.lex_state = 23}, + [81] = {.lex_state = 23}, + [82] = {.lex_state = 23}, + [83] = {.lex_state = 23}, + [84] = {.lex_state = 23}, + [85] = {.lex_state = 23}, + [86] = {.lex_state = 23}, + [87] = {.lex_state = 23}, + [88] = {.lex_state = 23}, + [89] = {.lex_state = 23}, + [90] = {.lex_state = 23}, + [91] = {.lex_state = 23}, + [92] = {.lex_state = 23}, + [93] = {.lex_state = 23}, + [94] = {.lex_state = 23}, + [95] = {.lex_state = 23}, + [96] = {.lex_state = 23}, + [97] = {.lex_state = 23}, + [98] = {.lex_state = 23}, + [99] = {.lex_state = 23}, + [100] = {.lex_state = 23}, + [101] = {.lex_state = 23}, + [102] = {.lex_state = 23}, + [103] = {.lex_state = 23}, + [104] = {.lex_state = 23}, + [105] = {.lex_state = 23}, + [106] = {.lex_state = 23}, + [107] = {.lex_state = 23}, + [108] = {.lex_state = 23}, [109] = {.lex_state = 22}, - [110] = {.lex_state = 22}, + [110] = {.lex_state = 23}, [111] = {.lex_state = 22}, - [112] = {.lex_state = 22}, + [112] = {.lex_state = 21}, [113] = {.lex_state = 22}, - [114] = {.lex_state = 22}, + [114] = {.lex_state = 21}, [115] = {.lex_state = 22}, - [116] = {.lex_state = 22}, - [117] = {.lex_state = 22}, - [118] = {.lex_state = 22}, - [119] = {.lex_state = 22}, - [120] = {.lex_state = 22}, - [121] = {.lex_state = 22}, - [122] = {.lex_state = 22}, - [123] = {.lex_state = 22}, - [124] = {.lex_state = 22}, - [125] = {.lex_state = 22}, - [126] = {.lex_state = 22}, - [127] = {.lex_state = 22}, - [128] = {.lex_state = 22}, - [129] = {.lex_state = 22}, + [116] = {.lex_state = 23}, + [117] = {.lex_state = 23}, + [118] = {.lex_state = 23}, + [119] = {.lex_state = 23}, + [120] = {.lex_state = 23}, + [121] = {.lex_state = 23}, + [122] = {.lex_state = 23}, + [123] = {.lex_state = 23}, + [124] = {.lex_state = 23}, + [125] = {.lex_state = 23}, + [126] = {.lex_state = 23}, + [127] = {.lex_state = 23}, + [128] = {.lex_state = 23}, + [129] = {.lex_state = 23}, [130] = {.lex_state = 22}, - [131] = {.lex_state = 22}, - [132] = {.lex_state = 22}, - [133] = {.lex_state = 22}, + [131] = {.lex_state = 23}, + [132] = {.lex_state = 23}, + [133] = {.lex_state = 23}, [134] = {.lex_state = 22}, - [135] = {.lex_state = 22}, + [135] = {.lex_state = 1}, [136] = {.lex_state = 22}, [137] = {.lex_state = 22}, [138] = {.lex_state = 22}, [139] = {.lex_state = 22}, [140] = {.lex_state = 22}, [141] = {.lex_state = 22}, - [142] = {.lex_state = 22}, + [142] = {.lex_state = 1}, [143] = {.lex_state = 22}, [144] = {.lex_state = 22}, [145] = {.lex_state = 22}, - [146] = {.lex_state = 22}, - [147] = {.lex_state = 22}, - [148] = {.lex_state = 22}, - [149] = {.lex_state = 22}, - [150] = {.lex_state = 22}, - [151] = {.lex_state = 22}, - [152] = {.lex_state = 22}, - [153] = {.lex_state = 22}, - [154] = {.lex_state = 22}, - [155] = {.lex_state = 22}, - [156] = {.lex_state = 22}, - [157] = {.lex_state = 22}, - [158] = {.lex_state = 22}, - [159] = {.lex_state = 22}, + [146] = {.lex_state = 21}, + [147] = {.lex_state = 21}, + [148] = {.lex_state = 21}, + [149] = {.lex_state = 21}, + [150] = {.lex_state = 21}, + [151] = {.lex_state = 21}, + [152] = {.lex_state = 21}, + [153] = {.lex_state = 21}, + [154] = {.lex_state = 21}, + [155] = {.lex_state = 21}, + [156] = {.lex_state = 21}, + [157] = {.lex_state = 21}, + [158] = {.lex_state = 23}, + [159] = {.lex_state = 23}, [160] = {.lex_state = 24}, - [161] = {.lex_state = 22}, + [161] = {.lex_state = 23}, [162] = {.lex_state = 24}, - [163] = {.lex_state = 24}, - [164] = {.lex_state = 24}, - [165] = {.lex_state = 24}, - [166] = {.lex_state = 24}, - [167] = {.lex_state = 24}, - [168] = {.lex_state = 24}, - [169] = {.lex_state = 24}, - [170] = {.lex_state = 24}, - [171] = {.lex_state = 24}, - [172] = {.lex_state = 24}, - [173] = {.lex_state = 24}, - [174] = {.lex_state = 24}, - [175] = {.lex_state = 24}, - [176] = {.lex_state = 24}, - [177] = {.lex_state = 24}, - [178] = {.lex_state = 24}, - [179] = {.lex_state = 24}, - [180] = {.lex_state = 24}, - [181] = {.lex_state = 24}, - [182] = {.lex_state = 24}, - [183] = {.lex_state = 24}, - [184] = {.lex_state = 24}, - [185] = {.lex_state = 24}, - [186] = {.lex_state = 24}, - [187] = {.lex_state = 24}, - [188] = {.lex_state = 24}, - [189] = {.lex_state = 24}, - [190] = {.lex_state = 24}, - [191] = {.lex_state = 24}, - [192] = {.lex_state = 24}, - [193] = {.lex_state = 24}, - [194] = {.lex_state = 24}, - [195] = {.lex_state = 24}, - [196] = {.lex_state = 24}, - [197] = {.lex_state = 24}, - [198] = {.lex_state = 24}, - [199] = {.lex_state = 24}, - [200] = {.lex_state = 24}, - [201] = {.lex_state = 24}, - [202] = {.lex_state = 24}, - [203] = {.lex_state = 24}, - [204] = {.lex_state = 24}, - [205] = {.lex_state = 24}, - [206] = {.lex_state = 24}, - [207] = {.lex_state = 24}, - [208] = {.lex_state = 24}, - [209] = {.lex_state = 24}, - [210] = {.lex_state = 24}, - [211] = {.lex_state = 24}, - [212] = {.lex_state = 24}, - [213] = {.lex_state = 24}, - [214] = {.lex_state = 24}, - [215] = {.lex_state = 24}, - [216] = {.lex_state = 24}, - [217] = {.lex_state = 24}, - [218] = {.lex_state = 24}, - [219] = {.lex_state = 24}, - [220] = {.lex_state = 24}, - [221] = {.lex_state = 24}, - [222] = {.lex_state = 24}, - [223] = {.lex_state = 24}, - [224] = {.lex_state = 24}, - [225] = {.lex_state = 24}, - [226] = {.lex_state = 24}, - [227] = {.lex_state = 24}, - [228] = {.lex_state = 24}, - [229] = {.lex_state = 24}, - [230] = {.lex_state = 24}, - [231] = {.lex_state = 24}, - [232] = {.lex_state = 24}, - [233] = {.lex_state = 24}, - [234] = {.lex_state = 24}, - [235] = {.lex_state = 24}, - [236] = {.lex_state = 24}, - [237] = {.lex_state = 24}, - [238] = {.lex_state = 24}, - [239] = {.lex_state = 24}, - [240] = {.lex_state = 24}, - [241] = {.lex_state = 24}, - [242] = {.lex_state = 24}, - [243] = {.lex_state = 24}, - [244] = {.lex_state = 24}, - [245] = {.lex_state = 24}, - [246] = {.lex_state = 24}, - [247] = {.lex_state = 24}, - [248] = {.lex_state = 24}, - [249] = {.lex_state = 24}, - [250] = {.lex_state = 24}, - [251] = {.lex_state = 24}, - [252] = {.lex_state = 24}, - [253] = {.lex_state = 24}, - [254] = {.lex_state = 24}, - [255] = {.lex_state = 24}, - [256] = {.lex_state = 24}, - [257] = {.lex_state = 24}, - [258] = {.lex_state = 24}, - [259] = {.lex_state = 24}, - [260] = {.lex_state = 24}, - [261] = {.lex_state = 24}, - [262] = {.lex_state = 24}, - [263] = {.lex_state = 24}, - [264] = {.lex_state = 24}, - [265] = {.lex_state = 24}, - [266] = {.lex_state = 24}, - [267] = {.lex_state = 24}, - [268] = {.lex_state = 24}, - [269] = {.lex_state = 24}, - [270] = {.lex_state = 24}, - [271] = {.lex_state = 24}, - [272] = {.lex_state = 24}, - [273] = {.lex_state = 24}, - [274] = {.lex_state = 24}, - [275] = {.lex_state = 24}, - [276] = {.lex_state = 24}, - [277] = {.lex_state = 24}, - [278] = {.lex_state = 24}, - [279] = {.lex_state = 24}, - [280] = {.lex_state = 24}, - [281] = {.lex_state = 24}, - [282] = {.lex_state = 24}, - [283] = {.lex_state = 24}, - [284] = {.lex_state = 24}, - [285] = {.lex_state = 24}, - [286] = {.lex_state = 24}, - [287] = {.lex_state = 24}, - [288] = {.lex_state = 24}, - [289] = {.lex_state = 24}, - [290] = {.lex_state = 24}, - [291] = {.lex_state = 24}, - [292] = {.lex_state = 24}, - [293] = {.lex_state = 24}, - [294] = {.lex_state = 24}, - [295] = {.lex_state = 24}, - [296] = {.lex_state = 24}, - [297] = {.lex_state = 24}, - [298] = {.lex_state = 24}, - [299] = {.lex_state = 24}, - [300] = {.lex_state = 24}, - [301] = {.lex_state = 24}, - [302] = {.lex_state = 24}, - [303] = {.lex_state = 24}, - [304] = {.lex_state = 24}, - [305] = {.lex_state = 24}, - [306] = {.lex_state = 24}, - [307] = {.lex_state = 24}, - [308] = {.lex_state = 24}, - [309] = {.lex_state = 24}, - [310] = {.lex_state = 24}, - [311] = {.lex_state = 24}, - [312] = {.lex_state = 24}, - [313] = {.lex_state = 24}, - [314] = {.lex_state = 24}, - [315] = {.lex_state = 24}, - [316] = {.lex_state = 24}, - [317] = {.lex_state = 24}, - [318] = {.lex_state = 24}, - [319] = {.lex_state = 24}, - [320] = {.lex_state = 24}, - [321] = {.lex_state = 24}, - [322] = {.lex_state = 24}, - [323] = {.lex_state = 24}, - [324] = {.lex_state = 24}, - [325] = {.lex_state = 24}, - [326] = {.lex_state = 24}, - [327] = {.lex_state = 24}, - [328] = {.lex_state = 24}, - [329] = {.lex_state = 24}, - [330] = {.lex_state = 24}, - [331] = {.lex_state = 24}, - [332] = {.lex_state = 24}, - [333] = {.lex_state = 24}, - [334] = {.lex_state = 24}, - [335] = {.lex_state = 24}, - [336] = {.lex_state = 24}, - [337] = {.lex_state = 24}, - [338] = {.lex_state = 24}, - [339] = {.lex_state = 24}, - [340] = {.lex_state = 24}, - [341] = {.lex_state = 24}, - [342] = {.lex_state = 24}, - [343] = {.lex_state = 24}, - [344] = {.lex_state = 24}, - [345] = {.lex_state = 24}, - [346] = {.lex_state = 24}, - [347] = {.lex_state = 24}, - [348] = {.lex_state = 24}, - [349] = {.lex_state = 24}, - [350] = {.lex_state = 24}, - [351] = {.lex_state = 24}, - [352] = {.lex_state = 24}, - [353] = {.lex_state = 24}, - [354] = {.lex_state = 24}, - [355] = {.lex_state = 24}, - [356] = {.lex_state = 24}, - [357] = {.lex_state = 24}, - [358] = {.lex_state = 24}, - [359] = {.lex_state = 24}, - [360] = {.lex_state = 24}, - [361] = {.lex_state = 24}, - [362] = {.lex_state = 24}, - [363] = {.lex_state = 24}, - [364] = {.lex_state = 24}, - [365] = {.lex_state = 24}, - [366] = {.lex_state = 24}, - [367] = {.lex_state = 24}, - [368] = {.lex_state = 24}, - [369] = {.lex_state = 24}, - [370] = {.lex_state = 24}, - [371] = {.lex_state = 24}, - [372] = {.lex_state = 24}, - [373] = {.lex_state = 24}, - [374] = {.lex_state = 24}, - [375] = {.lex_state = 24}, - [376] = {.lex_state = 24}, - [377] = {.lex_state = 24}, - [378] = {.lex_state = 24}, - [379] = {.lex_state = 24}, - [380] = {.lex_state = 24}, - [381] = {.lex_state = 24}, - [382] = {.lex_state = 24}, - [383] = {.lex_state = 24}, - [384] = {.lex_state = 24}, - [385] = {.lex_state = 24}, - [386] = {.lex_state = 24}, - [387] = {.lex_state = 24}, - [388] = {.lex_state = 24}, - [389] = {.lex_state = 24}, - [390] = {.lex_state = 24}, - [391] = {.lex_state = 24}, - [392] = {.lex_state = 24}, - [393] = {.lex_state = 24}, - [394] = {.lex_state = 24}, - [395] = {.lex_state = 24}, - [396] = {.lex_state = 24}, - [397] = {.lex_state = 24}, - [398] = {.lex_state = 24}, - [399] = {.lex_state = 24}, - [400] = {.lex_state = 24}, - [401] = {.lex_state = 24}, - [402] = {.lex_state = 24}, - [403] = {.lex_state = 24}, - [404] = {.lex_state = 24}, - [405] = {.lex_state = 24}, - [406] = {.lex_state = 24}, - [407] = {.lex_state = 24}, - [408] = {.lex_state = 24}, - [409] = {.lex_state = 24}, - [410] = {.lex_state = 24}, - [411] = {.lex_state = 24}, - [412] = {.lex_state = 24}, - [413] = {.lex_state = 24}, - [414] = {.lex_state = 24}, - [415] = {.lex_state = 24}, - [416] = {.lex_state = 24}, - [417] = {.lex_state = 24}, - [418] = {.lex_state = 24}, - [419] = {.lex_state = 24}, - [420] = {.lex_state = 24}, - [421] = {.lex_state = 24}, - [422] = {.lex_state = 24}, - [423] = {.lex_state = 24}, - [424] = {.lex_state = 24}, - [425] = {.lex_state = 24}, - [426] = {.lex_state = 24}, - [427] = {.lex_state = 24}, - [428] = {.lex_state = 24}, - [429] = {.lex_state = 24}, - [430] = {.lex_state = 24}, - [431] = {.lex_state = 24}, - [432] = {.lex_state = 24}, - [433] = {.lex_state = 24}, - [434] = {.lex_state = 24}, - [435] = {.lex_state = 24}, - [436] = {.lex_state = 24}, - [437] = {.lex_state = 24}, - [438] = {.lex_state = 24}, - [439] = {.lex_state = 24}, - [440] = {.lex_state = 24}, - [441] = {.lex_state = 24}, - [442] = {.lex_state = 24}, - [443] = {.lex_state = 24}, - [444] = {.lex_state = 24}, - [445] = {.lex_state = 24}, - [446] = {.lex_state = 24}, - [447] = {.lex_state = 24}, - [448] = {.lex_state = 24}, - [449] = {.lex_state = 24}, - [450] = {.lex_state = 24}, - [451] = {.lex_state = 24}, - [452] = {.lex_state = 24}, - [453] = {.lex_state = 24}, - [454] = {.lex_state = 24}, - [455] = {.lex_state = 24}, - [456] = {.lex_state = 24}, - [457] = {.lex_state = 24}, - [458] = {.lex_state = 24}, - [459] = {.lex_state = 24}, - [460] = {.lex_state = 24}, - [461] = {.lex_state = 24}, - [462] = {.lex_state = 24}, - [463] = {.lex_state = 24}, - [464] = {.lex_state = 24}, - [465] = {.lex_state = 24}, - [466] = {.lex_state = 24}, - [467] = {.lex_state = 24}, - [468] = {.lex_state = 24}, - [469] = {.lex_state = 24}, - [470] = {.lex_state = 24}, - [471] = {.lex_state = 24}, - [472] = {.lex_state = 24}, - [473] = {.lex_state = 24}, - [474] = {.lex_state = 24}, - [475] = {.lex_state = 24}, - [476] = {.lex_state = 24}, - [477] = {.lex_state = 24}, - [478] = {.lex_state = 24}, - [479] = {.lex_state = 24}, - [480] = {.lex_state = 24}, - [481] = {.lex_state = 24}, - [482] = {.lex_state = 24}, - [483] = {.lex_state = 24}, - [484] = {.lex_state = 24}, - [485] = {.lex_state = 24}, - [486] = {.lex_state = 24}, - [487] = {.lex_state = 24}, - [488] = {.lex_state = 24}, - [489] = {.lex_state = 24}, - [490] = {.lex_state = 24}, - [491] = {.lex_state = 24}, - [492] = {.lex_state = 24}, - [493] = {.lex_state = 24}, - [494] = {.lex_state = 24}, - [495] = {.lex_state = 24}, - [496] = {.lex_state = 24}, - [497] = {.lex_state = 24}, - [498] = {.lex_state = 24}, - [499] = {.lex_state = 24}, - [500] = {.lex_state = 24}, - [501] = {.lex_state = 24}, - [502] = {.lex_state = 24}, - [503] = {.lex_state = 24}, - [504] = {.lex_state = 24}, - [505] = {.lex_state = 24}, - [506] = {.lex_state = 24}, - [507] = {.lex_state = 24}, - [508] = {.lex_state = 24}, - [509] = {.lex_state = 24}, - [510] = {.lex_state = 24}, - [511] = {.lex_state = 24}, - [512] = {.lex_state = 24}, - [513] = {.lex_state = 24}, - [514] = {.lex_state = 24}, - [515] = {.lex_state = 24}, - [516] = {.lex_state = 24}, - [517] = {.lex_state = 24}, - [518] = {.lex_state = 24}, - [519] = {.lex_state = 24}, - [520] = {.lex_state = 24}, - [521] = {.lex_state = 24}, - [522] = {.lex_state = 24}, - [523] = {.lex_state = 24}, - [524] = {.lex_state = 24}, - [525] = {.lex_state = 24}, - [526] = {.lex_state = 24}, - [527] = {.lex_state = 24}, - [528] = {.lex_state = 24}, - [529] = {.lex_state = 24}, - [530] = {.lex_state = 21}, - [531] = {.lex_state = 21}, - [532] = {.lex_state = 21}, - [533] = {.lex_state = 21}, - [534] = {.lex_state = 21}, - [535] = {.lex_state = 21}, - [536] = {.lex_state = 21}, - [537] = {.lex_state = 21}, - [538] = {.lex_state = 24}, - [539] = {.lex_state = 21}, - [540] = {.lex_state = 21}, - [541] = {.lex_state = 21}, - [542] = {.lex_state = 21}, - [543] = {.lex_state = 21}, - [544] = {.lex_state = 24}, - [545] = {.lex_state = 21}, - [546] = {.lex_state = 21}, - [547] = {.lex_state = 21}, - [548] = {.lex_state = 21}, - [549] = {.lex_state = 21}, - [550] = {.lex_state = 21}, - [551] = {.lex_state = 21}, - [552] = {.lex_state = 21}, - [553] = {.lex_state = 21}, - [554] = {.lex_state = 21}, - [555] = {.lex_state = 21}, - [556] = {.lex_state = 21}, - [557] = {.lex_state = 21}, - [558] = {.lex_state = 21}, - [559] = {.lex_state = 21}, - [560] = {.lex_state = 21}, - [561] = {.lex_state = 21}, - [562] = {.lex_state = 21}, - [563] = {.lex_state = 21}, - [564] = {.lex_state = 21}, - [565] = {.lex_state = 21}, - [566] = {.lex_state = 21}, - [567] = {.lex_state = 21}, - [568] = {.lex_state = 21}, - [569] = {.lex_state = 21}, - [570] = {.lex_state = 21}, - [571] = {.lex_state = 21}, - [572] = {.lex_state = 21}, - [573] = {.lex_state = 21}, - [574] = {.lex_state = 21}, - [575] = {.lex_state = 21}, - [576] = {.lex_state = 21}, - [577] = {.lex_state = 21}, - [578] = {.lex_state = 21}, - [579] = {.lex_state = 21}, - [580] = {.lex_state = 24}, - [581] = {.lex_state = 21}, - [582] = {.lex_state = 21}, - [583] = {.lex_state = 21}, - [584] = {.lex_state = 21}, - [585] = {.lex_state = 21}, - [586] = {.lex_state = 21}, - [587] = {.lex_state = 21}, - [588] = {.lex_state = 21}, - [589] = {.lex_state = 21}, - [590] = {.lex_state = 21}, - [591] = {.lex_state = 21}, - [592] = {.lex_state = 21}, - [593] = {.lex_state = 21}, - [594] = {.lex_state = 21}, - [595] = {.lex_state = 21}, - [596] = {.lex_state = 21}, - [597] = {.lex_state = 21}, - [598] = {.lex_state = 21}, - [599] = {.lex_state = 21}, - [600] = {.lex_state = 21}, - [601] = {.lex_state = 21}, - [602] = {.lex_state = 21}, - [603] = {.lex_state = 21}, - [604] = {.lex_state = 21}, - [605] = {.lex_state = 21}, - [606] = {.lex_state = 21}, - [607] = {.lex_state = 21}, - [608] = {.lex_state = 21}, - [609] = {.lex_state = 21}, - [610] = {.lex_state = 21}, - [611] = {.lex_state = 21}, - [612] = {.lex_state = 21}, - [613] = {.lex_state = 21}, - [614] = {.lex_state = 21}, - [615] = {.lex_state = 21}, - [616] = {.lex_state = 21}, - [617] = {.lex_state = 21}, - [618] = {.lex_state = 21}, - [619] = {.lex_state = 21}, - [620] = {.lex_state = 21}, - [621] = {.lex_state = 21}, - [622] = {.lex_state = 21}, - [623] = {.lex_state = 21}, - [624] = {.lex_state = 21}, - [625] = {.lex_state = 21}, - [626] = {.lex_state = 21}, - [627] = {.lex_state = 21}, - [628] = {.lex_state = 21}, - [629] = {.lex_state = 21}, - [630] = {.lex_state = 21}, - [631] = {.lex_state = 21}, - [632] = {.lex_state = 21}, - [633] = {.lex_state = 21}, - [634] = {.lex_state = 21}, - [635] = {.lex_state = 21}, - [636] = {.lex_state = 21}, - [637] = {.lex_state = 21}, - [638] = {.lex_state = 21}, - [639] = {.lex_state = 21}, - [640] = {.lex_state = 21}, - [641] = {.lex_state = 21}, - [642] = {.lex_state = 21}, - [643] = {.lex_state = 21}, - [644] = {.lex_state = 21}, - [645] = {.lex_state = 24}, - [646] = {.lex_state = 21}, - [647] = {.lex_state = 21}, - [648] = {.lex_state = 21}, - [649] = {.lex_state = 21}, - [650] = {.lex_state = 21}, - [651] = {.lex_state = 21}, - [652] = {.lex_state = 21}, - [653] = {.lex_state = 21}, - [654] = {.lex_state = 21}, - [655] = {.lex_state = 21}, - [656] = {.lex_state = 20}, - [657] = {.lex_state = 21}, - [658] = {.lex_state = 21}, - [659] = {.lex_state = 21}, - [660] = {.lex_state = 21}, - [661] = {.lex_state = 21}, - [662] = {.lex_state = 21}, - [663] = {.lex_state = 21}, - [664] = {.lex_state = 21}, - [665] = {.lex_state = 21}, - [666] = {.lex_state = 21}, - [667] = {.lex_state = 21}, - [668] = {.lex_state = 21}, - [669] = {.lex_state = 21}, - [670] = {.lex_state = 21}, - [671] = {.lex_state = 21}, - [672] = {.lex_state = 21}, - [673] = {.lex_state = 21}, - [674] = {.lex_state = 21}, - [675] = {.lex_state = 21}, - [676] = {.lex_state = 21}, - [677] = {.lex_state = 21}, - [678] = {.lex_state = 21}, - [679] = {.lex_state = 21}, - [680] = {.lex_state = 21}, - [681] = {.lex_state = 21}, - [682] = {.lex_state = 21}, - [683] = {.lex_state = 21}, - [684] = {.lex_state = 21}, - [685] = {.lex_state = 21}, - [686] = {.lex_state = 21}, - [687] = {.lex_state = 21}, - [688] = {.lex_state = 21}, - [689] = {.lex_state = 21}, - [690] = {.lex_state = 21}, - [691] = {.lex_state = 21}, - [692] = {.lex_state = 21}, - [693] = {.lex_state = 21}, - [694] = {.lex_state = 21}, - [695] = {.lex_state = 21}, - [696] = {.lex_state = 21}, - [697] = {.lex_state = 21}, - [698] = {.lex_state = 21}, - [699] = {.lex_state = 21}, - [700] = {.lex_state = 21}, - [701] = {.lex_state = 21}, - [702] = {.lex_state = 21}, - [703] = {.lex_state = 21}, - [704] = {.lex_state = 21}, - [705] = {.lex_state = 21}, - [706] = {.lex_state = 21}, - [707] = {.lex_state = 21}, - [708] = {.lex_state = 21}, - [709] = {.lex_state = 21}, - [710] = {.lex_state = 20}, - [711] = {.lex_state = 21}, - [712] = {.lex_state = 21}, - [713] = {.lex_state = 23}, - [714] = {.lex_state = 23}, - [715] = {.lex_state = 23}, - [716] = {.lex_state = 23}, - [717] = {.lex_state = 21}, - [718] = {.lex_state = 23}, - [719] = {.lex_state = 21}, - [720] = {.lex_state = 23}, - [721] = {.lex_state = 21}, - [722] = {.lex_state = 21}, - [723] = {.lex_state = 21}, - [724] = {.lex_state = 21}, - [725] = {.lex_state = 21}, - [726] = {.lex_state = 21}, - [727] = {.lex_state = 21}, - [728] = {.lex_state = 21}, - [729] = {.lex_state = 21}, - [730] = {.lex_state = 21}, - [731] = {.lex_state = 21}, - [732] = {.lex_state = 21}, - [733] = {.lex_state = 21}, - [734] = {.lex_state = 24}, - [735] = {.lex_state = 21}, - [736] = {.lex_state = 21}, - [737] = {.lex_state = 21}, - [738] = {.lex_state = 21}, - [739] = {.lex_state = 21}, - [740] = {.lex_state = 21}, - [741] = {.lex_state = 21}, - [742] = {.lex_state = 24}, - [743] = {.lex_state = 21}, - [744] = {.lex_state = 21}, - [745] = {.lex_state = 21}, - [746] = {.lex_state = 21}, - [747] = {.lex_state = 21}, - [748] = {.lex_state = 21}, - [749] = {.lex_state = 21}, - [750] = {.lex_state = 24}, - [751] = {.lex_state = 21}, - [752] = {.lex_state = 21}, - [753] = {.lex_state = 21}, - [754] = {.lex_state = 22}, - [755] = {.lex_state = 22}, - [756] = {.lex_state = 22}, - [757] = {.lex_state = 22}, - [758] = {.lex_state = 22}, - [759] = {.lex_state = 22}, - [760] = {.lex_state = 22}, - [761] = {.lex_state = 22}, - [762] = {.lex_state = 22}, - [763] = {.lex_state = 22}, - [764] = {.lex_state = 22}, - [765] = {.lex_state = 22}, + [163] = {.lex_state = 21}, + [164] = {.lex_state = 23}, + [165] = {.lex_state = 23}, + [166] = {.lex_state = 21}, + [167] = {.lex_state = 21}, + [168] = {.lex_state = 21}, + [169] = {.lex_state = 23}, + [170] = {.lex_state = 23}, + [171] = {.lex_state = 23}, + [172] = {.lex_state = 21}, + [173] = {.lex_state = 23}, + [174] = {.lex_state = 2}, + [175] = {.lex_state = 23}, + [176] = {.lex_state = 21}, + [177] = {.lex_state = 21}, + [178] = {.lex_state = 21}, + [179] = {.lex_state = 21}, + [180] = {.lex_state = 23}, + [181] = {.lex_state = 23}, + [182] = {.lex_state = 21}, + [183] = {.lex_state = 21}, + [184] = {.lex_state = 21}, + [185] = {.lex_state = 21}, + [186] = {.lex_state = 21}, + [187] = {.lex_state = 21}, + [188] = {.lex_state = 21}, + [189] = {.lex_state = 21}, + [190] = {.lex_state = 21}, + [191] = {.lex_state = 21}, + [192] = {.lex_state = 23}, + [193] = {.lex_state = 2}, + [194] = {.lex_state = 0}, + [195] = {.lex_state = 21}, + [196] = {.lex_state = 21}, + [197] = {.lex_state = 21}, + [198] = {.lex_state = 21}, + [199] = {.lex_state = 0}, + [200] = {.lex_state = 0}, + [201] = {.lex_state = 21}, + [202] = {.lex_state = 0}, + [203] = {.lex_state = 21}, + [204] = {.lex_state = 0}, + [205] = {.lex_state = 0}, + [206] = {.lex_state = 21}, + [207] = {.lex_state = 0}, + [208] = {.lex_state = 0}, + [209] = {.lex_state = 21}, + [210] = {.lex_state = 0}, + [211] = {.lex_state = 0}, + [212] = {.lex_state = 0}, + [213] = {.lex_state = 23}, + [214] = {.lex_state = 0}, + [215] = {.lex_state = 0}, + [216] = {.lex_state = 0}, + [217] = {.lex_state = 0}, + [218] = {.lex_state = 0}, + [219] = {.lex_state = 21}, + [220] = {.lex_state = 23}, + [221] = {.lex_state = 21}, + [222] = {.lex_state = 23}, + [223] = {.lex_state = 23}, + [224] = {.lex_state = 23}, + [225] = {.lex_state = 23}, + [226] = {.lex_state = 23}, + [227] = {.lex_state = 23}, + [228] = {.lex_state = 23}, + [229] = {.lex_state = 23}, + [230] = {.lex_state = 23}, + [231] = {.lex_state = 23}, + [232] = {.lex_state = 23}, + [233] = {.lex_state = 23}, + [234] = {.lex_state = 23}, + [235] = {.lex_state = 23}, + [236] = {.lex_state = 23}, + [237] = {.lex_state = 23}, + [238] = {.lex_state = 23}, + [239] = {.lex_state = 23}, + [240] = {.lex_state = 23}, + [241] = {.lex_state = 23}, + [242] = {.lex_state = 23}, + [243] = {.lex_state = 23}, + [244] = {.lex_state = 23}, + [245] = {.lex_state = 23}, + [246] = {.lex_state = 23}, + [247] = {.lex_state = 23}, + [248] = {.lex_state = 23}, + [249] = {.lex_state = 23}, + [250] = {.lex_state = 23}, + [251] = {.lex_state = 23}, + [252] = {.lex_state = 23}, + [253] = {.lex_state = 23}, + [254] = {.lex_state = 23}, + [255] = {.lex_state = 23}, + [256] = {.lex_state = 23}, + [257] = {.lex_state = 23}, + [258] = {.lex_state = 23}, + [259] = {.lex_state = 23}, + [260] = {.lex_state = 23}, + [261] = {.lex_state = 23}, + [262] = {.lex_state = 23}, + [263] = {.lex_state = 23}, + [264] = {.lex_state = 23}, + [265] = {.lex_state = 23}, + [266] = {.lex_state = 23}, + [267] = {.lex_state = 23}, + [268] = {.lex_state = 23}, + [269] = {.lex_state = 23}, + [270] = {.lex_state = 23}, + [271] = {.lex_state = 23}, + [272] = {.lex_state = 23}, + [273] = {.lex_state = 23}, + [274] = {.lex_state = 23}, + [275] = {.lex_state = 23}, + [276] = {.lex_state = 23}, + [277] = {.lex_state = 23}, + [278] = {.lex_state = 23}, + [279] = {.lex_state = 23}, + [280] = {.lex_state = 23}, + [281] = {.lex_state = 23}, + [282] = {.lex_state = 23}, + [283] = {.lex_state = 23}, + [284] = {.lex_state = 23}, + [285] = {.lex_state = 23}, + [286] = {.lex_state = 23}, + [287] = {.lex_state = 23}, + [288] = {.lex_state = 23}, + [289] = {.lex_state = 23}, + [290] = {.lex_state = 23}, + [291] = {.lex_state = 23}, + [292] = {.lex_state = 23}, + [293] = {.lex_state = 23}, + [294] = {.lex_state = 23}, + [295] = {.lex_state = 23}, + [296] = {.lex_state = 23}, + [297] = {.lex_state = 23}, + [298] = {.lex_state = 23}, + [299] = {.lex_state = 23}, + [300] = {.lex_state = 23}, + [301] = {.lex_state = 23}, + [302] = {.lex_state = 23}, + [303] = {.lex_state = 23}, + [304] = {.lex_state = 23}, + [305] = {.lex_state = 23}, + [306] = {.lex_state = 23}, + [307] = {.lex_state = 23}, + [308] = {.lex_state = 23}, + [309] = {.lex_state = 23}, + [310] = {.lex_state = 23}, + [311] = {.lex_state = 23}, + [312] = {.lex_state = 23}, + [313] = {.lex_state = 23}, + [314] = {.lex_state = 23}, + [315] = {.lex_state = 23}, + [316] = {.lex_state = 23}, + [317] = {.lex_state = 23}, + [318] = {.lex_state = 23}, + [319] = {.lex_state = 23}, + [320] = {.lex_state = 23}, + [321] = {.lex_state = 23}, + [322] = {.lex_state = 23}, + [323] = {.lex_state = 23}, + [324] = {.lex_state = 23}, + [325] = {.lex_state = 23}, + [326] = {.lex_state = 23}, + [327] = {.lex_state = 23}, + [328] = {.lex_state = 23}, + [329] = {.lex_state = 23}, + [330] = {.lex_state = 23}, + [331] = {.lex_state = 23}, + [332] = {.lex_state = 23}, + [333] = {.lex_state = 23}, + [334] = {.lex_state = 23}, + [335] = {.lex_state = 23}, + [336] = {.lex_state = 23}, + [337] = {.lex_state = 23}, + [338] = {.lex_state = 23}, + [339] = {.lex_state = 23}, + [340] = {.lex_state = 23}, + [341] = {.lex_state = 23}, + [342] = {.lex_state = 23}, + [343] = {.lex_state = 23}, + [344] = {.lex_state = 23}, + [345] = {.lex_state = 23}, + [346] = {.lex_state = 23}, + [347] = {.lex_state = 23}, + [348] = {.lex_state = 23}, + [349] = {.lex_state = 23}, + [350] = {.lex_state = 23}, + [351] = {.lex_state = 23}, + [352] = {.lex_state = 23}, + [353] = {.lex_state = 23}, + [354] = {.lex_state = 23}, + [355] = {.lex_state = 23}, + [356] = {.lex_state = 23}, + [357] = {.lex_state = 23}, + [358] = {.lex_state = 23}, + [359] = {.lex_state = 23}, + [360] = {.lex_state = 23}, + [361] = {.lex_state = 23}, + [362] = {.lex_state = 23}, + [363] = {.lex_state = 23}, + [364] = {.lex_state = 23}, + [365] = {.lex_state = 23}, + [366] = {.lex_state = 23}, + [367] = {.lex_state = 23}, + [368] = {.lex_state = 23}, + [369] = {.lex_state = 23}, + [370] = {.lex_state = 23}, + [371] = {.lex_state = 23}, + [372] = {.lex_state = 23}, + [373] = {.lex_state = 23}, + [374] = {.lex_state = 23}, + [375] = {.lex_state = 23}, + [376] = {.lex_state = 23}, + [377] = {.lex_state = 23}, + [378] = {.lex_state = 23}, + [379] = {.lex_state = 23}, + [380] = {.lex_state = 23}, + [381] = {.lex_state = 23}, + [382] = {.lex_state = 23}, + [383] = {.lex_state = 23}, + [384] = {.lex_state = 23}, + [385] = {.lex_state = 25}, + [386] = {.lex_state = 23}, + [387] = {.lex_state = 23}, + [388] = {.lex_state = 23}, + [389] = {.lex_state = 23}, + [390] = {.lex_state = 25}, + [391] = {.lex_state = 25}, + [392] = {.lex_state = 25}, + [393] = {.lex_state = 25}, + [394] = {.lex_state = 25}, + [395] = {.lex_state = 25}, + [396] = {.lex_state = 25}, + [397] = {.lex_state = 25}, + [398] = {.lex_state = 25}, + [399] = {.lex_state = 25}, + [400] = {.lex_state = 25}, + [401] = {.lex_state = 25}, + [402] = {.lex_state = 25}, + [403] = {.lex_state = 25}, + [404] = {.lex_state = 25}, + [405] = {.lex_state = 25}, + [406] = {.lex_state = 25}, + [407] = {.lex_state = 25}, + [408] = {.lex_state = 25}, + [409] = {.lex_state = 25}, + [410] = {.lex_state = 25}, + [411] = {.lex_state = 25}, + [412] = {.lex_state = 25}, + [413] = {.lex_state = 25}, + [414] = {.lex_state = 25}, + [415] = {.lex_state = 25}, + [416] = {.lex_state = 25}, + [417] = {.lex_state = 25}, + [418] = {.lex_state = 25}, + [419] = {.lex_state = 25}, + [420] = {.lex_state = 25}, + [421] = {.lex_state = 25}, + [422] = {.lex_state = 25}, + [423] = {.lex_state = 25}, + [424] = {.lex_state = 25}, + [425] = {.lex_state = 25}, + [426] = {.lex_state = 25}, + [427] = {.lex_state = 25}, + [428] = {.lex_state = 25}, + [429] = {.lex_state = 25}, + [430] = {.lex_state = 25}, + [431] = {.lex_state = 25}, + [432] = {.lex_state = 25}, + [433] = {.lex_state = 25}, + [434] = {.lex_state = 25}, + [435] = {.lex_state = 25}, + [436] = {.lex_state = 25}, + [437] = {.lex_state = 25}, + [438] = {.lex_state = 25}, + [439] = {.lex_state = 25}, + [440] = {.lex_state = 25}, + [441] = {.lex_state = 25}, + [442] = {.lex_state = 25}, + [443] = {.lex_state = 25}, + [444] = {.lex_state = 25}, + [445] = {.lex_state = 25}, + [446] = {.lex_state = 25}, + [447] = {.lex_state = 25}, + [448] = {.lex_state = 25}, + [449] = {.lex_state = 25}, + [450] = {.lex_state = 25}, + [451] = {.lex_state = 25}, + [452] = {.lex_state = 25}, + [453] = {.lex_state = 25}, + [454] = {.lex_state = 25}, + [455] = {.lex_state = 25}, + [456] = {.lex_state = 25}, + [457] = {.lex_state = 25}, + [458] = {.lex_state = 25}, + [459] = {.lex_state = 25}, + [460] = {.lex_state = 25}, + [461] = {.lex_state = 25}, + [462] = {.lex_state = 25}, + [463] = {.lex_state = 25}, + [464] = {.lex_state = 25}, + [465] = {.lex_state = 25}, + [466] = {.lex_state = 25}, + [467] = {.lex_state = 25}, + [468] = {.lex_state = 25}, + [469] = {.lex_state = 25}, + [470] = {.lex_state = 25}, + [471] = {.lex_state = 25}, + [472] = {.lex_state = 25}, + [473] = {.lex_state = 25}, + [474] = {.lex_state = 25}, + [475] = {.lex_state = 25}, + [476] = {.lex_state = 25}, + [477] = {.lex_state = 25}, + [478] = {.lex_state = 25}, + [479] = {.lex_state = 25}, + [480] = {.lex_state = 25}, + [481] = {.lex_state = 25}, + [482] = {.lex_state = 25}, + [483] = {.lex_state = 25}, + [484] = {.lex_state = 25}, + [485] = {.lex_state = 25}, + [486] = {.lex_state = 25}, + [487] = {.lex_state = 25}, + [488] = {.lex_state = 25}, + [489] = {.lex_state = 25}, + [490] = {.lex_state = 25}, + [491] = {.lex_state = 25}, + [492] = {.lex_state = 25}, + [493] = {.lex_state = 25}, + [494] = {.lex_state = 25}, + [495] = {.lex_state = 25}, + [496] = {.lex_state = 22}, + [497] = {.lex_state = 22}, + [498] = {.lex_state = 22}, + [499] = {.lex_state = 25}, + [500] = {.lex_state = 25}, + [501] = {.lex_state = 22}, + [502] = {.lex_state = 22}, + [503] = {.lex_state = 22}, + [504] = {.lex_state = 22}, + [505] = {.lex_state = 22}, + [506] = {.lex_state = 22}, + [507] = {.lex_state = 22}, + [508] = {.lex_state = 22}, + [509] = {.lex_state = 22}, + [510] = {.lex_state = 25}, + [511] = {.lex_state = 25}, + [512] = {.lex_state = 25}, + [513] = {.lex_state = 25}, + [514] = {.lex_state = 22}, + [515] = {.lex_state = 22}, + [516] = {.lex_state = 22}, + [517] = {.lex_state = 22}, + [518] = {.lex_state = 22}, + [519] = {.lex_state = 22}, + [520] = {.lex_state = 22}, + [521] = {.lex_state = 22}, + [522] = {.lex_state = 22}, + [523] = {.lex_state = 22}, + [524] = {.lex_state = 25}, + [525] = {.lex_state = 25}, + [526] = {.lex_state = 25}, + [527] = {.lex_state = 25}, + [528] = {.lex_state = 25}, + [529] = {.lex_state = 22}, + [530] = {.lex_state = 25}, + [531] = {.lex_state = 25}, + [532] = {.lex_state = 25}, + [533] = {.lex_state = 25}, + [534] = {.lex_state = 25}, + [535] = {.lex_state = 25}, + [536] = {.lex_state = 25}, + [537] = {.lex_state = 25}, + [538] = {.lex_state = 25}, + [539] = {.lex_state = 25}, + [540] = {.lex_state = 25}, + [541] = {.lex_state = 25}, + [542] = {.lex_state = 25}, + [543] = {.lex_state = 25}, + [544] = {.lex_state = 25}, + [545] = {.lex_state = 25}, + [546] = {.lex_state = 25}, + [547] = {.lex_state = 25}, + [548] = {.lex_state = 25}, + [549] = {.lex_state = 25}, + [550] = {.lex_state = 25}, + [551] = {.lex_state = 25}, + [552] = {.lex_state = 25}, + [553] = {.lex_state = 25}, + [554] = {.lex_state = 25}, + [555] = {.lex_state = 25}, + [556] = {.lex_state = 25}, + [557] = {.lex_state = 25}, + [558] = {.lex_state = 25}, + [559] = {.lex_state = 25}, + [560] = {.lex_state = 25}, + [561] = {.lex_state = 25}, + [562] = {.lex_state = 25}, + [563] = {.lex_state = 25}, + [564] = {.lex_state = 25}, + [565] = {.lex_state = 25}, + [566] = {.lex_state = 25}, + [567] = {.lex_state = 25}, + [568] = {.lex_state = 25}, + [569] = {.lex_state = 25}, + [570] = {.lex_state = 25}, + [571] = {.lex_state = 25}, + [572] = {.lex_state = 25}, + [573] = {.lex_state = 25}, + [574] = {.lex_state = 25}, + [575] = {.lex_state = 25}, + [576] = {.lex_state = 25}, + [577] = {.lex_state = 25}, + [578] = {.lex_state = 25}, + [579] = {.lex_state = 25}, + [580] = {.lex_state = 25}, + [581] = {.lex_state = 25}, + [582] = {.lex_state = 25}, + [583] = {.lex_state = 25}, + [584] = {.lex_state = 25}, + [585] = {.lex_state = 25}, + [586] = {.lex_state = 25}, + [587] = {.lex_state = 25}, + [588] = {.lex_state = 25}, + [589] = {.lex_state = 25}, + [590] = {.lex_state = 25}, + [591] = {.lex_state = 25}, + [592] = {.lex_state = 25}, + [593] = {.lex_state = 25}, + [594] = {.lex_state = 25}, + [595] = {.lex_state = 25}, + [596] = {.lex_state = 25}, + [597] = {.lex_state = 25}, + [598] = {.lex_state = 25}, + [599] = {.lex_state = 25}, + [600] = {.lex_state = 25}, + [601] = {.lex_state = 25}, + [602] = {.lex_state = 25}, + [603] = {.lex_state = 25}, + [604] = {.lex_state = 25}, + [605] = {.lex_state = 25}, + [606] = {.lex_state = 25}, + [607] = {.lex_state = 25}, + [608] = {.lex_state = 25}, + [609] = {.lex_state = 25}, + [610] = {.lex_state = 25}, + [611] = {.lex_state = 25}, + [612] = {.lex_state = 22}, + [613] = {.lex_state = 25}, + [614] = {.lex_state = 25}, + [615] = {.lex_state = 25}, + [616] = {.lex_state = 25}, + [617] = {.lex_state = 25}, + [618] = {.lex_state = 25}, + [619] = {.lex_state = 25}, + [620] = {.lex_state = 25}, + [621] = {.lex_state = 25}, + [622] = {.lex_state = 25}, + [623] = {.lex_state = 25}, + [624] = {.lex_state = 25}, + [625] = {.lex_state = 25}, + [626] = {.lex_state = 25}, + [627] = {.lex_state = 25}, + [628] = {.lex_state = 25}, + [629] = {.lex_state = 25}, + [630] = {.lex_state = 25}, + [631] = {.lex_state = 25}, + [632] = {.lex_state = 25}, + [633] = {.lex_state = 25}, + [634] = {.lex_state = 25}, + [635] = {.lex_state = 25}, + [636] = {.lex_state = 25}, + [637] = {.lex_state = 25}, + [638] = {.lex_state = 25}, + [639] = {.lex_state = 25}, + [640] = {.lex_state = 25}, + [641] = {.lex_state = 25}, + [642] = {.lex_state = 25}, + [643] = {.lex_state = 25}, + [644] = {.lex_state = 25}, + [645] = {.lex_state = 25}, + [646] = {.lex_state = 25}, + [647] = {.lex_state = 25}, + [648] = {.lex_state = 25}, + [649] = {.lex_state = 25}, + [650] = {.lex_state = 25}, + [651] = {.lex_state = 25}, + [652] = {.lex_state = 25}, + [653] = {.lex_state = 25}, + [654] = {.lex_state = 25}, + [655] = {.lex_state = 25}, + [656] = {.lex_state = 25}, + [657] = {.lex_state = 25}, + [658] = {.lex_state = 25}, + [659] = {.lex_state = 25}, + [660] = {.lex_state = 25}, + [661] = {.lex_state = 25}, + [662] = {.lex_state = 25}, + [663] = {.lex_state = 25}, + [664] = {.lex_state = 25}, + [665] = {.lex_state = 25}, + [666] = {.lex_state = 25}, + [667] = {.lex_state = 25}, + [668] = {.lex_state = 25}, + [669] = {.lex_state = 25}, + [670] = {.lex_state = 25}, + [671] = {.lex_state = 25}, + [672] = {.lex_state = 25}, + [673] = {.lex_state = 25}, + [674] = {.lex_state = 22}, + [675] = {.lex_state = 25}, + [676] = {.lex_state = 25}, + [677] = {.lex_state = 25}, + [678] = {.lex_state = 25}, + [679] = {.lex_state = 25}, + [680] = {.lex_state = 25}, + [681] = {.lex_state = 25}, + [682] = {.lex_state = 25}, + [683] = {.lex_state = 25}, + [684] = {.lex_state = 25}, + [685] = {.lex_state = 25}, + [686] = {.lex_state = 25}, + [687] = {.lex_state = 25}, + [688] = {.lex_state = 25}, + [689] = {.lex_state = 25}, + [690] = {.lex_state = 25}, + [691] = {.lex_state = 25}, + [692] = {.lex_state = 25}, + [693] = {.lex_state = 25}, + [694] = {.lex_state = 25}, + [695] = {.lex_state = 25}, + [696] = {.lex_state = 25}, + [697] = {.lex_state = 25}, + [698] = {.lex_state = 25}, + [699] = {.lex_state = 25}, + [700] = {.lex_state = 25}, + [701] = {.lex_state = 25}, + [702] = {.lex_state = 25}, + [703] = {.lex_state = 25}, + [704] = {.lex_state = 25}, + [705] = {.lex_state = 25}, + [706] = {.lex_state = 25}, + [707] = {.lex_state = 25}, + [708] = {.lex_state = 25}, + [709] = {.lex_state = 25}, + [710] = {.lex_state = 25}, + [711] = {.lex_state = 25}, + [712] = {.lex_state = 25}, + [713] = {.lex_state = 25}, + [714] = {.lex_state = 25}, + [715] = {.lex_state = 25}, + [716] = {.lex_state = 25}, + [717] = {.lex_state = 25}, + [718] = {.lex_state = 25}, + [719] = {.lex_state = 25}, + [720] = {.lex_state = 25}, + [721] = {.lex_state = 25}, + [722] = {.lex_state = 25}, + [723] = {.lex_state = 25}, + [724] = {.lex_state = 25}, + [725] = {.lex_state = 25}, + [726] = {.lex_state = 25}, + [727] = {.lex_state = 25}, + [728] = {.lex_state = 25}, + [729] = {.lex_state = 25}, + [730] = {.lex_state = 25}, + [731] = {.lex_state = 25}, + [732] = {.lex_state = 25}, + [733] = {.lex_state = 25}, + [734] = {.lex_state = 25}, + [735] = {.lex_state = 22}, + [736] = {.lex_state = 25}, + [737] = {.lex_state = 25}, + [738] = {.lex_state = 25}, + [739] = {.lex_state = 25}, + [740] = {.lex_state = 25}, + [741] = {.lex_state = 25}, + [742] = {.lex_state = 25}, + [743] = {.lex_state = 25}, + [744] = {.lex_state = 25}, + [745] = {.lex_state = 25}, + [746] = {.lex_state = 25}, + [747] = {.lex_state = 25}, + [748] = {.lex_state = 25}, + [749] = {.lex_state = 25}, + [750] = {.lex_state = 25}, + [751] = {.lex_state = 25}, + [752] = {.lex_state = 25}, + [753] = {.lex_state = 25}, + [754] = {.lex_state = 25}, + [755] = {.lex_state = 25}, + [756] = {.lex_state = 25}, + [757] = {.lex_state = 25}, + [758] = {.lex_state = 25}, + [759] = {.lex_state = 25}, + [760] = {.lex_state = 25}, + [761] = {.lex_state = 25}, + [762] = {.lex_state = 25}, + [763] = {.lex_state = 25}, + [764] = {.lex_state = 25}, + [765] = {.lex_state = 25}, [766] = {.lex_state = 22}, [767] = {.lex_state = 22}, - [768] = {.lex_state = 24}, - [769] = {.lex_state = 22}, - [770] = {.lex_state = 22}, - [771] = {.lex_state = 22}, - [772] = {.lex_state = 22}, - [773] = {.lex_state = 22}, - [774] = {.lex_state = 22}, - [775] = {.lex_state = 22}, - [776] = {.lex_state = 22}, - [777] = {.lex_state = 22}, - [778] = {.lex_state = 22}, - [779] = {.lex_state = 22}, - [780] = {.lex_state = 22}, - [781] = {.lex_state = 22}, - [782] = {.lex_state = 22}, - [783] = {.lex_state = 22}, - [784] = {.lex_state = 22}, - [785] = {.lex_state = 22}, - [786] = {.lex_state = 22}, - [787] = {.lex_state = 22}, - [788] = {.lex_state = 22}, - [789] = {.lex_state = 22}, - [790] = {.lex_state = 24}, - [791] = {.lex_state = 22}, - [792] = {.lex_state = 24}, - [793] = {.lex_state = 22}, - [794] = {.lex_state = 22}, - [795] = {.lex_state = 22}, - [796] = {.lex_state = 22}, - [797] = {.lex_state = 22}, - [798] = {.lex_state = 22}, - [799] = {.lex_state = 22}, - [800] = {.lex_state = 24}, - [801] = {.lex_state = 24}, - [802] = {.lex_state = 22}, - [803] = {.lex_state = 22}, - [804] = {.lex_state = 22}, - [805] = {.lex_state = 24}, - [806] = {.lex_state = 24}, - [807] = {.lex_state = 24}, - [808] = {.lex_state = 22}, - [809] = {.lex_state = 22}, - [810] = {.lex_state = 24}, - [811] = {.lex_state = 24}, - [812] = {.lex_state = 24}, - [813] = {.lex_state = 24}, - [814] = {.lex_state = 22}, - [815] = {.lex_state = 22}, - [816] = {.lex_state = 22}, - [817] = {.lex_state = 22}, - [818] = {.lex_state = 24}, - [819] = {.lex_state = 24}, - [820] = {.lex_state = 24}, - [821] = {.lex_state = 24}, - [822] = {.lex_state = 24}, - [823] = {.lex_state = 22}, - [824] = {.lex_state = 22}, - [825] = {.lex_state = 22}, - [826] = {.lex_state = 24}, - [827] = {.lex_state = 24}, - [828] = {.lex_state = 24}, - [829] = {.lex_state = 22}, - [830] = {.lex_state = 22}, - [831] = {.lex_state = 22}, - [832] = {.lex_state = 22}, - [833] = {.lex_state = 22}, - [834] = {.lex_state = 24}, - [835] = {.lex_state = 22}, - [836] = {.lex_state = 24}, - [837] = {.lex_state = 22}, - [838] = {.lex_state = 22}, - [839] = {.lex_state = 22}, - [840] = {.lex_state = 22}, - [841] = {.lex_state = 22}, - [842] = {.lex_state = 24}, - [843] = {.lex_state = 24}, - [844] = {.lex_state = 22}, - [845] = {.lex_state = 22}, - [846] = {.lex_state = 22}, - [847] = {.lex_state = 22}, - [848] = {.lex_state = 22}, - [849] = {.lex_state = 24}, - [850] = {.lex_state = 22}, - [851] = {.lex_state = 22}, - [852] = {.lex_state = 22}, - [853] = {.lex_state = 22}, - [854] = {.lex_state = 22}, - [855] = {.lex_state = 22}, - [856] = {.lex_state = 22}, - [857] = {.lex_state = 22}, - [858] = {.lex_state = 22}, - [859] = {.lex_state = 22}, - [860] = {.lex_state = 22}, - [861] = {.lex_state = 22}, - [862] = {.lex_state = 22}, - [863] = {.lex_state = 22}, - [864] = {.lex_state = 22}, - [865] = {.lex_state = 22}, - [866] = {.lex_state = 22}, - [867] = {.lex_state = 22}, - [868] = {.lex_state = 22}, - [869] = {.lex_state = 22}, - [870] = {.lex_state = 22}, - [871] = {.lex_state = 22}, - [872] = {.lex_state = 22}, - [873] = {.lex_state = 22}, - [874] = {.lex_state = 24}, - [875] = {.lex_state = 24}, - [876] = {.lex_state = 22}, - [877] = {.lex_state = 22}, - [878] = {.lex_state = 22}, - [879] = {.lex_state = 22}, - [880] = {.lex_state = 22}, - [881] = {.lex_state = 22}, - [882] = {.lex_state = 22}, - [883] = {.lex_state = 22}, - [884] = {.lex_state = 24}, - [885] = {.lex_state = 22}, - [886] = {.lex_state = 22}, - [887] = {.lex_state = 22}, - [888] = {.lex_state = 22}, - [889] = {.lex_state = 22}, - [890] = {.lex_state = 22}, - [891] = {.lex_state = 22}, - [892] = {.lex_state = 22}, - [893] = {.lex_state = 22}, - [894] = {.lex_state = 22}, - [895] = {.lex_state = 22}, - [896] = {.lex_state = 24}, - [897] = {.lex_state = 24}, - [898] = {.lex_state = 24}, - [899] = {.lex_state = 24}, - [900] = {.lex_state = 24}, - [901] = {.lex_state = 24}, - [902] = {.lex_state = 24}, - [903] = {.lex_state = 22}, - [904] = {.lex_state = 24}, - [905] = {.lex_state = 24}, - [906] = {.lex_state = 22}, - [907] = {.lex_state = 22}, - [908] = {.lex_state = 22}, - [909] = {.lex_state = 22}, - [910] = {.lex_state = 22}, - [911] = {.lex_state = 22}, - [912] = {.lex_state = 22}, - [913] = {.lex_state = 22}, - [914] = {.lex_state = 24}, - [915] = {.lex_state = 24}, - [916] = {.lex_state = 22}, - [917] = {.lex_state = 22}, - [918] = {.lex_state = 22}, - [919] = {.lex_state = 22}, - [920] = {.lex_state = 22}, - [921] = {.lex_state = 22}, - [922] = {.lex_state = 22}, - [923] = {.lex_state = 24}, - [924] = {.lex_state = 22}, - [925] = {.lex_state = 22}, - [926] = {.lex_state = 22}, - [927] = {.lex_state = 22}, - [928] = {.lex_state = 22}, - [929] = {.lex_state = 22}, - [930] = {.lex_state = 22}, - [931] = {.lex_state = 22}, - [932] = {.lex_state = 24}, - [933] = {.lex_state = 24}, - [934] = {.lex_state = 24}, - [935] = {.lex_state = 24}, - [936] = {.lex_state = 22}, - [937] = {.lex_state = 22}, - [938] = {.lex_state = 22}, - [939] = {.lex_state = 24}, - [940] = {.lex_state = 22}, - [941] = {.lex_state = 22}, - [942] = {.lex_state = 24}, - [943] = {.lex_state = 24}, - [944] = {.lex_state = 24}, - [945] = {.lex_state = 24}, - [946] = {.lex_state = 24}, - [947] = {.lex_state = 24}, - [948] = {.lex_state = 24}, - [949] = {.lex_state = 24}, - [950] = {.lex_state = 22}, - [951] = {.lex_state = 24}, - [952] = {.lex_state = 24}, - [953] = {.lex_state = 24}, - [954] = {.lex_state = 24}, - [955] = {.lex_state = 24}, - [956] = {.lex_state = 24}, - [957] = {.lex_state = 24}, - [958] = {.lex_state = 24}, - [959] = {.lex_state = 24}, - [960] = {.lex_state = 22}, - [961] = {.lex_state = 24}, - [962] = {.lex_state = 24}, - [963] = {.lex_state = 24}, - [964] = {.lex_state = 24}, - [965] = {.lex_state = 24}, - [966] = {.lex_state = 24}, - [967] = {.lex_state = 24}, - [968] = {.lex_state = 24}, - [969] = {.lex_state = 24}, - [970] = {.lex_state = 24}, - [971] = {.lex_state = 24}, - [972] = {.lex_state = 24}, - [973] = {.lex_state = 24}, - [974] = {.lex_state = 24}, - [975] = {.lex_state = 24}, - [976] = {.lex_state = 24}, - [977] = {.lex_state = 24}, - [978] = {.lex_state = 22}, - [979] = {.lex_state = 22}, - [980] = {.lex_state = 22}, - [981] = {.lex_state = 24}, - [982] = {.lex_state = 24}, - [983] = {.lex_state = 24}, - [984] = {.lex_state = 24}, - [985] = {.lex_state = 24}, - [986] = {.lex_state = 24}, - [987] = {.lex_state = 24}, - [988] = {.lex_state = 24}, - [989] = {.lex_state = 22}, - [990] = {.lex_state = 22}, - [991] = {.lex_state = 22}, - [992] = {.lex_state = 22}, - [993] = {.lex_state = 24}, - [994] = {.lex_state = 24}, - [995] = {.lex_state = 24}, - [996] = {.lex_state = 22}, - [997] = {.lex_state = 24}, - [998] = {.lex_state = 24}, - [999] = {.lex_state = 24}, - [1000] = {.lex_state = 24}, - [1001] = {.lex_state = 24}, - [1002] = {.lex_state = 24}, - [1003] = {.lex_state = 24}, - [1004] = {.lex_state = 24}, - [1005] = {.lex_state = 24}, - [1006] = {.lex_state = 24}, - [1007] = {.lex_state = 24}, - [1008] = {.lex_state = 24}, - [1009] = {.lex_state = 24}, - [1010] = {.lex_state = 20}, - [1011] = {.lex_state = 24}, - [1012] = {.lex_state = 24}, - [1013] = {.lex_state = 24}, - [1014] = {.lex_state = 24}, - [1015] = {.lex_state = 24}, - [1016] = {.lex_state = 24}, - [1017] = {.lex_state = 24}, - [1018] = {.lex_state = 24}, - [1019] = {.lex_state = 20}, - [1020] = {.lex_state = 24}, - [1021] = {.lex_state = 22}, - [1022] = {.lex_state = 22}, - [1023] = {.lex_state = 22}, - [1024] = {.lex_state = 20}, - [1025] = {.lex_state = 20}, - [1026] = {.lex_state = 20}, - [1027] = {.lex_state = 20}, - [1028] = {.lex_state = 21}, - [1029] = {.lex_state = 20}, - [1030] = {.lex_state = 20}, - [1031] = {.lex_state = 22}, - [1032] = {.lex_state = 22}, - [1033] = {.lex_state = 22}, - [1034] = {.lex_state = 22}, - [1035] = {.lex_state = 22}, - [1036] = {.lex_state = 22}, - [1037] = {.lex_state = 22}, - [1038] = {.lex_state = 20}, - [1039] = {.lex_state = 22}, - [1040] = {.lex_state = 22}, - [1041] = {.lex_state = 22}, - [1042] = {.lex_state = 22}, - [1043] = {.lex_state = 22}, - [1044] = {.lex_state = 22}, - [1045] = {.lex_state = 22}, - [1046] = {.lex_state = 22}, - [1047] = {.lex_state = 22}, - [1048] = {.lex_state = 20}, - [1049] = {.lex_state = 22}, - [1050] = {.lex_state = 22}, - [1051] = {.lex_state = 22}, - [1052] = {.lex_state = 20}, - [1053] = {.lex_state = 20}, - [1054] = {.lex_state = 20}, - [1055] = {.lex_state = 20}, - [1056] = {.lex_state = 20}, - [1057] = {.lex_state = 20}, - [1058] = {.lex_state = 20}, - [1059] = {.lex_state = 20}, - [1060] = {.lex_state = 20}, - [1061] = {.lex_state = 20}, - [1062] = {.lex_state = 20}, - [1063] = {.lex_state = 20}, - [1064] = {.lex_state = 24}, - [1065] = {.lex_state = 24}, - [1066] = {.lex_state = 24}, - [1067] = {.lex_state = 24}, - [1068] = {.lex_state = 24}, - [1069] = {.lex_state = 24}, - [1070] = {.lex_state = 24}, - [1071] = {.lex_state = 20}, - [1072] = {.lex_state = 24}, - [1073] = {.lex_state = 24}, - [1074] = {.lex_state = 24}, - [1075] = {.lex_state = 24}, - [1076] = {.lex_state = 20}, - [1077] = {.lex_state = 24}, - [1078] = {.lex_state = 24}, - [1079] = {.lex_state = 24}, - [1080] = {.lex_state = 24}, - [1081] = {.lex_state = 24}, - [1082] = {.lex_state = 24}, - [1083] = {.lex_state = 24}, - [1084] = {.lex_state = 24}, - [1085] = {.lex_state = 24}, - [1086] = {.lex_state = 24}, - [1087] = {.lex_state = 24}, - [1088] = {.lex_state = 24}, - [1089] = {.lex_state = 24}, - [1090] = {.lex_state = 24}, - [1091] = {.lex_state = 24}, - [1092] = {.lex_state = 24}, - [1093] = {.lex_state = 24}, - [1094] = {.lex_state = 24}, - [1095] = {.lex_state = 24}, - [1096] = {.lex_state = 24}, - [1097] = {.lex_state = 24}, - [1098] = {.lex_state = 24}, - [1099] = {.lex_state = 24}, - [1100] = {.lex_state = 24}, - [1101] = {.lex_state = 24}, - [1102] = {.lex_state = 24}, - [1103] = {.lex_state = 24}, - [1104] = {.lex_state = 24}, - [1105] = {.lex_state = 24}, - [1106] = {.lex_state = 24}, - [1107] = {.lex_state = 24}, - [1108] = {.lex_state = 24}, - [1109] = {.lex_state = 24}, - [1110] = {.lex_state = 24}, - [1111] = {.lex_state = 24}, - [1112] = {.lex_state = 24}, - [1113] = {.lex_state = 24}, - [1114] = {.lex_state = 24}, - [1115] = {.lex_state = 24}, - [1116] = {.lex_state = 24}, - [1117] = {.lex_state = 24}, - [1118] = {.lex_state = 24}, - [1119] = {.lex_state = 24}, - [1120] = {.lex_state = 24}, - [1121] = {.lex_state = 22}, - [1122] = {.lex_state = 24}, - [1123] = {.lex_state = 24}, - [1124] = {.lex_state = 24}, - [1125] = {.lex_state = 24}, - [1126] = {.lex_state = 24}, - [1127] = {.lex_state = 24}, - [1128] = {.lex_state = 24}, - [1129] = {.lex_state = 24}, - [1130] = {.lex_state = 24}, - [1131] = {.lex_state = 24}, - [1132] = {.lex_state = 24}, - [1133] = {.lex_state = 24}, - [1134] = {.lex_state = 24}, - [1135] = {.lex_state = 24}, - [1136] = {.lex_state = 24}, - [1137] = {.lex_state = 24}, - [1138] = {.lex_state = 24}, - [1139] = {.lex_state = 24}, - [1140] = {.lex_state = 24}, - [1141] = {.lex_state = 24}, - [1142] = {.lex_state = 24}, - [1143] = {.lex_state = 24}, - [1144] = {.lex_state = 24}, - [1145] = {.lex_state = 24}, - [1146] = {.lex_state = 24}, - [1147] = {.lex_state = 24}, - [1148] = {.lex_state = 24}, - [1149] = {.lex_state = 24}, - [1150] = {.lex_state = 24}, - [1151] = {.lex_state = 24}, - [1152] = {.lex_state = 24}, - [1153] = {.lex_state = 24}, - [1154] = {.lex_state = 24}, - [1155] = {.lex_state = 24}, - [1156] = {.lex_state = 24}, - [1157] = {.lex_state = 24}, - [1158] = {.lex_state = 24}, - [1159] = {.lex_state = 24}, - [1160] = {.lex_state = 24}, - [1161] = {.lex_state = 24}, - [1162] = {.lex_state = 24}, - [1163] = {.lex_state = 24}, - [1164] = {.lex_state = 24}, - [1165] = {.lex_state = 24}, - [1166] = {.lex_state = 24}, - [1167] = {.lex_state = 24}, - [1168] = {.lex_state = 24}, - [1169] = {.lex_state = 24}, - [1170] = {.lex_state = 24}, - [1171] = {.lex_state = 24}, - [1172] = {.lex_state = 24}, - [1173] = {.lex_state = 24}, - [1174] = {.lex_state = 24}, - [1175] = {.lex_state = 24}, - [1176] = {.lex_state = 24}, - [1177] = {.lex_state = 24}, - [1178] = {.lex_state = 24}, - [1179] = {.lex_state = 24}, - [1180] = {.lex_state = 24}, - [1181] = {.lex_state = 24}, - [1182] = {.lex_state = 24}, - [1183] = {.lex_state = 24}, - [1184] = {.lex_state = 24}, - [1185] = {.lex_state = 24}, - [1186] = {.lex_state = 24}, - [1187] = {.lex_state = 24}, - [1188] = {.lex_state = 24}, - [1189] = {.lex_state = 24}, - [1190] = {.lex_state = 24}, - [1191] = {.lex_state = 24}, - [1192] = {.lex_state = 24}, - [1193] = {.lex_state = 24}, - [1194] = {.lex_state = 24}, - [1195] = {.lex_state = 24}, - [1196] = {.lex_state = 24}, - [1197] = {.lex_state = 24}, - [1198] = {.lex_state = 24}, - [1199] = {.lex_state = 24}, - [1200] = {.lex_state = 24}, - [1201] = {.lex_state = 24}, - [1202] = {.lex_state = 24}, - [1203] = {.lex_state = 24}, - [1204] = {.lex_state = 24}, - [1205] = {.lex_state = 24}, - [1206] = {.lex_state = 24}, - [1207] = {.lex_state = 24}, - [1208] = {.lex_state = 24}, - [1209] = {.lex_state = 24}, - [1210] = {.lex_state = 24}, - [1211] = {.lex_state = 24}, - [1212] = {.lex_state = 24}, - [1213] = {.lex_state = 24}, - [1214] = {.lex_state = 24}, - [1215] = {.lex_state = 24}, - [1216] = {.lex_state = 24}, - [1217] = {.lex_state = 24}, - [1218] = {.lex_state = 24}, - [1219] = {.lex_state = 24}, - [1220] = {.lex_state = 24}, - [1221] = {.lex_state = 24}, - [1222] = {.lex_state = 24}, - [1223] = {.lex_state = 24}, - [1224] = {.lex_state = 24}, - [1225] = {.lex_state = 24}, - [1226] = {.lex_state = 24}, - [1227] = {.lex_state = 24}, - [1228] = {.lex_state = 24}, - [1229] = {.lex_state = 24}, - [1230] = {.lex_state = 24}, - [1231] = {.lex_state = 24}, - [1232] = {.lex_state = 24}, - [1233] = {.lex_state = 24}, - [1234] = {.lex_state = 24}, - [1235] = {.lex_state = 24}, - [1236] = {.lex_state = 24}, - [1237] = {.lex_state = 24}, - [1238] = {.lex_state = 24}, - [1239] = {.lex_state = 24}, - [1240] = {.lex_state = 24}, - [1241] = {.lex_state = 24}, - [1242] = {.lex_state = 24}, - [1243] = {.lex_state = 24}, - [1244] = {.lex_state = 24}, - [1245] = {.lex_state = 24}, - [1246] = {.lex_state = 24}, - [1247] = {.lex_state = 24}, - [1248] = {.lex_state = 24}, - [1249] = {.lex_state = 24}, - [1250] = {.lex_state = 24}, - [1251] = {.lex_state = 24}, - [1252] = {.lex_state = 24}, - [1253] = {.lex_state = 24}, - [1254] = {.lex_state = 24}, - [1255] = {.lex_state = 24}, - [1256] = {.lex_state = 24}, - [1257] = {.lex_state = 24}, - [1258] = {.lex_state = 24}, - [1259] = {.lex_state = 24}, - [1260] = {.lex_state = 24}, - [1261] = {.lex_state = 24}, - [1262] = {.lex_state = 24}, - [1263] = {.lex_state = 24}, - [1264] = {.lex_state = 24}, - [1265] = {.lex_state = 24}, - [1266] = {.lex_state = 24}, - [1267] = {.lex_state = 24}, - [1268] = {.lex_state = 24}, - [1269] = {.lex_state = 24}, - [1270] = {.lex_state = 24}, - [1271] = {.lex_state = 24}, - [1272] = {.lex_state = 24}, - [1273] = {.lex_state = 24}, - [1274] = {.lex_state = 24}, - [1275] = {.lex_state = 24}, - [1276] = {.lex_state = 24}, - [1277] = {.lex_state = 24}, - [1278] = {.lex_state = 24}, - [1279] = {.lex_state = 24}, - [1280] = {.lex_state = 24}, - [1281] = {.lex_state = 24}, - [1282] = {.lex_state = 24}, - [1283] = {.lex_state = 24}, - [1284] = {.lex_state = 24}, - [1285] = {.lex_state = 24}, - [1286] = {.lex_state = 24}, - [1287] = {.lex_state = 24}, - [1288] = {.lex_state = 24}, - [1289] = {.lex_state = 24}, - [1290] = {.lex_state = 24}, - [1291] = {.lex_state = 24}, - [1292] = {.lex_state = 24}, - [1293] = {.lex_state = 24}, - [1294] = {.lex_state = 24}, - [1295] = {.lex_state = 24}, - [1296] = {.lex_state = 24}, - [1297] = {.lex_state = 24}, - [1298] = {.lex_state = 24}, - [1299] = {.lex_state = 24}, - [1300] = {.lex_state = 24}, - [1301] = {.lex_state = 24}, - [1302] = {.lex_state = 24}, - [1303] = {.lex_state = 24}, - [1304] = {.lex_state = 24}, - [1305] = {.lex_state = 24}, - [1306] = {.lex_state = 24}, - [1307] = {.lex_state = 24}, - [1308] = {.lex_state = 24}, - [1309] = {.lex_state = 24}, - [1310] = {.lex_state = 24}, - [1311] = {.lex_state = 24}, - [1312] = {.lex_state = 24}, - [1313] = {.lex_state = 24}, - [1314] = {.lex_state = 24}, - [1315] = {.lex_state = 24}, - [1316] = {.lex_state = 24}, - [1317] = {.lex_state = 24}, - [1318] = {.lex_state = 24}, - [1319] = {.lex_state = 24}, - [1320] = {.lex_state = 24}, - [1321] = {.lex_state = 24}, - [1322] = {.lex_state = 24}, - [1323] = {.lex_state = 24}, - [1324] = {.lex_state = 24}, - [1325] = {.lex_state = 24}, - [1326] = {.lex_state = 24}, - [1327] = {.lex_state = 24}, - [1328] = {.lex_state = 24}, - [1329] = {.lex_state = 24}, - [1330] = {.lex_state = 24}, - [1331] = {.lex_state = 24}, - [1332] = {.lex_state = 24}, - [1333] = {.lex_state = 24}, - [1334] = {.lex_state = 24}, - [1335] = {.lex_state = 24}, - [1336] = {.lex_state = 24}, - [1337] = {.lex_state = 24}, - [1338] = {.lex_state = 24}, - [1339] = {.lex_state = 24}, - [1340] = {.lex_state = 24}, - [1341] = {.lex_state = 24}, - [1342] = {.lex_state = 24}, - [1343] = {.lex_state = 24}, - [1344] = {.lex_state = 24}, - [1345] = {.lex_state = 24}, - [1346] = {.lex_state = 24}, - [1347] = {.lex_state = 24}, - [1348] = {.lex_state = 24}, - [1349] = {.lex_state = 24}, - [1350] = {.lex_state = 24}, - [1351] = {.lex_state = 24}, - [1352] = {.lex_state = 24}, - [1353] = {.lex_state = 24}, - [1354] = {.lex_state = 24}, - [1355] = {.lex_state = 24}, - [1356] = {.lex_state = 24}, - [1357] = {.lex_state = 24}, - [1358] = {.lex_state = 24}, - [1359] = {.lex_state = 24}, - [1360] = {.lex_state = 24}, - [1361] = {.lex_state = 24}, - [1362] = {.lex_state = 24}, - [1363] = {.lex_state = 24}, - [1364] = {.lex_state = 24}, - [1365] = {.lex_state = 24}, - [1366] = {.lex_state = 24}, - [1367] = {.lex_state = 24}, - [1368] = {.lex_state = 24}, - [1369] = {.lex_state = 24}, - [1370] = {.lex_state = 24}, - [1371] = {.lex_state = 24}, - [1372] = {.lex_state = 24}, - [1373] = {.lex_state = 24}, - [1374] = {.lex_state = 24}, - [1375] = {.lex_state = 24}, - [1376] = {.lex_state = 24}, - [1377] = {.lex_state = 24}, - [1378] = {.lex_state = 24}, - [1379] = {.lex_state = 24}, - [1380] = {.lex_state = 24}, - [1381] = {.lex_state = 24}, - [1382] = {.lex_state = 24}, - [1383] = {.lex_state = 24}, - [1384] = {.lex_state = 24}, - [1385] = {.lex_state = 24}, - [1386] = {.lex_state = 24}, - [1387] = {.lex_state = 24}, - [1388] = {.lex_state = 24}, - [1389] = {.lex_state = 24}, - [1390] = {.lex_state = 24}, - [1391] = {.lex_state = 24}, - [1392] = {.lex_state = 24}, - [1393] = {.lex_state = 24}, - [1394] = {.lex_state = 24}, - [1395] = {.lex_state = 24}, - [1396] = {.lex_state = 24}, - [1397] = {.lex_state = 24}, - [1398] = {.lex_state = 24}, - [1399] = {.lex_state = 24}, - [1400] = {.lex_state = 24}, - [1401] = {.lex_state = 24}, - [1402] = {.lex_state = 24}, - [1403] = {.lex_state = 24}, - [1404] = {.lex_state = 24}, - [1405] = {.lex_state = 24}, - [1406] = {.lex_state = 24}, - [1407] = {.lex_state = 24}, - [1408] = {.lex_state = 24}, - [1409] = {.lex_state = 24}, - [1410] = {.lex_state = 24}, - [1411] = {.lex_state = 24}, - [1412] = {.lex_state = 24}, - [1413] = {.lex_state = 24}, - [1414] = {.lex_state = 24}, - [1415] = {.lex_state = 24}, - [1416] = {.lex_state = 24}, - [1417] = {.lex_state = 24}, - [1418] = {.lex_state = 24}, - [1419] = {.lex_state = 24}, - [1420] = {.lex_state = 24}, - [1421] = {.lex_state = 24}, - [1422] = {.lex_state = 24}, - [1423] = {.lex_state = 24}, - [1424] = {.lex_state = 24}, - [1425] = {.lex_state = 24}, - [1426] = {.lex_state = 24}, - [1427] = {.lex_state = 24}, - [1428] = {.lex_state = 24}, - [1429] = {.lex_state = 24}, - [1430] = {.lex_state = 24}, - [1431] = {.lex_state = 24}, - [1432] = {.lex_state = 24}, - [1433] = {.lex_state = 24}, - [1434] = {.lex_state = 24}, - [1435] = {.lex_state = 24}, - [1436] = {.lex_state = 24}, - [1437] = {.lex_state = 24}, - [1438] = {.lex_state = 24}, - [1439] = {.lex_state = 24}, - [1440] = {.lex_state = 24}, - [1441] = {.lex_state = 24}, - [1442] = {.lex_state = 24}, - [1443] = {.lex_state = 24}, - [1444] = {.lex_state = 24}, - [1445] = {.lex_state = 24}, - [1446] = {.lex_state = 24}, - [1447] = {.lex_state = 24}, - [1448] = {.lex_state = 24}, - [1449] = {.lex_state = 24}, - [1450] = {.lex_state = 24}, - [1451] = {.lex_state = 24}, - [1452] = {.lex_state = 24}, - [1453] = {.lex_state = 24}, - [1454] = {.lex_state = 24}, - [1455] = {.lex_state = 24}, - [1456] = {.lex_state = 24}, - [1457] = {.lex_state = 22}, - [1458] = {.lex_state = 24}, - [1459] = {.lex_state = 24}, - [1460] = {.lex_state = 24}, - [1461] = {.lex_state = 24}, - [1462] = {.lex_state = 24}, - [1463] = {.lex_state = 24}, - [1464] = {.lex_state = 24}, - [1465] = {.lex_state = 24}, - [1466] = {.lex_state = 24}, - [1467] = {.lex_state = 24}, - [1468] = {.lex_state = 24}, - [1469] = {.lex_state = 24}, - [1470] = {.lex_state = 24}, - [1471] = {.lex_state = 24}, - [1472] = {.lex_state = 24}, - [1473] = {.lex_state = 24}, - [1474] = {.lex_state = 24}, - [1475] = {.lex_state = 24}, - [1476] = {.lex_state = 24}, - [1477] = {.lex_state = 24}, - [1478] = {.lex_state = 24}, - [1479] = {.lex_state = 24}, - [1480] = {.lex_state = 24}, - [1481] = {.lex_state = 24}, - [1482] = {.lex_state = 24}, - [1483] = {.lex_state = 24}, - [1484] = {.lex_state = 24}, - [1485] = {.lex_state = 24}, - [1486] = {.lex_state = 24}, - [1487] = {.lex_state = 24}, - [1488] = {.lex_state = 24}, - [1489] = {.lex_state = 24}, - [1490] = {.lex_state = 24}, - [1491] = {.lex_state = 24}, - [1492] = {.lex_state = 24}, - [1493] = {.lex_state = 24}, - [1494] = {.lex_state = 24}, - [1495] = {.lex_state = 24}, - [1496] = {.lex_state = 24}, - [1497] = {.lex_state = 24}, - [1498] = {.lex_state = 24}, - [1499] = {.lex_state = 24}, - [1500] = {.lex_state = 24}, - [1501] = {.lex_state = 24}, - [1502] = {.lex_state = 24}, - [1503] = {.lex_state = 24}, - [1504] = {.lex_state = 24}, - [1505] = {.lex_state = 24}, - [1506] = {.lex_state = 24}, - [1507] = {.lex_state = 24}, - [1508] = {.lex_state = 24}, - [1509] = {.lex_state = 24}, - [1510] = {.lex_state = 24}, - [1511] = {.lex_state = 24}, - [1512] = {.lex_state = 24}, - [1513] = {.lex_state = 24}, - [1514] = {.lex_state = 24}, - [1515] = {.lex_state = 24}, - [1516] = {.lex_state = 24}, - [1517] = {.lex_state = 24}, - [1518] = {.lex_state = 24}, - [1519] = {.lex_state = 24}, - [1520] = {.lex_state = 24}, - [1521] = {.lex_state = 24}, - [1522] = {.lex_state = 24}, - [1523] = {.lex_state = 24}, - [1524] = {.lex_state = 24}, - [1525] = {.lex_state = 24}, - [1526] = {.lex_state = 24}, - [1527] = {.lex_state = 24}, - [1528] = {.lex_state = 24}, - [1529] = {.lex_state = 23}, - [1530] = {.lex_state = 23}, - [1531] = {.lex_state = 24}, - [1532] = {.lex_state = 24}, - [1533] = {.lex_state = 24}, - [1534] = {.lex_state = 24}, - [1535] = {.lex_state = 24}, - [1536] = {.lex_state = 24}, - [1537] = {.lex_state = 2}, - [1538] = {.lex_state = 24}, - [1539] = {.lex_state = 24}, - [1540] = {.lex_state = 24}, - [1541] = {.lex_state = 24}, - [1542] = {.lex_state = 24}, - [1543] = {.lex_state = 24}, - [1544] = {.lex_state = 24}, - [1545] = {.lex_state = 24}, - [1546] = {.lex_state = 24}, - [1547] = {.lex_state = 24}, - [1548] = {.lex_state = 24}, - [1549] = {.lex_state = 24}, - [1550] = {.lex_state = 24}, - [1551] = {.lex_state = 24}, - [1552] = {.lex_state = 24}, - [1553] = {.lex_state = 24}, - [1554] = {.lex_state = 24}, - [1555] = {.lex_state = 24}, - [1556] = {.lex_state = 24}, - [1557] = {.lex_state = 24}, - [1558] = {.lex_state = 24}, - [1559] = {.lex_state = 24}, - [1560] = {.lex_state = 24}, - [1561] = {.lex_state = 24}, - [1562] = {.lex_state = 24}, - [1563] = {.lex_state = 24}, - [1564] = {.lex_state = 24}, - [1565] = {.lex_state = 24}, - [1566] = {.lex_state = 24}, - [1567] = {.lex_state = 24}, - [1568] = {.lex_state = 24}, - [1569] = {.lex_state = 24}, - [1570] = {.lex_state = 24}, - [1571] = {.lex_state = 24}, - [1572] = {.lex_state = 24}, - [1573] = {.lex_state = 24}, - [1574] = {.lex_state = 24}, - [1575] = {.lex_state = 24}, - [1576] = {.lex_state = 24}, - [1577] = {.lex_state = 24}, - [1578] = {.lex_state = 24}, - [1579] = {.lex_state = 24}, - [1580] = {.lex_state = 24}, - [1581] = {.lex_state = 24}, - [1582] = {.lex_state = 24}, - [1583] = {.lex_state = 24}, - [1584] = {.lex_state = 24}, - [1585] = {.lex_state = 24}, - [1586] = {.lex_state = 24}, - [1587] = {.lex_state = 24}, - [1588] = {.lex_state = 24}, - [1589] = {.lex_state = 24}, - [1590] = {.lex_state = 24}, - [1591] = {.lex_state = 24}, - [1592] = {.lex_state = 24}, - [1593] = {.lex_state = 24}, - [1594] = {.lex_state = 24}, - [1595] = {.lex_state = 24}, - [1596] = {.lex_state = 24}, - [1597] = {.lex_state = 24}, - [1598] = {.lex_state = 24}, - [1599] = {.lex_state = 24}, - [1600] = {.lex_state = 24}, - [1601] = {.lex_state = 24}, - [1602] = {.lex_state = 24}, - [1603] = {.lex_state = 24}, - [1604] = {.lex_state = 24}, - [1605] = {.lex_state = 24}, - [1606] = {.lex_state = 24}, - [1607] = {.lex_state = 24}, - [1608] = {.lex_state = 24}, - [1609] = {.lex_state = 24}, - [1610] = {.lex_state = 24}, - [1611] = {.lex_state = 24}, - [1612] = {.lex_state = 24}, - [1613] = {.lex_state = 24}, - [1614] = {.lex_state = 24}, - [1615] = {.lex_state = 24}, - [1616] = {.lex_state = 24}, - [1617] = {.lex_state = 24}, - [1618] = {.lex_state = 24}, - [1619] = {.lex_state = 24}, - [1620] = {.lex_state = 24}, - [1621] = {.lex_state = 24}, - [1622] = {.lex_state = 24}, - [1623] = {.lex_state = 24}, - [1624] = {.lex_state = 24}, - [1625] = {.lex_state = 24}, - [1626] = {.lex_state = 24}, - [1627] = {.lex_state = 24}, - [1628] = {.lex_state = 24}, - [1629] = {.lex_state = 24}, - [1630] = {.lex_state = 24}, - [1631] = {.lex_state = 24}, - [1632] = {.lex_state = 24}, - [1633] = {.lex_state = 24}, - [1634] = {.lex_state = 24}, - [1635] = {.lex_state = 24}, - [1636] = {.lex_state = 24}, - [1637] = {.lex_state = 24}, - [1638] = {.lex_state = 24}, - [1639] = {.lex_state = 24}, - [1640] = {.lex_state = 24}, - [1641] = {.lex_state = 24}, - [1642] = {.lex_state = 24}, - [1643] = {.lex_state = 24}, - [1644] = {.lex_state = 24}, - [1645] = {.lex_state = 24}, - [1646] = {.lex_state = 24}, - [1647] = {.lex_state = 24}, - [1648] = {.lex_state = 24}, - [1649] = {.lex_state = 24}, - [1650] = {.lex_state = 24}, - [1651] = {.lex_state = 24}, - [1652] = {.lex_state = 24}, - [1653] = {.lex_state = 24}, - [1654] = {.lex_state = 24}, - [1655] = {.lex_state = 24}, - [1656] = {.lex_state = 24}, - [1657] = {.lex_state = 24}, - [1658] = {.lex_state = 24}, - [1659] = {.lex_state = 24}, - [1660] = {.lex_state = 24}, - [1661] = {.lex_state = 24}, - [1662] = {.lex_state = 24}, - [1663] = {.lex_state = 24}, - [1664] = {.lex_state = 24}, - [1665] = {.lex_state = 24}, - [1666] = {.lex_state = 24}, - [1667] = {.lex_state = 24}, - [1668] = {.lex_state = 24}, - [1669] = {.lex_state = 24}, - [1670] = {.lex_state = 24}, - [1671] = {.lex_state = 24}, - [1672] = {.lex_state = 24}, - [1673] = {.lex_state = 24}, - [1674] = {.lex_state = 24}, - [1675] = {.lex_state = 24}, - [1676] = {.lex_state = 24}, - [1677] = {.lex_state = 24}, - [1678] = {.lex_state = 24}, - [1679] = {.lex_state = 24}, - [1680] = {.lex_state = 24}, - [1681] = {.lex_state = 24}, - [1682] = {.lex_state = 24}, - [1683] = {.lex_state = 24}, - [1684] = {.lex_state = 24}, - [1685] = {.lex_state = 24}, - [1686] = {.lex_state = 24}, - [1687] = {.lex_state = 24}, - [1688] = {.lex_state = 24}, - [1689] = {.lex_state = 24}, - [1690] = {.lex_state = 24}, - [1691] = {.lex_state = 24}, - [1692] = {.lex_state = 24}, - [1693] = {.lex_state = 24}, - [1694] = {.lex_state = 24}, - [1695] = {.lex_state = 24}, - [1696] = {.lex_state = 24}, - [1697] = {.lex_state = 24}, - [1698] = {.lex_state = 24}, - [1699] = {.lex_state = 24}, - [1700] = {.lex_state = 24}, - [1701] = {.lex_state = 24}, - [1702] = {.lex_state = 24}, - [1703] = {.lex_state = 24}, - [1704] = {.lex_state = 24}, - [1705] = {.lex_state = 24}, - [1706] = {.lex_state = 24}, - [1707] = {.lex_state = 24}, - [1708] = {.lex_state = 24}, - [1709] = {.lex_state = 24}, - [1710] = {.lex_state = 24}, - [1711] = {.lex_state = 24}, - [1712] = {.lex_state = 24}, - [1713] = {.lex_state = 24}, - [1714] = {.lex_state = 24}, - [1715] = {.lex_state = 24}, - [1716] = {.lex_state = 24}, - [1717] = {.lex_state = 24}, - [1718] = {.lex_state = 24}, - [1719] = {.lex_state = 24}, - [1720] = {.lex_state = 24}, - [1721] = {.lex_state = 24}, - [1722] = {.lex_state = 24}, - [1723] = {.lex_state = 24}, - [1724] = {.lex_state = 24}, - [1725] = {.lex_state = 24}, - [1726] = {.lex_state = 24}, - [1727] = {.lex_state = 24}, - [1728] = {.lex_state = 24}, - [1729] = {.lex_state = 24}, - [1730] = {.lex_state = 24}, - [1731] = {.lex_state = 24}, - [1732] = {.lex_state = 24}, - [1733] = {.lex_state = 24}, - [1734] = {.lex_state = 24}, - [1735] = {.lex_state = 24}, - [1736] = {.lex_state = 24}, - [1737] = {.lex_state = 24}, - [1738] = {.lex_state = 24}, - [1739] = {.lex_state = 24}, - [1740] = {.lex_state = 24}, - [1741] = {.lex_state = 24}, - [1742] = {.lex_state = 24}, - [1743] = {.lex_state = 23}, - [1744] = {.lex_state = 24}, - [1745] = {.lex_state = 24}, - [1746] = {.lex_state = 24}, - [1747] = {.lex_state = 24}, - [1748] = {.lex_state = 24}, - [1749] = {.lex_state = 24}, - [1750] = {.lex_state = 23}, - [1751] = {.lex_state = 24}, - [1752] = {.lex_state = 24}, - [1753] = {.lex_state = 24}, - [1754] = {.lex_state = 24}, - [1755] = {.lex_state = 24}, - [1756] = {.lex_state = 24}, - [1757] = {.lex_state = 24}, - [1758] = {.lex_state = 24}, - [1759] = {.lex_state = 24}, - [1760] = {.lex_state = 24}, - [1761] = {.lex_state = 24}, - [1762] = {.lex_state = 24}, - [1763] = {.lex_state = 24}, - [1764] = {.lex_state = 24}, - [1765] = {.lex_state = 24}, - [1766] = {.lex_state = 23}, - [1767] = {.lex_state = 23}, - [1768] = {.lex_state = 24}, - [1769] = {.lex_state = 24}, - [1770] = {.lex_state = 24}, - [1771] = {.lex_state = 23}, - [1772] = {.lex_state = 23}, - [1773] = {.lex_state = 23}, - [1774] = {.lex_state = 23}, - [1775] = {.lex_state = 23}, - [1776] = {.lex_state = 23}, - [1777] = {.lex_state = 24}, - [1778] = {.lex_state = 24}, - [1779] = {.lex_state = 23}, - [1780] = {.lex_state = 23}, - [1781] = {.lex_state = 23}, - [1782] = {.lex_state = 23}, - [1783] = {.lex_state = 23}, - [1784] = {.lex_state = 23}, - [1785] = {.lex_state = 4}, - [1786] = {.lex_state = 4}, - [1787] = {.lex_state = 4}, - [1788] = {.lex_state = 4}, - [1789] = {.lex_state = 4}, - [1790] = {.lex_state = 4}, - [1791] = {.lex_state = 24}, - [1792] = {.lex_state = 24}, - [1793] = {.lex_state = 24}, - [1794] = {.lex_state = 24}, - [1795] = {.lex_state = 24}, - [1796] = {.lex_state = 24}, - [1797] = {.lex_state = 24}, - [1798] = {.lex_state = 24}, - [1799] = {.lex_state = 24}, - [1800] = {.lex_state = 24}, - [1801] = {.lex_state = 24}, - [1802] = {.lex_state = 24}, - [1803] = {.lex_state = 24}, - [1804] = {.lex_state = 24}, - [1805] = {.lex_state = 24}, - [1806] = {.lex_state = 24}, - [1807] = {.lex_state = 24}, - [1808] = {.lex_state = 24}, - [1809] = {.lex_state = 24}, - [1810] = {.lex_state = 24}, - [1811] = {.lex_state = 24}, - [1812] = {.lex_state = 24}, - [1813] = {.lex_state = 24}, - [1814] = {.lex_state = 24}, - [1815] = {.lex_state = 24}, - [1816] = {.lex_state = 24}, - [1817] = {.lex_state = 24}, - [1818] = {.lex_state = 24}, - [1819] = {.lex_state = 24}, - [1820] = {.lex_state = 24}, - [1821] = {.lex_state = 24}, - [1822] = {.lex_state = 24}, - [1823] = {.lex_state = 24}, - [1824] = {.lex_state = 24}, - [1825] = {.lex_state = 24}, - [1826] = {.lex_state = 24}, - [1827] = {.lex_state = 24}, - [1828] = {.lex_state = 24}, - [1829] = {.lex_state = 24}, - [1830] = {.lex_state = 24}, - [1831] = {.lex_state = 24}, - [1832] = {.lex_state = 24}, - [1833] = {.lex_state = 24}, - [1834] = {.lex_state = 24}, - [1835] = {.lex_state = 24}, - [1836] = {.lex_state = 24}, - [1837] = {.lex_state = 24}, - [1838] = {.lex_state = 24}, - [1839] = {.lex_state = 24}, - [1840] = {.lex_state = 24}, - [1841] = {.lex_state = 24}, - [1842] = {.lex_state = 24}, - [1843] = {.lex_state = 24}, - [1844] = {.lex_state = 24}, - [1845] = {.lex_state = 24}, - [1846] = {.lex_state = 24}, - [1847] = {.lex_state = 24}, - [1848] = {.lex_state = 24}, - [1849] = {.lex_state = 24}, - [1850] = {.lex_state = 24}, - [1851] = {.lex_state = 24}, - [1852] = {.lex_state = 24}, - [1853] = {.lex_state = 24}, - [1854] = {.lex_state = 24}, - [1855] = {.lex_state = 24}, - [1856] = {.lex_state = 24}, - [1857] = {.lex_state = 24}, - [1858] = {.lex_state = 24}, - [1859] = {.lex_state = 24}, - [1860] = {.lex_state = 24}, - [1861] = {.lex_state = 24}, - [1862] = {.lex_state = 24}, - [1863] = {.lex_state = 24}, - [1864] = {.lex_state = 24}, - [1865] = {.lex_state = 24}, - [1866] = {.lex_state = 24}, - [1867] = {.lex_state = 24}, - [1868] = {.lex_state = 24}, - [1869] = {.lex_state = 24}, - [1870] = {.lex_state = 24}, - [1871] = {.lex_state = 24}, - [1872] = {.lex_state = 24}, - [1873] = {.lex_state = 24}, - [1874] = {.lex_state = 24}, - [1875] = {.lex_state = 24}, - [1876] = {.lex_state = 24}, - [1877] = {.lex_state = 24}, - [1878] = {.lex_state = 24}, - [1879] = {.lex_state = 24}, - [1880] = {.lex_state = 24}, - [1881] = {.lex_state = 24}, - [1882] = {.lex_state = 24}, - [1883] = {.lex_state = 24}, - [1884] = {.lex_state = 24}, - [1885] = {.lex_state = 24}, - [1886] = {.lex_state = 24}, - [1887] = {.lex_state = 24}, - [1888] = {.lex_state = 24}, - [1889] = {.lex_state = 24}, - [1890] = {.lex_state = 24}, - [1891] = {.lex_state = 24}, - [1892] = {.lex_state = 24}, - [1893] = {.lex_state = 24}, - [1894] = {.lex_state = 24}, - [1895] = {.lex_state = 24}, - [1896] = {.lex_state = 24}, - [1897] = {.lex_state = 24}, - [1898] = {.lex_state = 24}, - [1899] = {.lex_state = 24}, - [1900] = {.lex_state = 24}, - [1901] = {.lex_state = 24}, - [1902] = {.lex_state = 24}, - [1903] = {.lex_state = 24}, - [1904] = {.lex_state = 24}, - [1905] = {.lex_state = 24}, - [1906] = {.lex_state = 24}, - [1907] = {.lex_state = 24}, - [1908] = {.lex_state = 24}, - [1909] = {.lex_state = 24}, - [1910] = {.lex_state = 24}, - [1911] = {.lex_state = 24}, - [1912] = {.lex_state = 24}, - [1913] = {.lex_state = 24}, - [1914] = {.lex_state = 24}, - [1915] = {.lex_state = 24}, - [1916] = {.lex_state = 24}, - [1917] = {.lex_state = 24}, - [1918] = {.lex_state = 24}, - [1919] = {.lex_state = 24}, - [1920] = {.lex_state = 24}, - [1921] = {.lex_state = 24}, - [1922] = {.lex_state = 24}, - [1923] = {.lex_state = 24}, - [1924] = {.lex_state = 24}, - [1925] = {.lex_state = 24}, - [1926] = {.lex_state = 24}, - [1927] = {.lex_state = 24}, - [1928] = {.lex_state = 24}, - [1929] = {.lex_state = 24}, - [1930] = {.lex_state = 24}, - [1931] = {.lex_state = 24}, - [1932] = {.lex_state = 24}, - [1933] = {.lex_state = 24}, - [1934] = {.lex_state = 24}, - [1935] = {.lex_state = 24}, - [1936] = {.lex_state = 24}, - [1937] = {.lex_state = 24}, - [1938] = {.lex_state = 24}, - [1939] = {.lex_state = 24}, - [1940] = {.lex_state = 24}, - [1941] = {.lex_state = 24}, - [1942] = {.lex_state = 24}, - [1943] = {.lex_state = 24}, - [1944] = {.lex_state = 24}, - [1945] = {.lex_state = 24}, - [1946] = {.lex_state = 24}, - [1947] = {.lex_state = 24}, - [1948] = {.lex_state = 24}, - [1949] = {.lex_state = 24}, - [1950] = {.lex_state = 24}, - [1951] = {.lex_state = 24}, - [1952] = {.lex_state = 24}, - [1953] = {.lex_state = 24}, - [1954] = {.lex_state = 24}, - [1955] = {.lex_state = 24}, - [1956] = {.lex_state = 24}, - [1957] = {.lex_state = 24}, - [1958] = {.lex_state = 24}, - [1959] = {.lex_state = 24}, - [1960] = {.lex_state = 24}, - [1961] = {.lex_state = 24}, - [1962] = {.lex_state = 24}, - [1963] = {.lex_state = 24}, - [1964] = {.lex_state = 24}, - [1965] = {.lex_state = 24}, - [1966] = {.lex_state = 24}, - [1967] = {.lex_state = 24}, - [1968] = {.lex_state = 24}, - [1969] = {.lex_state = 24}, - [1970] = {.lex_state = 24}, - [1971] = {.lex_state = 24}, - [1972] = {.lex_state = 24}, - [1973] = {.lex_state = 24}, - [1974] = {.lex_state = 24}, - [1975] = {.lex_state = 24}, - [1976] = {.lex_state = 24}, - [1977] = {.lex_state = 24}, - [1978] = {.lex_state = 24}, - [1979] = {.lex_state = 24}, - [1980] = {.lex_state = 24}, - [1981] = {.lex_state = 24}, - [1982] = {.lex_state = 24}, - [1983] = {.lex_state = 24}, - [1984] = {.lex_state = 24}, - [1985] = {.lex_state = 24}, - [1986] = {.lex_state = 24}, - [1987] = {.lex_state = 24}, - [1988] = {.lex_state = 24}, - [1989] = {.lex_state = 24}, - [1990] = {.lex_state = 24}, - [1991] = {.lex_state = 24}, - [1992] = {.lex_state = 24}, - [1993] = {.lex_state = 24}, - [1994] = {.lex_state = 24}, - [1995] = {.lex_state = 24}, - [1996] = {.lex_state = 24}, - [1997] = {.lex_state = 24}, - [1998] = {.lex_state = 24}, - [1999] = {.lex_state = 24}, - [2000] = {.lex_state = 24}, - [2001] = {.lex_state = 24}, - [2002] = {.lex_state = 24}, - [2003] = {.lex_state = 24}, - [2004] = {.lex_state = 24}, - [2005] = {.lex_state = 24}, - [2006] = {.lex_state = 24}, - [2007] = {.lex_state = 24}, - [2008] = {.lex_state = 24}, - [2009] = {.lex_state = 24}, - [2010] = {.lex_state = 24}, - [2011] = {.lex_state = 24}, - [2012] = {.lex_state = 24}, - [2013] = {.lex_state = 24}, - [2014] = {.lex_state = 24}, - [2015] = {.lex_state = 24}, - [2016] = {.lex_state = 24}, - [2017] = {.lex_state = 24}, - [2018] = {.lex_state = 24}, - [2019] = {.lex_state = 24}, - [2020] = {.lex_state = 24}, - [2021] = {.lex_state = 24}, - [2022] = {.lex_state = 24}, - [2023] = {.lex_state = 24}, - [2024] = {.lex_state = 24}, - [2025] = {.lex_state = 24}, - [2026] = {.lex_state = 24}, - [2027] = {.lex_state = 24}, - [2028] = {.lex_state = 24}, - [2029] = {.lex_state = 24}, - [2030] = {.lex_state = 24}, - [2031] = {.lex_state = 24}, - [2032] = {.lex_state = 24}, - [2033] = {.lex_state = 24}, - [2034] = {.lex_state = 24}, - [2035] = {.lex_state = 24}, - [2036] = {.lex_state = 24}, - [2037] = {.lex_state = 24}, - [2038] = {.lex_state = 24}, - [2039] = {.lex_state = 24}, - [2040] = {.lex_state = 24}, - [2041] = {.lex_state = 24}, - [2042] = {.lex_state = 24}, - [2043] = {.lex_state = 24}, - [2044] = {.lex_state = 24}, - [2045] = {.lex_state = 24}, - [2046] = {.lex_state = 24}, - [2047] = {.lex_state = 24}, - [2048] = {.lex_state = 24}, - [2049] = {.lex_state = 24}, - [2050] = {.lex_state = 24}, - [2051] = {.lex_state = 24}, - [2052] = {.lex_state = 24}, - [2053] = {.lex_state = 24}, - [2054] = {.lex_state = 24}, - [2055] = {.lex_state = 24}, - [2056] = {.lex_state = 24}, - [2057] = {.lex_state = 22}, - [2058] = {.lex_state = 22}, - [2059] = {.lex_state = 22}, - [2060] = {.lex_state = 22}, - [2061] = {.lex_state = 22}, - [2062] = {.lex_state = 22}, - [2063] = {.lex_state = 22}, - [2064] = {.lex_state = 22}, - [2065] = {.lex_state = 22}, - [2066] = {.lex_state = 22}, - [2067] = {.lex_state = 22}, - [2068] = {.lex_state = 22}, - [2069] = {.lex_state = 22}, - [2070] = {.lex_state = 22}, - [2071] = {.lex_state = 22}, - [2072] = {.lex_state = 22}, - [2073] = {.lex_state = 22}, - [2074] = {.lex_state = 22}, - [2075] = {.lex_state = 22}, - [2076] = {.lex_state = 22}, - [2077] = {.lex_state = 22}, - [2078] = {.lex_state = 22}, - [2079] = {.lex_state = 22}, - [2080] = {.lex_state = 22}, - [2081] = {.lex_state = 22}, - [2082] = {.lex_state = 22}, - [2083] = {.lex_state = 22}, - [2084] = {.lex_state = 22}, - [2085] = {.lex_state = 22}, - [2086] = {.lex_state = 22}, - [2087] = {.lex_state = 22}, - [2088] = {.lex_state = 22}, - [2089] = {.lex_state = 22}, - [2090] = {.lex_state = 22}, - [2091] = {.lex_state = 22}, - [2092] = {.lex_state = 22}, - [2093] = {.lex_state = 22}, - [2094] = {.lex_state = 22}, - [2095] = {.lex_state = 22}, - [2096] = {.lex_state = 22}, - [2097] = {.lex_state = 22}, - [2098] = {.lex_state = 22}, - [2099] = {.lex_state = 22}, - [2100] = {.lex_state = 22}, - [2101] = {.lex_state = 22}, - [2102] = {.lex_state = 22}, - [2103] = {.lex_state = 22}, - [2104] = {.lex_state = 22}, - [2105] = {.lex_state = 22}, - [2106] = {.lex_state = 22}, - [2107] = {.lex_state = 22}, - [2108] = {.lex_state = 22}, - [2109] = {.lex_state = 22}, - [2110] = {.lex_state = 22}, - [2111] = {.lex_state = 22}, - [2112] = {.lex_state = 22}, - [2113] = {.lex_state = 22}, - [2114] = {.lex_state = 22}, - [2115] = {.lex_state = 22}, - [2116] = {.lex_state = 22}, - [2117] = {.lex_state = 22}, - [2118] = {.lex_state = 22}, - [2119] = {.lex_state = 22}, + [768] = {.lex_state = 25}, + [769] = {.lex_state = 25}, + [770] = {.lex_state = 25}, + [771] = {.lex_state = 25}, + [772] = {.lex_state = 25}, + [773] = {.lex_state = 25}, + [774] = {.lex_state = 25}, + [775] = {.lex_state = 25}, + [776] = {.lex_state = 25}, + [777] = {.lex_state = 25}, + [778] = {.lex_state = 25}, + [779] = {.lex_state = 25}, + [780] = {.lex_state = 25}, + [781] = {.lex_state = 25}, + [782] = {.lex_state = 25}, + [783] = {.lex_state = 25}, + [784] = {.lex_state = 25}, + [785] = {.lex_state = 25}, + [786] = {.lex_state = 25}, + [787] = {.lex_state = 25}, + [788] = {.lex_state = 25}, + [789] = {.lex_state = 25}, + [790] = {.lex_state = 25}, + [791] = {.lex_state = 25}, + [792] = {.lex_state = 25}, + [793] = {.lex_state = 25}, + [794] = {.lex_state = 25}, + [795] = {.lex_state = 25}, + [796] = {.lex_state = 25}, + [797] = {.lex_state = 25}, + [798] = {.lex_state = 25}, + [799] = {.lex_state = 25}, + [800] = {.lex_state = 25}, + [801] = {.lex_state = 25}, + [802] = {.lex_state = 25}, + [803] = {.lex_state = 25}, + [804] = {.lex_state = 25}, + [805] = {.lex_state = 25}, + [806] = {.lex_state = 25}, + [807] = {.lex_state = 25}, + [808] = {.lex_state = 25}, + [809] = {.lex_state = 25}, + [810] = {.lex_state = 25}, + [811] = {.lex_state = 25}, + [812] = {.lex_state = 25}, + [813] = {.lex_state = 25}, + [814] = {.lex_state = 25}, + [815] = {.lex_state = 25}, + [816] = {.lex_state = 25}, + [817] = {.lex_state = 25}, + [818] = {.lex_state = 25}, + [819] = {.lex_state = 25}, + [820] = {.lex_state = 25}, + [821] = {.lex_state = 25}, + [822] = {.lex_state = 25}, + [823] = {.lex_state = 25}, + [824] = {.lex_state = 25}, + [825] = {.lex_state = 25}, + [826] = {.lex_state = 25}, + [827] = {.lex_state = 25}, + [828] = {.lex_state = 25}, + [829] = {.lex_state = 25}, + [830] = {.lex_state = 25}, + [831] = {.lex_state = 25}, + [832] = {.lex_state = 25}, + [833] = {.lex_state = 25}, + [834] = {.lex_state = 25}, + [835] = {.lex_state = 25}, + [836] = {.lex_state = 25}, + [837] = {.lex_state = 25}, + [838] = {.lex_state = 25}, + [839] = {.lex_state = 25}, + [840] = {.lex_state = 25}, + [841] = {.lex_state = 25}, + [842] = {.lex_state = 25}, + [843] = {.lex_state = 25}, + [844] = {.lex_state = 25}, + [845] = {.lex_state = 25}, + [846] = {.lex_state = 25}, + [847] = {.lex_state = 25}, + [848] = {.lex_state = 25}, + [849] = {.lex_state = 25}, + [850] = {.lex_state = 25}, + [851] = {.lex_state = 25}, + [852] = {.lex_state = 25}, + [853] = {.lex_state = 25}, + [854] = {.lex_state = 25}, + [855] = {.lex_state = 25}, + [856] = {.lex_state = 25}, + [857] = {.lex_state = 25}, + [858] = {.lex_state = 25}, + [859] = {.lex_state = 25}, + [860] = {.lex_state = 25}, + [861] = {.lex_state = 25}, + [862] = {.lex_state = 25}, + [863] = {.lex_state = 25}, + [864] = {.lex_state = 25}, + [865] = {.lex_state = 25}, + [866] = {.lex_state = 25}, + [867] = {.lex_state = 25}, + [868] = {.lex_state = 25}, + [869] = {.lex_state = 25}, + [870] = {.lex_state = 25}, + [871] = {.lex_state = 25}, + [872] = {.lex_state = 25}, + [873] = {.lex_state = 25}, + [874] = {.lex_state = 25}, + [875] = {.lex_state = 25}, + [876] = {.lex_state = 25}, + [877] = {.lex_state = 25}, + [878] = {.lex_state = 25}, + [879] = {.lex_state = 25}, + [880] = {.lex_state = 25}, + [881] = {.lex_state = 25}, + [882] = {.lex_state = 25}, + [883] = {.lex_state = 25}, + [884] = {.lex_state = 25}, + [885] = {.lex_state = 25}, + [886] = {.lex_state = 25}, + [887] = {.lex_state = 25}, + [888] = {.lex_state = 25}, + [889] = {.lex_state = 25}, + [890] = {.lex_state = 25}, + [891] = {.lex_state = 25}, + [892] = {.lex_state = 25}, + [893] = {.lex_state = 25}, + [894] = {.lex_state = 25}, + [895] = {.lex_state = 25}, + [896] = {.lex_state = 25}, + [897] = {.lex_state = 25}, + [898] = {.lex_state = 25}, + [899] = {.lex_state = 25}, + [900] = {.lex_state = 25}, + [901] = {.lex_state = 25}, + [902] = {.lex_state = 25}, + [903] = {.lex_state = 25}, + [904] = {.lex_state = 25}, + [905] = {.lex_state = 25}, + [906] = {.lex_state = 25}, + [907] = {.lex_state = 25}, + [908] = {.lex_state = 25}, + [909] = {.lex_state = 25}, + [910] = {.lex_state = 25}, + [911] = {.lex_state = 25}, + [912] = {.lex_state = 25}, + [913] = {.lex_state = 25}, + [914] = {.lex_state = 25}, + [915] = {.lex_state = 25}, + [916] = {.lex_state = 25}, + [917] = {.lex_state = 25}, + [918] = {.lex_state = 25}, + [919] = {.lex_state = 25}, + [920] = {.lex_state = 25}, + [921] = {.lex_state = 25}, + [922] = {.lex_state = 25}, + [923] = {.lex_state = 25}, + [924] = {.lex_state = 25}, + [925] = {.lex_state = 25}, + [926] = {.lex_state = 25}, + [927] = {.lex_state = 25}, + [928] = {.lex_state = 25}, + [929] = {.lex_state = 25}, + [930] = {.lex_state = 25}, + [931] = {.lex_state = 25}, + [932] = {.lex_state = 25}, + [933] = {.lex_state = 25}, + [934] = {.lex_state = 25}, + [935] = {.lex_state = 25}, + [936] = {.lex_state = 25}, + [937] = {.lex_state = 25}, + [938] = {.lex_state = 25}, + [939] = {.lex_state = 25}, + [940] = {.lex_state = 25}, + [941] = {.lex_state = 25}, + [942] = {.lex_state = 25}, + [943] = {.lex_state = 25}, + [944] = {.lex_state = 25}, + [945] = {.lex_state = 25}, + [946] = {.lex_state = 25}, + [947] = {.lex_state = 25}, + [948] = {.lex_state = 25}, + [949] = {.lex_state = 25}, + [950] = {.lex_state = 25}, + [951] = {.lex_state = 25}, + [952] = {.lex_state = 25}, + [953] = {.lex_state = 25}, + [954] = {.lex_state = 25}, + [955] = {.lex_state = 25}, + [956] = {.lex_state = 25}, + [957] = {.lex_state = 25}, + [958] = {.lex_state = 25}, + [959] = {.lex_state = 25}, + [960] = {.lex_state = 25}, + [961] = {.lex_state = 25}, + [962] = {.lex_state = 25}, + [963] = {.lex_state = 25}, + [964] = {.lex_state = 25}, + [965] = {.lex_state = 25}, + [966] = {.lex_state = 25}, + [967] = {.lex_state = 25}, + [968] = {.lex_state = 25}, + [969] = {.lex_state = 25}, + [970] = {.lex_state = 25}, + [971] = {.lex_state = 25}, + [972] = {.lex_state = 25}, + [973] = {.lex_state = 25}, + [974] = {.lex_state = 25}, + [975] = {.lex_state = 25}, + [976] = {.lex_state = 25}, + [977] = {.lex_state = 25}, + [978] = {.lex_state = 25}, + [979] = {.lex_state = 25}, + [980] = {.lex_state = 25}, + [981] = {.lex_state = 25}, + [982] = {.lex_state = 25}, + [983] = {.lex_state = 25}, + [984] = {.lex_state = 25}, + [985] = {.lex_state = 25}, + [986] = {.lex_state = 25}, + [987] = {.lex_state = 25}, + [988] = {.lex_state = 25}, + [989] = {.lex_state = 25}, + [990] = {.lex_state = 25}, + [991] = {.lex_state = 25}, + [992] = {.lex_state = 25}, + [993] = {.lex_state = 25}, + [994] = {.lex_state = 25}, + [995] = {.lex_state = 25}, + [996] = {.lex_state = 25}, + [997] = {.lex_state = 25}, + [998] = {.lex_state = 25}, + [999] = {.lex_state = 25}, + [1000] = {.lex_state = 25}, + [1001] = {.lex_state = 25}, + [1002] = {.lex_state = 25}, + [1003] = {.lex_state = 25}, + [1004] = {.lex_state = 25}, + [1005] = {.lex_state = 25}, + [1006] = {.lex_state = 25}, + [1007] = {.lex_state = 25}, + [1008] = {.lex_state = 25}, + [1009] = {.lex_state = 25}, + [1010] = {.lex_state = 25}, + [1011] = {.lex_state = 25}, + [1012] = {.lex_state = 25}, + [1013] = {.lex_state = 25}, + [1014] = {.lex_state = 25}, + [1015] = {.lex_state = 25}, + [1016] = {.lex_state = 25}, + [1017] = {.lex_state = 25}, + [1018] = {.lex_state = 25}, + [1019] = {.lex_state = 25}, + [1020] = {.lex_state = 25}, + [1021] = {.lex_state = 25}, + [1022] = {.lex_state = 25}, + [1023] = {.lex_state = 25}, + [1024] = {.lex_state = 25}, + [1025] = {.lex_state = 25}, + [1026] = {.lex_state = 25}, + [1027] = {.lex_state = 25}, + [1028] = {.lex_state = 25}, + [1029] = {.lex_state = 25}, + [1030] = {.lex_state = 25}, + [1031] = {.lex_state = 25}, + [1032] = {.lex_state = 25}, + [1033] = {.lex_state = 25}, + [1034] = {.lex_state = 25}, + [1035] = {.lex_state = 25}, + [1036] = {.lex_state = 25}, + [1037] = {.lex_state = 25}, + [1038] = {.lex_state = 25}, + [1039] = {.lex_state = 25}, + [1040] = {.lex_state = 25}, + [1041] = {.lex_state = 25}, + [1042] = {.lex_state = 25}, + [1043] = {.lex_state = 25}, + [1044] = {.lex_state = 25}, + [1045] = {.lex_state = 25}, + [1046] = {.lex_state = 25}, + [1047] = {.lex_state = 25}, + [1048] = {.lex_state = 25}, + [1049] = {.lex_state = 25}, + [1050] = {.lex_state = 25}, + [1051] = {.lex_state = 25}, + [1052] = {.lex_state = 25}, + [1053] = {.lex_state = 25}, + [1054] = {.lex_state = 25}, + [1055] = {.lex_state = 25}, + [1056] = {.lex_state = 25}, + [1057] = {.lex_state = 25}, + [1058] = {.lex_state = 25}, + [1059] = {.lex_state = 25}, + [1060] = {.lex_state = 25}, + [1061] = {.lex_state = 25}, + [1062] = {.lex_state = 25}, + [1063] = {.lex_state = 25}, + [1064] = {.lex_state = 25}, + [1065] = {.lex_state = 25}, + [1066] = {.lex_state = 25}, + [1067] = {.lex_state = 25}, + [1068] = {.lex_state = 25}, + [1069] = {.lex_state = 25}, + [1070] = {.lex_state = 25}, + [1071] = {.lex_state = 25}, + [1072] = {.lex_state = 25}, + [1073] = {.lex_state = 25}, + [1074] = {.lex_state = 25}, + [1075] = {.lex_state = 25}, + [1076] = {.lex_state = 25}, + [1077] = {.lex_state = 25}, + [1078] = {.lex_state = 25}, + [1079] = {.lex_state = 25}, + [1080] = {.lex_state = 25}, + [1081] = {.lex_state = 25}, + [1082] = {.lex_state = 25}, + [1083] = {.lex_state = 25}, + [1084] = {.lex_state = 25}, + [1085] = {.lex_state = 25}, + [1086] = {.lex_state = 25}, + [1087] = {.lex_state = 25}, + [1088] = {.lex_state = 25}, + [1089] = {.lex_state = 25}, + [1090] = {.lex_state = 25}, + [1091] = {.lex_state = 25}, + [1092] = {.lex_state = 25}, + [1093] = {.lex_state = 25}, + [1094] = {.lex_state = 25}, + [1095] = {.lex_state = 25}, + [1096] = {.lex_state = 25}, + [1097] = {.lex_state = 25}, + [1098] = {.lex_state = 25}, + [1099] = {.lex_state = 25}, + [1100] = {.lex_state = 25}, + [1101] = {.lex_state = 25}, + [1102] = {.lex_state = 25}, + [1103] = {.lex_state = 25}, + [1104] = {.lex_state = 25}, + [1105] = {.lex_state = 25}, + [1106] = {.lex_state = 25}, + [1107] = {.lex_state = 25}, + [1108] = {.lex_state = 25}, + [1109] = {.lex_state = 25}, + [1110] = {.lex_state = 25}, + [1111] = {.lex_state = 25}, + [1112] = {.lex_state = 25}, + [1113] = {.lex_state = 25}, + [1114] = {.lex_state = 25}, + [1115] = {.lex_state = 25}, + [1116] = {.lex_state = 25}, + [1117] = {.lex_state = 25}, + [1118] = {.lex_state = 25}, + [1119] = {.lex_state = 25}, + [1120] = {.lex_state = 25}, + [1121] = {.lex_state = 25}, + [1122] = {.lex_state = 25}, + [1123] = {.lex_state = 25}, + [1124] = {.lex_state = 25}, + [1125] = {.lex_state = 25}, + [1126] = {.lex_state = 25}, + [1127] = {.lex_state = 25}, + [1128] = {.lex_state = 25}, + [1129] = {.lex_state = 25}, + [1130] = {.lex_state = 25}, + [1131] = {.lex_state = 25}, + [1132] = {.lex_state = 25}, + [1133] = {.lex_state = 25}, + [1134] = {.lex_state = 25}, + [1135] = {.lex_state = 25}, + [1136] = {.lex_state = 25}, + [1137] = {.lex_state = 25}, + [1138] = {.lex_state = 25}, + [1139] = {.lex_state = 25}, + [1140] = {.lex_state = 25}, + [1141] = {.lex_state = 25}, + [1142] = {.lex_state = 25}, + [1143] = {.lex_state = 25}, + [1144] = {.lex_state = 25}, + [1145] = {.lex_state = 25}, + [1146] = {.lex_state = 25}, + [1147] = {.lex_state = 25}, + [1148] = {.lex_state = 25}, + [1149] = {.lex_state = 25}, + [1150] = {.lex_state = 25}, + [1151] = {.lex_state = 25}, + [1152] = {.lex_state = 25}, + [1153] = {.lex_state = 25}, + [1154] = {.lex_state = 25}, + [1155] = {.lex_state = 25}, + [1156] = {.lex_state = 25}, + [1157] = {.lex_state = 25}, + [1158] = {.lex_state = 25}, + [1159] = {.lex_state = 25}, + [1160] = {.lex_state = 25}, + [1161] = {.lex_state = 25}, + [1162] = {.lex_state = 25}, + [1163] = {.lex_state = 25}, + [1164] = {.lex_state = 25}, + [1165] = {.lex_state = 25}, + [1166] = {.lex_state = 25}, + [1167] = {.lex_state = 25}, + [1168] = {.lex_state = 25}, + [1169] = {.lex_state = 25}, + [1170] = {.lex_state = 25}, + [1171] = {.lex_state = 25}, + [1172] = {.lex_state = 25}, + [1173] = {.lex_state = 25}, + [1174] = {.lex_state = 25}, + [1175] = {.lex_state = 25}, + [1176] = {.lex_state = 25}, + [1177] = {.lex_state = 25}, + [1178] = {.lex_state = 25}, + [1179] = {.lex_state = 25}, + [1180] = {.lex_state = 25}, + [1181] = {.lex_state = 25}, + [1182] = {.lex_state = 25}, + [1183] = {.lex_state = 25}, + [1184] = {.lex_state = 25}, + [1185] = {.lex_state = 25}, + [1186] = {.lex_state = 25}, + [1187] = {.lex_state = 25}, + [1188] = {.lex_state = 25}, + [1189] = {.lex_state = 25}, + [1190] = {.lex_state = 25}, + [1191] = {.lex_state = 25}, + [1192] = {.lex_state = 25}, + [1193] = {.lex_state = 25}, + [1194] = {.lex_state = 25}, + [1195] = {.lex_state = 25}, + [1196] = {.lex_state = 25}, + [1197] = {.lex_state = 25}, + [1198] = {.lex_state = 25}, + [1199] = {.lex_state = 25}, + [1200] = {.lex_state = 25}, + [1201] = {.lex_state = 25}, + [1202] = {.lex_state = 25}, + [1203] = {.lex_state = 25}, + [1204] = {.lex_state = 25}, + [1205] = {.lex_state = 25}, + [1206] = {.lex_state = 25}, + [1207] = {.lex_state = 25}, + [1208] = {.lex_state = 25}, + [1209] = {.lex_state = 25}, + [1210] = {.lex_state = 25}, + [1211] = {.lex_state = 25}, + [1212] = {.lex_state = 25}, + [1213] = {.lex_state = 25}, + [1214] = {.lex_state = 25}, + [1215] = {.lex_state = 25}, + [1216] = {.lex_state = 25}, + [1217] = {.lex_state = 25}, + [1218] = {.lex_state = 25}, + [1219] = {.lex_state = 25}, + [1220] = {.lex_state = 25}, + [1221] = {.lex_state = 25}, + [1222] = {.lex_state = 25}, + [1223] = {.lex_state = 25}, + [1224] = {.lex_state = 25}, + [1225] = {.lex_state = 25}, + [1226] = {.lex_state = 25}, + [1227] = {.lex_state = 25}, + [1228] = {.lex_state = 25}, + [1229] = {.lex_state = 25}, + [1230] = {.lex_state = 25}, + [1231] = {.lex_state = 25}, + [1232] = {.lex_state = 25}, + [1233] = {.lex_state = 25}, + [1234] = {.lex_state = 25}, + [1235] = {.lex_state = 25}, + [1236] = {.lex_state = 25}, + [1237] = {.lex_state = 25}, + [1238] = {.lex_state = 25}, + [1239] = {.lex_state = 25}, + [1240] = {.lex_state = 25}, + [1241] = {.lex_state = 25}, + [1242] = {.lex_state = 25}, + [1243] = {.lex_state = 25}, + [1244] = {.lex_state = 25}, + [1245] = {.lex_state = 25}, + [1246] = {.lex_state = 25}, + [1247] = {.lex_state = 25}, + [1248] = {.lex_state = 25}, + [1249] = {.lex_state = 25}, + [1250] = {.lex_state = 25}, + [1251] = {.lex_state = 25}, + [1252] = {.lex_state = 25}, + [1253] = {.lex_state = 25}, + [1254] = {.lex_state = 25}, + [1255] = {.lex_state = 25}, + [1256] = {.lex_state = 25}, + [1257] = {.lex_state = 25}, + [1258] = {.lex_state = 25}, + [1259] = {.lex_state = 25}, + [1260] = {.lex_state = 25}, + [1261] = {.lex_state = 25}, + [1262] = {.lex_state = 25}, + [1263] = {.lex_state = 25}, + [1264] = {.lex_state = 25}, + [1265] = {.lex_state = 25}, + [1266] = {.lex_state = 25}, + [1267] = {.lex_state = 25}, + [1268] = {.lex_state = 25}, + [1269] = {.lex_state = 25}, + [1270] = {.lex_state = 25}, + [1271] = {.lex_state = 25}, + [1272] = {.lex_state = 25}, + [1273] = {.lex_state = 25}, + [1274] = {.lex_state = 25}, + [1275] = {.lex_state = 25}, + [1276] = {.lex_state = 25}, + [1277] = {.lex_state = 25}, + [1278] = {.lex_state = 25}, + [1279] = {.lex_state = 25}, + [1280] = {.lex_state = 25}, + [1281] = {.lex_state = 25}, + [1282] = {.lex_state = 25}, + [1283] = {.lex_state = 25}, + [1284] = {.lex_state = 25}, + [1285] = {.lex_state = 25}, + [1286] = {.lex_state = 25}, + [1287] = {.lex_state = 25}, + [1288] = {.lex_state = 25}, + [1289] = {.lex_state = 25}, + [1290] = {.lex_state = 25}, + [1291] = {.lex_state = 25}, + [1292] = {.lex_state = 25}, + [1293] = {.lex_state = 25}, + [1294] = {.lex_state = 25}, + [1295] = {.lex_state = 25}, + [1296] = {.lex_state = 25}, + [1297] = {.lex_state = 25}, + [1298] = {.lex_state = 25}, + [1299] = {.lex_state = 25}, + [1300] = {.lex_state = 25}, + [1301] = {.lex_state = 25}, + [1302] = {.lex_state = 25}, + [1303] = {.lex_state = 25}, + [1304] = {.lex_state = 25}, + [1305] = {.lex_state = 25}, + [1306] = {.lex_state = 25}, + [1307] = {.lex_state = 25}, + [1308] = {.lex_state = 25}, + [1309] = {.lex_state = 25}, + [1310] = {.lex_state = 25}, + [1311] = {.lex_state = 25}, + [1312] = {.lex_state = 25}, + [1313] = {.lex_state = 25}, + [1314] = {.lex_state = 25}, + [1315] = {.lex_state = 25}, + [1316] = {.lex_state = 25}, + [1317] = {.lex_state = 25}, + [1318] = {.lex_state = 25}, + [1319] = {.lex_state = 25}, + [1320] = {.lex_state = 25}, + [1321] = {.lex_state = 25}, + [1322] = {.lex_state = 25}, + [1323] = {.lex_state = 25}, + [1324] = {.lex_state = 25}, + [1325] = {.lex_state = 25}, + [1326] = {.lex_state = 25}, + [1327] = {.lex_state = 25}, + [1328] = {.lex_state = 25}, + [1329] = {.lex_state = 25}, + [1330] = {.lex_state = 25}, + [1331] = {.lex_state = 25}, + [1332] = {.lex_state = 25}, + [1333] = {.lex_state = 25}, + [1334] = {.lex_state = 25}, + [1335] = {.lex_state = 25}, + [1336] = {.lex_state = 25}, + [1337] = {.lex_state = 25}, + [1338] = {.lex_state = 25}, + [1339] = {.lex_state = 25}, + [1340] = {.lex_state = 25}, + [1341] = {.lex_state = 25}, + [1342] = {.lex_state = 25}, + [1343] = {.lex_state = 25}, + [1344] = {.lex_state = 25}, + [1345] = {.lex_state = 25}, + [1346] = {.lex_state = 25}, + [1347] = {.lex_state = 25}, + [1348] = {.lex_state = 25}, + [1349] = {.lex_state = 25}, + [1350] = {.lex_state = 25}, + [1351] = {.lex_state = 25}, + [1352] = {.lex_state = 25}, + [1353] = {.lex_state = 25}, + [1354] = {.lex_state = 25}, + [1355] = {.lex_state = 25}, + [1356] = {.lex_state = 25}, + [1357] = {.lex_state = 25}, + [1358] = {.lex_state = 25}, + [1359] = {.lex_state = 25}, + [1360] = {.lex_state = 25}, + [1361] = {.lex_state = 25}, + [1362] = {.lex_state = 25}, + [1363] = {.lex_state = 25}, + [1364] = {.lex_state = 25}, + [1365] = {.lex_state = 25}, + [1366] = {.lex_state = 25}, + [1367] = {.lex_state = 25}, + [1368] = {.lex_state = 25}, + [1369] = {.lex_state = 25}, + [1370] = {.lex_state = 25}, + [1371] = {.lex_state = 25}, + [1372] = {.lex_state = 25}, + [1373] = {.lex_state = 25}, + [1374] = {.lex_state = 25}, + [1375] = {.lex_state = 25}, + [1376] = {.lex_state = 25}, + [1377] = {.lex_state = 25}, + [1378] = {.lex_state = 25}, + [1379] = {.lex_state = 25}, + [1380] = {.lex_state = 25}, + [1381] = {.lex_state = 25}, + [1382] = {.lex_state = 25}, + [1383] = {.lex_state = 25}, + [1384] = {.lex_state = 25}, + [1385] = {.lex_state = 25}, + [1386] = {.lex_state = 25}, + [1387] = {.lex_state = 25}, + [1388] = {.lex_state = 25}, + [1389] = {.lex_state = 25}, + [1390] = {.lex_state = 25}, + [1391] = {.lex_state = 25}, + [1392] = {.lex_state = 25}, + [1393] = {.lex_state = 25}, + [1394] = {.lex_state = 25}, + [1395] = {.lex_state = 25}, + [1396] = {.lex_state = 25}, + [1397] = {.lex_state = 25}, + [1398] = {.lex_state = 25}, + [1399] = {.lex_state = 25}, + [1400] = {.lex_state = 25}, + [1401] = {.lex_state = 25}, + [1402] = {.lex_state = 25}, + [1403] = {.lex_state = 25}, + [1404] = {.lex_state = 25}, + [1405] = {.lex_state = 25}, + [1406] = {.lex_state = 25}, + [1407] = {.lex_state = 25}, + [1408] = {.lex_state = 25}, + [1409] = {.lex_state = 25}, + [1410] = {.lex_state = 25}, + [1411] = {.lex_state = 25}, + [1412] = {.lex_state = 22}, + [1413] = {.lex_state = 22}, + [1414] = {.lex_state = 25}, + [1415] = {.lex_state = 25}, + [1416] = {.lex_state = 25}, + [1417] = {.lex_state = 25}, + [1418] = {.lex_state = 25}, + [1419] = {.lex_state = 25}, + [1420] = {.lex_state = 22}, + [1421] = {.lex_state = 22}, + [1422] = {.lex_state = 25}, + [1423] = {.lex_state = 25}, + [1424] = {.lex_state = 25}, + [1425] = {.lex_state = 25}, + [1426] = {.lex_state = 25}, + [1427] = {.lex_state = 25}, + [1428] = {.lex_state = 25}, + [1429] = {.lex_state = 25}, + [1430] = {.lex_state = 25}, + [1431] = {.lex_state = 25}, + [1432] = {.lex_state = 25}, + [1433] = {.lex_state = 25}, + [1434] = {.lex_state = 25}, + [1435] = {.lex_state = 25}, + [1436] = {.lex_state = 25}, + [1437] = {.lex_state = 25}, + [1438] = {.lex_state = 25}, + [1439] = {.lex_state = 25}, + [1440] = {.lex_state = 25}, + [1441] = {.lex_state = 25}, + [1442] = {.lex_state = 25}, + [1443] = {.lex_state = 25}, + [1444] = {.lex_state = 25}, + [1445] = {.lex_state = 25}, + [1446] = {.lex_state = 25}, + [1447] = {.lex_state = 25}, + [1448] = {.lex_state = 25}, + [1449] = {.lex_state = 25}, + [1450] = {.lex_state = 25}, + [1451] = {.lex_state = 25}, + [1452] = {.lex_state = 25}, + [1453] = {.lex_state = 25}, + [1454] = {.lex_state = 25}, + [1455] = {.lex_state = 25}, + [1456] = {.lex_state = 25}, + [1457] = {.lex_state = 25}, + [1458] = {.lex_state = 25}, + [1459] = {.lex_state = 25}, + [1460] = {.lex_state = 25}, + [1461] = {.lex_state = 25}, + [1462] = {.lex_state = 25}, + [1463] = {.lex_state = 25}, + [1464] = {.lex_state = 25}, + [1465] = {.lex_state = 25}, + [1466] = {.lex_state = 25}, + [1467] = {.lex_state = 25}, + [1468] = {.lex_state = 25}, + [1469] = {.lex_state = 25}, + [1470] = {.lex_state = 25}, + [1471] = {.lex_state = 25}, + [1472] = {.lex_state = 25}, + [1473] = {.lex_state = 25}, + [1474] = {.lex_state = 25}, + [1475] = {.lex_state = 25}, + [1476] = {.lex_state = 25}, + [1477] = {.lex_state = 25}, + [1478] = {.lex_state = 25}, + [1479] = {.lex_state = 25}, + [1480] = {.lex_state = 25}, + [1481] = {.lex_state = 25}, + [1482] = {.lex_state = 25}, + [1483] = {.lex_state = 25}, + [1484] = {.lex_state = 25}, + [1485] = {.lex_state = 25}, + [1486] = {.lex_state = 25}, + [1487] = {.lex_state = 25}, + [1488] = {.lex_state = 25}, + [1489] = {.lex_state = 25}, + [1490] = {.lex_state = 25}, + [1491] = {.lex_state = 25}, + [1492] = {.lex_state = 25}, + [1493] = {.lex_state = 25}, + [1494] = {.lex_state = 25}, + [1495] = {.lex_state = 25}, + [1496] = {.lex_state = 25}, + [1497] = {.lex_state = 25}, + [1498] = {.lex_state = 25}, + [1499] = {.lex_state = 25}, + [1500] = {.lex_state = 25}, + [1501] = {.lex_state = 25}, + [1502] = {.lex_state = 25}, + [1503] = {.lex_state = 25}, + [1504] = {.lex_state = 25}, + [1505] = {.lex_state = 25}, + [1506] = {.lex_state = 25}, + [1507] = {.lex_state = 25}, + [1508] = {.lex_state = 25}, + [1509] = {.lex_state = 25}, + [1510] = {.lex_state = 25}, + [1511] = {.lex_state = 25}, + [1512] = {.lex_state = 25}, + [1513] = {.lex_state = 25}, + [1514] = {.lex_state = 25}, + [1515] = {.lex_state = 25}, + [1516] = {.lex_state = 25}, + [1517] = {.lex_state = 25}, + [1518] = {.lex_state = 25}, + [1519] = {.lex_state = 25}, + [1520] = {.lex_state = 25}, + [1521] = {.lex_state = 25}, + [1522] = {.lex_state = 25}, + [1523] = {.lex_state = 25}, + [1524] = {.lex_state = 25}, + [1525] = {.lex_state = 25}, + [1526] = {.lex_state = 25}, + [1527] = {.lex_state = 25}, + [1528] = {.lex_state = 25}, + [1529] = {.lex_state = 25}, + [1530] = {.lex_state = 25}, + [1531] = {.lex_state = 25}, + [1532] = {.lex_state = 25}, + [1533] = {.lex_state = 25}, + [1534] = {.lex_state = 25}, + [1535] = {.lex_state = 25}, + [1536] = {.lex_state = 25}, + [1537] = {.lex_state = 25}, + [1538] = {.lex_state = 25}, + [1539] = {.lex_state = 25}, + [1540] = {.lex_state = 25}, + [1541] = {.lex_state = 25}, + [1542] = {.lex_state = 25}, + [1543] = {.lex_state = 25}, + [1544] = {.lex_state = 25}, + [1545] = {.lex_state = 25}, + [1546] = {.lex_state = 25}, + [1547] = {.lex_state = 25}, + [1548] = {.lex_state = 25}, + [1549] = {.lex_state = 25}, + [1550] = {.lex_state = 25}, + [1551] = {.lex_state = 25}, + [1552] = {.lex_state = 25}, + [1553] = {.lex_state = 25}, + [1554] = {.lex_state = 25}, + [1555] = {.lex_state = 25}, + [1556] = {.lex_state = 25}, + [1557] = {.lex_state = 25}, + [1558] = {.lex_state = 25}, + [1559] = {.lex_state = 25}, + [1560] = {.lex_state = 25}, + [1561] = {.lex_state = 25}, + [1562] = {.lex_state = 25}, + [1563] = {.lex_state = 25}, + [1564] = {.lex_state = 25}, + [1565] = {.lex_state = 25}, + [1566] = {.lex_state = 25}, + [1567] = {.lex_state = 25}, + [1568] = {.lex_state = 25}, + [1569] = {.lex_state = 25}, + [1570] = {.lex_state = 25}, + [1571] = {.lex_state = 25}, + [1572] = {.lex_state = 25}, + [1573] = {.lex_state = 25}, + [1574] = {.lex_state = 25}, + [1575] = {.lex_state = 25}, + [1576] = {.lex_state = 25}, + [1577] = {.lex_state = 25}, + [1578] = {.lex_state = 25}, + [1579] = {.lex_state = 25}, + [1580] = {.lex_state = 25}, + [1581] = {.lex_state = 25}, + [1582] = {.lex_state = 25}, + [1583] = {.lex_state = 25}, + [1584] = {.lex_state = 25}, + [1585] = {.lex_state = 25}, + [1586] = {.lex_state = 25}, + [1587] = {.lex_state = 25}, + [1588] = {.lex_state = 25}, + [1589] = {.lex_state = 25}, + [1590] = {.lex_state = 25}, + [1591] = {.lex_state = 25}, + [1592] = {.lex_state = 25}, + [1593] = {.lex_state = 25}, + [1594] = {.lex_state = 25}, + [1595] = {.lex_state = 25}, + [1596] = {.lex_state = 25}, + [1597] = {.lex_state = 25}, + [1598] = {.lex_state = 25}, + [1599] = {.lex_state = 25}, + [1600] = {.lex_state = 25}, + [1601] = {.lex_state = 25}, + [1602] = {.lex_state = 25}, + [1603] = {.lex_state = 25}, + [1604] = {.lex_state = 25}, + [1605] = {.lex_state = 25}, + [1606] = {.lex_state = 25}, + [1607] = {.lex_state = 25}, + [1608] = {.lex_state = 25}, + [1609] = {.lex_state = 25}, + [1610] = {.lex_state = 25}, + [1611] = {.lex_state = 25}, + [1612] = {.lex_state = 25}, + [1613] = {.lex_state = 25}, + [1614] = {.lex_state = 25}, + [1615] = {.lex_state = 25}, + [1616] = {.lex_state = 25}, + [1617] = {.lex_state = 25}, + [1618] = {.lex_state = 25}, + [1619] = {.lex_state = 25}, + [1620] = {.lex_state = 25}, + [1621] = {.lex_state = 25}, + [1622] = {.lex_state = 25}, + [1623] = {.lex_state = 25}, + [1624] = {.lex_state = 25}, + [1625] = {.lex_state = 25}, + [1626] = {.lex_state = 25}, + [1627] = {.lex_state = 25}, + [1628] = {.lex_state = 25}, + [1629] = {.lex_state = 25}, + [1630] = {.lex_state = 25}, + [1631] = {.lex_state = 25}, + [1632] = {.lex_state = 25}, + [1633] = {.lex_state = 25}, + [1634] = {.lex_state = 25}, + [1635] = {.lex_state = 25}, + [1636] = {.lex_state = 25}, + [1637] = {.lex_state = 25}, + [1638] = {.lex_state = 25}, + [1639] = {.lex_state = 25}, + [1640] = {.lex_state = 25}, + [1641] = {.lex_state = 25}, + [1642] = {.lex_state = 25}, + [1643] = {.lex_state = 25}, + [1644] = {.lex_state = 25}, + [1645] = {.lex_state = 25}, + [1646] = {.lex_state = 25}, + [1647] = {.lex_state = 25}, + [1648] = {.lex_state = 25}, + [1649] = {.lex_state = 25}, + [1650] = {.lex_state = 25}, + [1651] = {.lex_state = 25}, + [1652] = {.lex_state = 25}, + [1653] = {.lex_state = 25}, + [1654] = {.lex_state = 25}, + [1655] = {.lex_state = 25}, + [1656] = {.lex_state = 25}, + [1657] = {.lex_state = 25}, + [1658] = {.lex_state = 25}, + [1659] = {.lex_state = 25}, + [1660] = {.lex_state = 25}, + [1661] = {.lex_state = 25}, + [1662] = {.lex_state = 25}, + [1663] = {.lex_state = 25}, + [1664] = {.lex_state = 25}, + [1665] = {.lex_state = 25}, + [1666] = {.lex_state = 25}, + [1667] = {.lex_state = 25}, + [1668] = {.lex_state = 25}, + [1669] = {.lex_state = 25}, + [1670] = {.lex_state = 25}, + [1671] = {.lex_state = 25}, + [1672] = {.lex_state = 25}, + [1673] = {.lex_state = 25}, + [1674] = {.lex_state = 25}, + [1675] = {.lex_state = 25}, + [1676] = {.lex_state = 25}, + [1677] = {.lex_state = 25}, + [1678] = {.lex_state = 25}, + [1679] = {.lex_state = 25}, + [1680] = {.lex_state = 25}, + [1681] = {.lex_state = 25}, + [1682] = {.lex_state = 25}, + [1683] = {.lex_state = 25}, + [1684] = {.lex_state = 25}, + [1685] = {.lex_state = 25}, + [1686] = {.lex_state = 25}, + [1687] = {.lex_state = 25}, + [1688] = {.lex_state = 25}, + [1689] = {.lex_state = 25}, + [1690] = {.lex_state = 25}, + [1691] = {.lex_state = 25}, + [1692] = {.lex_state = 25}, + [1693] = {.lex_state = 25}, + [1694] = {.lex_state = 25}, + [1695] = {.lex_state = 25}, + [1696] = {.lex_state = 25}, + [1697] = {.lex_state = 25}, + [1698] = {.lex_state = 25}, + [1699] = {.lex_state = 25}, + [1700] = {.lex_state = 25}, + [1701] = {.lex_state = 25}, + [1702] = {.lex_state = 25}, + [1703] = {.lex_state = 25}, + [1704] = {.lex_state = 25}, + [1705] = {.lex_state = 25}, + [1706] = {.lex_state = 25}, + [1707] = {.lex_state = 25}, + [1708] = {.lex_state = 25}, + [1709] = {.lex_state = 25}, + [1710] = {.lex_state = 25}, + [1711] = {.lex_state = 25}, + [1712] = {.lex_state = 25}, + [1713] = {.lex_state = 25}, + [1714] = {.lex_state = 25}, + [1715] = {.lex_state = 25}, + [1716] = {.lex_state = 25}, + [1717] = {.lex_state = 25}, + [1718] = {.lex_state = 25}, + [1719] = {.lex_state = 25}, + [1720] = {.lex_state = 25}, + [1721] = {.lex_state = 25}, + [1722] = {.lex_state = 25}, + [1723] = {.lex_state = 25}, + [1724] = {.lex_state = 25}, + [1725] = {.lex_state = 25}, + [1726] = {.lex_state = 25}, + [1727] = {.lex_state = 25}, + [1728] = {.lex_state = 25}, + [1729] = {.lex_state = 25}, + [1730] = {.lex_state = 25}, + [1731] = {.lex_state = 25}, + [1732] = {.lex_state = 25}, + [1733] = {.lex_state = 25}, + [1734] = {.lex_state = 25}, + [1735] = {.lex_state = 25}, + [1736] = {.lex_state = 25}, + [1737] = {.lex_state = 25}, + [1738] = {.lex_state = 25}, + [1739] = {.lex_state = 25}, + [1740] = {.lex_state = 25}, + [1741] = {.lex_state = 25}, + [1742] = {.lex_state = 25}, + [1743] = {.lex_state = 25}, + [1744] = {.lex_state = 25}, + [1745] = {.lex_state = 25}, + [1746] = {.lex_state = 25}, + [1747] = {.lex_state = 25}, + [1748] = {.lex_state = 25}, + [1749] = {.lex_state = 25}, + [1750] = {.lex_state = 25}, + [1751] = {.lex_state = 25}, + [1752] = {.lex_state = 25}, + [1753] = {.lex_state = 25}, + [1754] = {.lex_state = 25}, + [1755] = {.lex_state = 25}, + [1756] = {.lex_state = 25}, + [1757] = {.lex_state = 25}, + [1758] = {.lex_state = 25}, + [1759] = {.lex_state = 25}, + [1760] = {.lex_state = 25}, + [1761] = {.lex_state = 25}, + [1762] = {.lex_state = 25}, + [1763] = {.lex_state = 25}, + [1764] = {.lex_state = 25}, + [1765] = {.lex_state = 25}, + [1766] = {.lex_state = 25}, + [1767] = {.lex_state = 25}, + [1768] = {.lex_state = 25}, + [1769] = {.lex_state = 25}, + [1770] = {.lex_state = 25}, + [1771] = {.lex_state = 25}, + [1772] = {.lex_state = 25}, + [1773] = {.lex_state = 25}, + [1774] = {.lex_state = 25}, + [1775] = {.lex_state = 25}, + [1776] = {.lex_state = 25}, + [1777] = {.lex_state = 25}, + [1778] = {.lex_state = 25}, + [1779] = {.lex_state = 25}, + [1780] = {.lex_state = 25}, + [1781] = {.lex_state = 25}, + [1782] = {.lex_state = 25}, + [1783] = {.lex_state = 25}, + [1784] = {.lex_state = 25}, + [1785] = {.lex_state = 25}, + [1786] = {.lex_state = 25}, + [1787] = {.lex_state = 25}, + [1788] = {.lex_state = 25}, + [1789] = {.lex_state = 25}, + [1790] = {.lex_state = 25}, + [1791] = {.lex_state = 25}, + [1792] = {.lex_state = 25}, + [1793] = {.lex_state = 25}, + [1794] = {.lex_state = 25}, + [1795] = {.lex_state = 25}, + [1796] = {.lex_state = 25}, + [1797] = {.lex_state = 25}, + [1798] = {.lex_state = 25}, + [1799] = {.lex_state = 25}, + [1800] = {.lex_state = 25}, + [1801] = {.lex_state = 25}, + [1802] = {.lex_state = 25}, + [1803] = {.lex_state = 25}, + [1804] = {.lex_state = 25}, + [1805] = {.lex_state = 25}, + [1806] = {.lex_state = 25}, + [1807] = {.lex_state = 25}, + [1808] = {.lex_state = 25}, + [1809] = {.lex_state = 25}, + [1810] = {.lex_state = 25}, + [1811] = {.lex_state = 25}, + [1812] = {.lex_state = 25}, + [1813] = {.lex_state = 25}, + [1814] = {.lex_state = 25}, + [1815] = {.lex_state = 25}, + [1816] = {.lex_state = 25}, + [1817] = {.lex_state = 25}, + [1818] = {.lex_state = 25}, + [1819] = {.lex_state = 25}, + [1820] = {.lex_state = 25}, + [1821] = {.lex_state = 25}, + [1822] = {.lex_state = 25}, + [1823] = {.lex_state = 25}, + [1824] = {.lex_state = 25}, + [1825] = {.lex_state = 25}, + [1826] = {.lex_state = 25}, + [1827] = {.lex_state = 25}, + [1828] = {.lex_state = 25}, + [1829] = {.lex_state = 25}, + [1830] = {.lex_state = 25}, + [1831] = {.lex_state = 25}, + [1832] = {.lex_state = 25}, + [1833] = {.lex_state = 25}, + [1834] = {.lex_state = 25}, + [1835] = {.lex_state = 25}, + [1836] = {.lex_state = 25}, + [1837] = {.lex_state = 25}, + [1838] = {.lex_state = 25}, + [1839] = {.lex_state = 25}, + [1840] = {.lex_state = 25}, + [1841] = {.lex_state = 25}, + [1842] = {.lex_state = 25}, + [1843] = {.lex_state = 25}, + [1844] = {.lex_state = 25}, + [1845] = {.lex_state = 25}, + [1846] = {.lex_state = 25}, + [1847] = {.lex_state = 25}, + [1848] = {.lex_state = 25}, + [1849] = {.lex_state = 25}, + [1850] = {.lex_state = 25}, + [1851] = {.lex_state = 25}, + [1852] = {.lex_state = 25}, + [1853] = {.lex_state = 25}, + [1854] = {.lex_state = 25}, + [1855] = {.lex_state = 25}, + [1856] = {.lex_state = 25}, + [1857] = {.lex_state = 25}, + [1858] = {.lex_state = 25}, + [1859] = {.lex_state = 25}, + [1860] = {.lex_state = 25}, + [1861] = {.lex_state = 25}, + [1862] = {.lex_state = 25}, + [1863] = {.lex_state = 25}, + [1864] = {.lex_state = 25}, + [1865] = {.lex_state = 25}, + [1866] = {.lex_state = 25}, + [1867] = {.lex_state = 25}, + [1868] = {.lex_state = 25}, + [1869] = {.lex_state = 25}, + [1870] = {.lex_state = 25}, + [1871] = {.lex_state = 25}, + [1872] = {.lex_state = 25}, + [1873] = {.lex_state = 25}, + [1874] = {.lex_state = 25}, + [1875] = {.lex_state = 25}, + [1876] = {.lex_state = 25}, + [1877] = {.lex_state = 25}, + [1878] = {.lex_state = 25}, + [1879] = {.lex_state = 25}, + [1880] = {.lex_state = 25}, + [1881] = {.lex_state = 25}, + [1882] = {.lex_state = 25}, + [1883] = {.lex_state = 25}, + [1884] = {.lex_state = 25}, + [1885] = {.lex_state = 25}, + [1886] = {.lex_state = 25}, + [1887] = {.lex_state = 25}, + [1888] = {.lex_state = 25}, + [1889] = {.lex_state = 25}, + [1890] = {.lex_state = 25}, + [1891] = {.lex_state = 25}, + [1892] = {.lex_state = 25}, + [1893] = {.lex_state = 25}, + [1894] = {.lex_state = 25}, + [1895] = {.lex_state = 25}, + [1896] = {.lex_state = 25}, + [1897] = {.lex_state = 25}, + [1898] = {.lex_state = 25}, + [1899] = {.lex_state = 25}, + [1900] = {.lex_state = 25}, + [1901] = {.lex_state = 25}, + [1902] = {.lex_state = 25}, + [1903] = {.lex_state = 25}, + [1904] = {.lex_state = 25}, + [1905] = {.lex_state = 25}, + [1906] = {.lex_state = 25}, + [1907] = {.lex_state = 25}, + [1908] = {.lex_state = 25}, + [1909] = {.lex_state = 25}, + [1910] = {.lex_state = 25}, + [1911] = {.lex_state = 25}, + [1912] = {.lex_state = 25}, + [1913] = {.lex_state = 25}, + [1914] = {.lex_state = 25}, + [1915] = {.lex_state = 25}, + [1916] = {.lex_state = 25}, + [1917] = {.lex_state = 25}, + [1918] = {.lex_state = 25}, + [1919] = {.lex_state = 25}, + [1920] = {.lex_state = 25}, + [1921] = {.lex_state = 25}, + [1922] = {.lex_state = 25}, + [1923] = {.lex_state = 25}, + [1924] = {.lex_state = 25}, + [1925] = {.lex_state = 25}, + [1926] = {.lex_state = 25}, + [1927] = {.lex_state = 25}, + [1928] = {.lex_state = 25}, + [1929] = {.lex_state = 25}, + [1930] = {.lex_state = 25}, + [1931] = {.lex_state = 25}, + [1932] = {.lex_state = 25}, + [1933] = {.lex_state = 25}, + [1934] = {.lex_state = 25}, + [1935] = {.lex_state = 25}, + [1936] = {.lex_state = 25}, + [1937] = {.lex_state = 25}, + [1938] = {.lex_state = 25}, + [1939] = {.lex_state = 25}, + [1940] = {.lex_state = 25}, + [1941] = {.lex_state = 25}, + [1942] = {.lex_state = 25}, + [1943] = {.lex_state = 25}, + [1944] = {.lex_state = 25}, + [1945] = {.lex_state = 25}, + [1946] = {.lex_state = 25}, + [1947] = {.lex_state = 25}, + [1948] = {.lex_state = 25}, + [1949] = {.lex_state = 25}, + [1950] = {.lex_state = 25}, + [1951] = {.lex_state = 25}, + [1952] = {.lex_state = 25}, + [1953] = {.lex_state = 25}, + [1954] = {.lex_state = 25}, + [1955] = {.lex_state = 25}, + [1956] = {.lex_state = 25}, + [1957] = {.lex_state = 25}, + [1958] = {.lex_state = 25}, + [1959] = {.lex_state = 25}, + [1960] = {.lex_state = 25}, + [1961] = {.lex_state = 25}, + [1962] = {.lex_state = 25}, + [1963] = {.lex_state = 25}, + [1964] = {.lex_state = 25}, + [1965] = {.lex_state = 25}, + [1966] = {.lex_state = 25}, + [1967] = {.lex_state = 25}, + [1968] = {.lex_state = 25}, + [1969] = {.lex_state = 25}, + [1970] = {.lex_state = 25}, + [1971] = {.lex_state = 25}, + [1972] = {.lex_state = 25}, + [1973] = {.lex_state = 25}, + [1974] = {.lex_state = 25}, + [1975] = {.lex_state = 25}, + [1976] = {.lex_state = 25}, + [1977] = {.lex_state = 25}, + [1978] = {.lex_state = 25}, + [1979] = {.lex_state = 25}, + [1980] = {.lex_state = 25}, + [1981] = {.lex_state = 25}, + [1982] = {.lex_state = 25}, + [1983] = {.lex_state = 25}, + [1984] = {.lex_state = 25}, + [1985] = {.lex_state = 25}, + [1986] = {.lex_state = 25}, + [1987] = {.lex_state = 25}, + [1988] = {.lex_state = 25}, + [1989] = {.lex_state = 25}, + [1990] = {.lex_state = 25}, + [1991] = {.lex_state = 25}, + [1992] = {.lex_state = 25}, + [1993] = {.lex_state = 25}, + [1994] = {.lex_state = 25}, + [1995] = {.lex_state = 25}, + [1996] = {.lex_state = 25}, + [1997] = {.lex_state = 25}, + [1998] = {.lex_state = 25}, + [1999] = {.lex_state = 25}, + [2000] = {.lex_state = 25}, + [2001] = {.lex_state = 25}, + [2002] = {.lex_state = 25}, + [2003] = {.lex_state = 25}, + [2004] = {.lex_state = 25}, + [2005] = {.lex_state = 25}, + [2006] = {.lex_state = 25}, + [2007] = {.lex_state = 25}, + [2008] = {.lex_state = 25}, + [2009] = {.lex_state = 25}, + [2010] = {.lex_state = 25}, + [2011] = {.lex_state = 25}, + [2012] = {.lex_state = 25}, + [2013] = {.lex_state = 25}, + [2014] = {.lex_state = 25}, + [2015] = {.lex_state = 25}, + [2016] = {.lex_state = 25}, + [2017] = {.lex_state = 25}, + [2018] = {.lex_state = 25}, + [2019] = {.lex_state = 25}, + [2020] = {.lex_state = 25}, + [2021] = {.lex_state = 25}, + [2022] = {.lex_state = 25}, + [2023] = {.lex_state = 25}, + [2024] = {.lex_state = 25}, + [2025] = {.lex_state = 25}, + [2026] = {.lex_state = 25}, + [2027] = {.lex_state = 25}, + [2028] = {.lex_state = 25}, + [2029] = {.lex_state = 25}, + [2030] = {.lex_state = 25}, + [2031] = {.lex_state = 25}, + [2032] = {.lex_state = 25}, + [2033] = {.lex_state = 25}, + [2034] = {.lex_state = 25}, + [2035] = {.lex_state = 25}, + [2036] = {.lex_state = 25}, + [2037] = {.lex_state = 25}, + [2038] = {.lex_state = 25}, + [2039] = {.lex_state = 25}, + [2040] = {.lex_state = 25}, + [2041] = {.lex_state = 25}, + [2042] = {.lex_state = 25}, + [2043] = {.lex_state = 25}, + [2044] = {.lex_state = 25}, + [2045] = {.lex_state = 25}, + [2046] = {.lex_state = 25}, + [2047] = {.lex_state = 25}, + [2048] = {.lex_state = 25}, + [2049] = {.lex_state = 25}, + [2050] = {.lex_state = 25}, + [2051] = {.lex_state = 25}, + [2052] = {.lex_state = 25}, + [2053] = {.lex_state = 25}, + [2054] = {.lex_state = 25}, + [2055] = {.lex_state = 25}, + [2056] = {.lex_state = 25}, + [2057] = {.lex_state = 25}, + [2058] = {.lex_state = 25}, + [2059] = {.lex_state = 25}, + [2060] = {.lex_state = 25}, + [2061] = {.lex_state = 25}, + [2062] = {.lex_state = 25}, + [2063] = {.lex_state = 25}, + [2064] = {.lex_state = 25}, + [2065] = {.lex_state = 25}, + [2066] = {.lex_state = 25}, + [2067] = {.lex_state = 25}, + [2068] = {.lex_state = 25}, + [2069] = {.lex_state = 25}, + [2070] = {.lex_state = 25}, + [2071] = {.lex_state = 25}, + [2072] = {.lex_state = 25}, + [2073] = {.lex_state = 25}, + [2074] = {.lex_state = 25}, + [2075] = {.lex_state = 25}, + [2076] = {.lex_state = 25}, + [2077] = {.lex_state = 25}, + [2078] = {.lex_state = 25}, + [2079] = {.lex_state = 25}, + [2080] = {.lex_state = 25}, + [2081] = {.lex_state = 25}, + [2082] = {.lex_state = 25}, + [2083] = {.lex_state = 25}, + [2084] = {.lex_state = 25}, + [2085] = {.lex_state = 25}, + [2086] = {.lex_state = 25}, + [2087] = {.lex_state = 25}, + [2088] = {.lex_state = 25}, + [2089] = {.lex_state = 25}, + [2090] = {.lex_state = 25}, + [2091] = {.lex_state = 25}, + [2092] = {.lex_state = 25}, + [2093] = {.lex_state = 25}, + [2094] = {.lex_state = 25}, + [2095] = {.lex_state = 25}, + [2096] = {.lex_state = 25}, + [2097] = {.lex_state = 25}, + [2098] = {.lex_state = 25}, + [2099] = {.lex_state = 25}, + [2100] = {.lex_state = 25}, + [2101] = {.lex_state = 25}, + [2102] = {.lex_state = 25}, + [2103] = {.lex_state = 25}, + [2104] = {.lex_state = 25}, + [2105] = {.lex_state = 25}, + [2106] = {.lex_state = 25}, + [2107] = {.lex_state = 25}, + [2108] = {.lex_state = 25}, + [2109] = {.lex_state = 25}, + [2110] = {.lex_state = 25}, + [2111] = {.lex_state = 25}, + [2112] = {.lex_state = 25}, + [2113] = {.lex_state = 25}, + [2114] = {.lex_state = 25}, + [2115] = {.lex_state = 25}, + [2116] = {.lex_state = 25}, + [2117] = {.lex_state = 25}, + [2118] = {.lex_state = 25}, + [2119] = {.lex_state = 25}, [2120] = {.lex_state = 22}, [2121] = {.lex_state = 22}, [2122] = {.lex_state = 22}, - [2123] = {.lex_state = 22}, - [2124] = {.lex_state = 22}, - [2125] = {.lex_state = 22}, + [2123] = {.lex_state = 25}, + [2124] = {.lex_state = 25}, + [2125] = {.lex_state = 25}, [2126] = {.lex_state = 22}, [2127] = {.lex_state = 22}, [2128] = {.lex_state = 22}, [2129] = {.lex_state = 22}, - [2130] = {.lex_state = 22}, - [2131] = {.lex_state = 22}, + [2130] = {.lex_state = 25}, + [2131] = {.lex_state = 25}, [2132] = {.lex_state = 22}, [2133] = {.lex_state = 22}, [2134] = {.lex_state = 22}, [2135] = {.lex_state = 22}, [2136] = {.lex_state = 22}, [2137] = {.lex_state = 22}, - [2138] = {.lex_state = 22}, + [2138] = {.lex_state = 25}, [2139] = {.lex_state = 22}, [2140] = {.lex_state = 22}, [2141] = {.lex_state = 22}, @@ -13315,22 +24237,22 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2146] = {.lex_state = 22}, [2147] = {.lex_state = 22}, [2148] = {.lex_state = 22}, - [2149] = {.lex_state = 22}, - [2150] = {.lex_state = 22}, + [2149] = {.lex_state = 25}, + [2150] = {.lex_state = 25}, [2151] = {.lex_state = 22}, - [2152] = {.lex_state = 22}, - [2153] = {.lex_state = 22}, - [2154] = {.lex_state = 22}, - [2155] = {.lex_state = 22}, - [2156] = {.lex_state = 22}, + [2152] = {.lex_state = 25}, + [2153] = {.lex_state = 25}, + [2154] = {.lex_state = 25}, + [2155] = {.lex_state = 25}, + [2156] = {.lex_state = 25}, [2157] = {.lex_state = 22}, [2158] = {.lex_state = 22}, [2159] = {.lex_state = 22}, [2160] = {.lex_state = 22}, - [2161] = {.lex_state = 22}, - [2162] = {.lex_state = 22}, - [2163] = {.lex_state = 22}, - [2164] = {.lex_state = 22}, + [2161] = {.lex_state = 25}, + [2162] = {.lex_state = 25}, + [2163] = {.lex_state = 25}, + [2164] = {.lex_state = 25}, [2165] = {.lex_state = 22}, [2166] = {.lex_state = 22}, [2167] = {.lex_state = 22}, @@ -13339,16 +24261,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2170] = {.lex_state = 22}, [2171] = {.lex_state = 22}, [2172] = {.lex_state = 22}, - [2173] = {.lex_state = 22}, - [2174] = {.lex_state = 22}, - [2175] = {.lex_state = 22}, - [2176] = {.lex_state = 22}, - [2177] = {.lex_state = 22}, + [2173] = {.lex_state = 25}, + [2174] = {.lex_state = 25}, + [2175] = {.lex_state = 25}, + [2176] = {.lex_state = 25}, + [2177] = {.lex_state = 25}, [2178] = {.lex_state = 22}, - [2179] = {.lex_state = 22}, - [2180] = {.lex_state = 22}, + [2179] = {.lex_state = 25}, + [2180] = {.lex_state = 25}, [2181] = {.lex_state = 22}, - [2182] = {.lex_state = 22}, + [2182] = {.lex_state = 25}, [2183] = {.lex_state = 22}, [2184] = {.lex_state = 22}, [2185] = {.lex_state = 22}, @@ -13356,791 +24278,791 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2187] = {.lex_state = 22}, [2188] = {.lex_state = 22}, [2189] = {.lex_state = 22}, - [2190] = {.lex_state = 22}, - [2191] = {.lex_state = 22}, - [2192] = {.lex_state = 22}, - [2193] = {.lex_state = 22}, + [2190] = {.lex_state = 25}, + [2191] = {.lex_state = 25}, + [2192] = {.lex_state = 25}, + [2193] = {.lex_state = 25}, [2194] = {.lex_state = 22}, [2195] = {.lex_state = 22}, - [2196] = {.lex_state = 22}, - [2197] = {.lex_state = 22}, + [2196] = {.lex_state = 25}, + [2197] = {.lex_state = 25}, [2198] = {.lex_state = 22}, [2199] = {.lex_state = 22}, - [2200] = {.lex_state = 22}, + [2200] = {.lex_state = 25}, [2201] = {.lex_state = 22}, [2202] = {.lex_state = 22}, [2203] = {.lex_state = 22}, [2204] = {.lex_state = 22}, - [2205] = {.lex_state = 24}, - [2206] = {.lex_state = 24}, - [2207] = {.lex_state = 24}, - [2208] = {.lex_state = 24}, - [2209] = {.lex_state = 24}, - [2210] = {.lex_state = 24}, - [2211] = {.lex_state = 24}, - [2212] = {.lex_state = 24}, - [2213] = {.lex_state = 24}, - [2214] = {.lex_state = 24}, - [2215] = {.lex_state = 24}, - [2216] = {.lex_state = 24}, - [2217] = {.lex_state = 24}, - [2218] = {.lex_state = 24}, - [2219] = {.lex_state = 23}, - [2220] = {.lex_state = 23}, - [2221] = {.lex_state = 23}, - [2222] = {.lex_state = 23}, - [2223] = {.lex_state = 23}, - [2224] = {.lex_state = 23}, - [2225] = {.lex_state = 23}, - [2226] = {.lex_state = 23}, - [2227] = {.lex_state = 23}, - [2228] = {.lex_state = 23}, - [2229] = {.lex_state = 23}, - [2230] = {.lex_state = 23}, - [2231] = {.lex_state = 23}, - [2232] = {.lex_state = 23}, - [2233] = {.lex_state = 23}, - [2234] = {.lex_state = 23}, - [2235] = {.lex_state = 23}, - [2236] = {.lex_state = 23}, - [2237] = {.lex_state = 23}, - [2238] = {.lex_state = 23}, - [2239] = {.lex_state = 23}, - [2240] = {.lex_state = 23}, - [2241] = {.lex_state = 23}, - [2242] = {.lex_state = 23}, - [2243] = {.lex_state = 23}, - [2244] = {.lex_state = 23}, - [2245] = {.lex_state = 23}, - [2246] = {.lex_state = 23}, - [2247] = {.lex_state = 23}, - [2248] = {.lex_state = 23}, - [2249] = {.lex_state = 23}, - [2250] = {.lex_state = 23}, - [2251] = {.lex_state = 23}, - [2252] = {.lex_state = 23}, - [2253] = {.lex_state = 23}, - [2254] = {.lex_state = 23}, - [2255] = {.lex_state = 23}, - [2256] = {.lex_state = 23}, - [2257] = {.lex_state = 23}, - [2258] = {.lex_state = 23}, - [2259] = {.lex_state = 23}, - [2260] = {.lex_state = 23}, - [2261] = {.lex_state = 23}, - [2262] = {.lex_state = 23}, - [2263] = {.lex_state = 23}, - [2264] = {.lex_state = 23}, - [2265] = {.lex_state = 23}, - [2266] = {.lex_state = 23}, - [2267] = {.lex_state = 23}, - [2268] = {.lex_state = 23}, - [2269] = {.lex_state = 23}, - [2270] = {.lex_state = 23}, - [2271] = {.lex_state = 23}, - [2272] = {.lex_state = 23}, - [2273] = {.lex_state = 23}, - [2274] = {.lex_state = 23}, - [2275] = {.lex_state = 23}, - [2276] = {.lex_state = 23}, - [2277] = {.lex_state = 23}, - [2278] = {.lex_state = 23}, - [2279] = {.lex_state = 23}, - [2280] = {.lex_state = 23}, - [2281] = {.lex_state = 23}, - [2282] = {.lex_state = 23}, - [2283] = {.lex_state = 23}, - [2284] = {.lex_state = 23}, - [2285] = {.lex_state = 23}, - [2286] = {.lex_state = 23}, - [2287] = {.lex_state = 23}, - [2288] = {.lex_state = 23}, - [2289] = {.lex_state = 23}, - [2290] = {.lex_state = 23}, - [2291] = {.lex_state = 23}, - [2292] = {.lex_state = 23}, - [2293] = {.lex_state = 23}, - [2294] = {.lex_state = 23}, - [2295] = {.lex_state = 23}, - [2296] = {.lex_state = 23}, - [2297] = {.lex_state = 23}, - [2298] = {.lex_state = 23}, - [2299] = {.lex_state = 23}, - [2300] = {.lex_state = 23}, - [2301] = {.lex_state = 23}, - [2302] = {.lex_state = 23}, - [2303] = {.lex_state = 23}, - [2304] = {.lex_state = 23}, - [2305] = {.lex_state = 23}, - [2306] = {.lex_state = 23}, - [2307] = {.lex_state = 23}, - [2308] = {.lex_state = 23}, - [2309] = {.lex_state = 23}, - [2310] = {.lex_state = 23}, - [2311] = {.lex_state = 23}, - [2312] = {.lex_state = 23}, - [2313] = {.lex_state = 23}, - [2314] = {.lex_state = 23}, - [2315] = {.lex_state = 23}, - [2316] = {.lex_state = 23}, - [2317] = {.lex_state = 23}, - [2318] = {.lex_state = 23}, - [2319] = {.lex_state = 23}, - [2320] = {.lex_state = 23}, - [2321] = {.lex_state = 23}, - [2322] = {.lex_state = 23}, - [2323] = {.lex_state = 23}, - [2324] = {.lex_state = 23}, - [2325] = {.lex_state = 23}, - [2326] = {.lex_state = 23}, - [2327] = {.lex_state = 23}, - [2328] = {.lex_state = 24}, - [2329] = {.lex_state = 23}, - [2330] = {.lex_state = 23}, - [2331] = {.lex_state = 23}, - [2332] = {.lex_state = 23}, - [2333] = {.lex_state = 23}, - [2334] = {.lex_state = 23}, - [2335] = {.lex_state = 23}, - [2336] = {.lex_state = 23}, - [2337] = {.lex_state = 23}, - [2338] = {.lex_state = 23}, - [2339] = {.lex_state = 23}, - [2340] = {.lex_state = 23}, - [2341] = {.lex_state = 23}, - [2342] = {.lex_state = 23}, - [2343] = {.lex_state = 23}, - [2344] = {.lex_state = 23}, - [2345] = {.lex_state = 23}, - [2346] = {.lex_state = 23}, - [2347] = {.lex_state = 23}, - [2348] = {.lex_state = 24}, - [2349] = {.lex_state = 23}, - [2350] = {.lex_state = 23}, - [2351] = {.lex_state = 23}, - [2352] = {.lex_state = 23}, - [2353] = {.lex_state = 23}, - [2354] = {.lex_state = 23}, - [2355] = {.lex_state = 23}, - [2356] = {.lex_state = 23}, - [2357] = {.lex_state = 23}, - [2358] = {.lex_state = 23}, - [2359] = {.lex_state = 24}, - [2360] = {.lex_state = 23}, - [2361] = {.lex_state = 23}, - [2362] = {.lex_state = 23}, - [2363] = {.lex_state = 23}, - [2364] = {.lex_state = 23}, - [2365] = {.lex_state = 23}, - [2366] = {.lex_state = 23}, - [2367] = {.lex_state = 23}, - [2368] = {.lex_state = 23}, - [2369] = {.lex_state = 23}, - [2370] = {.lex_state = 23}, - [2371] = {.lex_state = 23}, - [2372] = {.lex_state = 23}, - [2373] = {.lex_state = 23}, - [2374] = {.lex_state = 23}, - [2375] = {.lex_state = 23}, - [2376] = {.lex_state = 23}, - [2377] = {.lex_state = 23}, - [2378] = {.lex_state = 23}, - [2379] = {.lex_state = 23}, - [2380] = {.lex_state = 23}, - [2381] = {.lex_state = 23}, - [2382] = {.lex_state = 23}, - [2383] = {.lex_state = 23}, - [2384] = {.lex_state = 23}, - [2385] = {.lex_state = 23}, - [2386] = {.lex_state = 23}, - [2387] = {.lex_state = 23}, - [2388] = {.lex_state = 23}, - [2389] = {.lex_state = 23}, - [2390] = {.lex_state = 23}, - [2391] = {.lex_state = 23}, - [2392] = {.lex_state = 23}, - [2393] = {.lex_state = 23}, - [2394] = {.lex_state = 23}, - [2395] = {.lex_state = 24}, - [2396] = {.lex_state = 24}, - [2397] = {.lex_state = 24}, - [2398] = {.lex_state = 24}, - [2399] = {.lex_state = 24}, - [2400] = {.lex_state = 24}, - [2401] = {.lex_state = 24}, - [2402] = {.lex_state = 24}, - [2403] = {.lex_state = 24}, - [2404] = {.lex_state = 24}, - [2405] = {.lex_state = 24}, - [2406] = {.lex_state = 24}, - [2407] = {.lex_state = 24}, - [2408] = {.lex_state = 24}, - [2409] = {.lex_state = 24}, - [2410] = {.lex_state = 24}, - [2411] = {.lex_state = 24}, - [2412] = {.lex_state = 24}, - [2413] = {.lex_state = 24}, - [2414] = {.lex_state = 24}, - [2415] = {.lex_state = 24}, - [2416] = {.lex_state = 24}, - [2417] = {.lex_state = 24}, - [2418] = {.lex_state = 24}, - [2419] = {.lex_state = 24}, - [2420] = {.lex_state = 24}, - [2421] = {.lex_state = 3}, - [2422] = {.lex_state = 3}, - [2423] = {.lex_state = 3}, - [2424] = {.lex_state = 3}, - [2425] = {.lex_state = 3}, - [2426] = {.lex_state = 3}, - [2427] = {.lex_state = 3}, - [2428] = {.lex_state = 3}, - [2429] = {.lex_state = 3}, - [2430] = {.lex_state = 3}, - [2431] = {.lex_state = 3}, - [2432] = {.lex_state = 3}, - [2433] = {.lex_state = 3}, - [2434] = {.lex_state = 3}, - [2435] = {.lex_state = 3}, - [2436] = {.lex_state = 3}, - [2437] = {.lex_state = 3}, - [2438] = {.lex_state = 3}, - [2439] = {.lex_state = 3}, - [2440] = {.lex_state = 3}, - [2441] = {.lex_state = 3}, - [2442] = {.lex_state = 3}, - [2443] = {.lex_state = 3}, - [2444] = {.lex_state = 3}, - [2445] = {.lex_state = 3}, - [2446] = {.lex_state = 3}, - [2447] = {.lex_state = 3}, - [2448] = {.lex_state = 3}, - [2449] = {.lex_state = 3}, - [2450] = {.lex_state = 3}, - [2451] = {.lex_state = 3}, - [2452] = {.lex_state = 3}, - [2453] = {.lex_state = 3}, - [2454] = {.lex_state = 3}, - [2455] = {.lex_state = 3}, - [2456] = {.lex_state = 3}, - [2457] = {.lex_state = 3}, - [2458] = {.lex_state = 3}, - [2459] = {.lex_state = 3}, - [2460] = {.lex_state = 3}, - [2461] = {.lex_state = 3}, - [2462] = {.lex_state = 3}, - [2463] = {.lex_state = 3}, - [2464] = {.lex_state = 3}, - [2465] = {.lex_state = 3}, - [2466] = {.lex_state = 3}, - [2467] = {.lex_state = 3}, - [2468] = {.lex_state = 3}, - [2469] = {.lex_state = 3}, - [2470] = {.lex_state = 3}, - [2471] = {.lex_state = 3}, - [2472] = {.lex_state = 3}, - [2473] = {.lex_state = 3}, - [2474] = {.lex_state = 3}, - [2475] = {.lex_state = 3}, - [2476] = {.lex_state = 3}, - [2477] = {.lex_state = 3}, - [2478] = {.lex_state = 3}, - [2479] = {.lex_state = 3}, - [2480] = {.lex_state = 3}, - [2481] = {.lex_state = 3}, - [2482] = {.lex_state = 3}, - [2483] = {.lex_state = 3}, - [2484] = {.lex_state = 3}, - [2485] = {.lex_state = 3}, - [2486] = {.lex_state = 3}, - [2487] = {.lex_state = 3}, - [2488] = {.lex_state = 3}, - [2489] = {.lex_state = 3}, - [2490] = {.lex_state = 3}, - [2491] = {.lex_state = 3}, - [2492] = {.lex_state = 3}, - [2493] = {.lex_state = 3}, - [2494] = {.lex_state = 3}, - [2495] = {.lex_state = 3}, - [2496] = {.lex_state = 3}, - [2497] = {.lex_state = 3}, - [2498] = {.lex_state = 3}, - [2499] = {.lex_state = 3}, - [2500] = {.lex_state = 3}, - [2501] = {.lex_state = 3}, - [2502] = {.lex_state = 3}, - [2503] = {.lex_state = 3}, - [2504] = {.lex_state = 3}, - [2505] = {.lex_state = 3}, - [2506] = {.lex_state = 3}, - [2507] = {.lex_state = 3}, - [2508] = {.lex_state = 3}, - [2509] = {.lex_state = 3}, - [2510] = {.lex_state = 3}, - [2511] = {.lex_state = 3}, - [2512] = {.lex_state = 3}, - [2513] = {.lex_state = 3}, - [2514] = {.lex_state = 3}, - [2515] = {.lex_state = 3}, - [2516] = {.lex_state = 3}, - [2517] = {.lex_state = 3}, - [2518] = {.lex_state = 3}, - [2519] = {.lex_state = 3}, - [2520] = {.lex_state = 3}, - [2521] = {.lex_state = 3}, - [2522] = {.lex_state = 3}, - [2523] = {.lex_state = 3}, - [2524] = {.lex_state = 3}, - [2525] = {.lex_state = 3}, - [2526] = {.lex_state = 3}, - [2527] = {.lex_state = 3}, - [2528] = {.lex_state = 3}, - [2529] = {.lex_state = 3}, - [2530] = {.lex_state = 3}, - [2531] = {.lex_state = 3}, - [2532] = {.lex_state = 3}, - [2533] = {.lex_state = 3}, - [2534] = {.lex_state = 3}, - [2535] = {.lex_state = 3}, - [2536] = {.lex_state = 3}, - [2537] = {.lex_state = 3}, - [2538] = {.lex_state = 3}, - [2539] = {.lex_state = 3}, - [2540] = {.lex_state = 3}, - [2541] = {.lex_state = 3}, - [2542] = {.lex_state = 3}, - [2543] = {.lex_state = 3}, - [2544] = {.lex_state = 3}, - [2545] = {.lex_state = 3}, - [2546] = {.lex_state = 3}, - [2547] = {.lex_state = 3}, - [2548] = {.lex_state = 3}, - [2549] = {.lex_state = 3}, - [2550] = {.lex_state = 3}, - [2551] = {.lex_state = 3}, - [2552] = {.lex_state = 3}, - [2553] = {.lex_state = 3}, - [2554] = {.lex_state = 3}, - [2555] = {.lex_state = 3}, - [2556] = {.lex_state = 3}, - [2557] = {.lex_state = 3}, - [2558] = {.lex_state = 3}, - [2559] = {.lex_state = 3}, - [2560] = {.lex_state = 3}, - [2561] = {.lex_state = 3}, - [2562] = {.lex_state = 3}, - [2563] = {.lex_state = 3}, - [2564] = {.lex_state = 3}, - [2565] = {.lex_state = 3}, - [2566] = {.lex_state = 3}, - [2567] = {.lex_state = 3}, - [2568] = {.lex_state = 3}, - [2569] = {.lex_state = 3}, - [2570] = {.lex_state = 3}, - [2571] = {.lex_state = 3}, - [2572] = {.lex_state = 3}, - [2573] = {.lex_state = 3}, - [2574] = {.lex_state = 3}, - [2575] = {.lex_state = 3}, - [2576] = {.lex_state = 3}, - [2577] = {.lex_state = 3}, - [2578] = {.lex_state = 3}, - [2579] = {.lex_state = 3}, - [2580] = {.lex_state = 3}, - [2581] = {.lex_state = 3}, - [2582] = {.lex_state = 3}, - [2583] = {.lex_state = 3}, - [2584] = {.lex_state = 3}, - [2585] = {.lex_state = 3}, - [2586] = {.lex_state = 3}, - [2587] = {.lex_state = 3}, - [2588] = {.lex_state = 3}, - [2589] = {.lex_state = 3}, - [2590] = {.lex_state = 3}, - [2591] = {.lex_state = 3}, - [2592] = {.lex_state = 3}, - [2593] = {.lex_state = 3}, - [2594] = {.lex_state = 3}, - [2595] = {.lex_state = 3}, - [2596] = {.lex_state = 3}, - [2597] = {.lex_state = 3}, - [2598] = {.lex_state = 3}, - [2599] = {.lex_state = 3}, - [2600] = {.lex_state = 3}, - [2601] = {.lex_state = 3}, - [2602] = {.lex_state = 3}, - [2603] = {.lex_state = 3}, - [2604] = {.lex_state = 3}, - [2605] = {.lex_state = 3}, - [2606] = {.lex_state = 3}, - [2607] = {.lex_state = 3}, - [2608] = {.lex_state = 3}, - [2609] = {.lex_state = 3}, - [2610] = {.lex_state = 3}, - [2611] = {.lex_state = 3}, - [2612] = {.lex_state = 3}, - [2613] = {.lex_state = 3}, - [2614] = {.lex_state = 3}, - [2615] = {.lex_state = 3}, - [2616] = {.lex_state = 3}, - [2617] = {.lex_state = 3}, - [2618] = {.lex_state = 3}, - [2619] = {.lex_state = 3}, - [2620] = {.lex_state = 3}, - [2621] = {.lex_state = 3}, - [2622] = {.lex_state = 3}, - [2623] = {.lex_state = 3}, - [2624] = {.lex_state = 3}, - [2625] = {.lex_state = 3}, - [2626] = {.lex_state = 3}, - [2627] = {.lex_state = 3}, - [2628] = {.lex_state = 3}, - [2629] = {.lex_state = 3}, - [2630] = {.lex_state = 3}, - [2631] = {.lex_state = 3}, - [2632] = {.lex_state = 3}, - [2633] = {.lex_state = 3}, - [2634] = {.lex_state = 3}, - [2635] = {.lex_state = 3}, - [2636] = {.lex_state = 3}, - [2637] = {.lex_state = 3}, - [2638] = {.lex_state = 3}, - [2639] = {.lex_state = 3}, - [2640] = {.lex_state = 3}, - [2641] = {.lex_state = 3}, - [2642] = {.lex_state = 3}, - [2643] = {.lex_state = 3}, - [2644] = {.lex_state = 3}, - [2645] = {.lex_state = 3}, - [2646] = {.lex_state = 3}, - [2647] = {.lex_state = 3}, - [2648] = {.lex_state = 3}, - [2649] = {.lex_state = 3}, - [2650] = {.lex_state = 3}, - [2651] = {.lex_state = 3}, - [2652] = {.lex_state = 3}, - [2653] = {.lex_state = 3}, - [2654] = {.lex_state = 3}, - [2655] = {.lex_state = 3}, - [2656] = {.lex_state = 3}, - [2657] = {.lex_state = 3}, - [2658] = {.lex_state = 3}, - [2659] = {.lex_state = 3}, - [2660] = {.lex_state = 3}, - [2661] = {.lex_state = 3}, - [2662] = {.lex_state = 3}, - [2663] = {.lex_state = 3}, - [2664] = {.lex_state = 3}, - [2665] = {.lex_state = 3}, - [2666] = {.lex_state = 3}, - [2667] = {.lex_state = 3}, - [2668] = {.lex_state = 3}, - [2669] = {.lex_state = 3}, - [2670] = {.lex_state = 3}, - [2671] = {.lex_state = 3}, - [2672] = {.lex_state = 3}, - [2673] = {.lex_state = 3}, - [2674] = {.lex_state = 3}, - [2675] = {.lex_state = 3}, - [2676] = {.lex_state = 3}, - [2677] = {.lex_state = 3}, - [2678] = {.lex_state = 3}, - [2679] = {.lex_state = 3}, - [2680] = {.lex_state = 3}, - [2681] = {.lex_state = 3}, - [2682] = {.lex_state = 3}, - [2683] = {.lex_state = 3}, - [2684] = {.lex_state = 3}, - [2685] = {.lex_state = 3}, - [2686] = {.lex_state = 3}, - [2687] = {.lex_state = 3}, - [2688] = {.lex_state = 3}, - [2689] = {.lex_state = 3}, - [2690] = {.lex_state = 3}, - [2691] = {.lex_state = 3}, - [2692] = {.lex_state = 3}, - [2693] = {.lex_state = 3}, - [2694] = {.lex_state = 3}, - [2695] = {.lex_state = 3}, - [2696] = {.lex_state = 3}, - [2697] = {.lex_state = 3}, - [2698] = {.lex_state = 3}, - [2699] = {.lex_state = 3}, - [2700] = {.lex_state = 3}, - [2701] = {.lex_state = 3}, - [2702] = {.lex_state = 3}, - [2703] = {.lex_state = 3}, - [2704] = {.lex_state = 3}, - [2705] = {.lex_state = 3}, - [2706] = {.lex_state = 3}, - [2707] = {.lex_state = 3}, - [2708] = {.lex_state = 3}, - [2709] = {.lex_state = 3}, - [2710] = {.lex_state = 3}, - [2711] = {.lex_state = 3}, - [2712] = {.lex_state = 3}, - [2713] = {.lex_state = 3}, - [2714] = {.lex_state = 3}, - [2715] = {.lex_state = 3}, - [2716] = {.lex_state = 3}, - [2717] = {.lex_state = 3}, - [2718] = {.lex_state = 3}, - [2719] = {.lex_state = 3}, - [2720] = {.lex_state = 3}, - [2721] = {.lex_state = 3}, - [2722] = {.lex_state = 3}, - [2723] = {.lex_state = 3}, - [2724] = {.lex_state = 3}, - [2725] = {.lex_state = 3}, - [2726] = {.lex_state = 3}, - [2727] = {.lex_state = 3}, - [2728] = {.lex_state = 3}, - [2729] = {.lex_state = 3}, - [2730] = {.lex_state = 3}, - [2731] = {.lex_state = 3}, - [2732] = {.lex_state = 3}, - [2733] = {.lex_state = 3}, - [2734] = {.lex_state = 3}, - [2735] = {.lex_state = 3}, - [2736] = {.lex_state = 3}, - [2737] = {.lex_state = 3}, - [2738] = {.lex_state = 3}, - [2739] = {.lex_state = 3}, - [2740] = {.lex_state = 3}, - [2741] = {.lex_state = 3}, - [2742] = {.lex_state = 3}, - [2743] = {.lex_state = 3}, - [2744] = {.lex_state = 3}, - [2745] = {.lex_state = 3}, - [2746] = {.lex_state = 3}, - [2747] = {.lex_state = 3}, - [2748] = {.lex_state = 3}, - [2749] = {.lex_state = 3}, - [2750] = {.lex_state = 3}, - [2751] = {.lex_state = 3}, - [2752] = {.lex_state = 3}, - [2753] = {.lex_state = 3}, - [2754] = {.lex_state = 3}, - [2755] = {.lex_state = 3}, - [2756] = {.lex_state = 3}, - [2757] = {.lex_state = 3}, - [2758] = {.lex_state = 3}, - [2759] = {.lex_state = 3}, - [2760] = {.lex_state = 3}, - [2761] = {.lex_state = 3}, - [2762] = {.lex_state = 3}, - [2763] = {.lex_state = 3}, - [2764] = {.lex_state = 3}, - [2765] = {.lex_state = 3}, - [2766] = {.lex_state = 3}, - [2767] = {.lex_state = 3}, - [2768] = {.lex_state = 3}, - [2769] = {.lex_state = 3}, - [2770] = {.lex_state = 3}, - [2771] = {.lex_state = 3}, - [2772] = {.lex_state = 3}, - [2773] = {.lex_state = 3}, - [2774] = {.lex_state = 3}, - [2775] = {.lex_state = 3}, - [2776] = {.lex_state = 3}, - [2777] = {.lex_state = 3}, - [2778] = {.lex_state = 3}, - [2779] = {.lex_state = 3}, - [2780] = {.lex_state = 3}, - [2781] = {.lex_state = 3}, - [2782] = {.lex_state = 3}, - [2783] = {.lex_state = 3}, - [2784] = {.lex_state = 3}, - [2785] = {.lex_state = 3}, - [2786] = {.lex_state = 3}, - [2787] = {.lex_state = 3}, - [2788] = {.lex_state = 3}, - [2789] = {.lex_state = 3}, - [2790] = {.lex_state = 3}, - [2791] = {.lex_state = 3}, - [2792] = {.lex_state = 3}, - [2793] = {.lex_state = 3}, - [2794] = {.lex_state = 3}, - [2795] = {.lex_state = 3}, - [2796] = {.lex_state = 3}, - [2797] = {.lex_state = 3}, - [2798] = {.lex_state = 3}, - [2799] = {.lex_state = 3}, - [2800] = {.lex_state = 3}, - [2801] = {.lex_state = 3}, - [2802] = {.lex_state = 3}, - [2803] = {.lex_state = 3}, - [2804] = {.lex_state = 3}, - [2805] = {.lex_state = 3}, - [2806] = {.lex_state = 3}, - [2807] = {.lex_state = 3}, - [2808] = {.lex_state = 3}, - [2809] = {.lex_state = 3}, - [2810] = {.lex_state = 3}, - [2811] = {.lex_state = 3}, - [2812] = {.lex_state = 3}, - [2813] = {.lex_state = 3}, - [2814] = {.lex_state = 3}, - [2815] = {.lex_state = 3}, - [2816] = {.lex_state = 3}, - [2817] = {.lex_state = 3}, - [2818] = {.lex_state = 3}, - [2819] = {.lex_state = 3}, - [2820] = {.lex_state = 3}, - [2821] = {.lex_state = 3}, - [2822] = {.lex_state = 3}, - [2823] = {.lex_state = 3}, - [2824] = {.lex_state = 3}, - [2825] = {.lex_state = 3}, - [2826] = {.lex_state = 3}, - [2827] = {.lex_state = 3}, - [2828] = {.lex_state = 3}, - [2829] = {.lex_state = 3}, - [2830] = {.lex_state = 3}, - [2831] = {.lex_state = 3}, - [2832] = {.lex_state = 3}, - [2833] = {.lex_state = 3}, - [2834] = {.lex_state = 3}, - [2835] = {.lex_state = 3}, - [2836] = {.lex_state = 3}, - [2837] = {.lex_state = 3}, - [2838] = {.lex_state = 3}, - [2839] = {.lex_state = 3}, - [2840] = {.lex_state = 3}, - [2841] = {.lex_state = 3}, - [2842] = {.lex_state = 3}, - [2843] = {.lex_state = 3}, - [2844] = {.lex_state = 3}, - [2845] = {.lex_state = 3}, - [2846] = {.lex_state = 3}, - [2847] = {.lex_state = 3}, - [2848] = {.lex_state = 3}, - [2849] = {.lex_state = 3}, - [2850] = {.lex_state = 3}, - [2851] = {.lex_state = 3}, - [2852] = {.lex_state = 3}, - [2853] = {.lex_state = 3}, - [2854] = {.lex_state = 3}, - [2855] = {.lex_state = 3}, - [2856] = {.lex_state = 3}, - [2857] = {.lex_state = 3}, - [2858] = {.lex_state = 3}, - [2859] = {.lex_state = 3}, - [2860] = {.lex_state = 3}, - [2861] = {.lex_state = 3}, - [2862] = {.lex_state = 3}, - [2863] = {.lex_state = 3}, - [2864] = {.lex_state = 3}, - [2865] = {.lex_state = 3}, - [2866] = {.lex_state = 3}, - [2867] = {.lex_state = 3}, - [2868] = {.lex_state = 3}, - [2869] = {.lex_state = 3}, - [2870] = {.lex_state = 3}, - [2871] = {.lex_state = 3}, - [2872] = {.lex_state = 3}, - [2873] = {.lex_state = 3}, - [2874] = {.lex_state = 3}, - [2875] = {.lex_state = 3}, - [2876] = {.lex_state = 3}, - [2877] = {.lex_state = 3}, - [2878] = {.lex_state = 3}, - [2879] = {.lex_state = 3}, - [2880] = {.lex_state = 3}, - [2881] = {.lex_state = 3}, - [2882] = {.lex_state = 3}, - [2883] = {.lex_state = 3}, - [2884] = {.lex_state = 3}, - [2885] = {.lex_state = 3}, - [2886] = {.lex_state = 3}, - [2887] = {.lex_state = 3}, - [2888] = {.lex_state = 3}, - [2889] = {.lex_state = 3}, - [2890] = {.lex_state = 3}, - [2891] = {.lex_state = 3}, - [2892] = {.lex_state = 3}, - [2893] = {.lex_state = 3}, - [2894] = {.lex_state = 3}, - [2895] = {.lex_state = 3}, - [2896] = {.lex_state = 3}, - [2897] = {.lex_state = 3}, - [2898] = {.lex_state = 3}, - [2899] = {.lex_state = 3}, - [2900] = {.lex_state = 3}, - [2901] = {.lex_state = 3}, - [2902] = {.lex_state = 3}, - [2903] = {.lex_state = 3}, - [2904] = {.lex_state = 3}, - [2905] = {.lex_state = 3}, - [2906] = {.lex_state = 3}, - [2907] = {.lex_state = 3}, - [2908] = {.lex_state = 3}, - [2909] = {.lex_state = 3}, - [2910] = {.lex_state = 3}, - [2911] = {.lex_state = 3}, - [2912] = {.lex_state = 3}, - [2913] = {.lex_state = 3}, - [2914] = {.lex_state = 3}, - [2915] = {.lex_state = 3}, - [2916] = {.lex_state = 3}, - [2917] = {.lex_state = 3}, - [2918] = {.lex_state = 3}, - [2919] = {.lex_state = 3}, - [2920] = {.lex_state = 3}, - [2921] = {.lex_state = 3}, - [2922] = {.lex_state = 3}, - [2923] = {.lex_state = 3}, - [2924] = {.lex_state = 3}, - [2925] = {.lex_state = 3}, - [2926] = {.lex_state = 3}, - [2927] = {.lex_state = 3}, - [2928] = {.lex_state = 3}, - [2929] = {.lex_state = 3}, - [2930] = {.lex_state = 3}, - [2931] = {.lex_state = 3}, - [2932] = {.lex_state = 3}, - [2933] = {.lex_state = 3}, - [2934] = {.lex_state = 3}, - [2935] = {.lex_state = 3}, - [2936] = {.lex_state = 3}, - [2937] = {.lex_state = 3}, - [2938] = {.lex_state = 3}, - [2939] = {.lex_state = 3}, - [2940] = {.lex_state = 3}, - [2941] = {.lex_state = 3}, - [2942] = {.lex_state = 3}, - [2943] = {.lex_state = 3}, - [2944] = {.lex_state = 3}, - [2945] = {.lex_state = 3}, - [2946] = {.lex_state = 3}, - [2947] = {.lex_state = 3}, - [2948] = {.lex_state = 3}, - [2949] = {.lex_state = 3}, - [2950] = {.lex_state = 3}, - [2951] = {.lex_state = 3}, - [2952] = {.lex_state = 3}, - [2953] = {.lex_state = 3}, - [2954] = {.lex_state = 3}, - [2955] = {.lex_state = 3}, - [2956] = {.lex_state = 3}, - [2957] = {.lex_state = 3}, - [2958] = {.lex_state = 3}, - [2959] = {.lex_state = 3}, - [2960] = {.lex_state = 3}, + [2205] = {.lex_state = 22}, + [2206] = {.lex_state = 22}, + [2207] = {.lex_state = 22}, + [2208] = {.lex_state = 22}, + [2209] = {.lex_state = 25}, + [2210] = {.lex_state = 25}, + [2211] = {.lex_state = 25}, + [2212] = {.lex_state = 25}, + [2213] = {.lex_state = 22}, + [2214] = {.lex_state = 22}, + [2215] = {.lex_state = 25}, + [2216] = {.lex_state = 25}, + [2217] = {.lex_state = 22}, + [2218] = {.lex_state = 25}, + [2219] = {.lex_state = 22}, + [2220] = {.lex_state = 22}, + [2221] = {.lex_state = 22}, + [2222] = {.lex_state = 22}, + [2223] = {.lex_state = 22}, + [2224] = {.lex_state = 22}, + [2225] = {.lex_state = 22}, + [2226] = {.lex_state = 22}, + [2227] = {.lex_state = 22}, + [2228] = {.lex_state = 22}, + [2229] = {.lex_state = 22}, + [2230] = {.lex_state = 25}, + [2231] = {.lex_state = 25}, + [2232] = {.lex_state = 25}, + [2233] = {.lex_state = 22}, + [2234] = {.lex_state = 22}, + [2235] = {.lex_state = 25}, + [2236] = {.lex_state = 25}, + [2237] = {.lex_state = 22}, + [2238] = {.lex_state = 22}, + [2239] = {.lex_state = 25}, + [2240] = {.lex_state = 22}, + [2241] = {.lex_state = 22}, + [2242] = {.lex_state = 22}, + [2243] = {.lex_state = 22}, + [2244] = {.lex_state = 22}, + [2245] = {.lex_state = 22}, + [2246] = {.lex_state = 22}, + [2247] = {.lex_state = 22}, + [2248] = {.lex_state = 22}, + [2249] = {.lex_state = 22}, + [2250] = {.lex_state = 22}, + [2251] = {.lex_state = 22}, + [2252] = {.lex_state = 22}, + [2253] = {.lex_state = 22}, + [2254] = {.lex_state = 22}, + [2255] = {.lex_state = 25}, + [2256] = {.lex_state = 25}, + [2257] = {.lex_state = 25}, + [2258] = {.lex_state = 22}, + [2259] = {.lex_state = 25}, + [2260] = {.lex_state = 25}, + [2261] = {.lex_state = 22}, + [2262] = {.lex_state = 22}, + [2263] = {.lex_state = 25}, + [2264] = {.lex_state = 22}, + [2265] = {.lex_state = 22}, + [2266] = {.lex_state = 22}, + [2267] = {.lex_state = 22}, + [2268] = {.lex_state = 22}, + [2269] = {.lex_state = 22}, + [2270] = {.lex_state = 22}, + [2271] = {.lex_state = 22}, + [2272] = {.lex_state = 22}, + [2273] = {.lex_state = 22}, + [2274] = {.lex_state = 22}, + [2275] = {.lex_state = 22}, + [2276] = {.lex_state = 22}, + [2277] = {.lex_state = 22}, + [2278] = {.lex_state = 22}, + [2279] = {.lex_state = 22}, + [2280] = {.lex_state = 22}, + [2281] = {.lex_state = 22}, + [2282] = {.lex_state = 22}, + [2283] = {.lex_state = 22}, + [2284] = {.lex_state = 22}, + [2285] = {.lex_state = 25}, + [2286] = {.lex_state = 22}, + [2287] = {.lex_state = 25}, + [2288] = {.lex_state = 25}, + [2289] = {.lex_state = 22}, + [2290] = {.lex_state = 22}, + [2291] = {.lex_state = 22}, + [2292] = {.lex_state = 22}, + [2293] = {.lex_state = 25}, + [2294] = {.lex_state = 25}, + [2295] = {.lex_state = 22}, + [2296] = {.lex_state = 22}, + [2297] = {.lex_state = 22}, + [2298] = {.lex_state = 22}, + [2299] = {.lex_state = 25}, + [2300] = {.lex_state = 22}, + [2301] = {.lex_state = 22}, + [2302] = {.lex_state = 22}, + [2303] = {.lex_state = 22}, + [2304] = {.lex_state = 22}, + [2305] = {.lex_state = 22}, + [2306] = {.lex_state = 22}, + [2307] = {.lex_state = 22}, + [2308] = {.lex_state = 22}, + [2309] = {.lex_state = 22}, + [2310] = {.lex_state = 22}, + [2311] = {.lex_state = 22}, + [2312] = {.lex_state = 22}, + [2313] = {.lex_state = 22}, + [2314] = {.lex_state = 22}, + [2315] = {.lex_state = 22}, + [2316] = {.lex_state = 22}, + [2317] = {.lex_state = 22}, + [2318] = {.lex_state = 22}, + [2319] = {.lex_state = 22}, + [2320] = {.lex_state = 22}, + [2321] = {.lex_state = 22}, + [2322] = {.lex_state = 22}, + [2323] = {.lex_state = 22}, + [2324] = {.lex_state = 25}, + [2325] = {.lex_state = 25}, + [2326] = {.lex_state = 25}, + [2327] = {.lex_state = 22}, + [2328] = {.lex_state = 22}, + [2329] = {.lex_state = 25}, + [2330] = {.lex_state = 25}, + [2331] = {.lex_state = 22}, + [2332] = {.lex_state = 22}, + [2333] = {.lex_state = 22}, + [2334] = {.lex_state = 22}, + [2335] = {.lex_state = 25}, + [2336] = {.lex_state = 22}, + [2337] = {.lex_state = 22}, + [2338] = {.lex_state = 22}, + [2339] = {.lex_state = 22}, + [2340] = {.lex_state = 22}, + [2341] = {.lex_state = 22}, + [2342] = {.lex_state = 22}, + [2343] = {.lex_state = 22}, + [2344] = {.lex_state = 22}, + [2345] = {.lex_state = 22}, + [2346] = {.lex_state = 22}, + [2347] = {.lex_state = 22}, + [2348] = {.lex_state = 22}, + [2349] = {.lex_state = 22}, + [2350] = {.lex_state = 22}, + [2351] = {.lex_state = 22}, + [2352] = {.lex_state = 22}, + [2353] = {.lex_state = 22}, + [2354] = {.lex_state = 22}, + [2355] = {.lex_state = 22}, + [2356] = {.lex_state = 22}, + [2357] = {.lex_state = 22}, + [2358] = {.lex_state = 22}, + [2359] = {.lex_state = 22}, + [2360] = {.lex_state = 25}, + [2361] = {.lex_state = 25}, + [2362] = {.lex_state = 25}, + [2363] = {.lex_state = 22}, + [2364] = {.lex_state = 22}, + [2365] = {.lex_state = 25}, + [2366] = {.lex_state = 25}, + [2367] = {.lex_state = 22}, + [2368] = {.lex_state = 22}, + [2369] = {.lex_state = 22}, + [2370] = {.lex_state = 22}, + [2371] = {.lex_state = 25}, + [2372] = {.lex_state = 22}, + [2373] = {.lex_state = 22}, + [2374] = {.lex_state = 22}, + [2375] = {.lex_state = 22}, + [2376] = {.lex_state = 22}, + [2377] = {.lex_state = 22}, + [2378] = {.lex_state = 22}, + [2379] = {.lex_state = 22}, + [2380] = {.lex_state = 22}, + [2381] = {.lex_state = 22}, + [2382] = {.lex_state = 22}, + [2383] = {.lex_state = 22}, + [2384] = {.lex_state = 22}, + [2385] = {.lex_state = 22}, + [2386] = {.lex_state = 22}, + [2387] = {.lex_state = 22}, + [2388] = {.lex_state = 22}, + [2389] = {.lex_state = 22}, + [2390] = {.lex_state = 22}, + [2391] = {.lex_state = 22}, + [2392] = {.lex_state = 22}, + [2393] = {.lex_state = 22}, + [2394] = {.lex_state = 22}, + [2395] = {.lex_state = 22}, + [2396] = {.lex_state = 25}, + [2397] = {.lex_state = 25}, + [2398] = {.lex_state = 25}, + [2399] = {.lex_state = 22}, + [2400] = {.lex_state = 22}, + [2401] = {.lex_state = 25}, + [2402] = {.lex_state = 25}, + [2403] = {.lex_state = 22}, + [2404] = {.lex_state = 22}, + [2405] = {.lex_state = 22}, + [2406] = {.lex_state = 22}, + [2407] = {.lex_state = 25}, + [2408] = {.lex_state = 22}, + [2409] = {.lex_state = 22}, + [2410] = {.lex_state = 22}, + [2411] = {.lex_state = 22}, + [2412] = {.lex_state = 22}, + [2413] = {.lex_state = 22}, + [2414] = {.lex_state = 22}, + [2415] = {.lex_state = 22}, + [2416] = {.lex_state = 22}, + [2417] = {.lex_state = 22}, + [2418] = {.lex_state = 22}, + [2419] = {.lex_state = 22}, + [2420] = {.lex_state = 22}, + [2421] = {.lex_state = 22}, + [2422] = {.lex_state = 22}, + [2423] = {.lex_state = 22}, + [2424] = {.lex_state = 22}, + [2425] = {.lex_state = 22}, + [2426] = {.lex_state = 22}, + [2427] = {.lex_state = 22}, + [2428] = {.lex_state = 22}, + [2429] = {.lex_state = 22}, + [2430] = {.lex_state = 22}, + [2431] = {.lex_state = 22}, + [2432] = {.lex_state = 25}, + [2433] = {.lex_state = 25}, + [2434] = {.lex_state = 25}, + [2435] = {.lex_state = 22}, + [2436] = {.lex_state = 22}, + [2437] = {.lex_state = 25}, + [2438] = {.lex_state = 25}, + [2439] = {.lex_state = 22}, + [2440] = {.lex_state = 22}, + [2441] = {.lex_state = 22}, + [2442] = {.lex_state = 22}, + [2443] = {.lex_state = 25}, + [2444] = {.lex_state = 22}, + [2445] = {.lex_state = 22}, + [2446] = {.lex_state = 22}, + [2447] = {.lex_state = 22}, + [2448] = {.lex_state = 22}, + [2449] = {.lex_state = 22}, + [2450] = {.lex_state = 22}, + [2451] = {.lex_state = 22}, + [2452] = {.lex_state = 22}, + [2453] = {.lex_state = 22}, + [2454] = {.lex_state = 22}, + [2455] = {.lex_state = 22}, + [2456] = {.lex_state = 22}, + [2457] = {.lex_state = 22}, + [2458] = {.lex_state = 22}, + [2459] = {.lex_state = 22}, + [2460] = {.lex_state = 22}, + [2461] = {.lex_state = 22}, + [2462] = {.lex_state = 22}, + [2463] = {.lex_state = 22}, + [2464] = {.lex_state = 22}, + [2465] = {.lex_state = 22}, + [2466] = {.lex_state = 22}, + [2467] = {.lex_state = 22}, + [2468] = {.lex_state = 25}, + [2469] = {.lex_state = 25}, + [2470] = {.lex_state = 25}, + [2471] = {.lex_state = 22}, + [2472] = {.lex_state = 22}, + [2473] = {.lex_state = 25}, + [2474] = {.lex_state = 25}, + [2475] = {.lex_state = 22}, + [2476] = {.lex_state = 22}, + [2477] = {.lex_state = 22}, + [2478] = {.lex_state = 22}, + [2479] = {.lex_state = 25}, + [2480] = {.lex_state = 22}, + [2481] = {.lex_state = 22}, + [2482] = {.lex_state = 22}, + [2483] = {.lex_state = 22}, + [2484] = {.lex_state = 22}, + [2485] = {.lex_state = 22}, + [2486] = {.lex_state = 22}, + [2487] = {.lex_state = 22}, + [2488] = {.lex_state = 22}, + [2489] = {.lex_state = 22}, + [2490] = {.lex_state = 22}, + [2491] = {.lex_state = 22}, + [2492] = {.lex_state = 22}, + [2493] = {.lex_state = 22}, + [2494] = {.lex_state = 22}, + [2495] = {.lex_state = 22}, + [2496] = {.lex_state = 22}, + [2497] = {.lex_state = 22}, + [2498] = {.lex_state = 25}, + [2499] = {.lex_state = 25}, + [2500] = {.lex_state = 25}, + [2501] = {.lex_state = 25}, + [2502] = {.lex_state = 25}, + [2503] = {.lex_state = 25}, + [2504] = {.lex_state = 22}, + [2505] = {.lex_state = 22}, + [2506] = {.lex_state = 22}, + [2507] = {.lex_state = 25}, + [2508] = {.lex_state = 25}, + [2509] = {.lex_state = 25}, + [2510] = {.lex_state = 22}, + [2511] = {.lex_state = 25}, + [2512] = {.lex_state = 25}, + [2513] = {.lex_state = 22}, + [2514] = {.lex_state = 22}, + [2515] = {.lex_state = 25}, + [2516] = {.lex_state = 25}, + [2517] = {.lex_state = 25}, + [2518] = {.lex_state = 25}, + [2519] = {.lex_state = 25}, + [2520] = {.lex_state = 25}, + [2521] = {.lex_state = 25}, + [2522] = {.lex_state = 22}, + [2523] = {.lex_state = 22}, + [2524] = {.lex_state = 22}, + [2525] = {.lex_state = 22}, + [2526] = {.lex_state = 22}, + [2527] = {.lex_state = 22}, + [2528] = {.lex_state = 22}, + [2529] = {.lex_state = 22}, + [2530] = {.lex_state = 22}, + [2531] = {.lex_state = 22}, + [2532] = {.lex_state = 25}, + [2533] = {.lex_state = 25}, + [2534] = {.lex_state = 22}, + [2535] = {.lex_state = 22}, + [2536] = {.lex_state = 22}, + [2537] = {.lex_state = 22}, + [2538] = {.lex_state = 25}, + [2539] = {.lex_state = 25}, + [2540] = {.lex_state = 25}, + [2541] = {.lex_state = 25}, + [2542] = {.lex_state = 25}, + [2543] = {.lex_state = 25}, + [2544] = {.lex_state = 22}, + [2545] = {.lex_state = 22}, + [2546] = {.lex_state = 22}, + [2547] = {.lex_state = 22}, + [2548] = {.lex_state = 22}, + [2549] = {.lex_state = 22}, + [2550] = {.lex_state = 22}, + [2551] = {.lex_state = 22}, + [2552] = {.lex_state = 22}, + [2553] = {.lex_state = 22}, + [2554] = {.lex_state = 22}, + [2555] = {.lex_state = 22}, + [2556] = {.lex_state = 22}, + [2557] = {.lex_state = 25}, + [2558] = {.lex_state = 22}, + [2559] = {.lex_state = 22}, + [2560] = {.lex_state = 25}, + [2561] = {.lex_state = 25}, + [2562] = {.lex_state = 25}, + [2563] = {.lex_state = 22}, + [2564] = {.lex_state = 22}, + [2565] = {.lex_state = 22}, + [2566] = {.lex_state = 25}, + [2567] = {.lex_state = 25}, + [2568] = {.lex_state = 25}, + [2569] = {.lex_state = 22}, + [2570] = {.lex_state = 22}, + [2571] = {.lex_state = 22}, + [2572] = {.lex_state = 22}, + [2573] = {.lex_state = 22}, + [2574] = {.lex_state = 25}, + [2575] = {.lex_state = 22}, + [2576] = {.lex_state = 22}, + [2577] = {.lex_state = 22}, + [2578] = {.lex_state = 22}, + [2579] = {.lex_state = 22}, + [2580] = {.lex_state = 22}, + [2581] = {.lex_state = 22}, + [2582] = {.lex_state = 22}, + [2583] = {.lex_state = 22}, + [2584] = {.lex_state = 22}, + [2585] = {.lex_state = 22}, + [2586] = {.lex_state = 22}, + [2587] = {.lex_state = 22}, + [2588] = {.lex_state = 22}, + [2589] = {.lex_state = 22}, + [2590] = {.lex_state = 22}, + [2591] = {.lex_state = 22}, + [2592] = {.lex_state = 22}, + [2593] = {.lex_state = 22}, + [2594] = {.lex_state = 22}, + [2595] = {.lex_state = 22}, + [2596] = {.lex_state = 22}, + [2597] = {.lex_state = 22}, + [2598] = {.lex_state = 22}, + [2599] = {.lex_state = 22}, + [2600] = {.lex_state = 22}, + [2601] = {.lex_state = 22}, + [2602] = {.lex_state = 22}, + [2603] = {.lex_state = 22}, + [2604] = {.lex_state = 22}, + [2605] = {.lex_state = 25}, + [2606] = {.lex_state = 22}, + [2607] = {.lex_state = 25}, + [2608] = {.lex_state = 25}, + [2609] = {.lex_state = 22}, + [2610] = {.lex_state = 22}, + [2611] = {.lex_state = 25}, + [2612] = {.lex_state = 25}, + [2613] = {.lex_state = 22}, + [2614] = {.lex_state = 25}, + [2615] = {.lex_state = 25}, + [2616] = {.lex_state = 22}, + [2617] = {.lex_state = 22}, + [2618] = {.lex_state = 22}, + [2619] = {.lex_state = 22}, + [2620] = {.lex_state = 25}, + [2621] = {.lex_state = 25}, + [2622] = {.lex_state = 22}, + [2623] = {.lex_state = 22}, + [2624] = {.lex_state = 22}, + [2625] = {.lex_state = 25}, + [2626] = {.lex_state = 25}, + [2627] = {.lex_state = 25}, + [2628] = {.lex_state = 25}, + [2629] = {.lex_state = 25}, + [2630] = {.lex_state = 25}, + [2631] = {.lex_state = 25}, + [2632] = {.lex_state = 25}, + [2633] = {.lex_state = 22}, + [2634] = {.lex_state = 22}, + [2635] = {.lex_state = 22}, + [2636] = {.lex_state = 22}, + [2637] = {.lex_state = 22}, + [2638] = {.lex_state = 25}, + [2639] = {.lex_state = 25}, + [2640] = {.lex_state = 25}, + [2641] = {.lex_state = 25}, + [2642] = {.lex_state = 25}, + [2643] = {.lex_state = 25}, + [2644] = {.lex_state = 25}, + [2645] = {.lex_state = 22}, + [2646] = {.lex_state = 22}, + [2647] = {.lex_state = 25}, + [2648] = {.lex_state = 22}, + [2649] = {.lex_state = 22}, + [2650] = {.lex_state = 25}, + [2651] = {.lex_state = 25}, + [2652] = {.lex_state = 25}, + [2653] = {.lex_state = 25}, + [2654] = {.lex_state = 25}, + [2655] = {.lex_state = 22}, + [2656] = {.lex_state = 25}, + [2657] = {.lex_state = 22}, + [2658] = {.lex_state = 22}, + [2659] = {.lex_state = 22}, + [2660] = {.lex_state = 22}, + [2661] = {.lex_state = 25}, + [2662] = {.lex_state = 25}, + [2663] = {.lex_state = 25}, + [2664] = {.lex_state = 25}, + [2665] = {.lex_state = 25}, + [2666] = {.lex_state = 25}, + [2667] = {.lex_state = 22}, + [2668] = {.lex_state = 22}, + [2669] = {.lex_state = 22}, + [2670] = {.lex_state = 22}, + [2671] = {.lex_state = 25}, + [2672] = {.lex_state = 25}, + [2673] = {.lex_state = 25}, + [2674] = {.lex_state = 25}, + [2675] = {.lex_state = 25}, + [2676] = {.lex_state = 25}, + [2677] = {.lex_state = 25}, + [2678] = {.lex_state = 25}, + [2679] = {.lex_state = 25}, + [2680] = {.lex_state = 25}, + [2681] = {.lex_state = 25}, + [2682] = {.lex_state = 25}, + [2683] = {.lex_state = 25}, + [2684] = {.lex_state = 25}, + [2685] = {.lex_state = 25}, + [2686] = {.lex_state = 22}, + [2687] = {.lex_state = 22}, + [2688] = {.lex_state = 25}, + [2689] = {.lex_state = 25}, + [2690] = {.lex_state = 25}, + [2691] = {.lex_state = 25}, + [2692] = {.lex_state = 25}, + [2693] = {.lex_state = 25}, + [2694] = {.lex_state = 25}, + [2695] = {.lex_state = 25}, + [2696] = {.lex_state = 22}, + [2697] = {.lex_state = 22}, + [2698] = {.lex_state = 25}, + [2699] = {.lex_state = 25}, + [2700] = {.lex_state = 25}, + [2701] = {.lex_state = 25}, + [2702] = {.lex_state = 25}, + [2703] = {.lex_state = 22}, + [2704] = {.lex_state = 25}, + [2705] = {.lex_state = 25}, + [2706] = {.lex_state = 25}, + [2707] = {.lex_state = 25}, + [2708] = {.lex_state = 25}, + [2709] = {.lex_state = 25}, + [2710] = {.lex_state = 25}, + [2711] = {.lex_state = 25}, + [2712] = {.lex_state = 22}, + [2713] = {.lex_state = 22}, + [2714] = {.lex_state = 22}, + [2715] = {.lex_state = 25}, + [2716] = {.lex_state = 25}, + [2717] = {.lex_state = 25}, + [2718] = {.lex_state = 25}, + [2719] = {.lex_state = 25}, + [2720] = {.lex_state = 25}, + [2721] = {.lex_state = 22}, + [2722] = {.lex_state = 25}, + [2723] = {.lex_state = 25}, + [2724] = {.lex_state = 25}, + [2725] = {.lex_state = 25}, + [2726] = {.lex_state = 25}, + [2727] = {.lex_state = 25}, + [2728] = {.lex_state = 25}, + [2729] = {.lex_state = 25}, + [2730] = {.lex_state = 25}, + [2731] = {.lex_state = 25}, + [2732] = {.lex_state = 25}, + [2733] = {.lex_state = 25}, + [2734] = {.lex_state = 22}, + [2735] = {.lex_state = 22}, + [2736] = {.lex_state = 22}, + [2737] = {.lex_state = 25}, + [2738] = {.lex_state = 25}, + [2739] = {.lex_state = 25}, + [2740] = {.lex_state = 25}, + [2741] = {.lex_state = 25}, + [2742] = {.lex_state = 25}, + [2743] = {.lex_state = 22}, + [2744] = {.lex_state = 22}, + [2745] = {.lex_state = 22}, + [2746] = {.lex_state = 22}, + [2747] = {.lex_state = 25}, + [2748] = {.lex_state = 25}, + [2749] = {.lex_state = 25}, + [2750] = {.lex_state = 25}, + [2751] = {.lex_state = 25}, + [2752] = {.lex_state = 25}, + [2753] = {.lex_state = 22}, + [2754] = {.lex_state = 25}, + [2755] = {.lex_state = 25}, + [2756] = {.lex_state = 25}, + [2757] = {.lex_state = 25}, + [2758] = {.lex_state = 25}, + [2759] = {.lex_state = 25}, + [2760] = {.lex_state = 25}, + [2761] = {.lex_state = 25}, + [2762] = {.lex_state = 25}, + [2763] = {.lex_state = 25}, + [2764] = {.lex_state = 25}, + [2765] = {.lex_state = 25}, + [2766] = {.lex_state = 25}, + [2767] = {.lex_state = 25}, + [2768] = {.lex_state = 25}, + [2769] = {.lex_state = 25}, + [2770] = {.lex_state = 25}, + [2771] = {.lex_state = 25}, + [2772] = {.lex_state = 25}, + [2773] = {.lex_state = 25}, + [2774] = {.lex_state = 25}, + [2775] = {.lex_state = 25}, + [2776] = {.lex_state = 25}, + [2777] = {.lex_state = 25}, + [2778] = {.lex_state = 25}, + [2779] = {.lex_state = 25}, + [2780] = {.lex_state = 25}, + [2781] = {.lex_state = 25}, + [2782] = {.lex_state = 25}, + [2783] = {.lex_state = 25}, + [2784] = {.lex_state = 25}, + [2785] = {.lex_state = 25}, + [2786] = {.lex_state = 25}, + [2787] = {.lex_state = 25}, + [2788] = {.lex_state = 25}, + [2789] = {.lex_state = 25}, + [2790] = {.lex_state = 25}, + [2791] = {.lex_state = 25}, + [2792] = {.lex_state = 25}, + [2793] = {.lex_state = 25}, + [2794] = {.lex_state = 25}, + [2795] = {.lex_state = 25}, + [2796] = {.lex_state = 25}, + [2797] = {.lex_state = 25}, + [2798] = {.lex_state = 25}, + [2799] = {.lex_state = 25}, + [2800] = {.lex_state = 25}, + [2801] = {.lex_state = 25}, + [2802] = {.lex_state = 22}, + [2803] = {.lex_state = 25}, + [2804] = {.lex_state = 25}, + [2805] = {.lex_state = 25}, + [2806] = {.lex_state = 25}, + [2807] = {.lex_state = 25}, + [2808] = {.lex_state = 25}, + [2809] = {.lex_state = 25}, + [2810] = {.lex_state = 25}, + [2811] = {.lex_state = 25}, + [2812] = {.lex_state = 25}, + [2813] = {.lex_state = 25}, + [2814] = {.lex_state = 22}, + [2815] = {.lex_state = 22}, + [2816] = {.lex_state = 25}, + [2817] = {.lex_state = 25}, + [2818] = {.lex_state = 25}, + [2819] = {.lex_state = 25}, + [2820] = {.lex_state = 25}, + [2821] = {.lex_state = 25}, + [2822] = {.lex_state = 25}, + [2823] = {.lex_state = 25}, + [2824] = {.lex_state = 22}, + [2825] = {.lex_state = 22}, + [2826] = {.lex_state = 22}, + [2827] = {.lex_state = 25}, + [2828] = {.lex_state = 25}, + [2829] = {.lex_state = 25}, + [2830] = {.lex_state = 25}, + [2831] = {.lex_state = 25}, + [2832] = {.lex_state = 25}, + [2833] = {.lex_state = 25}, + [2834] = {.lex_state = 25}, + [2835] = {.lex_state = 25}, + [2836] = {.lex_state = 25}, + [2837] = {.lex_state = 25}, + [2838] = {.lex_state = 25}, + [2839] = {.lex_state = 25}, + [2840] = {.lex_state = 22}, + [2841] = {.lex_state = 22}, + [2842] = {.lex_state = 22}, + [2843] = {.lex_state = 22}, + [2844] = {.lex_state = 22}, + [2845] = {.lex_state = 22}, + [2846] = {.lex_state = 22}, + [2847] = {.lex_state = 22}, + [2848] = {.lex_state = 22}, + [2849] = {.lex_state = 22}, + [2850] = {.lex_state = 25}, + [2851] = {.lex_state = 25}, + [2852] = {.lex_state = 25}, + [2853] = {.lex_state = 25}, + [2854] = {.lex_state = 25}, + [2855] = {.lex_state = 25}, + [2856] = {.lex_state = 25}, + [2857] = {.lex_state = 25}, + [2858] = {.lex_state = 22}, + [2859] = {.lex_state = 22}, + [2860] = {.lex_state = 22}, + [2861] = {.lex_state = 22}, + [2862] = {.lex_state = 22}, + [2863] = {.lex_state = 21}, + [2864] = {.lex_state = 21}, + [2865] = {.lex_state = 25}, + [2866] = {.lex_state = 25}, + [2867] = {.lex_state = 21}, + [2868] = {.lex_state = 21}, + [2869] = {.lex_state = 21}, + [2870] = {.lex_state = 21}, + [2871] = {.lex_state = 21}, + [2872] = {.lex_state = 21}, + [2873] = {.lex_state = 21}, + [2874] = {.lex_state = 21}, + [2875] = {.lex_state = 21}, + [2876] = {.lex_state = 21}, + [2877] = {.lex_state = 21}, + [2878] = {.lex_state = 21}, + [2879] = {.lex_state = 21}, + [2880] = {.lex_state = 21}, + [2881] = {.lex_state = 21}, + [2882] = {.lex_state = 21}, + [2883] = {.lex_state = 21}, + [2884] = {.lex_state = 21}, + [2885] = {.lex_state = 21}, + [2886] = {.lex_state = 21}, + [2887] = {.lex_state = 21}, + [2888] = {.lex_state = 21}, + [2889] = {.lex_state = 21}, + [2890] = {.lex_state = 21}, + [2891] = {.lex_state = 21}, + [2892] = {.lex_state = 21}, + [2893] = {.lex_state = 21}, + [2894] = {.lex_state = 21}, + [2895] = {.lex_state = 21}, + [2896] = {.lex_state = 21}, + [2897] = {.lex_state = 21}, + [2898] = {.lex_state = 21}, + [2899] = {.lex_state = 21}, + [2900] = {.lex_state = 21}, + [2901] = {.lex_state = 21}, + [2902] = {.lex_state = 21}, + [2903] = {.lex_state = 21}, + [2904] = {.lex_state = 21}, + [2905] = {.lex_state = 21}, + [2906] = {.lex_state = 21}, + [2907] = {.lex_state = 21}, + [2908] = {.lex_state = 21}, + [2909] = {.lex_state = 21}, + [2910] = {.lex_state = 21}, + [2911] = {.lex_state = 21}, + [2912] = {.lex_state = 21}, + [2913] = {.lex_state = 21}, + [2914] = {.lex_state = 21}, + [2915] = {.lex_state = 21}, + [2916] = {.lex_state = 21}, + [2917] = {.lex_state = 21}, + [2918] = {.lex_state = 21}, + [2919] = {.lex_state = 21}, + [2920] = {.lex_state = 21}, + [2921] = {.lex_state = 22}, + [2922] = {.lex_state = 21}, + [2923] = {.lex_state = 21}, + [2924] = {.lex_state = 21}, + [2925] = {.lex_state = 21}, + [2926] = {.lex_state = 21}, + [2927] = {.lex_state = 21}, + [2928] = {.lex_state = 21}, + [2929] = {.lex_state = 21}, + [2930] = {.lex_state = 21}, + [2931] = {.lex_state = 21}, + [2932] = {.lex_state = 21}, + [2933] = {.lex_state = 21}, + [2934] = {.lex_state = 21}, + [2935] = {.lex_state = 21}, + [2936] = {.lex_state = 21}, + [2937] = {.lex_state = 21}, + [2938] = {.lex_state = 21}, + [2939] = {.lex_state = 21}, + [2940] = {.lex_state = 21}, + [2941] = {.lex_state = 21}, + [2942] = {.lex_state = 21}, + [2943] = {.lex_state = 21}, + [2944] = {.lex_state = 21}, + [2945] = {.lex_state = 21}, + [2946] = {.lex_state = 21}, + [2947] = {.lex_state = 21}, + [2948] = {.lex_state = 21}, + [2949] = {.lex_state = 21}, + [2950] = {.lex_state = 21}, + [2951] = {.lex_state = 21}, + [2952] = {.lex_state = 21}, + [2953] = {.lex_state = 21}, + [2954] = {.lex_state = 21}, + [2955] = {.lex_state = 21}, + [2956] = {.lex_state = 21}, + [2957] = {.lex_state = 21}, + [2958] = {.lex_state = 21}, + [2959] = {.lex_state = 21}, + [2960] = {.lex_state = 21}, [2961] = {.lex_state = 21}, [2962] = {.lex_state = 21}, - [2963] = {.lex_state = 6}, - [2964] = {.lex_state = 3}, + [2963] = {.lex_state = 21}, + [2964] = {.lex_state = 21}, [2965] = {.lex_state = 21}, [2966] = {.lex_state = 21}, [2967] = {.lex_state = 21}, [2968] = {.lex_state = 21}, - [2969] = {.lex_state = 3}, + [2969] = {.lex_state = 21}, [2970] = {.lex_state = 21}, [2971] = {.lex_state = 21}, - [2972] = {.lex_state = 21}, + [2972] = {.lex_state = 22}, [2973] = {.lex_state = 21}, - [2974] = {.lex_state = 21}, + [2974] = {.lex_state = 22}, [2975] = {.lex_state = 21}, [2976] = {.lex_state = 21}, [2977] = {.lex_state = 21}, @@ -14149,17 +25071,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2980] = {.lex_state = 21}, [2981] = {.lex_state = 21}, [2982] = {.lex_state = 21}, - [2983] = {.lex_state = 3}, - [2984] = {.lex_state = 3}, - [2985] = {.lex_state = 3}, - [2986] = {.lex_state = 3}, - [2987] = {.lex_state = 3}, - [2988] = {.lex_state = 3}, - [2989] = {.lex_state = 3}, - [2990] = {.lex_state = 3}, - [2991] = {.lex_state = 3}, - [2992] = {.lex_state = 21}, - [2993] = {.lex_state = 3}, + [2983] = {.lex_state = 21}, + [2984] = {.lex_state = 21}, + [2985] = {.lex_state = 21}, + [2986] = {.lex_state = 21}, + [2987] = {.lex_state = 21}, + [2988] = {.lex_state = 21}, + [2989] = {.lex_state = 21}, + [2990] = {.lex_state = 21}, + [2991] = {.lex_state = 21}, + [2992] = {.lex_state = 22}, + [2993] = {.lex_state = 21}, [2994] = {.lex_state = 21}, [2995] = {.lex_state = 21}, [2996] = {.lex_state = 21}, @@ -14221,7 +25143,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3052] = {.lex_state = 21}, [3053] = {.lex_state = 21}, [3054] = {.lex_state = 21}, - [3055] = {.lex_state = 21}, + [3055] = {.lex_state = 24}, [3056] = {.lex_state = 21}, [3057] = {.lex_state = 21}, [3058] = {.lex_state = 21}, @@ -14302,7 +25224,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3133] = {.lex_state = 21}, [3134] = {.lex_state = 21}, [3135] = {.lex_state = 21}, - [3136] = {.lex_state = 21}, + [3136] = {.lex_state = 24}, [3137] = {.lex_state = 21}, [3138] = {.lex_state = 21}, [3139] = {.lex_state = 21}, @@ -14347,168 +25269,168 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3178] = {.lex_state = 21}, [3179] = {.lex_state = 21}, [3180] = {.lex_state = 21}, - [3181] = {.lex_state = 21}, - [3182] = {.lex_state = 21}, + [3181] = {.lex_state = 24}, + [3182] = {.lex_state = 24}, [3183] = {.lex_state = 21}, [3184] = {.lex_state = 21}, [3185] = {.lex_state = 21}, [3186] = {.lex_state = 21}, - [3187] = {.lex_state = 22}, - [3188] = {.lex_state = 22}, - [3189] = {.lex_state = 22}, - [3190] = {.lex_state = 22}, - [3191] = {.lex_state = 22}, - [3192] = {.lex_state = 22}, - [3193] = {.lex_state = 22}, - [3194] = {.lex_state = 22}, - [3195] = {.lex_state = 22}, - [3196] = {.lex_state = 22}, - [3197] = {.lex_state = 22}, - [3198] = {.lex_state = 22}, - [3199] = {.lex_state = 22}, - [3200] = {.lex_state = 22}, - [3201] = {.lex_state = 22}, - [3202] = {.lex_state = 22}, - [3203] = {.lex_state = 22}, - [3204] = {.lex_state = 22}, - [3205] = {.lex_state = 22}, - [3206] = {.lex_state = 22}, - [3207] = {.lex_state = 22}, - [3208] = {.lex_state = 22}, - [3209] = {.lex_state = 22}, - [3210] = {.lex_state = 22}, - [3211] = {.lex_state = 22}, - [3212] = {.lex_state = 22}, - [3213] = {.lex_state = 22}, - [3214] = {.lex_state = 22}, - [3215] = {.lex_state = 22}, - [3216] = {.lex_state = 22}, - [3217] = {.lex_state = 22}, - [3218] = {.lex_state = 22}, - [3219] = {.lex_state = 22}, - [3220] = {.lex_state = 22}, - [3221] = {.lex_state = 22}, - [3222] = {.lex_state = 22}, - [3223] = {.lex_state = 22}, - [3224] = {.lex_state = 22}, - [3225] = {.lex_state = 22}, - [3226] = {.lex_state = 22}, - [3227] = {.lex_state = 22}, - [3228] = {.lex_state = 22}, - [3229] = {.lex_state = 22}, - [3230] = {.lex_state = 22}, - [3231] = {.lex_state = 22}, - [3232] = {.lex_state = 22}, - [3233] = {.lex_state = 22}, - [3234] = {.lex_state = 22}, - [3235] = {.lex_state = 22}, - [3236] = {.lex_state = 22}, - [3237] = {.lex_state = 22}, - [3238] = {.lex_state = 22}, - [3239] = {.lex_state = 22}, - [3240] = {.lex_state = 22}, - [3241] = {.lex_state = 22}, - [3242] = {.lex_state = 22}, - [3243] = {.lex_state = 22}, - [3244] = {.lex_state = 22}, - [3245] = {.lex_state = 22}, - [3246] = {.lex_state = 22}, - [3247] = {.lex_state = 22}, - [3248] = {.lex_state = 22}, - [3249] = {.lex_state = 22}, - [3250] = {.lex_state = 22}, - [3251] = {.lex_state = 22}, - [3252] = {.lex_state = 22}, - [3253] = {.lex_state = 22}, - [3254] = {.lex_state = 22}, - [3255] = {.lex_state = 22}, - [3256] = {.lex_state = 22}, - [3257] = {.lex_state = 22}, - [3258] = {.lex_state = 22}, - [3259] = {.lex_state = 22}, - [3260] = {.lex_state = 22}, - [3261] = {.lex_state = 22}, - [3262] = {.lex_state = 22}, - [3263] = {.lex_state = 22}, - [3264] = {.lex_state = 22}, - [3265] = {.lex_state = 22}, - [3266] = {.lex_state = 22}, - [3267] = {.lex_state = 22}, - [3268] = {.lex_state = 22}, - [3269] = {.lex_state = 22}, - [3270] = {.lex_state = 22}, - [3271] = {.lex_state = 22}, - [3272] = {.lex_state = 22}, - [3273] = {.lex_state = 22}, - [3274] = {.lex_state = 22}, - [3275] = {.lex_state = 22}, - [3276] = {.lex_state = 22}, - [3277] = {.lex_state = 22}, - [3278] = {.lex_state = 22}, - [3279] = {.lex_state = 22}, - [3280] = {.lex_state = 22}, - [3281] = {.lex_state = 22}, - [3282] = {.lex_state = 22}, - [3283] = {.lex_state = 22}, - [3284] = {.lex_state = 22}, - [3285] = {.lex_state = 22}, - [3286] = {.lex_state = 22}, - [3287] = {.lex_state = 22}, - [3288] = {.lex_state = 22}, - [3289] = {.lex_state = 22}, - [3290] = {.lex_state = 22}, - [3291] = {.lex_state = 22}, - [3292] = {.lex_state = 22}, - [3293] = {.lex_state = 22}, - [3294] = {.lex_state = 22}, - [3295] = {.lex_state = 22}, - [3296] = {.lex_state = 22}, - [3297] = {.lex_state = 22}, - [3298] = {.lex_state = 22}, - [3299] = {.lex_state = 22}, - [3300] = {.lex_state = 22}, - [3301] = {.lex_state = 22}, - [3302] = {.lex_state = 22}, - [3303] = {.lex_state = 22}, - [3304] = {.lex_state = 22}, - [3305] = {.lex_state = 22}, - [3306] = {.lex_state = 22}, - [3307] = {.lex_state = 22}, - [3308] = {.lex_state = 22}, - [3309] = {.lex_state = 22}, - [3310] = {.lex_state = 22}, - [3311] = {.lex_state = 22}, - [3312] = {.lex_state = 22}, - [3313] = {.lex_state = 22}, - [3314] = {.lex_state = 22}, - [3315] = {.lex_state = 22}, - [3316] = {.lex_state = 22}, - [3317] = {.lex_state = 22}, - [3318] = {.lex_state = 22}, - [3319] = {.lex_state = 22}, - [3320] = {.lex_state = 22}, - [3321] = {.lex_state = 22}, - [3322] = {.lex_state = 22}, - [3323] = {.lex_state = 22}, - [3324] = {.lex_state = 22}, - [3325] = {.lex_state = 22}, - [3326] = {.lex_state = 22}, - [3327] = {.lex_state = 22}, - [3328] = {.lex_state = 22}, - [3329] = {.lex_state = 22}, - [3330] = {.lex_state = 22}, - [3331] = {.lex_state = 22}, - [3332] = {.lex_state = 22}, - [3333] = {.lex_state = 22}, - [3334] = {.lex_state = 22}, - [3335] = {.lex_state = 22}, - [3336] = {.lex_state = 22}, - [3337] = {.lex_state = 22}, - [3338] = {.lex_state = 22}, - [3339] = {.lex_state = 22}, - [3340] = {.lex_state = 22}, - [3341] = {.lex_state = 22}, - [3342] = {.lex_state = 22}, + [3187] = {.lex_state = 21}, + [3188] = {.lex_state = 21}, + [3189] = {.lex_state = 21}, + [3190] = {.lex_state = 21}, + [3191] = {.lex_state = 21}, + [3192] = {.lex_state = 21}, + [3193] = {.lex_state = 21}, + [3194] = {.lex_state = 21}, + [3195] = {.lex_state = 21}, + [3196] = {.lex_state = 21}, + [3197] = {.lex_state = 21}, + [3198] = {.lex_state = 21}, + [3199] = {.lex_state = 21}, + [3200] = {.lex_state = 21}, + [3201] = {.lex_state = 21}, + [3202] = {.lex_state = 21}, + [3203] = {.lex_state = 21}, + [3204] = {.lex_state = 21}, + [3205] = {.lex_state = 21}, + [3206] = {.lex_state = 21}, + [3207] = {.lex_state = 21}, + [3208] = {.lex_state = 21}, + [3209] = {.lex_state = 21}, + [3210] = {.lex_state = 24}, + [3211] = {.lex_state = 21}, + [3212] = {.lex_state = 21}, + [3213] = {.lex_state = 21}, + [3214] = {.lex_state = 21}, + [3215] = {.lex_state = 21}, + [3216] = {.lex_state = 21}, + [3217] = {.lex_state = 21}, + [3218] = {.lex_state = 21}, + [3219] = {.lex_state = 21}, + [3220] = {.lex_state = 21}, + [3221] = {.lex_state = 21}, + [3222] = {.lex_state = 21}, + [3223] = {.lex_state = 21}, + [3224] = {.lex_state = 21}, + [3225] = {.lex_state = 21}, + [3226] = {.lex_state = 21}, + [3227] = {.lex_state = 21}, + [3228] = {.lex_state = 21}, + [3229] = {.lex_state = 21}, + [3230] = {.lex_state = 21}, + [3231] = {.lex_state = 21}, + [3232] = {.lex_state = 21}, + [3233] = {.lex_state = 21}, + [3234] = {.lex_state = 21}, + [3235] = {.lex_state = 21}, + [3236] = {.lex_state = 21}, + [3237] = {.lex_state = 21}, + [3238] = {.lex_state = 21}, + [3239] = {.lex_state = 21}, + [3240] = {.lex_state = 21}, + [3241] = {.lex_state = 21}, + [3242] = {.lex_state = 21}, + [3243] = {.lex_state = 21}, + [3244] = {.lex_state = 21}, + [3245] = {.lex_state = 21}, + [3246] = {.lex_state = 21}, + [3247] = {.lex_state = 21}, + [3248] = {.lex_state = 21}, + [3249] = {.lex_state = 21}, + [3250] = {.lex_state = 21}, + [3251] = {.lex_state = 21}, + [3252] = {.lex_state = 21}, + [3253] = {.lex_state = 21}, + [3254] = {.lex_state = 21}, + [3255] = {.lex_state = 21}, + [3256] = {.lex_state = 21}, + [3257] = {.lex_state = 21}, + [3258] = {.lex_state = 21}, + [3259] = {.lex_state = 21}, + [3260] = {.lex_state = 21}, + [3261] = {.lex_state = 21}, + [3262] = {.lex_state = 21}, + [3263] = {.lex_state = 21}, + [3264] = {.lex_state = 21}, + [3265] = {.lex_state = 21}, + [3266] = {.lex_state = 21}, + [3267] = {.lex_state = 21}, + [3268] = {.lex_state = 21}, + [3269] = {.lex_state = 21}, + [3270] = {.lex_state = 21}, + [3271] = {.lex_state = 21}, + [3272] = {.lex_state = 21}, + [3273] = {.lex_state = 21}, + [3274] = {.lex_state = 21}, + [3275] = {.lex_state = 21}, + [3276] = {.lex_state = 21}, + [3277] = {.lex_state = 21}, + [3278] = {.lex_state = 21}, + [3279] = {.lex_state = 21}, + [3280] = {.lex_state = 21}, + [3281] = {.lex_state = 21}, + [3282] = {.lex_state = 21}, + [3283] = {.lex_state = 21}, + [3284] = {.lex_state = 21}, + [3285] = {.lex_state = 21}, + [3286] = {.lex_state = 21}, + [3287] = {.lex_state = 21}, + [3288] = {.lex_state = 21}, + [3289] = {.lex_state = 21}, + [3290] = {.lex_state = 21}, + [3291] = {.lex_state = 21}, + [3292] = {.lex_state = 21}, + [3293] = {.lex_state = 21}, + [3294] = {.lex_state = 21}, + [3295] = {.lex_state = 21}, + [3296] = {.lex_state = 21}, + [3297] = {.lex_state = 21}, + [3298] = {.lex_state = 21}, + [3299] = {.lex_state = 21}, + [3300] = {.lex_state = 21}, + [3301] = {.lex_state = 21}, + [3302] = {.lex_state = 21}, + [3303] = {.lex_state = 21}, + [3304] = {.lex_state = 21}, + [3305] = {.lex_state = 21}, + [3306] = {.lex_state = 21}, + [3307] = {.lex_state = 21}, + [3308] = {.lex_state = 21}, + [3309] = {.lex_state = 21}, + [3310] = {.lex_state = 21}, + [3311] = {.lex_state = 21}, + [3312] = {.lex_state = 21}, + [3313] = {.lex_state = 21}, + [3314] = {.lex_state = 21}, + [3315] = {.lex_state = 21}, + [3316] = {.lex_state = 21}, + [3317] = {.lex_state = 21}, + [3318] = {.lex_state = 21}, + [3319] = {.lex_state = 21}, + [3320] = {.lex_state = 21}, + [3321] = {.lex_state = 21}, + [3322] = {.lex_state = 21}, + [3323] = {.lex_state = 21}, + [3324] = {.lex_state = 21}, + [3325] = {.lex_state = 21}, + [3326] = {.lex_state = 21}, + [3327] = {.lex_state = 21}, + [3328] = {.lex_state = 21}, + [3329] = {.lex_state = 21}, + [3330] = {.lex_state = 21}, + [3331] = {.lex_state = 21}, + [3332] = {.lex_state = 21}, + [3333] = {.lex_state = 21}, + [3334] = {.lex_state = 21}, + [3335] = {.lex_state = 21}, + [3336] = {.lex_state = 21}, + [3337] = {.lex_state = 21}, + [3338] = {.lex_state = 21}, + [3339] = {.lex_state = 21}, + [3340] = {.lex_state = 21}, + [3341] = {.lex_state = 21}, + [3342] = {.lex_state = 24}, [3343] = {.lex_state = 22}, [3344] = {.lex_state = 22}, [3345] = {.lex_state = 22}, @@ -14535,239 +25457,239 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3366] = {.lex_state = 22}, [3367] = {.lex_state = 22}, [3368] = {.lex_state = 22}, - [3369] = {.lex_state = 22}, - [3370] = {.lex_state = 22}, - [3371] = {.lex_state = 22}, - [3372] = {.lex_state = 22}, + [3369] = {.lex_state = 1}, + [3370] = {.lex_state = 1}, + [3371] = {.lex_state = 1}, + [3372] = {.lex_state = 1}, [3373] = {.lex_state = 22}, - [3374] = {.lex_state = 22}, - [3375] = {.lex_state = 22}, - [3376] = {.lex_state = 22}, + [3374] = {.lex_state = 1}, + [3375] = {.lex_state = 1}, + [3376] = {.lex_state = 1}, [3377] = {.lex_state = 22}, - [3378] = {.lex_state = 22}, - [3379] = {.lex_state = 22}, - [3380] = {.lex_state = 22}, - [3381] = {.lex_state = 22}, + [3378] = {.lex_state = 1}, + [3379] = {.lex_state = 1}, + [3380] = {.lex_state = 1}, + [3381] = {.lex_state = 1}, [3382] = {.lex_state = 22}, [3383] = {.lex_state = 22}, - [3384] = {.lex_state = 22}, - [3385] = {.lex_state = 22}, - [3386] = {.lex_state = 22}, - [3387] = {.lex_state = 22}, - [3388] = {.lex_state = 22}, - [3389] = {.lex_state = 22}, + [3384] = {.lex_state = 1}, + [3385] = {.lex_state = 1}, + [3386] = {.lex_state = 1}, + [3387] = {.lex_state = 1}, + [3388] = {.lex_state = 1}, + [3389] = {.lex_state = 1}, [3390] = {.lex_state = 22}, [3391] = {.lex_state = 22}, - [3392] = {.lex_state = 22}, - [3393] = {.lex_state = 22}, - [3394] = {.lex_state = 22}, - [3395] = {.lex_state = 22}, - [3396] = {.lex_state = 22}, - [3397] = {.lex_state = 22}, + [3392] = {.lex_state = 1}, + [3393] = {.lex_state = 1}, + [3394] = {.lex_state = 25}, + [3395] = {.lex_state = 1}, + [3396] = {.lex_state = 1}, + [3397] = {.lex_state = 1}, [3398] = {.lex_state = 22}, - [3399] = {.lex_state = 22}, + [3399] = {.lex_state = 1}, [3400] = {.lex_state = 22}, - [3401] = {.lex_state = 22}, - [3402] = {.lex_state = 22}, - [3403] = {.lex_state = 22}, - [3404] = {.lex_state = 22}, - [3405] = {.lex_state = 22}, - [3406] = {.lex_state = 22}, - [3407] = {.lex_state = 22}, - [3408] = {.lex_state = 22}, + [3401] = {.lex_state = 1}, + [3402] = {.lex_state = 1}, + [3403] = {.lex_state = 1}, + [3404] = {.lex_state = 1}, + [3405] = {.lex_state = 1}, + [3406] = {.lex_state = 1}, + [3407] = {.lex_state = 1}, + [3408] = {.lex_state = 1}, [3409] = {.lex_state = 22}, [3410] = {.lex_state = 22}, [3411] = {.lex_state = 22}, - [3412] = {.lex_state = 22}, - [3413] = {.lex_state = 22}, - [3414] = {.lex_state = 22}, - [3415] = {.lex_state = 22}, - [3416] = {.lex_state = 22}, - [3417] = {.lex_state = 22}, - [3418] = {.lex_state = 22}, - [3419] = {.lex_state = 22}, - [3420] = {.lex_state = 22}, - [3421] = {.lex_state = 22}, + [3412] = {.lex_state = 1}, + [3413] = {.lex_state = 1}, + [3414] = {.lex_state = 1}, + [3415] = {.lex_state = 1}, + [3416] = {.lex_state = 1}, + [3417] = {.lex_state = 25}, + [3418] = {.lex_state = 1}, + [3419] = {.lex_state = 1}, + [3420] = {.lex_state = 1}, + [3421] = {.lex_state = 1}, [3422] = {.lex_state = 22}, - [3423] = {.lex_state = 22}, - [3424] = {.lex_state = 22}, - [3425] = {.lex_state = 22}, - [3426] = {.lex_state = 22}, - [3427] = {.lex_state = 22}, - [3428] = {.lex_state = 22}, - [3429] = {.lex_state = 22}, - [3430] = {.lex_state = 22}, + [3423] = {.lex_state = 1}, + [3424] = {.lex_state = 1}, + [3425] = {.lex_state = 1}, + [3426] = {.lex_state = 1}, + [3427] = {.lex_state = 1}, + [3428] = {.lex_state = 1}, + [3429] = {.lex_state = 1}, + [3430] = {.lex_state = 1}, [3431] = {.lex_state = 22}, [3432] = {.lex_state = 22}, - [3433] = {.lex_state = 22}, - [3434] = {.lex_state = 22}, - [3435] = {.lex_state = 22}, - [3436] = {.lex_state = 22}, - [3437] = {.lex_state = 22}, - [3438] = {.lex_state = 22}, - [3439] = {.lex_state = 22}, - [3440] = {.lex_state = 22}, - [3441] = {.lex_state = 22}, - [3442] = {.lex_state = 22}, - [3443] = {.lex_state = 22}, - [3444] = {.lex_state = 22}, - [3445] = {.lex_state = 22}, - [3446] = {.lex_state = 22}, - [3447] = {.lex_state = 22}, - [3448] = {.lex_state = 22}, - [3449] = {.lex_state = 22}, - [3450] = {.lex_state = 22}, - [3451] = {.lex_state = 22}, - [3452] = {.lex_state = 22}, - [3453] = {.lex_state = 22}, - [3454] = {.lex_state = 22}, - [3455] = {.lex_state = 22}, - [3456] = {.lex_state = 22}, - [3457] = {.lex_state = 22}, - [3458] = {.lex_state = 22}, - [3459] = {.lex_state = 22}, - [3460] = {.lex_state = 22}, - [3461] = {.lex_state = 22}, - [3462] = {.lex_state = 22}, - [3463] = {.lex_state = 22}, - [3464] = {.lex_state = 22}, - [3465] = {.lex_state = 22}, - [3466] = {.lex_state = 22}, - [3467] = {.lex_state = 22}, - [3468] = {.lex_state = 22}, - [3469] = {.lex_state = 22}, - [3470] = {.lex_state = 22}, - [3471] = {.lex_state = 22}, - [3472] = {.lex_state = 22}, + [3433] = {.lex_state = 1}, + [3434] = {.lex_state = 1}, + [3435] = {.lex_state = 1}, + [3436] = {.lex_state = 1}, + [3437] = {.lex_state = 1}, + [3438] = {.lex_state = 1}, + [3439] = {.lex_state = 1}, + [3440] = {.lex_state = 1}, + [3441] = {.lex_state = 1}, + [3442] = {.lex_state = 1}, + [3443] = {.lex_state = 1}, + [3444] = {.lex_state = 1}, + [3445] = {.lex_state = 1}, + [3446] = {.lex_state = 1}, + [3447] = {.lex_state = 1}, + [3448] = {.lex_state = 1}, + [3449] = {.lex_state = 1}, + [3450] = {.lex_state = 1}, + [3451] = {.lex_state = 1}, + [3452] = {.lex_state = 1}, + [3453] = {.lex_state = 1}, + [3454] = {.lex_state = 1}, + [3455] = {.lex_state = 1}, + [3456] = {.lex_state = 1}, + [3457] = {.lex_state = 1}, + [3458] = {.lex_state = 1}, + [3459] = {.lex_state = 1}, + [3460] = {.lex_state = 1}, + [3461] = {.lex_state = 1}, + [3462] = {.lex_state = 1}, + [3463] = {.lex_state = 1}, + [3464] = {.lex_state = 1}, + [3465] = {.lex_state = 1}, + [3466] = {.lex_state = 1}, + [3467] = {.lex_state = 1}, + [3468] = {.lex_state = 1}, + [3469] = {.lex_state = 1}, + [3470] = {.lex_state = 1}, + [3471] = {.lex_state = 1}, + [3472] = {.lex_state = 1}, [3473] = {.lex_state = 1}, - [3474] = {.lex_state = 22}, - [3475] = {.lex_state = 22}, - [3476] = {.lex_state = 22}, - [3477] = {.lex_state = 22}, + [3474] = {.lex_state = 1}, + [3475] = {.lex_state = 1}, + [3476] = {.lex_state = 1}, + [3477] = {.lex_state = 1}, [3478] = {.lex_state = 1}, - [3479] = {.lex_state = 22}, - [3480] = {.lex_state = 22}, - [3481] = {.lex_state = 22}, - [3482] = {.lex_state = 22}, - [3483] = {.lex_state = 22}, - [3484] = {.lex_state = 22}, - [3485] = {.lex_state = 22}, - [3486] = {.lex_state = 22}, - [3487] = {.lex_state = 22}, - [3488] = {.lex_state = 22}, - [3489] = {.lex_state = 22}, - [3490] = {.lex_state = 22}, - [3491] = {.lex_state = 22}, - [3492] = {.lex_state = 22}, - [3493] = {.lex_state = 22}, - [3494] = {.lex_state = 22}, - [3495] = {.lex_state = 22}, - [3496] = {.lex_state = 22}, - [3497] = {.lex_state = 22}, - [3498] = {.lex_state = 22}, - [3499] = {.lex_state = 22}, - [3500] = {.lex_state = 22}, - [3501] = {.lex_state = 22}, - [3502] = {.lex_state = 22}, - [3503] = {.lex_state = 22}, + [3479] = {.lex_state = 1}, + [3480] = {.lex_state = 1}, + [3481] = {.lex_state = 1}, + [3482] = {.lex_state = 1}, + [3483] = {.lex_state = 1}, + [3484] = {.lex_state = 1}, + [3485] = {.lex_state = 1}, + [3486] = {.lex_state = 1}, + [3487] = {.lex_state = 1}, + [3488] = {.lex_state = 1}, + [3489] = {.lex_state = 1}, + [3490] = {.lex_state = 1}, + [3491] = {.lex_state = 1}, + [3492] = {.lex_state = 1}, + [3493] = {.lex_state = 1}, + [3494] = {.lex_state = 1}, + [3495] = {.lex_state = 1}, + [3496] = {.lex_state = 1}, + [3497] = {.lex_state = 1}, + [3498] = {.lex_state = 1}, + [3499] = {.lex_state = 1}, + [3500] = {.lex_state = 1}, + [3501] = {.lex_state = 1}, + [3502] = {.lex_state = 1}, + [3503] = {.lex_state = 1}, [3504] = {.lex_state = 1}, - [3505] = {.lex_state = 22}, - [3506] = {.lex_state = 22}, - [3507] = {.lex_state = 22}, - [3508] = {.lex_state = 22}, - [3509] = {.lex_state = 22}, + [3505] = {.lex_state = 1}, + [3506] = {.lex_state = 1}, + [3507] = {.lex_state = 1}, + [3508] = {.lex_state = 25}, + [3509] = {.lex_state = 1}, [3510] = {.lex_state = 1}, - [3511] = {.lex_state = 22}, - [3512] = {.lex_state = 22}, - [3513] = {.lex_state = 22}, - [3514] = {.lex_state = 22}, - [3515] = {.lex_state = 22}, - [3516] = {.lex_state = 22}, - [3517] = {.lex_state = 22}, - [3518] = {.lex_state = 22}, - [3519] = {.lex_state = 22}, - [3520] = {.lex_state = 22}, - [3521] = {.lex_state = 22}, - [3522] = {.lex_state = 22}, - [3523] = {.lex_state = 22}, - [3524] = {.lex_state = 22}, - [3525] = {.lex_state = 22}, - [3526] = {.lex_state = 22}, - [3527] = {.lex_state = 22}, - [3528] = {.lex_state = 22}, - [3529] = {.lex_state = 22}, + [3511] = {.lex_state = 1}, + [3512] = {.lex_state = 1}, + [3513] = {.lex_state = 1}, + [3514] = {.lex_state = 1}, + [3515] = {.lex_state = 1}, + [3516] = {.lex_state = 1}, + [3517] = {.lex_state = 1}, + [3518] = {.lex_state = 1}, + [3519] = {.lex_state = 1}, + [3520] = {.lex_state = 1}, + [3521] = {.lex_state = 1}, + [3522] = {.lex_state = 1}, + [3523] = {.lex_state = 1}, + [3524] = {.lex_state = 1}, + [3525] = {.lex_state = 1}, + [3526] = {.lex_state = 1}, + [3527] = {.lex_state = 1}, + [3528] = {.lex_state = 1}, + [3529] = {.lex_state = 1}, [3530] = {.lex_state = 1}, - [3531] = {.lex_state = 22}, - [3532] = {.lex_state = 22}, - [3533] = {.lex_state = 22}, - [3534] = {.lex_state = 22}, - [3535] = {.lex_state = 22}, - [3536] = {.lex_state = 22}, + [3531] = {.lex_state = 1}, + [3532] = {.lex_state = 1}, + [3533] = {.lex_state = 1}, + [3534] = {.lex_state = 1}, + [3535] = {.lex_state = 1}, + [3536] = {.lex_state = 1}, [3537] = {.lex_state = 22}, - [3538] = {.lex_state = 22}, - [3539] = {.lex_state = 22}, - [3540] = {.lex_state = 22}, - [3541] = {.lex_state = 22}, - [3542] = {.lex_state = 22}, - [3543] = {.lex_state = 22}, - [3544] = {.lex_state = 22}, - [3545] = {.lex_state = 22}, - [3546] = {.lex_state = 22}, - [3547] = {.lex_state = 22}, - [3548] = {.lex_state = 22}, - [3549] = {.lex_state = 22}, - [3550] = {.lex_state = 22}, - [3551] = {.lex_state = 22}, + [3538] = {.lex_state = 1}, + [3539] = {.lex_state = 1}, + [3540] = {.lex_state = 1}, + [3541] = {.lex_state = 1}, + [3542] = {.lex_state = 1}, + [3543] = {.lex_state = 1}, + [3544] = {.lex_state = 1}, + [3545] = {.lex_state = 1}, + [3546] = {.lex_state = 1}, + [3547] = {.lex_state = 1}, + [3548] = {.lex_state = 1}, + [3549] = {.lex_state = 1}, + [3550] = {.lex_state = 1}, + [3551] = {.lex_state = 1}, [3552] = {.lex_state = 22}, - [3553] = {.lex_state = 22}, - [3554] = {.lex_state = 22}, + [3553] = {.lex_state = 1}, + [3554] = {.lex_state = 1}, [3555] = {.lex_state = 1}, - [3556] = {.lex_state = 22}, + [3556] = {.lex_state = 1}, [3557] = {.lex_state = 22}, [3558] = {.lex_state = 22}, - [3559] = {.lex_state = 22}, - [3560] = {.lex_state = 22}, - [3561] = {.lex_state = 22}, + [3559] = {.lex_state = 1}, + [3560] = {.lex_state = 1}, + [3561] = {.lex_state = 1}, [3562] = {.lex_state = 1}, - [3563] = {.lex_state = 22}, - [3564] = {.lex_state = 22}, - [3565] = {.lex_state = 22}, - [3566] = {.lex_state = 22}, + [3563] = {.lex_state = 1}, + [3564] = {.lex_state = 1}, + [3565] = {.lex_state = 1}, + [3566] = {.lex_state = 1}, [3567] = {.lex_state = 22}, - [3568] = {.lex_state = 22}, - [3569] = {.lex_state = 22}, - [3570] = {.lex_state = 22}, + [3568] = {.lex_state = 1}, + [3569] = {.lex_state = 1}, + [3570] = {.lex_state = 1}, [3571] = {.lex_state = 22}, - [3572] = {.lex_state = 22}, - [3573] = {.lex_state = 22}, - [3574] = {.lex_state = 22}, - [3575] = {.lex_state = 22}, + [3572] = {.lex_state = 1}, + [3573] = {.lex_state = 1}, + [3574] = {.lex_state = 1}, + [3575] = {.lex_state = 1}, [3576] = {.lex_state = 22}, - [3577] = {.lex_state = 22}, - [3578] = {.lex_state = 22}, - [3579] = {.lex_state = 22}, - [3580] = {.lex_state = 22}, + [3577] = {.lex_state = 1}, + [3578] = {.lex_state = 1}, + [3579] = {.lex_state = 1}, + [3580] = {.lex_state = 1}, [3581] = {.lex_state = 1}, - [3582] = {.lex_state = 22}, - [3583] = {.lex_state = 22}, - [3584] = {.lex_state = 22}, - [3585] = {.lex_state = 22}, + [3582] = {.lex_state = 1}, + [3583] = {.lex_state = 1}, + [3584] = {.lex_state = 1}, + [3585] = {.lex_state = 1}, [3586] = {.lex_state = 1}, - [3587] = {.lex_state = 22}, - [3588] = {.lex_state = 22}, - [3589] = {.lex_state = 22}, - [3590] = {.lex_state = 22}, - [3591] = {.lex_state = 22}, - [3592] = {.lex_state = 22}, - [3593] = {.lex_state = 22}, - [3594] = {.lex_state = 22}, - [3595] = {.lex_state = 22}, + [3587] = {.lex_state = 1}, + [3588] = {.lex_state = 1}, + [3589] = {.lex_state = 1}, + [3590] = {.lex_state = 1}, + [3591] = {.lex_state = 1}, + [3592] = {.lex_state = 1}, + [3593] = {.lex_state = 1}, + [3594] = {.lex_state = 1}, + [3595] = {.lex_state = 1}, [3596] = {.lex_state = 1}, [3597] = {.lex_state = 1}, [3598] = {.lex_state = 1}, [3599] = {.lex_state = 1}, - [3600] = {.lex_state = 22}, - [3601] = {.lex_state = 22}, + [3600] = {.lex_state = 1}, + [3601] = {.lex_state = 1}, [3602] = {.lex_state = 1}, [3603] = {.lex_state = 1}, [3604] = {.lex_state = 1}, @@ -14788,8 +25710,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3619] = {.lex_state = 1}, [3620] = {.lex_state = 1}, [3621] = {.lex_state = 1}, - [3622] = {.lex_state = 22}, - [3623] = {.lex_state = 22}, + [3622] = {.lex_state = 1}, + [3623] = {.lex_state = 1}, [3624] = {.lex_state = 1}, [3625] = {.lex_state = 1}, [3626] = {.lex_state = 1}, @@ -14800,8 +25722,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3631] = {.lex_state = 1}, [3632] = {.lex_state = 1}, [3633] = {.lex_state = 1}, - [3634] = {.lex_state = 22}, - [3635] = {.lex_state = 22}, + [3634] = {.lex_state = 1}, + [3635] = {.lex_state = 1}, [3636] = {.lex_state = 1}, [3637] = {.lex_state = 1}, [3638] = {.lex_state = 1}, @@ -14822,23 +25744,23 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3653] = {.lex_state = 1}, [3654] = {.lex_state = 1}, [3655] = {.lex_state = 1}, - [3656] = {.lex_state = 22}, + [3656] = {.lex_state = 1}, [3657] = {.lex_state = 1}, [3658] = {.lex_state = 1}, - [3659] = {.lex_state = 22}, + [3659] = {.lex_state = 1}, [3660] = {.lex_state = 1}, - [3661] = {.lex_state = 22}, - [3662] = {.lex_state = 22}, + [3661] = {.lex_state = 1}, + [3662] = {.lex_state = 1}, [3663] = {.lex_state = 1}, - [3664] = {.lex_state = 22}, + [3664] = {.lex_state = 1}, [3665] = {.lex_state = 1}, - [3666] = {.lex_state = 22}, + [3666] = {.lex_state = 1}, [3667] = {.lex_state = 1}, [3668] = {.lex_state = 1}, [3669] = {.lex_state = 1}, [3670] = {.lex_state = 1}, [3671] = {.lex_state = 1}, - [3672] = {.lex_state = 22}, + [3672] = {.lex_state = 1}, [3673] = {.lex_state = 1}, [3674] = {.lex_state = 1}, [3675] = {.lex_state = 1}, @@ -14848,18 +25770,18 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3679] = {.lex_state = 1}, [3680] = {.lex_state = 1}, [3681] = {.lex_state = 1}, - [3682] = {.lex_state = 22}, + [3682] = {.lex_state = 1}, [3683] = {.lex_state = 1}, - [3684] = {.lex_state = 22}, - [3685] = {.lex_state = 22}, + [3684] = {.lex_state = 1}, + [3685] = {.lex_state = 1}, [3686] = {.lex_state = 1}, - [3687] = {.lex_state = 22}, - [3688] = {.lex_state = 22}, + [3687] = {.lex_state = 1}, + [3688] = {.lex_state = 1}, [3689] = {.lex_state = 1}, [3690] = {.lex_state = 1}, [3691] = {.lex_state = 1}, [3692] = {.lex_state = 1}, - [3693] = {.lex_state = 22}, + [3693] = {.lex_state = 1}, [3694] = {.lex_state = 1}, [3695] = {.lex_state = 1}, [3696] = {.lex_state = 1}, @@ -14946,1522 +25868,12389 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3777] = {.lex_state = 1}, [3778] = {.lex_state = 1}, [3779] = {.lex_state = 1}, - [3780] = {.lex_state = 22}, - [3781] = {.lex_state = 22}, - [3782] = {.lex_state = 24}, - [3783] = {.lex_state = 24}, - [3784] = {.lex_state = 24}, - [3785] = {.lex_state = 24}, - [3786] = {.lex_state = 24}, - [3787] = {.lex_state = 24}, - [3788] = {.lex_state = 24}, - [3789] = {.lex_state = 24}, - [3790] = {.lex_state = 24}, - [3791] = {.lex_state = 24}, - [3792] = {.lex_state = 24}, - [3793] = {.lex_state = 24}, - [3794] = {.lex_state = 24}, - [3795] = {.lex_state = 24}, - [3796] = {.lex_state = 24}, - [3797] = {.lex_state = 24}, - [3798] = {.lex_state = 24}, - [3799] = {.lex_state = 24}, - [3800] = {.lex_state = 24}, - [3801] = {.lex_state = 24}, - [3802] = {.lex_state = 24}, - [3803] = {.lex_state = 24}, - [3804] = {.lex_state = 24}, - [3805] = {.lex_state = 24}, - [3806] = {.lex_state = 24}, - [3807] = {.lex_state = 24}, - [3808] = {.lex_state = 24}, - [3809] = {.lex_state = 24}, - [3810] = {.lex_state = 24}, - [3811] = {.lex_state = 24}, - [3812] = {.lex_state = 24}, - [3813] = {.lex_state = 24}, - [3814] = {.lex_state = 24}, - [3815] = {.lex_state = 24}, - [3816] = {.lex_state = 24}, - [3817] = {.lex_state = 24}, - [3818] = {.lex_state = 24}, - [3819] = {.lex_state = 24}, - [3820] = {.lex_state = 24}, - [3821] = {.lex_state = 24}, - [3822] = {.lex_state = 24}, - [3823] = {.lex_state = 24}, - [3824] = {.lex_state = 24}, - [3825] = {.lex_state = 24}, - [3826] = {.lex_state = 24}, - [3827] = {.lex_state = 24}, - [3828] = {.lex_state = 24}, - [3829] = {.lex_state = 24}, - [3830] = {.lex_state = 24}, - [3831] = {.lex_state = 24}, - [3832] = {.lex_state = 24}, - [3833] = {.lex_state = 24}, - [3834] = {.lex_state = 24}, - [3835] = {.lex_state = 24}, - [3836] = {.lex_state = 24}, - [3837] = {.lex_state = 24}, - [3838] = {.lex_state = 24}, - [3839] = {.lex_state = 24}, - [3840] = {.lex_state = 24}, - [3841] = {.lex_state = 24}, - [3842] = {.lex_state = 24}, - [3843] = {.lex_state = 24}, - [3844] = {.lex_state = 24}, - [3845] = {.lex_state = 24}, - [3846] = {.lex_state = 24}, - [3847] = {.lex_state = 24}, - [3848] = {.lex_state = 24}, - [3849] = {.lex_state = 24}, - [3850] = {.lex_state = 24}, - [3851] = {.lex_state = 24}, - [3852] = {.lex_state = 24}, - [3853] = {.lex_state = 24}, - [3854] = {.lex_state = 24}, - [3855] = {.lex_state = 24}, - [3856] = {.lex_state = 24}, - [3857] = {.lex_state = 24}, - [3858] = {.lex_state = 24}, - [3859] = {.lex_state = 24}, - [3860] = {.lex_state = 24}, - [3861] = {.lex_state = 24}, - [3862] = {.lex_state = 24}, - [3863] = {.lex_state = 5}, - [3864] = {.lex_state = 24}, - [3865] = {.lex_state = 24}, - [3866] = {.lex_state = 24}, - [3867] = {.lex_state = 24}, - [3868] = {.lex_state = 24}, - [3869] = {.lex_state = 24}, - [3870] = {.lex_state = 24}, - [3871] = {.lex_state = 5}, - [3872] = {.lex_state = 5}, - [3873] = {.lex_state = 5}, - [3874] = {.lex_state = 5}, - [3875] = {.lex_state = 24}, - [3876] = {.lex_state = 5}, - [3877] = {.lex_state = 5}, - [3878] = {.lex_state = 5}, - [3879] = {.lex_state = 5}, - [3880] = {.lex_state = 24}, - [3881] = {.lex_state = 24}, - [3882] = {.lex_state = 5}, - [3883] = {.lex_state = 24}, - [3884] = {.lex_state = 5}, - [3885] = {.lex_state = 24}, - [3886] = {.lex_state = 24}, - [3887] = {.lex_state = 24}, - [3888] = {.lex_state = 24}, - [3889] = {.lex_state = 5}, - [3890] = {.lex_state = 5}, - [3891] = {.lex_state = 5}, - [3892] = {.lex_state = 24}, - [3893] = {.lex_state = 5}, - [3894] = {.lex_state = 5}, - [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 5}, - [3897] = {.lex_state = 24}, - [3898] = {.lex_state = 5}, - [3899] = {.lex_state = 24}, - [3900] = {.lex_state = 24}, - [3901] = {.lex_state = 24}, - [3902] = {.lex_state = 24}, - [3903] = {.lex_state = 24}, - [3904] = {.lex_state = 24}, - [3905] = {.lex_state = 24}, - [3906] = {.lex_state = 24}, - [3907] = {.lex_state = 24}, - [3908] = {.lex_state = 24}, - [3909] = {.lex_state = 24}, - [3910] = {.lex_state = 24}, - [3911] = {.lex_state = 24}, - [3912] = {.lex_state = 24}, - [3913] = {.lex_state = 24}, - [3914] = {.lex_state = 24}, - [3915] = {.lex_state = 24}, - [3916] = {.lex_state = 24}, - [3917] = {.lex_state = 24}, - [3918] = {.lex_state = 24}, - [3919] = {.lex_state = 24}, - [3920] = {.lex_state = 24}, - [3921] = {.lex_state = 24}, - [3922] = {.lex_state = 24}, - [3923] = {.lex_state = 24}, - [3924] = {.lex_state = 24}, - [3925] = {.lex_state = 24}, - [3926] = {.lex_state = 24}, - [3927] = {.lex_state = 24}, - [3928] = {.lex_state = 24}, - [3929] = {.lex_state = 24}, - [3930] = {.lex_state = 24}, - [3931] = {.lex_state = 24}, - [3932] = {.lex_state = 24}, - [3933] = {.lex_state = 24}, - [3934] = {.lex_state = 24}, - [3935] = {.lex_state = 24}, - [3936] = {.lex_state = 24}, - [3937] = {.lex_state = 24}, - [3938] = {.lex_state = 24}, - [3939] = {.lex_state = 24}, - [3940] = {.lex_state = 24}, - [3941] = {.lex_state = 0}, - [3942] = {.lex_state = 24}, - [3943] = {.lex_state = 24}, - [3944] = {.lex_state = 24}, - [3945] = {.lex_state = 24}, - [3946] = {.lex_state = 24}, - [3947] = {.lex_state = 24}, - [3948] = {.lex_state = 24}, - [3949] = {.lex_state = 24}, - [3950] = {.lex_state = 24}, - [3951] = {.lex_state = 24}, - [3952] = {.lex_state = 24}, - [3953] = {.lex_state = 24}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 0}, - [3956] = {.lex_state = 0}, - [3957] = {.lex_state = 0}, - [3958] = {.lex_state = 0}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 24}, - [3961] = {.lex_state = 0}, - [3962] = {.lex_state = 0}, - [3963] = {.lex_state = 24}, - [3964] = {.lex_state = 0}, - [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 24}, - [3968] = {.lex_state = 0}, - [3969] = {.lex_state = 0}, - [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 24}, - [3972] = {.lex_state = 24}, - [3973] = {.lex_state = 0}, - [3974] = {.lex_state = 24}, - [3975] = {.lex_state = 24}, - [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 0}, - [3978] = {.lex_state = 0}, - [3979] = {.lex_state = 24}, - [3980] = {.lex_state = 0}, - [3981] = {.lex_state = 24}, - [3982] = {.lex_state = 0}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 24}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 0}, - [3988] = {.lex_state = 24}, - [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 24}, - [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 0}, - [3996] = {.lex_state = 24}, - [3997] = {.lex_state = 24}, - [3998] = {.lex_state = 24}, - [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 24}, - [4002] = {.lex_state = 0}, - [4003] = {.lex_state = 0}, - [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 0}, - [4006] = {.lex_state = 24}, - [4007] = {.lex_state = 0}, - [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 0}, - [4012] = {.lex_state = 24}, - [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 0}, - [4015] = {.lex_state = 0}, - [4016] = {.lex_state = 0}, - [4017] = {.lex_state = 0}, - [4018] = {.lex_state = 0}, - [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, - [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 0}, - [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 0}, - [4027] = {.lex_state = 0}, - [4028] = {.lex_state = 0}, - [4029] = {.lex_state = 0}, - [4030] = {.lex_state = 0}, - [4031] = {.lex_state = 0}, - [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 24}, - [4034] = {.lex_state = 24}, - [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 0}, - [4037] = {.lex_state = 24}, - [4038] = {.lex_state = 0}, - [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 0}, - [4041] = {.lex_state = 0}, - [4042] = {.lex_state = 0}, - [4043] = {.lex_state = 24}, - [4044] = {.lex_state = 24}, - [4045] = {.lex_state = 24}, - [4046] = {.lex_state = 0}, - [4047] = {.lex_state = 0}, - [4048] = {.lex_state = 24}, - [4049] = {.lex_state = 0}, - [4050] = {.lex_state = 24}, - [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 0}, - [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 24}, - [4055] = {.lex_state = 24}, - [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 24}, - [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 24}, - [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 24}, - [4064] = {.lex_state = 24}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 24}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 24}, - [4071] = {.lex_state = 24}, - [4072] = {.lex_state = 24}, - [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 24}, - [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 24}, - [4077] = {.lex_state = 0}, - [4078] = {.lex_state = 0}, - [4079] = {.lex_state = 24}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 0}, - [4082] = {.lex_state = 24}, - [4083] = {.lex_state = 24}, - [4084] = {.lex_state = 24}, - [4085] = {.lex_state = 0}, - [4086] = {.lex_state = 24}, - [4087] = {.lex_state = 24}, - [4088] = {.lex_state = 24}, - [4089] = {.lex_state = 24}, - [4090] = {.lex_state = 24}, - [4091] = {.lex_state = 24}, - [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 24}, - [4094] = {.lex_state = 0}, - [4095] = {.lex_state = 24}, - [4096] = {.lex_state = 24}, - [4097] = {.lex_state = 24}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 24}, - [4100] = {.lex_state = 0}, - [4101] = {.lex_state = 0}, - [4102] = {.lex_state = 0}, - [4103] = {.lex_state = 0}, - [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 0}, - [4106] = {.lex_state = 24}, - [4107] = {.lex_state = 24}, - [4108] = {.lex_state = 0}, - [4109] = {.lex_state = 24}, - [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 24}, - [4113] = {.lex_state = 24}, - [4114] = {.lex_state = 24}, - [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 24}, - [4117] = {.lex_state = 24}, - [4118] = {.lex_state = 0}, - [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 24}, - [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 24}, - [4125] = {.lex_state = 0}, - [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 24}, - [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 24}, - [4131] = {.lex_state = 24}, - [4132] = {.lex_state = 0}, - [4133] = {.lex_state = 0}, - [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 24}, - [4136] = {.lex_state = 24}, - [4137] = {.lex_state = 0}, - [4138] = {.lex_state = 24}, - [4139] = {.lex_state = 24}, - [4140] = {.lex_state = 0}, - [4141] = {.lex_state = 24}, - [4142] = {.lex_state = 24}, - [4143] = {.lex_state = 24}, - [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 0}, - [4146] = {.lex_state = 0}, - [4147] = {.lex_state = 24}, - [4148] = {.lex_state = 0}, - [4149] = {.lex_state = 0}, - [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 0}, - [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 0}, - [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 24}, - [4156] = {.lex_state = 24}, - [4157] = {.lex_state = 24}, - [4158] = {.lex_state = 0}, - [4159] = {.lex_state = 24}, - [4160] = {.lex_state = 24}, - [4161] = {.lex_state = 24}, - [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0}, - [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 24}, - [4167] = {.lex_state = 24}, - [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 0}, - [4170] = {.lex_state = 0}, - [4171] = {.lex_state = 0}, - [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 0}, - [4174] = {.lex_state = 24}, - [4175] = {.lex_state = 24}, - [4176] = {.lex_state = 24}, - [4177] = {.lex_state = 24}, - [4178] = {.lex_state = 24}, - [4179] = {.lex_state = 24}, - [4180] = {.lex_state = 24}, - [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 24}, - [4183] = {.lex_state = 24}, - [4184] = {.lex_state = 0}, - [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 24}, - [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 24}, - [4191] = {.lex_state = 24}, - [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 0}, - [4194] = {.lex_state = 24}, - [4195] = {.lex_state = 24}, - [4196] = {.lex_state = 24}, - [4197] = {.lex_state = 24}, - [4198] = {.lex_state = 0}, - [4199] = {.lex_state = 24}, - [4200] = {.lex_state = 0}, - [4201] = {.lex_state = 0}, - [4202] = {.lex_state = 24}, - [4203] = {.lex_state = 0}, - [4204] = {.lex_state = 24}, - [4205] = {.lex_state = 24}, - [4206] = {.lex_state = 0}, - [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 0}, - [4209] = {.lex_state = 0}, - [4210] = {.lex_state = 0}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 0}, - [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 0}, - [4219] = {.lex_state = 0}, - [4220] = {.lex_state = 0}, - [4221] = {.lex_state = 0}, - [4222] = {.lex_state = 0}, - [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 0}, - [4227] = {.lex_state = 0}, - [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 0}, - [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 24}, - [4232] = {.lex_state = 0}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 0}, - [4235] = {.lex_state = 0}, - [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 0}, - [4238] = {.lex_state = 0}, - [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 0}, - [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 0}, - [4245] = {.lex_state = 4}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 0}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 0}, - [4251] = {.lex_state = 0}, - [4252] = {.lex_state = 0}, - [4253] = {.lex_state = 0}, - [4254] = {.lex_state = 0}, - [4255] = {.lex_state = 0}, - [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 0}, - [4258] = {.lex_state = 0}, - [4259] = {.lex_state = 0}, - [4260] = {.lex_state = 0}, - [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 0}, - [4263] = {.lex_state = 0}, - [4264] = {.lex_state = 0}, - [4265] = {.lex_state = 0}, - [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 0}, - [4269] = {.lex_state = 0}, - [4270] = {.lex_state = 0}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 0}, - [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 0}, - [4278] = {.lex_state = 0}, - [4279] = {.lex_state = 0}, - [4280] = {.lex_state = 0}, - [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 0}, - [4283] = {.lex_state = 0}, - [4284] = {.lex_state = 0}, - [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 0}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 0}, - [4290] = {.lex_state = 0}, - [4291] = {.lex_state = 0}, - [4292] = {.lex_state = 0}, - [4293] = {.lex_state = 0}, - [4294] = {.lex_state = 7}, - [4295] = {.lex_state = 0}, - [4296] = {.lex_state = 0}, - [4297] = {.lex_state = 7}, - [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 4}, - [4304] = {.lex_state = 0}, - [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 0}, - [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 4}, - [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 0}, - [4311] = {.lex_state = 0}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 24}, - [4314] = {.lex_state = 0}, - [4315] = {.lex_state = 0}, - [4316] = {.lex_state = 0}, - [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 0}, - [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 0}, - [4322] = {.lex_state = 0}, - [4323] = {.lex_state = 0}, - [4324] = {.lex_state = 0}, - [4325] = {.lex_state = 0}, - [4326] = {.lex_state = 0}, - [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 0}, - [4329] = {.lex_state = 0}, - [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 0}, - [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 0}, - [4334] = {.lex_state = 0}, - [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 0}, - [4337] = {.lex_state = 0}, - [4338] = {.lex_state = 0}, - [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, - [4342] = {.lex_state = 0}, - [4343] = {.lex_state = 0}, - [4344] = {.lex_state = 0}, - [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 0}, - [4347] = {.lex_state = 0}, - [4348] = {.lex_state = 0}, - [4349] = {.lex_state = 0}, - [4350] = {.lex_state = 0}, - [4351] = {.lex_state = 0}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 0}, - [4355] = {.lex_state = 7}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 0}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 0}, - [4365] = {.lex_state = 0}, - [4366] = {.lex_state = 0}, - [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 0}, - [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 0}, - [4371] = {.lex_state = 0}, - [4372] = {.lex_state = 0}, - [4373] = {.lex_state = 0}, - [4374] = {.lex_state = 0}, - [4375] = {.lex_state = 0}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 0}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 0}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 0}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 0}, - [4401] = {.lex_state = 24}, - [4402] = {.lex_state = 24}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 24}, - [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 7}, - [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 7}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 7}, - [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 0}, - [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 0}, - [4429] = {.lex_state = 7}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 0}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 7}, - [4445] = {.lex_state = 4}, - [4446] = {.lex_state = 0}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 0}, - [4450] = {.lex_state = 0}, - [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 24}, - [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 0}, - [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0}, - [4466] = {.lex_state = 0}, - [4467] = {.lex_state = 4}, - [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 0}, - [4471] = {.lex_state = 24}, - [4472] = {.lex_state = 0}, - [4473] = {.lex_state = 24}, - [4474] = {.lex_state = 24}, - [4475] = {.lex_state = 24}, - [4476] = {.lex_state = 0}, - [4477] = {.lex_state = 24}, - [4478] = {.lex_state = 0}, - [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 0}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 0}, - [4483] = {.lex_state = 4}, - [4484] = {.lex_state = 0}, - [4485] = {.lex_state = 0}, - [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 4}, - [4488] = {.lex_state = 4}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 0}, - [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 24}, - [4493] = {.lex_state = 0}, - [4494] = {.lex_state = 4}, - [4495] = {.lex_state = 4}, - [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 0}, - [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 24}, - [4500] = {.lex_state = 24}, - [4501] = {.lex_state = 0}, - [4502] = {.lex_state = 4}, - [4503] = {.lex_state = 24}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 24}, - [4506] = {.lex_state = 0}, - [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 0}, - [4510] = {.lex_state = 24}, - [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 0}, - [4514] = {.lex_state = 0}, - [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 0}, - [4517] = {.lex_state = 0}, - [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 0}, - [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 24}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 0}, - [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 0}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 0}, - [4531] = {.lex_state = 0}, - [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 24}, - [4536] = {.lex_state = 0}, - [4537] = {.lex_state = 0}, - [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 7}, - [4540] = {.lex_state = 0}, - [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 7}, - [4543] = {.lex_state = 0}, - [4544] = {.lex_state = 24}, - [4545] = {.lex_state = 0}, - [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 0}, - [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 0}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 0}, - [4552] = {.lex_state = 0}, - [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 0}, - [4555] = {.lex_state = 4}, - [4556] = {.lex_state = 0}, - [4557] = {.lex_state = 0}, - [4558] = {.lex_state = 0}, - [4559] = {.lex_state = 0}, - [4560] = {.lex_state = 24}, - [4561] = {.lex_state = 0}, - [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 0}, - [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 7}, - [4569] = {.lex_state = 0}, - [4570] = {.lex_state = 4}, - [4571] = {.lex_state = 0}, - [4572] = {.lex_state = 0}, - [4573] = {.lex_state = 0}, - [4574] = {.lex_state = 0}, - [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 0}, - [4578] = {.lex_state = 4}, - [4579] = {.lex_state = 4}, - [4580] = {.lex_state = 0}, - [4581] = {.lex_state = 4}, - [4582] = {.lex_state = 4}, - [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 0}, - [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 0}, - [4588] = {.lex_state = 0}, - [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 0}, - [4591] = {.lex_state = 0}, - [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 0}, - [4594] = {.lex_state = 0}, - [4595] = {.lex_state = 0}, - [4596] = {.lex_state = 0}, - [4597] = {.lex_state = 7}, - [4598] = {.lex_state = 0}, - [4599] = {.lex_state = 0}, - [4600] = {.lex_state = 0}, - [4601] = {.lex_state = 0}, - [4602] = {.lex_state = 0}, - [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 4}, - [4605] = {.lex_state = 0}, - [4606] = {.lex_state = 4}, - [4607] = {.lex_state = 4}, - [4608] = {.lex_state = 4}, - [4609] = {.lex_state = 7}, - [4610] = {.lex_state = 4}, - [4611] = {.lex_state = 4}, - [4612] = {.lex_state = 0}, - [4613] = {.lex_state = 24}, - [4614] = {.lex_state = 0}, - [4615] = {.lex_state = 4}, - [4616] = {.lex_state = 0}, - [4617] = {.lex_state = 0}, - [4618] = {.lex_state = 4}, - [4619] = {.lex_state = 4}, - [4620] = {.lex_state = 0}, - [4621] = {.lex_state = 4}, - [4622] = {.lex_state = 4}, - [4623] = {.lex_state = 0}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 4}, - [4627] = {.lex_state = 0}, - [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 4}, - [4630] = {.lex_state = 4}, - [4631] = {.lex_state = 0}, - [4632] = {.lex_state = 4}, - [4633] = {.lex_state = 4}, - [4634] = {.lex_state = 4}, - [4635] = {.lex_state = 4}, - [4636] = {.lex_state = 4}, - [4637] = {.lex_state = 4}, - [4638] = {.lex_state = 4}, - [4639] = {.lex_state = 4}, - [4640] = {.lex_state = 4}, - [4641] = {.lex_state = 4}, - [4642] = {.lex_state = 4}, - [4643] = {.lex_state = 4}, - [4644] = {.lex_state = 4}, - [4645] = {.lex_state = 4}, - [4646] = {.lex_state = 4}, - [4647] = {.lex_state = 4}, - [4648] = {.lex_state = 4}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 0}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 7}, - [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 0}, - [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 0}, - [4658] = {.lex_state = 0}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 7}, - [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 0}, - [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 0}, - [4666] = {.lex_state = 0}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 0}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 0}, - [4674] = {.lex_state = 0}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 0}, - [4678] = {.lex_state = 0}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 0}, - [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 0}, - [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 0}, - [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 0}, - [4698] = {.lex_state = 0}, - [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 0}, - [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 0}, - [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 0}, - [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 0}, - [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 4}, - [4715] = {.lex_state = 0}, - [4716] = {.lex_state = 0}, - [4717] = {.lex_state = 24}, - [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 0}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 0}, - [4728] = {.lex_state = 0}, - [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 0}, - [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 0}, - [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 0}, - [4736] = {.lex_state = 0}, - [4737] = {.lex_state = 0}, - [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 0}, - [4742] = {.lex_state = 0}, - [4743] = {.lex_state = 0}, - [4744] = {.lex_state = 0}, - [4745] = {.lex_state = 0}, - [4746] = {.lex_state = 0}, - [4747] = {.lex_state = 0}, - [4748] = {.lex_state = 4}, - [4749] = {.lex_state = 0}, - [4750] = {.lex_state = 0}, - [4751] = {.lex_state = 0}, - [4752] = {.lex_state = 0}, - [4753] = {.lex_state = 0}, - [4754] = {.lex_state = 0}, - [4755] = {.lex_state = 0}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 0}, - [4758] = {.lex_state = 0}, - [4759] = {.lex_state = 0}, - [4760] = {.lex_state = 0}, - [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 0}, - [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 0}, - [4765] = {.lex_state = 0}, - [4766] = {.lex_state = 0}, - [4767] = {.lex_state = 24}, - [4768] = {.lex_state = 0}, - [4769] = {.lex_state = 0}, - [4770] = {.lex_state = 0}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 0}, - [4773] = {.lex_state = 0}, - [4774] = {.lex_state = 0}, - [4775] = {.lex_state = 0}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 0}, - [4778] = {.lex_state = 0}, - [4779] = {.lex_state = 24}, - [4780] = {.lex_state = 0}, - [4781] = {.lex_state = 0}, - [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 4}, - [4784] = {.lex_state = 0}, - [4785] = {.lex_state = 0}, - [4786] = {.lex_state = 4}, - [4787] = {.lex_state = 24}, - [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 0}, - [4790] = {.lex_state = 24}, - [4791] = {.lex_state = 0}, - [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 0}, - [4794] = {.lex_state = 0}, - [4795] = {.lex_state = 0}, - [4796] = {.lex_state = 24}, - [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 24}, - [4799] = {.lex_state = 24}, - [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 0}, - [4802] = {.lex_state = 0}, - [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 24}, - [4805] = {.lex_state = 0}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 0}, - [4808] = {.lex_state = 0}, - [4809] = {.lex_state = 0}, - [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 0}, - [4813] = {.lex_state = 0}, - [4814] = {.lex_state = 0}, - [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 4}, - [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 0}, - [4819] = {.lex_state = 0}, - [4820] = {.lex_state = 0}, - [4821] = {.lex_state = 0}, - [4822] = {.lex_state = 0}, - [4823] = {.lex_state = 24}, - [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 0}, - [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 0}, - [4828] = {.lex_state = 0}, - [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 0}, - [4831] = {.lex_state = 0}, - [4832] = {.lex_state = 0}, - [4833] = {.lex_state = 0}, - [4834] = {.lex_state = 0}, - [4835] = {.lex_state = 0}, - [4836] = {.lex_state = 0}, - [4837] = {.lex_state = 24}, - [4838] = {.lex_state = 0}, - [4839] = {.lex_state = 0}, - [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 0}, - [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 24}, - [4845] = {.lex_state = 0}, - [4846] = {.lex_state = 0}, - [4847] = {.lex_state = 0}, - [4848] = {.lex_state = 24}, - [4849] = {.lex_state = 24}, - [4850] = {.lex_state = 24}, - [4851] = {.lex_state = 24}, - [4852] = {.lex_state = 24}, - [4853] = {.lex_state = 24}, - [4854] = {.lex_state = 24}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 0}, - [4857] = {.lex_state = 0}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 24}, - [4860] = {.lex_state = 24}, - [4861] = {.lex_state = 0}, - [4862] = {.lex_state = 0}, - [4863] = {.lex_state = 0}, - [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 0}, - [4866] = {.lex_state = 0}, - [4867] = {.lex_state = 0}, - [4868] = {.lex_state = 0}, - [4869] = {.lex_state = 0}, - [4870] = {.lex_state = 0}, - [4871] = {.lex_state = 0}, - [4872] = {.lex_state = 0}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 24}, - [4875] = {.lex_state = 0}, - [4876] = {.lex_state = 0}, - [4877] = {.lex_state = 0}, - [4878] = {.lex_state = 0}, - [4879] = {.lex_state = 0}, - [4880] = {.lex_state = 0}, - [4881] = {.lex_state = 0}, - [4882] = {.lex_state = 0}, - [4883] = {.lex_state = 0}, - [4884] = {.lex_state = 0}, - [4885] = {.lex_state = 0}, - [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 0}, - [4889] = {.lex_state = 0}, - [4890] = {.lex_state = 0}, - [4891] = {.lex_state = 0}, - [4892] = {.lex_state = 0}, - [4893] = {.lex_state = 0}, - [4894] = {.lex_state = 24}, - [4895] = {.lex_state = 24}, - [4896] = {.lex_state = 24}, - [4897] = {.lex_state = 24}, - [4898] = {.lex_state = 24}, - [4899] = {.lex_state = 24}, - [4900] = {.lex_state = 24}, - [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 0}, - [4903] = {.lex_state = 4}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 0}, - [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 4}, - [4909] = {.lex_state = 0}, - [4910] = {.lex_state = 0}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 0}, - [4913] = {.lex_state = 0}, - [4914] = {.lex_state = 0}, - [4915] = {.lex_state = 0}, - [4916] = {.lex_state = 0}, - [4917] = {.lex_state = 24}, - [4918] = {.lex_state = 4}, - [4919] = {.lex_state = 0}, - [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 0}, - [4922] = {.lex_state = 0}, - [4923] = {.lex_state = 0}, - [4924] = {.lex_state = 0}, - [4925] = {.lex_state = 0}, - [4926] = {.lex_state = 0}, - [4927] = {.lex_state = 24}, - [4928] = {.lex_state = 0}, - [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0}, - [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 24}, - [4933] = {.lex_state = 0}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 24}, - [4936] = {.lex_state = 24}, - [4937] = {.lex_state = 24}, - [4938] = {.lex_state = 24}, - [4939] = {.lex_state = 24}, - [4940] = {.lex_state = 24}, - [4941] = {.lex_state = 0}, - [4942] = {.lex_state = 24}, - [4943] = {.lex_state = 0}, - [4944] = {.lex_state = 0}, - [4945] = {.lex_state = 0}, - [4946] = {.lex_state = 0}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 0}, - [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 0}, - [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 0}, - [4953] = {.lex_state = 24}, - [4954] = {.lex_state = 0}, - [4955] = {.lex_state = 24}, - [4956] = {.lex_state = 0}, - [4957] = {.lex_state = 0}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 0}, - [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 0}, - [4962] = {.lex_state = 0}, - [4963] = {.lex_state = 0}, - [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 24}, - [4967] = {.lex_state = 0}, - [4968] = {.lex_state = 0}, - [4969] = {.lex_state = 0}, - [4970] = {.lex_state = 0}, - [4971] = {.lex_state = 0}, - [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 4}, - [4974] = {.lex_state = 0}, - [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 0}, - [4978] = {.lex_state = 0}, - [4979] = {.lex_state = 0}, - [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 0}, - [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 0}, - [4984] = {.lex_state = 0}, - [4985] = {.lex_state = 0}, - [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 0}, - [4988] = {.lex_state = 0}, - [4989] = {.lex_state = 24}, - [4990] = {.lex_state = 0}, - [4991] = {.lex_state = 24}, - [4992] = {.lex_state = 0}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 0}, - [4995] = {.lex_state = 24}, - [4996] = {.lex_state = 0}, - [4997] = {.lex_state = 0}, - [4998] = {.lex_state = 24}, - [4999] = {.lex_state = 0}, - [5000] = {.lex_state = 0}, - [5001] = {.lex_state = 0}, - [5002] = {.lex_state = 24}, - [5003] = {.lex_state = 24}, - [5004] = {.lex_state = 24}, - [5005] = {.lex_state = 24}, - [5006] = {.lex_state = 24}, - [5007] = {.lex_state = 24}, - [5008] = {.lex_state = 24}, - [5009] = {.lex_state = 24}, - [5010] = {.lex_state = 24}, - [5011] = {.lex_state = 24}, - [5012] = {.lex_state = 24}, - [5013] = {.lex_state = 24}, - [5014] = {.lex_state = 0}, - [5015] = {.lex_state = 0}, - [5016] = {.lex_state = 0}, - [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 0}, - [5019] = {.lex_state = 0}, - [5020] = {.lex_state = 0}, - [5021] = {.lex_state = 0}, - [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 0}, - [5024] = {.lex_state = 0}, - [5025] = {.lex_state = 0}, - [5026] = {.lex_state = 0}, - [5027] = {.lex_state = 4}, - [5028] = {.lex_state = 0}, - [5029] = {.lex_state = 5}, - [5030] = {.lex_state = 0}, - [5031] = {.lex_state = 0}, - [5032] = {.lex_state = 24}, - [5033] = {.lex_state = 0}, - [5034] = {.lex_state = 24}, - [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 24}, - [5037] = {.lex_state = 4}, - [5038] = {.lex_state = 0}, - [5039] = {.lex_state = 24}, - [5040] = {.lex_state = 0}, - [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 0}, - [5043] = {.lex_state = 5}, - [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 5}, - [5046] = {.lex_state = 0}, - [5047] = {.lex_state = 5}, - [5048] = {.lex_state = 5}, - [5049] = {.lex_state = 5}, - [5050] = {.lex_state = 24}, - [5051] = {.lex_state = 24}, - [5052] = {.lex_state = 4}, - [5053] = {.lex_state = 0}, - [5054] = {.lex_state = 5}, - [5055] = {.lex_state = 0}, - [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 0}, - [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 4}, - [5060] = {.lex_state = 0}, - [5061] = {.lex_state = 24}, - [5062] = {.lex_state = 24}, - [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 0}, - [5065] = {.lex_state = 0}, - [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 0}, - [5068] = {.lex_state = 0}, - [5069] = {.lex_state = 0}, - [5070] = {.lex_state = 0}, - [5071] = {.lex_state = 24}, - [5072] = {.lex_state = 24}, - [5073] = {.lex_state = 0}, - [5074] = {.lex_state = 0}, - [5075] = {.lex_state = 0}, - [5076] = {.lex_state = 24}, - [5077] = {.lex_state = 24}, - [5078] = {.lex_state = 0}, - [5079] = {.lex_state = 0}, - [5080] = {.lex_state = 0}, - [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 24}, - [5083] = {.lex_state = 4}, - [5084] = {.lex_state = 4}, - [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 4}, - [5087] = {.lex_state = 0}, - [5088] = {.lex_state = 24}, - [5089] = {.lex_state = 4}, - [5090] = {.lex_state = 0}, - [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 0}, - [5093] = {.lex_state = 0}, - [5094] = {.lex_state = 0}, - [5095] = {.lex_state = 24}, - [5096] = {.lex_state = 4}, - [5097] = {.lex_state = 24}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 0}, - [5100] = {.lex_state = 24}, - [5101] = {.lex_state = 0}, - [5102] = {.lex_state = 5}, - [5103] = {.lex_state = 24}, - [5104] = {.lex_state = 0}, - [5105] = {.lex_state = 4}, - [5106] = {.lex_state = 0}, - [5107] = {.lex_state = 24}, - [5108] = {.lex_state = 0}, - [5109] = {.lex_state = 0}, - [5110] = {.lex_state = 24}, - [5111] = {.lex_state = 24}, - [5112] = {.lex_state = 0}, - [5113] = {.lex_state = 24}, - [5114] = {.lex_state = 24}, - [5115] = {.lex_state = 0}, - [5116] = {.lex_state = 24}, - [5117] = {.lex_state = 4}, + [3780] = {.lex_state = 1}, + [3781] = {.lex_state = 1}, + [3782] = {.lex_state = 1}, + [3783] = {.lex_state = 1}, + [3784] = {.lex_state = 1}, + [3785] = {.lex_state = 1}, + [3786] = {.lex_state = 1}, + [3787] = {.lex_state = 1}, + [3788] = {.lex_state = 1}, + [3789] = {.lex_state = 1}, + [3790] = {.lex_state = 1}, + [3791] = {.lex_state = 1}, + [3792] = {.lex_state = 1}, + [3793] = {.lex_state = 1}, + [3794] = {.lex_state = 1}, + [3795] = {.lex_state = 1}, + [3796] = {.lex_state = 1}, + [3797] = {.lex_state = 1}, + [3798] = {.lex_state = 1}, + [3799] = {.lex_state = 1}, + [3800] = {.lex_state = 1}, + [3801] = {.lex_state = 1}, + [3802] = {.lex_state = 1}, + [3803] = {.lex_state = 1}, + [3804] = {.lex_state = 1}, + [3805] = {.lex_state = 1}, + [3806] = {.lex_state = 1}, + [3807] = {.lex_state = 1}, + [3808] = {.lex_state = 1}, + [3809] = {.lex_state = 1}, + [3810] = {.lex_state = 1}, + [3811] = {.lex_state = 1}, + [3812] = {.lex_state = 1}, + [3813] = {.lex_state = 1}, + [3814] = {.lex_state = 1}, + [3815] = {.lex_state = 1}, + [3816] = {.lex_state = 1}, + [3817] = {.lex_state = 1}, + [3818] = {.lex_state = 1}, + [3819] = {.lex_state = 1}, + [3820] = {.lex_state = 1}, + [3821] = {.lex_state = 1}, + [3822] = {.lex_state = 1}, + [3823] = {.lex_state = 1}, + [3824] = {.lex_state = 1}, + [3825] = {.lex_state = 1}, + [3826] = {.lex_state = 1}, + [3827] = {.lex_state = 1}, + [3828] = {.lex_state = 1}, + [3829] = {.lex_state = 1}, + [3830] = {.lex_state = 1}, + [3831] = {.lex_state = 1}, + [3832] = {.lex_state = 1}, + [3833] = {.lex_state = 1}, + [3834] = {.lex_state = 1}, + [3835] = {.lex_state = 1}, + [3836] = {.lex_state = 22}, + [3837] = {.lex_state = 22}, + [3838] = {.lex_state = 22}, + [3839] = {.lex_state = 22}, + [3840] = {.lex_state = 1}, + [3841] = {.lex_state = 1}, + [3842] = {.lex_state = 1}, + [3843] = {.lex_state = 1}, + [3844] = {.lex_state = 1}, + [3845] = {.lex_state = 1}, + [3846] = {.lex_state = 1}, + [3847] = {.lex_state = 1}, + [3848] = {.lex_state = 1}, + [3849] = {.lex_state = 1}, + [3850] = {.lex_state = 1}, + [3851] = {.lex_state = 1}, + [3852] = {.lex_state = 1}, + [3853] = {.lex_state = 1}, + [3854] = {.lex_state = 1}, + [3855] = {.lex_state = 1}, + [3856] = {.lex_state = 1}, + [3857] = {.lex_state = 1}, + [3858] = {.lex_state = 1}, + [3859] = {.lex_state = 1}, + [3860] = {.lex_state = 23}, + [3861] = {.lex_state = 23}, + [3862] = {.lex_state = 23}, + [3863] = {.lex_state = 23}, + [3864] = {.lex_state = 23}, + [3865] = {.lex_state = 23}, + [3866] = {.lex_state = 23}, + [3867] = {.lex_state = 23}, + [3868] = {.lex_state = 23}, + [3869] = {.lex_state = 23}, + [3870] = {.lex_state = 23}, + [3871] = {.lex_state = 23}, + [3872] = {.lex_state = 23}, + [3873] = {.lex_state = 23}, + [3874] = {.lex_state = 23}, + [3875] = {.lex_state = 23}, + [3876] = {.lex_state = 23}, + [3877] = {.lex_state = 23}, + [3878] = {.lex_state = 23}, + [3879] = {.lex_state = 23}, + [3880] = {.lex_state = 23}, + [3881] = {.lex_state = 23}, + [3882] = {.lex_state = 23}, + [3883] = {.lex_state = 23}, + [3884] = {.lex_state = 23}, + [3885] = {.lex_state = 23}, + [3886] = {.lex_state = 23}, + [3887] = {.lex_state = 23}, + [3888] = {.lex_state = 23}, + [3889] = {.lex_state = 23}, + [3890] = {.lex_state = 23}, + [3891] = {.lex_state = 23}, + [3892] = {.lex_state = 23}, + [3893] = {.lex_state = 23}, + [3894] = {.lex_state = 25}, + [3895] = {.lex_state = 23}, + [3896] = {.lex_state = 25}, + [3897] = {.lex_state = 23}, + [3898] = {.lex_state = 25}, + [3899] = {.lex_state = 23}, + [3900] = {.lex_state = 23}, + [3901] = {.lex_state = 23}, + [3902] = {.lex_state = 23}, + [3903] = {.lex_state = 23}, + [3904] = {.lex_state = 25}, + [3905] = {.lex_state = 23}, + [3906] = {.lex_state = 23}, + [3907] = {.lex_state = 25}, + [3908] = {.lex_state = 23}, + [3909] = {.lex_state = 25}, + [3910] = {.lex_state = 23}, + [3911] = {.lex_state = 23}, + [3912] = {.lex_state = 23}, + [3913] = {.lex_state = 23}, + [3914] = {.lex_state = 25}, + [3915] = {.lex_state = 23}, + [3916] = {.lex_state = 23}, + [3917] = {.lex_state = 23}, + [3918] = {.lex_state = 23}, + [3919] = {.lex_state = 25}, + [3920] = {.lex_state = 23}, + [3921] = {.lex_state = 25}, + [3922] = {.lex_state = 25}, + [3923] = {.lex_state = 25}, + [3924] = {.lex_state = 23}, + [3925] = {.lex_state = 25}, + [3926] = {.lex_state = 25}, + [3927] = {.lex_state = 23}, + [3928] = {.lex_state = 25}, + [3929] = {.lex_state = 25}, + [3930] = {.lex_state = 25}, + [3931] = {.lex_state = 23}, + [3932] = {.lex_state = 25}, + [3933] = {.lex_state = 25}, + [3934] = {.lex_state = 25}, + [3935] = {.lex_state = 23}, + [3936] = {.lex_state = 25}, + [3937] = {.lex_state = 25}, + [3938] = {.lex_state = 25}, + [3939] = {.lex_state = 25}, + [3940] = {.lex_state = 25}, + [3941] = {.lex_state = 25}, + [3942] = {.lex_state = 25}, + [3943] = {.lex_state = 25}, + [3944] = {.lex_state = 25}, + [3945] = {.lex_state = 23}, + [3946] = {.lex_state = 25}, + [3947] = {.lex_state = 25}, + [3948] = {.lex_state = 25}, + [3949] = {.lex_state = 23}, + [3950] = {.lex_state = 23}, + [3951] = {.lex_state = 25}, + [3952] = {.lex_state = 23}, + [3953] = {.lex_state = 23}, + [3954] = {.lex_state = 25}, + [3955] = {.lex_state = 23}, + [3956] = {.lex_state = 23}, + [3957] = {.lex_state = 23}, + [3958] = {.lex_state = 25}, + [3959] = {.lex_state = 25}, + [3960] = {.lex_state = 23}, + [3961] = {.lex_state = 25}, + [3962] = {.lex_state = 25}, + [3963] = {.lex_state = 25}, + [3964] = {.lex_state = 23}, + [3965] = {.lex_state = 25}, + [3966] = {.lex_state = 25}, + [3967] = {.lex_state = 25}, + [3968] = {.lex_state = 25}, + [3969] = {.lex_state = 23}, + [3970] = {.lex_state = 25}, + [3971] = {.lex_state = 25}, + [3972] = {.lex_state = 25}, + [3973] = {.lex_state = 23}, + [3974] = {.lex_state = 23}, + [3975] = {.lex_state = 25}, + [3976] = {.lex_state = 25}, + [3977] = {.lex_state = 25}, + [3978] = {.lex_state = 25}, + [3979] = {.lex_state = 25}, + [3980] = {.lex_state = 25}, + [3981] = {.lex_state = 25}, + [3982] = {.lex_state = 25}, + [3983] = {.lex_state = 25}, + [3984] = {.lex_state = 25}, + [3985] = {.lex_state = 25}, + [3986] = {.lex_state = 23}, + [3987] = {.lex_state = 23}, + [3988] = {.lex_state = 23}, + [3989] = {.lex_state = 23}, + [3990] = {.lex_state = 23}, + [3991] = {.lex_state = 25}, + [3992] = {.lex_state = 25}, + [3993] = {.lex_state = 23}, + [3994] = {.lex_state = 25}, + [3995] = {.lex_state = 23}, + [3996] = {.lex_state = 25}, + [3997] = {.lex_state = 23}, + [3998] = {.lex_state = 25}, + [3999] = {.lex_state = 23}, + [4000] = {.lex_state = 25}, + [4001] = {.lex_state = 23}, + [4002] = {.lex_state = 23}, + [4003] = {.lex_state = 23}, + [4004] = {.lex_state = 23}, + [4005] = {.lex_state = 25}, + [4006] = {.lex_state = 25}, + [4007] = {.lex_state = 23}, + [4008] = {.lex_state = 23}, + [4009] = {.lex_state = 23}, + [4010] = {.lex_state = 23}, + [4011] = {.lex_state = 23}, + [4012] = {.lex_state = 25}, + [4013] = {.lex_state = 23}, + [4014] = {.lex_state = 25}, + [4015] = {.lex_state = 23}, + [4016] = {.lex_state = 25}, + [4017] = {.lex_state = 25}, + [4018] = {.lex_state = 25}, + [4019] = {.lex_state = 23}, + [4020] = {.lex_state = 23}, + [4021] = {.lex_state = 25}, + [4022] = {.lex_state = 23}, + [4023] = {.lex_state = 23}, + [4024] = {.lex_state = 23}, + [4025] = {.lex_state = 25}, + [4026] = {.lex_state = 25}, + [4027] = {.lex_state = 23}, + [4028] = {.lex_state = 23}, + [4029] = {.lex_state = 25}, + [4030] = {.lex_state = 25}, + [4031] = {.lex_state = 25}, + [4032] = {.lex_state = 25}, + [4033] = {.lex_state = 25}, + [4034] = {.lex_state = 25}, + [4035] = {.lex_state = 25}, + [4036] = {.lex_state = 25}, + [4037] = {.lex_state = 25}, + [4038] = {.lex_state = 25}, + [4039] = {.lex_state = 25}, + [4040] = {.lex_state = 25}, + [4041] = {.lex_state = 23}, + [4042] = {.lex_state = 25}, + [4043] = {.lex_state = 25}, + [4044] = {.lex_state = 25}, + [4045] = {.lex_state = 25}, + [4046] = {.lex_state = 25}, + [4047] = {.lex_state = 25}, + [4048] = {.lex_state = 25}, + [4049] = {.lex_state = 23}, + [4050] = {.lex_state = 25}, + [4051] = {.lex_state = 23}, + [4052] = {.lex_state = 23}, + [4053] = {.lex_state = 25}, + [4054] = {.lex_state = 23}, + [4055] = {.lex_state = 25}, + [4056] = {.lex_state = 25}, + [4057] = {.lex_state = 23}, + [4058] = {.lex_state = 25}, + [4059] = {.lex_state = 25}, + [4060] = {.lex_state = 25}, + [4061] = {.lex_state = 25}, + [4062] = {.lex_state = 25}, + [4063] = {.lex_state = 25}, + [4064] = {.lex_state = 25}, + [4065] = {.lex_state = 25}, + [4066] = {.lex_state = 25}, + [4067] = {.lex_state = 23}, + [4068] = {.lex_state = 23}, + [4069] = {.lex_state = 23}, + [4070] = {.lex_state = 23}, + [4071] = {.lex_state = 23}, + [4072] = {.lex_state = 23}, + [4073] = {.lex_state = 23}, + [4074] = {.lex_state = 23}, + [4075] = {.lex_state = 23}, + [4076] = {.lex_state = 25}, + [4077] = {.lex_state = 25}, + [4078] = {.lex_state = 23}, + [4079] = {.lex_state = 23}, + [4080] = {.lex_state = 23}, + [4081] = {.lex_state = 23}, + [4082] = {.lex_state = 23}, + [4083] = {.lex_state = 25}, + [4084] = {.lex_state = 23}, + [4085] = {.lex_state = 25}, + [4086] = {.lex_state = 25}, + [4087] = {.lex_state = 25}, + [4088] = {.lex_state = 25}, + [4089] = {.lex_state = 23}, + [4090] = {.lex_state = 25}, + [4091] = {.lex_state = 23}, + [4092] = {.lex_state = 25}, + [4093] = {.lex_state = 23}, + [4094] = {.lex_state = 23}, + [4095] = {.lex_state = 25}, + [4096] = {.lex_state = 25}, + [4097] = {.lex_state = 23}, + [4098] = {.lex_state = 23}, + [4099] = {.lex_state = 25}, + [4100] = {.lex_state = 25}, + [4101] = {.lex_state = 25}, + [4102] = {.lex_state = 25}, + [4103] = {.lex_state = 23}, + [4104] = {.lex_state = 25}, + [4105] = {.lex_state = 25}, + [4106] = {.lex_state = 25}, + [4107] = {.lex_state = 23}, + [4108] = {.lex_state = 23}, + [4109] = {.lex_state = 23}, + [4110] = {.lex_state = 23}, + [4111] = {.lex_state = 23}, + [4112] = {.lex_state = 23}, + [4113] = {.lex_state = 23}, + [4114] = {.lex_state = 23}, + [4115] = {.lex_state = 23}, + [4116] = {.lex_state = 23}, + [4117] = {.lex_state = 23}, + [4118] = {.lex_state = 25}, + [4119] = {.lex_state = 23}, + [4120] = {.lex_state = 25}, + [4121] = {.lex_state = 25}, + [4122] = {.lex_state = 23}, + [4123] = {.lex_state = 25}, + [4124] = {.lex_state = 23}, + [4125] = {.lex_state = 23}, + [4126] = {.lex_state = 23}, + [4127] = {.lex_state = 25}, + [4128] = {.lex_state = 25}, + [4129] = {.lex_state = 23}, + [4130] = {.lex_state = 25}, + [4131] = {.lex_state = 23}, + [4132] = {.lex_state = 23}, + [4133] = {.lex_state = 25}, + [4134] = {.lex_state = 23}, + [4135] = {.lex_state = 25}, + [4136] = {.lex_state = 25}, + [4137] = {.lex_state = 25}, + [4138] = {.lex_state = 25}, + [4139] = {.lex_state = 25}, + [4140] = {.lex_state = 25}, + [4141] = {.lex_state = 25}, + [4142] = {.lex_state = 25}, + [4143] = {.lex_state = 23}, + [4144] = {.lex_state = 23}, + [4145] = {.lex_state = 25}, + [4146] = {.lex_state = 25}, + [4147] = {.lex_state = 23}, + [4148] = {.lex_state = 23}, + [4149] = {.lex_state = 23}, + [4150] = {.lex_state = 25}, + [4151] = {.lex_state = 23}, + [4152] = {.lex_state = 23}, + [4153] = {.lex_state = 23}, + [4154] = {.lex_state = 23}, + [4155] = {.lex_state = 23}, + [4156] = {.lex_state = 25}, + [4157] = {.lex_state = 23}, + [4158] = {.lex_state = 25}, + [4159] = {.lex_state = 25}, + [4160] = {.lex_state = 23}, + [4161] = {.lex_state = 25}, + [4162] = {.lex_state = 23}, + [4163] = {.lex_state = 25}, + [4164] = {.lex_state = 25}, + [4165] = {.lex_state = 25}, + [4166] = {.lex_state = 25}, + [4167] = {.lex_state = 23}, + [4168] = {.lex_state = 25}, + [4169] = {.lex_state = 25}, + [4170] = {.lex_state = 23}, + [4171] = {.lex_state = 25}, + [4172] = {.lex_state = 23}, + [4173] = {.lex_state = 25}, + [4174] = {.lex_state = 23}, + [4175] = {.lex_state = 23}, + [4176] = {.lex_state = 25}, + [4177] = {.lex_state = 25}, + [4178] = {.lex_state = 25}, + [4179] = {.lex_state = 23}, + [4180] = {.lex_state = 25}, + [4181] = {.lex_state = 25}, + [4182] = {.lex_state = 25}, + [4183] = {.lex_state = 25}, + [4184] = {.lex_state = 23}, + [4185] = {.lex_state = 23}, + [4186] = {.lex_state = 25}, + [4187] = {.lex_state = 25}, + [4188] = {.lex_state = 25}, + [4189] = {.lex_state = 25}, + [4190] = {.lex_state = 25}, + [4191] = {.lex_state = 25}, + [4192] = {.lex_state = 23}, + [4193] = {.lex_state = 23}, + [4194] = {.lex_state = 23}, + [4195] = {.lex_state = 23}, + [4196] = {.lex_state = 23}, + [4197] = {.lex_state = 23}, + [4198] = {.lex_state = 23}, + [4199] = {.lex_state = 23}, + [4200] = {.lex_state = 25}, + [4201] = {.lex_state = 25}, + [4202] = {.lex_state = 23}, + [4203] = {.lex_state = 23}, + [4204] = {.lex_state = 23}, + [4205] = {.lex_state = 25}, + [4206] = {.lex_state = 23}, + [4207] = {.lex_state = 25}, + [4208] = {.lex_state = 23}, + [4209] = {.lex_state = 23}, + [4210] = {.lex_state = 23}, + [4211] = {.lex_state = 23}, + [4212] = {.lex_state = 25}, + [4213] = {.lex_state = 23}, + [4214] = {.lex_state = 25}, + [4215] = {.lex_state = 25}, + [4216] = {.lex_state = 25}, + [4217] = {.lex_state = 25}, + [4218] = {.lex_state = 25}, + [4219] = {.lex_state = 25}, + [4220] = {.lex_state = 25}, + [4221] = {.lex_state = 25}, + [4222] = {.lex_state = 25}, + [4223] = {.lex_state = 25}, + [4224] = {.lex_state = 25}, + [4225] = {.lex_state = 23}, + [4226] = {.lex_state = 25}, + [4227] = {.lex_state = 25}, + [4228] = {.lex_state = 23}, + [4229] = {.lex_state = 23}, + [4230] = {.lex_state = 23}, + [4231] = {.lex_state = 23}, + [4232] = {.lex_state = 25}, + [4233] = {.lex_state = 25}, + [4234] = {.lex_state = 23}, + [4235] = {.lex_state = 25}, + [4236] = {.lex_state = 23}, + [4237] = {.lex_state = 23}, + [4238] = {.lex_state = 25}, + [4239] = {.lex_state = 23}, + [4240] = {.lex_state = 23}, + [4241] = {.lex_state = 25}, + [4242] = {.lex_state = 25}, + [4243] = {.lex_state = 25}, + [4244] = {.lex_state = 25}, + [4245] = {.lex_state = 25}, + [4246] = {.lex_state = 25}, + [4247] = {.lex_state = 25}, + [4248] = {.lex_state = 25}, + [4249] = {.lex_state = 23}, + [4250] = {.lex_state = 23}, + [4251] = {.lex_state = 25}, + [4252] = {.lex_state = 23}, + [4253] = {.lex_state = 25}, + [4254] = {.lex_state = 25}, + [4255] = {.lex_state = 25}, + [4256] = {.lex_state = 25}, + [4257] = {.lex_state = 25}, + [4258] = {.lex_state = 23}, + [4259] = {.lex_state = 23}, + [4260] = {.lex_state = 25}, + [4261] = {.lex_state = 25}, + [4262] = {.lex_state = 23}, + [4263] = {.lex_state = 23}, + [4264] = {.lex_state = 25}, + [4265] = {.lex_state = 25}, + [4266] = {.lex_state = 25}, + [4267] = {.lex_state = 23}, + [4268] = {.lex_state = 25}, + [4269] = {.lex_state = 23}, + [4270] = {.lex_state = 23}, + [4271] = {.lex_state = 23}, + [4272] = {.lex_state = 23}, + [4273] = {.lex_state = 23}, + [4274] = {.lex_state = 25}, + [4275] = {.lex_state = 23}, + [4276] = {.lex_state = 23}, + [4277] = {.lex_state = 25}, + [4278] = {.lex_state = 25}, + [4279] = {.lex_state = 23}, + [4280] = {.lex_state = 23}, + [4281] = {.lex_state = 25}, + [4282] = {.lex_state = 23}, + [4283] = {.lex_state = 25}, + [4284] = {.lex_state = 25}, + [4285] = {.lex_state = 23}, + [4286] = {.lex_state = 25}, + [4287] = {.lex_state = 25}, + [4288] = {.lex_state = 25}, + [4289] = {.lex_state = 25}, + [4290] = {.lex_state = 25}, + [4291] = {.lex_state = 25}, + [4292] = {.lex_state = 25}, + [4293] = {.lex_state = 25}, + [4294] = {.lex_state = 25}, + [4295] = {.lex_state = 23}, + [4296] = {.lex_state = 23}, + [4297] = {.lex_state = 23}, + [4298] = {.lex_state = 25}, + [4299] = {.lex_state = 25}, + [4300] = {.lex_state = 25}, + [4301] = {.lex_state = 25}, + [4302] = {.lex_state = 25}, + [4303] = {.lex_state = 25}, + [4304] = {.lex_state = 25}, + [4305] = {.lex_state = 25}, + [4306] = {.lex_state = 25}, + [4307] = {.lex_state = 25}, + [4308] = {.lex_state = 25}, + [4309] = {.lex_state = 25}, + [4310] = {.lex_state = 23}, + [4311] = {.lex_state = 25}, + [4312] = {.lex_state = 23}, + [4313] = {.lex_state = 23}, + [4314] = {.lex_state = 23}, + [4315] = {.lex_state = 25}, + [4316] = {.lex_state = 23}, + [4317] = {.lex_state = 23}, + [4318] = {.lex_state = 23}, + [4319] = {.lex_state = 25}, + [4320] = {.lex_state = 23}, + [4321] = {.lex_state = 23}, + [4322] = {.lex_state = 23}, + [4323] = {.lex_state = 23}, + [4324] = {.lex_state = 23}, + [4325] = {.lex_state = 23}, + [4326] = {.lex_state = 23}, + [4327] = {.lex_state = 23}, + [4328] = {.lex_state = 23}, + [4329] = {.lex_state = 25}, + [4330] = {.lex_state = 25}, + [4331] = {.lex_state = 23}, + [4332] = {.lex_state = 23}, + [4333] = {.lex_state = 23}, + [4334] = {.lex_state = 25}, + [4335] = {.lex_state = 25}, + [4336] = {.lex_state = 23}, + [4337] = {.lex_state = 23}, + [4338] = {.lex_state = 23}, + [4339] = {.lex_state = 25}, + [4340] = {.lex_state = 23}, + [4341] = {.lex_state = 23}, + [4342] = {.lex_state = 23}, + [4343] = {.lex_state = 23}, + [4344] = {.lex_state = 25}, + [4345] = {.lex_state = 23}, + [4346] = {.lex_state = 25}, + [4347] = {.lex_state = 23}, + [4348] = {.lex_state = 23}, + [4349] = {.lex_state = 23}, + [4350] = {.lex_state = 25}, + [4351] = {.lex_state = 23}, + [4352] = {.lex_state = 25}, + [4353] = {.lex_state = 25}, + [4354] = {.lex_state = 23}, + [4355] = {.lex_state = 25}, + [4356] = {.lex_state = 23}, + [4357] = {.lex_state = 23}, + [4358] = {.lex_state = 25}, + [4359] = {.lex_state = 23}, + [4360] = {.lex_state = 23}, + [4361] = {.lex_state = 23}, + [4362] = {.lex_state = 25}, + [4363] = {.lex_state = 23}, + [4364] = {.lex_state = 25}, + [4365] = {.lex_state = 23}, + [4366] = {.lex_state = 23}, + [4367] = {.lex_state = 25}, + [4368] = {.lex_state = 23}, + [4369] = {.lex_state = 23}, + [4370] = {.lex_state = 23}, + [4371] = {.lex_state = 23}, + [4372] = {.lex_state = 23}, + [4373] = {.lex_state = 23}, + [4374] = {.lex_state = 23}, + [4375] = {.lex_state = 23}, + [4376] = {.lex_state = 23}, + [4377] = {.lex_state = 25}, + [4378] = {.lex_state = 23}, + [4379] = {.lex_state = 25}, + [4380] = {.lex_state = 23}, + [4381] = {.lex_state = 25}, + [4382] = {.lex_state = 23}, + [4383] = {.lex_state = 25}, + [4384] = {.lex_state = 25}, + [4385] = {.lex_state = 23}, + [4386] = {.lex_state = 23}, + [4387] = {.lex_state = 25}, + [4388] = {.lex_state = 23}, + [4389] = {.lex_state = 23}, + [4390] = {.lex_state = 23}, + [4391] = {.lex_state = 25}, + [4392] = {.lex_state = 25}, + [4393] = {.lex_state = 25}, + [4394] = {.lex_state = 25}, + [4395] = {.lex_state = 23}, + [4396] = {.lex_state = 25}, + [4397] = {.lex_state = 23}, + [4398] = {.lex_state = 25}, + [4399] = {.lex_state = 25}, + [4400] = {.lex_state = 25}, + [4401] = {.lex_state = 25}, + [4402] = {.lex_state = 25}, + [4403] = {.lex_state = 25}, + [4404] = {.lex_state = 25}, + [4405] = {.lex_state = 23}, + [4406] = {.lex_state = 23}, + [4407] = {.lex_state = 23}, + [4408] = {.lex_state = 23}, + [4409] = {.lex_state = 23}, + [4410] = {.lex_state = 25}, + [4411] = {.lex_state = 23}, + [4412] = {.lex_state = 23}, + [4413] = {.lex_state = 25}, + [4414] = {.lex_state = 23}, + [4415] = {.lex_state = 25}, + [4416] = {.lex_state = 25}, + [4417] = {.lex_state = 23}, + [4418] = {.lex_state = 25}, + [4419] = {.lex_state = 23}, + [4420] = {.lex_state = 23}, + [4421] = {.lex_state = 21}, + [4422] = {.lex_state = 23}, + [4423] = {.lex_state = 23}, + [4424] = {.lex_state = 25}, + [4425] = {.lex_state = 23}, + [4426] = {.lex_state = 23}, + [4427] = {.lex_state = 25}, + [4428] = {.lex_state = 25}, + [4429] = {.lex_state = 23}, + [4430] = {.lex_state = 23}, + [4431] = {.lex_state = 23}, + [4432] = {.lex_state = 23}, + [4433] = {.lex_state = 25}, + [4434] = {.lex_state = 23}, + [4435] = {.lex_state = 23}, + [4436] = {.lex_state = 23}, + [4437] = {.lex_state = 25}, + [4438] = {.lex_state = 25}, + [4439] = {.lex_state = 25}, + [4440] = {.lex_state = 23}, + [4441] = {.lex_state = 25}, + [4442] = {.lex_state = 23}, + [4443] = {.lex_state = 25}, + [4444] = {.lex_state = 25}, + [4445] = {.lex_state = 23}, + [4446] = {.lex_state = 23}, + [4447] = {.lex_state = 25}, + [4448] = {.lex_state = 25}, + [4449] = {.lex_state = 25}, + [4450] = {.lex_state = 25}, + [4451] = {.lex_state = 23}, + [4452] = {.lex_state = 25}, + [4453] = {.lex_state = 25}, + [4454] = {.lex_state = 25}, + [4455] = {.lex_state = 23}, + [4456] = {.lex_state = 23}, + [4457] = {.lex_state = 25}, + [4458] = {.lex_state = 23}, + [4459] = {.lex_state = 23}, + [4460] = {.lex_state = 23}, + [4461] = {.lex_state = 23}, + [4462] = {.lex_state = 23}, + [4463] = {.lex_state = 23}, + [4464] = {.lex_state = 23}, + [4465] = {.lex_state = 23}, + [4466] = {.lex_state = 25}, + [4467] = {.lex_state = 23}, + [4468] = {.lex_state = 25}, + [4469] = {.lex_state = 23}, + [4470] = {.lex_state = 25}, + [4471] = {.lex_state = 23}, + [4472] = {.lex_state = 25}, + [4473] = {.lex_state = 25}, + [4474] = {.lex_state = 23}, + [4475] = {.lex_state = 23}, + [4476] = {.lex_state = 23}, + [4477] = {.lex_state = 23}, + [4478] = {.lex_state = 23}, + [4479] = {.lex_state = 25}, + [4480] = {.lex_state = 25}, + [4481] = {.lex_state = 23}, + [4482] = {.lex_state = 23}, + [4483] = {.lex_state = 25}, + [4484] = {.lex_state = 25}, + [4485] = {.lex_state = 25}, + [4486] = {.lex_state = 25}, + [4487] = {.lex_state = 25}, + [4488] = {.lex_state = 23}, + [4489] = {.lex_state = 23}, + [4490] = {.lex_state = 23}, + [4491] = {.lex_state = 25}, + [4492] = {.lex_state = 25}, + [4493] = {.lex_state = 25}, + [4494] = {.lex_state = 25}, + [4495] = {.lex_state = 25}, + [4496] = {.lex_state = 25}, + [4497] = {.lex_state = 23}, + [4498] = {.lex_state = 25}, + [4499] = {.lex_state = 23}, + [4500] = {.lex_state = 23}, + [4501] = {.lex_state = 23}, + [4502] = {.lex_state = 23}, + [4503] = {.lex_state = 23}, + [4504] = {.lex_state = 23}, + [4505] = {.lex_state = 23}, + [4506] = {.lex_state = 23}, + [4507] = {.lex_state = 23}, + [4508] = {.lex_state = 23}, + [4509] = {.lex_state = 23}, + [4510] = {.lex_state = 23}, + [4511] = {.lex_state = 23}, + [4512] = {.lex_state = 23}, + [4513] = {.lex_state = 23}, + [4514] = {.lex_state = 23}, + [4515] = {.lex_state = 23}, + [4516] = {.lex_state = 23}, + [4517] = {.lex_state = 23}, + [4518] = {.lex_state = 23}, + [4519] = {.lex_state = 25}, + [4520] = {.lex_state = 23}, + [4521] = {.lex_state = 25}, + [4522] = {.lex_state = 25}, + [4523] = {.lex_state = 25}, + [4524] = {.lex_state = 25}, + [4525] = {.lex_state = 23}, + [4526] = {.lex_state = 25}, + [4527] = {.lex_state = 25}, + [4528] = {.lex_state = 25}, + [4529] = {.lex_state = 23}, + [4530] = {.lex_state = 23}, + [4531] = {.lex_state = 23}, + [4532] = {.lex_state = 25}, + [4533] = {.lex_state = 25}, + [4534] = {.lex_state = 23}, + [4535] = {.lex_state = 23}, + [4536] = {.lex_state = 25}, + [4537] = {.lex_state = 23}, + [4538] = {.lex_state = 25}, + [4539] = {.lex_state = 23}, + [4540] = {.lex_state = 25}, + [4541] = {.lex_state = 25}, + [4542] = {.lex_state = 23}, + [4543] = {.lex_state = 23}, + [4544] = {.lex_state = 23}, + [4545] = {.lex_state = 23}, + [4546] = {.lex_state = 25}, + [4547] = {.lex_state = 25}, + [4548] = {.lex_state = 25}, + [4549] = {.lex_state = 25}, + [4550] = {.lex_state = 25}, + [4551] = {.lex_state = 25}, + [4552] = {.lex_state = 23}, + [4553] = {.lex_state = 25}, + [4554] = {.lex_state = 23}, + [4555] = {.lex_state = 25}, + [4556] = {.lex_state = 23}, + [4557] = {.lex_state = 23}, + [4558] = {.lex_state = 23}, + [4559] = {.lex_state = 23}, + [4560] = {.lex_state = 23}, + [4561] = {.lex_state = 23}, + [4562] = {.lex_state = 23}, + [4563] = {.lex_state = 23}, + [4564] = {.lex_state = 23}, + [4565] = {.lex_state = 23}, + [4566] = {.lex_state = 23}, + [4567] = {.lex_state = 23}, + [4568] = {.lex_state = 25}, + [4569] = {.lex_state = 25}, + [4570] = {.lex_state = 23}, + [4571] = {.lex_state = 23}, + [4572] = {.lex_state = 25}, + [4573] = {.lex_state = 21}, + [4574] = {.lex_state = 23}, + [4575] = {.lex_state = 23}, + [4576] = {.lex_state = 25}, + [4577] = {.lex_state = 25}, + [4578] = {.lex_state = 23}, + [4579] = {.lex_state = 25}, + [4580] = {.lex_state = 23}, + [4581] = {.lex_state = 23}, + [4582] = {.lex_state = 25}, + [4583] = {.lex_state = 25}, + [4584] = {.lex_state = 25}, + [4585] = {.lex_state = 23}, + [4586] = {.lex_state = 23}, + [4587] = {.lex_state = 23}, + [4588] = {.lex_state = 23}, + [4589] = {.lex_state = 23}, + [4590] = {.lex_state = 23}, + [4591] = {.lex_state = 25}, + [4592] = {.lex_state = 25}, + [4593] = {.lex_state = 25}, + [4594] = {.lex_state = 25}, + [4595] = {.lex_state = 25}, + [4596] = {.lex_state = 25}, + [4597] = {.lex_state = 25}, + [4598] = {.lex_state = 25}, + [4599] = {.lex_state = 25}, + [4600] = {.lex_state = 25}, + [4601] = {.lex_state = 25}, + [4602] = {.lex_state = 25}, + [4603] = {.lex_state = 25}, + [4604] = {.lex_state = 25}, + [4605] = {.lex_state = 25}, + [4606] = {.lex_state = 25}, + [4607] = {.lex_state = 25}, + [4608] = {.lex_state = 25}, + [4609] = {.lex_state = 25}, + [4610] = {.lex_state = 25}, + [4611] = {.lex_state = 25}, + [4612] = {.lex_state = 25}, + [4613] = {.lex_state = 25}, + [4614] = {.lex_state = 25}, + [4615] = {.lex_state = 23}, + [4616] = {.lex_state = 25}, + [4617] = {.lex_state = 23}, + [4618] = {.lex_state = 25}, + [4619] = {.lex_state = 25}, + [4620] = {.lex_state = 25}, + [4621] = {.lex_state = 25}, + [4622] = {.lex_state = 25}, + [4623] = {.lex_state = 25}, + [4624] = {.lex_state = 25}, + [4625] = {.lex_state = 25}, + [4626] = {.lex_state = 25}, + [4627] = {.lex_state = 25}, + [4628] = {.lex_state = 25}, + [4629] = {.lex_state = 25}, + [4630] = {.lex_state = 25}, + [4631] = {.lex_state = 25}, + [4632] = {.lex_state = 25}, + [4633] = {.lex_state = 25}, + [4634] = {.lex_state = 25}, + [4635] = {.lex_state = 25}, + [4636] = {.lex_state = 25}, + [4637] = {.lex_state = 25}, + [4638] = {.lex_state = 25}, + [4639] = {.lex_state = 25}, + [4640] = {.lex_state = 25}, + [4641] = {.lex_state = 25}, + [4642] = {.lex_state = 25}, + [4643] = {.lex_state = 25}, + [4644] = {.lex_state = 25}, + [4645] = {.lex_state = 25}, + [4646] = {.lex_state = 25}, + [4647] = {.lex_state = 25}, + [4648] = {.lex_state = 25}, + [4649] = {.lex_state = 25}, + [4650] = {.lex_state = 25}, + [4651] = {.lex_state = 25}, + [4652] = {.lex_state = 25}, + [4653] = {.lex_state = 25}, + [4654] = {.lex_state = 25}, + [4655] = {.lex_state = 25}, + [4656] = {.lex_state = 25}, + [4657] = {.lex_state = 25}, + [4658] = {.lex_state = 25}, + [4659] = {.lex_state = 25}, + [4660] = {.lex_state = 25}, + [4661] = {.lex_state = 25}, + [4662] = {.lex_state = 25}, + [4663] = {.lex_state = 25}, + [4664] = {.lex_state = 25}, + [4665] = {.lex_state = 25}, + [4666] = {.lex_state = 23}, + [4667] = {.lex_state = 25}, + [4668] = {.lex_state = 25}, + [4669] = {.lex_state = 25}, + [4670] = {.lex_state = 25}, + [4671] = {.lex_state = 25}, + [4672] = {.lex_state = 25}, + [4673] = {.lex_state = 25}, + [4674] = {.lex_state = 25}, + [4675] = {.lex_state = 23}, + [4676] = {.lex_state = 23}, + [4677] = {.lex_state = 25}, + [4678] = {.lex_state = 25}, + [4679] = {.lex_state = 23}, + [4680] = {.lex_state = 25}, + [4681] = {.lex_state = 25}, + [4682] = {.lex_state = 25}, + [4683] = {.lex_state = 25}, + [4684] = {.lex_state = 25}, + [4685] = {.lex_state = 25}, + [4686] = {.lex_state = 25}, + [4687] = {.lex_state = 25}, + [4688] = {.lex_state = 25}, + [4689] = {.lex_state = 25}, + [4690] = {.lex_state = 25}, + [4691] = {.lex_state = 25}, + [4692] = {.lex_state = 23}, + [4693] = {.lex_state = 23}, + [4694] = {.lex_state = 23}, + [4695] = {.lex_state = 25}, + [4696] = {.lex_state = 25}, + [4697] = {.lex_state = 25}, + [4698] = {.lex_state = 25}, + [4699] = {.lex_state = 23}, + [4700] = {.lex_state = 23}, + [4701] = {.lex_state = 25}, + [4702] = {.lex_state = 23}, + [4703] = {.lex_state = 23}, + [4704] = {.lex_state = 23}, + [4705] = {.lex_state = 23}, + [4706] = {.lex_state = 25}, + [4707] = {.lex_state = 25}, + [4708] = {.lex_state = 25}, + [4709] = {.lex_state = 25}, + [4710] = {.lex_state = 25}, + [4711] = {.lex_state = 25}, + [4712] = {.lex_state = 25}, + [4713] = {.lex_state = 25}, + [4714] = {.lex_state = 25}, + [4715] = {.lex_state = 23}, + [4716] = {.lex_state = 23}, + [4717] = {.lex_state = 23}, + [4718] = {.lex_state = 23}, + [4719] = {.lex_state = 25}, + [4720] = {.lex_state = 23}, + [4721] = {.lex_state = 25}, + [4722] = {.lex_state = 23}, + [4723] = {.lex_state = 23}, + [4724] = {.lex_state = 25}, + [4725] = {.lex_state = 25}, + [4726] = {.lex_state = 23}, + [4727] = {.lex_state = 23}, + [4728] = {.lex_state = 23}, + [4729] = {.lex_state = 25}, + [4730] = {.lex_state = 23}, + [4731] = {.lex_state = 23}, + [4732] = {.lex_state = 25}, + [4733] = {.lex_state = 25}, + [4734] = {.lex_state = 25}, + [4735] = {.lex_state = 25}, + [4736] = {.lex_state = 25}, + [4737] = {.lex_state = 23}, + [4738] = {.lex_state = 25}, + [4739] = {.lex_state = 23}, + [4740] = {.lex_state = 23}, + [4741] = {.lex_state = 25}, + [4742] = {.lex_state = 25}, + [4743] = {.lex_state = 23}, + [4744] = {.lex_state = 25}, + [4745] = {.lex_state = 25}, + [4746] = {.lex_state = 23}, + [4747] = {.lex_state = 25}, + [4748] = {.lex_state = 25}, + [4749] = {.lex_state = 25}, + [4750] = {.lex_state = 25}, + [4751] = {.lex_state = 25}, + [4752] = {.lex_state = 23}, + [4753] = {.lex_state = 25}, + [4754] = {.lex_state = 25}, + [4755] = {.lex_state = 25}, + [4756] = {.lex_state = 25}, + [4757] = {.lex_state = 25}, + [4758] = {.lex_state = 23}, + [4759] = {.lex_state = 25}, + [4760] = {.lex_state = 25}, + [4761] = {.lex_state = 25}, + [4762] = {.lex_state = 25}, + [4763] = {.lex_state = 21}, + [4764] = {.lex_state = 25}, + [4765] = {.lex_state = 25}, + [4766] = {.lex_state = 25}, + [4767] = {.lex_state = 25}, + [4768] = {.lex_state = 25}, + [4769] = {.lex_state = 25}, + [4770] = {.lex_state = 25}, + [4771] = {.lex_state = 25}, + [4772] = {.lex_state = 21}, + [4773] = {.lex_state = 25}, + [4774] = {.lex_state = 25}, + [4775] = {.lex_state = 21}, + [4776] = {.lex_state = 25}, + [4777] = {.lex_state = 25}, + [4778] = {.lex_state = 25}, + [4779] = {.lex_state = 25}, + [4780] = {.lex_state = 25}, + [4781] = {.lex_state = 25}, + [4782] = {.lex_state = 21}, + [4783] = {.lex_state = 25}, + [4784] = {.lex_state = 21}, + [4785] = {.lex_state = 25}, + [4786] = {.lex_state = 25}, + [4787] = {.lex_state = 25}, + [4788] = {.lex_state = 21}, + [4789] = {.lex_state = 25}, + [4790] = {.lex_state = 25}, + [4791] = {.lex_state = 25}, + [4792] = {.lex_state = 25}, + [4793] = {.lex_state = 25}, + [4794] = {.lex_state = 25}, + [4795] = {.lex_state = 25}, + [4796] = {.lex_state = 25}, + [4797] = {.lex_state = 25}, + [4798] = {.lex_state = 25}, + [4799] = {.lex_state = 21}, + [4800] = {.lex_state = 25}, + [4801] = {.lex_state = 21}, + [4802] = {.lex_state = 25}, + [4803] = {.lex_state = 21}, + [4804] = {.lex_state = 25}, + [4805] = {.lex_state = 25}, + [4806] = {.lex_state = 25}, + [4807] = {.lex_state = 21}, + [4808] = {.lex_state = 21}, + [4809] = {.lex_state = 25}, + [4810] = {.lex_state = 25}, + [4811] = {.lex_state = 25}, + [4812] = {.lex_state = 25}, + [4813] = {.lex_state = 25}, + [4814] = {.lex_state = 25}, + [4815] = {.lex_state = 25}, + [4816] = {.lex_state = 25}, + [4817] = {.lex_state = 25}, + [4818] = {.lex_state = 25}, + [4819] = {.lex_state = 25}, + [4820] = {.lex_state = 25}, + [4821] = {.lex_state = 25}, + [4822] = {.lex_state = 25}, + [4823] = {.lex_state = 25}, + [4824] = {.lex_state = 25}, + [4825] = {.lex_state = 25}, + [4826] = {.lex_state = 21}, + [4827] = {.lex_state = 25}, + [4828] = {.lex_state = 25}, + [4829] = {.lex_state = 25}, + [4830] = {.lex_state = 25}, + [4831] = {.lex_state = 25}, + [4832] = {.lex_state = 25}, + [4833] = {.lex_state = 25}, + [4834] = {.lex_state = 25}, + [4835] = {.lex_state = 25}, + [4836] = {.lex_state = 25}, + [4837] = {.lex_state = 21}, + [4838] = {.lex_state = 25}, + [4839] = {.lex_state = 25}, + [4840] = {.lex_state = 25}, + [4841] = {.lex_state = 25}, + [4842] = {.lex_state = 25}, + [4843] = {.lex_state = 25}, + [4844] = {.lex_state = 25}, + [4845] = {.lex_state = 25}, + [4846] = {.lex_state = 25}, + [4847] = {.lex_state = 25}, + [4848] = {.lex_state = 25}, + [4849] = {.lex_state = 25}, + [4850] = {.lex_state = 25}, + [4851] = {.lex_state = 25}, + [4852] = {.lex_state = 25}, + [4853] = {.lex_state = 25}, + [4854] = {.lex_state = 25}, + [4855] = {.lex_state = 25}, + [4856] = {.lex_state = 25}, + [4857] = {.lex_state = 25}, + [4858] = {.lex_state = 25}, + [4859] = {.lex_state = 25}, + [4860] = {.lex_state = 25}, + [4861] = {.lex_state = 25}, + [4862] = {.lex_state = 25}, + [4863] = {.lex_state = 25}, + [4864] = {.lex_state = 25}, + [4865] = {.lex_state = 25}, + [4866] = {.lex_state = 25}, + [4867] = {.lex_state = 25}, + [4868] = {.lex_state = 25}, + [4869] = {.lex_state = 25}, + [4870] = {.lex_state = 25}, + [4871] = {.lex_state = 25}, + [4872] = {.lex_state = 25}, + [4873] = {.lex_state = 25}, + [4874] = {.lex_state = 21}, + [4875] = {.lex_state = 25}, + [4876] = {.lex_state = 25}, + [4877] = {.lex_state = 25}, + [4878] = {.lex_state = 21}, + [4879] = {.lex_state = 25}, + [4880] = {.lex_state = 21}, + [4881] = {.lex_state = 21}, + [4882] = {.lex_state = 25}, + [4883] = {.lex_state = 25}, + [4884] = {.lex_state = 25}, + [4885] = {.lex_state = 25}, + [4886] = {.lex_state = 25}, + [4887] = {.lex_state = 25}, + [4888] = {.lex_state = 25}, + [4889] = {.lex_state = 21}, + [4890] = {.lex_state = 21}, + [4891] = {.lex_state = 25}, + [4892] = {.lex_state = 25}, + [4893] = {.lex_state = 25}, + [4894] = {.lex_state = 25}, + [4895] = {.lex_state = 25}, + [4896] = {.lex_state = 25}, + [4897] = {.lex_state = 25}, + [4898] = {.lex_state = 21}, + [4899] = {.lex_state = 25}, + [4900] = {.lex_state = 25}, + [4901] = {.lex_state = 25}, + [4902] = {.lex_state = 25}, + [4903] = {.lex_state = 25}, + [4904] = {.lex_state = 25}, + [4905] = {.lex_state = 25}, + [4906] = {.lex_state = 25}, + [4907] = {.lex_state = 25}, + [4908] = {.lex_state = 25}, + [4909] = {.lex_state = 25}, + [4910] = {.lex_state = 25}, + [4911] = {.lex_state = 25}, + [4912] = {.lex_state = 25}, + [4913] = {.lex_state = 25}, + [4914] = {.lex_state = 25}, + [4915] = {.lex_state = 25}, + [4916] = {.lex_state = 25}, + [4917] = {.lex_state = 25}, + [4918] = {.lex_state = 25}, + [4919] = {.lex_state = 25}, + [4920] = {.lex_state = 25}, + [4921] = {.lex_state = 25}, + [4922] = {.lex_state = 25}, + [4923] = {.lex_state = 25}, + [4924] = {.lex_state = 25}, + [4925] = {.lex_state = 25}, + [4926] = {.lex_state = 25}, + [4927] = {.lex_state = 25}, + [4928] = {.lex_state = 21}, + [4929] = {.lex_state = 25}, + [4930] = {.lex_state = 25}, + [4931] = {.lex_state = 25}, + [4932] = {.lex_state = 25}, + [4933] = {.lex_state = 25}, + [4934] = {.lex_state = 25}, + [4935] = {.lex_state = 25}, + [4936] = {.lex_state = 25}, + [4937] = {.lex_state = 25}, + [4938] = {.lex_state = 25}, + [4939] = {.lex_state = 25}, + [4940] = {.lex_state = 25}, + [4941] = {.lex_state = 25}, + [4942] = {.lex_state = 25}, + [4943] = {.lex_state = 25}, + [4944] = {.lex_state = 25}, + [4945] = {.lex_state = 25}, + [4946] = {.lex_state = 25}, + [4947] = {.lex_state = 25}, + [4948] = {.lex_state = 25}, + [4949] = {.lex_state = 25}, + [4950] = {.lex_state = 25}, + [4951] = {.lex_state = 25}, + [4952] = {.lex_state = 25}, + [4953] = {.lex_state = 25}, + [4954] = {.lex_state = 25}, + [4955] = {.lex_state = 25}, + [4956] = {.lex_state = 25}, + [4957] = {.lex_state = 25}, + [4958] = {.lex_state = 25}, + [4959] = {.lex_state = 25}, + [4960] = {.lex_state = 25}, + [4961] = {.lex_state = 25}, + [4962] = {.lex_state = 25}, + [4963] = {.lex_state = 25}, + [4964] = {.lex_state = 25}, + [4965] = {.lex_state = 25}, + [4966] = {.lex_state = 25}, + [4967] = {.lex_state = 25}, + [4968] = {.lex_state = 25}, + [4969] = {.lex_state = 25}, + [4970] = {.lex_state = 25}, + [4971] = {.lex_state = 25}, + [4972] = {.lex_state = 25}, + [4973] = {.lex_state = 25}, + [4974] = {.lex_state = 25}, + [4975] = {.lex_state = 25}, + [4976] = {.lex_state = 25}, + [4977] = {.lex_state = 21}, + [4978] = {.lex_state = 25}, + [4979] = {.lex_state = 25}, + [4980] = {.lex_state = 25}, + [4981] = {.lex_state = 25}, + [4982] = {.lex_state = 25}, + [4983] = {.lex_state = 25}, + [4984] = {.lex_state = 25}, + [4985] = {.lex_state = 25}, + [4986] = {.lex_state = 25}, + [4987] = {.lex_state = 25}, + [4988] = {.lex_state = 25}, + [4989] = {.lex_state = 25}, + [4990] = {.lex_state = 25}, + [4991] = {.lex_state = 25}, + [4992] = {.lex_state = 25}, + [4993] = {.lex_state = 25}, + [4994] = {.lex_state = 25}, + [4995] = {.lex_state = 25}, + [4996] = {.lex_state = 25}, + [4997] = {.lex_state = 25}, + [4998] = {.lex_state = 25}, + [4999] = {.lex_state = 25}, + [5000] = {.lex_state = 25}, + [5001] = {.lex_state = 25}, + [5002] = {.lex_state = 25}, + [5003] = {.lex_state = 25}, + [5004] = {.lex_state = 25}, + [5005] = {.lex_state = 25}, + [5006] = {.lex_state = 25}, + [5007] = {.lex_state = 25}, + [5008] = {.lex_state = 25}, + [5009] = {.lex_state = 25}, + [5010] = {.lex_state = 25}, + [5011] = {.lex_state = 25}, + [5012] = {.lex_state = 25}, + [5013] = {.lex_state = 25}, + [5014] = {.lex_state = 25}, + [5015] = {.lex_state = 25}, + [5016] = {.lex_state = 25}, + [5017] = {.lex_state = 21}, + [5018] = {.lex_state = 21}, + [5019] = {.lex_state = 22}, + [5020] = {.lex_state = 22}, + [5021] = {.lex_state = 22}, + [5022] = {.lex_state = 22}, + [5023] = {.lex_state = 22}, + [5024] = {.lex_state = 22}, + [5025] = {.lex_state = 23}, + [5026] = {.lex_state = 21}, + [5027] = {.lex_state = 23}, + [5028] = {.lex_state = 23}, + [5029] = {.lex_state = 22}, + [5030] = {.lex_state = 21}, + [5031] = {.lex_state = 22}, + [5032] = {.lex_state = 22}, + [5033] = {.lex_state = 22}, + [5034] = {.lex_state = 22}, + [5035] = {.lex_state = 22}, + [5036] = {.lex_state = 21}, + [5037] = {.lex_state = 23}, + [5038] = {.lex_state = 23}, + [5039] = {.lex_state = 23}, + [5040] = {.lex_state = 23}, + [5041] = {.lex_state = 23}, + [5042] = {.lex_state = 23}, + [5043] = {.lex_state = 23}, + [5044] = {.lex_state = 23}, + [5045] = {.lex_state = 23}, + [5046] = {.lex_state = 21}, + [5047] = {.lex_state = 21}, + [5048] = {.lex_state = 0}, + [5049] = {.lex_state = 23}, + [5050] = {.lex_state = 0}, + [5051] = {.lex_state = 21}, + [5052] = {.lex_state = 23}, + [5053] = {.lex_state = 23}, + [5054] = {.lex_state = 21}, + [5055] = {.lex_state = 23}, + [5056] = {.lex_state = 23}, + [5057] = {.lex_state = 23}, + [5058] = {.lex_state = 23}, + [5059] = {.lex_state = 23}, + [5060] = {.lex_state = 23}, + [5061] = {.lex_state = 23}, + [5062] = {.lex_state = 23}, + [5063] = {.lex_state = 23}, + [5064] = {.lex_state = 23}, + [5065] = {.lex_state = 23}, + [5066] = {.lex_state = 23}, + [5067] = {.lex_state = 23}, + [5068] = {.lex_state = 23}, + [5069] = {.lex_state = 23}, + [5070] = {.lex_state = 23}, + [5071] = {.lex_state = 23}, + [5072] = {.lex_state = 23}, + [5073] = {.lex_state = 23}, + [5074] = {.lex_state = 23}, + [5075] = {.lex_state = 23}, + [5076] = {.lex_state = 23}, + [5077] = {.lex_state = 21}, + [5078] = {.lex_state = 23}, + [5079] = {.lex_state = 21}, + [5080] = {.lex_state = 23}, + [5081] = {.lex_state = 21}, + [5082] = {.lex_state = 0}, + [5083] = {.lex_state = 21}, + [5084] = {.lex_state = 21}, + [5085] = {.lex_state = 23}, + [5086] = {.lex_state = 21}, + [5087] = {.lex_state = 21}, + [5088] = {.lex_state = 21}, + [5089] = {.lex_state = 0}, + [5090] = {.lex_state = 23}, + [5091] = {.lex_state = 21}, + [5092] = {.lex_state = 21}, + [5093] = {.lex_state = 21}, + [5094] = {.lex_state = 23}, + [5095] = {.lex_state = 21}, + [5096] = {.lex_state = 21}, + [5097] = {.lex_state = 21}, + [5098] = {.lex_state = 21}, + [5099] = {.lex_state = 21}, + [5100] = {.lex_state = 21}, + [5101] = {.lex_state = 21}, + [5102] = {.lex_state = 21}, + [5103] = {.lex_state = 21}, + [5104] = {.lex_state = 21}, + [5105] = {.lex_state = 21}, + [5106] = {.lex_state = 21}, + [5107] = {.lex_state = 21}, + [5108] = {.lex_state = 21}, + [5109] = {.lex_state = 21}, + [5110] = {.lex_state = 21}, + [5111] = {.lex_state = 21}, + [5112] = {.lex_state = 21}, + [5113] = {.lex_state = 21}, + [5114] = {.lex_state = 21}, + [5115] = {.lex_state = 21}, + [5116] = {.lex_state = 21}, + [5117] = {.lex_state = 21}, [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 0}, + [5119] = {.lex_state = 21}, [5120] = {.lex_state = 0}, - [5121] = {.lex_state = 24}, - [5122] = {.lex_state = 0}, + [5121] = {.lex_state = 0}, + [5122] = {.lex_state = 21}, [5123] = {.lex_state = 0}, - [5124] = {.lex_state = 24}, - [5125] = {.lex_state = 0}, + [5124] = {.lex_state = 0}, + [5125] = {.lex_state = 21}, [5126] = {.lex_state = 0}, [5127] = {.lex_state = 0}, [5128] = {.lex_state = 0}, - [5129] = {.lex_state = 0}, - [5130] = {.lex_state = 24}, - [5131] = {.lex_state = 0}, - [5132] = {.lex_state = 0}, - [5133] = {.lex_state = 24}, - [5134] = {.lex_state = 0}, - [5135] = {.lex_state = 0}, - [5136] = {.lex_state = 24}, - [5137] = {.lex_state = 0}, - [5138] = {.lex_state = 24}, - [5139] = {.lex_state = 24}, - [5140] = {.lex_state = 0}, - [5141] = {.lex_state = 24}, - [5142] = {.lex_state = 24}, - [5143] = {.lex_state = 0}, - [5144] = {.lex_state = 24}, - [5145] = {.lex_state = 0}, - [5146] = {.lex_state = 24}, - [5147] = {.lex_state = 0}, - [5148] = {.lex_state = 24}, - [5149] = {.lex_state = 0}, - [5150] = {.lex_state = 0}, - [5151] = {.lex_state = 0}, - [5152] = {.lex_state = 24}, - [5153] = {.lex_state = 0}, - [5154] = {.lex_state = 24}, - [5155] = {.lex_state = 24}, - [5156] = {.lex_state = 24}, - [5157] = {.lex_state = 24}, - [5158] = {.lex_state = 0}, - [5159] = {.lex_state = 0}, - [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 24}, - [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 24}, - [5164] = {.lex_state = 0}, - [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 4}, - [5167] = {.lex_state = 24}, - [5168] = {.lex_state = 0}, - [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 0}, - [5171] = {.lex_state = 0}, - [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 0}, - [5174] = {.lex_state = 0}, - [5175] = {.lex_state = 24}, - [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 0}, - [5178] = {.lex_state = 24}, - [5179] = {.lex_state = 0}, - [5180] = {.lex_state = 0}, - [5181] = {.lex_state = 0}, - [5182] = {.lex_state = 0}, - [5183] = {.lex_state = 24}, - [5184] = {.lex_state = 24}, - [5185] = {.lex_state = 24}, - [5186] = {.lex_state = 0}, + [5129] = {.lex_state = 21}, + [5130] = {.lex_state = 21}, + [5131] = {.lex_state = 21}, + [5132] = {.lex_state = 21}, + [5133] = {.lex_state = 21}, + [5134] = {.lex_state = 21}, + [5135] = {.lex_state = 25}, + [5136] = {.lex_state = 25}, + [5137] = {.lex_state = 25}, + [5138] = {.lex_state = 25}, + [5139] = {.lex_state = 25}, + [5140] = {.lex_state = 25}, + [5141] = {.lex_state = 25}, + [5142] = {.lex_state = 25}, + [5143] = {.lex_state = 25}, + [5144] = {.lex_state = 25}, + [5145] = {.lex_state = 25}, + [5146] = {.lex_state = 25}, + [5147] = {.lex_state = 25}, + [5148] = {.lex_state = 25}, + [5149] = {.lex_state = 25}, + [5150] = {.lex_state = 25}, + [5151] = {.lex_state = 25}, + [5152] = {.lex_state = 25}, + [5153] = {.lex_state = 25}, + [5154] = {.lex_state = 25}, + [5155] = {.lex_state = 25}, + [5156] = {.lex_state = 25}, + [5157] = {.lex_state = 25}, + [5158] = {.lex_state = 25}, + [5159] = {.lex_state = 25}, + [5160] = {.lex_state = 25}, + [5161] = {.lex_state = 25}, + [5162] = {.lex_state = 25}, + [5163] = {.lex_state = 25}, + [5164] = {.lex_state = 25}, + [5165] = {.lex_state = 25}, + [5166] = {.lex_state = 25}, + [5167] = {.lex_state = 25}, + [5168] = {.lex_state = 25}, + [5169] = {.lex_state = 25}, + [5170] = {.lex_state = 25}, + [5171] = {.lex_state = 25}, + [5172] = {.lex_state = 25}, + [5173] = {.lex_state = 25}, + [5174] = {.lex_state = 25}, + [5175] = {.lex_state = 25}, + [5176] = {.lex_state = 25}, + [5177] = {.lex_state = 25}, + [5178] = {.lex_state = 25}, + [5179] = {.lex_state = 25}, + [5180] = {.lex_state = 25}, + [5181] = {.lex_state = 25}, + [5182] = {.lex_state = 21}, + [5183] = {.lex_state = 25}, + [5184] = {.lex_state = 25}, + [5185] = {.lex_state = 25}, + [5186] = {.lex_state = 25}, [5187] = {.lex_state = 0}, - [5188] = {.lex_state = 0}, - [5189] = {.lex_state = 24}, - [5190] = {.lex_state = 0}, - [5191] = {.lex_state = 24}, - [5192] = {.lex_state = 0}, - [5193] = {.lex_state = 0}, - [5194] = {.lex_state = 0}, - [5195] = {.lex_state = 24}, - [5196] = {.lex_state = 24}, - [5197] = {.lex_state = 24}, - [5198] = {.lex_state = 0}, - [5199] = {.lex_state = 24}, - [5200] = {.lex_state = 24}, - [5201] = {.lex_state = 0}, - [5202] = {.lex_state = 24}, - [5203] = {.lex_state = 0}, - [5204] = {.lex_state = 0}, - [5205] = {.lex_state = 0}, - [5206] = {.lex_state = 0}, - [5207] = {.lex_state = 0}, - [5208] = {.lex_state = 24}, - [5209] = {.lex_state = 0}, - [5210] = {.lex_state = 0}, - [5211] = {.lex_state = 0}, - [5212] = {.lex_state = 24}, - [5213] = {.lex_state = 24}, - [5214] = {.lex_state = 0}, - [5215] = {.lex_state = 24}, - [5216] = {.lex_state = 24}, - [5217] = {.lex_state = 0}, - [5218] = {.lex_state = 0}, - [5219] = {.lex_state = 0}, - [5220] = {.lex_state = 0}, - [5221] = {.lex_state = 0}, - [5222] = {.lex_state = 0}, - [5223] = {.lex_state = 0}, - [5224] = {.lex_state = 24}, - [5225] = {.lex_state = 24}, - [5226] = {.lex_state = 24}, - [5227] = {.lex_state = 0}, - [5228] = {.lex_state = 24}, - [5229] = {.lex_state = 0}, - [5230] = {.lex_state = 24}, - [5231] = {.lex_state = 24}, - [5232] = {.lex_state = 0}, - [5233] = {.lex_state = 0}, - [5234] = {.lex_state = 24}, - [5235] = {.lex_state = 24}, - [5236] = {.lex_state = 24}, - [5237] = {.lex_state = 24}, - [5238] = {.lex_state = 0}, - [5239] = {.lex_state = 0}, - [5240] = {.lex_state = 0}, - [5241] = {.lex_state = 0}, - [5242] = {.lex_state = 24}, - [5243] = {.lex_state = 0}, - [5244] = {.lex_state = 24}, - [5245] = {.lex_state = 0}, - [5246] = {.lex_state = 0}, - [5247] = {.lex_state = 0}, - [5248] = {.lex_state = 0}, - [5249] = {.lex_state = 0}, - [5250] = {.lex_state = 24}, - [5251] = {.lex_state = 24}, - [5252] = {.lex_state = 24}, - [5253] = {.lex_state = 0}, - [5254] = {.lex_state = 0}, - [5255] = {.lex_state = 0}, - [5256] = {.lex_state = 0}, - [5257] = {.lex_state = 0}, - [5258] = {.lex_state = 0}, - [5259] = {.lex_state = 0}, - [5260] = {.lex_state = 24}, - [5261] = {.lex_state = 24}, - [5262] = {.lex_state = 0}, - [5263] = {.lex_state = 0}, - [5264] = {.lex_state = 0}, - [5265] = {.lex_state = 0}, - [5266] = {.lex_state = 0}, - [5267] = {.lex_state = 0}, - [5268] = {.lex_state = 0}, - [5269] = {.lex_state = 0}, - [5270] = {.lex_state = 0}, - [5271] = {.lex_state = 0}, - [5272] = {.lex_state = 0}, - [5273] = {.lex_state = 0}, - [5274] = {.lex_state = 0}, - [5275] = {.lex_state = 0}, - [5276] = {.lex_state = 0}, - [5277] = {.lex_state = 0}, - [5278] = {.lex_state = 0}, - [5279] = {.lex_state = 0}, - [5280] = {.lex_state = 0}, - [5281] = {.lex_state = 0}, - [5282] = {.lex_state = 24}, - [5283] = {.lex_state = 0}, - [5284] = {.lex_state = 0}, - [5285] = {.lex_state = 0}, - [5286] = {.lex_state = 24}, - [5287] = {.lex_state = 0}, - [5288] = {.lex_state = 0}, - [5289] = {.lex_state = 0}, - [5290] = {.lex_state = 0}, - [5291] = {.lex_state = 0}, - [5292] = {.lex_state = 0}, - [5293] = {.lex_state = 0}, - [5294] = {.lex_state = 0}, - [5295] = {.lex_state = 0}, + [5188] = {.lex_state = 25}, + [5189] = {.lex_state = 25}, + [5190] = {.lex_state = 25}, + [5191] = {.lex_state = 25}, + [5192] = {.lex_state = 25}, + [5193] = {.lex_state = 25}, + [5194] = {.lex_state = 21}, + [5195] = {.lex_state = 25}, + [5196] = {.lex_state = 25}, + [5197] = {.lex_state = 25}, + [5198] = {.lex_state = 25}, + [5199] = {.lex_state = 25}, + [5200] = {.lex_state = 21}, + [5201] = {.lex_state = 25}, + [5202] = {.lex_state = 21}, + [5203] = {.lex_state = 21}, + [5204] = {.lex_state = 21}, + [5205] = {.lex_state = 25}, + [5206] = {.lex_state = 25}, + [5207] = {.lex_state = 25}, + [5208] = {.lex_state = 25}, + [5209] = {.lex_state = 25}, + [5210] = {.lex_state = 25}, + [5211] = {.lex_state = 25}, + [5212] = {.lex_state = 25}, + [5213] = {.lex_state = 25}, + [5214] = {.lex_state = 25}, + [5215] = {.lex_state = 25}, + [5216] = {.lex_state = 25}, + [5217] = {.lex_state = 25}, + [5218] = {.lex_state = 25}, + [5219] = {.lex_state = 25}, + [5220] = {.lex_state = 25}, + [5221] = {.lex_state = 25}, + [5222] = {.lex_state = 25}, + [5223] = {.lex_state = 25}, + [5224] = {.lex_state = 25}, + [5225] = {.lex_state = 25}, + [5226] = {.lex_state = 25}, + [5227] = {.lex_state = 25}, + [5228] = {.lex_state = 25}, + [5229] = {.lex_state = 25}, + [5230] = {.lex_state = 25}, + [5231] = {.lex_state = 0}, + [5232] = {.lex_state = 25}, + [5233] = {.lex_state = 25}, + [5234] = {.lex_state = 25}, + [5235] = {.lex_state = 25}, + [5236] = {.lex_state = 25}, + [5237] = {.lex_state = 25}, + [5238] = {.lex_state = 25}, + [5239] = {.lex_state = 25}, + [5240] = {.lex_state = 25}, + [5241] = {.lex_state = 25}, + [5242] = {.lex_state = 25}, + [5243] = {.lex_state = 25}, + [5244] = {.lex_state = 25}, + [5245] = {.lex_state = 25}, + [5246] = {.lex_state = 25}, + [5247] = {.lex_state = 25}, + [5248] = {.lex_state = 25}, + [5249] = {.lex_state = 25}, + [5250] = {.lex_state = 25}, + [5251] = {.lex_state = 25}, + [5252] = {.lex_state = 25}, + [5253] = {.lex_state = 25}, + [5254] = {.lex_state = 25}, + [5255] = {.lex_state = 25}, + [5256] = {.lex_state = 25}, + [5257] = {.lex_state = 25}, + [5258] = {.lex_state = 25}, + [5259] = {.lex_state = 25}, + [5260] = {.lex_state = 25}, + [5261] = {.lex_state = 25}, + [5262] = {.lex_state = 25}, + [5263] = {.lex_state = 25}, + [5264] = {.lex_state = 25}, + [5265] = {.lex_state = 25}, + [5266] = {.lex_state = 25}, + [5267] = {.lex_state = 25}, + [5268] = {.lex_state = 25}, + [5269] = {.lex_state = 25}, + [5270] = {.lex_state = 25}, + [5271] = {.lex_state = 25}, + [5272] = {.lex_state = 25}, + [5273] = {.lex_state = 25}, + [5274] = {.lex_state = 25}, + [5275] = {.lex_state = 25}, + [5276] = {.lex_state = 25}, + [5277] = {.lex_state = 25}, + [5278] = {.lex_state = 25}, + [5279] = {.lex_state = 25}, + [5280] = {.lex_state = 25}, + [5281] = {.lex_state = 25}, + [5282] = {.lex_state = 25}, + [5283] = {.lex_state = 25}, + [5284] = {.lex_state = 25}, + [5285] = {.lex_state = 25}, + [5286] = {.lex_state = 25}, + [5287] = {.lex_state = 25}, + [5288] = {.lex_state = 25}, + [5289] = {.lex_state = 25}, + [5290] = {.lex_state = 25}, + [5291] = {.lex_state = 25}, + [5292] = {.lex_state = 25}, + [5293] = {.lex_state = 25}, + [5294] = {.lex_state = 25}, + [5295] = {.lex_state = 25}, + [5296] = {.lex_state = 25}, + [5297] = {.lex_state = 25}, + [5298] = {.lex_state = 25}, + [5299] = {.lex_state = 25}, + [5300] = {.lex_state = 25}, + [5301] = {.lex_state = 25}, + [5302] = {.lex_state = 23}, + [5303] = {.lex_state = 25}, + [5304] = {.lex_state = 25}, + [5305] = {.lex_state = 25}, + [5306] = {.lex_state = 25}, + [5307] = {.lex_state = 25}, + [5308] = {.lex_state = 25}, + [5309] = {.lex_state = 25}, + [5310] = {.lex_state = 25}, + [5311] = {.lex_state = 25}, + [5312] = {.lex_state = 25}, + [5313] = {.lex_state = 21}, + [5314] = {.lex_state = 25}, + [5315] = {.lex_state = 25}, + [5316] = {.lex_state = 25}, + [5317] = {.lex_state = 25}, + [5318] = {.lex_state = 25}, + [5319] = {.lex_state = 25}, + [5320] = {.lex_state = 25}, + [5321] = {.lex_state = 25}, + [5322] = {.lex_state = 25}, + [5323] = {.lex_state = 25}, + [5324] = {.lex_state = 25}, + [5325] = {.lex_state = 25}, + [5326] = {.lex_state = 25}, + [5327] = {.lex_state = 25}, + [5328] = {.lex_state = 25}, + [5329] = {.lex_state = 25}, + [5330] = {.lex_state = 25}, + [5331] = {.lex_state = 25}, + [5332] = {.lex_state = 25}, + [5333] = {.lex_state = 25}, + [5334] = {.lex_state = 25}, + [5335] = {.lex_state = 25}, + [5336] = {.lex_state = 25}, + [5337] = {.lex_state = 25}, + [5338] = {.lex_state = 25}, + [5339] = {.lex_state = 25}, + [5340] = {.lex_state = 25}, + [5341] = {.lex_state = 25}, + [5342] = {.lex_state = 25}, + [5343] = {.lex_state = 25}, + [5344] = {.lex_state = 25}, + [5345] = {.lex_state = 25}, + [5346] = {.lex_state = 25}, + [5347] = {.lex_state = 25}, + [5348] = {.lex_state = 25}, + [5349] = {.lex_state = 25}, + [5350] = {.lex_state = 25}, + [5351] = {.lex_state = 25}, + [5352] = {.lex_state = 25}, + [5353] = {.lex_state = 25}, + [5354] = {.lex_state = 25}, + [5355] = {.lex_state = 25}, + [5356] = {.lex_state = 25}, + [5357] = {.lex_state = 25}, + [5358] = {.lex_state = 25}, + [5359] = {.lex_state = 25}, + [5360] = {.lex_state = 25}, + [5361] = {.lex_state = 25}, + [5362] = {.lex_state = 25}, + [5363] = {.lex_state = 25}, + [5364] = {.lex_state = 25}, + [5365] = {.lex_state = 25}, + [5366] = {.lex_state = 25}, + [5367] = {.lex_state = 25}, + [5368] = {.lex_state = 25}, + [5369] = {.lex_state = 25}, + [5370] = {.lex_state = 25}, + [5371] = {.lex_state = 25}, + [5372] = {.lex_state = 25}, + [5373] = {.lex_state = 25}, + [5374] = {.lex_state = 25}, + [5375] = {.lex_state = 25}, + [5376] = {.lex_state = 25}, + [5377] = {.lex_state = 25}, + [5378] = {.lex_state = 25}, + [5379] = {.lex_state = 25}, + [5380] = {.lex_state = 25}, + [5381] = {.lex_state = 25}, + [5382] = {.lex_state = 25}, + [5383] = {.lex_state = 25}, + [5384] = {.lex_state = 25}, + [5385] = {.lex_state = 25}, + [5386] = {.lex_state = 25}, + [5387] = {.lex_state = 25}, + [5388] = {.lex_state = 25}, + [5389] = {.lex_state = 25}, + [5390] = {.lex_state = 25}, + [5391] = {.lex_state = 25}, + [5392] = {.lex_state = 25}, + [5393] = {.lex_state = 25}, + [5394] = {.lex_state = 25}, + [5395] = {.lex_state = 25}, + [5396] = {.lex_state = 25}, + [5397] = {.lex_state = 25}, + [5398] = {.lex_state = 25}, + [5399] = {.lex_state = 25}, + [5400] = {.lex_state = 25}, + [5401] = {.lex_state = 25}, + [5402] = {.lex_state = 25}, + [5403] = {.lex_state = 25}, + [5404] = {.lex_state = 21}, + [5405] = {.lex_state = 25}, + [5406] = {.lex_state = 25}, + [5407] = {.lex_state = 25}, + [5408] = {.lex_state = 25}, + [5409] = {.lex_state = 25}, + [5410] = {.lex_state = 25}, + [5411] = {.lex_state = 25}, + [5412] = {.lex_state = 25}, + [5413] = {.lex_state = 25}, + [5414] = {.lex_state = 25}, + [5415] = {.lex_state = 25}, + [5416] = {.lex_state = 25}, + [5417] = {.lex_state = 25}, + [5418] = {.lex_state = 25}, + [5419] = {.lex_state = 25}, + [5420] = {.lex_state = 25}, + [5421] = {.lex_state = 25}, + [5422] = {.lex_state = 25}, + [5423] = {.lex_state = 25}, + [5424] = {.lex_state = 25}, + [5425] = {.lex_state = 25}, + [5426] = {.lex_state = 25}, + [5427] = {.lex_state = 25}, + [5428] = {.lex_state = 25}, + [5429] = {.lex_state = 25}, + [5430] = {.lex_state = 25}, + [5431] = {.lex_state = 25}, + [5432] = {.lex_state = 25}, + [5433] = {.lex_state = 25}, + [5434] = {.lex_state = 25}, + [5435] = {.lex_state = 25}, + [5436] = {.lex_state = 25}, + [5437] = {.lex_state = 25}, + [5438] = {.lex_state = 25}, + [5439] = {.lex_state = 25}, + [5440] = {.lex_state = 25}, + [5441] = {.lex_state = 25}, + [5442] = {.lex_state = 25}, + [5443] = {.lex_state = 25}, + [5444] = {.lex_state = 25}, + [5445] = {.lex_state = 25}, + [5446] = {.lex_state = 25}, + [5447] = {.lex_state = 25}, + [5448] = {.lex_state = 25}, + [5449] = {.lex_state = 25}, + [5450] = {.lex_state = 25}, + [5451] = {.lex_state = 25}, + [5452] = {.lex_state = 25}, + [5453] = {.lex_state = 25}, + [5454] = {.lex_state = 25}, + [5455] = {.lex_state = 25}, + [5456] = {.lex_state = 25}, + [5457] = {.lex_state = 25}, + [5458] = {.lex_state = 25}, + [5459] = {.lex_state = 25}, + [5460] = {.lex_state = 25}, + [5461] = {.lex_state = 25}, + [5462] = {.lex_state = 25}, + [5463] = {.lex_state = 25}, + [5464] = {.lex_state = 25}, + [5465] = {.lex_state = 25}, + [5466] = {.lex_state = 25}, + [5467] = {.lex_state = 25}, + [5468] = {.lex_state = 25}, + [5469] = {.lex_state = 25}, + [5470] = {.lex_state = 25}, + [5471] = {.lex_state = 25}, + [5472] = {.lex_state = 25}, + [5473] = {.lex_state = 25}, + [5474] = {.lex_state = 25}, + [5475] = {.lex_state = 25}, + [5476] = {.lex_state = 25}, + [5477] = {.lex_state = 25}, + [5478] = {.lex_state = 25}, + [5479] = {.lex_state = 25}, + [5480] = {.lex_state = 25}, + [5481] = {.lex_state = 25}, + [5482] = {.lex_state = 25}, + [5483] = {.lex_state = 25}, + [5484] = {.lex_state = 25}, + [5485] = {.lex_state = 25}, + [5486] = {.lex_state = 25}, + [5487] = {.lex_state = 25}, + [5488] = {.lex_state = 25}, + [5489] = {.lex_state = 25}, + [5490] = {.lex_state = 25}, + [5491] = {.lex_state = 25}, + [5492] = {.lex_state = 25}, + [5493] = {.lex_state = 25}, + [5494] = {.lex_state = 25}, + [5495] = {.lex_state = 25}, + [5496] = {.lex_state = 25}, + [5497] = {.lex_state = 25}, + [5498] = {.lex_state = 25}, + [5499] = {.lex_state = 25}, + [5500] = {.lex_state = 25}, + [5501] = {.lex_state = 25}, + [5502] = {.lex_state = 25}, + [5503] = {.lex_state = 25}, + [5504] = {.lex_state = 25}, + [5505] = {.lex_state = 25}, + [5506] = {.lex_state = 25}, + [5507] = {.lex_state = 25}, + [5508] = {.lex_state = 25}, + [5509] = {.lex_state = 25}, + [5510] = {.lex_state = 25}, + [5511] = {.lex_state = 25}, + [5512] = {.lex_state = 25}, + [5513] = {.lex_state = 25}, + [5514] = {.lex_state = 25}, + [5515] = {.lex_state = 25}, + [5516] = {.lex_state = 25}, + [5517] = {.lex_state = 25}, + [5518] = {.lex_state = 25}, + [5519] = {.lex_state = 25}, + [5520] = {.lex_state = 25}, + [5521] = {.lex_state = 25}, + [5522] = {.lex_state = 25}, + [5523] = {.lex_state = 25}, + [5524] = {.lex_state = 25}, + [5525] = {.lex_state = 25}, + [5526] = {.lex_state = 25}, + [5527] = {.lex_state = 25}, + [5528] = {.lex_state = 25}, + [5529] = {.lex_state = 25}, + [5530] = {.lex_state = 25}, + [5531] = {.lex_state = 25}, + [5532] = {.lex_state = 25}, + [5533] = {.lex_state = 25}, + [5534] = {.lex_state = 25}, + [5535] = {.lex_state = 25}, + [5536] = {.lex_state = 25}, + [5537] = {.lex_state = 25}, + [5538] = {.lex_state = 25}, + [5539] = {.lex_state = 25}, + [5540] = {.lex_state = 25}, + [5541] = {.lex_state = 25}, + [5542] = {.lex_state = 25}, + [5543] = {.lex_state = 25}, + [5544] = {.lex_state = 25}, + [5545] = {.lex_state = 25}, + [5546] = {.lex_state = 25}, + [5547] = {.lex_state = 25}, + [5548] = {.lex_state = 25}, + [5549] = {.lex_state = 25}, + [5550] = {.lex_state = 25}, + [5551] = {.lex_state = 25}, + [5552] = {.lex_state = 25}, + [5553] = {.lex_state = 25}, + [5554] = {.lex_state = 25}, + [5555] = {.lex_state = 25}, + [5556] = {.lex_state = 25}, + [5557] = {.lex_state = 25}, + [5558] = {.lex_state = 25}, + [5559] = {.lex_state = 25}, + [5560] = {.lex_state = 25}, + [5561] = {.lex_state = 25}, + [5562] = {.lex_state = 25}, + [5563] = {.lex_state = 25}, + [5564] = {.lex_state = 25}, + [5565] = {.lex_state = 25}, + [5566] = {.lex_state = 25}, + [5567] = {.lex_state = 25}, + [5568] = {.lex_state = 25}, + [5569] = {.lex_state = 25}, + [5570] = {.lex_state = 25}, + [5571] = {.lex_state = 25}, + [5572] = {.lex_state = 25}, + [5573] = {.lex_state = 25}, + [5574] = {.lex_state = 25}, + [5575] = {.lex_state = 25}, + [5576] = {.lex_state = 25}, + [5577] = {.lex_state = 25}, + [5578] = {.lex_state = 25}, + [5579] = {.lex_state = 25}, + [5580] = {.lex_state = 25}, + [5581] = {.lex_state = 25}, + [5582] = {.lex_state = 25}, + [5583] = {.lex_state = 25}, + [5584] = {.lex_state = 25}, + [5585] = {.lex_state = 25}, + [5586] = {.lex_state = 25}, + [5587] = {.lex_state = 25}, + [5588] = {.lex_state = 25}, + [5589] = {.lex_state = 25}, + [5590] = {.lex_state = 25}, + [5591] = {.lex_state = 25}, + [5592] = {.lex_state = 25}, + [5593] = {.lex_state = 25}, + [5594] = {.lex_state = 25}, + [5595] = {.lex_state = 25}, + [5596] = {.lex_state = 25}, + [5597] = {.lex_state = 25}, + [5598] = {.lex_state = 25}, + [5599] = {.lex_state = 25}, + [5600] = {.lex_state = 25}, + [5601] = {.lex_state = 25}, + [5602] = {.lex_state = 25}, + [5603] = {.lex_state = 25}, + [5604] = {.lex_state = 25}, + [5605] = {.lex_state = 25}, + [5606] = {.lex_state = 25}, + [5607] = {.lex_state = 25}, + [5608] = {.lex_state = 25}, + [5609] = {.lex_state = 25}, + [5610] = {.lex_state = 25}, + [5611] = {.lex_state = 25}, + [5612] = {.lex_state = 25}, + [5613] = {.lex_state = 25}, + [5614] = {.lex_state = 25}, + [5615] = {.lex_state = 25}, + [5616] = {.lex_state = 25}, + [5617] = {.lex_state = 25}, + [5618] = {.lex_state = 25}, + [5619] = {.lex_state = 25}, + [5620] = {.lex_state = 25}, + [5621] = {.lex_state = 25}, + [5622] = {.lex_state = 25}, + [5623] = {.lex_state = 25}, + [5624] = {.lex_state = 25}, + [5625] = {.lex_state = 25}, + [5626] = {.lex_state = 25}, + [5627] = {.lex_state = 25}, + [5628] = {.lex_state = 25}, + [5629] = {.lex_state = 25}, + [5630] = {.lex_state = 25}, + [5631] = {.lex_state = 25}, + [5632] = {.lex_state = 25}, + [5633] = {.lex_state = 25}, + [5634] = {.lex_state = 25}, + [5635] = {.lex_state = 25}, + [5636] = {.lex_state = 25}, + [5637] = {.lex_state = 25}, + [5638] = {.lex_state = 25}, + [5639] = {.lex_state = 25}, + [5640] = {.lex_state = 25}, + [5641] = {.lex_state = 25}, + [5642] = {.lex_state = 25}, + [5643] = {.lex_state = 25}, + [5644] = {.lex_state = 25}, + [5645] = {.lex_state = 25}, + [5646] = {.lex_state = 25}, + [5647] = {.lex_state = 25}, + [5648] = {.lex_state = 25}, + [5649] = {.lex_state = 25}, + [5650] = {.lex_state = 25}, + [5651] = {.lex_state = 25}, + [5652] = {.lex_state = 25}, + [5653] = {.lex_state = 25}, + [5654] = {.lex_state = 25}, + [5655] = {.lex_state = 25}, + [5656] = {.lex_state = 25}, + [5657] = {.lex_state = 25}, + [5658] = {.lex_state = 25}, + [5659] = {.lex_state = 25}, + [5660] = {.lex_state = 25}, + [5661] = {.lex_state = 25}, + [5662] = {.lex_state = 25}, + [5663] = {.lex_state = 25}, + [5664] = {.lex_state = 25}, + [5665] = {.lex_state = 25}, + [5666] = {.lex_state = 25}, + [5667] = {.lex_state = 25}, + [5668] = {.lex_state = 25}, + [5669] = {.lex_state = 25}, + [5670] = {.lex_state = 25}, + [5671] = {.lex_state = 25}, + [5672] = {.lex_state = 25}, + [5673] = {.lex_state = 25}, + [5674] = {.lex_state = 25}, + [5675] = {.lex_state = 25}, + [5676] = {.lex_state = 25}, + [5677] = {.lex_state = 25}, + [5678] = {.lex_state = 25}, + [5679] = {.lex_state = 25}, + [5680] = {.lex_state = 25}, + [5681] = {.lex_state = 25}, + [5682] = {.lex_state = 25}, + [5683] = {.lex_state = 25}, + [5684] = {.lex_state = 25}, + [5685] = {.lex_state = 25}, + [5686] = {.lex_state = 25}, + [5687] = {.lex_state = 25}, + [5688] = {.lex_state = 25}, + [5689] = {.lex_state = 25}, + [5690] = {.lex_state = 25}, + [5691] = {.lex_state = 25}, + [5692] = {.lex_state = 25}, + [5693] = {.lex_state = 25}, + [5694] = {.lex_state = 25}, + [5695] = {.lex_state = 25}, + [5696] = {.lex_state = 25}, + [5697] = {.lex_state = 25}, + [5698] = {.lex_state = 25}, + [5699] = {.lex_state = 25}, + [5700] = {.lex_state = 25}, + [5701] = {.lex_state = 25}, + [5702] = {.lex_state = 25}, + [5703] = {.lex_state = 25}, + [5704] = {.lex_state = 25}, + [5705] = {.lex_state = 25}, + [5706] = {.lex_state = 25}, + [5707] = {.lex_state = 25}, + [5708] = {.lex_state = 25}, + [5709] = {.lex_state = 25}, + [5710] = {.lex_state = 25}, + [5711] = {.lex_state = 25}, + [5712] = {.lex_state = 25}, + [5713] = {.lex_state = 25}, + [5714] = {.lex_state = 25}, + [5715] = {.lex_state = 25}, + [5716] = {.lex_state = 25}, + [5717] = {.lex_state = 25}, + [5718] = {.lex_state = 25}, + [5719] = {.lex_state = 25}, + [5720] = {.lex_state = 25}, + [5721] = {.lex_state = 25}, + [5722] = {.lex_state = 25}, + [5723] = {.lex_state = 25}, + [5724] = {.lex_state = 25}, + [5725] = {.lex_state = 25}, + [5726] = {.lex_state = 25}, + [5727] = {.lex_state = 25}, + [5728] = {.lex_state = 25}, + [5729] = {.lex_state = 25}, + [5730] = {.lex_state = 25}, + [5731] = {.lex_state = 25}, + [5732] = {.lex_state = 25}, + [5733] = {.lex_state = 25}, + [5734] = {.lex_state = 25}, + [5735] = {.lex_state = 25}, + [5736] = {.lex_state = 25}, + [5737] = {.lex_state = 25}, + [5738] = {.lex_state = 25}, + [5739] = {.lex_state = 25}, + [5740] = {.lex_state = 25}, + [5741] = {.lex_state = 25}, + [5742] = {.lex_state = 25}, + [5743] = {.lex_state = 25}, + [5744] = {.lex_state = 25}, + [5745] = {.lex_state = 25}, + [5746] = {.lex_state = 25}, + [5747] = {.lex_state = 25}, + [5748] = {.lex_state = 25}, + [5749] = {.lex_state = 25}, + [5750] = {.lex_state = 25}, + [5751] = {.lex_state = 25}, + [5752] = {.lex_state = 25}, + [5753] = {.lex_state = 25}, + [5754] = {.lex_state = 25}, + [5755] = {.lex_state = 25}, + [5756] = {.lex_state = 25}, + [5757] = {.lex_state = 25}, + [5758] = {.lex_state = 25}, + [5759] = {.lex_state = 25}, + [5760] = {.lex_state = 25}, + [5761] = {.lex_state = 25}, + [5762] = {.lex_state = 25}, + [5763] = {.lex_state = 25}, + [5764] = {.lex_state = 25}, + [5765] = {.lex_state = 25}, + [5766] = {.lex_state = 25}, + [5767] = {.lex_state = 25}, + [5768] = {.lex_state = 25}, + [5769] = {.lex_state = 25}, + [5770] = {.lex_state = 25}, + [5771] = {.lex_state = 25}, + [5772] = {.lex_state = 25}, + [5773] = {.lex_state = 25}, + [5774] = {.lex_state = 25}, + [5775] = {.lex_state = 25}, + [5776] = {.lex_state = 25}, + [5777] = {.lex_state = 25}, + [5778] = {.lex_state = 25}, + [5779] = {.lex_state = 25}, + [5780] = {.lex_state = 25}, + [5781] = {.lex_state = 25}, + [5782] = {.lex_state = 25}, + [5783] = {.lex_state = 25}, + [5784] = {.lex_state = 25}, + [5785] = {.lex_state = 25}, + [5786] = {.lex_state = 25}, + [5787] = {.lex_state = 25}, + [5788] = {.lex_state = 25}, + [5789] = {.lex_state = 25}, + [5790] = {.lex_state = 25}, + [5791] = {.lex_state = 25}, + [5792] = {.lex_state = 25}, + [5793] = {.lex_state = 25}, + [5794] = {.lex_state = 25}, + [5795] = {.lex_state = 25}, + [5796] = {.lex_state = 25}, + [5797] = {.lex_state = 25}, + [5798] = {.lex_state = 25}, + [5799] = {.lex_state = 25}, + [5800] = {.lex_state = 25}, + [5801] = {.lex_state = 25}, + [5802] = {.lex_state = 25}, + [5803] = {.lex_state = 25}, + [5804] = {.lex_state = 25}, + [5805] = {.lex_state = 25}, + [5806] = {.lex_state = 25}, + [5807] = {.lex_state = 25}, + [5808] = {.lex_state = 25}, + [5809] = {.lex_state = 25}, + [5810] = {.lex_state = 25}, + [5811] = {.lex_state = 25}, + [5812] = {.lex_state = 25}, + [5813] = {.lex_state = 25}, + [5814] = {.lex_state = 25}, + [5815] = {.lex_state = 25}, + [5816] = {.lex_state = 25}, + [5817] = {.lex_state = 25}, + [5818] = {.lex_state = 25}, + [5819] = {.lex_state = 25}, + [5820] = {.lex_state = 25}, + [5821] = {.lex_state = 25}, + [5822] = {.lex_state = 25}, + [5823] = {.lex_state = 25}, + [5824] = {.lex_state = 25}, + [5825] = {.lex_state = 25}, + [5826] = {.lex_state = 25}, + [5827] = {.lex_state = 25}, + [5828] = {.lex_state = 25}, + [5829] = {.lex_state = 25}, + [5830] = {.lex_state = 25}, + [5831] = {.lex_state = 25}, + [5832] = {.lex_state = 25}, + [5833] = {.lex_state = 25}, + [5834] = {.lex_state = 25}, + [5835] = {.lex_state = 25}, + [5836] = {.lex_state = 25}, + [5837] = {.lex_state = 25}, + [5838] = {.lex_state = 25}, + [5839] = {.lex_state = 25}, + [5840] = {.lex_state = 25}, + [5841] = {.lex_state = 25}, + [5842] = {.lex_state = 25}, + [5843] = {.lex_state = 25}, + [5844] = {.lex_state = 25}, + [5845] = {.lex_state = 25}, + [5846] = {.lex_state = 25}, + [5847] = {.lex_state = 25}, + [5848] = {.lex_state = 25}, + [5849] = {.lex_state = 25}, + [5850] = {.lex_state = 25}, + [5851] = {.lex_state = 25}, + [5852] = {.lex_state = 25}, + [5853] = {.lex_state = 25}, + [5854] = {.lex_state = 25}, + [5855] = {.lex_state = 25}, + [5856] = {.lex_state = 25}, + [5857] = {.lex_state = 25}, + [5858] = {.lex_state = 25}, + [5859] = {.lex_state = 25}, + [5860] = {.lex_state = 25}, + [5861] = {.lex_state = 25}, + [5862] = {.lex_state = 25}, + [5863] = {.lex_state = 25}, + [5864] = {.lex_state = 25}, + [5865] = {.lex_state = 25}, + [5866] = {.lex_state = 25}, + [5867] = {.lex_state = 25}, + [5868] = {.lex_state = 25}, + [5869] = {.lex_state = 25}, + [5870] = {.lex_state = 25}, + [5871] = {.lex_state = 25}, + [5872] = {.lex_state = 23}, + [5873] = {.lex_state = 25}, + [5874] = {.lex_state = 25}, + [5875] = {.lex_state = 25}, + [5876] = {.lex_state = 25}, + [5877] = {.lex_state = 25}, + [5878] = {.lex_state = 25}, + [5879] = {.lex_state = 25}, + [5880] = {.lex_state = 25}, + [5881] = {.lex_state = 25}, + [5882] = {.lex_state = 25}, + [5883] = {.lex_state = 25}, + [5884] = {.lex_state = 25}, + [5885] = {.lex_state = 25}, + [5886] = {.lex_state = 25}, + [5887] = {.lex_state = 25}, + [5888] = {.lex_state = 25}, + [5889] = {.lex_state = 25}, + [5890] = {.lex_state = 25}, + [5891] = {.lex_state = 25}, + [5892] = {.lex_state = 25}, + [5893] = {.lex_state = 25}, + [5894] = {.lex_state = 25}, + [5895] = {.lex_state = 25}, + [5896] = {.lex_state = 25}, + [5897] = {.lex_state = 25}, + [5898] = {.lex_state = 25}, + [5899] = {.lex_state = 25}, + [5900] = {.lex_state = 25}, + [5901] = {.lex_state = 25}, + [5902] = {.lex_state = 25}, + [5903] = {.lex_state = 25}, + [5904] = {.lex_state = 25}, + [5905] = {.lex_state = 25}, + [5906] = {.lex_state = 25}, + [5907] = {.lex_state = 25}, + [5908] = {.lex_state = 25}, + [5909] = {.lex_state = 25}, + [5910] = {.lex_state = 25}, + [5911] = {.lex_state = 25}, + [5912] = {.lex_state = 25}, + [5913] = {.lex_state = 25}, + [5914] = {.lex_state = 25}, + [5915] = {.lex_state = 25}, + [5916] = {.lex_state = 25}, + [5917] = {.lex_state = 25}, + [5918] = {.lex_state = 25}, + [5919] = {.lex_state = 25}, + [5920] = {.lex_state = 25}, + [5921] = {.lex_state = 25}, + [5922] = {.lex_state = 25}, + [5923] = {.lex_state = 25}, + [5924] = {.lex_state = 25}, + [5925] = {.lex_state = 25}, + [5926] = {.lex_state = 25}, + [5927] = {.lex_state = 25}, + [5928] = {.lex_state = 25}, + [5929] = {.lex_state = 25}, + [5930] = {.lex_state = 25}, + [5931] = {.lex_state = 25}, + [5932] = {.lex_state = 25}, + [5933] = {.lex_state = 25}, + [5934] = {.lex_state = 25}, + [5935] = {.lex_state = 25}, + [5936] = {.lex_state = 25}, + [5937] = {.lex_state = 25}, + [5938] = {.lex_state = 25}, + [5939] = {.lex_state = 25}, + [5940] = {.lex_state = 25}, + [5941] = {.lex_state = 25}, + [5942] = {.lex_state = 25}, + [5943] = {.lex_state = 25}, + [5944] = {.lex_state = 25}, + [5945] = {.lex_state = 25}, + [5946] = {.lex_state = 25}, + [5947] = {.lex_state = 25}, + [5948] = {.lex_state = 25}, + [5949] = {.lex_state = 25}, + [5950] = {.lex_state = 25}, + [5951] = {.lex_state = 25}, + [5952] = {.lex_state = 25}, + [5953] = {.lex_state = 25}, + [5954] = {.lex_state = 25}, + [5955] = {.lex_state = 25}, + [5956] = {.lex_state = 25}, + [5957] = {.lex_state = 25}, + [5958] = {.lex_state = 25}, + [5959] = {.lex_state = 25}, + [5960] = {.lex_state = 25}, + [5961] = {.lex_state = 25}, + [5962] = {.lex_state = 25}, + [5963] = {.lex_state = 25}, + [5964] = {.lex_state = 25}, + [5965] = {.lex_state = 25}, + [5966] = {.lex_state = 25}, + [5967] = {.lex_state = 25}, + [5968] = {.lex_state = 25}, + [5969] = {.lex_state = 25}, + [5970] = {.lex_state = 25}, + [5971] = {.lex_state = 25}, + [5972] = {.lex_state = 25}, + [5973] = {.lex_state = 25}, + [5974] = {.lex_state = 25}, + [5975] = {.lex_state = 25}, + [5976] = {.lex_state = 25}, + [5977] = {.lex_state = 25}, + [5978] = {.lex_state = 25}, + [5979] = {.lex_state = 25}, + [5980] = {.lex_state = 25}, + [5981] = {.lex_state = 25}, + [5982] = {.lex_state = 25}, + [5983] = {.lex_state = 25}, + [5984] = {.lex_state = 25}, + [5985] = {.lex_state = 25}, + [5986] = {.lex_state = 25}, + [5987] = {.lex_state = 25}, + [5988] = {.lex_state = 25}, + [5989] = {.lex_state = 25}, + [5990] = {.lex_state = 25}, + [5991] = {.lex_state = 25}, + [5992] = {.lex_state = 25}, + [5993] = {.lex_state = 25}, + [5994] = {.lex_state = 25}, + [5995] = {.lex_state = 25}, + [5996] = {.lex_state = 25}, + [5997] = {.lex_state = 25}, + [5998] = {.lex_state = 25}, + [5999] = {.lex_state = 25}, + [6000] = {.lex_state = 25}, + [6001] = {.lex_state = 25}, + [6002] = {.lex_state = 25}, + [6003] = {.lex_state = 25}, + [6004] = {.lex_state = 25}, + [6005] = {.lex_state = 25}, + [6006] = {.lex_state = 25}, + [6007] = {.lex_state = 25}, + [6008] = {.lex_state = 25}, + [6009] = {.lex_state = 25}, + [6010] = {.lex_state = 25}, + [6011] = {.lex_state = 25}, + [6012] = {.lex_state = 25}, + [6013] = {.lex_state = 25}, + [6014] = {.lex_state = 25}, + [6015] = {.lex_state = 25}, + [6016] = {.lex_state = 25}, + [6017] = {.lex_state = 25}, + [6018] = {.lex_state = 25}, + [6019] = {.lex_state = 25}, + [6020] = {.lex_state = 25}, + [6021] = {.lex_state = 25}, + [6022] = {.lex_state = 25}, + [6023] = {.lex_state = 25}, + [6024] = {.lex_state = 25}, + [6025] = {.lex_state = 25}, + [6026] = {.lex_state = 25}, + [6027] = {.lex_state = 25}, + [6028] = {.lex_state = 25}, + [6029] = {.lex_state = 25}, + [6030] = {.lex_state = 25}, + [6031] = {.lex_state = 25}, + [6032] = {.lex_state = 25}, + [6033] = {.lex_state = 25}, + [6034] = {.lex_state = 25}, + [6035] = {.lex_state = 25}, + [6036] = {.lex_state = 25}, + [6037] = {.lex_state = 25}, + [6038] = {.lex_state = 25}, + [6039] = {.lex_state = 25}, + [6040] = {.lex_state = 25}, + [6041] = {.lex_state = 25}, + [6042] = {.lex_state = 25}, + [6043] = {.lex_state = 25}, + [6044] = {.lex_state = 25}, + [6045] = {.lex_state = 25}, + [6046] = {.lex_state = 25}, + [6047] = {.lex_state = 25}, + [6048] = {.lex_state = 25}, + [6049] = {.lex_state = 25}, + [6050] = {.lex_state = 25}, + [6051] = {.lex_state = 25}, + [6052] = {.lex_state = 25}, + [6053] = {.lex_state = 25}, + [6054] = {.lex_state = 25}, + [6055] = {.lex_state = 25}, + [6056] = {.lex_state = 25}, + [6057] = {.lex_state = 25}, + [6058] = {.lex_state = 25}, + [6059] = {.lex_state = 25}, + [6060] = {.lex_state = 25}, + [6061] = {.lex_state = 25}, + [6062] = {.lex_state = 25}, + [6063] = {.lex_state = 25}, + [6064] = {.lex_state = 25}, + [6065] = {.lex_state = 25}, + [6066] = {.lex_state = 25}, + [6067] = {.lex_state = 25}, + [6068] = {.lex_state = 25}, + [6069] = {.lex_state = 25}, + [6070] = {.lex_state = 25}, + [6071] = {.lex_state = 25}, + [6072] = {.lex_state = 25}, + [6073] = {.lex_state = 25}, + [6074] = {.lex_state = 25}, + [6075] = {.lex_state = 25}, + [6076] = {.lex_state = 25}, + [6077] = {.lex_state = 25}, + [6078] = {.lex_state = 25}, + [6079] = {.lex_state = 25}, + [6080] = {.lex_state = 25}, + [6081] = {.lex_state = 25}, + [6082] = {.lex_state = 25}, + [6083] = {.lex_state = 25}, + [6084] = {.lex_state = 25}, + [6085] = {.lex_state = 25}, + [6086] = {.lex_state = 25}, + [6087] = {.lex_state = 25}, + [6088] = {.lex_state = 25}, + [6089] = {.lex_state = 25}, + [6090] = {.lex_state = 25}, + [6091] = {.lex_state = 25}, + [6092] = {.lex_state = 25}, + [6093] = {.lex_state = 25}, + [6094] = {.lex_state = 25}, + [6095] = {.lex_state = 25}, + [6096] = {.lex_state = 25}, + [6097] = {.lex_state = 25}, + [6098] = {.lex_state = 25}, + [6099] = {.lex_state = 25}, + [6100] = {.lex_state = 25}, + [6101] = {.lex_state = 25}, + [6102] = {.lex_state = 25}, + [6103] = {.lex_state = 25}, + [6104] = {.lex_state = 25}, + [6105] = {.lex_state = 25}, + [6106] = {.lex_state = 25}, + [6107] = {.lex_state = 25}, + [6108] = {.lex_state = 25}, + [6109] = {.lex_state = 25}, + [6110] = {.lex_state = 25}, + [6111] = {.lex_state = 25}, + [6112] = {.lex_state = 25}, + [6113] = {.lex_state = 25}, + [6114] = {.lex_state = 25}, + [6115] = {.lex_state = 25}, + [6116] = {.lex_state = 25}, + [6117] = {.lex_state = 25}, + [6118] = {.lex_state = 25}, + [6119] = {.lex_state = 25}, + [6120] = {.lex_state = 25}, + [6121] = {.lex_state = 25}, + [6122] = {.lex_state = 25}, + [6123] = {.lex_state = 25}, + [6124] = {.lex_state = 25}, + [6125] = {.lex_state = 25}, + [6126] = {.lex_state = 25}, + [6127] = {.lex_state = 25}, + [6128] = {.lex_state = 25}, + [6129] = {.lex_state = 25}, + [6130] = {.lex_state = 25}, + [6131] = {.lex_state = 25}, + [6132] = {.lex_state = 25}, + [6133] = {.lex_state = 25}, + [6134] = {.lex_state = 25}, + [6135] = {.lex_state = 25}, + [6136] = {.lex_state = 25}, + [6137] = {.lex_state = 25}, + [6138] = {.lex_state = 25}, + [6139] = {.lex_state = 25}, + [6140] = {.lex_state = 25}, + [6141] = {.lex_state = 25}, + [6142] = {.lex_state = 25}, + [6143] = {.lex_state = 25}, + [6144] = {.lex_state = 25}, + [6145] = {.lex_state = 25}, + [6146] = {.lex_state = 25}, + [6147] = {.lex_state = 25}, + [6148] = {.lex_state = 25}, + [6149] = {.lex_state = 25}, + [6150] = {.lex_state = 25}, + [6151] = {.lex_state = 25}, + [6152] = {.lex_state = 25}, + [6153] = {.lex_state = 25}, + [6154] = {.lex_state = 25}, + [6155] = {.lex_state = 25}, + [6156] = {.lex_state = 25}, + [6157] = {.lex_state = 25}, + [6158] = {.lex_state = 25}, + [6159] = {.lex_state = 25}, + [6160] = {.lex_state = 25}, + [6161] = {.lex_state = 25}, + [6162] = {.lex_state = 25}, + [6163] = {.lex_state = 25}, + [6164] = {.lex_state = 25}, + [6165] = {.lex_state = 24}, + [6166] = {.lex_state = 25}, + [6167] = {.lex_state = 25}, + [6168] = {.lex_state = 25}, + [6169] = {.lex_state = 25}, + [6170] = {.lex_state = 25}, + [6171] = {.lex_state = 25}, + [6172] = {.lex_state = 25}, + [6173] = {.lex_state = 25}, + [6174] = {.lex_state = 25}, + [6175] = {.lex_state = 25}, + [6176] = {.lex_state = 25}, + [6177] = {.lex_state = 25}, + [6178] = {.lex_state = 25}, + [6179] = {.lex_state = 25}, + [6180] = {.lex_state = 25}, + [6181] = {.lex_state = 25}, + [6182] = {.lex_state = 25}, + [6183] = {.lex_state = 25}, + [6184] = {.lex_state = 25}, + [6185] = {.lex_state = 25}, + [6186] = {.lex_state = 25}, + [6187] = {.lex_state = 25}, + [6188] = {.lex_state = 25}, + [6189] = {.lex_state = 25}, + [6190] = {.lex_state = 25}, + [6191] = {.lex_state = 25}, + [6192] = {.lex_state = 25}, + [6193] = {.lex_state = 25}, + [6194] = {.lex_state = 25}, + [6195] = {.lex_state = 25}, + [6196] = {.lex_state = 25}, + [6197] = {.lex_state = 25}, + [6198] = {.lex_state = 25}, + [6199] = {.lex_state = 25}, + [6200] = {.lex_state = 25}, + [6201] = {.lex_state = 25}, + [6202] = {.lex_state = 25}, + [6203] = {.lex_state = 25}, + [6204] = {.lex_state = 25}, + [6205] = {.lex_state = 25}, + [6206] = {.lex_state = 25}, + [6207] = {.lex_state = 25}, + [6208] = {.lex_state = 25}, + [6209] = {.lex_state = 25}, + [6210] = {.lex_state = 25}, + [6211] = {.lex_state = 25}, + [6212] = {.lex_state = 25}, + [6213] = {.lex_state = 25}, + [6214] = {.lex_state = 25}, + [6215] = {.lex_state = 25}, + [6216] = {.lex_state = 25}, + [6217] = {.lex_state = 25}, + [6218] = {.lex_state = 25}, + [6219] = {.lex_state = 25}, + [6220] = {.lex_state = 25}, + [6221] = {.lex_state = 25}, + [6222] = {.lex_state = 25}, + [6223] = {.lex_state = 25}, + [6224] = {.lex_state = 25}, + [6225] = {.lex_state = 25}, + [6226] = {.lex_state = 25}, + [6227] = {.lex_state = 25}, + [6228] = {.lex_state = 25}, + [6229] = {.lex_state = 25}, + [6230] = {.lex_state = 25}, + [6231] = {.lex_state = 25}, + [6232] = {.lex_state = 24}, + [6233] = {.lex_state = 24}, + [6234] = {.lex_state = 25}, + [6235] = {.lex_state = 25}, + [6236] = {.lex_state = 25}, + [6237] = {.lex_state = 25}, + [6238] = {.lex_state = 25}, + [6239] = {.lex_state = 25}, + [6240] = {.lex_state = 25}, + [6241] = {.lex_state = 25}, + [6242] = {.lex_state = 25}, + [6243] = {.lex_state = 25}, + [6244] = {.lex_state = 25}, + [6245] = {.lex_state = 25}, + [6246] = {.lex_state = 25}, + [6247] = {.lex_state = 25}, + [6248] = {.lex_state = 25}, + [6249] = {.lex_state = 25}, + [6250] = {.lex_state = 25}, + [6251] = {.lex_state = 25}, + [6252] = {.lex_state = 25}, + [6253] = {.lex_state = 25}, + [6254] = {.lex_state = 25}, + [6255] = {.lex_state = 25}, + [6256] = {.lex_state = 25}, + [6257] = {.lex_state = 25}, + [6258] = {.lex_state = 25}, + [6259] = {.lex_state = 25}, + [6260] = {.lex_state = 25}, + [6261] = {.lex_state = 25}, + [6262] = {.lex_state = 25}, + [6263] = {.lex_state = 25}, + [6264] = {.lex_state = 25}, + [6265] = {.lex_state = 25}, + [6266] = {.lex_state = 25}, + [6267] = {.lex_state = 25}, + [6268] = {.lex_state = 25}, + [6269] = {.lex_state = 25}, + [6270] = {.lex_state = 25}, + [6271] = {.lex_state = 25}, + [6272] = {.lex_state = 25}, + [6273] = {.lex_state = 3}, + [6274] = {.lex_state = 24}, + [6275] = {.lex_state = 24}, + [6276] = {.lex_state = 25}, + [6277] = {.lex_state = 25}, + [6278] = {.lex_state = 25}, + [6279] = {.lex_state = 25}, + [6280] = {.lex_state = 25}, + [6281] = {.lex_state = 25}, + [6282] = {.lex_state = 25}, + [6283] = {.lex_state = 25}, + [6284] = {.lex_state = 25}, + [6285] = {.lex_state = 25}, + [6286] = {.lex_state = 25}, + [6287] = {.lex_state = 25}, + [6288] = {.lex_state = 25}, + [6289] = {.lex_state = 25}, + [6290] = {.lex_state = 25}, + [6291] = {.lex_state = 25}, + [6292] = {.lex_state = 25}, + [6293] = {.lex_state = 25}, + [6294] = {.lex_state = 25}, + [6295] = {.lex_state = 25}, + [6296] = {.lex_state = 25}, + [6297] = {.lex_state = 25}, + [6298] = {.lex_state = 25}, + [6299] = {.lex_state = 25}, + [6300] = {.lex_state = 25}, + [6301] = {.lex_state = 25}, + [6302] = {.lex_state = 25}, + [6303] = {.lex_state = 25}, + [6304] = {.lex_state = 25}, + [6305] = {.lex_state = 25}, + [6306] = {.lex_state = 25}, + [6307] = {.lex_state = 25}, + [6308] = {.lex_state = 25}, + [6309] = {.lex_state = 25}, + [6310] = {.lex_state = 25}, + [6311] = {.lex_state = 25}, + [6312] = {.lex_state = 25}, + [6313] = {.lex_state = 25}, + [6314] = {.lex_state = 25}, + [6315] = {.lex_state = 25}, + [6316] = {.lex_state = 25}, + [6317] = {.lex_state = 25}, + [6318] = {.lex_state = 25}, + [6319] = {.lex_state = 25}, + [6320] = {.lex_state = 25}, + [6321] = {.lex_state = 25}, + [6322] = {.lex_state = 24}, + [6323] = {.lex_state = 25}, + [6324] = {.lex_state = 25}, + [6325] = {.lex_state = 25}, + [6326] = {.lex_state = 25}, + [6327] = {.lex_state = 25}, + [6328] = {.lex_state = 25}, + [6329] = {.lex_state = 25}, + [6330] = {.lex_state = 25}, + [6331] = {.lex_state = 25}, + [6332] = {.lex_state = 25}, + [6333] = {.lex_state = 25}, + [6334] = {.lex_state = 25}, + [6335] = {.lex_state = 25}, + [6336] = {.lex_state = 25}, + [6337] = {.lex_state = 25}, + [6338] = {.lex_state = 25}, + [6339] = {.lex_state = 25}, + [6340] = {.lex_state = 25}, + [6341] = {.lex_state = 25}, + [6342] = {.lex_state = 25}, + [6343] = {.lex_state = 25}, + [6344] = {.lex_state = 25}, + [6345] = {.lex_state = 25}, + [6346] = {.lex_state = 25}, + [6347] = {.lex_state = 25}, + [6348] = {.lex_state = 25}, + [6349] = {.lex_state = 25}, + [6350] = {.lex_state = 25}, + [6351] = {.lex_state = 25}, + [6352] = {.lex_state = 25}, + [6353] = {.lex_state = 25}, + [6354] = {.lex_state = 25}, + [6355] = {.lex_state = 25}, + [6356] = {.lex_state = 25}, + [6357] = {.lex_state = 25}, + [6358] = {.lex_state = 25}, + [6359] = {.lex_state = 25}, + [6360] = {.lex_state = 25}, + [6361] = {.lex_state = 25}, + [6362] = {.lex_state = 25}, + [6363] = {.lex_state = 25}, + [6364] = {.lex_state = 25}, + [6365] = {.lex_state = 25}, + [6366] = {.lex_state = 25}, + [6367] = {.lex_state = 25}, + [6368] = {.lex_state = 25}, + [6369] = {.lex_state = 25}, + [6370] = {.lex_state = 25}, + [6371] = {.lex_state = 25}, + [6372] = {.lex_state = 25}, + [6373] = {.lex_state = 25}, + [6374] = {.lex_state = 25}, + [6375] = {.lex_state = 25}, + [6376] = {.lex_state = 25}, + [6377] = {.lex_state = 25}, + [6378] = {.lex_state = 25}, + [6379] = {.lex_state = 25}, + [6380] = {.lex_state = 25}, + [6381] = {.lex_state = 25}, + [6382] = {.lex_state = 25}, + [6383] = {.lex_state = 25}, + [6384] = {.lex_state = 25}, + [6385] = {.lex_state = 25}, + [6386] = {.lex_state = 25}, + [6387] = {.lex_state = 25}, + [6388] = {.lex_state = 25}, + [6389] = {.lex_state = 25}, + [6390] = {.lex_state = 25}, + [6391] = {.lex_state = 25}, + [6392] = {.lex_state = 25}, + [6393] = {.lex_state = 25}, + [6394] = {.lex_state = 25}, + [6395] = {.lex_state = 25}, + [6396] = {.lex_state = 25}, + [6397] = {.lex_state = 25}, + [6398] = {.lex_state = 25}, + [6399] = {.lex_state = 25}, + [6400] = {.lex_state = 25}, + [6401] = {.lex_state = 25}, + [6402] = {.lex_state = 25}, + [6403] = {.lex_state = 25}, + [6404] = {.lex_state = 25}, + [6405] = {.lex_state = 25}, + [6406] = {.lex_state = 25}, + [6407] = {.lex_state = 25}, + [6408] = {.lex_state = 25}, + [6409] = {.lex_state = 25}, + [6410] = {.lex_state = 25}, + [6411] = {.lex_state = 25}, + [6412] = {.lex_state = 25}, + [6413] = {.lex_state = 25}, + [6414] = {.lex_state = 25}, + [6415] = {.lex_state = 25}, + [6416] = {.lex_state = 25}, + [6417] = {.lex_state = 25}, + [6418] = {.lex_state = 25}, + [6419] = {.lex_state = 25}, + [6420] = {.lex_state = 25}, + [6421] = {.lex_state = 25}, + [6422] = {.lex_state = 25}, + [6423] = {.lex_state = 25}, + [6424] = {.lex_state = 25}, + [6425] = {.lex_state = 25}, + [6426] = {.lex_state = 25}, + [6427] = {.lex_state = 25}, + [6428] = {.lex_state = 25}, + [6429] = {.lex_state = 25}, + [6430] = {.lex_state = 25}, + [6431] = {.lex_state = 25}, + [6432] = {.lex_state = 25}, + [6433] = {.lex_state = 25}, + [6434] = {.lex_state = 25}, + [6435] = {.lex_state = 25}, + [6436] = {.lex_state = 25}, + [6437] = {.lex_state = 25}, + [6438] = {.lex_state = 25}, + [6439] = {.lex_state = 25}, + [6440] = {.lex_state = 25}, + [6441] = {.lex_state = 25}, + [6442] = {.lex_state = 25}, + [6443] = {.lex_state = 25}, + [6444] = {.lex_state = 25}, + [6445] = {.lex_state = 25}, + [6446] = {.lex_state = 25}, + [6447] = {.lex_state = 25}, + [6448] = {.lex_state = 25}, + [6449] = {.lex_state = 25}, + [6450] = {.lex_state = 25}, + [6451] = {.lex_state = 25}, + [6452] = {.lex_state = 25}, + [6453] = {.lex_state = 25}, + [6454] = {.lex_state = 25}, + [6455] = {.lex_state = 25}, + [6456] = {.lex_state = 25}, + [6457] = {.lex_state = 25}, + [6458] = {.lex_state = 25}, + [6459] = {.lex_state = 25}, + [6460] = {.lex_state = 25}, + [6461] = {.lex_state = 25}, + [6462] = {.lex_state = 25}, + [6463] = {.lex_state = 25}, + [6464] = {.lex_state = 25}, + [6465] = {.lex_state = 25}, + [6466] = {.lex_state = 25}, + [6467] = {.lex_state = 25}, + [6468] = {.lex_state = 25}, + [6469] = {.lex_state = 25}, + [6470] = {.lex_state = 25}, + [6471] = {.lex_state = 25}, + [6472] = {.lex_state = 25}, + [6473] = {.lex_state = 25}, + [6474] = {.lex_state = 25}, + [6475] = {.lex_state = 25}, + [6476] = {.lex_state = 25}, + [6477] = {.lex_state = 25}, + [6478] = {.lex_state = 25}, + [6479] = {.lex_state = 25}, + [6480] = {.lex_state = 25}, + [6481] = {.lex_state = 25}, + [6482] = {.lex_state = 25}, + [6483] = {.lex_state = 25}, + [6484] = {.lex_state = 25}, + [6485] = {.lex_state = 25}, + [6486] = {.lex_state = 25}, + [6487] = {.lex_state = 25}, + [6488] = {.lex_state = 25}, + [6489] = {.lex_state = 25}, + [6490] = {.lex_state = 25}, + [6491] = {.lex_state = 25}, + [6492] = {.lex_state = 25}, + [6493] = {.lex_state = 25}, + [6494] = {.lex_state = 25}, + [6495] = {.lex_state = 25}, + [6496] = {.lex_state = 25}, + [6497] = {.lex_state = 25}, + [6498] = {.lex_state = 25}, + [6499] = {.lex_state = 25}, + [6500] = {.lex_state = 25}, + [6501] = {.lex_state = 25}, + [6502] = {.lex_state = 25}, + [6503] = {.lex_state = 25}, + [6504] = {.lex_state = 25}, + [6505] = {.lex_state = 25}, + [6506] = {.lex_state = 25}, + [6507] = {.lex_state = 25}, + [6508] = {.lex_state = 25}, + [6509] = {.lex_state = 25}, + [6510] = {.lex_state = 25}, + [6511] = {.lex_state = 25}, + [6512] = {.lex_state = 25}, + [6513] = {.lex_state = 25}, + [6514] = {.lex_state = 25}, + [6515] = {.lex_state = 25}, + [6516] = {.lex_state = 25}, + [6517] = {.lex_state = 25}, + [6518] = {.lex_state = 25}, + [6519] = {.lex_state = 25}, + [6520] = {.lex_state = 25}, + [6521] = {.lex_state = 25}, + [6522] = {.lex_state = 25}, + [6523] = {.lex_state = 25}, + [6524] = {.lex_state = 25}, + [6525] = {.lex_state = 25}, + [6526] = {.lex_state = 25}, + [6527] = {.lex_state = 25}, + [6528] = {.lex_state = 25}, + [6529] = {.lex_state = 25}, + [6530] = {.lex_state = 25}, + [6531] = {.lex_state = 24}, + [6532] = {.lex_state = 24}, + [6533] = {.lex_state = 24}, + [6534] = {.lex_state = 24}, + [6535] = {.lex_state = 24}, + [6536] = {.lex_state = 24}, + [6537] = {.lex_state = 25}, + [6538] = {.lex_state = 25}, + [6539] = {.lex_state = 23}, + [6540] = {.lex_state = 21}, + [6541] = {.lex_state = 23}, + [6542] = {.lex_state = 23}, + [6543] = {.lex_state = 23}, + [6544] = {.lex_state = 23}, + [6545] = {.lex_state = 23}, + [6546] = {.lex_state = 23}, + [6547] = {.lex_state = 23}, + [6548] = {.lex_state = 23}, + [6549] = {.lex_state = 21}, + [6550] = {.lex_state = 21}, + [6551] = {.lex_state = 21}, + [6552] = {.lex_state = 21}, + [6553] = {.lex_state = 21}, + [6554] = {.lex_state = 21}, + [6555] = {.lex_state = 21}, + [6556] = {.lex_state = 21}, + [6557] = {.lex_state = 21}, + [6558] = {.lex_state = 21}, + [6559] = {.lex_state = 21}, + [6560] = {.lex_state = 21}, + [6561] = {.lex_state = 21}, + [6562] = {.lex_state = 21}, + [6563] = {.lex_state = 21}, + [6564] = {.lex_state = 21}, + [6565] = {.lex_state = 21}, + [6566] = {.lex_state = 21}, + [6567] = {.lex_state = 24}, + [6568] = {.lex_state = 21}, + [6569] = {.lex_state = 21}, + [6570] = {.lex_state = 21}, + [6571] = {.lex_state = 21}, + [6572] = {.lex_state = 24}, + [6573] = {.lex_state = 21}, + [6574] = {.lex_state = 21}, + [6575] = {.lex_state = 21}, + [6576] = {.lex_state = 21}, + [6577] = {.lex_state = 21}, + [6578] = {.lex_state = 21}, + [6579] = {.lex_state = 24}, + [6580] = {.lex_state = 21}, + [6581] = {.lex_state = 21}, + [6582] = {.lex_state = 21}, + [6583] = {.lex_state = 21}, + [6584] = {.lex_state = 21}, + [6585] = {.lex_state = 24}, + [6586] = {.lex_state = 21}, + [6587] = {.lex_state = 21}, + [6588] = {.lex_state = 24}, + [6589] = {.lex_state = 21}, + [6590] = {.lex_state = 21}, + [6591] = {.lex_state = 24}, + [6592] = {.lex_state = 21}, + [6593] = {.lex_state = 21}, + [6594] = {.lex_state = 21}, + [6595] = {.lex_state = 21}, + [6596] = {.lex_state = 21}, + [6597] = {.lex_state = 5}, + [6598] = {.lex_state = 5}, + [6599] = {.lex_state = 5}, + [6600] = {.lex_state = 5}, + [6601] = {.lex_state = 5}, + [6602] = {.lex_state = 5}, + [6603] = {.lex_state = 25}, + [6604] = {.lex_state = 25}, + [6605] = {.lex_state = 25}, + [6606] = {.lex_state = 25}, + [6607] = {.lex_state = 25}, + [6608] = {.lex_state = 25}, + [6609] = {.lex_state = 25}, + [6610] = {.lex_state = 25}, + [6611] = {.lex_state = 25}, + [6612] = {.lex_state = 25}, + [6613] = {.lex_state = 25}, + [6614] = {.lex_state = 25}, + [6615] = {.lex_state = 25}, + [6616] = {.lex_state = 25}, + [6617] = {.lex_state = 25}, + [6618] = {.lex_state = 25}, + [6619] = {.lex_state = 25}, + [6620] = {.lex_state = 25}, + [6621] = {.lex_state = 25}, + [6622] = {.lex_state = 25}, + [6623] = {.lex_state = 25}, + [6624] = {.lex_state = 25}, + [6625] = {.lex_state = 25}, + [6626] = {.lex_state = 25}, + [6627] = {.lex_state = 25}, + [6628] = {.lex_state = 25}, + [6629] = {.lex_state = 25}, + [6630] = {.lex_state = 25}, + [6631] = {.lex_state = 25}, + [6632] = {.lex_state = 25}, + [6633] = {.lex_state = 25}, + [6634] = {.lex_state = 25}, + [6635] = {.lex_state = 25}, + [6636] = {.lex_state = 25}, + [6637] = {.lex_state = 25}, + [6638] = {.lex_state = 25}, + [6639] = {.lex_state = 25}, + [6640] = {.lex_state = 25}, + [6641] = {.lex_state = 25}, + [6642] = {.lex_state = 25}, + [6643] = {.lex_state = 25}, + [6644] = {.lex_state = 25}, + [6645] = {.lex_state = 25}, + [6646] = {.lex_state = 25}, + [6647] = {.lex_state = 25}, + [6648] = {.lex_state = 25}, + [6649] = {.lex_state = 25}, + [6650] = {.lex_state = 25}, + [6651] = {.lex_state = 25}, + [6652] = {.lex_state = 25}, + [6653] = {.lex_state = 25}, + [6654] = {.lex_state = 25}, + [6655] = {.lex_state = 25}, + [6656] = {.lex_state = 25}, + [6657] = {.lex_state = 25}, + [6658] = {.lex_state = 25}, + [6659] = {.lex_state = 25}, + [6660] = {.lex_state = 25}, + [6661] = {.lex_state = 25}, + [6662] = {.lex_state = 25}, + [6663] = {.lex_state = 25}, + [6664] = {.lex_state = 25}, + [6665] = {.lex_state = 25}, + [6666] = {.lex_state = 25}, + [6667] = {.lex_state = 25}, + [6668] = {.lex_state = 25}, + [6669] = {.lex_state = 25}, + [6670] = {.lex_state = 25}, + [6671] = {.lex_state = 25}, + [6672] = {.lex_state = 25}, + [6673] = {.lex_state = 25}, + [6674] = {.lex_state = 25}, + [6675] = {.lex_state = 25}, + [6676] = {.lex_state = 25}, + [6677] = {.lex_state = 25}, + [6678] = {.lex_state = 25}, + [6679] = {.lex_state = 25}, + [6680] = {.lex_state = 25}, + [6681] = {.lex_state = 25}, + [6682] = {.lex_state = 25}, + [6683] = {.lex_state = 25}, + [6684] = {.lex_state = 25}, + [6685] = {.lex_state = 25}, + [6686] = {.lex_state = 25}, + [6687] = {.lex_state = 25}, + [6688] = {.lex_state = 25}, + [6689] = {.lex_state = 25}, + [6690] = {.lex_state = 25}, + [6691] = {.lex_state = 25}, + [6692] = {.lex_state = 25}, + [6693] = {.lex_state = 25}, + [6694] = {.lex_state = 25}, + [6695] = {.lex_state = 25}, + [6696] = {.lex_state = 25}, + [6697] = {.lex_state = 25}, + [6698] = {.lex_state = 25}, + [6699] = {.lex_state = 25}, + [6700] = {.lex_state = 25}, + [6701] = {.lex_state = 25}, + [6702] = {.lex_state = 25}, + [6703] = {.lex_state = 25}, + [6704] = {.lex_state = 25}, + [6705] = {.lex_state = 25}, + [6706] = {.lex_state = 25}, + [6707] = {.lex_state = 25}, + [6708] = {.lex_state = 25}, + [6709] = {.lex_state = 25}, + [6710] = {.lex_state = 25}, + [6711] = {.lex_state = 25}, + [6712] = {.lex_state = 25}, + [6713] = {.lex_state = 25}, + [6714] = {.lex_state = 25}, + [6715] = {.lex_state = 25}, + [6716] = {.lex_state = 25}, + [6717] = {.lex_state = 25}, + [6718] = {.lex_state = 25}, + [6719] = {.lex_state = 25}, + [6720] = {.lex_state = 25}, + [6721] = {.lex_state = 25}, + [6722] = {.lex_state = 25}, + [6723] = {.lex_state = 25}, + [6724] = {.lex_state = 25}, + [6725] = {.lex_state = 25}, + [6726] = {.lex_state = 25}, + [6727] = {.lex_state = 25}, + [6728] = {.lex_state = 25}, + [6729] = {.lex_state = 25}, + [6730] = {.lex_state = 25}, + [6731] = {.lex_state = 25}, + [6732] = {.lex_state = 25}, + [6733] = {.lex_state = 25}, + [6734] = {.lex_state = 25}, + [6735] = {.lex_state = 25}, + [6736] = {.lex_state = 25}, + [6737] = {.lex_state = 25}, + [6738] = {.lex_state = 25}, + [6739] = {.lex_state = 25}, + [6740] = {.lex_state = 25}, + [6741] = {.lex_state = 25}, + [6742] = {.lex_state = 25}, + [6743] = {.lex_state = 25}, + [6744] = {.lex_state = 25}, + [6745] = {.lex_state = 25}, + [6746] = {.lex_state = 25}, + [6747] = {.lex_state = 25}, + [6748] = {.lex_state = 25}, + [6749] = {.lex_state = 25}, + [6750] = {.lex_state = 25}, + [6751] = {.lex_state = 25}, + [6752] = {.lex_state = 25}, + [6753] = {.lex_state = 25}, + [6754] = {.lex_state = 25}, + [6755] = {.lex_state = 25}, + [6756] = {.lex_state = 25}, + [6757] = {.lex_state = 25}, + [6758] = {.lex_state = 25}, + [6759] = {.lex_state = 25}, + [6760] = {.lex_state = 25}, + [6761] = {.lex_state = 25}, + [6762] = {.lex_state = 25}, + [6763] = {.lex_state = 25}, + [6764] = {.lex_state = 25}, + [6765] = {.lex_state = 25}, + [6766] = {.lex_state = 25}, + [6767] = {.lex_state = 25}, + [6768] = {.lex_state = 25}, + [6769] = {.lex_state = 25}, + [6770] = {.lex_state = 25}, + [6771] = {.lex_state = 25}, + [6772] = {.lex_state = 25}, + [6773] = {.lex_state = 25}, + [6774] = {.lex_state = 25}, + [6775] = {.lex_state = 25}, + [6776] = {.lex_state = 25}, + [6777] = {.lex_state = 25}, + [6778] = {.lex_state = 25}, + [6779] = {.lex_state = 25}, + [6780] = {.lex_state = 25}, + [6781] = {.lex_state = 25}, + [6782] = {.lex_state = 25}, + [6783] = {.lex_state = 25}, + [6784] = {.lex_state = 25}, + [6785] = {.lex_state = 25}, + [6786] = {.lex_state = 25}, + [6787] = {.lex_state = 25}, + [6788] = {.lex_state = 25}, + [6789] = {.lex_state = 25}, + [6790] = {.lex_state = 25}, + [6791] = {.lex_state = 25}, + [6792] = {.lex_state = 25}, + [6793] = {.lex_state = 25}, + [6794] = {.lex_state = 25}, + [6795] = {.lex_state = 25}, + [6796] = {.lex_state = 25}, + [6797] = {.lex_state = 25}, + [6798] = {.lex_state = 25}, + [6799] = {.lex_state = 25}, + [6800] = {.lex_state = 25}, + [6801] = {.lex_state = 25}, + [6802] = {.lex_state = 25}, + [6803] = {.lex_state = 25}, + [6804] = {.lex_state = 25}, + [6805] = {.lex_state = 25}, + [6806] = {.lex_state = 25}, + [6807] = {.lex_state = 25}, + [6808] = {.lex_state = 25}, + [6809] = {.lex_state = 25}, + [6810] = {.lex_state = 25}, + [6811] = {.lex_state = 25}, + [6812] = {.lex_state = 25}, + [6813] = {.lex_state = 25}, + [6814] = {.lex_state = 25}, + [6815] = {.lex_state = 25}, + [6816] = {.lex_state = 25}, + [6817] = {.lex_state = 25}, + [6818] = {.lex_state = 25}, + [6819] = {.lex_state = 25}, + [6820] = {.lex_state = 25}, + [6821] = {.lex_state = 25}, + [6822] = {.lex_state = 25}, + [6823] = {.lex_state = 25}, + [6824] = {.lex_state = 25}, + [6825] = {.lex_state = 25}, + [6826] = {.lex_state = 25}, + [6827] = {.lex_state = 25}, + [6828] = {.lex_state = 25}, + [6829] = {.lex_state = 25}, + [6830] = {.lex_state = 25}, + [6831] = {.lex_state = 25}, + [6832] = {.lex_state = 25}, + [6833] = {.lex_state = 25}, + [6834] = {.lex_state = 25}, + [6835] = {.lex_state = 25}, + [6836] = {.lex_state = 25}, + [6837] = {.lex_state = 25}, + [6838] = {.lex_state = 25}, + [6839] = {.lex_state = 25}, + [6840] = {.lex_state = 25}, + [6841] = {.lex_state = 25}, + [6842] = {.lex_state = 25}, + [6843] = {.lex_state = 25}, + [6844] = {.lex_state = 25}, + [6845] = {.lex_state = 25}, + [6846] = {.lex_state = 25}, + [6847] = {.lex_state = 25}, + [6848] = {.lex_state = 25}, + [6849] = {.lex_state = 25}, + [6850] = {.lex_state = 25}, + [6851] = {.lex_state = 25}, + [6852] = {.lex_state = 25}, + [6853] = {.lex_state = 25}, + [6854] = {.lex_state = 25}, + [6855] = {.lex_state = 25}, + [6856] = {.lex_state = 25}, + [6857] = {.lex_state = 25}, + [6858] = {.lex_state = 25}, + [6859] = {.lex_state = 25}, + [6860] = {.lex_state = 25}, + [6861] = {.lex_state = 25}, + [6862] = {.lex_state = 25}, + [6863] = {.lex_state = 25}, + [6864] = {.lex_state = 25}, + [6865] = {.lex_state = 25}, + [6866] = {.lex_state = 25}, + [6867] = {.lex_state = 25}, + [6868] = {.lex_state = 25}, + [6869] = {.lex_state = 23}, + [6870] = {.lex_state = 23}, + [6871] = {.lex_state = 23}, + [6872] = {.lex_state = 23}, + [6873] = {.lex_state = 23}, + [6874] = {.lex_state = 23}, + [6875] = {.lex_state = 23}, + [6876] = {.lex_state = 23}, + [6877] = {.lex_state = 23}, + [6878] = {.lex_state = 23}, + [6879] = {.lex_state = 23}, + [6880] = {.lex_state = 23}, + [6881] = {.lex_state = 23}, + [6882] = {.lex_state = 23}, + [6883] = {.lex_state = 23}, + [6884] = {.lex_state = 23}, + [6885] = {.lex_state = 23}, + [6886] = {.lex_state = 23}, + [6887] = {.lex_state = 23}, + [6888] = {.lex_state = 23}, + [6889] = {.lex_state = 23}, + [6890] = {.lex_state = 23}, + [6891] = {.lex_state = 23}, + [6892] = {.lex_state = 23}, + [6893] = {.lex_state = 23}, + [6894] = {.lex_state = 23}, + [6895] = {.lex_state = 23}, + [6896] = {.lex_state = 23}, + [6897] = {.lex_state = 23}, + [6898] = {.lex_state = 23}, + [6899] = {.lex_state = 23}, + [6900] = {.lex_state = 23}, + [6901] = {.lex_state = 23}, + [6902] = {.lex_state = 23}, + [6903] = {.lex_state = 23}, + [6904] = {.lex_state = 23}, + [6905] = {.lex_state = 23}, + [6906] = {.lex_state = 23}, + [6907] = {.lex_state = 23}, + [6908] = {.lex_state = 23}, + [6909] = {.lex_state = 23}, + [6910] = {.lex_state = 23}, + [6911] = {.lex_state = 23}, + [6912] = {.lex_state = 23}, + [6913] = {.lex_state = 23}, + [6914] = {.lex_state = 23}, + [6915] = {.lex_state = 23}, + [6916] = {.lex_state = 23}, + [6917] = {.lex_state = 23}, + [6918] = {.lex_state = 23}, + [6919] = {.lex_state = 23}, + [6920] = {.lex_state = 23}, + [6921] = {.lex_state = 23}, + [6922] = {.lex_state = 23}, + [6923] = {.lex_state = 23}, + [6924] = {.lex_state = 23}, + [6925] = {.lex_state = 23}, + [6926] = {.lex_state = 23}, + [6927] = {.lex_state = 23}, + [6928] = {.lex_state = 23}, + [6929] = {.lex_state = 23}, + [6930] = {.lex_state = 23}, + [6931] = {.lex_state = 23}, + [6932] = {.lex_state = 23}, + [6933] = {.lex_state = 23}, + [6934] = {.lex_state = 23}, + [6935] = {.lex_state = 23}, + [6936] = {.lex_state = 23}, + [6937] = {.lex_state = 23}, + [6938] = {.lex_state = 23}, + [6939] = {.lex_state = 23}, + [6940] = {.lex_state = 23}, + [6941] = {.lex_state = 23}, + [6942] = {.lex_state = 23}, + [6943] = {.lex_state = 23}, + [6944] = {.lex_state = 23}, + [6945] = {.lex_state = 23}, + [6946] = {.lex_state = 23}, + [6947] = {.lex_state = 23}, + [6948] = {.lex_state = 23}, + [6949] = {.lex_state = 23}, + [6950] = {.lex_state = 23}, + [6951] = {.lex_state = 23}, + [6952] = {.lex_state = 23}, + [6953] = {.lex_state = 23}, + [6954] = {.lex_state = 23}, + [6955] = {.lex_state = 23}, + [6956] = {.lex_state = 23}, + [6957] = {.lex_state = 23}, + [6958] = {.lex_state = 23}, + [6959] = {.lex_state = 23}, + [6960] = {.lex_state = 23}, + [6961] = {.lex_state = 23}, + [6962] = {.lex_state = 23}, + [6963] = {.lex_state = 23}, + [6964] = {.lex_state = 23}, + [6965] = {.lex_state = 23}, + [6966] = {.lex_state = 23}, + [6967] = {.lex_state = 23}, + [6968] = {.lex_state = 23}, + [6969] = {.lex_state = 23}, + [6970] = {.lex_state = 23}, + [6971] = {.lex_state = 23}, + [6972] = {.lex_state = 23}, + [6973] = {.lex_state = 23}, + [6974] = {.lex_state = 23}, + [6975] = {.lex_state = 23}, + [6976] = {.lex_state = 23}, + [6977] = {.lex_state = 23}, + [6978] = {.lex_state = 23}, + [6979] = {.lex_state = 23}, + [6980] = {.lex_state = 23}, + [6981] = {.lex_state = 23}, + [6982] = {.lex_state = 23}, + [6983] = {.lex_state = 23}, + [6984] = {.lex_state = 23}, + [6985] = {.lex_state = 23}, + [6986] = {.lex_state = 23}, + [6987] = {.lex_state = 23}, + [6988] = {.lex_state = 23}, + [6989] = {.lex_state = 23}, + [6990] = {.lex_state = 23}, + [6991] = {.lex_state = 23}, + [6992] = {.lex_state = 23}, + [6993] = {.lex_state = 23}, + [6994] = {.lex_state = 23}, + [6995] = {.lex_state = 23}, + [6996] = {.lex_state = 23}, + [6997] = {.lex_state = 23}, + [6998] = {.lex_state = 23}, + [6999] = {.lex_state = 23}, + [7000] = {.lex_state = 23}, + [7001] = {.lex_state = 23}, + [7002] = {.lex_state = 23}, + [7003] = {.lex_state = 23}, + [7004] = {.lex_state = 23}, + [7005] = {.lex_state = 23}, + [7006] = {.lex_state = 23}, + [7007] = {.lex_state = 23}, + [7008] = {.lex_state = 23}, + [7009] = {.lex_state = 23}, + [7010] = {.lex_state = 23}, + [7011] = {.lex_state = 23}, + [7012] = {.lex_state = 23}, + [7013] = {.lex_state = 23}, + [7014] = {.lex_state = 23}, + [7015] = {.lex_state = 23}, + [7016] = {.lex_state = 23}, + [7017] = {.lex_state = 23}, + [7018] = {.lex_state = 23}, + [7019] = {.lex_state = 23}, + [7020] = {.lex_state = 23}, + [7021] = {.lex_state = 23}, + [7022] = {.lex_state = 23}, + [7023] = {.lex_state = 23}, + [7024] = {.lex_state = 23}, + [7025] = {.lex_state = 23}, + [7026] = {.lex_state = 23}, + [7027] = {.lex_state = 23}, + [7028] = {.lex_state = 23}, + [7029] = {.lex_state = 23}, + [7030] = {.lex_state = 23}, + [7031] = {.lex_state = 23}, + [7032] = {.lex_state = 23}, + [7033] = {.lex_state = 23}, + [7034] = {.lex_state = 23}, + [7035] = {.lex_state = 23}, + [7036] = {.lex_state = 23}, + [7037] = {.lex_state = 23}, + [7038] = {.lex_state = 23}, + [7039] = {.lex_state = 23}, + [7040] = {.lex_state = 23}, + [7041] = {.lex_state = 23}, + [7042] = {.lex_state = 23}, + [7043] = {.lex_state = 23}, + [7044] = {.lex_state = 23}, + [7045] = {.lex_state = 23}, + [7046] = {.lex_state = 23}, + [7047] = {.lex_state = 23}, + [7048] = {.lex_state = 23}, + [7049] = {.lex_state = 23}, + [7050] = {.lex_state = 23}, + [7051] = {.lex_state = 23}, + [7052] = {.lex_state = 23}, + [7053] = {.lex_state = 23}, + [7054] = {.lex_state = 23}, + [7055] = {.lex_state = 23}, + [7056] = {.lex_state = 23}, + [7057] = {.lex_state = 23}, + [7058] = {.lex_state = 23}, + [7059] = {.lex_state = 23}, + [7060] = {.lex_state = 23}, + [7061] = {.lex_state = 23}, + [7062] = {.lex_state = 23}, + [7063] = {.lex_state = 23}, + [7064] = {.lex_state = 23}, + [7065] = {.lex_state = 23}, + [7066] = {.lex_state = 23}, + [7067] = {.lex_state = 23}, + [7068] = {.lex_state = 23}, + [7069] = {.lex_state = 23}, + [7070] = {.lex_state = 23}, + [7071] = {.lex_state = 23}, + [7072] = {.lex_state = 23}, + [7073] = {.lex_state = 23}, + [7074] = {.lex_state = 23}, + [7075] = {.lex_state = 23}, + [7076] = {.lex_state = 23}, + [7077] = {.lex_state = 23}, + [7078] = {.lex_state = 23}, + [7079] = {.lex_state = 23}, + [7080] = {.lex_state = 23}, + [7081] = {.lex_state = 23}, + [7082] = {.lex_state = 23}, + [7083] = {.lex_state = 23}, + [7084] = {.lex_state = 23}, + [7085] = {.lex_state = 23}, + [7086] = {.lex_state = 23}, + [7087] = {.lex_state = 23}, + [7088] = {.lex_state = 23}, + [7089] = {.lex_state = 24}, + [7090] = {.lex_state = 25}, + [7091] = {.lex_state = 25}, + [7092] = {.lex_state = 25}, + [7093] = {.lex_state = 25}, + [7094] = {.lex_state = 25}, + [7095] = {.lex_state = 24}, + [7096] = {.lex_state = 25}, + [7097] = {.lex_state = 25}, + [7098] = {.lex_state = 25}, + [7099] = {.lex_state = 25}, + [7100] = {.lex_state = 25}, + [7101] = {.lex_state = 25}, + [7102] = {.lex_state = 25}, + [7103] = {.lex_state = 24}, + [7104] = {.lex_state = 25}, + [7105] = {.lex_state = 24}, + [7106] = {.lex_state = 24}, + [7107] = {.lex_state = 25}, + [7108] = {.lex_state = 24}, + [7109] = {.lex_state = 24}, + [7110] = {.lex_state = 24}, + [7111] = {.lex_state = 24}, + [7112] = {.lex_state = 24}, + [7113] = {.lex_state = 24}, + [7114] = {.lex_state = 24}, + [7115] = {.lex_state = 24}, + [7116] = {.lex_state = 24}, + [7117] = {.lex_state = 24}, + [7118] = {.lex_state = 24}, + [7119] = {.lex_state = 24}, + [7120] = {.lex_state = 24}, + [7121] = {.lex_state = 24}, + [7122] = {.lex_state = 24}, + [7123] = {.lex_state = 24}, + [7124] = {.lex_state = 24}, + [7125] = {.lex_state = 24}, + [7126] = {.lex_state = 24}, + [7127] = {.lex_state = 24}, + [7128] = {.lex_state = 24}, + [7129] = {.lex_state = 24}, + [7130] = {.lex_state = 24}, + [7131] = {.lex_state = 24}, + [7132] = {.lex_state = 24}, + [7133] = {.lex_state = 24}, + [7134] = {.lex_state = 24}, + [7135] = {.lex_state = 24}, + [7136] = {.lex_state = 24}, + [7137] = {.lex_state = 24}, + [7138] = {.lex_state = 24}, + [7139] = {.lex_state = 24}, + [7140] = {.lex_state = 24}, + [7141] = {.lex_state = 24}, + [7142] = {.lex_state = 24}, + [7143] = {.lex_state = 24}, + [7144] = {.lex_state = 24}, + [7145] = {.lex_state = 24}, + [7146] = {.lex_state = 24}, + [7147] = {.lex_state = 24}, + [7148] = {.lex_state = 24}, + [7149] = {.lex_state = 24}, + [7150] = {.lex_state = 24}, + [7151] = {.lex_state = 24}, + [7152] = {.lex_state = 24}, + [7153] = {.lex_state = 24}, + [7154] = {.lex_state = 24}, + [7155] = {.lex_state = 24}, + [7156] = {.lex_state = 24}, + [7157] = {.lex_state = 24}, + [7158] = {.lex_state = 24}, + [7159] = {.lex_state = 24}, + [7160] = {.lex_state = 24}, + [7161] = {.lex_state = 24}, + [7162] = {.lex_state = 24}, + [7163] = {.lex_state = 24}, + [7164] = {.lex_state = 24}, + [7165] = {.lex_state = 24}, + [7166] = {.lex_state = 24}, + [7167] = {.lex_state = 24}, + [7168] = {.lex_state = 24}, + [7169] = {.lex_state = 24}, + [7170] = {.lex_state = 24}, + [7171] = {.lex_state = 24}, + [7172] = {.lex_state = 24}, + [7173] = {.lex_state = 24}, + [7174] = {.lex_state = 24}, + [7175] = {.lex_state = 24}, + [7176] = {.lex_state = 24}, + [7177] = {.lex_state = 24}, + [7178] = {.lex_state = 24}, + [7179] = {.lex_state = 24}, + [7180] = {.lex_state = 24}, + [7181] = {.lex_state = 24}, + [7182] = {.lex_state = 24}, + [7183] = {.lex_state = 24}, + [7184] = {.lex_state = 24}, + [7185] = {.lex_state = 24}, + [7186] = {.lex_state = 24}, + [7187] = {.lex_state = 24}, + [7188] = {.lex_state = 24}, + [7189] = {.lex_state = 24}, + [7190] = {.lex_state = 24}, + [7191] = {.lex_state = 24}, + [7192] = {.lex_state = 24}, + [7193] = {.lex_state = 24}, + [7194] = {.lex_state = 24}, + [7195] = {.lex_state = 24}, + [7196] = {.lex_state = 24}, + [7197] = {.lex_state = 24}, + [7198] = {.lex_state = 24}, + [7199] = {.lex_state = 24}, + [7200] = {.lex_state = 24}, + [7201] = {.lex_state = 24}, + [7202] = {.lex_state = 24}, + [7203] = {.lex_state = 24}, + [7204] = {.lex_state = 24}, + [7205] = {.lex_state = 24}, + [7206] = {.lex_state = 24}, + [7207] = {.lex_state = 24}, + [7208] = {.lex_state = 24}, + [7209] = {.lex_state = 24}, + [7210] = {.lex_state = 24}, + [7211] = {.lex_state = 24}, + [7212] = {.lex_state = 24}, + [7213] = {.lex_state = 24}, + [7214] = {.lex_state = 24}, + [7215] = {.lex_state = 24}, + [7216] = {.lex_state = 24}, + [7217] = {.lex_state = 24}, + [7218] = {.lex_state = 24}, + [7219] = {.lex_state = 24}, + [7220] = {.lex_state = 24}, + [7221] = {.lex_state = 24}, + [7222] = {.lex_state = 24}, + [7223] = {.lex_state = 24}, + [7224] = {.lex_state = 24}, + [7225] = {.lex_state = 24}, + [7226] = {.lex_state = 24}, + [7227] = {.lex_state = 24}, + [7228] = {.lex_state = 24}, + [7229] = {.lex_state = 24}, + [7230] = {.lex_state = 24}, + [7231] = {.lex_state = 24}, + [7232] = {.lex_state = 24}, + [7233] = {.lex_state = 24}, + [7234] = {.lex_state = 24}, + [7235] = {.lex_state = 24}, + [7236] = {.lex_state = 24}, + [7237] = {.lex_state = 24}, + [7238] = {.lex_state = 24}, + [7239] = {.lex_state = 24}, + [7240] = {.lex_state = 24}, + [7241] = {.lex_state = 24}, + [7242] = {.lex_state = 24}, + [7243] = {.lex_state = 24}, + [7244] = {.lex_state = 24}, + [7245] = {.lex_state = 24}, + [7246] = {.lex_state = 24}, + [7247] = {.lex_state = 24}, + [7248] = {.lex_state = 24}, + [7249] = {.lex_state = 24}, + [7250] = {.lex_state = 24}, + [7251] = {.lex_state = 24}, + [7252] = {.lex_state = 24}, + [7253] = {.lex_state = 24}, + [7254] = {.lex_state = 24}, + [7255] = {.lex_state = 24}, + [7256] = {.lex_state = 24}, + [7257] = {.lex_state = 24}, + [7258] = {.lex_state = 24}, + [7259] = {.lex_state = 24}, + [7260] = {.lex_state = 24}, + [7261] = {.lex_state = 24}, + [7262] = {.lex_state = 24}, + [7263] = {.lex_state = 24}, + [7264] = {.lex_state = 24}, + [7265] = {.lex_state = 24}, + [7266] = {.lex_state = 24}, + [7267] = {.lex_state = 24}, + [7268] = {.lex_state = 24}, + [7269] = {.lex_state = 24}, + [7270] = {.lex_state = 24}, + [7271] = {.lex_state = 24}, + [7272] = {.lex_state = 24}, + [7273] = {.lex_state = 24}, + [7274] = {.lex_state = 24}, + [7275] = {.lex_state = 24}, + [7276] = {.lex_state = 24}, + [7277] = {.lex_state = 24}, + [7278] = {.lex_state = 24}, + [7279] = {.lex_state = 24}, + [7280] = {.lex_state = 24}, + [7281] = {.lex_state = 24}, + [7282] = {.lex_state = 24}, + [7283] = {.lex_state = 24}, + [7284] = {.lex_state = 24}, + [7285] = {.lex_state = 24}, + [7286] = {.lex_state = 24}, + [7287] = {.lex_state = 24}, + [7288] = {.lex_state = 24}, + [7289] = {.lex_state = 24}, + [7290] = {.lex_state = 24}, + [7291] = {.lex_state = 24}, + [7292] = {.lex_state = 24}, + [7293] = {.lex_state = 24}, + [7294] = {.lex_state = 24}, + [7295] = {.lex_state = 24}, + [7296] = {.lex_state = 24}, + [7297] = {.lex_state = 24}, + [7298] = {.lex_state = 24}, + [7299] = {.lex_state = 24}, + [7300] = {.lex_state = 24}, + [7301] = {.lex_state = 24}, + [7302] = {.lex_state = 24}, + [7303] = {.lex_state = 24}, + [7304] = {.lex_state = 24}, + [7305] = {.lex_state = 24}, + [7306] = {.lex_state = 24}, + [7307] = {.lex_state = 24}, + [7308] = {.lex_state = 24}, + [7309] = {.lex_state = 24}, + [7310] = {.lex_state = 24}, + [7311] = {.lex_state = 24}, + [7312] = {.lex_state = 24}, + [7313] = {.lex_state = 24}, + [7314] = {.lex_state = 24}, + [7315] = {.lex_state = 24}, + [7316] = {.lex_state = 24}, + [7317] = {.lex_state = 24}, + [7318] = {.lex_state = 24}, + [7319] = {.lex_state = 24}, + [7320] = {.lex_state = 24}, + [7321] = {.lex_state = 24}, + [7322] = {.lex_state = 24}, + [7323] = {.lex_state = 24}, + [7324] = {.lex_state = 24}, + [7325] = {.lex_state = 24}, + [7326] = {.lex_state = 24}, + [7327] = {.lex_state = 24}, + [7328] = {.lex_state = 24}, + [7329] = {.lex_state = 24}, + [7330] = {.lex_state = 24}, + [7331] = {.lex_state = 24}, + [7332] = {.lex_state = 24}, + [7333] = {.lex_state = 24}, + [7334] = {.lex_state = 24}, + [7335] = {.lex_state = 24}, + [7336] = {.lex_state = 24}, + [7337] = {.lex_state = 24}, + [7338] = {.lex_state = 24}, + [7339] = {.lex_state = 24}, + [7340] = {.lex_state = 24}, + [7341] = {.lex_state = 24}, + [7342] = {.lex_state = 24}, + [7343] = {.lex_state = 24}, + [7344] = {.lex_state = 24}, + [7345] = {.lex_state = 24}, + [7346] = {.lex_state = 24}, + [7347] = {.lex_state = 24}, + [7348] = {.lex_state = 24}, + [7349] = {.lex_state = 24}, + [7350] = {.lex_state = 24}, + [7351] = {.lex_state = 24}, + [7352] = {.lex_state = 24}, + [7353] = {.lex_state = 24}, + [7354] = {.lex_state = 24}, + [7355] = {.lex_state = 24}, + [7356] = {.lex_state = 24}, + [7357] = {.lex_state = 24}, + [7358] = {.lex_state = 24}, + [7359] = {.lex_state = 24}, + [7360] = {.lex_state = 24}, + [7361] = {.lex_state = 24}, + [7362] = {.lex_state = 24}, + [7363] = {.lex_state = 24}, + [7364] = {.lex_state = 24}, + [7365] = {.lex_state = 24}, + [7366] = {.lex_state = 24}, + [7367] = {.lex_state = 24}, + [7368] = {.lex_state = 24}, + [7369] = {.lex_state = 24}, + [7370] = {.lex_state = 24}, + [7371] = {.lex_state = 24}, + [7372] = {.lex_state = 24}, + [7373] = {.lex_state = 24}, + [7374] = {.lex_state = 24}, + [7375] = {.lex_state = 24}, + [7376] = {.lex_state = 24}, + [7377] = {.lex_state = 24}, + [7378] = {.lex_state = 24}, + [7379] = {.lex_state = 24}, + [7380] = {.lex_state = 24}, + [7381] = {.lex_state = 24}, + [7382] = {.lex_state = 24}, + [7383] = {.lex_state = 24}, + [7384] = {.lex_state = 24}, + [7385] = {.lex_state = 24}, + [7386] = {.lex_state = 24}, + [7387] = {.lex_state = 24}, + [7388] = {.lex_state = 24}, + [7389] = {.lex_state = 24}, + [7390] = {.lex_state = 24}, + [7391] = {.lex_state = 24}, + [7392] = {.lex_state = 24}, + [7393] = {.lex_state = 24}, + [7394] = {.lex_state = 24}, + [7395] = {.lex_state = 24}, + [7396] = {.lex_state = 24}, + [7397] = {.lex_state = 24}, + [7398] = {.lex_state = 24}, + [7399] = {.lex_state = 24}, + [7400] = {.lex_state = 24}, + [7401] = {.lex_state = 24}, + [7402] = {.lex_state = 24}, + [7403] = {.lex_state = 24}, + [7404] = {.lex_state = 24}, + [7405] = {.lex_state = 24}, + [7406] = {.lex_state = 24}, + [7407] = {.lex_state = 24}, + [7408] = {.lex_state = 24}, + [7409] = {.lex_state = 24}, + [7410] = {.lex_state = 24}, + [7411] = {.lex_state = 24}, + [7412] = {.lex_state = 24}, + [7413] = {.lex_state = 24}, + [7414] = {.lex_state = 24}, + [7415] = {.lex_state = 24}, + [7416] = {.lex_state = 24}, + [7417] = {.lex_state = 24}, + [7418] = {.lex_state = 24}, + [7419] = {.lex_state = 24}, + [7420] = {.lex_state = 24}, + [7421] = {.lex_state = 24}, + [7422] = {.lex_state = 24}, + [7423] = {.lex_state = 24}, + [7424] = {.lex_state = 24}, + [7425] = {.lex_state = 24}, + [7426] = {.lex_state = 24}, + [7427] = {.lex_state = 24}, + [7428] = {.lex_state = 24}, + [7429] = {.lex_state = 24}, + [7430] = {.lex_state = 24}, + [7431] = {.lex_state = 24}, + [7432] = {.lex_state = 24}, + [7433] = {.lex_state = 24}, + [7434] = {.lex_state = 24}, + [7435] = {.lex_state = 24}, + [7436] = {.lex_state = 24}, + [7437] = {.lex_state = 24}, + [7438] = {.lex_state = 24}, + [7439] = {.lex_state = 24}, + [7440] = {.lex_state = 24}, + [7441] = {.lex_state = 24}, + [7442] = {.lex_state = 24}, + [7443] = {.lex_state = 24}, + [7444] = {.lex_state = 24}, + [7445] = {.lex_state = 24}, + [7446] = {.lex_state = 24}, + [7447] = {.lex_state = 24}, + [7448] = {.lex_state = 24}, + [7449] = {.lex_state = 24}, + [7450] = {.lex_state = 24}, + [7451] = {.lex_state = 24}, + [7452] = {.lex_state = 24}, + [7453] = {.lex_state = 24}, + [7454] = {.lex_state = 24}, + [7455] = {.lex_state = 24}, + [7456] = {.lex_state = 24}, + [7457] = {.lex_state = 24}, + [7458] = {.lex_state = 24}, + [7459] = {.lex_state = 24}, + [7460] = {.lex_state = 24}, + [7461] = {.lex_state = 24}, + [7462] = {.lex_state = 24}, + [7463] = {.lex_state = 24}, + [7464] = {.lex_state = 24}, + [7465] = {.lex_state = 24}, + [7466] = {.lex_state = 24}, + [7467] = {.lex_state = 24}, + [7468] = {.lex_state = 24}, + [7469] = {.lex_state = 24}, + [7470] = {.lex_state = 24}, + [7471] = {.lex_state = 24}, + [7472] = {.lex_state = 24}, + [7473] = {.lex_state = 24}, + [7474] = {.lex_state = 24}, + [7475] = {.lex_state = 24}, + [7476] = {.lex_state = 24}, + [7477] = {.lex_state = 24}, + [7478] = {.lex_state = 24}, + [7479] = {.lex_state = 24}, + [7480] = {.lex_state = 24}, + [7481] = {.lex_state = 24}, + [7482] = {.lex_state = 24}, + [7483] = {.lex_state = 24}, + [7484] = {.lex_state = 24}, + [7485] = {.lex_state = 24}, + [7486] = {.lex_state = 24}, + [7487] = {.lex_state = 24}, + [7488] = {.lex_state = 24}, + [7489] = {.lex_state = 24}, + [7490] = {.lex_state = 24}, + [7491] = {.lex_state = 24}, + [7492] = {.lex_state = 24}, + [7493] = {.lex_state = 24}, + [7494] = {.lex_state = 24}, + [7495] = {.lex_state = 24}, + [7496] = {.lex_state = 24}, + [7497] = {.lex_state = 24}, + [7498] = {.lex_state = 24}, + [7499] = {.lex_state = 24}, + [7500] = {.lex_state = 24}, + [7501] = {.lex_state = 24}, + [7502] = {.lex_state = 24}, + [7503] = {.lex_state = 24}, + [7504] = {.lex_state = 24}, + [7505] = {.lex_state = 24}, + [7506] = {.lex_state = 24}, + [7507] = {.lex_state = 24}, + [7508] = {.lex_state = 24}, + [7509] = {.lex_state = 24}, + [7510] = {.lex_state = 24}, + [7511] = {.lex_state = 24}, + [7512] = {.lex_state = 24}, + [7513] = {.lex_state = 24}, + [7514] = {.lex_state = 24}, + [7515] = {.lex_state = 24}, + [7516] = {.lex_state = 24}, + [7517] = {.lex_state = 24}, + [7518] = {.lex_state = 24}, + [7519] = {.lex_state = 24}, + [7520] = {.lex_state = 24}, + [7521] = {.lex_state = 24}, + [7522] = {.lex_state = 24}, + [7523] = {.lex_state = 24}, + [7524] = {.lex_state = 24}, + [7525] = {.lex_state = 24}, + [7526] = {.lex_state = 24}, + [7527] = {.lex_state = 24}, + [7528] = {.lex_state = 24}, + [7529] = {.lex_state = 24}, + [7530] = {.lex_state = 24}, + [7531] = {.lex_state = 24}, + [7532] = {.lex_state = 24}, + [7533] = {.lex_state = 24}, + [7534] = {.lex_state = 24}, + [7535] = {.lex_state = 24}, + [7536] = {.lex_state = 24}, + [7537] = {.lex_state = 24}, + [7538] = {.lex_state = 24}, + [7539] = {.lex_state = 24}, + [7540] = {.lex_state = 24}, + [7541] = {.lex_state = 24}, + [7542] = {.lex_state = 24}, + [7543] = {.lex_state = 24}, + [7544] = {.lex_state = 24}, + [7545] = {.lex_state = 24}, + [7546] = {.lex_state = 24}, + [7547] = {.lex_state = 24}, + [7548] = {.lex_state = 24}, + [7549] = {.lex_state = 24}, + [7550] = {.lex_state = 24}, + [7551] = {.lex_state = 24}, + [7552] = {.lex_state = 24}, + [7553] = {.lex_state = 24}, + [7554] = {.lex_state = 24}, + [7555] = {.lex_state = 24}, + [7556] = {.lex_state = 24}, + [7557] = {.lex_state = 24}, + [7558] = {.lex_state = 24}, + [7559] = {.lex_state = 24}, + [7560] = {.lex_state = 24}, + [7561] = {.lex_state = 24}, + [7562] = {.lex_state = 24}, + [7563] = {.lex_state = 25}, + [7564] = {.lex_state = 25}, + [7565] = {.lex_state = 25}, + [7566] = {.lex_state = 25}, + [7567] = {.lex_state = 25}, + [7568] = {.lex_state = 25}, + [7569] = {.lex_state = 25}, + [7570] = {.lex_state = 25}, + [7571] = {.lex_state = 25}, + [7572] = {.lex_state = 25}, + [7573] = {.lex_state = 25}, + [7574] = {.lex_state = 25}, + [7575] = {.lex_state = 25}, + [7576] = {.lex_state = 25}, + [7577] = {.lex_state = 25}, + [7578] = {.lex_state = 25}, + [7579] = {.lex_state = 25}, + [7580] = {.lex_state = 25}, + [7581] = {.lex_state = 25}, + [7582] = {.lex_state = 25}, + [7583] = {.lex_state = 25}, + [7584] = {.lex_state = 25}, + [7585] = {.lex_state = 25}, + [7586] = {.lex_state = 25}, + [7587] = {.lex_state = 25}, + [7588] = {.lex_state = 25}, + [7589] = {.lex_state = 25}, + [7590] = {.lex_state = 25}, + [7591] = {.lex_state = 25}, + [7592] = {.lex_state = 25}, + [7593] = {.lex_state = 25}, + [7594] = {.lex_state = 25}, + [7595] = {.lex_state = 25}, + [7596] = {.lex_state = 25}, + [7597] = {.lex_state = 25}, + [7598] = {.lex_state = 4}, + [7599] = {.lex_state = 4}, + [7600] = {.lex_state = 4}, + [7601] = {.lex_state = 4}, + [7602] = {.lex_state = 4}, + [7603] = {.lex_state = 4}, + [7604] = {.lex_state = 4}, + [7605] = {.lex_state = 4}, + [7606] = {.lex_state = 4}, + [7607] = {.lex_state = 4}, + [7608] = {.lex_state = 4}, + [7609] = {.lex_state = 4}, + [7610] = {.lex_state = 4}, + [7611] = {.lex_state = 4}, + [7612] = {.lex_state = 4}, + [7613] = {.lex_state = 4}, + [7614] = {.lex_state = 4}, + [7615] = {.lex_state = 4}, + [7616] = {.lex_state = 4}, + [7617] = {.lex_state = 4}, + [7618] = {.lex_state = 4}, + [7619] = {.lex_state = 4}, + [7620] = {.lex_state = 4}, + [7621] = {.lex_state = 4}, + [7622] = {.lex_state = 4}, + [7623] = {.lex_state = 4}, + [7624] = {.lex_state = 4}, + [7625] = {.lex_state = 4}, + [7626] = {.lex_state = 4}, + [7627] = {.lex_state = 4}, + [7628] = {.lex_state = 4}, + [7629] = {.lex_state = 4}, + [7630] = {.lex_state = 4}, + [7631] = {.lex_state = 4}, + [7632] = {.lex_state = 4}, + [7633] = {.lex_state = 4}, + [7634] = {.lex_state = 4}, + [7635] = {.lex_state = 4}, + [7636] = {.lex_state = 4}, + [7637] = {.lex_state = 4}, + [7638] = {.lex_state = 4}, + [7639] = {.lex_state = 4}, + [7640] = {.lex_state = 4}, + [7641] = {.lex_state = 4}, + [7642] = {.lex_state = 4}, + [7643] = {.lex_state = 4}, + [7644] = {.lex_state = 4}, + [7645] = {.lex_state = 4}, + [7646] = {.lex_state = 4}, + [7647] = {.lex_state = 4}, + [7648] = {.lex_state = 4}, + [7649] = {.lex_state = 4}, + [7650] = {.lex_state = 4}, + [7651] = {.lex_state = 4}, + [7652] = {.lex_state = 4}, + [7653] = {.lex_state = 4}, + [7654] = {.lex_state = 4}, + [7655] = {.lex_state = 4}, + [7656] = {.lex_state = 4}, + [7657] = {.lex_state = 4}, + [7658] = {.lex_state = 4}, + [7659] = {.lex_state = 4}, + [7660] = {.lex_state = 4}, + [7661] = {.lex_state = 4}, + [7662] = {.lex_state = 4}, + [7663] = {.lex_state = 4}, + [7664] = {.lex_state = 4}, + [7665] = {.lex_state = 4}, + [7666] = {.lex_state = 4}, + [7667] = {.lex_state = 4}, + [7668] = {.lex_state = 4}, + [7669] = {.lex_state = 4}, + [7670] = {.lex_state = 4}, + [7671] = {.lex_state = 4}, + [7672] = {.lex_state = 4}, + [7673] = {.lex_state = 4}, + [7674] = {.lex_state = 4}, + [7675] = {.lex_state = 4}, + [7676] = {.lex_state = 4}, + [7677] = {.lex_state = 4}, + [7678] = {.lex_state = 4}, + [7679] = {.lex_state = 4}, + [7680] = {.lex_state = 4}, + [7681] = {.lex_state = 4}, + [7682] = {.lex_state = 4}, + [7683] = {.lex_state = 4}, + [7684] = {.lex_state = 4}, + [7685] = {.lex_state = 4}, + [7686] = {.lex_state = 4}, + [7687] = {.lex_state = 4}, + [7688] = {.lex_state = 4}, + [7689] = {.lex_state = 4}, + [7690] = {.lex_state = 4}, + [7691] = {.lex_state = 4}, + [7692] = {.lex_state = 4}, + [7693] = {.lex_state = 4}, + [7694] = {.lex_state = 4}, + [7695] = {.lex_state = 4}, + [7696] = {.lex_state = 4}, + [7697] = {.lex_state = 4}, + [7698] = {.lex_state = 4}, + [7699] = {.lex_state = 4}, + [7700] = {.lex_state = 4}, + [7701] = {.lex_state = 4}, + [7702] = {.lex_state = 4}, + [7703] = {.lex_state = 4}, + [7704] = {.lex_state = 4}, + [7705] = {.lex_state = 4}, + [7706] = {.lex_state = 4}, + [7707] = {.lex_state = 4}, + [7708] = {.lex_state = 4}, + [7709] = {.lex_state = 4}, + [7710] = {.lex_state = 4}, + [7711] = {.lex_state = 4}, + [7712] = {.lex_state = 4}, + [7713] = {.lex_state = 4}, + [7714] = {.lex_state = 4}, + [7715] = {.lex_state = 4}, + [7716] = {.lex_state = 4}, + [7717] = {.lex_state = 4}, + [7718] = {.lex_state = 4}, + [7719] = {.lex_state = 4}, + [7720] = {.lex_state = 4}, + [7721] = {.lex_state = 4}, + [7722] = {.lex_state = 4}, + [7723] = {.lex_state = 4}, + [7724] = {.lex_state = 4}, + [7725] = {.lex_state = 4}, + [7726] = {.lex_state = 4}, + [7727] = {.lex_state = 4}, + [7728] = {.lex_state = 4}, + [7729] = {.lex_state = 4}, + [7730] = {.lex_state = 4}, + [7731] = {.lex_state = 4}, + [7732] = {.lex_state = 4}, + [7733] = {.lex_state = 4}, + [7734] = {.lex_state = 4}, + [7735] = {.lex_state = 4}, + [7736] = {.lex_state = 4}, + [7737] = {.lex_state = 4}, + [7738] = {.lex_state = 4}, + [7739] = {.lex_state = 4}, + [7740] = {.lex_state = 4}, + [7741] = {.lex_state = 4}, + [7742] = {.lex_state = 4}, + [7743] = {.lex_state = 4}, + [7744] = {.lex_state = 4}, + [7745] = {.lex_state = 4}, + [7746] = {.lex_state = 4}, + [7747] = {.lex_state = 4}, + [7748] = {.lex_state = 4}, + [7749] = {.lex_state = 4}, + [7750] = {.lex_state = 4}, + [7751] = {.lex_state = 4}, + [7752] = {.lex_state = 4}, + [7753] = {.lex_state = 4}, + [7754] = {.lex_state = 4}, + [7755] = {.lex_state = 4}, + [7756] = {.lex_state = 4}, + [7757] = {.lex_state = 4}, + [7758] = {.lex_state = 4}, + [7759] = {.lex_state = 4}, + [7760] = {.lex_state = 4}, + [7761] = {.lex_state = 4}, + [7762] = {.lex_state = 4}, + [7763] = {.lex_state = 4}, + [7764] = {.lex_state = 4}, + [7765] = {.lex_state = 4}, + [7766] = {.lex_state = 4}, + [7767] = {.lex_state = 4}, + [7768] = {.lex_state = 4}, + [7769] = {.lex_state = 4}, + [7770] = {.lex_state = 4}, + [7771] = {.lex_state = 4}, + [7772] = {.lex_state = 4}, + [7773] = {.lex_state = 4}, + [7774] = {.lex_state = 4}, + [7775] = {.lex_state = 4}, + [7776] = {.lex_state = 4}, + [7777] = {.lex_state = 4}, + [7778] = {.lex_state = 4}, + [7779] = {.lex_state = 4}, + [7780] = {.lex_state = 4}, + [7781] = {.lex_state = 4}, + [7782] = {.lex_state = 4}, + [7783] = {.lex_state = 4}, + [7784] = {.lex_state = 4}, + [7785] = {.lex_state = 4}, + [7786] = {.lex_state = 4}, + [7787] = {.lex_state = 4}, + [7788] = {.lex_state = 4}, + [7789] = {.lex_state = 4}, + [7790] = {.lex_state = 4}, + [7791] = {.lex_state = 4}, + [7792] = {.lex_state = 4}, + [7793] = {.lex_state = 4}, + [7794] = {.lex_state = 4}, + [7795] = {.lex_state = 4}, + [7796] = {.lex_state = 4}, + [7797] = {.lex_state = 4}, + [7798] = {.lex_state = 4}, + [7799] = {.lex_state = 4}, + [7800] = {.lex_state = 4}, + [7801] = {.lex_state = 4}, + [7802] = {.lex_state = 4}, + [7803] = {.lex_state = 4}, + [7804] = {.lex_state = 4}, + [7805] = {.lex_state = 4}, + [7806] = {.lex_state = 4}, + [7807] = {.lex_state = 4}, + [7808] = {.lex_state = 4}, + [7809] = {.lex_state = 4}, + [7810] = {.lex_state = 4}, + [7811] = {.lex_state = 4}, + [7812] = {.lex_state = 4}, + [7813] = {.lex_state = 4}, + [7814] = {.lex_state = 4}, + [7815] = {.lex_state = 4}, + [7816] = {.lex_state = 4}, + [7817] = {.lex_state = 4}, + [7818] = {.lex_state = 4}, + [7819] = {.lex_state = 4}, + [7820] = {.lex_state = 4}, + [7821] = {.lex_state = 4}, + [7822] = {.lex_state = 4}, + [7823] = {.lex_state = 4}, + [7824] = {.lex_state = 4}, + [7825] = {.lex_state = 4}, + [7826] = {.lex_state = 4}, + [7827] = {.lex_state = 4}, + [7828] = {.lex_state = 4}, + [7829] = {.lex_state = 4}, + [7830] = {.lex_state = 4}, + [7831] = {.lex_state = 4}, + [7832] = {.lex_state = 4}, + [7833] = {.lex_state = 4}, + [7834] = {.lex_state = 4}, + [7835] = {.lex_state = 4}, + [7836] = {.lex_state = 4}, + [7837] = {.lex_state = 4}, + [7838] = {.lex_state = 4}, + [7839] = {.lex_state = 4}, + [7840] = {.lex_state = 4}, + [7841] = {.lex_state = 4}, + [7842] = {.lex_state = 4}, + [7843] = {.lex_state = 4}, + [7844] = {.lex_state = 4}, + [7845] = {.lex_state = 4}, + [7846] = {.lex_state = 4}, + [7847] = {.lex_state = 4}, + [7848] = {.lex_state = 4}, + [7849] = {.lex_state = 4}, + [7850] = {.lex_state = 4}, + [7851] = {.lex_state = 4}, + [7852] = {.lex_state = 4}, + [7853] = {.lex_state = 4}, + [7854] = {.lex_state = 4}, + [7855] = {.lex_state = 4}, + [7856] = {.lex_state = 4}, + [7857] = {.lex_state = 4}, + [7858] = {.lex_state = 4}, + [7859] = {.lex_state = 4}, + [7860] = {.lex_state = 4}, + [7861] = {.lex_state = 4}, + [7862] = {.lex_state = 4}, + [7863] = {.lex_state = 4}, + [7864] = {.lex_state = 4}, + [7865] = {.lex_state = 4}, + [7866] = {.lex_state = 4}, + [7867] = {.lex_state = 4}, + [7868] = {.lex_state = 4}, + [7869] = {.lex_state = 4}, + [7870] = {.lex_state = 4}, + [7871] = {.lex_state = 4}, + [7872] = {.lex_state = 4}, + [7873] = {.lex_state = 4}, + [7874] = {.lex_state = 4}, + [7875] = {.lex_state = 4}, + [7876] = {.lex_state = 4}, + [7877] = {.lex_state = 4}, + [7878] = {.lex_state = 4}, + [7879] = {.lex_state = 4}, + [7880] = {.lex_state = 4}, + [7881] = {.lex_state = 4}, + [7882] = {.lex_state = 4}, + [7883] = {.lex_state = 4}, + [7884] = {.lex_state = 4}, + [7885] = {.lex_state = 4}, + [7886] = {.lex_state = 4}, + [7887] = {.lex_state = 4}, + [7888] = {.lex_state = 4}, + [7889] = {.lex_state = 4}, + [7890] = {.lex_state = 4}, + [7891] = {.lex_state = 4}, + [7892] = {.lex_state = 4}, + [7893] = {.lex_state = 4}, + [7894] = {.lex_state = 4}, + [7895] = {.lex_state = 4}, + [7896] = {.lex_state = 4}, + [7897] = {.lex_state = 4}, + [7898] = {.lex_state = 4}, + [7899] = {.lex_state = 4}, + [7900] = {.lex_state = 4}, + [7901] = {.lex_state = 4}, + [7902] = {.lex_state = 4}, + [7903] = {.lex_state = 4}, + [7904] = {.lex_state = 4}, + [7905] = {.lex_state = 4}, + [7906] = {.lex_state = 4}, + [7907] = {.lex_state = 4}, + [7908] = {.lex_state = 4}, + [7909] = {.lex_state = 4}, + [7910] = {.lex_state = 4}, + [7911] = {.lex_state = 4}, + [7912] = {.lex_state = 4}, + [7913] = {.lex_state = 4}, + [7914] = {.lex_state = 4}, + [7915] = {.lex_state = 4}, + [7916] = {.lex_state = 4}, + [7917] = {.lex_state = 4}, + [7918] = {.lex_state = 4}, + [7919] = {.lex_state = 4}, + [7920] = {.lex_state = 4}, + [7921] = {.lex_state = 4}, + [7922] = {.lex_state = 4}, + [7923] = {.lex_state = 4}, + [7924] = {.lex_state = 4}, + [7925] = {.lex_state = 4}, + [7926] = {.lex_state = 4}, + [7927] = {.lex_state = 4}, + [7928] = {.lex_state = 4}, + [7929] = {.lex_state = 4}, + [7930] = {.lex_state = 4}, + [7931] = {.lex_state = 4}, + [7932] = {.lex_state = 4}, + [7933] = {.lex_state = 4}, + [7934] = {.lex_state = 4}, + [7935] = {.lex_state = 4}, + [7936] = {.lex_state = 4}, + [7937] = {.lex_state = 4}, + [7938] = {.lex_state = 4}, + [7939] = {.lex_state = 4}, + [7940] = {.lex_state = 4}, + [7941] = {.lex_state = 4}, + [7942] = {.lex_state = 4}, + [7943] = {.lex_state = 4}, + [7944] = {.lex_state = 4}, + [7945] = {.lex_state = 4}, + [7946] = {.lex_state = 4}, + [7947] = {.lex_state = 4}, + [7948] = {.lex_state = 4}, + [7949] = {.lex_state = 4}, + [7950] = {.lex_state = 4}, + [7951] = {.lex_state = 4}, + [7952] = {.lex_state = 4}, + [7953] = {.lex_state = 4}, + [7954] = {.lex_state = 4}, + [7955] = {.lex_state = 4}, + [7956] = {.lex_state = 4}, + [7957] = {.lex_state = 4}, + [7958] = {.lex_state = 4}, + [7959] = {.lex_state = 4}, + [7960] = {.lex_state = 4}, + [7961] = {.lex_state = 4}, + [7962] = {.lex_state = 4}, + [7963] = {.lex_state = 4}, + [7964] = {.lex_state = 4}, + [7965] = {.lex_state = 4}, + [7966] = {.lex_state = 4}, + [7967] = {.lex_state = 4}, + [7968] = {.lex_state = 4}, + [7969] = {.lex_state = 4}, + [7970] = {.lex_state = 4}, + [7971] = {.lex_state = 4}, + [7972] = {.lex_state = 4}, + [7973] = {.lex_state = 4}, + [7974] = {.lex_state = 4}, + [7975] = {.lex_state = 4}, + [7976] = {.lex_state = 4}, + [7977] = {.lex_state = 4}, + [7978] = {.lex_state = 4}, + [7979] = {.lex_state = 4}, + [7980] = {.lex_state = 4}, + [7981] = {.lex_state = 4}, + [7982] = {.lex_state = 4}, + [7983] = {.lex_state = 4}, + [7984] = {.lex_state = 4}, + [7985] = {.lex_state = 4}, + [7986] = {.lex_state = 4}, + [7987] = {.lex_state = 4}, + [7988] = {.lex_state = 4}, + [7989] = {.lex_state = 4}, + [7990] = {.lex_state = 4}, + [7991] = {.lex_state = 4}, + [7992] = {.lex_state = 4}, + [7993] = {.lex_state = 4}, + [7994] = {.lex_state = 4}, + [7995] = {.lex_state = 4}, + [7996] = {.lex_state = 4}, + [7997] = {.lex_state = 4}, + [7998] = {.lex_state = 4}, + [7999] = {.lex_state = 4}, + [8000] = {.lex_state = 4}, + [8001] = {.lex_state = 4}, + [8002] = {.lex_state = 4}, + [8003] = {.lex_state = 4}, + [8004] = {.lex_state = 4}, + [8005] = {.lex_state = 4}, + [8006] = {.lex_state = 4}, + [8007] = {.lex_state = 4}, + [8008] = {.lex_state = 4}, + [8009] = {.lex_state = 4}, + [8010] = {.lex_state = 4}, + [8011] = {.lex_state = 4}, + [8012] = {.lex_state = 4}, + [8013] = {.lex_state = 4}, + [8014] = {.lex_state = 4}, + [8015] = {.lex_state = 4}, + [8016] = {.lex_state = 4}, + [8017] = {.lex_state = 4}, + [8018] = {.lex_state = 4}, + [8019] = {.lex_state = 4}, + [8020] = {.lex_state = 4}, + [8021] = {.lex_state = 4}, + [8022] = {.lex_state = 4}, + [8023] = {.lex_state = 4}, + [8024] = {.lex_state = 4}, + [8025] = {.lex_state = 4}, + [8026] = {.lex_state = 4}, + [8027] = {.lex_state = 4}, + [8028] = {.lex_state = 4}, + [8029] = {.lex_state = 4}, + [8030] = {.lex_state = 4}, + [8031] = {.lex_state = 4}, + [8032] = {.lex_state = 4}, + [8033] = {.lex_state = 4}, + [8034] = {.lex_state = 4}, + [8035] = {.lex_state = 4}, + [8036] = {.lex_state = 4}, + [8037] = {.lex_state = 4}, + [8038] = {.lex_state = 4}, + [8039] = {.lex_state = 4}, + [8040] = {.lex_state = 4}, + [8041] = {.lex_state = 4}, + [8042] = {.lex_state = 4}, + [8043] = {.lex_state = 4}, + [8044] = {.lex_state = 4}, + [8045] = {.lex_state = 4}, + [8046] = {.lex_state = 4}, + [8047] = {.lex_state = 4}, + [8048] = {.lex_state = 4}, + [8049] = {.lex_state = 4}, + [8050] = {.lex_state = 4}, + [8051] = {.lex_state = 4}, + [8052] = {.lex_state = 4}, + [8053] = {.lex_state = 4}, + [8054] = {.lex_state = 4}, + [8055] = {.lex_state = 4}, + [8056] = {.lex_state = 4}, + [8057] = {.lex_state = 4}, + [8058] = {.lex_state = 4}, + [8059] = {.lex_state = 4}, + [8060] = {.lex_state = 4}, + [8061] = {.lex_state = 4}, + [8062] = {.lex_state = 4}, + [8063] = {.lex_state = 4}, + [8064] = {.lex_state = 4}, + [8065] = {.lex_state = 4}, + [8066] = {.lex_state = 4}, + [8067] = {.lex_state = 4}, + [8068] = {.lex_state = 4}, + [8069] = {.lex_state = 4}, + [8070] = {.lex_state = 4}, + [8071] = {.lex_state = 4}, + [8072] = {.lex_state = 4}, + [8073] = {.lex_state = 4}, + [8074] = {.lex_state = 4}, + [8075] = {.lex_state = 4}, + [8076] = {.lex_state = 4}, + [8077] = {.lex_state = 4}, + [8078] = {.lex_state = 4}, + [8079] = {.lex_state = 4}, + [8080] = {.lex_state = 4}, + [8081] = {.lex_state = 4}, + [8082] = {.lex_state = 4}, + [8083] = {.lex_state = 4}, + [8084] = {.lex_state = 4}, + [8085] = {.lex_state = 4}, + [8086] = {.lex_state = 4}, + [8087] = {.lex_state = 4}, + [8088] = {.lex_state = 4}, + [8089] = {.lex_state = 4}, + [8090] = {.lex_state = 4}, + [8091] = {.lex_state = 4}, + [8092] = {.lex_state = 4}, + [8093] = {.lex_state = 4}, + [8094] = {.lex_state = 4}, + [8095] = {.lex_state = 4}, + [8096] = {.lex_state = 4}, + [8097] = {.lex_state = 4}, + [8098] = {.lex_state = 4}, + [8099] = {.lex_state = 4}, + [8100] = {.lex_state = 4}, + [8101] = {.lex_state = 4}, + [8102] = {.lex_state = 4}, + [8103] = {.lex_state = 4}, + [8104] = {.lex_state = 4}, + [8105] = {.lex_state = 4}, + [8106] = {.lex_state = 4}, + [8107] = {.lex_state = 4}, + [8108] = {.lex_state = 4}, + [8109] = {.lex_state = 4}, + [8110] = {.lex_state = 4}, + [8111] = {.lex_state = 4}, + [8112] = {.lex_state = 4}, + [8113] = {.lex_state = 4}, + [8114] = {.lex_state = 4}, + [8115] = {.lex_state = 4}, + [8116] = {.lex_state = 4}, + [8117] = {.lex_state = 4}, + [8118] = {.lex_state = 4}, + [8119] = {.lex_state = 4}, + [8120] = {.lex_state = 4}, + [8121] = {.lex_state = 4}, + [8122] = {.lex_state = 4}, + [8123] = {.lex_state = 4}, + [8124] = {.lex_state = 4}, + [8125] = {.lex_state = 4}, + [8126] = {.lex_state = 4}, + [8127] = {.lex_state = 4}, + [8128] = {.lex_state = 4}, + [8129] = {.lex_state = 4}, + [8130] = {.lex_state = 4}, + [8131] = {.lex_state = 4}, + [8132] = {.lex_state = 4}, + [8133] = {.lex_state = 4}, + [8134] = {.lex_state = 4}, + [8135] = {.lex_state = 4}, + [8136] = {.lex_state = 4}, + [8137] = {.lex_state = 4}, + [8138] = {.lex_state = 4}, + [8139] = {.lex_state = 4}, + [8140] = {.lex_state = 4}, + [8141] = {.lex_state = 4}, + [8142] = {.lex_state = 4}, + [8143] = {.lex_state = 4}, + [8144] = {.lex_state = 4}, + [8145] = {.lex_state = 4}, + [8146] = {.lex_state = 4}, + [8147] = {.lex_state = 4}, + [8148] = {.lex_state = 4}, + [8149] = {.lex_state = 4}, + [8150] = {.lex_state = 4}, + [8151] = {.lex_state = 4}, + [8152] = {.lex_state = 4}, + [8153] = {.lex_state = 4}, + [8154] = {.lex_state = 4}, + [8155] = {.lex_state = 4}, + [8156] = {.lex_state = 4}, + [8157] = {.lex_state = 4}, + [8158] = {.lex_state = 4}, + [8159] = {.lex_state = 4}, + [8160] = {.lex_state = 4}, + [8161] = {.lex_state = 4}, + [8162] = {.lex_state = 4}, + [8163] = {.lex_state = 4}, + [8164] = {.lex_state = 4}, + [8165] = {.lex_state = 4}, + [8166] = {.lex_state = 4}, + [8167] = {.lex_state = 4}, + [8168] = {.lex_state = 4}, + [8169] = {.lex_state = 4}, + [8170] = {.lex_state = 4}, + [8171] = {.lex_state = 4}, + [8172] = {.lex_state = 4}, + [8173] = {.lex_state = 4}, + [8174] = {.lex_state = 4}, + [8175] = {.lex_state = 4}, + [8176] = {.lex_state = 4}, + [8177] = {.lex_state = 4}, + [8178] = {.lex_state = 4}, + [8179] = {.lex_state = 4}, + [8180] = {.lex_state = 4}, + [8181] = {.lex_state = 4}, + [8182] = {.lex_state = 4}, + [8183] = {.lex_state = 4}, + [8184] = {.lex_state = 4}, + [8185] = {.lex_state = 4}, + [8186] = {.lex_state = 4}, + [8187] = {.lex_state = 4}, + [8188] = {.lex_state = 4}, + [8189] = {.lex_state = 4}, + [8190] = {.lex_state = 4}, + [8191] = {.lex_state = 4}, + [8192] = {.lex_state = 4}, + [8193] = {.lex_state = 4}, + [8194] = {.lex_state = 4}, + [8195] = {.lex_state = 4}, + [8196] = {.lex_state = 4}, + [8197] = {.lex_state = 4}, + [8198] = {.lex_state = 4}, + [8199] = {.lex_state = 4}, + [8200] = {.lex_state = 4}, + [8201] = {.lex_state = 4}, + [8202] = {.lex_state = 4}, + [8203] = {.lex_state = 4}, + [8204] = {.lex_state = 4}, + [8205] = {.lex_state = 4}, + [8206] = {.lex_state = 4}, + [8207] = {.lex_state = 4}, + [8208] = {.lex_state = 4}, + [8209] = {.lex_state = 4}, + [8210] = {.lex_state = 4}, + [8211] = {.lex_state = 4}, + [8212] = {.lex_state = 4}, + [8213] = {.lex_state = 4}, + [8214] = {.lex_state = 4}, + [8215] = {.lex_state = 4}, + [8216] = {.lex_state = 4}, + [8217] = {.lex_state = 4}, + [8218] = {.lex_state = 4}, + [8219] = {.lex_state = 4}, + [8220] = {.lex_state = 4}, + [8221] = {.lex_state = 4}, + [8222] = {.lex_state = 4}, + [8223] = {.lex_state = 4}, + [8224] = {.lex_state = 4}, + [8225] = {.lex_state = 4}, + [8226] = {.lex_state = 4}, + [8227] = {.lex_state = 4}, + [8228] = {.lex_state = 4}, + [8229] = {.lex_state = 4}, + [8230] = {.lex_state = 4}, + [8231] = {.lex_state = 4}, + [8232] = {.lex_state = 4}, + [8233] = {.lex_state = 4}, + [8234] = {.lex_state = 4}, + [8235] = {.lex_state = 4}, + [8236] = {.lex_state = 4}, + [8237] = {.lex_state = 4}, + [8238] = {.lex_state = 4}, + [8239] = {.lex_state = 4}, + [8240] = {.lex_state = 4}, + [8241] = {.lex_state = 4}, + [8242] = {.lex_state = 4}, + [8243] = {.lex_state = 4}, + [8244] = {.lex_state = 4}, + [8245] = {.lex_state = 4}, + [8246] = {.lex_state = 4}, + [8247] = {.lex_state = 4}, + [8248] = {.lex_state = 4}, + [8249] = {.lex_state = 4}, + [8250] = {.lex_state = 4}, + [8251] = {.lex_state = 4}, + [8252] = {.lex_state = 4}, + [8253] = {.lex_state = 4}, + [8254] = {.lex_state = 4}, + [8255] = {.lex_state = 4}, + [8256] = {.lex_state = 4}, + [8257] = {.lex_state = 4}, + [8258] = {.lex_state = 4}, + [8259] = {.lex_state = 4}, + [8260] = {.lex_state = 4}, + [8261] = {.lex_state = 4}, + [8262] = {.lex_state = 4}, + [8263] = {.lex_state = 4}, + [8264] = {.lex_state = 4}, + [8265] = {.lex_state = 4}, + [8266] = {.lex_state = 4}, + [8267] = {.lex_state = 4}, + [8268] = {.lex_state = 4}, + [8269] = {.lex_state = 4}, + [8270] = {.lex_state = 4}, + [8271] = {.lex_state = 4}, + [8272] = {.lex_state = 4}, + [8273] = {.lex_state = 4}, + [8274] = {.lex_state = 4}, + [8275] = {.lex_state = 4}, + [8276] = {.lex_state = 4}, + [8277] = {.lex_state = 4}, + [8278] = {.lex_state = 4}, + [8279] = {.lex_state = 4}, + [8280] = {.lex_state = 4}, + [8281] = {.lex_state = 4}, + [8282] = {.lex_state = 4}, + [8283] = {.lex_state = 4}, + [8284] = {.lex_state = 4}, + [8285] = {.lex_state = 4}, + [8286] = {.lex_state = 4}, + [8287] = {.lex_state = 4}, + [8288] = {.lex_state = 4}, + [8289] = {.lex_state = 22}, + [8290] = {.lex_state = 22}, + [8291] = {.lex_state = 4}, + [8292] = {.lex_state = 4}, + [8293] = {.lex_state = 22}, + [8294] = {.lex_state = 22}, + [8295] = {.lex_state = 4}, + [8296] = {.lex_state = 22}, + [8297] = {.lex_state = 22}, + [8298] = {.lex_state = 22}, + [8299] = {.lex_state = 22}, + [8300] = {.lex_state = 22}, + [8301] = {.lex_state = 22}, + [8302] = {.lex_state = 22}, + [8303] = {.lex_state = 22}, + [8304] = {.lex_state = 22}, + [8305] = {.lex_state = 22}, + [8306] = {.lex_state = 22}, + [8307] = {.lex_state = 22}, + [8308] = {.lex_state = 22}, + [8309] = {.lex_state = 22}, + [8310] = {.lex_state = 22}, + [8311] = {.lex_state = 22}, + [8312] = {.lex_state = 22}, + [8313] = {.lex_state = 22}, + [8314] = {.lex_state = 22}, + [8315] = {.lex_state = 22}, + [8316] = {.lex_state = 22}, + [8317] = {.lex_state = 22}, + [8318] = {.lex_state = 22}, + [8319] = {.lex_state = 22}, + [8320] = {.lex_state = 22}, + [8321] = {.lex_state = 22}, + [8322] = {.lex_state = 22}, + [8323] = {.lex_state = 22}, + [8324] = {.lex_state = 22}, + [8325] = {.lex_state = 22}, + [8326] = {.lex_state = 22}, + [8327] = {.lex_state = 22}, + [8328] = {.lex_state = 22}, + [8329] = {.lex_state = 22}, + [8330] = {.lex_state = 22}, + [8331] = {.lex_state = 22}, + [8332] = {.lex_state = 22}, + [8333] = {.lex_state = 22}, + [8334] = {.lex_state = 22}, + [8335] = {.lex_state = 22}, + [8336] = {.lex_state = 22}, + [8337] = {.lex_state = 22}, + [8338] = {.lex_state = 22}, + [8339] = {.lex_state = 22}, + [8340] = {.lex_state = 22}, + [8341] = {.lex_state = 22}, + [8342] = {.lex_state = 22}, + [8343] = {.lex_state = 22}, + [8344] = {.lex_state = 22}, + [8345] = {.lex_state = 22}, + [8346] = {.lex_state = 22}, + [8347] = {.lex_state = 22}, + [8348] = {.lex_state = 22}, + [8349] = {.lex_state = 22}, + [8350] = {.lex_state = 22}, + [8351] = {.lex_state = 22}, + [8352] = {.lex_state = 22}, + [8353] = {.lex_state = 22}, + [8354] = {.lex_state = 22}, + [8355] = {.lex_state = 4}, + [8356] = {.lex_state = 22}, + [8357] = {.lex_state = 22}, + [8358] = {.lex_state = 22}, + [8359] = {.lex_state = 22}, + [8360] = {.lex_state = 22}, + [8361] = {.lex_state = 22}, + [8362] = {.lex_state = 22}, + [8363] = {.lex_state = 22}, + [8364] = {.lex_state = 22}, + [8365] = {.lex_state = 4}, + [8366] = {.lex_state = 22}, + [8367] = {.lex_state = 22}, + [8368] = {.lex_state = 22}, + [8369] = {.lex_state = 22}, + [8370] = {.lex_state = 22}, + [8371] = {.lex_state = 22}, + [8372] = {.lex_state = 22}, + [8373] = {.lex_state = 22}, + [8374] = {.lex_state = 22}, + [8375] = {.lex_state = 22}, + [8376] = {.lex_state = 22}, + [8377] = {.lex_state = 22}, + [8378] = {.lex_state = 22}, + [8379] = {.lex_state = 22}, + [8380] = {.lex_state = 22}, + [8381] = {.lex_state = 22}, + [8382] = {.lex_state = 22}, + [8383] = {.lex_state = 22}, + [8384] = {.lex_state = 22}, + [8385] = {.lex_state = 22}, + [8386] = {.lex_state = 22}, + [8387] = {.lex_state = 22}, + [8388] = {.lex_state = 22}, + [8389] = {.lex_state = 22}, + [8390] = {.lex_state = 22}, + [8391] = {.lex_state = 22}, + [8392] = {.lex_state = 22}, + [8393] = {.lex_state = 22}, + [8394] = {.lex_state = 22}, + [8395] = {.lex_state = 22}, + [8396] = {.lex_state = 22}, + [8397] = {.lex_state = 22}, + [8398] = {.lex_state = 22}, + [8399] = {.lex_state = 22}, + [8400] = {.lex_state = 22}, + [8401] = {.lex_state = 22}, + [8402] = {.lex_state = 22}, + [8403] = {.lex_state = 22}, + [8404] = {.lex_state = 22}, + [8405] = {.lex_state = 22}, + [8406] = {.lex_state = 22}, + [8407] = {.lex_state = 22}, + [8408] = {.lex_state = 22}, + [8409] = {.lex_state = 22}, + [8410] = {.lex_state = 22}, + [8411] = {.lex_state = 22}, + [8412] = {.lex_state = 22}, + [8413] = {.lex_state = 22}, + [8414] = {.lex_state = 22}, + [8415] = {.lex_state = 22}, + [8416] = {.lex_state = 22}, + [8417] = {.lex_state = 22}, + [8418] = {.lex_state = 22}, + [8419] = {.lex_state = 22}, + [8420] = {.lex_state = 22}, + [8421] = {.lex_state = 22}, + [8422] = {.lex_state = 22}, + [8423] = {.lex_state = 22}, + [8424] = {.lex_state = 22}, + [8425] = {.lex_state = 22}, + [8426] = {.lex_state = 22}, + [8427] = {.lex_state = 22}, + [8428] = {.lex_state = 22}, + [8429] = {.lex_state = 22}, + [8430] = {.lex_state = 22}, + [8431] = {.lex_state = 22}, + [8432] = {.lex_state = 22}, + [8433] = {.lex_state = 22}, + [8434] = {.lex_state = 22}, + [8435] = {.lex_state = 22}, + [8436] = {.lex_state = 22}, + [8437] = {.lex_state = 22}, + [8438] = {.lex_state = 22}, + [8439] = {.lex_state = 22}, + [8440] = {.lex_state = 22}, + [8441] = {.lex_state = 22}, + [8442] = {.lex_state = 22}, + [8443] = {.lex_state = 22}, + [8444] = {.lex_state = 22}, + [8445] = {.lex_state = 22}, + [8446] = {.lex_state = 22}, + [8447] = {.lex_state = 22}, + [8448] = {.lex_state = 22}, + [8449] = {.lex_state = 22}, + [8450] = {.lex_state = 22}, + [8451] = {.lex_state = 22}, + [8452] = {.lex_state = 22}, + [8453] = {.lex_state = 22}, + [8454] = {.lex_state = 22}, + [8455] = {.lex_state = 22}, + [8456] = {.lex_state = 22}, + [8457] = {.lex_state = 22}, + [8458] = {.lex_state = 22}, + [8459] = {.lex_state = 22}, + [8460] = {.lex_state = 22}, + [8461] = {.lex_state = 22}, + [8462] = {.lex_state = 22}, + [8463] = {.lex_state = 22}, + [8464] = {.lex_state = 22}, + [8465] = {.lex_state = 22}, + [8466] = {.lex_state = 22}, + [8467] = {.lex_state = 22}, + [8468] = {.lex_state = 22}, + [8469] = {.lex_state = 22}, + [8470] = {.lex_state = 22}, + [8471] = {.lex_state = 22}, + [8472] = {.lex_state = 22}, + [8473] = {.lex_state = 22}, + [8474] = {.lex_state = 22}, + [8475] = {.lex_state = 22}, + [8476] = {.lex_state = 22}, + [8477] = {.lex_state = 22}, + [8478] = {.lex_state = 22}, + [8479] = {.lex_state = 22}, + [8480] = {.lex_state = 22}, + [8481] = {.lex_state = 22}, + [8482] = {.lex_state = 22}, + [8483] = {.lex_state = 22}, + [8484] = {.lex_state = 22}, + [8485] = {.lex_state = 22}, + [8486] = {.lex_state = 22}, + [8487] = {.lex_state = 22}, + [8488] = {.lex_state = 22}, + [8489] = {.lex_state = 22}, + [8490] = {.lex_state = 22}, + [8491] = {.lex_state = 22}, + [8492] = {.lex_state = 22}, + [8493] = {.lex_state = 22}, + [8494] = {.lex_state = 4}, + [8495] = {.lex_state = 22}, + [8496] = {.lex_state = 7}, + [8497] = {.lex_state = 22}, + [8498] = {.lex_state = 22}, + [8499] = {.lex_state = 22}, + [8500] = {.lex_state = 22}, + [8501] = {.lex_state = 22}, + [8502] = {.lex_state = 22}, + [8503] = {.lex_state = 22}, + [8504] = {.lex_state = 22}, + [8505] = {.lex_state = 22}, + [8506] = {.lex_state = 22}, + [8507] = {.lex_state = 22}, + [8508] = {.lex_state = 22}, + [8509] = {.lex_state = 22}, + [8510] = {.lex_state = 22}, + [8511] = {.lex_state = 22}, + [8512] = {.lex_state = 22}, + [8513] = {.lex_state = 22}, + [8514] = {.lex_state = 22}, + [8515] = {.lex_state = 22}, + [8516] = {.lex_state = 22}, + [8517] = {.lex_state = 22}, + [8518] = {.lex_state = 22}, + [8519] = {.lex_state = 22}, + [8520] = {.lex_state = 22}, + [8521] = {.lex_state = 22}, + [8522] = {.lex_state = 22}, + [8523] = {.lex_state = 22}, + [8524] = {.lex_state = 22}, + [8525] = {.lex_state = 22}, + [8526] = {.lex_state = 22}, + [8527] = {.lex_state = 22}, + [8528] = {.lex_state = 22}, + [8529] = {.lex_state = 22}, + [8530] = {.lex_state = 22}, + [8531] = {.lex_state = 22}, + [8532] = {.lex_state = 22}, + [8533] = {.lex_state = 22}, + [8534] = {.lex_state = 22}, + [8535] = {.lex_state = 22}, + [8536] = {.lex_state = 22}, + [8537] = {.lex_state = 22}, + [8538] = {.lex_state = 22}, + [8539] = {.lex_state = 22}, + [8540] = {.lex_state = 22}, + [8541] = {.lex_state = 22}, + [8542] = {.lex_state = 22}, + [8543] = {.lex_state = 22}, + [8544] = {.lex_state = 22}, + [8545] = {.lex_state = 22}, + [8546] = {.lex_state = 22}, + [8547] = {.lex_state = 22}, + [8548] = {.lex_state = 22}, + [8549] = {.lex_state = 22}, + [8550] = {.lex_state = 22}, + [8551] = {.lex_state = 22}, + [8552] = {.lex_state = 22}, + [8553] = {.lex_state = 22}, + [8554] = {.lex_state = 22}, + [8555] = {.lex_state = 22}, + [8556] = {.lex_state = 22}, + [8557] = {.lex_state = 22}, + [8558] = {.lex_state = 22}, + [8559] = {.lex_state = 22}, + [8560] = {.lex_state = 22}, + [8561] = {.lex_state = 22}, + [8562] = {.lex_state = 22}, + [8563] = {.lex_state = 22}, + [8564] = {.lex_state = 22}, + [8565] = {.lex_state = 22}, + [8566] = {.lex_state = 22}, + [8567] = {.lex_state = 22}, + [8568] = {.lex_state = 22}, + [8569] = {.lex_state = 22}, + [8570] = {.lex_state = 22}, + [8571] = {.lex_state = 22}, + [8572] = {.lex_state = 22}, + [8573] = {.lex_state = 22}, + [8574] = {.lex_state = 22}, + [8575] = {.lex_state = 22}, + [8576] = {.lex_state = 22}, + [8577] = {.lex_state = 22}, + [8578] = {.lex_state = 22}, + [8579] = {.lex_state = 22}, + [8580] = {.lex_state = 22}, + [8581] = {.lex_state = 22}, + [8582] = {.lex_state = 22}, + [8583] = {.lex_state = 22}, + [8584] = {.lex_state = 22}, + [8585] = {.lex_state = 22}, + [8586] = {.lex_state = 22}, + [8587] = {.lex_state = 22}, + [8588] = {.lex_state = 22}, + [8589] = {.lex_state = 22}, + [8590] = {.lex_state = 22}, + [8591] = {.lex_state = 22}, + [8592] = {.lex_state = 22}, + [8593] = {.lex_state = 22}, + [8594] = {.lex_state = 22}, + [8595] = {.lex_state = 22}, + [8596] = {.lex_state = 22}, + [8597] = {.lex_state = 22}, + [8598] = {.lex_state = 22}, + [8599] = {.lex_state = 22}, + [8600] = {.lex_state = 22}, + [8601] = {.lex_state = 22}, + [8602] = {.lex_state = 22}, + [8603] = {.lex_state = 22}, + [8604] = {.lex_state = 22}, + [8605] = {.lex_state = 22}, + [8606] = {.lex_state = 22}, + [8607] = {.lex_state = 22}, + [8608] = {.lex_state = 22}, + [8609] = {.lex_state = 22}, + [8610] = {.lex_state = 22}, + [8611] = {.lex_state = 22}, + [8612] = {.lex_state = 22}, + [8613] = {.lex_state = 22}, + [8614] = {.lex_state = 22}, + [8615] = {.lex_state = 22}, + [8616] = {.lex_state = 22}, + [8617] = {.lex_state = 22}, + [8618] = {.lex_state = 22}, + [8619] = {.lex_state = 22}, + [8620] = {.lex_state = 22}, + [8621] = {.lex_state = 22}, + [8622] = {.lex_state = 22}, + [8623] = {.lex_state = 22}, + [8624] = {.lex_state = 22}, + [8625] = {.lex_state = 22}, + [8626] = {.lex_state = 22}, + [8627] = {.lex_state = 22}, + [8628] = {.lex_state = 22}, + [8629] = {.lex_state = 22}, + [8630] = {.lex_state = 22}, + [8631] = {.lex_state = 22}, + [8632] = {.lex_state = 22}, + [8633] = {.lex_state = 22}, + [8634] = {.lex_state = 22}, + [8635] = {.lex_state = 22}, + [8636] = {.lex_state = 22}, + [8637] = {.lex_state = 22}, + [8638] = {.lex_state = 22}, + [8639] = {.lex_state = 22}, + [8640] = {.lex_state = 22}, + [8641] = {.lex_state = 22}, + [8642] = {.lex_state = 22}, + [8643] = {.lex_state = 22}, + [8644] = {.lex_state = 22}, + [8645] = {.lex_state = 22}, + [8646] = {.lex_state = 22}, + [8647] = {.lex_state = 22}, + [8648] = {.lex_state = 22}, + [8649] = {.lex_state = 22}, + [8650] = {.lex_state = 22}, + [8651] = {.lex_state = 22}, + [8652] = {.lex_state = 22}, + [8653] = {.lex_state = 22}, + [8654] = {.lex_state = 22}, + [8655] = {.lex_state = 22}, + [8656] = {.lex_state = 22}, + [8657] = {.lex_state = 22}, + [8658] = {.lex_state = 22}, + [8659] = {.lex_state = 22}, + [8660] = {.lex_state = 22}, + [8661] = {.lex_state = 22}, + [8662] = {.lex_state = 22}, + [8663] = {.lex_state = 22}, + [8664] = {.lex_state = 22}, + [8665] = {.lex_state = 22}, + [8666] = {.lex_state = 22}, + [8667] = {.lex_state = 22}, + [8668] = {.lex_state = 22}, + [8669] = {.lex_state = 22}, + [8670] = {.lex_state = 22}, + [8671] = {.lex_state = 22}, + [8672] = {.lex_state = 22}, + [8673] = {.lex_state = 22}, + [8674] = {.lex_state = 22}, + [8675] = {.lex_state = 22}, + [8676] = {.lex_state = 22}, + [8677] = {.lex_state = 22}, + [8678] = {.lex_state = 22}, + [8679] = {.lex_state = 22}, + [8680] = {.lex_state = 22}, + [8681] = {.lex_state = 22}, + [8682] = {.lex_state = 22}, + [8683] = {.lex_state = 22}, + [8684] = {.lex_state = 22}, + [8685] = {.lex_state = 22}, + [8686] = {.lex_state = 22}, + [8687] = {.lex_state = 22}, + [8688] = {.lex_state = 22}, + [8689] = {.lex_state = 22}, + [8690] = {.lex_state = 22}, + [8691] = {.lex_state = 22}, + [8692] = {.lex_state = 22}, + [8693] = {.lex_state = 22}, + [8694] = {.lex_state = 22}, + [8695] = {.lex_state = 22}, + [8696] = {.lex_state = 22}, + [8697] = {.lex_state = 22}, + [8698] = {.lex_state = 22}, + [8699] = {.lex_state = 22}, + [8700] = {.lex_state = 22}, + [8701] = {.lex_state = 22}, + [8702] = {.lex_state = 22}, + [8703] = {.lex_state = 22}, + [8704] = {.lex_state = 22}, + [8705] = {.lex_state = 22}, + [8706] = {.lex_state = 22}, + [8707] = {.lex_state = 22}, + [8708] = {.lex_state = 22}, + [8709] = {.lex_state = 22}, + [8710] = {.lex_state = 22}, + [8711] = {.lex_state = 22}, + [8712] = {.lex_state = 22}, + [8713] = {.lex_state = 22}, + [8714] = {.lex_state = 22}, + [8715] = {.lex_state = 22}, + [8716] = {.lex_state = 22}, + [8717] = {.lex_state = 22}, + [8718] = {.lex_state = 22}, + [8719] = {.lex_state = 22}, + [8720] = {.lex_state = 22}, + [8721] = {.lex_state = 22}, + [8722] = {.lex_state = 22}, + [8723] = {.lex_state = 22}, + [8724] = {.lex_state = 22}, + [8725] = {.lex_state = 22}, + [8726] = {.lex_state = 22}, + [8727] = {.lex_state = 22}, + [8728] = {.lex_state = 22}, + [8729] = {.lex_state = 22}, + [8730] = {.lex_state = 22}, + [8731] = {.lex_state = 22}, + [8732] = {.lex_state = 22}, + [8733] = {.lex_state = 22}, + [8734] = {.lex_state = 22}, + [8735] = {.lex_state = 22}, + [8736] = {.lex_state = 22}, + [8737] = {.lex_state = 22}, + [8738] = {.lex_state = 22}, + [8739] = {.lex_state = 22}, + [8740] = {.lex_state = 22}, + [8741] = {.lex_state = 22}, + [8742] = {.lex_state = 22}, + [8743] = {.lex_state = 22}, + [8744] = {.lex_state = 22}, + [8745] = {.lex_state = 22}, + [8746] = {.lex_state = 22}, + [8747] = {.lex_state = 22}, + [8748] = {.lex_state = 22}, + [8749] = {.lex_state = 22}, + [8750] = {.lex_state = 22}, + [8751] = {.lex_state = 22}, + [8752] = {.lex_state = 22}, + [8753] = {.lex_state = 22}, + [8754] = {.lex_state = 22}, + [8755] = {.lex_state = 22}, + [8756] = {.lex_state = 22}, + [8757] = {.lex_state = 22}, + [8758] = {.lex_state = 22}, + [8759] = {.lex_state = 22}, + [8760] = {.lex_state = 22}, + [8761] = {.lex_state = 22}, + [8762] = {.lex_state = 22}, + [8763] = {.lex_state = 22}, + [8764] = {.lex_state = 22}, + [8765] = {.lex_state = 22}, + [8766] = {.lex_state = 22}, + [8767] = {.lex_state = 22}, + [8768] = {.lex_state = 22}, + [8769] = {.lex_state = 22}, + [8770] = {.lex_state = 22}, + [8771] = {.lex_state = 22}, + [8772] = {.lex_state = 22}, + [8773] = {.lex_state = 22}, + [8774] = {.lex_state = 22}, + [8775] = {.lex_state = 22}, + [8776] = {.lex_state = 22}, + [8777] = {.lex_state = 22}, + [8778] = {.lex_state = 22}, + [8779] = {.lex_state = 22}, + [8780] = {.lex_state = 22}, + [8781] = {.lex_state = 22}, + [8782] = {.lex_state = 22}, + [8783] = {.lex_state = 22}, + [8784] = {.lex_state = 22}, + [8785] = {.lex_state = 22}, + [8786] = {.lex_state = 22}, + [8787] = {.lex_state = 22}, + [8788] = {.lex_state = 22}, + [8789] = {.lex_state = 22}, + [8790] = {.lex_state = 22}, + [8791] = {.lex_state = 4}, + [8792] = {.lex_state = 22}, + [8793] = {.lex_state = 4}, + [8794] = {.lex_state = 4}, + [8795] = {.lex_state = 4}, + [8796] = {.lex_state = 22}, + [8797] = {.lex_state = 22}, + [8798] = {.lex_state = 4}, + [8799] = {.lex_state = 22}, + [8800] = {.lex_state = 22}, + [8801] = {.lex_state = 22}, + [8802] = {.lex_state = 22}, + [8803] = {.lex_state = 22}, + [8804] = {.lex_state = 22}, + [8805] = {.lex_state = 4}, + [8806] = {.lex_state = 4}, + [8807] = {.lex_state = 4}, + [8808] = {.lex_state = 22}, + [8809] = {.lex_state = 4}, + [8810] = {.lex_state = 4}, + [8811] = {.lex_state = 22}, + [8812] = {.lex_state = 4}, + [8813] = {.lex_state = 22}, + [8814] = {.lex_state = 22}, + [8815] = {.lex_state = 22}, + [8816] = {.lex_state = 22}, + [8817] = {.lex_state = 22}, + [8818] = {.lex_state = 22}, + [8819] = {.lex_state = 22}, + [8820] = {.lex_state = 22}, + [8821] = {.lex_state = 22}, + [8822] = {.lex_state = 22}, + [8823] = {.lex_state = 22}, + [8824] = {.lex_state = 22}, + [8825] = {.lex_state = 22}, + [8826] = {.lex_state = 1}, + [8827] = {.lex_state = 22}, + [8828] = {.lex_state = 22}, + [8829] = {.lex_state = 22}, + [8830] = {.lex_state = 22}, + [8831] = {.lex_state = 22}, + [8832] = {.lex_state = 22}, + [8833] = {.lex_state = 22}, + [8834] = {.lex_state = 22}, + [8835] = {.lex_state = 22}, + [8836] = {.lex_state = 22}, + [8837] = {.lex_state = 22}, + [8838] = {.lex_state = 22}, + [8839] = {.lex_state = 22}, + [8840] = {.lex_state = 22}, + [8841] = {.lex_state = 22}, + [8842] = {.lex_state = 22}, + [8843] = {.lex_state = 22}, + [8844] = {.lex_state = 22}, + [8845] = {.lex_state = 22}, + [8846] = {.lex_state = 22}, + [8847] = {.lex_state = 22}, + [8848] = {.lex_state = 22}, + [8849] = {.lex_state = 22}, + [8850] = {.lex_state = 22}, + [8851] = {.lex_state = 22}, + [8852] = {.lex_state = 22}, + [8853] = {.lex_state = 22}, + [8854] = {.lex_state = 22}, + [8855] = {.lex_state = 22}, + [8856] = {.lex_state = 22}, + [8857] = {.lex_state = 22}, + [8858] = {.lex_state = 22}, + [8859] = {.lex_state = 22}, + [8860] = {.lex_state = 22}, + [8861] = {.lex_state = 1}, + [8862] = {.lex_state = 22}, + [8863] = {.lex_state = 1}, + [8864] = {.lex_state = 22}, + [8865] = {.lex_state = 22}, + [8866] = {.lex_state = 22}, + [8867] = {.lex_state = 22}, + [8868] = {.lex_state = 22}, + [8869] = {.lex_state = 22}, + [8870] = {.lex_state = 22}, + [8871] = {.lex_state = 1}, + [8872] = {.lex_state = 22}, + [8873] = {.lex_state = 22}, + [8874] = {.lex_state = 22}, + [8875] = {.lex_state = 22}, + [8876] = {.lex_state = 22}, + [8877] = {.lex_state = 22}, + [8878] = {.lex_state = 22}, + [8879] = {.lex_state = 22}, + [8880] = {.lex_state = 22}, + [8881] = {.lex_state = 22}, + [8882] = {.lex_state = 22}, + [8883] = {.lex_state = 22}, + [8884] = {.lex_state = 22}, + [8885] = {.lex_state = 22}, + [8886] = {.lex_state = 22}, + [8887] = {.lex_state = 22}, + [8888] = {.lex_state = 22}, + [8889] = {.lex_state = 22}, + [8890] = {.lex_state = 22}, + [8891] = {.lex_state = 22}, + [8892] = {.lex_state = 22}, + [8893] = {.lex_state = 1}, + [8894] = {.lex_state = 1}, + [8895] = {.lex_state = 22}, + [8896] = {.lex_state = 22}, + [8897] = {.lex_state = 1}, + [8898] = {.lex_state = 1}, + [8899] = {.lex_state = 1}, + [8900] = {.lex_state = 1}, + [8901] = {.lex_state = 1}, + [8902] = {.lex_state = 1}, + [8903] = {.lex_state = 22}, + [8904] = {.lex_state = 1}, + [8905] = {.lex_state = 1}, + [8906] = {.lex_state = 1}, + [8907] = {.lex_state = 1}, + [8908] = {.lex_state = 1}, + [8909] = {.lex_state = 22}, + [8910] = {.lex_state = 22}, + [8911] = {.lex_state = 1}, + [8912] = {.lex_state = 22}, + [8913] = {.lex_state = 22}, + [8914] = {.lex_state = 1}, + [8915] = {.lex_state = 22}, + [8916] = {.lex_state = 1}, + [8917] = {.lex_state = 1}, + [8918] = {.lex_state = 22}, + [8919] = {.lex_state = 22}, + [8920] = {.lex_state = 1}, + [8921] = {.lex_state = 1}, + [8922] = {.lex_state = 1}, + [8923] = {.lex_state = 1}, + [8924] = {.lex_state = 22}, + [8925] = {.lex_state = 22}, + [8926] = {.lex_state = 22}, + [8927] = {.lex_state = 1}, + [8928] = {.lex_state = 1}, + [8929] = {.lex_state = 1}, + [8930] = {.lex_state = 1}, + [8931] = {.lex_state = 1}, + [8932] = {.lex_state = 1}, + [8933] = {.lex_state = 22}, + [8934] = {.lex_state = 1}, + [8935] = {.lex_state = 1}, + [8936] = {.lex_state = 22}, + [8937] = {.lex_state = 1}, + [8938] = {.lex_state = 22}, + [8939] = {.lex_state = 1}, + [8940] = {.lex_state = 22}, + [8941] = {.lex_state = 1}, + [8942] = {.lex_state = 1}, + [8943] = {.lex_state = 1}, + [8944] = {.lex_state = 1}, + [8945] = {.lex_state = 1}, + [8946] = {.lex_state = 1}, + [8947] = {.lex_state = 22}, + [8948] = {.lex_state = 1}, + [8949] = {.lex_state = 1}, + [8950] = {.lex_state = 1}, + [8951] = {.lex_state = 1}, + [8952] = {.lex_state = 1}, + [8953] = {.lex_state = 1}, + [8954] = {.lex_state = 1}, + [8955] = {.lex_state = 1}, + [8956] = {.lex_state = 1}, + [8957] = {.lex_state = 1}, + [8958] = {.lex_state = 1}, + [8959] = {.lex_state = 1}, + [8960] = {.lex_state = 1}, + [8961] = {.lex_state = 1}, + [8962] = {.lex_state = 1}, + [8963] = {.lex_state = 1}, + [8964] = {.lex_state = 1}, + [8965] = {.lex_state = 1}, + [8966] = {.lex_state = 1}, + [8967] = {.lex_state = 1}, + [8968] = {.lex_state = 1}, + [8969] = {.lex_state = 1}, + [8970] = {.lex_state = 1}, + [8971] = {.lex_state = 1}, + [8972] = {.lex_state = 1}, + [8973] = {.lex_state = 1}, + [8974] = {.lex_state = 1}, + [8975] = {.lex_state = 1}, + [8976] = {.lex_state = 1}, + [8977] = {.lex_state = 1}, + [8978] = {.lex_state = 1}, + [8979] = {.lex_state = 1}, + [8980] = {.lex_state = 1}, + [8981] = {.lex_state = 1}, + [8982] = {.lex_state = 22}, + [8983] = {.lex_state = 22}, + [8984] = {.lex_state = 22}, + [8985] = {.lex_state = 22}, + [8986] = {.lex_state = 22}, + [8987] = {.lex_state = 22}, + [8988] = {.lex_state = 1}, + [8989] = {.lex_state = 1}, + [8990] = {.lex_state = 1}, + [8991] = {.lex_state = 1}, + [8992] = {.lex_state = 1}, + [8993] = {.lex_state = 1}, + [8994] = {.lex_state = 1}, + [8995] = {.lex_state = 1}, + [8996] = {.lex_state = 1}, + [8997] = {.lex_state = 1}, + [8998] = {.lex_state = 1}, + [8999] = {.lex_state = 1}, + [9000] = {.lex_state = 22}, + [9001] = {.lex_state = 1}, + [9002] = {.lex_state = 22}, + [9003] = {.lex_state = 1}, + [9004] = {.lex_state = 1}, + [9005] = {.lex_state = 22}, + [9006] = {.lex_state = 22}, + [9007] = {.lex_state = 22}, + [9008] = {.lex_state = 22}, + [9009] = {.lex_state = 22}, + [9010] = {.lex_state = 22}, + [9011] = {.lex_state = 22}, + [9012] = {.lex_state = 22}, + [9013] = {.lex_state = 22}, + [9014] = {.lex_state = 22}, + [9015] = {.lex_state = 22}, + [9016] = {.lex_state = 22}, + [9017] = {.lex_state = 1}, + [9018] = {.lex_state = 22}, + [9019] = {.lex_state = 22}, + [9020] = {.lex_state = 22}, + [9021] = {.lex_state = 22}, + [9022] = {.lex_state = 22}, + [9023] = {.lex_state = 22}, + [9024] = {.lex_state = 22}, + [9025] = {.lex_state = 22}, + [9026] = {.lex_state = 22}, + [9027] = {.lex_state = 22}, + [9028] = {.lex_state = 1}, + [9029] = {.lex_state = 22}, + [9030] = {.lex_state = 22}, + [9031] = {.lex_state = 22}, + [9032] = {.lex_state = 1}, + [9033] = {.lex_state = 22}, + [9034] = {.lex_state = 1}, + [9035] = {.lex_state = 1}, + [9036] = {.lex_state = 1}, + [9037] = {.lex_state = 1}, + [9038] = {.lex_state = 1}, + [9039] = {.lex_state = 1}, + [9040] = {.lex_state = 1}, + [9041] = {.lex_state = 1}, + [9042] = {.lex_state = 1}, + [9043] = {.lex_state = 1}, + [9044] = {.lex_state = 1}, + [9045] = {.lex_state = 1}, + [9046] = {.lex_state = 1}, + [9047] = {.lex_state = 22}, + [9048] = {.lex_state = 1}, + [9049] = {.lex_state = 1}, + [9050] = {.lex_state = 1}, + [9051] = {.lex_state = 1}, + [9052] = {.lex_state = 1}, + [9053] = {.lex_state = 1}, + [9054] = {.lex_state = 1}, + [9055] = {.lex_state = 1}, + [9056] = {.lex_state = 1}, + [9057] = {.lex_state = 1}, + [9058] = {.lex_state = 1}, + [9059] = {.lex_state = 1}, + [9060] = {.lex_state = 1}, + [9061] = {.lex_state = 1}, + [9062] = {.lex_state = 1}, + [9063] = {.lex_state = 1}, + [9064] = {.lex_state = 1}, + [9065] = {.lex_state = 1}, + [9066] = {.lex_state = 1}, + [9067] = {.lex_state = 1}, + [9068] = {.lex_state = 1}, + [9069] = {.lex_state = 1}, + [9070] = {.lex_state = 1}, + [9071] = {.lex_state = 1}, + [9072] = {.lex_state = 1}, + [9073] = {.lex_state = 1}, + [9074] = {.lex_state = 1}, + [9075] = {.lex_state = 1}, + [9076] = {.lex_state = 1}, + [9077] = {.lex_state = 1}, + [9078] = {.lex_state = 1}, + [9079] = {.lex_state = 1}, + [9080] = {.lex_state = 1}, + [9081] = {.lex_state = 1}, + [9082] = {.lex_state = 1}, + [9083] = {.lex_state = 1}, + [9084] = {.lex_state = 1}, + [9085] = {.lex_state = 1}, + [9086] = {.lex_state = 1}, + [9087] = {.lex_state = 1}, + [9088] = {.lex_state = 1}, + [9089] = {.lex_state = 1}, + [9090] = {.lex_state = 1}, + [9091] = {.lex_state = 1}, + [9092] = {.lex_state = 1}, + [9093] = {.lex_state = 1}, + [9094] = {.lex_state = 1}, + [9095] = {.lex_state = 1}, + [9096] = {.lex_state = 1}, + [9097] = {.lex_state = 1}, + [9098] = {.lex_state = 1}, + [9099] = {.lex_state = 1}, + [9100] = {.lex_state = 1}, + [9101] = {.lex_state = 1}, + [9102] = {.lex_state = 1}, + [9103] = {.lex_state = 1}, + [9104] = {.lex_state = 1}, + [9105] = {.lex_state = 1}, + [9106] = {.lex_state = 1}, + [9107] = {.lex_state = 1}, + [9108] = {.lex_state = 1}, + [9109] = {.lex_state = 1}, + [9110] = {.lex_state = 1}, + [9111] = {.lex_state = 1}, + [9112] = {.lex_state = 1}, + [9113] = {.lex_state = 1}, + [9114] = {.lex_state = 1}, + [9115] = {.lex_state = 1}, + [9116] = {.lex_state = 1}, + [9117] = {.lex_state = 1}, + [9118] = {.lex_state = 1}, + [9119] = {.lex_state = 1}, + [9120] = {.lex_state = 1}, + [9121] = {.lex_state = 1}, + [9122] = {.lex_state = 1}, + [9123] = {.lex_state = 1}, + [9124] = {.lex_state = 1}, + [9125] = {.lex_state = 1}, + [9126] = {.lex_state = 1}, + [9127] = {.lex_state = 1}, + [9128] = {.lex_state = 1}, + [9129] = {.lex_state = 1}, + [9130] = {.lex_state = 1}, + [9131] = {.lex_state = 1}, + [9132] = {.lex_state = 1}, + [9133] = {.lex_state = 1}, + [9134] = {.lex_state = 1}, + [9135] = {.lex_state = 1}, + [9136] = {.lex_state = 1}, + [9137] = {.lex_state = 1}, + [9138] = {.lex_state = 1}, + [9139] = {.lex_state = 1}, + [9140] = {.lex_state = 1}, + [9141] = {.lex_state = 1}, + [9142] = {.lex_state = 1}, + [9143] = {.lex_state = 1}, + [9144] = {.lex_state = 1}, + [9145] = {.lex_state = 1}, + [9146] = {.lex_state = 1}, + [9147] = {.lex_state = 1}, + [9148] = {.lex_state = 1}, + [9149] = {.lex_state = 1}, + [9150] = {.lex_state = 1}, + [9151] = {.lex_state = 1}, + [9152] = {.lex_state = 1}, + [9153] = {.lex_state = 1}, + [9154] = {.lex_state = 1}, + [9155] = {.lex_state = 1}, + [9156] = {.lex_state = 1}, + [9157] = {.lex_state = 1}, + [9158] = {.lex_state = 1}, + [9159] = {.lex_state = 1}, + [9160] = {.lex_state = 1}, + [9161] = {.lex_state = 1}, + [9162] = {.lex_state = 1}, + [9163] = {.lex_state = 1}, + [9164] = {.lex_state = 1}, + [9165] = {.lex_state = 1}, + [9166] = {.lex_state = 1}, + [9167] = {.lex_state = 1}, + [9168] = {.lex_state = 1}, + [9169] = {.lex_state = 1}, + [9170] = {.lex_state = 1}, + [9171] = {.lex_state = 1}, + [9172] = {.lex_state = 1}, + [9173] = {.lex_state = 1}, + [9174] = {.lex_state = 1}, + [9175] = {.lex_state = 1}, + [9176] = {.lex_state = 1}, + [9177] = {.lex_state = 1}, + [9178] = {.lex_state = 1}, + [9179] = {.lex_state = 1}, + [9180] = {.lex_state = 1}, + [9181] = {.lex_state = 1}, + [9182] = {.lex_state = 1}, + [9183] = {.lex_state = 1}, + [9184] = {.lex_state = 1}, + [9185] = {.lex_state = 1}, + [9186] = {.lex_state = 1}, + [9187] = {.lex_state = 22}, + [9188] = {.lex_state = 1}, + [9189] = {.lex_state = 1}, + [9190] = {.lex_state = 1}, + [9191] = {.lex_state = 1}, + [9192] = {.lex_state = 1}, + [9193] = {.lex_state = 1}, + [9194] = {.lex_state = 1}, + [9195] = {.lex_state = 1}, + [9196] = {.lex_state = 1}, + [9197] = {.lex_state = 1}, + [9198] = {.lex_state = 1}, + [9199] = {.lex_state = 1}, + [9200] = {.lex_state = 1}, + [9201] = {.lex_state = 1}, + [9202] = {.lex_state = 1}, + [9203] = {.lex_state = 1}, + [9204] = {.lex_state = 1}, + [9205] = {.lex_state = 1}, + [9206] = {.lex_state = 1}, + [9207] = {.lex_state = 1}, + [9208] = {.lex_state = 1}, + [9209] = {.lex_state = 1}, + [9210] = {.lex_state = 1}, + [9211] = {.lex_state = 1}, + [9212] = {.lex_state = 1}, + [9213] = {.lex_state = 1}, + [9214] = {.lex_state = 1}, + [9215] = {.lex_state = 22}, + [9216] = {.lex_state = 1}, + [9217] = {.lex_state = 22}, + [9218] = {.lex_state = 1}, + [9219] = {.lex_state = 1}, + [9220] = {.lex_state = 1}, + [9221] = {.lex_state = 1}, + [9222] = {.lex_state = 1}, + [9223] = {.lex_state = 1}, + [9224] = {.lex_state = 1}, + [9225] = {.lex_state = 1}, + [9226] = {.lex_state = 1}, + [9227] = {.lex_state = 1}, + [9228] = {.lex_state = 1}, + [9229] = {.lex_state = 1}, + [9230] = {.lex_state = 1}, + [9231] = {.lex_state = 1}, + [9232] = {.lex_state = 1}, + [9233] = {.lex_state = 1}, + [9234] = {.lex_state = 1}, + [9235] = {.lex_state = 1}, + [9236] = {.lex_state = 1}, + [9237] = {.lex_state = 1}, + [9238] = {.lex_state = 1}, + [9239] = {.lex_state = 1}, + [9240] = {.lex_state = 1}, + [9241] = {.lex_state = 1}, + [9242] = {.lex_state = 1}, + [9243] = {.lex_state = 1}, + [9244] = {.lex_state = 1}, + [9245] = {.lex_state = 1}, + [9246] = {.lex_state = 1}, + [9247] = {.lex_state = 1}, + [9248] = {.lex_state = 1}, + [9249] = {.lex_state = 1}, + [9250] = {.lex_state = 1}, + [9251] = {.lex_state = 1}, + [9252] = {.lex_state = 1}, + [9253] = {.lex_state = 1}, + [9254] = {.lex_state = 1}, + [9255] = {.lex_state = 1}, + [9256] = {.lex_state = 1}, + [9257] = {.lex_state = 1}, + [9258] = {.lex_state = 1}, + [9259] = {.lex_state = 1}, + [9260] = {.lex_state = 1}, + [9261] = {.lex_state = 1}, + [9262] = {.lex_state = 1}, + [9263] = {.lex_state = 1}, + [9264] = {.lex_state = 1}, + [9265] = {.lex_state = 1}, + [9266] = {.lex_state = 1}, + [9267] = {.lex_state = 1}, + [9268] = {.lex_state = 1}, + [9269] = {.lex_state = 1}, + [9270] = {.lex_state = 1}, + [9271] = {.lex_state = 1}, + [9272] = {.lex_state = 1}, + [9273] = {.lex_state = 1}, + [9274] = {.lex_state = 1}, + [9275] = {.lex_state = 1}, + [9276] = {.lex_state = 1}, + [9277] = {.lex_state = 1}, + [9278] = {.lex_state = 1}, + [9279] = {.lex_state = 1}, + [9280] = {.lex_state = 1}, + [9281] = {.lex_state = 1}, + [9282] = {.lex_state = 1}, + [9283] = {.lex_state = 1}, + [9284] = {.lex_state = 1}, + [9285] = {.lex_state = 1}, + [9286] = {.lex_state = 1}, + [9287] = {.lex_state = 22}, + [9288] = {.lex_state = 1}, + [9289] = {.lex_state = 1}, + [9290] = {.lex_state = 1}, + [9291] = {.lex_state = 22}, + [9292] = {.lex_state = 22}, + [9293] = {.lex_state = 1}, + [9294] = {.lex_state = 1}, + [9295] = {.lex_state = 1}, + [9296] = {.lex_state = 1}, + [9297] = {.lex_state = 22}, + [9298] = {.lex_state = 1}, + [9299] = {.lex_state = 22}, + [9300] = {.lex_state = 22}, + [9301] = {.lex_state = 22}, + [9302] = {.lex_state = 22}, + [9303] = {.lex_state = 22}, + [9304] = {.lex_state = 1}, + [9305] = {.lex_state = 1}, + [9306] = {.lex_state = 1}, + [9307] = {.lex_state = 1}, + [9308] = {.lex_state = 1}, + [9309] = {.lex_state = 1}, + [9310] = {.lex_state = 1}, + [9311] = {.lex_state = 1}, + [9312] = {.lex_state = 1}, + [9313] = {.lex_state = 1}, + [9314] = {.lex_state = 1}, + [9315] = {.lex_state = 1}, + [9316] = {.lex_state = 1}, + [9317] = {.lex_state = 1}, + [9318] = {.lex_state = 1}, + [9319] = {.lex_state = 1}, + [9320] = {.lex_state = 1}, + [9321] = {.lex_state = 1}, + [9322] = {.lex_state = 1}, + [9323] = {.lex_state = 1}, + [9324] = {.lex_state = 1}, + [9325] = {.lex_state = 1}, + [9326] = {.lex_state = 1}, + [9327] = {.lex_state = 1}, + [9328] = {.lex_state = 1}, + [9329] = {.lex_state = 1}, + [9330] = {.lex_state = 1}, + [9331] = {.lex_state = 1}, + [9332] = {.lex_state = 1}, + [9333] = {.lex_state = 1}, + [9334] = {.lex_state = 1}, + [9335] = {.lex_state = 1}, + [9336] = {.lex_state = 1}, + [9337] = {.lex_state = 1}, + [9338] = {.lex_state = 1}, + [9339] = {.lex_state = 1}, + [9340] = {.lex_state = 1}, + [9341] = {.lex_state = 1}, + [9342] = {.lex_state = 1}, + [9343] = {.lex_state = 1}, + [9344] = {.lex_state = 1}, + [9345] = {.lex_state = 1}, + [9346] = {.lex_state = 1}, + [9347] = {.lex_state = 1}, + [9348] = {.lex_state = 1}, + [9349] = {.lex_state = 1}, + [9350] = {.lex_state = 1}, + [9351] = {.lex_state = 1}, + [9352] = {.lex_state = 1}, + [9353] = {.lex_state = 1}, + [9354] = {.lex_state = 1}, + [9355] = {.lex_state = 1}, + [9356] = {.lex_state = 1}, + [9357] = {.lex_state = 1}, + [9358] = {.lex_state = 1}, + [9359] = {.lex_state = 1}, + [9360] = {.lex_state = 1}, + [9361] = {.lex_state = 1}, + [9362] = {.lex_state = 1}, + [9363] = {.lex_state = 1}, + [9364] = {.lex_state = 1}, + [9365] = {.lex_state = 1}, + [9366] = {.lex_state = 1}, + [9367] = {.lex_state = 1}, + [9368] = {.lex_state = 1}, + [9369] = {.lex_state = 1}, + [9370] = {.lex_state = 1}, + [9371] = {.lex_state = 1}, + [9372] = {.lex_state = 1}, + [9373] = {.lex_state = 1}, + [9374] = {.lex_state = 1}, + [9375] = {.lex_state = 1}, + [9376] = {.lex_state = 1}, + [9377] = {.lex_state = 1}, + [9378] = {.lex_state = 1}, + [9379] = {.lex_state = 1}, + [9380] = {.lex_state = 1}, + [9381] = {.lex_state = 1}, + [9382] = {.lex_state = 1}, + [9383] = {.lex_state = 1}, + [9384] = {.lex_state = 1}, + [9385] = {.lex_state = 1}, + [9386] = {.lex_state = 1}, + [9387] = {.lex_state = 1}, + [9388] = {.lex_state = 1}, + [9389] = {.lex_state = 1}, + [9390] = {.lex_state = 1}, + [9391] = {.lex_state = 1}, + [9392] = {.lex_state = 1}, + [9393] = {.lex_state = 1}, + [9394] = {.lex_state = 1}, + [9395] = {.lex_state = 1}, + [9396] = {.lex_state = 1}, + [9397] = {.lex_state = 1}, + [9398] = {.lex_state = 1}, + [9399] = {.lex_state = 1}, + [9400] = {.lex_state = 1}, + [9401] = {.lex_state = 1}, + [9402] = {.lex_state = 1}, + [9403] = {.lex_state = 1}, + [9404] = {.lex_state = 1}, + [9405] = {.lex_state = 1}, + [9406] = {.lex_state = 1}, + [9407] = {.lex_state = 1}, + [9408] = {.lex_state = 1}, + [9409] = {.lex_state = 1}, + [9410] = {.lex_state = 1}, + [9411] = {.lex_state = 1}, + [9412] = {.lex_state = 1}, + [9413] = {.lex_state = 1}, + [9414] = {.lex_state = 1}, + [9415] = {.lex_state = 1}, + [9416] = {.lex_state = 22}, + [9417] = {.lex_state = 22}, + [9418] = {.lex_state = 22}, + [9419] = {.lex_state = 22}, + [9420] = {.lex_state = 22}, + [9421] = {.lex_state = 23}, + [9422] = {.lex_state = 23}, + [9423] = {.lex_state = 23}, + [9424] = {.lex_state = 23}, + [9425] = {.lex_state = 23}, + [9426] = {.lex_state = 23}, + [9427] = {.lex_state = 23}, + [9428] = {.lex_state = 23}, + [9429] = {.lex_state = 23}, + [9430] = {.lex_state = 23}, + [9431] = {.lex_state = 23}, + [9432] = {.lex_state = 23}, + [9433] = {.lex_state = 23}, + [9434] = {.lex_state = 23}, + [9435] = {.lex_state = 23}, + [9436] = {.lex_state = 23}, + [9437] = {.lex_state = 23}, + [9438] = {.lex_state = 23}, + [9439] = {.lex_state = 23}, + [9440] = {.lex_state = 23}, + [9441] = {.lex_state = 23}, + [9442] = {.lex_state = 23}, + [9443] = {.lex_state = 23}, + [9444] = {.lex_state = 23}, + [9445] = {.lex_state = 23}, + [9446] = {.lex_state = 23}, + [9447] = {.lex_state = 23}, + [9448] = {.lex_state = 23}, + [9449] = {.lex_state = 23}, + [9450] = {.lex_state = 23}, + [9451] = {.lex_state = 23}, + [9452] = {.lex_state = 23}, + [9453] = {.lex_state = 23}, + [9454] = {.lex_state = 23}, + [9455] = {.lex_state = 23}, + [9456] = {.lex_state = 23}, + [9457] = {.lex_state = 23}, + [9458] = {.lex_state = 23}, + [9459] = {.lex_state = 23}, + [9460] = {.lex_state = 23}, + [9461] = {.lex_state = 23}, + [9462] = {.lex_state = 23}, + [9463] = {.lex_state = 23}, + [9464] = {.lex_state = 23}, + [9465] = {.lex_state = 23}, + [9466] = {.lex_state = 23}, + [9467] = {.lex_state = 23}, + [9468] = {.lex_state = 23}, + [9469] = {.lex_state = 23}, + [9470] = {.lex_state = 23}, + [9471] = {.lex_state = 23}, + [9472] = {.lex_state = 23}, + [9473] = {.lex_state = 23}, + [9474] = {.lex_state = 23}, + [9475] = {.lex_state = 23}, + [9476] = {.lex_state = 23}, + [9477] = {.lex_state = 23}, + [9478] = {.lex_state = 23}, + [9479] = {.lex_state = 23}, + [9480] = {.lex_state = 23}, + [9481] = {.lex_state = 23}, + [9482] = {.lex_state = 23}, + [9483] = {.lex_state = 23}, + [9484] = {.lex_state = 23}, + [9485] = {.lex_state = 23}, + [9486] = {.lex_state = 23}, + [9487] = {.lex_state = 23}, + [9488] = {.lex_state = 23}, + [9489] = {.lex_state = 23}, + [9490] = {.lex_state = 23}, + [9491] = {.lex_state = 23}, + [9492] = {.lex_state = 23}, + [9493] = {.lex_state = 23}, + [9494] = {.lex_state = 23}, + [9495] = {.lex_state = 23}, + [9496] = {.lex_state = 23}, + [9497] = {.lex_state = 23}, + [9498] = {.lex_state = 23}, + [9499] = {.lex_state = 23}, + [9500] = {.lex_state = 23}, + [9501] = {.lex_state = 23}, + [9502] = {.lex_state = 23}, + [9503] = {.lex_state = 23}, + [9504] = {.lex_state = 23}, + [9505] = {.lex_state = 23}, + [9506] = {.lex_state = 23}, + [9507] = {.lex_state = 23}, + [9508] = {.lex_state = 23}, + [9509] = {.lex_state = 23}, + [9510] = {.lex_state = 23}, + [9511] = {.lex_state = 23}, + [9512] = {.lex_state = 23}, + [9513] = {.lex_state = 23}, + [9514] = {.lex_state = 23}, + [9515] = {.lex_state = 23}, + [9516] = {.lex_state = 23}, + [9517] = {.lex_state = 23}, + [9518] = {.lex_state = 23}, + [9519] = {.lex_state = 23}, + [9520] = {.lex_state = 23}, + [9521] = {.lex_state = 23}, + [9522] = {.lex_state = 23}, + [9523] = {.lex_state = 23}, + [9524] = {.lex_state = 23}, + [9525] = {.lex_state = 23}, + [9526] = {.lex_state = 23}, + [9527] = {.lex_state = 23}, + [9528] = {.lex_state = 23}, + [9529] = {.lex_state = 23}, + [9530] = {.lex_state = 23}, + [9531] = {.lex_state = 23}, + [9532] = {.lex_state = 23}, + [9533] = {.lex_state = 23}, + [9534] = {.lex_state = 23}, + [9535] = {.lex_state = 23}, + [9536] = {.lex_state = 23}, + [9537] = {.lex_state = 23}, + [9538] = {.lex_state = 23}, + [9539] = {.lex_state = 23}, + [9540] = {.lex_state = 23}, + [9541] = {.lex_state = 23}, + [9542] = {.lex_state = 23}, + [9543] = {.lex_state = 23}, + [9544] = {.lex_state = 23}, + [9545] = {.lex_state = 23}, + [9546] = {.lex_state = 23}, + [9547] = {.lex_state = 23}, + [9548] = {.lex_state = 23}, + [9549] = {.lex_state = 23}, + [9550] = {.lex_state = 23}, + [9551] = {.lex_state = 23}, + [9552] = {.lex_state = 23}, + [9553] = {.lex_state = 23}, + [9554] = {.lex_state = 23}, + [9555] = {.lex_state = 23}, + [9556] = {.lex_state = 23}, + [9557] = {.lex_state = 23}, + [9558] = {.lex_state = 23}, + [9559] = {.lex_state = 23}, + [9560] = {.lex_state = 23}, + [9561] = {.lex_state = 23}, + [9562] = {.lex_state = 23}, + [9563] = {.lex_state = 23}, + [9564] = {.lex_state = 23}, + [9565] = {.lex_state = 23}, + [9566] = {.lex_state = 23}, + [9567] = {.lex_state = 23}, + [9568] = {.lex_state = 23}, + [9569] = {.lex_state = 23}, + [9570] = {.lex_state = 23}, + [9571] = {.lex_state = 23}, + [9572] = {.lex_state = 23}, + [9573] = {.lex_state = 23}, + [9574] = {.lex_state = 23}, + [9575] = {.lex_state = 23}, + [9576] = {.lex_state = 23}, + [9577] = {.lex_state = 23}, + [9578] = {.lex_state = 23}, + [9579] = {.lex_state = 23}, + [9580] = {.lex_state = 23}, + [9581] = {.lex_state = 23}, + [9582] = {.lex_state = 23}, + [9583] = {.lex_state = 23}, + [9584] = {.lex_state = 23}, + [9585] = {.lex_state = 23}, + [9586] = {.lex_state = 23}, + [9587] = {.lex_state = 23}, + [9588] = {.lex_state = 23}, + [9589] = {.lex_state = 23}, + [9590] = {.lex_state = 23}, + [9591] = {.lex_state = 23}, + [9592] = {.lex_state = 23}, + [9593] = {.lex_state = 23}, + [9594] = {.lex_state = 23}, + [9595] = {.lex_state = 23}, + [9596] = {.lex_state = 23}, + [9597] = {.lex_state = 23}, + [9598] = {.lex_state = 23}, + [9599] = {.lex_state = 23}, + [9600] = {.lex_state = 23}, + [9601] = {.lex_state = 23}, + [9602] = {.lex_state = 23}, + [9603] = {.lex_state = 23}, + [9604] = {.lex_state = 23}, + [9605] = {.lex_state = 23}, + [9606] = {.lex_state = 23}, + [9607] = {.lex_state = 23}, + [9608] = {.lex_state = 23}, + [9609] = {.lex_state = 23}, + [9610] = {.lex_state = 23}, + [9611] = {.lex_state = 23}, + [9612] = {.lex_state = 23}, + [9613] = {.lex_state = 23}, + [9614] = {.lex_state = 23}, + [9615] = {.lex_state = 23}, + [9616] = {.lex_state = 23}, + [9617] = {.lex_state = 23}, + [9618] = {.lex_state = 23}, + [9619] = {.lex_state = 23}, + [9620] = {.lex_state = 23}, + [9621] = {.lex_state = 23}, + [9622] = {.lex_state = 23}, + [9623] = {.lex_state = 23}, + [9624] = {.lex_state = 23}, + [9625] = {.lex_state = 23}, + [9626] = {.lex_state = 23}, + [9627] = {.lex_state = 23}, + [9628] = {.lex_state = 23}, + [9629] = {.lex_state = 23}, + [9630] = {.lex_state = 23}, + [9631] = {.lex_state = 23}, + [9632] = {.lex_state = 23}, + [9633] = {.lex_state = 23}, + [9634] = {.lex_state = 23}, + [9635] = {.lex_state = 23}, + [9636] = {.lex_state = 23}, + [9637] = {.lex_state = 23}, + [9638] = {.lex_state = 23}, + [9639] = {.lex_state = 23}, + [9640] = {.lex_state = 23}, + [9641] = {.lex_state = 23}, + [9642] = {.lex_state = 23}, + [9643] = {.lex_state = 23}, + [9644] = {.lex_state = 23}, + [9645] = {.lex_state = 23}, + [9646] = {.lex_state = 23}, + [9647] = {.lex_state = 23}, + [9648] = {.lex_state = 23}, + [9649] = {.lex_state = 23}, + [9650] = {.lex_state = 23}, + [9651] = {.lex_state = 23}, + [9652] = {.lex_state = 23}, + [9653] = {.lex_state = 23}, + [9654] = {.lex_state = 23}, + [9655] = {.lex_state = 23}, + [9656] = {.lex_state = 23}, + [9657] = {.lex_state = 23}, + [9658] = {.lex_state = 23}, + [9659] = {.lex_state = 23}, + [9660] = {.lex_state = 23}, + [9661] = {.lex_state = 23}, + [9662] = {.lex_state = 23}, + [9663] = {.lex_state = 23}, + [9664] = {.lex_state = 23}, + [9665] = {.lex_state = 23}, + [9666] = {.lex_state = 23}, + [9667] = {.lex_state = 23}, + [9668] = {.lex_state = 23}, + [9669] = {.lex_state = 23}, + [9670] = {.lex_state = 23}, + [9671] = {.lex_state = 23}, + [9672] = {.lex_state = 23}, + [9673] = {.lex_state = 23}, + [9674] = {.lex_state = 23}, + [9675] = {.lex_state = 23}, + [9676] = {.lex_state = 23}, + [9677] = {.lex_state = 23}, + [9678] = {.lex_state = 23}, + [9679] = {.lex_state = 23}, + [9680] = {.lex_state = 23}, + [9681] = {.lex_state = 23}, + [9682] = {.lex_state = 23}, + [9683] = {.lex_state = 23}, + [9684] = {.lex_state = 23}, + [9685] = {.lex_state = 23}, + [9686] = {.lex_state = 23}, + [9687] = {.lex_state = 23}, + [9688] = {.lex_state = 23}, + [9689] = {.lex_state = 23}, + [9690] = {.lex_state = 23}, + [9691] = {.lex_state = 23}, + [9692] = {.lex_state = 23}, + [9693] = {.lex_state = 23}, + [9694] = {.lex_state = 23}, + [9695] = {.lex_state = 23}, + [9696] = {.lex_state = 23}, + [9697] = {.lex_state = 23}, + [9698] = {.lex_state = 23}, + [9699] = {.lex_state = 23}, + [9700] = {.lex_state = 23}, + [9701] = {.lex_state = 23}, + [9702] = {.lex_state = 23}, + [9703] = {.lex_state = 23}, + [9704] = {.lex_state = 23}, + [9705] = {.lex_state = 23}, + [9706] = {.lex_state = 23}, + [9707] = {.lex_state = 23}, + [9708] = {.lex_state = 23}, + [9709] = {.lex_state = 23}, + [9710] = {.lex_state = 23}, + [9711] = {.lex_state = 23}, + [9712] = {.lex_state = 23}, + [9713] = {.lex_state = 23}, + [9714] = {.lex_state = 23}, + [9715] = {.lex_state = 23}, + [9716] = {.lex_state = 23}, + [9717] = {.lex_state = 23}, + [9718] = {.lex_state = 23}, + [9719] = {.lex_state = 23}, + [9720] = {.lex_state = 23}, + [9721] = {.lex_state = 23}, + [9722] = {.lex_state = 23}, + [9723] = {.lex_state = 23}, + [9724] = {.lex_state = 23}, + [9725] = {.lex_state = 23}, + [9726] = {.lex_state = 23}, + [9727] = {.lex_state = 23}, + [9728] = {.lex_state = 23}, + [9729] = {.lex_state = 23}, + [9730] = {.lex_state = 23}, + [9731] = {.lex_state = 23}, + [9732] = {.lex_state = 23}, + [9733] = {.lex_state = 23}, + [9734] = {.lex_state = 23}, + [9735] = {.lex_state = 23}, + [9736] = {.lex_state = 23}, + [9737] = {.lex_state = 23}, + [9738] = {.lex_state = 23}, + [9739] = {.lex_state = 23}, + [9740] = {.lex_state = 23}, + [9741] = {.lex_state = 23}, + [9742] = {.lex_state = 23}, + [9743] = {.lex_state = 23}, + [9744] = {.lex_state = 23}, + [9745] = {.lex_state = 23}, + [9746] = {.lex_state = 23}, + [9747] = {.lex_state = 23}, + [9748] = {.lex_state = 23}, + [9749] = {.lex_state = 23}, + [9750] = {.lex_state = 23}, + [9751] = {.lex_state = 23}, + [9752] = {.lex_state = 23}, + [9753] = {.lex_state = 23}, + [9754] = {.lex_state = 23}, + [9755] = {.lex_state = 23}, + [9756] = {.lex_state = 23}, + [9757] = {.lex_state = 23}, + [9758] = {.lex_state = 23}, + [9759] = {.lex_state = 23}, + [9760] = {.lex_state = 23}, + [9761] = {.lex_state = 23}, + [9762] = {.lex_state = 23}, + [9763] = {.lex_state = 23}, + [9764] = {.lex_state = 23}, + [9765] = {.lex_state = 23}, + [9766] = {.lex_state = 23}, + [9767] = {.lex_state = 23}, + [9768] = {.lex_state = 23}, + [9769] = {.lex_state = 23}, + [9770] = {.lex_state = 23}, + [9771] = {.lex_state = 23}, + [9772] = {.lex_state = 23}, + [9773] = {.lex_state = 23}, + [9774] = {.lex_state = 23}, + [9775] = {.lex_state = 23}, + [9776] = {.lex_state = 23}, + [9777] = {.lex_state = 23}, + [9778] = {.lex_state = 23}, + [9779] = {.lex_state = 23}, + [9780] = {.lex_state = 23}, + [9781] = {.lex_state = 23}, + [9782] = {.lex_state = 23}, + [9783] = {.lex_state = 23}, + [9784] = {.lex_state = 23}, + [9785] = {.lex_state = 23}, + [9786] = {.lex_state = 23}, + [9787] = {.lex_state = 23}, + [9788] = {.lex_state = 23}, + [9789] = {.lex_state = 23}, + [9790] = {.lex_state = 23}, + [9791] = {.lex_state = 23}, + [9792] = {.lex_state = 23}, + [9793] = {.lex_state = 23}, + [9794] = {.lex_state = 23}, + [9795] = {.lex_state = 23}, + [9796] = {.lex_state = 23}, + [9797] = {.lex_state = 23}, + [9798] = {.lex_state = 23}, + [9799] = {.lex_state = 23}, + [9800] = {.lex_state = 23}, + [9801] = {.lex_state = 23}, + [9802] = {.lex_state = 23}, + [9803] = {.lex_state = 23}, + [9804] = {.lex_state = 23}, + [9805] = {.lex_state = 23}, + [9806] = {.lex_state = 23}, + [9807] = {.lex_state = 23}, + [9808] = {.lex_state = 23}, + [9809] = {.lex_state = 23}, + [9810] = {.lex_state = 23}, + [9811] = {.lex_state = 23}, + [9812] = {.lex_state = 23}, + [9813] = {.lex_state = 23}, + [9814] = {.lex_state = 23}, + [9815] = {.lex_state = 23}, + [9816] = {.lex_state = 23}, + [9817] = {.lex_state = 23}, + [9818] = {.lex_state = 23}, + [9819] = {.lex_state = 23}, + [9820] = {.lex_state = 23}, + [9821] = {.lex_state = 23}, + [9822] = {.lex_state = 23}, + [9823] = {.lex_state = 23}, + [9824] = {.lex_state = 23}, + [9825] = {.lex_state = 23}, + [9826] = {.lex_state = 23}, + [9827] = {.lex_state = 23}, + [9828] = {.lex_state = 23}, + [9829] = {.lex_state = 23}, + [9830] = {.lex_state = 23}, + [9831] = {.lex_state = 23}, + [9832] = {.lex_state = 23}, + [9833] = {.lex_state = 23}, + [9834] = {.lex_state = 23}, + [9835] = {.lex_state = 23}, + [9836] = {.lex_state = 23}, + [9837] = {.lex_state = 23}, + [9838] = {.lex_state = 23}, + [9839] = {.lex_state = 23}, + [9840] = {.lex_state = 23}, + [9841] = {.lex_state = 23}, + [9842] = {.lex_state = 23}, + [9843] = {.lex_state = 23}, + [9844] = {.lex_state = 23}, + [9845] = {.lex_state = 23}, + [9846] = {.lex_state = 23}, + [9847] = {.lex_state = 23}, + [9848] = {.lex_state = 23}, + [9849] = {.lex_state = 23}, + [9850] = {.lex_state = 23}, + [9851] = {.lex_state = 23}, + [9852] = {.lex_state = 23}, + [9853] = {.lex_state = 23}, + [9854] = {.lex_state = 23}, + [9855] = {.lex_state = 23}, + [9856] = {.lex_state = 23}, + [9857] = {.lex_state = 23}, + [9858] = {.lex_state = 23}, + [9859] = {.lex_state = 23}, + [9860] = {.lex_state = 23}, + [9861] = {.lex_state = 23}, + [9862] = {.lex_state = 23}, + [9863] = {.lex_state = 23}, + [9864] = {.lex_state = 23}, + [9865] = {.lex_state = 23}, + [9866] = {.lex_state = 23}, + [9867] = {.lex_state = 23}, + [9868] = {.lex_state = 23}, + [9869] = {.lex_state = 23}, + [9870] = {.lex_state = 23}, + [9871] = {.lex_state = 23}, + [9872] = {.lex_state = 23}, + [9873] = {.lex_state = 23}, + [9874] = {.lex_state = 23}, + [9875] = {.lex_state = 23}, + [9876] = {.lex_state = 23}, + [9877] = {.lex_state = 23}, + [9878] = {.lex_state = 23}, + [9879] = {.lex_state = 23}, + [9880] = {.lex_state = 23}, + [9881] = {.lex_state = 23}, + [9882] = {.lex_state = 23}, + [9883] = {.lex_state = 23}, + [9884] = {.lex_state = 23}, + [9885] = {.lex_state = 23}, + [9886] = {.lex_state = 23}, + [9887] = {.lex_state = 23}, + [9888] = {.lex_state = 23}, + [9889] = {.lex_state = 23}, + [9890] = {.lex_state = 23}, + [9891] = {.lex_state = 23}, + [9892] = {.lex_state = 23}, + [9893] = {.lex_state = 23}, + [9894] = {.lex_state = 23}, + [9895] = {.lex_state = 23}, + [9896] = {.lex_state = 23}, + [9897] = {.lex_state = 23}, + [9898] = {.lex_state = 23}, + [9899] = {.lex_state = 23}, + [9900] = {.lex_state = 23}, + [9901] = {.lex_state = 23}, + [9902] = {.lex_state = 23}, + [9903] = {.lex_state = 23}, + [9904] = {.lex_state = 23}, + [9905] = {.lex_state = 23}, + [9906] = {.lex_state = 23}, + [9907] = {.lex_state = 23}, + [9908] = {.lex_state = 23}, + [9909] = {.lex_state = 23}, + [9910] = {.lex_state = 23}, + [9911] = {.lex_state = 23}, + [9912] = {.lex_state = 23}, + [9913] = {.lex_state = 23}, + [9914] = {.lex_state = 23}, + [9915] = {.lex_state = 23}, + [9916] = {.lex_state = 23}, + [9917] = {.lex_state = 23}, + [9918] = {.lex_state = 23}, + [9919] = {.lex_state = 23}, + [9920] = {.lex_state = 23}, + [9921] = {.lex_state = 23}, + [9922] = {.lex_state = 23}, + [9923] = {.lex_state = 23}, + [9924] = {.lex_state = 23}, + [9925] = {.lex_state = 23}, + [9926] = {.lex_state = 23}, + [9927] = {.lex_state = 23}, + [9928] = {.lex_state = 23}, + [9929] = {.lex_state = 23}, + [9930] = {.lex_state = 23}, + [9931] = {.lex_state = 23}, + [9932] = {.lex_state = 23}, + [9933] = {.lex_state = 23}, + [9934] = {.lex_state = 23}, + [9935] = {.lex_state = 23}, + [9936] = {.lex_state = 23}, + [9937] = {.lex_state = 23}, + [9938] = {.lex_state = 23}, + [9939] = {.lex_state = 23}, + [9940] = {.lex_state = 23}, + [9941] = {.lex_state = 23}, + [9942] = {.lex_state = 23}, + [9943] = {.lex_state = 23}, + [9944] = {.lex_state = 23}, + [9945] = {.lex_state = 23}, + [9946] = {.lex_state = 23}, + [9947] = {.lex_state = 23}, + [9948] = {.lex_state = 23}, + [9949] = {.lex_state = 23}, + [9950] = {.lex_state = 23}, + [9951] = {.lex_state = 23}, + [9952] = {.lex_state = 23}, + [9953] = {.lex_state = 23}, + [9954] = {.lex_state = 23}, + [9955] = {.lex_state = 23}, + [9956] = {.lex_state = 23}, + [9957] = {.lex_state = 23}, + [9958] = {.lex_state = 23}, + [9959] = {.lex_state = 23}, + [9960] = {.lex_state = 23}, + [9961] = {.lex_state = 23}, + [9962] = {.lex_state = 23}, + [9963] = {.lex_state = 23}, + [9964] = {.lex_state = 23}, + [9965] = {.lex_state = 23}, + [9966] = {.lex_state = 23}, + [9967] = {.lex_state = 23}, + [9968] = {.lex_state = 23}, + [9969] = {.lex_state = 23}, + [9970] = {.lex_state = 23}, + [9971] = {.lex_state = 23}, + [9972] = {.lex_state = 23}, + [9973] = {.lex_state = 23}, + [9974] = {.lex_state = 23}, + [9975] = {.lex_state = 23}, + [9976] = {.lex_state = 23}, + [9977] = {.lex_state = 23}, + [9978] = {.lex_state = 23}, + [9979] = {.lex_state = 23}, + [9980] = {.lex_state = 23}, + [9981] = {.lex_state = 23}, + [9982] = {.lex_state = 23}, + [9983] = {.lex_state = 23}, + [9984] = {.lex_state = 23}, + [9985] = {.lex_state = 23}, + [9986] = {.lex_state = 23}, + [9987] = {.lex_state = 23}, + [9988] = {.lex_state = 23}, + [9989] = {.lex_state = 23}, + [9990] = {.lex_state = 23}, + [9991] = {.lex_state = 23}, + [9992] = {.lex_state = 23}, + [9993] = {.lex_state = 23}, + [9994] = {.lex_state = 23}, + [9995] = {.lex_state = 23}, + [9996] = {.lex_state = 23}, + [9997] = {.lex_state = 23}, + [9998] = {.lex_state = 23}, + [9999] = {.lex_state = 23}, + [10000] = {.lex_state = 23}, + [10001] = {.lex_state = 23}, + [10002] = {.lex_state = 23}, + [10003] = {.lex_state = 23}, + [10004] = {.lex_state = 23}, + [10005] = {.lex_state = 23}, + [10006] = {.lex_state = 23}, + [10007] = {.lex_state = 23}, + [10008] = {.lex_state = 23}, + [10009] = {.lex_state = 23}, + [10010] = {.lex_state = 23}, + [10011] = {.lex_state = 23}, + [10012] = {.lex_state = 23}, + [10013] = {.lex_state = 23}, + [10014] = {.lex_state = 23}, + [10015] = {.lex_state = 23}, + [10016] = {.lex_state = 23}, + [10017] = {.lex_state = 23}, + [10018] = {.lex_state = 23}, + [10019] = {.lex_state = 23}, + [10020] = {.lex_state = 23}, + [10021] = {.lex_state = 23}, + [10022] = {.lex_state = 23}, + [10023] = {.lex_state = 23}, + [10024] = {.lex_state = 23}, + [10025] = {.lex_state = 23}, + [10026] = {.lex_state = 23}, + [10027] = {.lex_state = 23}, + [10028] = {.lex_state = 23}, + [10029] = {.lex_state = 23}, + [10030] = {.lex_state = 23}, + [10031] = {.lex_state = 23}, + [10032] = {.lex_state = 23}, + [10033] = {.lex_state = 23}, + [10034] = {.lex_state = 23}, + [10035] = {.lex_state = 23}, + [10036] = {.lex_state = 23}, + [10037] = {.lex_state = 23}, + [10038] = {.lex_state = 23}, + [10039] = {.lex_state = 23}, + [10040] = {.lex_state = 23}, + [10041] = {.lex_state = 23}, + [10042] = {.lex_state = 23}, + [10043] = {.lex_state = 23}, + [10044] = {.lex_state = 23}, + [10045] = {.lex_state = 23}, + [10046] = {.lex_state = 23}, + [10047] = {.lex_state = 23}, + [10048] = {.lex_state = 23}, + [10049] = {.lex_state = 23}, + [10050] = {.lex_state = 23}, + [10051] = {.lex_state = 23}, + [10052] = {.lex_state = 23}, + [10053] = {.lex_state = 23}, + [10054] = {.lex_state = 23}, + [10055] = {.lex_state = 23}, + [10056] = {.lex_state = 23}, + [10057] = {.lex_state = 23}, + [10058] = {.lex_state = 23}, + [10059] = {.lex_state = 23}, + [10060] = {.lex_state = 23}, + [10061] = {.lex_state = 23}, + [10062] = {.lex_state = 23}, + [10063] = {.lex_state = 23}, + [10064] = {.lex_state = 23}, + [10065] = {.lex_state = 23}, + [10066] = {.lex_state = 23}, + [10067] = {.lex_state = 23}, + [10068] = {.lex_state = 2}, + [10069] = {.lex_state = 23}, + [10070] = {.lex_state = 23}, + [10071] = {.lex_state = 23}, + [10072] = {.lex_state = 23}, + [10073] = {.lex_state = 23}, + [10074] = {.lex_state = 23}, + [10075] = {.lex_state = 23}, + [10076] = {.lex_state = 23}, + [10077] = {.lex_state = 23}, + [10078] = {.lex_state = 23}, + [10079] = {.lex_state = 23}, + [10080] = {.lex_state = 23}, + [10081] = {.lex_state = 23}, + [10082] = {.lex_state = 23}, + [10083] = {.lex_state = 23}, + [10084] = {.lex_state = 2}, + [10085] = {.lex_state = 23}, + [10086] = {.lex_state = 23}, + [10087] = {.lex_state = 23}, + [10088] = {.lex_state = 23}, + [10089] = {.lex_state = 23}, + [10090] = {.lex_state = 23}, + [10091] = {.lex_state = 23}, + [10092] = {.lex_state = 23}, + [10093] = {.lex_state = 23}, + [10094] = {.lex_state = 2}, + [10095] = {.lex_state = 23}, + [10096] = {.lex_state = 23}, + [10097] = {.lex_state = 2}, + [10098] = {.lex_state = 23}, + [10099] = {.lex_state = 23}, + [10100] = {.lex_state = 2}, + [10101] = {.lex_state = 23}, + [10102] = {.lex_state = 23}, + [10103] = {.lex_state = 23}, + [10104] = {.lex_state = 23}, + [10105] = {.lex_state = 23}, + [10106] = {.lex_state = 23}, + [10107] = {.lex_state = 23}, + [10108] = {.lex_state = 23}, + [10109] = {.lex_state = 23}, + [10110] = {.lex_state = 23}, + [10111] = {.lex_state = 23}, + [10112] = {.lex_state = 23}, + [10113] = {.lex_state = 23}, + [10114] = {.lex_state = 23}, + [10115] = {.lex_state = 23}, + [10116] = {.lex_state = 23}, + [10117] = {.lex_state = 23}, + [10118] = {.lex_state = 23}, + [10119] = {.lex_state = 23}, + [10120] = {.lex_state = 23}, + [10121] = {.lex_state = 23}, + [10122] = {.lex_state = 23}, + [10123] = {.lex_state = 23}, + [10124] = {.lex_state = 23}, + [10125] = {.lex_state = 23}, + [10126] = {.lex_state = 23}, + [10127] = {.lex_state = 2}, + [10128] = {.lex_state = 23}, + [10129] = {.lex_state = 2}, + [10130] = {.lex_state = 23}, + [10131] = {.lex_state = 23}, + [10132] = {.lex_state = 23}, + [10133] = {.lex_state = 23}, + [10134] = {.lex_state = 23}, + [10135] = {.lex_state = 23}, + [10136] = {.lex_state = 23}, + [10137] = {.lex_state = 23}, + [10138] = {.lex_state = 23}, + [10139] = {.lex_state = 23}, + [10140] = {.lex_state = 23}, + [10141] = {.lex_state = 23}, + [10142] = {.lex_state = 23}, + [10143] = {.lex_state = 23}, + [10144] = {.lex_state = 23}, + [10145] = {.lex_state = 23}, + [10146] = {.lex_state = 23}, + [10147] = {.lex_state = 23}, + [10148] = {.lex_state = 23}, + [10149] = {.lex_state = 2}, + [10150] = {.lex_state = 23}, + [10151] = {.lex_state = 23}, + [10152] = {.lex_state = 23}, + [10153] = {.lex_state = 23}, + [10154] = {.lex_state = 23}, + [10155] = {.lex_state = 23}, + [10156] = {.lex_state = 2}, + [10157] = {.lex_state = 2}, + [10158] = {.lex_state = 2}, + [10159] = {.lex_state = 2}, + [10160] = {.lex_state = 23}, + [10161] = {.lex_state = 23}, + [10162] = {.lex_state = 23}, + [10163] = {.lex_state = 23}, + [10164] = {.lex_state = 23}, + [10165] = {.lex_state = 2}, + [10166] = {.lex_state = 23}, + [10167] = {.lex_state = 23}, + [10168] = {.lex_state = 23}, + [10169] = {.lex_state = 2}, + [10170] = {.lex_state = 2}, + [10171] = {.lex_state = 2}, + [10172] = {.lex_state = 23}, + [10173] = {.lex_state = 23}, + [10174] = {.lex_state = 23}, + [10175] = {.lex_state = 2}, + [10176] = {.lex_state = 2}, + [10177] = {.lex_state = 2}, + [10178] = {.lex_state = 2}, + [10179] = {.lex_state = 2}, + [10180] = {.lex_state = 2}, + [10181] = {.lex_state = 2}, + [10182] = {.lex_state = 2}, + [10183] = {.lex_state = 2}, + [10184] = {.lex_state = 2}, + [10185] = {.lex_state = 2}, + [10186] = {.lex_state = 2}, + [10187] = {.lex_state = 2}, + [10188] = {.lex_state = 2}, + [10189] = {.lex_state = 2}, + [10190] = {.lex_state = 2}, + [10191] = {.lex_state = 2}, + [10192] = {.lex_state = 2}, + [10193] = {.lex_state = 2}, + [10194] = {.lex_state = 2}, + [10195] = {.lex_state = 2}, + [10196] = {.lex_state = 23}, + [10197] = {.lex_state = 2}, + [10198] = {.lex_state = 23}, + [10199] = {.lex_state = 23}, + [10200] = {.lex_state = 23}, + [10201] = {.lex_state = 23}, + [10202] = {.lex_state = 23}, + [10203] = {.lex_state = 23}, + [10204] = {.lex_state = 23}, + [10205] = {.lex_state = 23}, + [10206] = {.lex_state = 2}, + [10207] = {.lex_state = 2}, + [10208] = {.lex_state = 23}, + [10209] = {.lex_state = 23}, + [10210] = {.lex_state = 23}, + [10211] = {.lex_state = 23}, + [10212] = {.lex_state = 23}, + [10213] = {.lex_state = 23}, + [10214] = {.lex_state = 23}, + [10215] = {.lex_state = 2}, + [10216] = {.lex_state = 23}, + [10217] = {.lex_state = 23}, + [10218] = {.lex_state = 23}, + [10219] = {.lex_state = 2}, + [10220] = {.lex_state = 23}, + [10221] = {.lex_state = 23}, + [10222] = {.lex_state = 2}, + [10223] = {.lex_state = 23}, + [10224] = {.lex_state = 2}, + [10225] = {.lex_state = 23}, + [10226] = {.lex_state = 2}, + [10227] = {.lex_state = 23}, + [10228] = {.lex_state = 23}, + [10229] = {.lex_state = 23}, + [10230] = {.lex_state = 2}, + [10231] = {.lex_state = 2}, + [10232] = {.lex_state = 2}, + [10233] = {.lex_state = 2}, + [10234] = {.lex_state = 23}, + [10235] = {.lex_state = 23}, + [10236] = {.lex_state = 2}, + [10237] = {.lex_state = 23}, + [10238] = {.lex_state = 2}, + [10239] = {.lex_state = 23}, + [10240] = {.lex_state = 23}, + [10241] = {.lex_state = 23}, + [10242] = {.lex_state = 2}, + [10243] = {.lex_state = 23}, + [10244] = {.lex_state = 23}, + [10245] = {.lex_state = 2}, + [10246] = {.lex_state = 2}, + [10247] = {.lex_state = 23}, + [10248] = {.lex_state = 2}, + [10249] = {.lex_state = 2}, + [10250] = {.lex_state = 23}, + [10251] = {.lex_state = 23}, + [10252] = {.lex_state = 23}, + [10253] = {.lex_state = 23}, + [10254] = {.lex_state = 2}, + [10255] = {.lex_state = 23}, + [10256] = {.lex_state = 2}, + [10257] = {.lex_state = 23}, + [10258] = {.lex_state = 23}, + [10259] = {.lex_state = 23}, + [10260] = {.lex_state = 2}, + [10261] = {.lex_state = 23}, + [10262] = {.lex_state = 23}, + [10263] = {.lex_state = 23}, + [10264] = {.lex_state = 23}, + [10265] = {.lex_state = 23}, + [10266] = {.lex_state = 23}, + [10267] = {.lex_state = 23}, + [10268] = {.lex_state = 23}, + [10269] = {.lex_state = 23}, + [10270] = {.lex_state = 23}, + [10271] = {.lex_state = 2}, + [10272] = {.lex_state = 2}, + [10273] = {.lex_state = 23}, + [10274] = {.lex_state = 23}, + [10275] = {.lex_state = 23}, + [10276] = {.lex_state = 23}, + [10277] = {.lex_state = 23}, + [10278] = {.lex_state = 2}, + [10279] = {.lex_state = 23}, + [10280] = {.lex_state = 23}, + [10281] = {.lex_state = 2}, + [10282] = {.lex_state = 2}, + [10283] = {.lex_state = 2}, + [10284] = {.lex_state = 2}, + [10285] = {.lex_state = 2}, + [10286] = {.lex_state = 23}, + [10287] = {.lex_state = 2}, + [10288] = {.lex_state = 2}, + [10289] = {.lex_state = 2}, + [10290] = {.lex_state = 2}, + [10291] = {.lex_state = 2}, + [10292] = {.lex_state = 23}, + [10293] = {.lex_state = 23}, + [10294] = {.lex_state = 23}, + [10295] = {.lex_state = 23}, + [10296] = {.lex_state = 2}, + [10297] = {.lex_state = 2}, + [10298] = {.lex_state = 2}, + [10299] = {.lex_state = 2}, + [10300] = {.lex_state = 23}, + [10301] = {.lex_state = 2}, + [10302] = {.lex_state = 23}, + [10303] = {.lex_state = 23}, + [10304] = {.lex_state = 23}, + [10305] = {.lex_state = 2}, + [10306] = {.lex_state = 2}, + [10307] = {.lex_state = 23}, + [10308] = {.lex_state = 2}, + [10309] = {.lex_state = 2}, + [10310] = {.lex_state = 2}, + [10311] = {.lex_state = 2}, + [10312] = {.lex_state = 2}, + [10313] = {.lex_state = 23}, + [10314] = {.lex_state = 2}, + [10315] = {.lex_state = 23}, + [10316] = {.lex_state = 23}, + [10317] = {.lex_state = 23}, + [10318] = {.lex_state = 2}, + [10319] = {.lex_state = 2}, + [10320] = {.lex_state = 23}, + [10321] = {.lex_state = 2}, + [10322] = {.lex_state = 2}, + [10323] = {.lex_state = 23}, + [10324] = {.lex_state = 2}, + [10325] = {.lex_state = 23}, + [10326] = {.lex_state = 2}, + [10327] = {.lex_state = 23}, + [10328] = {.lex_state = 23}, + [10329] = {.lex_state = 23}, + [10330] = {.lex_state = 23}, + [10331] = {.lex_state = 23}, + [10332] = {.lex_state = 23}, + [10333] = {.lex_state = 2}, + [10334] = {.lex_state = 23}, + [10335] = {.lex_state = 23}, + [10336] = {.lex_state = 23}, + [10337] = {.lex_state = 23}, + [10338] = {.lex_state = 23}, + [10339] = {.lex_state = 2}, + [10340] = {.lex_state = 23}, + [10341] = {.lex_state = 23}, + [10342] = {.lex_state = 23}, + [10343] = {.lex_state = 2}, + [10344] = {.lex_state = 23}, + [10345] = {.lex_state = 2}, + [10346] = {.lex_state = 2}, + [10347] = {.lex_state = 23}, + [10348] = {.lex_state = 2}, + [10349] = {.lex_state = 23}, + [10350] = {.lex_state = 23}, + [10351] = {.lex_state = 23}, + [10352] = {.lex_state = 23}, + [10353] = {.lex_state = 2}, + [10354] = {.lex_state = 2}, + [10355] = {.lex_state = 23}, + [10356] = {.lex_state = 2}, + [10357] = {.lex_state = 23}, + [10358] = {.lex_state = 2}, + [10359] = {.lex_state = 23}, + [10360] = {.lex_state = 23}, + [10361] = {.lex_state = 23}, + [10362] = {.lex_state = 23}, + [10363] = {.lex_state = 2}, + [10364] = {.lex_state = 2}, + [10365] = {.lex_state = 2}, + [10366] = {.lex_state = 2}, + [10367] = {.lex_state = 2}, + [10368] = {.lex_state = 2}, + [10369] = {.lex_state = 23}, + [10370] = {.lex_state = 23}, + [10371] = {.lex_state = 23}, + [10372] = {.lex_state = 23}, + [10373] = {.lex_state = 23}, + [10374] = {.lex_state = 23}, + [10375] = {.lex_state = 23}, + [10376] = {.lex_state = 2}, + [10377] = {.lex_state = 2}, + [10378] = {.lex_state = 23}, + [10379] = {.lex_state = 23}, + [10380] = {.lex_state = 23}, + [10381] = {.lex_state = 23}, + [10382] = {.lex_state = 23}, + [10383] = {.lex_state = 23}, + [10384] = {.lex_state = 2}, + [10385] = {.lex_state = 2}, + [10386] = {.lex_state = 2}, + [10387] = {.lex_state = 23}, + [10388] = {.lex_state = 2}, + [10389] = {.lex_state = 2}, + [10390] = {.lex_state = 23}, + [10391] = {.lex_state = 23}, + [10392] = {.lex_state = 2}, + [10393] = {.lex_state = 2}, + [10394] = {.lex_state = 23}, + [10395] = {.lex_state = 23}, + [10396] = {.lex_state = 23}, + [10397] = {.lex_state = 23}, + [10398] = {.lex_state = 23}, + [10399] = {.lex_state = 23}, + [10400] = {.lex_state = 23}, + [10401] = {.lex_state = 2}, + [10402] = {.lex_state = 23}, + [10403] = {.lex_state = 23}, + [10404] = {.lex_state = 23}, + [10405] = {.lex_state = 2}, + [10406] = {.lex_state = 23}, + [10407] = {.lex_state = 23}, + [10408] = {.lex_state = 23}, + [10409] = {.lex_state = 23}, + [10410] = {.lex_state = 2}, + [10411] = {.lex_state = 23}, + [10412] = {.lex_state = 23}, + [10413] = {.lex_state = 2}, + [10414] = {.lex_state = 23}, + [10415] = {.lex_state = 23}, + [10416] = {.lex_state = 23}, + [10417] = {.lex_state = 23}, + [10418] = {.lex_state = 23}, + [10419] = {.lex_state = 23}, + [10420] = {.lex_state = 23}, + [10421] = {.lex_state = 23}, + [10422] = {.lex_state = 23}, + [10423] = {.lex_state = 2}, + [10424] = {.lex_state = 23}, + [10425] = {.lex_state = 23}, + [10426] = {.lex_state = 23}, + [10427] = {.lex_state = 23}, + [10428] = {.lex_state = 2}, + [10429] = {.lex_state = 2}, + [10430] = {.lex_state = 23}, + [10431] = {.lex_state = 23}, + [10432] = {.lex_state = 23}, + [10433] = {.lex_state = 23}, + [10434] = {.lex_state = 23}, + [10435] = {.lex_state = 23}, + [10436] = {.lex_state = 23}, + [10437] = {.lex_state = 23}, + [10438] = {.lex_state = 23}, + [10439] = {.lex_state = 23}, + [10440] = {.lex_state = 23}, + [10441] = {.lex_state = 2}, + [10442] = {.lex_state = 23}, + [10443] = {.lex_state = 23}, + [10444] = {.lex_state = 2}, + [10445] = {.lex_state = 2}, + [10446] = {.lex_state = 2}, + [10447] = {.lex_state = 23}, + [10448] = {.lex_state = 2}, + [10449] = {.lex_state = 23}, + [10450] = {.lex_state = 2}, + [10451] = {.lex_state = 2}, + [10452] = {.lex_state = 23}, + [10453] = {.lex_state = 23}, + [10454] = {.lex_state = 2}, + [10455] = {.lex_state = 23}, + [10456] = {.lex_state = 23}, + [10457] = {.lex_state = 23}, + [10458] = {.lex_state = 23}, + [10459] = {.lex_state = 23}, + [10460] = {.lex_state = 23}, + [10461] = {.lex_state = 23}, + [10462] = {.lex_state = 23}, + [10463] = {.lex_state = 23}, + [10464] = {.lex_state = 2}, + [10465] = {.lex_state = 2}, + [10466] = {.lex_state = 2}, + [10467] = {.lex_state = 2}, + [10468] = {.lex_state = 2}, + [10469] = {.lex_state = 23}, + [10470] = {.lex_state = 23}, + [10471] = {.lex_state = 2}, + [10472] = {.lex_state = 2}, + [10473] = {.lex_state = 2}, + [10474] = {.lex_state = 2}, + [10475] = {.lex_state = 2}, + [10476] = {.lex_state = 2}, + [10477] = {.lex_state = 2}, + [10478] = {.lex_state = 2}, + [10479] = {.lex_state = 2}, + [10480] = {.lex_state = 2}, + [10481] = {.lex_state = 2}, + [10482] = {.lex_state = 2}, + [10483] = {.lex_state = 2}, + [10484] = {.lex_state = 2}, + [10485] = {.lex_state = 2}, + [10486] = {.lex_state = 2}, + [10487] = {.lex_state = 2}, + [10488] = {.lex_state = 2}, + [10489] = {.lex_state = 2}, + [10490] = {.lex_state = 2}, + [10491] = {.lex_state = 2}, + [10492] = {.lex_state = 2}, + [10493] = {.lex_state = 2}, + [10494] = {.lex_state = 2}, + [10495] = {.lex_state = 2}, + [10496] = {.lex_state = 2}, + [10497] = {.lex_state = 2}, + [10498] = {.lex_state = 2}, + [10499] = {.lex_state = 2}, + [10500] = {.lex_state = 2}, + [10501] = {.lex_state = 2}, + [10502] = {.lex_state = 2}, + [10503] = {.lex_state = 2}, + [10504] = {.lex_state = 2}, + [10505] = {.lex_state = 2}, + [10506] = {.lex_state = 2}, + [10507] = {.lex_state = 2}, + [10508] = {.lex_state = 2}, + [10509] = {.lex_state = 2}, + [10510] = {.lex_state = 2}, + [10511] = {.lex_state = 2}, + [10512] = {.lex_state = 2}, + [10513] = {.lex_state = 2}, + [10514] = {.lex_state = 2}, + [10515] = {.lex_state = 2}, + [10516] = {.lex_state = 2}, + [10517] = {.lex_state = 2}, + [10518] = {.lex_state = 2}, + [10519] = {.lex_state = 2}, + [10520] = {.lex_state = 2}, + [10521] = {.lex_state = 2}, + [10522] = {.lex_state = 2}, + [10523] = {.lex_state = 2}, + [10524] = {.lex_state = 2}, + [10525] = {.lex_state = 2}, + [10526] = {.lex_state = 2}, + [10527] = {.lex_state = 2}, + [10528] = {.lex_state = 2}, + [10529] = {.lex_state = 2}, + [10530] = {.lex_state = 2}, + [10531] = {.lex_state = 2}, + [10532] = {.lex_state = 2}, + [10533] = {.lex_state = 2}, + [10534] = {.lex_state = 2}, + [10535] = {.lex_state = 2}, + [10536] = {.lex_state = 2}, + [10537] = {.lex_state = 2}, + [10538] = {.lex_state = 2}, + [10539] = {.lex_state = 2}, + [10540] = {.lex_state = 2}, + [10541] = {.lex_state = 2}, + [10542] = {.lex_state = 2}, + [10543] = {.lex_state = 2}, + [10544] = {.lex_state = 2}, + [10545] = {.lex_state = 2}, + [10546] = {.lex_state = 2}, + [10547] = {.lex_state = 2}, + [10548] = {.lex_state = 2}, + [10549] = {.lex_state = 2}, + [10550] = {.lex_state = 2}, + [10551] = {.lex_state = 2}, + [10552] = {.lex_state = 2}, + [10553] = {.lex_state = 2}, + [10554] = {.lex_state = 2}, + [10555] = {.lex_state = 2}, + [10556] = {.lex_state = 2}, + [10557] = {.lex_state = 2}, + [10558] = {.lex_state = 2}, + [10559] = {.lex_state = 2}, + [10560] = {.lex_state = 2}, + [10561] = {.lex_state = 2}, + [10562] = {.lex_state = 2}, + [10563] = {.lex_state = 2}, + [10564] = {.lex_state = 2}, + [10565] = {.lex_state = 2}, + [10566] = {.lex_state = 2}, + [10567] = {.lex_state = 2}, + [10568] = {.lex_state = 2}, + [10569] = {.lex_state = 2}, + [10570] = {.lex_state = 2}, + [10571] = {.lex_state = 2}, + [10572] = {.lex_state = 2}, + [10573] = {.lex_state = 2}, + [10574] = {.lex_state = 2}, + [10575] = {.lex_state = 2}, + [10576] = {.lex_state = 2}, + [10577] = {.lex_state = 2}, + [10578] = {.lex_state = 2}, + [10579] = {.lex_state = 2}, + [10580] = {.lex_state = 2}, + [10581] = {.lex_state = 2}, + [10582] = {.lex_state = 2}, + [10583] = {.lex_state = 2}, + [10584] = {.lex_state = 2}, + [10585] = {.lex_state = 23}, + [10586] = {.lex_state = 23}, + [10587] = {.lex_state = 2}, + [10588] = {.lex_state = 2}, + [10589] = {.lex_state = 2}, + [10590] = {.lex_state = 2}, + [10591] = {.lex_state = 2}, + [10592] = {.lex_state = 2}, + [10593] = {.lex_state = 2}, + [10594] = {.lex_state = 2}, + [10595] = {.lex_state = 2}, + [10596] = {.lex_state = 2}, + [10597] = {.lex_state = 23}, + [10598] = {.lex_state = 2}, + [10599] = {.lex_state = 2}, + [10600] = {.lex_state = 2}, + [10601] = {.lex_state = 2}, + [10602] = {.lex_state = 2}, + [10603] = {.lex_state = 2}, + [10604] = {.lex_state = 2}, + [10605] = {.lex_state = 2}, + [10606] = {.lex_state = 2}, + [10607] = {.lex_state = 2}, + [10608] = {.lex_state = 2}, + [10609] = {.lex_state = 2}, + [10610] = {.lex_state = 2}, + [10611] = {.lex_state = 2}, + [10612] = {.lex_state = 2}, + [10613] = {.lex_state = 2}, + [10614] = {.lex_state = 2}, + [10615] = {.lex_state = 2}, + [10616] = {.lex_state = 2}, + [10617] = {.lex_state = 2}, + [10618] = {.lex_state = 2}, + [10619] = {.lex_state = 2}, + [10620] = {.lex_state = 2}, + [10621] = {.lex_state = 2}, + [10622] = {.lex_state = 23}, + [10623] = {.lex_state = 2}, + [10624] = {.lex_state = 2}, + [10625] = {.lex_state = 2}, + [10626] = {.lex_state = 2}, + [10627] = {.lex_state = 2}, + [10628] = {.lex_state = 2}, + [10629] = {.lex_state = 2}, + [10630] = {.lex_state = 2}, + [10631] = {.lex_state = 2}, + [10632] = {.lex_state = 2}, + [10633] = {.lex_state = 23}, + [10634] = {.lex_state = 2}, + [10635] = {.lex_state = 2}, + [10636] = {.lex_state = 2}, + [10637] = {.lex_state = 2}, + [10638] = {.lex_state = 2}, + [10639] = {.lex_state = 2}, + [10640] = {.lex_state = 2}, + [10641] = {.lex_state = 2}, + [10642] = {.lex_state = 2}, + [10643] = {.lex_state = 2}, + [10644] = {.lex_state = 2}, + [10645] = {.lex_state = 23}, + [10646] = {.lex_state = 2}, + [10647] = {.lex_state = 2}, + [10648] = {.lex_state = 2}, + [10649] = {.lex_state = 2}, + [10650] = {.lex_state = 2}, + [10651] = {.lex_state = 2}, + [10652] = {.lex_state = 2}, + [10653] = {.lex_state = 2}, + [10654] = {.lex_state = 2}, + [10655] = {.lex_state = 2}, + [10656] = {.lex_state = 2}, + [10657] = {.lex_state = 2}, + [10658] = {.lex_state = 2}, + [10659] = {.lex_state = 2}, + [10660] = {.lex_state = 2}, + [10661] = {.lex_state = 2}, + [10662] = {.lex_state = 2}, + [10663] = {.lex_state = 2}, + [10664] = {.lex_state = 2}, + [10665] = {.lex_state = 2}, + [10666] = {.lex_state = 2}, + [10667] = {.lex_state = 2}, + [10668] = {.lex_state = 2}, + [10669] = {.lex_state = 2}, + [10670] = {.lex_state = 2}, + [10671] = {.lex_state = 2}, + [10672] = {.lex_state = 2}, + [10673] = {.lex_state = 2}, + [10674] = {.lex_state = 2}, + [10675] = {.lex_state = 2}, + [10676] = {.lex_state = 2}, + [10677] = {.lex_state = 2}, + [10678] = {.lex_state = 2}, + [10679] = {.lex_state = 2}, + [10680] = {.lex_state = 2}, + [10681] = {.lex_state = 2}, + [10682] = {.lex_state = 2}, + [10683] = {.lex_state = 2}, + [10684] = {.lex_state = 2}, + [10685] = {.lex_state = 2}, + [10686] = {.lex_state = 2}, + [10687] = {.lex_state = 2}, + [10688] = {.lex_state = 2}, + [10689] = {.lex_state = 2}, + [10690] = {.lex_state = 2}, + [10691] = {.lex_state = 2}, + [10692] = {.lex_state = 2}, + [10693] = {.lex_state = 2}, + [10694] = {.lex_state = 2}, + [10695] = {.lex_state = 2}, + [10696] = {.lex_state = 2}, + [10697] = {.lex_state = 2}, + [10698] = {.lex_state = 2}, + [10699] = {.lex_state = 2}, + [10700] = {.lex_state = 2}, + [10701] = {.lex_state = 2}, + [10702] = {.lex_state = 2}, + [10703] = {.lex_state = 2}, + [10704] = {.lex_state = 2}, + [10705] = {.lex_state = 2}, + [10706] = {.lex_state = 2}, + [10707] = {.lex_state = 2}, + [10708] = {.lex_state = 2}, + [10709] = {.lex_state = 2}, + [10710] = {.lex_state = 2}, + [10711] = {.lex_state = 2}, + [10712] = {.lex_state = 2}, + [10713] = {.lex_state = 2}, + [10714] = {.lex_state = 2}, + [10715] = {.lex_state = 2}, + [10716] = {.lex_state = 2}, + [10717] = {.lex_state = 2}, + [10718] = {.lex_state = 2}, + [10719] = {.lex_state = 2}, + [10720] = {.lex_state = 2}, + [10721] = {.lex_state = 2}, + [10722] = {.lex_state = 2}, + [10723] = {.lex_state = 2}, + [10724] = {.lex_state = 2}, + [10725] = {.lex_state = 2}, + [10726] = {.lex_state = 2}, + [10727] = {.lex_state = 2}, + [10728] = {.lex_state = 2}, + [10729] = {.lex_state = 2}, + [10730] = {.lex_state = 2}, + [10731] = {.lex_state = 2}, + [10732] = {.lex_state = 2}, + [10733] = {.lex_state = 2}, + [10734] = {.lex_state = 2}, + [10735] = {.lex_state = 2}, + [10736] = {.lex_state = 2}, + [10737] = {.lex_state = 2}, + [10738] = {.lex_state = 2}, + [10739] = {.lex_state = 2}, + [10740] = {.lex_state = 2}, + [10741] = {.lex_state = 2}, + [10742] = {.lex_state = 2}, + [10743] = {.lex_state = 2}, + [10744] = {.lex_state = 2}, + [10745] = {.lex_state = 2}, + [10746] = {.lex_state = 2}, + [10747] = {.lex_state = 2}, + [10748] = {.lex_state = 2}, + [10749] = {.lex_state = 2}, + [10750] = {.lex_state = 2}, + [10751] = {.lex_state = 23}, + [10752] = {.lex_state = 2}, + [10753] = {.lex_state = 2}, + [10754] = {.lex_state = 2}, + [10755] = {.lex_state = 2}, + [10756] = {.lex_state = 2}, + [10757] = {.lex_state = 2}, + [10758] = {.lex_state = 2}, + [10759] = {.lex_state = 2}, + [10760] = {.lex_state = 2}, + [10761] = {.lex_state = 2}, + [10762] = {.lex_state = 2}, + [10763] = {.lex_state = 2}, + [10764] = {.lex_state = 2}, + [10765] = {.lex_state = 2}, + [10766] = {.lex_state = 2}, + [10767] = {.lex_state = 23}, + [10768] = {.lex_state = 2}, + [10769] = {.lex_state = 2}, + [10770] = {.lex_state = 2}, + [10771] = {.lex_state = 2}, + [10772] = {.lex_state = 2}, + [10773] = {.lex_state = 2}, + [10774] = {.lex_state = 2}, + [10775] = {.lex_state = 2}, + [10776] = {.lex_state = 2}, + [10777] = {.lex_state = 2}, + [10778] = {.lex_state = 2}, + [10779] = {.lex_state = 2}, + [10780] = {.lex_state = 2}, + [10781] = {.lex_state = 2}, + [10782] = {.lex_state = 2}, + [10783] = {.lex_state = 2}, + [10784] = {.lex_state = 2}, + [10785] = {.lex_state = 2}, + [10786] = {.lex_state = 2}, + [10787] = {.lex_state = 2}, + [10788] = {.lex_state = 2}, + [10789] = {.lex_state = 2}, + [10790] = {.lex_state = 2}, + [10791] = {.lex_state = 2}, + [10792] = {.lex_state = 2}, + [10793] = {.lex_state = 2}, + [10794] = {.lex_state = 2}, + [10795] = {.lex_state = 2}, + [10796] = {.lex_state = 2}, + [10797] = {.lex_state = 2}, + [10798] = {.lex_state = 2}, + [10799] = {.lex_state = 2}, + [10800] = {.lex_state = 2}, + [10801] = {.lex_state = 2}, + [10802] = {.lex_state = 2}, + [10803] = {.lex_state = 2}, + [10804] = {.lex_state = 2}, + [10805] = {.lex_state = 23}, + [10806] = {.lex_state = 2}, + [10807] = {.lex_state = 2}, + [10808] = {.lex_state = 2}, + [10809] = {.lex_state = 2}, + [10810] = {.lex_state = 2}, + [10811] = {.lex_state = 2}, + [10812] = {.lex_state = 2}, + [10813] = {.lex_state = 2}, + [10814] = {.lex_state = 2}, + [10815] = {.lex_state = 2}, + [10816] = {.lex_state = 2}, + [10817] = {.lex_state = 2}, + [10818] = {.lex_state = 2}, + [10819] = {.lex_state = 2}, + [10820] = {.lex_state = 2}, + [10821] = {.lex_state = 2}, + [10822] = {.lex_state = 2}, + [10823] = {.lex_state = 2}, + [10824] = {.lex_state = 2}, + [10825] = {.lex_state = 2}, + [10826] = {.lex_state = 2}, + [10827] = {.lex_state = 23}, + [10828] = {.lex_state = 2}, + [10829] = {.lex_state = 2}, + [10830] = {.lex_state = 2}, + [10831] = {.lex_state = 2}, + [10832] = {.lex_state = 2}, + [10833] = {.lex_state = 23}, + [10834] = {.lex_state = 23}, + [10835] = {.lex_state = 23}, + [10836] = {.lex_state = 23}, + [10837] = {.lex_state = 23}, + [10838] = {.lex_state = 25}, + [10839] = {.lex_state = 25}, + [10840] = {.lex_state = 25}, + [10841] = {.lex_state = 25}, + [10842] = {.lex_state = 25}, + [10843] = {.lex_state = 25}, + [10844] = {.lex_state = 25}, + [10845] = {.lex_state = 25}, + [10846] = {.lex_state = 25}, + [10847] = {.lex_state = 25}, + [10848] = {.lex_state = 25}, + [10849] = {.lex_state = 25}, + [10850] = {.lex_state = 25}, + [10851] = {.lex_state = 25}, + [10852] = {.lex_state = 25}, + [10853] = {.lex_state = 25}, + [10854] = {.lex_state = 25}, + [10855] = {.lex_state = 25}, + [10856] = {.lex_state = 25}, + [10857] = {.lex_state = 25}, + [10858] = {.lex_state = 25}, + [10859] = {.lex_state = 25}, + [10860] = {.lex_state = 25}, + [10861] = {.lex_state = 25}, + [10862] = {.lex_state = 25}, + [10863] = {.lex_state = 25}, + [10864] = {.lex_state = 25}, + [10865] = {.lex_state = 25}, + [10866] = {.lex_state = 25}, + [10867] = {.lex_state = 25}, + [10868] = {.lex_state = 25}, + [10869] = {.lex_state = 25}, + [10870] = {.lex_state = 25}, + [10871] = {.lex_state = 25}, + [10872] = {.lex_state = 25}, + [10873] = {.lex_state = 25}, + [10874] = {.lex_state = 25}, + [10875] = {.lex_state = 25}, + [10876] = {.lex_state = 25}, + [10877] = {.lex_state = 25}, + [10878] = {.lex_state = 25}, + [10879] = {.lex_state = 25}, + [10880] = {.lex_state = 25}, + [10881] = {.lex_state = 25}, + [10882] = {.lex_state = 25}, + [10883] = {.lex_state = 25}, + [10884] = {.lex_state = 25}, + [10885] = {.lex_state = 25}, + [10886] = {.lex_state = 25}, + [10887] = {.lex_state = 25}, + [10888] = {.lex_state = 25}, + [10889] = {.lex_state = 25}, + [10890] = {.lex_state = 25}, + [10891] = {.lex_state = 25}, + [10892] = {.lex_state = 25}, + [10893] = {.lex_state = 25}, + [10894] = {.lex_state = 25}, + [10895] = {.lex_state = 25}, + [10896] = {.lex_state = 25}, + [10897] = {.lex_state = 25}, + [10898] = {.lex_state = 25}, + [10899] = {.lex_state = 25}, + [10900] = {.lex_state = 25}, + [10901] = {.lex_state = 25}, + [10902] = {.lex_state = 25}, + [10903] = {.lex_state = 25}, + [10904] = {.lex_state = 25}, + [10905] = {.lex_state = 25}, + [10906] = {.lex_state = 25}, + [10907] = {.lex_state = 25}, + [10908] = {.lex_state = 25}, + [10909] = {.lex_state = 25}, + [10910] = {.lex_state = 25}, + [10911] = {.lex_state = 25}, + [10912] = {.lex_state = 25}, + [10913] = {.lex_state = 25}, + [10914] = {.lex_state = 25}, + [10915] = {.lex_state = 25}, + [10916] = {.lex_state = 25}, + [10917] = {.lex_state = 25}, + [10918] = {.lex_state = 25}, + [10919] = {.lex_state = 6}, + [10920] = {.lex_state = 25}, + [10921] = {.lex_state = 25}, + [10922] = {.lex_state = 6}, + [10923] = {.lex_state = 25}, + [10924] = {.lex_state = 25}, + [10925] = {.lex_state = 6}, + [10926] = {.lex_state = 25}, + [10927] = {.lex_state = 6}, + [10928] = {.lex_state = 6}, + [10929] = {.lex_state = 25}, + [10930] = {.lex_state = 6}, + [10931] = {.lex_state = 6}, + [10932] = {.lex_state = 25}, + [10933] = {.lex_state = 25}, + [10934] = {.lex_state = 25}, + [10935] = {.lex_state = 25}, + [10936] = {.lex_state = 25}, + [10937] = {.lex_state = 6}, + [10938] = {.lex_state = 25}, + [10939] = {.lex_state = 6}, + [10940] = {.lex_state = 6}, + [10941] = {.lex_state = 25}, + [10942] = {.lex_state = 6}, + [10943] = {.lex_state = 6}, + [10944] = {.lex_state = 6}, + [10945] = {.lex_state = 6}, + [10946] = {.lex_state = 25}, + [10947] = {.lex_state = 25}, + [10948] = {.lex_state = 6}, + [10949] = {.lex_state = 0}, + [10950] = {.lex_state = 6}, + [10951] = {.lex_state = 25}, + [10952] = {.lex_state = 0}, + [10953] = {.lex_state = 6}, + [10954] = {.lex_state = 6}, + [10955] = {.lex_state = 0}, + [10956] = {.lex_state = 25}, + [10957] = {.lex_state = 25}, + [10958] = {.lex_state = 25}, + [10959] = {.lex_state = 25}, + [10960] = {.lex_state = 25}, + [10961] = {.lex_state = 25}, + [10962] = {.lex_state = 25}, + [10963] = {.lex_state = 25}, + [10964] = {.lex_state = 25}, + [10965] = {.lex_state = 25}, + [10966] = {.lex_state = 25}, + [10967] = {.lex_state = 25}, + [10968] = {.lex_state = 25}, + [10969] = {.lex_state = 25}, + [10970] = {.lex_state = 25}, + [10971] = {.lex_state = 25}, + [10972] = {.lex_state = 25}, + [10973] = {.lex_state = 25}, + [10974] = {.lex_state = 25}, + [10975] = {.lex_state = 25}, + [10976] = {.lex_state = 25}, + [10977] = {.lex_state = 25}, + [10978] = {.lex_state = 25}, + [10979] = {.lex_state = 25}, + [10980] = {.lex_state = 25}, + [10981] = {.lex_state = 25}, + [10982] = {.lex_state = 25}, + [10983] = {.lex_state = 25}, + [10984] = {.lex_state = 25}, + [10985] = {.lex_state = 25}, + [10986] = {.lex_state = 25}, + [10987] = {.lex_state = 25}, + [10988] = {.lex_state = 25}, + [10989] = {.lex_state = 25}, + [10990] = {.lex_state = 25}, + [10991] = {.lex_state = 25}, + [10992] = {.lex_state = 25}, + [10993] = {.lex_state = 25}, + [10994] = {.lex_state = 25}, + [10995] = {.lex_state = 25}, + [10996] = {.lex_state = 25}, + [10997] = {.lex_state = 25}, + [10998] = {.lex_state = 25}, + [10999] = {.lex_state = 25}, + [11000] = {.lex_state = 25}, + [11001] = {.lex_state = 25}, + [11002] = {.lex_state = 25}, + [11003] = {.lex_state = 25}, + [11004] = {.lex_state = 25}, + [11005] = {.lex_state = 25}, + [11006] = {.lex_state = 25}, + [11007] = {.lex_state = 25}, + [11008] = {.lex_state = 25}, + [11009] = {.lex_state = 25}, + [11010] = {.lex_state = 25}, + [11011] = {.lex_state = 25}, + [11012] = {.lex_state = 25}, + [11013] = {.lex_state = 25}, + [11014] = {.lex_state = 25}, + [11015] = {.lex_state = 25}, + [11016] = {.lex_state = 25}, + [11017] = {.lex_state = 25}, + [11018] = {.lex_state = 25}, + [11019] = {.lex_state = 25}, + [11020] = {.lex_state = 25}, + [11021] = {.lex_state = 25}, + [11022] = {.lex_state = 25}, + [11023] = {.lex_state = 25}, + [11024] = {.lex_state = 25}, + [11025] = {.lex_state = 25}, + [11026] = {.lex_state = 25}, + [11027] = {.lex_state = 25}, + [11028] = {.lex_state = 25}, + [11029] = {.lex_state = 25}, + [11030] = {.lex_state = 25}, + [11031] = {.lex_state = 25}, + [11032] = {.lex_state = 25}, + [11033] = {.lex_state = 25}, + [11034] = {.lex_state = 25}, + [11035] = {.lex_state = 25}, + [11036] = {.lex_state = 25}, + [11037] = {.lex_state = 25}, + [11038] = {.lex_state = 25}, + [11039] = {.lex_state = 25}, + [11040] = {.lex_state = 25}, + [11041] = {.lex_state = 25}, + [11042] = {.lex_state = 25}, + [11043] = {.lex_state = 25}, + [11044] = {.lex_state = 25}, + [11045] = {.lex_state = 25}, + [11046] = {.lex_state = 25}, + [11047] = {.lex_state = 25}, + [11048] = {.lex_state = 25}, + [11049] = {.lex_state = 25}, + [11050] = {.lex_state = 25}, + [11051] = {.lex_state = 0}, + [11052] = {.lex_state = 0}, + [11053] = {.lex_state = 0}, + [11054] = {.lex_state = 0}, + [11055] = {.lex_state = 25}, + [11056] = {.lex_state = 0}, + [11057] = {.lex_state = 25}, + [11058] = {.lex_state = 0}, + [11059] = {.lex_state = 0}, + [11060] = {.lex_state = 25}, + [11061] = {.lex_state = 25}, + [11062] = {.lex_state = 25}, + [11063] = {.lex_state = 25}, + [11064] = {.lex_state = 0}, + [11065] = {.lex_state = 25}, + [11066] = {.lex_state = 25}, + [11067] = {.lex_state = 0}, + [11068] = {.lex_state = 0}, + [11069] = {.lex_state = 0}, + [11070] = {.lex_state = 25}, + [11071] = {.lex_state = 0}, + [11072] = {.lex_state = 0}, + [11073] = {.lex_state = 0}, + [11074] = {.lex_state = 25}, + [11075] = {.lex_state = 0}, + [11076] = {.lex_state = 25}, + [11077] = {.lex_state = 0}, + [11078] = {.lex_state = 25}, + [11079] = {.lex_state = 25}, + [11080] = {.lex_state = 25}, + [11081] = {.lex_state = 25}, + [11082] = {.lex_state = 0}, + [11083] = {.lex_state = 0}, + [11084] = {.lex_state = 0}, + [11085] = {.lex_state = 25}, + [11086] = {.lex_state = 25}, + [11087] = {.lex_state = 25}, + [11088] = {.lex_state = 0}, + [11089] = {.lex_state = 25}, + [11090] = {.lex_state = 0}, + [11091] = {.lex_state = 0}, + [11092] = {.lex_state = 0}, + [11093] = {.lex_state = 25}, + [11094] = {.lex_state = 0}, + [11095] = {.lex_state = 0}, + [11096] = {.lex_state = 25}, + [11097] = {.lex_state = 25}, + [11098] = {.lex_state = 25}, + [11099] = {.lex_state = 25}, + [11100] = {.lex_state = 0}, + [11101] = {.lex_state = 0}, + [11102] = {.lex_state = 0}, + [11103] = {.lex_state = 0}, + [11104] = {.lex_state = 0}, + [11105] = {.lex_state = 0}, + [11106] = {.lex_state = 0}, + [11107] = {.lex_state = 25}, + [11108] = {.lex_state = 25}, + [11109] = {.lex_state = 25}, + [11110] = {.lex_state = 25}, + [11111] = {.lex_state = 25}, + [11112] = {.lex_state = 0}, + [11113] = {.lex_state = 0}, + [11114] = {.lex_state = 0}, + [11115] = {.lex_state = 0}, + [11116] = {.lex_state = 25}, + [11117] = {.lex_state = 25}, + [11118] = {.lex_state = 25}, + [11119] = {.lex_state = 25}, + [11120] = {.lex_state = 0}, + [11121] = {.lex_state = 25}, + [11122] = {.lex_state = 25}, + [11123] = {.lex_state = 25}, + [11124] = {.lex_state = 25}, + [11125] = {.lex_state = 25}, + [11126] = {.lex_state = 0}, + [11127] = {.lex_state = 25}, + [11128] = {.lex_state = 25}, + [11129] = {.lex_state = 25}, + [11130] = {.lex_state = 25}, + [11131] = {.lex_state = 25}, + [11132] = {.lex_state = 25}, + [11133] = {.lex_state = 25}, + [11134] = {.lex_state = 0}, + [11135] = {.lex_state = 0}, + [11136] = {.lex_state = 25}, + [11137] = {.lex_state = 0}, + [11138] = {.lex_state = 25}, + [11139] = {.lex_state = 0}, + [11140] = {.lex_state = 25}, + [11141] = {.lex_state = 25}, + [11142] = {.lex_state = 25}, + [11143] = {.lex_state = 25}, + [11144] = {.lex_state = 25}, + [11145] = {.lex_state = 25}, + [11146] = {.lex_state = 25}, + [11147] = {.lex_state = 25}, + [11148] = {.lex_state = 25}, + [11149] = {.lex_state = 25}, + [11150] = {.lex_state = 25}, + [11151] = {.lex_state = 0}, + [11152] = {.lex_state = 25}, + [11153] = {.lex_state = 0}, + [11154] = {.lex_state = 25}, + [11155] = {.lex_state = 25}, + [11156] = {.lex_state = 25}, + [11157] = {.lex_state = 25}, + [11158] = {.lex_state = 25}, + [11159] = {.lex_state = 25}, + [11160] = {.lex_state = 25}, + [11161] = {.lex_state = 25}, + [11162] = {.lex_state = 25}, + [11163] = {.lex_state = 25}, + [11164] = {.lex_state = 25}, + [11165] = {.lex_state = 25}, + [11166] = {.lex_state = 25}, + [11167] = {.lex_state = 25}, + [11168] = {.lex_state = 25}, + [11169] = {.lex_state = 25}, + [11170] = {.lex_state = 0}, + [11171] = {.lex_state = 25}, + [11172] = {.lex_state = 25}, + [11173] = {.lex_state = 25}, + [11174] = {.lex_state = 25}, + [11175] = {.lex_state = 25}, + [11176] = {.lex_state = 25}, + [11177] = {.lex_state = 25}, + [11178] = {.lex_state = 25}, + [11179] = {.lex_state = 25}, + [11180] = {.lex_state = 25}, + [11181] = {.lex_state = 25}, + [11182] = {.lex_state = 25}, + [11183] = {.lex_state = 25}, + [11184] = {.lex_state = 25}, + [11185] = {.lex_state = 25}, + [11186] = {.lex_state = 25}, + [11187] = {.lex_state = 25}, + [11188] = {.lex_state = 25}, + [11189] = {.lex_state = 25}, + [11190] = {.lex_state = 25}, + [11191] = {.lex_state = 25}, + [11192] = {.lex_state = 25}, + [11193] = {.lex_state = 25}, + [11194] = {.lex_state = 25}, + [11195] = {.lex_state = 25}, + [11196] = {.lex_state = 25}, + [11197] = {.lex_state = 25}, + [11198] = {.lex_state = 25}, + [11199] = {.lex_state = 25}, + [11200] = {.lex_state = 25}, + [11201] = {.lex_state = 25}, + [11202] = {.lex_state = 25}, + [11203] = {.lex_state = 25}, + [11204] = {.lex_state = 25}, + [11205] = {.lex_state = 0}, + [11206] = {.lex_state = 0}, + [11207] = {.lex_state = 25}, + [11208] = {.lex_state = 25}, + [11209] = {.lex_state = 25}, + [11210] = {.lex_state = 25}, + [11211] = {.lex_state = 25}, + [11212] = {.lex_state = 25}, + [11213] = {.lex_state = 25}, + [11214] = {.lex_state = 25}, + [11215] = {.lex_state = 25}, + [11216] = {.lex_state = 25}, + [11217] = {.lex_state = 0}, + [11218] = {.lex_state = 25}, + [11219] = {.lex_state = 25}, + [11220] = {.lex_state = 25}, + [11221] = {.lex_state = 0}, + [11222] = {.lex_state = 0}, + [11223] = {.lex_state = 25}, + [11224] = {.lex_state = 25}, + [11225] = {.lex_state = 25}, + [11226] = {.lex_state = 0}, + [11227] = {.lex_state = 25}, + [11228] = {.lex_state = 0}, + [11229] = {.lex_state = 25}, + [11230] = {.lex_state = 25}, + [11231] = {.lex_state = 25}, + [11232] = {.lex_state = 25}, + [11233] = {.lex_state = 25}, + [11234] = {.lex_state = 25}, + [11235] = {.lex_state = 25}, + [11236] = {.lex_state = 25}, + [11237] = {.lex_state = 25}, + [11238] = {.lex_state = 25}, + [11239] = {.lex_state = 25}, + [11240] = {.lex_state = 25}, + [11241] = {.lex_state = 25}, + [11242] = {.lex_state = 25}, + [11243] = {.lex_state = 25}, + [11244] = {.lex_state = 25}, + [11245] = {.lex_state = 25}, + [11246] = {.lex_state = 25}, + [11247] = {.lex_state = 25}, + [11248] = {.lex_state = 25}, + [11249] = {.lex_state = 25}, + [11250] = {.lex_state = 25}, + [11251] = {.lex_state = 25}, + [11252] = {.lex_state = 25}, + [11253] = {.lex_state = 25}, + [11254] = {.lex_state = 25}, + [11255] = {.lex_state = 25}, + [11256] = {.lex_state = 25}, + [11257] = {.lex_state = 25}, + [11258] = {.lex_state = 25}, + [11259] = {.lex_state = 25}, + [11260] = {.lex_state = 25}, + [11261] = {.lex_state = 25}, + [11262] = {.lex_state = 25}, + [11263] = {.lex_state = 25}, + [11264] = {.lex_state = 25}, + [11265] = {.lex_state = 25}, + [11266] = {.lex_state = 25}, + [11267] = {.lex_state = 25}, + [11268] = {.lex_state = 25}, + [11269] = {.lex_state = 25}, + [11270] = {.lex_state = 25}, + [11271] = {.lex_state = 25}, + [11272] = {.lex_state = 25}, + [11273] = {.lex_state = 25}, + [11274] = {.lex_state = 25}, + [11275] = {.lex_state = 25}, + [11276] = {.lex_state = 25}, + [11277] = {.lex_state = 25}, + [11278] = {.lex_state = 25}, + [11279] = {.lex_state = 25}, + [11280] = {.lex_state = 25}, + [11281] = {.lex_state = 25}, + [11282] = {.lex_state = 25}, + [11283] = {.lex_state = 25}, + [11284] = {.lex_state = 25}, + [11285] = {.lex_state = 25}, + [11286] = {.lex_state = 25}, + [11287] = {.lex_state = 25}, + [11288] = {.lex_state = 25}, + [11289] = {.lex_state = 25}, + [11290] = {.lex_state = 25}, + [11291] = {.lex_state = 25}, + [11292] = {.lex_state = 25}, + [11293] = {.lex_state = 25}, + [11294] = {.lex_state = 25}, + [11295] = {.lex_state = 25}, + [11296] = {.lex_state = 25}, + [11297] = {.lex_state = 25}, + [11298] = {.lex_state = 25}, + [11299] = {.lex_state = 25}, + [11300] = {.lex_state = 0}, + [11301] = {.lex_state = 0}, + [11302] = {.lex_state = 25}, + [11303] = {.lex_state = 25}, + [11304] = {.lex_state = 25}, + [11305] = {.lex_state = 25}, + [11306] = {.lex_state = 25}, + [11307] = {.lex_state = 25}, + [11308] = {.lex_state = 25}, + [11309] = {.lex_state = 25}, + [11310] = {.lex_state = 25}, + [11311] = {.lex_state = 25}, + [11312] = {.lex_state = 25}, + [11313] = {.lex_state = 25}, + [11314] = {.lex_state = 0}, + [11315] = {.lex_state = 25}, + [11316] = {.lex_state = 25}, + [11317] = {.lex_state = 0}, + [11318] = {.lex_state = 25}, + [11319] = {.lex_state = 25}, + [11320] = {.lex_state = 25}, + [11321] = {.lex_state = 25}, + [11322] = {.lex_state = 25}, + [11323] = {.lex_state = 25}, + [11324] = {.lex_state = 25}, + [11325] = {.lex_state = 25}, + [11326] = {.lex_state = 25}, + [11327] = {.lex_state = 25}, + [11328] = {.lex_state = 25}, + [11329] = {.lex_state = 25}, + [11330] = {.lex_state = 25}, + [11331] = {.lex_state = 25}, + [11332] = {.lex_state = 25}, + [11333] = {.lex_state = 25}, + [11334] = {.lex_state = 25}, + [11335] = {.lex_state = 25}, + [11336] = {.lex_state = 25}, + [11337] = {.lex_state = 25}, + [11338] = {.lex_state = 25}, + [11339] = {.lex_state = 25}, + [11340] = {.lex_state = 25}, + [11341] = {.lex_state = 25}, + [11342] = {.lex_state = 25}, + [11343] = {.lex_state = 25}, + [11344] = {.lex_state = 25}, + [11345] = {.lex_state = 25}, + [11346] = {.lex_state = 25}, + [11347] = {.lex_state = 25}, + [11348] = {.lex_state = 25}, + [11349] = {.lex_state = 25}, + [11350] = {.lex_state = 25}, + [11351] = {.lex_state = 25}, + [11352] = {.lex_state = 25}, + [11353] = {.lex_state = 25}, + [11354] = {.lex_state = 25}, + [11355] = {.lex_state = 25}, + [11356] = {.lex_state = 25}, + [11357] = {.lex_state = 25}, + [11358] = {.lex_state = 0}, + [11359] = {.lex_state = 25}, + [11360] = {.lex_state = 25}, + [11361] = {.lex_state = 25}, + [11362] = {.lex_state = 25}, + [11363] = {.lex_state = 25}, + [11364] = {.lex_state = 25}, + [11365] = {.lex_state = 25}, + [11366] = {.lex_state = 25}, + [11367] = {.lex_state = 0}, + [11368] = {.lex_state = 25}, + [11369] = {.lex_state = 25}, + [11370] = {.lex_state = 0}, + [11371] = {.lex_state = 0}, + [11372] = {.lex_state = 25}, + [11373] = {.lex_state = 25}, + [11374] = {.lex_state = 25}, + [11375] = {.lex_state = 25}, + [11376] = {.lex_state = 0}, + [11377] = {.lex_state = 0}, + [11378] = {.lex_state = 0}, + [11379] = {.lex_state = 0}, + [11380] = {.lex_state = 25}, + [11381] = {.lex_state = 25}, + [11382] = {.lex_state = 25}, + [11383] = {.lex_state = 25}, + [11384] = {.lex_state = 25}, + [11385] = {.lex_state = 0}, + [11386] = {.lex_state = 25}, + [11387] = {.lex_state = 25}, + [11388] = {.lex_state = 25}, + [11389] = {.lex_state = 25}, + [11390] = {.lex_state = 25}, + [11391] = {.lex_state = 25}, + [11392] = {.lex_state = 25}, + [11393] = {.lex_state = 0}, + [11394] = {.lex_state = 0}, + [11395] = {.lex_state = 25}, + [11396] = {.lex_state = 25}, + [11397] = {.lex_state = 0}, + [11398] = {.lex_state = 25}, + [11399] = {.lex_state = 25}, + [11400] = {.lex_state = 25}, + [11401] = {.lex_state = 0}, + [11402] = {.lex_state = 0}, + [11403] = {.lex_state = 0}, + [11404] = {.lex_state = 25}, + [11405] = {.lex_state = 0}, + [11406] = {.lex_state = 25}, + [11407] = {.lex_state = 25}, + [11408] = {.lex_state = 0}, + [11409] = {.lex_state = 0}, + [11410] = {.lex_state = 25}, + [11411] = {.lex_state = 25}, + [11412] = {.lex_state = 25}, + [11413] = {.lex_state = 25}, + [11414] = {.lex_state = 0}, + [11415] = {.lex_state = 0}, + [11416] = {.lex_state = 0}, + [11417] = {.lex_state = 0}, + [11418] = {.lex_state = 25}, + [11419] = {.lex_state = 25}, + [11420] = {.lex_state = 0}, + [11421] = {.lex_state = 0}, + [11422] = {.lex_state = 0}, + [11423] = {.lex_state = 0}, + [11424] = {.lex_state = 25}, + [11425] = {.lex_state = 0}, + [11426] = {.lex_state = 0}, + [11427] = {.lex_state = 0}, + [11428] = {.lex_state = 25}, + [11429] = {.lex_state = 25}, + [11430] = {.lex_state = 0}, + [11431] = {.lex_state = 25}, + [11432] = {.lex_state = 0}, + [11433] = {.lex_state = 0}, + [11434] = {.lex_state = 0}, + [11435] = {.lex_state = 0}, + [11436] = {.lex_state = 0}, + [11437] = {.lex_state = 25}, + [11438] = {.lex_state = 0}, + [11439] = {.lex_state = 0}, + [11440] = {.lex_state = 0}, + [11441] = {.lex_state = 0}, + [11442] = {.lex_state = 25}, + [11443] = {.lex_state = 25}, + [11444] = {.lex_state = 25}, + [11445] = {.lex_state = 0}, + [11446] = {.lex_state = 25}, + [11447] = {.lex_state = 0}, + [11448] = {.lex_state = 25}, + [11449] = {.lex_state = 25}, + [11450] = {.lex_state = 25}, + [11451] = {.lex_state = 0}, + [11452] = {.lex_state = 25}, + [11453] = {.lex_state = 0}, + [11454] = {.lex_state = 25}, + [11455] = {.lex_state = 25}, + [11456] = {.lex_state = 0}, + [11457] = {.lex_state = 25}, + [11458] = {.lex_state = 0}, + [11459] = {.lex_state = 25}, + [11460] = {.lex_state = 0}, + [11461] = {.lex_state = 25}, + [11462] = {.lex_state = 25}, + [11463] = {.lex_state = 25}, + [11464] = {.lex_state = 25}, + [11465] = {.lex_state = 25}, + [11466] = {.lex_state = 25}, + [11467] = {.lex_state = 0}, + [11468] = {.lex_state = 25}, + [11469] = {.lex_state = 0}, + [11470] = {.lex_state = 0}, + [11471] = {.lex_state = 0}, + [11472] = {.lex_state = 25}, + [11473] = {.lex_state = 0}, + [11474] = {.lex_state = 25}, + [11475] = {.lex_state = 0}, + [11476] = {.lex_state = 25}, + [11477] = {.lex_state = 25}, + [11478] = {.lex_state = 25}, + [11479] = {.lex_state = 25}, + [11480] = {.lex_state = 25}, + [11481] = {.lex_state = 25}, + [11482] = {.lex_state = 25}, + [11483] = {.lex_state = 25}, + [11484] = {.lex_state = 25}, + [11485] = {.lex_state = 25}, + [11486] = {.lex_state = 25}, + [11487] = {.lex_state = 25}, + [11488] = {.lex_state = 25}, + [11489] = {.lex_state = 25}, + [11490] = {.lex_state = 25}, + [11491] = {.lex_state = 25}, + [11492] = {.lex_state = 0}, + [11493] = {.lex_state = 25}, + [11494] = {.lex_state = 25}, + [11495] = {.lex_state = 0}, + [11496] = {.lex_state = 25}, + [11497] = {.lex_state = 25}, + [11498] = {.lex_state = 0}, + [11499] = {.lex_state = 25}, + [11500] = {.lex_state = 25}, + [11501] = {.lex_state = 25}, + [11502] = {.lex_state = 25}, + [11503] = {.lex_state = 25}, + [11504] = {.lex_state = 25}, + [11505] = {.lex_state = 25}, + [11506] = {.lex_state = 25}, + [11507] = {.lex_state = 25}, + [11508] = {.lex_state = 25}, + [11509] = {.lex_state = 25}, + [11510] = {.lex_state = 25}, + [11511] = {.lex_state = 25}, + [11512] = {.lex_state = 25}, + [11513] = {.lex_state = 25}, + [11514] = {.lex_state = 25}, + [11515] = {.lex_state = 25}, + [11516] = {.lex_state = 25}, + [11517] = {.lex_state = 25}, + [11518] = {.lex_state = 25}, + [11519] = {.lex_state = 25}, + [11520] = {.lex_state = 25}, + [11521] = {.lex_state = 25}, + [11522] = {.lex_state = 25}, + [11523] = {.lex_state = 25}, + [11524] = {.lex_state = 25}, + [11525] = {.lex_state = 25}, + [11526] = {.lex_state = 25}, + [11527] = {.lex_state = 25}, + [11528] = {.lex_state = 25}, + [11529] = {.lex_state = 25}, + [11530] = {.lex_state = 25}, + [11531] = {.lex_state = 25}, + [11532] = {.lex_state = 25}, + [11533] = {.lex_state = 25}, + [11534] = {.lex_state = 25}, + [11535] = {.lex_state = 25}, + [11536] = {.lex_state = 25}, + [11537] = {.lex_state = 25}, + [11538] = {.lex_state = 25}, + [11539] = {.lex_state = 25}, + [11540] = {.lex_state = 25}, + [11541] = {.lex_state = 25}, + [11542] = {.lex_state = 25}, + [11543] = {.lex_state = 25}, + [11544] = {.lex_state = 25}, + [11545] = {.lex_state = 25}, + [11546] = {.lex_state = 25}, + [11547] = {.lex_state = 25}, + [11548] = {.lex_state = 25}, + [11549] = {.lex_state = 25}, + [11550] = {.lex_state = 25}, + [11551] = {.lex_state = 25}, + [11552] = {.lex_state = 25}, + [11553] = {.lex_state = 25}, + [11554] = {.lex_state = 25}, + [11555] = {.lex_state = 25}, + [11556] = {.lex_state = 25}, + [11557] = {.lex_state = 25}, + [11558] = {.lex_state = 25}, + [11559] = {.lex_state = 25}, + [11560] = {.lex_state = 25}, + [11561] = {.lex_state = 25}, + [11562] = {.lex_state = 25}, + [11563] = {.lex_state = 25}, + [11564] = {.lex_state = 25}, + [11565] = {.lex_state = 25}, + [11566] = {.lex_state = 25}, + [11567] = {.lex_state = 25}, + [11568] = {.lex_state = 25}, + [11569] = {.lex_state = 25}, + [11570] = {.lex_state = 25}, + [11571] = {.lex_state = 25}, + [11572] = {.lex_state = 25}, + [11573] = {.lex_state = 25}, + [11574] = {.lex_state = 25}, + [11575] = {.lex_state = 25}, + [11576] = {.lex_state = 25}, + [11577] = {.lex_state = 25}, + [11578] = {.lex_state = 25}, + [11579] = {.lex_state = 25}, + [11580] = {.lex_state = 25}, + [11581] = {.lex_state = 25}, + [11582] = {.lex_state = 25}, + [11583] = {.lex_state = 25}, + [11584] = {.lex_state = 25}, + [11585] = {.lex_state = 25}, + [11586] = {.lex_state = 25}, + [11587] = {.lex_state = 25}, + [11588] = {.lex_state = 25}, + [11589] = {.lex_state = 25}, + [11590] = {.lex_state = 25}, + [11591] = {.lex_state = 25}, + [11592] = {.lex_state = 0}, + [11593] = {.lex_state = 0}, + [11594] = {.lex_state = 25}, + [11595] = {.lex_state = 25}, + [11596] = {.lex_state = 25}, + [11597] = {.lex_state = 25}, + [11598] = {.lex_state = 25}, + [11599] = {.lex_state = 0}, + [11600] = {.lex_state = 25}, + [11601] = {.lex_state = 25}, + [11602] = {.lex_state = 25}, + [11603] = {.lex_state = 25}, + [11604] = {.lex_state = 25}, + [11605] = {.lex_state = 0}, + [11606] = {.lex_state = 25}, + [11607] = {.lex_state = 25}, + [11608] = {.lex_state = 0}, + [11609] = {.lex_state = 0}, + [11610] = {.lex_state = 0}, + [11611] = {.lex_state = 0}, + [11612] = {.lex_state = 25}, + [11613] = {.lex_state = 0}, + [11614] = {.lex_state = 0}, + [11615] = {.lex_state = 25}, + [11616] = {.lex_state = 0}, + [11617] = {.lex_state = 25}, + [11618] = {.lex_state = 25}, + [11619] = {.lex_state = 0}, + [11620] = {.lex_state = 0}, + [11621] = {.lex_state = 25}, + [11622] = {.lex_state = 0}, + [11623] = {.lex_state = 25}, + [11624] = {.lex_state = 25}, + [11625] = {.lex_state = 0}, + [11626] = {.lex_state = 0}, + [11627] = {.lex_state = 0}, + [11628] = {.lex_state = 0}, + [11629] = {.lex_state = 25}, + [11630] = {.lex_state = 25}, + [11631] = {.lex_state = 25}, + [11632] = {.lex_state = 25}, + [11633] = {.lex_state = 25}, + [11634] = {.lex_state = 0}, + [11635] = {.lex_state = 0}, + [11636] = {.lex_state = 0}, + [11637] = {.lex_state = 25}, + [11638] = {.lex_state = 25}, + [11639] = {.lex_state = 25}, + [11640] = {.lex_state = 25}, + [11641] = {.lex_state = 25}, + [11642] = {.lex_state = 25}, + [11643] = {.lex_state = 25}, + [11644] = {.lex_state = 25}, + [11645] = {.lex_state = 25}, + [11646] = {.lex_state = 25}, + [11647] = {.lex_state = 25}, + [11648] = {.lex_state = 0}, + [11649] = {.lex_state = 0}, + [11650] = {.lex_state = 25}, + [11651] = {.lex_state = 25}, + [11652] = {.lex_state = 25}, + [11653] = {.lex_state = 25}, + [11654] = {.lex_state = 25}, + [11655] = {.lex_state = 25}, + [11656] = {.lex_state = 25}, + [11657] = {.lex_state = 25}, + [11658] = {.lex_state = 25}, + [11659] = {.lex_state = 25}, + [11660] = {.lex_state = 25}, + [11661] = {.lex_state = 25}, + [11662] = {.lex_state = 25}, + [11663] = {.lex_state = 25}, + [11664] = {.lex_state = 0}, + [11665] = {.lex_state = 0}, + [11666] = {.lex_state = 25}, + [11667] = {.lex_state = 25}, + [11668] = {.lex_state = 25}, + [11669] = {.lex_state = 25}, + [11670] = {.lex_state = 25}, + [11671] = {.lex_state = 25}, + [11672] = {.lex_state = 25}, + [11673] = {.lex_state = 25}, + [11674] = {.lex_state = 25}, + [11675] = {.lex_state = 25}, + [11676] = {.lex_state = 25}, + [11677] = {.lex_state = 25}, + [11678] = {.lex_state = 25}, + [11679] = {.lex_state = 25}, + [11680] = {.lex_state = 25}, + [11681] = {.lex_state = 0}, + [11682] = {.lex_state = 25}, + [11683] = {.lex_state = 25}, + [11684] = {.lex_state = 25}, + [11685] = {.lex_state = 25}, + [11686] = {.lex_state = 25}, + [11687] = {.lex_state = 25}, + [11688] = {.lex_state = 25}, + [11689] = {.lex_state = 25}, + [11690] = {.lex_state = 25}, + [11691] = {.lex_state = 25}, + [11692] = {.lex_state = 25}, + [11693] = {.lex_state = 25}, + [11694] = {.lex_state = 25}, + [11695] = {.lex_state = 25}, + [11696] = {.lex_state = 25}, + [11697] = {.lex_state = 25}, + [11698] = {.lex_state = 25}, + [11699] = {.lex_state = 25}, + [11700] = {.lex_state = 25}, + [11701] = {.lex_state = 25}, + [11702] = {.lex_state = 25}, + [11703] = {.lex_state = 25}, + [11704] = {.lex_state = 25}, + [11705] = {.lex_state = 25}, + [11706] = {.lex_state = 25}, + [11707] = {.lex_state = 25}, + [11708] = {.lex_state = 25}, + [11709] = {.lex_state = 25}, + [11710] = {.lex_state = 25}, + [11711] = {.lex_state = 25}, + [11712] = {.lex_state = 25}, + [11713] = {.lex_state = 0}, + [11714] = {.lex_state = 0}, + [11715] = {.lex_state = 0}, + [11716] = {.lex_state = 25}, + [11717] = {.lex_state = 25}, + [11718] = {.lex_state = 25}, + [11719] = {.lex_state = 0}, + [11720] = {.lex_state = 25}, + [11721] = {.lex_state = 25}, + [11722] = {.lex_state = 25}, + [11723] = {.lex_state = 25}, + [11724] = {.lex_state = 25}, + [11725] = {.lex_state = 25}, + [11726] = {.lex_state = 25}, + [11727] = {.lex_state = 0}, + [11728] = {.lex_state = 0}, + [11729] = {.lex_state = 25}, + [11730] = {.lex_state = 25}, + [11731] = {.lex_state = 25}, + [11732] = {.lex_state = 0}, + [11733] = {.lex_state = 25}, + [11734] = {.lex_state = 0}, + [11735] = {.lex_state = 25}, + [11736] = {.lex_state = 25}, + [11737] = {.lex_state = 0}, + [11738] = {.lex_state = 0}, + [11739] = {.lex_state = 25}, + [11740] = {.lex_state = 0}, + [11741] = {.lex_state = 0}, + [11742] = {.lex_state = 25}, + [11743] = {.lex_state = 25}, + [11744] = {.lex_state = 0}, + [11745] = {.lex_state = 0}, + [11746] = {.lex_state = 0}, + [11747] = {.lex_state = 0}, + [11748] = {.lex_state = 0}, + [11749] = {.lex_state = 25}, + [11750] = {.lex_state = 25}, + [11751] = {.lex_state = 25}, + [11752] = {.lex_state = 25}, + [11753] = {.lex_state = 25}, + [11754] = {.lex_state = 0}, + [11755] = {.lex_state = 0}, + [11756] = {.lex_state = 25}, + [11757] = {.lex_state = 0}, + [11758] = {.lex_state = 0}, + [11759] = {.lex_state = 25}, + [11760] = {.lex_state = 0}, + [11761] = {.lex_state = 0}, + [11762] = {.lex_state = 0}, + [11763] = {.lex_state = 0}, + [11764] = {.lex_state = 0}, + [11765] = {.lex_state = 25}, + [11766] = {.lex_state = 25}, + [11767] = {.lex_state = 25}, + [11768] = {.lex_state = 0}, + [11769] = {.lex_state = 0}, + [11770] = {.lex_state = 0}, + [11771] = {.lex_state = 0}, + [11772] = {.lex_state = 0}, + [11773] = {.lex_state = 0}, + [11774] = {.lex_state = 0}, + [11775] = {.lex_state = 0}, + [11776] = {.lex_state = 0}, + [11777] = {.lex_state = 25}, + [11778] = {.lex_state = 25}, + [11779] = {.lex_state = 25}, + [11780] = {.lex_state = 25}, + [11781] = {.lex_state = 25}, + [11782] = {.lex_state = 0}, + [11783] = {.lex_state = 25}, + [11784] = {.lex_state = 0}, + [11785] = {.lex_state = 25}, + [11786] = {.lex_state = 0}, + [11787] = {.lex_state = 25}, + [11788] = {.lex_state = 25}, + [11789] = {.lex_state = 25}, + [11790] = {.lex_state = 0}, + [11791] = {.lex_state = 25}, + [11792] = {.lex_state = 0}, + [11793] = {.lex_state = 25}, + [11794] = {.lex_state = 25}, + [11795] = {.lex_state = 25}, + [11796] = {.lex_state = 25}, + [11797] = {.lex_state = 25}, + [11798] = {.lex_state = 25}, + [11799] = {.lex_state = 25}, + [11800] = {.lex_state = 25}, + [11801] = {.lex_state = 25}, + [11802] = {.lex_state = 25}, + [11803] = {.lex_state = 25}, + [11804] = {.lex_state = 0}, + [11805] = {.lex_state = 0}, + [11806] = {.lex_state = 25}, + [11807] = {.lex_state = 25}, + [11808] = {.lex_state = 25}, + [11809] = {.lex_state = 25}, + [11810] = {.lex_state = 25}, + [11811] = {.lex_state = 25}, + [11812] = {.lex_state = 25}, + [11813] = {.lex_state = 25}, + [11814] = {.lex_state = 25}, + [11815] = {.lex_state = 25}, + [11816] = {.lex_state = 25}, + [11817] = {.lex_state = 25}, + [11818] = {.lex_state = 25}, + [11819] = {.lex_state = 25}, + [11820] = {.lex_state = 25}, + [11821] = {.lex_state = 25}, + [11822] = {.lex_state = 25}, + [11823] = {.lex_state = 0}, + [11824] = {.lex_state = 25}, + [11825] = {.lex_state = 25}, + [11826] = {.lex_state = 25}, + [11827] = {.lex_state = 25}, + [11828] = {.lex_state = 25}, + [11829] = {.lex_state = 25}, + [11830] = {.lex_state = 25}, + [11831] = {.lex_state = 25}, + [11832] = {.lex_state = 25}, + [11833] = {.lex_state = 25}, + [11834] = {.lex_state = 25}, + [11835] = {.lex_state = 25}, + [11836] = {.lex_state = 25}, + [11837] = {.lex_state = 25}, + [11838] = {.lex_state = 25}, + [11839] = {.lex_state = 25}, + [11840] = {.lex_state = 25}, + [11841] = {.lex_state = 25}, + [11842] = {.lex_state = 25}, + [11843] = {.lex_state = 25}, + [11844] = {.lex_state = 25}, + [11845] = {.lex_state = 25}, + [11846] = {.lex_state = 25}, + [11847] = {.lex_state = 25}, + [11848] = {.lex_state = 25}, + [11849] = {.lex_state = 25}, + [11850] = {.lex_state = 25}, + [11851] = {.lex_state = 25}, + [11852] = {.lex_state = 25}, + [11853] = {.lex_state = 25}, + [11854] = {.lex_state = 25}, + [11855] = {.lex_state = 25}, + [11856] = {.lex_state = 25}, + [11857] = {.lex_state = 25}, + [11858] = {.lex_state = 25}, + [11859] = {.lex_state = 25}, + [11860] = {.lex_state = 25}, + [11861] = {.lex_state = 25}, + [11862] = {.lex_state = 25}, + [11863] = {.lex_state = 25}, + [11864] = {.lex_state = 25}, + [11865] = {.lex_state = 25}, + [11866] = {.lex_state = 25}, + [11867] = {.lex_state = 25}, + [11868] = {.lex_state = 25}, + [11869] = {.lex_state = 25}, + [11870] = {.lex_state = 0}, + [11871] = {.lex_state = 25}, + [11872] = {.lex_state = 0}, + [11873] = {.lex_state = 25}, + [11874] = {.lex_state = 25}, + [11875] = {.lex_state = 25}, + [11876] = {.lex_state = 25}, + [11877] = {.lex_state = 25}, + [11878] = {.lex_state = 25}, + [11879] = {.lex_state = 25}, + [11880] = {.lex_state = 25}, + [11881] = {.lex_state = 25}, + [11882] = {.lex_state = 25}, + [11883] = {.lex_state = 25}, + [11884] = {.lex_state = 25}, + [11885] = {.lex_state = 25}, + [11886] = {.lex_state = 25}, + [11887] = {.lex_state = 0}, + [11888] = {.lex_state = 0}, + [11889] = {.lex_state = 0}, + [11890] = {.lex_state = 25}, + [11891] = {.lex_state = 0}, + [11892] = {.lex_state = 0}, + [11893] = {.lex_state = 25}, + [11894] = {.lex_state = 25}, + [11895] = {.lex_state = 0}, + [11896] = {.lex_state = 0}, + [11897] = {.lex_state = 0}, + [11898] = {.lex_state = 0}, + [11899] = {.lex_state = 0}, + [11900] = {.lex_state = 0}, + [11901] = {.lex_state = 0}, + [11902] = {.lex_state = 25}, + [11903] = {.lex_state = 25}, + [11904] = {.lex_state = 25}, + [11905] = {.lex_state = 0}, + [11906] = {.lex_state = 25}, + [11907] = {.lex_state = 25}, + [11908] = {.lex_state = 0}, + [11909] = {.lex_state = 0}, + [11910] = {.lex_state = 0}, + [11911] = {.lex_state = 25}, + [11912] = {.lex_state = 0}, + [11913] = {.lex_state = 25}, + [11914] = {.lex_state = 25}, + [11915] = {.lex_state = 25}, + [11916] = {.lex_state = 0}, + [11917] = {.lex_state = 25}, + [11918] = {.lex_state = 0}, + [11919] = {.lex_state = 25}, + [11920] = {.lex_state = 0}, + [11921] = {.lex_state = 0}, + [11922] = {.lex_state = 25}, + [11923] = {.lex_state = 25}, + [11924] = {.lex_state = 0}, + [11925] = {.lex_state = 0}, + [11926] = {.lex_state = 25}, + [11927] = {.lex_state = 0}, + [11928] = {.lex_state = 25}, + [11929] = {.lex_state = 25}, + [11930] = {.lex_state = 25}, + [11931] = {.lex_state = 25}, + [11932] = {.lex_state = 25}, + [11933] = {.lex_state = 0}, + [11934] = {.lex_state = 25}, + [11935] = {.lex_state = 0}, + [11936] = {.lex_state = 25}, + [11937] = {.lex_state = 0}, + [11938] = {.lex_state = 25}, + [11939] = {.lex_state = 25}, + [11940] = {.lex_state = 25}, + [11941] = {.lex_state = 0}, + [11942] = {.lex_state = 25}, + [11943] = {.lex_state = 0}, + [11944] = {.lex_state = 25}, + [11945] = {.lex_state = 25}, + [11946] = {.lex_state = 25}, + [11947] = {.lex_state = 25}, + [11948] = {.lex_state = 25}, + [11949] = {.lex_state = 25}, + [11950] = {.lex_state = 25}, + [11951] = {.lex_state = 25}, + [11952] = {.lex_state = 0}, + [11953] = {.lex_state = 0}, + [11954] = {.lex_state = 0}, + [11955] = {.lex_state = 25}, + [11956] = {.lex_state = 0}, + [11957] = {.lex_state = 25}, + [11958] = {.lex_state = 0}, + [11959] = {.lex_state = 25}, + [11960] = {.lex_state = 25}, + [11961] = {.lex_state = 25}, + [11962] = {.lex_state = 25}, + [11963] = {.lex_state = 25}, + [11964] = {.lex_state = 25}, + [11965] = {.lex_state = 0}, + [11966] = {.lex_state = 0}, + [11967] = {.lex_state = 0}, + [11968] = {.lex_state = 0}, + [11969] = {.lex_state = 0}, + [11970] = {.lex_state = 0}, + [11971] = {.lex_state = 0}, + [11972] = {.lex_state = 0}, + [11973] = {.lex_state = 0}, + [11974] = {.lex_state = 0}, + [11975] = {.lex_state = 0}, + [11976] = {.lex_state = 0}, + [11977] = {.lex_state = 0}, + [11978] = {.lex_state = 0}, + [11979] = {.lex_state = 0}, + [11980] = {.lex_state = 0}, + [11981] = {.lex_state = 0}, + [11982] = {.lex_state = 0}, + [11983] = {.lex_state = 0}, + [11984] = {.lex_state = 0}, + [11985] = {.lex_state = 0}, + [11986] = {.lex_state = 0}, + [11987] = {.lex_state = 0}, + [11988] = {.lex_state = 0}, + [11989] = {.lex_state = 0}, + [11990] = {.lex_state = 0}, + [11991] = {.lex_state = 0}, + [11992] = {.lex_state = 0}, + [11993] = {.lex_state = 0}, + [11994] = {.lex_state = 0}, + [11995] = {.lex_state = 0}, + [11996] = {.lex_state = 0}, + [11997] = {.lex_state = 0}, + [11998] = {.lex_state = 0}, + [11999] = {.lex_state = 0}, + [12000] = {.lex_state = 0}, + [12001] = {.lex_state = 0}, + [12002] = {.lex_state = 0}, + [12003] = {.lex_state = 0}, + [12004] = {.lex_state = 0}, + [12005] = {.lex_state = 0}, + [12006] = {.lex_state = 0}, + [12007] = {.lex_state = 0}, + [12008] = {.lex_state = 0}, + [12009] = {.lex_state = 0}, + [12010] = {.lex_state = 0}, + [12011] = {.lex_state = 0}, + [12012] = {.lex_state = 0}, + [12013] = {.lex_state = 0}, + [12014] = {.lex_state = 0}, + [12015] = {.lex_state = 0}, + [12016] = {.lex_state = 0}, + [12017] = {.lex_state = 0}, + [12018] = {.lex_state = 0}, + [12019] = {.lex_state = 0}, + [12020] = {.lex_state = 0}, + [12021] = {.lex_state = 0}, + [12022] = {.lex_state = 0}, + [12023] = {.lex_state = 0}, + [12024] = {.lex_state = 0}, + [12025] = {.lex_state = 0}, + [12026] = {.lex_state = 0}, + [12027] = {.lex_state = 0}, + [12028] = {.lex_state = 0}, + [12029] = {.lex_state = 0}, + [12030] = {.lex_state = 0}, + [12031] = {.lex_state = 0}, + [12032] = {.lex_state = 0}, + [12033] = {.lex_state = 0}, + [12034] = {.lex_state = 0}, + [12035] = {.lex_state = 0}, + [12036] = {.lex_state = 0}, + [12037] = {.lex_state = 0}, + [12038] = {.lex_state = 0}, + [12039] = {.lex_state = 0}, + [12040] = {.lex_state = 0}, + [12041] = {.lex_state = 0}, + [12042] = {.lex_state = 0}, + [12043] = {.lex_state = 0}, + [12044] = {.lex_state = 0}, + [12045] = {.lex_state = 0}, + [12046] = {.lex_state = 0}, + [12047] = {.lex_state = 0}, + [12048] = {.lex_state = 0}, + [12049] = {.lex_state = 0}, + [12050] = {.lex_state = 0}, + [12051] = {.lex_state = 0}, + [12052] = {.lex_state = 0}, + [12053] = {.lex_state = 0}, + [12054] = {.lex_state = 0}, + [12055] = {.lex_state = 0}, + [12056] = {.lex_state = 0}, + [12057] = {.lex_state = 0}, + [12058] = {.lex_state = 0}, + [12059] = {.lex_state = 0}, + [12060] = {.lex_state = 0}, + [12061] = {.lex_state = 0}, + [12062] = {.lex_state = 0}, + [12063] = {.lex_state = 0}, + [12064] = {.lex_state = 0}, + [12065] = {.lex_state = 0}, + [12066] = {.lex_state = 0}, + [12067] = {.lex_state = 0}, + [12068] = {.lex_state = 0}, + [12069] = {.lex_state = 0}, + [12070] = {.lex_state = 0}, + [12071] = {.lex_state = 0}, + [12072] = {.lex_state = 0}, + [12073] = {.lex_state = 0}, + [12074] = {.lex_state = 0}, + [12075] = {.lex_state = 0}, + [12076] = {.lex_state = 0}, + [12077] = {.lex_state = 0}, + [12078] = {.lex_state = 0}, + [12079] = {.lex_state = 0}, + [12080] = {.lex_state = 0}, + [12081] = {.lex_state = 0}, + [12082] = {.lex_state = 0}, + [12083] = {.lex_state = 0}, + [12084] = {.lex_state = 0}, + [12085] = {.lex_state = 0}, + [12086] = {.lex_state = 0}, + [12087] = {.lex_state = 0}, + [12088] = {.lex_state = 0}, + [12089] = {.lex_state = 0}, + [12090] = {.lex_state = 0}, + [12091] = {.lex_state = 0}, + [12092] = {.lex_state = 0}, + [12093] = {.lex_state = 0}, + [12094] = {.lex_state = 0}, + [12095] = {.lex_state = 0}, + [12096] = {.lex_state = 0}, + [12097] = {.lex_state = 0}, + [12098] = {.lex_state = 0}, + [12099] = {.lex_state = 0}, + [12100] = {.lex_state = 0}, + [12101] = {.lex_state = 0}, + [12102] = {.lex_state = 0}, + [12103] = {.lex_state = 0}, + [12104] = {.lex_state = 0}, + [12105] = {.lex_state = 0}, + [12106] = {.lex_state = 0}, + [12107] = {.lex_state = 0}, + [12108] = {.lex_state = 0}, + [12109] = {.lex_state = 0}, + [12110] = {.lex_state = 0}, + [12111] = {.lex_state = 0}, + [12112] = {.lex_state = 0}, + [12113] = {.lex_state = 0}, + [12114] = {.lex_state = 0}, + [12115] = {.lex_state = 0}, + [12116] = {.lex_state = 0}, + [12117] = {.lex_state = 0}, + [12118] = {.lex_state = 0}, + [12119] = {.lex_state = 25}, + [12120] = {.lex_state = 0}, + [12121] = {.lex_state = 0}, + [12122] = {.lex_state = 0}, + [12123] = {.lex_state = 0}, + [12124] = {.lex_state = 0}, + [12125] = {.lex_state = 0}, + [12126] = {.lex_state = 0}, + [12127] = {.lex_state = 0}, + [12128] = {.lex_state = 0}, + [12129] = {.lex_state = 0}, + [12130] = {.lex_state = 0}, + [12131] = {.lex_state = 0}, + [12132] = {.lex_state = 0}, + [12133] = {.lex_state = 0}, + [12134] = {.lex_state = 0}, + [12135] = {.lex_state = 0}, + [12136] = {.lex_state = 0}, + [12137] = {.lex_state = 0}, + [12138] = {.lex_state = 0}, + [12139] = {.lex_state = 0}, + [12140] = {.lex_state = 0}, + [12141] = {.lex_state = 0}, + [12142] = {.lex_state = 0}, + [12143] = {.lex_state = 0}, + [12144] = {.lex_state = 0}, + [12145] = {.lex_state = 0}, + [12146] = {.lex_state = 0}, + [12147] = {.lex_state = 0}, + [12148] = {.lex_state = 0}, + [12149] = {.lex_state = 0}, + [12150] = {.lex_state = 0}, + [12151] = {.lex_state = 0}, + [12152] = {.lex_state = 0}, + [12153] = {.lex_state = 0}, + [12154] = {.lex_state = 0}, + [12155] = {.lex_state = 0}, + [12156] = {.lex_state = 0}, + [12157] = {.lex_state = 0}, + [12158] = {.lex_state = 0}, + [12159] = {.lex_state = 0}, + [12160] = {.lex_state = 0}, + [12161] = {.lex_state = 0}, + [12162] = {.lex_state = 0}, + [12163] = {.lex_state = 0}, + [12164] = {.lex_state = 0}, + [12165] = {.lex_state = 0}, + [12166] = {.lex_state = 0}, + [12167] = {.lex_state = 0}, + [12168] = {.lex_state = 5}, + [12169] = {.lex_state = 0}, + [12170] = {.lex_state = 0}, + [12171] = {.lex_state = 0}, + [12172] = {.lex_state = 0}, + [12173] = {.lex_state = 0}, + [12174] = {.lex_state = 0}, + [12175] = {.lex_state = 0}, + [12176] = {.lex_state = 0}, + [12177] = {.lex_state = 0}, + [12178] = {.lex_state = 0}, + [12179] = {.lex_state = 0}, + [12180] = {.lex_state = 0}, + [12181] = {.lex_state = 0}, + [12182] = {.lex_state = 0}, + [12183] = {.lex_state = 0}, + [12184] = {.lex_state = 0}, + [12185] = {.lex_state = 0}, + [12186] = {.lex_state = 0}, + [12187] = {.lex_state = 0}, + [12188] = {.lex_state = 0}, + [12189] = {.lex_state = 0}, + [12190] = {.lex_state = 0}, + [12191] = {.lex_state = 0}, + [12192] = {.lex_state = 0}, + [12193] = {.lex_state = 0}, + [12194] = {.lex_state = 0}, + [12195] = {.lex_state = 0}, + [12196] = {.lex_state = 0}, + [12197] = {.lex_state = 0}, + [12198] = {.lex_state = 0}, + [12199] = {.lex_state = 0}, + [12200] = {.lex_state = 0}, + [12201] = {.lex_state = 0}, + [12202] = {.lex_state = 0}, + [12203] = {.lex_state = 0}, + [12204] = {.lex_state = 0}, + [12205] = {.lex_state = 0}, + [12206] = {.lex_state = 0}, + [12207] = {.lex_state = 0}, + [12208] = {.lex_state = 0}, + [12209] = {.lex_state = 0}, + [12210] = {.lex_state = 0}, + [12211] = {.lex_state = 0}, + [12212] = {.lex_state = 0}, + [12213] = {.lex_state = 0}, + [12214] = {.lex_state = 0}, + [12215] = {.lex_state = 0}, + [12216] = {.lex_state = 0}, + [12217] = {.lex_state = 0}, + [12218] = {.lex_state = 0}, + [12219] = {.lex_state = 0}, + [12220] = {.lex_state = 0}, + [12221] = {.lex_state = 0}, + [12222] = {.lex_state = 0}, + [12223] = {.lex_state = 0}, + [12224] = {.lex_state = 0}, + [12225] = {.lex_state = 0}, + [12226] = {.lex_state = 0}, + [12227] = {.lex_state = 0}, + [12228] = {.lex_state = 0}, + [12229] = {.lex_state = 0}, + [12230] = {.lex_state = 0}, + [12231] = {.lex_state = 0}, + [12232] = {.lex_state = 0}, + [12233] = {.lex_state = 0}, + [12234] = {.lex_state = 0}, + [12235] = {.lex_state = 0}, + [12236] = {.lex_state = 0}, + [12237] = {.lex_state = 0}, + [12238] = {.lex_state = 0}, + [12239] = {.lex_state = 0}, + [12240] = {.lex_state = 0}, + [12241] = {.lex_state = 5}, + [12242] = {.lex_state = 0}, + [12243] = {.lex_state = 0}, + [12244] = {.lex_state = 0}, + [12245] = {.lex_state = 0}, + [12246] = {.lex_state = 0}, + [12247] = {.lex_state = 0}, + [12248] = {.lex_state = 0}, + [12249] = {.lex_state = 0}, + [12250] = {.lex_state = 0}, + [12251] = {.lex_state = 0}, + [12252] = {.lex_state = 0}, + [12253] = {.lex_state = 0}, + [12254] = {.lex_state = 5}, + [12255] = {.lex_state = 5}, + [12256] = {.lex_state = 0}, + [12257] = {.lex_state = 0}, + [12258] = {.lex_state = 0}, + [12259] = {.lex_state = 0}, + [12260] = {.lex_state = 0}, + [12261] = {.lex_state = 0}, + [12262] = {.lex_state = 0}, + [12263] = {.lex_state = 25}, + [12264] = {.lex_state = 0}, + [12265] = {.lex_state = 0}, + [12266] = {.lex_state = 0}, + [12267] = {.lex_state = 5}, + [12268] = {.lex_state = 5}, + [12269] = {.lex_state = 0}, + [12270] = {.lex_state = 0}, + [12271] = {.lex_state = 0}, + [12272] = {.lex_state = 0}, + [12273] = {.lex_state = 0}, + [12274] = {.lex_state = 0}, + [12275] = {.lex_state = 0}, + [12276] = {.lex_state = 0}, + [12277] = {.lex_state = 0}, + [12278] = {.lex_state = 0}, + [12279] = {.lex_state = 25}, + [12280] = {.lex_state = 0}, + [12281] = {.lex_state = 25}, + [12282] = {.lex_state = 0}, + [12283] = {.lex_state = 0}, + [12284] = {.lex_state = 0}, + [12285] = {.lex_state = 0}, + [12286] = {.lex_state = 0}, + [12287] = {.lex_state = 0}, + [12288] = {.lex_state = 0}, + [12289] = {.lex_state = 0}, + [12290] = {.lex_state = 0}, + [12291] = {.lex_state = 25}, + [12292] = {.lex_state = 0}, + [12293] = {.lex_state = 0}, + [12294] = {.lex_state = 25}, + [12295] = {.lex_state = 0}, + [12296] = {.lex_state = 0}, + [12297] = {.lex_state = 0}, + [12298] = {.lex_state = 0}, + [12299] = {.lex_state = 0}, + [12300] = {.lex_state = 0}, + [12301] = {.lex_state = 0}, + [12302] = {.lex_state = 0}, + [12303] = {.lex_state = 25}, + [12304] = {.lex_state = 0}, + [12305] = {.lex_state = 0}, + [12306] = {.lex_state = 0}, + [12307] = {.lex_state = 0}, + [12308] = {.lex_state = 0}, + [12309] = {.lex_state = 0}, + [12310] = {.lex_state = 0}, + [12311] = {.lex_state = 0}, + [12312] = {.lex_state = 0}, + [12313] = {.lex_state = 0}, + [12314] = {.lex_state = 0}, + [12315] = {.lex_state = 0}, + [12316] = {.lex_state = 0}, + [12317] = {.lex_state = 0}, + [12318] = {.lex_state = 0}, + [12319] = {.lex_state = 0}, + [12320] = {.lex_state = 0}, + [12321] = {.lex_state = 0}, + [12322] = {.lex_state = 0}, + [12323] = {.lex_state = 0}, + [12324] = {.lex_state = 0}, + [12325] = {.lex_state = 0}, + [12326] = {.lex_state = 0}, + [12327] = {.lex_state = 0}, + [12328] = {.lex_state = 0}, + [12329] = {.lex_state = 0}, + [12330] = {.lex_state = 0}, + [12331] = {.lex_state = 0}, + [12332] = {.lex_state = 0}, + [12333] = {.lex_state = 0}, + [12334] = {.lex_state = 0}, + [12335] = {.lex_state = 0}, + [12336] = {.lex_state = 0}, + [12337] = {.lex_state = 0}, + [12338] = {.lex_state = 0}, + [12339] = {.lex_state = 0}, + [12340] = {.lex_state = 0}, + [12341] = {.lex_state = 0}, + [12342] = {.lex_state = 0}, + [12343] = {.lex_state = 0}, + [12344] = {.lex_state = 0}, + [12345] = {.lex_state = 0}, + [12346] = {.lex_state = 0}, + [12347] = {.lex_state = 0}, + [12348] = {.lex_state = 0}, + [12349] = {.lex_state = 0}, + [12350] = {.lex_state = 0}, + [12351] = {.lex_state = 0}, + [12352] = {.lex_state = 0}, + [12353] = {.lex_state = 0}, + [12354] = {.lex_state = 0}, + [12355] = {.lex_state = 0}, + [12356] = {.lex_state = 0}, + [12357] = {.lex_state = 0}, + [12358] = {.lex_state = 0}, + [12359] = {.lex_state = 0}, + [12360] = {.lex_state = 0}, + [12361] = {.lex_state = 0}, + [12362] = {.lex_state = 0}, + [12363] = {.lex_state = 0}, + [12364] = {.lex_state = 0}, + [12365] = {.lex_state = 0}, + [12366] = {.lex_state = 0}, + [12367] = {.lex_state = 0}, + [12368] = {.lex_state = 0}, + [12369] = {.lex_state = 0}, + [12370] = {.lex_state = 0}, + [12371] = {.lex_state = 0}, + [12372] = {.lex_state = 5}, + [12373] = {.lex_state = 0}, + [12374] = {.lex_state = 0}, + [12375] = {.lex_state = 0}, + [12376] = {.lex_state = 0}, + [12377] = {.lex_state = 0}, + [12378] = {.lex_state = 0}, + [12379] = {.lex_state = 0}, + [12380] = {.lex_state = 0}, + [12381] = {.lex_state = 0}, + [12382] = {.lex_state = 0}, + [12383] = {.lex_state = 0}, + [12384] = {.lex_state = 0}, + [12385] = {.lex_state = 0}, + [12386] = {.lex_state = 0}, + [12387] = {.lex_state = 0}, + [12388] = {.lex_state = 0}, + [12389] = {.lex_state = 0}, + [12390] = {.lex_state = 0}, + [12391] = {.lex_state = 0}, + [12392] = {.lex_state = 0}, + [12393] = {.lex_state = 0}, + [12394] = {.lex_state = 0}, + [12395] = {.lex_state = 25}, + [12396] = {.lex_state = 0}, + [12397] = {.lex_state = 0}, + [12398] = {.lex_state = 0}, + [12399] = {.lex_state = 0}, + [12400] = {.lex_state = 0}, + [12401] = {.lex_state = 0}, + [12402] = {.lex_state = 0}, + [12403] = {.lex_state = 8}, + [12404] = {.lex_state = 0}, + [12405] = {.lex_state = 0}, + [12406] = {.lex_state = 0}, + [12407] = {.lex_state = 8}, + [12408] = {.lex_state = 0}, + [12409] = {.lex_state = 0}, + [12410] = {.lex_state = 0}, + [12411] = {.lex_state = 0}, + [12412] = {.lex_state = 0}, + [12413] = {.lex_state = 0}, + [12414] = {.lex_state = 0}, + [12415] = {.lex_state = 0}, + [12416] = {.lex_state = 0}, + [12417] = {.lex_state = 0}, + [12418] = {.lex_state = 0}, + [12419] = {.lex_state = 0}, + [12420] = {.lex_state = 0}, + [12421] = {.lex_state = 0}, + [12422] = {.lex_state = 0}, + [12423] = {.lex_state = 0}, + [12424] = {.lex_state = 0}, + [12425] = {.lex_state = 0}, + [12426] = {.lex_state = 0}, + [12427] = {.lex_state = 0}, + [12428] = {.lex_state = 0}, + [12429] = {.lex_state = 0}, + [12430] = {.lex_state = 0}, + [12431] = {.lex_state = 0}, + [12432] = {.lex_state = 0}, + [12433] = {.lex_state = 0}, + [12434] = {.lex_state = 0}, + [12435] = {.lex_state = 0}, + [12436] = {.lex_state = 0}, + [12437] = {.lex_state = 0}, + [12438] = {.lex_state = 0}, + [12439] = {.lex_state = 0}, + [12440] = {.lex_state = 0}, + [12441] = {.lex_state = 0}, + [12442] = {.lex_state = 0}, + [12443] = {.lex_state = 0}, + [12444] = {.lex_state = 0}, + [12445] = {.lex_state = 0}, + [12446] = {.lex_state = 0}, + [12447] = {.lex_state = 0}, + [12448] = {.lex_state = 0}, + [12449] = {.lex_state = 0}, + [12450] = {.lex_state = 0}, + [12451] = {.lex_state = 0}, + [12452] = {.lex_state = 0}, + [12453] = {.lex_state = 0}, + [12454] = {.lex_state = 0}, + [12455] = {.lex_state = 0}, + [12456] = {.lex_state = 0}, + [12457] = {.lex_state = 0}, + [12458] = {.lex_state = 0}, + [12459] = {.lex_state = 0}, + [12460] = {.lex_state = 5}, + [12461] = {.lex_state = 0}, + [12462] = {.lex_state = 0}, + [12463] = {.lex_state = 0}, + [12464] = {.lex_state = 0}, + [12465] = {.lex_state = 0}, + [12466] = {.lex_state = 0}, + [12467] = {.lex_state = 5}, + [12468] = {.lex_state = 5}, + [12469] = {.lex_state = 0}, + [12470] = {.lex_state = 0}, + [12471] = {.lex_state = 0}, + [12472] = {.lex_state = 0}, + [12473] = {.lex_state = 0}, + [12474] = {.lex_state = 0}, + [12475] = {.lex_state = 5}, + [12476] = {.lex_state = 5}, + [12477] = {.lex_state = 0}, + [12478] = {.lex_state = 0}, + [12479] = {.lex_state = 0}, + [12480] = {.lex_state = 0}, + [12481] = {.lex_state = 0}, + [12482] = {.lex_state = 0}, + [12483] = {.lex_state = 0}, + [12484] = {.lex_state = 25}, + [12485] = {.lex_state = 0}, + [12486] = {.lex_state = 0}, + [12487] = {.lex_state = 0}, + [12488] = {.lex_state = 0}, + [12489] = {.lex_state = 0}, + [12490] = {.lex_state = 0}, + [12491] = {.lex_state = 0}, + [12492] = {.lex_state = 0}, + [12493] = {.lex_state = 5}, + [12494] = {.lex_state = 25}, + [12495] = {.lex_state = 0}, + [12496] = {.lex_state = 0}, + [12497] = {.lex_state = 0}, + [12498] = {.lex_state = 0}, + [12499] = {.lex_state = 5}, + [12500] = {.lex_state = 0}, + [12501] = {.lex_state = 0}, + [12502] = {.lex_state = 0}, + [12503] = {.lex_state = 0}, + [12504] = {.lex_state = 0}, + [12505] = {.lex_state = 0}, + [12506] = {.lex_state = 0}, + [12507] = {.lex_state = 0}, + [12508] = {.lex_state = 0}, + [12509] = {.lex_state = 0}, + [12510] = {.lex_state = 0}, + [12511] = {.lex_state = 0}, + [12512] = {.lex_state = 0}, + [12513] = {.lex_state = 8}, + [12514] = {.lex_state = 0}, + [12515] = {.lex_state = 0}, + [12516] = {.lex_state = 8}, + [12517] = {.lex_state = 0}, + [12518] = {.lex_state = 0}, + [12519] = {.lex_state = 0}, + [12520] = {.lex_state = 0}, + [12521] = {.lex_state = 0}, + [12522] = {.lex_state = 0}, + [12523] = {.lex_state = 0}, + [12524] = {.lex_state = 0}, + [12525] = {.lex_state = 0}, + [12526] = {.lex_state = 0}, + [12527] = {.lex_state = 0}, + [12528] = {.lex_state = 0}, + [12529] = {.lex_state = 0}, + [12530] = {.lex_state = 0}, + [12531] = {.lex_state = 0}, + [12532] = {.lex_state = 0}, + [12533] = {.lex_state = 0}, + [12534] = {.lex_state = 0}, + [12535] = {.lex_state = 0}, + [12536] = {.lex_state = 0}, + [12537] = {.lex_state = 0}, + [12538] = {.lex_state = 0}, + [12539] = {.lex_state = 0}, + [12540] = {.lex_state = 0}, + [12541] = {.lex_state = 0}, + [12542] = {.lex_state = 0}, + [12543] = {.lex_state = 0}, + [12544] = {.lex_state = 0}, + [12545] = {.lex_state = 0}, + [12546] = {.lex_state = 0}, + [12547] = {.lex_state = 0}, + [12548] = {.lex_state = 0}, + [12549] = {.lex_state = 0}, + [12550] = {.lex_state = 0}, + [12551] = {.lex_state = 0}, + [12552] = {.lex_state = 0}, + [12553] = {.lex_state = 0}, + [12554] = {.lex_state = 0}, + [12555] = {.lex_state = 0}, + [12556] = {.lex_state = 0}, + [12557] = {.lex_state = 0}, + [12558] = {.lex_state = 0}, + [12559] = {.lex_state = 0}, + [12560] = {.lex_state = 0}, + [12561] = {.lex_state = 0}, + [12562] = {.lex_state = 0}, + [12563] = {.lex_state = 0}, + [12564] = {.lex_state = 0}, + [12565] = {.lex_state = 0}, + [12566] = {.lex_state = 0}, + [12567] = {.lex_state = 0}, + [12568] = {.lex_state = 0}, + [12569] = {.lex_state = 0}, + [12570] = {.lex_state = 0}, + [12571] = {.lex_state = 0}, + [12572] = {.lex_state = 0}, + [12573] = {.lex_state = 0}, + [12574] = {.lex_state = 0}, + [12575] = {.lex_state = 0}, + [12576] = {.lex_state = 0}, + [12577] = {.lex_state = 0}, + [12578] = {.lex_state = 0}, + [12579] = {.lex_state = 0}, + [12580] = {.lex_state = 0}, + [12581] = {.lex_state = 0}, + [12582] = {.lex_state = 0}, + [12583] = {.lex_state = 0}, + [12584] = {.lex_state = 25}, + [12585] = {.lex_state = 0}, + [12586] = {.lex_state = 0}, + [12587] = {.lex_state = 0}, + [12588] = {.lex_state = 0}, + [12589] = {.lex_state = 0}, + [12590] = {.lex_state = 0}, + [12591] = {.lex_state = 0}, + [12592] = {.lex_state = 0}, + [12593] = {.lex_state = 0}, + [12594] = {.lex_state = 0}, + [12595] = {.lex_state = 5}, + [12596] = {.lex_state = 0}, + [12597] = {.lex_state = 0}, + [12598] = {.lex_state = 0}, + [12599] = {.lex_state = 0}, + [12600] = {.lex_state = 0}, + [12601] = {.lex_state = 5}, + [12602] = {.lex_state = 5}, + [12603] = {.lex_state = 0}, + [12604] = {.lex_state = 0}, + [12605] = {.lex_state = 0}, + [12606] = {.lex_state = 0}, + [12607] = {.lex_state = 5}, + [12608] = {.lex_state = 5}, + [12609] = {.lex_state = 0}, + [12610] = {.lex_state = 0}, + [12611] = {.lex_state = 0}, + [12612] = {.lex_state = 0}, + [12613] = {.lex_state = 0}, + [12614] = {.lex_state = 0}, + [12615] = {.lex_state = 0}, + [12616] = {.lex_state = 0}, + [12617] = {.lex_state = 0}, + [12618] = {.lex_state = 0}, + [12619] = {.lex_state = 0}, + [12620] = {.lex_state = 0}, + [12621] = {.lex_state = 0}, + [12622] = {.lex_state = 0}, + [12623] = {.lex_state = 0}, + [12624] = {.lex_state = 0}, + [12625] = {.lex_state = 5}, + [12626] = {.lex_state = 0}, + [12627] = {.lex_state = 0}, + [12628] = {.lex_state = 0}, + [12629] = {.lex_state = 0}, + [12630] = {.lex_state = 0}, + [12631] = {.lex_state = 0}, + [12632] = {.lex_state = 5}, + [12633] = {.lex_state = 5}, + [12634] = {.lex_state = 0}, + [12635] = {.lex_state = 0}, + [12636] = {.lex_state = 0}, + [12637] = {.lex_state = 0}, + [12638] = {.lex_state = 5}, + [12639] = {.lex_state = 5}, + [12640] = {.lex_state = 0}, + [12641] = {.lex_state = 0}, + [12642] = {.lex_state = 0}, + [12643] = {.lex_state = 0}, + [12644] = {.lex_state = 0}, + [12645] = {.lex_state = 8}, + [12646] = {.lex_state = 0}, + [12647] = {.lex_state = 0}, + [12648] = {.lex_state = 0}, + [12649] = {.lex_state = 0}, + [12650] = {.lex_state = 8}, + [12651] = {.lex_state = 0}, + [12652] = {.lex_state = 5}, + [12653] = {.lex_state = 0}, + [12654] = {.lex_state = 0}, + [12655] = {.lex_state = 0}, + [12656] = {.lex_state = 8}, + [12657] = {.lex_state = 0}, + [12658] = {.lex_state = 0}, + [12659] = {.lex_state = 5}, + [12660] = {.lex_state = 5}, + [12661] = {.lex_state = 0}, + [12662] = {.lex_state = 0}, + [12663] = {.lex_state = 0}, + [12664] = {.lex_state = 0}, + [12665] = {.lex_state = 5}, + [12666] = {.lex_state = 5}, + [12667] = {.lex_state = 0}, + [12668] = {.lex_state = 0}, + [12669] = {.lex_state = 0}, + [12670] = {.lex_state = 0}, + [12671] = {.lex_state = 0}, + [12672] = {.lex_state = 0}, + [12673] = {.lex_state = 0}, + [12674] = {.lex_state = 0}, + [12675] = {.lex_state = 0}, + [12676] = {.lex_state = 0}, + [12677] = {.lex_state = 5}, + [12678] = {.lex_state = 0}, + [12679] = {.lex_state = 0}, + [12680] = {.lex_state = 0}, + [12681] = {.lex_state = 0}, + [12682] = {.lex_state = 0}, + [12683] = {.lex_state = 0}, + [12684] = {.lex_state = 5}, + [12685] = {.lex_state = 5}, + [12686] = {.lex_state = 0}, + [12687] = {.lex_state = 8}, + [12688] = {.lex_state = 0}, + [12689] = {.lex_state = 0}, + [12690] = {.lex_state = 5}, + [12691] = {.lex_state = 5}, + [12692] = {.lex_state = 0}, + [12693] = {.lex_state = 0}, + [12694] = {.lex_state = 0}, + [12695] = {.lex_state = 8}, + [12696] = {.lex_state = 0}, + [12697] = {.lex_state = 0}, + [12698] = {.lex_state = 0}, + [12699] = {.lex_state = 0}, + [12700] = {.lex_state = 0}, + [12701] = {.lex_state = 0}, + [12702] = {.lex_state = 5}, + [12703] = {.lex_state = 0}, + [12704] = {.lex_state = 0}, + [12705] = {.lex_state = 0}, + [12706] = {.lex_state = 0}, + [12707] = {.lex_state = 0}, + [12708] = {.lex_state = 5}, + [12709] = {.lex_state = 5}, + [12710] = {.lex_state = 0}, + [12711] = {.lex_state = 0}, + [12712] = {.lex_state = 0}, + [12713] = {.lex_state = 0}, + [12714] = {.lex_state = 5}, + [12715] = {.lex_state = 5}, + [12716] = {.lex_state = 0}, + [12717] = {.lex_state = 0}, + [12718] = {.lex_state = 0}, + [12719] = {.lex_state = 0}, + [12720] = {.lex_state = 0}, + [12721] = {.lex_state = 0}, + [12722] = {.lex_state = 0}, + [12723] = {.lex_state = 0}, + [12724] = {.lex_state = 0}, + [12725] = {.lex_state = 0}, + [12726] = {.lex_state = 5}, + [12727] = {.lex_state = 0}, + [12728] = {.lex_state = 0}, + [12729] = {.lex_state = 0}, + [12730] = {.lex_state = 0}, + [12731] = {.lex_state = 0}, + [12732] = {.lex_state = 5}, + [12733] = {.lex_state = 5}, + [12734] = {.lex_state = 0}, + [12735] = {.lex_state = 0}, + [12736] = {.lex_state = 0}, + [12737] = {.lex_state = 0}, + [12738] = {.lex_state = 5}, + [12739] = {.lex_state = 5}, + [12740] = {.lex_state = 0}, + [12741] = {.lex_state = 0}, + [12742] = {.lex_state = 0}, + [12743] = {.lex_state = 0}, + [12744] = {.lex_state = 0}, + [12745] = {.lex_state = 0}, + [12746] = {.lex_state = 0}, + [12747] = {.lex_state = 0}, + [12748] = {.lex_state = 0}, + [12749] = {.lex_state = 5}, + [12750] = {.lex_state = 0}, + [12751] = {.lex_state = 0}, + [12752] = {.lex_state = 5}, + [12753] = {.lex_state = 5}, + [12754] = {.lex_state = 0}, + [12755] = {.lex_state = 0}, + [12756] = {.lex_state = 5}, + [12757] = {.lex_state = 5}, + [12758] = {.lex_state = 0}, + [12759] = {.lex_state = 0}, + [12760] = {.lex_state = 0}, + [12761] = {.lex_state = 0}, + [12762] = {.lex_state = 0}, + [12763] = {.lex_state = 0}, + [12764] = {.lex_state = 5}, + [12765] = {.lex_state = 5}, + [12766] = {.lex_state = 5}, + [12767] = {.lex_state = 5}, + [12768] = {.lex_state = 5}, + [12769] = {.lex_state = 0}, + [12770] = {.lex_state = 5}, + [12771] = {.lex_state = 5}, + [12772] = {.lex_state = 5}, + [12773] = {.lex_state = 5}, + [12774] = {.lex_state = 5}, + [12775] = {.lex_state = 0}, + [12776] = {.lex_state = 0}, + [12777] = {.lex_state = 0}, + [12778] = {.lex_state = 0}, + [12779] = {.lex_state = 0}, + [12780] = {.lex_state = 0}, + [12781] = {.lex_state = 0}, + [12782] = {.lex_state = 0}, + [12783] = {.lex_state = 0}, + [12784] = {.lex_state = 0}, + [12785] = {.lex_state = 0}, + [12786] = {.lex_state = 0}, + [12787] = {.lex_state = 0}, + [12788] = {.lex_state = 0}, + [12789] = {.lex_state = 0}, + [12790] = {.lex_state = 0}, + [12791] = {.lex_state = 0}, + [12792] = {.lex_state = 0}, + [12793] = {.lex_state = 0}, + [12794] = {.lex_state = 0}, + [12795] = {.lex_state = 0}, + [12796] = {.lex_state = 0}, + [12797] = {.lex_state = 0}, + [12798] = {.lex_state = 0}, + [12799] = {.lex_state = 0}, + [12800] = {.lex_state = 0}, + [12801] = {.lex_state = 0}, + [12802] = {.lex_state = 0}, + [12803] = {.lex_state = 0}, + [12804] = {.lex_state = 0}, + [12805] = {.lex_state = 0}, + [12806] = {.lex_state = 0}, + [12807] = {.lex_state = 0}, + [12808] = {.lex_state = 0}, + [12809] = {.lex_state = 0}, + [12810] = {.lex_state = 0}, + [12811] = {.lex_state = 0}, + [12812] = {.lex_state = 0}, + [12813] = {.lex_state = 0}, + [12814] = {.lex_state = 0}, + [12815] = {.lex_state = 0}, + [12816] = {.lex_state = 0}, + [12817] = {.lex_state = 0}, + [12818] = {.lex_state = 0}, + [12819] = {.lex_state = 0}, + [12820] = {.lex_state = 0}, + [12821] = {.lex_state = 0}, + [12822] = {.lex_state = 0}, + [12823] = {.lex_state = 0}, + [12824] = {.lex_state = 0}, + [12825] = {.lex_state = 0}, + [12826] = {.lex_state = 0}, + [12827] = {.lex_state = 0}, + [12828] = {.lex_state = 0}, + [12829] = {.lex_state = 0}, + [12830] = {.lex_state = 0}, + [12831] = {.lex_state = 0}, + [12832] = {.lex_state = 0}, + [12833] = {.lex_state = 0}, + [12834] = {.lex_state = 0}, + [12835] = {.lex_state = 0}, + [12836] = {.lex_state = 0}, + [12837] = {.lex_state = 0}, + [12838] = {.lex_state = 0}, + [12839] = {.lex_state = 0}, + [12840] = {.lex_state = 0}, + [12841] = {.lex_state = 0}, + [12842] = {.lex_state = 0}, + [12843] = {.lex_state = 0}, + [12844] = {.lex_state = 0}, + [12845] = {.lex_state = 0}, + [12846] = {.lex_state = 0}, + [12847] = {.lex_state = 0}, + [12848] = {.lex_state = 0}, + [12849] = {.lex_state = 0}, + [12850] = {.lex_state = 0}, + [12851] = {.lex_state = 0}, + [12852] = {.lex_state = 0}, + [12853] = {.lex_state = 0}, + [12854] = {.lex_state = 0}, + [12855] = {.lex_state = 0}, + [12856] = {.lex_state = 0}, + [12857] = {.lex_state = 0}, + [12858] = {.lex_state = 0}, + [12859] = {.lex_state = 0}, + [12860] = {.lex_state = 0}, + [12861] = {.lex_state = 0}, + [12862] = {.lex_state = 0}, + [12863] = {.lex_state = 0}, + [12864] = {.lex_state = 0}, + [12865] = {.lex_state = 0}, + [12866] = {.lex_state = 0}, + [12867] = {.lex_state = 0}, + [12868] = {.lex_state = 0}, + [12869] = {.lex_state = 0}, + [12870] = {.lex_state = 0}, + [12871] = {.lex_state = 0}, + [12872] = {.lex_state = 0}, + [12873] = {.lex_state = 0}, + [12874] = {.lex_state = 0}, + [12875] = {.lex_state = 0}, + [12876] = {.lex_state = 0}, + [12877] = {.lex_state = 0}, + [12878] = {.lex_state = 0}, + [12879] = {.lex_state = 0}, + [12880] = {.lex_state = 0}, + [12881] = {.lex_state = 0}, + [12882] = {.lex_state = 0}, + [12883] = {.lex_state = 0}, + [12884] = {.lex_state = 0}, + [12885] = {.lex_state = 0}, + [12886] = {.lex_state = 0}, + [12887] = {.lex_state = 0}, + [12888] = {.lex_state = 0}, + [12889] = {.lex_state = 0}, + [12890] = {.lex_state = 0}, + [12891] = {.lex_state = 0}, + [12892] = {.lex_state = 0}, + [12893] = {.lex_state = 0}, + [12894] = {.lex_state = 0}, + [12895] = {.lex_state = 0}, + [12896] = {.lex_state = 0}, + [12897] = {.lex_state = 0}, + [12898] = {.lex_state = 0}, + [12899] = {.lex_state = 0}, + [12900] = {.lex_state = 0}, + [12901] = {.lex_state = 0}, + [12902] = {.lex_state = 0}, + [12903] = {.lex_state = 0}, + [12904] = {.lex_state = 8}, + [12905] = {.lex_state = 0}, + [12906] = {.lex_state = 0}, + [12907] = {.lex_state = 0}, + [12908] = {.lex_state = 8}, + [12909] = {.lex_state = 0}, + [12910] = {.lex_state = 0}, + [12911] = {.lex_state = 0}, + [12912] = {.lex_state = 0}, + [12913] = {.lex_state = 0}, + [12914] = {.lex_state = 0}, + [12915] = {.lex_state = 0}, + [12916] = {.lex_state = 0}, + [12917] = {.lex_state = 0}, + [12918] = {.lex_state = 0}, + [12919] = {.lex_state = 0}, + [12920] = {.lex_state = 0}, + [12921] = {.lex_state = 0}, + [12922] = {.lex_state = 0}, + [12923] = {.lex_state = 0}, + [12924] = {.lex_state = 0}, + [12925] = {.lex_state = 0}, + [12926] = {.lex_state = 0}, + [12927] = {.lex_state = 0}, + [12928] = {.lex_state = 0}, + [12929] = {.lex_state = 0}, + [12930] = {.lex_state = 0}, + [12931] = {.lex_state = 0}, + [12932] = {.lex_state = 0}, + [12933] = {.lex_state = 0}, + [12934] = {.lex_state = 0}, + [12935] = {.lex_state = 0}, + [12936] = {.lex_state = 0}, + [12937] = {.lex_state = 0}, + [12938] = {.lex_state = 0}, + [12939] = {.lex_state = 0}, + [12940] = {.lex_state = 0}, + [12941] = {.lex_state = 0}, + [12942] = {.lex_state = 0}, + [12943] = {.lex_state = 0}, + [12944] = {.lex_state = 0}, + [12945] = {.lex_state = 0}, + [12946] = {.lex_state = 0}, + [12947] = {.lex_state = 0}, + [12948] = {.lex_state = 0}, + [12949] = {.lex_state = 0}, + [12950] = {.lex_state = 0}, + [12951] = {.lex_state = 0}, + [12952] = {.lex_state = 0}, + [12953] = {.lex_state = 0}, + [12954] = {.lex_state = 0}, + [12955] = {.lex_state = 0}, + [12956] = {.lex_state = 0}, + [12957] = {.lex_state = 0}, + [12958] = {.lex_state = 0}, + [12959] = {.lex_state = 0}, + [12960] = {.lex_state = 0}, + [12961] = {.lex_state = 0}, + [12962] = {.lex_state = 0}, + [12963] = {.lex_state = 0}, + [12964] = {.lex_state = 0}, + [12965] = {.lex_state = 0}, + [12966] = {.lex_state = 0}, + [12967] = {.lex_state = 0}, + [12968] = {.lex_state = 0}, + [12969] = {.lex_state = 0}, + [12970] = {.lex_state = 0}, + [12971] = {.lex_state = 0}, + [12972] = {.lex_state = 0}, + [12973] = {.lex_state = 0}, + [12974] = {.lex_state = 0}, + [12975] = {.lex_state = 0}, + [12976] = {.lex_state = 0}, + [12977] = {.lex_state = 0}, + [12978] = {.lex_state = 0}, + [12979] = {.lex_state = 0}, + [12980] = {.lex_state = 0}, + [12981] = {.lex_state = 0}, + [12982] = {.lex_state = 0}, + [12983] = {.lex_state = 0}, + [12984] = {.lex_state = 0}, + [12985] = {.lex_state = 0}, + [12986] = {.lex_state = 0}, + [12987] = {.lex_state = 0}, + [12988] = {.lex_state = 0}, + [12989] = {.lex_state = 0}, + [12990] = {.lex_state = 0}, + [12991] = {.lex_state = 0}, + [12992] = {.lex_state = 0}, + [12993] = {.lex_state = 0}, + [12994] = {.lex_state = 0}, + [12995] = {.lex_state = 0}, + [12996] = {.lex_state = 0}, + [12997] = {.lex_state = 0}, + [12998] = {.lex_state = 0}, + [12999] = {.lex_state = 0}, + [13000] = {.lex_state = 0}, + [13001] = {.lex_state = 0}, + [13002] = {.lex_state = 0}, + [13003] = {.lex_state = 0}, + [13004] = {.lex_state = 0}, + [13005] = {.lex_state = 0}, + [13006] = {.lex_state = 0}, + [13007] = {.lex_state = 0}, + [13008] = {.lex_state = 0}, + [13009] = {.lex_state = 25}, + [13010] = {.lex_state = 0}, + [13011] = {.lex_state = 0}, + [13012] = {.lex_state = 0}, + [13013] = {.lex_state = 0}, + [13014] = {.lex_state = 0}, + [13015] = {.lex_state = 0}, + [13016] = {.lex_state = 0}, + [13017] = {.lex_state = 0}, + [13018] = {.lex_state = 0}, + [13019] = {.lex_state = 0}, + [13020] = {.lex_state = 0}, + [13021] = {.lex_state = 0}, + [13022] = {.lex_state = 0}, + [13023] = {.lex_state = 0}, + [13024] = {.lex_state = 0}, + [13025] = {.lex_state = 0}, + [13026] = {.lex_state = 0}, + [13027] = {.lex_state = 0}, + [13028] = {.lex_state = 0}, + [13029] = {.lex_state = 0}, + [13030] = {.lex_state = 0}, + [13031] = {.lex_state = 0}, + [13032] = {.lex_state = 0}, + [13033] = {.lex_state = 0}, + [13034] = {.lex_state = 0}, + [13035] = {.lex_state = 0}, + [13036] = {.lex_state = 0}, + [13037] = {.lex_state = 0}, + [13038] = {.lex_state = 0}, + [13039] = {.lex_state = 0}, + [13040] = {.lex_state = 0}, + [13041] = {.lex_state = 0}, + [13042] = {.lex_state = 0}, + [13043] = {.lex_state = 0}, + [13044] = {.lex_state = 25}, + [13045] = {.lex_state = 0}, + [13046] = {.lex_state = 0}, + [13047] = {.lex_state = 0}, + [13048] = {.lex_state = 0}, + [13049] = {.lex_state = 0}, + [13050] = {.lex_state = 0}, + [13051] = {.lex_state = 0}, + [13052] = {.lex_state = 0}, + [13053] = {.lex_state = 0}, + [13054] = {.lex_state = 0}, + [13055] = {.lex_state = 0}, + [13056] = {.lex_state = 0}, + [13057] = {.lex_state = 0}, + [13058] = {.lex_state = 0}, + [13059] = {.lex_state = 0}, + [13060] = {.lex_state = 0}, + [13061] = {.lex_state = 0}, + [13062] = {.lex_state = 0}, + [13063] = {.lex_state = 0}, + [13064] = {.lex_state = 0}, + [13065] = {.lex_state = 0}, + [13066] = {.lex_state = 0}, + [13067] = {.lex_state = 0}, + [13068] = {.lex_state = 0}, + [13069] = {.lex_state = 0}, + [13070] = {.lex_state = 0}, + [13071] = {.lex_state = 0}, + [13072] = {.lex_state = 0}, + [13073] = {.lex_state = 0}, + [13074] = {.lex_state = 0}, + [13075] = {.lex_state = 0}, + [13076] = {.lex_state = 0}, + [13077] = {.lex_state = 0}, + [13078] = {.lex_state = 0}, + [13079] = {.lex_state = 0}, + [13080] = {.lex_state = 0}, + [13081] = {.lex_state = 0}, + [13082] = {.lex_state = 0}, + [13083] = {.lex_state = 0}, + [13084] = {.lex_state = 0}, + [13085] = {.lex_state = 0}, + [13086] = {.lex_state = 0}, + [13087] = {.lex_state = 0}, + [13088] = {.lex_state = 0}, + [13089] = {.lex_state = 0}, + [13090] = {.lex_state = 0}, + [13091] = {.lex_state = 0}, + [13092] = {.lex_state = 0}, + [13093] = {.lex_state = 0}, + [13094] = {.lex_state = 0}, + [13095] = {.lex_state = 0}, + [13096] = {.lex_state = 0}, + [13097] = {.lex_state = 0}, + [13098] = {.lex_state = 0}, + [13099] = {.lex_state = 0}, + [13100] = {.lex_state = 0}, + [13101] = {.lex_state = 0}, + [13102] = {.lex_state = 0}, + [13103] = {.lex_state = 0}, + [13104] = {.lex_state = 0}, + [13105] = {.lex_state = 0}, + [13106] = {.lex_state = 0}, + [13107] = {.lex_state = 0}, + [13108] = {.lex_state = 25}, + [13109] = {.lex_state = 0}, + [13110] = {.lex_state = 0}, + [13111] = {.lex_state = 0}, + [13112] = {.lex_state = 0}, + [13113] = {.lex_state = 0}, + [13114] = {.lex_state = 0}, + [13115] = {.lex_state = 0}, + [13116] = {.lex_state = 0}, + [13117] = {.lex_state = 0}, + [13118] = {.lex_state = 0}, + [13119] = {.lex_state = 0}, + [13120] = {.lex_state = 0}, + [13121] = {.lex_state = 0}, + [13122] = {.lex_state = 0}, + [13123] = {.lex_state = 0}, + [13124] = {.lex_state = 0}, + [13125] = {.lex_state = 0}, + [13126] = {.lex_state = 0}, + [13127] = {.lex_state = 0}, + [13128] = {.lex_state = 0}, + [13129] = {.lex_state = 0}, + [13130] = {.lex_state = 0}, + [13131] = {.lex_state = 25}, + [13132] = {.lex_state = 0}, + [13133] = {.lex_state = 0}, + [13134] = {.lex_state = 25}, + [13135] = {.lex_state = 0}, + [13136] = {.lex_state = 0}, + [13137] = {.lex_state = 0}, + [13138] = {.lex_state = 0}, + [13139] = {.lex_state = 0}, + [13140] = {.lex_state = 0}, + [13141] = {.lex_state = 0}, + [13142] = {.lex_state = 0}, + [13143] = {.lex_state = 0}, + [13144] = {.lex_state = 0}, + [13145] = {.lex_state = 0}, + [13146] = {.lex_state = 0}, + [13147] = {.lex_state = 0}, + [13148] = {.lex_state = 0}, + [13149] = {.lex_state = 0}, + [13150] = {.lex_state = 0}, + [13151] = {.lex_state = 0}, + [13152] = {.lex_state = 0}, + [13153] = {.lex_state = 0}, + [13154] = {.lex_state = 0}, + [13155] = {.lex_state = 0}, + [13156] = {.lex_state = 0}, + [13157] = {.lex_state = 0}, + [13158] = {.lex_state = 0}, + [13159] = {.lex_state = 0}, + [13160] = {.lex_state = 0}, + [13161] = {.lex_state = 0}, + [13162] = {.lex_state = 0}, + [13163] = {.lex_state = 0}, + [13164] = {.lex_state = 0}, + [13165] = {.lex_state = 25}, + [13166] = {.lex_state = 25}, + [13167] = {.lex_state = 0}, + [13168] = {.lex_state = 0}, + [13169] = {.lex_state = 0}, + [13170] = {.lex_state = 0}, + [13171] = {.lex_state = 0}, + [13172] = {.lex_state = 0}, + [13173] = {.lex_state = 0}, + [13174] = {.lex_state = 0}, + [13175] = {.lex_state = 0}, + [13176] = {.lex_state = 0}, + [13177] = {.lex_state = 0}, + [13178] = {.lex_state = 0}, + [13179] = {.lex_state = 0}, + [13180] = {.lex_state = 0}, + [13181] = {.lex_state = 0}, + [13182] = {.lex_state = 0}, + [13183] = {.lex_state = 0}, + [13184] = {.lex_state = 0}, + [13185] = {.lex_state = 0}, + [13186] = {.lex_state = 0}, + [13187] = {.lex_state = 0}, + [13188] = {.lex_state = 0}, + [13189] = {.lex_state = 0}, + [13190] = {.lex_state = 0}, + [13191] = {.lex_state = 0}, + [13192] = {.lex_state = 0}, + [13193] = {.lex_state = 0}, + [13194] = {.lex_state = 0}, + [13195] = {.lex_state = 0}, + [13196] = {.lex_state = 0}, + [13197] = {.lex_state = 0}, + [13198] = {.lex_state = 0}, + [13199] = {.lex_state = 0}, + [13200] = {.lex_state = 0}, + [13201] = {.lex_state = 0}, + [13202] = {.lex_state = 0}, + [13203] = {.lex_state = 0}, + [13204] = {.lex_state = 0}, + [13205] = {.lex_state = 0}, + [13206] = {.lex_state = 0}, + [13207] = {.lex_state = 0}, + [13208] = {.lex_state = 0}, + [13209] = {.lex_state = 0}, + [13210] = {.lex_state = 0}, + [13211] = {.lex_state = 0}, + [13212] = {.lex_state = 0}, + [13213] = {.lex_state = 0}, + [13214] = {.lex_state = 0}, + [13215] = {.lex_state = 0}, + [13216] = {.lex_state = 0}, + [13217] = {.lex_state = 0}, + [13218] = {.lex_state = 0}, + [13219] = {.lex_state = 0}, + [13220] = {.lex_state = 0}, + [13221] = {.lex_state = 0}, + [13222] = {.lex_state = 0}, + [13223] = {.lex_state = 0}, + [13224] = {.lex_state = 0}, + [13225] = {.lex_state = 0}, + [13226] = {.lex_state = 0}, + [13227] = {.lex_state = 0}, + [13228] = {.lex_state = 0}, + [13229] = {.lex_state = 0}, + [13230] = {.lex_state = 0}, + [13231] = {.lex_state = 0}, + [13232] = {.lex_state = 0}, + [13233] = {.lex_state = 0}, + [13234] = {.lex_state = 0}, + [13235] = {.lex_state = 0}, + [13236] = {.lex_state = 0}, + [13237] = {.lex_state = 0}, + [13238] = {.lex_state = 0}, + [13239] = {.lex_state = 0}, + [13240] = {.lex_state = 0}, + [13241] = {.lex_state = 0}, + [13242] = {.lex_state = 0}, + [13243] = {.lex_state = 0}, + [13244] = {.lex_state = 0}, + [13245] = {.lex_state = 0}, + [13246] = {.lex_state = 0}, + [13247] = {.lex_state = 0}, + [13248] = {.lex_state = 0}, + [13249] = {.lex_state = 0}, + [13250] = {.lex_state = 0}, + [13251] = {.lex_state = 0}, + [13252] = {.lex_state = 0}, + [13253] = {.lex_state = 0}, + [13254] = {.lex_state = 0}, + [13255] = {.lex_state = 0}, + [13256] = {.lex_state = 0}, + [13257] = {.lex_state = 0}, + [13258] = {.lex_state = 0}, + [13259] = {.lex_state = 0}, + [13260] = {.lex_state = 0}, + [13261] = {.lex_state = 0}, + [13262] = {.lex_state = 0}, + [13263] = {.lex_state = 0}, + [13264] = {.lex_state = 0}, + [13265] = {.lex_state = 0}, + [13266] = {.lex_state = 0}, + [13267] = {.lex_state = 0}, + [13268] = {.lex_state = 0}, + [13269] = {.lex_state = 0}, + [13270] = {.lex_state = 0}, + [13271] = {.lex_state = 0}, + [13272] = {.lex_state = 0}, + [13273] = {.lex_state = 0}, + [13274] = {.lex_state = 0}, + [13275] = {.lex_state = 0}, + [13276] = {.lex_state = 0}, + [13277] = {.lex_state = 0}, + [13278] = {.lex_state = 0}, + [13279] = {.lex_state = 0}, + [13280] = {.lex_state = 0}, + [13281] = {.lex_state = 0}, + [13282] = {.lex_state = 0}, + [13283] = {.lex_state = 0}, + [13284] = {.lex_state = 0}, + [13285] = {.lex_state = 0}, + [13286] = {.lex_state = 0}, + [13287] = {.lex_state = 0}, + [13288] = {.lex_state = 0}, + [13289] = {.lex_state = 0}, + [13290] = {.lex_state = 0}, + [13291] = {.lex_state = 0}, + [13292] = {.lex_state = 0}, + [13293] = {.lex_state = 0}, + [13294] = {.lex_state = 0}, + [13295] = {.lex_state = 0}, + [13296] = {.lex_state = 0}, + [13297] = {.lex_state = 0}, + [13298] = {.lex_state = 0}, + [13299] = {.lex_state = 0}, + [13300] = {.lex_state = 0}, + [13301] = {.lex_state = 0}, + [13302] = {.lex_state = 0}, + [13303] = {.lex_state = 0}, + [13304] = {.lex_state = 0}, + [13305] = {.lex_state = 0}, + [13306] = {.lex_state = 0}, + [13307] = {.lex_state = 0}, + [13308] = {.lex_state = 0}, + [13309] = {.lex_state = 0}, + [13310] = {.lex_state = 0}, + [13311] = {.lex_state = 0}, + [13312] = {.lex_state = 0}, + [13313] = {.lex_state = 0}, + [13314] = {.lex_state = 0}, + [13315] = {.lex_state = 0}, + [13316] = {.lex_state = 0}, + [13317] = {.lex_state = 0}, + [13318] = {.lex_state = 25}, + [13319] = {.lex_state = 0}, + [13320] = {.lex_state = 0}, + [13321] = {.lex_state = 0}, + [13322] = {.lex_state = 0}, + [13323] = {.lex_state = 0}, + [13324] = {.lex_state = 0}, + [13325] = {.lex_state = 0}, + [13326] = {.lex_state = 0}, + [13327] = {.lex_state = 0}, + [13328] = {.lex_state = 0}, + [13329] = {.lex_state = 0}, + [13330] = {.lex_state = 0}, + [13331] = {.lex_state = 0}, + [13332] = {.lex_state = 0}, + [13333] = {.lex_state = 0}, + [13334] = {.lex_state = 0}, + [13335] = {.lex_state = 0}, + [13336] = {.lex_state = 0}, + [13337] = {.lex_state = 0}, + [13338] = {.lex_state = 0}, + [13339] = {.lex_state = 0}, + [13340] = {.lex_state = 0}, + [13341] = {.lex_state = 0}, + [13342] = {.lex_state = 8}, + [13343] = {.lex_state = 0}, + [13344] = {.lex_state = 8}, + [13345] = {.lex_state = 0}, + [13346] = {.lex_state = 0}, + [13347] = {.lex_state = 0}, + [13348] = {.lex_state = 0}, + [13349] = {.lex_state = 5}, + [13350] = {.lex_state = 0}, + [13351] = {.lex_state = 0}, + [13352] = {.lex_state = 0}, + [13353] = {.lex_state = 0}, + [13354] = {.lex_state = 0}, + [13355] = {.lex_state = 0}, + [13356] = {.lex_state = 0}, + [13357] = {.lex_state = 0}, + [13358] = {.lex_state = 0}, + [13359] = {.lex_state = 0}, + [13360] = {.lex_state = 0}, + [13361] = {.lex_state = 0}, + [13362] = {.lex_state = 0}, + [13363] = {.lex_state = 0}, + [13364] = {.lex_state = 0}, + [13365] = {.lex_state = 0}, + [13366] = {.lex_state = 0}, + [13367] = {.lex_state = 0}, + [13368] = {.lex_state = 0}, + [13369] = {.lex_state = 0}, + [13370] = {.lex_state = 0}, + [13371] = {.lex_state = 0}, + [13372] = {.lex_state = 0}, + [13373] = {.lex_state = 0}, + [13374] = {.lex_state = 0}, + [13375] = {.lex_state = 0}, + [13376] = {.lex_state = 0}, + [13377] = {.lex_state = 0}, + [13378] = {.lex_state = 0}, + [13379] = {.lex_state = 0}, + [13380] = {.lex_state = 0}, + [13381] = {.lex_state = 0}, + [13382] = {.lex_state = 0}, + [13383] = {.lex_state = 0}, + [13384] = {.lex_state = 0}, + [13385] = {.lex_state = 0}, + [13386] = {.lex_state = 0}, + [13387] = {.lex_state = 0}, + [13388] = {.lex_state = 0}, + [13389] = {.lex_state = 0}, + [13390] = {.lex_state = 0}, + [13391] = {.lex_state = 0}, + [13392] = {.lex_state = 0}, + [13393] = {.lex_state = 0}, + [13394] = {.lex_state = 0}, + [13395] = {.lex_state = 0}, + [13396] = {.lex_state = 0}, + [13397] = {.lex_state = 0}, + [13398] = {.lex_state = 0}, + [13399] = {.lex_state = 0}, + [13400] = {.lex_state = 0}, + [13401] = {.lex_state = 0}, + [13402] = {.lex_state = 0}, + [13403] = {.lex_state = 0}, + [13404] = {.lex_state = 0}, + [13405] = {.lex_state = 0}, + [13406] = {.lex_state = 0}, + [13407] = {.lex_state = 0}, + [13408] = {.lex_state = 0}, + [13409] = {.lex_state = 0}, + [13410] = {.lex_state = 0}, + [13411] = {.lex_state = 0}, + [13412] = {.lex_state = 0}, + [13413] = {.lex_state = 0}, + [13414] = {.lex_state = 0}, + [13415] = {.lex_state = 0}, + [13416] = {.lex_state = 0}, + [13417] = {.lex_state = 0}, + [13418] = {.lex_state = 0}, + [13419] = {.lex_state = 0}, + [13420] = {.lex_state = 0}, + [13421] = {.lex_state = 0}, + [13422] = {.lex_state = 8}, + [13423] = {.lex_state = 0}, + [13424] = {.lex_state = 0}, + [13425] = {.lex_state = 0}, + [13426] = {.lex_state = 0}, + [13427] = {.lex_state = 0}, + [13428] = {.lex_state = 0}, + [13429] = {.lex_state = 0}, + [13430] = {.lex_state = 0}, + [13431] = {.lex_state = 0}, + [13432] = {.lex_state = 0}, + [13433] = {.lex_state = 0}, + [13434] = {.lex_state = 0}, + [13435] = {.lex_state = 0}, + [13436] = {.lex_state = 0}, + [13437] = {.lex_state = 0}, + [13438] = {.lex_state = 0}, + [13439] = {.lex_state = 0}, + [13440] = {.lex_state = 0}, + [13441] = {.lex_state = 0}, + [13442] = {.lex_state = 0}, + [13443] = {.lex_state = 0}, + [13444] = {.lex_state = 0}, + [13445] = {.lex_state = 0}, + [13446] = {.lex_state = 0}, + [13447] = {.lex_state = 0}, + [13448] = {.lex_state = 0}, + [13449] = {.lex_state = 0}, + [13450] = {.lex_state = 0}, + [13451] = {.lex_state = 0}, + [13452] = {.lex_state = 0}, + [13453] = {.lex_state = 0}, + [13454] = {.lex_state = 0}, + [13455] = {.lex_state = 0}, + [13456] = {.lex_state = 0}, + [13457] = {.lex_state = 0}, + [13458] = {.lex_state = 0}, + [13459] = {.lex_state = 0}, + [13460] = {.lex_state = 0}, + [13461] = {.lex_state = 0}, + [13462] = {.lex_state = 0}, + [13463] = {.lex_state = 0}, + [13464] = {.lex_state = 0}, + [13465] = {.lex_state = 0}, + [13466] = {.lex_state = 0}, + [13467] = {.lex_state = 0}, + [13468] = {.lex_state = 0}, + [13469] = {.lex_state = 0}, + [13470] = {.lex_state = 0}, + [13471] = {.lex_state = 0}, + [13472] = {.lex_state = 0}, + [13473] = {.lex_state = 0}, + [13474] = {.lex_state = 0}, + [13475] = {.lex_state = 0}, + [13476] = {.lex_state = 0}, + [13477] = {.lex_state = 0}, + [13478] = {.lex_state = 0}, + [13479] = {.lex_state = 0}, + [13480] = {.lex_state = 0}, + [13481] = {.lex_state = 0}, + [13482] = {.lex_state = 0}, + [13483] = {.lex_state = 0}, + [13484] = {.lex_state = 0}, + [13485] = {.lex_state = 0}, + [13486] = {.lex_state = 0}, + [13487] = {.lex_state = 0}, + [13488] = {.lex_state = 0}, + [13489] = {.lex_state = 0}, + [13490] = {.lex_state = 0}, + [13491] = {.lex_state = 0}, + [13492] = {.lex_state = 0}, + [13493] = {.lex_state = 0}, + [13494] = {.lex_state = 0}, + [13495] = {.lex_state = 0}, + [13496] = {.lex_state = 0}, + [13497] = {.lex_state = 0}, + [13498] = {.lex_state = 0}, + [13499] = {.lex_state = 0}, + [13500] = {.lex_state = 0}, + [13501] = {.lex_state = 0}, + [13502] = {.lex_state = 0}, + [13503] = {.lex_state = 0}, + [13504] = {.lex_state = 0}, + [13505] = {.lex_state = 0}, + [13506] = {.lex_state = 0}, + [13507] = {.lex_state = 0}, + [13508] = {.lex_state = 0}, + [13509] = {.lex_state = 0}, + [13510] = {.lex_state = 0}, + [13511] = {.lex_state = 0}, + [13512] = {.lex_state = 0}, + [13513] = {.lex_state = 0}, + [13514] = {.lex_state = 0}, + [13515] = {.lex_state = 0}, + [13516] = {.lex_state = 0}, + [13517] = {.lex_state = 0}, + [13518] = {.lex_state = 0}, + [13519] = {.lex_state = 0}, + [13520] = {.lex_state = 0}, + [13521] = {.lex_state = 0}, + [13522] = {.lex_state = 0}, + [13523] = {.lex_state = 0}, + [13524] = {.lex_state = 0}, + [13525] = {.lex_state = 0}, + [13526] = {.lex_state = 0}, + [13527] = {.lex_state = 0}, + [13528] = {.lex_state = 0}, + [13529] = {.lex_state = 0}, + [13530] = {.lex_state = 0}, + [13531] = {.lex_state = 0}, + [13532] = {.lex_state = 0}, + [13533] = {.lex_state = 0}, + [13534] = {.lex_state = 0}, + [13535] = {.lex_state = 0}, + [13536] = {.lex_state = 0}, + [13537] = {.lex_state = 8}, + [13538] = {.lex_state = 0}, + [13539] = {.lex_state = 0}, + [13540] = {.lex_state = 0}, + [13541] = {.lex_state = 0}, + [13542] = {.lex_state = 0}, + [13543] = {.lex_state = 0}, + [13544] = {.lex_state = 8}, + [13545] = {.lex_state = 0}, + [13546] = {.lex_state = 0}, + [13547] = {.lex_state = 0}, + [13548] = {.lex_state = 0}, + [13549] = {.lex_state = 0}, + [13550] = {.lex_state = 0}, + [13551] = {.lex_state = 0}, + [13552] = {.lex_state = 0}, + [13553] = {.lex_state = 0}, + [13554] = {.lex_state = 0}, + [13555] = {.lex_state = 0}, + [13556] = {.lex_state = 0}, + [13557] = {.lex_state = 0}, + [13558] = {.lex_state = 0}, + [13559] = {.lex_state = 0}, + [13560] = {.lex_state = 0}, + [13561] = {.lex_state = 0}, + [13562] = {.lex_state = 0}, + [13563] = {.lex_state = 0}, + [13564] = {.lex_state = 0}, + [13565] = {.lex_state = 0}, + [13566] = {.lex_state = 0}, + [13567] = {.lex_state = 0}, + [13568] = {.lex_state = 0}, + [13569] = {.lex_state = 0}, + [13570] = {.lex_state = 0}, + [13571] = {.lex_state = 0}, + [13572] = {.lex_state = 0}, + [13573] = {.lex_state = 0}, + [13574] = {.lex_state = 0}, + [13575] = {.lex_state = 0}, + [13576] = {.lex_state = 0}, + [13577] = {.lex_state = 0}, + [13578] = {.lex_state = 0}, + [13579] = {.lex_state = 0}, + [13580] = {.lex_state = 0}, + [13581] = {.lex_state = 0}, + [13582] = {.lex_state = 0}, + [13583] = {.lex_state = 0}, + [13584] = {.lex_state = 0}, + [13585] = {.lex_state = 0}, + [13586] = {.lex_state = 0}, + [13587] = {.lex_state = 0}, + [13588] = {.lex_state = 0}, + [13589] = {.lex_state = 0}, + [13590] = {.lex_state = 0}, + [13591] = {.lex_state = 0}, + [13592] = {.lex_state = 0}, + [13593] = {.lex_state = 0}, + [13594] = {.lex_state = 0}, + [13595] = {.lex_state = 0}, + [13596] = {.lex_state = 0}, + [13597] = {.lex_state = 0}, + [13598] = {.lex_state = 0}, + [13599] = {.lex_state = 0}, + [13600] = {.lex_state = 0}, + [13601] = {.lex_state = 0}, + [13602] = {.lex_state = 0}, + [13603] = {.lex_state = 0}, + [13604] = {.lex_state = 0}, + [13605] = {.lex_state = 0}, + [13606] = {.lex_state = 0}, + [13607] = {.lex_state = 0}, + [13608] = {.lex_state = 0}, + [13609] = {.lex_state = 0}, + [13610] = {.lex_state = 0}, + [13611] = {.lex_state = 0}, + [13612] = {.lex_state = 0}, + [13613] = {.lex_state = 0}, + [13614] = {.lex_state = 0}, + [13615] = {.lex_state = 0}, + [13616] = {.lex_state = 0}, + [13617] = {.lex_state = 0}, + [13618] = {.lex_state = 0}, + [13619] = {.lex_state = 0}, + [13620] = {.lex_state = 0}, + [13621] = {.lex_state = 0}, + [13622] = {.lex_state = 0}, + [13623] = {.lex_state = 0}, + [13624] = {.lex_state = 0}, + [13625] = {.lex_state = 0}, + [13626] = {.lex_state = 0}, + [13627] = {.lex_state = 0}, + [13628] = {.lex_state = 0}, + [13629] = {.lex_state = 0}, + [13630] = {.lex_state = 0}, + [13631] = {.lex_state = 0}, + [13632] = {.lex_state = 0}, + [13633] = {.lex_state = 0}, + [13634] = {.lex_state = 0}, + [13635] = {.lex_state = 0}, + [13636] = {.lex_state = 0}, + [13637] = {.lex_state = 0}, + [13638] = {.lex_state = 0}, + [13639] = {.lex_state = 0}, + [13640] = {.lex_state = 0}, + [13641] = {.lex_state = 0}, + [13642] = {.lex_state = 0}, + [13643] = {.lex_state = 0}, + [13644] = {.lex_state = 0}, + [13645] = {.lex_state = 0}, + [13646] = {.lex_state = 0}, + [13647] = {.lex_state = 0}, + [13648] = {.lex_state = 0}, + [13649] = {.lex_state = 0}, + [13650] = {.lex_state = 0}, + [13651] = {.lex_state = 0}, + [13652] = {.lex_state = 0}, + [13653] = {.lex_state = 0}, + [13654] = {.lex_state = 0}, + [13655] = {.lex_state = 0}, + [13656] = {.lex_state = 0}, + [13657] = {.lex_state = 0}, + [13658] = {.lex_state = 0}, + [13659] = {.lex_state = 0}, + [13660] = {.lex_state = 0}, + [13661] = {.lex_state = 0}, + [13662] = {.lex_state = 0}, + [13663] = {.lex_state = 0}, + [13664] = {.lex_state = 0}, + [13665] = {.lex_state = 0}, + [13666] = {.lex_state = 0}, + [13667] = {.lex_state = 0}, + [13668] = {.lex_state = 0}, + [13669] = {.lex_state = 0}, + [13670] = {.lex_state = 0}, + [13671] = {.lex_state = 0}, + [13672] = {.lex_state = 0}, + [13673] = {.lex_state = 0}, + [13674] = {.lex_state = 0}, + [13675] = {.lex_state = 0}, + [13676] = {.lex_state = 0}, + [13677] = {.lex_state = 0}, + [13678] = {.lex_state = 0}, + [13679] = {.lex_state = 0}, + [13680] = {.lex_state = 0}, + [13681] = {.lex_state = 0}, + [13682] = {.lex_state = 0}, + [13683] = {.lex_state = 0}, + [13684] = {.lex_state = 0}, + [13685] = {.lex_state = 0}, + [13686] = {.lex_state = 0}, + [13687] = {.lex_state = 0}, + [13688] = {.lex_state = 0}, + [13689] = {.lex_state = 0}, + [13690] = {.lex_state = 0}, + [13691] = {.lex_state = 0}, + [13692] = {.lex_state = 0}, + [13693] = {.lex_state = 0}, + [13694] = {.lex_state = 0}, + [13695] = {.lex_state = 0}, + [13696] = {.lex_state = 0}, + [13697] = {.lex_state = 0}, + [13698] = {.lex_state = 0}, + [13699] = {.lex_state = 0}, + [13700] = {.lex_state = 0}, + [13701] = {.lex_state = 0}, + [13702] = {.lex_state = 0}, + [13703] = {.lex_state = 0}, + [13704] = {.lex_state = 0}, + [13705] = {.lex_state = 0}, + [13706] = {.lex_state = 0}, + [13707] = {.lex_state = 0}, + [13708] = {.lex_state = 0}, + [13709] = {.lex_state = 0}, + [13710] = {.lex_state = 0}, + [13711] = {.lex_state = 0}, + [13712] = {.lex_state = 0}, + [13713] = {.lex_state = 0}, + [13714] = {.lex_state = 0}, + [13715] = {.lex_state = 0}, + [13716] = {.lex_state = 0}, + [13717] = {.lex_state = 8}, + [13718] = {.lex_state = 0}, + [13719] = {.lex_state = 0}, + [13720] = {.lex_state = 0}, + [13721] = {.lex_state = 0}, + [13722] = {.lex_state = 0}, + [13723] = {.lex_state = 0}, + [13724] = {.lex_state = 0}, + [13725] = {.lex_state = 0}, + [13726] = {.lex_state = 0}, + [13727] = {.lex_state = 0}, + [13728] = {.lex_state = 0}, + [13729] = {.lex_state = 0}, + [13730] = {.lex_state = 0}, + [13731] = {.lex_state = 0}, + [13732] = {.lex_state = 0}, + [13733] = {.lex_state = 25}, + [13734] = {.lex_state = 0}, + [13735] = {.lex_state = 0}, + [13736] = {.lex_state = 0}, + [13737] = {.lex_state = 0}, + [13738] = {.lex_state = 0}, + [13739] = {.lex_state = 0}, + [13740] = {.lex_state = 0}, + [13741] = {.lex_state = 0}, + [13742] = {.lex_state = 0}, + [13743] = {.lex_state = 0}, + [13744] = {.lex_state = 8}, + [13745] = {.lex_state = 0}, + [13746] = {.lex_state = 0}, + [13747] = {.lex_state = 8}, + [13748] = {.lex_state = 0}, + [13749] = {.lex_state = 0}, + [13750] = {.lex_state = 0}, + [13751] = {.lex_state = 0}, + [13752] = {.lex_state = 0}, + [13753] = {.lex_state = 0}, + [13754] = {.lex_state = 25}, + [13755] = {.lex_state = 0}, + [13756] = {.lex_state = 0}, + [13757] = {.lex_state = 0}, + [13758] = {.lex_state = 0}, + [13759] = {.lex_state = 0}, + [13760] = {.lex_state = 0}, + [13761] = {.lex_state = 0}, + [13762] = {.lex_state = 0}, + [13763] = {.lex_state = 0}, + [13764] = {.lex_state = 0}, + [13765] = {.lex_state = 0}, + [13766] = {.lex_state = 0}, + [13767] = {.lex_state = 0}, + [13768] = {.lex_state = 0}, + [13769] = {.lex_state = 0}, + [13770] = {.lex_state = 0}, + [13771] = {.lex_state = 0}, + [13772] = {.lex_state = 0}, + [13773] = {.lex_state = 0}, + [13774] = {.lex_state = 0}, + [13775] = {.lex_state = 0}, + [13776] = {.lex_state = 0}, + [13777] = {.lex_state = 8}, + [13778] = {.lex_state = 0}, + [13779] = {.lex_state = 0}, + [13780] = {.lex_state = 0}, + [13781] = {.lex_state = 0}, + [13782] = {.lex_state = 0}, + [13783] = {.lex_state = 0}, + [13784] = {.lex_state = 0}, + [13785] = {.lex_state = 0}, + [13786] = {.lex_state = 0}, + [13787] = {.lex_state = 0}, + [13788] = {.lex_state = 0}, + [13789] = {.lex_state = 0}, + [13790] = {.lex_state = 0}, + [13791] = {.lex_state = 0}, + [13792] = {.lex_state = 0}, + [13793] = {.lex_state = 0}, + [13794] = {.lex_state = 0}, + [13795] = {.lex_state = 0}, + [13796] = {.lex_state = 0}, + [13797] = {.lex_state = 0}, + [13798] = {.lex_state = 0}, + [13799] = {.lex_state = 0}, + [13800] = {.lex_state = 8}, + [13801] = {.lex_state = 0}, + [13802] = {.lex_state = 0}, + [13803] = {.lex_state = 0}, + [13804] = {.lex_state = 0}, + [13805] = {.lex_state = 0}, + [13806] = {.lex_state = 0}, + [13807] = {.lex_state = 0}, + [13808] = {.lex_state = 0}, + [13809] = {.lex_state = 0}, + [13810] = {.lex_state = 0}, + [13811] = {.lex_state = 0}, + [13812] = {.lex_state = 0}, + [13813] = {.lex_state = 0}, + [13814] = {.lex_state = 0}, + [13815] = {.lex_state = 0}, + [13816] = {.lex_state = 0}, + [13817] = {.lex_state = 0}, + [13818] = {.lex_state = 0}, + [13819] = {.lex_state = 0}, + [13820] = {.lex_state = 0}, + [13821] = {.lex_state = 0}, + [13822] = {.lex_state = 0}, + [13823] = {.lex_state = 0}, + [13824] = {.lex_state = 0}, + [13825] = {.lex_state = 0}, + [13826] = {.lex_state = 0}, + [13827] = {.lex_state = 0}, + [13828] = {.lex_state = 0}, + [13829] = {.lex_state = 0}, + [13830] = {.lex_state = 0}, + [13831] = {.lex_state = 0}, + [13832] = {.lex_state = 0}, + [13833] = {.lex_state = 0}, + [13834] = {.lex_state = 0}, + [13835] = {.lex_state = 0}, + [13836] = {.lex_state = 0}, + [13837] = {.lex_state = 0}, + [13838] = {.lex_state = 0}, + [13839] = {.lex_state = 0}, + [13840] = {.lex_state = 0}, + [13841] = {.lex_state = 0}, + [13842] = {.lex_state = 0}, + [13843] = {.lex_state = 0}, + [13844] = {.lex_state = 0}, + [13845] = {.lex_state = 0}, + [13846] = {.lex_state = 0}, + [13847] = {.lex_state = 0}, + [13848] = {.lex_state = 0}, + [13849] = {.lex_state = 0}, + [13850] = {.lex_state = 0}, + [13851] = {.lex_state = 0}, + [13852] = {.lex_state = 0}, + [13853] = {.lex_state = 0}, + [13854] = {.lex_state = 0}, + [13855] = {.lex_state = 0}, + [13856] = {.lex_state = 0}, + [13857] = {.lex_state = 0}, + [13858] = {.lex_state = 0}, + [13859] = {.lex_state = 0}, + [13860] = {.lex_state = 0}, + [13861] = {.lex_state = 0}, + [13862] = {.lex_state = 0}, + [13863] = {.lex_state = 0}, + [13864] = {.lex_state = 0}, + [13865] = {.lex_state = 0}, + [13866] = {.lex_state = 0}, + [13867] = {.lex_state = 0}, + [13868] = {.lex_state = 0}, + [13869] = {.lex_state = 0}, + [13870] = {.lex_state = 0}, + [13871] = {.lex_state = 0}, + [13872] = {.lex_state = 0}, + [13873] = {.lex_state = 25}, + [13874] = {.lex_state = 0}, + [13875] = {.lex_state = 0}, + [13876] = {.lex_state = 0}, + [13877] = {.lex_state = 0}, + [13878] = {.lex_state = 0}, + [13879] = {.lex_state = 0}, + [13880] = {.lex_state = 0}, + [13881] = {.lex_state = 0}, + [13882] = {.lex_state = 0}, + [13883] = {.lex_state = 0}, + [13884] = {.lex_state = 0}, + [13885] = {.lex_state = 0}, + [13886] = {.lex_state = 0}, + [13887] = {.lex_state = 0}, + [13888] = {.lex_state = 0}, + [13889] = {.lex_state = 0}, + [13890] = {.lex_state = 0}, + [13891] = {.lex_state = 0}, + [13892] = {.lex_state = 0}, + [13893] = {.lex_state = 0}, + [13894] = {.lex_state = 0}, + [13895] = {.lex_state = 0}, + [13896] = {.lex_state = 0}, + [13897] = {.lex_state = 0}, + [13898] = {.lex_state = 0}, + [13899] = {.lex_state = 0}, + [13900] = {.lex_state = 0}, + [13901] = {.lex_state = 0}, + [13902] = {.lex_state = 0}, + [13903] = {.lex_state = 0}, + [13904] = {.lex_state = 0}, + [13905] = {.lex_state = 0}, + [13906] = {.lex_state = 0}, + [13907] = {.lex_state = 0}, + [13908] = {.lex_state = 0}, + [13909] = {.lex_state = 0}, + [13910] = {.lex_state = 0}, + [13911] = {.lex_state = 0}, + [13912] = {.lex_state = 0}, + [13913] = {.lex_state = 0}, + [13914] = {.lex_state = 0}, + [13915] = {.lex_state = 0}, + [13916] = {.lex_state = 0}, + [13917] = {.lex_state = 0}, + [13918] = {.lex_state = 0}, + [13919] = {.lex_state = 0}, + [13920] = {.lex_state = 0}, + [13921] = {.lex_state = 0}, + [13922] = {.lex_state = 0}, + [13923] = {.lex_state = 0}, + [13924] = {.lex_state = 0}, + [13925] = {.lex_state = 0}, + [13926] = {.lex_state = 0}, + [13927] = {.lex_state = 0}, + [13928] = {.lex_state = 0}, + [13929] = {.lex_state = 0}, + [13930] = {.lex_state = 0}, + [13931] = {.lex_state = 0}, + [13932] = {.lex_state = 25}, + [13933] = {.lex_state = 25}, + [13934] = {.lex_state = 0}, + [13935] = {.lex_state = 0}, + [13936] = {.lex_state = 0}, + [13937] = {.lex_state = 0}, + [13938] = {.lex_state = 0}, + [13939] = {.lex_state = 25}, + [13940] = {.lex_state = 25}, + [13941] = {.lex_state = 0}, + [13942] = {.lex_state = 25}, + [13943] = {.lex_state = 0}, + [13944] = {.lex_state = 25}, + [13945] = {.lex_state = 0}, + [13946] = {.lex_state = 0}, + [13947] = {.lex_state = 0}, + [13948] = {.lex_state = 0}, + [13949] = {.lex_state = 0}, + [13950] = {.lex_state = 0}, + [13951] = {.lex_state = 0}, + [13952] = {.lex_state = 0}, + [13953] = {.lex_state = 0}, + [13954] = {.lex_state = 0}, + [13955] = {.lex_state = 0}, + [13956] = {.lex_state = 0}, + [13957] = {.lex_state = 0}, + [13958] = {.lex_state = 0}, + [13959] = {.lex_state = 0}, + [13960] = {.lex_state = 0}, + [13961] = {.lex_state = 0}, + [13962] = {.lex_state = 0}, + [13963] = {.lex_state = 0}, + [13964] = {.lex_state = 0}, + [13965] = {.lex_state = 0}, + [13966] = {.lex_state = 0}, + [13967] = {.lex_state = 0}, + [13968] = {.lex_state = 0}, + [13969] = {.lex_state = 0}, + [13970] = {.lex_state = 0}, + [13971] = {.lex_state = 0}, + [13972] = {.lex_state = 0}, + [13973] = {.lex_state = 0}, + [13974] = {.lex_state = 0}, + [13975] = {.lex_state = 0}, + [13976] = {.lex_state = 25}, + [13977] = {.lex_state = 25}, + [13978] = {.lex_state = 0}, + [13979] = {.lex_state = 25}, + [13980] = {.lex_state = 0}, + [13981] = {.lex_state = 0}, + [13982] = {.lex_state = 0}, + [13983] = {.lex_state = 0}, + [13984] = {.lex_state = 0}, + [13985] = {.lex_state = 0}, + [13986] = {.lex_state = 0}, + [13987] = {.lex_state = 0}, + [13988] = {.lex_state = 0}, + [13989] = {.lex_state = 0}, + [13990] = {.lex_state = 0}, + [13991] = {.lex_state = 25}, + [13992] = {.lex_state = 0}, + [13993] = {.lex_state = 0}, + [13994] = {.lex_state = 0}, + [13995] = {.lex_state = 0}, + [13996] = {.lex_state = 0}, + [13997] = {.lex_state = 0}, + [13998] = {.lex_state = 0}, + [13999] = {.lex_state = 0}, + [14000] = {.lex_state = 0}, + [14001] = {.lex_state = 0}, + [14002] = {.lex_state = 0}, + [14003] = {.lex_state = 0}, + [14004] = {.lex_state = 0}, + [14005] = {.lex_state = 0}, + [14006] = {.lex_state = 0}, + [14007] = {.lex_state = 0}, + [14008] = {.lex_state = 0}, + [14009] = {.lex_state = 0}, + [14010] = {.lex_state = 0}, + [14011] = {.lex_state = 0}, + [14012] = {.lex_state = 0}, + [14013] = {.lex_state = 0}, + [14014] = {.lex_state = 0}, + [14015] = {.lex_state = 0}, + [14016] = {.lex_state = 0}, + [14017] = {.lex_state = 0}, + [14018] = {.lex_state = 0}, + [14019] = {.lex_state = 25}, + [14020] = {.lex_state = 0}, + [14021] = {.lex_state = 25}, + [14022] = {.lex_state = 0}, + [14023] = {.lex_state = 0}, + [14024] = {.lex_state = 0}, + [14025] = {.lex_state = 0}, + [14026] = {.lex_state = 0}, + [14027] = {.lex_state = 0}, + [14028] = {.lex_state = 0}, + [14029] = {.lex_state = 0}, + [14030] = {.lex_state = 0}, + [14031] = {.lex_state = 0}, + [14032] = {.lex_state = 0}, + [14033] = {.lex_state = 0}, + [14034] = {.lex_state = 0}, + [14035] = {.lex_state = 0}, + [14036] = {.lex_state = 0}, + [14037] = {.lex_state = 0}, + [14038] = {.lex_state = 0}, + [14039] = {.lex_state = 0}, + [14040] = {.lex_state = 0}, + [14041] = {.lex_state = 0}, + [14042] = {.lex_state = 0}, + [14043] = {.lex_state = 0}, + [14044] = {.lex_state = 0}, + [14045] = {.lex_state = 0}, + [14046] = {.lex_state = 0}, + [14047] = {.lex_state = 0}, + [14048] = {.lex_state = 0}, + [14049] = {.lex_state = 0}, + [14050] = {.lex_state = 0}, + [14051] = {.lex_state = 0}, + [14052] = {.lex_state = 0}, + [14053] = {.lex_state = 0}, + [14054] = {.lex_state = 0}, + [14055] = {.lex_state = 0}, + [14056] = {.lex_state = 0}, + [14057] = {.lex_state = 0}, + [14058] = {.lex_state = 0}, + [14059] = {.lex_state = 25}, + [14060] = {.lex_state = 0}, + [14061] = {.lex_state = 0}, + [14062] = {.lex_state = 0}, + [14063] = {.lex_state = 0}, + [14064] = {.lex_state = 0}, + [14065] = {.lex_state = 0}, + [14066] = {.lex_state = 0}, + [14067] = {.lex_state = 25}, + [14068] = {.lex_state = 25}, + [14069] = {.lex_state = 25}, + [14070] = {.lex_state = 25}, + [14071] = {.lex_state = 25}, + [14072] = {.lex_state = 25}, + [14073] = {.lex_state = 0}, + [14074] = {.lex_state = 0}, + [14075] = {.lex_state = 0}, + [14076] = {.lex_state = 0}, + [14077] = {.lex_state = 0}, + [14078] = {.lex_state = 0}, + [14079] = {.lex_state = 0}, + [14080] = {.lex_state = 0}, + [14081] = {.lex_state = 0}, + [14082] = {.lex_state = 0}, + [14083] = {.lex_state = 0}, + [14084] = {.lex_state = 0}, + [14085] = {.lex_state = 25}, + [14086] = {.lex_state = 0}, + [14087] = {.lex_state = 0}, + [14088] = {.lex_state = 0}, + [14089] = {.lex_state = 0}, + [14090] = {.lex_state = 0}, + [14091] = {.lex_state = 0}, + [14092] = {.lex_state = 0}, + [14093] = {.lex_state = 0}, + [14094] = {.lex_state = 25}, + [14095] = {.lex_state = 0}, + [14096] = {.lex_state = 0}, + [14097] = {.lex_state = 0}, + [14098] = {.lex_state = 0}, + [14099] = {.lex_state = 0}, + [14100] = {.lex_state = 0}, + [14101] = {.lex_state = 0}, + [14102] = {.lex_state = 0}, + [14103] = {.lex_state = 0}, + [14104] = {.lex_state = 0}, + [14105] = {.lex_state = 0}, + [14106] = {.lex_state = 0}, + [14107] = {.lex_state = 0}, + [14108] = {.lex_state = 0}, + [14109] = {.lex_state = 0}, + [14110] = {.lex_state = 0}, + [14111] = {.lex_state = 0}, + [14112] = {.lex_state = 0}, + [14113] = {.lex_state = 0}, + [14114] = {.lex_state = 0}, + [14115] = {.lex_state = 0}, + [14116] = {.lex_state = 25}, + [14117] = {.lex_state = 0}, + [14118] = {.lex_state = 25}, + [14119] = {.lex_state = 0}, + [14120] = {.lex_state = 0}, + [14121] = {.lex_state = 0}, + [14122] = {.lex_state = 0}, + [14123] = {.lex_state = 0}, + [14124] = {.lex_state = 0}, + [14125] = {.lex_state = 0}, + [14126] = {.lex_state = 0}, + [14127] = {.lex_state = 0}, + [14128] = {.lex_state = 0}, + [14129] = {.lex_state = 0}, + [14130] = {.lex_state = 0}, + [14131] = {.lex_state = 0}, + [14132] = {.lex_state = 0}, + [14133] = {.lex_state = 0}, + [14134] = {.lex_state = 0}, + [14135] = {.lex_state = 0}, + [14136] = {.lex_state = 0}, + [14137] = {.lex_state = 0}, + [14138] = {.lex_state = 0}, + [14139] = {.lex_state = 0}, + [14140] = {.lex_state = 0}, + [14141] = {.lex_state = 0}, + [14142] = {.lex_state = 0}, + [14143] = {.lex_state = 0}, + [14144] = {.lex_state = 0}, + [14145] = {.lex_state = 0}, + [14146] = {.lex_state = 0}, + [14147] = {.lex_state = 0}, + [14148] = {.lex_state = 0}, + [14149] = {.lex_state = 0}, + [14150] = {.lex_state = 0}, + [14151] = {.lex_state = 25}, + [14152] = {.lex_state = 25}, + [14153] = {.lex_state = 0}, + [14154] = {.lex_state = 0}, + [14155] = {.lex_state = 0}, + [14156] = {.lex_state = 0}, + [14157] = {.lex_state = 0}, + [14158] = {.lex_state = 0}, + [14159] = {.lex_state = 0}, + [14160] = {.lex_state = 0}, + [14161] = {.lex_state = 0}, + [14162] = {.lex_state = 0}, + [14163] = {.lex_state = 25}, + [14164] = {.lex_state = 0}, + [14165] = {.lex_state = 0}, + [14166] = {.lex_state = 0}, + [14167] = {.lex_state = 0}, + [14168] = {.lex_state = 0}, + [14169] = {.lex_state = 0}, + [14170] = {.lex_state = 0}, + [14171] = {.lex_state = 0}, + [14172] = {.lex_state = 0}, + [14173] = {.lex_state = 0}, + [14174] = {.lex_state = 0}, + [14175] = {.lex_state = 0}, + [14176] = {.lex_state = 0}, + [14177] = {.lex_state = 0}, + [14178] = {.lex_state = 0}, + [14179] = {.lex_state = 25}, + [14180] = {.lex_state = 0}, + [14181] = {.lex_state = 0}, + [14182] = {.lex_state = 0}, + [14183] = {.lex_state = 0}, + [14184] = {.lex_state = 25}, + [14185] = {.lex_state = 25}, + [14186] = {.lex_state = 0}, + [14187] = {.lex_state = 25}, + [14188] = {.lex_state = 25}, + [14189] = {.lex_state = 0}, + [14190] = {.lex_state = 0}, + [14191] = {.lex_state = 0}, + [14192] = {.lex_state = 25}, + [14193] = {.lex_state = 25}, + [14194] = {.lex_state = 0}, + [14195] = {.lex_state = 25}, + [14196] = {.lex_state = 25}, + [14197] = {.lex_state = 25}, + [14198] = {.lex_state = 0}, + [14199] = {.lex_state = 0}, + [14200] = {.lex_state = 0}, + [14201] = {.lex_state = 25}, + [14202] = {.lex_state = 0}, + [14203] = {.lex_state = 0}, + [14204] = {.lex_state = 0}, + [14205] = {.lex_state = 0}, + [14206] = {.lex_state = 0}, + [14207] = {.lex_state = 0}, + [14208] = {.lex_state = 0}, + [14209] = {.lex_state = 0}, + [14210] = {.lex_state = 0}, + [14211] = {.lex_state = 0}, + [14212] = {.lex_state = 0}, + [14213] = {.lex_state = 25}, + [14214] = {.lex_state = 0}, + [14215] = {.lex_state = 0}, + [14216] = {.lex_state = 0}, + [14217] = {.lex_state = 0}, + [14218] = {.lex_state = 0}, + [14219] = {.lex_state = 25}, + [14220] = {.lex_state = 25}, + [14221] = {.lex_state = 25}, + [14222] = {.lex_state = 25}, + [14223] = {.lex_state = 25}, + [14224] = {.lex_state = 0}, + [14225] = {.lex_state = 0}, + [14226] = {.lex_state = 0}, + [14227] = {.lex_state = 0}, + [14228] = {.lex_state = 0}, + [14229] = {.lex_state = 0}, + [14230] = {.lex_state = 0}, + [14231] = {.lex_state = 25}, + [14232] = {.lex_state = 25}, + [14233] = {.lex_state = 0}, + [14234] = {.lex_state = 0}, + [14235] = {.lex_state = 0}, + [14236] = {.lex_state = 0}, + [14237] = {.lex_state = 0}, + [14238] = {.lex_state = 0}, + [14239] = {.lex_state = 0}, + [14240] = {.lex_state = 25}, + [14241] = {.lex_state = 25}, + [14242] = {.lex_state = 0}, + [14243] = {.lex_state = 25}, + [14244] = {.lex_state = 25}, + [14245] = {.lex_state = 25}, + [14246] = {.lex_state = 0}, + [14247] = {.lex_state = 25}, + [14248] = {.lex_state = 0}, + [14249] = {.lex_state = 25}, + [14250] = {.lex_state = 25}, + [14251] = {.lex_state = 25}, + [14252] = {.lex_state = 25}, + [14253] = {.lex_state = 25}, + [14254] = {.lex_state = 25}, + [14255] = {.lex_state = 25}, + [14256] = {.lex_state = 0}, + [14257] = {.lex_state = 0}, + [14258] = {.lex_state = 0}, + [14259] = {.lex_state = 0}, + [14260] = {.lex_state = 0}, + [14261] = {.lex_state = 0}, + [14262] = {.lex_state = 0}, + [14263] = {.lex_state = 0}, + [14264] = {.lex_state = 0}, + [14265] = {.lex_state = 25}, + [14266] = {.lex_state = 25}, + [14267] = {.lex_state = 0}, + [14268] = {.lex_state = 0}, + [14269] = {.lex_state = 25}, + [14270] = {.lex_state = 25}, + [14271] = {.lex_state = 0}, + [14272] = {.lex_state = 0}, + [14273] = {.lex_state = 0}, + [14274] = {.lex_state = 0}, + [14275] = {.lex_state = 25}, + [14276] = {.lex_state = 25}, + [14277] = {.lex_state = 25}, + [14278] = {.lex_state = 0}, + [14279] = {.lex_state = 25}, + [14280] = {.lex_state = 0}, + [14281] = {.lex_state = 0}, + [14282] = {.lex_state = 0}, + [14283] = {.lex_state = 0}, + [14284] = {.lex_state = 0}, + [14285] = {.lex_state = 0}, + [14286] = {.lex_state = 25}, + [14287] = {.lex_state = 0}, + [14288] = {.lex_state = 25}, + [14289] = {.lex_state = 0}, + [14290] = {.lex_state = 25}, + [14291] = {.lex_state = 25}, + [14292] = {.lex_state = 25}, + [14293] = {.lex_state = 25}, + [14294] = {.lex_state = 0}, + [14295] = {.lex_state = 25}, + [14296] = {.lex_state = 25}, + [14297] = {.lex_state = 25}, + [14298] = {.lex_state = 0}, + [14299] = {.lex_state = 0}, + [14300] = {.lex_state = 25}, + [14301] = {.lex_state = 25}, + [14302] = {.lex_state = 25}, + [14303] = {.lex_state = 25}, + [14304] = {.lex_state = 0}, + [14305] = {.lex_state = 0}, + [14306] = {.lex_state = 25}, + [14307] = {.lex_state = 0}, + [14308] = {.lex_state = 0}, + [14309] = {.lex_state = 0}, + [14310] = {.lex_state = 0}, + [14311] = {.lex_state = 0}, + [14312] = {.lex_state = 0}, + [14313] = {.lex_state = 0}, + [14314] = {.lex_state = 0}, + [14315] = {.lex_state = 0}, + [14316] = {.lex_state = 0}, + [14317] = {.lex_state = 0}, + [14318] = {.lex_state = 0}, + [14319] = {.lex_state = 0}, + [14320] = {.lex_state = 0}, + [14321] = {.lex_state = 0}, + [14322] = {.lex_state = 0}, + [14323] = {.lex_state = 0}, + [14324] = {.lex_state = 0}, + [14325] = {.lex_state = 0}, + [14326] = {.lex_state = 0}, + [14327] = {.lex_state = 0}, + [14328] = {.lex_state = 0}, + [14329] = {.lex_state = 0}, + [14330] = {.lex_state = 25}, + [14331] = {.lex_state = 25}, + [14332] = {.lex_state = 25}, + [14333] = {.lex_state = 25}, + [14334] = {.lex_state = 25}, + [14335] = {.lex_state = 25}, + [14336] = {.lex_state = 25}, + [14337] = {.lex_state = 25}, + [14338] = {.lex_state = 25}, + [14339] = {.lex_state = 25}, + [14340] = {.lex_state = 25}, + [14341] = {.lex_state = 0}, + [14342] = {.lex_state = 25}, + [14343] = {.lex_state = 0}, + [14344] = {.lex_state = 25}, + [14345] = {.lex_state = 25}, + [14346] = {.lex_state = 25}, + [14347] = {.lex_state = 25}, + [14348] = {.lex_state = 25}, + [14349] = {.lex_state = 25}, + [14350] = {.lex_state = 25}, + [14351] = {.lex_state = 0}, + [14352] = {.lex_state = 0}, + [14353] = {.lex_state = 0}, + [14354] = {.lex_state = 0}, + [14355] = {.lex_state = 0}, + [14356] = {.lex_state = 0}, + [14357] = {.lex_state = 0}, + [14358] = {.lex_state = 25}, + [14359] = {.lex_state = 25}, + [14360] = {.lex_state = 25}, + [14361] = {.lex_state = 25}, + [14362] = {.lex_state = 25}, + [14363] = {.lex_state = 0}, + [14364] = {.lex_state = 25}, + [14365] = {.lex_state = 0}, + [14366] = {.lex_state = 0}, + [14367] = {.lex_state = 0}, + [14368] = {.lex_state = 0}, + [14369] = {.lex_state = 25}, + [14370] = {.lex_state = 25}, + [14371] = {.lex_state = 25}, + [14372] = {.lex_state = 25}, + [14373] = {.lex_state = 25}, + [14374] = {.lex_state = 25}, + [14375] = {.lex_state = 25}, + [14376] = {.lex_state = 0}, + [14377] = {.lex_state = 25}, + [14378] = {.lex_state = 0}, + [14379] = {.lex_state = 0}, + [14380] = {.lex_state = 25}, + [14381] = {.lex_state = 25}, + [14382] = {.lex_state = 25}, + [14383] = {.lex_state = 25}, + [14384] = {.lex_state = 25}, + [14385] = {.lex_state = 25}, + [14386] = {.lex_state = 0}, + [14387] = {.lex_state = 0}, + [14388] = {.lex_state = 0}, + [14389] = {.lex_state = 25}, + [14390] = {.lex_state = 25}, + [14391] = {.lex_state = 25}, + [14392] = {.lex_state = 0}, + [14393] = {.lex_state = 25}, + [14394] = {.lex_state = 0}, + [14395] = {.lex_state = 0}, + [14396] = {.lex_state = 25}, + [14397] = {.lex_state = 25}, + [14398] = {.lex_state = 25}, + [14399] = {.lex_state = 25}, + [14400] = {.lex_state = 0}, + [14401] = {.lex_state = 0}, + [14402] = {.lex_state = 0}, + [14403] = {.lex_state = 0}, + [14404] = {.lex_state = 25}, + [14405] = {.lex_state = 25}, + [14406] = {.lex_state = 25}, + [14407] = {.lex_state = 25}, + [14408] = {.lex_state = 25}, + [14409] = {.lex_state = 25}, + [14410] = {.lex_state = 25}, + [14411] = {.lex_state = 25}, + [14412] = {.lex_state = 25}, + [14413] = {.lex_state = 25}, + [14414] = {.lex_state = 25}, + [14415] = {.lex_state = 25}, + [14416] = {.lex_state = 25}, + [14417] = {.lex_state = 25}, + [14418] = {.lex_state = 25}, + [14419] = {.lex_state = 25}, + [14420] = {.lex_state = 0}, + [14421] = {.lex_state = 0}, + [14422] = {.lex_state = 0}, + [14423] = {.lex_state = 25}, + [14424] = {.lex_state = 25}, + [14425] = {.lex_state = 25}, + [14426] = {.lex_state = 25}, + [14427] = {.lex_state = 25}, + [14428] = {.lex_state = 25}, + [14429] = {.lex_state = 0}, + [14430] = {.lex_state = 0}, + [14431] = {.lex_state = 25}, + [14432] = {.lex_state = 25}, + [14433] = {.lex_state = 25}, + [14434] = {.lex_state = 0}, + [14435] = {.lex_state = 25}, + [14436] = {.lex_state = 25}, + [14437] = {.lex_state = 25}, + [14438] = {.lex_state = 25}, + [14439] = {.lex_state = 25}, + [14440] = {.lex_state = 25}, + [14441] = {.lex_state = 0}, + [14442] = {.lex_state = 0}, + [14443] = {.lex_state = 25}, + [14444] = {.lex_state = 0}, + [14445] = {.lex_state = 25}, + [14446] = {.lex_state = 0}, + [14447] = {.lex_state = 0}, + [14448] = {.lex_state = 0}, + [14449] = {.lex_state = 25}, + [14450] = {.lex_state = 0}, + [14451] = {.lex_state = 0}, + [14452] = {.lex_state = 25}, + [14453] = {.lex_state = 25}, + [14454] = {.lex_state = 25}, + [14455] = {.lex_state = 25}, + [14456] = {.lex_state = 25}, + [14457] = {.lex_state = 25}, + [14458] = {.lex_state = 25}, + [14459] = {.lex_state = 25}, + [14460] = {.lex_state = 25}, + [14461] = {.lex_state = 0}, + [14462] = {.lex_state = 25}, + [14463] = {.lex_state = 25}, + [14464] = {.lex_state = 25}, + [14465] = {.lex_state = 25}, + [14466] = {.lex_state = 0}, + [14467] = {.lex_state = 25}, + [14468] = {.lex_state = 0}, + [14469] = {.lex_state = 0}, + [14470] = {.lex_state = 0}, + [14471] = {.lex_state = 0}, + [14472] = {.lex_state = 0}, + [14473] = {.lex_state = 0}, + [14474] = {.lex_state = 0}, + [14475] = {.lex_state = 0}, + [14476] = {.lex_state = 0}, + [14477] = {.lex_state = 0}, + [14478] = {.lex_state = 0}, + [14479] = {.lex_state = 0}, + [14480] = {.lex_state = 25}, + [14481] = {.lex_state = 0}, + [14482] = {.lex_state = 0}, + [14483] = {.lex_state = 25}, + [14484] = {.lex_state = 0}, + [14485] = {.lex_state = 0}, + [14486] = {.lex_state = 0}, + [14487] = {.lex_state = 0}, + [14488] = {.lex_state = 0}, + [14489] = {.lex_state = 0}, + [14490] = {.lex_state = 25}, + [14491] = {.lex_state = 0}, + [14492] = {.lex_state = 0}, + [14493] = {.lex_state = 0}, + [14494] = {.lex_state = 0}, + [14495] = {.lex_state = 0}, + [14496] = {.lex_state = 0}, + [14497] = {.lex_state = 0}, + [14498] = {.lex_state = 0}, + [14499] = {.lex_state = 0}, + [14500] = {.lex_state = 0}, + [14501] = {.lex_state = 0}, + [14502] = {.lex_state = 0}, + [14503] = {.lex_state = 0}, + [14504] = {.lex_state = 0}, + [14505] = {.lex_state = 0}, + [14506] = {.lex_state = 0}, + [14507] = {.lex_state = 0}, + [14508] = {.lex_state = 0}, + [14509] = {.lex_state = 0}, + [14510] = {.lex_state = 0}, + [14511] = {.lex_state = 0}, + [14512] = {.lex_state = 0}, + [14513] = {.lex_state = 0}, + [14514] = {.lex_state = 0}, + [14515] = {.lex_state = 0}, + [14516] = {.lex_state = 0}, + [14517] = {.lex_state = 0}, + [14518] = {.lex_state = 0}, + [14519] = {.lex_state = 0}, + [14520] = {.lex_state = 0}, + [14521] = {.lex_state = 25}, + [14522] = {.lex_state = 25}, + [14523] = {.lex_state = 0}, + [14524] = {.lex_state = 0}, + [14525] = {.lex_state = 0}, + [14526] = {.lex_state = 0}, + [14527] = {.lex_state = 0}, + [14528] = {.lex_state = 0}, + [14529] = {.lex_state = 0}, + [14530] = {.lex_state = 0}, + [14531] = {.lex_state = 0}, + [14532] = {.lex_state = 0}, + [14533] = {.lex_state = 0}, + [14534] = {.lex_state = 0}, + [14535] = {.lex_state = 0}, + [14536] = {.lex_state = 0}, + [14537] = {.lex_state = 0}, + [14538] = {.lex_state = 0}, + [14539] = {.lex_state = 0}, + [14540] = {.lex_state = 0}, + [14541] = {.lex_state = 25}, + [14542] = {.lex_state = 25}, + [14543] = {.lex_state = 0}, + [14544] = {.lex_state = 0}, + [14545] = {.lex_state = 0}, + [14546] = {.lex_state = 0}, + [14547] = {.lex_state = 25}, + [14548] = {.lex_state = 25}, + [14549] = {.lex_state = 25}, + [14550] = {.lex_state = 25}, + [14551] = {.lex_state = 25}, + [14552] = {.lex_state = 25}, + [14553] = {.lex_state = 0}, + [14554] = {.lex_state = 25}, + [14555] = {.lex_state = 0}, + [14556] = {.lex_state = 25}, + [14557] = {.lex_state = 25}, + [14558] = {.lex_state = 25}, + [14559] = {.lex_state = 25}, + [14560] = {.lex_state = 25}, + [14561] = {.lex_state = 25}, + [14562] = {.lex_state = 25}, + [14563] = {.lex_state = 25}, + [14564] = {.lex_state = 0}, + [14565] = {.lex_state = 0}, + [14566] = {.lex_state = 0}, + [14567] = {.lex_state = 0}, + [14568] = {.lex_state = 0}, + [14569] = {.lex_state = 0}, + [14570] = {.lex_state = 0}, + [14571] = {.lex_state = 0}, + [14572] = {.lex_state = 25}, + [14573] = {.lex_state = 25}, + [14574] = {.lex_state = 25}, + [14575] = {.lex_state = 25}, + [14576] = {.lex_state = 25}, + [14577] = {.lex_state = 25}, + [14578] = {.lex_state = 25}, + [14579] = {.lex_state = 25}, + [14580] = {.lex_state = 25}, + [14581] = {.lex_state = 25}, + [14582] = {.lex_state = 25}, + [14583] = {.lex_state = 25}, + [14584] = {.lex_state = 25}, + [14585] = {.lex_state = 25}, + [14586] = {.lex_state = 25}, + [14587] = {.lex_state = 25}, + [14588] = {.lex_state = 25}, + [14589] = {.lex_state = 25}, + [14590] = {.lex_state = 25}, + [14591] = {.lex_state = 25}, + [14592] = {.lex_state = 25}, + [14593] = {.lex_state = 25}, + [14594] = {.lex_state = 25}, + [14595] = {.lex_state = 25}, + [14596] = {.lex_state = 25}, + [14597] = {.lex_state = 25}, + [14598] = {.lex_state = 25}, + [14599] = {.lex_state = 25}, + [14600] = {.lex_state = 25}, + [14601] = {.lex_state = 25}, + [14602] = {.lex_state = 25}, + [14603] = {.lex_state = 25}, + [14604] = {.lex_state = 25}, + [14605] = {.lex_state = 25}, + [14606] = {.lex_state = 25}, + [14607] = {.lex_state = 25}, + [14608] = {.lex_state = 25}, + [14609] = {.lex_state = 25}, + [14610] = {.lex_state = 25}, + [14611] = {.lex_state = 25}, + [14612] = {.lex_state = 25}, + [14613] = {.lex_state = 25}, + [14614] = {.lex_state = 25}, + [14615] = {.lex_state = 25}, + [14616] = {.lex_state = 25}, + [14617] = {.lex_state = 25}, + [14618] = {.lex_state = 25}, + [14619] = {.lex_state = 25}, + [14620] = {.lex_state = 25}, + [14621] = {.lex_state = 25}, + [14622] = {.lex_state = 25}, + [14623] = {.lex_state = 25}, + [14624] = {.lex_state = 25}, + [14625] = {.lex_state = 25}, + [14626] = {.lex_state = 25}, + [14627] = {.lex_state = 25}, + [14628] = {.lex_state = 25}, + [14629] = {.lex_state = 25}, + [14630] = {.lex_state = 25}, + [14631] = {.lex_state = 25}, + [14632] = {.lex_state = 25}, + [14633] = {.lex_state = 25}, + [14634] = {.lex_state = 25}, + [14635] = {.lex_state = 25}, + [14636] = {.lex_state = 25}, + [14637] = {.lex_state = 25}, + [14638] = {.lex_state = 25}, + [14639] = {.lex_state = 25}, + [14640] = {.lex_state = 25}, + [14641] = {.lex_state = 25}, + [14642] = {.lex_state = 25}, + [14643] = {.lex_state = 25}, + [14644] = {.lex_state = 25}, + [14645] = {.lex_state = 25}, + [14646] = {.lex_state = 25}, + [14647] = {.lex_state = 25}, + [14648] = {.lex_state = 25}, + [14649] = {.lex_state = 25}, + [14650] = {.lex_state = 25}, + [14651] = {.lex_state = 25}, + [14652] = {.lex_state = 25}, + [14653] = {.lex_state = 25}, + [14654] = {.lex_state = 25}, + [14655] = {.lex_state = 25}, + [14656] = {.lex_state = 25}, + [14657] = {.lex_state = 25}, + [14658] = {.lex_state = 25}, + [14659] = {.lex_state = 25}, + [14660] = {.lex_state = 25}, + [14661] = {.lex_state = 25}, + [14662] = {.lex_state = 0}, + [14663] = {.lex_state = 25}, + [14664] = {.lex_state = 25}, + [14665] = {.lex_state = 25}, + [14666] = {.lex_state = 25}, + [14667] = {.lex_state = 25}, + [14668] = {.lex_state = 25}, + [14669] = {.lex_state = 0}, + [14670] = {.lex_state = 0}, + [14671] = {.lex_state = 0}, + [14672] = {.lex_state = 0}, + [14673] = {.lex_state = 0}, + [14674] = {.lex_state = 0}, + [14675] = {.lex_state = 0}, + [14676] = {.lex_state = 0}, + [14677] = {.lex_state = 25}, + [14678] = {.lex_state = 0}, + [14679] = {.lex_state = 0}, + [14680] = {.lex_state = 0}, + [14681] = {.lex_state = 0}, + [14682] = {.lex_state = 25}, + [14683] = {.lex_state = 0}, + [14684] = {.lex_state = 0}, + [14685] = {.lex_state = 0}, + [14686] = {.lex_state = 0}, + [14687] = {.lex_state = 0}, + [14688] = {.lex_state = 0}, + [14689] = {.lex_state = 0}, + [14690] = {.lex_state = 0}, + [14691] = {.lex_state = 0}, + [14692] = {.lex_state = 0}, + [14693] = {.lex_state = 0}, + [14694] = {.lex_state = 0}, + [14695] = {.lex_state = 0}, + [14696] = {.lex_state = 0}, + [14697] = {.lex_state = 0}, + [14698] = {.lex_state = 0}, + [14699] = {.lex_state = 0}, + [14700] = {.lex_state = 0}, + [14701] = {.lex_state = 0}, + [14702] = {.lex_state = 0}, + [14703] = {.lex_state = 0}, + [14704] = {.lex_state = 0}, + [14705] = {.lex_state = 0}, + [14706] = {.lex_state = 0}, + [14707] = {.lex_state = 0}, + [14708] = {.lex_state = 0}, + [14709] = {.lex_state = 0}, + [14710] = {.lex_state = 0}, + [14711] = {.lex_state = 0}, + [14712] = {.lex_state = 0}, + [14713] = {.lex_state = 0}, + [14714] = {.lex_state = 0}, + [14715] = {.lex_state = 25}, + [14716] = {.lex_state = 25}, + [14717] = {.lex_state = 25}, + [14718] = {.lex_state = 25}, + [14719] = {.lex_state = 25}, + [14720] = {.lex_state = 25}, + [14721] = {.lex_state = 25}, + [14722] = {.lex_state = 0}, + [14723] = {.lex_state = 25}, + [14724] = {.lex_state = 25}, + [14725] = {.lex_state = 25}, + [14726] = {.lex_state = 25}, + [14727] = {.lex_state = 25}, + [14728] = {.lex_state = 25}, + [14729] = {.lex_state = 25}, + [14730] = {.lex_state = 0}, + [14731] = {.lex_state = 0}, + [14732] = {.lex_state = 0}, + [14733] = {.lex_state = 25}, + [14734] = {.lex_state = 0}, + [14735] = {.lex_state = 0}, + [14736] = {.lex_state = 25}, + [14737] = {.lex_state = 0}, + [14738] = {.lex_state = 0}, + [14739] = {.lex_state = 0}, + [14740] = {.lex_state = 0}, + [14741] = {.lex_state = 0}, + [14742] = {.lex_state = 0}, + [14743] = {.lex_state = 0}, + [14744] = {.lex_state = 0}, + [14745] = {.lex_state = 0}, + [14746] = {.lex_state = 0}, + [14747] = {.lex_state = 0}, + [14748] = {.lex_state = 0}, + [14749] = {.lex_state = 0}, + [14750] = {.lex_state = 0}, + [14751] = {.lex_state = 0}, + [14752] = {.lex_state = 0}, + [14753] = {.lex_state = 0}, + [14754] = {.lex_state = 0}, + [14755] = {.lex_state = 0}, + [14756] = {.lex_state = 0}, + [14757] = {.lex_state = 0}, + [14758] = {.lex_state = 0}, + [14759] = {.lex_state = 0}, + [14760] = {.lex_state = 0}, + [14761] = {.lex_state = 0}, + [14762] = {.lex_state = 0}, + [14763] = {.lex_state = 0}, + [14764] = {.lex_state = 0}, + [14765] = {.lex_state = 0}, + [14766] = {.lex_state = 0}, + [14767] = {.lex_state = 0}, + [14768] = {.lex_state = 0}, + [14769] = {.lex_state = 0}, + [14770] = {.lex_state = 0}, + [14771] = {.lex_state = 0}, + [14772] = {.lex_state = 0}, + [14773] = {.lex_state = 0}, + [14774] = {.lex_state = 0}, + [14775] = {.lex_state = 0}, + [14776] = {.lex_state = 0}, + [14777] = {.lex_state = 0}, + [14778] = {.lex_state = 0}, + [14779] = {.lex_state = 0}, + [14780] = {.lex_state = 0}, + [14781] = {.lex_state = 25}, + [14782] = {.lex_state = 25}, + [14783] = {.lex_state = 0}, + [14784] = {.lex_state = 0}, + [14785] = {.lex_state = 0}, + [14786] = {.lex_state = 0}, + [14787] = {.lex_state = 0}, + [14788] = {.lex_state = 0}, + [14789] = {.lex_state = 25}, + [14790] = {.lex_state = 0}, + [14791] = {.lex_state = 0}, + [14792] = {.lex_state = 0}, + [14793] = {.lex_state = 0}, + [14794] = {.lex_state = 0}, + [14795] = {.lex_state = 0}, + [14796] = {.lex_state = 0}, + [14797] = {.lex_state = 0}, + [14798] = {.lex_state = 0}, + [14799] = {.lex_state = 0}, + [14800] = {.lex_state = 0}, + [14801] = {.lex_state = 0}, + [14802] = {.lex_state = 0}, + [14803] = {.lex_state = 0}, + [14804] = {.lex_state = 0}, + [14805] = {.lex_state = 0}, + [14806] = {.lex_state = 0}, + [14807] = {.lex_state = 0}, + [14808] = {.lex_state = 0}, + [14809] = {.lex_state = 0}, + [14810] = {.lex_state = 0}, + [14811] = {.lex_state = 0}, + [14812] = {.lex_state = 0}, + [14813] = {.lex_state = 0}, + [14814] = {.lex_state = 25}, + [14815] = {.lex_state = 25}, + [14816] = {.lex_state = 0}, + [14817] = {.lex_state = 0}, + [14818] = {.lex_state = 0}, + [14819] = {.lex_state = 0}, + [14820] = {.lex_state = 0}, + [14821] = {.lex_state = 0}, + [14822] = {.lex_state = 0}, + [14823] = {.lex_state = 0}, + [14824] = {.lex_state = 0}, + [14825] = {.lex_state = 0}, + [14826] = {.lex_state = 0}, + [14827] = {.lex_state = 0}, + [14828] = {.lex_state = 0}, + [14829] = {.lex_state = 0}, + [14830] = {.lex_state = 0}, + [14831] = {.lex_state = 0}, + [14832] = {.lex_state = 0}, + [14833] = {.lex_state = 0}, + [14834] = {.lex_state = 0}, + [14835] = {.lex_state = 0}, + [14836] = {.lex_state = 0}, + [14837] = {.lex_state = 0}, + [14838] = {.lex_state = 0}, + [14839] = {.lex_state = 0}, + [14840] = {.lex_state = 0}, + [14841] = {.lex_state = 0}, + [14842] = {.lex_state = 0}, + [14843] = {.lex_state = 0}, + [14844] = {.lex_state = 0}, + [14845] = {.lex_state = 0}, + [14846] = {.lex_state = 0}, + [14847] = {.lex_state = 0}, + [14848] = {.lex_state = 0}, + [14849] = {.lex_state = 0}, + [14850] = {.lex_state = 0}, + [14851] = {.lex_state = 0}, + [14852] = {.lex_state = 0}, + [14853] = {.lex_state = 0}, + [14854] = {.lex_state = 0}, + [14855] = {.lex_state = 0}, + [14856] = {.lex_state = 25}, + [14857] = {.lex_state = 0}, + [14858] = {.lex_state = 25}, + [14859] = {.lex_state = 25}, + [14860] = {.lex_state = 0}, + [14861] = {.lex_state = 25}, + [14862] = {.lex_state = 25}, + [14863] = {.lex_state = 0}, + [14864] = {.lex_state = 0}, + [14865] = {.lex_state = 25}, + [14866] = {.lex_state = 0}, + [14867] = {.lex_state = 0}, + [14868] = {.lex_state = 0}, + [14869] = {.lex_state = 25}, + [14870] = {.lex_state = 0}, + [14871] = {.lex_state = 0}, + [14872] = {.lex_state = 0}, + [14873] = {.lex_state = 0}, + [14874] = {.lex_state = 0}, + [14875] = {.lex_state = 0}, + [14876] = {.lex_state = 0}, + [14877] = {.lex_state = 25}, + [14878] = {.lex_state = 0}, + [14879] = {.lex_state = 0}, + [14880] = {.lex_state = 25}, + [14881] = {.lex_state = 0}, + [14882] = {.lex_state = 25}, + [14883] = {.lex_state = 6}, + [14884] = {.lex_state = 0}, + [14885] = {.lex_state = 0}, + [14886] = {.lex_state = 0}, + [14887] = {.lex_state = 0}, + [14888] = {.lex_state = 0}, + [14889] = {.lex_state = 0}, + [14890] = {.lex_state = 0}, + [14891] = {.lex_state = 0}, + [14892] = {.lex_state = 0}, + [14893] = {.lex_state = 0}, + [14894] = {.lex_state = 0}, + [14895] = {.lex_state = 0}, + [14896] = {.lex_state = 0}, + [14897] = {.lex_state = 0}, + [14898] = {.lex_state = 0}, + [14899] = {.lex_state = 0}, + [14900] = {.lex_state = 0}, + [14901] = {.lex_state = 0}, + [14902] = {.lex_state = 0}, + [14903] = {.lex_state = 0}, + [14904] = {.lex_state = 0}, + [14905] = {.lex_state = 6}, + [14906] = {.lex_state = 0}, + [14907] = {.lex_state = 0}, + [14908] = {.lex_state = 0}, + [14909] = {.lex_state = 0}, + [14910] = {.lex_state = 0}, + [14911] = {.lex_state = 0}, + [14912] = {.lex_state = 0}, + [14913] = {.lex_state = 0}, + [14914] = {.lex_state = 25}, + [14915] = {.lex_state = 25}, + [14916] = {.lex_state = 0}, + [14917] = {.lex_state = 0}, + [14918] = {.lex_state = 0}, + [14919] = {.lex_state = 0}, + [14920] = {.lex_state = 0}, + [14921] = {.lex_state = 6}, + [14922] = {.lex_state = 0}, + [14923] = {.lex_state = 25}, + [14924] = {.lex_state = 0}, + [14925] = {.lex_state = 0}, + [14926] = {.lex_state = 0}, + [14927] = {.lex_state = 0}, + [14928] = {.lex_state = 0}, + [14929] = {.lex_state = 25}, + [14930] = {.lex_state = 25}, + [14931] = {.lex_state = 25}, + [14932] = {.lex_state = 0}, + [14933] = {.lex_state = 0}, + [14934] = {.lex_state = 25}, + [14935] = {.lex_state = 25}, + [14936] = {.lex_state = 0}, + [14937] = {.lex_state = 6}, + [14938] = {.lex_state = 25}, + [14939] = {.lex_state = 0}, + [14940] = {.lex_state = 0}, + [14941] = {.lex_state = 0}, + [14942] = {.lex_state = 0}, + [14943] = {.lex_state = 6}, + [14944] = {.lex_state = 0}, + [14945] = {.lex_state = 5}, + [14946] = {.lex_state = 0}, + [14947] = {.lex_state = 0}, + [14948] = {.lex_state = 5}, + [14949] = {.lex_state = 0}, + [14950] = {.lex_state = 6}, + [14951] = {.lex_state = 25}, + [14952] = {.lex_state = 0}, + [14953] = {.lex_state = 0}, + [14954] = {.lex_state = 0}, + [14955] = {.lex_state = 0}, + [14956] = {.lex_state = 0}, + [14957] = {.lex_state = 0}, + [14958] = {.lex_state = 0}, + [14959] = {.lex_state = 0}, + [14960] = {.lex_state = 0}, + [14961] = {.lex_state = 25}, + [14962] = {.lex_state = 25}, + [14963] = {.lex_state = 25}, + [14964] = {.lex_state = 25}, + [14965] = {.lex_state = 0}, + [14966] = {.lex_state = 0}, + [14967] = {.lex_state = 0}, + [14968] = {.lex_state = 25}, + [14969] = {.lex_state = 25}, + [14970] = {.lex_state = 0}, + [14971] = {.lex_state = 25}, + [14972] = {.lex_state = 25}, + [14973] = {.lex_state = 0}, + [14974] = {.lex_state = 0}, + [14975] = {.lex_state = 0}, + [14976] = {.lex_state = 25}, + [14977] = {.lex_state = 0}, + [14978] = {.lex_state = 0}, + [14979] = {.lex_state = 0}, + [14980] = {.lex_state = 0}, + [14981] = {.lex_state = 25}, + [14982] = {.lex_state = 25}, + [14983] = {.lex_state = 25}, + [14984] = {.lex_state = 25}, + [14985] = {.lex_state = 25}, + [14986] = {.lex_state = 25}, + [14987] = {.lex_state = 25}, + [14988] = {.lex_state = 0}, + [14989] = {.lex_state = 0}, + [14990] = {.lex_state = 0}, + [14991] = {.lex_state = 6}, + [14992] = {.lex_state = 0}, + [14993] = {.lex_state = 0}, + [14994] = {.lex_state = 0}, + [14995] = {.lex_state = 25}, + [14996] = {.lex_state = 25}, + [14997] = {.lex_state = 25}, + [14998] = {.lex_state = 25}, + [14999] = {.lex_state = 25}, + [15000] = {.lex_state = 0}, + [15001] = {.lex_state = 0}, + [15002] = {.lex_state = 25}, + [15003] = {.lex_state = 0}, + [15004] = {.lex_state = 0}, + [15005] = {.lex_state = 25}, + [15006] = {.lex_state = 25}, + [15007] = {.lex_state = 25}, + [15008] = {.lex_state = 25}, + [15009] = {.lex_state = 25}, + [15010] = {.lex_state = 0}, + [15011] = {.lex_state = 25}, + [15012] = {.lex_state = 6}, + [15013] = {.lex_state = 0}, + [15014] = {.lex_state = 0}, + [15015] = {.lex_state = 0}, + [15016] = {.lex_state = 25}, + [15017] = {.lex_state = 25}, + [15018] = {.lex_state = 25}, + [15019] = {.lex_state = 25}, + [15020] = {.lex_state = 25}, + [15021] = {.lex_state = 0}, + [15022] = {.lex_state = 25}, + [15023] = {.lex_state = 25}, + [15024] = {.lex_state = 0}, + [15025] = {.lex_state = 25}, + [15026] = {.lex_state = 0}, + [15027] = {.lex_state = 0}, + [15028] = {.lex_state = 0}, + [15029] = {.lex_state = 25}, + [15030] = {.lex_state = 25}, + [15031] = {.lex_state = 25}, + [15032] = {.lex_state = 25}, + [15033] = {.lex_state = 25}, + [15034] = {.lex_state = 0}, + [15035] = {.lex_state = 25}, + [15036] = {.lex_state = 25}, + [15037] = {.lex_state = 0}, + [15038] = {.lex_state = 0}, + [15039] = {.lex_state = 0}, + [15040] = {.lex_state = 25}, + [15041] = {.lex_state = 0}, + [15042] = {.lex_state = 0}, + [15043] = {.lex_state = 0}, + [15044] = {.lex_state = 0}, + [15045] = {.lex_state = 25}, + [15046] = {.lex_state = 0}, + [15047] = {.lex_state = 6}, + [15048] = {.lex_state = 0}, + [15049] = {.lex_state = 0}, + [15050] = {.lex_state = 25}, + [15051] = {.lex_state = 0}, + [15052] = {.lex_state = 0}, + [15053] = {.lex_state = 0}, + [15054] = {.lex_state = 25}, + [15055] = {.lex_state = 0}, + [15056] = {.lex_state = 0}, + [15057] = {.lex_state = 0}, + [15058] = {.lex_state = 0}, + [15059] = {.lex_state = 6}, + [15060] = {.lex_state = 0}, + [15061] = {.lex_state = 0}, + [15062] = {.lex_state = 0}, + [15063] = {.lex_state = 0}, + [15064] = {.lex_state = 25}, + [15065] = {.lex_state = 0}, + [15066] = {.lex_state = 0}, + [15067] = {.lex_state = 0}, + [15068] = {.lex_state = 0}, + [15069] = {.lex_state = 0}, + [15070] = {.lex_state = 6}, + [15071] = {.lex_state = 0}, + [15072] = {.lex_state = 0}, + [15073] = {.lex_state = 0}, + [15074] = {.lex_state = 0}, + [15075] = {.lex_state = 0}, + [15076] = {.lex_state = 0}, + [15077] = {.lex_state = 0}, + [15078] = {.lex_state = 0}, + [15079] = {.lex_state = 0}, + [15080] = {.lex_state = 0}, + [15081] = {.lex_state = 0}, + [15082] = {.lex_state = 0}, + [15083] = {.lex_state = 0}, + [15084] = {.lex_state = 0}, + [15085] = {.lex_state = 0}, + [15086] = {.lex_state = 0}, + [15087] = {.lex_state = 0}, + [15088] = {.lex_state = 6}, + [15089] = {.lex_state = 0}, + [15090] = {.lex_state = 0}, + [15091] = {.lex_state = 6}, + [15092] = {.lex_state = 0}, + [15093] = {.lex_state = 0}, + [15094] = {.lex_state = 0}, + [15095] = {.lex_state = 0}, + [15096] = {.lex_state = 0}, + [15097] = {.lex_state = 0}, + [15098] = {.lex_state = 0}, + [15099] = {.lex_state = 0}, + [15100] = {.lex_state = 0}, + [15101] = {.lex_state = 25}, + [15102] = {.lex_state = 0}, + [15103] = {.lex_state = 0}, + [15104] = {.lex_state = 0}, + [15105] = {.lex_state = 0}, + [15106] = {.lex_state = 0}, + [15107] = {.lex_state = 6}, + [15108] = {.lex_state = 0}, + [15109] = {.lex_state = 0}, + [15110] = {.lex_state = 0}, + [15111] = {.lex_state = 0}, + [15112] = {.lex_state = 0}, + [15113] = {.lex_state = 0}, + [15114] = {.lex_state = 0}, + [15115] = {.lex_state = 0}, + [15116] = {.lex_state = 0}, + [15117] = {.lex_state = 25}, + [15118] = {.lex_state = 25}, + [15119] = {.lex_state = 25}, + [15120] = {.lex_state = 0}, + [15121] = {.lex_state = 0}, + [15122] = {.lex_state = 0}, + [15123] = {.lex_state = 0}, + [15124] = {.lex_state = 0}, + [15125] = {.lex_state = 0}, + [15126] = {.lex_state = 0}, + [15127] = {.lex_state = 0}, + [15128] = {.lex_state = 0}, + [15129] = {.lex_state = 0}, + [15130] = {.lex_state = 0}, + [15131] = {.lex_state = 25}, + [15132] = {.lex_state = 0}, + [15133] = {.lex_state = 0}, + [15134] = {.lex_state = 0}, + [15135] = {.lex_state = 0}, + [15136] = {.lex_state = 0}, + [15137] = {.lex_state = 0}, + [15138] = {.lex_state = 0}, + [15139] = {.lex_state = 0}, + [15140] = {.lex_state = 0}, + [15141] = {.lex_state = 25}, + [15142] = {.lex_state = 0}, + [15143] = {.lex_state = 0}, + [15144] = {.lex_state = 0}, + [15145] = {.lex_state = 0}, + [15146] = {.lex_state = 0}, + [15147] = {.lex_state = 0}, + [15148] = {.lex_state = 25}, + [15149] = {.lex_state = 0}, + [15150] = {.lex_state = 0}, + [15151] = {.lex_state = 0}, + [15152] = {.lex_state = 0}, + [15153] = {.lex_state = 25}, + [15154] = {.lex_state = 0}, + [15155] = {.lex_state = 0}, + [15156] = {.lex_state = 0}, + [15157] = {.lex_state = 0}, + [15158] = {.lex_state = 25}, + [15159] = {.lex_state = 0}, + [15160] = {.lex_state = 0}, + [15161] = {.lex_state = 0}, + [15162] = {.lex_state = 0}, + [15163] = {.lex_state = 0}, + [15164] = {.lex_state = 0}, + [15165] = {.lex_state = 0}, + [15166] = {.lex_state = 0}, + [15167] = {.lex_state = 0}, + [15168] = {.lex_state = 0}, + [15169] = {.lex_state = 0}, + [15170] = {.lex_state = 0}, + [15171] = {.lex_state = 0}, + [15172] = {.lex_state = 25}, + [15173] = {.lex_state = 0}, + [15174] = {.lex_state = 25}, + [15175] = {.lex_state = 0}, + [15176] = {.lex_state = 0}, + [15177] = {.lex_state = 25}, + [15178] = {.lex_state = 0}, + [15179] = {.lex_state = 0}, + [15180] = {.lex_state = 0}, + [15181] = {.lex_state = 0}, + [15182] = {.lex_state = 0}, + [15183] = {.lex_state = 0}, + [15184] = {.lex_state = 0}, + [15185] = {.lex_state = 0}, + [15186] = {.lex_state = 25}, + [15187] = {.lex_state = 0}, + [15188] = {.lex_state = 0}, + [15189] = {.lex_state = 0}, + [15190] = {.lex_state = 0}, + [15191] = {.lex_state = 0}, + [15192] = {.lex_state = 0}, + [15193] = {.lex_state = 0}, + [15194] = {.lex_state = 0}, + [15195] = {.lex_state = 0}, + [15196] = {.lex_state = 0}, + [15197] = {.lex_state = 25}, + [15198] = {.lex_state = 0}, + [15199] = {.lex_state = 0}, + [15200] = {.lex_state = 0}, + [15201] = {.lex_state = 0}, + [15202] = {.lex_state = 0}, + [15203] = {.lex_state = 0}, + [15204] = {.lex_state = 0}, + [15205] = {.lex_state = 0}, + [15206] = {.lex_state = 0}, + [15207] = {.lex_state = 0}, + [15208] = {.lex_state = 0}, + [15209] = {.lex_state = 0}, + [15210] = {.lex_state = 0}, + [15211] = {.lex_state = 0}, + [15212] = {.lex_state = 25}, + [15213] = {.lex_state = 0}, + [15214] = {.lex_state = 0}, + [15215] = {.lex_state = 0}, + [15216] = {.lex_state = 0}, + [15217] = {.lex_state = 0}, + [15218] = {.lex_state = 0}, + [15219] = {.lex_state = 0}, + [15220] = {.lex_state = 0}, + [15221] = {.lex_state = 0}, + [15222] = {.lex_state = 0}, + [15223] = {.lex_state = 0}, + [15224] = {.lex_state = 0}, + [15225] = {.lex_state = 25}, + [15226] = {.lex_state = 0}, + [15227] = {.lex_state = 0}, + [15228] = {.lex_state = 0}, + [15229] = {.lex_state = 0}, + [15230] = {.lex_state = 0}, + [15231] = {.lex_state = 0}, + [15232] = {.lex_state = 0}, + [15233] = {.lex_state = 0}, + [15234] = {.lex_state = 0}, + [15235] = {.lex_state = 0}, + [15236] = {.lex_state = 0}, + [15237] = {.lex_state = 0}, + [15238] = {.lex_state = 0}, + [15239] = {.lex_state = 0}, + [15240] = {.lex_state = 25}, + [15241] = {.lex_state = 0}, + [15242] = {.lex_state = 0}, + [15243] = {.lex_state = 0}, + [15244] = {.lex_state = 0}, + [15245] = {.lex_state = 0}, + [15246] = {.lex_state = 0}, + [15247] = {.lex_state = 0}, + [15248] = {.lex_state = 0}, + [15249] = {.lex_state = 0}, + [15250] = {.lex_state = 0}, + [15251] = {.lex_state = 25}, + [15252] = {.lex_state = 0}, + [15253] = {.lex_state = 0}, + [15254] = {.lex_state = 25}, + [15255] = {.lex_state = 0}, + [15256] = {.lex_state = 0}, + [15257] = {.lex_state = 0}, + [15258] = {.lex_state = 0}, + [15259] = {.lex_state = 0}, + [15260] = {.lex_state = 0}, + [15261] = {.lex_state = 0}, + [15262] = {.lex_state = 0}, + [15263] = {.lex_state = 0}, + [15264] = {.lex_state = 0}, + [15265] = {.lex_state = 0}, + [15266] = {.lex_state = 0}, + [15267] = {.lex_state = 0}, + [15268] = {.lex_state = 0}, + [15269] = {.lex_state = 0}, + [15270] = {.lex_state = 0}, + [15271] = {.lex_state = 0}, + [15272] = {.lex_state = 0}, + [15273] = {.lex_state = 0}, + [15274] = {.lex_state = 0}, + [15275] = {.lex_state = 0}, + [15276] = {.lex_state = 0}, + [15277] = {.lex_state = 0}, + [15278] = {.lex_state = 25}, + [15279] = {.lex_state = 0}, + [15280] = {.lex_state = 25}, + [15281] = {.lex_state = 0}, + [15282] = {.lex_state = 0}, + [15283] = {.lex_state = 0}, + [15284] = {.lex_state = 0}, + [15285] = {.lex_state = 0}, + [15286] = {.lex_state = 0}, + [15287] = {.lex_state = 0}, + [15288] = {.lex_state = 0}, + [15289] = {.lex_state = 0}, + [15290] = {.lex_state = 0}, + [15291] = {.lex_state = 0}, + [15292] = {.lex_state = 0}, + [15293] = {.lex_state = 0}, + [15294] = {.lex_state = 0}, + [15295] = {.lex_state = 0}, + [15296] = {.lex_state = 0}, + [15297] = {.lex_state = 0}, + [15298] = {.lex_state = 0}, + [15299] = {.lex_state = 0}, + [15300] = {.lex_state = 0}, + [15301] = {.lex_state = 0}, + [15302] = {.lex_state = 0}, + [15303] = {.lex_state = 0}, + [15304] = {.lex_state = 0}, + [15305] = {.lex_state = 0}, + [15306] = {.lex_state = 0}, + [15307] = {.lex_state = 0}, + [15308] = {.lex_state = 0}, + [15309] = {.lex_state = 0}, + [15310] = {.lex_state = 0}, + [15311] = {.lex_state = 0}, + [15312] = {.lex_state = 0}, + [15313] = {.lex_state = 0}, + [15314] = {.lex_state = 0}, + [15315] = {.lex_state = 0}, + [15316] = {.lex_state = 0}, + [15317] = {.lex_state = 0}, + [15318] = {.lex_state = 0}, + [15319] = {.lex_state = 0}, + [15320] = {.lex_state = 0}, + [15321] = {.lex_state = 25}, + [15322] = {.lex_state = 0}, + [15323] = {.lex_state = 0}, + [15324] = {.lex_state = 0}, + [15325] = {.lex_state = 0}, + [15326] = {.lex_state = 0}, + [15327] = {.lex_state = 0}, + [15328] = {.lex_state = 0}, + [15329] = {.lex_state = 0}, + [15330] = {.lex_state = 0}, + [15331] = {.lex_state = 0}, + [15332] = {.lex_state = 0}, + [15333] = {.lex_state = 25}, + [15334] = {.lex_state = 0}, + [15335] = {.lex_state = 25}, + [15336] = {.lex_state = 0}, + [15337] = {.lex_state = 0}, + [15338] = {.lex_state = 0}, + [15339] = {.lex_state = 0}, + [15340] = {.lex_state = 0}, + [15341] = {.lex_state = 0}, + [15342] = {.lex_state = 0}, + [15343] = {.lex_state = 0}, + [15344] = {.lex_state = 0}, + [15345] = {.lex_state = 25}, + [15346] = {.lex_state = 0}, + [15347] = {.lex_state = 0}, + [15348] = {.lex_state = 0}, + [15349] = {.lex_state = 0}, + [15350] = {.lex_state = 0}, + [15351] = {.lex_state = 0}, + [15352] = {.lex_state = 25}, + [15353] = {.lex_state = 0}, + [15354] = {.lex_state = 0}, + [15355] = {.lex_state = 25}, + [15356] = {.lex_state = 0}, + [15357] = {.lex_state = 0}, + [15358] = {.lex_state = 0}, + [15359] = {.lex_state = 0}, + [15360] = {.lex_state = 0}, + [15361] = {.lex_state = 0}, + [15362] = {.lex_state = 0}, + [15363] = {.lex_state = 25}, + [15364] = {.lex_state = 0}, + [15365] = {.lex_state = 0}, + [15366] = {.lex_state = 0}, + [15367] = {.lex_state = 0}, + [15368] = {.lex_state = 0}, + [15369] = {.lex_state = 0}, + [15370] = {.lex_state = 25}, + [15371] = {.lex_state = 25}, + [15372] = {.lex_state = 0}, + [15373] = {.lex_state = 0}, + [15374] = {.lex_state = 0}, + [15375] = {.lex_state = 25}, + [15376] = {.lex_state = 0}, + [15377] = {.lex_state = 0}, + [15378] = {.lex_state = 0}, + [15379] = {.lex_state = 25}, + [15380] = {.lex_state = 0}, + [15381] = {.lex_state = 0}, + [15382] = {.lex_state = 0}, + [15383] = {.lex_state = 0}, + [15384] = {.lex_state = 0}, + [15385] = {.lex_state = 0}, + [15386] = {.lex_state = 0}, + [15387] = {.lex_state = 25}, + [15388] = {.lex_state = 0}, + [15389] = {.lex_state = 0}, + [15390] = {.lex_state = 0}, + [15391] = {.lex_state = 0}, + [15392] = {.lex_state = 0}, + [15393] = {.lex_state = 0}, + [15394] = {.lex_state = 0}, + [15395] = {.lex_state = 25}, + [15396] = {.lex_state = 0}, + [15397] = {.lex_state = 0}, + [15398] = {.lex_state = 0}, + [15399] = {.lex_state = 25}, + [15400] = {.lex_state = 25}, + [15401] = {.lex_state = 0}, + [15402] = {.lex_state = 25}, + [15403] = {.lex_state = 25}, + [15404] = {.lex_state = 25}, + [15405] = {.lex_state = 0}, + [15406] = {.lex_state = 0}, + [15407] = {.lex_state = 0}, + [15408] = {.lex_state = 0}, + [15409] = {.lex_state = 0}, + [15410] = {.lex_state = 0}, + [15411] = {.lex_state = 25}, + [15412] = {.lex_state = 0}, + [15413] = {.lex_state = 0}, + [15414] = {.lex_state = 0}, + [15415] = {.lex_state = 0}, + [15416] = {.lex_state = 0}, + [15417] = {.lex_state = 25}, + [15418] = {.lex_state = 0}, + [15419] = {.lex_state = 25}, + [15420] = {.lex_state = 0}, + [15421] = {.lex_state = 0}, + [15422] = {.lex_state = 0}, + [15423] = {.lex_state = 0}, + [15424] = {.lex_state = 0}, + [15425] = {.lex_state = 0}, + [15426] = {.lex_state = 0}, + [15427] = {.lex_state = 25}, + [15428] = {.lex_state = 0}, + [15429] = {.lex_state = 0}, + [15430] = {.lex_state = 0}, + [15431] = {.lex_state = 0}, + [15432] = {.lex_state = 0}, + [15433] = {.lex_state = 0}, + [15434] = {.lex_state = 0}, + [15435] = {.lex_state = 25}, + [15436] = {.lex_state = 0}, + [15437] = {.lex_state = 25}, + [15438] = {.lex_state = 0}, + [15439] = {.lex_state = 0}, + [15440] = {.lex_state = 25}, + [15441] = {.lex_state = 0}, + [15442] = {.lex_state = 0}, + [15443] = {.lex_state = 0}, + [15444] = {.lex_state = 0}, + [15445] = {.lex_state = 0}, + [15446] = {.lex_state = 0}, + [15447] = {.lex_state = 25}, + [15448] = {.lex_state = 0}, + [15449] = {.lex_state = 0}, + [15450] = {.lex_state = 0}, + [15451] = {.lex_state = 0}, + [15452] = {.lex_state = 25}, + [15453] = {.lex_state = 0}, + [15454] = {.lex_state = 0}, + [15455] = {.lex_state = 25}, + [15456] = {.lex_state = 0}, + [15457] = {.lex_state = 0}, + [15458] = {.lex_state = 0}, + [15459] = {.lex_state = 0}, + [15460] = {.lex_state = 0}, + [15461] = {.lex_state = 0}, + [15462] = {.lex_state = 0}, + [15463] = {.lex_state = 0}, + [15464] = {.lex_state = 0}, + [15465] = {.lex_state = 0}, + [15466] = {.lex_state = 0}, + [15467] = {.lex_state = 25}, + [15468] = {.lex_state = 0}, + [15469] = {.lex_state = 0}, + [15470] = {.lex_state = 0}, + [15471] = {.lex_state = 0}, + [15472] = {.lex_state = 0}, + [15473] = {.lex_state = 0}, + [15474] = {.lex_state = 0}, + [15475] = {.lex_state = 0}, + [15476] = {.lex_state = 25}, + [15477] = {.lex_state = 0}, + [15478] = {.lex_state = 0}, + [15479] = {.lex_state = 0}, + [15480] = {.lex_state = 0}, + [15481] = {.lex_state = 0}, + [15482] = {.lex_state = 0}, + [15483] = {.lex_state = 25}, + [15484] = {.lex_state = 0}, + [15485] = {.lex_state = 25}, + [15486] = {.lex_state = 0}, + [15487] = {.lex_state = 0}, + [15488] = {.lex_state = 0}, + [15489] = {.lex_state = 25}, + [15490] = {.lex_state = 0}, + [15491] = {.lex_state = 0}, + [15492] = {.lex_state = 25}, + [15493] = {.lex_state = 0}, + [15494] = {.lex_state = 0}, + [15495] = {.lex_state = 25}, + [15496] = {.lex_state = 25}, + [15497] = {.lex_state = 25}, + [15498] = {.lex_state = 0}, + [15499] = {.lex_state = 0}, + [15500] = {.lex_state = 0}, + [15501] = {.lex_state = 0}, + [15502] = {.lex_state = 0}, + [15503] = {.lex_state = 0}, + [15504] = {.lex_state = 0}, + [15505] = {.lex_state = 0}, + [15506] = {.lex_state = 0}, + [15507] = {.lex_state = 25}, + [15508] = {.lex_state = 0}, + [15509] = {.lex_state = 0}, + [15510] = {.lex_state = 0}, + [15511] = {.lex_state = 0}, + [15512] = {.lex_state = 25}, + [15513] = {.lex_state = 0}, + [15514] = {.lex_state = 0}, + [15515] = {.lex_state = 0}, + [15516] = {.lex_state = 0}, + [15517] = {.lex_state = 25}, + [15518] = {.lex_state = 0}, + [15519] = {.lex_state = 0}, + [15520] = {.lex_state = 25}, + [15521] = {.lex_state = 25}, + [15522] = {.lex_state = 25}, + [15523] = {.lex_state = 0}, + [15524] = {.lex_state = 0}, + [15525] = {.lex_state = 25}, + [15526] = {.lex_state = 25}, + [15527] = {.lex_state = 25}, + [15528] = {.lex_state = 25}, + [15529] = {.lex_state = 25}, + [15530] = {.lex_state = 0}, + [15531] = {.lex_state = 25}, + [15532] = {.lex_state = 25}, + [15533] = {.lex_state = 25}, + [15534] = {.lex_state = 25}, + [15535] = {.lex_state = 25}, + [15536] = {.lex_state = 25}, + [15537] = {.lex_state = 25}, + [15538] = {.lex_state = 0}, + [15539] = {.lex_state = 25}, + [15540] = {.lex_state = 0}, + [15541] = {.lex_state = 0}, + [15542] = {.lex_state = 0}, + [15543] = {.lex_state = 0}, + [15544] = {.lex_state = 0}, + [15545] = {.lex_state = 0}, + [15546] = {.lex_state = 0}, + [15547] = {.lex_state = 0}, + [15548] = {.lex_state = 0}, + [15549] = {.lex_state = 0}, + [15550] = {.lex_state = 0}, + [15551] = {.lex_state = 0}, + [15552] = {.lex_state = 0}, + [15553] = {.lex_state = 0}, + [15554] = {.lex_state = 0}, + [15555] = {.lex_state = 0}, + [15556] = {.lex_state = 0}, + [15557] = {.lex_state = 0}, + [15558] = {.lex_state = 25}, + [15559] = {.lex_state = 0}, + [15560] = {.lex_state = 0}, + [15561] = {.lex_state = 0}, + [15562] = {.lex_state = 0}, + [15563] = {.lex_state = 0}, + [15564] = {.lex_state = 0}, + [15565] = {.lex_state = 0}, + [15566] = {.lex_state = 0}, + [15567] = {.lex_state = 0}, + [15568] = {.lex_state = 0}, + [15569] = {.lex_state = 0}, + [15570] = {.lex_state = 0}, + [15571] = {.lex_state = 0}, + [15572] = {.lex_state = 0}, + [15573] = {.lex_state = 0}, + [15574] = {.lex_state = 0}, + [15575] = {.lex_state = 0}, + [15576] = {.lex_state = 0}, + [15577] = {.lex_state = 0}, + [15578] = {.lex_state = 0}, + [15579] = {.lex_state = 0}, + [15580] = {.lex_state = 0}, + [15581] = {.lex_state = 0}, + [15582] = {.lex_state = 0}, + [15583] = {.lex_state = 0}, + [15584] = {.lex_state = 0}, + [15585] = {.lex_state = 0}, + [15586] = {.lex_state = 0}, + [15587] = {.lex_state = 0}, + [15588] = {.lex_state = 0}, + [15589] = {.lex_state = 0}, + [15590] = {.lex_state = 0}, + [15591] = {.lex_state = 0}, + [15592] = {.lex_state = 0}, + [15593] = {.lex_state = 0}, + [15594] = {.lex_state = 0}, + [15595] = {.lex_state = 0}, + [15596] = {.lex_state = 0}, + [15597] = {.lex_state = 0}, + [15598] = {.lex_state = 0}, + [15599] = {.lex_state = 0}, + [15600] = {.lex_state = 0}, + [15601] = {.lex_state = 0}, + [15602] = {.lex_state = 0}, + [15603] = {.lex_state = 0}, + [15604] = {.lex_state = 0}, + [15605] = {.lex_state = 0}, + [15606] = {.lex_state = 0}, + [15607] = {.lex_state = 0}, + [15608] = {.lex_state = 0}, + [15609] = {.lex_state = 0}, + [15610] = {.lex_state = 0}, + [15611] = {.lex_state = 0}, + [15612] = {.lex_state = 0}, + [15613] = {.lex_state = 0}, + [15614] = {.lex_state = 0}, + [15615] = {.lex_state = 0}, + [15616] = {.lex_state = 0}, + [15617] = {.lex_state = 0}, + [15618] = {.lex_state = 0}, + [15619] = {.lex_state = 0}, + [15620] = {.lex_state = 0}, + [15621] = {.lex_state = 0}, + [15622] = {.lex_state = 0}, + [15623] = {.lex_state = 0}, + [15624] = {.lex_state = 0}, + [15625] = {.lex_state = 0}, + [15626] = {.lex_state = 0}, + [15627] = {.lex_state = 0}, + [15628] = {.lex_state = 0}, + [15629] = {.lex_state = 0}, + [15630] = {.lex_state = 0}, + [15631] = {.lex_state = 0}, + [15632] = {.lex_state = 0}, + [15633] = {.lex_state = 0}, + [15634] = {.lex_state = 0}, + [15635] = {.lex_state = 0}, + [15636] = {.lex_state = 0}, + [15637] = {.lex_state = 0}, + [15638] = {.lex_state = 0}, + [15639] = {.lex_state = 0}, + [15640] = {.lex_state = 0}, + [15641] = {.lex_state = 0}, + [15642] = {.lex_state = 0}, + [15643] = {.lex_state = 0}, + [15644] = {.lex_state = 0}, + [15645] = {.lex_state = 0}, + [15646] = {.lex_state = 0}, + [15647] = {.lex_state = 0}, + [15648] = {.lex_state = 0}, + [15649] = {.lex_state = 0}, + [15650] = {.lex_state = 0}, + [15651] = {.lex_state = 0}, + [15652] = {.lex_state = 0}, + [15653] = {.lex_state = 25}, + [15654] = {.lex_state = 25}, + [15655] = {.lex_state = 0}, + [15656] = {.lex_state = 0}, + [15657] = {.lex_state = 0}, + [15658] = {.lex_state = 0}, + [15659] = {.lex_state = 0}, + [15660] = {.lex_state = 0}, + [15661] = {.lex_state = 0}, + [15662] = {.lex_state = 25}, + [15663] = {.lex_state = 25}, + [15664] = {.lex_state = 25}, + [15665] = {.lex_state = 25}, + [15666] = {.lex_state = 25}, + [15667] = {.lex_state = 25}, + [15668] = {.lex_state = 25}, + [15669] = {.lex_state = 25}, + [15670] = {.lex_state = 25}, + [15671] = {.lex_state = 25}, + [15672] = {.lex_state = 0}, + [15673] = {.lex_state = 0}, + [15674] = {.lex_state = 0}, + [15675] = {.lex_state = 0}, + [15676] = {.lex_state = 25}, + [15677] = {.lex_state = 0}, + [15678] = {.lex_state = 0}, + [15679] = {.lex_state = 0}, + [15680] = {.lex_state = 0}, + [15681] = {.lex_state = 25}, + [15682] = {.lex_state = 0}, + [15683] = {.lex_state = 25}, + [15684] = {.lex_state = 0}, + [15685] = {.lex_state = 0}, + [15686] = {.lex_state = 0}, + [15687] = {.lex_state = 0}, + [15688] = {.lex_state = 25}, + [15689] = {.lex_state = 0}, + [15690] = {.lex_state = 0}, + [15691] = {.lex_state = 25}, + [15692] = {.lex_state = 25}, + [15693] = {.lex_state = 0}, + [15694] = {.lex_state = 0}, + [15695] = {.lex_state = 25}, + [15696] = {.lex_state = 25}, + [15697] = {.lex_state = 25}, + [15698] = {.lex_state = 25}, + [15699] = {.lex_state = 0}, + [15700] = {.lex_state = 25}, + [15701] = {.lex_state = 25}, + [15702] = {.lex_state = 25}, + [15703] = {.lex_state = 25}, + [15704] = {.lex_state = 25}, + [15705] = {.lex_state = 25}, + [15706] = {.lex_state = 25}, + [15707] = {.lex_state = 25}, + [15708] = {.lex_state = 25}, + [15709] = {.lex_state = 0}, + [15710] = {.lex_state = 25}, + [15711] = {.lex_state = 0}, + [15712] = {.lex_state = 0}, + [15713] = {.lex_state = 0}, + [15714] = {.lex_state = 0}, + [15715] = {.lex_state = 25}, + [15716] = {.lex_state = 25}, + [15717] = {.lex_state = 0}, + [15718] = {.lex_state = 25}, + [15719] = {.lex_state = 25}, + [15720] = {.lex_state = 0}, + [15721] = {.lex_state = 0}, + [15722] = {.lex_state = 0}, + [15723] = {.lex_state = 0}, + [15724] = {.lex_state = 0}, + [15725] = {.lex_state = 0}, + [15726] = {.lex_state = 0}, + [15727] = {.lex_state = 25}, + [15728] = {.lex_state = 0}, + [15729] = {.lex_state = 25}, + [15730] = {.lex_state = 0}, + [15731] = {.lex_state = 0}, + [15732] = {.lex_state = 0}, + [15733] = {.lex_state = 0}, + [15734] = {.lex_state = 0}, + [15735] = {.lex_state = 0}, + [15736] = {.lex_state = 0}, + [15737] = {.lex_state = 0}, + [15738] = {.lex_state = 0}, + [15739] = {.lex_state = 0}, + [15740] = {.lex_state = 0}, + [15741] = {.lex_state = 0}, + [15742] = {.lex_state = 0}, + [15743] = {.lex_state = 0}, + [15744] = {.lex_state = 0}, + [15745] = {.lex_state = 25}, + [15746] = {.lex_state = 0}, + [15747] = {.lex_state = 0}, + [15748] = {.lex_state = 25}, + [15749] = {.lex_state = 25}, + [15750] = {.lex_state = 0}, + [15751] = {.lex_state = 25}, + [15752] = {.lex_state = 0}, + [15753] = {.lex_state = 25}, + [15754] = {.lex_state = 0}, + [15755] = {.lex_state = 25}, + [15756] = {.lex_state = 25}, + [15757] = {.lex_state = 25}, + [15758] = {.lex_state = 25}, + [15759] = {.lex_state = 0}, + [15760] = {.lex_state = 0}, + [15761] = {.lex_state = 25}, + [15762] = {.lex_state = 25}, + [15763] = {.lex_state = 25}, + [15764] = {.lex_state = 0}, + [15765] = {.lex_state = 25}, + [15766] = {.lex_state = 0}, + [15767] = {.lex_state = 25}, + [15768] = {.lex_state = 25}, + [15769] = {.lex_state = 25}, + [15770] = {.lex_state = 25}, + [15771] = {.lex_state = 25}, + [15772] = {.lex_state = 25}, + [15773] = {.lex_state = 25}, + [15774] = {.lex_state = 0}, + [15775] = {.lex_state = 25}, + [15776] = {.lex_state = 0}, + [15777] = {.lex_state = 0}, + [15778] = {.lex_state = 0}, + [15779] = {.lex_state = 0}, + [15780] = {.lex_state = 0}, + [15781] = {.lex_state = 0}, + [15782] = {.lex_state = 0}, + [15783] = {.lex_state = 0}, + [15784] = {.lex_state = 0}, + [15785] = {.lex_state = 0}, + [15786] = {.lex_state = 0}, + [15787] = {.lex_state = 0}, + [15788] = {.lex_state = 0}, + [15789] = {.lex_state = 0}, + [15790] = {.lex_state = 0}, + [15791] = {.lex_state = 0}, + [15792] = {.lex_state = 0}, + [15793] = {.lex_state = 0}, + [15794] = {.lex_state = 25}, + [15795] = {.lex_state = 25}, + [15796] = {.lex_state = 25}, + [15797] = {.lex_state = 0}, + [15798] = {.lex_state = 0}, + [15799] = {.lex_state = 0}, + [15800] = {.lex_state = 25}, + [15801] = {.lex_state = 25}, + [15802] = {.lex_state = 0}, + [15803] = {.lex_state = 0}, + [15804] = {.lex_state = 25}, + [15805] = {.lex_state = 25}, + [15806] = {.lex_state = 0}, + [15807] = {.lex_state = 0}, + [15808] = {.lex_state = 0}, + [15809] = {.lex_state = 25}, + [15810] = {.lex_state = 25}, + [15811] = {.lex_state = 25}, + [15812] = {.lex_state = 0}, + [15813] = {.lex_state = 25}, + [15814] = {.lex_state = 0}, + [15815] = {.lex_state = 25}, + [15816] = {.lex_state = 25}, + [15817] = {.lex_state = 25}, + [15818] = {.lex_state = 25}, + [15819] = {.lex_state = 25}, + [15820] = {.lex_state = 25}, + [15821] = {.lex_state = 25}, + [15822] = {.lex_state = 0}, + [15823] = {.lex_state = 25}, + [15824] = {.lex_state = 0}, + [15825] = {.lex_state = 0}, + [15826] = {.lex_state = 0}, + [15827] = {.lex_state = 0}, + [15828] = {.lex_state = 0}, + [15829] = {.lex_state = 0}, + [15830] = {.lex_state = 0}, + [15831] = {.lex_state = 0}, + [15832] = {.lex_state = 25}, + [15833] = {.lex_state = 0}, + [15834] = {.lex_state = 25}, + [15835] = {.lex_state = 25}, + [15836] = {.lex_state = 0}, + [15837] = {.lex_state = 25}, + [15838] = {.lex_state = 0}, + [15839] = {.lex_state = 0}, + [15840] = {.lex_state = 25}, + [15841] = {.lex_state = 25}, + [15842] = {.lex_state = 0}, + [15843] = {.lex_state = 0}, + [15844] = {.lex_state = 0}, + [15845] = {.lex_state = 25}, + [15846] = {.lex_state = 25}, + [15847] = {.lex_state = 25}, + [15848] = {.lex_state = 0}, + [15849] = {.lex_state = 25}, + [15850] = {.lex_state = 0}, + [15851] = {.lex_state = 25}, + [15852] = {.lex_state = 25}, + [15853] = {.lex_state = 25}, + [15854] = {.lex_state = 25}, + [15855] = {.lex_state = 25}, + [15856] = {.lex_state = 25}, + [15857] = {.lex_state = 25}, + [15858] = {.lex_state = 0}, + [15859] = {.lex_state = 0}, + [15860] = {.lex_state = 0}, + [15861] = {.lex_state = 0}, + [15862] = {.lex_state = 0}, + [15863] = {.lex_state = 0}, + [15864] = {.lex_state = 0}, + [15865] = {.lex_state = 25}, + [15866] = {.lex_state = 0}, + [15867] = {.lex_state = 0}, + [15868] = {.lex_state = 25}, + [15869] = {.lex_state = 0}, + [15870] = {.lex_state = 0}, + [15871] = {.lex_state = 0}, + [15872] = {.lex_state = 0}, + [15873] = {.lex_state = 25}, + [15874] = {.lex_state = 0}, + [15875] = {.lex_state = 0}, + [15876] = {.lex_state = 25}, + [15877] = {.lex_state = 25}, + [15878] = {.lex_state = 0}, + [15879] = {.lex_state = 0}, + [15880] = {.lex_state = 0}, + [15881] = {.lex_state = 25}, + [15882] = {.lex_state = 25}, + [15883] = {.lex_state = 25}, + [15884] = {.lex_state = 0}, + [15885] = {.lex_state = 25}, + [15886] = {.lex_state = 0}, + [15887] = {.lex_state = 25}, + [15888] = {.lex_state = 25}, + [15889] = {.lex_state = 25}, + [15890] = {.lex_state = 25}, + [15891] = {.lex_state = 25}, + [15892] = {.lex_state = 25}, + [15893] = {.lex_state = 25}, + [15894] = {.lex_state = 0}, + [15895] = {.lex_state = 25}, + [15896] = {.lex_state = 0}, + [15897] = {.lex_state = 0}, + [15898] = {.lex_state = 0}, + [15899] = {.lex_state = 25}, + [15900] = {.lex_state = 0}, + [15901] = {.lex_state = 0}, + [15902] = {.lex_state = 0}, + [15903] = {.lex_state = 0}, + [15904] = {.lex_state = 25}, + [15905] = {.lex_state = 25}, + [15906] = {.lex_state = 0}, + [15907] = {.lex_state = 0}, + [15908] = {.lex_state = 0}, + [15909] = {.lex_state = 25}, + [15910] = {.lex_state = 0}, + [15911] = {.lex_state = 0}, + [15912] = {.lex_state = 25}, + [15913] = {.lex_state = 25}, + [15914] = {.lex_state = 0}, + [15915] = {.lex_state = 0}, + [15916] = {.lex_state = 0}, + [15917] = {.lex_state = 25}, + [15918] = {.lex_state = 25}, + [15919] = {.lex_state = 25}, + [15920] = {.lex_state = 25}, + [15921] = {.lex_state = 25}, + [15922] = {.lex_state = 0}, + [15923] = {.lex_state = 25}, + [15924] = {.lex_state = 25}, + [15925] = {.lex_state = 25}, + [15926] = {.lex_state = 25}, + [15927] = {.lex_state = 25}, + [15928] = {.lex_state = 25}, + [15929] = {.lex_state = 25}, + [15930] = {.lex_state = 0}, + [15931] = {.lex_state = 0}, + [15932] = {.lex_state = 25}, + [15933] = {.lex_state = 0}, + [15934] = {.lex_state = 0}, + [15935] = {.lex_state = 0}, + [15936] = {.lex_state = 0}, + [15937] = {.lex_state = 0}, + [15938] = {.lex_state = 0}, + [15939] = {.lex_state = 25}, + [15940] = {.lex_state = 0}, + [15941] = {.lex_state = 25}, + [15942] = {.lex_state = 25}, + [15943] = {.lex_state = 25}, + [15944] = {.lex_state = 25}, + [15945] = {.lex_state = 25}, + [15946] = {.lex_state = 0}, + [15947] = {.lex_state = 25}, + [15948] = {.lex_state = 25}, + [15949] = {.lex_state = 0}, + [15950] = {.lex_state = 0}, + [15951] = {.lex_state = 0}, + [15952] = {.lex_state = 25}, + [15953] = {.lex_state = 25}, + [15954] = {.lex_state = 25}, + [15955] = {.lex_state = 0}, + [15956] = {.lex_state = 25}, + [15957] = {.lex_state = 0}, + [15958] = {.lex_state = 25}, + [15959] = {.lex_state = 25}, + [15960] = {.lex_state = 25}, + [15961] = {.lex_state = 25}, + [15962] = {.lex_state = 25}, + [15963] = {.lex_state = 25}, + [15964] = {.lex_state = 25}, + [15965] = {.lex_state = 0}, + [15966] = {.lex_state = 0}, + [15967] = {.lex_state = 0}, + [15968] = {.lex_state = 0}, + [15969] = {.lex_state = 0}, + [15970] = {.lex_state = 0}, + [15971] = {.lex_state = 0}, + [15972] = {.lex_state = 0}, + [15973] = {.lex_state = 0}, + [15974] = {.lex_state = 0}, + [15975] = {.lex_state = 0}, + [15976] = {.lex_state = 0}, + [15977] = {.lex_state = 0}, + [15978] = {.lex_state = 0}, + [15979] = {.lex_state = 0}, + [15980] = {.lex_state = 0}, + [15981] = {.lex_state = 0}, + [15982] = {.lex_state = 0}, + [15983] = {.lex_state = 0}, + [15984] = {.lex_state = 0}, + [15985] = {.lex_state = 0}, + [15986] = {.lex_state = 0}, + [15987] = {.lex_state = 0}, + [15988] = {.lex_state = 0}, + [15989] = {.lex_state = 0}, + [15990] = {.lex_state = 0}, + [15991] = {.lex_state = 0}, + [15992] = {.lex_state = 0}, + [15993] = {.lex_state = 25}, + [15994] = {.lex_state = 0}, + [15995] = {.lex_state = 0}, + [15996] = {.lex_state = 0}, + [15997] = {.lex_state = 0}, + [15998] = {.lex_state = 0}, + [15999] = {.lex_state = 25}, + [16000] = {.lex_state = 25}, + [16001] = {.lex_state = 25}, + [16002] = {.lex_state = 0}, + [16003] = {.lex_state = 0}, + [16004] = {.lex_state = 0}, + [16005] = {.lex_state = 0}, + [16006] = {.lex_state = 0}, + [16007] = {.lex_state = 0}, + [16008] = {.lex_state = 0}, + [16009] = {.lex_state = 0}, + [16010] = {.lex_state = 0}, + [16011] = {.lex_state = 0}, + [16012] = {.lex_state = 0}, + [16013] = {.lex_state = 25}, + [16014] = {.lex_state = 25}, + [16015] = {.lex_state = 25}, + [16016] = {.lex_state = 25}, + [16017] = {.lex_state = 25}, + [16018] = {.lex_state = 25}, + [16019] = {.lex_state = 0}, + [16020] = {.lex_state = 0}, + [16021] = {.lex_state = 25}, + [16022] = {.lex_state = 0}, + [16023] = {.lex_state = 0}, + [16024] = {.lex_state = 25}, + [16025] = {.lex_state = 0}, + [16026] = {.lex_state = 25}, + [16027] = {.lex_state = 0}, + [16028] = {.lex_state = 0}, + [16029] = {.lex_state = 0}, + [16030] = {.lex_state = 0}, + [16031] = {.lex_state = 25}, + [16032] = {.lex_state = 0}, + [16033] = {.lex_state = 25}, + [16034] = {.lex_state = 0}, + [16035] = {.lex_state = 0}, + [16036] = {.lex_state = 0}, + [16037] = {.lex_state = 0}, + [16038] = {.lex_state = 25}, + [16039] = {.lex_state = 0}, + [16040] = {.lex_state = 0}, + [16041] = {.lex_state = 0}, + [16042] = {.lex_state = 0}, + [16043] = {.lex_state = 25}, + [16044] = {.lex_state = 0}, + [16045] = {.lex_state = 0}, + [16046] = {.lex_state = 0}, + [16047] = {.lex_state = 0}, + [16048] = {.lex_state = 0}, + [16049] = {.lex_state = 25}, + [16050] = {.lex_state = 0}, + [16051] = {.lex_state = 0}, + [16052] = {.lex_state = 0}, + [16053] = {.lex_state = 25}, + [16054] = {.lex_state = 25}, + [16055] = {.lex_state = 0}, + [16056] = {.lex_state = 0}, + [16057] = {.lex_state = 0}, + [16058] = {.lex_state = 0}, + [16059] = {.lex_state = 0}, + [16060] = {.lex_state = 0}, + [16061] = {.lex_state = 0}, + [16062] = {.lex_state = 0}, + [16063] = {.lex_state = 0}, + [16064] = {.lex_state = 0}, + [16065] = {.lex_state = 0}, + [16066] = {.lex_state = 0}, + [16067] = {.lex_state = 0}, + [16068] = {.lex_state = 0}, + [16069] = {.lex_state = 0}, + [16070] = {.lex_state = 0}, + [16071] = {.lex_state = 0}, + [16072] = {.lex_state = 0}, + [16073] = {.lex_state = 0}, + [16074] = {.lex_state = 0}, + [16075] = {.lex_state = 0}, + [16076] = {.lex_state = 0}, + [16077] = {.lex_state = 0}, + [16078] = {.lex_state = 5}, + [16079] = {.lex_state = 25}, + [16080] = {.lex_state = 0}, + [16081] = {.lex_state = 0}, + [16082] = {.lex_state = 0}, + [16083] = {.lex_state = 0}, + [16084] = {.lex_state = 0}, + [16085] = {.lex_state = 0}, + [16086] = {.lex_state = 0}, + [16087] = {.lex_state = 0}, + [16088] = {.lex_state = 0}, + [16089] = {.lex_state = 0}, + [16090] = {.lex_state = 25}, + [16091] = {.lex_state = 0}, + [16092] = {.lex_state = 0}, + [16093] = {.lex_state = 0}, + [16094] = {.lex_state = 0}, + [16095] = {.lex_state = 0}, + [16096] = {.lex_state = 0}, + [16097] = {.lex_state = 0}, + [16098] = {.lex_state = 0}, + [16099] = {.lex_state = 0}, + [16100] = {.lex_state = 0}, + [16101] = {.lex_state = 25}, + [16102] = {.lex_state = 25}, + [16103] = {.lex_state = 0}, + [16104] = {.lex_state = 25}, + [16105] = {.lex_state = 0}, + [16106] = {.lex_state = 0}, + [16107] = {.lex_state = 0}, + [16108] = {.lex_state = 25}, + [16109] = {.lex_state = 0}, + [16110] = {.lex_state = 25}, + [16111] = {.lex_state = 0}, + [16112] = {.lex_state = 0}, + [16113] = {.lex_state = 25}, + [16114] = {.lex_state = 0}, + [16115] = {.lex_state = 0}, + [16116] = {.lex_state = 25}, + [16117] = {.lex_state = 0}, + [16118] = {.lex_state = 25}, + [16119] = {.lex_state = 0}, + [16120] = {.lex_state = 0}, + [16121] = {.lex_state = 0}, + [16122] = {.lex_state = 0}, + [16123] = {.lex_state = 0}, + [16124] = {.lex_state = 0}, + [16125] = {.lex_state = 0}, + [16126] = {.lex_state = 0}, + [16127] = {.lex_state = 0}, + [16128] = {.lex_state = 0}, + [16129] = {.lex_state = 0}, + [16130] = {.lex_state = 0}, + [16131] = {.lex_state = 25}, + [16132] = {.lex_state = 0}, + [16133] = {.lex_state = 0}, + [16134] = {.lex_state = 0}, + [16135] = {.lex_state = 0}, + [16136] = {.lex_state = 0}, + [16137] = {.lex_state = 0}, + [16138] = {.lex_state = 0}, + [16139] = {.lex_state = 0}, + [16140] = {.lex_state = 0}, + [16141] = {.lex_state = 0}, + [16142] = {.lex_state = 0}, + [16143] = {.lex_state = 0}, + [16144] = {.lex_state = 0}, + [16145] = {.lex_state = 0}, + [16146] = {.lex_state = 0}, + [16147] = {.lex_state = 0}, + [16148] = {.lex_state = 0}, + [16149] = {.lex_state = 0}, + [16150] = {.lex_state = 0}, + [16151] = {.lex_state = 0}, + [16152] = {.lex_state = 0}, + [16153] = {.lex_state = 25}, + [16154] = {.lex_state = 25}, + [16155] = {.lex_state = 25}, + [16156] = {.lex_state = 25}, + [16157] = {.lex_state = 25}, + [16158] = {.lex_state = 25}, + [16159] = {.lex_state = 25}, + [16160] = {.lex_state = 25}, + [16161] = {.lex_state = 25}, + [16162] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -16561,7 +38350,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_DOT_DOT_EQ] = ACTIONS(1), [anon_sym_orelse] = ACTIONS(1), - [anon_sym_catch] = ACTIONS(1), [anon_sym_or] = ACTIONS(1), [anon_sym_and] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), @@ -16577,6 +38365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_PIPE] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), @@ -16597,16 +38386,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(5256), - [sym__top_level_declaration] = STATE(3784), - [sym_import_declaration] = STATE(3784), - [sym_test_import_declaration] = STATE(3784), - [sym_test_declaration] = STATE(3784), - [sym_function_declaration] = STATE(3784), - [sym_type_declaration] = STATE(3784), - [sym_global_constant_declaration] = STATE(3784), - [sym_global_variable_declaration] = STATE(3784), - [aux_sym_source_file_repeat1] = STATE(3784), + [sym_source_file] = STATE(15176), + [sym__top_level_declaration] = STATE(10839), + [sym_import_declaration] = STATE(10839), + [sym_test_import_declaration] = STATE(10839), + [sym_test_declaration] = STATE(10839), + [sym_function_declaration] = STATE(10839), + [sym_type_declaration] = STATE(10839), + [sym_global_constant_declaration] = STATE(10839), + [sym_global_variable_declaration] = STATE(10839), + [aux_sym_source_file_repeat1] = STATE(10839), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -16616,71554 +38405,25505 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(15), }, [STATE(2)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3885), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(400), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3885), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(401), - [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(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(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(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(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), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [ts_builtin_sym_end] = ACTIONS(17), + [sym_identifier] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_test] = ACTIONS(21), + [anon_sym_hide] = ACTIONS(21), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(17), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(39), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(111), + [sym__newline] = ACTIONS(17), }, [STATE(3)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3892), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(293), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3892), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(294), - [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(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(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(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(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), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3250), + [sym_labeled_block] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_while_statement] = STATE(3250), + [sym_for_statement] = STATE(3250), + [sym_match_statement] = STATE(3250), + [sym__value] = STATE(3250), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_c_func] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_struct_type_BANG] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_AT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(85), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(71), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(113), + [sym__newline] = ACTIONS(17), }, [STATE(4)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2218), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(308), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2218), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(309), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(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(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(115), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(141), + [sym__newline] = ACTIONS(17), }, [STATE(5)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2215), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(312), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2215), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(313), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(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(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(12281), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1376), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(12281), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1377), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(143), + [sym__newline] = ACTIONS(211), }, [STATE(6)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4180), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(184), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4180), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [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_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(163), - [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(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7094), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1408), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7094), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(169), + [sym__newline] = ACTIONS(237), }, [STATE(7)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(216), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3880), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(217), - [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(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(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(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(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), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7100), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1416), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7100), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1417), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), + [sym__newline] = ACTIONS(239), }, [STATE(8)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3888), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(223), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3888), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(224), - [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(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(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(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(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), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(173), - }, - [STATE(9)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2214), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(261), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2214), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(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(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(175), - }, - [STATE(10)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2206), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(264), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2206), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(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(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(177), - }, - [STATE(11)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4143), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(270), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4143), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [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_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(163), - [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(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(179), - }, - [STATE(12)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4155), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(426), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4155), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [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_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(163), - [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(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(181), - }, - [STATE(13)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4500), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(283), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4500), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(211), - [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(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(233), - }, - [STATE(14)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2398), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(394), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2398), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(395), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(249), - [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(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), - }, - [STATE(15)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2411), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(397), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2411), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(398), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(249), - [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(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(255), - }, - [STATE(16)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4492), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(277), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4492), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(278), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(211), - [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(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3366), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(580), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3366), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(581), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(257), }, - [STATE(17)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4473), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(305), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4473), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(211), - [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(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(9)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9894), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(512), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9894), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(259), + [sym__newline] = ACTIONS(299), + }, + [STATE(10)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5061), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(614), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5061), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(315), + }, + [STATE(11)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9912), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(554), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9912), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(555), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(345), + }, + [STATE(12)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3359), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1046), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3359), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1047), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(359), + }, + [STATE(13)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10934), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(611), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10934), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(375), + }, + [STATE(14)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3357), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(585), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3357), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(586), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(377), + }, + [STATE(15)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5040), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(618), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5040), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(619), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(379), + }, + [STATE(16)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9973), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(648), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9973), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(649), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(405), + }, + [STATE(17)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10222), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_capture_list] = STATE(679), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10222), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(680), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(471), }, [STATE(18)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4117), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(267), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4117), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [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_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(163), - [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(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10460), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(709), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10460), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(710), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(261), + [sym__newline] = ACTIONS(497), }, [STATE(19)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4459), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_capture_list] = STATE(302), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4459), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_argument_list] = STATE(912), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(211), - [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(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8765), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(740), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8765), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(741), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(263), + [sym__newline] = ACTIONS(513), }, [STATE(20)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(220), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(724), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(4100), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(97), - [aux_sym_block_repeat1] = STATE(220), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11063), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(776), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11063), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(777), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(529), }, [STATE(21)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(220), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(726), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(4132), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(76), - [aux_sym_block_repeat1] = STATE(220), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8866), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(806), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8866), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(807), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(545), }, [STATE(22)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(274), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(723), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(3999), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(53), - [aux_sym_block_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10119), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(836), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10119), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(561), }, [STATE(23)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(315), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(721), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(3991), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(96), - [aux_sym_block_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8739), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(866), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8739), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(867), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(591), }, [STATE(24)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(300), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(726), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(4132), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(76), - [aux_sym_block_repeat1] = STATE(300), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7161), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_capture_list] = STATE(896), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7161), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(637), }, [STATE(25)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(220), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(723), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(3999), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(53), - [aux_sym_block_repeat1] = STATE(220), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10154), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(926), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10154), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(927), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(653), }, [STATE(26)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(336), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(722), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(4168), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(115), - [aux_sym_block_repeat1] = STATE(336), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8843), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(956), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8843), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(669), }, [STATE(27)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(344), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(725), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(3995), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(135), - [aux_sym_block_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3534), + [sym_labeled_block] = STATE(3534), + [sym_if_statement] = STATE(3534), + [sym_while_statement] = STATE(3534), + [sym_for_statement] = STATE(3534), + [sym_match_statement] = STATE(3534), + [sym__value] = STATE(3534), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(21), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(689), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_PIPE2] = ACTIONS(17), + [anon_sym_match] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(675), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(701), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(17), }, [STATE(28)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(213), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(724), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(4100), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(97), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8944), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_capture_list] = STATE(990), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8944), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(991), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(745), }, [STATE(29)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(220), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(722), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_keyed_field_initializer] = STATE(4168), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(115), - [aux_sym_block_repeat1] = STATE(220), - [sym_identifier] = ACTIONS(265), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(279), - [anon_sym_noreturn] = ACTIONS(279), - [anon_sym_type] = ACTIONS(279), - [anon_sym_anyopaque] = ACTIONS(279), - [anon_sym_bool] = ACTIONS(279), - [anon_sym_int] = ACTIONS(279), - [anon_sym_uint] = ACTIONS(279), - [anon_sym_float] = ACTIONS(279), - [anon_sym_range] = ACTIONS(279), - [anon_sym_i8] = ACTIONS(279), - [anon_sym_i16] = ACTIONS(279), - [anon_sym_i32] = ACTIONS(279), - [anon_sym_i64] = ACTIONS(279), - [anon_sym_u8] = ACTIONS(279), - [anon_sym_u16] = ACTIONS(279), - [anon_sym_u32] = ACTIONS(279), - [anon_sym_u64] = ACTIONS(279), - [anon_sym_isize] = ACTIONS(279), - [anon_sym_usize] = ACTIONS(279), - [anon_sym_f32] = ACTIONS(279), - [anon_sym_f64] = ACTIONS(279), - [anon_sym_c_char] = ACTIONS(279), - [anon_sym_c_schar] = ACTIONS(279), - [anon_sym_c_uchar] = ACTIONS(279), - [anon_sym_c_short] = ACTIONS(279), - [anon_sym_c_ushort] = ACTIONS(279), - [anon_sym_c_int] = ACTIONS(279), - [anon_sym_c_uint] = ACTIONS(279), - [anon_sym_c_long] = ACTIONS(279), - [anon_sym_c_ulong] = ACTIONS(279), - [anon_sym_c_longlong] = ACTIONS(279), - [anon_sym_c_ulonglong] = ACTIONS(279), - [anon_sym_c_float] = ACTIONS(279), - [anon_sym_c_double] = ACTIONS(279), - [anon_sym_c_longdouble] = ACTIONS(279), - [anon_sym_return] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(295), - [anon_sym_expand] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_match] = ACTIONS(301), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_null] = ACTIONS(309), - [anon_sym_unreachable] = ACTIONS(311), - [anon_sym_undefined] = ACTIONS(313), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8984), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1020), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8984), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), + [sym__newline] = ACTIONS(761), }, [STATE(30)] = { - [sym_type] = STATE(688), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(329), - [sym_identifier] = ACTIONS(331), - [anon_sym_import] = ACTIONS(334), - [anon_sym_test] = ACTIONS(334), - [anon_sym_hide] = ACTIONS(334), - [anon_sym_func] = ACTIONS(336), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(334), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_struct] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(346), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_mut] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(356), - [anon_sym_void] = ACTIONS(359), - [anon_sym_noreturn] = ACTIONS(359), - [anon_sym_type] = ACTIONS(359), - [anon_sym_anyopaque] = ACTIONS(359), - [anon_sym_bool] = ACTIONS(359), - [anon_sym_int] = ACTIONS(359), - [anon_sym_uint] = ACTIONS(359), - [anon_sym_float] = ACTIONS(359), - [anon_sym_range] = ACTIONS(359), - [anon_sym_i8] = ACTIONS(359), - [anon_sym_i16] = ACTIONS(359), - [anon_sym_i32] = ACTIONS(359), - [anon_sym_i64] = ACTIONS(359), - [anon_sym_u8] = ACTIONS(359), - [anon_sym_u16] = ACTIONS(359), - [anon_sym_u32] = ACTIONS(359), - [anon_sym_u64] = ACTIONS(359), - [anon_sym_isize] = ACTIONS(359), - [anon_sym_usize] = ACTIONS(359), - [anon_sym_f32] = ACTIONS(359), - [anon_sym_f64] = ACTIONS(359), - [anon_sym_c_char] = ACTIONS(359), - [anon_sym_c_schar] = ACTIONS(359), - [anon_sym_c_uchar] = ACTIONS(359), - [anon_sym_c_short] = ACTIONS(359), - [anon_sym_c_ushort] = ACTIONS(359), - [anon_sym_c_int] = ACTIONS(359), - [anon_sym_c_uint] = ACTIONS(359), - [anon_sym_c_long] = ACTIONS(359), - [anon_sym_c_ulong] = ACTIONS(359), - [anon_sym_c_longlong] = ACTIONS(359), - [anon_sym_c_ulonglong] = ACTIONS(359), - [anon_sym_c_float] = ACTIONS(359), - [anon_sym_c_double] = ACTIONS(359), - [anon_sym_c_longdouble] = ACTIONS(359), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_SLASH_EQ] = ACTIONS(329), - [anon_sym_AMP_EQ] = ACTIONS(329), - [anon_sym_PIPE_EQ] = ACTIONS(329), - [anon_sym_xor_EQ] = ACTIONS(329), - [anon_sym_LT_LT_EQ] = ACTIONS(329), - [anon_sym_GT_GT_EQ] = ACTIONS(329), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(329), - [anon_sym_return] = ACTIONS(334), - [anon_sym_yield] = ACTIONS(334), - [anon_sym_break] = ACTIONS(334), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_defer] = ACTIONS(334), - [anon_sym_errdefer] = ACTIONS(334), - [anon_sym_if] = ACTIONS(334), - [anon_sym_else] = ACTIONS(334), - [anon_sym_while] = ACTIONS(334), - [anon_sym_expand] = ACTIONS(334), - [anon_sym_for] = ACTIONS(334), - [anon_sym_match] = ACTIONS(334), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_orelse] = ACTIONS(334), - [anon_sym_catch] = ACTIONS(334), - [anon_sym_or] = ACTIONS(334), - [anon_sym_and] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_xor] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_LT_LT_PIPE] = ACTIONS(334), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_try] = ACTIONS(334), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_true] = ACTIONS(334), - [anon_sym_false] = ACTIONS(334), - [anon_sym_null] = ACTIONS(334), - [anon_sym_unreachable] = ACTIONS(334), - [anon_sym_undefined] = ACTIONS(334), - [sym_sink] = ACTIONS(334), - [sym_integer] = ACTIONS(334), - [sym_float] = ACTIONS(329), - [anon_sym_DQUOTE] = ACTIONS(329), - [sym_multiline_string] = ACTIONS(329), - [sym_character] = ACTIONS(329), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3363), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1050), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3363), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1051), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(329), + [sym__newline] = ACTIONS(763), }, [STATE(31)] = { - [sym_type] = STATE(559), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(362), - [sym_identifier] = ACTIONS(364), - [anon_sym_import] = ACTIONS(367), - [anon_sym_test] = ACTIONS(367), - [anon_sym_hide] = ACTIONS(367), - [anon_sym_func] = ACTIONS(369), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_struct] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(362), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(378), - [anon_sym_mut] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(383), - [anon_sym_void] = ACTIONS(386), - [anon_sym_noreturn] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_anyopaque] = ACTIONS(386), - [anon_sym_bool] = ACTIONS(386), - [anon_sym_int] = ACTIONS(386), - [anon_sym_uint] = ACTIONS(386), - [anon_sym_float] = ACTIONS(386), - [anon_sym_range] = ACTIONS(386), - [anon_sym_i8] = ACTIONS(386), - [anon_sym_i16] = ACTIONS(386), - [anon_sym_i32] = ACTIONS(386), - [anon_sym_i64] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(386), - [anon_sym_u16] = ACTIONS(386), - [anon_sym_u32] = ACTIONS(386), - [anon_sym_u64] = ACTIONS(386), - [anon_sym_isize] = ACTIONS(386), - [anon_sym_usize] = ACTIONS(386), - [anon_sym_f32] = ACTIONS(386), - [anon_sym_f64] = ACTIONS(386), - [anon_sym_c_char] = ACTIONS(386), - [anon_sym_c_schar] = ACTIONS(386), - [anon_sym_c_uchar] = ACTIONS(386), - [anon_sym_c_short] = ACTIONS(386), - [anon_sym_c_ushort] = ACTIONS(386), - [anon_sym_c_int] = ACTIONS(386), - [anon_sym_c_uint] = ACTIONS(386), - [anon_sym_c_long] = ACTIONS(386), - [anon_sym_c_ulong] = ACTIONS(386), - [anon_sym_c_longlong] = ACTIONS(386), - [anon_sym_c_ulonglong] = ACTIONS(386), - [anon_sym_c_float] = ACTIONS(386), - [anon_sym_c_double] = ACTIONS(386), - [anon_sym_c_longdouble] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(362), - [anon_sym_SLASH_EQ] = ACTIONS(362), - [anon_sym_AMP_EQ] = ACTIONS(362), - [anon_sym_PIPE_EQ] = ACTIONS(362), - [anon_sym_xor_EQ] = ACTIONS(362), - [anon_sym_LT_LT_EQ] = ACTIONS(362), - [anon_sym_GT_GT_EQ] = ACTIONS(362), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(362), - [anon_sym_return] = ACTIONS(367), - [anon_sym_yield] = ACTIONS(367), - [anon_sym_break] = ACTIONS(367), - [anon_sym_continue] = ACTIONS(367), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10947), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(772), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10947), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), [anon_sym_defer] = ACTIONS(367), - [anon_sym_errdefer] = ACTIONS(367), - [anon_sym_if] = ACTIONS(367), - [anon_sym_else] = ACTIONS(367), - [anon_sym_while] = ACTIONS(367), - [anon_sym_expand] = ACTIONS(367), - [anon_sym_for] = ACTIONS(367), - [anon_sym_match] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [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(362), - [anon_sym_try] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_null] = ACTIONS(367), - [anon_sym_unreachable] = ACTIONS(367), - [anon_sym_undefined] = ACTIONS(367), - [sym_sink] = ACTIONS(367), - [sym_integer] = ACTIONS(367), - [sym_float] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_multiline_string] = ACTIONS(362), - [sym_character] = ACTIONS(362), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(765), }, [STATE(32)] = { - [sym_type] = STATE(558), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(362), - [sym_identifier] = ACTIONS(364), - [anon_sym_import] = ACTIONS(367), - [anon_sym_test] = ACTIONS(367), - [anon_sym_hide] = ACTIONS(367), - [anon_sym_func] = ACTIONS(369), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_struct] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(362), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(378), - [anon_sym_mut] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(383), - [anon_sym_void] = ACTIONS(386), - [anon_sym_noreturn] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_anyopaque] = ACTIONS(386), - [anon_sym_bool] = ACTIONS(386), - [anon_sym_int] = ACTIONS(386), - [anon_sym_uint] = ACTIONS(386), - [anon_sym_float] = ACTIONS(386), - [anon_sym_range] = ACTIONS(386), - [anon_sym_i8] = ACTIONS(386), - [anon_sym_i16] = ACTIONS(386), - [anon_sym_i32] = ACTIONS(386), - [anon_sym_i64] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(386), - [anon_sym_u16] = ACTIONS(386), - [anon_sym_u32] = ACTIONS(386), - [anon_sym_u64] = ACTIONS(386), - [anon_sym_isize] = ACTIONS(386), - [anon_sym_usize] = ACTIONS(386), - [anon_sym_f32] = ACTIONS(386), - [anon_sym_f64] = ACTIONS(386), - [anon_sym_c_char] = ACTIONS(386), - [anon_sym_c_schar] = ACTIONS(386), - [anon_sym_c_uchar] = ACTIONS(386), - [anon_sym_c_short] = ACTIONS(386), - [anon_sym_c_ushort] = ACTIONS(386), - [anon_sym_c_int] = ACTIONS(386), - [anon_sym_c_uint] = ACTIONS(386), - [anon_sym_c_long] = ACTIONS(386), - [anon_sym_c_ulong] = ACTIONS(386), - [anon_sym_c_longlong] = ACTIONS(386), - [anon_sym_c_ulonglong] = ACTIONS(386), - [anon_sym_c_float] = ACTIONS(386), - [anon_sym_c_double] = ACTIONS(386), - [anon_sym_c_longdouble] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(362), - [anon_sym_SLASH_EQ] = ACTIONS(362), - [anon_sym_AMP_EQ] = ACTIONS(362), - [anon_sym_PIPE_EQ] = ACTIONS(362), - [anon_sym_xor_EQ] = ACTIONS(362), - [anon_sym_LT_LT_EQ] = ACTIONS(362), - [anon_sym_GT_GT_EQ] = ACTIONS(362), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(362), - [anon_sym_return] = ACTIONS(367), - [anon_sym_yield] = ACTIONS(367), - [anon_sym_break] = ACTIONS(367), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_defer] = ACTIONS(367), - [anon_sym_errdefer] = ACTIONS(367), - [anon_sym_if] = ACTIONS(367), - [anon_sym_else] = ACTIONS(367), - [anon_sym_while] = ACTIONS(367), - [anon_sym_expand] = ACTIONS(367), - [anon_sym_for] = ACTIONS(367), - [anon_sym_match] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [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(362), - [anon_sym_try] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_null] = ACTIONS(367), - [anon_sym_unreachable] = ACTIONS(367), - [anon_sym_undefined] = ACTIONS(367), - [sym_sink] = ACTIONS(367), - [sym_integer] = ACTIONS(367), - [sym_float] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_multiline_string] = ACTIONS(362), - [sym_character] = ACTIONS(362), + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3424), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_capture_list] = STATE(1080), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3424), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1081), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(675), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(785), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(791), }, [STATE(33)] = { - [sym_type] = STATE(592), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(393), - [anon_sym_import] = ACTIONS(396), - [anon_sym_test] = ACTIONS(396), - [anon_sym_hide] = ACTIONS(396), - [anon_sym_func] = ACTIONS(398), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_struct] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(404), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_mut] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_void] = ACTIONS(415), - [anon_sym_noreturn] = ACTIONS(415), - [anon_sym_type] = ACTIONS(415), - [anon_sym_anyopaque] = ACTIONS(415), - [anon_sym_bool] = ACTIONS(415), - [anon_sym_int] = ACTIONS(415), - [anon_sym_uint] = ACTIONS(415), - [anon_sym_float] = ACTIONS(415), - [anon_sym_range] = ACTIONS(415), - [anon_sym_i8] = ACTIONS(415), - [anon_sym_i16] = ACTIONS(415), - [anon_sym_i32] = ACTIONS(415), - [anon_sym_i64] = ACTIONS(415), - [anon_sym_u8] = ACTIONS(415), - [anon_sym_u16] = ACTIONS(415), - [anon_sym_u32] = ACTIONS(415), - [anon_sym_u64] = ACTIONS(415), - [anon_sym_isize] = ACTIONS(415), - [anon_sym_usize] = ACTIONS(415), - [anon_sym_f32] = ACTIONS(415), - [anon_sym_f64] = ACTIONS(415), - [anon_sym_c_char] = ACTIONS(415), - [anon_sym_c_schar] = ACTIONS(415), - [anon_sym_c_uchar] = ACTIONS(415), - [anon_sym_c_short] = ACTIONS(415), - [anon_sym_c_ushort] = ACTIONS(415), - [anon_sym_c_int] = ACTIONS(415), - [anon_sym_c_uint] = ACTIONS(415), - [anon_sym_c_long] = ACTIONS(415), - [anon_sym_c_ulong] = ACTIONS(415), - [anon_sym_c_longlong] = ACTIONS(415), - [anon_sym_c_ulonglong] = ACTIONS(415), - [anon_sym_c_float] = ACTIONS(415), - [anon_sym_c_double] = ACTIONS(415), - [anon_sym_c_longdouble] = ACTIONS(415), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_xor_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(391), - [anon_sym_return] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(396), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_defer] = ACTIONS(396), - [anon_sym_errdefer] = ACTIONS(396), - [anon_sym_if] = ACTIONS(396), - [anon_sym_else] = ACTIONS(396), - [anon_sym_while] = ACTIONS(396), - [anon_sym_expand] = ACTIONS(396), - [anon_sym_for] = ACTIONS(396), - [anon_sym_match] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_LT_LT_PIPE] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_try] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_true] = ACTIONS(396), - [anon_sym_false] = ACTIONS(396), - [anon_sym_null] = ACTIONS(396), - [anon_sym_unreachable] = ACTIONS(396), - [anon_sym_undefined] = ACTIONS(396), - [sym_sink] = ACTIONS(396), - [sym_integer] = ACTIONS(396), - [sym_float] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), - [sym_multiline_string] = ACTIONS(391), - [sym_character] = ACTIONS(391), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8874), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1110), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8874), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1111), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(807), }, [STATE(34)] = { - [sym_type] = STATE(574), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(425), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_void] = ACTIONS(442), - [anon_sym_noreturn] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_anyopaque] = ACTIONS(442), - [anon_sym_bool] = ACTIONS(442), - [anon_sym_int] = ACTIONS(442), - [anon_sym_uint] = ACTIONS(442), - [anon_sym_float] = ACTIONS(442), - [anon_sym_range] = ACTIONS(442), - [anon_sym_i8] = ACTIONS(442), - [anon_sym_i16] = ACTIONS(442), - [anon_sym_i32] = ACTIONS(442), - [anon_sym_i64] = ACTIONS(442), - [anon_sym_u8] = ACTIONS(442), - [anon_sym_u16] = ACTIONS(442), - [anon_sym_u32] = ACTIONS(442), - [anon_sym_u64] = ACTIONS(442), - [anon_sym_isize] = ACTIONS(442), - [anon_sym_usize] = ACTIONS(442), - [anon_sym_f32] = ACTIONS(442), - [anon_sym_f64] = ACTIONS(442), - [anon_sym_c_char] = ACTIONS(442), - [anon_sym_c_schar] = ACTIONS(442), - [anon_sym_c_uchar] = ACTIONS(442), - [anon_sym_c_short] = ACTIONS(442), - [anon_sym_c_ushort] = ACTIONS(442), - [anon_sym_c_int] = ACTIONS(442), - [anon_sym_c_uint] = ACTIONS(442), - [anon_sym_c_long] = ACTIONS(442), - [anon_sym_c_ulong] = ACTIONS(442), - [anon_sym_c_longlong] = ACTIONS(442), - [anon_sym_c_ulonglong] = ACTIONS(442), - [anon_sym_c_float] = ACTIONS(442), - [anon_sym_c_double] = ACTIONS(442), - [anon_sym_c_longdouble] = ACTIONS(442), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_defer] = ACTIONS(423), - [anon_sym_errdefer] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_expand] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_LT_LT_PIPE] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_TILDE] = ACTIONS(418), - [anon_sym_try] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_null] = ACTIONS(423), - [anon_sym_unreachable] = ACTIONS(423), - [anon_sym_undefined] = ACTIONS(423), - [sym_sink] = ACTIONS(423), - [sym_integer] = ACTIONS(423), - [sym_float] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_multiline_string] = ACTIONS(418), - [sym_character] = ACTIONS(418), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6557), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_capture_list] = STATE(1140), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6557), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(827), }, [STATE(35)] = { - [sym_type] = STATE(579), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(425), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_mut] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_void] = ACTIONS(442), - [anon_sym_noreturn] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_anyopaque] = ACTIONS(442), - [anon_sym_bool] = ACTIONS(442), - [anon_sym_int] = ACTIONS(442), - [anon_sym_uint] = ACTIONS(442), - [anon_sym_float] = ACTIONS(442), - [anon_sym_range] = ACTIONS(442), - [anon_sym_i8] = ACTIONS(442), - [anon_sym_i16] = ACTIONS(442), - [anon_sym_i32] = ACTIONS(442), - [anon_sym_i64] = ACTIONS(442), - [anon_sym_u8] = ACTIONS(442), - [anon_sym_u16] = ACTIONS(442), - [anon_sym_u32] = ACTIONS(442), - [anon_sym_u64] = ACTIONS(442), - [anon_sym_isize] = ACTIONS(442), - [anon_sym_usize] = ACTIONS(442), - [anon_sym_f32] = ACTIONS(442), - [anon_sym_f64] = ACTIONS(442), - [anon_sym_c_char] = ACTIONS(442), - [anon_sym_c_schar] = ACTIONS(442), - [anon_sym_c_uchar] = ACTIONS(442), - [anon_sym_c_short] = ACTIONS(442), - [anon_sym_c_ushort] = ACTIONS(442), - [anon_sym_c_int] = ACTIONS(442), - [anon_sym_c_uint] = ACTIONS(442), - [anon_sym_c_long] = ACTIONS(442), - [anon_sym_c_ulong] = ACTIONS(442), - [anon_sym_c_longlong] = ACTIONS(442), - [anon_sym_c_ulonglong] = ACTIONS(442), - [anon_sym_c_float] = ACTIONS(442), - [anon_sym_c_double] = ACTIONS(442), - [anon_sym_c_longdouble] = ACTIONS(442), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_defer] = ACTIONS(423), - [anon_sym_errdefer] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_expand] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_LT_LT_PIPE] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_TILDE] = ACTIONS(418), - [anon_sym_try] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_null] = ACTIONS(423), - [anon_sym_unreachable] = ACTIONS(423), - [anon_sym_undefined] = ACTIONS(423), - [sym_sink] = ACTIONS(423), - [sym_integer] = ACTIONS(423), - [sym_float] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_multiline_string] = ACTIONS(418), - [sym_character] = ACTIONS(418), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2908), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_capture_list] = STATE(1170), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2908), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1171), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(841), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(845), }, [STATE(36)] = { - [sym_type] = STATE(574), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(447), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(447), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(447), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_void] = ACTIONS(447), - [anon_sym_noreturn] = ACTIONS(447), - [anon_sym_type] = ACTIONS(447), - [anon_sym_anyopaque] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_int] = ACTIONS(447), - [anon_sym_uint] = ACTIONS(447), - [anon_sym_float] = ACTIONS(447), - [anon_sym_range] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_c_char] = ACTIONS(447), - [anon_sym_c_schar] = ACTIONS(447), - [anon_sym_c_uchar] = ACTIONS(447), - [anon_sym_c_short] = ACTIONS(447), - [anon_sym_c_ushort] = ACTIONS(447), - [anon_sym_c_int] = ACTIONS(447), - [anon_sym_c_uint] = ACTIONS(447), - [anon_sym_c_long] = ACTIONS(447), - [anon_sym_c_ulong] = ACTIONS(447), - [anon_sym_c_longlong] = ACTIONS(447), - [anon_sym_c_ulonglong] = ACTIONS(447), - [anon_sym_c_float] = ACTIONS(447), - [anon_sym_c_double] = ACTIONS(447), - [anon_sym_c_longdouble] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_return] = ACTIONS(447), - [anon_sym_yield] = ACTIONS(447), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(447), - [anon_sym_defer] = ACTIONS(447), - [anon_sym_errdefer] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(447), - [anon_sym_expand] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_match] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(447), - [anon_sym_catch] = ACTIONS(447), - [anon_sym_or] = ACTIONS(447), - [anon_sym_and] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_xor] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(447), - [anon_sym_GT_GT] = ACTIONS(447), - [anon_sym_LT_LT_PIPE] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_true] = ACTIONS(447), - [anon_sym_false] = ACTIONS(447), - [anon_sym_null] = ACTIONS(447), - [anon_sym_unreachable] = ACTIONS(447), - [anon_sym_undefined] = ACTIONS(447), - [sym_sink] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10929), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1201), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10929), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1202), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(847), }, [STATE(37)] = { - [sym_type] = STATE(592), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(396), - [anon_sym_test] = ACTIONS(396), - [anon_sym_hide] = ACTIONS(396), - [anon_sym_func] = ACTIONS(451), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_void] = ACTIONS(451), - [anon_sym_noreturn] = ACTIONS(451), - [anon_sym_type] = 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(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_xor_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(391), - [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(396), - [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(453), - [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(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(453), - [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(453), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [anon_sym_null] = ACTIONS(451), - [anon_sym_unreachable] = ACTIONS(451), - [anon_sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_multiline_string] = ACTIONS(453), - [sym_character] = ACTIONS(453), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10936), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1208), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10936), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1209), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(453), + [sym__newline] = ACTIONS(849), }, [STATE(38)] = { - [sym_type] = STATE(559), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(362), - [sym_identifier] = ACTIONS(455), - [anon_sym_import] = ACTIONS(367), - [anon_sym_test] = ACTIONS(367), - [anon_sym_hide] = ACTIONS(367), - [anon_sym_func] = ACTIONS(455), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_struct] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_mut] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_void] = ACTIONS(455), - [anon_sym_noreturn] = ACTIONS(455), - [anon_sym_type] = ACTIONS(455), - [anon_sym_anyopaque] = ACTIONS(455), - [anon_sym_bool] = ACTIONS(455), - [anon_sym_int] = ACTIONS(455), - [anon_sym_uint] = ACTIONS(455), - [anon_sym_float] = ACTIONS(455), - [anon_sym_range] = ACTIONS(455), - [anon_sym_i8] = ACTIONS(455), - [anon_sym_i16] = ACTIONS(455), - [anon_sym_i32] = ACTIONS(455), - [anon_sym_i64] = ACTIONS(455), - [anon_sym_u8] = ACTIONS(455), - [anon_sym_u16] = ACTIONS(455), - [anon_sym_u32] = ACTIONS(455), - [anon_sym_u64] = ACTIONS(455), - [anon_sym_isize] = ACTIONS(455), - [anon_sym_usize] = ACTIONS(455), - [anon_sym_f32] = ACTIONS(455), - [anon_sym_f64] = ACTIONS(455), - [anon_sym_c_char] = ACTIONS(455), - [anon_sym_c_schar] = ACTIONS(455), - [anon_sym_c_uchar] = ACTIONS(455), - [anon_sym_c_short] = ACTIONS(455), - [anon_sym_c_ushort] = ACTIONS(455), - [anon_sym_c_int] = ACTIONS(455), - [anon_sym_c_uint] = ACTIONS(455), - [anon_sym_c_long] = ACTIONS(455), - [anon_sym_c_ulong] = ACTIONS(455), - [anon_sym_c_longlong] = ACTIONS(455), - [anon_sym_c_ulonglong] = ACTIONS(455), - [anon_sym_c_float] = ACTIONS(455), - [anon_sym_c_double] = ACTIONS(455), - [anon_sym_c_longdouble] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(362), - [anon_sym_SLASH_EQ] = ACTIONS(362), - [anon_sym_AMP_EQ] = ACTIONS(362), - [anon_sym_PIPE_EQ] = ACTIONS(362), - [anon_sym_xor_EQ] = ACTIONS(362), - [anon_sym_LT_LT_EQ] = ACTIONS(362), - [anon_sym_GT_GT_EQ] = ACTIONS(362), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(362), - [anon_sym_return] = ACTIONS(455), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_defer] = ACTIONS(455), - [anon_sym_errdefer] = ACTIONS(455), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(367), - [anon_sym_while] = ACTIONS(455), - [anon_sym_expand] = ACTIONS(455), - [anon_sym_for] = ACTIONS(455), - [anon_sym_match] = ACTIONS(455), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(457), - [anon_sym_orelse] = ACTIONS(455), - [anon_sym_catch] = ACTIONS(455), - [anon_sym_or] = ACTIONS(455), - [anon_sym_and] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_xor] = ACTIONS(455), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_LT_LT_PIPE] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_try] = ACTIONS(455), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_null] = ACTIONS(455), - [anon_sym_unreachable] = ACTIONS(455), - [anon_sym_undefined] = ACTIONS(455), - [sym_sink] = ACTIONS(455), - [sym_integer] = ACTIONS(455), - [sym_float] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_multiline_string] = ACTIONS(457), - [sym_character] = ACTIONS(457), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7092), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1239), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7092), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1240), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(457), + [sym__newline] = ACTIONS(851), }, [STATE(39)] = { - [sym_type] = STATE(579), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(459), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(459), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_DOLLAR] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_mut] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_void] = ACTIONS(459), - [anon_sym_noreturn] = ACTIONS(459), - [anon_sym_type] = ACTIONS(459), - [anon_sym_anyopaque] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_int] = ACTIONS(459), - [anon_sym_uint] = ACTIONS(459), - [anon_sym_float] = ACTIONS(459), - [anon_sym_range] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_c_char] = ACTIONS(459), - [anon_sym_c_schar] = ACTIONS(459), - [anon_sym_c_uchar] = ACTIONS(459), - [anon_sym_c_short] = ACTIONS(459), - [anon_sym_c_ushort] = ACTIONS(459), - [anon_sym_c_int] = ACTIONS(459), - [anon_sym_c_uint] = ACTIONS(459), - [anon_sym_c_long] = ACTIONS(459), - [anon_sym_c_ulong] = ACTIONS(459), - [anon_sym_c_longlong] = ACTIONS(459), - [anon_sym_c_ulonglong] = ACTIONS(459), - [anon_sym_c_float] = ACTIONS(459), - [anon_sym_c_double] = ACTIONS(459), - [anon_sym_c_longdouble] = ACTIONS(459), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_return] = ACTIONS(459), - [anon_sym_yield] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_defer] = ACTIONS(459), - [anon_sym_errdefer] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(459), - [anon_sym_expand] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_match] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(461), - [anon_sym_orelse] = ACTIONS(459), - [anon_sym_catch] = ACTIONS(459), - [anon_sym_or] = ACTIONS(459), - [anon_sym_and] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_xor] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_LT_LT_PIPE] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_try] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(459), - [anon_sym_unreachable] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [sym_sink] = ACTIONS(459), - [sym_integer] = ACTIONS(459), - [sym_float] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(461), - [sym_multiline_string] = ACTIONS(461), - [sym_character] = ACTIONS(461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7096), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1243), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7096), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1244), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(461), + [sym__newline] = ACTIONS(853), }, [STATE(40)] = { - [sym_type] = STATE(5078), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_func] = ACTIONS(468), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(475), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(501), - [anon_sym_noreturn] = ACTIONS(501), - [anon_sym_type] = ACTIONS(501), - [anon_sym_anyopaque] = ACTIONS(501), - [anon_sym_bool] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_uint] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_range] = ACTIONS(501), - [anon_sym_i8] = ACTIONS(501), - [anon_sym_i16] = ACTIONS(501), - [anon_sym_i32] = ACTIONS(501), - [anon_sym_i64] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(501), - [anon_sym_u16] = ACTIONS(501), - [anon_sym_u32] = ACTIONS(501), - [anon_sym_u64] = ACTIONS(501), - [anon_sym_isize] = ACTIONS(501), - [anon_sym_usize] = ACTIONS(501), - [anon_sym_f32] = ACTIONS(501), - [anon_sym_f64] = ACTIONS(501), - [anon_sym_c_char] = ACTIONS(501), - [anon_sym_c_schar] = ACTIONS(501), - [anon_sym_c_uchar] = ACTIONS(501), - [anon_sym_c_short] = ACTIONS(501), - [anon_sym_c_ushort] = ACTIONS(501), - [anon_sym_c_int] = ACTIONS(501), - [anon_sym_c_uint] = ACTIONS(501), - [anon_sym_c_long] = ACTIONS(501), - [anon_sym_c_ulong] = ACTIONS(501), - [anon_sym_c_longlong] = ACTIONS(501), - [anon_sym_c_ulonglong] = ACTIONS(501), - [anon_sym_c_float] = ACTIONS(501), - [anon_sym_c_double] = ACTIONS(501), - [anon_sym_c_longdouble] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2129), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1258), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2129), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1259), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(855), }, [STATE(41)] = { - [sym_type] = STATE(5119), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(509), - [anon_sym_func] = ACTIONS(468), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(501), - [anon_sym_noreturn] = ACTIONS(501), - [anon_sym_type] = ACTIONS(501), - [anon_sym_anyopaque] = ACTIONS(501), - [anon_sym_bool] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_uint] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_range] = ACTIONS(501), - [anon_sym_i8] = ACTIONS(501), - [anon_sym_i16] = ACTIONS(501), - [anon_sym_i32] = ACTIONS(501), - [anon_sym_i64] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(501), - [anon_sym_u16] = ACTIONS(501), - [anon_sym_u32] = ACTIONS(501), - [anon_sym_u64] = ACTIONS(501), - [anon_sym_isize] = ACTIONS(501), - [anon_sym_usize] = ACTIONS(501), - [anon_sym_f32] = ACTIONS(501), - [anon_sym_f64] = ACTIONS(501), - [anon_sym_c_char] = ACTIONS(501), - [anon_sym_c_schar] = ACTIONS(501), - [anon_sym_c_uchar] = ACTIONS(501), - [anon_sym_c_short] = ACTIONS(501), - [anon_sym_c_ushort] = ACTIONS(501), - [anon_sym_c_int] = ACTIONS(501), - [anon_sym_c_uint] = ACTIONS(501), - [anon_sym_c_long] = ACTIONS(501), - [anon_sym_c_ulong] = ACTIONS(501), - [anon_sym_c_longlong] = ACTIONS(501), - [anon_sym_c_ulonglong] = ACTIONS(501), - [anon_sym_c_float] = ACTIONS(501), - [anon_sym_c_double] = ACTIONS(501), - [anon_sym_c_longdouble] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_else] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9895), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1249), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9895), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1250), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(857), }, [STATE(42)] = { - [sym_type] = STATE(3087), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(447), - [anon_sym_func] = ACTIONS(447), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(447), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_void] = ACTIONS(447), - [anon_sym_noreturn] = ACTIONS(447), - [anon_sym_type] = ACTIONS(447), - [anon_sym_anyopaque] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_int] = ACTIONS(447), - [anon_sym_uint] = ACTIONS(447), - [anon_sym_float] = ACTIONS(447), - [anon_sym_range] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_c_char] = ACTIONS(447), - [anon_sym_c_schar] = ACTIONS(447), - [anon_sym_c_uchar] = ACTIONS(447), - [anon_sym_c_short] = ACTIONS(447), - [anon_sym_c_ushort] = ACTIONS(447), - [anon_sym_c_int] = ACTIONS(447), - [anon_sym_c_uint] = ACTIONS(447), - [anon_sym_c_long] = ACTIONS(447), - [anon_sym_c_ulong] = ACTIONS(447), - [anon_sym_c_longlong] = ACTIONS(447), - [anon_sym_c_ulonglong] = ACTIONS(447), - [anon_sym_c_float] = ACTIONS(447), - [anon_sym_c_double] = ACTIONS(447), - [anon_sym_c_longdouble] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_return] = ACTIONS(447), - [anon_sym_yield] = ACTIONS(447), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(447), - [anon_sym_defer] = ACTIONS(447), - [anon_sym_errdefer] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(447), - [anon_sym_expand] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_match] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(447), - [anon_sym_catch] = ACTIONS(447), - [anon_sym_or] = ACTIONS(447), - [anon_sym_and] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_xor] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(447), - [anon_sym_GT_GT] = ACTIONS(447), - [anon_sym_LT_LT_PIPE] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_true] = ACTIONS(447), - [anon_sym_false] = ACTIONS(447), - [anon_sym_null] = ACTIONS(447), - [anon_sym_unreachable] = ACTIONS(447), - [anon_sym_undefined] = ACTIONS(447), - [sym_sink] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5049), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1264), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5049), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1265), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(859), }, [STATE(43)] = { - [sym_type] = STATE(5078), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_func] = ACTIONS(468), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(501), - [anon_sym_noreturn] = ACTIONS(501), - [anon_sym_type] = ACTIONS(501), - [anon_sym_anyopaque] = ACTIONS(501), - [anon_sym_bool] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_uint] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_range] = ACTIONS(501), - [anon_sym_i8] = ACTIONS(501), - [anon_sym_i16] = ACTIONS(501), - [anon_sym_i32] = ACTIONS(501), - [anon_sym_i64] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(501), - [anon_sym_u16] = ACTIONS(501), - [anon_sym_u32] = ACTIONS(501), - [anon_sym_u64] = ACTIONS(501), - [anon_sym_isize] = ACTIONS(501), - [anon_sym_usize] = ACTIONS(501), - [anon_sym_f32] = ACTIONS(501), - [anon_sym_f64] = ACTIONS(501), - [anon_sym_c_char] = ACTIONS(501), - [anon_sym_c_schar] = ACTIONS(501), - [anon_sym_c_uchar] = ACTIONS(501), - [anon_sym_c_short] = ACTIONS(501), - [anon_sym_c_ushort] = ACTIONS(501), - [anon_sym_c_int] = ACTIONS(501), - [anon_sym_c_uint] = ACTIONS(501), - [anon_sym_c_long] = ACTIONS(501), - [anon_sym_c_ulong] = ACTIONS(501), - [anon_sym_c_longlong] = ACTIONS(501), - [anon_sym_c_ulonglong] = ACTIONS(501), - [anon_sym_c_float] = ACTIONS(501), - [anon_sym_c_double] = ACTIONS(501), - [anon_sym_c_longdouble] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9877), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(1255), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9877), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1256), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(861), }, [STATE(44)] = { - [sym_type] = STATE(3027), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(519), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_void] = ACTIONS(451), - [anon_sym_noreturn] = ACTIONS(451), - [anon_sym_type] = 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(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_xor_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(391), - [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(396), - [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(453), - [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(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(453), - [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(453), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [anon_sym_null] = ACTIONS(451), - [anon_sym_unreachable] = ACTIONS(451), - [anon_sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_multiline_string] = ACTIONS(453), - [sym_character] = ACTIONS(453), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2136), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1261), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2136), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1262), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(453), + [sym__newline] = ACTIONS(863), }, [STATE(45)] = { - [sym_type] = STATE(3075), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(455), - [anon_sym_func] = ACTIONS(455), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_struct] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_RPAREN] = ACTIONS(362), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_mut] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_void] = ACTIONS(455), - [anon_sym_noreturn] = ACTIONS(455), - [anon_sym_type] = ACTIONS(455), - [anon_sym_anyopaque] = ACTIONS(455), - [anon_sym_bool] = ACTIONS(455), - [anon_sym_int] = ACTIONS(455), - [anon_sym_uint] = ACTIONS(455), - [anon_sym_float] = ACTIONS(455), - [anon_sym_range] = ACTIONS(455), - [anon_sym_i8] = ACTIONS(455), - [anon_sym_i16] = ACTIONS(455), - [anon_sym_i32] = ACTIONS(455), - [anon_sym_i64] = ACTIONS(455), - [anon_sym_u8] = ACTIONS(455), - [anon_sym_u16] = ACTIONS(455), - [anon_sym_u32] = ACTIONS(455), - [anon_sym_u64] = ACTIONS(455), - [anon_sym_isize] = ACTIONS(455), - [anon_sym_usize] = ACTIONS(455), - [anon_sym_f32] = ACTIONS(455), - [anon_sym_f64] = ACTIONS(455), - [anon_sym_c_char] = ACTIONS(455), - [anon_sym_c_schar] = ACTIONS(455), - [anon_sym_c_uchar] = ACTIONS(455), - [anon_sym_c_short] = ACTIONS(455), - [anon_sym_c_ushort] = ACTIONS(455), - [anon_sym_c_int] = ACTIONS(455), - [anon_sym_c_uint] = ACTIONS(455), - [anon_sym_c_long] = ACTIONS(455), - [anon_sym_c_ulong] = ACTIONS(455), - [anon_sym_c_longlong] = ACTIONS(455), - [anon_sym_c_ulonglong] = ACTIONS(455), - [anon_sym_c_float] = ACTIONS(455), - [anon_sym_c_double] = ACTIONS(455), - [anon_sym_c_longdouble] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(362), - [anon_sym_SLASH_EQ] = ACTIONS(362), - [anon_sym_AMP_EQ] = ACTIONS(362), - [anon_sym_PIPE_EQ] = ACTIONS(362), - [anon_sym_xor_EQ] = ACTIONS(362), - [anon_sym_LT_LT_EQ] = ACTIONS(362), - [anon_sym_GT_GT_EQ] = ACTIONS(362), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(362), - [anon_sym_return] = ACTIONS(455), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_defer] = ACTIONS(455), - [anon_sym_errdefer] = ACTIONS(455), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(367), - [anon_sym_while] = ACTIONS(455), - [anon_sym_expand] = ACTIONS(455), - [anon_sym_for] = ACTIONS(455), - [anon_sym_match] = ACTIONS(455), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(457), - [anon_sym_orelse] = ACTIONS(455), - [anon_sym_catch] = ACTIONS(455), - [anon_sym_or] = ACTIONS(455), - [anon_sym_and] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_xor] = ACTIONS(455), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_LT_LT_PIPE] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_try] = ACTIONS(455), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_null] = ACTIONS(455), - [anon_sym_unreachable] = ACTIONS(455), - [anon_sym_undefined] = ACTIONS(455), - [sym_sink] = ACTIONS(455), - [sym_integer] = ACTIONS(455), - [sym_float] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_multiline_string] = ACTIONS(457), - [sym_character] = ACTIONS(457), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5064), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1267), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5064), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1268), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(231), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(457), + [sym__newline] = ACTIONS(865), }, [STATE(46)] = { - [sym_type] = STATE(3090), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(459), - [anon_sym_func] = ACTIONS(459), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_DOLLAR] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_mut] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_void] = ACTIONS(459), - [anon_sym_noreturn] = ACTIONS(459), - [anon_sym_type] = ACTIONS(459), - [anon_sym_anyopaque] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_int] = ACTIONS(459), - [anon_sym_uint] = ACTIONS(459), - [anon_sym_float] = ACTIONS(459), - [anon_sym_range] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_c_char] = ACTIONS(459), - [anon_sym_c_schar] = ACTIONS(459), - [anon_sym_c_uchar] = ACTIONS(459), - [anon_sym_c_short] = ACTIONS(459), - [anon_sym_c_ushort] = ACTIONS(459), - [anon_sym_c_int] = ACTIONS(459), - [anon_sym_c_uint] = ACTIONS(459), - [anon_sym_c_long] = ACTIONS(459), - [anon_sym_c_ulong] = ACTIONS(459), - [anon_sym_c_longlong] = ACTIONS(459), - [anon_sym_c_ulonglong] = ACTIONS(459), - [anon_sym_c_float] = ACTIONS(459), - [anon_sym_c_double] = ACTIONS(459), - [anon_sym_c_longdouble] = ACTIONS(459), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_return] = ACTIONS(459), - [anon_sym_yield] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_defer] = ACTIONS(459), - [anon_sym_errdefer] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(459), - [anon_sym_expand] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_match] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(461), - [anon_sym_orelse] = ACTIONS(459), - [anon_sym_catch] = ACTIONS(459), - [anon_sym_or] = ACTIONS(459), - [anon_sym_and] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_xor] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_LT_LT_PIPE] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_try] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(459), - [anon_sym_unreachable] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [sym_sink] = ACTIONS(459), - [sym_integer] = ACTIONS(459), - [sym_float] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(461), - [sym_multiline_string] = ACTIONS(461), - [sym_character] = ACTIONS(461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9997), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1273), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9997), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(461), + [sym__newline] = ACTIONS(867), }, [STATE(47)] = { - [sym_type] = STATE(5078), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_func] = ACTIONS(468), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(501), - [anon_sym_noreturn] = ACTIONS(501), - [anon_sym_type] = ACTIONS(501), - [anon_sym_anyopaque] = ACTIONS(501), - [anon_sym_bool] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_uint] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_range] = ACTIONS(501), - [anon_sym_i8] = ACTIONS(501), - [anon_sym_i16] = ACTIONS(501), - [anon_sym_i32] = ACTIONS(501), - [anon_sym_i64] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(501), - [anon_sym_u16] = ACTIONS(501), - [anon_sym_u32] = ACTIONS(501), - [anon_sym_u64] = ACTIONS(501), - [anon_sym_isize] = ACTIONS(501), - [anon_sym_usize] = ACTIONS(501), - [anon_sym_f32] = ACTIONS(501), - [anon_sym_f64] = ACTIONS(501), - [anon_sym_c_char] = ACTIONS(501), - [anon_sym_c_schar] = ACTIONS(501), - [anon_sym_c_uchar] = ACTIONS(501), - [anon_sym_c_short] = ACTIONS(501), - [anon_sym_c_ushort] = ACTIONS(501), - [anon_sym_c_int] = ACTIONS(501), - [anon_sym_c_uint] = ACTIONS(501), - [anon_sym_c_long] = ACTIONS(501), - [anon_sym_c_ulong] = ACTIONS(501), - [anon_sym_c_longlong] = ACTIONS(501), - [anon_sym_c_ulonglong] = ACTIONS(501), - [anon_sym_c_float] = ACTIONS(501), - [anon_sym_c_double] = ACTIONS(501), - [anon_sym_c_longdouble] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10358), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_capture_list] = STATE(1279), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10358), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(869), }, [STATE(48)] = { - [sym_type] = STATE(5119), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(509), - [anon_sym_func] = ACTIONS(468), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10223), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(1285), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10223), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1286), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(501), - [anon_sym_noreturn] = ACTIONS(501), - [anon_sym_type] = ACTIONS(501), - [anon_sym_anyopaque] = ACTIONS(501), - [anon_sym_bool] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_uint] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_range] = ACTIONS(501), - [anon_sym_i8] = ACTIONS(501), - [anon_sym_i16] = ACTIONS(501), - [anon_sym_i32] = ACTIONS(501), - [anon_sym_i64] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(501), - [anon_sym_u16] = ACTIONS(501), - [anon_sym_u32] = ACTIONS(501), - [anon_sym_u64] = ACTIONS(501), - [anon_sym_isize] = ACTIONS(501), - [anon_sym_usize] = ACTIONS(501), - [anon_sym_f32] = ACTIONS(501), - [anon_sym_f64] = ACTIONS(501), - [anon_sym_c_char] = ACTIONS(501), - [anon_sym_c_schar] = ACTIONS(501), - [anon_sym_c_uchar] = ACTIONS(501), - [anon_sym_c_short] = ACTIONS(501), - [anon_sym_c_ushort] = ACTIONS(501), - [anon_sym_c_int] = ACTIONS(501), - [anon_sym_c_uint] = ACTIONS(501), - [anon_sym_c_long] = ACTIONS(501), - [anon_sym_c_ulong] = ACTIONS(501), - [anon_sym_c_longlong] = ACTIONS(501), - [anon_sym_c_ulonglong] = ACTIONS(501), - [anon_sym_c_float] = ACTIONS(501), - [anon_sym_c_double] = ACTIONS(501), - [anon_sym_c_longdouble] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_else] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(871), }, [STATE(49)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8782), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1292), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8782), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1293), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(566), + [sym__newline] = ACTIONS(873), }, [STATE(50)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11914), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1299), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11914), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(875), }, [STATE(51)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8855), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1306), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8855), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(572), + [sym__newline] = ACTIONS(877), }, [STATE(52)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3446), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4100), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10164), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(1313), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10164), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1314), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(590), + [sym__newline] = ACTIONS(879), }, [STATE(53)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3455), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4081), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8759), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1320), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8759), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(881), }, [STATE(54)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3458), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4119), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7187), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_capture_list] = STATE(1328), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7187), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1329), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(596), + [sym__newline] = ACTIONS(883), }, [STATE(55)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3583), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(3956), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10101), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1335), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10101), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(600), + [sym__newline] = ACTIONS(885), }, [STATE(56)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3464), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(3977), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8822), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1342), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8822), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(887), }, [STATE(57)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3564), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4008), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8996), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_capture_list] = STATE(1349), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8996), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1350), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(889), }, [STATE(58)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8882), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1362), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8882), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(608), + [sym__newline] = ACTIONS(891), }, [STATE(59)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6565), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_capture_list] = STATE(1368), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6565), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1369), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(893), }, [STATE(60)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9866), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(499), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9866), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(895), }, [STATE(61)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(65), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7588), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1548), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7588), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(614), + [sym__newline] = ACTIONS(915), }, [STATE(62)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7578), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1551), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7578), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1552), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(616), + [sym__newline] = ACTIONS(917), }, [STATE(63)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(5019), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1554), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(5019), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1555), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(933), }, [STATE(64)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(6542), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1560), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(6542), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(618), + [sym__newline] = ACTIONS(949), }, [STATE(65)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10645), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(1387), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10645), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(951), }, [STATE(66)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(5021), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1557), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(5021), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1558), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(953), }, [STATE(67)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(6541), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1563), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(6541), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1564), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(622), + [sym__newline] = ACTIONS(955), }, [STATE(68)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9300), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1393), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9300), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1394), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(624), + [sym__newline] = ACTIONS(957), }, [STATE(69)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9905), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(549), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9905), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(550), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(959), }, [STATE(70)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(13134), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1402), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(13134), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(961), }, [STATE(71)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9976), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(644), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9976), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(645), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(628), + [sym__newline] = ACTIONS(963), }, [STATE(72)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(630), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10231), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_capture_list] = STATE(675), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10231), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(676), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(965), }, [STATE(73)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10409), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(705), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10409), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(706), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(632), + [sym__newline] = ACTIONS(967), }, [STATE(74)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8744), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(736), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8744), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(737), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(969), }, [STATE(75)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3415), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(3991), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9890), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1246), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9890), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(638), + [sym__newline] = ACTIONS(971), }, [STATE(76)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3436), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4152), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9883), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(1252), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9883), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(973), }, [STATE(77)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3412), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4162), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11808), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(770), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11808), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(644), + [sym__newline] = ACTIONS(975), }, [STATE(78)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8864), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(802), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8864), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(977), }, [STATE(79)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3548), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4181), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10013), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1270), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10013), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(648), + [sym__newline] = ACTIONS(979), }, [STATE(80)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3434), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4186), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10242), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_capture_list] = STATE(1276), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10242), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(981), }, [STATE(81)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3560), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4200), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10116), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(832), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10116), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(833), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(983), }, [STATE(82)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10225), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(1282), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10225), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1283), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(656), + [sym__newline] = ACTIONS(985), }, [STATE(83)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8766), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1288), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8766), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(987), }, [STATE(84)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(86), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(12263), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1373), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(12263), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1374), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(660), + [sym__newline] = ACTIONS(989), }, [STATE(85)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(87), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8753), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(862), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8753), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(863), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(662), + [sym__newline] = ACTIONS(991), }, [STATE(86)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8748), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1316), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8748), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1317), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(993), }, [STATE(87)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7159), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_capture_list] = STATE(892), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7159), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(893), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(995), }, [STATE(88)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10805), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(1384), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10805), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1385), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(664), + [sym__newline] = ACTIONS(997), }, [STATE(89)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11906), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1295), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11906), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1296), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(999), }, [STATE(90)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10150), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(922), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10150), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1001), }, [STATE(91)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8852), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1302), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8852), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1303), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(668), + [sym__newline] = ACTIONS(1003), }, [STATE(92)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8838), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(952), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8838), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(953), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1005), }, [STATE(93)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8937), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_capture_list] = STATE(985), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8937), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(986), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(672), + [sym__newline] = ACTIONS(1007), }, [STATE(94)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10161), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_capture_list] = STATE(1309), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10161), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1310), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1009), }, [STATE(95)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3426), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4132), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8982), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1016), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8982), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(678), + [sym__newline] = ACTIONS(1011), }, [STATE(96)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3433), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4028), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(13108), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_capture_list] = STATE(1399), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(13108), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1400), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1013), }, [STATE(97)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3467), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(3992), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3420), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_capture_list] = STATE(1076), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3420), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(675), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(785), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1015), }, [STATE(98)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3404), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4030), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7185), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_capture_list] = STATE(1324), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7185), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1325), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(686), + [sym__newline] = ACTIONS(1017), }, [STATE(99)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3552), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4056), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10098), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_capture_list] = STATE(1331), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10098), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1332), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(690), + [sym__newline] = ACTIONS(1019), }, [STATE(100)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3462), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4075), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8819), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_capture_list] = STATE(1338), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8819), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1021), }, [STATE(101)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3516), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4105), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8994), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_capture_list] = STATE(1345), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8994), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1346), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1023), }, [STATE(102)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8872), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1106), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8872), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1107), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(698), + [sym__newline] = ACTIONS(1025), }, [STATE(103)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9006), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1352), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9006), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1353), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1027), }, [STATE(104)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6555), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_capture_list] = STATE(1136), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6555), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1137), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(702), + [sym__newline] = ACTIONS(1029), }, [STATE(105)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8879), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1359), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8879), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1360), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(704), + [sym__newline] = ACTIONS(1031), }, [STATE(106)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2906), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_capture_list] = STATE(1166), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2906), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(841), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1033), }, [STATE(107)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6561), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_capture_list] = STATE(1365), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6561), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1035), }, [STATE(108)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9297), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1390), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9297), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1391), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(179), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(708), + [sym__newline] = ACTIONS(1037), }, [STATE(109)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(710), + [sym__newline] = ACTIONS(17), }, [STATE(110)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9008), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_capture_list] = STATE(1356), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9008), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_argument_list] = STATE(4430), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1357), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1041), }, [STATE(111)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8397), + [sym_labeled_block] = STATE(8397), + [sym_if_statement] = STATE(8397), + [sym_while_statement] = STATE(8397), + [sym_for_statement] = STATE(8397), + [sym_match_statement] = STATE(8397), + [sym__value] = STATE(8397), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(17), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(579), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(121), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(714), + [sym__newline] = ACTIONS(17), }, [STATE(112)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3250), + [sym_labeled_block] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_while_statement] = STATE(3250), + [sym_for_statement] = STATE(3250), + [sym_match_statement] = STATE(3250), + [sym__value] = STATE(3250), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_c_func] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_struct_type_BANG] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_AT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(823), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(716), + [sym__newline] = ACTIONS(17), }, [STATE(113)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [ts_builtin_sym_end] = ACTIONS(17), + [sym_identifier] = ACTIONS(1055), + [anon_sym_import] = ACTIONS(21), + [anon_sym_test] = ACTIONS(21), + [anon_sym_hide] = ACTIONS(21), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(261), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(17), }, [STATE(114)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3443), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4168), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3250), + [sym_labeled_block] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_while_statement] = STATE(3250), + [sym_for_statement] = STATE(3250), + [sym_match_statement] = STATE(3250), + [sym__value] = STATE(3250), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_c_func] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_struct_type_BANG] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_AT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(722), + [sym__newline] = ACTIONS(17), }, [STATE(115)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3444), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4201), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8397), + [sym_labeled_block] = STATE(8397), + [sym_if_statement] = STATE(8397), + [sym_while_statement] = STATE(8397), + [sym_for_statement] = STATE(8397), + [sym_match_statement] = STATE(8397), + [sym__value] = STATE(8397), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(17), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(121), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(17), }, [STATE(116)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3553), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4059), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1197), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3345), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11769), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(352), + [aux_sym_block_repeat1] = STATE(1197), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(728), + [sym__newline] = ACTIONS(1113), }, [STATE(117)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3450), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(3957), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1437), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3343), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11441), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(279), + [aux_sym_block_repeat1] = STATE(1437), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(732), + [sym__newline] = ACTIONS(1113), }, [STATE(118)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3506), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(3965), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1405), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3344), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11599), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(379), + [aux_sym_block_repeat1] = STATE(1405), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(736), + [sym__newline] = ACTIONS(1113), }, [STATE(119)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3466), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(3969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1419), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3348), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11059), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(299), + [aux_sym_block_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1113), }, [STATE(120)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3542), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(3978), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1446), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3348), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11059), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(299), + [aux_sym_block_repeat1] = STATE(1446), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1113), }, [STATE(121)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1372), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3350), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11069), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(280), + [aux_sym_block_repeat1] = STATE(1372), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(744), + [sym__newline] = ACTIONS(1113), }, [STATE(122)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1398), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3347), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11445), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(378), + [aux_sym_block_repeat1] = STATE(1398), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1113), }, [STATE(123)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1407), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3346), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11409), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(356), + [aux_sym_block_repeat1] = STATE(1407), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(748), + [sym__newline] = ACTIONS(1113), }, [STATE(124)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(126), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1197), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3347), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11445), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(378), + [aux_sym_block_repeat1] = STATE(1197), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(750), + [sym__newline] = ACTIONS(1113), }, [STATE(125)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1372), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3344), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11599), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(379), + [aux_sym_block_repeat1] = STATE(1372), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1113), }, [STATE(126)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1405), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3347), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11445), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(378), + [aux_sym_block_repeat1] = STATE(1405), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1113), }, [STATE(127)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1411), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3344), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11599), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(379), + [aux_sym_block_repeat1] = STATE(1411), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(754), + [sym__newline] = ACTIONS(1113), }, [STATE(128)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1407), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3349), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11895), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(259), + [aux_sym_block_repeat1] = STATE(1407), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(756), + [sym__newline] = ACTIONS(1113), }, [STATE(129)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1419), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3351), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11734), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(240), + [aux_sym_block_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1113), }, [STATE(130)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [ts_builtin_sym_end] = ACTIONS(17), + [sym_identifier] = ACTIONS(1055), + [anon_sym_import] = ACTIONS(21), + [anon_sym_test] = ACTIONS(21), + [anon_sym_hide] = ACTIONS(21), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(261), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(17), }, [STATE(131)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1405), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3345), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11769), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(352), + [aux_sym_block_repeat1] = STATE(1405), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(760), + [sym__newline] = ACTIONS(1113), }, [STATE(132)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1405), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3350), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11069), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(280), + [aux_sym_block_repeat1] = STATE(1405), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1113), }, [STATE(133)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3413), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4133), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1428), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3349), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_keyed_field_initializer] = STATE(11895), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(259), + [aux_sym_block_repeat1] = STATE(1428), + [sym_identifier] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1069), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_noreturn] = ACTIONS(1075), + [anon_sym_type] = 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(1077), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1085), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_unreachable] = ACTIONS(1107), + [anon_sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(1113), }, [STATE(134)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3407), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(3995), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8397), + [sym_labeled_block] = STATE(8397), + [sym_if_statement] = STATE(8397), + [sym_while_statement] = STATE(8397), + [sym_for_statement] = STATE(8397), + [sym_match_statement] = STATE(8397), + [sym__value] = STATE(8397), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_if] = ACTIONS(803), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(121), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(768), + [sym__newline] = ACTIONS(17), }, [STATE(135)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3410), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4005), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9082), + [sym_labeled_block] = STATE(9082), + [sym_if_statement] = STATE(9082), + [sym_while_statement] = STATE(9082), + [sym_for_statement] = STATE(9082), + [sym_match_statement] = STATE(9082), + [sym__value] = STATE(9082), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(21), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(733), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_PIPE2] = ACTIONS(17), + [anon_sym_match] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(17), }, [STATE(136)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3416), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4011), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(774), + [sym__newline] = ACTIONS(17), }, [STATE(137)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3554), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4020), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(776), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8397), + [sym_labeled_block] = STATE(8397), + [sym_if_statement] = STATE(8397), + [sym_while_statement] = STATE(8397), + [sym_for_statement] = STATE(8397), + [sym_match_statement] = STATE(8397), + [sym__value] = STATE(8397), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(121), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(778), + [sym__newline] = ACTIONS(17), }, [STATE(138)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3425), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4024), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(17), }, [STATE(139)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3582), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4036), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(541), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(17), }, [STATE(140)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(786), + [sym__newline] = ACTIONS(17), }, [STATE(141)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8397), + [sym_labeled_block] = STATE(8397), + [sym_if_statement] = STATE(8397), + [sym_while_statement] = STATE(8397), + [sym_for_statement] = STATE(8397), + [sym_match_statement] = STATE(8397), + [sym__value] = STATE(8397), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(757), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1149), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(17), }, [STATE(142)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9082), + [sym_labeled_block] = STATE(9082), + [sym_if_statement] = STATE(9082), + [sym_while_statement] = STATE(9082), + [sym_for_statement] = STATE(9082), + [sym_match_statement] = STATE(9082), + [sym__value] = STATE(9082), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(21), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_PIPE2] = ACTIONS(17), + [anon_sym_match] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(790), + [sym__newline] = ACTIONS(17), }, [STATE(143)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(145), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2158), + [sym_labeled_block] = STATE(2158), + [sym_if_statement] = STATE(2158), + [sym_while_statement] = STATE(2158), + [sym_for_statement] = STATE(2158), + [sym_match_statement] = STATE(2158), + [sym__value] = STATE(2158), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(792), + [sym__newline] = ACTIONS(17), }, [STATE(144)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8397), + [sym_labeled_block] = STATE(8397), + [sym_if_statement] = STATE(8397), + [sym_while_statement] = STATE(8397), + [sym_for_statement] = STATE(8397), + [sym_match_statement] = STATE(8397), + [sym__value] = STATE(8397), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1149), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), + [sym__newline] = ACTIONS(17), }, [STATE(145)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8397), + [sym_labeled_block] = STATE(8397), + [sym_if_statement] = STATE(8397), + [sym_while_statement] = STATE(8397), + [sym_for_statement] = STATE(8397), + [sym_match_statement] = STATE(8397), + [sym__value] = STATE(8397), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(17), + [anon_sym_DASH_EQ] = ACTIONS(17), + [anon_sym_STAR_EQ] = ACTIONS(17), + [anon_sym_SLASH_EQ] = ACTIONS(17), + [anon_sym_AMP_EQ] = ACTIONS(17), + [anon_sym_PIPE_EQ] = ACTIONS(17), + [anon_sym_xor_EQ] = ACTIONS(17), + [anon_sym_LT_LT_EQ] = ACTIONS(17), + [anon_sym_GT_GT_EQ] = ACTIONS(17), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(121), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(21), + [anon_sym_LT_LT_PIPE] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), }, [STATE(146)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(796), - }, - [STATE(147)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(798), - }, - [STATE(148)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(149)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(150)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(802), - }, - [STATE(151)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(152)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3438), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(3999), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(808), - }, - [STATE(153)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3574), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_keyed_field_initializer] = STATE(4021), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(5176), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(574), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(580), - [anon_sym_noreturn] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_anyopaque] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_int] = ACTIONS(580), - [anon_sym_uint] = ACTIONS(580), - [anon_sym_float] = ACTIONS(580), - [anon_sym_range] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_c_char] = ACTIONS(580), - [anon_sym_c_schar] = ACTIONS(580), - [anon_sym_c_uchar] = ACTIONS(580), - [anon_sym_c_short] = ACTIONS(580), - [anon_sym_c_ushort] = ACTIONS(580), - [anon_sym_c_int] = ACTIONS(580), - [anon_sym_c_uint] = ACTIONS(580), - [anon_sym_c_long] = ACTIONS(580), - [anon_sym_c_ulong] = ACTIONS(580), - [anon_sym_c_longlong] = ACTIONS(580), - [anon_sym_c_ulonglong] = ACTIONS(580), - [anon_sym_c_float] = ACTIONS(580), - [anon_sym_c_double] = ACTIONS(580), - [anon_sym_c_longdouble] = ACTIONS(580), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_unreachable] = ACTIONS(586), - [anon_sym_undefined] = ACTIONS(588), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(154)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(812), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(814), - }, - [STATE(155)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3420), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4140), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(818), - }, - [STATE(156)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(157)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(820), - }, - [STATE(158)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3569), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4921), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(159)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3537), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4969), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(822), - }, - [STATE(160)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(499), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(840), - }, - [STATE(161)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3541), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_field_initializer] = STATE(4827), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym__field_name] = STATE(4659), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(528), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(530), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(546), - [anon_sym_noreturn] = 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(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [anon_sym_null] = ACTIONS(554), - [anon_sym_unreachable] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(558), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(162)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(492), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(167), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(844), - }, - [STATE(163)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(483), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(164)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(525), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(165)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(488), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(166)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(485), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(165), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(870), - }, - [STATE(167)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(520), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(168)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(481), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(872), - }, - [STATE(169)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(495), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(874), - }, - [STATE(170)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(478), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(171)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(501), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(890), - }, - [STATE(172)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(497), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(173)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(507), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(892), - }, - [STATE(174)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(509), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(175)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(499), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(840), - }, - [STATE(176)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(503), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(177)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(515), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(908), - }, - [STATE(178)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(517), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(179)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_error_capture] = STATE(523), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(164), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(910), - }, - [STATE(180)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(912), - }, - [STATE(181)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(182)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4194), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4194), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(183)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(914), - }, - [STATE(184)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4195), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4195), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(916), - }, - [STATE(185)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4195), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4195), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(186)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(191), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(918), - }, - [STATE(187)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(188)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(920), - }, - [STATE(189)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4116), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4116), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(190)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(196), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(922), - }, - [STATE(191)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(192)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(924), - }, - [STATE(193)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(926), - }, - [STATE(194)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(195)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(928), - }, - [STATE(196)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(197)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(930), - }, - [STATE(198)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(199)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(200)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(932), - }, - [STATE(201)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(202)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(934), - }, - [STATE(203)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(936), - }, - [STATE(204)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(205)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(206)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(207)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(208)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(938), - }, - [STATE(209)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(210)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(213), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(942), - }, - [STATE(211)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(944), - }, - [STATE(212)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(213)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(948), - }, - [STATE(214)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(950), - }, - [STATE(215)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3869), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3869), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(216)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3886), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3886), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(952), - }, - [STATE(217)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3886), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3886), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(218)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(954), - }, - [STATE(219)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2419), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2419), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(956), - }, - [STATE(220)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(948), - }, - [STATE(221)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3887), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3887), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(222)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(960), - }, - [STATE(223)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3875), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3875), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(962), - }, - [STATE(224)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3875), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3875), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(225)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(233), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(964), - }, - [STATE(226)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(227)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(966), - }, - [STATE(228)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3865), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3865), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(229)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(237), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(968), - }, - [STATE(230)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(231)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(970), - }, - [STATE(232)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(972), - }, - [STATE(233)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(234)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(974), - }, - [STATE(235)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(236)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(247), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(976), - }, - [STATE(237)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(238)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(978), - }, - [STATE(239)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(240)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(980), - }, - [STATE(241)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(242)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(286), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(982), - }, - [STATE(243)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2418), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2418), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(244)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(245)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(246)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(254), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(984), - }, - [STATE(247)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(248)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(255), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(986), - }, - [STATE(249)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(988), - }, - [STATE(250)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(251)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2418), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2418), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(288), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(990), - }, - [STATE(252)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2416), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2416), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(289), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(992), - }, - [STATE(253)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2413), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2413), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(994), - }, - [STATE(254)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(255)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(256)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(257)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(259), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(996), - }, - [STATE(258)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(998), - }, - [STATE(259)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(260)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(220), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(220), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1002), - }, - [STATE(261)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2209), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2209), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1004), - }, - [STATE(262)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2209), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2209), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(263)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2207), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2207), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(264)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2217), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2217), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1006), - }, - [STATE(265)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2217), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2217), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(266)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2210), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2210), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(267)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4142), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4142), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1008), - }, - [STATE(268)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4142), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4142), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(269)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4160), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4160), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(270)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4161), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4161), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1010), - }, - [STATE(271)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4161), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4161), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(272)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4178), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4178), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(273)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(274), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1014), - }, - [STATE(274)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(948), - }, - [STATE(275)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(276)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(277)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4499), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4499), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1018), - }, - [STATE(278)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4499), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4499), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(279)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(475), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1020), - }, - [STATE(280)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(281)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1022), - }, - [STATE(282)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4503), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4503), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(283)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4505), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4505), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1024), - }, - [STATE(284)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4505), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4505), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(285)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1026), - }, - [STATE(286)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(287)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4510), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4510), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(288)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2417), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2417), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(289)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2420), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2420), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(290)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2415), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2415), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(291)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2415), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2415), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(298), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1028), - }, - [STATE(292)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1030), - [anon_sym_func] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_noreturn] = 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(1059), - [anon_sym_yield] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_defer] = ACTIONS(1071), - [anon_sym_errdefer] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_expand] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_match] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1095), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1101), - [anon_sym_unreachable] = ACTIONS(1104), - [anon_sym_undefined] = ACTIONS(1107), - [sym_sink] = ACTIONS(1110), - [sym_integer] = ACTIONS(1113), - [sym_float] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_multiline_string] = ACTIONS(1116), - [sym_character] = ACTIONS(1116), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1122), - }, - [STATE(293)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3883), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3883), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1125), - }, - [STATE(294)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3883), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3883), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(295)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(296)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(297)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1127), - }, - [STATE(298)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2414), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2414), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(299)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(300), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(300), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1131), - }, - [STATE(300)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(948), - }, - [STATE(301)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(302)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4471), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4471), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1135), - }, - [STATE(303)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4471), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4471), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(304)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4474), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4474), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(305)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4475), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4475), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(307), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1137), - }, - [STATE(306)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4475), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4475), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(307)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4477), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4477), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(308)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2208), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2208), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1139), - }, - [STATE(309)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2208), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2208), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(310)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2212), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2212), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(311)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1141), - }, - [STATE(312)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2216), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2216), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(319), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1143), - }, - [STATE(313)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2216), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2216), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(314)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(315), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1147), - }, - [STATE(315)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(948), - }, - [STATE(316)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(321), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1151), - }, - [STATE(317)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(318)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1153), - }, - [STATE(319)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2211), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2211), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(320)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1155), - }, - [STATE(321)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(322)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1157), - }, - [STATE(323)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(329), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_type] = STATE(2564), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1161), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_test] = ACTIONS(1164), + [anon_sym_hide] = ACTIONS(1164), + [anon_sym_func] = ACTIONS(1166), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_mut] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_noreturn] = ACTIONS(1189), + [anon_sym_type] = ACTIONS(1189), + [anon_sym_anyopaque] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_range] = ACTIONS(1189), + [anon_sym_i8] = ACTIONS(1189), + [anon_sym_i16] = ACTIONS(1189), + [anon_sym_i32] = ACTIONS(1189), + [anon_sym_i64] = ACTIONS(1189), + [anon_sym_u8] = ACTIONS(1189), + [anon_sym_u16] = ACTIONS(1189), + [anon_sym_u32] = ACTIONS(1189), + [anon_sym_u64] = ACTIONS(1189), + [anon_sym_isize] = ACTIONS(1189), + [anon_sym_usize] = ACTIONS(1189), + [anon_sym_f32] = ACTIONS(1189), + [anon_sym_f64] = ACTIONS(1189), + [anon_sym_c_char] = ACTIONS(1189), + [anon_sym_c_schar] = ACTIONS(1189), + [anon_sym_c_uchar] = ACTIONS(1189), + [anon_sym_c_short] = ACTIONS(1189), + [anon_sym_c_ushort] = ACTIONS(1189), + [anon_sym_c_int] = ACTIONS(1189), + [anon_sym_c_uint] = ACTIONS(1189), + [anon_sym_c_long] = ACTIONS(1189), + [anon_sym_c_ulong] = ACTIONS(1189), + [anon_sym_c_longlong] = ACTIONS(1189), + [anon_sym_c_ulonglong] = ACTIONS(1189), + [anon_sym_c_float] = ACTIONS(1189), + [anon_sym_c_double] = ACTIONS(1189), + [anon_sym_c_longdouble] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_defer] = ACTIONS(1164), + [anon_sym_errdefer] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_expand] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_unreachable] = ACTIONS(1164), + [anon_sym_undefined] = ACTIONS(1164), + [sym_sink] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [sym_float] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_multiline_string] = ACTIONS(1159), + [sym_character] = ACTIONS(1159), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1159), }, - [STATE(324)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(325)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(331), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1161), - }, - [STATE(326)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(327)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1163), - }, - [STATE(328)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(329)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(330)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1165), - }, - [STATE(331)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(332)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1167), - }, - [STATE(333)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(336), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(336), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1171), - }, - [STATE(334)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1173), - }, - [STATE(335)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(336)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(948), - }, - [STATE(337)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(338)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(339)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(340)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1177), - }, - [STATE(341)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(342)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3866), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3866), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(343)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(344), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1181), - }, - [STATE(344)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(948), - }, - [STATE(345)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1185), - }, - [STATE(346)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1187), - }, - [STATE(347)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1189), - }, - [STATE(348)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(349)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1191), - }, - [STATE(350)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(356), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1193), - }, - [STATE(351)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(352)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1195), - }, - [STATE(353)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(359), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1197), - }, - [STATE(354)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(355)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1199), - }, - [STATE(356)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(357)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1201), - }, - [STATE(358)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(359)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(360)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1203), - }, - [STATE(361)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(362)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1205), - }, - [STATE(363)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1207), - }, - [STATE(364)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(365)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(366)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(367)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(368)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1209), - }, - [STATE(369)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(370)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(372), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1211), - }, - [STATE(371)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1213), - }, - [STATE(372)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(373)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1215), - }, - [STATE(374)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(380), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1217), - }, - [STATE(375)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(376)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1219), - }, - [STATE(377)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(383), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1221), - }, - [STATE(378)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(379)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(385), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1223), - }, - [STATE(380)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(381)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1225), - }, - [STATE(382)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(383)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(384)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(389), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1227), - }, - [STATE(385)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(386)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(390), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1229), - }, - [STATE(387)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1231), - }, - [STATE(388)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(389)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(390)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(391)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(392)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1233), - }, - [STATE(393)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(394)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2406), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2406), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1235), - }, - [STATE(395)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2406), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2406), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(396)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2403), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2403), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(397)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2400), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2400), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1237), - }, - [STATE(398)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2400), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2400), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(399)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2410), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2410), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(400)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3867), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3867), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1239), - }, - [STATE(401)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(3867), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(3867), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(402)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1241), - }, - [STATE(403)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1243), - }, - [STATE(404)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(405)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1245), - }, - [STATE(406)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1247), - }, - [STATE(407)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(408)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1249), - }, - [STATE(409)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1251), - }, - [STATE(410)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(411)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1253), - }, - [STATE(412)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(413)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(420), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1255), - }, - [STATE(414)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(415)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(416)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1257), - }, - [STATE(417)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(418)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1259), - }, - [STATE(419)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1261), - }, - [STATE(420)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(421)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(422)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(423)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(424)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1263), - }, - [STATE(425)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(426)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4176), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4176), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1265), - }, - [STATE(427)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(4176), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(4176), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(428)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1267), - }, - [STATE(429)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1269), - }, - [STATE(430)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(431)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1271), - }, - [STATE(432)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1273), - }, - [STATE(433)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(434)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1275), - }, - [STATE(435)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1277), - }, - [STATE(436)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(437)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1279), - }, - [STATE(438)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(439)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1281), - }, - [STATE(440)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(441)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(442)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1283), - }, - [STATE(443)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(444)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(147)] = { + [sym_type] = STATE(2583), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_import] = ACTIONS(1196), + [anon_sym_test] = ACTIONS(1196), + [anon_sym_hide] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(1194), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_mut] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_RBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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_COLON] = ACTIONS(1192), + [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(1196), + [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(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(148)] = { + [sym_type] = STATE(2559), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1207), + [anon_sym_test] = ACTIONS(1207), + [anon_sym_hide] = ACTIONS(1207), + [anon_sym_func] = ACTIONS(1209), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_RBRACK] = ACTIONS(1202), + [anon_sym_void] = ACTIONS(1226), + [anon_sym_noreturn] = 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(1202), + [anon_sym_DASH_EQ] = ACTIONS(1202), + [anon_sym_STAR_EQ] = ACTIONS(1202), + [anon_sym_SLASH_EQ] = ACTIONS(1202), + [anon_sym_AMP_EQ] = ACTIONS(1202), + [anon_sym_PIPE_EQ] = ACTIONS(1202), + [anon_sym_xor_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_EQ] = ACTIONS(1202), + [anon_sym_GT_GT_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_COLON] = ACTIONS(1202), + [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(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [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_catch] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), + [anon_sym_null] = ACTIONS(1207), + [anon_sym_unreachable] = ACTIONS(1207), + [anon_sym_undefined] = ACTIONS(1207), + [sym_sink] = ACTIONS(1207), + [sym_integer] = ACTIONS(1207), + [sym_float] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_multiline_string] = ACTIONS(1202), + [sym_character] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(149)] = { + [sym_type] = STATE(2583), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1229), + [anon_sym_import] = ACTIONS(1196), + [anon_sym_test] = ACTIONS(1196), + [anon_sym_hide] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(1232), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_mut] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_RBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_type] = 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(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(1196), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_defer] = ACTIONS(1196), + [anon_sym_errdefer] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_expand] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_unreachable] = ACTIONS(1196), + [anon_sym_undefined] = ACTIONS(1196), + [sym_sink] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [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(150)] = { + [sym_type] = STATE(2565), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1161), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_test] = ACTIONS(1164), + [anon_sym_hide] = ACTIONS(1164), + [anon_sym_func] = ACTIONS(1166), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_noreturn] = ACTIONS(1189), + [anon_sym_type] = ACTIONS(1189), + [anon_sym_anyopaque] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_range] = ACTIONS(1189), + [anon_sym_i8] = ACTIONS(1189), + [anon_sym_i16] = ACTIONS(1189), + [anon_sym_i32] = ACTIONS(1189), + [anon_sym_i64] = ACTIONS(1189), + [anon_sym_u8] = ACTIONS(1189), + [anon_sym_u16] = ACTIONS(1189), + [anon_sym_u32] = ACTIONS(1189), + [anon_sym_u64] = ACTIONS(1189), + [anon_sym_isize] = ACTIONS(1189), + [anon_sym_usize] = ACTIONS(1189), + [anon_sym_f32] = ACTIONS(1189), + [anon_sym_f64] = ACTIONS(1189), + [anon_sym_c_char] = ACTIONS(1189), + [anon_sym_c_schar] = ACTIONS(1189), + [anon_sym_c_uchar] = ACTIONS(1189), + [anon_sym_c_short] = ACTIONS(1189), + [anon_sym_c_ushort] = ACTIONS(1189), + [anon_sym_c_int] = ACTIONS(1189), + [anon_sym_c_uint] = ACTIONS(1189), + [anon_sym_c_long] = ACTIONS(1189), + [anon_sym_c_ulong] = ACTIONS(1189), + [anon_sym_c_longlong] = ACTIONS(1189), + [anon_sym_c_ulonglong] = ACTIONS(1189), + [anon_sym_c_float] = ACTIONS(1189), + [anon_sym_c_double] = ACTIONS(1189), + [anon_sym_c_longdouble] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_defer] = ACTIONS(1164), + [anon_sym_errdefer] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_expand] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_unreachable] = ACTIONS(1164), + [anon_sym_undefined] = ACTIONS(1164), + [sym_sink] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [sym_float] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_multiline_string] = ACTIONS(1159), + [sym_character] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(151)] = { + [sym_type] = STATE(2573), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_mut] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_LT_LT_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1258), + }, + [STATE(152)] = { + [sym_type] = STATE(2571), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1262), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1265), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1282), + [anon_sym_anyopaque] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_int] = ACTIONS(1282), + [anon_sym_uint] = ACTIONS(1282), + [anon_sym_float] = ACTIONS(1282), + [anon_sym_range] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_c_char] = ACTIONS(1282), + [anon_sym_c_schar] = ACTIONS(1282), + [anon_sym_c_uchar] = ACTIONS(1282), + [anon_sym_c_short] = ACTIONS(1282), + [anon_sym_c_ushort] = ACTIONS(1282), + [anon_sym_c_int] = ACTIONS(1282), + [anon_sym_c_uint] = ACTIONS(1282), + [anon_sym_c_long] = ACTIONS(1282), + [anon_sym_c_ulong] = ACTIONS(1282), + [anon_sym_c_longlong] = ACTIONS(1282), + [anon_sym_c_ulonglong] = ACTIONS(1282), + [anon_sym_c_float] = ACTIONS(1282), + [anon_sym_c_double] = ACTIONS(1282), + [anon_sym_c_longdouble] = ACTIONS(1282), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(153)] = { + [sym_type] = STATE(2573), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1262), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1265), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1282), + [anon_sym_anyopaque] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_int] = ACTIONS(1282), + [anon_sym_uint] = ACTIONS(1282), + [anon_sym_float] = ACTIONS(1282), + [anon_sym_range] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_c_char] = ACTIONS(1282), + [anon_sym_c_schar] = ACTIONS(1282), + [anon_sym_c_uchar] = ACTIONS(1282), + [anon_sym_c_short] = ACTIONS(1282), + [anon_sym_c_ushort] = ACTIONS(1282), + [anon_sym_c_int] = ACTIONS(1282), + [anon_sym_c_uint] = ACTIONS(1282), + [anon_sym_c_long] = ACTIONS(1282), + [anon_sym_c_ulong] = ACTIONS(1282), + [anon_sym_c_longlong] = ACTIONS(1282), + [anon_sym_c_ulonglong] = ACTIONS(1282), + [anon_sym_c_float] = ACTIONS(1282), + [anon_sym_c_double] = ACTIONS(1282), + [anon_sym_c_longdouble] = ACTIONS(1282), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(154)] = { + [sym_type] = STATE(14852), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1285), }, - [STATE(445)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1287), - }, - [STATE(446)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(447)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(448)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(449)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(450)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1289), - }, - [STATE(451)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1864), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1864), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(452)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2042), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2042), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(454), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1291), - }, - [STATE(453)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2005), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2005), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1293), - }, - [STATE(454)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(455)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2013), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2013), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(460), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1295), - }, - [STATE(456)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2036), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2036), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(462), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1297), - }, - [STATE(457)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(458)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1826), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1826), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(464), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1299), - }, - [STATE(459)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1857), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1857), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(465), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1301), - }, - [STATE(460)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(461)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1861), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1861), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1303), - }, - [STATE(462)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(463)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1863), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1863), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1305), - }, - [STATE(464)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2043), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2043), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(465)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(466)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2044), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2044), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1307), - }, - [STATE(467)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(468)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2045), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2045), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(472), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1309), - }, - [STATE(469)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2055), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(2055), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1311), - }, - [STATE(470)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1795), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1795), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(471)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(472)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1829), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1829), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(473)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(474)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1830), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1830), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1313), - }, - [STATE(475)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1828), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym__branch_body] = STATE(1828), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(476)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1315), - }, - [STATE(477)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1317), - }, - [STATE(478)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(528), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1319), - }, - [STATE(479)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(484), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1321), - }, - [STATE(480)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(481)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1323), - }, - [STATE(482)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(483)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(486), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1325), - }, - [STATE(484)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(485)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1327), - }, - [STATE(486)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2975), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(487)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(488)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(489), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1329), - }, - [STATE(489)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3046), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(183), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(205), - [anon_sym_errdefer] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(225), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(490)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(155)] = { + [sym_type] = STATE(2571), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1329), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_LT_LT_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1331), }, - [STATE(491)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(492)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1333), - }, - [STATE(493)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(156)] = { + [sym_type] = STATE(2565), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1333), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_test] = ACTIONS(1164), + [anon_sym_hide] = ACTIONS(1164), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT_PIPE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1335), }, - [STATE(494)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(495)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1337), - }, - [STATE(496)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(497)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1339), - }, - [STATE(498)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(732), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(115), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(139), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(499)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1341), - }, - [STATE(500)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(501)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1343), - }, - [STATE(502)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(503)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(504), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1345), - }, - [STATE(504)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(505)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1347), - }, - [STATE(506)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(507)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1349), - }, - [STATE(508)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(509)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1351), - }, - [STATE(510)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(1028), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(235), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(241), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(243), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(247), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(251), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(511)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(512)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(998), - }, - [STATE(513)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1353), - }, - [STATE(514)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(515)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1355), - }, - [STATE(516)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(517)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1357), - }, - [STATE(518)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(894), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(900), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(519)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(520)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3002), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(511), - [sym_identifier] = ACTIONS(145), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(155), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(157), - [anon_sym_errdefer] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(167), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1359), - }, - [STATE(521)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2054), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1361), - }, - [STATE(522)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(523)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2001), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(524), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1363), - }, - [STATE(524)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1819), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(525)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1822), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1365), - }, - [STATE(526)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(3147), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_return] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(858), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(860), - [anon_sym_errdefer] = ACTIONS(862), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(868), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(527)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(528)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(1880), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(747), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(824), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(832), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(834), - [anon_sym_errdefer] = ACTIONS(836), - [anon_sym_if] = ACTIONS(838), - [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(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(315), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(529)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(1813), - [sym_statement] = STATE(2000), - [sym_constant_declaration] = STATE(1813), - [sym_variable_declaration] = STATE(1813), - [sym_assignment_statement] = STATE(1813), - [sym_expression_statement] = STATE(1813), - [sym_return_statement] = STATE(1813), - [sym_yield_statement] = STATE(1813), - [sym_break_statement] = STATE(1813), - [sym_continue_statement] = STATE(1813), - [sym_defer_statement] = STATE(1813), - [sym_labeled_block] = STATE(1813), - [sym_if_statement] = STATE(1813), - [sym_while_statement] = STATE(1813), - [sym_for_statement] = STATE(1813), - [sym_match_statement] = STATE(1813), - [sym_expression] = STATE(2992), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(876), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(882), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(886), - [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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(530)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_test] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_xor_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(531)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_test] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_xor_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(532)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_import] = ACTIONS(1405), - [anon_sym_test] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_anyopaque] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_range] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_c_char] = ACTIONS(1405), - [anon_sym_c_schar] = ACTIONS(1405), - [anon_sym_c_uchar] = ACTIONS(1405), - [anon_sym_c_short] = ACTIONS(1405), - [anon_sym_c_ushort] = ACTIONS(1405), - [anon_sym_c_int] = ACTIONS(1405), - [anon_sym_c_uint] = ACTIONS(1405), - [anon_sym_c_long] = ACTIONS(1405), - [anon_sym_c_ulong] = ACTIONS(1405), - [anon_sym_c_longlong] = ACTIONS(1405), - [anon_sym_c_ulonglong] = ACTIONS(1405), - [anon_sym_c_float] = ACTIONS(1405), - [anon_sym_c_double] = ACTIONS(1405), - [anon_sym_c_longdouble] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_yield] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_errdefer] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_expand] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_unreachable] = ACTIONS(1405), - [anon_sym_undefined] = ACTIONS(1405), - [sym_sink] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [sym_float] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_multiline_string] = ACTIONS(1403), - [sym_character] = ACTIONS(1403), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(533)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_test] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_xor_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(534)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(1409), - [anon_sym_test] = ACTIONS(1409), - [anon_sym_hide] = ACTIONS(1409), - [anon_sym_func] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_anyopaque] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_range] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_c_char] = ACTIONS(1409), - [anon_sym_c_schar] = ACTIONS(1409), - [anon_sym_c_uchar] = ACTIONS(1409), - [anon_sym_c_short] = ACTIONS(1409), - [anon_sym_c_ushort] = ACTIONS(1409), - [anon_sym_c_int] = ACTIONS(1409), - [anon_sym_c_uint] = ACTIONS(1409), - [anon_sym_c_long] = ACTIONS(1409), - [anon_sym_c_ulong] = ACTIONS(1409), - [anon_sym_c_longlong] = ACTIONS(1409), - [anon_sym_c_ulonglong] = ACTIONS(1409), - [anon_sym_c_float] = ACTIONS(1409), - [anon_sym_c_double] = ACTIONS(1409), - [anon_sym_c_longdouble] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_xor_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_errdefer] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_expand] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_orelse] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_or] = ACTIONS(1409), - [anon_sym_and] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_unreachable] = ACTIONS(1409), - [anon_sym_undefined] = ACTIONS(1409), - [sym_sink] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [sym_float] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_multiline_string] = ACTIONS(1407), - [sym_character] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1407), - }, - [STATE(535)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_test] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_xor_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(536)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_test] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_xor_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1401), - [anon_sym_LT_LT_PIPE] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(537)] = { - [sym_argument_list] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(1413), - [anon_sym_test] = ACTIONS(1413), - [anon_sym_hide] = ACTIONS(1413), - [anon_sym_func] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_COMMA] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1413), - [anon_sym_QMARK] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_noreturn] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_anyopaque] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_int] = ACTIONS(1413), - [anon_sym_uint] = ACTIONS(1413), - [anon_sym_float] = ACTIONS(1413), - [anon_sym_range] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_c_char] = ACTIONS(1413), - [anon_sym_c_schar] = ACTIONS(1413), - [anon_sym_c_uchar] = ACTIONS(1413), - [anon_sym_c_short] = ACTIONS(1413), - [anon_sym_c_ushort] = ACTIONS(1413), - [anon_sym_c_int] = ACTIONS(1413), - [anon_sym_c_uint] = ACTIONS(1413), - [anon_sym_c_long] = ACTIONS(1413), - [anon_sym_c_ulong] = ACTIONS(1413), - [anon_sym_c_longlong] = ACTIONS(1413), - [anon_sym_c_ulonglong] = ACTIONS(1413), - [anon_sym_c_float] = ACTIONS(1413), - [anon_sym_c_double] = ACTIONS(1413), - [anon_sym_c_longdouble] = ACTIONS(1413), - [anon_sym_PLUS_EQ] = ACTIONS(1411), - [anon_sym_DASH_EQ] = ACTIONS(1411), - [anon_sym_STAR_EQ] = ACTIONS(1411), - [anon_sym_SLASH_EQ] = ACTIONS(1411), - [anon_sym_AMP_EQ] = ACTIONS(1411), - [anon_sym_PIPE_EQ] = ACTIONS(1411), - [anon_sym_xor_EQ] = ACTIONS(1411), - [anon_sym_LT_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_GT_EQ] = ACTIONS(1411), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_defer] = ACTIONS(1413), - [anon_sym_errdefer] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_expand] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), - [anon_sym_orelse] = ACTIONS(1413), - [anon_sym_catch] = ACTIONS(1413), - [anon_sym_or] = ACTIONS(1413), - [anon_sym_and] = ACTIONS(1413), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT] = ACTIONS(1413), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_xor] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_GT_GT] = ACTIONS(1413), - [anon_sym_LT_LT_PIPE] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_null] = ACTIONS(1413), - [anon_sym_unreachable] = ACTIONS(1413), - [anon_sym_undefined] = ACTIONS(1413), - [sym_sink] = ACTIONS(1413), - [sym_integer] = ACTIONS(1413), - [sym_float] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_multiline_string] = ACTIONS(1411), - [sym_character] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1411), - }, - [STATE(538)] = { - [sym_struct_type] = STATE(3457), - [sym_c_struct_type] = STATE(3914), - [sym_opaque_type] = STATE(3914), - [sym_distinct_type] = STATE(3914), - [sym_alias_type] = STATE(3914), - [sym_union_type] = STATE(3914), - [sym_enum_type] = STATE(3914), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3915), - [sym_labeled_block] = STATE(3915), - [sym_if_statement] = STATE(3915), - [sym_while_statement] = STATE(3915), - [sym_for_statement] = STATE(3915), - [sym_match_statement] = STATE(3915), - [sym__value] = STATE(3915), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_import] = ACTIONS(1417), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_c_struct] = ACTIONS(1425), - [anon_sym_opaque] = ACTIONS(1427), - [anon_sym_distinct] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(539)] = { - [aux_sym_type_repeat1] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1465), - [sym_identifier] = ACTIONS(1467), - [anon_sym_import] = ACTIONS(1467), - [anon_sym_test] = ACTIONS(1467), - [anon_sym_hide] = ACTIONS(1467), - [anon_sym_func] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1467), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_DOLLAR] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_noreturn] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_anyopaque] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_range] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_c_char] = ACTIONS(1467), - [anon_sym_c_schar] = ACTIONS(1467), - [anon_sym_c_uchar] = ACTIONS(1467), - [anon_sym_c_short] = ACTIONS(1467), - [anon_sym_c_ushort] = ACTIONS(1467), - [anon_sym_c_int] = ACTIONS(1467), - [anon_sym_c_uint] = ACTIONS(1467), - [anon_sym_c_long] = ACTIONS(1467), - [anon_sym_c_ulong] = ACTIONS(1467), - [anon_sym_c_longlong] = ACTIONS(1467), - [anon_sym_c_ulonglong] = ACTIONS(1467), - [anon_sym_c_float] = ACTIONS(1467), - [anon_sym_c_double] = ACTIONS(1467), - [anon_sym_c_longdouble] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_xor_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_errdefer] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_else] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_expand] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_match] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), - [anon_sym_orelse] = ACTIONS(1467), - [anon_sym_catch] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_xor] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_LT_LT_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_unreachable] = ACTIONS(1467), - [anon_sym_undefined] = ACTIONS(1467), - [sym_sink] = ACTIONS(1467), - [sym_integer] = ACTIONS(1467), - [sym_float] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_multiline_string] = ACTIONS(1465), - [sym_character] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1465), - }, - [STATE(540)] = { - [aux_sym_type_repeat1] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(1474), - [anon_sym_test] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_func] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_noreturn] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_anyopaque] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_int] = ACTIONS(1474), - [anon_sym_uint] = ACTIONS(1474), - [anon_sym_float] = ACTIONS(1474), - [anon_sym_range] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_c_char] = ACTIONS(1474), - [anon_sym_c_schar] = ACTIONS(1474), - [anon_sym_c_uchar] = ACTIONS(1474), - [anon_sym_c_short] = ACTIONS(1474), - [anon_sym_c_ushort] = ACTIONS(1474), - [anon_sym_c_int] = ACTIONS(1474), - [anon_sym_c_uint] = ACTIONS(1474), - [anon_sym_c_long] = ACTIONS(1474), - [anon_sym_c_ulong] = ACTIONS(1474), - [anon_sym_c_longlong] = ACTIONS(1474), - [anon_sym_c_ulonglong] = ACTIONS(1474), - [anon_sym_c_float] = ACTIONS(1474), - [anon_sym_c_double] = ACTIONS(1474), - [anon_sym_c_longdouble] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_AMP_EQ] = ACTIONS(1472), - [anon_sym_PIPE_EQ] = ACTIONS(1472), - [anon_sym_xor_EQ] = ACTIONS(1472), - [anon_sym_LT_LT_EQ] = ACTIONS(1472), - [anon_sym_GT_GT_EQ] = ACTIONS(1472), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_defer] = ACTIONS(1474), - [anon_sym_errdefer] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_else] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_expand] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_orelse] = ACTIONS(1474), - [anon_sym_catch] = ACTIONS(1474), - [anon_sym_or] = ACTIONS(1474), - [anon_sym_and] = ACTIONS(1474), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_xor] = ACTIONS(1474), - [anon_sym_LT_LT] = ACTIONS(1474), - [anon_sym_GT_GT] = ACTIONS(1474), - [anon_sym_LT_LT_PIPE] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_SLASH] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_DOT] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_unreachable] = ACTIONS(1474), - [anon_sym_undefined] = ACTIONS(1474), - [sym_sink] = ACTIONS(1474), - [sym_integer] = ACTIONS(1474), - [sym_float] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym_multiline_string] = ACTIONS(1472), - [sym_character] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1472), - }, - [STATE(541)] = { - [aux_sym_type_repeat1] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_test] = ACTIONS(1478), - [anon_sym_hide] = ACTIONS(1478), - [anon_sym_func] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_void] = ACTIONS(1478), - [anon_sym_noreturn] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_anyopaque] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_int] = ACTIONS(1478), - [anon_sym_uint] = ACTIONS(1478), - [anon_sym_float] = ACTIONS(1478), - [anon_sym_range] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_c_char] = ACTIONS(1478), - [anon_sym_c_schar] = ACTIONS(1478), - [anon_sym_c_uchar] = ACTIONS(1478), - [anon_sym_c_short] = ACTIONS(1478), - [anon_sym_c_ushort] = ACTIONS(1478), - [anon_sym_c_int] = ACTIONS(1478), - [anon_sym_c_uint] = ACTIONS(1478), - [anon_sym_c_long] = ACTIONS(1478), - [anon_sym_c_ulong] = ACTIONS(1478), - [anon_sym_c_longlong] = ACTIONS(1478), - [anon_sym_c_ulonglong] = ACTIONS(1478), - [anon_sym_c_float] = ACTIONS(1478), - [anon_sym_c_double] = ACTIONS(1478), - [anon_sym_c_longdouble] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_xor_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_defer] = ACTIONS(1478), - [anon_sym_errdefer] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_expand] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_orelse] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_or] = ACTIONS(1478), - [anon_sym_and] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_xor] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_LT_LT_PIPE] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_null] = ACTIONS(1478), - [anon_sym_unreachable] = ACTIONS(1478), - [anon_sym_undefined] = ACTIONS(1478), - [sym_sink] = ACTIONS(1478), - [sym_integer] = ACTIONS(1478), - [sym_float] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym_multiline_string] = ACTIONS(1476), - [sym_character] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1476), - }, - [STATE(542)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_test] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_xor_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [anon_sym_LT_LT_PIPE] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(543)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_test] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_xor_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(544)] = { - [sym_struct_type] = STATE(3440), - [sym_c_struct_type] = STATE(3929), - [sym_opaque_type] = STATE(3929), - [sym_distinct_type] = STATE(3929), - [sym_alias_type] = STATE(3929), - [sym_union_type] = STATE(3929), - [sym_enum_type] = STATE(3929), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3933), - [sym_labeled_block] = STATE(3933), - [sym_if_statement] = STATE(3933), - [sym_while_statement] = STATE(3933), - [sym_for_statement] = STATE(3933), - [sym_match_statement] = STATE(3933), - [sym__value] = STATE(3933), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(1415), - [anon_sym_import] = ACTIONS(1480), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_c_struct] = ACTIONS(1425), - [anon_sym_opaque] = ACTIONS(1427), - [anon_sym_distinct] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1482), - }, - [STATE(545)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_test] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_xor_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(546)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(1409), - [anon_sym_test] = ACTIONS(1409), - [anon_sym_hide] = ACTIONS(1409), - [anon_sym_func] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_anyopaque] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_range] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_c_char] = ACTIONS(1409), - [anon_sym_c_schar] = ACTIONS(1409), - [anon_sym_c_uchar] = ACTIONS(1409), - [anon_sym_c_short] = ACTIONS(1409), - [anon_sym_c_ushort] = ACTIONS(1409), - [anon_sym_c_int] = ACTIONS(1409), - [anon_sym_c_uint] = ACTIONS(1409), - [anon_sym_c_long] = ACTIONS(1409), - [anon_sym_c_ulong] = ACTIONS(1409), - [anon_sym_c_longlong] = ACTIONS(1409), - [anon_sym_c_ulonglong] = ACTIONS(1409), - [anon_sym_c_float] = ACTIONS(1409), - [anon_sym_c_double] = ACTIONS(1409), - [anon_sym_c_longdouble] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_xor_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_errdefer] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_expand] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_orelse] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_or] = ACTIONS(1409), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_unreachable] = ACTIONS(1409), - [anon_sym_undefined] = ACTIONS(1409), - [sym_sink] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [sym_float] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_multiline_string] = ACTIONS(1407), - [sym_character] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1407), - }, - [STATE(547)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_test] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_xor_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [anon_sym_LT_LT_PIPE] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(548)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_test] = ACTIONS(1486), - [anon_sym_hide] = ACTIONS(1486), - [anon_sym_func] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_anyopaque] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_int] = ACTIONS(1486), - [anon_sym_uint] = ACTIONS(1486), - [anon_sym_float] = ACTIONS(1486), - [anon_sym_range] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_c_char] = ACTIONS(1486), - [anon_sym_c_schar] = ACTIONS(1486), - [anon_sym_c_uchar] = ACTIONS(1486), - [anon_sym_c_short] = ACTIONS(1486), - [anon_sym_c_ushort] = ACTIONS(1486), - [anon_sym_c_int] = ACTIONS(1486), - [anon_sym_c_uint] = ACTIONS(1486), - [anon_sym_c_long] = ACTIONS(1486), - [anon_sym_c_ulong] = ACTIONS(1486), - [anon_sym_c_longlong] = ACTIONS(1486), - [anon_sym_c_ulonglong] = ACTIONS(1486), - [anon_sym_c_float] = ACTIONS(1486), - [anon_sym_c_double] = ACTIONS(1486), - [anon_sym_c_longdouble] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1484), - [anon_sym_DASH_EQ] = ACTIONS(1484), - [anon_sym_STAR_EQ] = ACTIONS(1484), - [anon_sym_SLASH_EQ] = ACTIONS(1484), - [anon_sym_AMP_EQ] = ACTIONS(1484), - [anon_sym_PIPE_EQ] = ACTIONS(1484), - [anon_sym_xor_EQ] = ACTIONS(1484), - [anon_sym_LT_LT_EQ] = ACTIONS(1484), - [anon_sym_GT_GT_EQ] = ACTIONS(1484), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_defer] = ACTIONS(1486), - [anon_sym_errdefer] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_expand] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_orelse] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_unreachable] = ACTIONS(1486), - [anon_sym_undefined] = ACTIONS(1486), - [sym_sink] = ACTIONS(1486), - [sym_integer] = ACTIONS(1486), - [sym_float] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_multiline_string] = ACTIONS(1484), - [sym_character] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1484), - }, - [STATE(549)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_test] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_xor_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1401), - [anon_sym_LT_LT_PIPE] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(550)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_import] = ACTIONS(1490), - [anon_sym_test] = ACTIONS(1490), - [anon_sym_hide] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_anyopaque] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_int] = ACTIONS(1490), - [anon_sym_uint] = ACTIONS(1490), - [anon_sym_float] = ACTIONS(1490), - [anon_sym_range] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_c_char] = ACTIONS(1490), - [anon_sym_c_schar] = ACTIONS(1490), - [anon_sym_c_uchar] = ACTIONS(1490), - [anon_sym_c_short] = ACTIONS(1490), - [anon_sym_c_ushort] = ACTIONS(1490), - [anon_sym_c_int] = ACTIONS(1490), - [anon_sym_c_uint] = ACTIONS(1490), - [anon_sym_c_long] = ACTIONS(1490), - [anon_sym_c_ulong] = ACTIONS(1490), - [anon_sym_c_longlong] = ACTIONS(1490), - [anon_sym_c_ulonglong] = ACTIONS(1490), - [anon_sym_c_float] = ACTIONS(1490), - [anon_sym_c_double] = ACTIONS(1490), - [anon_sym_c_longdouble] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_defer] = ACTIONS(1490), - [anon_sym_errdefer] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_expand] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1490), - [anon_sym_unreachable] = ACTIONS(1490), - [anon_sym_undefined] = ACTIONS(1490), - [sym_sink] = ACTIONS(1490), - [sym_integer] = ACTIONS(1490), - [sym_float] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_multiline_string] = ACTIONS(1488), - [sym_character] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(551)] = { - [sym_variant_payload] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_import] = ACTIONS(1494), - [anon_sym_test] = ACTIONS(1494), - [anon_sym_hide] = ACTIONS(1494), - [anon_sym_func] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_noreturn] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_anyopaque] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_int] = ACTIONS(1494), - [anon_sym_uint] = ACTIONS(1494), - [anon_sym_float] = ACTIONS(1494), - [anon_sym_range] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_c_char] = ACTIONS(1494), - [anon_sym_c_schar] = ACTIONS(1494), - [anon_sym_c_uchar] = ACTIONS(1494), - [anon_sym_c_short] = ACTIONS(1494), - [anon_sym_c_ushort] = ACTIONS(1494), - [anon_sym_c_int] = ACTIONS(1494), - [anon_sym_c_uint] = ACTIONS(1494), - [anon_sym_c_long] = ACTIONS(1494), - [anon_sym_c_ulong] = ACTIONS(1494), - [anon_sym_c_longlong] = ACTIONS(1494), - [anon_sym_c_ulonglong] = ACTIONS(1494), - [anon_sym_c_float] = ACTIONS(1494), - [anon_sym_c_double] = ACTIONS(1494), - [anon_sym_c_longdouble] = ACTIONS(1494), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_AMP_EQ] = ACTIONS(1492), - [anon_sym_PIPE_EQ] = ACTIONS(1492), - [anon_sym_xor_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_EQ] = ACTIONS(1492), - [anon_sym_GT_GT_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_defer] = ACTIONS(1494), - [anon_sym_errdefer] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_else] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_expand] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_orelse] = ACTIONS(1494), - [anon_sym_catch] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1492), - [anon_sym_BANG_EQ] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_LT_EQ] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_GT_EQ] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1494), - [anon_sym_LT_LT_PIPE] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1494), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_unreachable] = ACTIONS(1494), - [anon_sym_undefined] = ACTIONS(1494), - [sym_sink] = ACTIONS(1494), - [sym_integer] = ACTIONS(1494), - [sym_float] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym_multiline_string] = ACTIONS(1492), - [sym_character] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1492), - }, - [STATE(552)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_test] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_xor_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(553)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_test] = ACTIONS(1486), - [anon_sym_hide] = ACTIONS(1486), - [anon_sym_func] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_anyopaque] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_int] = ACTIONS(1486), - [anon_sym_uint] = ACTIONS(1486), - [anon_sym_float] = ACTIONS(1486), - [anon_sym_range] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_c_char] = ACTIONS(1486), - [anon_sym_c_schar] = ACTIONS(1486), - [anon_sym_c_uchar] = ACTIONS(1486), - [anon_sym_c_short] = ACTIONS(1486), - [anon_sym_c_ushort] = ACTIONS(1486), - [anon_sym_c_int] = ACTIONS(1486), - [anon_sym_c_uint] = ACTIONS(1486), - [anon_sym_c_long] = ACTIONS(1486), - [anon_sym_c_ulong] = ACTIONS(1486), - [anon_sym_c_longlong] = ACTIONS(1486), - [anon_sym_c_ulonglong] = ACTIONS(1486), - [anon_sym_c_float] = ACTIONS(1486), - [anon_sym_c_double] = ACTIONS(1486), - [anon_sym_c_longdouble] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1484), - [anon_sym_DASH_EQ] = ACTIONS(1484), - [anon_sym_STAR_EQ] = ACTIONS(1484), - [anon_sym_SLASH_EQ] = ACTIONS(1484), - [anon_sym_AMP_EQ] = ACTIONS(1484), - [anon_sym_PIPE_EQ] = ACTIONS(1484), - [anon_sym_xor_EQ] = ACTIONS(1484), - [anon_sym_LT_LT_EQ] = ACTIONS(1484), - [anon_sym_GT_GT_EQ] = ACTIONS(1484), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_defer] = ACTIONS(1486), - [anon_sym_errdefer] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_expand] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_orelse] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_unreachable] = ACTIONS(1486), - [anon_sym_undefined] = ACTIONS(1486), - [sym_sink] = ACTIONS(1486), - [sym_integer] = ACTIONS(1486), - [sym_float] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_multiline_string] = ACTIONS(1484), - [sym_character] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1484), - }, - [STATE(554)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_test] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_xor_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(555)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_test] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_xor_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [anon_sym_LT_LT_PIPE] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(556)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_test] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_xor_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1401), - [anon_sym_LT_LT_PIPE] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(557)] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1501), - [anon_sym_import] = ACTIONS(1501), - [anon_sym_test] = ACTIONS(1501), - [anon_sym_hide] = ACTIONS(1501), - [anon_sym_func] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1501), - [anon_sym_noreturn] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_anyopaque] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_int] = ACTIONS(1501), - [anon_sym_uint] = ACTIONS(1501), - [anon_sym_float] = ACTIONS(1501), - [anon_sym_range] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_c_char] = ACTIONS(1501), - [anon_sym_c_schar] = ACTIONS(1501), - [anon_sym_c_uchar] = ACTIONS(1501), - [anon_sym_c_short] = ACTIONS(1501), - [anon_sym_c_ushort] = ACTIONS(1501), - [anon_sym_c_int] = ACTIONS(1501), - [anon_sym_c_uint] = ACTIONS(1501), - [anon_sym_c_long] = ACTIONS(1501), - [anon_sym_c_ulong] = ACTIONS(1501), - [anon_sym_c_longlong] = ACTIONS(1501), - [anon_sym_c_ulonglong] = ACTIONS(1501), - [anon_sym_c_float] = ACTIONS(1501), - [anon_sym_c_double] = ACTIONS(1501), - [anon_sym_c_longdouble] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_xor_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_defer] = ACTIONS(1501), - [anon_sym_errdefer] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_expand] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_orelse] = ACTIONS(1501), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1501), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_xor] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_LT_LT_PIPE] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1501), - [anon_sym_unreachable] = ACTIONS(1501), - [anon_sym_undefined] = ACTIONS(1501), - [sym_sink] = ACTIONS(1501), - [sym_integer] = ACTIONS(1501), - [sym_float] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym_multiline_string] = ACTIONS(1499), - [sym_character] = ACTIONS(1499), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1499), - }, - [STATE(558)] = { - [ts_builtin_sym_end] = ACTIONS(1505), - [sym_identifier] = ACTIONS(1507), - [anon_sym_import] = ACTIONS(1507), - [anon_sym_test] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_func] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_noreturn] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1507), - [anon_sym_anyopaque] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_range] = ACTIONS(1507), - [anon_sym_i8] = ACTIONS(1507), - [anon_sym_i16] = ACTIONS(1507), - [anon_sym_i32] = ACTIONS(1507), - [anon_sym_i64] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1507), - [anon_sym_u16] = ACTIONS(1507), - [anon_sym_u32] = ACTIONS(1507), - [anon_sym_u64] = ACTIONS(1507), - [anon_sym_isize] = ACTIONS(1507), - [anon_sym_usize] = ACTIONS(1507), - [anon_sym_f32] = ACTIONS(1507), - [anon_sym_f64] = ACTIONS(1507), - [anon_sym_c_char] = ACTIONS(1507), - [anon_sym_c_schar] = ACTIONS(1507), - [anon_sym_c_uchar] = ACTIONS(1507), - [anon_sym_c_short] = ACTIONS(1507), - [anon_sym_c_ushort] = ACTIONS(1507), - [anon_sym_c_int] = ACTIONS(1507), - [anon_sym_c_uint] = ACTIONS(1507), - [anon_sym_c_long] = ACTIONS(1507), - [anon_sym_c_ulong] = ACTIONS(1507), - [anon_sym_c_longlong] = ACTIONS(1507), - [anon_sym_c_ulonglong] = ACTIONS(1507), - [anon_sym_c_float] = ACTIONS(1507), - [anon_sym_c_double] = ACTIONS(1507), - [anon_sym_c_longdouble] = ACTIONS(1507), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_xor_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_yield] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_defer] = ACTIONS(1507), - [anon_sym_errdefer] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_else] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_expand] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [anon_sym_orelse] = ACTIONS(1507), - [anon_sym_catch] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(1507), - [anon_sym_LT_LT_PIPE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_unreachable] = ACTIONS(1507), - [anon_sym_undefined] = ACTIONS(1507), - [sym_sink] = ACTIONS(1507), - [sym_integer] = ACTIONS(1507), - [sym_float] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym_multiline_string] = ACTIONS(1505), - [sym_character] = ACTIONS(1505), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1505), - }, - [STATE(559)] = { - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1511), - [anon_sym_import] = ACTIONS(1511), - [anon_sym_test] = ACTIONS(1511), - [anon_sym_hide] = ACTIONS(1511), - [anon_sym_func] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_noreturn] = ACTIONS(1511), - [anon_sym_type] = ACTIONS(1511), - [anon_sym_anyopaque] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_range] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_c_char] = ACTIONS(1511), - [anon_sym_c_schar] = ACTIONS(1511), - [anon_sym_c_uchar] = ACTIONS(1511), - [anon_sym_c_short] = ACTIONS(1511), - [anon_sym_c_ushort] = ACTIONS(1511), - [anon_sym_c_int] = ACTIONS(1511), - [anon_sym_c_uint] = ACTIONS(1511), - [anon_sym_c_long] = ACTIONS(1511), - [anon_sym_c_ulong] = ACTIONS(1511), - [anon_sym_c_longlong] = ACTIONS(1511), - [anon_sym_c_ulonglong] = ACTIONS(1511), - [anon_sym_c_float] = ACTIONS(1511), - [anon_sym_c_double] = ACTIONS(1511), - [anon_sym_c_longdouble] = ACTIONS(1511), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_AMP_EQ] = ACTIONS(1509), - [anon_sym_PIPE_EQ] = ACTIONS(1509), - [anon_sym_xor_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_GT_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_yield] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_defer] = ACTIONS(1511), - [anon_sym_errdefer] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_else] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_expand] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_orelse] = ACTIONS(1511), - [anon_sym_catch] = ACTIONS(1511), - [anon_sym_or] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_xor] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1511), - [anon_sym_LT_LT_PIPE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_unreachable] = ACTIONS(1511), - [anon_sym_undefined] = ACTIONS(1511), - [sym_sink] = ACTIONS(1511), - [sym_integer] = ACTIONS(1511), - [sym_float] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_multiline_string] = ACTIONS(1509), - [sym_character] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1509), - }, - [STATE(560)] = { - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1515), - [anon_sym_import] = ACTIONS(1515), - [anon_sym_test] = ACTIONS(1515), - [anon_sym_hide] = ACTIONS(1515), - [anon_sym_func] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_RPAREN] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_COMMA] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_noreturn] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1515), - [anon_sym_anyopaque] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_range] = ACTIONS(1515), - [anon_sym_i8] = ACTIONS(1515), - [anon_sym_i16] = ACTIONS(1515), - [anon_sym_i32] = ACTIONS(1515), - [anon_sym_i64] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1515), - [anon_sym_u16] = ACTIONS(1515), - [anon_sym_u32] = ACTIONS(1515), - [anon_sym_u64] = ACTIONS(1515), - [anon_sym_isize] = ACTIONS(1515), - [anon_sym_usize] = ACTIONS(1515), - [anon_sym_f32] = ACTIONS(1515), - [anon_sym_f64] = ACTIONS(1515), - [anon_sym_c_char] = ACTIONS(1515), - [anon_sym_c_schar] = ACTIONS(1515), - [anon_sym_c_uchar] = ACTIONS(1515), - [anon_sym_c_short] = ACTIONS(1515), - [anon_sym_c_ushort] = ACTIONS(1515), - [anon_sym_c_int] = ACTIONS(1515), - [anon_sym_c_uint] = ACTIONS(1515), - [anon_sym_c_long] = ACTIONS(1515), - [anon_sym_c_ulong] = ACTIONS(1515), - [anon_sym_c_longlong] = ACTIONS(1515), - [anon_sym_c_ulonglong] = ACTIONS(1515), - [anon_sym_c_float] = ACTIONS(1515), - [anon_sym_c_double] = ACTIONS(1515), - [anon_sym_c_longdouble] = ACTIONS(1515), - [anon_sym_PLUS_EQ] = ACTIONS(1513), - [anon_sym_DASH_EQ] = ACTIONS(1513), - [anon_sym_STAR_EQ] = ACTIONS(1513), - [anon_sym_SLASH_EQ] = ACTIONS(1513), - [anon_sym_AMP_EQ] = ACTIONS(1513), - [anon_sym_PIPE_EQ] = ACTIONS(1513), - [anon_sym_xor_EQ] = ACTIONS(1513), - [anon_sym_LT_LT_EQ] = ACTIONS(1513), - [anon_sym_GT_GT_EQ] = ACTIONS(1513), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_yield] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_defer] = ACTIONS(1515), - [anon_sym_errdefer] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_else] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_expand] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), - [anon_sym_orelse] = ACTIONS(1515), - [anon_sym_catch] = ACTIONS(1515), - [anon_sym_or] = ACTIONS(1515), - [anon_sym_and] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_xor] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1515), - [anon_sym_GT_GT] = ACTIONS(1515), - [anon_sym_LT_LT_PIPE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_unreachable] = ACTIONS(1515), - [anon_sym_undefined] = ACTIONS(1515), - [sym_sink] = ACTIONS(1515), - [sym_integer] = ACTIONS(1515), - [sym_float] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_multiline_string] = ACTIONS(1513), - [sym_character] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1513), - }, - [STATE(561)] = { - [ts_builtin_sym_end] = ACTIONS(1517), - [sym_identifier] = ACTIONS(1519), - [anon_sym_import] = ACTIONS(1519), - [anon_sym_test] = ACTIONS(1519), - [anon_sym_hide] = ACTIONS(1519), - [anon_sym_func] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_EQ] = ACTIONS(1519), - [anon_sym_struct] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_RPAREN] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_COMMA] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_noreturn] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_anyopaque] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_range] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_c_char] = ACTIONS(1519), - [anon_sym_c_schar] = ACTIONS(1519), - [anon_sym_c_uchar] = ACTIONS(1519), - [anon_sym_c_short] = ACTIONS(1519), - [anon_sym_c_ushort] = ACTIONS(1519), - [anon_sym_c_int] = ACTIONS(1519), - [anon_sym_c_uint] = ACTIONS(1519), - [anon_sym_c_long] = ACTIONS(1519), - [anon_sym_c_ulong] = ACTIONS(1519), - [anon_sym_c_longlong] = ACTIONS(1519), - [anon_sym_c_ulonglong] = ACTIONS(1519), - [anon_sym_c_float] = ACTIONS(1519), - [anon_sym_c_double] = ACTIONS(1519), - [anon_sym_c_longdouble] = ACTIONS(1519), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_AMP_EQ] = ACTIONS(1517), - [anon_sym_PIPE_EQ] = ACTIONS(1517), - [anon_sym_xor_EQ] = ACTIONS(1517), - [anon_sym_LT_LT_EQ] = ACTIONS(1517), - [anon_sym_GT_GT_EQ] = ACTIONS(1517), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_errdefer] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_expand] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_orelse] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1519), - [anon_sym_LT_LT_PIPE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_unreachable] = ACTIONS(1519), - [anon_sym_undefined] = ACTIONS(1519), - [sym_sink] = ACTIONS(1519), - [sym_integer] = ACTIONS(1519), - [sym_float] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym_multiline_string] = ACTIONS(1517), - [sym_character] = ACTIONS(1517), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1517), - }, - [STATE(562)] = { - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(477), - [anon_sym_import] = ACTIONS(477), - [anon_sym_test] = ACTIONS(477), - [anon_sym_hide] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_else] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), - }, - [STATE(563)] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_import] = ACTIONS(1523), - [anon_sym_test] = ACTIONS(1523), - [anon_sym_hide] = ACTIONS(1523), - [anon_sym_func] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_noreturn] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_anyopaque] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_range] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_c_char] = ACTIONS(1523), - [anon_sym_c_schar] = ACTIONS(1523), - [anon_sym_c_uchar] = ACTIONS(1523), - [anon_sym_c_short] = ACTIONS(1523), - [anon_sym_c_ushort] = ACTIONS(1523), - [anon_sym_c_int] = ACTIONS(1523), - [anon_sym_c_uint] = ACTIONS(1523), - [anon_sym_c_long] = ACTIONS(1523), - [anon_sym_c_ulong] = ACTIONS(1523), - [anon_sym_c_longlong] = ACTIONS(1523), - [anon_sym_c_ulonglong] = ACTIONS(1523), - [anon_sym_c_float] = ACTIONS(1523), - [anon_sym_c_double] = ACTIONS(1523), - [anon_sym_c_longdouble] = ACTIONS(1523), - [anon_sym_PLUS_EQ] = ACTIONS(1521), - [anon_sym_DASH_EQ] = ACTIONS(1521), - [anon_sym_STAR_EQ] = ACTIONS(1521), - [anon_sym_SLASH_EQ] = ACTIONS(1521), - [anon_sym_AMP_EQ] = ACTIONS(1521), - [anon_sym_PIPE_EQ] = ACTIONS(1521), - [anon_sym_xor_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_defer] = ACTIONS(1523), - [anon_sym_errdefer] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_else] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_expand] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_orelse] = ACTIONS(1523), - [anon_sym_catch] = ACTIONS(1523), - [anon_sym_or] = ACTIONS(1523), - [anon_sym_and] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_xor] = ACTIONS(1523), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_LT_LT_PIPE] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1523), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_unreachable] = ACTIONS(1523), - [anon_sym_undefined] = ACTIONS(1523), - [sym_sink] = ACTIONS(1523), - [sym_integer] = ACTIONS(1523), - [sym_float] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym_multiline_string] = ACTIONS(1521), - [sym_character] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1521), - }, - [STATE(564)] = { - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_import] = ACTIONS(1527), - [anon_sym_test] = ACTIONS(1527), - [anon_sym_hide] = ACTIONS(1527), - [anon_sym_func] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_RPAREN] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_noreturn] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_anyopaque] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_range] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_c_char] = ACTIONS(1527), - [anon_sym_c_schar] = ACTIONS(1527), - [anon_sym_c_uchar] = ACTIONS(1527), - [anon_sym_c_short] = ACTIONS(1527), - [anon_sym_c_ushort] = ACTIONS(1527), - [anon_sym_c_int] = ACTIONS(1527), - [anon_sym_c_uint] = ACTIONS(1527), - [anon_sym_c_long] = ACTIONS(1527), - [anon_sym_c_ulong] = ACTIONS(1527), - [anon_sym_c_longlong] = ACTIONS(1527), - [anon_sym_c_ulonglong] = ACTIONS(1527), - [anon_sym_c_float] = ACTIONS(1527), - [anon_sym_c_double] = ACTIONS(1527), - [anon_sym_c_longdouble] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_xor_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_yield] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_defer] = ACTIONS(1527), - [anon_sym_errdefer] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_else] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_expand] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_orelse] = ACTIONS(1527), - [anon_sym_catch] = ACTIONS(1527), - [anon_sym_or] = ACTIONS(1527), - [anon_sym_and] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_xor] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_LT_LT_PIPE] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_try] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_unreachable] = ACTIONS(1527), - [anon_sym_undefined] = ACTIONS(1527), - [sym_sink] = ACTIONS(1527), - [sym_integer] = ACTIONS(1527), - [sym_float] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [sym_multiline_string] = ACTIONS(1525), - [sym_character] = ACTIONS(1525), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1525), - }, - [STATE(565)] = { - [ts_builtin_sym_end] = ACTIONS(1529), - [sym_identifier] = ACTIONS(1531), - [anon_sym_import] = ACTIONS(1531), - [anon_sym_test] = ACTIONS(1531), - [anon_sym_hide] = ACTIONS(1531), - [anon_sym_func] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_struct] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_QMARK] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_noreturn] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1531), - [anon_sym_anyopaque] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_range] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_c_char] = ACTIONS(1531), - [anon_sym_c_schar] = ACTIONS(1531), - [anon_sym_c_uchar] = ACTIONS(1531), - [anon_sym_c_short] = ACTIONS(1531), - [anon_sym_c_ushort] = ACTIONS(1531), - [anon_sym_c_int] = ACTIONS(1531), - [anon_sym_c_uint] = ACTIONS(1531), - [anon_sym_c_long] = ACTIONS(1531), - [anon_sym_c_ulong] = ACTIONS(1531), - [anon_sym_c_longlong] = ACTIONS(1531), - [anon_sym_c_ulonglong] = ACTIONS(1531), - [anon_sym_c_float] = ACTIONS(1531), - [anon_sym_c_double] = ACTIONS(1531), - [anon_sym_c_longdouble] = ACTIONS(1531), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_AMP_EQ] = ACTIONS(1529), - [anon_sym_PIPE_EQ] = ACTIONS(1529), - [anon_sym_xor_EQ] = ACTIONS(1529), - [anon_sym_LT_LT_EQ] = ACTIONS(1529), - [anon_sym_GT_GT_EQ] = ACTIONS(1529), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_yield] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_defer] = ACTIONS(1531), - [anon_sym_errdefer] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_else] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_expand] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [anon_sym_orelse] = ACTIONS(1531), - [anon_sym_catch] = ACTIONS(1531), - [anon_sym_or] = ACTIONS(1531), - [anon_sym_and] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_xor] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1531), - [anon_sym_LT_LT_PIPE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_SLASH] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_unreachable] = ACTIONS(1531), - [anon_sym_undefined] = ACTIONS(1531), - [sym_sink] = ACTIONS(1531), - [sym_integer] = ACTIONS(1531), - [sym_float] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1529), - [sym_multiline_string] = ACTIONS(1529), - [sym_character] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1529), - }, - [STATE(566)] = { - [ts_builtin_sym_end] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1535), - [anon_sym_import] = ACTIONS(1535), - [anon_sym_test] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_func] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_RPAREN] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_COMMA] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_QMARK] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_noreturn] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_anyopaque] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_range] = ACTIONS(1535), - [anon_sym_i8] = ACTIONS(1535), - [anon_sym_i16] = ACTIONS(1535), - [anon_sym_i32] = ACTIONS(1535), - [anon_sym_i64] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1535), - [anon_sym_u16] = ACTIONS(1535), - [anon_sym_u32] = ACTIONS(1535), - [anon_sym_u64] = ACTIONS(1535), - [anon_sym_isize] = ACTIONS(1535), - [anon_sym_usize] = ACTIONS(1535), - [anon_sym_f32] = ACTIONS(1535), - [anon_sym_f64] = ACTIONS(1535), - [anon_sym_c_char] = ACTIONS(1535), - [anon_sym_c_schar] = ACTIONS(1535), - [anon_sym_c_uchar] = ACTIONS(1535), - [anon_sym_c_short] = ACTIONS(1535), - [anon_sym_c_ushort] = ACTIONS(1535), - [anon_sym_c_int] = ACTIONS(1535), - [anon_sym_c_uint] = ACTIONS(1535), - [anon_sym_c_long] = ACTIONS(1535), - [anon_sym_c_ulong] = ACTIONS(1535), - [anon_sym_c_longlong] = ACTIONS(1535), - [anon_sym_c_ulonglong] = ACTIONS(1535), - [anon_sym_c_float] = ACTIONS(1535), - [anon_sym_c_double] = ACTIONS(1535), - [anon_sym_c_longdouble] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1533), - [anon_sym_DASH_EQ] = ACTIONS(1533), - [anon_sym_STAR_EQ] = ACTIONS(1533), - [anon_sym_SLASH_EQ] = ACTIONS(1533), - [anon_sym_AMP_EQ] = ACTIONS(1533), - [anon_sym_PIPE_EQ] = ACTIONS(1533), - [anon_sym_xor_EQ] = ACTIONS(1533), - [anon_sym_LT_LT_EQ] = ACTIONS(1533), - [anon_sym_GT_GT_EQ] = ACTIONS(1533), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_yield] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_defer] = ACTIONS(1535), - [anon_sym_errdefer] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_expand] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), - [anon_sym_orelse] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_or] = ACTIONS(1535), - [anon_sym_and] = ACTIONS(1535), - [anon_sym_EQ_EQ] = ACTIONS(1533), - [anon_sym_BANG_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_GT] = ACTIONS(1535), - [anon_sym_GT_EQ] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_xor] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1535), - [anon_sym_GT_GT] = ACTIONS(1535), - [anon_sym_LT_LT_PIPE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_SLASH] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [anon_sym_unreachable] = ACTIONS(1535), - [anon_sym_undefined] = ACTIONS(1535), - [sym_sink] = ACTIONS(1535), - [sym_integer] = ACTIONS(1535), - [sym_float] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [sym_multiline_string] = ACTIONS(1533), - [sym_character] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1533), - }, - [STATE(567)] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [anon_sym_import] = ACTIONS(1539), - [anon_sym_test] = ACTIONS(1539), - [anon_sym_hide] = ACTIONS(1539), - [anon_sym_func] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_COMMA] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_noreturn] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_anyopaque] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_range] = ACTIONS(1539), - [anon_sym_i8] = ACTIONS(1539), - [anon_sym_i16] = ACTIONS(1539), - [anon_sym_i32] = ACTIONS(1539), - [anon_sym_i64] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1539), - [anon_sym_u16] = ACTIONS(1539), - [anon_sym_u32] = ACTIONS(1539), - [anon_sym_u64] = ACTIONS(1539), - [anon_sym_isize] = ACTIONS(1539), - [anon_sym_usize] = ACTIONS(1539), - [anon_sym_f32] = ACTIONS(1539), - [anon_sym_f64] = ACTIONS(1539), - [anon_sym_c_char] = ACTIONS(1539), - [anon_sym_c_schar] = ACTIONS(1539), - [anon_sym_c_uchar] = ACTIONS(1539), - [anon_sym_c_short] = ACTIONS(1539), - [anon_sym_c_ushort] = ACTIONS(1539), - [anon_sym_c_int] = ACTIONS(1539), - [anon_sym_c_uint] = ACTIONS(1539), - [anon_sym_c_long] = ACTIONS(1539), - [anon_sym_c_ulong] = ACTIONS(1539), - [anon_sym_c_longlong] = ACTIONS(1539), - [anon_sym_c_ulonglong] = ACTIONS(1539), - [anon_sym_c_float] = ACTIONS(1539), - [anon_sym_c_double] = ACTIONS(1539), - [anon_sym_c_longdouble] = ACTIONS(1539), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_AMP_EQ] = ACTIONS(1537), - [anon_sym_PIPE_EQ] = ACTIONS(1537), - [anon_sym_xor_EQ] = ACTIONS(1537), - [anon_sym_LT_LT_EQ] = ACTIONS(1537), - [anon_sym_GT_GT_EQ] = ACTIONS(1537), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_yield] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_defer] = ACTIONS(1539), - [anon_sym_errdefer] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_expand] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_orelse] = ACTIONS(1539), - [anon_sym_catch] = ACTIONS(1539), - [anon_sym_or] = ACTIONS(1539), - [anon_sym_and] = ACTIONS(1539), - [anon_sym_EQ_EQ] = ACTIONS(1537), - [anon_sym_BANG_EQ] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1537), - [anon_sym_GT] = ACTIONS(1539), - [anon_sym_GT_EQ] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_xor] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1539), - [anon_sym_GT_GT] = ACTIONS(1539), - [anon_sym_LT_LT_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_SLASH] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1539), - [anon_sym_DOT] = ACTIONS(1539), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [anon_sym_null] = ACTIONS(1539), - [anon_sym_unreachable] = ACTIONS(1539), - [anon_sym_undefined] = ACTIONS(1539), - [sym_sink] = ACTIONS(1539), - [sym_integer] = ACTIONS(1539), - [sym_float] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_multiline_string] = ACTIONS(1537), - [sym_character] = ACTIONS(1537), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1537), - }, - [STATE(568)] = { - [ts_builtin_sym_end] = ACTIONS(1541), - [sym_identifier] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1543), - [anon_sym_test] = ACTIONS(1543), - [anon_sym_hide] = ACTIONS(1543), - [anon_sym_func] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_noreturn] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_anyopaque] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_range] = ACTIONS(1543), - [anon_sym_i8] = ACTIONS(1543), - [anon_sym_i16] = ACTIONS(1543), - [anon_sym_i32] = ACTIONS(1543), - [anon_sym_i64] = ACTIONS(1543), - [anon_sym_u8] = ACTIONS(1543), - [anon_sym_u16] = ACTIONS(1543), - [anon_sym_u32] = ACTIONS(1543), - [anon_sym_u64] = ACTIONS(1543), - [anon_sym_isize] = ACTIONS(1543), - [anon_sym_usize] = ACTIONS(1543), - [anon_sym_f32] = ACTIONS(1543), - [anon_sym_f64] = ACTIONS(1543), - [anon_sym_c_char] = ACTIONS(1543), - [anon_sym_c_schar] = ACTIONS(1543), - [anon_sym_c_uchar] = ACTIONS(1543), - [anon_sym_c_short] = ACTIONS(1543), - [anon_sym_c_ushort] = ACTIONS(1543), - [anon_sym_c_int] = ACTIONS(1543), - [anon_sym_c_uint] = ACTIONS(1543), - [anon_sym_c_long] = ACTIONS(1543), - [anon_sym_c_ulong] = ACTIONS(1543), - [anon_sym_c_longlong] = ACTIONS(1543), - [anon_sym_c_ulonglong] = ACTIONS(1543), - [anon_sym_c_float] = ACTIONS(1543), - [anon_sym_c_double] = ACTIONS(1543), - [anon_sym_c_longdouble] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1541), - [anon_sym_DASH_EQ] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1541), - [anon_sym_SLASH_EQ] = ACTIONS(1541), - [anon_sym_AMP_EQ] = ACTIONS(1541), - [anon_sym_PIPE_EQ] = ACTIONS(1541), - [anon_sym_xor_EQ] = ACTIONS(1541), - [anon_sym_LT_LT_EQ] = ACTIONS(1541), - [anon_sym_GT_GT_EQ] = ACTIONS(1541), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_defer] = ACTIONS(1543), - [anon_sym_errdefer] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_expand] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1541), - [anon_sym_orelse] = ACTIONS(1543), - [anon_sym_catch] = ACTIONS(1543), - [anon_sym_or] = ACTIONS(1543), - [anon_sym_and] = ACTIONS(1543), - [anon_sym_EQ_EQ] = ACTIONS(1541), - [anon_sym_BANG_EQ] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_LT_EQ] = ACTIONS(1541), - [anon_sym_GT] = ACTIONS(1543), - [anon_sym_GT_EQ] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_xor] = ACTIONS(1543), - [anon_sym_LT_LT] = ACTIONS(1543), - [anon_sym_GT_GT] = ACTIONS(1543), - [anon_sym_LT_LT_PIPE] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_SLASH] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_DOT] = ACTIONS(1543), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [anon_sym_null] = ACTIONS(1543), - [anon_sym_unreachable] = ACTIONS(1543), - [anon_sym_undefined] = ACTIONS(1543), - [sym_sink] = ACTIONS(1543), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1541), - [sym_multiline_string] = ACTIONS(1541), - [sym_character] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1541), - }, - [STATE(569)] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_identifier] = ACTIONS(1547), - [anon_sym_import] = ACTIONS(1547), - [anon_sym_test] = ACTIONS(1547), - [anon_sym_hide] = ACTIONS(1547), - [anon_sym_func] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_EQ] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_COMMA] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_noreturn] = ACTIONS(1547), - [anon_sym_type] = ACTIONS(1547), - [anon_sym_anyopaque] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_range] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_c_char] = ACTIONS(1547), - [anon_sym_c_schar] = ACTIONS(1547), - [anon_sym_c_uchar] = ACTIONS(1547), - [anon_sym_c_short] = ACTIONS(1547), - [anon_sym_c_ushort] = ACTIONS(1547), - [anon_sym_c_int] = ACTIONS(1547), - [anon_sym_c_uint] = ACTIONS(1547), - [anon_sym_c_long] = ACTIONS(1547), - [anon_sym_c_ulong] = ACTIONS(1547), - [anon_sym_c_longlong] = ACTIONS(1547), - [anon_sym_c_ulonglong] = ACTIONS(1547), - [anon_sym_c_float] = ACTIONS(1547), - [anon_sym_c_double] = ACTIONS(1547), - [anon_sym_c_longdouble] = ACTIONS(1547), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_AMP_EQ] = ACTIONS(1545), - [anon_sym_PIPE_EQ] = ACTIONS(1545), - [anon_sym_xor_EQ] = ACTIONS(1545), - [anon_sym_LT_LT_EQ] = ACTIONS(1545), - [anon_sym_GT_GT_EQ] = ACTIONS(1545), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_yield] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_defer] = ACTIONS(1547), - [anon_sym_errdefer] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_expand] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_match] = ACTIONS(1547), - [anon_sym_DOT_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [anon_sym_orelse] = ACTIONS(1547), - [anon_sym_catch] = ACTIONS(1547), - [anon_sym_or] = ACTIONS(1547), - [anon_sym_and] = ACTIONS(1547), - [anon_sym_EQ_EQ] = ACTIONS(1545), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1545), - [anon_sym_GT] = ACTIONS(1547), - [anon_sym_GT_EQ] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_xor] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1547), - [anon_sym_GT_GT] = ACTIONS(1547), - [anon_sym_LT_LT_PIPE] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_SLASH] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1547), - [anon_sym_DOT] = ACTIONS(1547), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [anon_sym_null] = ACTIONS(1547), - [anon_sym_unreachable] = ACTIONS(1547), - [anon_sym_undefined] = ACTIONS(1547), - [sym_sink] = ACTIONS(1547), - [sym_integer] = ACTIONS(1547), - [sym_float] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym_multiline_string] = ACTIONS(1545), - [sym_character] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1545), - }, - [STATE(570)] = { - [ts_builtin_sym_end] = ACTIONS(1549), - [sym_identifier] = ACTIONS(1551), - [anon_sym_import] = ACTIONS(1551), - [anon_sym_test] = ACTIONS(1551), - [anon_sym_hide] = ACTIONS(1551), - [anon_sym_func] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_QMARK] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_noreturn] = ACTIONS(1551), - [anon_sym_type] = ACTIONS(1551), - [anon_sym_anyopaque] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_range] = ACTIONS(1551), - [anon_sym_i8] = ACTIONS(1551), - [anon_sym_i16] = ACTIONS(1551), - [anon_sym_i32] = ACTIONS(1551), - [anon_sym_i64] = ACTIONS(1551), - [anon_sym_u8] = ACTIONS(1551), - [anon_sym_u16] = ACTIONS(1551), - [anon_sym_u32] = ACTIONS(1551), - [anon_sym_u64] = ACTIONS(1551), - [anon_sym_isize] = ACTIONS(1551), - [anon_sym_usize] = ACTIONS(1551), - [anon_sym_f32] = ACTIONS(1551), - [anon_sym_f64] = ACTIONS(1551), - [anon_sym_c_char] = ACTIONS(1551), - [anon_sym_c_schar] = ACTIONS(1551), - [anon_sym_c_uchar] = ACTIONS(1551), - [anon_sym_c_short] = ACTIONS(1551), - [anon_sym_c_ushort] = ACTIONS(1551), - [anon_sym_c_int] = ACTIONS(1551), - [anon_sym_c_uint] = ACTIONS(1551), - [anon_sym_c_long] = ACTIONS(1551), - [anon_sym_c_ulong] = ACTIONS(1551), - [anon_sym_c_longlong] = ACTIONS(1551), - [anon_sym_c_ulonglong] = ACTIONS(1551), - [anon_sym_c_float] = ACTIONS(1551), - [anon_sym_c_double] = ACTIONS(1551), - [anon_sym_c_longdouble] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(1549), - [anon_sym_DASH_EQ] = ACTIONS(1549), - [anon_sym_STAR_EQ] = ACTIONS(1549), - [anon_sym_SLASH_EQ] = ACTIONS(1549), - [anon_sym_AMP_EQ] = ACTIONS(1549), - [anon_sym_PIPE_EQ] = ACTIONS(1549), - [anon_sym_xor_EQ] = ACTIONS(1549), - [anon_sym_LT_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_GT_EQ] = ACTIONS(1549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_defer] = ACTIONS(1551), - [anon_sym_errdefer] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_else] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_expand] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1549), - [anon_sym_orelse] = ACTIONS(1551), - [anon_sym_catch] = ACTIONS(1551), - [anon_sym_or] = ACTIONS(1551), - [anon_sym_and] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_xor] = ACTIONS(1551), - [anon_sym_LT_LT] = ACTIONS(1551), - [anon_sym_GT_GT] = ACTIONS(1551), - [anon_sym_LT_LT_PIPE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_SLASH] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1551), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [anon_sym_unreachable] = ACTIONS(1551), - [anon_sym_undefined] = ACTIONS(1551), - [sym_sink] = ACTIONS(1551), - [sym_integer] = ACTIONS(1551), - [sym_float] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [sym_multiline_string] = ACTIONS(1549), - [sym_character] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1549), - }, - [STATE(571)] = { - [ts_builtin_sym_end] = ACTIONS(1553), - [sym_identifier] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(1555), - [anon_sym_test] = ACTIONS(1555), - [anon_sym_hide] = ACTIONS(1555), - [anon_sym_func] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_QMARK] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_noreturn] = ACTIONS(1555), - [anon_sym_type] = ACTIONS(1555), - [anon_sym_anyopaque] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_range] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_c_char] = ACTIONS(1555), - [anon_sym_c_schar] = ACTIONS(1555), - [anon_sym_c_uchar] = ACTIONS(1555), - [anon_sym_c_short] = ACTIONS(1555), - [anon_sym_c_ushort] = ACTIONS(1555), - [anon_sym_c_int] = ACTIONS(1555), - [anon_sym_c_uint] = ACTIONS(1555), - [anon_sym_c_long] = ACTIONS(1555), - [anon_sym_c_ulong] = ACTIONS(1555), - [anon_sym_c_longlong] = ACTIONS(1555), - [anon_sym_c_ulonglong] = ACTIONS(1555), - [anon_sym_c_float] = ACTIONS(1555), - [anon_sym_c_double] = ACTIONS(1555), - [anon_sym_c_longdouble] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(1553), - [anon_sym_DASH_EQ] = ACTIONS(1553), - [anon_sym_STAR_EQ] = ACTIONS(1553), - [anon_sym_SLASH_EQ] = ACTIONS(1553), - [anon_sym_AMP_EQ] = ACTIONS(1553), - [anon_sym_PIPE_EQ] = ACTIONS(1553), - [anon_sym_xor_EQ] = ACTIONS(1553), - [anon_sym_LT_LT_EQ] = ACTIONS(1553), - [anon_sym_GT_GT_EQ] = ACTIONS(1553), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_defer] = ACTIONS(1555), - [anon_sym_errdefer] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_expand] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_orelse] = ACTIONS(1555), - [anon_sym_catch] = ACTIONS(1555), - [anon_sym_or] = ACTIONS(1555), - [anon_sym_and] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1553), - [anon_sym_BANG_EQ] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(1553), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_GT_EQ] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_xor] = ACTIONS(1555), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1555), - [anon_sym_LT_LT_PIPE] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_SLASH] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1555), - [anon_sym_DOT] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_unreachable] = ACTIONS(1555), - [anon_sym_undefined] = ACTIONS(1555), - [sym_sink] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym_multiline_string] = ACTIONS(1553), - [sym_character] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1553), - }, - [STATE(572)] = { - [ts_builtin_sym_end] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), - [anon_sym_import] = ACTIONS(1559), - [anon_sym_test] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_func] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_EQ] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_COMMA] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_QMARK] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_noreturn] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_anyopaque] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_range] = ACTIONS(1559), - [anon_sym_i8] = ACTIONS(1559), - [anon_sym_i16] = ACTIONS(1559), - [anon_sym_i32] = ACTIONS(1559), - [anon_sym_i64] = ACTIONS(1559), - [anon_sym_u8] = ACTIONS(1559), - [anon_sym_u16] = ACTIONS(1559), - [anon_sym_u32] = ACTIONS(1559), - [anon_sym_u64] = ACTIONS(1559), - [anon_sym_isize] = ACTIONS(1559), - [anon_sym_usize] = ACTIONS(1559), - [anon_sym_f32] = ACTIONS(1559), - [anon_sym_f64] = ACTIONS(1559), - [anon_sym_c_char] = ACTIONS(1559), - [anon_sym_c_schar] = ACTIONS(1559), - [anon_sym_c_uchar] = ACTIONS(1559), - [anon_sym_c_short] = ACTIONS(1559), - [anon_sym_c_ushort] = ACTIONS(1559), - [anon_sym_c_int] = ACTIONS(1559), - [anon_sym_c_uint] = ACTIONS(1559), - [anon_sym_c_long] = ACTIONS(1559), - [anon_sym_c_ulong] = ACTIONS(1559), - [anon_sym_c_longlong] = ACTIONS(1559), - [anon_sym_c_ulonglong] = ACTIONS(1559), - [anon_sym_c_float] = ACTIONS(1559), - [anon_sym_c_double] = ACTIONS(1559), - [anon_sym_c_longdouble] = ACTIONS(1559), - [anon_sym_PLUS_EQ] = ACTIONS(1557), - [anon_sym_DASH_EQ] = ACTIONS(1557), - [anon_sym_STAR_EQ] = ACTIONS(1557), - [anon_sym_SLASH_EQ] = ACTIONS(1557), - [anon_sym_AMP_EQ] = ACTIONS(1557), - [anon_sym_PIPE_EQ] = ACTIONS(1557), - [anon_sym_xor_EQ] = ACTIONS(1557), - [anon_sym_LT_LT_EQ] = ACTIONS(1557), - [anon_sym_GT_GT_EQ] = ACTIONS(1557), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_yield] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_defer] = ACTIONS(1559), - [anon_sym_errdefer] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_else] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_expand] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_orelse] = ACTIONS(1559), - [anon_sym_catch] = ACTIONS(1559), - [anon_sym_or] = ACTIONS(1559), - [anon_sym_and] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_BANG_EQ] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_xor] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_LT_LT_PIPE] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_SLASH] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_DOT] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_unreachable] = ACTIONS(1559), - [anon_sym_undefined] = ACTIONS(1559), - [sym_sink] = ACTIONS(1559), - [sym_integer] = ACTIONS(1559), - [sym_float] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym_multiline_string] = ACTIONS(1557), - [sym_character] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1557), - }, - [STATE(573)] = { - [ts_builtin_sym_end] = ACTIONS(1561), - [sym_identifier] = ACTIONS(1563), - [anon_sym_import] = ACTIONS(1563), - [anon_sym_test] = ACTIONS(1563), - [anon_sym_hide] = ACTIONS(1563), - [anon_sym_func] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_EQ] = ACTIONS(1563), - [anon_sym_struct] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_COMMA] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_QMARK] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_noreturn] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_anyopaque] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_range] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_c_char] = ACTIONS(1563), - [anon_sym_c_schar] = ACTIONS(1563), - [anon_sym_c_uchar] = ACTIONS(1563), - [anon_sym_c_short] = ACTIONS(1563), - [anon_sym_c_ushort] = ACTIONS(1563), - [anon_sym_c_int] = ACTIONS(1563), - [anon_sym_c_uint] = ACTIONS(1563), - [anon_sym_c_long] = ACTIONS(1563), - [anon_sym_c_ulong] = ACTIONS(1563), - [anon_sym_c_longlong] = ACTIONS(1563), - [anon_sym_c_ulonglong] = ACTIONS(1563), - [anon_sym_c_float] = ACTIONS(1563), - [anon_sym_c_double] = ACTIONS(1563), - [anon_sym_c_longdouble] = ACTIONS(1563), - [anon_sym_PLUS_EQ] = ACTIONS(1561), - [anon_sym_DASH_EQ] = ACTIONS(1561), - [anon_sym_STAR_EQ] = ACTIONS(1561), - [anon_sym_SLASH_EQ] = ACTIONS(1561), - [anon_sym_AMP_EQ] = ACTIONS(1561), - [anon_sym_PIPE_EQ] = ACTIONS(1561), - [anon_sym_xor_EQ] = ACTIONS(1561), - [anon_sym_LT_LT_EQ] = ACTIONS(1561), - [anon_sym_GT_GT_EQ] = ACTIONS(1561), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_yield] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_defer] = ACTIONS(1563), - [anon_sym_errdefer] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_else] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_expand] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_match] = ACTIONS(1563), - [anon_sym_DOT_DOT] = ACTIONS(1563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_orelse] = ACTIONS(1563), - [anon_sym_catch] = ACTIONS(1563), - [anon_sym_or] = ACTIONS(1563), - [anon_sym_and] = ACTIONS(1563), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_BANG_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1563), - [anon_sym_LT_EQ] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_xor] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1563), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_LT_LT_PIPE] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1563), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_unreachable] = ACTIONS(1563), - [anon_sym_undefined] = ACTIONS(1563), - [sym_sink] = ACTIONS(1563), - [sym_integer] = ACTIONS(1563), - [sym_float] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym_multiline_string] = ACTIONS(1561), - [sym_character] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1561), - }, - [STATE(574)] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(1567), - [anon_sym_test] = ACTIONS(1567), - [anon_sym_hide] = ACTIONS(1567), - [anon_sym_func] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_EQ] = ACTIONS(1567), - [anon_sym_struct] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_QMARK] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_noreturn] = ACTIONS(1567), - [anon_sym_type] = 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(1565), - [anon_sym_DASH_EQ] = ACTIONS(1565), - [anon_sym_STAR_EQ] = ACTIONS(1565), - [anon_sym_SLASH_EQ] = ACTIONS(1565), - [anon_sym_AMP_EQ] = ACTIONS(1565), - [anon_sym_PIPE_EQ] = ACTIONS(1565), - [anon_sym_xor_EQ] = ACTIONS(1565), - [anon_sym_LT_LT_EQ] = ACTIONS(1565), - [anon_sym_GT_GT_EQ] = ACTIONS(1565), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_defer] = ACTIONS(1567), - [anon_sym_errdefer] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_else] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_expand] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_orelse] = ACTIONS(1567), - [anon_sym_catch] = ACTIONS(1567), - [anon_sym_or] = ACTIONS(1567), - [anon_sym_and] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_BANG_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_LT_EQ] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_EQ] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_xor] = ACTIONS(1567), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(1567), - [anon_sym_LT_LT_PIPE] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_SLASH] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_DOT] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [anon_sym_unreachable] = ACTIONS(1567), - [anon_sym_undefined] = ACTIONS(1567), - [sym_sink] = ACTIONS(1567), - [sym_integer] = ACTIONS(1567), - [sym_float] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym_multiline_string] = ACTIONS(1565), - [sym_character] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1565), - }, - [STATE(575)] = { - [ts_builtin_sym_end] = ACTIONS(1569), - [sym_identifier] = ACTIONS(1571), - [anon_sym_import] = ACTIONS(1571), - [anon_sym_test] = ACTIONS(1571), - [anon_sym_hide] = ACTIONS(1571), - [anon_sym_func] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_EQ] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_COMMA] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_QMARK] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_noreturn] = ACTIONS(1571), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_anyopaque] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_range] = ACTIONS(1571), - [anon_sym_i8] = ACTIONS(1571), - [anon_sym_i16] = ACTIONS(1571), - [anon_sym_i32] = ACTIONS(1571), - [anon_sym_i64] = ACTIONS(1571), - [anon_sym_u8] = ACTIONS(1571), - [anon_sym_u16] = ACTIONS(1571), - [anon_sym_u32] = ACTIONS(1571), - [anon_sym_u64] = ACTIONS(1571), - [anon_sym_isize] = ACTIONS(1571), - [anon_sym_usize] = ACTIONS(1571), - [anon_sym_f32] = ACTIONS(1571), - [anon_sym_f64] = ACTIONS(1571), - [anon_sym_c_char] = ACTIONS(1571), - [anon_sym_c_schar] = ACTIONS(1571), - [anon_sym_c_uchar] = ACTIONS(1571), - [anon_sym_c_short] = ACTIONS(1571), - [anon_sym_c_ushort] = ACTIONS(1571), - [anon_sym_c_int] = ACTIONS(1571), - [anon_sym_c_uint] = ACTIONS(1571), - [anon_sym_c_long] = ACTIONS(1571), - [anon_sym_c_ulong] = ACTIONS(1571), - [anon_sym_c_longlong] = ACTIONS(1571), - [anon_sym_c_ulonglong] = ACTIONS(1571), - [anon_sym_c_float] = ACTIONS(1571), - [anon_sym_c_double] = ACTIONS(1571), - [anon_sym_c_longdouble] = ACTIONS(1571), - [anon_sym_PLUS_EQ] = ACTIONS(1569), - [anon_sym_DASH_EQ] = ACTIONS(1569), - [anon_sym_STAR_EQ] = ACTIONS(1569), - [anon_sym_SLASH_EQ] = ACTIONS(1569), - [anon_sym_AMP_EQ] = ACTIONS(1569), - [anon_sym_PIPE_EQ] = ACTIONS(1569), - [anon_sym_xor_EQ] = ACTIONS(1569), - [anon_sym_LT_LT_EQ] = ACTIONS(1569), - [anon_sym_GT_GT_EQ] = ACTIONS(1569), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_yield] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_defer] = ACTIONS(1571), - [anon_sym_errdefer] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_else] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_expand] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_orelse] = ACTIONS(1571), - [anon_sym_catch] = ACTIONS(1571), - [anon_sym_or] = ACTIONS(1571), - [anon_sym_and] = ACTIONS(1571), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_BANG_EQ] = ACTIONS(1569), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_LT_EQ] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_xor] = ACTIONS(1571), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(1571), - [anon_sym_LT_LT_PIPE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_SLASH] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [anon_sym_unreachable] = ACTIONS(1571), - [anon_sym_undefined] = ACTIONS(1571), - [sym_sink] = ACTIONS(1571), - [sym_integer] = ACTIONS(1571), - [sym_float] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_multiline_string] = ACTIONS(1569), - [sym_character] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1569), - }, - [STATE(576)] = { - [ts_builtin_sym_end] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1575), - [anon_sym_import] = ACTIONS(1575), - [anon_sym_test] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_func] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_EQ] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_COMMA] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_noreturn] = ACTIONS(1575), - [anon_sym_type] = ACTIONS(1575), - [anon_sym_anyopaque] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_range] = ACTIONS(1575), - [anon_sym_i8] = ACTIONS(1575), - [anon_sym_i16] = ACTIONS(1575), - [anon_sym_i32] = ACTIONS(1575), - [anon_sym_i64] = ACTIONS(1575), - [anon_sym_u8] = ACTIONS(1575), - [anon_sym_u16] = ACTIONS(1575), - [anon_sym_u32] = ACTIONS(1575), - [anon_sym_u64] = ACTIONS(1575), - [anon_sym_isize] = ACTIONS(1575), - [anon_sym_usize] = ACTIONS(1575), - [anon_sym_f32] = ACTIONS(1575), - [anon_sym_f64] = ACTIONS(1575), - [anon_sym_c_char] = ACTIONS(1575), - [anon_sym_c_schar] = ACTIONS(1575), - [anon_sym_c_uchar] = ACTIONS(1575), - [anon_sym_c_short] = ACTIONS(1575), - [anon_sym_c_ushort] = ACTIONS(1575), - [anon_sym_c_int] = ACTIONS(1575), - [anon_sym_c_uint] = ACTIONS(1575), - [anon_sym_c_long] = ACTIONS(1575), - [anon_sym_c_ulong] = ACTIONS(1575), - [anon_sym_c_longlong] = ACTIONS(1575), - [anon_sym_c_ulonglong] = ACTIONS(1575), - [anon_sym_c_float] = ACTIONS(1575), - [anon_sym_c_double] = ACTIONS(1575), - [anon_sym_c_longdouble] = ACTIONS(1575), - [anon_sym_PLUS_EQ] = ACTIONS(1573), - [anon_sym_DASH_EQ] = ACTIONS(1573), - [anon_sym_STAR_EQ] = ACTIONS(1573), - [anon_sym_SLASH_EQ] = ACTIONS(1573), - [anon_sym_AMP_EQ] = ACTIONS(1573), - [anon_sym_PIPE_EQ] = ACTIONS(1573), - [anon_sym_xor_EQ] = ACTIONS(1573), - [anon_sym_LT_LT_EQ] = ACTIONS(1573), - [anon_sym_GT_GT_EQ] = ACTIONS(1573), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_yield] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_defer] = ACTIONS(1575), - [anon_sym_errdefer] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_expand] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_orelse] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_BANG_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_LT_EQ] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_EQ] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(1575), - [anon_sym_LT_LT_PIPE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_SLASH] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_DOT] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_unreachable] = ACTIONS(1575), - [anon_sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [sym_multiline_string] = ACTIONS(1573), - [sym_character] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1573), - }, - [STATE(577)] = { - [ts_builtin_sym_end] = ACTIONS(1577), - [sym_identifier] = ACTIONS(1579), - [anon_sym_import] = ACTIONS(1579), - [anon_sym_test] = ACTIONS(1579), - [anon_sym_hide] = ACTIONS(1579), - [anon_sym_func] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_DOLLAR] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_noreturn] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_anyopaque] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_range] = ACTIONS(1579), - [anon_sym_i8] = ACTIONS(1579), - [anon_sym_i16] = ACTIONS(1579), - [anon_sym_i32] = ACTIONS(1579), - [anon_sym_i64] = ACTIONS(1579), - [anon_sym_u8] = ACTIONS(1579), - [anon_sym_u16] = ACTIONS(1579), - [anon_sym_u32] = ACTIONS(1579), - [anon_sym_u64] = ACTIONS(1579), - [anon_sym_isize] = ACTIONS(1579), - [anon_sym_usize] = ACTIONS(1579), - [anon_sym_f32] = ACTIONS(1579), - [anon_sym_f64] = ACTIONS(1579), - [anon_sym_c_char] = ACTIONS(1579), - [anon_sym_c_schar] = ACTIONS(1579), - [anon_sym_c_uchar] = ACTIONS(1579), - [anon_sym_c_short] = ACTIONS(1579), - [anon_sym_c_ushort] = ACTIONS(1579), - [anon_sym_c_int] = ACTIONS(1579), - [anon_sym_c_uint] = ACTIONS(1579), - [anon_sym_c_long] = ACTIONS(1579), - [anon_sym_c_ulong] = ACTIONS(1579), - [anon_sym_c_longlong] = ACTIONS(1579), - [anon_sym_c_ulonglong] = ACTIONS(1579), - [anon_sym_c_float] = ACTIONS(1579), - [anon_sym_c_double] = ACTIONS(1579), - [anon_sym_c_longdouble] = ACTIONS(1579), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_xor_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_yield] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_defer] = ACTIONS(1579), - [anon_sym_errdefer] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_expand] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), - [anon_sym_orelse] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_or] = ACTIONS(1579), - [anon_sym_and] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_xor] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1579), - [anon_sym_LT_LT_PIPE] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_DOT] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_unreachable] = ACTIONS(1579), - [anon_sym_undefined] = ACTIONS(1579), - [sym_sink] = ACTIONS(1579), - [sym_integer] = ACTIONS(1579), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1577), - }, - [STATE(578)] = { - [ts_builtin_sym_end] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1583), - [anon_sym_import] = ACTIONS(1583), - [anon_sym_test] = ACTIONS(1583), - [anon_sym_hide] = ACTIONS(1583), - [anon_sym_func] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_DOLLAR] = ACTIONS(1581), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_noreturn] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_anyopaque] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_range] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_c_char] = ACTIONS(1583), - [anon_sym_c_schar] = ACTIONS(1583), - [anon_sym_c_uchar] = ACTIONS(1583), - [anon_sym_c_short] = ACTIONS(1583), - [anon_sym_c_ushort] = ACTIONS(1583), - [anon_sym_c_int] = ACTIONS(1583), - [anon_sym_c_uint] = ACTIONS(1583), - [anon_sym_c_long] = ACTIONS(1583), - [anon_sym_c_ulong] = ACTIONS(1583), - [anon_sym_c_longlong] = ACTIONS(1583), - [anon_sym_c_ulonglong] = ACTIONS(1583), - [anon_sym_c_float] = ACTIONS(1583), - [anon_sym_c_double] = ACTIONS(1583), - [anon_sym_c_longdouble] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(1581), - [anon_sym_DASH_EQ] = ACTIONS(1581), - [anon_sym_STAR_EQ] = ACTIONS(1581), - [anon_sym_SLASH_EQ] = ACTIONS(1581), - [anon_sym_AMP_EQ] = ACTIONS(1581), - [anon_sym_PIPE_EQ] = ACTIONS(1581), - [anon_sym_xor_EQ] = ACTIONS(1581), - [anon_sym_LT_LT_EQ] = ACTIONS(1581), - [anon_sym_GT_GT_EQ] = ACTIONS(1581), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_errdefer] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_expand] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1581), - [anon_sym_orelse] = ACTIONS(1583), - [anon_sym_catch] = ACTIONS(1583), - [anon_sym_or] = ACTIONS(1583), - [anon_sym_and] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_xor] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1583), - [anon_sym_LT_LT_PIPE] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1583), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_unreachable] = ACTIONS(1583), - [anon_sym_undefined] = ACTIONS(1583), - [sym_sink] = ACTIONS(1583), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [sym_multiline_string] = ACTIONS(1581), - [sym_character] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1581), - }, - [STATE(579)] = { - [ts_builtin_sym_end] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1587), - [anon_sym_import] = ACTIONS(1587), - [anon_sym_test] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_func] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_EQ] = ACTIONS(1587), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_QMARK] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_noreturn] = ACTIONS(1587), - [anon_sym_type] = ACTIONS(1587), - [anon_sym_anyopaque] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_range] = ACTIONS(1587), - [anon_sym_i8] = ACTIONS(1587), - [anon_sym_i16] = ACTIONS(1587), - [anon_sym_i32] = ACTIONS(1587), - [anon_sym_i64] = ACTIONS(1587), - [anon_sym_u8] = ACTIONS(1587), - [anon_sym_u16] = ACTIONS(1587), - [anon_sym_u32] = ACTIONS(1587), - [anon_sym_u64] = ACTIONS(1587), - [anon_sym_isize] = ACTIONS(1587), - [anon_sym_usize] = ACTIONS(1587), - [anon_sym_f32] = ACTIONS(1587), - [anon_sym_f64] = ACTIONS(1587), - [anon_sym_c_char] = ACTIONS(1587), - [anon_sym_c_schar] = ACTIONS(1587), - [anon_sym_c_uchar] = ACTIONS(1587), - [anon_sym_c_short] = ACTIONS(1587), - [anon_sym_c_ushort] = ACTIONS(1587), - [anon_sym_c_int] = ACTIONS(1587), - [anon_sym_c_uint] = ACTIONS(1587), - [anon_sym_c_long] = ACTIONS(1587), - [anon_sym_c_ulong] = ACTIONS(1587), - [anon_sym_c_longlong] = ACTIONS(1587), - [anon_sym_c_ulonglong] = ACTIONS(1587), - [anon_sym_c_float] = ACTIONS(1587), - [anon_sym_c_double] = ACTIONS(1587), - [anon_sym_c_longdouble] = ACTIONS(1587), - [anon_sym_PLUS_EQ] = ACTIONS(1585), - [anon_sym_DASH_EQ] = ACTIONS(1585), - [anon_sym_STAR_EQ] = ACTIONS(1585), - [anon_sym_SLASH_EQ] = ACTIONS(1585), - [anon_sym_AMP_EQ] = ACTIONS(1585), - [anon_sym_PIPE_EQ] = ACTIONS(1585), - [anon_sym_xor_EQ] = ACTIONS(1585), - [anon_sym_LT_LT_EQ] = ACTIONS(1585), - [anon_sym_GT_GT_EQ] = ACTIONS(1585), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_yield] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_defer] = ACTIONS(1587), - [anon_sym_errdefer] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_expand] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_orelse] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1585), - [anon_sym_BANG_EQ] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_LT_LT] = ACTIONS(1587), - [anon_sym_GT_GT] = ACTIONS(1587), - [anon_sym_LT_LT_PIPE] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1587), - [anon_sym_CARET] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_unreachable] = ACTIONS(1587), - [anon_sym_undefined] = ACTIONS(1587), - [sym_sink] = ACTIONS(1587), - [sym_integer] = ACTIONS(1587), - [sym_float] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [sym_multiline_string] = ACTIONS(1585), - [sym_character] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1585), - }, - [STATE(580)] = { - [sym_struct_type] = STATE(3439), - [sym_c_struct_type] = STATE(3928), - [sym_opaque_type] = STATE(3928), - [sym_distinct_type] = STATE(3928), - [sym_alias_type] = STATE(3928), - [sym_union_type] = STATE(3928), - [sym_enum_type] = STATE(3928), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3904), - [sym_labeled_block] = STATE(3904), - [sym_if_statement] = STATE(3904), - [sym_while_statement] = STATE(3904), - [sym_for_statement] = STATE(3904), - [sym_match_statement] = STATE(3904), - [sym__value] = STATE(3904), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(645), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_c_struct] = ACTIONS(1425), - [anon_sym_opaque] = ACTIONS(1427), - [anon_sym_distinct] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1589), - }, - [STATE(581)] = { - [ts_builtin_sym_end] = ACTIONS(1591), - [sym_identifier] = ACTIONS(1593), - [anon_sym_import] = ACTIONS(1593), - [anon_sym_test] = ACTIONS(1593), - [anon_sym_hide] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1593), - [anon_sym_QMARK] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_noreturn] = ACTIONS(1593), - [anon_sym_type] = 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(1591), - [anon_sym_DASH_EQ] = ACTIONS(1591), - [anon_sym_STAR_EQ] = ACTIONS(1591), - [anon_sym_SLASH_EQ] = ACTIONS(1591), - [anon_sym_AMP_EQ] = ACTIONS(1591), - [anon_sym_PIPE_EQ] = ACTIONS(1591), - [anon_sym_xor_EQ] = ACTIONS(1591), - [anon_sym_LT_LT_EQ] = ACTIONS(1591), - [anon_sym_GT_GT_EQ] = ACTIONS(1591), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1591), - [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(1593), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_orelse] = ACTIONS(1593), - [anon_sym_catch] = ACTIONS(1593), - [anon_sym_or] = ACTIONS(1593), - [anon_sym_and] = ACTIONS(1593), - [anon_sym_EQ_EQ] = ACTIONS(1591), - [anon_sym_BANG_EQ] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1593), - [anon_sym_LT_EQ] = ACTIONS(1591), - [anon_sym_GT] = ACTIONS(1593), - [anon_sym_GT_EQ] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_xor] = ACTIONS(1593), - [anon_sym_LT_LT] = ACTIONS(1593), - [anon_sym_GT_GT] = ACTIONS(1593), - [anon_sym_LT_LT_PIPE] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_SLASH] = ACTIONS(1593), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_null] = ACTIONS(1593), - [anon_sym_unreachable] = ACTIONS(1593), - [anon_sym_undefined] = ACTIONS(1593), - [sym_sink] = ACTIONS(1593), - [sym_integer] = ACTIONS(1593), - [sym_float] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_multiline_string] = ACTIONS(1591), - [sym_character] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1591), - }, - [STATE(582)] = { - [ts_builtin_sym_end] = ACTIONS(1595), - [sym_identifier] = ACTIONS(1597), - [anon_sym_import] = ACTIONS(1597), - [anon_sym_test] = ACTIONS(1597), - [anon_sym_hide] = ACTIONS(1597), - [anon_sym_func] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_EQ] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_QMARK] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_noreturn] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_anyopaque] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_int] = ACTIONS(1597), - [anon_sym_uint] = ACTIONS(1597), - [anon_sym_float] = ACTIONS(1597), - [anon_sym_range] = ACTIONS(1597), - [anon_sym_i8] = ACTIONS(1597), - [anon_sym_i16] = ACTIONS(1597), - [anon_sym_i32] = ACTIONS(1597), - [anon_sym_i64] = ACTIONS(1597), - [anon_sym_u8] = ACTIONS(1597), - [anon_sym_u16] = ACTIONS(1597), - [anon_sym_u32] = ACTIONS(1597), - [anon_sym_u64] = ACTIONS(1597), - [anon_sym_isize] = ACTIONS(1597), - [anon_sym_usize] = ACTIONS(1597), - [anon_sym_f32] = ACTIONS(1597), - [anon_sym_f64] = ACTIONS(1597), - [anon_sym_c_char] = ACTIONS(1597), - [anon_sym_c_schar] = ACTIONS(1597), - [anon_sym_c_uchar] = ACTIONS(1597), - [anon_sym_c_short] = ACTIONS(1597), - [anon_sym_c_ushort] = ACTIONS(1597), - [anon_sym_c_int] = ACTIONS(1597), - [anon_sym_c_uint] = ACTIONS(1597), - [anon_sym_c_long] = ACTIONS(1597), - [anon_sym_c_ulong] = ACTIONS(1597), - [anon_sym_c_longlong] = ACTIONS(1597), - [anon_sym_c_ulonglong] = ACTIONS(1597), - [anon_sym_c_float] = ACTIONS(1597), - [anon_sym_c_double] = ACTIONS(1597), - [anon_sym_c_longdouble] = ACTIONS(1597), - [anon_sym_PLUS_EQ] = ACTIONS(1595), - [anon_sym_DASH_EQ] = ACTIONS(1595), - [anon_sym_STAR_EQ] = ACTIONS(1595), - [anon_sym_SLASH_EQ] = ACTIONS(1595), - [anon_sym_AMP_EQ] = ACTIONS(1595), - [anon_sym_PIPE_EQ] = ACTIONS(1595), - [anon_sym_xor_EQ] = ACTIONS(1595), - [anon_sym_LT_LT_EQ] = ACTIONS(1595), - [anon_sym_GT_GT_EQ] = ACTIONS(1595), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_yield] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_defer] = ACTIONS(1597), - [anon_sym_errdefer] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_expand] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_match] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1597), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_orelse] = ACTIONS(1597), - [anon_sym_catch] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1595), - [anon_sym_BANG_EQ] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_LT_EQ] = ACTIONS(1595), - [anon_sym_GT] = ACTIONS(1597), - [anon_sym_GT_EQ] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_LT_LT] = ACTIONS(1597), - [anon_sym_GT_GT] = ACTIONS(1597), - [anon_sym_LT_LT_PIPE] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_SLASH] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_DOT] = ACTIONS(1597), - [anon_sym_CARET] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_unreachable] = ACTIONS(1597), - [anon_sym_undefined] = ACTIONS(1597), - [sym_sink] = ACTIONS(1597), - [sym_integer] = ACTIONS(1597), - [sym_float] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_multiline_string] = ACTIONS(1595), - [sym_character] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1595), - }, - [STATE(583)] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1601), - [anon_sym_import] = ACTIONS(1601), - [anon_sym_test] = ACTIONS(1601), - [anon_sym_hide] = ACTIONS(1601), - [anon_sym_func] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_COMMA] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_DOLLAR] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_QMARK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1601), - [anon_sym_noreturn] = ACTIONS(1601), - [anon_sym_type] = ACTIONS(1601), - [anon_sym_anyopaque] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_int] = ACTIONS(1601), - [anon_sym_uint] = ACTIONS(1601), - [anon_sym_float] = ACTIONS(1601), - [anon_sym_range] = ACTIONS(1601), - [anon_sym_i8] = ACTIONS(1601), - [anon_sym_i16] = ACTIONS(1601), - [anon_sym_i32] = ACTIONS(1601), - [anon_sym_i64] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1601), - [anon_sym_u16] = ACTIONS(1601), - [anon_sym_u32] = ACTIONS(1601), - [anon_sym_u64] = ACTIONS(1601), - [anon_sym_isize] = ACTIONS(1601), - [anon_sym_usize] = ACTIONS(1601), - [anon_sym_f32] = ACTIONS(1601), - [anon_sym_f64] = ACTIONS(1601), - [anon_sym_c_char] = ACTIONS(1601), - [anon_sym_c_schar] = ACTIONS(1601), - [anon_sym_c_uchar] = ACTIONS(1601), - [anon_sym_c_short] = ACTIONS(1601), - [anon_sym_c_ushort] = ACTIONS(1601), - [anon_sym_c_int] = ACTIONS(1601), - [anon_sym_c_uint] = ACTIONS(1601), - [anon_sym_c_long] = ACTIONS(1601), - [anon_sym_c_ulong] = ACTIONS(1601), - [anon_sym_c_longlong] = ACTIONS(1601), - [anon_sym_c_ulonglong] = ACTIONS(1601), - [anon_sym_c_float] = ACTIONS(1601), - [anon_sym_c_double] = ACTIONS(1601), - [anon_sym_c_longdouble] = ACTIONS(1601), - [anon_sym_PLUS_EQ] = ACTIONS(1599), - [anon_sym_DASH_EQ] = ACTIONS(1599), - [anon_sym_STAR_EQ] = ACTIONS(1599), - [anon_sym_SLASH_EQ] = ACTIONS(1599), - [anon_sym_AMP_EQ] = ACTIONS(1599), - [anon_sym_PIPE_EQ] = ACTIONS(1599), - [anon_sym_xor_EQ] = ACTIONS(1599), - [anon_sym_LT_LT_EQ] = ACTIONS(1599), - [anon_sym_GT_GT_EQ] = ACTIONS(1599), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_defer] = ACTIONS(1601), - [anon_sym_errdefer] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_expand] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_match] = ACTIONS(1601), - [anon_sym_DOT_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), - [anon_sym_orelse] = ACTIONS(1601), - [anon_sym_catch] = ACTIONS(1601), - [anon_sym_or] = ACTIONS(1601), - [anon_sym_and] = ACTIONS(1601), - [anon_sym_EQ_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1599), - [anon_sym_GT] = ACTIONS(1601), - [anon_sym_GT_EQ] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_xor] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1601), - [anon_sym_GT_GT] = ACTIONS(1601), - [anon_sym_LT_LT_PIPE] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_DOT] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [anon_sym_null] = ACTIONS(1601), - [anon_sym_unreachable] = ACTIONS(1601), - [anon_sym_undefined] = ACTIONS(1601), - [sym_sink] = ACTIONS(1601), - [sym_integer] = ACTIONS(1601), - [sym_float] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_multiline_string] = ACTIONS(1599), - [sym_character] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1599), - }, - [STATE(584)] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1605), - [anon_sym_test] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_EQ] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_COMMA] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_DOLLAR] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_noreturn] = ACTIONS(1605), - [anon_sym_type] = ACTIONS(1605), - [anon_sym_anyopaque] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_int] = ACTIONS(1605), - [anon_sym_uint] = ACTIONS(1605), - [anon_sym_float] = ACTIONS(1605), - [anon_sym_range] = ACTIONS(1605), - [anon_sym_i8] = ACTIONS(1605), - [anon_sym_i16] = ACTIONS(1605), - [anon_sym_i32] = ACTIONS(1605), - [anon_sym_i64] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1605), - [anon_sym_u16] = ACTIONS(1605), - [anon_sym_u32] = ACTIONS(1605), - [anon_sym_u64] = ACTIONS(1605), - [anon_sym_isize] = ACTIONS(1605), - [anon_sym_usize] = ACTIONS(1605), - [anon_sym_f32] = ACTIONS(1605), - [anon_sym_f64] = ACTIONS(1605), - [anon_sym_c_char] = ACTIONS(1605), - [anon_sym_c_schar] = ACTIONS(1605), - [anon_sym_c_uchar] = ACTIONS(1605), - [anon_sym_c_short] = ACTIONS(1605), - [anon_sym_c_ushort] = ACTIONS(1605), - [anon_sym_c_int] = ACTIONS(1605), - [anon_sym_c_uint] = ACTIONS(1605), - [anon_sym_c_long] = ACTIONS(1605), - [anon_sym_c_ulong] = ACTIONS(1605), - [anon_sym_c_longlong] = ACTIONS(1605), - [anon_sym_c_ulonglong] = ACTIONS(1605), - [anon_sym_c_float] = ACTIONS(1605), - [anon_sym_c_double] = ACTIONS(1605), - [anon_sym_c_longdouble] = ACTIONS(1605), - [anon_sym_PLUS_EQ] = ACTIONS(1603), - [anon_sym_DASH_EQ] = ACTIONS(1603), - [anon_sym_STAR_EQ] = ACTIONS(1603), - [anon_sym_SLASH_EQ] = ACTIONS(1603), - [anon_sym_AMP_EQ] = ACTIONS(1603), - [anon_sym_PIPE_EQ] = ACTIONS(1603), - [anon_sym_xor_EQ] = ACTIONS(1603), - [anon_sym_LT_LT_EQ] = ACTIONS(1603), - [anon_sym_GT_GT_EQ] = ACTIONS(1603), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_yield] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_defer] = ACTIONS(1605), - [anon_sym_errdefer] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_expand] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_orelse] = ACTIONS(1605), - [anon_sym_catch] = ACTIONS(1605), - [anon_sym_or] = ACTIONS(1605), - [anon_sym_and] = ACTIONS(1605), - [anon_sym_EQ_EQ] = ACTIONS(1603), - [anon_sym_BANG_EQ] = ACTIONS(1603), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym_LT_EQ] = ACTIONS(1603), - [anon_sym_GT] = ACTIONS(1605), - [anon_sym_GT_EQ] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_xor] = ACTIONS(1605), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_LT_LT_PIPE] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(1605), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_DOT] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1605), - [anon_sym_false] = ACTIONS(1605), - [anon_sym_null] = ACTIONS(1605), - [anon_sym_unreachable] = ACTIONS(1605), - [anon_sym_undefined] = ACTIONS(1605), - [sym_sink] = ACTIONS(1605), - [sym_integer] = ACTIONS(1605), - [sym_float] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_multiline_string] = ACTIONS(1603), - [sym_character] = ACTIONS(1603), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1603), - }, - [STATE(585)] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1609), - [anon_sym_import] = ACTIONS(1609), - [anon_sym_test] = ACTIONS(1609), - [anon_sym_hide] = ACTIONS(1609), - [anon_sym_func] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_EQ] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_COMMA] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_noreturn] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_anyopaque] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_range] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_c_char] = ACTIONS(1609), - [anon_sym_c_schar] = ACTIONS(1609), - [anon_sym_c_uchar] = ACTIONS(1609), - [anon_sym_c_short] = ACTIONS(1609), - [anon_sym_c_ushort] = ACTIONS(1609), - [anon_sym_c_int] = ACTIONS(1609), - [anon_sym_c_uint] = ACTIONS(1609), - [anon_sym_c_long] = ACTIONS(1609), - [anon_sym_c_ulong] = ACTIONS(1609), - [anon_sym_c_longlong] = ACTIONS(1609), - [anon_sym_c_ulonglong] = ACTIONS(1609), - [anon_sym_c_float] = ACTIONS(1609), - [anon_sym_c_double] = ACTIONS(1609), - [anon_sym_c_longdouble] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1607), - [anon_sym_DASH_EQ] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1607), - [anon_sym_SLASH_EQ] = ACTIONS(1607), - [anon_sym_AMP_EQ] = ACTIONS(1607), - [anon_sym_PIPE_EQ] = ACTIONS(1607), - [anon_sym_xor_EQ] = ACTIONS(1607), - [anon_sym_LT_LT_EQ] = ACTIONS(1607), - [anon_sym_GT_GT_EQ] = ACTIONS(1607), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_defer] = ACTIONS(1609), - [anon_sym_errdefer] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_expand] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_match] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_orelse] = ACTIONS(1609), - [anon_sym_catch] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_LT_EQ] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1609), - [anon_sym_GT_EQ] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1609), - [anon_sym_GT_GT] = ACTIONS(1609), - [anon_sym_LT_LT_PIPE] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_SLASH] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_DOT] = ACTIONS(1609), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_unreachable] = ACTIONS(1609), - [anon_sym_undefined] = ACTIONS(1609), - [sym_sink] = ACTIONS(1609), - [sym_integer] = ACTIONS(1609), - [sym_float] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_multiline_string] = ACTIONS(1607), - [sym_character] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1607), - }, - [STATE(586)] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym_identifier] = ACTIONS(1613), - [anon_sym_import] = ACTIONS(1613), - [anon_sym_test] = ACTIONS(1613), - [anon_sym_hide] = ACTIONS(1613), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_EQ] = ACTIONS(1613), - [anon_sym_struct] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_RPAREN] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_COMMA] = ACTIONS(1611), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_DOLLAR] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_void] = ACTIONS(1613), - [anon_sym_noreturn] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1613), - [anon_sym_anyopaque] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_int] = ACTIONS(1613), - [anon_sym_uint] = ACTIONS(1613), - [anon_sym_float] = ACTIONS(1613), - [anon_sym_range] = ACTIONS(1613), - [anon_sym_i8] = ACTIONS(1613), - [anon_sym_i16] = ACTIONS(1613), - [anon_sym_i32] = ACTIONS(1613), - [anon_sym_i64] = ACTIONS(1613), - [anon_sym_u8] = ACTIONS(1613), - [anon_sym_u16] = ACTIONS(1613), - [anon_sym_u32] = ACTIONS(1613), - [anon_sym_u64] = ACTIONS(1613), - [anon_sym_isize] = ACTIONS(1613), - [anon_sym_usize] = ACTIONS(1613), - [anon_sym_f32] = ACTIONS(1613), - [anon_sym_f64] = ACTIONS(1613), - [anon_sym_c_char] = ACTIONS(1613), - [anon_sym_c_schar] = ACTIONS(1613), - [anon_sym_c_uchar] = ACTIONS(1613), - [anon_sym_c_short] = ACTIONS(1613), - [anon_sym_c_ushort] = ACTIONS(1613), - [anon_sym_c_int] = ACTIONS(1613), - [anon_sym_c_uint] = ACTIONS(1613), - [anon_sym_c_long] = ACTIONS(1613), - [anon_sym_c_ulong] = ACTIONS(1613), - [anon_sym_c_longlong] = ACTIONS(1613), - [anon_sym_c_ulonglong] = ACTIONS(1613), - [anon_sym_c_float] = ACTIONS(1613), - [anon_sym_c_double] = ACTIONS(1613), - [anon_sym_c_longdouble] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(1611), - [anon_sym_DASH_EQ] = ACTIONS(1611), - [anon_sym_STAR_EQ] = ACTIONS(1611), - [anon_sym_SLASH_EQ] = ACTIONS(1611), - [anon_sym_AMP_EQ] = ACTIONS(1611), - [anon_sym_PIPE_EQ] = ACTIONS(1611), - [anon_sym_xor_EQ] = ACTIONS(1611), - [anon_sym_LT_LT_EQ] = ACTIONS(1611), - [anon_sym_GT_GT_EQ] = ACTIONS(1611), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_yield] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_defer] = ACTIONS(1613), - [anon_sym_errdefer] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_else] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_expand] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_match] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1611), - [anon_sym_orelse] = ACTIONS(1613), - [anon_sym_catch] = ACTIONS(1613), - [anon_sym_or] = ACTIONS(1613), - [anon_sym_and] = ACTIONS(1613), - [anon_sym_EQ_EQ] = ACTIONS(1611), - [anon_sym_BANG_EQ] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_LT_EQ] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1613), - [anon_sym_GT_EQ] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_xor] = ACTIONS(1613), - [anon_sym_LT_LT] = ACTIONS(1613), - [anon_sym_GT_GT] = ACTIONS(1613), - [anon_sym_LT_LT_PIPE] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1613), - [anon_sym_SLASH] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_try] = ACTIONS(1613), - [anon_sym_DOT] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_null] = ACTIONS(1613), - [anon_sym_unreachable] = ACTIONS(1613), - [anon_sym_undefined] = ACTIONS(1613), - [sym_sink] = ACTIONS(1613), - [sym_integer] = ACTIONS(1613), - [sym_float] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_multiline_string] = ACTIONS(1611), - [sym_character] = ACTIONS(1611), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1611), - }, - [STATE(587)] = { - [ts_builtin_sym_end] = ACTIONS(1615), - [sym_identifier] = ACTIONS(1617), - [anon_sym_import] = ACTIONS(1617), - [anon_sym_test] = ACTIONS(1617), - [anon_sym_hide] = ACTIONS(1617), - [anon_sym_func] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_RPAREN] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_COMMA] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_QMARK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_noreturn] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_anyopaque] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_range] = ACTIONS(1617), - [anon_sym_i8] = ACTIONS(1617), - [anon_sym_i16] = ACTIONS(1617), - [anon_sym_i32] = ACTIONS(1617), - [anon_sym_i64] = ACTIONS(1617), - [anon_sym_u8] = ACTIONS(1617), - [anon_sym_u16] = ACTIONS(1617), - [anon_sym_u32] = ACTIONS(1617), - [anon_sym_u64] = ACTIONS(1617), - [anon_sym_isize] = ACTIONS(1617), - [anon_sym_usize] = ACTIONS(1617), - [anon_sym_f32] = ACTIONS(1617), - [anon_sym_f64] = ACTIONS(1617), - [anon_sym_c_char] = ACTIONS(1617), - [anon_sym_c_schar] = ACTIONS(1617), - [anon_sym_c_uchar] = ACTIONS(1617), - [anon_sym_c_short] = ACTIONS(1617), - [anon_sym_c_ushort] = ACTIONS(1617), - [anon_sym_c_int] = ACTIONS(1617), - [anon_sym_c_uint] = ACTIONS(1617), - [anon_sym_c_long] = ACTIONS(1617), - [anon_sym_c_ulong] = ACTIONS(1617), - [anon_sym_c_longlong] = ACTIONS(1617), - [anon_sym_c_ulonglong] = ACTIONS(1617), - [anon_sym_c_float] = ACTIONS(1617), - [anon_sym_c_double] = ACTIONS(1617), - [anon_sym_c_longdouble] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1615), - [anon_sym_DASH_EQ] = ACTIONS(1615), - [anon_sym_STAR_EQ] = ACTIONS(1615), - [anon_sym_SLASH_EQ] = ACTIONS(1615), - [anon_sym_AMP_EQ] = ACTIONS(1615), - [anon_sym_PIPE_EQ] = ACTIONS(1615), - [anon_sym_xor_EQ] = ACTIONS(1615), - [anon_sym_LT_LT_EQ] = ACTIONS(1615), - [anon_sym_GT_GT_EQ] = ACTIONS(1615), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_defer] = ACTIONS(1617), - [anon_sym_errdefer] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_else] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_expand] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1615), - [anon_sym_orelse] = ACTIONS(1617), - [anon_sym_catch] = ACTIONS(1617), - [anon_sym_or] = ACTIONS(1617), - [anon_sym_and] = ACTIONS(1617), - [anon_sym_EQ_EQ] = ACTIONS(1615), - [anon_sym_BANG_EQ] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_LT_EQ] = ACTIONS(1615), - [anon_sym_GT] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_xor] = ACTIONS(1617), - [anon_sym_LT_LT] = ACTIONS(1617), - [anon_sym_GT_GT] = ACTIONS(1617), - [anon_sym_LT_LT_PIPE] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_SLASH] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_unreachable] = ACTIONS(1617), - [anon_sym_undefined] = ACTIONS(1617), - [sym_sink] = ACTIONS(1617), - [sym_integer] = ACTIONS(1617), - [sym_float] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_multiline_string] = ACTIONS(1615), - [sym_character] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1615), - }, - [STATE(588)] = { - [ts_builtin_sym_end] = ACTIONS(1619), - [sym_identifier] = ACTIONS(1621), - [anon_sym_import] = ACTIONS(1621), - [anon_sym_test] = ACTIONS(1621), - [anon_sym_hide] = ACTIONS(1621), - [anon_sym_func] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_EQ] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_RPAREN] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1621), + [STATE(157)] = { + [sym_type] = STATE(14852), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(158)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(159)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(160)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7218), + [sym_labeled_block] = STATE(7218), + [sym_if_statement] = STATE(7218), + [sym_while_statement] = STATE(7218), + [sym_for_statement] = STATE(7218), + [sym_match_statement] = STATE(7218), + [sym__value] = STATE(7218), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_c_func] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_struct_type_BANG] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_AT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1398), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(161)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9582), + [sym_labeled_block] = STATE(9582), + [sym_if_statement] = STATE(9582), + [sym_while_statement] = STATE(9582), + [sym_for_statement] = STATE(9582), + [sym_match_statement] = STATE(9582), + [sym__value] = STATE(9582), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(17), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(162)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7218), + [sym_labeled_block] = STATE(7218), + [sym_if_statement] = STATE(7218), + [sym_while_statement] = STATE(7218), + [sym_for_statement] = STATE(7218), + [sym_match_statement] = STATE(7218), + [sym__value] = STATE(7218), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_c_func] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_struct_type_BANG] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_AT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1398), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(163)] = { + [sym_type] = STATE(8297), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_LT_LT_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1331), + }, + [STATE(164)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9582), + [sym_labeled_block] = STATE(9582), + [sym_if_statement] = STATE(9582), + [sym_while_statement] = STATE(9582), + [sym_for_statement] = STATE(9582), + [sym_match_statement] = STATE(9582), + [sym__value] = STATE(9582), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(17), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(165)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [ts_builtin_sym_end] = ACTIONS(17), + [sym_identifier] = ACTIONS(1462), + [anon_sym_import] = ACTIONS(21), + [anon_sym_test] = ACTIONS(21), + [anon_sym_hide] = ACTIONS(21), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(166)] = { + [sym_type] = STATE(8350), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT_PIPE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1335), + }, + [STATE(167)] = { + [sym_type] = STATE(8354), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_mut] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_LT_LT_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1258), + }, + [STATE(168)] = { + [sym_type] = STATE(8340), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(1194), + [anon_sym_func] = ACTIONS(1194), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_RBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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_COLON] = ACTIONS(1192), + [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(1196), + [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(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(169)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [ts_builtin_sym_end] = ACTIONS(17), + [sym_identifier] = ACTIONS(1462), + [anon_sym_import] = ACTIONS(21), + [anon_sym_test] = ACTIONS(21), + [anon_sym_hide] = ACTIONS(21), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(170)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9582), + [sym_labeled_block] = STATE(9582), + [sym_if_statement] = STATE(9582), + [sym_while_statement] = STATE(9582), + [sym_for_statement] = STATE(9582), + [sym_match_statement] = STATE(9582), + [sym__value] = STATE(9582), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_if] = ACTIONS(557), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(171)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9582), + [sym_labeled_block] = STATE(9582), + [sym_if_statement] = STATE(9582), + [sym_while_statement] = STATE(9582), + [sym_for_statement] = STATE(9582), + [sym_match_statement] = STATE(9582), + [sym__value] = STATE(9582), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(172)] = { + [sym_type] = STATE(14990), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(173)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(174)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10682), + [sym_labeled_block] = STATE(10682), + [sym_if_statement] = STATE(10682), + [sym_while_statement] = STATE(10682), + [sym_for_statement] = STATE(10682), + [sym_match_statement] = STATE(10682), + [sym__value] = STATE(10682), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_PIPE2] = ACTIONS(17), + [anon_sym_match] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(175)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(176)] = { + [sym_type] = STATE(14940), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(177)] = { + [sym_type] = STATE(3046), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1194), + [anon_sym_func] = ACTIONS(1194), + [anon_sym_c_func] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_struct_type_BANG] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_mut] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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(1196), + [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(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(178)] = { + [sym_type] = STATE(14990), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(179)] = { + [sym_type] = STATE(2997), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_c_func] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_struct_type_BANG] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT_PIPE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1335), + }, + [STATE(180)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9582), + [sym_labeled_block] = STATE(9582), + [sym_if_statement] = STATE(9582), + [sym_while_statement] = STATE(9582), + [sym_for_statement] = STATE(9582), + [sym_match_statement] = STATE(9582), + [sym__value] = STATE(9582), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(181)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(182)] = { + [sym_type] = STATE(2978), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1578), + [anon_sym_func] = ACTIONS(1581), + [anon_sym_c_func] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_struct_type_BANG] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_noreturn] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1604), + [anon_sym_anyopaque] = ACTIONS(1604), + [anon_sym_bool] = ACTIONS(1604), + [anon_sym_int] = ACTIONS(1604), + [anon_sym_uint] = ACTIONS(1604), + [anon_sym_float] = ACTIONS(1604), + [anon_sym_range] = ACTIONS(1604), + [anon_sym_i8] = ACTIONS(1604), + [anon_sym_i16] = ACTIONS(1604), + [anon_sym_i32] = ACTIONS(1604), + [anon_sym_i64] = ACTIONS(1604), + [anon_sym_u8] = ACTIONS(1604), + [anon_sym_u16] = ACTIONS(1604), + [anon_sym_u32] = ACTIONS(1604), + [anon_sym_u64] = ACTIONS(1604), + [anon_sym_isize] = ACTIONS(1604), + [anon_sym_usize] = ACTIONS(1604), + [anon_sym_f32] = ACTIONS(1604), + [anon_sym_f64] = ACTIONS(1604), + [anon_sym_c_char] = ACTIONS(1604), + [anon_sym_c_schar] = ACTIONS(1604), + [anon_sym_c_uchar] = ACTIONS(1604), + [anon_sym_c_short] = ACTIONS(1604), + [anon_sym_c_ushort] = ACTIONS(1604), + [anon_sym_c_int] = ACTIONS(1604), + [anon_sym_c_uint] = ACTIONS(1604), + [anon_sym_c_long] = ACTIONS(1604), + [anon_sym_c_ulong] = ACTIONS(1604), + [anon_sym_c_longlong] = ACTIONS(1604), + [anon_sym_c_ulonglong] = ACTIONS(1604), + [anon_sym_c_float] = ACTIONS(1604), + [anon_sym_c_double] = ACTIONS(1604), + [anon_sym_c_longdouble] = ACTIONS(1604), + [anon_sym_PLUS_EQ] = ACTIONS(1202), + [anon_sym_DASH_EQ] = ACTIONS(1202), + [anon_sym_STAR_EQ] = ACTIONS(1202), + [anon_sym_SLASH_EQ] = ACTIONS(1202), + [anon_sym_AMP_EQ] = ACTIONS(1202), + [anon_sym_PIPE_EQ] = ACTIONS(1202), + [anon_sym_xor_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_EQ] = ACTIONS(1202), + [anon_sym_GT_GT_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1202), + [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(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [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_catch] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), + [anon_sym_null] = ACTIONS(1207), + [anon_sym_unreachable] = ACTIONS(1207), + [anon_sym_undefined] = ACTIONS(1207), + [sym_sink] = ACTIONS(1207), + [sym_integer] = ACTIONS(1207), + [sym_float] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_multiline_string] = ACTIONS(1202), + [sym_character] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(183)] = { + [sym_type] = STATE(2997), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1607), + [anon_sym_func] = ACTIONS(1557), + [anon_sym_c_func] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1613), + [anon_sym_AT] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_mut] = ACTIONS(1566), [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_noreturn] = ACTIONS(1621), - [anon_sym_type] = ACTIONS(1621), - [anon_sym_anyopaque] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_int] = ACTIONS(1621), - [anon_sym_uint] = ACTIONS(1621), - [anon_sym_float] = ACTIONS(1621), - [anon_sym_range] = ACTIONS(1621), - [anon_sym_i8] = ACTIONS(1621), - [anon_sym_i16] = ACTIONS(1621), - [anon_sym_i32] = ACTIONS(1621), - [anon_sym_i64] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1621), - [anon_sym_u16] = ACTIONS(1621), - [anon_sym_u32] = ACTIONS(1621), - [anon_sym_u64] = ACTIONS(1621), - [anon_sym_isize] = ACTIONS(1621), - [anon_sym_usize] = ACTIONS(1621), - [anon_sym_f32] = ACTIONS(1621), - [anon_sym_f64] = ACTIONS(1621), - [anon_sym_c_char] = ACTIONS(1621), - [anon_sym_c_schar] = ACTIONS(1621), - [anon_sym_c_uchar] = ACTIONS(1621), - [anon_sym_c_short] = ACTIONS(1621), - [anon_sym_c_ushort] = ACTIONS(1621), - [anon_sym_c_int] = ACTIONS(1621), - [anon_sym_c_uint] = ACTIONS(1621), - [anon_sym_c_long] = ACTIONS(1621), - [anon_sym_c_ulong] = ACTIONS(1621), - [anon_sym_c_longlong] = ACTIONS(1621), - [anon_sym_c_ulonglong] = ACTIONS(1621), - [anon_sym_c_float] = ACTIONS(1621), - [anon_sym_c_double] = ACTIONS(1621), - [anon_sym_c_longdouble] = ACTIONS(1621), - [anon_sym_PLUS_EQ] = ACTIONS(1619), - [anon_sym_DASH_EQ] = ACTIONS(1619), - [anon_sym_STAR_EQ] = ACTIONS(1619), - [anon_sym_SLASH_EQ] = ACTIONS(1619), - [anon_sym_AMP_EQ] = ACTIONS(1619), - [anon_sym_PIPE_EQ] = ACTIONS(1619), - [anon_sym_xor_EQ] = ACTIONS(1619), - [anon_sym_LT_LT_EQ] = ACTIONS(1619), - [anon_sym_GT_GT_EQ] = ACTIONS(1619), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_yield] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_defer] = ACTIONS(1621), - [anon_sym_errdefer] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_expand] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), - [anon_sym_orelse] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_or] = ACTIONS(1621), - [anon_sym_and] = ACTIONS(1621), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_xor] = ACTIONS(1621), - [anon_sym_LT_LT] = ACTIONS(1621), - [anon_sym_GT_GT] = ACTIONS(1621), - [anon_sym_LT_LT_PIPE] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1619), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_DOT] = ACTIONS(1621), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1621), - [anon_sym_unreachable] = ACTIONS(1621), - [anon_sym_undefined] = ACTIONS(1621), - [sym_sink] = ACTIONS(1621), - [sym_integer] = ACTIONS(1621), - [sym_float] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [sym_multiline_string] = ACTIONS(1619), - [sym_character] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1622), + [anon_sym_noreturn] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_anyopaque] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_int] = ACTIONS(1622), + [anon_sym_uint] = ACTIONS(1622), + [anon_sym_float] = ACTIONS(1622), + [anon_sym_range] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_c_char] = ACTIONS(1622), + [anon_sym_c_schar] = ACTIONS(1622), + [anon_sym_c_uchar] = ACTIONS(1622), + [anon_sym_c_short] = ACTIONS(1622), + [anon_sym_c_ushort] = ACTIONS(1622), + [anon_sym_c_int] = ACTIONS(1622), + [anon_sym_c_uint] = ACTIONS(1622), + [anon_sym_c_long] = ACTIONS(1622), + [anon_sym_c_ulong] = ACTIONS(1622), + [anon_sym_c_longlong] = ACTIONS(1622), + [anon_sym_c_ulonglong] = ACTIONS(1622), + [anon_sym_c_float] = ACTIONS(1622), + [anon_sym_c_double] = ACTIONS(1622), + [anon_sym_c_longdouble] = ACTIONS(1622), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_defer] = ACTIONS(1164), + [anon_sym_errdefer] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_expand] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_unreachable] = ACTIONS(1164), + [anon_sym_undefined] = ACTIONS(1164), + [sym_sink] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [sym_float] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_multiline_string] = ACTIONS(1159), + [sym_character] = ACTIONS(1159), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1619), + [sym__newline] = ACTIONS(1159), }, - [STATE(589)] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1625), - [anon_sym_import] = ACTIONS(1625), - [anon_sym_test] = ACTIONS(1625), - [anon_sym_hide] = ACTIONS(1625), - [anon_sym_func] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DOLLAR] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_QMARK] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_noreturn] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_anyopaque] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_int] = ACTIONS(1625), - [anon_sym_uint] = ACTIONS(1625), - [anon_sym_float] = ACTIONS(1625), - [anon_sym_range] = ACTIONS(1625), - [anon_sym_i8] = ACTIONS(1625), - [anon_sym_i16] = ACTIONS(1625), - [anon_sym_i32] = ACTIONS(1625), - [anon_sym_i64] = ACTIONS(1625), - [anon_sym_u8] = ACTIONS(1625), - [anon_sym_u16] = ACTIONS(1625), - [anon_sym_u32] = ACTIONS(1625), - [anon_sym_u64] = ACTIONS(1625), - [anon_sym_isize] = ACTIONS(1625), - [anon_sym_usize] = ACTIONS(1625), - [anon_sym_f32] = ACTIONS(1625), - [anon_sym_f64] = ACTIONS(1625), - [anon_sym_c_char] = ACTIONS(1625), - [anon_sym_c_schar] = ACTIONS(1625), - [anon_sym_c_uchar] = ACTIONS(1625), - [anon_sym_c_short] = ACTIONS(1625), - [anon_sym_c_ushort] = ACTIONS(1625), - [anon_sym_c_int] = ACTIONS(1625), - [anon_sym_c_uint] = ACTIONS(1625), - [anon_sym_c_long] = ACTIONS(1625), - [anon_sym_c_ulong] = ACTIONS(1625), - [anon_sym_c_longlong] = ACTIONS(1625), - [anon_sym_c_ulonglong] = ACTIONS(1625), - [anon_sym_c_float] = ACTIONS(1625), - [anon_sym_c_double] = ACTIONS(1625), - [anon_sym_c_longdouble] = ACTIONS(1625), - [anon_sym_PLUS_EQ] = ACTIONS(1623), - [anon_sym_DASH_EQ] = ACTIONS(1623), - [anon_sym_STAR_EQ] = ACTIONS(1623), - [anon_sym_SLASH_EQ] = ACTIONS(1623), - [anon_sym_AMP_EQ] = ACTIONS(1623), - [anon_sym_PIPE_EQ] = ACTIONS(1623), - [anon_sym_xor_EQ] = ACTIONS(1623), - [anon_sym_LT_LT_EQ] = ACTIONS(1623), - [anon_sym_GT_GT_EQ] = ACTIONS(1623), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_yield] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_defer] = ACTIONS(1625), - [anon_sym_errdefer] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_expand] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), - [anon_sym_orelse] = ACTIONS(1625), - [anon_sym_catch] = ACTIONS(1625), - [anon_sym_or] = ACTIONS(1625), - [anon_sym_and] = ACTIONS(1625), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_xor] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1625), - [anon_sym_GT_GT] = ACTIONS(1625), - [anon_sym_LT_LT_PIPE] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_SLASH] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_null] = ACTIONS(1625), - [anon_sym_unreachable] = ACTIONS(1625), - [anon_sym_undefined] = ACTIONS(1625), - [sym_sink] = ACTIONS(1625), - [sym_integer] = ACTIONS(1625), - [sym_float] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_multiline_string] = ACTIONS(1623), - [sym_character] = ACTIONS(1623), + [STATE(184)] = { + [sym_type] = STATE(2996), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1607), + [anon_sym_func] = ACTIONS(1557), + [anon_sym_c_func] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1613), + [anon_sym_AT] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1622), + [anon_sym_noreturn] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_anyopaque] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_int] = ACTIONS(1622), + [anon_sym_uint] = ACTIONS(1622), + [anon_sym_float] = ACTIONS(1622), + [anon_sym_range] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_c_char] = ACTIONS(1622), + [anon_sym_c_schar] = ACTIONS(1622), + [anon_sym_c_uchar] = ACTIONS(1622), + [anon_sym_c_short] = ACTIONS(1622), + [anon_sym_c_ushort] = ACTIONS(1622), + [anon_sym_c_int] = ACTIONS(1622), + [anon_sym_c_uint] = ACTIONS(1622), + [anon_sym_c_long] = ACTIONS(1622), + [anon_sym_c_ulong] = ACTIONS(1622), + [anon_sym_c_longlong] = ACTIONS(1622), + [anon_sym_c_ulonglong] = ACTIONS(1622), + [anon_sym_c_float] = ACTIONS(1622), + [anon_sym_c_double] = ACTIONS(1622), + [anon_sym_c_longdouble] = ACTIONS(1622), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_defer] = ACTIONS(1164), + [anon_sym_errdefer] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_expand] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_unreachable] = ACTIONS(1164), + [anon_sym_undefined] = ACTIONS(1164), + [sym_sink] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [sym_float] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_multiline_string] = ACTIONS(1159), + [sym_character] = ACTIONS(1159), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1623), + [sym__newline] = ACTIONS(1159), }, - [STATE(590)] = { - [ts_builtin_sym_end] = ACTIONS(1627), - [sym_identifier] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1629), - [anon_sym_test] = ACTIONS(1629), - [anon_sym_hide] = ACTIONS(1629), - [anon_sym_func] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_EQ] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1627), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1629), - [anon_sym_noreturn] = ACTIONS(1629), - [anon_sym_type] = ACTIONS(1629), - [anon_sym_anyopaque] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_int] = ACTIONS(1629), - [anon_sym_uint] = ACTIONS(1629), - [anon_sym_float] = ACTIONS(1629), - [anon_sym_range] = ACTIONS(1629), - [anon_sym_i8] = ACTIONS(1629), - [anon_sym_i16] = ACTIONS(1629), - [anon_sym_i32] = ACTIONS(1629), - [anon_sym_i64] = ACTIONS(1629), - [anon_sym_u8] = ACTIONS(1629), - [anon_sym_u16] = ACTIONS(1629), - [anon_sym_u32] = ACTIONS(1629), - [anon_sym_u64] = ACTIONS(1629), - [anon_sym_isize] = ACTIONS(1629), - [anon_sym_usize] = ACTIONS(1629), - [anon_sym_f32] = ACTIONS(1629), - [anon_sym_f64] = ACTIONS(1629), - [anon_sym_c_char] = ACTIONS(1629), - [anon_sym_c_schar] = ACTIONS(1629), - [anon_sym_c_uchar] = ACTIONS(1629), - [anon_sym_c_short] = ACTIONS(1629), - [anon_sym_c_ushort] = ACTIONS(1629), - [anon_sym_c_int] = ACTIONS(1629), - [anon_sym_c_uint] = ACTIONS(1629), - [anon_sym_c_long] = ACTIONS(1629), - [anon_sym_c_ulong] = ACTIONS(1629), - [anon_sym_c_longlong] = ACTIONS(1629), - [anon_sym_c_ulonglong] = ACTIONS(1629), - [anon_sym_c_float] = ACTIONS(1629), - [anon_sym_c_double] = ACTIONS(1629), - [anon_sym_c_longdouble] = ACTIONS(1629), - [anon_sym_PLUS_EQ] = ACTIONS(1627), - [anon_sym_DASH_EQ] = ACTIONS(1627), - [anon_sym_STAR_EQ] = ACTIONS(1627), - [anon_sym_SLASH_EQ] = ACTIONS(1627), - [anon_sym_AMP_EQ] = ACTIONS(1627), - [anon_sym_PIPE_EQ] = ACTIONS(1627), - [anon_sym_xor_EQ] = ACTIONS(1627), - [anon_sym_LT_LT_EQ] = ACTIONS(1627), - [anon_sym_GT_GT_EQ] = ACTIONS(1627), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_yield] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_defer] = ACTIONS(1629), - [anon_sym_errdefer] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_else] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_expand] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_match] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1627), - [anon_sym_orelse] = ACTIONS(1629), - [anon_sym_catch] = ACTIONS(1629), - [anon_sym_or] = ACTIONS(1629), - [anon_sym_and] = ACTIONS(1629), - [anon_sym_EQ_EQ] = ACTIONS(1627), - [anon_sym_BANG_EQ] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1629), - [anon_sym_LT_EQ] = ACTIONS(1627), - [anon_sym_GT] = ACTIONS(1629), - [anon_sym_GT_EQ] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_xor] = ACTIONS(1629), - [anon_sym_LT_LT] = ACTIONS(1629), - [anon_sym_GT_GT] = ACTIONS(1629), - [anon_sym_LT_LT_PIPE] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_try] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(1629), - [anon_sym_CARET] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_unreachable] = ACTIONS(1629), - [anon_sym_undefined] = ACTIONS(1629), - [sym_sink] = ACTIONS(1629), - [sym_integer] = ACTIONS(1629), - [sym_float] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [sym_multiline_string] = ACTIONS(1627), - [sym_character] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1627), - }, - [STATE(591)] = { - [ts_builtin_sym_end] = ACTIONS(1631), - [sym_identifier] = ACTIONS(1633), - [anon_sym_import] = ACTIONS(1633), - [anon_sym_test] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_func] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_EQ] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_COMMA] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_void] = ACTIONS(1633), - [anon_sym_noreturn] = 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(1631), - [anon_sym_DASH_EQ] = ACTIONS(1631), - [anon_sym_STAR_EQ] = ACTIONS(1631), - [anon_sym_SLASH_EQ] = ACTIONS(1631), - [anon_sym_AMP_EQ] = ACTIONS(1631), - [anon_sym_PIPE_EQ] = ACTIONS(1631), - [anon_sym_xor_EQ] = ACTIONS(1631), - [anon_sym_LT_LT_EQ] = ACTIONS(1631), - [anon_sym_GT_GT_EQ] = ACTIONS(1631), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_yield] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_defer] = ACTIONS(1633), - [anon_sym_errdefer] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_expand] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_orelse] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_or] = ACTIONS(1633), - [anon_sym_and] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1631), - [anon_sym_BANG_EQ] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LT_EQ] = ACTIONS(1631), - [anon_sym_GT] = ACTIONS(1633), - [anon_sym_GT_EQ] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_xor] = ACTIONS(1633), - [anon_sym_LT_LT] = ACTIONS(1633), - [anon_sym_GT_GT] = ACTIONS(1633), - [anon_sym_LT_LT_PIPE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_DOT] = ACTIONS(1633), - [anon_sym_CARET] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [anon_sym_unreachable] = ACTIONS(1633), - [anon_sym_undefined] = ACTIONS(1633), - [sym_sink] = ACTIONS(1633), - [sym_integer] = ACTIONS(1633), - [sym_float] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_multiline_string] = ACTIONS(1631), - [sym_character] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1631), - }, - [STATE(592)] = { - [ts_builtin_sym_end] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1637), - [anon_sym_import] = ACTIONS(1637), - [anon_sym_test] = ACTIONS(1637), - [anon_sym_hide] = ACTIONS(1637), - [anon_sym_func] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_EQ] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_COMMA] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_QMARK] = ACTIONS(1635), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_LBRACK] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_noreturn] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_anyopaque] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_int] = ACTIONS(1637), - [anon_sym_uint] = ACTIONS(1637), - [anon_sym_float] = ACTIONS(1637), - [anon_sym_range] = ACTIONS(1637), - [anon_sym_i8] = ACTIONS(1637), - [anon_sym_i16] = ACTIONS(1637), - [anon_sym_i32] = ACTIONS(1637), - [anon_sym_i64] = ACTIONS(1637), - [anon_sym_u8] = ACTIONS(1637), - [anon_sym_u16] = ACTIONS(1637), - [anon_sym_u32] = ACTIONS(1637), - [anon_sym_u64] = ACTIONS(1637), - [anon_sym_isize] = ACTIONS(1637), - [anon_sym_usize] = ACTIONS(1637), - [anon_sym_f32] = ACTIONS(1637), - [anon_sym_f64] = ACTIONS(1637), - [anon_sym_c_char] = ACTIONS(1637), - [anon_sym_c_schar] = ACTIONS(1637), - [anon_sym_c_uchar] = ACTIONS(1637), - [anon_sym_c_short] = ACTIONS(1637), - [anon_sym_c_ushort] = ACTIONS(1637), - [anon_sym_c_int] = ACTIONS(1637), - [anon_sym_c_uint] = ACTIONS(1637), - [anon_sym_c_long] = ACTIONS(1637), - [anon_sym_c_ulong] = ACTIONS(1637), - [anon_sym_c_longlong] = ACTIONS(1637), - [anon_sym_c_ulonglong] = ACTIONS(1637), - [anon_sym_c_float] = ACTIONS(1637), - [anon_sym_c_double] = ACTIONS(1637), - [anon_sym_c_longdouble] = ACTIONS(1637), - [anon_sym_PLUS_EQ] = ACTIONS(1635), - [anon_sym_DASH_EQ] = ACTIONS(1635), - [anon_sym_STAR_EQ] = ACTIONS(1635), - [anon_sym_SLASH_EQ] = ACTIONS(1635), - [anon_sym_AMP_EQ] = ACTIONS(1635), - [anon_sym_PIPE_EQ] = ACTIONS(1635), - [anon_sym_xor_EQ] = ACTIONS(1635), - [anon_sym_LT_LT_EQ] = ACTIONS(1635), - [anon_sym_GT_GT_EQ] = ACTIONS(1635), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1635), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_defer] = ACTIONS(1637), - [anon_sym_errdefer] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_expand] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1635), - [anon_sym_orelse] = ACTIONS(1637), - [anon_sym_catch] = ACTIONS(1637), - [anon_sym_or] = ACTIONS(1637), - [anon_sym_and] = ACTIONS(1637), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1635), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_xor] = ACTIONS(1637), - [anon_sym_LT_LT] = ACTIONS(1637), - [anon_sym_GT_GT] = ACTIONS(1637), - [anon_sym_LT_LT_PIPE] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_CARET] = ACTIONS(1635), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [anon_sym_null] = ACTIONS(1637), - [anon_sym_unreachable] = ACTIONS(1637), - [anon_sym_undefined] = ACTIONS(1637), - [sym_sink] = ACTIONS(1637), - [sym_integer] = ACTIONS(1637), - [sym_float] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_multiline_string] = ACTIONS(1635), - [sym_character] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1635), - }, - [STATE(593)] = { - [ts_builtin_sym_end] = ACTIONS(1639), - [sym_identifier] = ACTIONS(1641), - [anon_sym_import] = ACTIONS(1641), - [anon_sym_test] = ACTIONS(1641), - [anon_sym_hide] = ACTIONS(1641), - [anon_sym_func] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_EQ] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_COMMA] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1641), + [STATE(185)] = { + [sym_type] = STATE(3013), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1627), + [anon_sym_func] = ACTIONS(1630), + [anon_sym_c_func] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1636), [anon_sym_QMARK] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_void] = ACTIONS(1641), - [anon_sym_noreturn] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_anyopaque] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_int] = ACTIONS(1641), - [anon_sym_uint] = ACTIONS(1641), - [anon_sym_float] = ACTIONS(1641), - [anon_sym_range] = ACTIONS(1641), - [anon_sym_i8] = ACTIONS(1641), - [anon_sym_i16] = ACTIONS(1641), - [anon_sym_i32] = ACTIONS(1641), - [anon_sym_i64] = ACTIONS(1641), - [anon_sym_u8] = ACTIONS(1641), - [anon_sym_u16] = ACTIONS(1641), - [anon_sym_u32] = ACTIONS(1641), - [anon_sym_u64] = ACTIONS(1641), - [anon_sym_isize] = ACTIONS(1641), - [anon_sym_usize] = ACTIONS(1641), - [anon_sym_f32] = ACTIONS(1641), - [anon_sym_f64] = ACTIONS(1641), - [anon_sym_c_char] = ACTIONS(1641), - [anon_sym_c_schar] = ACTIONS(1641), - [anon_sym_c_uchar] = ACTIONS(1641), - [anon_sym_c_short] = ACTIONS(1641), - [anon_sym_c_ushort] = ACTIONS(1641), - [anon_sym_c_int] = ACTIONS(1641), - [anon_sym_c_uint] = ACTIONS(1641), - [anon_sym_c_long] = ACTIONS(1641), - [anon_sym_c_ulong] = ACTIONS(1641), - [anon_sym_c_longlong] = ACTIONS(1641), - [anon_sym_c_ulonglong] = ACTIONS(1641), - [anon_sym_c_float] = ACTIONS(1641), - [anon_sym_c_double] = ACTIONS(1641), - [anon_sym_c_longdouble] = ACTIONS(1641), - [anon_sym_PLUS_EQ] = ACTIONS(1639), - [anon_sym_DASH_EQ] = ACTIONS(1639), - [anon_sym_STAR_EQ] = ACTIONS(1639), - [anon_sym_SLASH_EQ] = ACTIONS(1639), - [anon_sym_AMP_EQ] = ACTIONS(1639), - [anon_sym_PIPE_EQ] = ACTIONS(1639), - [anon_sym_xor_EQ] = ACTIONS(1639), - [anon_sym_LT_LT_EQ] = ACTIONS(1639), - [anon_sym_GT_GT_EQ] = ACTIONS(1639), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1639), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_yield] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_defer] = ACTIONS(1641), - [anon_sym_errdefer] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_expand] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), - [anon_sym_orelse] = ACTIONS(1641), - [anon_sym_catch] = ACTIONS(1641), - [anon_sym_or] = ACTIONS(1641), - [anon_sym_and] = ACTIONS(1641), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1641), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1641), - [anon_sym_GT_EQ] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_xor] = ACTIONS(1641), - [anon_sym_LT_LT] = ACTIONS(1641), - [anon_sym_GT_GT] = ACTIONS(1641), - [anon_sym_LT_LT_PIPE] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_SLASH] = ACTIONS(1641), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [anon_sym_unreachable] = ACTIONS(1641), - [anon_sym_undefined] = ACTIONS(1641), - [sym_sink] = ACTIONS(1641), - [sym_integer] = ACTIONS(1641), - [sym_float] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_multiline_string] = ACTIONS(1639), - [sym_character] = ACTIONS(1639), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1639), - }, - [STATE(594)] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1645), - [anon_sym_import] = ACTIONS(1645), - [anon_sym_test] = ACTIONS(1645), - [anon_sym_hide] = ACTIONS(1645), - [anon_sym_func] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_EQ] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_COMMA] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_AT] = ACTIONS(1642), [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(1645), - [anon_sym_noreturn] = ACTIONS(1645), - [anon_sym_type] = ACTIONS(1645), - [anon_sym_anyopaque] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_int] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_range] = ACTIONS(1645), - [anon_sym_i8] = ACTIONS(1645), - [anon_sym_i16] = ACTIONS(1645), - [anon_sym_i32] = ACTIONS(1645), - [anon_sym_i64] = ACTIONS(1645), - [anon_sym_u8] = ACTIONS(1645), - [anon_sym_u16] = ACTIONS(1645), - [anon_sym_u32] = ACTIONS(1645), - [anon_sym_u64] = ACTIONS(1645), - [anon_sym_isize] = ACTIONS(1645), - [anon_sym_usize] = ACTIONS(1645), - [anon_sym_f32] = ACTIONS(1645), - [anon_sym_f64] = ACTIONS(1645), - [anon_sym_c_char] = ACTIONS(1645), - [anon_sym_c_schar] = ACTIONS(1645), - [anon_sym_c_uchar] = ACTIONS(1645), - [anon_sym_c_short] = ACTIONS(1645), - [anon_sym_c_ushort] = ACTIONS(1645), - [anon_sym_c_int] = ACTIONS(1645), - [anon_sym_c_uint] = ACTIONS(1645), - [anon_sym_c_long] = ACTIONS(1645), - [anon_sym_c_ulong] = ACTIONS(1645), - [anon_sym_c_longlong] = ACTIONS(1645), - [anon_sym_c_ulonglong] = ACTIONS(1645), - [anon_sym_c_float] = ACTIONS(1645), - [anon_sym_c_double] = ACTIONS(1645), - [anon_sym_c_longdouble] = ACTIONS(1645), - [anon_sym_PLUS_EQ] = ACTIONS(1643), - [anon_sym_DASH_EQ] = ACTIONS(1643), - [anon_sym_STAR_EQ] = ACTIONS(1643), - [anon_sym_SLASH_EQ] = ACTIONS(1643), - [anon_sym_AMP_EQ] = ACTIONS(1643), - [anon_sym_PIPE_EQ] = ACTIONS(1643), - [anon_sym_xor_EQ] = ACTIONS(1643), - [anon_sym_LT_LT_EQ] = ACTIONS(1643), - [anon_sym_GT_GT_EQ] = ACTIONS(1643), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_yield] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_defer] = ACTIONS(1645), - [anon_sym_errdefer] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_expand] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_orelse] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_or] = ACTIONS(1645), - [anon_sym_and] = ACTIONS(1645), - [anon_sym_EQ_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_xor] = ACTIONS(1645), - [anon_sym_LT_LT] = ACTIONS(1645), - [anon_sym_GT_GT] = ACTIONS(1645), - [anon_sym_LT_LT_PIPE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [anon_sym_unreachable] = ACTIONS(1645), - [anon_sym_undefined] = ACTIONS(1645), - [sym_sink] = ACTIONS(1645), - [sym_integer] = ACTIONS(1645), - [sym_float] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_multiline_string] = ACTIONS(1643), - [sym_character] = ACTIONS(1643), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1643), - }, - [STATE(595)] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym_identifier] = ACTIONS(1649), - [anon_sym_import] = ACTIONS(1649), - [anon_sym_test] = ACTIONS(1649), - [anon_sym_hide] = ACTIONS(1649), - [anon_sym_func] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_EQ] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_COMMA] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_QMARK] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_noreturn] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_anyopaque] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_range] = ACTIONS(1649), - [anon_sym_i8] = ACTIONS(1649), - [anon_sym_i16] = ACTIONS(1649), - [anon_sym_i32] = ACTIONS(1649), - [anon_sym_i64] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1649), - [anon_sym_u16] = ACTIONS(1649), - [anon_sym_u32] = ACTIONS(1649), - [anon_sym_u64] = ACTIONS(1649), - [anon_sym_isize] = ACTIONS(1649), - [anon_sym_usize] = ACTIONS(1649), - [anon_sym_f32] = ACTIONS(1649), - [anon_sym_f64] = ACTIONS(1649), - [anon_sym_c_char] = ACTIONS(1649), - [anon_sym_c_schar] = ACTIONS(1649), - [anon_sym_c_uchar] = ACTIONS(1649), - [anon_sym_c_short] = ACTIONS(1649), - [anon_sym_c_ushort] = ACTIONS(1649), - [anon_sym_c_int] = ACTIONS(1649), - [anon_sym_c_uint] = ACTIONS(1649), - [anon_sym_c_long] = ACTIONS(1649), - [anon_sym_c_ulong] = ACTIONS(1649), - [anon_sym_c_longlong] = ACTIONS(1649), - [anon_sym_c_ulonglong] = ACTIONS(1649), - [anon_sym_c_float] = ACTIONS(1649), - [anon_sym_c_double] = ACTIONS(1649), - [anon_sym_c_longdouble] = ACTIONS(1649), - [anon_sym_PLUS_EQ] = ACTIONS(1647), - [anon_sym_DASH_EQ] = ACTIONS(1647), - [anon_sym_STAR_EQ] = ACTIONS(1647), - [anon_sym_SLASH_EQ] = ACTIONS(1647), - [anon_sym_AMP_EQ] = ACTIONS(1647), - [anon_sym_PIPE_EQ] = ACTIONS(1647), - [anon_sym_xor_EQ] = ACTIONS(1647), - [anon_sym_LT_LT_EQ] = ACTIONS(1647), - [anon_sym_GT_GT_EQ] = ACTIONS(1647), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_errdefer] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_expand] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1647), - [anon_sym_orelse] = ACTIONS(1649), - [anon_sym_catch] = ACTIONS(1649), - [anon_sym_or] = ACTIONS(1649), - [anon_sym_and] = ACTIONS(1649), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1649), - [anon_sym_GT_EQ] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_xor] = ACTIONS(1649), - [anon_sym_LT_LT] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1649), - [anon_sym_LT_LT_PIPE] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_SLASH] = ACTIONS(1649), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1649), - [anon_sym_CARET] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_unreachable] = ACTIONS(1649), - [anon_sym_undefined] = ACTIONS(1649), - [sym_sink] = ACTIONS(1649), - [sym_integer] = ACTIONS(1649), - [sym_float] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_multiline_string] = ACTIONS(1647), - [sym_character] = ACTIONS(1647), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1647), - }, - [STATE(596)] = { - [ts_builtin_sym_end] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1653), - [anon_sym_import] = ACTIONS(1653), - [anon_sym_test] = ACTIONS(1653), - [anon_sym_hide] = ACTIONS(1653), - [anon_sym_func] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_EQ] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1650), [anon_sym_void] = ACTIONS(1653), [anon_sym_noreturn] = ACTIONS(1653), [anon_sym_type] = ACTIONS(1653), @@ -88199,2156 +63939,1842 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(1653), [anon_sym_c_double] = ACTIONS(1653), [anon_sym_c_longdouble] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1651), - [anon_sym_DASH_EQ] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1651), - [anon_sym_SLASH_EQ] = ACTIONS(1651), - [anon_sym_AMP_EQ] = ACTIONS(1651), - [anon_sym_PIPE_EQ] = ACTIONS(1651), - [anon_sym_xor_EQ] = ACTIONS(1651), - [anon_sym_LT_LT_EQ] = ACTIONS(1651), - [anon_sym_GT_GT_EQ] = ACTIONS(1651), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_yield] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_errdefer] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_expand] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1651), - [anon_sym_orelse] = ACTIONS(1653), - [anon_sym_catch] = ACTIONS(1653), - [anon_sym_or] = ACTIONS(1653), - [anon_sym_and] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_xor] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT_PIPE] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_CARET] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_unreachable] = ACTIONS(1653), - [anon_sym_undefined] = ACTIONS(1653), - [sym_sink] = ACTIONS(1653), - [sym_integer] = ACTIONS(1653), - [sym_float] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym_multiline_string] = ACTIONS(1651), - [sym_character] = ACTIONS(1651), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1651), + [sym__newline] = ACTIONS(1252), }, - [STATE(597)] = { - [ts_builtin_sym_end] = ACTIONS(1655), - [sym_identifier] = ACTIONS(1657), - [anon_sym_import] = ACTIONS(1657), - [anon_sym_test] = ACTIONS(1657), - [anon_sym_hide] = ACTIONS(1657), - [anon_sym_func] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_EQ] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_noreturn] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_anyopaque] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_range] = ACTIONS(1657), - [anon_sym_i8] = ACTIONS(1657), - [anon_sym_i16] = ACTIONS(1657), - [anon_sym_i32] = ACTIONS(1657), - [anon_sym_i64] = ACTIONS(1657), - [anon_sym_u8] = ACTIONS(1657), - [anon_sym_u16] = ACTIONS(1657), - [anon_sym_u32] = ACTIONS(1657), - [anon_sym_u64] = ACTIONS(1657), - [anon_sym_isize] = ACTIONS(1657), - [anon_sym_usize] = ACTIONS(1657), - [anon_sym_f32] = ACTIONS(1657), - [anon_sym_f64] = ACTIONS(1657), - [anon_sym_c_char] = ACTIONS(1657), - [anon_sym_c_schar] = ACTIONS(1657), - [anon_sym_c_uchar] = ACTIONS(1657), - [anon_sym_c_short] = ACTIONS(1657), - [anon_sym_c_ushort] = ACTIONS(1657), - [anon_sym_c_int] = ACTIONS(1657), - [anon_sym_c_uint] = ACTIONS(1657), - [anon_sym_c_long] = ACTIONS(1657), - [anon_sym_c_ulong] = ACTIONS(1657), - [anon_sym_c_longlong] = ACTIONS(1657), - [anon_sym_c_ulonglong] = ACTIONS(1657), - [anon_sym_c_float] = ACTIONS(1657), - [anon_sym_c_double] = ACTIONS(1657), - [anon_sym_c_longdouble] = ACTIONS(1657), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_xor_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_yield] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_errdefer] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_expand] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1655), - [anon_sym_orelse] = ACTIONS(1657), - [anon_sym_catch] = ACTIONS(1657), - [anon_sym_or] = ACTIONS(1657), - [anon_sym_and] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_xor] = ACTIONS(1657), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1657), - [anon_sym_LT_LT_PIPE] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_SLASH] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_DOT] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_unreachable] = ACTIONS(1657), - [anon_sym_undefined] = ACTIONS(1657), - [sym_sink] = ACTIONS(1657), - [sym_integer] = ACTIONS(1657), - [sym_float] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_multiline_string] = ACTIONS(1655), - [sym_character] = ACTIONS(1655), + [STATE(186)] = { + [sym_type] = STATE(3017), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1627), + [anon_sym_func] = ACTIONS(1630), + [anon_sym_c_func] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1639), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_void] = ACTIONS(1653), + [anon_sym_noreturn] = ACTIONS(1653), + [anon_sym_type] = ACTIONS(1653), + [anon_sym_anyopaque] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_int] = ACTIONS(1653), + [anon_sym_uint] = ACTIONS(1653), + [anon_sym_float] = ACTIONS(1653), + [anon_sym_range] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_c_char] = ACTIONS(1653), + [anon_sym_c_schar] = ACTIONS(1653), + [anon_sym_c_uchar] = ACTIONS(1653), + [anon_sym_c_short] = ACTIONS(1653), + [anon_sym_c_ushort] = ACTIONS(1653), + [anon_sym_c_int] = ACTIONS(1653), + [anon_sym_c_uint] = ACTIONS(1653), + [anon_sym_c_long] = ACTIONS(1653), + [anon_sym_c_ulong] = ACTIONS(1653), + [anon_sym_c_longlong] = ACTIONS(1653), + [anon_sym_c_ulonglong] = ACTIONS(1653), + [anon_sym_c_float] = ACTIONS(1653), + [anon_sym_c_double] = ACTIONS(1653), + [anon_sym_c_longdouble] = ACTIONS(1653), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1655), + [sym__newline] = ACTIONS(1252), }, - [STATE(598)] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_test] = ACTIONS(1661), - [anon_sym_hide] = ACTIONS(1661), - [anon_sym_func] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_QMARK] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_noreturn] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_anyopaque] = ACTIONS(1661), - [anon_sym_bool] = ACTIONS(1661), - [anon_sym_int] = ACTIONS(1661), - [anon_sym_uint] = ACTIONS(1661), - [anon_sym_float] = ACTIONS(1661), - [anon_sym_range] = ACTIONS(1661), - [anon_sym_i8] = ACTIONS(1661), - [anon_sym_i16] = ACTIONS(1661), - [anon_sym_i32] = ACTIONS(1661), - [anon_sym_i64] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1661), - [anon_sym_u16] = ACTIONS(1661), - [anon_sym_u32] = ACTIONS(1661), - [anon_sym_u64] = ACTIONS(1661), - [anon_sym_isize] = ACTIONS(1661), - [anon_sym_usize] = ACTIONS(1661), - [anon_sym_f32] = ACTIONS(1661), - [anon_sym_f64] = ACTIONS(1661), - [anon_sym_c_char] = ACTIONS(1661), - [anon_sym_c_schar] = ACTIONS(1661), - [anon_sym_c_uchar] = ACTIONS(1661), - [anon_sym_c_short] = ACTIONS(1661), - [anon_sym_c_ushort] = ACTIONS(1661), - [anon_sym_c_int] = ACTIONS(1661), - [anon_sym_c_uint] = ACTIONS(1661), - [anon_sym_c_long] = ACTIONS(1661), - [anon_sym_c_ulong] = ACTIONS(1661), - [anon_sym_c_longlong] = ACTIONS(1661), - [anon_sym_c_ulonglong] = ACTIONS(1661), - [anon_sym_c_float] = ACTIONS(1661), - [anon_sym_c_double] = ACTIONS(1661), - [anon_sym_c_longdouble] = ACTIONS(1661), - [anon_sym_PLUS_EQ] = ACTIONS(1659), - [anon_sym_DASH_EQ] = ACTIONS(1659), - [anon_sym_STAR_EQ] = ACTIONS(1659), - [anon_sym_SLASH_EQ] = ACTIONS(1659), - [anon_sym_AMP_EQ] = ACTIONS(1659), - [anon_sym_PIPE_EQ] = ACTIONS(1659), - [anon_sym_xor_EQ] = ACTIONS(1659), - [anon_sym_LT_LT_EQ] = ACTIONS(1659), - [anon_sym_GT_GT_EQ] = ACTIONS(1659), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_defer] = ACTIONS(1661), - [anon_sym_errdefer] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_expand] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_orelse] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_or] = ACTIONS(1661), - [anon_sym_and] = ACTIONS(1661), - [anon_sym_EQ_EQ] = ACTIONS(1659), - [anon_sym_BANG_EQ] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_xor] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(1661), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_LT_LT_PIPE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_DOT] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [anon_sym_unreachable] = ACTIONS(1661), - [anon_sym_undefined] = ACTIONS(1661), - [sym_sink] = ACTIONS(1661), - [sym_integer] = ACTIONS(1661), - [sym_float] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym_multiline_string] = ACTIONS(1659), - [sym_character] = ACTIONS(1659), + [STATE(187)] = { + [sym_type] = STATE(14942), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1658), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1659), + [sym__newline] = ACTIONS(1285), }, - [STATE(599)] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [sym_identifier] = ACTIONS(1665), - [anon_sym_import] = ACTIONS(1665), - [anon_sym_test] = ACTIONS(1665), - [anon_sym_hide] = ACTIONS(1665), - [anon_sym_func] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), + [STATE(188)] = { + [sym_type] = STATE(3046), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1660), + [anon_sym_func] = ACTIONS(1546), + [anon_sym_c_func] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_COMMA] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_DOLLAR] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_QMARK] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1665), - [anon_sym_noreturn] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_anyopaque] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_int] = ACTIONS(1665), - [anon_sym_uint] = ACTIONS(1665), - [anon_sym_float] = ACTIONS(1665), - [anon_sym_range] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_c_char] = ACTIONS(1665), - [anon_sym_c_schar] = ACTIONS(1665), - [anon_sym_c_uchar] = ACTIONS(1665), - [anon_sym_c_short] = ACTIONS(1665), - [anon_sym_c_ushort] = ACTIONS(1665), - [anon_sym_c_int] = ACTIONS(1665), - [anon_sym_c_uint] = ACTIONS(1665), - [anon_sym_c_long] = ACTIONS(1665), - [anon_sym_c_ulong] = ACTIONS(1665), - [anon_sym_c_longlong] = ACTIONS(1665), - [anon_sym_c_ulonglong] = ACTIONS(1665), - [anon_sym_c_float] = ACTIONS(1665), - [anon_sym_c_double] = ACTIONS(1665), - [anon_sym_c_longdouble] = ACTIONS(1665), - [anon_sym_PLUS_EQ] = ACTIONS(1663), - [anon_sym_DASH_EQ] = ACTIONS(1663), - [anon_sym_STAR_EQ] = ACTIONS(1663), - [anon_sym_SLASH_EQ] = ACTIONS(1663), - [anon_sym_AMP_EQ] = ACTIONS(1663), - [anon_sym_PIPE_EQ] = ACTIONS(1663), - [anon_sym_xor_EQ] = ACTIONS(1663), - [anon_sym_LT_LT_EQ] = ACTIONS(1663), - [anon_sym_GT_GT_EQ] = ACTIONS(1663), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_defer] = ACTIONS(1665), - [anon_sym_errdefer] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_expand] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [anon_sym_DOT_DOT] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1663), - [anon_sym_orelse] = ACTIONS(1665), - [anon_sym_catch] = ACTIONS(1665), - [anon_sym_or] = ACTIONS(1665), - [anon_sym_and] = ACTIONS(1665), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1665), - [anon_sym_GT_EQ] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_xor] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_LT_LT_PIPE] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1665), - [anon_sym_DOT] = ACTIONS(1665), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), - [anon_sym_null] = ACTIONS(1665), - [anon_sym_unreachable] = ACTIONS(1665), - [anon_sym_undefined] = ACTIONS(1665), - [sym_sink] = ACTIONS(1665), - [sym_integer] = ACTIONS(1665), - [sym_float] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_multiline_string] = ACTIONS(1663), - [sym_character] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1663), - }, - [STATE(600)] = { - [ts_builtin_sym_end] = ACTIONS(1667), - [sym_identifier] = ACTIONS(1669), - [anon_sym_import] = ACTIONS(1669), - [anon_sym_test] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_func] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_COMMA] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_QMARK] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_struct_type_BANG] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1552), [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_void] = ACTIONS(1669), - [anon_sym_noreturn] = ACTIONS(1669), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_anyopaque] = ACTIONS(1669), - [anon_sym_bool] = ACTIONS(1669), - [anon_sym_int] = ACTIONS(1669), - [anon_sym_uint] = ACTIONS(1669), - [anon_sym_float] = ACTIONS(1669), - [anon_sym_range] = ACTIONS(1669), - [anon_sym_i8] = ACTIONS(1669), - [anon_sym_i16] = ACTIONS(1669), - [anon_sym_i32] = ACTIONS(1669), - [anon_sym_i64] = ACTIONS(1669), - [anon_sym_u8] = ACTIONS(1669), - [anon_sym_u16] = ACTIONS(1669), - [anon_sym_u32] = ACTIONS(1669), - [anon_sym_u64] = ACTIONS(1669), - [anon_sym_isize] = ACTIONS(1669), - [anon_sym_usize] = ACTIONS(1669), - [anon_sym_f32] = ACTIONS(1669), - [anon_sym_f64] = ACTIONS(1669), - [anon_sym_c_char] = ACTIONS(1669), - [anon_sym_c_schar] = ACTIONS(1669), - [anon_sym_c_uchar] = ACTIONS(1669), - [anon_sym_c_short] = ACTIONS(1669), - [anon_sym_c_ushort] = ACTIONS(1669), - [anon_sym_c_int] = ACTIONS(1669), - [anon_sym_c_uint] = ACTIONS(1669), - [anon_sym_c_long] = ACTIONS(1669), - [anon_sym_c_ulong] = ACTIONS(1669), - [anon_sym_c_longlong] = ACTIONS(1669), - [anon_sym_c_ulonglong] = ACTIONS(1669), - [anon_sym_c_float] = ACTIONS(1669), - [anon_sym_c_double] = ACTIONS(1669), - [anon_sym_c_longdouble] = ACTIONS(1669), - [anon_sym_PLUS_EQ] = ACTIONS(1667), - [anon_sym_DASH_EQ] = ACTIONS(1667), - [anon_sym_STAR_EQ] = ACTIONS(1667), - [anon_sym_SLASH_EQ] = ACTIONS(1667), - [anon_sym_AMP_EQ] = ACTIONS(1667), - [anon_sym_PIPE_EQ] = ACTIONS(1667), - [anon_sym_xor_EQ] = ACTIONS(1667), - [anon_sym_LT_LT_EQ] = ACTIONS(1667), - [anon_sym_GT_GT_EQ] = ACTIONS(1667), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_yield] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_defer] = ACTIONS(1669), - [anon_sym_errdefer] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_expand] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_orelse] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1669), - [anon_sym_GT_GT] = ACTIONS(1669), - [anon_sym_LT_LT_PIPE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_unreachable] = ACTIONS(1669), - [anon_sym_undefined] = ACTIONS(1669), - [sym_sink] = ACTIONS(1669), - [sym_integer] = ACTIONS(1669), - [sym_float] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym_multiline_string] = ACTIONS(1667), - [sym_character] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_noreturn] = 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_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(1196), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_defer] = ACTIONS(1196), + [anon_sym_errdefer] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_expand] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_unreachable] = ACTIONS(1196), + [anon_sym_undefined] = ACTIONS(1196), + [sym_sink] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [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(1667), + [sym__newline] = ACTIONS(1192), }, - [STATE(601)] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [sym_identifier] = ACTIONS(1673), - [anon_sym_import] = ACTIONS(1673), - [anon_sym_test] = ACTIONS(1673), - [anon_sym_hide] = ACTIONS(1673), - [anon_sym_func] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_COMMA] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_QMARK] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_void] = ACTIONS(1673), - [anon_sym_noreturn] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_anyopaque] = ACTIONS(1673), - [anon_sym_bool] = ACTIONS(1673), - [anon_sym_int] = ACTIONS(1673), - [anon_sym_uint] = ACTIONS(1673), - [anon_sym_float] = ACTIONS(1673), - [anon_sym_range] = ACTIONS(1673), - [anon_sym_i8] = ACTIONS(1673), - [anon_sym_i16] = ACTIONS(1673), - [anon_sym_i32] = ACTIONS(1673), - [anon_sym_i64] = ACTIONS(1673), - [anon_sym_u8] = ACTIONS(1673), - [anon_sym_u16] = ACTIONS(1673), - [anon_sym_u32] = ACTIONS(1673), - [anon_sym_u64] = ACTIONS(1673), - [anon_sym_isize] = ACTIONS(1673), - [anon_sym_usize] = ACTIONS(1673), - [anon_sym_f32] = ACTIONS(1673), - [anon_sym_f64] = ACTIONS(1673), - [anon_sym_c_char] = ACTIONS(1673), - [anon_sym_c_schar] = ACTIONS(1673), - [anon_sym_c_uchar] = ACTIONS(1673), - [anon_sym_c_short] = ACTIONS(1673), - [anon_sym_c_ushort] = ACTIONS(1673), - [anon_sym_c_int] = ACTIONS(1673), - [anon_sym_c_uint] = ACTIONS(1673), - [anon_sym_c_long] = ACTIONS(1673), - [anon_sym_c_ulong] = ACTIONS(1673), - [anon_sym_c_longlong] = ACTIONS(1673), - [anon_sym_c_ulonglong] = ACTIONS(1673), - [anon_sym_c_float] = ACTIONS(1673), - [anon_sym_c_double] = ACTIONS(1673), - [anon_sym_c_longdouble] = ACTIONS(1673), - [anon_sym_PLUS_EQ] = ACTIONS(1671), - [anon_sym_DASH_EQ] = ACTIONS(1671), - [anon_sym_STAR_EQ] = ACTIONS(1671), - [anon_sym_SLASH_EQ] = ACTIONS(1671), - [anon_sym_AMP_EQ] = ACTIONS(1671), - [anon_sym_PIPE_EQ] = ACTIONS(1671), - [anon_sym_xor_EQ] = ACTIONS(1671), - [anon_sym_LT_LT_EQ] = ACTIONS(1671), - [anon_sym_GT_GT_EQ] = ACTIONS(1671), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_yield] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_defer] = ACTIONS(1673), - [anon_sym_errdefer] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_expand] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [anon_sym_orelse] = ACTIONS(1673), - [anon_sym_catch] = ACTIONS(1673), - [anon_sym_or] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1673), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_xor] = ACTIONS(1673), - [anon_sym_LT_LT] = ACTIONS(1673), - [anon_sym_GT_GT] = ACTIONS(1673), - [anon_sym_LT_LT_PIPE] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1673), - [anon_sym_DOT] = ACTIONS(1673), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [anon_sym_null] = ACTIONS(1673), - [anon_sym_unreachable] = ACTIONS(1673), - [anon_sym_undefined] = ACTIONS(1673), - [sym_sink] = ACTIONS(1673), - [sym_integer] = ACTIONS(1673), - [sym_float] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym_multiline_string] = ACTIONS(1671), - [sym_character] = ACTIONS(1671), + [STATE(189)] = { + [sym_type] = STATE(3013), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_c_func] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_struct_type_BANG] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_LT_LT_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1671), + [sym__newline] = ACTIONS(1331), }, - [STATE(602)] = { - [ts_builtin_sym_end] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_import] = ACTIONS(1677), - [anon_sym_test] = ACTIONS(1677), - [anon_sym_hide] = ACTIONS(1677), - [anon_sym_func] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_EQ] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_void] = ACTIONS(1677), - [anon_sym_noreturn] = ACTIONS(1677), - [anon_sym_type] = ACTIONS(1677), - [anon_sym_anyopaque] = ACTIONS(1677), - [anon_sym_bool] = ACTIONS(1677), - [anon_sym_int] = ACTIONS(1677), - [anon_sym_uint] = ACTIONS(1677), - [anon_sym_float] = ACTIONS(1677), - [anon_sym_range] = ACTIONS(1677), - [anon_sym_i8] = ACTIONS(1677), - [anon_sym_i16] = ACTIONS(1677), - [anon_sym_i32] = ACTIONS(1677), - [anon_sym_i64] = ACTIONS(1677), - [anon_sym_u8] = ACTIONS(1677), - [anon_sym_u16] = ACTIONS(1677), - [anon_sym_u32] = ACTIONS(1677), - [anon_sym_u64] = ACTIONS(1677), - [anon_sym_isize] = ACTIONS(1677), - [anon_sym_usize] = ACTIONS(1677), - [anon_sym_f32] = ACTIONS(1677), - [anon_sym_f64] = ACTIONS(1677), - [anon_sym_c_char] = ACTIONS(1677), - [anon_sym_c_schar] = ACTIONS(1677), - [anon_sym_c_uchar] = ACTIONS(1677), - [anon_sym_c_short] = ACTIONS(1677), - [anon_sym_c_ushort] = ACTIONS(1677), - [anon_sym_c_int] = ACTIONS(1677), - [anon_sym_c_uint] = ACTIONS(1677), - [anon_sym_c_long] = ACTIONS(1677), - [anon_sym_c_ulong] = ACTIONS(1677), - [anon_sym_c_longlong] = ACTIONS(1677), - [anon_sym_c_ulonglong] = ACTIONS(1677), - [anon_sym_c_float] = ACTIONS(1677), - [anon_sym_c_double] = ACTIONS(1677), - [anon_sym_c_longdouble] = ACTIONS(1677), - [anon_sym_PLUS_EQ] = ACTIONS(1675), - [anon_sym_DASH_EQ] = ACTIONS(1675), - [anon_sym_STAR_EQ] = ACTIONS(1675), - [anon_sym_SLASH_EQ] = ACTIONS(1675), - [anon_sym_AMP_EQ] = ACTIONS(1675), - [anon_sym_PIPE_EQ] = ACTIONS(1675), - [anon_sym_xor_EQ] = ACTIONS(1675), - [anon_sym_LT_LT_EQ] = ACTIONS(1675), - [anon_sym_GT_GT_EQ] = ACTIONS(1675), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_yield] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_defer] = ACTIONS(1677), - [anon_sym_errdefer] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_expand] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_orelse] = ACTIONS(1677), - [anon_sym_catch] = ACTIONS(1677), - [anon_sym_or] = ACTIONS(1677), - [anon_sym_and] = ACTIONS(1677), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1677), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1677), - [anon_sym_GT_EQ] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_xor] = ACTIONS(1677), - [anon_sym_LT_LT] = ACTIONS(1677), - [anon_sym_GT_GT] = ACTIONS(1677), - [anon_sym_LT_LT_PIPE] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1677), - [anon_sym_SLASH] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1677), - [anon_sym_DOT] = ACTIONS(1677), - [anon_sym_CARET] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [anon_sym_unreachable] = ACTIONS(1677), - [anon_sym_undefined] = ACTIONS(1677), - [sym_sink] = ACTIONS(1677), - [sym_integer] = ACTIONS(1677), - [sym_float] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym_multiline_string] = ACTIONS(1675), - [sym_character] = ACTIONS(1675), + [STATE(190)] = { + [sym_type] = STATE(14970), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1678), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1675), + [sym__newline] = ACTIONS(1285), }, - [STATE(603)] = { - [ts_builtin_sym_end] = ACTIONS(1679), - [sym_identifier] = ACTIONS(1681), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_test] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_func] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_EQ] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_COMMA] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_QMARK] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_void] = ACTIONS(1681), - [anon_sym_noreturn] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_anyopaque] = ACTIONS(1681), - [anon_sym_bool] = ACTIONS(1681), - [anon_sym_int] = ACTIONS(1681), - [anon_sym_uint] = ACTIONS(1681), - [anon_sym_float] = ACTIONS(1681), - [anon_sym_range] = ACTIONS(1681), - [anon_sym_i8] = ACTIONS(1681), - [anon_sym_i16] = ACTIONS(1681), - [anon_sym_i32] = ACTIONS(1681), - [anon_sym_i64] = ACTIONS(1681), - [anon_sym_u8] = ACTIONS(1681), - [anon_sym_u16] = ACTIONS(1681), - [anon_sym_u32] = ACTIONS(1681), - [anon_sym_u64] = ACTIONS(1681), - [anon_sym_isize] = ACTIONS(1681), - [anon_sym_usize] = ACTIONS(1681), - [anon_sym_f32] = ACTIONS(1681), - [anon_sym_f64] = ACTIONS(1681), - [anon_sym_c_char] = ACTIONS(1681), - [anon_sym_c_schar] = ACTIONS(1681), - [anon_sym_c_uchar] = ACTIONS(1681), - [anon_sym_c_short] = ACTIONS(1681), - [anon_sym_c_ushort] = ACTIONS(1681), - [anon_sym_c_int] = ACTIONS(1681), - [anon_sym_c_uint] = ACTIONS(1681), - [anon_sym_c_long] = ACTIONS(1681), - [anon_sym_c_ulong] = ACTIONS(1681), - [anon_sym_c_longlong] = ACTIONS(1681), - [anon_sym_c_ulonglong] = ACTIONS(1681), - [anon_sym_c_float] = ACTIONS(1681), - [anon_sym_c_double] = ACTIONS(1681), - [anon_sym_c_longdouble] = ACTIONS(1681), - [anon_sym_PLUS_EQ] = ACTIONS(1679), - [anon_sym_DASH_EQ] = ACTIONS(1679), - [anon_sym_STAR_EQ] = ACTIONS(1679), - [anon_sym_SLASH_EQ] = ACTIONS(1679), - [anon_sym_AMP_EQ] = ACTIONS(1679), - [anon_sym_PIPE_EQ] = ACTIONS(1679), - [anon_sym_xor_EQ] = ACTIONS(1679), - [anon_sym_LT_LT_EQ] = ACTIONS(1679), - [anon_sym_GT_GT_EQ] = ACTIONS(1679), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_yield] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_defer] = ACTIONS(1681), - [anon_sym_errdefer] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_expand] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), - [anon_sym_orelse] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_or] = ACTIONS(1681), - [anon_sym_and] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1679), - [anon_sym_BANG_EQ] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1679), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_xor] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_LT_LT_PIPE] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_DOT] = ACTIONS(1681), - [anon_sym_CARET] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_null] = ACTIONS(1681), - [anon_sym_unreachable] = ACTIONS(1681), - [anon_sym_undefined] = ACTIONS(1681), - [sym_sink] = ACTIONS(1681), - [sym_integer] = ACTIONS(1681), - [sym_float] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym_multiline_string] = ACTIONS(1679), - [sym_character] = ACTIONS(1679), + [STATE(191)] = { + [sym_type] = STATE(15042), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1682), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1679), + [sym__newline] = ACTIONS(1285), }, - [STATE(604)] = { - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_identifier] = ACTIONS(1685), - [anon_sym_import] = ACTIONS(1685), - [anon_sym_test] = ACTIONS(1685), - [anon_sym_hide] = ACTIONS(1685), - [anon_sym_func] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_EQ] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_QMARK] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1685), - [anon_sym_noreturn] = ACTIONS(1685), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_anyopaque] = ACTIONS(1685), - [anon_sym_bool] = ACTIONS(1685), - [anon_sym_int] = ACTIONS(1685), - [anon_sym_uint] = ACTIONS(1685), - [anon_sym_float] = ACTIONS(1685), - [anon_sym_range] = ACTIONS(1685), - [anon_sym_i8] = ACTIONS(1685), - [anon_sym_i16] = ACTIONS(1685), - [anon_sym_i32] = ACTIONS(1685), - [anon_sym_i64] = ACTIONS(1685), - [anon_sym_u8] = ACTIONS(1685), - [anon_sym_u16] = ACTIONS(1685), - [anon_sym_u32] = ACTIONS(1685), - [anon_sym_u64] = ACTIONS(1685), - [anon_sym_isize] = ACTIONS(1685), - [anon_sym_usize] = ACTIONS(1685), - [anon_sym_f32] = ACTIONS(1685), - [anon_sym_f64] = ACTIONS(1685), - [anon_sym_c_char] = ACTIONS(1685), - [anon_sym_c_schar] = ACTIONS(1685), - [anon_sym_c_uchar] = ACTIONS(1685), - [anon_sym_c_short] = ACTIONS(1685), - [anon_sym_c_ushort] = ACTIONS(1685), - [anon_sym_c_int] = ACTIONS(1685), - [anon_sym_c_uint] = ACTIONS(1685), - [anon_sym_c_long] = ACTIONS(1685), - [anon_sym_c_ulong] = ACTIONS(1685), - [anon_sym_c_longlong] = ACTIONS(1685), - [anon_sym_c_ulonglong] = ACTIONS(1685), - [anon_sym_c_float] = ACTIONS(1685), - [anon_sym_c_double] = ACTIONS(1685), - [anon_sym_c_longdouble] = ACTIONS(1685), - [anon_sym_PLUS_EQ] = ACTIONS(1683), - [anon_sym_DASH_EQ] = ACTIONS(1683), - [anon_sym_STAR_EQ] = ACTIONS(1683), - [anon_sym_SLASH_EQ] = ACTIONS(1683), - [anon_sym_AMP_EQ] = ACTIONS(1683), - [anon_sym_PIPE_EQ] = ACTIONS(1683), - [anon_sym_xor_EQ] = ACTIONS(1683), - [anon_sym_LT_LT_EQ] = ACTIONS(1683), - [anon_sym_GT_GT_EQ] = ACTIONS(1683), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_defer] = ACTIONS(1685), - [anon_sym_errdefer] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_expand] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1685), - [anon_sym_DOT_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), - [anon_sym_orelse] = ACTIONS(1685), - [anon_sym_catch] = ACTIONS(1685), - [anon_sym_or] = ACTIONS(1685), - [anon_sym_and] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_xor] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_LT_LT_PIPE] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_SLASH] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1685), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1685), - [anon_sym_false] = ACTIONS(1685), - [anon_sym_null] = ACTIONS(1685), - [anon_sym_unreachable] = ACTIONS(1685), - [anon_sym_undefined] = ACTIONS(1685), - [sym_sink] = ACTIONS(1685), - [sym_integer] = ACTIONS(1685), - [sym_float] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym_multiline_string] = ACTIONS(1683), - [sym_character] = ACTIONS(1683), + [STATE(192)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1683), + [sym__newline] = ACTIONS(17), }, - [STATE(605)] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_test] = ACTIONS(1689), - [anon_sym_hide] = ACTIONS(1689), - [anon_sym_func] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_EQ] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_COMMA] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_QMARK] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_noreturn] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_anyopaque] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_int] = ACTIONS(1689), - [anon_sym_uint] = ACTIONS(1689), - [anon_sym_float] = ACTIONS(1689), - [anon_sym_range] = ACTIONS(1689), - [anon_sym_i8] = ACTIONS(1689), - [anon_sym_i16] = ACTIONS(1689), - [anon_sym_i32] = ACTIONS(1689), - [anon_sym_i64] = ACTIONS(1689), - [anon_sym_u8] = ACTIONS(1689), - [anon_sym_u16] = ACTIONS(1689), - [anon_sym_u32] = ACTIONS(1689), - [anon_sym_u64] = ACTIONS(1689), - [anon_sym_isize] = ACTIONS(1689), - [anon_sym_usize] = ACTIONS(1689), - [anon_sym_f32] = ACTIONS(1689), - [anon_sym_f64] = ACTIONS(1689), - [anon_sym_c_char] = ACTIONS(1689), - [anon_sym_c_schar] = ACTIONS(1689), - [anon_sym_c_uchar] = ACTIONS(1689), - [anon_sym_c_short] = ACTIONS(1689), - [anon_sym_c_ushort] = ACTIONS(1689), - [anon_sym_c_int] = ACTIONS(1689), - [anon_sym_c_uint] = ACTIONS(1689), - [anon_sym_c_long] = ACTIONS(1689), - [anon_sym_c_ulong] = ACTIONS(1689), - [anon_sym_c_longlong] = ACTIONS(1689), - [anon_sym_c_ulonglong] = ACTIONS(1689), - [anon_sym_c_float] = ACTIONS(1689), - [anon_sym_c_double] = ACTIONS(1689), - [anon_sym_c_longdouble] = ACTIONS(1689), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_xor_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_defer] = ACTIONS(1689), - [anon_sym_errdefer] = ACTIONS(1689), + [STATE(193)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10682), + [sym_labeled_block] = STATE(10682), + [sym_if_statement] = STATE(10682), + [sym_while_statement] = STATE(10682), + [sym_for_statement] = STATE(10682), + [sym_match_statement] = STATE(10682), + [sym__value] = STATE(10682), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), [anon_sym_if] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_expand] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_match] = ACTIONS(1689), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [anon_sym_orelse] = ACTIONS(1689), - [anon_sym_catch] = ACTIONS(1689), - [anon_sym_or] = ACTIONS(1689), - [anon_sym_and] = ACTIONS(1689), - [anon_sym_EQ_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_LT_EQ] = ACTIONS(1687), - [anon_sym_GT] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_xor] = ACTIONS(1689), - [anon_sym_LT_LT] = ACTIONS(1689), - [anon_sym_GT_GT] = ACTIONS(1689), - [anon_sym_LT_LT_PIPE] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), - [anon_sym_null] = ACTIONS(1689), - [anon_sym_unreachable] = ACTIONS(1689), - [anon_sym_undefined] = ACTIONS(1689), - [sym_sink] = ACTIONS(1689), - [sym_integer] = ACTIONS(1689), - [sym_float] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym_multiline_string] = ACTIONS(1687), - [sym_character] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_PIPE2] = ACTIONS(17), + [anon_sym_match] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1687), + [sym__newline] = ACTIONS(17), }, - [STATE(606)] = { - [ts_builtin_sym_end] = ACTIONS(1691), - [sym_identifier] = ACTIONS(1693), - [anon_sym_import] = ACTIONS(1693), - [anon_sym_test] = ACTIONS(1693), - [anon_sym_hide] = ACTIONS(1693), - [anon_sym_func] = ACTIONS(1693), + [STATE(194)] = { + [sym_type] = STATE(15061), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1691), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_RPAREN] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_COMMA] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_void] = ACTIONS(1693), - [anon_sym_noreturn] = ACTIONS(1693), - [anon_sym_type] = ACTIONS(1693), - [anon_sym_anyopaque] = ACTIONS(1693), - [anon_sym_bool] = ACTIONS(1693), - [anon_sym_int] = ACTIONS(1693), - [anon_sym_uint] = ACTIONS(1693), - [anon_sym_float] = ACTIONS(1693), - [anon_sym_range] = ACTIONS(1693), - [anon_sym_i8] = ACTIONS(1693), - [anon_sym_i16] = ACTIONS(1693), - [anon_sym_i32] = ACTIONS(1693), - [anon_sym_i64] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1693), - [anon_sym_u16] = ACTIONS(1693), - [anon_sym_u32] = ACTIONS(1693), - [anon_sym_u64] = ACTIONS(1693), - [anon_sym_isize] = ACTIONS(1693), - [anon_sym_usize] = ACTIONS(1693), - [anon_sym_f32] = ACTIONS(1693), - [anon_sym_f64] = ACTIONS(1693), - [anon_sym_c_char] = ACTIONS(1693), - [anon_sym_c_schar] = ACTIONS(1693), - [anon_sym_c_uchar] = ACTIONS(1693), - [anon_sym_c_short] = ACTIONS(1693), - [anon_sym_c_ushort] = ACTIONS(1693), - [anon_sym_c_int] = ACTIONS(1693), - [anon_sym_c_uint] = ACTIONS(1693), - [anon_sym_c_long] = ACTIONS(1693), - [anon_sym_c_ulong] = ACTIONS(1693), - [anon_sym_c_longlong] = ACTIONS(1693), - [anon_sym_c_ulonglong] = ACTIONS(1693), - [anon_sym_c_float] = ACTIONS(1693), - [anon_sym_c_double] = ACTIONS(1693), - [anon_sym_c_longdouble] = ACTIONS(1693), - [anon_sym_PLUS_EQ] = ACTIONS(1691), - [anon_sym_DASH_EQ] = ACTIONS(1691), - [anon_sym_STAR_EQ] = ACTIONS(1691), - [anon_sym_SLASH_EQ] = ACTIONS(1691), - [anon_sym_AMP_EQ] = ACTIONS(1691), - [anon_sym_PIPE_EQ] = ACTIONS(1691), - [anon_sym_xor_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_GT_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_yield] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_defer] = ACTIONS(1693), - [anon_sym_errdefer] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_else] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_expand] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1693), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_orelse] = ACTIONS(1693), - [anon_sym_catch] = ACTIONS(1693), - [anon_sym_or] = ACTIONS(1693), - [anon_sym_and] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_xor] = ACTIONS(1693), - [anon_sym_LT_LT] = ACTIONS(1693), - [anon_sym_GT_GT] = ACTIONS(1693), - [anon_sym_LT_LT_PIPE] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_SLASH] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1693), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_unreachable] = ACTIONS(1693), - [anon_sym_undefined] = ACTIONS(1693), - [sym_sink] = ACTIONS(1693), - [sym_integer] = ACTIONS(1693), - [sym_float] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym_multiline_string] = ACTIONS(1691), - [sym_character] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1691), + [sym__newline] = ACTIONS(1285), }, - [STATE(607)] = { - [ts_builtin_sym_end] = ACTIONS(1695), - [sym_identifier] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(1697), - [anon_sym_test] = ACTIONS(1697), - [anon_sym_hide] = ACTIONS(1697), - [anon_sym_func] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_RPAREN] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_anyopaque] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_int] = ACTIONS(1697), - [anon_sym_uint] = ACTIONS(1697), - [anon_sym_float] = ACTIONS(1697), - [anon_sym_range] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_c_char] = ACTIONS(1697), - [anon_sym_c_schar] = ACTIONS(1697), - [anon_sym_c_uchar] = ACTIONS(1697), - [anon_sym_c_short] = ACTIONS(1697), - [anon_sym_c_ushort] = ACTIONS(1697), - [anon_sym_c_int] = ACTIONS(1697), - [anon_sym_c_uint] = ACTIONS(1697), - [anon_sym_c_long] = ACTIONS(1697), - [anon_sym_c_ulong] = ACTIONS(1697), - [anon_sym_c_longlong] = ACTIONS(1697), - [anon_sym_c_ulonglong] = ACTIONS(1697), - [anon_sym_c_float] = ACTIONS(1697), - [anon_sym_c_double] = ACTIONS(1697), - [anon_sym_c_longdouble] = ACTIONS(1697), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_xor_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_yield] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_defer] = ACTIONS(1697), - [anon_sym_errdefer] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_expand] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_orelse] = ACTIONS(1697), - [anon_sym_catch] = ACTIONS(1697), - [anon_sym_or] = ACTIONS(1697), - [anon_sym_and] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_xor] = ACTIONS(1697), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_LT_LT_PIPE] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_true] = ACTIONS(1697), - [anon_sym_false] = ACTIONS(1697), - [anon_sym_null] = ACTIONS(1697), - [anon_sym_unreachable] = ACTIONS(1697), - [anon_sym_undefined] = ACTIONS(1697), - [sym_sink] = ACTIONS(1697), - [sym_integer] = ACTIONS(1697), - [sym_float] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_multiline_string] = ACTIONS(1695), - [sym_character] = ACTIONS(1695), + [STATE(195)] = { + [sym_type] = STATE(15042), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1682), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1695), + [sym__newline] = ACTIONS(1285), }, - [STATE(608)] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_import] = ACTIONS(1701), - [anon_sym_test] = ACTIONS(1701), - [anon_sym_hide] = ACTIONS(1701), - [anon_sym_func] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_DOLLAR] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_void] = ACTIONS(1701), - [anon_sym_noreturn] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_anyopaque] = ACTIONS(1701), - [anon_sym_bool] = ACTIONS(1701), - [anon_sym_int] = ACTIONS(1701), - [anon_sym_uint] = ACTIONS(1701), - [anon_sym_float] = ACTIONS(1701), - [anon_sym_range] = ACTIONS(1701), - [anon_sym_i8] = ACTIONS(1701), - [anon_sym_i16] = ACTIONS(1701), - [anon_sym_i32] = ACTIONS(1701), - [anon_sym_i64] = ACTIONS(1701), - [anon_sym_u8] = ACTIONS(1701), - [anon_sym_u16] = ACTIONS(1701), - [anon_sym_u32] = ACTIONS(1701), - [anon_sym_u64] = ACTIONS(1701), - [anon_sym_isize] = ACTIONS(1701), - [anon_sym_usize] = ACTIONS(1701), - [anon_sym_f32] = ACTIONS(1701), - [anon_sym_f64] = ACTIONS(1701), - [anon_sym_c_char] = ACTIONS(1701), - [anon_sym_c_schar] = ACTIONS(1701), - [anon_sym_c_uchar] = ACTIONS(1701), - [anon_sym_c_short] = ACTIONS(1701), - [anon_sym_c_ushort] = ACTIONS(1701), - [anon_sym_c_int] = ACTIONS(1701), - [anon_sym_c_uint] = ACTIONS(1701), - [anon_sym_c_long] = ACTIONS(1701), - [anon_sym_c_ulong] = ACTIONS(1701), - [anon_sym_c_longlong] = ACTIONS(1701), - [anon_sym_c_ulonglong] = ACTIONS(1701), - [anon_sym_c_float] = ACTIONS(1701), - [anon_sym_c_double] = ACTIONS(1701), - [anon_sym_c_longdouble] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1699), - [anon_sym_DASH_EQ] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1699), - [anon_sym_SLASH_EQ] = ACTIONS(1699), - [anon_sym_AMP_EQ] = ACTIONS(1699), - [anon_sym_PIPE_EQ] = ACTIONS(1699), - [anon_sym_xor_EQ] = ACTIONS(1699), - [anon_sym_LT_LT_EQ] = ACTIONS(1699), - [anon_sym_GT_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_defer] = ACTIONS(1701), - [anon_sym_errdefer] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_expand] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1699), - [anon_sym_orelse] = ACTIONS(1701), - [anon_sym_catch] = ACTIONS(1701), - [anon_sym_or] = ACTIONS(1701), - [anon_sym_and] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_xor] = ACTIONS(1701), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_LT_LT_PIPE] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [anon_sym_null] = ACTIONS(1701), - [anon_sym_unreachable] = ACTIONS(1701), - [anon_sym_undefined] = ACTIONS(1701), - [sym_sink] = ACTIONS(1701), - [sym_integer] = ACTIONS(1701), - [sym_float] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym_multiline_string] = ACTIONS(1699), - [sym_character] = ACTIONS(1699), + [STATE(196)] = { + [sym_type] = STATE(3017), + [sym__type_atom] = STATE(2900), + [sym_parenthesized_type] = STATE(2900), + [sym_named_type] = STATE(2900), + [sym_intrinsic_type] = STATE(2900), + [sym_optional_type] = STATE(2900), + [sym_pointer_type] = STATE(2900), + [sym_array_type] = STATE(2900), + [sym_function_type] = STATE(2900), + [sym_builtin_type] = STATE(2900), + [sym_qualified_identifier] = STATE(2882), + [sym_identifier] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_c_func] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_struct_type_BANG] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_LT_LT_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1699), + [sym__newline] = ACTIONS(1258), }, - [STATE(609)] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_test] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_func] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_QMARK] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1705), - [anon_sym_noreturn] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_anyopaque] = ACTIONS(1705), - [anon_sym_bool] = ACTIONS(1705), - [anon_sym_int] = ACTIONS(1705), - [anon_sym_uint] = ACTIONS(1705), - [anon_sym_float] = ACTIONS(1705), - [anon_sym_range] = ACTIONS(1705), - [anon_sym_i8] = ACTIONS(1705), - [anon_sym_i16] = ACTIONS(1705), - [anon_sym_i32] = ACTIONS(1705), - [anon_sym_i64] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1705), - [anon_sym_u16] = ACTIONS(1705), - [anon_sym_u32] = ACTIONS(1705), - [anon_sym_u64] = ACTIONS(1705), - [anon_sym_isize] = ACTIONS(1705), - [anon_sym_usize] = ACTIONS(1705), - [anon_sym_f32] = ACTIONS(1705), - [anon_sym_f64] = ACTIONS(1705), - [anon_sym_c_char] = ACTIONS(1705), - [anon_sym_c_schar] = ACTIONS(1705), - [anon_sym_c_uchar] = ACTIONS(1705), - [anon_sym_c_short] = ACTIONS(1705), - [anon_sym_c_ushort] = ACTIONS(1705), - [anon_sym_c_int] = ACTIONS(1705), - [anon_sym_c_uint] = ACTIONS(1705), - [anon_sym_c_long] = ACTIONS(1705), - [anon_sym_c_ulong] = ACTIONS(1705), - [anon_sym_c_longlong] = ACTIONS(1705), - [anon_sym_c_ulonglong] = ACTIONS(1705), - [anon_sym_c_float] = ACTIONS(1705), - [anon_sym_c_double] = ACTIONS(1705), - [anon_sym_c_longdouble] = ACTIONS(1705), - [anon_sym_PLUS_EQ] = ACTIONS(1703), - [anon_sym_DASH_EQ] = ACTIONS(1703), - [anon_sym_STAR_EQ] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1703), - [anon_sym_AMP_EQ] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1703), - [anon_sym_xor_EQ] = ACTIONS(1703), - [anon_sym_LT_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_defer] = ACTIONS(1705), - [anon_sym_errdefer] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_expand] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_orelse] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_or] = ACTIONS(1705), - [anon_sym_and] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1703), - [anon_sym_BANG_EQ] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_xor] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_LT_LT_PIPE] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_DOT] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [anon_sym_unreachable] = ACTIONS(1705), - [anon_sym_undefined] = ACTIONS(1705), - [sym_sink] = ACTIONS(1705), - [sym_integer] = ACTIONS(1705), - [sym_float] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym_multiline_string] = ACTIONS(1703), - [sym_character] = ACTIONS(1703), + [STATE(197)] = { + [sym_type] = STATE(15081), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1697), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1699), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1703), + [sym__newline] = ACTIONS(1285), }, - [STATE(610)] = { - [ts_builtin_sym_end] = ACTIONS(1707), + [STATE(198)] = { + [sym_type] = STATE(14940), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(199)] = { + [sym_type] = STATE(3690), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), + [sym_identifier] = ACTIONS(1194), + [anon_sym_func] = ACTIONS(1194), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_mut] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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(1196), + [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(1196), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_expand] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_PIPE2] = ACTIONS(1192), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(200)] = { + [sym_type] = STATE(3842), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), [sym_identifier] = ACTIONS(1709), - [anon_sym_import] = ACTIONS(1709), - [anon_sym_test] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_func] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_COMMA] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_void] = ACTIONS(1709), - [anon_sym_noreturn] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_anyopaque] = ACTIONS(1709), - [anon_sym_bool] = ACTIONS(1709), - [anon_sym_int] = ACTIONS(1709), - [anon_sym_uint] = ACTIONS(1709), - [anon_sym_float] = ACTIONS(1709), - [anon_sym_range] = ACTIONS(1709), - [anon_sym_i8] = ACTIONS(1709), - [anon_sym_i16] = ACTIONS(1709), - [anon_sym_i32] = ACTIONS(1709), - [anon_sym_i64] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1709), - [anon_sym_u16] = ACTIONS(1709), - [anon_sym_u32] = ACTIONS(1709), - [anon_sym_u64] = ACTIONS(1709), - [anon_sym_isize] = ACTIONS(1709), - [anon_sym_usize] = ACTIONS(1709), - [anon_sym_f32] = ACTIONS(1709), - [anon_sym_f64] = ACTIONS(1709), - [anon_sym_c_char] = ACTIONS(1709), - [anon_sym_c_schar] = ACTIONS(1709), - [anon_sym_c_uchar] = ACTIONS(1709), - [anon_sym_c_short] = ACTIONS(1709), - [anon_sym_c_ushort] = ACTIONS(1709), - [anon_sym_c_int] = ACTIONS(1709), - [anon_sym_c_uint] = ACTIONS(1709), - [anon_sym_c_long] = ACTIONS(1709), - [anon_sym_c_ulong] = ACTIONS(1709), - [anon_sym_c_longlong] = ACTIONS(1709), - [anon_sym_c_ulonglong] = ACTIONS(1709), - [anon_sym_c_float] = ACTIONS(1709), - [anon_sym_c_double] = ACTIONS(1709), - [anon_sym_c_longdouble] = ACTIONS(1709), - [anon_sym_PLUS_EQ] = ACTIONS(1707), - [anon_sym_DASH_EQ] = ACTIONS(1707), - [anon_sym_STAR_EQ] = ACTIONS(1707), - [anon_sym_SLASH_EQ] = ACTIONS(1707), - [anon_sym_AMP_EQ] = ACTIONS(1707), - [anon_sym_PIPE_EQ] = ACTIONS(1707), - [anon_sym_xor_EQ] = ACTIONS(1707), - [anon_sym_LT_LT_EQ] = ACTIONS(1707), - [anon_sym_GT_GT_EQ] = ACTIONS(1707), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_defer] = ACTIONS(1709), - [anon_sym_errdefer] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_expand] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_orelse] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_or] = ACTIONS(1709), - [anon_sym_and] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1707), - [anon_sym_GT] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_xor] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1709), - [anon_sym_LT_LT_PIPE] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_null] = ACTIONS(1709), - [anon_sym_unreachable] = ACTIONS(1709), - [anon_sym_undefined] = ACTIONS(1709), - [sym_sink] = ACTIONS(1709), - [sym_integer] = ACTIONS(1709), - [sym_float] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym_multiline_string] = ACTIONS(1707), - [sym_character] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), - }, - [STATE(611)] = { - [ts_builtin_sym_end] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1713), - [anon_sym_import] = ACTIONS(1713), - [anon_sym_test] = ACTIONS(1713), - [anon_sym_hide] = ACTIONS(1713), - [anon_sym_func] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_EQ] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_QMARK] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1713), - [anon_sym_noreturn] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_anyopaque] = ACTIONS(1713), - [anon_sym_bool] = ACTIONS(1713), - [anon_sym_int] = ACTIONS(1713), - [anon_sym_uint] = ACTIONS(1713), - [anon_sym_float] = ACTIONS(1713), - [anon_sym_range] = ACTIONS(1713), - [anon_sym_i8] = ACTIONS(1713), - [anon_sym_i16] = ACTIONS(1713), - [anon_sym_i32] = ACTIONS(1713), - [anon_sym_i64] = ACTIONS(1713), - [anon_sym_u8] = ACTIONS(1713), - [anon_sym_u16] = ACTIONS(1713), - [anon_sym_u32] = ACTIONS(1713), - [anon_sym_u64] = ACTIONS(1713), - [anon_sym_isize] = ACTIONS(1713), - [anon_sym_usize] = ACTIONS(1713), - [anon_sym_f32] = ACTIONS(1713), - [anon_sym_f64] = ACTIONS(1713), - [anon_sym_c_char] = ACTIONS(1713), - [anon_sym_c_schar] = ACTIONS(1713), - [anon_sym_c_uchar] = ACTIONS(1713), - [anon_sym_c_short] = ACTIONS(1713), - [anon_sym_c_ushort] = ACTIONS(1713), - [anon_sym_c_int] = ACTIONS(1713), - [anon_sym_c_uint] = ACTIONS(1713), - [anon_sym_c_long] = ACTIONS(1713), - [anon_sym_c_ulong] = ACTIONS(1713), - [anon_sym_c_longlong] = ACTIONS(1713), - [anon_sym_c_ulonglong] = ACTIONS(1713), - [anon_sym_c_float] = ACTIONS(1713), - [anon_sym_c_double] = ACTIONS(1713), - [anon_sym_c_longdouble] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1711), - [anon_sym_DASH_EQ] = ACTIONS(1711), - [anon_sym_STAR_EQ] = ACTIONS(1711), - [anon_sym_SLASH_EQ] = ACTIONS(1711), - [anon_sym_AMP_EQ] = ACTIONS(1711), - [anon_sym_PIPE_EQ] = ACTIONS(1711), - [anon_sym_xor_EQ] = ACTIONS(1711), - [anon_sym_LT_LT_EQ] = ACTIONS(1711), - [anon_sym_GT_GT_EQ] = ACTIONS(1711), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1711), - [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(1713), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_expand] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_orelse] = ACTIONS(1713), - [anon_sym_catch] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1711), - [anon_sym_BANG_EQ] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_GT_EQ] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_LT_LT] = ACTIONS(1713), - [anon_sym_GT_GT] = ACTIONS(1713), - [anon_sym_LT_LT_PIPE] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_SLASH] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1713), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_unreachable] = ACTIONS(1713), - [anon_sym_undefined] = ACTIONS(1713), - [sym_sink] = ACTIONS(1713), - [sym_integer] = ACTIONS(1713), - [sym_float] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym_multiline_string] = ACTIONS(1711), - [sym_character] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1711), - }, - [STATE(612)] = { - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_test] = ACTIONS(1717), - [anon_sym_hide] = ACTIONS(1717), - [anon_sym_func] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), + [anon_sym_func] = ACTIONS(1712), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_QMARK] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_noreturn] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_anyopaque] = ACTIONS(1717), - [anon_sym_bool] = ACTIONS(1717), - [anon_sym_int] = ACTIONS(1717), - [anon_sym_uint] = ACTIONS(1717), - [anon_sym_float] = ACTIONS(1717), - [anon_sym_range] = ACTIONS(1717), - [anon_sym_i8] = ACTIONS(1717), - [anon_sym_i16] = ACTIONS(1717), - [anon_sym_i32] = ACTIONS(1717), - [anon_sym_i64] = ACTIONS(1717), - [anon_sym_u8] = ACTIONS(1717), - [anon_sym_u16] = ACTIONS(1717), - [anon_sym_u32] = ACTIONS(1717), - [anon_sym_u64] = ACTIONS(1717), - [anon_sym_isize] = ACTIONS(1717), - [anon_sym_usize] = ACTIONS(1717), - [anon_sym_f32] = ACTIONS(1717), - [anon_sym_f64] = ACTIONS(1717), - [anon_sym_c_char] = ACTIONS(1717), - [anon_sym_c_schar] = ACTIONS(1717), - [anon_sym_c_uchar] = ACTIONS(1717), - [anon_sym_c_short] = ACTIONS(1717), - [anon_sym_c_ushort] = ACTIONS(1717), - [anon_sym_c_int] = ACTIONS(1717), - [anon_sym_c_uint] = ACTIONS(1717), - [anon_sym_c_long] = ACTIONS(1717), - [anon_sym_c_ulong] = ACTIONS(1717), - [anon_sym_c_longlong] = ACTIONS(1717), - [anon_sym_c_ulonglong] = ACTIONS(1717), - [anon_sym_c_float] = ACTIONS(1717), - [anon_sym_c_double] = ACTIONS(1717), - [anon_sym_c_longdouble] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1715), - [anon_sym_DASH_EQ] = ACTIONS(1715), - [anon_sym_STAR_EQ] = ACTIONS(1715), - [anon_sym_SLASH_EQ] = ACTIONS(1715), - [anon_sym_AMP_EQ] = ACTIONS(1715), - [anon_sym_PIPE_EQ] = ACTIONS(1715), - [anon_sym_xor_EQ] = ACTIONS(1715), - [anon_sym_LT_LT_EQ] = ACTIONS(1715), - [anon_sym_GT_GT_EQ] = ACTIONS(1715), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_defer] = ACTIONS(1717), - [anon_sym_errdefer] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_expand] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_orelse] = ACTIONS(1717), - [anon_sym_catch] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1715), - [anon_sym_BANG_EQ] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1715), - [anon_sym_GT] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [anon_sym_unreachable] = ACTIONS(1717), - [anon_sym_undefined] = ACTIONS(1717), - [sym_sink] = ACTIONS(1717), - [sym_integer] = ACTIONS(1717), - [sym_float] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym_multiline_string] = ACTIONS(1715), - [sym_character] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1715), - }, - [STATE(613)] = { - [ts_builtin_sym_end] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1721), - [anon_sym_import] = ACTIONS(1721), - [anon_sym_test] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_func] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_QMARK] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1705), [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_void] = ACTIONS(1721), - [anon_sym_noreturn] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_anyopaque] = ACTIONS(1721), - [anon_sym_bool] = ACTIONS(1721), - [anon_sym_int] = ACTIONS(1721), - [anon_sym_uint] = ACTIONS(1721), - [anon_sym_float] = ACTIONS(1721), - [anon_sym_range] = ACTIONS(1721), - [anon_sym_i8] = ACTIONS(1721), - [anon_sym_i16] = ACTIONS(1721), - [anon_sym_i32] = ACTIONS(1721), - [anon_sym_i64] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1721), - [anon_sym_u16] = ACTIONS(1721), - [anon_sym_u32] = ACTIONS(1721), - [anon_sym_u64] = ACTIONS(1721), - [anon_sym_isize] = ACTIONS(1721), - [anon_sym_usize] = ACTIONS(1721), - [anon_sym_f32] = ACTIONS(1721), - [anon_sym_f64] = ACTIONS(1721), - [anon_sym_c_char] = ACTIONS(1721), - [anon_sym_c_schar] = ACTIONS(1721), - [anon_sym_c_uchar] = ACTIONS(1721), - [anon_sym_c_short] = ACTIONS(1721), - [anon_sym_c_ushort] = ACTIONS(1721), - [anon_sym_c_int] = ACTIONS(1721), - [anon_sym_c_uint] = ACTIONS(1721), - [anon_sym_c_long] = ACTIONS(1721), - [anon_sym_c_ulong] = ACTIONS(1721), - [anon_sym_c_longlong] = ACTIONS(1721), - [anon_sym_c_ulonglong] = ACTIONS(1721), - [anon_sym_c_float] = ACTIONS(1721), - [anon_sym_c_double] = ACTIONS(1721), - [anon_sym_c_longdouble] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1719), - [anon_sym_DASH_EQ] = ACTIONS(1719), - [anon_sym_STAR_EQ] = ACTIONS(1719), - [anon_sym_SLASH_EQ] = ACTIONS(1719), - [anon_sym_AMP_EQ] = ACTIONS(1719), - [anon_sym_PIPE_EQ] = ACTIONS(1719), - [anon_sym_xor_EQ] = ACTIONS(1719), - [anon_sym_LT_LT_EQ] = ACTIONS(1719), - [anon_sym_GT_GT_EQ] = ACTIONS(1719), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_defer] = ACTIONS(1721), - [anon_sym_errdefer] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_expand] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_orelse] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_or] = ACTIONS(1721), - [anon_sym_and] = ACTIONS(1721), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_LT_EQ] = ACTIONS(1719), - [anon_sym_GT] = ACTIONS(1721), - [anon_sym_GT_EQ] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_xor] = ACTIONS(1721), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_LT_LT_PIPE] = ACTIONS(1721), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_unreachable] = ACTIONS(1721), - [anon_sym_undefined] = ACTIONS(1721), - [sym_sink] = ACTIONS(1721), - [sym_integer] = ACTIONS(1721), - [sym_float] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym_multiline_string] = ACTIONS(1719), - [sym_character] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1719), - }, - [STATE(614)] = { - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_test] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_func] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_EQ] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_QMARK] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_noreturn] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_anyopaque] = ACTIONS(1725), - [anon_sym_bool] = ACTIONS(1725), - [anon_sym_int] = ACTIONS(1725), - [anon_sym_uint] = ACTIONS(1725), - [anon_sym_float] = ACTIONS(1725), - [anon_sym_range] = ACTIONS(1725), - [anon_sym_i8] = ACTIONS(1725), - [anon_sym_i16] = ACTIONS(1725), - [anon_sym_i32] = ACTIONS(1725), - [anon_sym_i64] = ACTIONS(1725), - [anon_sym_u8] = ACTIONS(1725), - [anon_sym_u16] = ACTIONS(1725), - [anon_sym_u32] = ACTIONS(1725), - [anon_sym_u64] = ACTIONS(1725), - [anon_sym_isize] = ACTIONS(1725), - [anon_sym_usize] = ACTIONS(1725), - [anon_sym_f32] = ACTIONS(1725), - [anon_sym_f64] = ACTIONS(1725), - [anon_sym_c_char] = ACTIONS(1725), - [anon_sym_c_schar] = ACTIONS(1725), - [anon_sym_c_uchar] = ACTIONS(1725), - [anon_sym_c_short] = ACTIONS(1725), - [anon_sym_c_ushort] = ACTIONS(1725), - [anon_sym_c_int] = ACTIONS(1725), - [anon_sym_c_uint] = ACTIONS(1725), - [anon_sym_c_long] = ACTIONS(1725), - [anon_sym_c_ulong] = ACTIONS(1725), - [anon_sym_c_longlong] = ACTIONS(1725), - [anon_sym_c_ulonglong] = ACTIONS(1725), - [anon_sym_c_float] = ACTIONS(1725), - [anon_sym_c_double] = ACTIONS(1725), - [anon_sym_c_longdouble] = ACTIONS(1725), - [anon_sym_PLUS_EQ] = ACTIONS(1723), - [anon_sym_DASH_EQ] = ACTIONS(1723), - [anon_sym_STAR_EQ] = ACTIONS(1723), - [anon_sym_SLASH_EQ] = ACTIONS(1723), - [anon_sym_AMP_EQ] = ACTIONS(1723), - [anon_sym_PIPE_EQ] = ACTIONS(1723), - [anon_sym_xor_EQ] = ACTIONS(1723), - [anon_sym_LT_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_GT_EQ] = ACTIONS(1723), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_defer] = ACTIONS(1725), - [anon_sym_errdefer] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_expand] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_orelse] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_or] = ACTIONS(1725), - [anon_sym_and] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_xor] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_LT_LT_PIPE] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_null] = ACTIONS(1725), - [anon_sym_unreachable] = ACTIONS(1725), - [anon_sym_undefined] = ACTIONS(1725), - [sym_sink] = ACTIONS(1725), - [sym_integer] = ACTIONS(1725), - [sym_float] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym_multiline_string] = ACTIONS(1723), - [sym_character] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1723), - }, - [STATE(615)] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1729), - [anon_sym_test] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_func] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_COMMA] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1726), [anon_sym_void] = ACTIONS(1729), [anon_sym_noreturn] = ACTIONS(1729), [anon_sym_type] = ACTIONS(1729), @@ -90384,1581 +65810,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(1729), [anon_sym_c_double] = ACTIONS(1729), [anon_sym_c_longdouble] = ACTIONS(1729), - [anon_sym_PLUS_EQ] = ACTIONS(1727), - [anon_sym_DASH_EQ] = ACTIONS(1727), - [anon_sym_STAR_EQ] = ACTIONS(1727), - [anon_sym_SLASH_EQ] = ACTIONS(1727), - [anon_sym_AMP_EQ] = ACTIONS(1727), - [anon_sym_PIPE_EQ] = ACTIONS(1727), - [anon_sym_xor_EQ] = ACTIONS(1727), - [anon_sym_LT_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_GT_EQ] = ACTIONS(1727), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_defer] = ACTIONS(1729), - [anon_sym_errdefer] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_expand] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_orelse] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_or] = ACTIONS(1729), - [anon_sym_and] = ACTIONS(1729), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_xor] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [anon_sym_null] = ACTIONS(1729), - [anon_sym_unreachable] = ACTIONS(1729), - [anon_sym_undefined] = ACTIONS(1729), - [sym_sink] = ACTIONS(1729), - [sym_integer] = ACTIONS(1729), - [sym_float] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym_multiline_string] = ACTIONS(1727), - [sym_character] = ACTIONS(1727), + [anon_sym_PLUS_EQ] = ACTIONS(1202), + [anon_sym_DASH_EQ] = ACTIONS(1202), + [anon_sym_STAR_EQ] = ACTIONS(1202), + [anon_sym_SLASH_EQ] = ACTIONS(1202), + [anon_sym_AMP_EQ] = ACTIONS(1202), + [anon_sym_PIPE_EQ] = ACTIONS(1207), + [anon_sym_xor_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_EQ] = ACTIONS(1202), + [anon_sym_GT_GT_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1202), + [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_PIPE2] = ACTIONS(1202), + [anon_sym_match] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [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_catch] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), + [anon_sym_null] = ACTIONS(1207), + [anon_sym_unreachable] = ACTIONS(1207), + [anon_sym_undefined] = ACTIONS(1207), + [sym_sink] = ACTIONS(1207), + [sym_integer] = ACTIONS(1207), + [sym_float] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_multiline_string] = ACTIONS(1202), + [sym_character] = ACTIONS(1202), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1727), + [sym__newline] = ACTIONS(1202), }, - [STATE(616)] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_import] = ACTIONS(1733), - [anon_sym_test] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_func] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_void] = ACTIONS(1733), - [anon_sym_noreturn] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_anyopaque] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_int] = ACTIONS(1733), - [anon_sym_uint] = ACTIONS(1733), - [anon_sym_float] = ACTIONS(1733), - [anon_sym_range] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_c_char] = ACTIONS(1733), - [anon_sym_c_schar] = ACTIONS(1733), - [anon_sym_c_uchar] = ACTIONS(1733), - [anon_sym_c_short] = ACTIONS(1733), - [anon_sym_c_ushort] = ACTIONS(1733), - [anon_sym_c_int] = ACTIONS(1733), - [anon_sym_c_uint] = ACTIONS(1733), - [anon_sym_c_long] = ACTIONS(1733), - [anon_sym_c_ulong] = ACTIONS(1733), - [anon_sym_c_longlong] = ACTIONS(1733), - [anon_sym_c_ulonglong] = ACTIONS(1733), - [anon_sym_c_float] = ACTIONS(1733), - [anon_sym_c_double] = ACTIONS(1733), - [anon_sym_c_longdouble] = ACTIONS(1733), - [anon_sym_PLUS_EQ] = ACTIONS(1731), - [anon_sym_DASH_EQ] = ACTIONS(1731), - [anon_sym_STAR_EQ] = ACTIONS(1731), - [anon_sym_SLASH_EQ] = ACTIONS(1731), - [anon_sym_AMP_EQ] = ACTIONS(1731), - [anon_sym_PIPE_EQ] = ACTIONS(1731), - [anon_sym_xor_EQ] = ACTIONS(1731), - [anon_sym_LT_LT_EQ] = ACTIONS(1731), - [anon_sym_GT_GT_EQ] = ACTIONS(1731), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_defer] = ACTIONS(1733), - [anon_sym_errdefer] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_expand] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), - [anon_sym_orelse] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_or] = ACTIONS(1733), - [anon_sym_and] = ACTIONS(1733), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_xor] = ACTIONS(1733), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1733), - [anon_sym_LT_LT_PIPE] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [anon_sym_null] = ACTIONS(1733), - [anon_sym_unreachable] = ACTIONS(1733), - [anon_sym_undefined] = ACTIONS(1733), - [sym_sink] = ACTIONS(1733), - [sym_integer] = ACTIONS(1733), - [sym_float] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [sym_multiline_string] = ACTIONS(1731), - [sym_character] = ACTIONS(1731), + [STATE(201)] = { + [sym_type] = STATE(14942), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1658), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1731), + [sym__newline] = ACTIONS(1285), }, - [STATE(617)] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_test] = ACTIONS(1737), - [anon_sym_hide] = ACTIONS(1737), - [anon_sym_func] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_noreturn] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_anyopaque] = ACTIONS(1737), - [anon_sym_bool] = ACTIONS(1737), - [anon_sym_int] = ACTIONS(1737), - [anon_sym_uint] = ACTIONS(1737), - [anon_sym_float] = ACTIONS(1737), - [anon_sym_range] = ACTIONS(1737), - [anon_sym_i8] = ACTIONS(1737), - [anon_sym_i16] = ACTIONS(1737), - [anon_sym_i32] = ACTIONS(1737), - [anon_sym_i64] = ACTIONS(1737), - [anon_sym_u8] = ACTIONS(1737), - [anon_sym_u16] = ACTIONS(1737), - [anon_sym_u32] = ACTIONS(1737), - [anon_sym_u64] = ACTIONS(1737), - [anon_sym_isize] = ACTIONS(1737), - [anon_sym_usize] = ACTIONS(1737), - [anon_sym_f32] = ACTIONS(1737), - [anon_sym_f64] = ACTIONS(1737), - [anon_sym_c_char] = ACTIONS(1737), - [anon_sym_c_schar] = ACTIONS(1737), - [anon_sym_c_uchar] = ACTIONS(1737), - [anon_sym_c_short] = ACTIONS(1737), - [anon_sym_c_ushort] = ACTIONS(1737), - [anon_sym_c_int] = ACTIONS(1737), - [anon_sym_c_uint] = ACTIONS(1737), - [anon_sym_c_long] = ACTIONS(1737), - [anon_sym_c_ulong] = ACTIONS(1737), - [anon_sym_c_longlong] = ACTIONS(1737), - [anon_sym_c_ulonglong] = ACTIONS(1737), - [anon_sym_c_float] = ACTIONS(1737), - [anon_sym_c_double] = ACTIONS(1737), - [anon_sym_c_longdouble] = ACTIONS(1737), - [anon_sym_PLUS_EQ] = ACTIONS(1735), - [anon_sym_DASH_EQ] = ACTIONS(1735), - [anon_sym_STAR_EQ] = ACTIONS(1735), - [anon_sym_SLASH_EQ] = ACTIONS(1735), - [anon_sym_AMP_EQ] = ACTIONS(1735), - [anon_sym_PIPE_EQ] = ACTIONS(1735), - [anon_sym_xor_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_GT_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_defer] = ACTIONS(1737), - [anon_sym_errdefer] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_expand] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_orelse] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_or] = ACTIONS(1737), - [anon_sym_and] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_xor] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1737), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_LT_LT_PIPE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_unreachable] = ACTIONS(1737), - [anon_sym_undefined] = ACTIONS(1737), - [sym_sink] = ACTIONS(1737), - [sym_integer] = ACTIONS(1737), - [sym_float] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_multiline_string] = ACTIONS(1735), - [sym_character] = ACTIONS(1735), + [STATE(202)] = { + [sym_type] = STATE(3768), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), + [sym_identifier] = ACTIONS(1732), + [anon_sym_func] = ACTIONS(1735), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1741), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_mut] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_noreturn] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_anyopaque] = ACTIONS(1752), + [anon_sym_bool] = ACTIONS(1752), + [anon_sym_int] = ACTIONS(1752), + [anon_sym_uint] = ACTIONS(1752), + [anon_sym_float] = ACTIONS(1752), + [anon_sym_range] = ACTIONS(1752), + [anon_sym_i8] = ACTIONS(1752), + [anon_sym_i16] = ACTIONS(1752), + [anon_sym_i32] = ACTIONS(1752), + [anon_sym_i64] = ACTIONS(1752), + [anon_sym_u8] = ACTIONS(1752), + [anon_sym_u16] = ACTIONS(1752), + [anon_sym_u32] = ACTIONS(1752), + [anon_sym_u64] = ACTIONS(1752), + [anon_sym_isize] = ACTIONS(1752), + [anon_sym_usize] = ACTIONS(1752), + [anon_sym_f32] = ACTIONS(1752), + [anon_sym_f64] = ACTIONS(1752), + [anon_sym_c_char] = ACTIONS(1752), + [anon_sym_c_schar] = ACTIONS(1752), + [anon_sym_c_uchar] = ACTIONS(1752), + [anon_sym_c_short] = ACTIONS(1752), + [anon_sym_c_ushort] = ACTIONS(1752), + [anon_sym_c_int] = ACTIONS(1752), + [anon_sym_c_uint] = ACTIONS(1752), + [anon_sym_c_long] = ACTIONS(1752), + [anon_sym_c_ulong] = ACTIONS(1752), + [anon_sym_c_longlong] = ACTIONS(1752), + [anon_sym_c_ulonglong] = ACTIONS(1752), + [anon_sym_c_float] = ACTIONS(1752), + [anon_sym_c_double] = ACTIONS(1752), + [anon_sym_c_longdouble] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_defer] = ACTIONS(1164), + [anon_sym_errdefer] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_expand] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_PIPE2] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_unreachable] = ACTIONS(1164), + [anon_sym_undefined] = ACTIONS(1164), + [sym_sink] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [sym_float] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_multiline_string] = ACTIONS(1159), + [sym_character] = ACTIONS(1159), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1735), + [sym__newline] = ACTIONS(1159), }, - [STATE(618)] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_test] = ACTIONS(1741), - [anon_sym_hide] = ACTIONS(1741), - [anon_sym_func] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_EQ] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_QMARK] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_noreturn] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_anyopaque] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_int] = ACTIONS(1741), - [anon_sym_uint] = ACTIONS(1741), - [anon_sym_float] = ACTIONS(1741), - [anon_sym_range] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_c_char] = ACTIONS(1741), - [anon_sym_c_schar] = ACTIONS(1741), - [anon_sym_c_uchar] = ACTIONS(1741), - [anon_sym_c_short] = ACTIONS(1741), - [anon_sym_c_ushort] = ACTIONS(1741), - [anon_sym_c_int] = ACTIONS(1741), - [anon_sym_c_uint] = ACTIONS(1741), - [anon_sym_c_long] = ACTIONS(1741), - [anon_sym_c_ulong] = ACTIONS(1741), - [anon_sym_c_longlong] = ACTIONS(1741), - [anon_sym_c_ulonglong] = ACTIONS(1741), - [anon_sym_c_float] = ACTIONS(1741), - [anon_sym_c_double] = ACTIONS(1741), - [anon_sym_c_longdouble] = ACTIONS(1741), - [anon_sym_PLUS_EQ] = ACTIONS(1739), - [anon_sym_DASH_EQ] = ACTIONS(1739), - [anon_sym_STAR_EQ] = ACTIONS(1739), - [anon_sym_SLASH_EQ] = ACTIONS(1739), - [anon_sym_AMP_EQ] = ACTIONS(1739), - [anon_sym_PIPE_EQ] = ACTIONS(1739), - [anon_sym_xor_EQ] = ACTIONS(1739), - [anon_sym_LT_LT_EQ] = ACTIONS(1739), - [anon_sym_GT_GT_EQ] = ACTIONS(1739), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_defer] = ACTIONS(1741), - [anon_sym_errdefer] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_expand] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_orelse] = ACTIONS(1741), - [anon_sym_catch] = ACTIONS(1741), - [anon_sym_or] = ACTIONS(1741), - [anon_sym_and] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_xor] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [anon_sym_LT_LT_PIPE] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_DOT] = ACTIONS(1741), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_unreachable] = ACTIONS(1741), - [anon_sym_undefined] = ACTIONS(1741), - [sym_sink] = ACTIONS(1741), - [sym_integer] = ACTIONS(1741), - [sym_float] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym_multiline_string] = ACTIONS(1739), - [sym_character] = ACTIONS(1739), + [STATE(203)] = { + [sym_type] = STATE(15062), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1739), + [sym__newline] = ACTIONS(1285), }, - [STATE(619)] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_import] = ACTIONS(1745), - [anon_sym_test] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_func] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_EQ] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_COMMA] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_QMARK] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_noreturn] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_anyopaque] = ACTIONS(1745), - [anon_sym_bool] = ACTIONS(1745), - [anon_sym_int] = ACTIONS(1745), - [anon_sym_uint] = ACTIONS(1745), - [anon_sym_float] = ACTIONS(1745), - [anon_sym_range] = ACTIONS(1745), - [anon_sym_i8] = ACTIONS(1745), - [anon_sym_i16] = ACTIONS(1745), - [anon_sym_i32] = ACTIONS(1745), - [anon_sym_i64] = ACTIONS(1745), - [anon_sym_u8] = ACTIONS(1745), - [anon_sym_u16] = ACTIONS(1745), - [anon_sym_u32] = ACTIONS(1745), - [anon_sym_u64] = ACTIONS(1745), - [anon_sym_isize] = ACTIONS(1745), - [anon_sym_usize] = ACTIONS(1745), - [anon_sym_f32] = ACTIONS(1745), - [anon_sym_f64] = ACTIONS(1745), - [anon_sym_c_char] = ACTIONS(1745), - [anon_sym_c_schar] = ACTIONS(1745), - [anon_sym_c_uchar] = ACTIONS(1745), - [anon_sym_c_short] = ACTIONS(1745), - [anon_sym_c_ushort] = ACTIONS(1745), - [anon_sym_c_int] = ACTIONS(1745), - [anon_sym_c_uint] = ACTIONS(1745), - [anon_sym_c_long] = ACTIONS(1745), - [anon_sym_c_ulong] = ACTIONS(1745), - [anon_sym_c_longlong] = ACTIONS(1745), - [anon_sym_c_ulonglong] = ACTIONS(1745), - [anon_sym_c_float] = ACTIONS(1745), - [anon_sym_c_double] = ACTIONS(1745), - [anon_sym_c_longdouble] = ACTIONS(1745), - [anon_sym_PLUS_EQ] = ACTIONS(1743), - [anon_sym_DASH_EQ] = ACTIONS(1743), - [anon_sym_STAR_EQ] = ACTIONS(1743), - [anon_sym_SLASH_EQ] = ACTIONS(1743), - [anon_sym_AMP_EQ] = ACTIONS(1743), - [anon_sym_PIPE_EQ] = ACTIONS(1743), - [anon_sym_xor_EQ] = ACTIONS(1743), - [anon_sym_LT_LT_EQ] = ACTIONS(1743), - [anon_sym_GT_GT_EQ] = ACTIONS(1743), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_defer] = ACTIONS(1745), - [anon_sym_errdefer] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_expand] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_orelse] = ACTIONS(1745), - [anon_sym_catch] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1743), - [anon_sym_BANG_EQ] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_LT_LT] = ACTIONS(1745), - [anon_sym_GT_GT] = ACTIONS(1745), - [anon_sym_LT_LT_PIPE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_DOT] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [anon_sym_unreachable] = ACTIONS(1745), - [anon_sym_undefined] = ACTIONS(1745), - [sym_sink] = ACTIONS(1745), - [sym_integer] = ACTIONS(1745), - [sym_float] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym_multiline_string] = ACTIONS(1743), - [sym_character] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1743), - }, - [STATE(620)] = { - [ts_builtin_sym_end] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_import] = ACTIONS(1749), - [anon_sym_test] = ACTIONS(1749), - [anon_sym_hide] = ACTIONS(1749), - [anon_sym_func] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_COMMA] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_QMARK] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_void] = ACTIONS(1749), - [anon_sym_noreturn] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_anyopaque] = ACTIONS(1749), - [anon_sym_bool] = ACTIONS(1749), - [anon_sym_int] = ACTIONS(1749), - [anon_sym_uint] = ACTIONS(1749), - [anon_sym_float] = ACTIONS(1749), - [anon_sym_range] = ACTIONS(1749), - [anon_sym_i8] = ACTIONS(1749), - [anon_sym_i16] = ACTIONS(1749), - [anon_sym_i32] = ACTIONS(1749), - [anon_sym_i64] = ACTIONS(1749), - [anon_sym_u8] = ACTIONS(1749), - [anon_sym_u16] = ACTIONS(1749), - [anon_sym_u32] = ACTIONS(1749), - [anon_sym_u64] = ACTIONS(1749), - [anon_sym_isize] = ACTIONS(1749), - [anon_sym_usize] = ACTIONS(1749), - [anon_sym_f32] = ACTIONS(1749), - [anon_sym_f64] = ACTIONS(1749), - [anon_sym_c_char] = ACTIONS(1749), - [anon_sym_c_schar] = ACTIONS(1749), - [anon_sym_c_uchar] = ACTIONS(1749), - [anon_sym_c_short] = ACTIONS(1749), - [anon_sym_c_ushort] = ACTIONS(1749), - [anon_sym_c_int] = ACTIONS(1749), - [anon_sym_c_uint] = ACTIONS(1749), - [anon_sym_c_long] = ACTIONS(1749), - [anon_sym_c_ulong] = ACTIONS(1749), - [anon_sym_c_longlong] = ACTIONS(1749), - [anon_sym_c_ulonglong] = ACTIONS(1749), - [anon_sym_c_float] = ACTIONS(1749), - [anon_sym_c_double] = ACTIONS(1749), - [anon_sym_c_longdouble] = ACTIONS(1749), - [anon_sym_PLUS_EQ] = ACTIONS(1747), - [anon_sym_DASH_EQ] = ACTIONS(1747), - [anon_sym_STAR_EQ] = ACTIONS(1747), - [anon_sym_SLASH_EQ] = ACTIONS(1747), - [anon_sym_AMP_EQ] = ACTIONS(1747), - [anon_sym_PIPE_EQ] = ACTIONS(1747), - [anon_sym_xor_EQ] = ACTIONS(1747), - [anon_sym_LT_LT_EQ] = ACTIONS(1747), - [anon_sym_GT_GT_EQ] = ACTIONS(1747), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_defer] = ACTIONS(1749), - [anon_sym_errdefer] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_else] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_expand] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1747), - [anon_sym_orelse] = ACTIONS(1749), - [anon_sym_catch] = ACTIONS(1749), - [anon_sym_or] = ACTIONS(1749), - [anon_sym_and] = ACTIONS(1749), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_xor] = ACTIONS(1749), - [anon_sym_LT_LT] = ACTIONS(1749), - [anon_sym_GT_GT] = ACTIONS(1749), - [anon_sym_LT_LT_PIPE] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_SLASH] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1749), - [anon_sym_DOT] = ACTIONS(1749), - [anon_sym_CARET] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [anon_sym_unreachable] = ACTIONS(1749), - [anon_sym_undefined] = ACTIONS(1749), - [sym_sink] = ACTIONS(1749), - [sym_integer] = ACTIONS(1749), - [sym_float] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_multiline_string] = ACTIONS(1747), - [sym_character] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1747), - }, - [STATE(621)] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_test] = ACTIONS(1753), - [anon_sym_hide] = ACTIONS(1753), - [anon_sym_func] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_EQ] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_noreturn] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_anyopaque] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_int] = ACTIONS(1753), - [anon_sym_uint] = ACTIONS(1753), - [anon_sym_float] = ACTIONS(1753), - [anon_sym_range] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_c_char] = ACTIONS(1753), - [anon_sym_c_schar] = ACTIONS(1753), - [anon_sym_c_uchar] = ACTIONS(1753), - [anon_sym_c_short] = ACTIONS(1753), - [anon_sym_c_ushort] = ACTIONS(1753), - [anon_sym_c_int] = ACTIONS(1753), - [anon_sym_c_uint] = ACTIONS(1753), - [anon_sym_c_long] = ACTIONS(1753), - [anon_sym_c_ulong] = ACTIONS(1753), - [anon_sym_c_longlong] = ACTIONS(1753), - [anon_sym_c_ulonglong] = ACTIONS(1753), - [anon_sym_c_float] = ACTIONS(1753), - [anon_sym_c_double] = ACTIONS(1753), - [anon_sym_c_longdouble] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1751), - [anon_sym_DASH_EQ] = ACTIONS(1751), - [anon_sym_STAR_EQ] = ACTIONS(1751), - [anon_sym_SLASH_EQ] = ACTIONS(1751), - [anon_sym_AMP_EQ] = ACTIONS(1751), - [anon_sym_PIPE_EQ] = ACTIONS(1751), - [anon_sym_xor_EQ] = ACTIONS(1751), - [anon_sym_LT_LT_EQ] = ACTIONS(1751), - [anon_sym_GT_GT_EQ] = ACTIONS(1751), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_defer] = ACTIONS(1753), - [anon_sym_errdefer] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_expand] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_DOT_DOT] = ACTIONS(1753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), - [anon_sym_orelse] = ACTIONS(1753), - [anon_sym_catch] = ACTIONS(1753), - [anon_sym_or] = ACTIONS(1753), - [anon_sym_and] = ACTIONS(1753), - [anon_sym_EQ_EQ] = ACTIONS(1751), - [anon_sym_BANG_EQ] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_xor] = ACTIONS(1753), - [anon_sym_LT_LT] = ACTIONS(1753), - [anon_sym_GT_GT] = ACTIONS(1753), - [anon_sym_LT_LT_PIPE] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_DOT] = ACTIONS(1753), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1753), - [anon_sym_false] = ACTIONS(1753), - [anon_sym_null] = ACTIONS(1753), - [anon_sym_unreachable] = ACTIONS(1753), - [anon_sym_undefined] = ACTIONS(1753), - [sym_sink] = ACTIONS(1753), - [sym_integer] = ACTIONS(1753), - [sym_float] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [sym_multiline_string] = ACTIONS(1751), - [sym_character] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1751), - }, - [STATE(622)] = { - [ts_builtin_sym_end] = ACTIONS(1755), + [STATE(204)] = { + [sym_type] = STATE(3543), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), [sym_identifier] = ACTIONS(1757), - [anon_sym_import] = ACTIONS(1757), - [anon_sym_test] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_func] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_QMARK] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_void] = ACTIONS(1757), - [anon_sym_noreturn] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_anyopaque] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_int] = ACTIONS(1757), - [anon_sym_uint] = ACTIONS(1757), - [anon_sym_float] = ACTIONS(1757), - [anon_sym_range] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_c_char] = ACTIONS(1757), - [anon_sym_c_schar] = ACTIONS(1757), - [anon_sym_c_uchar] = ACTIONS(1757), - [anon_sym_c_short] = ACTIONS(1757), - [anon_sym_c_ushort] = ACTIONS(1757), - [anon_sym_c_int] = ACTIONS(1757), - [anon_sym_c_uint] = ACTIONS(1757), - [anon_sym_c_long] = ACTIONS(1757), - [anon_sym_c_ulong] = ACTIONS(1757), - [anon_sym_c_longlong] = ACTIONS(1757), - [anon_sym_c_ulonglong] = ACTIONS(1757), - [anon_sym_c_float] = ACTIONS(1757), - [anon_sym_c_double] = ACTIONS(1757), - [anon_sym_c_longdouble] = ACTIONS(1757), - [anon_sym_PLUS_EQ] = ACTIONS(1755), - [anon_sym_DASH_EQ] = ACTIONS(1755), - [anon_sym_STAR_EQ] = ACTIONS(1755), - [anon_sym_SLASH_EQ] = ACTIONS(1755), - [anon_sym_AMP_EQ] = ACTIONS(1755), - [anon_sym_PIPE_EQ] = ACTIONS(1755), - [anon_sym_xor_EQ] = ACTIONS(1755), - [anon_sym_LT_LT_EQ] = ACTIONS(1755), - [anon_sym_GT_GT_EQ] = ACTIONS(1755), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_errdefer] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_expand] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_orelse] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_or] = ACTIONS(1757), - [anon_sym_and] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1755), - [anon_sym_BANG_EQ] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_EQ] = ACTIONS(1755), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_xor] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [anon_sym_LT_LT_PIPE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_unreachable] = ACTIONS(1757), - [anon_sym_undefined] = ACTIONS(1757), - [sym_sink] = ACTIONS(1757), - [sym_integer] = ACTIONS(1757), - [sym_float] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym_multiline_string] = ACTIONS(1755), - [sym_character] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1755), - }, - [STATE(623)] = { - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(477), - [anon_sym_import] = ACTIONS(477), - [anon_sym_test] = ACTIONS(477), - [anon_sym_hide] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(483), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_else] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), - }, - [STATE(624)] = { - [ts_builtin_sym_end] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1761), - [anon_sym_import] = ACTIONS(1761), - [anon_sym_test] = ACTIONS(1761), - [anon_sym_hide] = ACTIONS(1761), - [anon_sym_func] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_EQ] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_QMARK] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_void] = ACTIONS(1761), - [anon_sym_noreturn] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_anyopaque] = ACTIONS(1761), - [anon_sym_bool] = ACTIONS(1761), - [anon_sym_int] = ACTIONS(1761), - [anon_sym_uint] = ACTIONS(1761), - [anon_sym_float] = ACTIONS(1761), - [anon_sym_range] = ACTIONS(1761), - [anon_sym_i8] = ACTIONS(1761), - [anon_sym_i16] = ACTIONS(1761), - [anon_sym_i32] = ACTIONS(1761), - [anon_sym_i64] = ACTIONS(1761), - [anon_sym_u8] = ACTIONS(1761), - [anon_sym_u16] = ACTIONS(1761), - [anon_sym_u32] = ACTIONS(1761), - [anon_sym_u64] = ACTIONS(1761), - [anon_sym_isize] = ACTIONS(1761), - [anon_sym_usize] = ACTIONS(1761), - [anon_sym_f32] = ACTIONS(1761), - [anon_sym_f64] = ACTIONS(1761), - [anon_sym_c_char] = ACTIONS(1761), - [anon_sym_c_schar] = ACTIONS(1761), - [anon_sym_c_uchar] = ACTIONS(1761), - [anon_sym_c_short] = ACTIONS(1761), - [anon_sym_c_ushort] = ACTIONS(1761), - [anon_sym_c_int] = ACTIONS(1761), - [anon_sym_c_uint] = ACTIONS(1761), - [anon_sym_c_long] = ACTIONS(1761), - [anon_sym_c_ulong] = ACTIONS(1761), - [anon_sym_c_longlong] = ACTIONS(1761), - [anon_sym_c_ulonglong] = ACTIONS(1761), - [anon_sym_c_float] = ACTIONS(1761), - [anon_sym_c_double] = ACTIONS(1761), - [anon_sym_c_longdouble] = ACTIONS(1761), - [anon_sym_PLUS_EQ] = ACTIONS(1759), - [anon_sym_DASH_EQ] = ACTIONS(1759), - [anon_sym_STAR_EQ] = ACTIONS(1759), - [anon_sym_SLASH_EQ] = ACTIONS(1759), - [anon_sym_AMP_EQ] = ACTIONS(1759), - [anon_sym_PIPE_EQ] = ACTIONS(1759), - [anon_sym_xor_EQ] = ACTIONS(1759), - [anon_sym_LT_LT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_yield] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_defer] = ACTIONS(1761), - [anon_sym_errdefer] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_else] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_expand] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_orelse] = ACTIONS(1761), - [anon_sym_catch] = ACTIONS(1761), - [anon_sym_or] = ACTIONS(1761), - [anon_sym_and] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1759), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_xor] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(1761), - [anon_sym_GT_GT] = ACTIONS(1761), - [anon_sym_LT_LT_PIPE] = ACTIONS(1761), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1761), - [anon_sym_DOT] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [anon_sym_null] = ACTIONS(1761), - [anon_sym_unreachable] = ACTIONS(1761), - [anon_sym_undefined] = ACTIONS(1761), - [sym_sink] = ACTIONS(1761), - [sym_integer] = ACTIONS(1761), - [sym_float] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym_multiline_string] = ACTIONS(1759), - [sym_character] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1759), - }, - [STATE(625)] = { - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1765), - [anon_sym_test] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_func] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), + [anon_sym_func] = ACTIONS(1760), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_void] = ACTIONS(1765), - [anon_sym_noreturn] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_anyopaque] = ACTIONS(1765), - [anon_sym_bool] = ACTIONS(1765), - [anon_sym_int] = ACTIONS(1765), - [anon_sym_uint] = ACTIONS(1765), - [anon_sym_float] = ACTIONS(1765), - [anon_sym_range] = ACTIONS(1765), - [anon_sym_i8] = ACTIONS(1765), - [anon_sym_i16] = ACTIONS(1765), - [anon_sym_i32] = ACTIONS(1765), - [anon_sym_i64] = ACTIONS(1765), - [anon_sym_u8] = ACTIONS(1765), - [anon_sym_u16] = ACTIONS(1765), - [anon_sym_u32] = ACTIONS(1765), - [anon_sym_u64] = ACTIONS(1765), - [anon_sym_isize] = ACTIONS(1765), - [anon_sym_usize] = ACTIONS(1765), - [anon_sym_f32] = ACTIONS(1765), - [anon_sym_f64] = ACTIONS(1765), - [anon_sym_c_char] = ACTIONS(1765), - [anon_sym_c_schar] = ACTIONS(1765), - [anon_sym_c_uchar] = ACTIONS(1765), - [anon_sym_c_short] = ACTIONS(1765), - [anon_sym_c_ushort] = ACTIONS(1765), - [anon_sym_c_int] = ACTIONS(1765), - [anon_sym_c_uint] = ACTIONS(1765), - [anon_sym_c_long] = ACTIONS(1765), - [anon_sym_c_ulong] = ACTIONS(1765), - [anon_sym_c_longlong] = ACTIONS(1765), - [anon_sym_c_ulonglong] = ACTIONS(1765), - [anon_sym_c_float] = ACTIONS(1765), - [anon_sym_c_double] = ACTIONS(1765), - [anon_sym_c_longdouble] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_STAR_EQ] = ACTIONS(1763), - [anon_sym_SLASH_EQ] = ACTIONS(1763), - [anon_sym_AMP_EQ] = ACTIONS(1763), - [anon_sym_PIPE_EQ] = ACTIONS(1763), - [anon_sym_xor_EQ] = ACTIONS(1763), - [anon_sym_LT_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_GT_EQ] = ACTIONS(1763), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_errdefer] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_expand] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_orelse] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_LT_LT_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_unreachable] = ACTIONS(1765), - [anon_sym_undefined] = ACTIONS(1765), - [sym_sink] = ACTIONS(1765), - [sym_integer] = ACTIONS(1765), - [sym_float] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym_multiline_string] = ACTIONS(1763), - [sym_character] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1763), - }, - [STATE(626)] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_import] = ACTIONS(1769), - [anon_sym_test] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_func] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_EQ] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1705), [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_void] = ACTIONS(1769), - [anon_sym_noreturn] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_anyopaque] = ACTIONS(1769), - [anon_sym_bool] = ACTIONS(1769), - [anon_sym_int] = ACTIONS(1769), - [anon_sym_uint] = ACTIONS(1769), - [anon_sym_float] = ACTIONS(1769), - [anon_sym_range] = ACTIONS(1769), - [anon_sym_i8] = ACTIONS(1769), - [anon_sym_i16] = ACTIONS(1769), - [anon_sym_i32] = ACTIONS(1769), - [anon_sym_i64] = ACTIONS(1769), - [anon_sym_u8] = ACTIONS(1769), - [anon_sym_u16] = ACTIONS(1769), - [anon_sym_u32] = ACTIONS(1769), - [anon_sym_u64] = ACTIONS(1769), - [anon_sym_isize] = ACTIONS(1769), - [anon_sym_usize] = ACTIONS(1769), - [anon_sym_f32] = ACTIONS(1769), - [anon_sym_f64] = ACTIONS(1769), - [anon_sym_c_char] = ACTIONS(1769), - [anon_sym_c_schar] = ACTIONS(1769), - [anon_sym_c_uchar] = ACTIONS(1769), - [anon_sym_c_short] = ACTIONS(1769), - [anon_sym_c_ushort] = ACTIONS(1769), - [anon_sym_c_int] = ACTIONS(1769), - [anon_sym_c_uint] = ACTIONS(1769), - [anon_sym_c_long] = ACTIONS(1769), - [anon_sym_c_ulong] = ACTIONS(1769), - [anon_sym_c_longlong] = ACTIONS(1769), - [anon_sym_c_ulonglong] = ACTIONS(1769), - [anon_sym_c_float] = ACTIONS(1769), - [anon_sym_c_double] = ACTIONS(1769), - [anon_sym_c_longdouble] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1767), - [anon_sym_DASH_EQ] = ACTIONS(1767), - [anon_sym_STAR_EQ] = ACTIONS(1767), - [anon_sym_SLASH_EQ] = ACTIONS(1767), - [anon_sym_AMP_EQ] = ACTIONS(1767), - [anon_sym_PIPE_EQ] = ACTIONS(1767), - [anon_sym_xor_EQ] = ACTIONS(1767), - [anon_sym_LT_LT_EQ] = ACTIONS(1767), - [anon_sym_GT_GT_EQ] = ACTIONS(1767), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_errdefer] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_expand] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_orelse] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_LT_LT_PIPE] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [anon_sym_unreachable] = ACTIONS(1769), - [anon_sym_undefined] = ACTIONS(1769), - [sym_sink] = ACTIONS(1769), - [sym_integer] = ACTIONS(1769), - [sym_float] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym_multiline_string] = ACTIONS(1767), - [sym_character] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1767), - }, - [STATE(627)] = { - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_import] = ACTIONS(1773), - [anon_sym_test] = ACTIONS(1773), - [anon_sym_hide] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_EQ] = ACTIONS(1773), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_COMMA] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_QMARK] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_void] = ACTIONS(1773), - [anon_sym_noreturn] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_anyopaque] = ACTIONS(1773), - [anon_sym_bool] = ACTIONS(1773), - [anon_sym_int] = ACTIONS(1773), - [anon_sym_uint] = ACTIONS(1773), - [anon_sym_float] = ACTIONS(1773), - [anon_sym_range] = ACTIONS(1773), - [anon_sym_i8] = ACTIONS(1773), - [anon_sym_i16] = ACTIONS(1773), - [anon_sym_i32] = ACTIONS(1773), - [anon_sym_i64] = ACTIONS(1773), - [anon_sym_u8] = ACTIONS(1773), - [anon_sym_u16] = ACTIONS(1773), - [anon_sym_u32] = ACTIONS(1773), - [anon_sym_u64] = ACTIONS(1773), - [anon_sym_isize] = ACTIONS(1773), - [anon_sym_usize] = ACTIONS(1773), - [anon_sym_f32] = ACTIONS(1773), - [anon_sym_f64] = ACTIONS(1773), - [anon_sym_c_char] = ACTIONS(1773), - [anon_sym_c_schar] = ACTIONS(1773), - [anon_sym_c_uchar] = ACTIONS(1773), - [anon_sym_c_short] = ACTIONS(1773), - [anon_sym_c_ushort] = ACTIONS(1773), - [anon_sym_c_int] = ACTIONS(1773), - [anon_sym_c_uint] = ACTIONS(1773), - [anon_sym_c_long] = ACTIONS(1773), - [anon_sym_c_ulong] = ACTIONS(1773), - [anon_sym_c_longlong] = ACTIONS(1773), - [anon_sym_c_ulonglong] = ACTIONS(1773), - [anon_sym_c_float] = ACTIONS(1773), - [anon_sym_c_double] = ACTIONS(1773), - [anon_sym_c_longdouble] = ACTIONS(1773), - [anon_sym_PLUS_EQ] = ACTIONS(1771), - [anon_sym_DASH_EQ] = ACTIONS(1771), - [anon_sym_STAR_EQ] = ACTIONS(1771), - [anon_sym_SLASH_EQ] = ACTIONS(1771), - [anon_sym_AMP_EQ] = ACTIONS(1771), - [anon_sym_PIPE_EQ] = ACTIONS(1771), - [anon_sym_xor_EQ] = ACTIONS(1771), - [anon_sym_LT_LT_EQ] = ACTIONS(1771), - [anon_sym_GT_GT_EQ] = ACTIONS(1771), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_yield] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_defer] = ACTIONS(1773), - [anon_sym_errdefer] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_else] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_expand] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_orelse] = ACTIONS(1773), - [anon_sym_catch] = ACTIONS(1773), - [anon_sym_or] = ACTIONS(1773), - [anon_sym_and] = ACTIONS(1773), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_LT_EQ] = ACTIONS(1771), - [anon_sym_GT] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_xor] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1773), - [anon_sym_LT_LT_PIPE] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_SLASH] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_unreachable] = ACTIONS(1773), - [anon_sym_undefined] = ACTIONS(1773), - [sym_sink] = ACTIONS(1773), - [sym_integer] = ACTIONS(1773), - [sym_float] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym_multiline_string] = ACTIONS(1771), - [sym_character] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1771), - }, - [STATE(628)] = { - [ts_builtin_sym_end] = ACTIONS(1465), - [sym_identifier] = ACTIONS(1467), - [anon_sym_import] = ACTIONS(1467), - [anon_sym_test] = ACTIONS(1467), - [anon_sym_hide] = ACTIONS(1467), - [anon_sym_func] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1467), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_DOLLAR] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_noreturn] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_anyopaque] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_range] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_c_char] = ACTIONS(1467), - [anon_sym_c_schar] = ACTIONS(1467), - [anon_sym_c_uchar] = ACTIONS(1467), - [anon_sym_c_short] = ACTIONS(1467), - [anon_sym_c_ushort] = ACTIONS(1467), - [anon_sym_c_int] = ACTIONS(1467), - [anon_sym_c_uint] = ACTIONS(1467), - [anon_sym_c_long] = ACTIONS(1467), - [anon_sym_c_ulong] = ACTIONS(1467), - [anon_sym_c_longlong] = ACTIONS(1467), - [anon_sym_c_ulonglong] = ACTIONS(1467), - [anon_sym_c_float] = ACTIONS(1467), - [anon_sym_c_double] = ACTIONS(1467), - [anon_sym_c_longdouble] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_xor_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_errdefer] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_else] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_expand] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_match] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), - [anon_sym_orelse] = ACTIONS(1467), - [anon_sym_catch] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_xor] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_LT_LT_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_unreachable] = ACTIONS(1467), - [anon_sym_undefined] = ACTIONS(1467), - [sym_sink] = ACTIONS(1467), - [sym_integer] = ACTIONS(1467), - [sym_float] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_multiline_string] = ACTIONS(1465), - [sym_character] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1465), - }, - [STATE(629)] = { - [ts_builtin_sym_end] = ACTIONS(1775), - [sym_identifier] = ACTIONS(1777), - [anon_sym_import] = ACTIONS(1777), - [anon_sym_test] = ACTIONS(1777), - [anon_sym_hide] = ACTIONS(1777), - [anon_sym_func] = ACTIONS(1777), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_EQ] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_RPAREN] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_COMMA] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_DOLLAR] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_QMARK] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1774), [anon_sym_void] = ACTIONS(1777), [anon_sym_noreturn] = ACTIONS(1777), [anon_sym_type] = ACTIONS(1777), @@ -91994,117658 +66306,358521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(1777), [anon_sym_c_double] = ACTIONS(1777), [anon_sym_c_longdouble] = ACTIONS(1777), - [anon_sym_PLUS_EQ] = ACTIONS(1775), - [anon_sym_DASH_EQ] = ACTIONS(1775), - [anon_sym_STAR_EQ] = ACTIONS(1775), - [anon_sym_SLASH_EQ] = ACTIONS(1775), - [anon_sym_AMP_EQ] = ACTIONS(1775), - [anon_sym_PIPE_EQ] = ACTIONS(1775), - [anon_sym_xor_EQ] = ACTIONS(1775), - [anon_sym_LT_LT_EQ] = ACTIONS(1775), - [anon_sym_GT_GT_EQ] = ACTIONS(1775), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1775), - [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(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_expand] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1775), - [anon_sym_orelse] = ACTIONS(1777), - [anon_sym_catch] = ACTIONS(1777), - [anon_sym_or] = ACTIONS(1777), - [anon_sym_and] = ACTIONS(1777), - [anon_sym_EQ_EQ] = ACTIONS(1775), - [anon_sym_BANG_EQ] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_LT_EQ] = ACTIONS(1775), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_GT_EQ] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_xor] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(1777), - [anon_sym_GT_GT] = ACTIONS(1777), - [anon_sym_LT_LT_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_SLASH] = ACTIONS(1777), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1777), - [anon_sym_false] = ACTIONS(1777), - [anon_sym_null] = ACTIONS(1777), - [anon_sym_unreachable] = ACTIONS(1777), - [anon_sym_undefined] = ACTIONS(1777), - [sym_sink] = ACTIONS(1777), - [sym_integer] = ACTIONS(1777), - [sym_float] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(1775), - [sym_multiline_string] = ACTIONS(1775), - [sym_character] = ACTIONS(1775), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1775), + [sym__newline] = ACTIONS(1252), }, - [STATE(630)] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_import] = ACTIONS(1781), - [anon_sym_test] = ACTIONS(1781), - [anon_sym_hide] = ACTIONS(1781), - [anon_sym_func] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_EQ] = ACTIONS(1781), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_QMARK] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_void] = ACTIONS(1781), - [anon_sym_noreturn] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_anyopaque] = ACTIONS(1781), - [anon_sym_bool] = ACTIONS(1781), - [anon_sym_int] = ACTIONS(1781), - [anon_sym_uint] = ACTIONS(1781), - [anon_sym_float] = ACTIONS(1781), - [anon_sym_range] = ACTIONS(1781), - [anon_sym_i8] = ACTIONS(1781), - [anon_sym_i16] = ACTIONS(1781), - [anon_sym_i32] = ACTIONS(1781), - [anon_sym_i64] = ACTIONS(1781), - [anon_sym_u8] = ACTIONS(1781), - [anon_sym_u16] = ACTIONS(1781), - [anon_sym_u32] = ACTIONS(1781), - [anon_sym_u64] = ACTIONS(1781), - [anon_sym_isize] = ACTIONS(1781), - [anon_sym_usize] = ACTIONS(1781), - [anon_sym_f32] = ACTIONS(1781), - [anon_sym_f64] = ACTIONS(1781), - [anon_sym_c_char] = ACTIONS(1781), - [anon_sym_c_schar] = ACTIONS(1781), - [anon_sym_c_uchar] = ACTIONS(1781), - [anon_sym_c_short] = ACTIONS(1781), - [anon_sym_c_ushort] = ACTIONS(1781), - [anon_sym_c_int] = ACTIONS(1781), - [anon_sym_c_uint] = ACTIONS(1781), - [anon_sym_c_long] = ACTIONS(1781), - [anon_sym_c_ulong] = ACTIONS(1781), - [anon_sym_c_longlong] = ACTIONS(1781), - [anon_sym_c_ulonglong] = ACTIONS(1781), - [anon_sym_c_float] = ACTIONS(1781), - [anon_sym_c_double] = ACTIONS(1781), - [anon_sym_c_longdouble] = ACTIONS(1781), - [anon_sym_PLUS_EQ] = ACTIONS(1779), - [anon_sym_DASH_EQ] = ACTIONS(1779), - [anon_sym_STAR_EQ] = ACTIONS(1779), - [anon_sym_SLASH_EQ] = ACTIONS(1779), - [anon_sym_AMP_EQ] = ACTIONS(1779), - [anon_sym_PIPE_EQ] = ACTIONS(1779), - [anon_sym_xor_EQ] = ACTIONS(1779), - [anon_sym_LT_LT_EQ] = ACTIONS(1779), - [anon_sym_GT_GT_EQ] = ACTIONS(1779), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_defer] = ACTIONS(1781), - [anon_sym_errdefer] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_expand] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_orelse] = ACTIONS(1781), - [anon_sym_catch] = ACTIONS(1781), - [anon_sym_or] = ACTIONS(1781), - [anon_sym_and] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1779), - [anon_sym_BANG_EQ] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1779), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_xor] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(1781), - [anon_sym_GT_GT] = ACTIONS(1781), - [anon_sym_LT_LT_PIPE] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_unreachable] = ACTIONS(1781), - [anon_sym_undefined] = ACTIONS(1781), - [sym_sink] = ACTIONS(1781), - [sym_integer] = ACTIONS(1781), - [sym_float] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym_multiline_string] = ACTIONS(1779), - [sym_character] = ACTIONS(1779), + [STATE(205)] = { + [sym_type] = STATE(3767), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), + [sym_identifier] = ACTIONS(1732), + [anon_sym_func] = ACTIONS(1735), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1741), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_mut] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_noreturn] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_anyopaque] = ACTIONS(1752), + [anon_sym_bool] = ACTIONS(1752), + [anon_sym_int] = ACTIONS(1752), + [anon_sym_uint] = ACTIONS(1752), + [anon_sym_float] = ACTIONS(1752), + [anon_sym_range] = ACTIONS(1752), + [anon_sym_i8] = ACTIONS(1752), + [anon_sym_i16] = ACTIONS(1752), + [anon_sym_i32] = ACTIONS(1752), + [anon_sym_i64] = ACTIONS(1752), + [anon_sym_u8] = ACTIONS(1752), + [anon_sym_u16] = ACTIONS(1752), + [anon_sym_u32] = ACTIONS(1752), + [anon_sym_u64] = ACTIONS(1752), + [anon_sym_isize] = ACTIONS(1752), + [anon_sym_usize] = ACTIONS(1752), + [anon_sym_f32] = ACTIONS(1752), + [anon_sym_f64] = ACTIONS(1752), + [anon_sym_c_char] = ACTIONS(1752), + [anon_sym_c_schar] = ACTIONS(1752), + [anon_sym_c_uchar] = ACTIONS(1752), + [anon_sym_c_short] = ACTIONS(1752), + [anon_sym_c_ushort] = ACTIONS(1752), + [anon_sym_c_int] = ACTIONS(1752), + [anon_sym_c_uint] = ACTIONS(1752), + [anon_sym_c_long] = ACTIONS(1752), + [anon_sym_c_ulong] = ACTIONS(1752), + [anon_sym_c_longlong] = ACTIONS(1752), + [anon_sym_c_ulonglong] = ACTIONS(1752), + [anon_sym_c_float] = ACTIONS(1752), + [anon_sym_c_double] = ACTIONS(1752), + [anon_sym_c_longdouble] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_defer] = ACTIONS(1164), + [anon_sym_errdefer] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_expand] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_PIPE2] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_unreachable] = ACTIONS(1164), + [anon_sym_undefined] = ACTIONS(1164), + [sym_sink] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [sym_float] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_multiline_string] = ACTIONS(1159), + [sym_character] = ACTIONS(1159), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1779), + [sym__newline] = ACTIONS(1159), }, - [STATE(631)] = { - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym_import] = ACTIONS(1787), - [anon_sym_test] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_func] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_EQ] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_QMARK] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_void] = ACTIONS(1787), - [anon_sym_noreturn] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_anyopaque] = ACTIONS(1787), - [anon_sym_bool] = ACTIONS(1787), - [anon_sym_int] = ACTIONS(1787), - [anon_sym_uint] = ACTIONS(1787), - [anon_sym_float] = ACTIONS(1787), - [anon_sym_range] = ACTIONS(1787), - [anon_sym_i8] = ACTIONS(1787), - [anon_sym_i16] = ACTIONS(1787), - [anon_sym_i32] = ACTIONS(1787), - [anon_sym_i64] = ACTIONS(1787), - [anon_sym_u8] = ACTIONS(1787), - [anon_sym_u16] = ACTIONS(1787), - [anon_sym_u32] = ACTIONS(1787), - [anon_sym_u64] = ACTIONS(1787), - [anon_sym_isize] = ACTIONS(1787), - [anon_sym_usize] = ACTIONS(1787), - [anon_sym_f32] = ACTIONS(1787), - [anon_sym_f64] = ACTIONS(1787), - [anon_sym_c_char] = ACTIONS(1787), - [anon_sym_c_schar] = ACTIONS(1787), - [anon_sym_c_uchar] = ACTIONS(1787), - [anon_sym_c_short] = ACTIONS(1787), - [anon_sym_c_ushort] = ACTIONS(1787), - [anon_sym_c_int] = ACTIONS(1787), - [anon_sym_c_uint] = ACTIONS(1787), - [anon_sym_c_long] = ACTIONS(1787), - [anon_sym_c_ulong] = ACTIONS(1787), - [anon_sym_c_longlong] = ACTIONS(1787), - [anon_sym_c_ulonglong] = ACTIONS(1787), - [anon_sym_c_float] = ACTIONS(1787), - [anon_sym_c_double] = ACTIONS(1787), - [anon_sym_c_longdouble] = ACTIONS(1787), - [anon_sym_PLUS_EQ] = ACTIONS(1785), - [anon_sym_DASH_EQ] = ACTIONS(1785), - [anon_sym_STAR_EQ] = ACTIONS(1785), - [anon_sym_SLASH_EQ] = ACTIONS(1785), - [anon_sym_AMP_EQ] = ACTIONS(1785), - [anon_sym_PIPE_EQ] = ACTIONS(1785), - [anon_sym_xor_EQ] = ACTIONS(1785), - [anon_sym_LT_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_yield] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_defer] = ACTIONS(1787), - [anon_sym_errdefer] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_else] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_expand] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_orelse] = ACTIONS(1787), - [anon_sym_catch] = ACTIONS(1787), - [anon_sym_or] = ACTIONS(1787), - [anon_sym_and] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_xor] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1787), - [anon_sym_GT_GT] = ACTIONS(1787), - [anon_sym_LT_LT_PIPE] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_SLASH] = ACTIONS(1787), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_unreachable] = ACTIONS(1787), - [anon_sym_undefined] = ACTIONS(1787), - [sym_sink] = ACTIONS(1787), - [sym_integer] = ACTIONS(1787), - [sym_float] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_multiline_string] = ACTIONS(1785), - [sym_character] = ACTIONS(1785), + [STATE(206)] = { + [sym_type] = STATE(14970), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1678), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1785), + [sym__newline] = ACTIONS(1285), }, - [STATE(632)] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_test] = ACTIONS(1791), - [anon_sym_hide] = ACTIONS(1791), - [anon_sym_func] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_DOLLAR] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_noreturn] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_anyopaque] = ACTIONS(1791), - [anon_sym_bool] = ACTIONS(1791), - [anon_sym_int] = ACTIONS(1791), - [anon_sym_uint] = ACTIONS(1791), - [anon_sym_float] = ACTIONS(1791), - [anon_sym_range] = ACTIONS(1791), - [anon_sym_i8] = ACTIONS(1791), - [anon_sym_i16] = ACTIONS(1791), - [anon_sym_i32] = ACTIONS(1791), - [anon_sym_i64] = ACTIONS(1791), - [anon_sym_u8] = ACTIONS(1791), - [anon_sym_u16] = ACTIONS(1791), - [anon_sym_u32] = ACTIONS(1791), - [anon_sym_u64] = ACTIONS(1791), - [anon_sym_isize] = ACTIONS(1791), - [anon_sym_usize] = ACTIONS(1791), - [anon_sym_f32] = ACTIONS(1791), - [anon_sym_f64] = ACTIONS(1791), - [anon_sym_c_char] = ACTIONS(1791), - [anon_sym_c_schar] = ACTIONS(1791), - [anon_sym_c_uchar] = ACTIONS(1791), - [anon_sym_c_short] = ACTIONS(1791), - [anon_sym_c_ushort] = ACTIONS(1791), - [anon_sym_c_int] = ACTIONS(1791), - [anon_sym_c_uint] = ACTIONS(1791), - [anon_sym_c_long] = ACTIONS(1791), - [anon_sym_c_ulong] = ACTIONS(1791), - [anon_sym_c_longlong] = ACTIONS(1791), - [anon_sym_c_ulonglong] = ACTIONS(1791), - [anon_sym_c_float] = ACTIONS(1791), - [anon_sym_c_double] = ACTIONS(1791), - [anon_sym_c_longdouble] = ACTIONS(1791), - [anon_sym_PLUS_EQ] = ACTIONS(1789), - [anon_sym_DASH_EQ] = ACTIONS(1789), - [anon_sym_STAR_EQ] = ACTIONS(1789), - [anon_sym_SLASH_EQ] = ACTIONS(1789), - [anon_sym_AMP_EQ] = ACTIONS(1789), - [anon_sym_PIPE_EQ] = ACTIONS(1789), - [anon_sym_xor_EQ] = ACTIONS(1789), - [anon_sym_LT_LT_EQ] = ACTIONS(1789), - [anon_sym_GT_GT_EQ] = ACTIONS(1789), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_errdefer] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_expand] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1789), - [anon_sym_orelse] = ACTIONS(1791), - [anon_sym_catch] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [anon_sym_and] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_xor] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_true] = ACTIONS(1791), - [anon_sym_false] = ACTIONS(1791), - [anon_sym_null] = ACTIONS(1791), - [anon_sym_unreachable] = ACTIONS(1791), - [anon_sym_undefined] = ACTIONS(1791), - [sym_sink] = ACTIONS(1791), - [sym_integer] = ACTIONS(1791), - [sym_float] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [sym_multiline_string] = ACTIONS(1789), - [sym_character] = ACTIONS(1789), + [STATE(207)] = { + [sym_type] = STATE(15061), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1691), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1789), + [sym__newline] = ACTIONS(1285), }, - [STATE(633)] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_test] = ACTIONS(1797), - [anon_sym_hide] = ACTIONS(1797), - [anon_sym_func] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_EQ] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_QMARK] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_noreturn] = ACTIONS(1797), - [anon_sym_type] = 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_PLUS_EQ] = ACTIONS(1795), - [anon_sym_DASH_EQ] = ACTIONS(1795), - [anon_sym_STAR_EQ] = ACTIONS(1795), - [anon_sym_SLASH_EQ] = ACTIONS(1795), - [anon_sym_AMP_EQ] = ACTIONS(1795), - [anon_sym_PIPE_EQ] = ACTIONS(1795), - [anon_sym_xor_EQ] = ACTIONS(1795), - [anon_sym_LT_LT_EQ] = ACTIONS(1795), - [anon_sym_GT_GT_EQ] = ACTIONS(1795), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1795), - [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_DOT_DOT] = ACTIONS(1797), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_orelse] = ACTIONS(1797), - [anon_sym_catch] = ACTIONS(1797), - [anon_sym_or] = ACTIONS(1797), - [anon_sym_and] = ACTIONS(1797), - [anon_sym_EQ_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_LT_EQ] = ACTIONS(1795), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_GT_EQ] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_xor] = ACTIONS(1797), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1797), - [anon_sym_LT_LT_PIPE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1797), - [anon_sym_false] = ACTIONS(1797), - [anon_sym_null] = ACTIONS(1797), - [anon_sym_unreachable] = ACTIONS(1797), - [anon_sym_undefined] = ACTIONS(1797), - [sym_sink] = ACTIONS(1797), - [sym_integer] = ACTIONS(1797), - [sym_float] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_multiline_string] = ACTIONS(1795), - [sym_character] = ACTIONS(1795), + [STATE(208)] = { + [sym_type] = STATE(3551), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), + [sym_identifier] = ACTIONS(1757), + [anon_sym_func] = ACTIONS(1760), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_void] = ACTIONS(1777), + [anon_sym_noreturn] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_anyopaque] = ACTIONS(1777), + [anon_sym_bool] = ACTIONS(1777), + [anon_sym_int] = ACTIONS(1777), + [anon_sym_uint] = ACTIONS(1777), + [anon_sym_float] = ACTIONS(1777), + [anon_sym_range] = ACTIONS(1777), + [anon_sym_i8] = ACTIONS(1777), + [anon_sym_i16] = ACTIONS(1777), + [anon_sym_i32] = ACTIONS(1777), + [anon_sym_i64] = ACTIONS(1777), + [anon_sym_u8] = ACTIONS(1777), + [anon_sym_u16] = ACTIONS(1777), + [anon_sym_u32] = ACTIONS(1777), + [anon_sym_u64] = ACTIONS(1777), + [anon_sym_isize] = ACTIONS(1777), + [anon_sym_usize] = ACTIONS(1777), + [anon_sym_f32] = ACTIONS(1777), + [anon_sym_f64] = ACTIONS(1777), + [anon_sym_c_char] = ACTIONS(1777), + [anon_sym_c_schar] = ACTIONS(1777), + [anon_sym_c_uchar] = ACTIONS(1777), + [anon_sym_c_short] = ACTIONS(1777), + [anon_sym_c_ushort] = ACTIONS(1777), + [anon_sym_c_int] = ACTIONS(1777), + [anon_sym_c_uint] = ACTIONS(1777), + [anon_sym_c_long] = ACTIONS(1777), + [anon_sym_c_ulong] = ACTIONS(1777), + [anon_sym_c_longlong] = ACTIONS(1777), + [anon_sym_c_ulonglong] = ACTIONS(1777), + [anon_sym_c_float] = ACTIONS(1777), + [anon_sym_c_double] = ACTIONS(1777), + [anon_sym_c_longdouble] = ACTIONS(1777), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1795), + [sym__newline] = ACTIONS(1252), }, - [STATE(634)] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_test] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_func] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_EQ] = ACTIONS(1801), - [anon_sym_struct] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_QMARK] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_noreturn] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_anyopaque] = ACTIONS(1801), - [anon_sym_bool] = ACTIONS(1801), - [anon_sym_int] = ACTIONS(1801), - [anon_sym_uint] = ACTIONS(1801), - [anon_sym_float] = ACTIONS(1801), - [anon_sym_range] = ACTIONS(1801), - [anon_sym_i8] = ACTIONS(1801), - [anon_sym_i16] = ACTIONS(1801), - [anon_sym_i32] = ACTIONS(1801), - [anon_sym_i64] = ACTIONS(1801), - [anon_sym_u8] = ACTIONS(1801), - [anon_sym_u16] = ACTIONS(1801), - [anon_sym_u32] = ACTIONS(1801), - [anon_sym_u64] = ACTIONS(1801), - [anon_sym_isize] = ACTIONS(1801), - [anon_sym_usize] = ACTIONS(1801), - [anon_sym_f32] = ACTIONS(1801), - [anon_sym_f64] = ACTIONS(1801), - [anon_sym_c_char] = ACTIONS(1801), - [anon_sym_c_schar] = ACTIONS(1801), - [anon_sym_c_uchar] = ACTIONS(1801), - [anon_sym_c_short] = ACTIONS(1801), - [anon_sym_c_ushort] = ACTIONS(1801), - [anon_sym_c_int] = ACTIONS(1801), - [anon_sym_c_uint] = ACTIONS(1801), - [anon_sym_c_long] = ACTIONS(1801), - [anon_sym_c_ulong] = ACTIONS(1801), - [anon_sym_c_longlong] = ACTIONS(1801), - [anon_sym_c_ulonglong] = ACTIONS(1801), - [anon_sym_c_float] = ACTIONS(1801), - [anon_sym_c_double] = ACTIONS(1801), - [anon_sym_c_longdouble] = ACTIONS(1801), - [anon_sym_PLUS_EQ] = ACTIONS(1799), - [anon_sym_DASH_EQ] = ACTIONS(1799), - [anon_sym_STAR_EQ] = ACTIONS(1799), - [anon_sym_SLASH_EQ] = ACTIONS(1799), - [anon_sym_AMP_EQ] = ACTIONS(1799), - [anon_sym_PIPE_EQ] = ACTIONS(1799), - [anon_sym_xor_EQ] = ACTIONS(1799), - [anon_sym_LT_LT_EQ] = ACTIONS(1799), - [anon_sym_GT_GT_EQ] = ACTIONS(1799), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_defer] = ACTIONS(1801), - [anon_sym_errdefer] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_expand] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_orelse] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_or] = ACTIONS(1801), - [anon_sym_and] = ACTIONS(1801), - [anon_sym_EQ_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_LT_EQ] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_xor] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1801), - [anon_sym_LT_LT_PIPE] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_DOT] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_unreachable] = ACTIONS(1801), - [anon_sym_undefined] = ACTIONS(1801), - [sym_sink] = ACTIONS(1801), - [sym_integer] = ACTIONS(1801), - [sym_float] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym_multiline_string] = ACTIONS(1799), - [sym_character] = ACTIONS(1799), + [STATE(209)] = { + [sym_type] = STATE(15081), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1697), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1799), + [sym__newline] = ACTIONS(1285), }, - [STATE(635)] = { - [ts_builtin_sym_end] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1805), - [anon_sym_import] = ACTIONS(1805), - [anon_sym_test] = ACTIONS(1805), - [anon_sym_hide] = ACTIONS(1805), - [anon_sym_func] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_COMMA] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_void] = ACTIONS(1805), - [anon_sym_noreturn] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_anyopaque] = ACTIONS(1805), - [anon_sym_bool] = ACTIONS(1805), - [anon_sym_int] = ACTIONS(1805), - [anon_sym_uint] = ACTIONS(1805), - [anon_sym_float] = ACTIONS(1805), - [anon_sym_range] = ACTIONS(1805), - [anon_sym_i8] = ACTIONS(1805), - [anon_sym_i16] = ACTIONS(1805), - [anon_sym_i32] = ACTIONS(1805), - [anon_sym_i64] = ACTIONS(1805), - [anon_sym_u8] = ACTIONS(1805), - [anon_sym_u16] = ACTIONS(1805), - [anon_sym_u32] = ACTIONS(1805), - [anon_sym_u64] = ACTIONS(1805), - [anon_sym_isize] = ACTIONS(1805), - [anon_sym_usize] = ACTIONS(1805), - [anon_sym_f32] = ACTIONS(1805), - [anon_sym_f64] = ACTIONS(1805), - [anon_sym_c_char] = ACTIONS(1805), - [anon_sym_c_schar] = ACTIONS(1805), - [anon_sym_c_uchar] = ACTIONS(1805), - [anon_sym_c_short] = ACTIONS(1805), - [anon_sym_c_ushort] = ACTIONS(1805), - [anon_sym_c_int] = ACTIONS(1805), - [anon_sym_c_uint] = ACTIONS(1805), - [anon_sym_c_long] = ACTIONS(1805), - [anon_sym_c_ulong] = ACTIONS(1805), - [anon_sym_c_longlong] = ACTIONS(1805), - [anon_sym_c_ulonglong] = ACTIONS(1805), - [anon_sym_c_float] = ACTIONS(1805), - [anon_sym_c_double] = ACTIONS(1805), - [anon_sym_c_longdouble] = ACTIONS(1805), - [anon_sym_PLUS_EQ] = ACTIONS(1803), - [anon_sym_DASH_EQ] = ACTIONS(1803), - [anon_sym_STAR_EQ] = ACTIONS(1803), - [anon_sym_SLASH_EQ] = ACTIONS(1803), - [anon_sym_AMP_EQ] = ACTIONS(1803), - [anon_sym_PIPE_EQ] = ACTIONS(1803), - [anon_sym_xor_EQ] = ACTIONS(1803), - [anon_sym_LT_LT_EQ] = ACTIONS(1803), - [anon_sym_GT_GT_EQ] = ACTIONS(1803), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_yield] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_defer] = ACTIONS(1805), - [anon_sym_errdefer] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_expand] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1805), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), - [anon_sym_orelse] = ACTIONS(1805), - [anon_sym_catch] = ACTIONS(1805), - [anon_sym_or] = ACTIONS(1805), - [anon_sym_and] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_xor] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1805), - [anon_sym_LT_LT_PIPE] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [anon_sym_null] = ACTIONS(1805), - [anon_sym_unreachable] = ACTIONS(1805), - [anon_sym_undefined] = ACTIONS(1805), - [sym_sink] = ACTIONS(1805), - [sym_integer] = ACTIONS(1805), - [sym_float] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym_multiline_string] = ACTIONS(1803), - [sym_character] = ACTIONS(1803), + [STATE(210)] = { + [sym_type] = STATE(8911), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_PIPE2] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT_PIPE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1803), + [sym__newline] = ACTIONS(1335), }, - [STATE(636)] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_test] = ACTIONS(1809), - [anon_sym_hide] = ACTIONS(1809), - [anon_sym_func] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_RPAREN] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1809), + [STATE(211)] = { + [sym_type] = STATE(3690), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), + [sym_identifier] = ACTIONS(1792), + [anon_sym_func] = ACTIONS(1795), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1801), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_mut] = ACTIONS(1707), [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_noreturn] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_anyopaque] = ACTIONS(1809), - [anon_sym_bool] = ACTIONS(1809), - [anon_sym_int] = ACTIONS(1809), - [anon_sym_uint] = ACTIONS(1809), - [anon_sym_float] = ACTIONS(1809), - [anon_sym_range] = ACTIONS(1809), - [anon_sym_i8] = ACTIONS(1809), - [anon_sym_i16] = ACTIONS(1809), - [anon_sym_i32] = ACTIONS(1809), - [anon_sym_i64] = ACTIONS(1809), - [anon_sym_u8] = ACTIONS(1809), - [anon_sym_u16] = ACTIONS(1809), - [anon_sym_u32] = ACTIONS(1809), - [anon_sym_u64] = ACTIONS(1809), - [anon_sym_isize] = ACTIONS(1809), - [anon_sym_usize] = ACTIONS(1809), - [anon_sym_f32] = ACTIONS(1809), - [anon_sym_f64] = ACTIONS(1809), - [anon_sym_c_char] = ACTIONS(1809), - [anon_sym_c_schar] = ACTIONS(1809), - [anon_sym_c_uchar] = ACTIONS(1809), - [anon_sym_c_short] = ACTIONS(1809), - [anon_sym_c_ushort] = ACTIONS(1809), - [anon_sym_c_int] = ACTIONS(1809), - [anon_sym_c_uint] = ACTIONS(1809), - [anon_sym_c_long] = ACTIONS(1809), - [anon_sym_c_ulong] = ACTIONS(1809), - [anon_sym_c_longlong] = ACTIONS(1809), - [anon_sym_c_ulonglong] = ACTIONS(1809), - [anon_sym_c_float] = ACTIONS(1809), - [anon_sym_c_double] = ACTIONS(1809), - [anon_sym_c_longdouble] = ACTIONS(1809), - [anon_sym_PLUS_EQ] = ACTIONS(1807), - [anon_sym_DASH_EQ] = ACTIONS(1807), - [anon_sym_STAR_EQ] = ACTIONS(1807), - [anon_sym_SLASH_EQ] = ACTIONS(1807), - [anon_sym_AMP_EQ] = ACTIONS(1807), - [anon_sym_PIPE_EQ] = ACTIONS(1807), - [anon_sym_xor_EQ] = ACTIONS(1807), - [anon_sym_LT_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_GT_EQ] = ACTIONS(1807), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_errdefer] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_expand] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_DOT_DOT] = ACTIONS(1809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1807), - [anon_sym_orelse] = ACTIONS(1809), - [anon_sym_catch] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [anon_sym_and] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_xor] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_LT_LT_PIPE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_true] = ACTIONS(1809), - [anon_sym_false] = ACTIONS(1809), - [anon_sym_null] = ACTIONS(1809), - [anon_sym_unreachable] = ACTIONS(1809), - [anon_sym_undefined] = ACTIONS(1809), - [sym_sink] = ACTIONS(1809), - [sym_integer] = ACTIONS(1809), - [sym_float] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [sym_multiline_string] = ACTIONS(1807), - [sym_character] = ACTIONS(1807), + [anon_sym_void] = ACTIONS(1810), + [anon_sym_noreturn] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1810), + [anon_sym_anyopaque] = ACTIONS(1810), + [anon_sym_bool] = ACTIONS(1810), + [anon_sym_int] = ACTIONS(1810), + [anon_sym_uint] = ACTIONS(1810), + [anon_sym_float] = ACTIONS(1810), + [anon_sym_range] = ACTIONS(1810), + [anon_sym_i8] = ACTIONS(1810), + [anon_sym_i16] = ACTIONS(1810), + [anon_sym_i32] = ACTIONS(1810), + [anon_sym_i64] = ACTIONS(1810), + [anon_sym_u8] = ACTIONS(1810), + [anon_sym_u16] = ACTIONS(1810), + [anon_sym_u32] = ACTIONS(1810), + [anon_sym_u64] = ACTIONS(1810), + [anon_sym_isize] = ACTIONS(1810), + [anon_sym_usize] = ACTIONS(1810), + [anon_sym_f32] = ACTIONS(1810), + [anon_sym_f64] = ACTIONS(1810), + [anon_sym_c_char] = ACTIONS(1810), + [anon_sym_c_schar] = ACTIONS(1810), + [anon_sym_c_uchar] = ACTIONS(1810), + [anon_sym_c_short] = ACTIONS(1810), + [anon_sym_c_ushort] = ACTIONS(1810), + [anon_sym_c_int] = ACTIONS(1810), + [anon_sym_c_uint] = ACTIONS(1810), + [anon_sym_c_long] = ACTIONS(1810), + [anon_sym_c_ulong] = ACTIONS(1810), + [anon_sym_c_longlong] = ACTIONS(1810), + [anon_sym_c_ulonglong] = ACTIONS(1810), + [anon_sym_c_float] = ACTIONS(1810), + [anon_sym_c_double] = ACTIONS(1810), + [anon_sym_c_longdouble] = ACTIONS(1810), + [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(1196), + [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(1196), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_defer] = ACTIONS(1196), + [anon_sym_errdefer] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_expand] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_PIPE2] = ACTIONS(1192), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_unreachable] = ACTIONS(1196), + [anon_sym_undefined] = ACTIONS(1196), + [sym_sink] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [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(1807), + [sym__newline] = ACTIONS(1192), }, - [STATE(637)] = { - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_import] = ACTIONS(1813), - [anon_sym_test] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_func] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_EQ] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_RPAREN] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_QMARK] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_void] = ACTIONS(1813), - [anon_sym_noreturn] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_anyopaque] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_int] = ACTIONS(1813), - [anon_sym_uint] = ACTIONS(1813), - [anon_sym_float] = ACTIONS(1813), - [anon_sym_range] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_c_char] = ACTIONS(1813), - [anon_sym_c_schar] = ACTIONS(1813), - [anon_sym_c_uchar] = ACTIONS(1813), - [anon_sym_c_short] = ACTIONS(1813), - [anon_sym_c_ushort] = ACTIONS(1813), - [anon_sym_c_int] = ACTIONS(1813), - [anon_sym_c_uint] = ACTIONS(1813), - [anon_sym_c_long] = ACTIONS(1813), - [anon_sym_c_ulong] = ACTIONS(1813), - [anon_sym_c_longlong] = ACTIONS(1813), - [anon_sym_c_ulonglong] = ACTIONS(1813), - [anon_sym_c_float] = ACTIONS(1813), - [anon_sym_c_double] = ACTIONS(1813), - [anon_sym_c_longdouble] = ACTIONS(1813), - [anon_sym_PLUS_EQ] = ACTIONS(1811), - [anon_sym_DASH_EQ] = ACTIONS(1811), - [anon_sym_STAR_EQ] = ACTIONS(1811), - [anon_sym_SLASH_EQ] = ACTIONS(1811), - [anon_sym_AMP_EQ] = ACTIONS(1811), - [anon_sym_PIPE_EQ] = ACTIONS(1811), - [anon_sym_xor_EQ] = ACTIONS(1811), - [anon_sym_LT_LT_EQ] = ACTIONS(1811), - [anon_sym_GT_GT_EQ] = ACTIONS(1811), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_defer] = ACTIONS(1813), - [anon_sym_errdefer] = ACTIONS(1813), + [STATE(212)] = { + [sym_type] = STATE(3768), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), + [sym_identifier] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_PIPE2] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT_PIPE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1335), + }, + [STATE(213)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9582), + [sym_labeled_block] = STATE(9582), + [sym_if_statement] = STATE(9582), + [sym_while_statement] = STATE(9582), + [sym_for_statement] = STATE(9582), + [sym_match_statement] = STATE(9582), + [sym__value] = STATE(9582), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), [anon_sym_if] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_expand] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_DOT_DOT] = ACTIONS(1813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), - [anon_sym_orelse] = ACTIONS(1813), - [anon_sym_catch] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [anon_sym_and] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1811), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_xor] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_LT_LT_PIPE] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [anon_sym_null] = ACTIONS(1813), - [anon_sym_unreachable] = ACTIONS(1813), - [anon_sym_undefined] = ACTIONS(1813), - [sym_sink] = ACTIONS(1813), - [sym_integer] = ACTIONS(1813), - [sym_float] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [sym_multiline_string] = ACTIONS(1811), - [sym_character] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1811), + [sym__newline] = ACTIONS(17), }, - [STATE(638)] = { - [ts_builtin_sym_end] = ACTIONS(457), - [sym_identifier] = ACTIONS(455), - [anon_sym_import] = ACTIONS(455), - [anon_sym_test] = ACTIONS(455), - [anon_sym_hide] = ACTIONS(455), - [anon_sym_func] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_struct] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_RPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_void] = ACTIONS(455), - [anon_sym_noreturn] = ACTIONS(455), - [anon_sym_type] = ACTIONS(455), - [anon_sym_anyopaque] = ACTIONS(455), - [anon_sym_bool] = ACTIONS(455), - [anon_sym_int] = ACTIONS(455), - [anon_sym_uint] = ACTIONS(455), - [anon_sym_float] = ACTIONS(455), - [anon_sym_range] = ACTIONS(455), - [anon_sym_i8] = ACTIONS(455), - [anon_sym_i16] = ACTIONS(455), - [anon_sym_i32] = ACTIONS(455), - [anon_sym_i64] = ACTIONS(455), - [anon_sym_u8] = ACTIONS(455), - [anon_sym_u16] = ACTIONS(455), - [anon_sym_u32] = ACTIONS(455), - [anon_sym_u64] = ACTIONS(455), - [anon_sym_isize] = ACTIONS(455), - [anon_sym_usize] = ACTIONS(455), - [anon_sym_f32] = ACTIONS(455), - [anon_sym_f64] = ACTIONS(455), - [anon_sym_c_char] = ACTIONS(455), - [anon_sym_c_schar] = ACTIONS(455), - [anon_sym_c_uchar] = ACTIONS(455), - [anon_sym_c_short] = ACTIONS(455), - [anon_sym_c_ushort] = ACTIONS(455), - [anon_sym_c_int] = ACTIONS(455), - [anon_sym_c_uint] = ACTIONS(455), - [anon_sym_c_long] = ACTIONS(455), - [anon_sym_c_ulong] = ACTIONS(455), - [anon_sym_c_longlong] = ACTIONS(455), - [anon_sym_c_ulonglong] = ACTIONS(455), - [anon_sym_c_float] = ACTIONS(455), - [anon_sym_c_double] = ACTIONS(455), - [anon_sym_c_longdouble] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_xor_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(457), - [anon_sym_return] = ACTIONS(455), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_defer] = ACTIONS(455), - [anon_sym_errdefer] = ACTIONS(455), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(455), - [anon_sym_while] = ACTIONS(455), - [anon_sym_expand] = ACTIONS(455), - [anon_sym_for] = ACTIONS(455), - [anon_sym_match] = ACTIONS(455), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(457), - [anon_sym_orelse] = ACTIONS(455), - [anon_sym_catch] = ACTIONS(455), - [anon_sym_or] = ACTIONS(455), - [anon_sym_and] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_xor] = ACTIONS(455), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_LT_LT_PIPE] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_try] = ACTIONS(455), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_null] = ACTIONS(455), - [anon_sym_unreachable] = ACTIONS(455), - [anon_sym_undefined] = ACTIONS(455), - [sym_sink] = ACTIONS(455), - [sym_integer] = ACTIONS(455), - [sym_float] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_multiline_string] = ACTIONS(457), - [sym_character] = ACTIONS(457), + [STATE(214)] = { + [sym_type] = STATE(3543), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), + [sym_identifier] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_LT_LT_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(457), + [sym__newline] = ACTIONS(1331), }, - [STATE(639)] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1609), - [anon_sym_import] = ACTIONS(1609), - [anon_sym_test] = ACTIONS(1609), - [anon_sym_hide] = ACTIONS(1609), - [anon_sym_func] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_EQ] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_COMMA] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_noreturn] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_anyopaque] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_range] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_c_char] = ACTIONS(1609), - [anon_sym_c_schar] = ACTIONS(1609), - [anon_sym_c_uchar] = ACTIONS(1609), - [anon_sym_c_short] = ACTIONS(1609), - [anon_sym_c_ushort] = ACTIONS(1609), - [anon_sym_c_int] = ACTIONS(1609), - [anon_sym_c_uint] = ACTIONS(1609), - [anon_sym_c_long] = ACTIONS(1609), - [anon_sym_c_ulong] = ACTIONS(1609), - [anon_sym_c_longlong] = ACTIONS(1609), - [anon_sym_c_ulonglong] = ACTIONS(1609), - [anon_sym_c_float] = ACTIONS(1609), - [anon_sym_c_double] = ACTIONS(1609), - [anon_sym_c_longdouble] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1607), - [anon_sym_DASH_EQ] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1607), - [anon_sym_SLASH_EQ] = ACTIONS(1607), - [anon_sym_AMP_EQ] = ACTIONS(1607), - [anon_sym_PIPE_EQ] = ACTIONS(1607), - [anon_sym_xor_EQ] = ACTIONS(1607), - [anon_sym_LT_LT_EQ] = ACTIONS(1607), - [anon_sym_GT_GT_EQ] = ACTIONS(1607), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_defer] = ACTIONS(1609), - [anon_sym_errdefer] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_expand] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_match] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_orelse] = ACTIONS(1609), - [anon_sym_catch] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_LT_EQ] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1609), - [anon_sym_GT_EQ] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1609), - [anon_sym_GT_GT] = ACTIONS(1609), - [anon_sym_LT_LT_PIPE] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_SLASH] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_DOT] = ACTIONS(1609), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_unreachable] = ACTIONS(1609), - [anon_sym_undefined] = ACTIONS(1609), - [sym_sink] = ACTIONS(1609), - [sym_integer] = ACTIONS(1609), - [sym_float] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_multiline_string] = ACTIONS(1607), - [sym_character] = ACTIONS(1607), + [STATE(215)] = { + [sym_type] = STATE(8939), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_LT_LT_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1607), + [sym__newline] = ACTIONS(1331), }, - [STATE(640)] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_identifier] = ACTIONS(1817), - [anon_sym_import] = ACTIONS(1817), - [anon_sym_test] = ACTIONS(1817), - [anon_sym_hide] = ACTIONS(1817), - [anon_sym_func] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_DOLLAR] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_void] = ACTIONS(1817), - [anon_sym_noreturn] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_anyopaque] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_int] = ACTIONS(1817), - [anon_sym_uint] = ACTIONS(1817), - [anon_sym_float] = ACTIONS(1817), - [anon_sym_range] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_c_char] = ACTIONS(1817), - [anon_sym_c_schar] = ACTIONS(1817), - [anon_sym_c_uchar] = ACTIONS(1817), - [anon_sym_c_short] = ACTIONS(1817), - [anon_sym_c_ushort] = ACTIONS(1817), - [anon_sym_c_int] = ACTIONS(1817), - [anon_sym_c_uint] = ACTIONS(1817), - [anon_sym_c_long] = ACTIONS(1817), - [anon_sym_c_ulong] = ACTIONS(1817), - [anon_sym_c_longlong] = ACTIONS(1817), - [anon_sym_c_ulonglong] = ACTIONS(1817), - [anon_sym_c_float] = ACTIONS(1817), - [anon_sym_c_double] = ACTIONS(1817), - [anon_sym_c_longdouble] = ACTIONS(1817), - [anon_sym_PLUS_EQ] = ACTIONS(1815), - [anon_sym_DASH_EQ] = ACTIONS(1815), - [anon_sym_STAR_EQ] = ACTIONS(1815), - [anon_sym_SLASH_EQ] = ACTIONS(1815), - [anon_sym_AMP_EQ] = ACTIONS(1815), - [anon_sym_PIPE_EQ] = ACTIONS(1815), - [anon_sym_xor_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_GT_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_defer] = ACTIONS(1817), - [anon_sym_errdefer] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_expand] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1815), - [anon_sym_orelse] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_xor] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_null] = ACTIONS(1817), - [anon_sym_unreachable] = ACTIONS(1817), - [anon_sym_undefined] = ACTIONS(1817), - [sym_sink] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(1815), - [sym_multiline_string] = ACTIONS(1815), - [sym_character] = ACTIONS(1815), + [STATE(216)] = { + [sym_type] = STATE(9001), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_LT_LT_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1815), + [sym__newline] = ACTIONS(1258), }, - [STATE(641)] = { - [ts_builtin_sym_end] = ACTIONS(1819), - [sym_identifier] = ACTIONS(1821), - [anon_sym_import] = ACTIONS(1821), - [anon_sym_test] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_func] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_EQ] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_COMMA] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1821), - [anon_sym_QMARK] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1821), - [anon_sym_noreturn] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_anyopaque] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_int] = ACTIONS(1821), - [anon_sym_uint] = ACTIONS(1821), - [anon_sym_float] = ACTIONS(1821), - [anon_sym_range] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_c_char] = ACTIONS(1821), - [anon_sym_c_schar] = ACTIONS(1821), - [anon_sym_c_uchar] = ACTIONS(1821), - [anon_sym_c_short] = ACTIONS(1821), - [anon_sym_c_ushort] = ACTIONS(1821), - [anon_sym_c_int] = ACTIONS(1821), - [anon_sym_c_uint] = ACTIONS(1821), - [anon_sym_c_long] = ACTIONS(1821), - [anon_sym_c_ulong] = ACTIONS(1821), - [anon_sym_c_longlong] = ACTIONS(1821), - [anon_sym_c_ulonglong] = ACTIONS(1821), - [anon_sym_c_float] = ACTIONS(1821), - [anon_sym_c_double] = ACTIONS(1821), - [anon_sym_c_longdouble] = ACTIONS(1821), - [anon_sym_PLUS_EQ] = ACTIONS(1819), - [anon_sym_DASH_EQ] = ACTIONS(1819), - [anon_sym_STAR_EQ] = ACTIONS(1819), - [anon_sym_SLASH_EQ] = ACTIONS(1819), - [anon_sym_AMP_EQ] = ACTIONS(1819), - [anon_sym_PIPE_EQ] = ACTIONS(1819), - [anon_sym_xor_EQ] = ACTIONS(1819), - [anon_sym_LT_LT_EQ] = ACTIONS(1819), - [anon_sym_GT_GT_EQ] = ACTIONS(1819), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_yield] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_defer] = ACTIONS(1821), - [anon_sym_errdefer] = ACTIONS(1821), + [STATE(217)] = { + [sym_type] = STATE(9046), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(1194), + [anon_sym_func] = ACTIONS(1194), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_mut] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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(1196), + [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(1196), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_expand] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_PIPE2] = ACTIONS(1192), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(218)] = { + [sym_type] = STATE(3551), + [sym__type_atom] = STATE(3376), + [sym_parenthesized_type] = STATE(3376), + [sym_named_type] = STATE(3376), + [sym_intrinsic_type] = STATE(3376), + [sym_optional_type] = STATE(3376), + [sym_pointer_type] = STATE(3376), + [sym_array_type] = STATE(3376), + [sym_function_type] = STATE(3376), + [sym_builtin_type] = STATE(3376), + [sym_qualified_identifier] = STATE(3434), + [sym_identifier] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_c_func] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_struct_type_BANG] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_LT_LT_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1258), + }, + [STATE(219)] = { + [sym_type] = STATE(15081), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1697), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(220)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4225), + [sym_labeled_block] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_while_statement] = STATE(4225), + [sym_for_statement] = STATE(4225), + [sym_match_statement] = STATE(4225), + [sym__value] = STATE(4225), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), [anon_sym_if] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_expand] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [anon_sym_orelse] = ACTIONS(1821), - [anon_sym_catch] = ACTIONS(1821), - [anon_sym_or] = ACTIONS(1821), - [anon_sym_and] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1819), - [anon_sym_BANG_EQ] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1821), - [anon_sym_LT_EQ] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_xor] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_LT_LT_PIPE] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_SLASH] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_unreachable] = ACTIONS(1821), - [anon_sym_undefined] = ACTIONS(1821), - [sym_sink] = ACTIONS(1821), - [sym_integer] = ACTIONS(1821), - [sym_float] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym_multiline_string] = ACTIONS(1819), - [sym_character] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1819), + [sym__newline] = ACTIONS(17), }, - [STATE(642)] = { - [ts_builtin_sym_end] = ACTIONS(1823), + [STATE(221)] = { + [sym_type] = STATE(15062), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(222)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9582), + [sym_labeled_block] = STATE(9582), + [sym_if_statement] = STATE(9582), + [sym_while_statement] = STATE(9582), + [sym_for_statement] = STATE(9582), + [sym_match_statement] = STATE(9582), + [sym__value] = STATE(9582), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(21), + [anon_sym_DOT_DOT_EQ] = ACTIONS(17), + [anon_sym_orelse] = ACTIONS(21), + [anon_sym_or] = ACTIONS(21), + [anon_sym_and] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(17), + [anon_sym_BANG_EQ] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_LT_EQ] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(21), + [anon_sym_GT_EQ] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(21), + [anon_sym_LT_LT] = ACTIONS(21), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT_LT_PIPE] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(17), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_catch] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(17), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(223)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), [sym_identifier] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_test] = ACTIONS(1825), - [anon_sym_hide] = ACTIONS(1825), - [anon_sym_func] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_EQ] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_QMARK] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_noreturn] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_anyopaque] = ACTIONS(1825), - [anon_sym_bool] = ACTIONS(1825), - [anon_sym_int] = ACTIONS(1825), - [anon_sym_uint] = ACTIONS(1825), - [anon_sym_float] = ACTIONS(1825), - [anon_sym_range] = ACTIONS(1825), - [anon_sym_i8] = ACTIONS(1825), - [anon_sym_i16] = ACTIONS(1825), - [anon_sym_i32] = ACTIONS(1825), - [anon_sym_i64] = ACTIONS(1825), - [anon_sym_u8] = ACTIONS(1825), - [anon_sym_u16] = ACTIONS(1825), - [anon_sym_u32] = ACTIONS(1825), - [anon_sym_u64] = ACTIONS(1825), - [anon_sym_isize] = ACTIONS(1825), - [anon_sym_usize] = ACTIONS(1825), - [anon_sym_f32] = ACTIONS(1825), - [anon_sym_f64] = ACTIONS(1825), - [anon_sym_c_char] = ACTIONS(1825), - [anon_sym_c_schar] = ACTIONS(1825), - [anon_sym_c_uchar] = ACTIONS(1825), - [anon_sym_c_short] = ACTIONS(1825), - [anon_sym_c_ushort] = ACTIONS(1825), - [anon_sym_c_int] = ACTIONS(1825), - [anon_sym_c_uint] = ACTIONS(1825), - [anon_sym_c_long] = ACTIONS(1825), - [anon_sym_c_ulong] = ACTIONS(1825), - [anon_sym_c_longlong] = ACTIONS(1825), - [anon_sym_c_ulonglong] = ACTIONS(1825), - [anon_sym_c_float] = ACTIONS(1825), - [anon_sym_c_double] = ACTIONS(1825), - [anon_sym_c_longdouble] = ACTIONS(1825), - [anon_sym_PLUS_EQ] = ACTIONS(1823), - [anon_sym_DASH_EQ] = ACTIONS(1823), - [anon_sym_STAR_EQ] = ACTIONS(1823), - [anon_sym_SLASH_EQ] = ACTIONS(1823), - [anon_sym_AMP_EQ] = ACTIONS(1823), - [anon_sym_PIPE_EQ] = ACTIONS(1823), - [anon_sym_xor_EQ] = ACTIONS(1823), - [anon_sym_LT_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_GT_EQ] = ACTIONS(1823), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_defer] = ACTIONS(1825), - [anon_sym_errdefer] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_expand] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_match] = ACTIONS(1825), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1823), - [anon_sym_orelse] = ACTIONS(1825), - [anon_sym_catch] = ACTIONS(1825), - [anon_sym_or] = ACTIONS(1825), - [anon_sym_and] = ACTIONS(1825), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_xor] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1825), - [anon_sym_GT_GT] = ACTIONS(1825), - [anon_sym_LT_LT_PIPE] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_DOT] = ACTIONS(1825), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1825), - [anon_sym_false] = ACTIONS(1825), - [anon_sym_null] = ACTIONS(1825), - [anon_sym_unreachable] = ACTIONS(1825), - [anon_sym_undefined] = ACTIONS(1825), - [sym_sink] = ACTIONS(1825), - [sym_integer] = ACTIONS(1825), - [sym_float] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [sym_multiline_string] = ACTIONS(1823), - [sym_character] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1823), - }, - [STATE(643)] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_identifier] = ACTIONS(1829), - [anon_sym_import] = ACTIONS(1829), - [anon_sym_test] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_func] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_EQ] = ACTIONS(1829), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), [anon_sym_struct] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_RPAREN] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_QMARK] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_void] = ACTIONS(1829), - [anon_sym_noreturn] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_anyopaque] = ACTIONS(1829), - [anon_sym_bool] = ACTIONS(1829), - [anon_sym_int] = ACTIONS(1829), - [anon_sym_uint] = ACTIONS(1829), - [anon_sym_float] = ACTIONS(1829), - [anon_sym_range] = ACTIONS(1829), - [anon_sym_i8] = ACTIONS(1829), - [anon_sym_i16] = ACTIONS(1829), - [anon_sym_i32] = ACTIONS(1829), - [anon_sym_i64] = ACTIONS(1829), - [anon_sym_u8] = ACTIONS(1829), - [anon_sym_u16] = ACTIONS(1829), - [anon_sym_u32] = ACTIONS(1829), - [anon_sym_u64] = ACTIONS(1829), - [anon_sym_isize] = ACTIONS(1829), - [anon_sym_usize] = ACTIONS(1829), - [anon_sym_f32] = ACTIONS(1829), - [anon_sym_f64] = ACTIONS(1829), - [anon_sym_c_char] = ACTIONS(1829), - [anon_sym_c_schar] = ACTIONS(1829), - [anon_sym_c_uchar] = ACTIONS(1829), - [anon_sym_c_short] = ACTIONS(1829), - [anon_sym_c_ushort] = ACTIONS(1829), - [anon_sym_c_int] = ACTIONS(1829), - [anon_sym_c_uint] = ACTIONS(1829), - [anon_sym_c_long] = ACTIONS(1829), - [anon_sym_c_ulong] = ACTIONS(1829), - [anon_sym_c_longlong] = ACTIONS(1829), - [anon_sym_c_ulonglong] = ACTIONS(1829), - [anon_sym_c_float] = ACTIONS(1829), - [anon_sym_c_double] = ACTIONS(1829), - [anon_sym_c_longdouble] = ACTIONS(1829), - [anon_sym_PLUS_EQ] = ACTIONS(1827), - [anon_sym_DASH_EQ] = ACTIONS(1827), - [anon_sym_STAR_EQ] = ACTIONS(1827), - [anon_sym_SLASH_EQ] = ACTIONS(1827), - [anon_sym_AMP_EQ] = ACTIONS(1827), - [anon_sym_PIPE_EQ] = ACTIONS(1827), - [anon_sym_xor_EQ] = ACTIONS(1827), - [anon_sym_LT_LT_EQ] = ACTIONS(1827), - [anon_sym_GT_GT_EQ] = ACTIONS(1827), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_yield] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_defer] = ACTIONS(1829), - [anon_sym_errdefer] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_expand] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1827), - [anon_sym_orelse] = ACTIONS(1829), - [anon_sym_catch] = ACTIONS(1829), - [anon_sym_or] = ACTIONS(1829), - [anon_sym_and] = ACTIONS(1829), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_xor] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1829), - [anon_sym_GT_GT] = ACTIONS(1829), - [anon_sym_LT_LT_PIPE] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [anon_sym_null] = ACTIONS(1829), - [anon_sym_unreachable] = ACTIONS(1829), - [anon_sym_undefined] = ACTIONS(1829), - [sym_sink] = ACTIONS(1829), - [sym_integer] = ACTIONS(1829), - [sym_float] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [sym_multiline_string] = ACTIONS(1827), - [sym_character] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1827), - }, - [STATE(644)] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_test] = ACTIONS(1833), - [anon_sym_hide] = ACTIONS(1833), - [anon_sym_func] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_EQ] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_noreturn] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_anyopaque] = ACTIONS(1833), - [anon_sym_bool] = ACTIONS(1833), - [anon_sym_int] = ACTIONS(1833), - [anon_sym_uint] = ACTIONS(1833), - [anon_sym_float] = ACTIONS(1833), - [anon_sym_range] = ACTIONS(1833), - [anon_sym_i8] = ACTIONS(1833), - [anon_sym_i16] = ACTIONS(1833), - [anon_sym_i32] = ACTIONS(1833), - [anon_sym_i64] = ACTIONS(1833), - [anon_sym_u8] = ACTIONS(1833), - [anon_sym_u16] = ACTIONS(1833), - [anon_sym_u32] = ACTIONS(1833), - [anon_sym_u64] = ACTIONS(1833), - [anon_sym_isize] = ACTIONS(1833), - [anon_sym_usize] = ACTIONS(1833), - [anon_sym_f32] = ACTIONS(1833), - [anon_sym_f64] = ACTIONS(1833), - [anon_sym_c_char] = ACTIONS(1833), - [anon_sym_c_schar] = ACTIONS(1833), - [anon_sym_c_uchar] = ACTIONS(1833), - [anon_sym_c_short] = ACTIONS(1833), - [anon_sym_c_ushort] = ACTIONS(1833), - [anon_sym_c_int] = ACTIONS(1833), - [anon_sym_c_uint] = ACTIONS(1833), - [anon_sym_c_long] = ACTIONS(1833), - [anon_sym_c_ulong] = ACTIONS(1833), - [anon_sym_c_longlong] = ACTIONS(1833), - [anon_sym_c_ulonglong] = ACTIONS(1833), - [anon_sym_c_float] = ACTIONS(1833), - [anon_sym_c_double] = ACTIONS(1833), - [anon_sym_c_longdouble] = ACTIONS(1833), - [anon_sym_PLUS_EQ] = ACTIONS(1831), - [anon_sym_DASH_EQ] = ACTIONS(1831), - [anon_sym_STAR_EQ] = ACTIONS(1831), - [anon_sym_SLASH_EQ] = ACTIONS(1831), - [anon_sym_AMP_EQ] = ACTIONS(1831), - [anon_sym_PIPE_EQ] = ACTIONS(1831), - [anon_sym_xor_EQ] = ACTIONS(1831), - [anon_sym_LT_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_GT_EQ] = ACTIONS(1831), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_defer] = ACTIONS(1833), - [anon_sym_errdefer] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_expand] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_match] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), - [anon_sym_orelse] = ACTIONS(1833), - [anon_sym_catch] = ACTIONS(1833), - [anon_sym_or] = ACTIONS(1833), - [anon_sym_and] = ACTIONS(1833), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_xor] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(1833), - [anon_sym_GT_GT] = ACTIONS(1833), - [anon_sym_LT_LT_PIPE] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_DOT] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [anon_sym_unreachable] = ACTIONS(1833), - [anon_sym_undefined] = ACTIONS(1833), - [sym_sink] = ACTIONS(1833), - [sym_integer] = ACTIONS(1833), - [sym_float] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [sym_multiline_string] = ACTIONS(1831), - [sym_character] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1831), - }, - [STATE(645)] = { - [sym_struct_type] = STATE(3409), - [sym_c_struct_type] = STATE(3902), - [sym_opaque_type] = STATE(3902), - [sym_distinct_type] = STATE(3902), - [sym_alias_type] = STATE(3902), - [sym_union_type] = STATE(3902), - [sym_enum_type] = STATE(3902), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3919), - [sym_labeled_block] = STATE(3919), - [sym_if_statement] = STATE(3919), - [sym_while_statement] = STATE(3919), - [sym_for_statement] = STATE(3919), - [sym_match_statement] = STATE(3919), - [sym__value] = STATE(3919), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_c_struct] = ACTIONS(1425), - [anon_sym_opaque] = ACTIONS(1427), - [anon_sym_distinct] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(646)] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_test] = ACTIONS(1837), - [anon_sym_hide] = ACTIONS(1837), - [anon_sym_func] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_RPAREN] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_noreturn] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_anyopaque] = ACTIONS(1837), - [anon_sym_bool] = ACTIONS(1837), - [anon_sym_int] = ACTIONS(1837), - [anon_sym_uint] = ACTIONS(1837), - [anon_sym_float] = ACTIONS(1837), - [anon_sym_range] = ACTIONS(1837), - [anon_sym_i8] = ACTIONS(1837), - [anon_sym_i16] = ACTIONS(1837), - [anon_sym_i32] = ACTIONS(1837), - [anon_sym_i64] = ACTIONS(1837), - [anon_sym_u8] = ACTIONS(1837), - [anon_sym_u16] = ACTIONS(1837), - [anon_sym_u32] = ACTIONS(1837), - [anon_sym_u64] = ACTIONS(1837), - [anon_sym_isize] = ACTIONS(1837), - [anon_sym_usize] = ACTIONS(1837), - [anon_sym_f32] = ACTIONS(1837), - [anon_sym_f64] = ACTIONS(1837), - [anon_sym_c_char] = ACTIONS(1837), - [anon_sym_c_schar] = ACTIONS(1837), - [anon_sym_c_uchar] = ACTIONS(1837), - [anon_sym_c_short] = ACTIONS(1837), - [anon_sym_c_ushort] = ACTIONS(1837), - [anon_sym_c_int] = ACTIONS(1837), - [anon_sym_c_uint] = ACTIONS(1837), - [anon_sym_c_long] = ACTIONS(1837), - [anon_sym_c_ulong] = ACTIONS(1837), - [anon_sym_c_longlong] = ACTIONS(1837), - [anon_sym_c_ulonglong] = ACTIONS(1837), - [anon_sym_c_float] = ACTIONS(1837), - [anon_sym_c_double] = ACTIONS(1837), - [anon_sym_c_longdouble] = ACTIONS(1837), - [anon_sym_PLUS_EQ] = ACTIONS(1835), - [anon_sym_DASH_EQ] = ACTIONS(1835), - [anon_sym_STAR_EQ] = ACTIONS(1835), - [anon_sym_SLASH_EQ] = ACTIONS(1835), - [anon_sym_AMP_EQ] = ACTIONS(1835), - [anon_sym_PIPE_EQ] = ACTIONS(1835), - [anon_sym_xor_EQ] = ACTIONS(1835), - [anon_sym_LT_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_GT_EQ] = ACTIONS(1835), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_defer] = ACTIONS(1837), - [anon_sym_errdefer] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_expand] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), - [anon_sym_orelse] = ACTIONS(1837), - [anon_sym_catch] = ACTIONS(1837), - [anon_sym_or] = ACTIONS(1837), - [anon_sym_and] = ACTIONS(1837), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_xor] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_LT_LT_PIPE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), [anon_sym_try] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_unreachable] = ACTIONS(1837), - [anon_sym_undefined] = ACTIONS(1837), - [sym_sink] = ACTIONS(1837), - [sym_integer] = ACTIONS(1837), - [sym_float] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym_multiline_string] = ACTIONS(1835), - [sym_character] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1835), - }, - [STATE(647)] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_test] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_func] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_EQ] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_QMARK] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_noreturn] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_anyopaque] = ACTIONS(1841), - [anon_sym_bool] = ACTIONS(1841), - [anon_sym_int] = ACTIONS(1841), - [anon_sym_uint] = ACTIONS(1841), - [anon_sym_float] = ACTIONS(1841), - [anon_sym_range] = ACTIONS(1841), - [anon_sym_i8] = ACTIONS(1841), - [anon_sym_i16] = ACTIONS(1841), - [anon_sym_i32] = ACTIONS(1841), - [anon_sym_i64] = ACTIONS(1841), - [anon_sym_u8] = ACTIONS(1841), - [anon_sym_u16] = ACTIONS(1841), - [anon_sym_u32] = ACTIONS(1841), - [anon_sym_u64] = ACTIONS(1841), - [anon_sym_isize] = ACTIONS(1841), - [anon_sym_usize] = ACTIONS(1841), - [anon_sym_f32] = ACTIONS(1841), - [anon_sym_f64] = ACTIONS(1841), - [anon_sym_c_char] = ACTIONS(1841), - [anon_sym_c_schar] = ACTIONS(1841), - [anon_sym_c_uchar] = ACTIONS(1841), - [anon_sym_c_short] = ACTIONS(1841), - [anon_sym_c_ushort] = ACTIONS(1841), - [anon_sym_c_int] = ACTIONS(1841), - [anon_sym_c_uint] = ACTIONS(1841), - [anon_sym_c_long] = ACTIONS(1841), - [anon_sym_c_ulong] = ACTIONS(1841), - [anon_sym_c_longlong] = ACTIONS(1841), - [anon_sym_c_ulonglong] = ACTIONS(1841), - [anon_sym_c_float] = ACTIONS(1841), - [anon_sym_c_double] = ACTIONS(1841), - [anon_sym_c_longdouble] = ACTIONS(1841), - [anon_sym_PLUS_EQ] = ACTIONS(1839), - [anon_sym_DASH_EQ] = ACTIONS(1839), - [anon_sym_STAR_EQ] = ACTIONS(1839), - [anon_sym_SLASH_EQ] = ACTIONS(1839), - [anon_sym_AMP_EQ] = ACTIONS(1839), - [anon_sym_PIPE_EQ] = ACTIONS(1839), - [anon_sym_xor_EQ] = ACTIONS(1839), - [anon_sym_LT_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_GT_EQ] = ACTIONS(1839), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_defer] = ACTIONS(1841), - [anon_sym_errdefer] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_expand] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1839), - [anon_sym_orelse] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_or] = ACTIONS(1841), - [anon_sym_and] = ACTIONS(1841), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_xor] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(1841), - [anon_sym_GT_GT] = ACTIONS(1841), - [anon_sym_LT_LT_PIPE] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_DOT] = ACTIONS(1839), [anon_sym_true] = ACTIONS(1841), [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [anon_sym_unreachable] = ACTIONS(1841), - [anon_sym_undefined] = ACTIONS(1841), - [sym_sink] = ACTIONS(1841), - [sym_integer] = ACTIONS(1841), - [sym_float] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym_multiline_string] = ACTIONS(1839), - [sym_character] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1839), - }, - [STATE(648)] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_test] = ACTIONS(1845), - [anon_sym_hide] = ACTIONS(1845), - [anon_sym_func] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_noreturn] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_anyopaque] = ACTIONS(1845), - [anon_sym_bool] = ACTIONS(1845), - [anon_sym_int] = ACTIONS(1845), - [anon_sym_uint] = ACTIONS(1845), - [anon_sym_float] = ACTIONS(1845), - [anon_sym_range] = ACTIONS(1845), - [anon_sym_i8] = ACTIONS(1845), - [anon_sym_i16] = ACTIONS(1845), - [anon_sym_i32] = ACTIONS(1845), - [anon_sym_i64] = ACTIONS(1845), - [anon_sym_u8] = ACTIONS(1845), - [anon_sym_u16] = ACTIONS(1845), - [anon_sym_u32] = ACTIONS(1845), - [anon_sym_u64] = ACTIONS(1845), - [anon_sym_isize] = ACTIONS(1845), - [anon_sym_usize] = ACTIONS(1845), - [anon_sym_f32] = ACTIONS(1845), - [anon_sym_f64] = ACTIONS(1845), - [anon_sym_c_char] = ACTIONS(1845), - [anon_sym_c_schar] = ACTIONS(1845), - [anon_sym_c_uchar] = ACTIONS(1845), - [anon_sym_c_short] = ACTIONS(1845), - [anon_sym_c_ushort] = ACTIONS(1845), - [anon_sym_c_int] = ACTIONS(1845), - [anon_sym_c_uint] = ACTIONS(1845), - [anon_sym_c_long] = ACTIONS(1845), - [anon_sym_c_ulong] = ACTIONS(1845), - [anon_sym_c_longlong] = ACTIONS(1845), - [anon_sym_c_ulonglong] = ACTIONS(1845), - [anon_sym_c_float] = ACTIONS(1845), - [anon_sym_c_double] = ACTIONS(1845), - [anon_sym_c_longdouble] = ACTIONS(1845), - [anon_sym_PLUS_EQ] = ACTIONS(1843), - [anon_sym_DASH_EQ] = ACTIONS(1843), - [anon_sym_STAR_EQ] = ACTIONS(1843), - [anon_sym_SLASH_EQ] = ACTIONS(1843), - [anon_sym_AMP_EQ] = ACTIONS(1843), - [anon_sym_PIPE_EQ] = ACTIONS(1843), - [anon_sym_xor_EQ] = ACTIONS(1843), - [anon_sym_LT_LT_EQ] = ACTIONS(1843), - [anon_sym_GT_GT_EQ] = ACTIONS(1843), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_defer] = ACTIONS(1845), - [anon_sym_errdefer] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_expand] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), - [anon_sym_orelse] = ACTIONS(1845), - [anon_sym_catch] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [anon_sym_and] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_xor] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_LT_LT_PIPE] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1843), [anon_sym_unreachable] = ACTIONS(1845), - [anon_sym_undefined] = ACTIONS(1845), - [sym_sink] = ACTIONS(1845), - [sym_integer] = ACTIONS(1845), - [sym_float] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym_multiline_string] = ACTIONS(1843), - [sym_character] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1843), + [sym__newline] = ACTIONS(1849), }, - [STATE(649)] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_test] = ACTIONS(1849), - [anon_sym_hide] = ACTIONS(1849), - [anon_sym_func] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_RPAREN] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_noreturn] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_anyopaque] = ACTIONS(1849), - [anon_sym_bool] = ACTIONS(1849), - [anon_sym_int] = ACTIONS(1849), - [anon_sym_uint] = ACTIONS(1849), - [anon_sym_float] = ACTIONS(1849), - [anon_sym_range] = ACTIONS(1849), - [anon_sym_i8] = ACTIONS(1849), - [anon_sym_i16] = ACTIONS(1849), - [anon_sym_i32] = ACTIONS(1849), - [anon_sym_i64] = ACTIONS(1849), - [anon_sym_u8] = ACTIONS(1849), - [anon_sym_u16] = ACTIONS(1849), - [anon_sym_u32] = ACTIONS(1849), - [anon_sym_u64] = ACTIONS(1849), - [anon_sym_isize] = ACTIONS(1849), - [anon_sym_usize] = ACTIONS(1849), - [anon_sym_f32] = ACTIONS(1849), - [anon_sym_f64] = ACTIONS(1849), - [anon_sym_c_char] = ACTIONS(1849), - [anon_sym_c_schar] = ACTIONS(1849), - [anon_sym_c_uchar] = ACTIONS(1849), - [anon_sym_c_short] = ACTIONS(1849), - [anon_sym_c_ushort] = ACTIONS(1849), - [anon_sym_c_int] = ACTIONS(1849), - [anon_sym_c_uint] = ACTIONS(1849), - [anon_sym_c_long] = ACTIONS(1849), - [anon_sym_c_ulong] = ACTIONS(1849), - [anon_sym_c_longlong] = ACTIONS(1849), - [anon_sym_c_ulonglong] = ACTIONS(1849), - [anon_sym_c_float] = ACTIONS(1849), - [anon_sym_c_double] = ACTIONS(1849), - [anon_sym_c_longdouble] = ACTIONS(1849), - [anon_sym_PLUS_EQ] = ACTIONS(1847), - [anon_sym_DASH_EQ] = ACTIONS(1847), - [anon_sym_STAR_EQ] = ACTIONS(1847), - [anon_sym_SLASH_EQ] = ACTIONS(1847), - [anon_sym_AMP_EQ] = ACTIONS(1847), - [anon_sym_PIPE_EQ] = ACTIONS(1847), - [anon_sym_xor_EQ] = ACTIONS(1847), - [anon_sym_LT_LT_EQ] = ACTIONS(1847), - [anon_sym_GT_GT_EQ] = ACTIONS(1847), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_defer] = ACTIONS(1849), - [anon_sym_errdefer] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_expand] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_match] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1847), - [anon_sym_orelse] = ACTIONS(1849), - [anon_sym_catch] = ACTIONS(1849), - [anon_sym_or] = ACTIONS(1849), - [anon_sym_and] = ACTIONS(1849), - [anon_sym_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_xor] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [anon_sym_unreachable] = ACTIONS(1849), - [anon_sym_undefined] = ACTIONS(1849), - [sym_sink] = ACTIONS(1849), - [sym_integer] = ACTIONS(1849), - [sym_float] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym_multiline_string] = ACTIONS(1847), - [sym_character] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1847), - }, - [STATE(650)] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_import] = ACTIONS(1853), - [anon_sym_test] = ACTIONS(1853), - [anon_sym_hide] = ACTIONS(1853), - [anon_sym_func] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_EQ] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), + [STATE(224)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10030), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11627), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_void] = ACTIONS(1853), - [anon_sym_noreturn] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_anyopaque] = ACTIONS(1853), - [anon_sym_bool] = ACTIONS(1853), - [anon_sym_int] = ACTIONS(1853), - [anon_sym_uint] = ACTIONS(1853), - [anon_sym_float] = ACTIONS(1853), - [anon_sym_range] = ACTIONS(1853), - [anon_sym_i8] = ACTIONS(1853), - [anon_sym_i16] = ACTIONS(1853), - [anon_sym_i32] = ACTIONS(1853), - [anon_sym_i64] = ACTIONS(1853), - [anon_sym_u8] = ACTIONS(1853), - [anon_sym_u16] = ACTIONS(1853), - [anon_sym_u32] = ACTIONS(1853), - [anon_sym_u64] = ACTIONS(1853), - [anon_sym_isize] = ACTIONS(1853), - [anon_sym_usize] = ACTIONS(1853), - [anon_sym_f32] = ACTIONS(1853), - [anon_sym_f64] = ACTIONS(1853), - [anon_sym_c_char] = ACTIONS(1853), - [anon_sym_c_schar] = ACTIONS(1853), - [anon_sym_c_uchar] = ACTIONS(1853), - [anon_sym_c_short] = ACTIONS(1853), - [anon_sym_c_ushort] = ACTIONS(1853), - [anon_sym_c_int] = ACTIONS(1853), - [anon_sym_c_uint] = ACTIONS(1853), - [anon_sym_c_long] = ACTIONS(1853), - [anon_sym_c_ulong] = ACTIONS(1853), - [anon_sym_c_longlong] = ACTIONS(1853), - [anon_sym_c_ulonglong] = ACTIONS(1853), - [anon_sym_c_float] = ACTIONS(1853), - [anon_sym_c_double] = ACTIONS(1853), - [anon_sym_c_longdouble] = ACTIONS(1853), - [anon_sym_PLUS_EQ] = ACTIONS(1851), - [anon_sym_DASH_EQ] = ACTIONS(1851), - [anon_sym_STAR_EQ] = ACTIONS(1851), - [anon_sym_SLASH_EQ] = ACTIONS(1851), - [anon_sym_AMP_EQ] = ACTIONS(1851), - [anon_sym_PIPE_EQ] = ACTIONS(1851), - [anon_sym_xor_EQ] = ACTIONS(1851), - [anon_sym_LT_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_defer] = ACTIONS(1853), - [anon_sym_errdefer] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_expand] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), - [anon_sym_orelse] = ACTIONS(1853), - [anon_sym_catch] = ACTIONS(1853), - [anon_sym_or] = ACTIONS(1853), - [anon_sym_and] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_xor] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_LT_LT_PIPE] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [anon_sym_null] = ACTIONS(1853), - [anon_sym_unreachable] = ACTIONS(1853), - [anon_sym_undefined] = ACTIONS(1853), - [sym_sink] = ACTIONS(1853), - [sym_integer] = ACTIONS(1853), - [sym_float] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym_multiline_string] = ACTIONS(1851), - [sym_character] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1851), + [sym__newline] = ACTIONS(1849), }, - [STATE(651)] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1857), - [anon_sym_import] = ACTIONS(1857), - [anon_sym_test] = ACTIONS(1857), - [anon_sym_hide] = ACTIONS(1857), - [anon_sym_func] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_RPAREN] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_QMARK] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_void] = ACTIONS(1857), - [anon_sym_noreturn] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_anyopaque] = ACTIONS(1857), - [anon_sym_bool] = ACTIONS(1857), - [anon_sym_int] = ACTIONS(1857), - [anon_sym_uint] = ACTIONS(1857), - [anon_sym_float] = ACTIONS(1857), - [anon_sym_range] = ACTIONS(1857), - [anon_sym_i8] = ACTIONS(1857), - [anon_sym_i16] = ACTIONS(1857), - [anon_sym_i32] = ACTIONS(1857), - [anon_sym_i64] = ACTIONS(1857), - [anon_sym_u8] = ACTIONS(1857), - [anon_sym_u16] = ACTIONS(1857), - [anon_sym_u32] = ACTIONS(1857), - [anon_sym_u64] = ACTIONS(1857), - [anon_sym_isize] = ACTIONS(1857), - [anon_sym_usize] = ACTIONS(1857), - [anon_sym_f32] = ACTIONS(1857), - [anon_sym_f64] = ACTIONS(1857), - [anon_sym_c_char] = ACTIONS(1857), - [anon_sym_c_schar] = ACTIONS(1857), - [anon_sym_c_uchar] = ACTIONS(1857), - [anon_sym_c_short] = ACTIONS(1857), - [anon_sym_c_ushort] = ACTIONS(1857), - [anon_sym_c_int] = ACTIONS(1857), - [anon_sym_c_uint] = ACTIONS(1857), - [anon_sym_c_long] = ACTIONS(1857), - [anon_sym_c_ulong] = ACTIONS(1857), - [anon_sym_c_longlong] = ACTIONS(1857), - [anon_sym_c_ulonglong] = ACTIONS(1857), - [anon_sym_c_float] = ACTIONS(1857), - [anon_sym_c_double] = ACTIONS(1857), - [anon_sym_c_longdouble] = ACTIONS(1857), - [anon_sym_PLUS_EQ] = ACTIONS(1855), - [anon_sym_DASH_EQ] = ACTIONS(1855), - [anon_sym_STAR_EQ] = ACTIONS(1855), - [anon_sym_SLASH_EQ] = ACTIONS(1855), - [anon_sym_AMP_EQ] = ACTIONS(1855), - [anon_sym_PIPE_EQ] = ACTIONS(1855), - [anon_sym_xor_EQ] = ACTIONS(1855), - [anon_sym_LT_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_GT_EQ] = ACTIONS(1855), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_yield] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_defer] = ACTIONS(1857), - [anon_sym_errdefer] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_else] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_expand] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_match] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1855), - [anon_sym_orelse] = ACTIONS(1857), - [anon_sym_catch] = ACTIONS(1857), - [anon_sym_or] = ACTIONS(1857), - [anon_sym_and] = ACTIONS(1857), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1857), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1857), - [anon_sym_xor] = ACTIONS(1857), - [anon_sym_LT_LT] = ACTIONS(1857), - [anon_sym_GT_GT] = ACTIONS(1857), - [anon_sym_LT_LT_PIPE] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1857), - [anon_sym_SLASH] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1857), - [anon_sym_DOT] = ACTIONS(1857), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [anon_sym_unreachable] = ACTIONS(1857), - [anon_sym_undefined] = ACTIONS(1857), - [sym_sink] = ACTIONS(1857), - [sym_integer] = ACTIONS(1857), - [sym_float] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_multiline_string] = ACTIONS(1855), - [sym_character] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1855), - }, - [STATE(652)] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_test] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_func] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_QMARK] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_noreturn] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_anyopaque] = ACTIONS(1861), - [anon_sym_bool] = ACTIONS(1861), - [anon_sym_int] = ACTIONS(1861), - [anon_sym_uint] = ACTIONS(1861), - [anon_sym_float] = ACTIONS(1861), - [anon_sym_range] = ACTIONS(1861), - [anon_sym_i8] = ACTIONS(1861), - [anon_sym_i16] = ACTIONS(1861), - [anon_sym_i32] = ACTIONS(1861), - [anon_sym_i64] = ACTIONS(1861), - [anon_sym_u8] = ACTIONS(1861), - [anon_sym_u16] = ACTIONS(1861), - [anon_sym_u32] = ACTIONS(1861), - [anon_sym_u64] = ACTIONS(1861), - [anon_sym_isize] = ACTIONS(1861), - [anon_sym_usize] = ACTIONS(1861), - [anon_sym_f32] = ACTIONS(1861), - [anon_sym_f64] = ACTIONS(1861), - [anon_sym_c_char] = ACTIONS(1861), - [anon_sym_c_schar] = ACTIONS(1861), - [anon_sym_c_uchar] = ACTIONS(1861), - [anon_sym_c_short] = ACTIONS(1861), - [anon_sym_c_ushort] = ACTIONS(1861), - [anon_sym_c_int] = ACTIONS(1861), - [anon_sym_c_uint] = ACTIONS(1861), - [anon_sym_c_long] = ACTIONS(1861), - [anon_sym_c_ulong] = ACTIONS(1861), - [anon_sym_c_longlong] = ACTIONS(1861), - [anon_sym_c_ulonglong] = ACTIONS(1861), - [anon_sym_c_float] = ACTIONS(1861), - [anon_sym_c_double] = ACTIONS(1861), - [anon_sym_c_longdouble] = ACTIONS(1861), - [anon_sym_PLUS_EQ] = ACTIONS(1859), - [anon_sym_DASH_EQ] = ACTIONS(1859), - [anon_sym_STAR_EQ] = ACTIONS(1859), - [anon_sym_SLASH_EQ] = ACTIONS(1859), - [anon_sym_AMP_EQ] = ACTIONS(1859), - [anon_sym_PIPE_EQ] = ACTIONS(1859), - [anon_sym_xor_EQ] = ACTIONS(1859), - [anon_sym_LT_LT_EQ] = ACTIONS(1859), - [anon_sym_GT_GT_EQ] = ACTIONS(1859), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_defer] = ACTIONS(1861), - [anon_sym_errdefer] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_expand] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1859), - [anon_sym_orelse] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1859), - [anon_sym_BANG_EQ] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1859), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_xor] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_PIPE] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1859), + [STATE(225)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10328), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11635), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), [anon_sym_true] = ACTIONS(1861), [anon_sym_false] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [anon_sym_unreachable] = ACTIONS(1861), - [anon_sym_undefined] = ACTIONS(1861), - [sym_sink] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [sym_multiline_string] = ACTIONS(1859), - [sym_character] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1859), - }, - [STATE(653)] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_identifier] = ACTIONS(1865), - [anon_sym_import] = ACTIONS(1865), - [anon_sym_test] = ACTIONS(1865), - [anon_sym_hide] = ACTIONS(1865), - [anon_sym_func] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_EQ] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_QMARK] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_void] = ACTIONS(1865), - [anon_sym_noreturn] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_anyopaque] = ACTIONS(1865), - [anon_sym_bool] = ACTIONS(1865), - [anon_sym_int] = ACTIONS(1865), - [anon_sym_uint] = ACTIONS(1865), - [anon_sym_float] = ACTIONS(1865), - [anon_sym_range] = ACTIONS(1865), - [anon_sym_i8] = ACTIONS(1865), - [anon_sym_i16] = ACTIONS(1865), - [anon_sym_i32] = ACTIONS(1865), - [anon_sym_i64] = ACTIONS(1865), - [anon_sym_u8] = ACTIONS(1865), - [anon_sym_u16] = ACTIONS(1865), - [anon_sym_u32] = ACTIONS(1865), - [anon_sym_u64] = ACTIONS(1865), - [anon_sym_isize] = ACTIONS(1865), - [anon_sym_usize] = ACTIONS(1865), - [anon_sym_f32] = ACTIONS(1865), - [anon_sym_f64] = ACTIONS(1865), - [anon_sym_c_char] = ACTIONS(1865), - [anon_sym_c_schar] = ACTIONS(1865), - [anon_sym_c_uchar] = ACTIONS(1865), - [anon_sym_c_short] = ACTIONS(1865), - [anon_sym_c_ushort] = ACTIONS(1865), - [anon_sym_c_int] = ACTIONS(1865), - [anon_sym_c_uint] = ACTIONS(1865), - [anon_sym_c_long] = ACTIONS(1865), - [anon_sym_c_ulong] = ACTIONS(1865), - [anon_sym_c_longlong] = ACTIONS(1865), - [anon_sym_c_ulonglong] = ACTIONS(1865), - [anon_sym_c_float] = ACTIONS(1865), - [anon_sym_c_double] = ACTIONS(1865), - [anon_sym_c_longdouble] = ACTIONS(1865), - [anon_sym_PLUS_EQ] = ACTIONS(1863), - [anon_sym_DASH_EQ] = ACTIONS(1863), - [anon_sym_STAR_EQ] = ACTIONS(1863), - [anon_sym_SLASH_EQ] = ACTIONS(1863), - [anon_sym_AMP_EQ] = ACTIONS(1863), - [anon_sym_PIPE_EQ] = ACTIONS(1863), - [anon_sym_xor_EQ] = ACTIONS(1863), - [anon_sym_LT_LT_EQ] = ACTIONS(1863), - [anon_sym_GT_GT_EQ] = ACTIONS(1863), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_defer] = ACTIONS(1865), - [anon_sym_errdefer] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_expand] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [anon_sym_orelse] = ACTIONS(1865), - [anon_sym_catch] = ACTIONS(1865), - [anon_sym_or] = ACTIONS(1865), - [anon_sym_and] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1863), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym_xor] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1865), - [anon_sym_GT_GT] = ACTIONS(1865), - [anon_sym_LT_LT_PIPE] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_SLASH] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1863), [anon_sym_unreachable] = ACTIONS(1865), - [anon_sym_undefined] = ACTIONS(1865), - [sym_sink] = ACTIONS(1865), - [sym_integer] = ACTIONS(1865), - [sym_float] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym_multiline_string] = ACTIONS(1863), - [sym_character] = ACTIONS(1863), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1863), + [sym__newline] = ACTIONS(1849), }, - [STATE(654)] = { - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(396), - [anon_sym_import] = ACTIONS(396), - [anon_sym_test] = ACTIONS(396), - [anon_sym_hide] = ACTIONS(396), - [anon_sym_func] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_struct] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_void] = ACTIONS(396), - [anon_sym_noreturn] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_anyopaque] = ACTIONS(396), - [anon_sym_bool] = ACTIONS(396), - [anon_sym_int] = ACTIONS(396), - [anon_sym_uint] = ACTIONS(396), - [anon_sym_float] = ACTIONS(396), - [anon_sym_range] = ACTIONS(396), - [anon_sym_i8] = ACTIONS(396), - [anon_sym_i16] = ACTIONS(396), - [anon_sym_i32] = ACTIONS(396), - [anon_sym_i64] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(396), - [anon_sym_u16] = ACTIONS(396), - [anon_sym_u32] = ACTIONS(396), - [anon_sym_u64] = ACTIONS(396), - [anon_sym_isize] = ACTIONS(396), - [anon_sym_usize] = ACTIONS(396), - [anon_sym_f32] = ACTIONS(396), - [anon_sym_f64] = ACTIONS(396), - [anon_sym_c_char] = ACTIONS(396), - [anon_sym_c_schar] = ACTIONS(396), - [anon_sym_c_uchar] = ACTIONS(396), - [anon_sym_c_short] = ACTIONS(396), - [anon_sym_c_ushort] = ACTIONS(396), - [anon_sym_c_int] = ACTIONS(396), - [anon_sym_c_uint] = ACTIONS(396), - [anon_sym_c_long] = ACTIONS(396), - [anon_sym_c_ulong] = ACTIONS(396), - [anon_sym_c_longlong] = ACTIONS(396), - [anon_sym_c_ulonglong] = ACTIONS(396), - [anon_sym_c_float] = ACTIONS(396), - [anon_sym_c_double] = ACTIONS(396), - [anon_sym_c_longdouble] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_xor_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(391), - [anon_sym_return] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(396), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_defer] = ACTIONS(396), - [anon_sym_errdefer] = ACTIONS(396), - [anon_sym_if] = ACTIONS(396), - [anon_sym_else] = ACTIONS(396), - [anon_sym_while] = ACTIONS(396), - [anon_sym_expand] = ACTIONS(396), - [anon_sym_for] = ACTIONS(396), - [anon_sym_match] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_LT_LT_PIPE] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_try] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_true] = ACTIONS(396), - [anon_sym_false] = ACTIONS(396), - [anon_sym_null] = ACTIONS(396), - [anon_sym_unreachable] = ACTIONS(396), - [anon_sym_undefined] = ACTIONS(396), - [sym_sink] = ACTIONS(396), - [sym_integer] = ACTIONS(396), - [sym_float] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), - [sym_multiline_string] = ACTIONS(391), - [sym_character] = ACTIONS(391), + [STATE(226)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(1871), }, - [STATE(655)] = { - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1869), - [anon_sym_import] = ACTIONS(1869), - [anon_sym_test] = ACTIONS(1869), - [anon_sym_hide] = ACTIONS(1869), - [anon_sym_func] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_EQ] = ACTIONS(1869), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_QMARK] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1869), - [anon_sym_noreturn] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_anyopaque] = ACTIONS(1869), - [anon_sym_bool] = ACTIONS(1869), - [anon_sym_int] = ACTIONS(1869), - [anon_sym_uint] = ACTIONS(1869), - [anon_sym_float] = ACTIONS(1869), - [anon_sym_range] = ACTIONS(1869), - [anon_sym_i8] = ACTIONS(1869), - [anon_sym_i16] = ACTIONS(1869), - [anon_sym_i32] = ACTIONS(1869), - [anon_sym_i64] = ACTIONS(1869), - [anon_sym_u8] = ACTIONS(1869), - [anon_sym_u16] = ACTIONS(1869), - [anon_sym_u32] = ACTIONS(1869), - [anon_sym_u64] = ACTIONS(1869), - [anon_sym_isize] = ACTIONS(1869), - [anon_sym_usize] = ACTIONS(1869), - [anon_sym_f32] = ACTIONS(1869), - [anon_sym_f64] = ACTIONS(1869), - [anon_sym_c_char] = ACTIONS(1869), - [anon_sym_c_schar] = ACTIONS(1869), - [anon_sym_c_uchar] = ACTIONS(1869), - [anon_sym_c_short] = ACTIONS(1869), - [anon_sym_c_ushort] = ACTIONS(1869), - [anon_sym_c_int] = ACTIONS(1869), - [anon_sym_c_uint] = ACTIONS(1869), - [anon_sym_c_long] = ACTIONS(1869), - [anon_sym_c_ulong] = ACTIONS(1869), - [anon_sym_c_longlong] = ACTIONS(1869), - [anon_sym_c_ulonglong] = ACTIONS(1869), - [anon_sym_c_float] = ACTIONS(1869), - [anon_sym_c_double] = ACTIONS(1869), - [anon_sym_c_longdouble] = ACTIONS(1869), - [anon_sym_PLUS_EQ] = ACTIONS(1867), - [anon_sym_DASH_EQ] = ACTIONS(1867), - [anon_sym_STAR_EQ] = ACTIONS(1867), - [anon_sym_SLASH_EQ] = ACTIONS(1867), - [anon_sym_AMP_EQ] = ACTIONS(1867), - [anon_sym_PIPE_EQ] = ACTIONS(1867), - [anon_sym_xor_EQ] = ACTIONS(1867), - [anon_sym_LT_LT_EQ] = ACTIONS(1867), - [anon_sym_GT_GT_EQ] = ACTIONS(1867), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_yield] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_defer] = ACTIONS(1869), - [anon_sym_errdefer] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_expand] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1867), - [anon_sym_orelse] = ACTIONS(1869), - [anon_sym_catch] = ACTIONS(1869), - [anon_sym_or] = ACTIONS(1869), - [anon_sym_and] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1867), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_xor] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_LT_LT_PIPE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [anon_sym_unreachable] = ACTIONS(1869), - [anon_sym_undefined] = ACTIONS(1869), - [sym_sink] = ACTIONS(1869), - [sym_integer] = ACTIONS(1869), - [sym_float] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [sym_multiline_string] = ACTIONS(1867), - [sym_character] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1867), - }, - [STATE(656)] = { - [sym_type] = STATE(5099), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(468), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(501), - [anon_sym_noreturn] = ACTIONS(501), - [anon_sym_type] = ACTIONS(501), - [anon_sym_anyopaque] = ACTIONS(501), - [anon_sym_bool] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_uint] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_range] = ACTIONS(501), - [anon_sym_i8] = ACTIONS(501), - [anon_sym_i16] = ACTIONS(501), - [anon_sym_i32] = ACTIONS(501), - [anon_sym_i64] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(501), - [anon_sym_u16] = ACTIONS(501), - [anon_sym_u32] = ACTIONS(501), - [anon_sym_u64] = ACTIONS(501), - [anon_sym_isize] = ACTIONS(501), - [anon_sym_usize] = ACTIONS(501), - [anon_sym_f32] = ACTIONS(501), - [anon_sym_f64] = ACTIONS(501), - [anon_sym_c_char] = ACTIONS(501), - [anon_sym_c_schar] = ACTIONS(501), - [anon_sym_c_uchar] = ACTIONS(501), - [anon_sym_c_short] = ACTIONS(501), - [anon_sym_c_ushort] = ACTIONS(501), - [anon_sym_c_int] = ACTIONS(501), - [anon_sym_c_uint] = ACTIONS(501), - [anon_sym_c_long] = ACTIONS(501), - [anon_sym_c_ulong] = ACTIONS(501), - [anon_sym_c_longlong] = ACTIONS(501), - [anon_sym_c_ulonglong] = ACTIONS(501), - [anon_sym_c_float] = ACTIONS(501), - [anon_sym_c_double] = ACTIONS(501), - [anon_sym_c_longdouble] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_else] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), - }, - [STATE(657)] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_test] = ACTIONS(1875), - [anon_sym_hide] = ACTIONS(1875), - [anon_sym_func] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_EQ] = ACTIONS(1875), - [anon_sym_struct] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1873), + [STATE(227)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1875), - [anon_sym_QMARK] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_noreturn] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_anyopaque] = ACTIONS(1875), - [anon_sym_bool] = ACTIONS(1875), - [anon_sym_int] = ACTIONS(1875), - [anon_sym_uint] = ACTIONS(1875), - [anon_sym_float] = ACTIONS(1875), - [anon_sym_range] = ACTIONS(1875), - [anon_sym_i8] = ACTIONS(1875), - [anon_sym_i16] = ACTIONS(1875), - [anon_sym_i32] = ACTIONS(1875), - [anon_sym_i64] = ACTIONS(1875), - [anon_sym_u8] = ACTIONS(1875), - [anon_sym_u16] = ACTIONS(1875), - [anon_sym_u32] = ACTIONS(1875), - [anon_sym_u64] = ACTIONS(1875), - [anon_sym_isize] = ACTIONS(1875), - [anon_sym_usize] = ACTIONS(1875), - [anon_sym_f32] = ACTIONS(1875), - [anon_sym_f64] = ACTIONS(1875), - [anon_sym_c_char] = ACTIONS(1875), - [anon_sym_c_schar] = ACTIONS(1875), - [anon_sym_c_uchar] = ACTIONS(1875), - [anon_sym_c_short] = ACTIONS(1875), - [anon_sym_c_ushort] = ACTIONS(1875), - [anon_sym_c_int] = ACTIONS(1875), - [anon_sym_c_uint] = ACTIONS(1875), - [anon_sym_c_long] = ACTIONS(1875), - [anon_sym_c_ulong] = ACTIONS(1875), - [anon_sym_c_longlong] = ACTIONS(1875), - [anon_sym_c_ulonglong] = ACTIONS(1875), - [anon_sym_c_float] = ACTIONS(1875), - [anon_sym_c_double] = ACTIONS(1875), - [anon_sym_c_longdouble] = ACTIONS(1875), - [anon_sym_PLUS_EQ] = ACTIONS(1873), - [anon_sym_DASH_EQ] = ACTIONS(1873), - [anon_sym_STAR_EQ] = ACTIONS(1873), - [anon_sym_SLASH_EQ] = ACTIONS(1873), - [anon_sym_AMP_EQ] = ACTIONS(1873), - [anon_sym_PIPE_EQ] = ACTIONS(1873), - [anon_sym_xor_EQ] = ACTIONS(1873), - [anon_sym_LT_LT_EQ] = ACTIONS(1873), - [anon_sym_GT_GT_EQ] = ACTIONS(1873), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1873), - [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_else] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_expand] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_orelse] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_or] = ACTIONS(1875), - [anon_sym_and] = ACTIONS(1875), - [anon_sym_EQ_EQ] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_GT_EQ] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_xor] = ACTIONS(1875), - [anon_sym_LT_LT] = ACTIONS(1875), - [anon_sym_GT_GT] = ACTIONS(1875), - [anon_sym_LT_LT_PIPE] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1875), - [anon_sym_CARET] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1875), - [anon_sym_false] = ACTIONS(1875), - [anon_sym_null] = ACTIONS(1875), - [anon_sym_unreachable] = ACTIONS(1875), - [anon_sym_undefined] = ACTIONS(1875), - [sym_sink] = ACTIONS(1875), - [sym_integer] = ACTIONS(1875), - [sym_float] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym_multiline_string] = ACTIONS(1873), - [sym_character] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1873), + [sym__newline] = ACTIONS(1849), }, - [STATE(658)] = { - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_test] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_func] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_EQ] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_DOLLAR] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_void] = ACTIONS(1879), - [anon_sym_noreturn] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_anyopaque] = ACTIONS(1879), - [anon_sym_bool] = ACTIONS(1879), - [anon_sym_int] = ACTIONS(1879), - [anon_sym_uint] = ACTIONS(1879), - [anon_sym_float] = ACTIONS(1879), - [anon_sym_range] = ACTIONS(1879), - [anon_sym_i8] = ACTIONS(1879), - [anon_sym_i16] = ACTIONS(1879), - [anon_sym_i32] = ACTIONS(1879), - [anon_sym_i64] = ACTIONS(1879), - [anon_sym_u8] = ACTIONS(1879), - [anon_sym_u16] = ACTIONS(1879), - [anon_sym_u32] = ACTIONS(1879), - [anon_sym_u64] = ACTIONS(1879), - [anon_sym_isize] = ACTIONS(1879), - [anon_sym_usize] = ACTIONS(1879), - [anon_sym_f32] = ACTIONS(1879), - [anon_sym_f64] = ACTIONS(1879), - [anon_sym_c_char] = ACTIONS(1879), - [anon_sym_c_schar] = ACTIONS(1879), - [anon_sym_c_uchar] = ACTIONS(1879), - [anon_sym_c_short] = ACTIONS(1879), - [anon_sym_c_ushort] = ACTIONS(1879), - [anon_sym_c_int] = ACTIONS(1879), - [anon_sym_c_uint] = ACTIONS(1879), - [anon_sym_c_long] = ACTIONS(1879), - [anon_sym_c_ulong] = ACTIONS(1879), - [anon_sym_c_longlong] = ACTIONS(1879), - [anon_sym_c_ulonglong] = ACTIONS(1879), - [anon_sym_c_float] = ACTIONS(1879), - [anon_sym_c_double] = ACTIONS(1879), - [anon_sym_c_longdouble] = ACTIONS(1879), - [anon_sym_PLUS_EQ] = ACTIONS(1877), - [anon_sym_DASH_EQ] = ACTIONS(1877), - [anon_sym_STAR_EQ] = ACTIONS(1877), - [anon_sym_SLASH_EQ] = ACTIONS(1877), - [anon_sym_AMP_EQ] = ACTIONS(1877), - [anon_sym_PIPE_EQ] = ACTIONS(1877), - [anon_sym_xor_EQ] = ACTIONS(1877), - [anon_sym_LT_LT_EQ] = ACTIONS(1877), - [anon_sym_GT_GT_EQ] = ACTIONS(1877), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_defer] = ACTIONS(1879), - [anon_sym_errdefer] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_expand] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_orelse] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_or] = ACTIONS(1879), - [anon_sym_and] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1877), - [anon_sym_BANG_EQ] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1877), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_xor] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1879), - [anon_sym_LT_LT_PIPE] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1879), - [anon_sym_false] = ACTIONS(1879), - [anon_sym_null] = ACTIONS(1879), - [anon_sym_unreachable] = ACTIONS(1879), - [anon_sym_undefined] = ACTIONS(1879), - [sym_sink] = ACTIONS(1879), - [sym_integer] = ACTIONS(1879), - [sym_float] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym_multiline_string] = ACTIONS(1877), - [sym_character] = ACTIONS(1877), + [STATE(228)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1875), + }, + [STATE(229)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1877), }, - [STATE(659)] = { - [ts_builtin_sym_end] = ACTIONS(1881), - [sym_identifier] = ACTIONS(1883), - [anon_sym_import] = ACTIONS(1883), - [anon_sym_test] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_func] = ACTIONS(1883), - [anon_sym_BANG] = ACTIONS(1883), - [anon_sym_EQ] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1883), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_void] = ACTIONS(1883), - [anon_sym_noreturn] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_anyopaque] = ACTIONS(1883), - [anon_sym_bool] = ACTIONS(1883), - [anon_sym_int] = ACTIONS(1883), - [anon_sym_uint] = ACTIONS(1883), - [anon_sym_float] = ACTIONS(1883), - [anon_sym_range] = ACTIONS(1883), - [anon_sym_i8] = ACTIONS(1883), - [anon_sym_i16] = ACTIONS(1883), - [anon_sym_i32] = ACTIONS(1883), - [anon_sym_i64] = ACTIONS(1883), - [anon_sym_u8] = ACTIONS(1883), - [anon_sym_u16] = ACTIONS(1883), - [anon_sym_u32] = ACTIONS(1883), - [anon_sym_u64] = ACTIONS(1883), - [anon_sym_isize] = ACTIONS(1883), - [anon_sym_usize] = ACTIONS(1883), - [anon_sym_f32] = ACTIONS(1883), - [anon_sym_f64] = ACTIONS(1883), - [anon_sym_c_char] = ACTIONS(1883), - [anon_sym_c_schar] = ACTIONS(1883), - [anon_sym_c_uchar] = ACTIONS(1883), - [anon_sym_c_short] = ACTIONS(1883), - [anon_sym_c_ushort] = ACTIONS(1883), - [anon_sym_c_int] = ACTIONS(1883), - [anon_sym_c_uint] = ACTIONS(1883), - [anon_sym_c_long] = ACTIONS(1883), - [anon_sym_c_ulong] = ACTIONS(1883), - [anon_sym_c_longlong] = ACTIONS(1883), - [anon_sym_c_ulonglong] = ACTIONS(1883), - [anon_sym_c_float] = ACTIONS(1883), - [anon_sym_c_double] = ACTIONS(1883), - [anon_sym_c_longdouble] = ACTIONS(1883), - [anon_sym_PLUS_EQ] = ACTIONS(1881), - [anon_sym_DASH_EQ] = ACTIONS(1881), - [anon_sym_STAR_EQ] = ACTIONS(1881), - [anon_sym_SLASH_EQ] = ACTIONS(1881), - [anon_sym_AMP_EQ] = ACTIONS(1881), - [anon_sym_PIPE_EQ] = ACTIONS(1881), - [anon_sym_xor_EQ] = ACTIONS(1881), - [anon_sym_LT_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_GT_EQ] = ACTIONS(1881), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_yield] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_defer] = ACTIONS(1883), - [anon_sym_errdefer] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_expand] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_orelse] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_or] = ACTIONS(1883), - [anon_sym_and] = ACTIONS(1883), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1883), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1883), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_xor] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1883), - [anon_sym_GT_GT] = ACTIONS(1883), - [anon_sym_LT_LT_PIPE] = ACTIONS(1883), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_SLASH] = ACTIONS(1883), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1883), - [anon_sym_false] = ACTIONS(1883), - [anon_sym_null] = ACTIONS(1883), - [anon_sym_unreachable] = ACTIONS(1883), - [anon_sym_undefined] = ACTIONS(1883), - [sym_sink] = ACTIONS(1883), - [sym_integer] = ACTIONS(1883), - [sym_float] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym_multiline_string] = ACTIONS(1881), - [sym_character] = ACTIONS(1881), + [STATE(230)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(231)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(232)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(234), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1881), }, - [STATE(660)] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_test] = ACTIONS(1887), - [anon_sym_hide] = ACTIONS(1887), - [anon_sym_func] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), + [STATE(233)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1883), + }, + [STATE(234)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_noreturn] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_anyopaque] = ACTIONS(1887), - [anon_sym_bool] = ACTIONS(1887), - [anon_sym_int] = ACTIONS(1887), - [anon_sym_uint] = ACTIONS(1887), - [anon_sym_float] = ACTIONS(1887), - [anon_sym_range] = ACTIONS(1887), - [anon_sym_i8] = ACTIONS(1887), - [anon_sym_i16] = ACTIONS(1887), - [anon_sym_i32] = ACTIONS(1887), - [anon_sym_i64] = ACTIONS(1887), - [anon_sym_u8] = ACTIONS(1887), - [anon_sym_u16] = ACTIONS(1887), - [anon_sym_u32] = ACTIONS(1887), - [anon_sym_u64] = ACTIONS(1887), - [anon_sym_isize] = ACTIONS(1887), - [anon_sym_usize] = ACTIONS(1887), - [anon_sym_f32] = ACTIONS(1887), - [anon_sym_f64] = ACTIONS(1887), - [anon_sym_c_char] = ACTIONS(1887), - [anon_sym_c_schar] = ACTIONS(1887), - [anon_sym_c_uchar] = ACTIONS(1887), - [anon_sym_c_short] = ACTIONS(1887), - [anon_sym_c_ushort] = ACTIONS(1887), - [anon_sym_c_int] = ACTIONS(1887), - [anon_sym_c_uint] = ACTIONS(1887), - [anon_sym_c_long] = ACTIONS(1887), - [anon_sym_c_ulong] = ACTIONS(1887), - [anon_sym_c_longlong] = ACTIONS(1887), - [anon_sym_c_ulonglong] = ACTIONS(1887), - [anon_sym_c_float] = ACTIONS(1887), - [anon_sym_c_double] = ACTIONS(1887), - [anon_sym_c_longdouble] = ACTIONS(1887), - [anon_sym_PLUS_EQ] = ACTIONS(1885), - [anon_sym_DASH_EQ] = ACTIONS(1885), - [anon_sym_STAR_EQ] = ACTIONS(1885), - [anon_sym_SLASH_EQ] = ACTIONS(1885), - [anon_sym_AMP_EQ] = ACTIONS(1885), - [anon_sym_PIPE_EQ] = ACTIONS(1885), - [anon_sym_xor_EQ] = ACTIONS(1885), - [anon_sym_LT_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1885), - [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_else] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_expand] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_orelse] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1887), - [anon_sym_and] = ACTIONS(1887), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_xor] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_GT_GT] = ACTIONS(1887), - [anon_sym_LT_LT_PIPE] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_null] = ACTIONS(1887), - [anon_sym_unreachable] = ACTIONS(1887), - [anon_sym_undefined] = ACTIONS(1887), - [sym_sink] = ACTIONS(1887), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym_multiline_string] = ACTIONS(1885), - [sym_character] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1885), + [sym__newline] = ACTIONS(1849), }, - [STATE(661)] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_import] = ACTIONS(1891), - [anon_sym_test] = ACTIONS(1891), - [anon_sym_hide] = ACTIONS(1891), - [anon_sym_func] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), + [STATE(235)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(236)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1887), + }, + [STATE(237)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_void] = ACTIONS(1891), - [anon_sym_noreturn] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_anyopaque] = ACTIONS(1891), - [anon_sym_bool] = ACTIONS(1891), - [anon_sym_int] = ACTIONS(1891), - [anon_sym_uint] = ACTIONS(1891), - [anon_sym_float] = ACTIONS(1891), - [anon_sym_range] = ACTIONS(1891), - [anon_sym_i8] = ACTIONS(1891), - [anon_sym_i16] = ACTIONS(1891), - [anon_sym_i32] = ACTIONS(1891), - [anon_sym_i64] = ACTIONS(1891), - [anon_sym_u8] = ACTIONS(1891), - [anon_sym_u16] = ACTIONS(1891), - [anon_sym_u32] = ACTIONS(1891), - [anon_sym_u64] = ACTIONS(1891), - [anon_sym_isize] = ACTIONS(1891), - [anon_sym_usize] = ACTIONS(1891), - [anon_sym_f32] = ACTIONS(1891), - [anon_sym_f64] = ACTIONS(1891), - [anon_sym_c_char] = ACTIONS(1891), - [anon_sym_c_schar] = ACTIONS(1891), - [anon_sym_c_uchar] = ACTIONS(1891), - [anon_sym_c_short] = ACTIONS(1891), - [anon_sym_c_ushort] = ACTIONS(1891), - [anon_sym_c_int] = ACTIONS(1891), - [anon_sym_c_uint] = ACTIONS(1891), - [anon_sym_c_long] = ACTIONS(1891), - [anon_sym_c_ulong] = ACTIONS(1891), - [anon_sym_c_longlong] = ACTIONS(1891), - [anon_sym_c_ulonglong] = ACTIONS(1891), - [anon_sym_c_float] = ACTIONS(1891), - [anon_sym_c_double] = ACTIONS(1891), - [anon_sym_c_longdouble] = ACTIONS(1891), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_xor_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_defer] = ACTIONS(1891), - [anon_sym_errdefer] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_expand] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [anon_sym_orelse] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_or] = ACTIONS(1891), - [anon_sym_and] = ACTIONS(1891), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_xor] = ACTIONS(1891), - [anon_sym_LT_LT] = ACTIONS(1891), - [anon_sym_GT_GT] = ACTIONS(1891), - [anon_sym_LT_LT_PIPE] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1891), - [anon_sym_false] = ACTIONS(1891), - [anon_sym_null] = ACTIONS(1891), - [anon_sym_unreachable] = ACTIONS(1891), - [anon_sym_undefined] = ACTIONS(1891), - [sym_sink] = ACTIONS(1891), - [sym_integer] = ACTIONS(1891), - [sym_float] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym_multiline_string] = ACTIONS(1889), - [sym_character] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1889), + [sym__newline] = ACTIONS(1849), }, - [STATE(662)] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_test] = ACTIONS(1895), - [anon_sym_hide] = ACTIONS(1895), - [anon_sym_func] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_EQ] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_COMMA] = ACTIONS(1893), + [STATE(238)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(239)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10060), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11734), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(240), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_QMARK] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_void] = ACTIONS(1895), - [anon_sym_noreturn] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_anyopaque] = ACTIONS(1895), - [anon_sym_bool] = ACTIONS(1895), - [anon_sym_int] = ACTIONS(1895), - [anon_sym_uint] = ACTIONS(1895), - [anon_sym_float] = ACTIONS(1895), - [anon_sym_range] = ACTIONS(1895), - [anon_sym_i8] = ACTIONS(1895), - [anon_sym_i16] = ACTIONS(1895), - [anon_sym_i32] = ACTIONS(1895), - [anon_sym_i64] = ACTIONS(1895), - [anon_sym_u8] = ACTIONS(1895), - [anon_sym_u16] = ACTIONS(1895), - [anon_sym_u32] = ACTIONS(1895), - [anon_sym_u64] = ACTIONS(1895), - [anon_sym_isize] = ACTIONS(1895), - [anon_sym_usize] = ACTIONS(1895), - [anon_sym_f32] = ACTIONS(1895), - [anon_sym_f64] = ACTIONS(1895), - [anon_sym_c_char] = ACTIONS(1895), - [anon_sym_c_schar] = ACTIONS(1895), - [anon_sym_c_uchar] = ACTIONS(1895), - [anon_sym_c_short] = ACTIONS(1895), - [anon_sym_c_ushort] = ACTIONS(1895), - [anon_sym_c_int] = ACTIONS(1895), - [anon_sym_c_uint] = ACTIONS(1895), - [anon_sym_c_long] = ACTIONS(1895), - [anon_sym_c_ulong] = ACTIONS(1895), - [anon_sym_c_longlong] = ACTIONS(1895), - [anon_sym_c_ulonglong] = ACTIONS(1895), - [anon_sym_c_float] = ACTIONS(1895), - [anon_sym_c_double] = ACTIONS(1895), - [anon_sym_c_longdouble] = ACTIONS(1895), - [anon_sym_PLUS_EQ] = ACTIONS(1893), - [anon_sym_DASH_EQ] = ACTIONS(1893), - [anon_sym_STAR_EQ] = ACTIONS(1893), - [anon_sym_SLASH_EQ] = ACTIONS(1893), - [anon_sym_AMP_EQ] = ACTIONS(1893), - [anon_sym_PIPE_EQ] = ACTIONS(1893), - [anon_sym_xor_EQ] = ACTIONS(1893), - [anon_sym_LT_LT_EQ] = ACTIONS(1893), - [anon_sym_GT_GT_EQ] = ACTIONS(1893), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_defer] = ACTIONS(1895), - [anon_sym_errdefer] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_expand] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_orelse] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_or] = ACTIONS(1895), - [anon_sym_and] = ACTIONS(1895), - [anon_sym_EQ_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_LT_EQ] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_xor] = ACTIONS(1895), - [anon_sym_LT_LT] = ACTIONS(1895), - [anon_sym_GT_GT] = ACTIONS(1895), - [anon_sym_LT_LT_PIPE] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_SLASH] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [anon_sym_null] = ACTIONS(1895), - [anon_sym_unreachable] = ACTIONS(1895), - [anon_sym_undefined] = ACTIONS(1895), - [sym_sink] = ACTIONS(1895), - [sym_integer] = ACTIONS(1895), - [sym_float] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_multiline_string] = ACTIONS(1893), - [sym_character] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1893), + [sym__newline] = ACTIONS(1895), }, - [STATE(663)] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_test] = ACTIONS(1899), - [anon_sym_hide] = ACTIONS(1899), - [anon_sym_func] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), + [STATE(240)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10078), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11747), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_noreturn] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_anyopaque] = ACTIONS(1899), - [anon_sym_bool] = ACTIONS(1899), - [anon_sym_int] = ACTIONS(1899), - [anon_sym_uint] = ACTIONS(1899), - [anon_sym_float] = ACTIONS(1899), - [anon_sym_range] = ACTIONS(1899), - [anon_sym_i8] = ACTIONS(1899), - [anon_sym_i16] = ACTIONS(1899), - [anon_sym_i32] = ACTIONS(1899), - [anon_sym_i64] = ACTIONS(1899), - [anon_sym_u8] = ACTIONS(1899), - [anon_sym_u16] = ACTIONS(1899), - [anon_sym_u32] = ACTIONS(1899), - [anon_sym_u64] = ACTIONS(1899), - [anon_sym_isize] = ACTIONS(1899), - [anon_sym_usize] = ACTIONS(1899), - [anon_sym_f32] = ACTIONS(1899), - [anon_sym_f64] = ACTIONS(1899), - [anon_sym_c_char] = ACTIONS(1899), - [anon_sym_c_schar] = ACTIONS(1899), - [anon_sym_c_uchar] = ACTIONS(1899), - [anon_sym_c_short] = ACTIONS(1899), - [anon_sym_c_ushort] = ACTIONS(1899), - [anon_sym_c_int] = ACTIONS(1899), - [anon_sym_c_uint] = ACTIONS(1899), - [anon_sym_c_long] = ACTIONS(1899), - [anon_sym_c_ulong] = ACTIONS(1899), - [anon_sym_c_longlong] = ACTIONS(1899), - [anon_sym_c_ulonglong] = ACTIONS(1899), - [anon_sym_c_float] = ACTIONS(1899), - [anon_sym_c_double] = ACTIONS(1899), - [anon_sym_c_longdouble] = ACTIONS(1899), - [anon_sym_PLUS_EQ] = ACTIONS(1897), - [anon_sym_DASH_EQ] = ACTIONS(1897), - [anon_sym_STAR_EQ] = ACTIONS(1897), - [anon_sym_SLASH_EQ] = ACTIONS(1897), - [anon_sym_AMP_EQ] = ACTIONS(1897), - [anon_sym_PIPE_EQ] = ACTIONS(1897), - [anon_sym_xor_EQ] = ACTIONS(1897), - [anon_sym_LT_LT_EQ] = ACTIONS(1897), - [anon_sym_GT_GT_EQ] = ACTIONS(1897), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_errdefer] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_expand] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_orelse] = ACTIONS(1899), - [anon_sym_catch] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [anon_sym_and] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_xor] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [anon_sym_unreachable] = ACTIONS(1899), - [anon_sym_undefined] = ACTIONS(1899), - [sym_sink] = ACTIONS(1899), - [sym_integer] = ACTIONS(1899), - [sym_float] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_multiline_string] = ACTIONS(1897), - [sym_character] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1897), + [sym__newline] = ACTIONS(1849), }, - [STATE(664)] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_test] = ACTIONS(1903), - [anon_sym_hide] = ACTIONS(1903), - [anon_sym_func] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_EQ] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), + [STATE(241)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1899), + }, + [STATE(242)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10035), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11754), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_QMARK] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_noreturn] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_anyopaque] = ACTIONS(1903), - [anon_sym_bool] = ACTIONS(1903), - [anon_sym_int] = ACTIONS(1903), - [anon_sym_uint] = ACTIONS(1903), - [anon_sym_float] = ACTIONS(1903), - [anon_sym_range] = ACTIONS(1903), - [anon_sym_i8] = ACTIONS(1903), - [anon_sym_i16] = ACTIONS(1903), - [anon_sym_i32] = ACTIONS(1903), - [anon_sym_i64] = ACTIONS(1903), - [anon_sym_u8] = ACTIONS(1903), - [anon_sym_u16] = ACTIONS(1903), - [anon_sym_u32] = ACTIONS(1903), - [anon_sym_u64] = ACTIONS(1903), - [anon_sym_isize] = ACTIONS(1903), - [anon_sym_usize] = ACTIONS(1903), - [anon_sym_f32] = ACTIONS(1903), - [anon_sym_f64] = ACTIONS(1903), - [anon_sym_c_char] = ACTIONS(1903), - [anon_sym_c_schar] = ACTIONS(1903), - [anon_sym_c_uchar] = ACTIONS(1903), - [anon_sym_c_short] = ACTIONS(1903), - [anon_sym_c_ushort] = ACTIONS(1903), - [anon_sym_c_int] = ACTIONS(1903), - [anon_sym_c_uint] = ACTIONS(1903), - [anon_sym_c_long] = ACTIONS(1903), - [anon_sym_c_ulong] = ACTIONS(1903), - [anon_sym_c_longlong] = ACTIONS(1903), - [anon_sym_c_ulonglong] = ACTIONS(1903), - [anon_sym_c_float] = ACTIONS(1903), - [anon_sym_c_double] = ACTIONS(1903), - [anon_sym_c_longdouble] = ACTIONS(1903), - [anon_sym_PLUS_EQ] = ACTIONS(1901), - [anon_sym_DASH_EQ] = ACTIONS(1901), - [anon_sym_STAR_EQ] = ACTIONS(1901), - [anon_sym_SLASH_EQ] = ACTIONS(1901), - [anon_sym_AMP_EQ] = ACTIONS(1901), - [anon_sym_PIPE_EQ] = ACTIONS(1901), - [anon_sym_xor_EQ] = ACTIONS(1901), - [anon_sym_LT_LT_EQ] = ACTIONS(1901), - [anon_sym_GT_GT_EQ] = ACTIONS(1901), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_defer] = ACTIONS(1903), - [anon_sym_errdefer] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_expand] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_orelse] = ACTIONS(1903), - [anon_sym_catch] = ACTIONS(1903), - [anon_sym_or] = ACTIONS(1903), - [anon_sym_and] = ACTIONS(1903), - [anon_sym_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_xor] = ACTIONS(1903), - [anon_sym_LT_LT] = ACTIONS(1903), - [anon_sym_GT_GT] = ACTIONS(1903), - [anon_sym_LT_LT_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_CARET] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [anon_sym_null] = ACTIONS(1903), - [anon_sym_unreachable] = ACTIONS(1903), - [anon_sym_undefined] = ACTIONS(1903), - [sym_sink] = ACTIONS(1903), - [sym_integer] = ACTIONS(1903), - [sym_float] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym_multiline_string] = ACTIONS(1901), - [sym_character] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1901), + [sym__newline] = ACTIONS(1903), }, - [STATE(665)] = { - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(447), - [anon_sym_import] = ACTIONS(447), - [anon_sym_test] = ACTIONS(447), - [anon_sym_hide] = ACTIONS(447), - [anon_sym_func] = ACTIONS(447), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_struct] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(447), - [anon_sym_QMARK] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_void] = ACTIONS(447), - [anon_sym_noreturn] = ACTIONS(447), - [anon_sym_type] = ACTIONS(447), - [anon_sym_anyopaque] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_int] = ACTIONS(447), - [anon_sym_uint] = ACTIONS(447), - [anon_sym_float] = ACTIONS(447), - [anon_sym_range] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_c_char] = ACTIONS(447), - [anon_sym_c_schar] = ACTIONS(447), - [anon_sym_c_uchar] = ACTIONS(447), - [anon_sym_c_short] = ACTIONS(447), - [anon_sym_c_ushort] = ACTIONS(447), - [anon_sym_c_int] = ACTIONS(447), - [anon_sym_c_uint] = ACTIONS(447), - [anon_sym_c_long] = ACTIONS(447), - [anon_sym_c_ulong] = ACTIONS(447), - [anon_sym_c_longlong] = ACTIONS(447), - [anon_sym_c_ulonglong] = ACTIONS(447), - [anon_sym_c_float] = ACTIONS(447), - [anon_sym_c_double] = ACTIONS(447), - [anon_sym_c_longdouble] = ACTIONS(447), - [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(447), - [anon_sym_yield] = ACTIONS(447), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(447), - [anon_sym_defer] = ACTIONS(447), - [anon_sym_errdefer] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(447), - [anon_sym_while] = ACTIONS(447), - [anon_sym_expand] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_match] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(447), - [anon_sym_catch] = ACTIONS(447), - [anon_sym_or] = ACTIONS(447), - [anon_sym_and] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_xor] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(447), - [anon_sym_GT_GT] = ACTIONS(447), - [anon_sym_LT_LT_PIPE] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_true] = ACTIONS(447), - [anon_sym_false] = ACTIONS(447), - [anon_sym_null] = ACTIONS(447), - [anon_sym_unreachable] = ACTIONS(447), - [anon_sym_undefined] = ACTIONS(447), - [sym_sink] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [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(666)] = { - [ts_builtin_sym_end] = ACTIONS(461), - [sym_identifier] = ACTIONS(459), - [anon_sym_import] = ACTIONS(459), - [anon_sym_test] = ACTIONS(459), - [anon_sym_hide] = ACTIONS(459), - [anon_sym_func] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(461), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_DOLLAR] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_void] = ACTIONS(459), - [anon_sym_noreturn] = ACTIONS(459), - [anon_sym_type] = ACTIONS(459), - [anon_sym_anyopaque] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_int] = ACTIONS(459), - [anon_sym_uint] = ACTIONS(459), - [anon_sym_float] = ACTIONS(459), - [anon_sym_range] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_c_char] = ACTIONS(459), - [anon_sym_c_schar] = ACTIONS(459), - [anon_sym_c_uchar] = ACTIONS(459), - [anon_sym_c_short] = ACTIONS(459), - [anon_sym_c_ushort] = ACTIONS(459), - [anon_sym_c_int] = ACTIONS(459), - [anon_sym_c_uint] = ACTIONS(459), - [anon_sym_c_long] = ACTIONS(459), - [anon_sym_c_ulong] = ACTIONS(459), - [anon_sym_c_longlong] = ACTIONS(459), - [anon_sym_c_ulonglong] = ACTIONS(459), - [anon_sym_c_float] = ACTIONS(459), - [anon_sym_c_double] = ACTIONS(459), - [anon_sym_c_longdouble] = ACTIONS(459), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_xor_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(461), - [anon_sym_return] = ACTIONS(459), - [anon_sym_yield] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_defer] = ACTIONS(459), - [anon_sym_errdefer] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_expand] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_match] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(461), - [anon_sym_orelse] = ACTIONS(459), - [anon_sym_catch] = ACTIONS(459), - [anon_sym_or] = ACTIONS(459), - [anon_sym_and] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_xor] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_LT_LT_PIPE] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_try] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(459), - [anon_sym_unreachable] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [sym_sink] = ACTIONS(459), - [sym_integer] = ACTIONS(459), - [sym_float] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(461), - [sym_multiline_string] = ACTIONS(461), - [sym_character] = ACTIONS(461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(461), - }, - [STATE(667)] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1907), - [anon_sym_import] = ACTIONS(1907), - [anon_sym_test] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_func] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_EQ] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), + [STATE(243)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10267), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11768), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_void] = ACTIONS(1907), - [anon_sym_noreturn] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_anyopaque] = ACTIONS(1907), - [anon_sym_bool] = ACTIONS(1907), - [anon_sym_int] = ACTIONS(1907), - [anon_sym_uint] = ACTIONS(1907), - [anon_sym_float] = ACTIONS(1907), - [anon_sym_range] = ACTIONS(1907), - [anon_sym_i8] = ACTIONS(1907), - [anon_sym_i16] = ACTIONS(1907), - [anon_sym_i32] = ACTIONS(1907), - [anon_sym_i64] = ACTIONS(1907), - [anon_sym_u8] = ACTIONS(1907), - [anon_sym_u16] = ACTIONS(1907), - [anon_sym_u32] = ACTIONS(1907), - [anon_sym_u64] = ACTIONS(1907), - [anon_sym_isize] = ACTIONS(1907), - [anon_sym_usize] = ACTIONS(1907), - [anon_sym_f32] = ACTIONS(1907), - [anon_sym_f64] = ACTIONS(1907), - [anon_sym_c_char] = ACTIONS(1907), - [anon_sym_c_schar] = ACTIONS(1907), - [anon_sym_c_uchar] = ACTIONS(1907), - [anon_sym_c_short] = ACTIONS(1907), - [anon_sym_c_ushort] = ACTIONS(1907), - [anon_sym_c_int] = ACTIONS(1907), - [anon_sym_c_uint] = ACTIONS(1907), - [anon_sym_c_long] = ACTIONS(1907), - [anon_sym_c_ulong] = ACTIONS(1907), - [anon_sym_c_longlong] = ACTIONS(1907), - [anon_sym_c_ulonglong] = ACTIONS(1907), - [anon_sym_c_float] = ACTIONS(1907), - [anon_sym_c_double] = ACTIONS(1907), - [anon_sym_c_longdouble] = ACTIONS(1907), - [anon_sym_PLUS_EQ] = ACTIONS(1905), - [anon_sym_DASH_EQ] = ACTIONS(1905), - [anon_sym_STAR_EQ] = ACTIONS(1905), - [anon_sym_SLASH_EQ] = ACTIONS(1905), - [anon_sym_AMP_EQ] = ACTIONS(1905), - [anon_sym_PIPE_EQ] = ACTIONS(1905), - [anon_sym_xor_EQ] = ACTIONS(1905), - [anon_sym_LT_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_GT_EQ] = ACTIONS(1905), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_defer] = ACTIONS(1907), - [anon_sym_errdefer] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_expand] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), - [anon_sym_orelse] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_or] = ACTIONS(1907), - [anon_sym_and] = ACTIONS(1907), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1907), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_xor] = ACTIONS(1907), - [anon_sym_LT_LT] = ACTIONS(1907), - [anon_sym_GT_GT] = ACTIONS(1907), - [anon_sym_LT_LT_PIPE] = ACTIONS(1907), - [anon_sym_PLUS] = ACTIONS(1907), - [anon_sym_SLASH] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1907), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [anon_sym_null] = ACTIONS(1907), - [anon_sym_unreachable] = ACTIONS(1907), - [anon_sym_undefined] = ACTIONS(1907), - [sym_sink] = ACTIONS(1907), - [sym_integer] = ACTIONS(1907), - [sym_float] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym_multiline_string] = ACTIONS(1905), - [sym_character] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1905), + [sym__newline] = ACTIONS(1907), }, - [STATE(668)] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_import] = ACTIONS(1911), - [anon_sym_test] = ACTIONS(1911), - [anon_sym_hide] = ACTIONS(1911), - [anon_sym_func] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_EQ] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_COMMA] = ACTIONS(1909), + [STATE(244)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10002), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11773), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_QMARK] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(1911), - [anon_sym_noreturn] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_anyopaque] = ACTIONS(1911), - [anon_sym_bool] = ACTIONS(1911), - [anon_sym_int] = ACTIONS(1911), - [anon_sym_uint] = ACTIONS(1911), - [anon_sym_float] = ACTIONS(1911), - [anon_sym_range] = ACTIONS(1911), - [anon_sym_i8] = ACTIONS(1911), - [anon_sym_i16] = ACTIONS(1911), - [anon_sym_i32] = ACTIONS(1911), - [anon_sym_i64] = ACTIONS(1911), - [anon_sym_u8] = ACTIONS(1911), - [anon_sym_u16] = ACTIONS(1911), - [anon_sym_u32] = ACTIONS(1911), - [anon_sym_u64] = ACTIONS(1911), - [anon_sym_isize] = ACTIONS(1911), - [anon_sym_usize] = ACTIONS(1911), - [anon_sym_f32] = ACTIONS(1911), - [anon_sym_f64] = ACTIONS(1911), - [anon_sym_c_char] = ACTIONS(1911), - [anon_sym_c_schar] = ACTIONS(1911), - [anon_sym_c_uchar] = ACTIONS(1911), - [anon_sym_c_short] = ACTIONS(1911), - [anon_sym_c_ushort] = ACTIONS(1911), - [anon_sym_c_int] = ACTIONS(1911), - [anon_sym_c_uint] = ACTIONS(1911), - [anon_sym_c_long] = ACTIONS(1911), - [anon_sym_c_ulong] = ACTIONS(1911), - [anon_sym_c_longlong] = ACTIONS(1911), - [anon_sym_c_ulonglong] = ACTIONS(1911), - [anon_sym_c_float] = ACTIONS(1911), - [anon_sym_c_double] = ACTIONS(1911), - [anon_sym_c_longdouble] = ACTIONS(1911), - [anon_sym_PLUS_EQ] = ACTIONS(1909), - [anon_sym_DASH_EQ] = ACTIONS(1909), - [anon_sym_STAR_EQ] = ACTIONS(1909), - [anon_sym_SLASH_EQ] = ACTIONS(1909), - [anon_sym_AMP_EQ] = ACTIONS(1909), - [anon_sym_PIPE_EQ] = ACTIONS(1909), - [anon_sym_xor_EQ] = ACTIONS(1909), - [anon_sym_LT_LT_EQ] = ACTIONS(1909), - [anon_sym_GT_GT_EQ] = ACTIONS(1909), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_defer] = ACTIONS(1911), - [anon_sym_errdefer] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_expand] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), - [anon_sym_orelse] = ACTIONS(1911), - [anon_sym_catch] = ACTIONS(1911), - [anon_sym_or] = ACTIONS(1911), - [anon_sym_and] = ACTIONS(1911), - [anon_sym_EQ_EQ] = ACTIONS(1909), - [anon_sym_BANG_EQ] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_LT_EQ] = ACTIONS(1909), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_GT_EQ] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym_xor] = ACTIONS(1911), - [anon_sym_LT_LT] = ACTIONS(1911), - [anon_sym_GT_GT] = ACTIONS(1911), - [anon_sym_LT_LT_PIPE] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [anon_sym_unreachable] = ACTIONS(1911), - [anon_sym_undefined] = ACTIONS(1911), - [sym_sink] = ACTIONS(1911), - [sym_integer] = ACTIONS(1911), - [sym_float] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym_multiline_string] = ACTIONS(1909), - [sym_character] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1909), + [sym__newline] = ACTIONS(1849), }, - [STATE(669)] = { - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_import] = ACTIONS(1915), - [anon_sym_test] = ACTIONS(1915), - [anon_sym_hide] = ACTIONS(1915), - [anon_sym_func] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), + [STATE(245)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10414), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11786), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(246)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_QMARK] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_void] = ACTIONS(1915), - [anon_sym_noreturn] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_anyopaque] = ACTIONS(1915), - [anon_sym_bool] = ACTIONS(1915), - [anon_sym_int] = ACTIONS(1915), - [anon_sym_uint] = ACTIONS(1915), - [anon_sym_float] = ACTIONS(1915), - [anon_sym_range] = ACTIONS(1915), - [anon_sym_i8] = ACTIONS(1915), - [anon_sym_i16] = ACTIONS(1915), - [anon_sym_i32] = ACTIONS(1915), - [anon_sym_i64] = ACTIONS(1915), - [anon_sym_u8] = ACTIONS(1915), - [anon_sym_u16] = ACTIONS(1915), - [anon_sym_u32] = ACTIONS(1915), - [anon_sym_u64] = ACTIONS(1915), - [anon_sym_isize] = ACTIONS(1915), - [anon_sym_usize] = ACTIONS(1915), - [anon_sym_f32] = ACTIONS(1915), - [anon_sym_f64] = ACTIONS(1915), - [anon_sym_c_char] = ACTIONS(1915), - [anon_sym_c_schar] = ACTIONS(1915), - [anon_sym_c_uchar] = ACTIONS(1915), - [anon_sym_c_short] = ACTIONS(1915), - [anon_sym_c_ushort] = ACTIONS(1915), - [anon_sym_c_int] = ACTIONS(1915), - [anon_sym_c_uint] = ACTIONS(1915), - [anon_sym_c_long] = ACTIONS(1915), - [anon_sym_c_ulong] = ACTIONS(1915), - [anon_sym_c_longlong] = ACTIONS(1915), - [anon_sym_c_ulonglong] = ACTIONS(1915), - [anon_sym_c_float] = ACTIONS(1915), - [anon_sym_c_double] = ACTIONS(1915), - [anon_sym_c_longdouble] = ACTIONS(1915), - [anon_sym_PLUS_EQ] = ACTIONS(1913), - [anon_sym_DASH_EQ] = ACTIONS(1913), - [anon_sym_STAR_EQ] = ACTIONS(1913), - [anon_sym_SLASH_EQ] = ACTIONS(1913), - [anon_sym_AMP_EQ] = ACTIONS(1913), - [anon_sym_PIPE_EQ] = ACTIONS(1913), - [anon_sym_xor_EQ] = ACTIONS(1913), - [anon_sym_LT_LT_EQ] = ACTIONS(1913), - [anon_sym_GT_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_defer] = ACTIONS(1915), - [anon_sym_errdefer] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_expand] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [anon_sym_orelse] = ACTIONS(1915), - [anon_sym_catch] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1915), - [anon_sym_and] = ACTIONS(1915), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_xor] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1915), - [anon_sym_GT_GT] = ACTIONS(1915), - [anon_sym_LT_LT_PIPE] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [anon_sym_unreachable] = ACTIONS(1915), - [anon_sym_undefined] = ACTIONS(1915), - [sym_sink] = ACTIONS(1915), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym_multiline_string] = ACTIONS(1913), - [sym_character] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1913), + [sym__newline] = ACTIONS(1915), }, - [STATE(670)] = { - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_identifier] = ACTIONS(1919), - [anon_sym_import] = ACTIONS(1919), - [anon_sym_test] = ACTIONS(1919), - [anon_sym_hide] = ACTIONS(1919), - [anon_sym_func] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_EQ] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), + [STATE(247)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_void] = ACTIONS(1919), - [anon_sym_noreturn] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_anyopaque] = ACTIONS(1919), - [anon_sym_bool] = ACTIONS(1919), - [anon_sym_int] = ACTIONS(1919), - [anon_sym_uint] = ACTIONS(1919), - [anon_sym_float] = ACTIONS(1919), - [anon_sym_range] = ACTIONS(1919), - [anon_sym_i8] = ACTIONS(1919), - [anon_sym_i16] = ACTIONS(1919), - [anon_sym_i32] = ACTIONS(1919), - [anon_sym_i64] = ACTIONS(1919), - [anon_sym_u8] = ACTIONS(1919), - [anon_sym_u16] = ACTIONS(1919), - [anon_sym_u32] = ACTIONS(1919), - [anon_sym_u64] = ACTIONS(1919), - [anon_sym_isize] = ACTIONS(1919), - [anon_sym_usize] = ACTIONS(1919), - [anon_sym_f32] = ACTIONS(1919), - [anon_sym_f64] = ACTIONS(1919), - [anon_sym_c_char] = ACTIONS(1919), - [anon_sym_c_schar] = ACTIONS(1919), - [anon_sym_c_uchar] = ACTIONS(1919), - [anon_sym_c_short] = ACTIONS(1919), - [anon_sym_c_ushort] = ACTIONS(1919), - [anon_sym_c_int] = ACTIONS(1919), - [anon_sym_c_uint] = ACTIONS(1919), - [anon_sym_c_long] = ACTIONS(1919), - [anon_sym_c_ulong] = ACTIONS(1919), - [anon_sym_c_longlong] = ACTIONS(1919), - [anon_sym_c_ulonglong] = ACTIONS(1919), - [anon_sym_c_float] = ACTIONS(1919), - [anon_sym_c_double] = ACTIONS(1919), - [anon_sym_c_longdouble] = ACTIONS(1919), - [anon_sym_PLUS_EQ] = ACTIONS(1917), - [anon_sym_DASH_EQ] = ACTIONS(1917), - [anon_sym_STAR_EQ] = ACTIONS(1917), - [anon_sym_SLASH_EQ] = ACTIONS(1917), - [anon_sym_AMP_EQ] = ACTIONS(1917), - [anon_sym_PIPE_EQ] = ACTIONS(1917), - [anon_sym_xor_EQ] = ACTIONS(1917), - [anon_sym_LT_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_GT_EQ] = ACTIONS(1917), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_yield] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_defer] = ACTIONS(1919), - [anon_sym_errdefer] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_expand] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), - [anon_sym_orelse] = ACTIONS(1919), - [anon_sym_catch] = ACTIONS(1919), - [anon_sym_or] = ACTIONS(1919), - [anon_sym_and] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_xor] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1919), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_LT_LT_PIPE] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [anon_sym_null] = ACTIONS(1919), - [anon_sym_unreachable] = ACTIONS(1919), - [anon_sym_undefined] = ACTIONS(1919), - [sym_sink] = ACTIONS(1919), - [sym_integer] = ACTIONS(1919), - [sym_float] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym_multiline_string] = ACTIONS(1917), - [sym_character] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1917), + [sym__newline] = ACTIONS(1849), }, - [STATE(671)] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_test] = ACTIONS(1923), - [anon_sym_hide] = ACTIONS(1923), - [anon_sym_func] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_noreturn] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_anyopaque] = ACTIONS(1923), - [anon_sym_bool] = ACTIONS(1923), - [anon_sym_int] = ACTIONS(1923), - [anon_sym_uint] = ACTIONS(1923), - [anon_sym_float] = ACTIONS(1923), - [anon_sym_range] = ACTIONS(1923), - [anon_sym_i8] = ACTIONS(1923), - [anon_sym_i16] = ACTIONS(1923), - [anon_sym_i32] = ACTIONS(1923), - [anon_sym_i64] = ACTIONS(1923), - [anon_sym_u8] = ACTIONS(1923), - [anon_sym_u16] = ACTIONS(1923), - [anon_sym_u32] = ACTIONS(1923), - [anon_sym_u64] = ACTIONS(1923), - [anon_sym_isize] = ACTIONS(1923), - [anon_sym_usize] = ACTIONS(1923), - [anon_sym_f32] = ACTIONS(1923), - [anon_sym_f64] = ACTIONS(1923), - [anon_sym_c_char] = ACTIONS(1923), - [anon_sym_c_schar] = ACTIONS(1923), - [anon_sym_c_uchar] = ACTIONS(1923), - [anon_sym_c_short] = ACTIONS(1923), - [anon_sym_c_ushort] = ACTIONS(1923), - [anon_sym_c_int] = ACTIONS(1923), - [anon_sym_c_uint] = ACTIONS(1923), - [anon_sym_c_long] = ACTIONS(1923), - [anon_sym_c_ulong] = ACTIONS(1923), - [anon_sym_c_longlong] = ACTIONS(1923), - [anon_sym_c_ulonglong] = ACTIONS(1923), - [anon_sym_c_float] = ACTIONS(1923), - [anon_sym_c_double] = ACTIONS(1923), - [anon_sym_c_longdouble] = ACTIONS(1923), - [anon_sym_PLUS_EQ] = ACTIONS(1921), - [anon_sym_DASH_EQ] = ACTIONS(1921), - [anon_sym_STAR_EQ] = ACTIONS(1921), - [anon_sym_SLASH_EQ] = ACTIONS(1921), - [anon_sym_AMP_EQ] = ACTIONS(1921), - [anon_sym_PIPE_EQ] = ACTIONS(1921), - [anon_sym_xor_EQ] = ACTIONS(1921), - [anon_sym_LT_LT_EQ] = ACTIONS(1921), - [anon_sym_GT_GT_EQ] = ACTIONS(1921), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_defer] = ACTIONS(1923), - [anon_sym_errdefer] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_expand] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), - [anon_sym_orelse] = ACTIONS(1923), - [anon_sym_catch] = ACTIONS(1923), - [anon_sym_or] = ACTIONS(1923), - [anon_sym_and] = ACTIONS(1923), - [anon_sym_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_xor] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(1923), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_LT_LT_PIPE] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [anon_sym_unreachable] = ACTIONS(1923), - [anon_sym_undefined] = ACTIONS(1923), - [sym_sink] = ACTIONS(1923), - [sym_integer] = ACTIONS(1923), - [sym_float] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym_multiline_string] = ACTIONS(1921), - [sym_character] = ACTIONS(1921), + [STATE(248)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1919), + }, + [STATE(249)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1921), }, - [STATE(672)] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_test] = ACTIONS(1927), - [anon_sym_hide] = ACTIONS(1927), - [anon_sym_func] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_noreturn] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_anyopaque] = ACTIONS(1927), - [anon_sym_bool] = ACTIONS(1927), - [anon_sym_int] = ACTIONS(1927), - [anon_sym_uint] = ACTIONS(1927), - [anon_sym_float] = ACTIONS(1927), - [anon_sym_range] = ACTIONS(1927), - [anon_sym_i8] = ACTIONS(1927), - [anon_sym_i16] = ACTIONS(1927), - [anon_sym_i32] = ACTIONS(1927), - [anon_sym_i64] = ACTIONS(1927), - [anon_sym_u8] = ACTIONS(1927), - [anon_sym_u16] = ACTIONS(1927), - [anon_sym_u32] = ACTIONS(1927), - [anon_sym_u64] = ACTIONS(1927), - [anon_sym_isize] = ACTIONS(1927), - [anon_sym_usize] = ACTIONS(1927), - [anon_sym_f32] = ACTIONS(1927), - [anon_sym_f64] = ACTIONS(1927), - [anon_sym_c_char] = ACTIONS(1927), - [anon_sym_c_schar] = ACTIONS(1927), - [anon_sym_c_uchar] = ACTIONS(1927), - [anon_sym_c_short] = ACTIONS(1927), - [anon_sym_c_ushort] = ACTIONS(1927), - [anon_sym_c_int] = ACTIONS(1927), - [anon_sym_c_uint] = ACTIONS(1927), - [anon_sym_c_long] = ACTIONS(1927), - [anon_sym_c_ulong] = ACTIONS(1927), - [anon_sym_c_longlong] = ACTIONS(1927), - [anon_sym_c_ulonglong] = ACTIONS(1927), - [anon_sym_c_float] = ACTIONS(1927), - [anon_sym_c_double] = ACTIONS(1927), - [anon_sym_c_longdouble] = ACTIONS(1927), - [anon_sym_PLUS_EQ] = ACTIONS(1925), - [anon_sym_DASH_EQ] = ACTIONS(1925), - [anon_sym_STAR_EQ] = ACTIONS(1925), - [anon_sym_SLASH_EQ] = ACTIONS(1925), - [anon_sym_AMP_EQ] = ACTIONS(1925), - [anon_sym_PIPE_EQ] = ACTIONS(1925), - [anon_sym_xor_EQ] = ACTIONS(1925), - [anon_sym_LT_LT_EQ] = ACTIONS(1925), - [anon_sym_GT_GT_EQ] = ACTIONS(1925), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_defer] = ACTIONS(1927), - [anon_sym_errdefer] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_expand] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1925), - [anon_sym_orelse] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_or] = ACTIONS(1927), - [anon_sym_and] = ACTIONS(1927), - [anon_sym_EQ_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1927), - [anon_sym_xor] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1927), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_LT_LT_PIPE] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_SLASH] = ACTIONS(1927), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_unreachable] = ACTIONS(1927), - [anon_sym_undefined] = ACTIONS(1927), - [sym_sink] = ACTIONS(1927), - [sym_integer] = ACTIONS(1927), - [sym_float] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym_multiline_string] = ACTIONS(1925), - [sym_character] = ACTIONS(1925), + [STATE(250)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(251)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(252)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(254), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1925), }, - [STATE(673)] = { - [ts_builtin_sym_end] = ACTIONS(1929), - [sym_identifier] = ACTIONS(1931), - [anon_sym_import] = ACTIONS(1931), - [anon_sym_test] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_func] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1931), - [anon_sym_struct] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_COMMA] = ACTIONS(1929), + [STATE(253)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1927), + }, + [STATE(254)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_void] = ACTIONS(1931), - [anon_sym_noreturn] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_anyopaque] = ACTIONS(1931), - [anon_sym_bool] = ACTIONS(1931), - [anon_sym_int] = ACTIONS(1931), - [anon_sym_uint] = ACTIONS(1931), - [anon_sym_float] = ACTIONS(1931), - [anon_sym_range] = ACTIONS(1931), - [anon_sym_i8] = ACTIONS(1931), - [anon_sym_i16] = ACTIONS(1931), - [anon_sym_i32] = ACTIONS(1931), - [anon_sym_i64] = ACTIONS(1931), - [anon_sym_u8] = ACTIONS(1931), - [anon_sym_u16] = ACTIONS(1931), - [anon_sym_u32] = ACTIONS(1931), - [anon_sym_u64] = ACTIONS(1931), - [anon_sym_isize] = ACTIONS(1931), - [anon_sym_usize] = ACTIONS(1931), - [anon_sym_f32] = ACTIONS(1931), - [anon_sym_f64] = ACTIONS(1931), - [anon_sym_c_char] = ACTIONS(1931), - [anon_sym_c_schar] = ACTIONS(1931), - [anon_sym_c_uchar] = ACTIONS(1931), - [anon_sym_c_short] = ACTIONS(1931), - [anon_sym_c_ushort] = ACTIONS(1931), - [anon_sym_c_int] = ACTIONS(1931), - [anon_sym_c_uint] = ACTIONS(1931), - [anon_sym_c_long] = ACTIONS(1931), - [anon_sym_c_ulong] = ACTIONS(1931), - [anon_sym_c_longlong] = ACTIONS(1931), - [anon_sym_c_ulonglong] = ACTIONS(1931), - [anon_sym_c_float] = ACTIONS(1931), - [anon_sym_c_double] = ACTIONS(1931), - [anon_sym_c_longdouble] = ACTIONS(1931), - [anon_sym_PLUS_EQ] = ACTIONS(1929), - [anon_sym_DASH_EQ] = ACTIONS(1929), - [anon_sym_STAR_EQ] = ACTIONS(1929), - [anon_sym_SLASH_EQ] = ACTIONS(1929), - [anon_sym_AMP_EQ] = ACTIONS(1929), - [anon_sym_PIPE_EQ] = ACTIONS(1929), - [anon_sym_xor_EQ] = ACTIONS(1929), - [anon_sym_LT_LT_EQ] = ACTIONS(1929), - [anon_sym_GT_GT_EQ] = ACTIONS(1929), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_yield] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_defer] = ACTIONS(1931), - [anon_sym_errdefer] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_expand] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), - [anon_sym_orelse] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_or] = ACTIONS(1931), - [anon_sym_and] = ACTIONS(1931), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_BANG_EQ] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1931), - [anon_sym_LT_EQ] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1931), - [anon_sym_GT_EQ] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1931), - [anon_sym_xor] = ACTIONS(1931), - [anon_sym_LT_LT] = ACTIONS(1931), - [anon_sym_GT_GT] = ACTIONS(1931), - [anon_sym_LT_LT_PIPE] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_SLASH] = ACTIONS(1931), - [anon_sym_TILDE] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_CARET] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [anon_sym_unreachable] = ACTIONS(1931), - [anon_sym_undefined] = ACTIONS(1931), - [sym_sink] = ACTIONS(1931), - [sym_integer] = ACTIONS(1931), - [sym_float] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym_multiline_string] = ACTIONS(1929), - [sym_character] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1929), + [sym__newline] = ACTIONS(1849), }, - [STATE(674)] = { - [ts_builtin_sym_end] = ACTIONS(1933), - [sym_identifier] = ACTIONS(1935), - [anon_sym_import] = ACTIONS(1935), - [anon_sym_test] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_func] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_EQ] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_COMMA] = ACTIONS(1933), + [STATE(255)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(256)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(257), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1931), + }, + [STATE(257)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_QMARK] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_void] = ACTIONS(1935), - [anon_sym_noreturn] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_anyopaque] = ACTIONS(1935), - [anon_sym_bool] = ACTIONS(1935), - [anon_sym_int] = ACTIONS(1935), - [anon_sym_uint] = ACTIONS(1935), - [anon_sym_float] = ACTIONS(1935), - [anon_sym_range] = ACTIONS(1935), - [anon_sym_i8] = ACTIONS(1935), - [anon_sym_i16] = ACTIONS(1935), - [anon_sym_i32] = ACTIONS(1935), - [anon_sym_i64] = ACTIONS(1935), - [anon_sym_u8] = ACTIONS(1935), - [anon_sym_u16] = ACTIONS(1935), - [anon_sym_u32] = ACTIONS(1935), - [anon_sym_u64] = ACTIONS(1935), - [anon_sym_isize] = ACTIONS(1935), - [anon_sym_usize] = ACTIONS(1935), - [anon_sym_f32] = ACTIONS(1935), - [anon_sym_f64] = ACTIONS(1935), - [anon_sym_c_char] = ACTIONS(1935), - [anon_sym_c_schar] = ACTIONS(1935), - [anon_sym_c_uchar] = ACTIONS(1935), - [anon_sym_c_short] = ACTIONS(1935), - [anon_sym_c_ushort] = ACTIONS(1935), - [anon_sym_c_int] = ACTIONS(1935), - [anon_sym_c_uint] = ACTIONS(1935), - [anon_sym_c_long] = ACTIONS(1935), - [anon_sym_c_ulong] = ACTIONS(1935), - [anon_sym_c_longlong] = ACTIONS(1935), - [anon_sym_c_ulonglong] = ACTIONS(1935), - [anon_sym_c_float] = ACTIONS(1935), - [anon_sym_c_double] = ACTIONS(1935), - [anon_sym_c_longdouble] = ACTIONS(1935), - [anon_sym_PLUS_EQ] = ACTIONS(1933), - [anon_sym_DASH_EQ] = ACTIONS(1933), - [anon_sym_STAR_EQ] = ACTIONS(1933), - [anon_sym_SLASH_EQ] = ACTIONS(1933), - [anon_sym_AMP_EQ] = ACTIONS(1933), - [anon_sym_PIPE_EQ] = ACTIONS(1933), - [anon_sym_xor_EQ] = ACTIONS(1933), - [anon_sym_LT_LT_EQ] = ACTIONS(1933), - [anon_sym_GT_GT_EQ] = ACTIONS(1933), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_yield] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_defer] = ACTIONS(1935), - [anon_sym_errdefer] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_expand] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_orelse] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_or] = ACTIONS(1935), - [anon_sym_and] = ACTIONS(1935), - [anon_sym_EQ_EQ] = ACTIONS(1933), - [anon_sym_BANG_EQ] = ACTIONS(1933), - [anon_sym_LT] = ACTIONS(1935), - [anon_sym_LT_EQ] = ACTIONS(1933), - [anon_sym_GT] = ACTIONS(1935), - [anon_sym_GT_EQ] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1935), - [anon_sym_xor] = ACTIONS(1935), - [anon_sym_LT_LT] = ACTIONS(1935), - [anon_sym_GT_GT] = ACTIONS(1935), - [anon_sym_LT_LT_PIPE] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_SLASH] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_DOT] = ACTIONS(1935), - [anon_sym_CARET] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_unreachable] = ACTIONS(1935), - [anon_sym_undefined] = ACTIONS(1935), - [sym_sink] = ACTIONS(1935), - [sym_integer] = ACTIONS(1935), - [sym_float] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym_multiline_string] = ACTIONS(1933), - [sym_character] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1933), + [sym__newline] = ACTIONS(1849), }, - [STATE(675)] = { - [ts_builtin_sym_end] = ACTIONS(1937), - [sym_identifier] = ACTIONS(1939), - [anon_sym_import] = ACTIONS(1939), - [anon_sym_test] = ACTIONS(1939), - [anon_sym_hide] = ACTIONS(1939), - [anon_sym_func] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(1939), - [anon_sym_EQ] = ACTIONS(1939), - [anon_sym_struct] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_void] = ACTIONS(1939), - [anon_sym_noreturn] = ACTIONS(1939), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_anyopaque] = ACTIONS(1939), - [anon_sym_bool] = ACTIONS(1939), - [anon_sym_int] = ACTIONS(1939), - [anon_sym_uint] = ACTIONS(1939), - [anon_sym_float] = ACTIONS(1939), - [anon_sym_range] = ACTIONS(1939), - [anon_sym_i8] = ACTIONS(1939), - [anon_sym_i16] = ACTIONS(1939), - [anon_sym_i32] = ACTIONS(1939), - [anon_sym_i64] = ACTIONS(1939), - [anon_sym_u8] = ACTIONS(1939), - [anon_sym_u16] = ACTIONS(1939), - [anon_sym_u32] = ACTIONS(1939), - [anon_sym_u64] = ACTIONS(1939), - [anon_sym_isize] = ACTIONS(1939), - [anon_sym_usize] = ACTIONS(1939), - [anon_sym_f32] = ACTIONS(1939), - [anon_sym_f64] = ACTIONS(1939), - [anon_sym_c_char] = ACTIONS(1939), - [anon_sym_c_schar] = ACTIONS(1939), - [anon_sym_c_uchar] = ACTIONS(1939), - [anon_sym_c_short] = ACTIONS(1939), - [anon_sym_c_ushort] = ACTIONS(1939), - [anon_sym_c_int] = ACTIONS(1939), - [anon_sym_c_uint] = ACTIONS(1939), - [anon_sym_c_long] = ACTIONS(1939), - [anon_sym_c_ulong] = ACTIONS(1939), - [anon_sym_c_longlong] = ACTIONS(1939), - [anon_sym_c_ulonglong] = ACTIONS(1939), - [anon_sym_c_float] = ACTIONS(1939), - [anon_sym_c_double] = ACTIONS(1939), - [anon_sym_c_longdouble] = ACTIONS(1939), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_AMP_EQ] = ACTIONS(1937), - [anon_sym_PIPE_EQ] = ACTIONS(1937), - [anon_sym_xor_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_GT_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_yield] = ACTIONS(1939), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_defer] = ACTIONS(1939), - [anon_sym_errdefer] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_expand] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1937), - [anon_sym_orelse] = ACTIONS(1939), - [anon_sym_catch] = ACTIONS(1939), - [anon_sym_or] = ACTIONS(1939), - [anon_sym_and] = ACTIONS(1939), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1939), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1939), - [anon_sym_xor] = ACTIONS(1939), - [anon_sym_LT_LT] = ACTIONS(1939), - [anon_sym_GT_GT] = ACTIONS(1939), - [anon_sym_LT_LT_PIPE] = ACTIONS(1939), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_SLASH] = ACTIONS(1939), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(1939), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_unreachable] = ACTIONS(1939), - [anon_sym_undefined] = ACTIONS(1939), - [sym_sink] = ACTIONS(1939), - [sym_integer] = ACTIONS(1939), - [sym_float] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym_multiline_string] = ACTIONS(1937), - [sym_character] = ACTIONS(1937), + [STATE(258)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10071), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11895), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(259), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1937), }, - [STATE(676)] = { - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1943), - [anon_sym_import] = ACTIONS(1943), - [anon_sym_test] = ACTIONS(1943), - [anon_sym_hide] = ACTIONS(1943), - [anon_sym_func] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_EQ] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), + [STATE(259)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10073), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11910), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(260)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10021), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11769), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_void] = ACTIONS(1943), - [anon_sym_noreturn] = ACTIONS(1943), - [anon_sym_type] = ACTIONS(1943), - [anon_sym_anyopaque] = ACTIONS(1943), - [anon_sym_bool] = ACTIONS(1943), - [anon_sym_int] = ACTIONS(1943), - [anon_sym_uint] = ACTIONS(1943), - [anon_sym_float] = ACTIONS(1943), - [anon_sym_range] = ACTIONS(1943), - [anon_sym_i8] = ACTIONS(1943), - [anon_sym_i16] = ACTIONS(1943), - [anon_sym_i32] = ACTIONS(1943), - [anon_sym_i64] = ACTIONS(1943), - [anon_sym_u8] = ACTIONS(1943), - [anon_sym_u16] = ACTIONS(1943), - [anon_sym_u32] = ACTIONS(1943), - [anon_sym_u64] = ACTIONS(1943), - [anon_sym_isize] = ACTIONS(1943), - [anon_sym_usize] = ACTIONS(1943), - [anon_sym_f32] = ACTIONS(1943), - [anon_sym_f64] = ACTIONS(1943), - [anon_sym_c_char] = ACTIONS(1943), - [anon_sym_c_schar] = ACTIONS(1943), - [anon_sym_c_uchar] = ACTIONS(1943), - [anon_sym_c_short] = ACTIONS(1943), - [anon_sym_c_ushort] = ACTIONS(1943), - [anon_sym_c_int] = ACTIONS(1943), - [anon_sym_c_uint] = ACTIONS(1943), - [anon_sym_c_long] = ACTIONS(1943), - [anon_sym_c_ulong] = ACTIONS(1943), - [anon_sym_c_longlong] = ACTIONS(1943), - [anon_sym_c_ulonglong] = ACTIONS(1943), - [anon_sym_c_float] = ACTIONS(1943), - [anon_sym_c_double] = ACTIONS(1943), - [anon_sym_c_longdouble] = ACTIONS(1943), - [anon_sym_PLUS_EQ] = ACTIONS(1941), - [anon_sym_DASH_EQ] = ACTIONS(1941), - [anon_sym_STAR_EQ] = ACTIONS(1941), - [anon_sym_SLASH_EQ] = ACTIONS(1941), - [anon_sym_AMP_EQ] = ACTIONS(1941), - [anon_sym_PIPE_EQ] = ACTIONS(1941), - [anon_sym_xor_EQ] = ACTIONS(1941), - [anon_sym_LT_LT_EQ] = ACTIONS(1941), - [anon_sym_GT_GT_EQ] = ACTIONS(1941), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_yield] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_defer] = ACTIONS(1943), - [anon_sym_errdefer] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_else] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_expand] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_orelse] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_or] = ACTIONS(1943), - [anon_sym_and] = ACTIONS(1943), - [anon_sym_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_xor] = ACTIONS(1943), - [anon_sym_LT_LT] = ACTIONS(1943), - [anon_sym_GT_GT] = ACTIONS(1943), - [anon_sym_LT_LT_PIPE] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_DOT] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_unreachable] = ACTIONS(1943), - [anon_sym_undefined] = ACTIONS(1943), - [sym_sink] = ACTIONS(1943), - [sym_integer] = ACTIONS(1943), - [sym_float] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym_multiline_string] = ACTIONS(1941), - [sym_character] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1941), + [sym__newline] = ACTIONS(1943), }, - [STATE(677)] = { - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1947), - [anon_sym_import] = ACTIONS(1947), - [anon_sym_test] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_func] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_EQ] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_COMMA] = ACTIONS(1945), + [STATE(261)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9999), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11916), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_QMARK] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_void] = ACTIONS(1947), - [anon_sym_noreturn] = ACTIONS(1947), - [anon_sym_type] = ACTIONS(1947), - [anon_sym_anyopaque] = ACTIONS(1947), - [anon_sym_bool] = ACTIONS(1947), - [anon_sym_int] = ACTIONS(1947), - [anon_sym_uint] = ACTIONS(1947), - [anon_sym_float] = ACTIONS(1947), - [anon_sym_range] = ACTIONS(1947), - [anon_sym_i8] = ACTIONS(1947), - [anon_sym_i16] = ACTIONS(1947), - [anon_sym_i32] = ACTIONS(1947), - [anon_sym_i64] = ACTIONS(1947), - [anon_sym_u8] = ACTIONS(1947), - [anon_sym_u16] = ACTIONS(1947), - [anon_sym_u32] = ACTIONS(1947), - [anon_sym_u64] = ACTIONS(1947), - [anon_sym_isize] = ACTIONS(1947), - [anon_sym_usize] = ACTIONS(1947), - [anon_sym_f32] = ACTIONS(1947), - [anon_sym_f64] = ACTIONS(1947), - [anon_sym_c_char] = ACTIONS(1947), - [anon_sym_c_schar] = ACTIONS(1947), - [anon_sym_c_uchar] = ACTIONS(1947), - [anon_sym_c_short] = ACTIONS(1947), - [anon_sym_c_ushort] = ACTIONS(1947), - [anon_sym_c_int] = ACTIONS(1947), - [anon_sym_c_uint] = ACTIONS(1947), - [anon_sym_c_long] = ACTIONS(1947), - [anon_sym_c_ulong] = ACTIONS(1947), - [anon_sym_c_longlong] = ACTIONS(1947), - [anon_sym_c_ulonglong] = ACTIONS(1947), - [anon_sym_c_float] = ACTIONS(1947), - [anon_sym_c_double] = ACTIONS(1947), - [anon_sym_c_longdouble] = ACTIONS(1947), - [anon_sym_PLUS_EQ] = ACTIONS(1945), - [anon_sym_DASH_EQ] = ACTIONS(1945), - [anon_sym_STAR_EQ] = ACTIONS(1945), - [anon_sym_SLASH_EQ] = ACTIONS(1945), - [anon_sym_AMP_EQ] = ACTIONS(1945), - [anon_sym_PIPE_EQ] = ACTIONS(1945), - [anon_sym_xor_EQ] = ACTIONS(1945), - [anon_sym_LT_LT_EQ] = ACTIONS(1945), - [anon_sym_GT_GT_EQ] = ACTIONS(1945), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_yield] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_defer] = ACTIONS(1947), - [anon_sym_errdefer] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_expand] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_orelse] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_or] = ACTIONS(1947), - [anon_sym_and] = ACTIONS(1947), - [anon_sym_EQ_EQ] = ACTIONS(1945), - [anon_sym_BANG_EQ] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_LT_EQ] = ACTIONS(1945), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_GT_EQ] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1947), - [anon_sym_xor] = ACTIONS(1947), - [anon_sym_LT_LT] = ACTIONS(1947), - [anon_sym_GT_GT] = ACTIONS(1947), - [anon_sym_LT_LT_PIPE] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [anon_sym_unreachable] = ACTIONS(1947), - [anon_sym_undefined] = ACTIONS(1947), - [sym_sink] = ACTIONS(1947), - [sym_integer] = ACTIONS(1947), - [sym_float] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym_multiline_string] = ACTIONS(1945), - [sym_character] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1945), + [sym__newline] = ACTIONS(1947), }, - [STATE(678)] = { - [ts_builtin_sym_end] = ACTIONS(1949), - [sym_identifier] = ACTIONS(1951), - [anon_sym_import] = ACTIONS(1951), - [anon_sym_test] = ACTIONS(1951), - [anon_sym_hide] = ACTIONS(1951), - [anon_sym_func] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_EQ] = ACTIONS(1951), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_COMMA] = ACTIONS(1949), + [STATE(262)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10391), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11933), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_QMARK] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_void] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_type] = ACTIONS(1951), - [anon_sym_anyopaque] = ACTIONS(1951), - [anon_sym_bool] = ACTIONS(1951), - [anon_sym_int] = ACTIONS(1951), - [anon_sym_uint] = ACTIONS(1951), - [anon_sym_float] = ACTIONS(1951), - [anon_sym_range] = ACTIONS(1951), - [anon_sym_i8] = ACTIONS(1951), - [anon_sym_i16] = ACTIONS(1951), - [anon_sym_i32] = ACTIONS(1951), - [anon_sym_i64] = ACTIONS(1951), - [anon_sym_u8] = ACTIONS(1951), - [anon_sym_u16] = ACTIONS(1951), - [anon_sym_u32] = ACTIONS(1951), - [anon_sym_u64] = ACTIONS(1951), - [anon_sym_isize] = ACTIONS(1951), - [anon_sym_usize] = ACTIONS(1951), - [anon_sym_f32] = ACTIONS(1951), - [anon_sym_f64] = ACTIONS(1951), - [anon_sym_c_char] = ACTIONS(1951), - [anon_sym_c_schar] = ACTIONS(1951), - [anon_sym_c_uchar] = ACTIONS(1951), - [anon_sym_c_short] = ACTIONS(1951), - [anon_sym_c_ushort] = ACTIONS(1951), - [anon_sym_c_int] = ACTIONS(1951), - [anon_sym_c_uint] = ACTIONS(1951), - [anon_sym_c_long] = ACTIONS(1951), - [anon_sym_c_ulong] = ACTIONS(1951), - [anon_sym_c_longlong] = ACTIONS(1951), - [anon_sym_c_ulonglong] = ACTIONS(1951), - [anon_sym_c_float] = ACTIONS(1951), - [anon_sym_c_double] = ACTIONS(1951), - [anon_sym_c_longdouble] = ACTIONS(1951), - [anon_sym_PLUS_EQ] = ACTIONS(1949), - [anon_sym_DASH_EQ] = ACTIONS(1949), - [anon_sym_STAR_EQ] = ACTIONS(1949), - [anon_sym_SLASH_EQ] = ACTIONS(1949), - [anon_sym_AMP_EQ] = ACTIONS(1949), - [anon_sym_PIPE_EQ] = ACTIONS(1949), - [anon_sym_xor_EQ] = ACTIONS(1949), - [anon_sym_LT_LT_EQ] = ACTIONS(1949), - [anon_sym_GT_GT_EQ] = ACTIONS(1949), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_yield] = ACTIONS(1951), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_defer] = ACTIONS(1951), - [anon_sym_errdefer] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_expand] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1949), - [anon_sym_orelse] = ACTIONS(1951), - [anon_sym_catch] = ACTIONS(1951), - [anon_sym_or] = ACTIONS(1951), - [anon_sym_and] = ACTIONS(1951), - [anon_sym_EQ_EQ] = ACTIONS(1949), - [anon_sym_BANG_EQ] = ACTIONS(1949), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_LT_EQ] = ACTIONS(1949), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_GT_EQ] = ACTIONS(1949), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_xor] = ACTIONS(1951), - [anon_sym_LT_LT] = ACTIONS(1951), - [anon_sym_GT_GT] = ACTIONS(1951), - [anon_sym_LT_LT_PIPE] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1951), - [anon_sym_SLASH] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [anon_sym_unreachable] = ACTIONS(1951), - [anon_sym_undefined] = ACTIONS(1951), - [sym_sink] = ACTIONS(1951), - [sym_integer] = ACTIONS(1951), - [sym_float] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym_multiline_string] = ACTIONS(1949), - [sym_character] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1949), + [sym__newline] = ACTIONS(1951), }, - [STATE(679)] = { - [ts_builtin_sym_end] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1955), - [anon_sym_import] = ACTIONS(1955), - [anon_sym_test] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_func] = ACTIONS(1955), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_EQ] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_COMMA] = ACTIONS(1953), + [STATE(263)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10067), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11937), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_void] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_type] = ACTIONS(1955), - [anon_sym_anyopaque] = ACTIONS(1955), - [anon_sym_bool] = ACTIONS(1955), - [anon_sym_int] = ACTIONS(1955), - [anon_sym_uint] = ACTIONS(1955), - [anon_sym_float] = ACTIONS(1955), - [anon_sym_range] = ACTIONS(1955), - [anon_sym_i8] = ACTIONS(1955), - [anon_sym_i16] = ACTIONS(1955), - [anon_sym_i32] = ACTIONS(1955), - [anon_sym_i64] = ACTIONS(1955), - [anon_sym_u8] = ACTIONS(1955), - [anon_sym_u16] = ACTIONS(1955), - [anon_sym_u32] = ACTIONS(1955), - [anon_sym_u64] = ACTIONS(1955), - [anon_sym_isize] = ACTIONS(1955), - [anon_sym_usize] = ACTIONS(1955), - [anon_sym_f32] = ACTIONS(1955), - [anon_sym_f64] = ACTIONS(1955), - [anon_sym_c_char] = ACTIONS(1955), - [anon_sym_c_schar] = ACTIONS(1955), - [anon_sym_c_uchar] = ACTIONS(1955), - [anon_sym_c_short] = ACTIONS(1955), - [anon_sym_c_ushort] = ACTIONS(1955), - [anon_sym_c_int] = ACTIONS(1955), - [anon_sym_c_uint] = ACTIONS(1955), - [anon_sym_c_long] = ACTIONS(1955), - [anon_sym_c_ulong] = ACTIONS(1955), - [anon_sym_c_longlong] = ACTIONS(1955), - [anon_sym_c_ulonglong] = ACTIONS(1955), - [anon_sym_c_float] = ACTIONS(1955), - [anon_sym_c_double] = ACTIONS(1955), - [anon_sym_c_longdouble] = ACTIONS(1955), - [anon_sym_PLUS_EQ] = ACTIONS(1953), - [anon_sym_DASH_EQ] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1953), - [anon_sym_SLASH_EQ] = ACTIONS(1953), - [anon_sym_AMP_EQ] = ACTIONS(1953), - [anon_sym_PIPE_EQ] = ACTIONS(1953), - [anon_sym_xor_EQ] = ACTIONS(1953), - [anon_sym_LT_LT_EQ] = ACTIONS(1953), - [anon_sym_GT_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_yield] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_defer] = ACTIONS(1955), - [anon_sym_errdefer] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_expand] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_orelse] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_or] = ACTIONS(1955), - [anon_sym_and] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_xor] = ACTIONS(1955), - [anon_sym_LT_LT] = ACTIONS(1955), - [anon_sym_GT_GT] = ACTIONS(1955), - [anon_sym_LT_LT_PIPE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_DOT] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_unreachable] = ACTIONS(1955), - [anon_sym_undefined] = ACTIONS(1955), - [sym_sink] = ACTIONS(1955), - [sym_integer] = ACTIONS(1955), - [sym_float] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym_multiline_string] = ACTIONS(1953), - [sym_character] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1953), + [sym__newline] = ACTIONS(1849), }, - [STATE(680)] = { - [ts_builtin_sym_end] = ACTIONS(1957), - [sym_identifier] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(1959), - [anon_sym_test] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_func] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1957), + [STATE(264)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10438), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11953), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(265)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(266), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_void] = ACTIONS(1959), - [anon_sym_noreturn] = ACTIONS(1959), - [anon_sym_type] = ACTIONS(1959), - [anon_sym_anyopaque] = ACTIONS(1959), - [anon_sym_bool] = ACTIONS(1959), - [anon_sym_int] = ACTIONS(1959), - [anon_sym_uint] = ACTIONS(1959), - [anon_sym_float] = ACTIONS(1959), - [anon_sym_range] = ACTIONS(1959), - [anon_sym_i8] = ACTIONS(1959), - [anon_sym_i16] = ACTIONS(1959), - [anon_sym_i32] = ACTIONS(1959), - [anon_sym_i64] = ACTIONS(1959), - [anon_sym_u8] = ACTIONS(1959), - [anon_sym_u16] = ACTIONS(1959), - [anon_sym_u32] = ACTIONS(1959), - [anon_sym_u64] = ACTIONS(1959), - [anon_sym_isize] = ACTIONS(1959), - [anon_sym_usize] = ACTIONS(1959), - [anon_sym_f32] = ACTIONS(1959), - [anon_sym_f64] = ACTIONS(1959), - [anon_sym_c_char] = ACTIONS(1959), - [anon_sym_c_schar] = ACTIONS(1959), - [anon_sym_c_uchar] = ACTIONS(1959), - [anon_sym_c_short] = ACTIONS(1959), - [anon_sym_c_ushort] = ACTIONS(1959), - [anon_sym_c_int] = ACTIONS(1959), - [anon_sym_c_uint] = ACTIONS(1959), - [anon_sym_c_long] = ACTIONS(1959), - [anon_sym_c_ulong] = ACTIONS(1959), - [anon_sym_c_longlong] = ACTIONS(1959), - [anon_sym_c_ulonglong] = ACTIONS(1959), - [anon_sym_c_float] = ACTIONS(1959), - [anon_sym_c_double] = ACTIONS(1959), - [anon_sym_c_longdouble] = ACTIONS(1959), - [anon_sym_PLUS_EQ] = ACTIONS(1957), - [anon_sym_DASH_EQ] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1957), - [anon_sym_SLASH_EQ] = ACTIONS(1957), - [anon_sym_AMP_EQ] = ACTIONS(1957), - [anon_sym_PIPE_EQ] = ACTIONS(1957), - [anon_sym_xor_EQ] = ACTIONS(1957), - [anon_sym_LT_LT_EQ] = ACTIONS(1957), - [anon_sym_GT_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_yield] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_defer] = ACTIONS(1959), - [anon_sym_errdefer] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_expand] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), - [anon_sym_orelse] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_or] = ACTIONS(1959), - [anon_sym_and] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_xor] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_LT_LT_PIPE] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [anon_sym_unreachable] = ACTIONS(1959), - [anon_sym_undefined] = ACTIONS(1959), - [sym_sink] = ACTIONS(1959), - [sym_integer] = ACTIONS(1959), - [sym_float] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym_multiline_string] = ACTIONS(1957), - [sym_character] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), }, - [STATE(681)] = { - [ts_builtin_sym_end] = ACTIONS(1961), - [sym_identifier] = ACTIONS(1963), - [anon_sym_import] = ACTIONS(1963), - [anon_sym_test] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_func] = ACTIONS(1963), - [anon_sym_BANG] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_COMMA] = ACTIONS(1961), + [STATE(266)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_QMARK] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_void] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_type] = ACTIONS(1963), - [anon_sym_anyopaque] = ACTIONS(1963), - [anon_sym_bool] = ACTIONS(1963), - [anon_sym_int] = ACTIONS(1963), - [anon_sym_uint] = ACTIONS(1963), - [anon_sym_float] = ACTIONS(1963), - [anon_sym_range] = ACTIONS(1963), - [anon_sym_i8] = ACTIONS(1963), - [anon_sym_i16] = ACTIONS(1963), - [anon_sym_i32] = ACTIONS(1963), - [anon_sym_i64] = ACTIONS(1963), - [anon_sym_u8] = ACTIONS(1963), - [anon_sym_u16] = ACTIONS(1963), - [anon_sym_u32] = ACTIONS(1963), - [anon_sym_u64] = ACTIONS(1963), - [anon_sym_isize] = ACTIONS(1963), - [anon_sym_usize] = ACTIONS(1963), - [anon_sym_f32] = ACTIONS(1963), - [anon_sym_f64] = ACTIONS(1963), - [anon_sym_c_char] = ACTIONS(1963), - [anon_sym_c_schar] = ACTIONS(1963), - [anon_sym_c_uchar] = ACTIONS(1963), - [anon_sym_c_short] = ACTIONS(1963), - [anon_sym_c_ushort] = ACTIONS(1963), - [anon_sym_c_int] = ACTIONS(1963), - [anon_sym_c_uint] = ACTIONS(1963), - [anon_sym_c_long] = ACTIONS(1963), - [anon_sym_c_ulong] = ACTIONS(1963), - [anon_sym_c_longlong] = ACTIONS(1963), - [anon_sym_c_ulonglong] = ACTIONS(1963), - [anon_sym_c_float] = ACTIONS(1963), - [anon_sym_c_double] = ACTIONS(1963), - [anon_sym_c_longdouble] = ACTIONS(1963), - [anon_sym_PLUS_EQ] = ACTIONS(1961), - [anon_sym_DASH_EQ] = ACTIONS(1961), - [anon_sym_STAR_EQ] = ACTIONS(1961), - [anon_sym_SLASH_EQ] = ACTIONS(1961), - [anon_sym_AMP_EQ] = ACTIONS(1961), - [anon_sym_PIPE_EQ] = ACTIONS(1961), - [anon_sym_xor_EQ] = ACTIONS(1961), - [anon_sym_LT_LT_EQ] = ACTIONS(1961), - [anon_sym_GT_GT_EQ] = ACTIONS(1961), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_yield] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_defer] = ACTIONS(1963), - [anon_sym_errdefer] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_expand] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), - [anon_sym_orelse] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_or] = ACTIONS(1963), - [anon_sym_and] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [anon_sym_BANG_EQ] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_EQ] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_xor] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_LT_LT_PIPE] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_DOT] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [anon_sym_unreachable] = ACTIONS(1963), - [anon_sym_undefined] = ACTIONS(1963), - [sym_sink] = ACTIONS(1963), - [sym_integer] = ACTIONS(1963), - [sym_float] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym_multiline_string] = ACTIONS(1961), - [sym_character] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1961), + [sym__newline] = ACTIONS(1849), }, - [STATE(682)] = { - [ts_builtin_sym_end] = ACTIONS(1965), - [sym_identifier] = ACTIONS(1967), - [anon_sym_import] = ACTIONS(1967), - [anon_sym_test] = ACTIONS(1967), - [anon_sym_hide] = ACTIONS(1967), - [anon_sym_func] = ACTIONS(1967), - [anon_sym_BANG] = ACTIONS(1967), - [anon_sym_EQ] = ACTIONS(1967), - [anon_sym_struct] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_RPAREN] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_void] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_type] = ACTIONS(1967), - [anon_sym_anyopaque] = ACTIONS(1967), - [anon_sym_bool] = ACTIONS(1967), - [anon_sym_int] = ACTIONS(1967), - [anon_sym_uint] = ACTIONS(1967), - [anon_sym_float] = ACTIONS(1967), - [anon_sym_range] = ACTIONS(1967), - [anon_sym_i8] = ACTIONS(1967), - [anon_sym_i16] = ACTIONS(1967), - [anon_sym_i32] = ACTIONS(1967), - [anon_sym_i64] = ACTIONS(1967), - [anon_sym_u8] = ACTIONS(1967), - [anon_sym_u16] = ACTIONS(1967), - [anon_sym_u32] = ACTIONS(1967), - [anon_sym_u64] = ACTIONS(1967), - [anon_sym_isize] = ACTIONS(1967), - [anon_sym_usize] = ACTIONS(1967), - [anon_sym_f32] = ACTIONS(1967), - [anon_sym_f64] = ACTIONS(1967), - [anon_sym_c_char] = ACTIONS(1967), - [anon_sym_c_schar] = ACTIONS(1967), - [anon_sym_c_uchar] = ACTIONS(1967), - [anon_sym_c_short] = ACTIONS(1967), - [anon_sym_c_ushort] = ACTIONS(1967), - [anon_sym_c_int] = ACTIONS(1967), - [anon_sym_c_uint] = ACTIONS(1967), - [anon_sym_c_long] = ACTIONS(1967), - [anon_sym_c_ulong] = ACTIONS(1967), - [anon_sym_c_longlong] = ACTIONS(1967), - [anon_sym_c_ulonglong] = ACTIONS(1967), - [anon_sym_c_float] = ACTIONS(1967), - [anon_sym_c_double] = ACTIONS(1967), - [anon_sym_c_longdouble] = ACTIONS(1967), - [anon_sym_PLUS_EQ] = ACTIONS(1965), - [anon_sym_DASH_EQ] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1965), - [anon_sym_SLASH_EQ] = ACTIONS(1965), - [anon_sym_AMP_EQ] = ACTIONS(1965), - [anon_sym_PIPE_EQ] = ACTIONS(1965), - [anon_sym_xor_EQ] = ACTIONS(1965), - [anon_sym_LT_LT_EQ] = ACTIONS(1965), - [anon_sym_GT_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_yield] = ACTIONS(1967), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_defer] = ACTIONS(1967), - [anon_sym_errdefer] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_else] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_expand] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), - [anon_sym_orelse] = ACTIONS(1967), - [anon_sym_catch] = ACTIONS(1967), - [anon_sym_or] = ACTIONS(1967), - [anon_sym_and] = ACTIONS(1967), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1967), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1967), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_xor] = ACTIONS(1967), - [anon_sym_LT_LT] = ACTIONS(1967), - [anon_sym_GT_GT] = ACTIONS(1967), - [anon_sym_LT_LT_PIPE] = ACTIONS(1967), - [anon_sym_PLUS] = ACTIONS(1967), - [anon_sym_SLASH] = ACTIONS(1967), - [anon_sym_TILDE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1967), - [anon_sym_DOT] = ACTIONS(1967), - [anon_sym_CARET] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [anon_sym_unreachable] = ACTIONS(1967), - [anon_sym_undefined] = ACTIONS(1967), - [sym_sink] = ACTIONS(1967), - [sym_integer] = ACTIONS(1967), - [sym_float] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym_multiline_string] = ACTIONS(1965), - [sym_character] = ACTIONS(1965), + [STATE(267)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(269), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1963), + }, + [STATE(268)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1965), }, - [STATE(683)] = { - [ts_builtin_sym_end] = ACTIONS(1969), - [sym_identifier] = ACTIONS(1971), - [anon_sym_import] = ACTIONS(1971), - [anon_sym_test] = ACTIONS(1971), - [anon_sym_hide] = ACTIONS(1971), - [anon_sym_func] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_RPAREN] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_void] = ACTIONS(1971), - [anon_sym_noreturn] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_anyopaque] = ACTIONS(1971), - [anon_sym_bool] = ACTIONS(1971), - [anon_sym_int] = ACTIONS(1971), - [anon_sym_uint] = ACTIONS(1971), - [anon_sym_float] = ACTIONS(1971), - [anon_sym_range] = ACTIONS(1971), - [anon_sym_i8] = ACTIONS(1971), - [anon_sym_i16] = ACTIONS(1971), - [anon_sym_i32] = ACTIONS(1971), - [anon_sym_i64] = ACTIONS(1971), - [anon_sym_u8] = ACTIONS(1971), - [anon_sym_u16] = ACTIONS(1971), - [anon_sym_u32] = ACTIONS(1971), - [anon_sym_u64] = ACTIONS(1971), - [anon_sym_isize] = ACTIONS(1971), - [anon_sym_usize] = ACTIONS(1971), - [anon_sym_f32] = ACTIONS(1971), - [anon_sym_f64] = ACTIONS(1971), - [anon_sym_c_char] = ACTIONS(1971), - [anon_sym_c_schar] = ACTIONS(1971), - [anon_sym_c_uchar] = ACTIONS(1971), - [anon_sym_c_short] = ACTIONS(1971), - [anon_sym_c_ushort] = ACTIONS(1971), - [anon_sym_c_int] = ACTIONS(1971), - [anon_sym_c_uint] = ACTIONS(1971), - [anon_sym_c_long] = ACTIONS(1971), - [anon_sym_c_ulong] = ACTIONS(1971), - [anon_sym_c_longlong] = ACTIONS(1971), - [anon_sym_c_ulonglong] = ACTIONS(1971), - [anon_sym_c_float] = ACTIONS(1971), - [anon_sym_c_double] = ACTIONS(1971), - [anon_sym_c_longdouble] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(1969), - [anon_sym_DASH_EQ] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1969), - [anon_sym_SLASH_EQ] = ACTIONS(1969), - [anon_sym_AMP_EQ] = ACTIONS(1969), - [anon_sym_PIPE_EQ] = ACTIONS(1969), - [anon_sym_xor_EQ] = ACTIONS(1969), - [anon_sym_LT_LT_EQ] = ACTIONS(1969), - [anon_sym_GT_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1971), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_break] = ACTIONS(1971), - [anon_sym_continue] = ACTIONS(1971), - [anon_sym_defer] = ACTIONS(1971), - [anon_sym_errdefer] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_else] = ACTIONS(1971), - [anon_sym_while] = ACTIONS(1971), - [anon_sym_expand] = ACTIONS(1971), - [anon_sym_for] = ACTIONS(1971), - [anon_sym_match] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1969), - [anon_sym_orelse] = ACTIONS(1971), - [anon_sym_catch] = ACTIONS(1971), - [anon_sym_or] = ACTIONS(1971), - [anon_sym_and] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_xor] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_LT_LT_PIPE] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [anon_sym_unreachable] = ACTIONS(1971), - [anon_sym_undefined] = ACTIONS(1971), - [sym_sink] = ACTIONS(1971), - [sym_integer] = ACTIONS(1971), - [sym_float] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym_multiline_string] = ACTIONS(1969), - [sym_character] = ACTIONS(1969), + [STATE(269)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(270)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(271)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1969), }, - [STATE(684)] = { - [ts_builtin_sym_end] = ACTIONS(1973), - [sym_identifier] = ACTIONS(1975), - [anon_sym_import] = ACTIONS(1975), - [anon_sym_test] = ACTIONS(1975), - [anon_sym_hide] = ACTIONS(1975), - [anon_sym_func] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1975), - [anon_sym_struct] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(1973), + [STATE(272)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1971), + }, + [STATE(273)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_QMARK] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1975), - [anon_sym_noreturn] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_anyopaque] = ACTIONS(1975), - [anon_sym_bool] = ACTIONS(1975), - [anon_sym_int] = ACTIONS(1975), - [anon_sym_uint] = ACTIONS(1975), - [anon_sym_float] = ACTIONS(1975), - [anon_sym_range] = ACTIONS(1975), - [anon_sym_i8] = ACTIONS(1975), - [anon_sym_i16] = ACTIONS(1975), - [anon_sym_i32] = ACTIONS(1975), - [anon_sym_i64] = ACTIONS(1975), - [anon_sym_u8] = ACTIONS(1975), - [anon_sym_u16] = ACTIONS(1975), - [anon_sym_u32] = ACTIONS(1975), - [anon_sym_u64] = ACTIONS(1975), - [anon_sym_isize] = ACTIONS(1975), - [anon_sym_usize] = ACTIONS(1975), - [anon_sym_f32] = ACTIONS(1975), - [anon_sym_f64] = ACTIONS(1975), - [anon_sym_c_char] = ACTIONS(1975), - [anon_sym_c_schar] = ACTIONS(1975), - [anon_sym_c_uchar] = ACTIONS(1975), - [anon_sym_c_short] = ACTIONS(1975), - [anon_sym_c_ushort] = ACTIONS(1975), - [anon_sym_c_int] = ACTIONS(1975), - [anon_sym_c_uint] = ACTIONS(1975), - [anon_sym_c_long] = ACTIONS(1975), - [anon_sym_c_ulong] = ACTIONS(1975), - [anon_sym_c_longlong] = ACTIONS(1975), - [anon_sym_c_ulonglong] = ACTIONS(1975), - [anon_sym_c_float] = ACTIONS(1975), - [anon_sym_c_double] = ACTIONS(1975), - [anon_sym_c_longdouble] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1973), - [anon_sym_DASH_EQ] = ACTIONS(1973), - [anon_sym_STAR_EQ] = ACTIONS(1973), - [anon_sym_SLASH_EQ] = ACTIONS(1973), - [anon_sym_AMP_EQ] = ACTIONS(1973), - [anon_sym_PIPE_EQ] = ACTIONS(1973), - [anon_sym_xor_EQ] = ACTIONS(1973), - [anon_sym_LT_LT_EQ] = ACTIONS(1973), - [anon_sym_GT_GT_EQ] = ACTIONS(1973), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_yield] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_defer] = ACTIONS(1975), - [anon_sym_errdefer] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_else] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_expand] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), - [anon_sym_orelse] = ACTIONS(1975), - [anon_sym_catch] = ACTIONS(1975), - [anon_sym_or] = ACTIONS(1975), - [anon_sym_and] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1973), - [anon_sym_BANG_EQ] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_EQ] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_xor] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_LT_LT_PIPE] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_TILDE] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1975), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1975), - [anon_sym_unreachable] = ACTIONS(1975), - [anon_sym_undefined] = ACTIONS(1975), - [sym_sink] = ACTIONS(1975), - [sym_integer] = ACTIONS(1975), - [sym_float] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1973), - [sym_multiline_string] = ACTIONS(1973), - [sym_character] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1973), + [sym__newline] = ACTIONS(1849), }, - [STATE(685)] = { - [ts_builtin_sym_end] = ACTIONS(1977), - [sym_identifier] = ACTIONS(1979), - [anon_sym_import] = ACTIONS(1979), - [anon_sym_test] = ACTIONS(1979), - [anon_sym_hide] = ACTIONS(1979), - [anon_sym_func] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_EQ] = ACTIONS(1979), - [anon_sym_struct] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), + [STATE(274)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(275)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1975), + }, + [STATE(276)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_QMARK] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_void] = ACTIONS(1979), - [anon_sym_noreturn] = ACTIONS(1979), - [anon_sym_type] = ACTIONS(1979), - [anon_sym_anyopaque] = ACTIONS(1979), - [anon_sym_bool] = ACTIONS(1979), - [anon_sym_int] = ACTIONS(1979), - [anon_sym_uint] = ACTIONS(1979), - [anon_sym_float] = ACTIONS(1979), - [anon_sym_range] = ACTIONS(1979), - [anon_sym_i8] = ACTIONS(1979), - [anon_sym_i16] = ACTIONS(1979), - [anon_sym_i32] = ACTIONS(1979), - [anon_sym_i64] = ACTIONS(1979), - [anon_sym_u8] = ACTIONS(1979), - [anon_sym_u16] = ACTIONS(1979), - [anon_sym_u32] = ACTIONS(1979), - [anon_sym_u64] = ACTIONS(1979), - [anon_sym_isize] = ACTIONS(1979), - [anon_sym_usize] = ACTIONS(1979), - [anon_sym_f32] = ACTIONS(1979), - [anon_sym_f64] = ACTIONS(1979), - [anon_sym_c_char] = ACTIONS(1979), - [anon_sym_c_schar] = ACTIONS(1979), - [anon_sym_c_uchar] = ACTIONS(1979), - [anon_sym_c_short] = ACTIONS(1979), - [anon_sym_c_ushort] = ACTIONS(1979), - [anon_sym_c_int] = ACTIONS(1979), - [anon_sym_c_uint] = ACTIONS(1979), - [anon_sym_c_long] = ACTIONS(1979), - [anon_sym_c_ulong] = ACTIONS(1979), - [anon_sym_c_longlong] = ACTIONS(1979), - [anon_sym_c_ulonglong] = ACTIONS(1979), - [anon_sym_c_float] = ACTIONS(1979), - [anon_sym_c_double] = ACTIONS(1979), - [anon_sym_c_longdouble] = ACTIONS(1979), - [anon_sym_PLUS_EQ] = ACTIONS(1977), - [anon_sym_DASH_EQ] = ACTIONS(1977), - [anon_sym_STAR_EQ] = ACTIONS(1977), - [anon_sym_SLASH_EQ] = ACTIONS(1977), - [anon_sym_AMP_EQ] = ACTIONS(1977), - [anon_sym_PIPE_EQ] = ACTIONS(1977), - [anon_sym_xor_EQ] = ACTIONS(1977), - [anon_sym_LT_LT_EQ] = ACTIONS(1977), - [anon_sym_GT_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_yield] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_defer] = ACTIONS(1979), - [anon_sym_errdefer] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_else] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_expand] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1977), - [anon_sym_orelse] = ACTIONS(1979), - [anon_sym_catch] = ACTIONS(1979), - [anon_sym_or] = ACTIONS(1979), - [anon_sym_and] = ACTIONS(1979), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_xor] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1979), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_LT_LT_PIPE] = ACTIONS(1979), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = ACTIONS(1979), - [anon_sym_null] = ACTIONS(1979), - [anon_sym_unreachable] = ACTIONS(1979), - [anon_sym_undefined] = ACTIONS(1979), - [sym_sink] = ACTIONS(1979), - [sym_integer] = ACTIONS(1979), - [sym_float] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym_multiline_string] = ACTIONS(1977), - [sym_character] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1977), + [sym__newline] = ACTIONS(1849), }, - [STATE(686)] = { - [ts_builtin_sym_end] = ACTIONS(1981), - [sym_identifier] = ACTIONS(1983), - [anon_sym_import] = ACTIONS(1983), - [anon_sym_test] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_func] = ACTIONS(1983), - [anon_sym_BANG] = ACTIONS(1983), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_struct] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_RPAREN] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1981), + [STATE(277)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1979), + }, + [STATE(278)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10064), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11441), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_void] = ACTIONS(1983), - [anon_sym_noreturn] = ACTIONS(1983), - [anon_sym_type] = ACTIONS(1983), - [anon_sym_anyopaque] = ACTIONS(1983), - [anon_sym_bool] = ACTIONS(1983), - [anon_sym_int] = ACTIONS(1983), - [anon_sym_uint] = ACTIONS(1983), - [anon_sym_float] = ACTIONS(1983), - [anon_sym_range] = ACTIONS(1983), - [anon_sym_i8] = ACTIONS(1983), - [anon_sym_i16] = ACTIONS(1983), - [anon_sym_i32] = ACTIONS(1983), - [anon_sym_i64] = ACTIONS(1983), - [anon_sym_u8] = ACTIONS(1983), - [anon_sym_u16] = ACTIONS(1983), - [anon_sym_u32] = ACTIONS(1983), - [anon_sym_u64] = ACTIONS(1983), - [anon_sym_isize] = ACTIONS(1983), - [anon_sym_usize] = ACTIONS(1983), - [anon_sym_f32] = ACTIONS(1983), - [anon_sym_f64] = ACTIONS(1983), - [anon_sym_c_char] = ACTIONS(1983), - [anon_sym_c_schar] = ACTIONS(1983), - [anon_sym_c_uchar] = ACTIONS(1983), - [anon_sym_c_short] = ACTIONS(1983), - [anon_sym_c_ushort] = ACTIONS(1983), - [anon_sym_c_int] = ACTIONS(1983), - [anon_sym_c_uint] = ACTIONS(1983), - [anon_sym_c_long] = ACTIONS(1983), - [anon_sym_c_ulong] = ACTIONS(1983), - [anon_sym_c_longlong] = ACTIONS(1983), - [anon_sym_c_ulonglong] = ACTIONS(1983), - [anon_sym_c_float] = ACTIONS(1983), - [anon_sym_c_double] = ACTIONS(1983), - [anon_sym_c_longdouble] = ACTIONS(1983), - [anon_sym_PLUS_EQ] = ACTIONS(1981), - [anon_sym_DASH_EQ] = ACTIONS(1981), - [anon_sym_STAR_EQ] = ACTIONS(1981), - [anon_sym_SLASH_EQ] = ACTIONS(1981), - [anon_sym_AMP_EQ] = ACTIONS(1981), - [anon_sym_PIPE_EQ] = ACTIONS(1981), - [anon_sym_xor_EQ] = ACTIONS(1981), - [anon_sym_LT_LT_EQ] = ACTIONS(1981), - [anon_sym_GT_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_defer] = ACTIONS(1983), - [anon_sym_errdefer] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_else] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_expand] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1981), - [anon_sym_orelse] = ACTIONS(1983), - [anon_sym_catch] = ACTIONS(1983), - [anon_sym_or] = ACTIONS(1983), - [anon_sym_and] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1983), - [anon_sym_LT_EQ] = ACTIONS(1981), - [anon_sym_GT] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_xor] = ACTIONS(1983), - [anon_sym_LT_LT] = ACTIONS(1983), - [anon_sym_GT_GT] = ACTIONS(1983), - [anon_sym_LT_LT_PIPE] = ACTIONS(1983), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_SLASH] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = ACTIONS(1983), - [anon_sym_null] = ACTIONS(1983), - [anon_sym_unreachable] = ACTIONS(1983), - [anon_sym_undefined] = ACTIONS(1983), - [sym_sink] = ACTIONS(1983), - [sym_integer] = ACTIONS(1983), - [sym_float] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym_multiline_string] = ACTIONS(1981), - [sym_character] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1981), + [sym__newline] = ACTIONS(1983), }, - [STATE(687)] = { - [ts_builtin_sym_end] = ACTIONS(1985), - [sym_identifier] = ACTIONS(1987), - [anon_sym_import] = ACTIONS(1987), - [anon_sym_test] = ACTIONS(1987), - [anon_sym_hide] = ACTIONS(1987), - [anon_sym_func] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_RPAREN] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), + [STATE(279)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9983), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11495), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_QMARK] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_void] = ACTIONS(1987), - [anon_sym_noreturn] = ACTIONS(1987), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_anyopaque] = ACTIONS(1987), - [anon_sym_bool] = ACTIONS(1987), - [anon_sym_int] = ACTIONS(1987), - [anon_sym_uint] = ACTIONS(1987), - [anon_sym_float] = ACTIONS(1987), - [anon_sym_range] = ACTIONS(1987), - [anon_sym_i8] = ACTIONS(1987), - [anon_sym_i16] = ACTIONS(1987), - [anon_sym_i32] = ACTIONS(1987), - [anon_sym_i64] = ACTIONS(1987), - [anon_sym_u8] = ACTIONS(1987), - [anon_sym_u16] = ACTIONS(1987), - [anon_sym_u32] = ACTIONS(1987), - [anon_sym_u64] = ACTIONS(1987), - [anon_sym_isize] = ACTIONS(1987), - [anon_sym_usize] = ACTIONS(1987), - [anon_sym_f32] = ACTIONS(1987), - [anon_sym_f64] = ACTIONS(1987), - [anon_sym_c_char] = ACTIONS(1987), - [anon_sym_c_schar] = ACTIONS(1987), - [anon_sym_c_uchar] = ACTIONS(1987), - [anon_sym_c_short] = ACTIONS(1987), - [anon_sym_c_ushort] = ACTIONS(1987), - [anon_sym_c_int] = ACTIONS(1987), - [anon_sym_c_uint] = ACTIONS(1987), - [anon_sym_c_long] = ACTIONS(1987), - [anon_sym_c_ulong] = ACTIONS(1987), - [anon_sym_c_longlong] = ACTIONS(1987), - [anon_sym_c_ulonglong] = ACTIONS(1987), - [anon_sym_c_float] = ACTIONS(1987), - [anon_sym_c_double] = ACTIONS(1987), - [anon_sym_c_longdouble] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1985), - [anon_sym_DASH_EQ] = ACTIONS(1985), - [anon_sym_STAR_EQ] = ACTIONS(1985), - [anon_sym_SLASH_EQ] = ACTIONS(1985), - [anon_sym_AMP_EQ] = ACTIONS(1985), - [anon_sym_PIPE_EQ] = ACTIONS(1985), - [anon_sym_xor_EQ] = ACTIONS(1985), - [anon_sym_LT_LT_EQ] = ACTIONS(1985), - [anon_sym_GT_GT_EQ] = ACTIONS(1985), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_yield] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_defer] = ACTIONS(1987), - [anon_sym_errdefer] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_else] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_expand] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1985), - [anon_sym_orelse] = ACTIONS(1987), - [anon_sym_catch] = ACTIONS(1987), - [anon_sym_or] = ACTIONS(1987), - [anon_sym_and] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1985), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1987), - [anon_sym_xor] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1987), - [anon_sym_LT_LT_PIPE] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1987), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [anon_sym_null] = ACTIONS(1987), - [anon_sym_unreachable] = ACTIONS(1987), - [anon_sym_undefined] = ACTIONS(1987), - [sym_sink] = ACTIONS(1987), - [sym_integer] = ACTIONS(1987), - [sym_float] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym_multiline_string] = ACTIONS(1985), - [sym_character] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1985), + [sym__newline] = ACTIONS(1849), }, - [STATE(688)] = { - [ts_builtin_sym_end] = ACTIONS(1989), - [sym_identifier] = ACTIONS(1991), - [anon_sym_import] = ACTIONS(1991), - [anon_sym_test] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_func] = ACTIONS(1991), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_EQ] = ACTIONS(1991), - [anon_sym_struct] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_RPAREN] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(1989), + [STATE(280)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10038), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11153), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(281)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10005), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11649), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(283), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1991), - [anon_sym_QMARK] = ACTIONS(1989), - [anon_sym_STAR] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_void] = ACTIONS(1991), - [anon_sym_noreturn] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_anyopaque] = ACTIONS(1991), - [anon_sym_bool] = ACTIONS(1991), - [anon_sym_int] = ACTIONS(1991), - [anon_sym_uint] = ACTIONS(1991), - [anon_sym_float] = ACTIONS(1991), - [anon_sym_range] = ACTIONS(1991), - [anon_sym_i8] = ACTIONS(1991), - [anon_sym_i16] = ACTIONS(1991), - [anon_sym_i32] = ACTIONS(1991), - [anon_sym_i64] = ACTIONS(1991), - [anon_sym_u8] = ACTIONS(1991), - [anon_sym_u16] = ACTIONS(1991), - [anon_sym_u32] = ACTIONS(1991), - [anon_sym_u64] = ACTIONS(1991), - [anon_sym_isize] = ACTIONS(1991), - [anon_sym_usize] = ACTIONS(1991), - [anon_sym_f32] = ACTIONS(1991), - [anon_sym_f64] = ACTIONS(1991), - [anon_sym_c_char] = ACTIONS(1991), - [anon_sym_c_schar] = ACTIONS(1991), - [anon_sym_c_uchar] = ACTIONS(1991), - [anon_sym_c_short] = ACTIONS(1991), - [anon_sym_c_ushort] = ACTIONS(1991), - [anon_sym_c_int] = ACTIONS(1991), - [anon_sym_c_uint] = ACTIONS(1991), - [anon_sym_c_long] = ACTIONS(1991), - [anon_sym_c_ulong] = ACTIONS(1991), - [anon_sym_c_longlong] = ACTIONS(1991), - [anon_sym_c_ulonglong] = ACTIONS(1991), - [anon_sym_c_float] = ACTIONS(1991), - [anon_sym_c_double] = ACTIONS(1991), - [anon_sym_c_longdouble] = ACTIONS(1991), - [anon_sym_PLUS_EQ] = ACTIONS(1989), - [anon_sym_DASH_EQ] = ACTIONS(1989), - [anon_sym_STAR_EQ] = ACTIONS(1989), - [anon_sym_SLASH_EQ] = ACTIONS(1989), - [anon_sym_AMP_EQ] = ACTIONS(1989), - [anon_sym_PIPE_EQ] = ACTIONS(1989), - [anon_sym_xor_EQ] = ACTIONS(1989), - [anon_sym_LT_LT_EQ] = ACTIONS(1989), - [anon_sym_GT_GT_EQ] = ACTIONS(1989), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_yield] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_defer] = ACTIONS(1991), - [anon_sym_errdefer] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_expand] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), - [anon_sym_orelse] = ACTIONS(1991), - [anon_sym_catch] = ACTIONS(1991), - [anon_sym_or] = ACTIONS(1991), - [anon_sym_and] = ACTIONS(1991), - [anon_sym_EQ_EQ] = ACTIONS(1989), - [anon_sym_BANG_EQ] = ACTIONS(1989), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym_xor] = ACTIONS(1991), - [anon_sym_LT_LT] = ACTIONS(1991), - [anon_sym_GT_GT] = ACTIONS(1991), - [anon_sym_LT_LT_PIPE] = ACTIONS(1991), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_SLASH] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1989), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_DOT] = ACTIONS(1991), - [anon_sym_CARET] = ACTIONS(1989), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [anon_sym_null] = ACTIONS(1991), - [anon_sym_unreachable] = ACTIONS(1991), - [anon_sym_undefined] = ACTIONS(1991), - [sym_sink] = ACTIONS(1991), - [sym_integer] = ACTIONS(1991), - [sym_float] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1989), - [sym_multiline_string] = ACTIONS(1989), - [sym_character] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1989), + [sym__newline] = ACTIONS(1991), }, - [STATE(689)] = { - [ts_builtin_sym_end] = ACTIONS(1993), - [sym_identifier] = ACTIONS(1995), - [anon_sym_import] = ACTIONS(1995), - [anon_sym_test] = ACTIONS(1995), - [anon_sym_hide] = ACTIONS(1995), - [anon_sym_func] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_struct] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1993), - [anon_sym_COMMA] = ACTIONS(1993), + [STATE(282)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10275), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11732), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_void] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_anyopaque] = ACTIONS(1995), - [anon_sym_bool] = ACTIONS(1995), - [anon_sym_int] = ACTIONS(1995), - [anon_sym_uint] = ACTIONS(1995), - [anon_sym_float] = ACTIONS(1995), - [anon_sym_range] = ACTIONS(1995), - [anon_sym_i8] = ACTIONS(1995), - [anon_sym_i16] = ACTIONS(1995), - [anon_sym_i32] = ACTIONS(1995), - [anon_sym_i64] = ACTIONS(1995), - [anon_sym_u8] = ACTIONS(1995), - [anon_sym_u16] = ACTIONS(1995), - [anon_sym_u32] = ACTIONS(1995), - [anon_sym_u64] = ACTIONS(1995), - [anon_sym_isize] = ACTIONS(1995), - [anon_sym_usize] = ACTIONS(1995), - [anon_sym_f32] = ACTIONS(1995), - [anon_sym_f64] = ACTIONS(1995), - [anon_sym_c_char] = ACTIONS(1995), - [anon_sym_c_schar] = ACTIONS(1995), - [anon_sym_c_uchar] = ACTIONS(1995), - [anon_sym_c_short] = ACTIONS(1995), - [anon_sym_c_ushort] = ACTIONS(1995), - [anon_sym_c_int] = ACTIONS(1995), - [anon_sym_c_uint] = ACTIONS(1995), - [anon_sym_c_long] = ACTIONS(1995), - [anon_sym_c_ulong] = ACTIONS(1995), - [anon_sym_c_longlong] = ACTIONS(1995), - [anon_sym_c_ulonglong] = ACTIONS(1995), - [anon_sym_c_float] = ACTIONS(1995), - [anon_sym_c_double] = ACTIONS(1995), - [anon_sym_c_longdouble] = ACTIONS(1995), - [anon_sym_PLUS_EQ] = ACTIONS(1993), - [anon_sym_DASH_EQ] = ACTIONS(1993), - [anon_sym_STAR_EQ] = ACTIONS(1993), - [anon_sym_SLASH_EQ] = ACTIONS(1993), - [anon_sym_AMP_EQ] = ACTIONS(1993), - [anon_sym_PIPE_EQ] = ACTIONS(1993), - [anon_sym_xor_EQ] = ACTIONS(1993), - [anon_sym_LT_LT_EQ] = ACTIONS(1993), - [anon_sym_GT_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_defer] = ACTIONS(1995), - [anon_sym_errdefer] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_else] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_expand] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_match] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_orelse] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_or] = ACTIONS(1995), - [anon_sym_and] = ACTIONS(1995), - [anon_sym_EQ_EQ] = ACTIONS(1993), - [anon_sym_BANG_EQ] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_LT_EQ] = ACTIONS(1993), - [anon_sym_GT] = ACTIONS(1995), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_xor] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_GT_GT] = ACTIONS(1995), - [anon_sym_LT_LT_PIPE] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_SLASH] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_DOT] = ACTIONS(1995), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_unreachable] = ACTIONS(1995), - [anon_sym_undefined] = ACTIONS(1995), - [sym_sink] = ACTIONS(1995), - [sym_integer] = ACTIONS(1995), - [sym_float] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1993), - [sym_multiline_string] = ACTIONS(1993), - [sym_character] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1993), + [sym__newline] = ACTIONS(1995), }, - [STATE(690)] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_identifier] = ACTIONS(1999), - [anon_sym_import] = ACTIONS(1999), - [anon_sym_test] = ACTIONS(1999), - [anon_sym_hide] = ACTIONS(1999), - [anon_sym_func] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1999), - [anon_sym_EQ] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_COMMA] = ACTIONS(1997), + [STATE(283)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10072), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11738), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_void] = ACTIONS(1999), - [anon_sym_noreturn] = ACTIONS(1999), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_anyopaque] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_int] = ACTIONS(1999), - [anon_sym_uint] = ACTIONS(1999), - [anon_sym_float] = ACTIONS(1999), - [anon_sym_range] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_c_char] = ACTIONS(1999), - [anon_sym_c_schar] = ACTIONS(1999), - [anon_sym_c_uchar] = ACTIONS(1999), - [anon_sym_c_short] = ACTIONS(1999), - [anon_sym_c_ushort] = ACTIONS(1999), - [anon_sym_c_int] = ACTIONS(1999), - [anon_sym_c_uint] = ACTIONS(1999), - [anon_sym_c_long] = ACTIONS(1999), - [anon_sym_c_ulong] = ACTIONS(1999), - [anon_sym_c_longlong] = ACTIONS(1999), - [anon_sym_c_ulonglong] = ACTIONS(1999), - [anon_sym_c_float] = ACTIONS(1999), - [anon_sym_c_double] = ACTIONS(1999), - [anon_sym_c_longdouble] = ACTIONS(1999), - [anon_sym_PLUS_EQ] = ACTIONS(1997), - [anon_sym_DASH_EQ] = ACTIONS(1997), - [anon_sym_STAR_EQ] = ACTIONS(1997), - [anon_sym_SLASH_EQ] = ACTIONS(1997), - [anon_sym_AMP_EQ] = ACTIONS(1997), - [anon_sym_PIPE_EQ] = ACTIONS(1997), - [anon_sym_xor_EQ] = ACTIONS(1997), - [anon_sym_LT_LT_EQ] = ACTIONS(1997), - [anon_sym_GT_GT_EQ] = ACTIONS(1997), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_defer] = ACTIONS(1999), - [anon_sym_errdefer] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_expand] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), - [anon_sym_orelse] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_or] = ACTIONS(1999), - [anon_sym_and] = ACTIONS(1999), - [anon_sym_EQ_EQ] = ACTIONS(1997), - [anon_sym_BANG_EQ] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_LT_EQ] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1999), - [anon_sym_GT_EQ] = ACTIONS(1997), - [anon_sym_AMP] = ACTIONS(1999), - [anon_sym_xor] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1999), - [anon_sym_LT_LT_PIPE] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_SLASH] = ACTIONS(1999), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_unreachable] = ACTIONS(1999), - [anon_sym_undefined] = ACTIONS(1999), - [sym_sink] = ACTIONS(1999), - [sym_integer] = ACTIONS(1999), - [sym_float] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym_multiline_string] = ACTIONS(1997), - [sym_character] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1997), + [sym__newline] = ACTIONS(1849), }, - [STATE(691)] = { - [ts_builtin_sym_end] = ACTIONS(453), - [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(453), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_void] = ACTIONS(451), - [anon_sym_noreturn] = ACTIONS(451), - [anon_sym_type] = 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(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_xor_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(453), - [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(453), - [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(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(453), - [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(453), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [anon_sym_null] = ACTIONS(451), - [anon_sym_unreachable] = ACTIONS(451), - [anon_sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_multiline_string] = ACTIONS(453), - [sym_character] = ACTIONS(453), + [STATE(284)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10293), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11870), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(453), + [sym__newline] = ACTIONS(1849), }, - [STATE(692)] = { - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_identifier] = ACTIONS(2003), - [anon_sym_import] = ACTIONS(2003), - [anon_sym_test] = ACTIONS(2003), - [anon_sym_hide] = ACTIONS(2003), - [anon_sym_func] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(2001), + [STATE(285)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2001), - [anon_sym_void] = ACTIONS(2003), - [anon_sym_noreturn] = ACTIONS(2003), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_anyopaque] = ACTIONS(2003), - [anon_sym_bool] = ACTIONS(2003), - [anon_sym_int] = ACTIONS(2003), - [anon_sym_uint] = ACTIONS(2003), - [anon_sym_float] = ACTIONS(2003), - [anon_sym_range] = ACTIONS(2003), - [anon_sym_i8] = ACTIONS(2003), - [anon_sym_i16] = ACTIONS(2003), - [anon_sym_i32] = ACTIONS(2003), - [anon_sym_i64] = ACTIONS(2003), - [anon_sym_u8] = ACTIONS(2003), - [anon_sym_u16] = ACTIONS(2003), - [anon_sym_u32] = ACTIONS(2003), - [anon_sym_u64] = ACTIONS(2003), - [anon_sym_isize] = ACTIONS(2003), - [anon_sym_usize] = ACTIONS(2003), - [anon_sym_f32] = ACTIONS(2003), - [anon_sym_f64] = ACTIONS(2003), - [anon_sym_c_char] = ACTIONS(2003), - [anon_sym_c_schar] = ACTIONS(2003), - [anon_sym_c_uchar] = ACTIONS(2003), - [anon_sym_c_short] = ACTIONS(2003), - [anon_sym_c_ushort] = ACTIONS(2003), - [anon_sym_c_int] = ACTIONS(2003), - [anon_sym_c_uint] = ACTIONS(2003), - [anon_sym_c_long] = ACTIONS(2003), - [anon_sym_c_ulong] = ACTIONS(2003), - [anon_sym_c_longlong] = ACTIONS(2003), - [anon_sym_c_ulonglong] = ACTIONS(2003), - [anon_sym_c_float] = ACTIONS(2003), - [anon_sym_c_double] = ACTIONS(2003), - [anon_sym_c_longdouble] = ACTIONS(2003), - [anon_sym_PLUS_EQ] = ACTIONS(2001), - [anon_sym_DASH_EQ] = ACTIONS(2001), - [anon_sym_STAR_EQ] = ACTIONS(2001), - [anon_sym_SLASH_EQ] = ACTIONS(2001), - [anon_sym_AMP_EQ] = ACTIONS(2001), - [anon_sym_PIPE_EQ] = ACTIONS(2001), - [anon_sym_xor_EQ] = ACTIONS(2001), - [anon_sym_LT_LT_EQ] = ACTIONS(2001), - [anon_sym_GT_GT_EQ] = ACTIONS(2001), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_defer] = ACTIONS(2003), - [anon_sym_errdefer] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_expand] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_match] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2001), - [anon_sym_orelse] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_or] = ACTIONS(2003), - [anon_sym_and] = ACTIONS(2003), - [anon_sym_EQ_EQ] = ACTIONS(2001), - [anon_sym_BANG_EQ] = ACTIONS(2001), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2001), - [anon_sym_GT] = ACTIONS(2003), - [anon_sym_GT_EQ] = ACTIONS(2001), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_xor] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_LT_LT_PIPE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_unreachable] = ACTIONS(2003), - [anon_sym_undefined] = ACTIONS(2003), - [sym_sink] = ACTIONS(2003), - [sym_integer] = ACTIONS(2003), - [sym_float] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2001), - [sym_multiline_string] = ACTIONS(2001), - [sym_character] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2001), + [sym__newline] = ACTIONS(2003), }, - [STATE(693)] = { - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_identifier] = ACTIONS(2007), - [anon_sym_import] = ACTIONS(2007), - [anon_sym_test] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_func] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(2005), + [STATE(286)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_QMARK] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_void] = ACTIONS(2007), - [anon_sym_noreturn] = ACTIONS(2007), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_anyopaque] = ACTIONS(2007), - [anon_sym_bool] = ACTIONS(2007), - [anon_sym_int] = ACTIONS(2007), - [anon_sym_uint] = ACTIONS(2007), - [anon_sym_float] = ACTIONS(2007), - [anon_sym_range] = ACTIONS(2007), - [anon_sym_i8] = ACTIONS(2007), - [anon_sym_i16] = ACTIONS(2007), - [anon_sym_i32] = ACTIONS(2007), - [anon_sym_i64] = ACTIONS(2007), - [anon_sym_u8] = ACTIONS(2007), - [anon_sym_u16] = ACTIONS(2007), - [anon_sym_u32] = ACTIONS(2007), - [anon_sym_u64] = ACTIONS(2007), - [anon_sym_isize] = ACTIONS(2007), - [anon_sym_usize] = ACTIONS(2007), - [anon_sym_f32] = ACTIONS(2007), - [anon_sym_f64] = ACTIONS(2007), - [anon_sym_c_char] = ACTIONS(2007), - [anon_sym_c_schar] = ACTIONS(2007), - [anon_sym_c_uchar] = ACTIONS(2007), - [anon_sym_c_short] = ACTIONS(2007), - [anon_sym_c_ushort] = ACTIONS(2007), - [anon_sym_c_int] = ACTIONS(2007), - [anon_sym_c_uint] = ACTIONS(2007), - [anon_sym_c_long] = ACTIONS(2007), - [anon_sym_c_ulong] = ACTIONS(2007), - [anon_sym_c_longlong] = ACTIONS(2007), - [anon_sym_c_ulonglong] = ACTIONS(2007), - [anon_sym_c_float] = ACTIONS(2007), - [anon_sym_c_double] = ACTIONS(2007), - [anon_sym_c_longdouble] = ACTIONS(2007), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_EQ] = ACTIONS(2005), - [anon_sym_xor_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_defer] = ACTIONS(2007), - [anon_sym_errdefer] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_expand] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [anon_sym_orelse] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_or] = ACTIONS(2007), - [anon_sym_and] = ACTIONS(2007), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2007), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_xor] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_unreachable] = ACTIONS(2007), - [anon_sym_undefined] = ACTIONS(2007), - [sym_sink] = ACTIONS(2007), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym_multiline_string] = ACTIONS(2005), - [sym_character] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2005), + [sym__newline] = ACTIONS(1849), }, - [STATE(694)] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_import] = ACTIONS(2011), - [anon_sym_test] = ACTIONS(2011), - [anon_sym_hide] = ACTIONS(2011), - [anon_sym_func] = ACTIONS(2011), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_void] = ACTIONS(2011), - [anon_sym_noreturn] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_anyopaque] = ACTIONS(2011), - [anon_sym_bool] = ACTIONS(2011), - [anon_sym_int] = ACTIONS(2011), - [anon_sym_uint] = ACTIONS(2011), - [anon_sym_float] = ACTIONS(2011), - [anon_sym_range] = ACTIONS(2011), - [anon_sym_i8] = ACTIONS(2011), - [anon_sym_i16] = ACTIONS(2011), - [anon_sym_i32] = ACTIONS(2011), - [anon_sym_i64] = ACTIONS(2011), - [anon_sym_u8] = ACTIONS(2011), - [anon_sym_u16] = ACTIONS(2011), - [anon_sym_u32] = ACTIONS(2011), - [anon_sym_u64] = ACTIONS(2011), - [anon_sym_isize] = ACTIONS(2011), - [anon_sym_usize] = ACTIONS(2011), - [anon_sym_f32] = ACTIONS(2011), - [anon_sym_f64] = ACTIONS(2011), - [anon_sym_c_char] = ACTIONS(2011), - [anon_sym_c_schar] = ACTIONS(2011), - [anon_sym_c_uchar] = ACTIONS(2011), - [anon_sym_c_short] = ACTIONS(2011), - [anon_sym_c_ushort] = ACTIONS(2011), - [anon_sym_c_int] = ACTIONS(2011), - [anon_sym_c_uint] = ACTIONS(2011), - [anon_sym_c_long] = ACTIONS(2011), - [anon_sym_c_ulong] = ACTIONS(2011), - [anon_sym_c_longlong] = ACTIONS(2011), - [anon_sym_c_ulonglong] = ACTIONS(2011), - [anon_sym_c_float] = ACTIONS(2011), - [anon_sym_c_double] = ACTIONS(2011), - [anon_sym_c_longdouble] = ACTIONS(2011), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_xor_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_yield] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_errdefer] = ACTIONS(2011), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_else] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2011), - [anon_sym_expand] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), - [anon_sym_orelse] = ACTIONS(2011), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [anon_sym_and] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_xor] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_LT_LT_PIPE] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [anon_sym_null] = ACTIONS(2011), - [anon_sym_unreachable] = ACTIONS(2011), - [anon_sym_undefined] = ACTIONS(2011), - [sym_sink] = ACTIONS(2011), - [sym_integer] = ACTIONS(2011), - [sym_float] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [sym_multiline_string] = ACTIONS(2009), - [sym_character] = ACTIONS(2009), + [STATE(287)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2007), + }, + [STATE(288)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(223), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2009), }, - [STATE(695)] = { - [ts_builtin_sym_end] = ACTIONS(2013), - [sym_identifier] = ACTIONS(2015), - [anon_sym_import] = ACTIONS(2015), - [anon_sym_test] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_func] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_EQ] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_LBRACE] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_QMARK] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_void] = ACTIONS(2015), - [anon_sym_noreturn] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2015), - [anon_sym_anyopaque] = ACTIONS(2015), - [anon_sym_bool] = ACTIONS(2015), - [anon_sym_int] = ACTIONS(2015), - [anon_sym_uint] = ACTIONS(2015), - [anon_sym_float] = ACTIONS(2015), - [anon_sym_range] = ACTIONS(2015), - [anon_sym_i8] = ACTIONS(2015), - [anon_sym_i16] = ACTIONS(2015), - [anon_sym_i32] = ACTIONS(2015), - [anon_sym_i64] = ACTIONS(2015), - [anon_sym_u8] = ACTIONS(2015), - [anon_sym_u16] = ACTIONS(2015), - [anon_sym_u32] = ACTIONS(2015), - [anon_sym_u64] = ACTIONS(2015), - [anon_sym_isize] = ACTIONS(2015), - [anon_sym_usize] = ACTIONS(2015), - [anon_sym_f32] = ACTIONS(2015), - [anon_sym_f64] = ACTIONS(2015), - [anon_sym_c_char] = ACTIONS(2015), - [anon_sym_c_schar] = ACTIONS(2015), - [anon_sym_c_uchar] = ACTIONS(2015), - [anon_sym_c_short] = ACTIONS(2015), - [anon_sym_c_ushort] = ACTIONS(2015), - [anon_sym_c_int] = ACTIONS(2015), - [anon_sym_c_uint] = ACTIONS(2015), - [anon_sym_c_long] = ACTIONS(2015), - [anon_sym_c_ulong] = ACTIONS(2015), - [anon_sym_c_longlong] = ACTIONS(2015), - [anon_sym_c_ulonglong] = ACTIONS(2015), - [anon_sym_c_float] = ACTIONS(2015), - [anon_sym_c_double] = ACTIONS(2015), - [anon_sym_c_longdouble] = ACTIONS(2015), - [anon_sym_PLUS_EQ] = ACTIONS(2013), - [anon_sym_DASH_EQ] = ACTIONS(2013), - [anon_sym_STAR_EQ] = ACTIONS(2013), - [anon_sym_SLASH_EQ] = ACTIONS(2013), - [anon_sym_AMP_EQ] = ACTIONS(2013), - [anon_sym_PIPE_EQ] = ACTIONS(2013), - [anon_sym_xor_EQ] = ACTIONS(2013), - [anon_sym_LT_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_GT_EQ] = ACTIONS(2013), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_yield] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_defer] = ACTIONS(2015), - [anon_sym_errdefer] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_expand] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), - [anon_sym_orelse] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_or] = ACTIONS(2015), - [anon_sym_and] = ACTIONS(2015), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_xor] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2015), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_LT_LT_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [anon_sym_unreachable] = ACTIONS(2015), - [anon_sym_undefined] = ACTIONS(2015), - [sym_sink] = ACTIONS(2015), - [sym_integer] = ACTIONS(2015), - [sym_float] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym_multiline_string] = ACTIONS(2013), - [sym_character] = ACTIONS(2013), + [STATE(289)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(290)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10048), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11069), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2013), }, - [STATE(696)] = { - [ts_builtin_sym_end] = ACTIONS(2017), - [sym_identifier] = ACTIONS(2019), - [anon_sym_import] = ACTIONS(2019), - [anon_sym_test] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_func] = ACTIONS(2019), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_EQ] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2019), - [anon_sym_QMARK] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_void] = ACTIONS(2019), - [anon_sym_noreturn] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_anyopaque] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_int] = ACTIONS(2019), - [anon_sym_uint] = ACTIONS(2019), - [anon_sym_float] = ACTIONS(2019), - [anon_sym_range] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_c_char] = ACTIONS(2019), - [anon_sym_c_schar] = ACTIONS(2019), - [anon_sym_c_uchar] = ACTIONS(2019), - [anon_sym_c_short] = ACTIONS(2019), - [anon_sym_c_ushort] = ACTIONS(2019), - [anon_sym_c_int] = ACTIONS(2019), - [anon_sym_c_uint] = ACTIONS(2019), - [anon_sym_c_long] = ACTIONS(2019), - [anon_sym_c_ulong] = ACTIONS(2019), - [anon_sym_c_longlong] = ACTIONS(2019), - [anon_sym_c_ulonglong] = ACTIONS(2019), - [anon_sym_c_float] = ACTIONS(2019), - [anon_sym_c_double] = ACTIONS(2019), - [anon_sym_c_longdouble] = ACTIONS(2019), - [anon_sym_PLUS_EQ] = ACTIONS(2017), - [anon_sym_DASH_EQ] = ACTIONS(2017), - [anon_sym_STAR_EQ] = ACTIONS(2017), - [anon_sym_SLASH_EQ] = ACTIONS(2017), - [anon_sym_AMP_EQ] = ACTIONS(2017), - [anon_sym_PIPE_EQ] = ACTIONS(2017), - [anon_sym_xor_EQ] = ACTIONS(2017), - [anon_sym_LT_LT_EQ] = ACTIONS(2017), - [anon_sym_GT_GT_EQ] = ACTIONS(2017), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_yield] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_defer] = ACTIONS(2019), - [anon_sym_errdefer] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_expand] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2017), - [anon_sym_orelse] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_or] = ACTIONS(2019), - [anon_sym_and] = ACTIONS(2019), - [anon_sym_EQ_EQ] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2019), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_AMP] = ACTIONS(2019), - [anon_sym_xor] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2019), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_LT_LT_PIPE] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_DOT] = ACTIONS(2019), - [anon_sym_CARET] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_null] = ACTIONS(2019), - [anon_sym_unreachable] = ACTIONS(2019), - [anon_sym_undefined] = ACTIONS(2019), - [sym_sink] = ACTIONS(2019), - [sym_integer] = ACTIONS(2019), - [sym_float] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym_multiline_string] = ACTIONS(2017), - [sym_character] = ACTIONS(2017), + [STATE(291)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2015), + }, + [STATE(292)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2017), }, - [STATE(697)] = { - [ts_builtin_sym_end] = ACTIONS(2021), - [sym_identifier] = ACTIONS(2023), - [anon_sym_import] = ACTIONS(2023), - [anon_sym_test] = ACTIONS(2023), - [anon_sym_hide] = ACTIONS(2023), - [anon_sym_func] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_EQ] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_COMMA] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_void] = ACTIONS(2023), - [anon_sym_noreturn] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2023), - [anon_sym_anyopaque] = ACTIONS(2023), - [anon_sym_bool] = ACTIONS(2023), - [anon_sym_int] = ACTIONS(2023), - [anon_sym_uint] = ACTIONS(2023), - [anon_sym_float] = ACTIONS(2023), - [anon_sym_range] = ACTIONS(2023), - [anon_sym_i8] = ACTIONS(2023), - [anon_sym_i16] = ACTIONS(2023), - [anon_sym_i32] = ACTIONS(2023), - [anon_sym_i64] = ACTIONS(2023), - [anon_sym_u8] = ACTIONS(2023), - [anon_sym_u16] = ACTIONS(2023), - [anon_sym_u32] = ACTIONS(2023), - [anon_sym_u64] = ACTIONS(2023), - [anon_sym_isize] = ACTIONS(2023), - [anon_sym_usize] = ACTIONS(2023), - [anon_sym_f32] = ACTIONS(2023), - [anon_sym_f64] = ACTIONS(2023), - [anon_sym_c_char] = ACTIONS(2023), - [anon_sym_c_schar] = ACTIONS(2023), - [anon_sym_c_uchar] = ACTIONS(2023), - [anon_sym_c_short] = ACTIONS(2023), - [anon_sym_c_ushort] = ACTIONS(2023), - [anon_sym_c_int] = ACTIONS(2023), - [anon_sym_c_uint] = ACTIONS(2023), - [anon_sym_c_long] = ACTIONS(2023), - [anon_sym_c_ulong] = ACTIONS(2023), - [anon_sym_c_longlong] = ACTIONS(2023), - [anon_sym_c_ulonglong] = ACTIONS(2023), - [anon_sym_c_float] = ACTIONS(2023), - [anon_sym_c_double] = ACTIONS(2023), - [anon_sym_c_longdouble] = ACTIONS(2023), - [anon_sym_PLUS_EQ] = ACTIONS(2021), - [anon_sym_DASH_EQ] = ACTIONS(2021), - [anon_sym_STAR_EQ] = ACTIONS(2021), - [anon_sym_SLASH_EQ] = ACTIONS(2021), - [anon_sym_AMP_EQ] = ACTIONS(2021), - [anon_sym_PIPE_EQ] = ACTIONS(2021), - [anon_sym_xor_EQ] = ACTIONS(2021), - [anon_sym_LT_LT_EQ] = ACTIONS(2021), - [anon_sym_GT_GT_EQ] = ACTIONS(2021), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_yield] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_defer] = ACTIONS(2023), - [anon_sym_errdefer] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_expand] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2021), - [anon_sym_orelse] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_or] = ACTIONS(2023), - [anon_sym_and] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2021), - [anon_sym_BANG_EQ] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_LT_EQ] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2023), - [anon_sym_xor] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2023), - [anon_sym_LT_LT_PIPE] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_SLASH] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [anon_sym_null] = ACTIONS(2023), - [anon_sym_unreachable] = ACTIONS(2023), - [anon_sym_undefined] = ACTIONS(2023), - [sym_sink] = ACTIONS(2023), - [sym_integer] = ACTIONS(2023), - [sym_float] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym_multiline_string] = ACTIONS(2021), - [sym_character] = ACTIONS(2021), + [STATE(293)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(294)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(295)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2021), }, - [STATE(698)] = { - [ts_builtin_sym_end] = ACTIONS(2025), - [sym_identifier] = ACTIONS(2027), - [anon_sym_import] = ACTIONS(2027), - [anon_sym_test] = ACTIONS(2027), - [anon_sym_hide] = ACTIONS(2027), - [anon_sym_func] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2027), - [anon_sym_EQ] = ACTIONS(2027), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_COMMA] = ACTIONS(2025), + [STATE(296)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(297)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10040), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11379), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2027), - [anon_sym_QMARK] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_void] = ACTIONS(2027), - [anon_sym_noreturn] = ACTIONS(2027), - [anon_sym_type] = ACTIONS(2027), - [anon_sym_anyopaque] = ACTIONS(2027), - [anon_sym_bool] = ACTIONS(2027), - [anon_sym_int] = ACTIONS(2027), - [anon_sym_uint] = ACTIONS(2027), - [anon_sym_float] = ACTIONS(2027), - [anon_sym_range] = ACTIONS(2027), - [anon_sym_i8] = ACTIONS(2027), - [anon_sym_i16] = ACTIONS(2027), - [anon_sym_i32] = ACTIONS(2027), - [anon_sym_i64] = ACTIONS(2027), - [anon_sym_u8] = ACTIONS(2027), - [anon_sym_u16] = ACTIONS(2027), - [anon_sym_u32] = ACTIONS(2027), - [anon_sym_u64] = ACTIONS(2027), - [anon_sym_isize] = ACTIONS(2027), - [anon_sym_usize] = ACTIONS(2027), - [anon_sym_f32] = ACTIONS(2027), - [anon_sym_f64] = ACTIONS(2027), - [anon_sym_c_char] = ACTIONS(2027), - [anon_sym_c_schar] = ACTIONS(2027), - [anon_sym_c_uchar] = ACTIONS(2027), - [anon_sym_c_short] = ACTIONS(2027), - [anon_sym_c_ushort] = ACTIONS(2027), - [anon_sym_c_int] = ACTIONS(2027), - [anon_sym_c_uint] = ACTIONS(2027), - [anon_sym_c_long] = ACTIONS(2027), - [anon_sym_c_ulong] = ACTIONS(2027), - [anon_sym_c_longlong] = ACTIONS(2027), - [anon_sym_c_ulonglong] = ACTIONS(2027), - [anon_sym_c_float] = ACTIONS(2027), - [anon_sym_c_double] = ACTIONS(2027), - [anon_sym_c_longdouble] = ACTIONS(2027), - [anon_sym_PLUS_EQ] = ACTIONS(2025), - [anon_sym_DASH_EQ] = ACTIONS(2025), - [anon_sym_STAR_EQ] = ACTIONS(2025), - [anon_sym_SLASH_EQ] = ACTIONS(2025), - [anon_sym_AMP_EQ] = ACTIONS(2025), - [anon_sym_PIPE_EQ] = ACTIONS(2025), - [anon_sym_xor_EQ] = ACTIONS(2025), - [anon_sym_LT_LT_EQ] = ACTIONS(2025), - [anon_sym_GT_GT_EQ] = ACTIONS(2025), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_yield] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_defer] = ACTIONS(2027), - [anon_sym_errdefer] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_expand] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [anon_sym_orelse] = ACTIONS(2027), - [anon_sym_catch] = ACTIONS(2027), - [anon_sym_or] = ACTIONS(2027), - [anon_sym_and] = ACTIONS(2027), - [anon_sym_EQ_EQ] = ACTIONS(2025), - [anon_sym_BANG_EQ] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_LT_EQ] = ACTIONS(2025), - [anon_sym_GT] = ACTIONS(2027), - [anon_sym_GT_EQ] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_xor] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(2027), - [anon_sym_GT_GT] = ACTIONS(2027), - [anon_sym_LT_LT_PIPE] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_SLASH] = ACTIONS(2027), - [anon_sym_TILDE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2027), - [anon_sym_DOT] = ACTIONS(2027), - [anon_sym_CARET] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2027), - [anon_sym_false] = ACTIONS(2027), - [anon_sym_null] = ACTIONS(2027), - [anon_sym_unreachable] = ACTIONS(2027), - [anon_sym_undefined] = ACTIONS(2027), - [sym_sink] = ACTIONS(2027), - [sym_integer] = ACTIONS(2027), - [sym_float] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym_multiline_string] = ACTIONS(2025), - [sym_character] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2025), + [sym__newline] = ACTIONS(2027), }, - [STATE(699)] = { - [ts_builtin_sym_end] = ACTIONS(2029), - [sym_identifier] = ACTIONS(2031), - [anon_sym_import] = ACTIONS(2031), - [anon_sym_test] = ACTIONS(2031), - [anon_sym_hide] = ACTIONS(2031), - [anon_sym_func] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_EQ] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_COMMA] = ACTIONS(2029), + [STATE(298)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10063), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11059), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(299), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_QMARK] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_void] = ACTIONS(2031), - [anon_sym_noreturn] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_anyopaque] = ACTIONS(2031), - [anon_sym_bool] = ACTIONS(2031), - [anon_sym_int] = ACTIONS(2031), - [anon_sym_uint] = ACTIONS(2031), - [anon_sym_float] = ACTIONS(2031), - [anon_sym_range] = ACTIONS(2031), - [anon_sym_i8] = ACTIONS(2031), - [anon_sym_i16] = ACTIONS(2031), - [anon_sym_i32] = ACTIONS(2031), - [anon_sym_i64] = ACTIONS(2031), - [anon_sym_u8] = ACTIONS(2031), - [anon_sym_u16] = ACTIONS(2031), - [anon_sym_u32] = ACTIONS(2031), - [anon_sym_u64] = ACTIONS(2031), - [anon_sym_isize] = ACTIONS(2031), - [anon_sym_usize] = ACTIONS(2031), - [anon_sym_f32] = ACTIONS(2031), - [anon_sym_f64] = ACTIONS(2031), - [anon_sym_c_char] = ACTIONS(2031), - [anon_sym_c_schar] = ACTIONS(2031), - [anon_sym_c_uchar] = ACTIONS(2031), - [anon_sym_c_short] = ACTIONS(2031), - [anon_sym_c_ushort] = ACTIONS(2031), - [anon_sym_c_int] = ACTIONS(2031), - [anon_sym_c_uint] = ACTIONS(2031), - [anon_sym_c_long] = ACTIONS(2031), - [anon_sym_c_ulong] = ACTIONS(2031), - [anon_sym_c_longlong] = ACTIONS(2031), - [anon_sym_c_ulonglong] = ACTIONS(2031), - [anon_sym_c_float] = ACTIONS(2031), - [anon_sym_c_double] = ACTIONS(2031), - [anon_sym_c_longdouble] = ACTIONS(2031), - [anon_sym_PLUS_EQ] = ACTIONS(2029), - [anon_sym_DASH_EQ] = ACTIONS(2029), - [anon_sym_STAR_EQ] = ACTIONS(2029), - [anon_sym_SLASH_EQ] = ACTIONS(2029), - [anon_sym_AMP_EQ] = ACTIONS(2029), - [anon_sym_PIPE_EQ] = ACTIONS(2029), - [anon_sym_xor_EQ] = ACTIONS(2029), - [anon_sym_LT_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_GT_EQ] = ACTIONS(2029), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_defer] = ACTIONS(2031), - [anon_sym_errdefer] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_else] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_expand] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_match] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), - [anon_sym_orelse] = ACTIONS(2031), - [anon_sym_catch] = ACTIONS(2031), - [anon_sym_or] = ACTIONS(2031), - [anon_sym_and] = ACTIONS(2031), - [anon_sym_EQ_EQ] = ACTIONS(2029), - [anon_sym_BANG_EQ] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_LT_EQ] = ACTIONS(2029), - [anon_sym_GT] = ACTIONS(2031), - [anon_sym_GT_EQ] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2031), - [anon_sym_xor] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_GT_GT] = ACTIONS(2031), - [anon_sym_LT_LT_PIPE] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_SLASH] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_DOT] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_unreachable] = ACTIONS(2031), - [anon_sym_undefined] = ACTIONS(2031), - [sym_sink] = ACTIONS(2031), - [sym_integer] = ACTIONS(2031), - [sym_float] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [sym_multiline_string] = ACTIONS(2029), - [sym_character] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2029), + [sym__newline] = ACTIONS(2031), }, - [STATE(700)] = { - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(423), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(418), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_QMARK] = ACTIONS(418), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_void] = ACTIONS(423), - [anon_sym_noreturn] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_anyopaque] = ACTIONS(423), - [anon_sym_bool] = ACTIONS(423), - [anon_sym_int] = ACTIONS(423), - [anon_sym_uint] = ACTIONS(423), - [anon_sym_float] = ACTIONS(423), - [anon_sym_range] = ACTIONS(423), - [anon_sym_i8] = ACTIONS(423), - [anon_sym_i16] = ACTIONS(423), - [anon_sym_i32] = ACTIONS(423), - [anon_sym_i64] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(423), - [anon_sym_u16] = ACTIONS(423), - [anon_sym_u32] = ACTIONS(423), - [anon_sym_u64] = ACTIONS(423), - [anon_sym_isize] = ACTIONS(423), - [anon_sym_usize] = ACTIONS(423), - [anon_sym_f32] = ACTIONS(423), - [anon_sym_f64] = ACTIONS(423), - [anon_sym_c_char] = ACTIONS(423), - [anon_sym_c_schar] = ACTIONS(423), - [anon_sym_c_uchar] = ACTIONS(423), - [anon_sym_c_short] = ACTIONS(423), - [anon_sym_c_ushort] = ACTIONS(423), - [anon_sym_c_int] = ACTIONS(423), - [anon_sym_c_uint] = ACTIONS(423), - [anon_sym_c_long] = ACTIONS(423), - [anon_sym_c_ulong] = ACTIONS(423), - [anon_sym_c_longlong] = ACTIONS(423), - [anon_sym_c_ulonglong] = ACTIONS(423), - [anon_sym_c_float] = ACTIONS(423), - [anon_sym_c_double] = ACTIONS(423), - [anon_sym_c_longdouble] = ACTIONS(423), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_defer] = ACTIONS(423), - [anon_sym_errdefer] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_expand] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_LT_LT_PIPE] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_TILDE] = ACTIONS(418), - [anon_sym_try] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_null] = ACTIONS(423), - [anon_sym_unreachable] = ACTIONS(423), - [anon_sym_undefined] = ACTIONS(423), - [sym_sink] = ACTIONS(423), - [sym_integer] = ACTIONS(423), - [sym_float] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_multiline_string] = ACTIONS(418), - [sym_character] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), - }, - [STATE(701)] = { - [ts_builtin_sym_end] = ACTIONS(2033), - [sym_identifier] = ACTIONS(2035), - [anon_sym_import] = ACTIONS(2035), - [anon_sym_test] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_func] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2035), - [anon_sym_EQ] = ACTIONS(2035), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_COMMA] = ACTIONS(2033), + [STATE(299)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10066), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11075), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_QMARK] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_void] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_anyopaque] = ACTIONS(2035), - [anon_sym_bool] = ACTIONS(2035), - [anon_sym_int] = ACTIONS(2035), - [anon_sym_uint] = ACTIONS(2035), - [anon_sym_float] = ACTIONS(2035), - [anon_sym_range] = ACTIONS(2035), - [anon_sym_i8] = ACTIONS(2035), - [anon_sym_i16] = ACTIONS(2035), - [anon_sym_i32] = ACTIONS(2035), - [anon_sym_i64] = ACTIONS(2035), - [anon_sym_u8] = ACTIONS(2035), - [anon_sym_u16] = ACTIONS(2035), - [anon_sym_u32] = ACTIONS(2035), - [anon_sym_u64] = ACTIONS(2035), - [anon_sym_isize] = ACTIONS(2035), - [anon_sym_usize] = ACTIONS(2035), - [anon_sym_f32] = ACTIONS(2035), - [anon_sym_f64] = ACTIONS(2035), - [anon_sym_c_char] = ACTIONS(2035), - [anon_sym_c_schar] = ACTIONS(2035), - [anon_sym_c_uchar] = ACTIONS(2035), - [anon_sym_c_short] = ACTIONS(2035), - [anon_sym_c_ushort] = ACTIONS(2035), - [anon_sym_c_int] = ACTIONS(2035), - [anon_sym_c_uint] = ACTIONS(2035), - [anon_sym_c_long] = ACTIONS(2035), - [anon_sym_c_ulong] = ACTIONS(2035), - [anon_sym_c_longlong] = ACTIONS(2035), - [anon_sym_c_ulonglong] = ACTIONS(2035), - [anon_sym_c_float] = ACTIONS(2035), - [anon_sym_c_double] = ACTIONS(2035), - [anon_sym_c_longdouble] = ACTIONS(2035), - [anon_sym_PLUS_EQ] = ACTIONS(2033), - [anon_sym_DASH_EQ] = ACTIONS(2033), - [anon_sym_STAR_EQ] = ACTIONS(2033), - [anon_sym_SLASH_EQ] = ACTIONS(2033), - [anon_sym_AMP_EQ] = ACTIONS(2033), - [anon_sym_PIPE_EQ] = ACTIONS(2033), - [anon_sym_xor_EQ] = ACTIONS(2033), - [anon_sym_LT_LT_EQ] = ACTIONS(2033), - [anon_sym_GT_GT_EQ] = ACTIONS(2033), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_defer] = ACTIONS(2035), - [anon_sym_errdefer] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_expand] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), - [anon_sym_orelse] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_or] = ACTIONS(2035), - [anon_sym_and] = ACTIONS(2035), - [anon_sym_EQ_EQ] = ACTIONS(2033), - [anon_sym_BANG_EQ] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_LT_EQ] = ACTIONS(2033), - [anon_sym_GT] = ACTIONS(2035), - [anon_sym_GT_EQ] = ACTIONS(2033), - [anon_sym_AMP] = ACTIONS(2035), - [anon_sym_xor] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_GT_GT] = ACTIONS(2035), - [anon_sym_LT_LT_PIPE] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_SLASH] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_DOT] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_unreachable] = ACTIONS(2035), - [anon_sym_undefined] = ACTIONS(2035), - [sym_sink] = ACTIONS(2035), - [sym_integer] = ACTIONS(2035), - [sym_float] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym_multiline_string] = ACTIONS(2033), - [sym_character] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2033), + [sym__newline] = ACTIONS(1849), }, - [STATE(702)] = { - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2039), - [anon_sym_import] = ACTIONS(2039), - [anon_sym_test] = ACTIONS(2039), - [anon_sym_hide] = ACTIONS(2039), - [anon_sym_func] = ACTIONS(2039), - [anon_sym_BANG] = ACTIONS(2039), - [anon_sym_EQ] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_COMMA] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2037), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_void] = ACTIONS(2039), - [anon_sym_noreturn] = ACTIONS(2039), - [anon_sym_type] = ACTIONS(2039), - [anon_sym_anyopaque] = ACTIONS(2039), - [anon_sym_bool] = ACTIONS(2039), - [anon_sym_int] = ACTIONS(2039), - [anon_sym_uint] = ACTIONS(2039), - [anon_sym_float] = ACTIONS(2039), - [anon_sym_range] = ACTIONS(2039), - [anon_sym_i8] = ACTIONS(2039), - [anon_sym_i16] = ACTIONS(2039), - [anon_sym_i32] = ACTIONS(2039), - [anon_sym_i64] = ACTIONS(2039), - [anon_sym_u8] = ACTIONS(2039), - [anon_sym_u16] = ACTIONS(2039), - [anon_sym_u32] = ACTIONS(2039), - [anon_sym_u64] = ACTIONS(2039), - [anon_sym_isize] = ACTIONS(2039), - [anon_sym_usize] = ACTIONS(2039), - [anon_sym_f32] = ACTIONS(2039), - [anon_sym_f64] = ACTIONS(2039), - [anon_sym_c_char] = ACTIONS(2039), - [anon_sym_c_schar] = ACTIONS(2039), - [anon_sym_c_uchar] = ACTIONS(2039), - [anon_sym_c_short] = ACTIONS(2039), - [anon_sym_c_ushort] = ACTIONS(2039), - [anon_sym_c_int] = ACTIONS(2039), - [anon_sym_c_uint] = ACTIONS(2039), - [anon_sym_c_long] = ACTIONS(2039), - [anon_sym_c_ulong] = ACTIONS(2039), - [anon_sym_c_longlong] = ACTIONS(2039), - [anon_sym_c_ulonglong] = ACTIONS(2039), - [anon_sym_c_float] = ACTIONS(2039), - [anon_sym_c_double] = ACTIONS(2039), - [anon_sym_c_longdouble] = ACTIONS(2039), - [anon_sym_PLUS_EQ] = ACTIONS(2037), - [anon_sym_DASH_EQ] = ACTIONS(2037), - [anon_sym_STAR_EQ] = ACTIONS(2037), - [anon_sym_SLASH_EQ] = ACTIONS(2037), - [anon_sym_AMP_EQ] = ACTIONS(2037), - [anon_sym_PIPE_EQ] = ACTIONS(2037), - [anon_sym_xor_EQ] = ACTIONS(2037), - [anon_sym_LT_LT_EQ] = ACTIONS(2037), - [anon_sym_GT_GT_EQ] = ACTIONS(2037), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2039), - [anon_sym_yield] = ACTIONS(2039), - [anon_sym_break] = ACTIONS(2039), - [anon_sym_continue] = ACTIONS(2039), - [anon_sym_defer] = ACTIONS(2039), - [anon_sym_errdefer] = ACTIONS(2039), - [anon_sym_if] = ACTIONS(2039), - [anon_sym_else] = ACTIONS(2039), - [anon_sym_while] = ACTIONS(2039), - [anon_sym_expand] = ACTIONS(2039), - [anon_sym_for] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2037), - [anon_sym_orelse] = ACTIONS(2039), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_or] = ACTIONS(2039), - [anon_sym_and] = ACTIONS(2039), - [anon_sym_EQ_EQ] = ACTIONS(2037), - [anon_sym_BANG_EQ] = ACTIONS(2037), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_LT_EQ] = ACTIONS(2037), - [anon_sym_GT] = ACTIONS(2039), - [anon_sym_GT_EQ] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2039), - [anon_sym_xor] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2039), - [anon_sym_GT_GT] = ACTIONS(2039), - [anon_sym_LT_LT_PIPE] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(2039), - [anon_sym_SLASH] = ACTIONS(2039), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_try] = ACTIONS(2039), - [anon_sym_DOT] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = ACTIONS(2039), - [anon_sym_null] = ACTIONS(2039), - [anon_sym_unreachable] = ACTIONS(2039), - [anon_sym_undefined] = ACTIONS(2039), - [sym_sink] = ACTIONS(2039), - [sym_integer] = ACTIONS(2039), - [sym_float] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [sym_multiline_string] = ACTIONS(2037), - [sym_character] = ACTIONS(2037), + [STATE(300)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9984), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11367), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(320), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2037), }, - [STATE(703)] = { - [ts_builtin_sym_end] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2043), - [anon_sym_import] = ACTIONS(2043), - [anon_sym_test] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_func] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2043), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_void] = ACTIONS(2043), - [anon_sym_noreturn] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_anyopaque] = ACTIONS(2043), - [anon_sym_bool] = ACTIONS(2043), - [anon_sym_int] = ACTIONS(2043), - [anon_sym_uint] = ACTIONS(2043), - [anon_sym_float] = ACTIONS(2043), - [anon_sym_range] = ACTIONS(2043), - [anon_sym_i8] = ACTIONS(2043), - [anon_sym_i16] = ACTIONS(2043), - [anon_sym_i32] = ACTIONS(2043), - [anon_sym_i64] = ACTIONS(2043), - [anon_sym_u8] = ACTIONS(2043), - [anon_sym_u16] = ACTIONS(2043), - [anon_sym_u32] = ACTIONS(2043), - [anon_sym_u64] = ACTIONS(2043), - [anon_sym_isize] = ACTIONS(2043), - [anon_sym_usize] = ACTIONS(2043), - [anon_sym_f32] = ACTIONS(2043), - [anon_sym_f64] = ACTIONS(2043), - [anon_sym_c_char] = ACTIONS(2043), - [anon_sym_c_schar] = ACTIONS(2043), - [anon_sym_c_uchar] = ACTIONS(2043), - [anon_sym_c_short] = ACTIONS(2043), - [anon_sym_c_ushort] = ACTIONS(2043), - [anon_sym_c_int] = ACTIONS(2043), - [anon_sym_c_uint] = ACTIONS(2043), - [anon_sym_c_long] = ACTIONS(2043), - [anon_sym_c_ulong] = ACTIONS(2043), - [anon_sym_c_longlong] = ACTIONS(2043), - [anon_sym_c_ulonglong] = ACTIONS(2043), - [anon_sym_c_float] = ACTIONS(2043), - [anon_sym_c_double] = ACTIONS(2043), - [anon_sym_c_longdouble] = ACTIONS(2043), - [anon_sym_PLUS_EQ] = ACTIONS(2041), - [anon_sym_DASH_EQ] = ACTIONS(2041), - [anon_sym_STAR_EQ] = ACTIONS(2041), - [anon_sym_SLASH_EQ] = ACTIONS(2041), - [anon_sym_AMP_EQ] = ACTIONS(2041), - [anon_sym_PIPE_EQ] = ACTIONS(2041), - [anon_sym_xor_EQ] = ACTIONS(2041), - [anon_sym_LT_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_GT_EQ] = ACTIONS(2041), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_yield] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_defer] = ACTIONS(2043), - [anon_sym_errdefer] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_expand] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2041), - [anon_sym_orelse] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_or] = ACTIONS(2043), - [anon_sym_and] = ACTIONS(2043), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_xor] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2043), - [anon_sym_GT_GT] = ACTIONS(2043), - [anon_sym_LT_LT_PIPE] = ACTIONS(2043), - [anon_sym_PLUS] = ACTIONS(2043), - [anon_sym_SLASH] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_DOT] = ACTIONS(2043), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [anon_sym_null] = ACTIONS(2043), - [anon_sym_unreachable] = ACTIONS(2043), - [anon_sym_undefined] = ACTIONS(2043), - [sym_sink] = ACTIONS(2043), - [sym_integer] = ACTIONS(2043), - [sym_float] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym_multiline_string] = ACTIONS(2041), - [sym_character] = ACTIONS(2041), + [STATE(301)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10079), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11082), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2041), }, - [STATE(704)] = { - [ts_builtin_sym_end] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2047), - [anon_sym_import] = ACTIONS(2047), - [anon_sym_test] = ACTIONS(2047), - [anon_sym_hide] = ACTIONS(2047), - [anon_sym_func] = ACTIONS(2047), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_EQ] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2047), - [anon_sym_QMARK] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_void] = ACTIONS(2047), - [anon_sym_noreturn] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2047), - [anon_sym_anyopaque] = ACTIONS(2047), - [anon_sym_bool] = ACTIONS(2047), - [anon_sym_int] = ACTIONS(2047), - [anon_sym_uint] = ACTIONS(2047), - [anon_sym_float] = ACTIONS(2047), - [anon_sym_range] = ACTIONS(2047), - [anon_sym_i8] = ACTIONS(2047), - [anon_sym_i16] = ACTIONS(2047), - [anon_sym_i32] = ACTIONS(2047), - [anon_sym_i64] = ACTIONS(2047), - [anon_sym_u8] = ACTIONS(2047), - [anon_sym_u16] = ACTIONS(2047), - [anon_sym_u32] = ACTIONS(2047), - [anon_sym_u64] = ACTIONS(2047), - [anon_sym_isize] = ACTIONS(2047), - [anon_sym_usize] = ACTIONS(2047), - [anon_sym_f32] = ACTIONS(2047), - [anon_sym_f64] = ACTIONS(2047), - [anon_sym_c_char] = ACTIONS(2047), - [anon_sym_c_schar] = ACTIONS(2047), - [anon_sym_c_uchar] = ACTIONS(2047), - [anon_sym_c_short] = ACTIONS(2047), - [anon_sym_c_ushort] = ACTIONS(2047), - [anon_sym_c_int] = ACTIONS(2047), - [anon_sym_c_uint] = ACTIONS(2047), - [anon_sym_c_long] = ACTIONS(2047), - [anon_sym_c_ulong] = ACTIONS(2047), - [anon_sym_c_longlong] = ACTIONS(2047), - [anon_sym_c_ulonglong] = ACTIONS(2047), - [anon_sym_c_float] = ACTIONS(2047), - [anon_sym_c_double] = ACTIONS(2047), - [anon_sym_c_longdouble] = ACTIONS(2047), - [anon_sym_PLUS_EQ] = ACTIONS(2045), - [anon_sym_DASH_EQ] = ACTIONS(2045), - [anon_sym_STAR_EQ] = ACTIONS(2045), - [anon_sym_SLASH_EQ] = ACTIONS(2045), - [anon_sym_AMP_EQ] = ACTIONS(2045), - [anon_sym_PIPE_EQ] = ACTIONS(2045), - [anon_sym_xor_EQ] = ACTIONS(2045), - [anon_sym_LT_LT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_yield] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_defer] = ACTIONS(2047), - [anon_sym_errdefer] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_expand] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_orelse] = ACTIONS(2047), - [anon_sym_catch] = ACTIONS(2047), - [anon_sym_or] = ACTIONS(2047), - [anon_sym_and] = ACTIONS(2047), - [anon_sym_EQ_EQ] = ACTIONS(2045), - [anon_sym_BANG_EQ] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_LT_EQ] = ACTIONS(2045), - [anon_sym_GT] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_xor] = ACTIONS(2047), - [anon_sym_LT_LT] = ACTIONS(2047), - [anon_sym_GT_GT] = ACTIONS(2047), - [anon_sym_LT_LT_PIPE] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(2047), - [anon_sym_CARET] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2047), - [anon_sym_unreachable] = ACTIONS(2047), - [anon_sym_undefined] = ACTIONS(2047), - [sym_sink] = ACTIONS(2047), - [sym_integer] = ACTIONS(2047), - [sym_float] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym_multiline_string] = ACTIONS(2045), - [sym_character] = ACTIONS(2045), + [STATE(302)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10470), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11101), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(304), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2045), }, - [STATE(705)] = { - [ts_builtin_sym_end] = ACTIONS(2049), - [sym_identifier] = ACTIONS(2051), - [anon_sym_import] = ACTIONS(2051), - [anon_sym_test] = ACTIONS(2051), - [anon_sym_hide] = ACTIONS(2051), - [anon_sym_func] = ACTIONS(2051), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(2051), - [anon_sym_struct] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_COMMA] = ACTIONS(2049), + [STATE(303)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9990), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11103), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(304)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10373), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11114), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_QMARK] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_void] = ACTIONS(2051), - [anon_sym_noreturn] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2051), - [anon_sym_anyopaque] = ACTIONS(2051), - [anon_sym_bool] = ACTIONS(2051), - [anon_sym_int] = ACTIONS(2051), - [anon_sym_uint] = ACTIONS(2051), - [anon_sym_float] = ACTIONS(2051), - [anon_sym_range] = ACTIONS(2051), - [anon_sym_i8] = ACTIONS(2051), - [anon_sym_i16] = ACTIONS(2051), - [anon_sym_i32] = ACTIONS(2051), - [anon_sym_i64] = ACTIONS(2051), - [anon_sym_u8] = ACTIONS(2051), - [anon_sym_u16] = ACTIONS(2051), - [anon_sym_u32] = ACTIONS(2051), - [anon_sym_u64] = ACTIONS(2051), - [anon_sym_isize] = ACTIONS(2051), - [anon_sym_usize] = ACTIONS(2051), - [anon_sym_f32] = ACTIONS(2051), - [anon_sym_f64] = ACTIONS(2051), - [anon_sym_c_char] = ACTIONS(2051), - [anon_sym_c_schar] = ACTIONS(2051), - [anon_sym_c_uchar] = ACTIONS(2051), - [anon_sym_c_short] = ACTIONS(2051), - [anon_sym_c_ushort] = ACTIONS(2051), - [anon_sym_c_int] = ACTIONS(2051), - [anon_sym_c_uint] = ACTIONS(2051), - [anon_sym_c_long] = ACTIONS(2051), - [anon_sym_c_ulong] = ACTIONS(2051), - [anon_sym_c_longlong] = ACTIONS(2051), - [anon_sym_c_ulonglong] = ACTIONS(2051), - [anon_sym_c_float] = ACTIONS(2051), - [anon_sym_c_double] = ACTIONS(2051), - [anon_sym_c_longdouble] = ACTIONS(2051), - [anon_sym_PLUS_EQ] = ACTIONS(2049), - [anon_sym_DASH_EQ] = ACTIONS(2049), - [anon_sym_STAR_EQ] = ACTIONS(2049), - [anon_sym_SLASH_EQ] = ACTIONS(2049), - [anon_sym_AMP_EQ] = ACTIONS(2049), - [anon_sym_PIPE_EQ] = ACTIONS(2049), - [anon_sym_xor_EQ] = ACTIONS(2049), - [anon_sym_LT_LT_EQ] = ACTIONS(2049), - [anon_sym_GT_GT_EQ] = ACTIONS(2049), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_yield] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_defer] = ACTIONS(2051), - [anon_sym_errdefer] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_else] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_expand] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2049), - [anon_sym_orelse] = ACTIONS(2051), - [anon_sym_catch] = ACTIONS(2051), - [anon_sym_or] = ACTIONS(2051), - [anon_sym_and] = ACTIONS(2051), - [anon_sym_EQ_EQ] = ACTIONS(2049), - [anon_sym_BANG_EQ] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_LT_EQ] = ACTIONS(2049), - [anon_sym_GT] = ACTIONS(2051), - [anon_sym_GT_EQ] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2051), - [anon_sym_xor] = ACTIONS(2051), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_LT_LT_PIPE] = ACTIONS(2051), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_SLASH] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2051), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_CARET] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [anon_sym_null] = ACTIONS(2051), - [anon_sym_unreachable] = ACTIONS(2051), - [anon_sym_undefined] = ACTIONS(2051), - [sym_sink] = ACTIONS(2051), - [sym_integer] = ACTIONS(2051), - [sym_float] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym_multiline_string] = ACTIONS(2049), - [sym_character] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2049), + [sym__newline] = ACTIONS(1849), }, - [STATE(706)] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1617), - [anon_sym_import] = ACTIONS(1853), - [anon_sym_test] = ACTIONS(1853), - [anon_sym_hide] = ACTIONS(1853), - [anon_sym_func] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_EQ] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_QMARK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_noreturn] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_anyopaque] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_range] = ACTIONS(1617), - [anon_sym_i8] = ACTIONS(1617), - [anon_sym_i16] = ACTIONS(1617), - [anon_sym_i32] = ACTIONS(1617), - [anon_sym_i64] = ACTIONS(1617), - [anon_sym_u8] = ACTIONS(1617), - [anon_sym_u16] = ACTIONS(1617), - [anon_sym_u32] = ACTIONS(1617), - [anon_sym_u64] = ACTIONS(1617), - [anon_sym_isize] = ACTIONS(1617), - [anon_sym_usize] = ACTIONS(1617), - [anon_sym_f32] = ACTIONS(1617), - [anon_sym_f64] = ACTIONS(1617), - [anon_sym_c_char] = ACTIONS(1617), - [anon_sym_c_schar] = ACTIONS(1617), - [anon_sym_c_uchar] = ACTIONS(1617), - [anon_sym_c_short] = ACTIONS(1617), - [anon_sym_c_ushort] = ACTIONS(1617), - [anon_sym_c_int] = ACTIONS(1617), - [anon_sym_c_uint] = ACTIONS(1617), - [anon_sym_c_long] = ACTIONS(1617), - [anon_sym_c_ulong] = ACTIONS(1617), - [anon_sym_c_longlong] = ACTIONS(1617), - [anon_sym_c_ulonglong] = ACTIONS(1617), - [anon_sym_c_float] = ACTIONS(1617), - [anon_sym_c_double] = ACTIONS(1617), - [anon_sym_c_longdouble] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1851), - [anon_sym_DASH_EQ] = ACTIONS(1851), - [anon_sym_STAR_EQ] = ACTIONS(1851), - [anon_sym_SLASH_EQ] = ACTIONS(1851), - [anon_sym_AMP_EQ] = ACTIONS(1851), - [anon_sym_PIPE_EQ] = ACTIONS(1851), - [anon_sym_xor_EQ] = ACTIONS(1851), - [anon_sym_LT_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_defer] = ACTIONS(1617), - [anon_sym_errdefer] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_expand] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1615), - [anon_sym_orelse] = ACTIONS(1617), - [anon_sym_catch] = ACTIONS(1617), - [anon_sym_or] = ACTIONS(1617), - [anon_sym_and] = ACTIONS(1617), - [anon_sym_EQ_EQ] = ACTIONS(1615), - [anon_sym_BANG_EQ] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_LT_EQ] = ACTIONS(1615), - [anon_sym_GT] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_xor] = ACTIONS(1617), - [anon_sym_LT_LT] = ACTIONS(1617), - [anon_sym_GT_GT] = ACTIONS(1617), - [anon_sym_LT_LT_PIPE] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_SLASH] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_unreachable] = ACTIONS(1617), - [anon_sym_undefined] = ACTIONS(1617), - [sym_sink] = ACTIONS(1617), - [sym_integer] = ACTIONS(1617), - [sym_float] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_multiline_string] = ACTIONS(1615), - [sym_character] = ACTIONS(1615), + [STATE(305)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(306), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1615), + [sym__newline] = ACTIONS(2053), }, - [STATE(707)] = { - [ts_builtin_sym_end] = ACTIONS(1937), - [sym_identifier] = ACTIONS(1519), - [anon_sym_import] = ACTIONS(1939), - [anon_sym_test] = ACTIONS(1939), - [anon_sym_hide] = ACTIONS(1939), - [anon_sym_func] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_EQ] = ACTIONS(1939), - [anon_sym_struct] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_noreturn] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_anyopaque] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_range] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_c_char] = ACTIONS(1519), - [anon_sym_c_schar] = ACTIONS(1519), - [anon_sym_c_uchar] = ACTIONS(1519), - [anon_sym_c_short] = ACTIONS(1519), - [anon_sym_c_ushort] = ACTIONS(1519), - [anon_sym_c_int] = ACTIONS(1519), - [anon_sym_c_uint] = ACTIONS(1519), - [anon_sym_c_long] = ACTIONS(1519), - [anon_sym_c_ulong] = ACTIONS(1519), - [anon_sym_c_longlong] = ACTIONS(1519), - [anon_sym_c_ulonglong] = ACTIONS(1519), - [anon_sym_c_float] = ACTIONS(1519), - [anon_sym_c_double] = ACTIONS(1519), - [anon_sym_c_longdouble] = ACTIONS(1519), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_AMP_EQ] = ACTIONS(1937), - [anon_sym_PIPE_EQ] = ACTIONS(1937), - [anon_sym_xor_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_GT_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_errdefer] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_expand] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_orelse] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1519), - [anon_sym_LT_LT_PIPE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_unreachable] = ACTIONS(1519), - [anon_sym_undefined] = ACTIONS(1519), - [sym_sink] = ACTIONS(1519), - [sym_integer] = ACTIONS(1519), - [sym_float] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym_multiline_string] = ACTIONS(1517), - [sym_character] = ACTIONS(1517), + [STATE(306)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1517), + [sym__newline] = ACTIONS(1849), }, - [STATE(708)] = { - [ts_builtin_sym_end] = ACTIONS(1573), - [sym_identifier] = ACTIONS(2043), - [anon_sym_import] = ACTIONS(1575), - [anon_sym_test] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_func] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2043), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_void] = ACTIONS(2043), - [anon_sym_noreturn] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_anyopaque] = ACTIONS(2043), - [anon_sym_bool] = ACTIONS(2043), - [anon_sym_int] = ACTIONS(2043), - [anon_sym_uint] = ACTIONS(2043), - [anon_sym_float] = ACTIONS(2043), - [anon_sym_range] = ACTIONS(2043), - [anon_sym_i8] = ACTIONS(2043), - [anon_sym_i16] = ACTIONS(2043), - [anon_sym_i32] = ACTIONS(2043), - [anon_sym_i64] = ACTIONS(2043), - [anon_sym_u8] = ACTIONS(2043), - [anon_sym_u16] = ACTIONS(2043), - [anon_sym_u32] = ACTIONS(2043), - [anon_sym_u64] = ACTIONS(2043), - [anon_sym_isize] = ACTIONS(2043), - [anon_sym_usize] = ACTIONS(2043), - [anon_sym_f32] = ACTIONS(2043), - [anon_sym_f64] = ACTIONS(2043), - [anon_sym_c_char] = ACTIONS(2043), - [anon_sym_c_schar] = ACTIONS(2043), - [anon_sym_c_uchar] = ACTIONS(2043), - [anon_sym_c_short] = ACTIONS(2043), - [anon_sym_c_ushort] = ACTIONS(2043), - [anon_sym_c_int] = ACTIONS(2043), - [anon_sym_c_uint] = ACTIONS(2043), - [anon_sym_c_long] = ACTIONS(2043), - [anon_sym_c_ulong] = ACTIONS(2043), - [anon_sym_c_longlong] = ACTIONS(2043), - [anon_sym_c_ulonglong] = ACTIONS(2043), - [anon_sym_c_float] = ACTIONS(2043), - [anon_sym_c_double] = ACTIONS(2043), - [anon_sym_c_longdouble] = ACTIONS(2043), - [anon_sym_PLUS_EQ] = ACTIONS(1573), - [anon_sym_DASH_EQ] = ACTIONS(1573), - [anon_sym_STAR_EQ] = ACTIONS(1573), - [anon_sym_SLASH_EQ] = ACTIONS(1573), - [anon_sym_AMP_EQ] = ACTIONS(1573), - [anon_sym_PIPE_EQ] = ACTIONS(1573), - [anon_sym_xor_EQ] = ACTIONS(1573), - [anon_sym_LT_LT_EQ] = ACTIONS(1573), - [anon_sym_GT_GT_EQ] = ACTIONS(1573), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_yield] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_defer] = ACTIONS(2043), - [anon_sym_errdefer] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_expand] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2041), - [anon_sym_orelse] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_or] = ACTIONS(2043), - [anon_sym_and] = ACTIONS(2043), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_xor] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2043), - [anon_sym_GT_GT] = ACTIONS(2043), - [anon_sym_LT_LT_PIPE] = ACTIONS(2043), - [anon_sym_PLUS] = ACTIONS(2043), - [anon_sym_SLASH] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_DOT] = ACTIONS(2043), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [anon_sym_null] = ACTIONS(2043), - [anon_sym_unreachable] = ACTIONS(2043), - [anon_sym_undefined] = ACTIONS(2043), - [sym_sink] = ACTIONS(2043), - [sym_integer] = ACTIONS(2043), - [sym_float] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym_multiline_string] = ACTIONS(2041), - [sym_character] = ACTIONS(2041), + [STATE(307)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2041), + [sym__newline] = ACTIONS(2057), }, - [STATE(709)] = { - [sym_variant_payload] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1869), - [anon_sym_import] = ACTIONS(1494), - [anon_sym_test] = ACTIONS(1494), - [anon_sym_hide] = ACTIONS(1494), - [anon_sym_func] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_QMARK] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1869), - [anon_sym_noreturn] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_anyopaque] = ACTIONS(1869), - [anon_sym_bool] = ACTIONS(1869), - [anon_sym_int] = ACTIONS(1869), - [anon_sym_uint] = ACTIONS(1869), - [anon_sym_float] = ACTIONS(1869), - [anon_sym_range] = ACTIONS(1869), - [anon_sym_i8] = ACTIONS(1869), - [anon_sym_i16] = ACTIONS(1869), - [anon_sym_i32] = ACTIONS(1869), - [anon_sym_i64] = ACTIONS(1869), - [anon_sym_u8] = ACTIONS(1869), - [anon_sym_u16] = ACTIONS(1869), - [anon_sym_u32] = ACTIONS(1869), - [anon_sym_u64] = ACTIONS(1869), - [anon_sym_isize] = ACTIONS(1869), - [anon_sym_usize] = ACTIONS(1869), - [anon_sym_f32] = ACTIONS(1869), - [anon_sym_f64] = ACTIONS(1869), - [anon_sym_c_char] = ACTIONS(1869), - [anon_sym_c_schar] = ACTIONS(1869), - [anon_sym_c_uchar] = ACTIONS(1869), - [anon_sym_c_short] = ACTIONS(1869), - [anon_sym_c_ushort] = ACTIONS(1869), - [anon_sym_c_int] = ACTIONS(1869), - [anon_sym_c_uint] = ACTIONS(1869), - [anon_sym_c_long] = ACTIONS(1869), - [anon_sym_c_ulong] = ACTIONS(1869), - [anon_sym_c_longlong] = ACTIONS(1869), - [anon_sym_c_ulonglong] = ACTIONS(1869), - [anon_sym_c_float] = ACTIONS(1869), - [anon_sym_c_double] = ACTIONS(1869), - [anon_sym_c_longdouble] = ACTIONS(1869), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_AMP_EQ] = ACTIONS(1492), - [anon_sym_PIPE_EQ] = ACTIONS(1492), - [anon_sym_xor_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_EQ] = ACTIONS(1492), - [anon_sym_GT_GT_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_yield] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_defer] = ACTIONS(1869), - [anon_sym_errdefer] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_expand] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1867), - [anon_sym_orelse] = ACTIONS(1869), - [anon_sym_catch] = ACTIONS(1869), - [anon_sym_or] = ACTIONS(1869), - [anon_sym_and] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1867), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_xor] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_LT_LT_PIPE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [anon_sym_unreachable] = ACTIONS(1869), - [anon_sym_undefined] = ACTIONS(1869), - [sym_sink] = ACTIONS(1869), - [sym_integer] = ACTIONS(1869), - [sym_float] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [sym_multiline_string] = ACTIONS(1867), - [sym_character] = ACTIONS(1867), + [STATE(308)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1867), + [sym__newline] = ACTIONS(2059), }, - [STATE(710)] = { - [sym_type] = STATE(5099), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(468), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(501), - [anon_sym_noreturn] = ACTIONS(501), - [anon_sym_type] = ACTIONS(501), - [anon_sym_anyopaque] = ACTIONS(501), - [anon_sym_bool] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_uint] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_range] = ACTIONS(501), - [anon_sym_i8] = ACTIONS(501), - [anon_sym_i16] = ACTIONS(501), - [anon_sym_i32] = ACTIONS(501), - [anon_sym_i64] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(501), - [anon_sym_u16] = ACTIONS(501), - [anon_sym_u32] = ACTIONS(501), - [anon_sym_u64] = ACTIONS(501), - [anon_sym_isize] = ACTIONS(501), - [anon_sym_usize] = ACTIONS(501), - [anon_sym_f32] = ACTIONS(501), - [anon_sym_f64] = ACTIONS(501), - [anon_sym_c_char] = ACTIONS(501), - [anon_sym_c_schar] = ACTIONS(501), - [anon_sym_c_uchar] = ACTIONS(501), - [anon_sym_c_short] = ACTIONS(501), - [anon_sym_c_ushort] = ACTIONS(501), - [anon_sym_c_int] = ACTIONS(501), - [anon_sym_c_uint] = ACTIONS(501), - [anon_sym_c_long] = ACTIONS(501), - [anon_sym_c_ulong] = ACTIONS(501), - [anon_sym_c_longlong] = ACTIONS(501), - [anon_sym_c_ulonglong] = ACTIONS(501), - [anon_sym_c_float] = ACTIONS(501), - [anon_sym_c_double] = ACTIONS(501), - [anon_sym_c_longdouble] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_else] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [STATE(309)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(1849), }, - [STATE(711)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_import] = ACTIONS(1490), - [anon_sym_test] = ACTIONS(1490), - [anon_sym_hide] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [STATE(310)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9998), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11068), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1849), }, - [STATE(712)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_import] = ACTIONS(1490), - [anon_sym_test] = ACTIONS(1490), - [anon_sym_hide] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [STATE(311)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(313), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(2065), }, - [STATE(713)] = { - [sym_type] = STATE(757), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [sym_identifier] = ACTIONS(2053), - [anon_sym_func] = ACTIONS(2056), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_struct] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_DOLLAR] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_void] = ACTIONS(2079), - [anon_sym_noreturn] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_anyopaque] = ACTIONS(2079), - [anon_sym_bool] = ACTIONS(2079), - [anon_sym_int] = ACTIONS(2079), - [anon_sym_uint] = ACTIONS(2079), - [anon_sym_float] = ACTIONS(2079), - [anon_sym_range] = ACTIONS(2079), - [anon_sym_i8] = ACTIONS(2079), - [anon_sym_i16] = ACTIONS(2079), - [anon_sym_i32] = ACTIONS(2079), - [anon_sym_i64] = ACTIONS(2079), - [anon_sym_u8] = ACTIONS(2079), - [anon_sym_u16] = ACTIONS(2079), - [anon_sym_u32] = ACTIONS(2079), - [anon_sym_u64] = ACTIONS(2079), - [anon_sym_isize] = ACTIONS(2079), - [anon_sym_usize] = ACTIONS(2079), - [anon_sym_f32] = ACTIONS(2079), - [anon_sym_f64] = ACTIONS(2079), - [anon_sym_c_char] = ACTIONS(2079), - [anon_sym_c_schar] = ACTIONS(2079), - [anon_sym_c_uchar] = ACTIONS(2079), - [anon_sym_c_short] = ACTIONS(2079), - [anon_sym_c_ushort] = ACTIONS(2079), - [anon_sym_c_int] = ACTIONS(2079), - [anon_sym_c_uint] = ACTIONS(2079), - [anon_sym_c_long] = ACTIONS(2079), - [anon_sym_c_ulong] = ACTIONS(2079), - [anon_sym_c_longlong] = ACTIONS(2079), - [anon_sym_c_ulonglong] = ACTIONS(2079), - [anon_sym_c_float] = ACTIONS(2079), - [anon_sym_c_double] = ACTIONS(2079), - [anon_sym_c_longdouble] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(367), - [anon_sym_yield] = ACTIONS(367), - [anon_sym_break] = ACTIONS(367), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_defer] = ACTIONS(367), - [anon_sym_errdefer] = ACTIONS(367), - [anon_sym_if] = ACTIONS(367), - [anon_sym_else] = ACTIONS(367), - [anon_sym_while] = ACTIONS(367), - [anon_sym_expand] = ACTIONS(367), - [anon_sym_for] = ACTIONS(367), - [anon_sym_match] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(362), - [anon_sym_try] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_null] = ACTIONS(367), - [anon_sym_unreachable] = ACTIONS(367), - [anon_sym_undefined] = ACTIONS(367), - [sym_sink] = ACTIONS(367), - [sym_integer] = ACTIONS(367), - [sym_float] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_multiline_string] = ACTIONS(362), - [sym_character] = ACTIONS(362), + [STATE(312)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2067), }, - [STATE(714)] = { - [sym_type] = STATE(780), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [sym_identifier] = ACTIONS(2082), - [anon_sym_func] = ACTIONS(2085), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(334), - [anon_sym_struct] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2091), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_void] = ACTIONS(2102), - [anon_sym_noreturn] = ACTIONS(2102), - [anon_sym_type] = ACTIONS(2102), - [anon_sym_anyopaque] = ACTIONS(2102), - [anon_sym_bool] = ACTIONS(2102), - [anon_sym_int] = ACTIONS(2102), - [anon_sym_uint] = ACTIONS(2102), - [anon_sym_float] = ACTIONS(2102), - [anon_sym_range] = ACTIONS(2102), - [anon_sym_i8] = ACTIONS(2102), - [anon_sym_i16] = ACTIONS(2102), - [anon_sym_i32] = ACTIONS(2102), - [anon_sym_i64] = ACTIONS(2102), - [anon_sym_u8] = ACTIONS(2102), - [anon_sym_u16] = ACTIONS(2102), - [anon_sym_u32] = ACTIONS(2102), - [anon_sym_u64] = ACTIONS(2102), - [anon_sym_isize] = ACTIONS(2102), - [anon_sym_usize] = ACTIONS(2102), - [anon_sym_f32] = ACTIONS(2102), - [anon_sym_f64] = ACTIONS(2102), - [anon_sym_c_char] = ACTIONS(2102), - [anon_sym_c_schar] = ACTIONS(2102), - [anon_sym_c_uchar] = ACTIONS(2102), - [anon_sym_c_short] = ACTIONS(2102), - [anon_sym_c_ushort] = ACTIONS(2102), - [anon_sym_c_int] = ACTIONS(2102), - [anon_sym_c_uint] = ACTIONS(2102), - [anon_sym_c_long] = ACTIONS(2102), - [anon_sym_c_ulong] = ACTIONS(2102), - [anon_sym_c_longlong] = ACTIONS(2102), - [anon_sym_c_ulonglong] = ACTIONS(2102), - [anon_sym_c_float] = ACTIONS(2102), - [anon_sym_c_double] = ACTIONS(2102), - [anon_sym_c_longdouble] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(334), - [anon_sym_yield] = ACTIONS(334), - [anon_sym_break] = ACTIONS(334), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_defer] = ACTIONS(334), - [anon_sym_errdefer] = ACTIONS(334), - [anon_sym_if] = ACTIONS(334), - [anon_sym_else] = ACTIONS(334), - [anon_sym_while] = ACTIONS(334), - [anon_sym_expand] = ACTIONS(334), - [anon_sym_for] = ACTIONS(334), - [anon_sym_match] = ACTIONS(334), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_orelse] = ACTIONS(334), - [anon_sym_catch] = ACTIONS(334), - [anon_sym_or] = ACTIONS(334), - [anon_sym_and] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_xor] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_LT_LT_PIPE] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_try] = ACTIONS(334), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_true] = ACTIONS(334), - [anon_sym_false] = ACTIONS(334), - [anon_sym_null] = ACTIONS(334), - [anon_sym_unreachable] = ACTIONS(334), - [anon_sym_undefined] = ACTIONS(334), - [sym_sink] = ACTIONS(334), - [sym_integer] = ACTIONS(334), - [sym_float] = ACTIONS(329), - [anon_sym_DQUOTE] = ACTIONS(329), - [sym_multiline_string] = ACTIONS(329), - [sym_character] = ACTIONS(329), + [STATE(313)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(329), + [sym__newline] = ACTIONS(1849), }, - [STATE(715)] = { - [sym_type] = STATE(761), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [sym_identifier] = ACTIONS(2105), - [anon_sym_func] = ACTIONS(2108), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2114), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_noreturn] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_anyopaque] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_int] = ACTIONS(2125), - [anon_sym_uint] = ACTIONS(2125), - [anon_sym_float] = ACTIONS(2125), - [anon_sym_range] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_c_char] = ACTIONS(2125), - [anon_sym_c_schar] = ACTIONS(2125), - [anon_sym_c_uchar] = ACTIONS(2125), - [anon_sym_c_short] = ACTIONS(2125), - [anon_sym_c_ushort] = ACTIONS(2125), - [anon_sym_c_int] = ACTIONS(2125), - [anon_sym_c_uint] = ACTIONS(2125), - [anon_sym_c_long] = ACTIONS(2125), - [anon_sym_c_ulong] = ACTIONS(2125), - [anon_sym_c_longlong] = ACTIONS(2125), - [anon_sym_c_ulonglong] = ACTIONS(2125), - [anon_sym_c_float] = ACTIONS(2125), - [anon_sym_c_double] = ACTIONS(2125), - [anon_sym_c_longdouble] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_defer] = ACTIONS(423), - [anon_sym_errdefer] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_expand] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_TILDE] = ACTIONS(418), - [anon_sym_try] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_null] = ACTIONS(423), - [anon_sym_unreachable] = ACTIONS(423), - [anon_sym_undefined] = ACTIONS(423), - [sym_sink] = ACTIONS(423), - [sym_integer] = ACTIONS(423), - [sym_float] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_multiline_string] = ACTIONS(418), - [sym_character] = ACTIONS(418), + [STATE(314)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(1849), }, - [STATE(716)] = { - [sym_type] = STATE(763), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [sym_identifier] = ACTIONS(2105), - [anon_sym_func] = ACTIONS(2108), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2114), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_noreturn] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_anyopaque] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_int] = ACTIONS(2125), - [anon_sym_uint] = ACTIONS(2125), - [anon_sym_float] = ACTIONS(2125), - [anon_sym_range] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_c_char] = ACTIONS(2125), - [anon_sym_c_schar] = ACTIONS(2125), - [anon_sym_c_uchar] = ACTIONS(2125), - [anon_sym_c_short] = ACTIONS(2125), - [anon_sym_c_ushort] = ACTIONS(2125), - [anon_sym_c_int] = ACTIONS(2125), - [anon_sym_c_uint] = ACTIONS(2125), - [anon_sym_c_long] = ACTIONS(2125), - [anon_sym_c_ulong] = ACTIONS(2125), - [anon_sym_c_longlong] = ACTIONS(2125), - [anon_sym_c_ulonglong] = ACTIONS(2125), - [anon_sym_c_float] = ACTIONS(2125), - [anon_sym_c_double] = ACTIONS(2125), - [anon_sym_c_longdouble] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_defer] = ACTIONS(423), - [anon_sym_errdefer] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_expand] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_TILDE] = ACTIONS(418), - [anon_sym_try] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_null] = ACTIONS(423), - [anon_sym_unreachable] = ACTIONS(423), - [anon_sym_undefined] = ACTIONS(423), - [sym_sink] = ACTIONS(423), - [sym_integer] = ACTIONS(423), - [sym_float] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_multiline_string] = ACTIONS(418), - [sym_character] = ACTIONS(418), + [STATE(315)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(2071), }, - [STATE(717)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_import] = ACTIONS(1405), - [anon_sym_test] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [STATE(316)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), + [sym__newline] = ACTIONS(1849), }, - [STATE(718)] = { - [sym_type] = STATE(769), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [sym_identifier] = ACTIONS(2130), - [anon_sym_func] = ACTIONS(2133), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_struct] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_mut] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_void] = ACTIONS(2150), - [anon_sym_noreturn] = ACTIONS(2150), - [anon_sym_type] = ACTIONS(2150), - [anon_sym_anyopaque] = ACTIONS(2150), - [anon_sym_bool] = ACTIONS(2150), - [anon_sym_int] = ACTIONS(2150), - [anon_sym_uint] = ACTIONS(2150), - [anon_sym_float] = ACTIONS(2150), - [anon_sym_range] = ACTIONS(2150), - [anon_sym_i8] = ACTIONS(2150), - [anon_sym_i16] = ACTIONS(2150), - [anon_sym_i32] = ACTIONS(2150), - [anon_sym_i64] = ACTIONS(2150), - [anon_sym_u8] = ACTIONS(2150), - [anon_sym_u16] = ACTIONS(2150), - [anon_sym_u32] = ACTIONS(2150), - [anon_sym_u64] = ACTIONS(2150), - [anon_sym_isize] = ACTIONS(2150), - [anon_sym_usize] = ACTIONS(2150), - [anon_sym_f32] = ACTIONS(2150), - [anon_sym_f64] = ACTIONS(2150), - [anon_sym_c_char] = ACTIONS(2150), - [anon_sym_c_schar] = ACTIONS(2150), - [anon_sym_c_uchar] = ACTIONS(2150), - [anon_sym_c_short] = ACTIONS(2150), - [anon_sym_c_ushort] = ACTIONS(2150), - [anon_sym_c_int] = ACTIONS(2150), - [anon_sym_c_uint] = ACTIONS(2150), - [anon_sym_c_long] = ACTIONS(2150), - [anon_sym_c_ulong] = ACTIONS(2150), - [anon_sym_c_longlong] = ACTIONS(2150), - [anon_sym_c_ulonglong] = ACTIONS(2150), - [anon_sym_c_float] = ACTIONS(2150), - [anon_sym_c_double] = ACTIONS(2150), - [anon_sym_c_longdouble] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(396), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_defer] = ACTIONS(396), - [anon_sym_errdefer] = ACTIONS(396), - [anon_sym_if] = ACTIONS(396), - [anon_sym_else] = ACTIONS(396), - [anon_sym_while] = ACTIONS(396), - [anon_sym_expand] = ACTIONS(396), - [anon_sym_for] = ACTIONS(396), - [anon_sym_match] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT_LT_PIPE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_try] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_true] = ACTIONS(396), - [anon_sym_false] = ACTIONS(396), - [anon_sym_null] = ACTIONS(396), - [anon_sym_unreachable] = ACTIONS(396), - [anon_sym_undefined] = ACTIONS(396), - [sym_sink] = ACTIONS(396), - [sym_integer] = ACTIONS(396), - [sym_float] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), - [sym_multiline_string] = ACTIONS(391), - [sym_character] = ACTIONS(391), + [STATE(317)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(1849), }, - [STATE(719)] = { - [sym_argument_list] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_import] = ACTIONS(1405), - [anon_sym_test] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [STATE(318)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(327), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), + [sym__newline] = ACTIONS(2079), }, - [STATE(720)] = { - [sym_type] = STATE(754), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [sym_identifier] = ACTIONS(2053), - [anon_sym_func] = ACTIONS(2056), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_struct] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_DOLLAR] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_void] = ACTIONS(2079), - [anon_sym_noreturn] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_anyopaque] = ACTIONS(2079), - [anon_sym_bool] = ACTIONS(2079), - [anon_sym_int] = ACTIONS(2079), - [anon_sym_uint] = ACTIONS(2079), - [anon_sym_float] = ACTIONS(2079), - [anon_sym_range] = ACTIONS(2079), - [anon_sym_i8] = ACTIONS(2079), - [anon_sym_i16] = ACTIONS(2079), - [anon_sym_i32] = ACTIONS(2079), - [anon_sym_i64] = ACTIONS(2079), - [anon_sym_u8] = ACTIONS(2079), - [anon_sym_u16] = ACTIONS(2079), - [anon_sym_u32] = ACTIONS(2079), - [anon_sym_u64] = ACTIONS(2079), - [anon_sym_isize] = ACTIONS(2079), - [anon_sym_usize] = ACTIONS(2079), - [anon_sym_f32] = ACTIONS(2079), - [anon_sym_f64] = ACTIONS(2079), - [anon_sym_c_char] = ACTIONS(2079), - [anon_sym_c_schar] = ACTIONS(2079), - [anon_sym_c_uchar] = ACTIONS(2079), - [anon_sym_c_short] = ACTIONS(2079), - [anon_sym_c_ushort] = ACTIONS(2079), - [anon_sym_c_int] = ACTIONS(2079), - [anon_sym_c_uint] = ACTIONS(2079), - [anon_sym_c_long] = ACTIONS(2079), - [anon_sym_c_ulong] = ACTIONS(2079), - [anon_sym_c_longlong] = ACTIONS(2079), - [anon_sym_c_ulonglong] = ACTIONS(2079), - [anon_sym_c_float] = ACTIONS(2079), - [anon_sym_c_double] = ACTIONS(2079), - [anon_sym_c_longdouble] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(367), - [anon_sym_yield] = ACTIONS(367), - [anon_sym_break] = ACTIONS(367), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_defer] = ACTIONS(367), - [anon_sym_errdefer] = ACTIONS(367), - [anon_sym_if] = ACTIONS(367), - [anon_sym_else] = ACTIONS(367), - [anon_sym_while] = ACTIONS(367), - [anon_sym_expand] = ACTIONS(367), - [anon_sym_for] = ACTIONS(367), - [anon_sym_match] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(362), - [anon_sym_try] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_null] = ACTIONS(367), - [anon_sym_unreachable] = ACTIONS(367), - [anon_sym_undefined] = ACTIONS(367), - [sym_sink] = ACTIONS(367), - [sym_integer] = ACTIONS(367), - [sym_float] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_multiline_string] = ACTIONS(362), - [sym_character] = ACTIONS(362), + [STATE(319)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10427), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11385), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(321), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2083), }, - [STATE(721)] = { - [sym_argument_list] = STATE(568), - [aux_sym_import_declaration_repeat1] = STATE(4276), - [aux_sym_match_arm_repeat1] = STATE(4025), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2163), - [anon_sym_DASH_EQ] = ACTIONS(2163), - [anon_sym_STAR_EQ] = ACTIONS(2163), - [anon_sym_SLASH_EQ] = ACTIONS(2163), - [anon_sym_AMP_EQ] = ACTIONS(2163), - [anon_sym_PIPE_EQ] = ACTIONS(2163), - [anon_sym_xor_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_errdefer] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), + [STATE(320)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10032), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11394), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2169), + [sym__newline] = ACTIONS(1849), }, - [STATE(722)] = { - [sym_argument_list] = STATE(568), - [aux_sym_import_declaration_repeat1] = STATE(4214), - [aux_sym_match_arm_repeat1] = STATE(4192), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2163), - [anon_sym_DASH_EQ] = ACTIONS(2163), - [anon_sym_STAR_EQ] = ACTIONS(2163), - [anon_sym_SLASH_EQ] = ACTIONS(2163), - [anon_sym_AMP_EQ] = ACTIONS(2163), - [anon_sym_PIPE_EQ] = ACTIONS(2163), - [anon_sym_xor_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_errdefer] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), + [STATE(321)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10452), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11417), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2173), + [sym__newline] = ACTIONS(1849), }, - [STATE(723)] = { - [sym_argument_list] = STATE(568), - [aux_sym_import_declaration_repeat1] = STATE(4385), - [aux_sym_match_arm_repeat1] = STATE(4057), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2163), - [anon_sym_DASH_EQ] = ACTIONS(2163), - [anon_sym_STAR_EQ] = ACTIONS(2163), - [anon_sym_SLASH_EQ] = ACTIONS(2163), - [anon_sym_AMP_EQ] = ACTIONS(2163), - [anon_sym_PIPE_EQ] = ACTIONS(2163), - [anon_sym_xor_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_errdefer] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), + [STATE(322)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(324), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2177), + [sym__newline] = ACTIONS(2091), }, - [STATE(724)] = { - [sym_argument_list] = STATE(568), - [aux_sym_import_declaration_repeat1] = STATE(4650), - [aux_sym_match_arm_repeat1] = STATE(4165), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2163), - [anon_sym_DASH_EQ] = ACTIONS(2163), - [anon_sym_STAR_EQ] = ACTIONS(2163), - [anon_sym_SLASH_EQ] = ACTIONS(2163), - [anon_sym_AMP_EQ] = ACTIONS(2163), - [anon_sym_PIPE_EQ] = ACTIONS(2163), - [anon_sym_xor_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_errdefer] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), + [STATE(323)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(324)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(325)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(328), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2097), + }, + [STATE(326)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(329), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2099), + }, + [STATE(327)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(328)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(329)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(330)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(332), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2103), + }, + [STATE(331)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2105), + }, + [STATE(332)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(333)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(334)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2109), + }, + [STATE(335)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(336)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(339), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2113), + }, + [STATE(337)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(338)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2115), + }, + [STATE(339)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(340)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(341)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2119), + }, + [STATE(342)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(343)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(351), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2123), + }, + [STATE(344)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10239), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11763), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(345)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2129), + }, + [STATE(346)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10463), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11072), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2133), + }, + [STATE(347)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(348)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2137), + }, + [STATE(349)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2139), + }, + [STATE(350)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10059), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11094), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(351)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(352)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10018), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11408), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(353)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10416), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11134), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(354)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(357), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2151), + }, + [STATE(355)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10023), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11445), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2155), + }, + [STATE(356)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10036), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11422), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(357)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(358)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10070), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11432), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(361), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2161), + }, + [STATE(359)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(323), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2163), + }, + [STATE(360)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10257), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11447), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2167), + }, + [STATE(361)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10044), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11453), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(362)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10302), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11470), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(363)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2175), + }, + [STATE(364)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(365)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2179), + }, + [STATE(366)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(368), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2181), }, - [STATE(725)] = { - [sym_argument_list] = STATE(568), - [aux_sym_import_declaration_repeat1] = STATE(4321), - [aux_sym_match_arm_repeat1] = STATE(4003), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2163), - [anon_sym_DASH_EQ] = ACTIONS(2163), - [anon_sym_STAR_EQ] = ACTIONS(2163), - [anon_sym_SLASH_EQ] = ACTIONS(2163), - [anon_sym_AMP_EQ] = ACTIONS(2163), - [anon_sym_PIPE_EQ] = ACTIONS(2163), - [anon_sym_xor_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_errdefer] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), + [STATE(367)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(368)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(369)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2185), }, - [STATE(726)] = { - [sym_argument_list] = STATE(568), - [aux_sym_import_declaration_repeat1] = STATE(4590), - [aux_sym_match_arm_repeat1] = STATE(4148), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2163), - [anon_sym_DASH_EQ] = ACTIONS(2163), - [anon_sym_STAR_EQ] = ACTIONS(2163), - [anon_sym_SLASH_EQ] = ACTIONS(2163), - [anon_sym_AMP_EQ] = ACTIONS(2163), - [anon_sym_PIPE_EQ] = ACTIONS(2163), - [anon_sym_xor_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_errdefer] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2189), - }, - [STATE(727)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_anyopaque] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_range] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_c_char] = ACTIONS(1405), - [anon_sym_c_schar] = ACTIONS(1405), - [anon_sym_c_uchar] = ACTIONS(1405), - [anon_sym_c_short] = ACTIONS(1405), - [anon_sym_c_ushort] = ACTIONS(1405), - [anon_sym_c_int] = ACTIONS(1405), - [anon_sym_c_uint] = ACTIONS(1405), - [anon_sym_c_long] = ACTIONS(1405), - [anon_sym_c_ulong] = ACTIONS(1405), - [anon_sym_c_longlong] = ACTIONS(1405), - [anon_sym_c_ulonglong] = ACTIONS(1405), - [anon_sym_c_float] = ACTIONS(1405), - [anon_sym_c_double] = ACTIONS(1405), - [anon_sym_c_longdouble] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_yield] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_errdefer] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_expand] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_unreachable] = ACTIONS(1405), - [anon_sym_undefined] = ACTIONS(1405), - [sym_sink] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [sym_float] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_multiline_string] = ACTIONS(1403), - [sym_character] = ACTIONS(1403), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(728)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_anyopaque] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_range] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_c_char] = ACTIONS(1405), - [anon_sym_c_schar] = ACTIONS(1405), - [anon_sym_c_uchar] = ACTIONS(1405), - [anon_sym_c_short] = ACTIONS(1405), - [anon_sym_c_ushort] = ACTIONS(1405), - [anon_sym_c_int] = ACTIONS(1405), - [anon_sym_c_uint] = ACTIONS(1405), - [anon_sym_c_long] = ACTIONS(1405), - [anon_sym_c_ulong] = ACTIONS(1405), - [anon_sym_c_longlong] = ACTIONS(1405), - [anon_sym_c_ulonglong] = ACTIONS(1405), - [anon_sym_c_float] = ACTIONS(1405), - [anon_sym_c_double] = ACTIONS(1405), - [anon_sym_c_longdouble] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_yield] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_errdefer] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_expand] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_unreachable] = ACTIONS(1405), - [anon_sym_undefined] = ACTIONS(1405), - [sym_sink] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [sym_float] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_multiline_string] = ACTIONS(1403), - [sym_character] = ACTIONS(1403), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(729)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_anyopaque] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_range] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_c_char] = ACTIONS(1405), - [anon_sym_c_schar] = ACTIONS(1405), - [anon_sym_c_uchar] = ACTIONS(1405), - [anon_sym_c_short] = ACTIONS(1405), - [anon_sym_c_ushort] = ACTIONS(1405), - [anon_sym_c_int] = ACTIONS(1405), - [anon_sym_c_uint] = ACTIONS(1405), - [anon_sym_c_long] = ACTIONS(1405), - [anon_sym_c_ulong] = ACTIONS(1405), - [anon_sym_c_longlong] = ACTIONS(1405), - [anon_sym_c_ulonglong] = ACTIONS(1405), - [anon_sym_c_float] = ACTIONS(1405), - [anon_sym_c_double] = ACTIONS(1405), - [anon_sym_c_longdouble] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_unreachable] = ACTIONS(1405), - [anon_sym_undefined] = ACTIONS(1405), - [sym_sink] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [sym_float] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_multiline_string] = ACTIONS(1403), - [sym_character] = ACTIONS(1403), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(730)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_anyopaque] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_range] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_c_char] = ACTIONS(1405), - [anon_sym_c_schar] = ACTIONS(1405), - [anon_sym_c_uchar] = ACTIONS(1405), - [anon_sym_c_short] = ACTIONS(1405), - [anon_sym_c_ushort] = ACTIONS(1405), - [anon_sym_c_int] = ACTIONS(1405), - [anon_sym_c_uint] = ACTIONS(1405), - [anon_sym_c_long] = ACTIONS(1405), - [anon_sym_c_ulong] = ACTIONS(1405), - [anon_sym_c_longlong] = ACTIONS(1405), - [anon_sym_c_ulonglong] = ACTIONS(1405), - [anon_sym_c_float] = ACTIONS(1405), - [anon_sym_c_double] = ACTIONS(1405), - [anon_sym_c_longdouble] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_unreachable] = ACTIONS(1405), - [anon_sym_undefined] = ACTIONS(1405), - [sym_sink] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [sym_float] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_multiline_string] = ACTIONS(1403), - [sym_character] = ACTIONS(1403), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(731)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_anyopaque] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_int] = ACTIONS(1490), - [anon_sym_uint] = ACTIONS(1490), - [anon_sym_float] = ACTIONS(1490), - [anon_sym_range] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_c_char] = ACTIONS(1490), - [anon_sym_c_schar] = ACTIONS(1490), - [anon_sym_c_uchar] = ACTIONS(1490), - [anon_sym_c_short] = ACTIONS(1490), - [anon_sym_c_ushort] = ACTIONS(1490), - [anon_sym_c_int] = ACTIONS(1490), - [anon_sym_c_uint] = ACTIONS(1490), - [anon_sym_c_long] = ACTIONS(1490), - [anon_sym_c_ulong] = ACTIONS(1490), - [anon_sym_c_longlong] = ACTIONS(1490), - [anon_sym_c_ulonglong] = ACTIONS(1490), - [anon_sym_c_float] = ACTIONS(1490), - [anon_sym_c_double] = ACTIONS(1490), - [anon_sym_c_longdouble] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_defer] = ACTIONS(1490), - [anon_sym_errdefer] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_expand] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1490), - [anon_sym_unreachable] = ACTIONS(1490), - [anon_sym_undefined] = ACTIONS(1490), - [sym_sink] = ACTIONS(1490), - [sym_integer] = ACTIONS(1490), - [sym_float] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_multiline_string] = ACTIONS(1488), - [sym_character] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(732)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2193), - [anon_sym_DASH_EQ] = ACTIONS(2193), - [anon_sym_STAR_EQ] = ACTIONS(2193), - [anon_sym_SLASH_EQ] = ACTIONS(2193), - [anon_sym_AMP_EQ] = ACTIONS(2193), - [anon_sym_PIPE_EQ] = ACTIONS(2193), - [anon_sym_xor_EQ] = ACTIONS(2193), - [anon_sym_LT_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_GT_EQ] = ACTIONS(2193), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_errdefer] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2159), - }, - [STATE(733)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_anyopaque] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_int] = ACTIONS(1490), - [anon_sym_uint] = ACTIONS(1490), - [anon_sym_float] = ACTIONS(1490), - [anon_sym_range] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_c_char] = ACTIONS(1490), - [anon_sym_c_schar] = ACTIONS(1490), - [anon_sym_c_uchar] = ACTIONS(1490), - [anon_sym_c_short] = ACTIONS(1490), - [anon_sym_c_ushort] = ACTIONS(1490), - [anon_sym_c_int] = ACTIONS(1490), - [anon_sym_c_uint] = ACTIONS(1490), - [anon_sym_c_long] = ACTIONS(1490), - [anon_sym_c_ulong] = ACTIONS(1490), - [anon_sym_c_longlong] = ACTIONS(1490), - [anon_sym_c_ulonglong] = ACTIONS(1490), - [anon_sym_c_float] = ACTIONS(1490), - [anon_sym_c_double] = ACTIONS(1490), - [anon_sym_c_longdouble] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_defer] = ACTIONS(1490), - [anon_sym_errdefer] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_expand] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1490), - [anon_sym_unreachable] = ACTIONS(1490), - [anon_sym_undefined] = ACTIONS(1490), - [sym_sink] = ACTIONS(1490), - [sym_integer] = ACTIONS(1490), - [sym_float] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_multiline_string] = ACTIONS(1488), - [sym_character] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(734)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_defer] = ACTIONS(2205), - [anon_sym_errdefer] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(735)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(736)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_anyopaque] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_int] = ACTIONS(1490), - [anon_sym_uint] = ACTIONS(1490), - [anon_sym_float] = ACTIONS(1490), - [anon_sym_range] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_c_char] = ACTIONS(1490), - [anon_sym_c_schar] = ACTIONS(1490), - [anon_sym_c_uchar] = ACTIONS(1490), - [anon_sym_c_short] = ACTIONS(1490), - [anon_sym_c_ushort] = ACTIONS(1490), - [anon_sym_c_int] = ACTIONS(1490), - [anon_sym_c_uint] = ACTIONS(1490), - [anon_sym_c_long] = ACTIONS(1490), - [anon_sym_c_ulong] = ACTIONS(1490), - [anon_sym_c_longlong] = ACTIONS(1490), - [anon_sym_c_ulonglong] = ACTIONS(1490), - [anon_sym_c_float] = ACTIONS(1490), - [anon_sym_c_double] = ACTIONS(1490), - [anon_sym_c_longdouble] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1490), - [anon_sym_unreachable] = ACTIONS(1490), - [anon_sym_undefined] = ACTIONS(1490), - [sym_sink] = ACTIONS(1490), - [sym_integer] = ACTIONS(1490), - [sym_float] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_multiline_string] = ACTIONS(1488), - [sym_character] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(737)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(738)] = { - [sym_variant_payload] = STATE(3181), - [sym_identifier] = ACTIONS(1869), - [anon_sym_func] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_QMARK] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1869), - [anon_sym_noreturn] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_anyopaque] = ACTIONS(1869), - [anon_sym_bool] = ACTIONS(1869), - [anon_sym_int] = ACTIONS(1869), - [anon_sym_uint] = ACTIONS(1869), - [anon_sym_float] = ACTIONS(1869), - [anon_sym_range] = ACTIONS(1869), - [anon_sym_i8] = ACTIONS(1869), - [anon_sym_i16] = ACTIONS(1869), - [anon_sym_i32] = ACTIONS(1869), - [anon_sym_i64] = ACTIONS(1869), - [anon_sym_u8] = ACTIONS(1869), - [anon_sym_u16] = ACTIONS(1869), - [anon_sym_u32] = ACTIONS(1869), - [anon_sym_u64] = ACTIONS(1869), - [anon_sym_isize] = ACTIONS(1869), - [anon_sym_usize] = ACTIONS(1869), - [anon_sym_f32] = ACTIONS(1869), - [anon_sym_f64] = ACTIONS(1869), - [anon_sym_c_char] = ACTIONS(1869), - [anon_sym_c_schar] = ACTIONS(1869), - [anon_sym_c_uchar] = ACTIONS(1869), - [anon_sym_c_short] = ACTIONS(1869), - [anon_sym_c_ushort] = ACTIONS(1869), - [anon_sym_c_int] = ACTIONS(1869), - [anon_sym_c_uint] = ACTIONS(1869), - [anon_sym_c_long] = ACTIONS(1869), - [anon_sym_c_ulong] = ACTIONS(1869), - [anon_sym_c_longlong] = ACTIONS(1869), - [anon_sym_c_ulonglong] = ACTIONS(1869), - [anon_sym_c_float] = ACTIONS(1869), - [anon_sym_c_double] = ACTIONS(1869), - [anon_sym_c_longdouble] = ACTIONS(1869), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_AMP_EQ] = ACTIONS(1492), - [anon_sym_PIPE_EQ] = ACTIONS(1492), - [anon_sym_xor_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_EQ] = ACTIONS(1492), - [anon_sym_GT_GT_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_yield] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_defer] = ACTIONS(1869), - [anon_sym_errdefer] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_expand] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1867), - [anon_sym_orelse] = ACTIONS(1869), - [anon_sym_catch] = ACTIONS(1869), - [anon_sym_or] = ACTIONS(1869), - [anon_sym_and] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1867), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_xor] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_LT_LT_PIPE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [anon_sym_unreachable] = ACTIONS(1869), - [anon_sym_undefined] = ACTIONS(1869), - [sym_sink] = ACTIONS(1869), - [sym_integer] = ACTIONS(1869), - [sym_float] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [sym_multiline_string] = ACTIONS(1867), - [sym_character] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1867), - }, - [STATE(739)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(740)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_anyopaque] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_int] = ACTIONS(1490), - [anon_sym_uint] = ACTIONS(1490), - [anon_sym_float] = ACTIONS(1490), - [anon_sym_range] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_c_char] = ACTIONS(1490), - [anon_sym_c_schar] = ACTIONS(1490), - [anon_sym_c_uchar] = ACTIONS(1490), - [anon_sym_c_short] = ACTIONS(1490), - [anon_sym_c_ushort] = ACTIONS(1490), - [anon_sym_c_int] = ACTIONS(1490), - [anon_sym_c_uint] = ACTIONS(1490), - [anon_sym_c_long] = ACTIONS(1490), - [anon_sym_c_ulong] = ACTIONS(1490), - [anon_sym_c_longlong] = ACTIONS(1490), - [anon_sym_c_ulonglong] = ACTIONS(1490), - [anon_sym_c_float] = ACTIONS(1490), - [anon_sym_c_double] = ACTIONS(1490), - [anon_sym_c_longdouble] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1490), - [anon_sym_unreachable] = ACTIONS(1490), - [anon_sym_undefined] = ACTIONS(1490), - [sym_sink] = ACTIONS(1490), - [sym_integer] = ACTIONS(1490), - [sym_float] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_multiline_string] = ACTIONS(1488), - [sym_character] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(741)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(742)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_defer] = ACTIONS(2205), - [anon_sym_errdefer] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(133), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(743)] = { - [sym_identifier] = ACTIONS(1597), - [anon_sym_func] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_EQ] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_QMARK] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_noreturn] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_anyopaque] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_int] = ACTIONS(1597), - [anon_sym_uint] = ACTIONS(1597), - [anon_sym_float] = ACTIONS(1597), - [anon_sym_range] = ACTIONS(1597), - [anon_sym_i8] = ACTIONS(1597), - [anon_sym_i16] = ACTIONS(1597), - [anon_sym_i32] = ACTIONS(1597), - [anon_sym_i64] = ACTIONS(1597), - [anon_sym_u8] = ACTIONS(1597), - [anon_sym_u16] = ACTIONS(1597), - [anon_sym_u32] = ACTIONS(1597), - [anon_sym_u64] = ACTIONS(1597), - [anon_sym_isize] = ACTIONS(1597), - [anon_sym_usize] = ACTIONS(1597), - [anon_sym_f32] = ACTIONS(1597), - [anon_sym_f64] = ACTIONS(1597), - [anon_sym_c_char] = ACTIONS(1597), - [anon_sym_c_schar] = ACTIONS(1597), - [anon_sym_c_uchar] = ACTIONS(1597), - [anon_sym_c_short] = ACTIONS(1597), - [anon_sym_c_ushort] = ACTIONS(1597), - [anon_sym_c_int] = ACTIONS(1597), - [anon_sym_c_uint] = ACTIONS(1597), - [anon_sym_c_long] = ACTIONS(1597), - [anon_sym_c_ulong] = ACTIONS(1597), - [anon_sym_c_longlong] = ACTIONS(1597), - [anon_sym_c_ulonglong] = ACTIONS(1597), - [anon_sym_c_float] = ACTIONS(1597), - [anon_sym_c_double] = ACTIONS(1597), - [anon_sym_c_longdouble] = ACTIONS(1597), - [anon_sym_PLUS_EQ] = ACTIONS(1595), - [anon_sym_DASH_EQ] = ACTIONS(1595), - [anon_sym_STAR_EQ] = ACTIONS(1595), - [anon_sym_SLASH_EQ] = ACTIONS(1595), - [anon_sym_AMP_EQ] = ACTIONS(1595), - [anon_sym_PIPE_EQ] = ACTIONS(1595), - [anon_sym_xor_EQ] = ACTIONS(1595), - [anon_sym_LT_LT_EQ] = ACTIONS(1595), - [anon_sym_GT_GT_EQ] = ACTIONS(1595), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_yield] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_defer] = ACTIONS(1597), - [anon_sym_errdefer] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_expand] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_match] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1597), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_orelse] = ACTIONS(1597), - [anon_sym_catch] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1595), - [anon_sym_BANG_EQ] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_LT_EQ] = ACTIONS(1595), - [anon_sym_GT] = ACTIONS(1597), - [anon_sym_GT_EQ] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_LT_LT] = ACTIONS(1597), - [anon_sym_GT_GT] = ACTIONS(1597), - [anon_sym_LT_LT_PIPE] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_SLASH] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_DOT] = ACTIONS(1597), - [anon_sym_CARET] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_unreachable] = ACTIONS(1597), - [anon_sym_undefined] = ACTIONS(1597), - [sym_sink] = ACTIONS(1597), - [sym_integer] = ACTIONS(1597), - [sym_float] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_multiline_string] = ACTIONS(1595), - [sym_character] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1595), - }, - [STATE(744)] = { - [sym_identifier] = ACTIONS(1975), - [anon_sym_func] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_QMARK] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1975), - [anon_sym_noreturn] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_anyopaque] = ACTIONS(1975), - [anon_sym_bool] = ACTIONS(1975), - [anon_sym_int] = ACTIONS(1975), - [anon_sym_uint] = ACTIONS(1975), - [anon_sym_float] = ACTIONS(1975), - [anon_sym_range] = ACTIONS(1975), - [anon_sym_i8] = ACTIONS(1975), - [anon_sym_i16] = ACTIONS(1975), - [anon_sym_i32] = ACTIONS(1975), - [anon_sym_i64] = ACTIONS(1975), - [anon_sym_u8] = ACTIONS(1975), - [anon_sym_u16] = ACTIONS(1975), - [anon_sym_u32] = ACTIONS(1975), - [anon_sym_u64] = ACTIONS(1975), - [anon_sym_isize] = ACTIONS(1975), - [anon_sym_usize] = ACTIONS(1975), - [anon_sym_f32] = ACTIONS(1975), - [anon_sym_f64] = ACTIONS(1975), - [anon_sym_c_char] = ACTIONS(1975), - [anon_sym_c_schar] = ACTIONS(1975), - [anon_sym_c_uchar] = ACTIONS(1975), - [anon_sym_c_short] = ACTIONS(1975), - [anon_sym_c_ushort] = ACTIONS(1975), - [anon_sym_c_int] = ACTIONS(1975), - [anon_sym_c_uint] = ACTIONS(1975), - [anon_sym_c_long] = ACTIONS(1975), - [anon_sym_c_ulong] = ACTIONS(1975), - [anon_sym_c_longlong] = ACTIONS(1975), - [anon_sym_c_ulonglong] = ACTIONS(1975), - [anon_sym_c_float] = ACTIONS(1975), - [anon_sym_c_double] = ACTIONS(1975), - [anon_sym_c_longdouble] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1973), - [anon_sym_DASH_EQ] = ACTIONS(1973), - [anon_sym_STAR_EQ] = ACTIONS(1973), - [anon_sym_SLASH_EQ] = ACTIONS(1973), - [anon_sym_AMP_EQ] = ACTIONS(1973), - [anon_sym_PIPE_EQ] = ACTIONS(1973), - [anon_sym_xor_EQ] = ACTIONS(1973), - [anon_sym_LT_LT_EQ] = ACTIONS(1973), - [anon_sym_GT_GT_EQ] = ACTIONS(1973), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_yield] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_defer] = ACTIONS(1975), - [anon_sym_errdefer] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_expand] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), - [anon_sym_orelse] = ACTIONS(1975), - [anon_sym_catch] = ACTIONS(1975), - [anon_sym_or] = ACTIONS(1975), - [anon_sym_and] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1973), - [anon_sym_BANG_EQ] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_EQ] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_xor] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_LT_LT_PIPE] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_TILDE] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1975), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1975), - [anon_sym_unreachable] = ACTIONS(1975), - [anon_sym_undefined] = ACTIONS(1975), - [sym_sink] = ACTIONS(1975), - [sym_integer] = ACTIONS(1975), - [sym_float] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1973), - [sym_multiline_string] = ACTIONS(1973), - [sym_character] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1973), - }, - [STATE(745)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(746)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(747)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2163), - [anon_sym_DASH_EQ] = ACTIONS(2163), - [anon_sym_STAR_EQ] = ACTIONS(2163), - [anon_sym_SLASH_EQ] = ACTIONS(2163), - [anon_sym_AMP_EQ] = ACTIONS(2163), - [anon_sym_PIPE_EQ] = ACTIONS(2163), - [anon_sym_xor_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_errdefer] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2159), - }, - [STATE(748)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_xor_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(749)] = { - [sym_identifier] = ACTIONS(1583), - [anon_sym_func] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_EQ] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_DOLLAR] = ACTIONS(1581), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_noreturn] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_anyopaque] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_range] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_c_char] = ACTIONS(1583), - [anon_sym_c_schar] = ACTIONS(1583), - [anon_sym_c_uchar] = ACTIONS(1583), - [anon_sym_c_short] = ACTIONS(1583), - [anon_sym_c_ushort] = ACTIONS(1583), - [anon_sym_c_int] = ACTIONS(1583), - [anon_sym_c_uint] = ACTIONS(1583), - [anon_sym_c_long] = ACTIONS(1583), - [anon_sym_c_ulong] = ACTIONS(1583), - [anon_sym_c_longlong] = ACTIONS(1583), - [anon_sym_c_ulonglong] = ACTIONS(1583), - [anon_sym_c_float] = ACTIONS(1583), - [anon_sym_c_double] = ACTIONS(1583), - [anon_sym_c_longdouble] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(1581), - [anon_sym_DASH_EQ] = ACTIONS(1581), - [anon_sym_STAR_EQ] = ACTIONS(1581), - [anon_sym_SLASH_EQ] = ACTIONS(1581), - [anon_sym_AMP_EQ] = ACTIONS(1581), - [anon_sym_PIPE_EQ] = ACTIONS(1581), - [anon_sym_xor_EQ] = ACTIONS(1581), - [anon_sym_LT_LT_EQ] = ACTIONS(1581), - [anon_sym_GT_GT_EQ] = ACTIONS(1581), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_errdefer] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_expand] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1581), - [anon_sym_orelse] = ACTIONS(1583), - [anon_sym_catch] = ACTIONS(1583), - [anon_sym_or] = ACTIONS(1583), - [anon_sym_and] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_xor] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1583), - [anon_sym_LT_LT_PIPE] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1583), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_unreachable] = ACTIONS(1583), - [anon_sym_undefined] = ACTIONS(1583), - [sym_sink] = ACTIONS(1583), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [sym_multiline_string] = ACTIONS(1581), - [sym_character] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1581), - }, - [STATE(750)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_defer] = ACTIONS(2205), - [anon_sym_errdefer] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(751)] = { - [sym_identifier] = ACTIONS(1697), - [anon_sym_func] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_anyopaque] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_int] = ACTIONS(1697), - [anon_sym_uint] = ACTIONS(1697), - [anon_sym_float] = ACTIONS(1697), - [anon_sym_range] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_c_char] = ACTIONS(1697), - [anon_sym_c_schar] = ACTIONS(1697), - [anon_sym_c_uchar] = ACTIONS(1697), - [anon_sym_c_short] = ACTIONS(1697), - [anon_sym_c_ushort] = ACTIONS(1697), - [anon_sym_c_int] = ACTIONS(1697), - [anon_sym_c_uint] = ACTIONS(1697), - [anon_sym_c_long] = ACTIONS(1697), - [anon_sym_c_ulong] = ACTIONS(1697), - [anon_sym_c_longlong] = ACTIONS(1697), - [anon_sym_c_ulonglong] = ACTIONS(1697), - [anon_sym_c_float] = ACTIONS(1697), - [anon_sym_c_double] = ACTIONS(1697), - [anon_sym_c_longdouble] = ACTIONS(1697), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_xor_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_yield] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_defer] = ACTIONS(1697), - [anon_sym_errdefer] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_expand] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_orelse] = ACTIONS(1697), - [anon_sym_catch] = ACTIONS(1697), - [anon_sym_or] = ACTIONS(1697), - [anon_sym_and] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_xor] = ACTIONS(1697), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_LT_LT_PIPE] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_true] = ACTIONS(1697), - [anon_sym_false] = ACTIONS(1697), - [anon_sym_null] = ACTIONS(1697), - [anon_sym_unreachable] = ACTIONS(1697), - [anon_sym_undefined] = ACTIONS(1697), - [sym_sink] = ACTIONS(1697), - [sym_integer] = ACTIONS(1697), - [sym_float] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_multiline_string] = ACTIONS(1695), - [sym_character] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1695), - }, - [STATE(752)] = { - [sym_identifier] = ACTIONS(1601), - [anon_sym_func] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_COMMA] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_DOLLAR] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_QMARK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1601), - [anon_sym_noreturn] = ACTIONS(1601), - [anon_sym_type] = ACTIONS(1601), - [anon_sym_anyopaque] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_int] = ACTIONS(1601), - [anon_sym_uint] = ACTIONS(1601), - [anon_sym_float] = ACTIONS(1601), - [anon_sym_range] = ACTIONS(1601), - [anon_sym_i8] = ACTIONS(1601), - [anon_sym_i16] = ACTIONS(1601), - [anon_sym_i32] = ACTIONS(1601), - [anon_sym_i64] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1601), - [anon_sym_u16] = ACTIONS(1601), - [anon_sym_u32] = ACTIONS(1601), - [anon_sym_u64] = ACTIONS(1601), - [anon_sym_isize] = ACTIONS(1601), - [anon_sym_usize] = ACTIONS(1601), - [anon_sym_f32] = ACTIONS(1601), - [anon_sym_f64] = ACTIONS(1601), - [anon_sym_c_char] = ACTIONS(1601), - [anon_sym_c_schar] = ACTIONS(1601), - [anon_sym_c_uchar] = ACTIONS(1601), - [anon_sym_c_short] = ACTIONS(1601), - [anon_sym_c_ushort] = ACTIONS(1601), - [anon_sym_c_int] = ACTIONS(1601), - [anon_sym_c_uint] = ACTIONS(1601), - [anon_sym_c_long] = ACTIONS(1601), - [anon_sym_c_ulong] = ACTIONS(1601), - [anon_sym_c_longlong] = ACTIONS(1601), - [anon_sym_c_ulonglong] = ACTIONS(1601), - [anon_sym_c_float] = ACTIONS(1601), - [anon_sym_c_double] = ACTIONS(1601), - [anon_sym_c_longdouble] = ACTIONS(1601), - [anon_sym_PLUS_EQ] = ACTIONS(1599), - [anon_sym_DASH_EQ] = ACTIONS(1599), - [anon_sym_STAR_EQ] = ACTIONS(1599), - [anon_sym_SLASH_EQ] = ACTIONS(1599), - [anon_sym_AMP_EQ] = ACTIONS(1599), - [anon_sym_PIPE_EQ] = ACTIONS(1599), - [anon_sym_xor_EQ] = ACTIONS(1599), - [anon_sym_LT_LT_EQ] = ACTIONS(1599), - [anon_sym_GT_GT_EQ] = ACTIONS(1599), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_defer] = ACTIONS(1601), - [anon_sym_errdefer] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_expand] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_match] = ACTIONS(1601), - [anon_sym_DOT_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), - [anon_sym_orelse] = ACTIONS(1601), - [anon_sym_catch] = ACTIONS(1601), - [anon_sym_or] = ACTIONS(1601), - [anon_sym_and] = ACTIONS(1601), - [anon_sym_EQ_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1599), - [anon_sym_GT] = ACTIONS(1601), - [anon_sym_GT_EQ] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_xor] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1601), - [anon_sym_GT_GT] = ACTIONS(1601), - [anon_sym_LT_LT_PIPE] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_DOT] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [anon_sym_null] = ACTIONS(1601), - [anon_sym_unreachable] = ACTIONS(1601), - [anon_sym_undefined] = ACTIONS(1601), - [sym_sink] = ACTIONS(1601), - [sym_integer] = ACTIONS(1601), - [sym_float] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_multiline_string] = ACTIONS(1599), - [sym_character] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1599), - }, - [STATE(753)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_xor_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(754)] = { - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_import] = ACTIONS(1511), - [anon_sym_test] = ACTIONS(1511), - [anon_sym_hide] = ACTIONS(1511), - [anon_sym_func] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_noreturn] = ACTIONS(1511), - [anon_sym_type] = ACTIONS(1511), - [anon_sym_anyopaque] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_range] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_c_char] = ACTIONS(1511), - [anon_sym_c_schar] = ACTIONS(1511), - [anon_sym_c_uchar] = ACTIONS(1511), - [anon_sym_c_short] = ACTIONS(1511), - [anon_sym_c_ushort] = ACTIONS(1511), - [anon_sym_c_int] = ACTIONS(1511), - [anon_sym_c_uint] = ACTIONS(1511), - [anon_sym_c_long] = ACTIONS(1511), - [anon_sym_c_ulong] = ACTIONS(1511), - [anon_sym_c_longlong] = ACTIONS(1511), - [anon_sym_c_ulonglong] = ACTIONS(1511), - [anon_sym_c_float] = ACTIONS(1511), - [anon_sym_c_double] = ACTIONS(1511), - [anon_sym_c_longdouble] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_yield] = ACTIONS(1511), - [anon_sym_COLON] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_defer] = ACTIONS(1511), - [anon_sym_errdefer] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_else] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_expand] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_orelse] = ACTIONS(1511), - [anon_sym_catch] = ACTIONS(1511), - [anon_sym_or] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_xor] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_LT_LT_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_unreachable] = ACTIONS(1511), - [anon_sym_undefined] = ACTIONS(1511), - [sym_sink] = ACTIONS(1511), - [sym_integer] = ACTIONS(1511), - [sym_float] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_multiline_string] = ACTIONS(1509), - [sym_character] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1509), - }, - [STATE(755)] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_test] = ACTIONS(1737), - [anon_sym_hide] = ACTIONS(1737), - [anon_sym_func] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_noreturn] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_anyopaque] = ACTIONS(1737), - [anon_sym_bool] = ACTIONS(1737), - [anon_sym_int] = ACTIONS(1737), - [anon_sym_uint] = ACTIONS(1737), - [anon_sym_float] = ACTIONS(1737), - [anon_sym_range] = ACTIONS(1737), - [anon_sym_i8] = ACTIONS(1737), - [anon_sym_i16] = ACTIONS(1737), - [anon_sym_i32] = ACTIONS(1737), - [anon_sym_i64] = ACTIONS(1737), - [anon_sym_u8] = ACTIONS(1737), - [anon_sym_u16] = ACTIONS(1737), - [anon_sym_u32] = ACTIONS(1737), - [anon_sym_u64] = ACTIONS(1737), - [anon_sym_isize] = ACTIONS(1737), - [anon_sym_usize] = ACTIONS(1737), - [anon_sym_f32] = ACTIONS(1737), - [anon_sym_f64] = ACTIONS(1737), - [anon_sym_c_char] = ACTIONS(1737), - [anon_sym_c_schar] = ACTIONS(1737), - [anon_sym_c_uchar] = ACTIONS(1737), - [anon_sym_c_short] = ACTIONS(1737), - [anon_sym_c_ushort] = ACTIONS(1737), - [anon_sym_c_int] = ACTIONS(1737), - [anon_sym_c_uint] = ACTIONS(1737), - [anon_sym_c_long] = ACTIONS(1737), - [anon_sym_c_ulong] = ACTIONS(1737), - [anon_sym_c_longlong] = ACTIONS(1737), - [anon_sym_c_ulonglong] = ACTIONS(1737), - [anon_sym_c_float] = ACTIONS(1737), - [anon_sym_c_double] = ACTIONS(1737), - [anon_sym_c_longdouble] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_COLON] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_defer] = ACTIONS(1737), - [anon_sym_errdefer] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_expand] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_orelse] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_or] = ACTIONS(1737), - [anon_sym_and] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1737), - [anon_sym_GT_GT] = ACTIONS(1735), - [anon_sym_LT_LT_PIPE] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_unreachable] = ACTIONS(1737), - [anon_sym_undefined] = ACTIONS(1737), - [sym_sink] = ACTIONS(1737), - [sym_integer] = ACTIONS(1737), - [sym_float] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_multiline_string] = ACTIONS(1735), - [sym_character] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1735), - }, - [STATE(756)] = { - [ts_builtin_sym_end] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2043), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_import] = ACTIONS(2043), - [anon_sym_test] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_func] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_void] = ACTIONS(2043), - [anon_sym_noreturn] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_anyopaque] = ACTIONS(2043), - [anon_sym_bool] = ACTIONS(2043), - [anon_sym_int] = ACTIONS(2043), - [anon_sym_uint] = ACTIONS(2043), - [anon_sym_float] = ACTIONS(2043), - [anon_sym_range] = ACTIONS(2043), - [anon_sym_i8] = ACTIONS(2043), - [anon_sym_i16] = ACTIONS(2043), - [anon_sym_i32] = ACTIONS(2043), - [anon_sym_i64] = ACTIONS(2043), - [anon_sym_u8] = ACTIONS(2043), - [anon_sym_u16] = ACTIONS(2043), - [anon_sym_u32] = ACTIONS(2043), - [anon_sym_u64] = ACTIONS(2043), - [anon_sym_isize] = ACTIONS(2043), - [anon_sym_usize] = ACTIONS(2043), - [anon_sym_f32] = ACTIONS(2043), - [anon_sym_f64] = ACTIONS(2043), - [anon_sym_c_char] = ACTIONS(2043), - [anon_sym_c_schar] = ACTIONS(2043), - [anon_sym_c_uchar] = ACTIONS(2043), - [anon_sym_c_short] = ACTIONS(2043), - [anon_sym_c_ushort] = ACTIONS(2043), - [anon_sym_c_int] = ACTIONS(2043), - [anon_sym_c_uint] = ACTIONS(2043), - [anon_sym_c_long] = ACTIONS(2043), - [anon_sym_c_ulong] = ACTIONS(2043), - [anon_sym_c_longlong] = ACTIONS(2043), - [anon_sym_c_ulonglong] = ACTIONS(2043), - [anon_sym_c_float] = ACTIONS(2043), - [anon_sym_c_double] = ACTIONS(2043), - [anon_sym_c_longdouble] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_yield] = ACTIONS(2043), - [anon_sym_COLON] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_defer] = ACTIONS(2043), - [anon_sym_errdefer] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_expand] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2041), - [anon_sym_orelse] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_or] = ACTIONS(2043), - [anon_sym_and] = ACTIONS(2043), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_xor] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2043), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_LT_LT_PIPE] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_DOT] = ACTIONS(2043), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [anon_sym_null] = ACTIONS(2043), - [anon_sym_unreachable] = ACTIONS(2043), - [anon_sym_undefined] = ACTIONS(2043), - [sym_sink] = ACTIONS(2043), - [sym_integer] = ACTIONS(2043), - [sym_float] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym_multiline_string] = ACTIONS(2041), - [sym_character] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2041), - }, - [STATE(757)] = { - [ts_builtin_sym_end] = ACTIONS(1505), - [sym_identifier] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1505), - [anon_sym_import] = ACTIONS(1507), - [anon_sym_test] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_func] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_noreturn] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1507), - [anon_sym_anyopaque] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_range] = ACTIONS(1507), - [anon_sym_i8] = ACTIONS(1507), - [anon_sym_i16] = ACTIONS(1507), - [anon_sym_i32] = ACTIONS(1507), - [anon_sym_i64] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1507), - [anon_sym_u16] = ACTIONS(1507), - [anon_sym_u32] = ACTIONS(1507), - [anon_sym_u64] = ACTIONS(1507), - [anon_sym_isize] = ACTIONS(1507), - [anon_sym_usize] = ACTIONS(1507), - [anon_sym_f32] = ACTIONS(1507), - [anon_sym_f64] = ACTIONS(1507), - [anon_sym_c_char] = ACTIONS(1507), - [anon_sym_c_schar] = ACTIONS(1507), - [anon_sym_c_uchar] = ACTIONS(1507), - [anon_sym_c_short] = ACTIONS(1507), - [anon_sym_c_ushort] = ACTIONS(1507), - [anon_sym_c_int] = ACTIONS(1507), - [anon_sym_c_uint] = ACTIONS(1507), - [anon_sym_c_long] = ACTIONS(1507), - [anon_sym_c_ulong] = ACTIONS(1507), - [anon_sym_c_longlong] = ACTIONS(1507), - [anon_sym_c_ulonglong] = ACTIONS(1507), - [anon_sym_c_float] = ACTIONS(1507), - [anon_sym_c_double] = ACTIONS(1507), - [anon_sym_c_longdouble] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_yield] = ACTIONS(1507), - [anon_sym_COLON] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_defer] = ACTIONS(1507), - [anon_sym_errdefer] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_else] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_expand] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [anon_sym_orelse] = ACTIONS(1507), - [anon_sym_catch] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_LT_LT_PIPE] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_unreachable] = ACTIONS(1507), - [anon_sym_undefined] = ACTIONS(1507), - [sym_sink] = ACTIONS(1507), - [sym_integer] = ACTIONS(1507), - [sym_float] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym_multiline_string] = ACTIONS(1505), - [sym_character] = ACTIONS(1505), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1505), - }, - [STATE(758)] = { - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_test] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_func] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_EQ] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_QMARK] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_void] = ACTIONS(1879), - [anon_sym_noreturn] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_anyopaque] = ACTIONS(1879), - [anon_sym_bool] = ACTIONS(1879), - [anon_sym_int] = ACTIONS(1879), - [anon_sym_uint] = ACTIONS(1879), - [anon_sym_float] = ACTIONS(1879), - [anon_sym_range] = ACTIONS(1879), - [anon_sym_i8] = ACTIONS(1879), - [anon_sym_i16] = ACTIONS(1879), - [anon_sym_i32] = ACTIONS(1879), - [anon_sym_i64] = ACTIONS(1879), - [anon_sym_u8] = ACTIONS(1879), - [anon_sym_u16] = ACTIONS(1879), - [anon_sym_u32] = ACTIONS(1879), - [anon_sym_u64] = ACTIONS(1879), - [anon_sym_isize] = ACTIONS(1879), - [anon_sym_usize] = ACTIONS(1879), - [anon_sym_f32] = ACTIONS(1879), - [anon_sym_f64] = ACTIONS(1879), - [anon_sym_c_char] = ACTIONS(1879), - [anon_sym_c_schar] = ACTIONS(1879), - [anon_sym_c_uchar] = ACTIONS(1879), - [anon_sym_c_short] = ACTIONS(1879), - [anon_sym_c_ushort] = ACTIONS(1879), - [anon_sym_c_int] = ACTIONS(1879), - [anon_sym_c_uint] = ACTIONS(1879), - [anon_sym_c_long] = ACTIONS(1879), - [anon_sym_c_ulong] = ACTIONS(1879), - [anon_sym_c_longlong] = ACTIONS(1879), - [anon_sym_c_ulonglong] = ACTIONS(1879), - [anon_sym_c_float] = ACTIONS(1879), - [anon_sym_c_double] = ACTIONS(1879), - [anon_sym_c_longdouble] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_COLON] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_defer] = ACTIONS(1879), - [anon_sym_errdefer] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_expand] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_orelse] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_or] = ACTIONS(1879), - [anon_sym_and] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1877), - [anon_sym_BANG_EQ] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1877), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_xor] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1877), - [anon_sym_LT_LT_PIPE] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1879), - [anon_sym_false] = ACTIONS(1879), - [anon_sym_null] = ACTIONS(1879), - [anon_sym_unreachable] = ACTIONS(1879), - [anon_sym_undefined] = ACTIONS(1879), - [sym_sink] = ACTIONS(1879), - [sym_integer] = ACTIONS(1879), - [sym_float] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym_multiline_string] = ACTIONS(1877), - [sym_character] = ACTIONS(1877), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), - }, - [STATE(759)] = { - [ts_builtin_sym_end] = ACTIONS(1517), - [sym_identifier] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_import] = ACTIONS(1519), - [anon_sym_test] = ACTIONS(1519), - [anon_sym_hide] = ACTIONS(1519), - [anon_sym_func] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_EQ] = ACTIONS(1519), - [anon_sym_struct] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_RPAREN] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_COMMA] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_noreturn] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_anyopaque] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_range] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_c_char] = ACTIONS(1519), - [anon_sym_c_schar] = ACTIONS(1519), - [anon_sym_c_uchar] = ACTIONS(1519), - [anon_sym_c_short] = ACTIONS(1519), - [anon_sym_c_ushort] = ACTIONS(1519), - [anon_sym_c_int] = ACTIONS(1519), - [anon_sym_c_uint] = ACTIONS(1519), - [anon_sym_c_long] = ACTIONS(1519), - [anon_sym_c_ulong] = ACTIONS(1519), - [anon_sym_c_longlong] = ACTIONS(1519), - [anon_sym_c_ulonglong] = ACTIONS(1519), - [anon_sym_c_float] = ACTIONS(1519), - [anon_sym_c_double] = ACTIONS(1519), - [anon_sym_c_longdouble] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_COLON] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_errdefer] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_expand] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_orelse] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_LT_LT_PIPE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_unreachable] = ACTIONS(1519), - [anon_sym_undefined] = ACTIONS(1519), - [sym_sink] = ACTIONS(1519), - [sym_integer] = ACTIONS(1519), - [sym_float] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym_multiline_string] = ACTIONS(1517), - [sym_character] = ACTIONS(1517), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1517), - }, - [STATE(760)] = { - [ts_builtin_sym_end] = ACTIONS(1553), - [sym_identifier] = ACTIONS(1555), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_import] = ACTIONS(1555), - [anon_sym_test] = ACTIONS(1555), - [anon_sym_hide] = ACTIONS(1555), - [anon_sym_func] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_QMARK] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_noreturn] = ACTIONS(1555), - [anon_sym_type] = ACTIONS(1555), - [anon_sym_anyopaque] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_range] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_c_char] = ACTIONS(1555), - [anon_sym_c_schar] = ACTIONS(1555), - [anon_sym_c_uchar] = ACTIONS(1555), - [anon_sym_c_short] = ACTIONS(1555), - [anon_sym_c_ushort] = ACTIONS(1555), - [anon_sym_c_int] = ACTIONS(1555), - [anon_sym_c_uint] = ACTIONS(1555), - [anon_sym_c_long] = ACTIONS(1555), - [anon_sym_c_ulong] = ACTIONS(1555), - [anon_sym_c_longlong] = ACTIONS(1555), - [anon_sym_c_ulonglong] = ACTIONS(1555), - [anon_sym_c_float] = ACTIONS(1555), - [anon_sym_c_double] = ACTIONS(1555), - [anon_sym_c_longdouble] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(1555), - [anon_sym_COLON] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_defer] = ACTIONS(1555), - [anon_sym_errdefer] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_expand] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_orelse] = ACTIONS(1555), - [anon_sym_catch] = ACTIONS(1555), - [anon_sym_or] = ACTIONS(1555), - [anon_sym_and] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1553), - [anon_sym_BANG_EQ] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(1553), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_GT_EQ] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_xor] = ACTIONS(1555), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1553), - [anon_sym_LT_LT_PIPE] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1555), - [anon_sym_DOT] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_unreachable] = ACTIONS(1555), - [anon_sym_undefined] = ACTIONS(1555), - [sym_sink] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym_multiline_string] = ACTIONS(1553), - [sym_character] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1553), - }, - [STATE(761)] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(1567), - [anon_sym_test] = ACTIONS(1567), - [anon_sym_hide] = ACTIONS(1567), - [anon_sym_func] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_EQ] = ACTIONS(1567), - [anon_sym_struct] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_QMARK] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_noreturn] = ACTIONS(1567), - [anon_sym_type] = 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(1567), - [anon_sym_yield] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_defer] = ACTIONS(1567), - [anon_sym_errdefer] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_else] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_expand] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_orelse] = ACTIONS(1567), - [anon_sym_catch] = ACTIONS(1567), - [anon_sym_or] = ACTIONS(1567), - [anon_sym_and] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_BANG_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_LT_EQ] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_EQ] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_xor] = ACTIONS(1567), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_LT_LT_PIPE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_DOT] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [anon_sym_unreachable] = ACTIONS(1567), - [anon_sym_undefined] = ACTIONS(1567), - [sym_sink] = ACTIONS(1567), - [sym_integer] = ACTIONS(1567), - [sym_float] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym_multiline_string] = ACTIONS(1565), - [sym_character] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1565), - }, - [STATE(762)] = { - [ts_builtin_sym_end] = ACTIONS(1569), - [sym_identifier] = ACTIONS(1571), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_import] = ACTIONS(1571), - [anon_sym_test] = ACTIONS(1571), - [anon_sym_hide] = ACTIONS(1571), - [anon_sym_func] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_EQ] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_COMMA] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_noreturn] = ACTIONS(1571), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_anyopaque] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_range] = ACTIONS(1571), - [anon_sym_i8] = ACTIONS(1571), - [anon_sym_i16] = ACTIONS(1571), - [anon_sym_i32] = ACTIONS(1571), - [anon_sym_i64] = ACTIONS(1571), - [anon_sym_u8] = ACTIONS(1571), - [anon_sym_u16] = ACTIONS(1571), - [anon_sym_u32] = ACTIONS(1571), - [anon_sym_u64] = ACTIONS(1571), - [anon_sym_isize] = ACTIONS(1571), - [anon_sym_usize] = ACTIONS(1571), - [anon_sym_f32] = ACTIONS(1571), - [anon_sym_f64] = ACTIONS(1571), - [anon_sym_c_char] = ACTIONS(1571), - [anon_sym_c_schar] = ACTIONS(1571), - [anon_sym_c_uchar] = ACTIONS(1571), - [anon_sym_c_short] = ACTIONS(1571), - [anon_sym_c_ushort] = ACTIONS(1571), - [anon_sym_c_int] = ACTIONS(1571), - [anon_sym_c_uint] = ACTIONS(1571), - [anon_sym_c_long] = ACTIONS(1571), - [anon_sym_c_ulong] = ACTIONS(1571), - [anon_sym_c_longlong] = ACTIONS(1571), - [anon_sym_c_ulonglong] = ACTIONS(1571), - [anon_sym_c_float] = ACTIONS(1571), - [anon_sym_c_double] = ACTIONS(1571), - [anon_sym_c_longdouble] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_yield] = ACTIONS(1571), - [anon_sym_COLON] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_defer] = ACTIONS(1571), - [anon_sym_errdefer] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_else] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_expand] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_orelse] = ACTIONS(1571), - [anon_sym_catch] = ACTIONS(1571), - [anon_sym_or] = ACTIONS(1571), - [anon_sym_and] = ACTIONS(1571), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_BANG_EQ] = ACTIONS(1569), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_LT_EQ] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_xor] = ACTIONS(1571), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(1569), - [anon_sym_LT_LT_PIPE] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_SLASH] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [anon_sym_unreachable] = ACTIONS(1571), - [anon_sym_undefined] = ACTIONS(1571), - [sym_sink] = ACTIONS(1571), - [sym_integer] = ACTIONS(1571), - [sym_float] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym_multiline_string] = ACTIONS(1569), - [sym_character] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1569), - }, - [STATE(763)] = { - [ts_builtin_sym_end] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1587), - [anon_sym_COLON_COLON] = ACTIONS(1585), - [anon_sym_import] = ACTIONS(1587), - [anon_sym_test] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_func] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_EQ] = ACTIONS(1587), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_QMARK] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_noreturn] = ACTIONS(1587), - [anon_sym_type] = ACTIONS(1587), - [anon_sym_anyopaque] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_range] = ACTIONS(1587), - [anon_sym_i8] = ACTIONS(1587), - [anon_sym_i16] = ACTIONS(1587), - [anon_sym_i32] = ACTIONS(1587), - [anon_sym_i64] = ACTIONS(1587), - [anon_sym_u8] = ACTIONS(1587), - [anon_sym_u16] = ACTIONS(1587), - [anon_sym_u32] = ACTIONS(1587), - [anon_sym_u64] = ACTIONS(1587), - [anon_sym_isize] = ACTIONS(1587), - [anon_sym_usize] = ACTIONS(1587), - [anon_sym_f32] = ACTIONS(1587), - [anon_sym_f64] = ACTIONS(1587), - [anon_sym_c_char] = ACTIONS(1587), - [anon_sym_c_schar] = ACTIONS(1587), - [anon_sym_c_uchar] = ACTIONS(1587), - [anon_sym_c_short] = ACTIONS(1587), - [anon_sym_c_ushort] = ACTIONS(1587), - [anon_sym_c_int] = ACTIONS(1587), - [anon_sym_c_uint] = ACTIONS(1587), - [anon_sym_c_long] = ACTIONS(1587), - [anon_sym_c_ulong] = ACTIONS(1587), - [anon_sym_c_longlong] = ACTIONS(1587), - [anon_sym_c_ulonglong] = ACTIONS(1587), - [anon_sym_c_float] = ACTIONS(1587), - [anon_sym_c_double] = ACTIONS(1587), - [anon_sym_c_longdouble] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_yield] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_defer] = ACTIONS(1587), - [anon_sym_errdefer] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_expand] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_orelse] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1585), - [anon_sym_BANG_EQ] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_LT_LT] = ACTIONS(1587), - [anon_sym_GT_GT] = ACTIONS(1585), - [anon_sym_LT_LT_PIPE] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1587), - [anon_sym_CARET] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_unreachable] = ACTIONS(1587), - [anon_sym_undefined] = ACTIONS(1587), - [sym_sink] = ACTIONS(1587), - [sym_integer] = ACTIONS(1587), - [sym_float] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [sym_multiline_string] = ACTIONS(1585), - [sym_character] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1585), - }, - [STATE(764)] = { - [ts_builtin_sym_end] = ACTIONS(1615), - [sym_identifier] = ACTIONS(1617), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(1617), - [anon_sym_test] = ACTIONS(1617), - [anon_sym_hide] = ACTIONS(1617), - [anon_sym_func] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_RPAREN] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_COMMA] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_DOLLAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1615), - [anon_sym_QMARK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_noreturn] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_anyopaque] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_range] = ACTIONS(1617), - [anon_sym_i8] = ACTIONS(1617), - [anon_sym_i16] = ACTIONS(1617), - [anon_sym_i32] = ACTIONS(1617), - [anon_sym_i64] = ACTIONS(1617), - [anon_sym_u8] = ACTIONS(1617), - [anon_sym_u16] = ACTIONS(1617), - [anon_sym_u32] = ACTIONS(1617), - [anon_sym_u64] = ACTIONS(1617), - [anon_sym_isize] = ACTIONS(1617), - [anon_sym_usize] = ACTIONS(1617), - [anon_sym_f32] = ACTIONS(1617), - [anon_sym_f64] = ACTIONS(1617), - [anon_sym_c_char] = ACTIONS(1617), - [anon_sym_c_schar] = ACTIONS(1617), - [anon_sym_c_uchar] = ACTIONS(1617), - [anon_sym_c_short] = ACTIONS(1617), - [anon_sym_c_ushort] = ACTIONS(1617), - [anon_sym_c_int] = ACTIONS(1617), - [anon_sym_c_uint] = ACTIONS(1617), - [anon_sym_c_long] = ACTIONS(1617), - [anon_sym_c_ulong] = ACTIONS(1617), - [anon_sym_c_longlong] = ACTIONS(1617), - [anon_sym_c_ulonglong] = ACTIONS(1617), - [anon_sym_c_float] = ACTIONS(1617), - [anon_sym_c_double] = ACTIONS(1617), - [anon_sym_c_longdouble] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1617), - [anon_sym_COLON] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_defer] = ACTIONS(1617), - [anon_sym_errdefer] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_else] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_expand] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1615), - [anon_sym_orelse] = ACTIONS(1617), - [anon_sym_catch] = ACTIONS(1617), - [anon_sym_or] = ACTIONS(1617), - [anon_sym_and] = ACTIONS(1617), - [anon_sym_EQ_EQ] = ACTIONS(1615), - [anon_sym_BANG_EQ] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_LT_EQ] = ACTIONS(1615), - [anon_sym_GT] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_xor] = ACTIONS(1617), - [anon_sym_LT_LT] = ACTIONS(1617), - [anon_sym_GT_GT] = ACTIONS(1615), - [anon_sym_LT_LT_PIPE] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_SLASH] = ACTIONS(1615), - [anon_sym_TILDE] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_unreachable] = ACTIONS(1617), - [anon_sym_undefined] = ACTIONS(1617), - [sym_sink] = ACTIONS(1617), - [sym_integer] = ACTIONS(1617), - [sym_float] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [sym_multiline_string] = ACTIONS(1615), - [sym_character] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1615), - }, - [STATE(765)] = { - [ts_builtin_sym_end] = ACTIONS(1619), - [sym_identifier] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1619), - [anon_sym_import] = ACTIONS(1621), - [anon_sym_test] = ACTIONS(1621), - [anon_sym_hide] = ACTIONS(1621), - [anon_sym_func] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_EQ] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_RPAREN] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_DOLLAR] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_noreturn] = ACTIONS(1621), - [anon_sym_type] = ACTIONS(1621), - [anon_sym_anyopaque] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_int] = ACTIONS(1621), - [anon_sym_uint] = ACTIONS(1621), - [anon_sym_float] = ACTIONS(1621), - [anon_sym_range] = ACTIONS(1621), - [anon_sym_i8] = ACTIONS(1621), - [anon_sym_i16] = ACTIONS(1621), - [anon_sym_i32] = ACTIONS(1621), - [anon_sym_i64] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1621), - [anon_sym_u16] = ACTIONS(1621), - [anon_sym_u32] = ACTIONS(1621), - [anon_sym_u64] = ACTIONS(1621), - [anon_sym_isize] = ACTIONS(1621), - [anon_sym_usize] = ACTIONS(1621), - [anon_sym_f32] = ACTIONS(1621), - [anon_sym_f64] = ACTIONS(1621), - [anon_sym_c_char] = ACTIONS(1621), - [anon_sym_c_schar] = ACTIONS(1621), - [anon_sym_c_uchar] = ACTIONS(1621), - [anon_sym_c_short] = ACTIONS(1621), - [anon_sym_c_ushort] = ACTIONS(1621), - [anon_sym_c_int] = ACTIONS(1621), - [anon_sym_c_uint] = ACTIONS(1621), - [anon_sym_c_long] = ACTIONS(1621), - [anon_sym_c_ulong] = ACTIONS(1621), - [anon_sym_c_longlong] = ACTIONS(1621), - [anon_sym_c_ulonglong] = ACTIONS(1621), - [anon_sym_c_float] = ACTIONS(1621), - [anon_sym_c_double] = ACTIONS(1621), - [anon_sym_c_longdouble] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_yield] = ACTIONS(1621), - [anon_sym_COLON] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_defer] = ACTIONS(1621), - [anon_sym_errdefer] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_expand] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), - [anon_sym_orelse] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_or] = ACTIONS(1621), - [anon_sym_and] = ACTIONS(1621), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_xor] = ACTIONS(1621), - [anon_sym_LT_LT] = ACTIONS(1621), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_TILDE] = ACTIONS(1619), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_DOT] = ACTIONS(1621), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1621), - [anon_sym_unreachable] = ACTIONS(1621), - [anon_sym_undefined] = ACTIONS(1621), - [sym_sink] = ACTIONS(1621), - [sym_integer] = ACTIONS(1621), - [sym_float] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [sym_multiline_string] = ACTIONS(1619), - [sym_character] = ACTIONS(1619), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1619), - }, - [STATE(766)] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1625), - [anon_sym_COLON_COLON] = ACTIONS(1623), - [anon_sym_import] = ACTIONS(1625), - [anon_sym_test] = ACTIONS(1625), - [anon_sym_hide] = ACTIONS(1625), - [anon_sym_func] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_DOLLAR] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_QMARK] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_noreturn] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_anyopaque] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_int] = ACTIONS(1625), - [anon_sym_uint] = ACTIONS(1625), - [anon_sym_float] = ACTIONS(1625), - [anon_sym_range] = ACTIONS(1625), - [anon_sym_i8] = ACTIONS(1625), - [anon_sym_i16] = ACTIONS(1625), - [anon_sym_i32] = ACTIONS(1625), - [anon_sym_i64] = ACTIONS(1625), - [anon_sym_u8] = ACTIONS(1625), - [anon_sym_u16] = ACTIONS(1625), - [anon_sym_u32] = ACTIONS(1625), - [anon_sym_u64] = ACTIONS(1625), - [anon_sym_isize] = ACTIONS(1625), - [anon_sym_usize] = ACTIONS(1625), - [anon_sym_f32] = ACTIONS(1625), - [anon_sym_f64] = ACTIONS(1625), - [anon_sym_c_char] = ACTIONS(1625), - [anon_sym_c_schar] = ACTIONS(1625), - [anon_sym_c_uchar] = ACTIONS(1625), - [anon_sym_c_short] = ACTIONS(1625), - [anon_sym_c_ushort] = ACTIONS(1625), - [anon_sym_c_int] = ACTIONS(1625), - [anon_sym_c_uint] = ACTIONS(1625), - [anon_sym_c_long] = ACTIONS(1625), - [anon_sym_c_ulong] = ACTIONS(1625), - [anon_sym_c_longlong] = ACTIONS(1625), - [anon_sym_c_ulonglong] = ACTIONS(1625), - [anon_sym_c_float] = ACTIONS(1625), - [anon_sym_c_double] = ACTIONS(1625), - [anon_sym_c_longdouble] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_yield] = ACTIONS(1625), - [anon_sym_COLON] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_defer] = ACTIONS(1625), - [anon_sym_errdefer] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_expand] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), - [anon_sym_orelse] = ACTIONS(1625), - [anon_sym_catch] = ACTIONS(1625), - [anon_sym_or] = ACTIONS(1625), - [anon_sym_and] = ACTIONS(1625), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1625), - [anon_sym_GT_GT] = ACTIONS(1623), - [anon_sym_LT_LT_PIPE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_SLASH] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_null] = ACTIONS(1625), - [anon_sym_unreachable] = ACTIONS(1625), - [anon_sym_undefined] = ACTIONS(1625), - [sym_sink] = ACTIONS(1625), - [sym_integer] = ACTIONS(1625), - [sym_float] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_multiline_string] = ACTIONS(1623), - [sym_character] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1623), - }, - [STATE(767)] = { - [ts_builtin_sym_end] = ACTIONS(1627), - [sym_identifier] = ACTIONS(1629), - [anon_sym_COLON_COLON] = ACTIONS(1627), - [anon_sym_import] = ACTIONS(1629), - [anon_sym_test] = ACTIONS(1629), - [anon_sym_hide] = ACTIONS(1629), - [anon_sym_func] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_EQ] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_DOLLAR] = ACTIONS(1627), - [anon_sym_PIPE] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1629), - [anon_sym_noreturn] = ACTIONS(1629), - [anon_sym_type] = ACTIONS(1629), - [anon_sym_anyopaque] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_int] = ACTIONS(1629), - [anon_sym_uint] = ACTIONS(1629), - [anon_sym_float] = ACTIONS(1629), - [anon_sym_range] = ACTIONS(1629), - [anon_sym_i8] = ACTIONS(1629), - [anon_sym_i16] = ACTIONS(1629), - [anon_sym_i32] = ACTIONS(1629), - [anon_sym_i64] = ACTIONS(1629), - [anon_sym_u8] = ACTIONS(1629), - [anon_sym_u16] = ACTIONS(1629), - [anon_sym_u32] = ACTIONS(1629), - [anon_sym_u64] = ACTIONS(1629), - [anon_sym_isize] = ACTIONS(1629), - [anon_sym_usize] = ACTIONS(1629), - [anon_sym_f32] = ACTIONS(1629), - [anon_sym_f64] = ACTIONS(1629), - [anon_sym_c_char] = ACTIONS(1629), - [anon_sym_c_schar] = ACTIONS(1629), - [anon_sym_c_uchar] = ACTIONS(1629), - [anon_sym_c_short] = ACTIONS(1629), - [anon_sym_c_ushort] = ACTIONS(1629), - [anon_sym_c_int] = ACTIONS(1629), - [anon_sym_c_uint] = ACTIONS(1629), - [anon_sym_c_long] = ACTIONS(1629), - [anon_sym_c_ulong] = ACTIONS(1629), - [anon_sym_c_longlong] = ACTIONS(1629), - [anon_sym_c_ulonglong] = ACTIONS(1629), - [anon_sym_c_float] = ACTIONS(1629), - [anon_sym_c_double] = ACTIONS(1629), - [anon_sym_c_longdouble] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_yield] = ACTIONS(1629), - [anon_sym_COLON] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_defer] = ACTIONS(1629), - [anon_sym_errdefer] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_else] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_expand] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_match] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1627), - [anon_sym_orelse] = ACTIONS(1629), - [anon_sym_catch] = ACTIONS(1629), - [anon_sym_or] = ACTIONS(1629), - [anon_sym_and] = ACTIONS(1629), - [anon_sym_EQ_EQ] = ACTIONS(1627), - [anon_sym_BANG_EQ] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1629), - [anon_sym_LT_EQ] = ACTIONS(1627), - [anon_sym_GT] = ACTIONS(1629), - [anon_sym_GT_EQ] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_xor] = ACTIONS(1629), - [anon_sym_LT_LT] = ACTIONS(1629), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_LT_LT_PIPE] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_SLASH] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_try] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(1629), - [anon_sym_CARET] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_unreachable] = ACTIONS(1629), - [anon_sym_undefined] = ACTIONS(1629), - [sym_sink] = ACTIONS(1629), - [sym_integer] = ACTIONS(1629), - [sym_float] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [sym_multiline_string] = ACTIONS(1627), - [sym_character] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1627), - }, - [STATE(768)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(1415), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_test] = ACTIONS(2205), - [anon_sym_hide] = ACTIONS(2205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(769)] = { - [ts_builtin_sym_end] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1637), - [anon_sym_COLON_COLON] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1637), - [anon_sym_test] = ACTIONS(1637), - [anon_sym_hide] = ACTIONS(1637), - [anon_sym_func] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_EQ] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_COMMA] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_DOLLAR] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1635), - [anon_sym_QMARK] = ACTIONS(1635), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_noreturn] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_anyopaque] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_int] = ACTIONS(1637), - [anon_sym_uint] = ACTIONS(1637), - [anon_sym_float] = ACTIONS(1637), - [anon_sym_range] = ACTIONS(1637), - [anon_sym_i8] = ACTIONS(1637), - [anon_sym_i16] = ACTIONS(1637), - [anon_sym_i32] = ACTIONS(1637), - [anon_sym_i64] = ACTIONS(1637), - [anon_sym_u8] = ACTIONS(1637), - [anon_sym_u16] = ACTIONS(1637), - [anon_sym_u32] = ACTIONS(1637), - [anon_sym_u64] = ACTIONS(1637), - [anon_sym_isize] = ACTIONS(1637), - [anon_sym_usize] = ACTIONS(1637), - [anon_sym_f32] = ACTIONS(1637), - [anon_sym_f64] = ACTIONS(1637), - [anon_sym_c_char] = ACTIONS(1637), - [anon_sym_c_schar] = ACTIONS(1637), - [anon_sym_c_uchar] = ACTIONS(1637), - [anon_sym_c_short] = ACTIONS(1637), - [anon_sym_c_ushort] = ACTIONS(1637), - [anon_sym_c_int] = ACTIONS(1637), - [anon_sym_c_uint] = ACTIONS(1637), - [anon_sym_c_long] = ACTIONS(1637), - [anon_sym_c_ulong] = ACTIONS(1637), - [anon_sym_c_longlong] = ACTIONS(1637), - [anon_sym_c_ulonglong] = ACTIONS(1637), - [anon_sym_c_float] = ACTIONS(1637), - [anon_sym_c_double] = ACTIONS(1637), - [anon_sym_c_longdouble] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1637), - [anon_sym_COLON] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_defer] = ACTIONS(1637), - [anon_sym_errdefer] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_expand] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1635), - [anon_sym_orelse] = ACTIONS(1637), - [anon_sym_catch] = ACTIONS(1637), - [anon_sym_or] = ACTIONS(1637), - [anon_sym_and] = ACTIONS(1637), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1635), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1635), - [anon_sym_xor] = ACTIONS(1637), - [anon_sym_LT_LT] = ACTIONS(1637), - [anon_sym_GT_GT] = ACTIONS(1635), - [anon_sym_LT_LT_PIPE] = ACTIONS(1635), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_CARET] = ACTIONS(1635), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [anon_sym_null] = ACTIONS(1637), - [anon_sym_unreachable] = ACTIONS(1637), - [anon_sym_undefined] = ACTIONS(1637), - [sym_sink] = ACTIONS(1637), - [sym_integer] = ACTIONS(1637), - [sym_float] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_multiline_string] = ACTIONS(1635), - [sym_character] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1635), - }, - [STATE(770)] = { - [ts_builtin_sym_end] = ACTIONS(1639), - [sym_identifier] = ACTIONS(1641), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_import] = ACTIONS(1641), - [anon_sym_test] = ACTIONS(1641), - [anon_sym_hide] = ACTIONS(1641), - [anon_sym_func] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_EQ] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_COMMA] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_void] = ACTIONS(1641), - [anon_sym_noreturn] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_anyopaque] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_int] = ACTIONS(1641), - [anon_sym_uint] = ACTIONS(1641), - [anon_sym_float] = ACTIONS(1641), - [anon_sym_range] = ACTIONS(1641), - [anon_sym_i8] = ACTIONS(1641), - [anon_sym_i16] = ACTIONS(1641), - [anon_sym_i32] = ACTIONS(1641), - [anon_sym_i64] = ACTIONS(1641), - [anon_sym_u8] = ACTIONS(1641), - [anon_sym_u16] = ACTIONS(1641), - [anon_sym_u32] = ACTIONS(1641), - [anon_sym_u64] = ACTIONS(1641), - [anon_sym_isize] = ACTIONS(1641), - [anon_sym_usize] = ACTIONS(1641), - [anon_sym_f32] = ACTIONS(1641), - [anon_sym_f64] = ACTIONS(1641), - [anon_sym_c_char] = ACTIONS(1641), - [anon_sym_c_schar] = ACTIONS(1641), - [anon_sym_c_uchar] = ACTIONS(1641), - [anon_sym_c_short] = ACTIONS(1641), - [anon_sym_c_ushort] = ACTIONS(1641), - [anon_sym_c_int] = ACTIONS(1641), - [anon_sym_c_uint] = ACTIONS(1641), - [anon_sym_c_long] = ACTIONS(1641), - [anon_sym_c_ulong] = ACTIONS(1641), - [anon_sym_c_longlong] = ACTIONS(1641), - [anon_sym_c_ulonglong] = ACTIONS(1641), - [anon_sym_c_float] = ACTIONS(1641), - [anon_sym_c_double] = ACTIONS(1641), - [anon_sym_c_longdouble] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_yield] = ACTIONS(1641), - [anon_sym_COLON] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_defer] = ACTIONS(1641), - [anon_sym_errdefer] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_expand] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), - [anon_sym_orelse] = ACTIONS(1641), - [anon_sym_catch] = ACTIONS(1641), - [anon_sym_or] = ACTIONS(1641), - [anon_sym_and] = ACTIONS(1641), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1641), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1641), - [anon_sym_GT_EQ] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1641), - [anon_sym_LT_LT] = ACTIONS(1641), - [anon_sym_GT_GT] = ACTIONS(1639), - [anon_sym_LT_LT_PIPE] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1639), - [anon_sym_SLASH] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [anon_sym_unreachable] = ACTIONS(1641), - [anon_sym_undefined] = ACTIONS(1641), - [sym_sink] = ACTIONS(1641), - [sym_integer] = ACTIONS(1641), - [sym_float] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_multiline_string] = ACTIONS(1639), - [sym_character] = ACTIONS(1639), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1639), - }, - [STATE(771)] = { - [ts_builtin_sym_end] = ACTIONS(1973), - [sym_identifier] = ACTIONS(1975), - [anon_sym_COLON_COLON] = ACTIONS(1973), - [anon_sym_import] = ACTIONS(1975), - [anon_sym_test] = ACTIONS(1975), - [anon_sym_hide] = ACTIONS(1975), - [anon_sym_func] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1975), - [anon_sym_struct] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1975), - [anon_sym_noreturn] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_anyopaque] = ACTIONS(1975), - [anon_sym_bool] = ACTIONS(1975), - [anon_sym_int] = ACTIONS(1975), - [anon_sym_uint] = ACTIONS(1975), - [anon_sym_float] = ACTIONS(1975), - [anon_sym_range] = ACTIONS(1975), - [anon_sym_i8] = ACTIONS(1975), - [anon_sym_i16] = ACTIONS(1975), - [anon_sym_i32] = ACTIONS(1975), - [anon_sym_i64] = ACTIONS(1975), - [anon_sym_u8] = ACTIONS(1975), - [anon_sym_u16] = ACTIONS(1975), - [anon_sym_u32] = ACTIONS(1975), - [anon_sym_u64] = ACTIONS(1975), - [anon_sym_isize] = ACTIONS(1975), - [anon_sym_usize] = ACTIONS(1975), - [anon_sym_f32] = ACTIONS(1975), - [anon_sym_f64] = ACTIONS(1975), - [anon_sym_c_char] = ACTIONS(1975), - [anon_sym_c_schar] = ACTIONS(1975), - [anon_sym_c_uchar] = ACTIONS(1975), - [anon_sym_c_short] = ACTIONS(1975), - [anon_sym_c_ushort] = ACTIONS(1975), - [anon_sym_c_int] = ACTIONS(1975), - [anon_sym_c_uint] = ACTIONS(1975), - [anon_sym_c_long] = ACTIONS(1975), - [anon_sym_c_ulong] = ACTIONS(1975), - [anon_sym_c_longlong] = ACTIONS(1975), - [anon_sym_c_ulonglong] = ACTIONS(1975), - [anon_sym_c_float] = ACTIONS(1975), - [anon_sym_c_double] = ACTIONS(1975), - [anon_sym_c_longdouble] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_yield] = ACTIONS(1975), - [anon_sym_COLON] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_defer] = ACTIONS(1975), - [anon_sym_errdefer] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_else] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_expand] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), - [anon_sym_orelse] = ACTIONS(1975), - [anon_sym_catch] = ACTIONS(1975), - [anon_sym_or] = ACTIONS(1975), - [anon_sym_and] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1973), - [anon_sym_BANG_EQ] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_EQ] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - [anon_sym_xor] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1973), - [anon_sym_LT_LT_PIPE] = ACTIONS(1973), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1973), - [anon_sym_TILDE] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1975), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1975), - [anon_sym_unreachable] = ACTIONS(1975), - [anon_sym_undefined] = ACTIONS(1975), - [sym_sink] = ACTIONS(1975), - [sym_integer] = ACTIONS(1975), - [sym_float] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1973), - [sym_multiline_string] = ACTIONS(1973), - [sym_character] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1973), - }, - [STATE(772)] = { - [ts_builtin_sym_end] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_import] = ACTIONS(1653), - [anon_sym_test] = ACTIONS(1653), - [anon_sym_hide] = ACTIONS(1653), - [anon_sym_func] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_EQ] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_noreturn] = ACTIONS(1653), - [anon_sym_type] = ACTIONS(1653), - [anon_sym_anyopaque] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_range] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_c_char] = ACTIONS(1653), - [anon_sym_c_schar] = ACTIONS(1653), - [anon_sym_c_uchar] = ACTIONS(1653), - [anon_sym_c_short] = ACTIONS(1653), - [anon_sym_c_ushort] = ACTIONS(1653), - [anon_sym_c_int] = ACTIONS(1653), - [anon_sym_c_uint] = ACTIONS(1653), - [anon_sym_c_long] = ACTIONS(1653), - [anon_sym_c_ulong] = ACTIONS(1653), - [anon_sym_c_longlong] = ACTIONS(1653), - [anon_sym_c_ulonglong] = ACTIONS(1653), - [anon_sym_c_float] = ACTIONS(1653), - [anon_sym_c_double] = ACTIONS(1653), - [anon_sym_c_longdouble] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_yield] = ACTIONS(1653), - [anon_sym_COLON] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_errdefer] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_expand] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1651), - [anon_sym_orelse] = ACTIONS(1653), - [anon_sym_catch] = ACTIONS(1653), - [anon_sym_or] = ACTIONS(1653), - [anon_sym_and] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_xor] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1651), - [anon_sym_LT_LT_PIPE] = ACTIONS(1651), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_SLASH] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_CARET] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_unreachable] = ACTIONS(1653), - [anon_sym_undefined] = ACTIONS(1653), - [sym_sink] = ACTIONS(1653), - [sym_integer] = ACTIONS(1653), - [sym_float] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym_multiline_string] = ACTIONS(1651), - [sym_character] = ACTIONS(1651), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1651), - }, - [STATE(773)] = { - [ts_builtin_sym_end] = ACTIONS(1655), - [sym_identifier] = ACTIONS(1657), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1657), - [anon_sym_test] = ACTIONS(1657), - [anon_sym_hide] = ACTIONS(1657), - [anon_sym_func] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_EQ] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_noreturn] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_anyopaque] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_range] = ACTIONS(1657), - [anon_sym_i8] = ACTIONS(1657), - [anon_sym_i16] = ACTIONS(1657), - [anon_sym_i32] = ACTIONS(1657), - [anon_sym_i64] = ACTIONS(1657), - [anon_sym_u8] = ACTIONS(1657), - [anon_sym_u16] = ACTIONS(1657), - [anon_sym_u32] = ACTIONS(1657), - [anon_sym_u64] = ACTIONS(1657), - [anon_sym_isize] = ACTIONS(1657), - [anon_sym_usize] = ACTIONS(1657), - [anon_sym_f32] = ACTIONS(1657), - [anon_sym_f64] = ACTIONS(1657), - [anon_sym_c_char] = ACTIONS(1657), - [anon_sym_c_schar] = ACTIONS(1657), - [anon_sym_c_uchar] = ACTIONS(1657), - [anon_sym_c_short] = ACTIONS(1657), - [anon_sym_c_ushort] = ACTIONS(1657), - [anon_sym_c_int] = ACTIONS(1657), - [anon_sym_c_uint] = ACTIONS(1657), - [anon_sym_c_long] = ACTIONS(1657), - [anon_sym_c_ulong] = ACTIONS(1657), - [anon_sym_c_longlong] = ACTIONS(1657), - [anon_sym_c_ulonglong] = ACTIONS(1657), - [anon_sym_c_float] = ACTIONS(1657), - [anon_sym_c_double] = ACTIONS(1657), - [anon_sym_c_longdouble] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_yield] = ACTIONS(1657), - [anon_sym_COLON] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_errdefer] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_expand] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1655), - [anon_sym_orelse] = ACTIONS(1657), - [anon_sym_catch] = ACTIONS(1657), - [anon_sym_or] = ACTIONS(1657), - [anon_sym_and] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_xor] = ACTIONS(1657), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_LT_LT_PIPE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_DOT] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_unreachable] = ACTIONS(1657), - [anon_sym_undefined] = ACTIONS(1657), - [sym_sink] = ACTIONS(1657), - [sym_integer] = ACTIONS(1657), - [sym_float] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_multiline_string] = ACTIONS(1655), - [sym_character] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1655), - }, - [STATE(774)] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1659), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_test] = ACTIONS(1661), - [anon_sym_hide] = ACTIONS(1661), - [anon_sym_func] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_QMARK] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_noreturn] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_anyopaque] = ACTIONS(1661), - [anon_sym_bool] = ACTIONS(1661), - [anon_sym_int] = ACTIONS(1661), - [anon_sym_uint] = ACTIONS(1661), - [anon_sym_float] = ACTIONS(1661), - [anon_sym_range] = ACTIONS(1661), - [anon_sym_i8] = ACTIONS(1661), - [anon_sym_i16] = ACTIONS(1661), - [anon_sym_i32] = ACTIONS(1661), - [anon_sym_i64] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1661), - [anon_sym_u16] = ACTIONS(1661), - [anon_sym_u32] = ACTIONS(1661), - [anon_sym_u64] = ACTIONS(1661), - [anon_sym_isize] = ACTIONS(1661), - [anon_sym_usize] = ACTIONS(1661), - [anon_sym_f32] = ACTIONS(1661), - [anon_sym_f64] = ACTIONS(1661), - [anon_sym_c_char] = ACTIONS(1661), - [anon_sym_c_schar] = ACTIONS(1661), - [anon_sym_c_uchar] = ACTIONS(1661), - [anon_sym_c_short] = ACTIONS(1661), - [anon_sym_c_ushort] = ACTIONS(1661), - [anon_sym_c_int] = ACTIONS(1661), - [anon_sym_c_uint] = ACTIONS(1661), - [anon_sym_c_long] = ACTIONS(1661), - [anon_sym_c_ulong] = ACTIONS(1661), - [anon_sym_c_longlong] = ACTIONS(1661), - [anon_sym_c_ulonglong] = ACTIONS(1661), - [anon_sym_c_float] = ACTIONS(1661), - [anon_sym_c_double] = ACTIONS(1661), - [anon_sym_c_longdouble] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_COLON] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_defer] = ACTIONS(1661), - [anon_sym_errdefer] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_expand] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_orelse] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_or] = ACTIONS(1661), - [anon_sym_and] = ACTIONS(1661), - [anon_sym_EQ_EQ] = ACTIONS(1659), - [anon_sym_BANG_EQ] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_xor] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(1661), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_LT_LT_PIPE] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_SLASH] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_DOT] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [anon_sym_unreachable] = ACTIONS(1661), - [anon_sym_undefined] = ACTIONS(1661), - [sym_sink] = ACTIONS(1661), - [sym_integer] = ACTIONS(1661), - [sym_float] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym_multiline_string] = ACTIONS(1659), - [sym_character] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1659), - }, - [STATE(775)] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [sym_identifier] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym_import] = ACTIONS(1665), - [anon_sym_test] = ACTIONS(1665), - [anon_sym_hide] = ACTIONS(1665), - [anon_sym_func] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_COMMA] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_QMARK] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1665), - [anon_sym_noreturn] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_anyopaque] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_int] = ACTIONS(1665), - [anon_sym_uint] = ACTIONS(1665), - [anon_sym_float] = ACTIONS(1665), - [anon_sym_range] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_c_char] = ACTIONS(1665), - [anon_sym_c_schar] = ACTIONS(1665), - [anon_sym_c_uchar] = ACTIONS(1665), - [anon_sym_c_short] = ACTIONS(1665), - [anon_sym_c_ushort] = ACTIONS(1665), - [anon_sym_c_int] = ACTIONS(1665), - [anon_sym_c_uint] = ACTIONS(1665), - [anon_sym_c_long] = ACTIONS(1665), - [anon_sym_c_ulong] = ACTIONS(1665), - [anon_sym_c_longlong] = ACTIONS(1665), - [anon_sym_c_ulonglong] = ACTIONS(1665), - [anon_sym_c_float] = ACTIONS(1665), - [anon_sym_c_double] = ACTIONS(1665), - [anon_sym_c_longdouble] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1665), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_defer] = ACTIONS(1665), - [anon_sym_errdefer] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_expand] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [anon_sym_DOT_DOT] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1663), - [anon_sym_orelse] = ACTIONS(1665), - [anon_sym_catch] = ACTIONS(1665), - [anon_sym_or] = ACTIONS(1665), - [anon_sym_and] = ACTIONS(1665), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1665), - [anon_sym_GT_EQ] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1663), - [anon_sym_LT_LT_PIPE] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1665), - [anon_sym_DOT] = ACTIONS(1665), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), - [anon_sym_null] = ACTIONS(1665), - [anon_sym_unreachable] = ACTIONS(1665), - [anon_sym_undefined] = ACTIONS(1665), - [sym_sink] = ACTIONS(1665), - [sym_integer] = ACTIONS(1665), - [sym_float] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_multiline_string] = ACTIONS(1663), - [sym_character] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1663), - }, - [STATE(776)] = { - [ts_builtin_sym_end] = ACTIONS(1667), - [sym_identifier] = ACTIONS(1669), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_import] = ACTIONS(1669), - [anon_sym_test] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_func] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_COMMA] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_QMARK] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_void] = ACTIONS(1669), - [anon_sym_noreturn] = ACTIONS(1669), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_anyopaque] = ACTIONS(1669), - [anon_sym_bool] = ACTIONS(1669), - [anon_sym_int] = ACTIONS(1669), - [anon_sym_uint] = ACTIONS(1669), - [anon_sym_float] = ACTIONS(1669), - [anon_sym_range] = ACTIONS(1669), - [anon_sym_i8] = ACTIONS(1669), - [anon_sym_i16] = ACTIONS(1669), - [anon_sym_i32] = ACTIONS(1669), - [anon_sym_i64] = ACTIONS(1669), - [anon_sym_u8] = ACTIONS(1669), - [anon_sym_u16] = ACTIONS(1669), - [anon_sym_u32] = ACTIONS(1669), - [anon_sym_u64] = ACTIONS(1669), - [anon_sym_isize] = ACTIONS(1669), - [anon_sym_usize] = ACTIONS(1669), - [anon_sym_f32] = ACTIONS(1669), - [anon_sym_f64] = ACTIONS(1669), - [anon_sym_c_char] = ACTIONS(1669), - [anon_sym_c_schar] = ACTIONS(1669), - [anon_sym_c_uchar] = ACTIONS(1669), - [anon_sym_c_short] = ACTIONS(1669), - [anon_sym_c_ushort] = ACTIONS(1669), - [anon_sym_c_int] = ACTIONS(1669), - [anon_sym_c_uint] = ACTIONS(1669), - [anon_sym_c_long] = ACTIONS(1669), - [anon_sym_c_ulong] = ACTIONS(1669), - [anon_sym_c_longlong] = ACTIONS(1669), - [anon_sym_c_ulonglong] = ACTIONS(1669), - [anon_sym_c_float] = ACTIONS(1669), - [anon_sym_c_double] = ACTIONS(1669), - [anon_sym_c_longdouble] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_yield] = ACTIONS(1669), - [anon_sym_COLON] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_defer] = ACTIONS(1669), - [anon_sym_errdefer] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_expand] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_orelse] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1669), - [anon_sym_GT_GT] = ACTIONS(1667), - [anon_sym_LT_LT_PIPE] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_unreachable] = ACTIONS(1669), - [anon_sym_undefined] = ACTIONS(1669), - [sym_sink] = ACTIONS(1669), - [sym_integer] = ACTIONS(1669), - [sym_float] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym_multiline_string] = ACTIONS(1667), - [sym_character] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1667), - }, - [STATE(777)] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [sym_identifier] = ACTIONS(1673), - [anon_sym_COLON_COLON] = ACTIONS(1671), - [anon_sym_import] = ACTIONS(1673), - [anon_sym_test] = ACTIONS(1673), - [anon_sym_hide] = ACTIONS(1673), - [anon_sym_func] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_COMMA] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_void] = ACTIONS(1673), - [anon_sym_noreturn] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_anyopaque] = ACTIONS(1673), - [anon_sym_bool] = ACTIONS(1673), - [anon_sym_int] = ACTIONS(1673), - [anon_sym_uint] = ACTIONS(1673), - [anon_sym_float] = ACTIONS(1673), - [anon_sym_range] = ACTIONS(1673), - [anon_sym_i8] = ACTIONS(1673), - [anon_sym_i16] = ACTIONS(1673), - [anon_sym_i32] = ACTIONS(1673), - [anon_sym_i64] = ACTIONS(1673), - [anon_sym_u8] = ACTIONS(1673), - [anon_sym_u16] = ACTIONS(1673), - [anon_sym_u32] = ACTIONS(1673), - [anon_sym_u64] = ACTIONS(1673), - [anon_sym_isize] = ACTIONS(1673), - [anon_sym_usize] = ACTIONS(1673), - [anon_sym_f32] = ACTIONS(1673), - [anon_sym_f64] = ACTIONS(1673), - [anon_sym_c_char] = ACTIONS(1673), - [anon_sym_c_schar] = ACTIONS(1673), - [anon_sym_c_uchar] = ACTIONS(1673), - [anon_sym_c_short] = ACTIONS(1673), - [anon_sym_c_ushort] = ACTIONS(1673), - [anon_sym_c_int] = ACTIONS(1673), - [anon_sym_c_uint] = ACTIONS(1673), - [anon_sym_c_long] = ACTIONS(1673), - [anon_sym_c_ulong] = ACTIONS(1673), - [anon_sym_c_longlong] = ACTIONS(1673), - [anon_sym_c_ulonglong] = ACTIONS(1673), - [anon_sym_c_float] = ACTIONS(1673), - [anon_sym_c_double] = ACTIONS(1673), - [anon_sym_c_longdouble] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_yield] = ACTIONS(1673), - [anon_sym_COLON] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_defer] = ACTIONS(1673), - [anon_sym_errdefer] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_expand] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [anon_sym_orelse] = ACTIONS(1673), - [anon_sym_catch] = ACTIONS(1673), - [anon_sym_or] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1673), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1673), - [anon_sym_LT_LT] = ACTIONS(1673), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_LT_LT_PIPE] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1673), - [anon_sym_DOT] = ACTIONS(1673), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [anon_sym_null] = ACTIONS(1673), - [anon_sym_unreachable] = ACTIONS(1673), - [anon_sym_undefined] = ACTIONS(1673), - [sym_sink] = ACTIONS(1673), - [sym_integer] = ACTIONS(1673), - [sym_float] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym_multiline_string] = ACTIONS(1671), - [sym_character] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1671), - }, - [STATE(778)] = { - [ts_builtin_sym_end] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_import] = ACTIONS(1677), - [anon_sym_test] = ACTIONS(1677), - [anon_sym_hide] = ACTIONS(1677), - [anon_sym_func] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_EQ] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_void] = ACTIONS(1677), - [anon_sym_noreturn] = ACTIONS(1677), - [anon_sym_type] = ACTIONS(1677), - [anon_sym_anyopaque] = ACTIONS(1677), - [anon_sym_bool] = ACTIONS(1677), - [anon_sym_int] = ACTIONS(1677), - [anon_sym_uint] = ACTIONS(1677), - [anon_sym_float] = ACTIONS(1677), - [anon_sym_range] = ACTIONS(1677), - [anon_sym_i8] = ACTIONS(1677), - [anon_sym_i16] = ACTIONS(1677), - [anon_sym_i32] = ACTIONS(1677), - [anon_sym_i64] = ACTIONS(1677), - [anon_sym_u8] = ACTIONS(1677), - [anon_sym_u16] = ACTIONS(1677), - [anon_sym_u32] = ACTIONS(1677), - [anon_sym_u64] = ACTIONS(1677), - [anon_sym_isize] = ACTIONS(1677), - [anon_sym_usize] = ACTIONS(1677), - [anon_sym_f32] = ACTIONS(1677), - [anon_sym_f64] = ACTIONS(1677), - [anon_sym_c_char] = ACTIONS(1677), - [anon_sym_c_schar] = ACTIONS(1677), - [anon_sym_c_uchar] = ACTIONS(1677), - [anon_sym_c_short] = ACTIONS(1677), - [anon_sym_c_ushort] = ACTIONS(1677), - [anon_sym_c_int] = ACTIONS(1677), - [anon_sym_c_uint] = ACTIONS(1677), - [anon_sym_c_long] = ACTIONS(1677), - [anon_sym_c_ulong] = ACTIONS(1677), - [anon_sym_c_longlong] = ACTIONS(1677), - [anon_sym_c_ulonglong] = ACTIONS(1677), - [anon_sym_c_float] = ACTIONS(1677), - [anon_sym_c_double] = ACTIONS(1677), - [anon_sym_c_longdouble] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_yield] = ACTIONS(1677), - [anon_sym_COLON] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_defer] = ACTIONS(1677), - [anon_sym_errdefer] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_expand] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_orelse] = ACTIONS(1677), - [anon_sym_catch] = ACTIONS(1677), - [anon_sym_or] = ACTIONS(1677), - [anon_sym_and] = ACTIONS(1677), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1677), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1677), - [anon_sym_GT_EQ] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1677), - [anon_sym_LT_LT] = ACTIONS(1677), - [anon_sym_GT_GT] = ACTIONS(1675), - [anon_sym_LT_LT_PIPE] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_SLASH] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1677), - [anon_sym_DOT] = ACTIONS(1677), - [anon_sym_CARET] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [anon_sym_unreachable] = ACTIONS(1677), - [anon_sym_undefined] = ACTIONS(1677), - [sym_sink] = ACTIONS(1677), - [sym_integer] = ACTIONS(1677), - [sym_float] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym_multiline_string] = ACTIONS(1675), - [sym_character] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1675), - }, - [STATE(779)] = { - [ts_builtin_sym_end] = ACTIONS(1985), - [sym_identifier] = ACTIONS(1987), - [anon_sym_COLON_COLON] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(1987), - [anon_sym_test] = ACTIONS(1987), - [anon_sym_hide] = ACTIONS(1987), - [anon_sym_func] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_RPAREN] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_void] = ACTIONS(1987), - [anon_sym_noreturn] = ACTIONS(1987), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_anyopaque] = ACTIONS(1987), - [anon_sym_bool] = ACTIONS(1987), - [anon_sym_int] = ACTIONS(1987), - [anon_sym_uint] = ACTIONS(1987), - [anon_sym_float] = ACTIONS(1987), - [anon_sym_range] = ACTIONS(1987), - [anon_sym_i8] = ACTIONS(1987), - [anon_sym_i16] = ACTIONS(1987), - [anon_sym_i32] = ACTIONS(1987), - [anon_sym_i64] = ACTIONS(1987), - [anon_sym_u8] = ACTIONS(1987), - [anon_sym_u16] = ACTIONS(1987), - [anon_sym_u32] = ACTIONS(1987), - [anon_sym_u64] = ACTIONS(1987), - [anon_sym_isize] = ACTIONS(1987), - [anon_sym_usize] = ACTIONS(1987), - [anon_sym_f32] = ACTIONS(1987), - [anon_sym_f64] = ACTIONS(1987), - [anon_sym_c_char] = ACTIONS(1987), - [anon_sym_c_schar] = ACTIONS(1987), - [anon_sym_c_uchar] = ACTIONS(1987), - [anon_sym_c_short] = ACTIONS(1987), - [anon_sym_c_ushort] = ACTIONS(1987), - [anon_sym_c_int] = ACTIONS(1987), - [anon_sym_c_uint] = ACTIONS(1987), - [anon_sym_c_long] = ACTIONS(1987), - [anon_sym_c_ulong] = ACTIONS(1987), - [anon_sym_c_longlong] = ACTIONS(1987), - [anon_sym_c_ulonglong] = ACTIONS(1987), - [anon_sym_c_float] = ACTIONS(1987), - [anon_sym_c_double] = ACTIONS(1987), - [anon_sym_c_longdouble] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_yield] = ACTIONS(1987), - [anon_sym_COLON] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_defer] = ACTIONS(1987), - [anon_sym_errdefer] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_else] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_expand] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1985), - [anon_sym_orelse] = ACTIONS(1987), - [anon_sym_catch] = ACTIONS(1987), - [anon_sym_or] = ACTIONS(1987), - [anon_sym_and] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1985), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_xor] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1987), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [anon_sym_null] = ACTIONS(1987), - [anon_sym_unreachable] = ACTIONS(1987), - [anon_sym_undefined] = ACTIONS(1987), - [sym_sink] = ACTIONS(1987), - [sym_integer] = ACTIONS(1987), - [sym_float] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym_multiline_string] = ACTIONS(1985), - [sym_character] = ACTIONS(1985), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1985), - }, - [STATE(780)] = { - [ts_builtin_sym_end] = ACTIONS(1989), - [sym_identifier] = ACTIONS(1991), - [anon_sym_COLON_COLON] = ACTIONS(1989), - [anon_sym_import] = ACTIONS(1991), - [anon_sym_test] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_func] = ACTIONS(1991), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_EQ] = ACTIONS(1991), - [anon_sym_struct] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_RPAREN] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_DASH] = ACTIONS(1989), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_QMARK] = ACTIONS(1989), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_void] = ACTIONS(1991), - [anon_sym_noreturn] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_anyopaque] = ACTIONS(1991), - [anon_sym_bool] = ACTIONS(1991), - [anon_sym_int] = ACTIONS(1991), - [anon_sym_uint] = ACTIONS(1991), - [anon_sym_float] = ACTIONS(1991), - [anon_sym_range] = ACTIONS(1991), - [anon_sym_i8] = ACTIONS(1991), - [anon_sym_i16] = ACTIONS(1991), - [anon_sym_i32] = ACTIONS(1991), - [anon_sym_i64] = ACTIONS(1991), - [anon_sym_u8] = ACTIONS(1991), - [anon_sym_u16] = ACTIONS(1991), - [anon_sym_u32] = ACTIONS(1991), - [anon_sym_u64] = ACTIONS(1991), - [anon_sym_isize] = ACTIONS(1991), - [anon_sym_usize] = ACTIONS(1991), - [anon_sym_f32] = ACTIONS(1991), - [anon_sym_f64] = ACTIONS(1991), - [anon_sym_c_char] = ACTIONS(1991), - [anon_sym_c_schar] = ACTIONS(1991), - [anon_sym_c_uchar] = ACTIONS(1991), - [anon_sym_c_short] = ACTIONS(1991), - [anon_sym_c_ushort] = ACTIONS(1991), - [anon_sym_c_int] = ACTIONS(1991), - [anon_sym_c_uint] = ACTIONS(1991), - [anon_sym_c_long] = ACTIONS(1991), - [anon_sym_c_ulong] = ACTIONS(1991), - [anon_sym_c_longlong] = ACTIONS(1991), - [anon_sym_c_ulonglong] = ACTIONS(1991), - [anon_sym_c_float] = ACTIONS(1991), - [anon_sym_c_double] = ACTIONS(1991), - [anon_sym_c_longdouble] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_yield] = ACTIONS(1991), - [anon_sym_COLON] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_defer] = ACTIONS(1991), - [anon_sym_errdefer] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_expand] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), - [anon_sym_orelse] = ACTIONS(1991), - [anon_sym_catch] = ACTIONS(1991), - [anon_sym_or] = ACTIONS(1991), - [anon_sym_and] = ACTIONS(1991), - [anon_sym_EQ_EQ] = ACTIONS(1989), - [anon_sym_BANG_EQ] = ACTIONS(1989), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1989), - [anon_sym_xor] = ACTIONS(1991), - [anon_sym_LT_LT] = ACTIONS(1991), - [anon_sym_GT_GT] = ACTIONS(1989), - [anon_sym_LT_LT_PIPE] = ACTIONS(1989), - [anon_sym_PLUS] = ACTIONS(1989), - [anon_sym_SLASH] = ACTIONS(1989), - [anon_sym_TILDE] = ACTIONS(1989), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_DOT] = ACTIONS(1991), - [anon_sym_CARET] = ACTIONS(1989), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [anon_sym_null] = ACTIONS(1991), - [anon_sym_unreachable] = ACTIONS(1991), - [anon_sym_undefined] = ACTIONS(1991), - [sym_sink] = ACTIONS(1991), - [sym_integer] = ACTIONS(1991), - [sym_float] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1989), - [sym_multiline_string] = ACTIONS(1989), - [sym_character] = ACTIONS(1989), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1989), - }, - [STATE(781)] = { - [ts_builtin_sym_end] = ACTIONS(1679), - [sym_identifier] = ACTIONS(1681), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_test] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_func] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_EQ] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_COMMA] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_QMARK] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_void] = ACTIONS(1681), - [anon_sym_noreturn] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_anyopaque] = ACTIONS(1681), - [anon_sym_bool] = ACTIONS(1681), - [anon_sym_int] = ACTIONS(1681), - [anon_sym_uint] = ACTIONS(1681), - [anon_sym_float] = ACTIONS(1681), - [anon_sym_range] = ACTIONS(1681), - [anon_sym_i8] = ACTIONS(1681), - [anon_sym_i16] = ACTIONS(1681), - [anon_sym_i32] = ACTIONS(1681), - [anon_sym_i64] = ACTIONS(1681), - [anon_sym_u8] = ACTIONS(1681), - [anon_sym_u16] = ACTIONS(1681), - [anon_sym_u32] = ACTIONS(1681), - [anon_sym_u64] = ACTIONS(1681), - [anon_sym_isize] = ACTIONS(1681), - [anon_sym_usize] = ACTIONS(1681), - [anon_sym_f32] = ACTIONS(1681), - [anon_sym_f64] = ACTIONS(1681), - [anon_sym_c_char] = ACTIONS(1681), - [anon_sym_c_schar] = ACTIONS(1681), - [anon_sym_c_uchar] = ACTIONS(1681), - [anon_sym_c_short] = ACTIONS(1681), - [anon_sym_c_ushort] = ACTIONS(1681), - [anon_sym_c_int] = ACTIONS(1681), - [anon_sym_c_uint] = ACTIONS(1681), - [anon_sym_c_long] = ACTIONS(1681), - [anon_sym_c_ulong] = ACTIONS(1681), - [anon_sym_c_longlong] = ACTIONS(1681), - [anon_sym_c_ulonglong] = ACTIONS(1681), - [anon_sym_c_float] = ACTIONS(1681), - [anon_sym_c_double] = ACTIONS(1681), - [anon_sym_c_longdouble] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_yield] = ACTIONS(1681), - [anon_sym_COLON] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_defer] = ACTIONS(1681), - [anon_sym_errdefer] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_expand] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), - [anon_sym_orelse] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_or] = ACTIONS(1681), - [anon_sym_and] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1679), - [anon_sym_BANG_EQ] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1679), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_xor] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1679), - [anon_sym_LT_LT_PIPE] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_DOT] = ACTIONS(1681), - [anon_sym_CARET] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_null] = ACTIONS(1681), - [anon_sym_unreachable] = ACTIONS(1681), - [anon_sym_undefined] = ACTIONS(1681), - [sym_sink] = ACTIONS(1681), - [sym_integer] = ACTIONS(1681), - [sym_float] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym_multiline_string] = ACTIONS(1679), - [sym_character] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1679), - }, - [STATE(782)] = { - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_identifier] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(1685), - [anon_sym_test] = ACTIONS(1685), - [anon_sym_hide] = ACTIONS(1685), - [anon_sym_func] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_EQ] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1685), - [anon_sym_noreturn] = ACTIONS(1685), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_anyopaque] = ACTIONS(1685), - [anon_sym_bool] = ACTIONS(1685), - [anon_sym_int] = ACTIONS(1685), - [anon_sym_uint] = ACTIONS(1685), - [anon_sym_float] = ACTIONS(1685), - [anon_sym_range] = ACTIONS(1685), - [anon_sym_i8] = ACTIONS(1685), - [anon_sym_i16] = ACTIONS(1685), - [anon_sym_i32] = ACTIONS(1685), - [anon_sym_i64] = ACTIONS(1685), - [anon_sym_u8] = ACTIONS(1685), - [anon_sym_u16] = ACTIONS(1685), - [anon_sym_u32] = ACTIONS(1685), - [anon_sym_u64] = ACTIONS(1685), - [anon_sym_isize] = ACTIONS(1685), - [anon_sym_usize] = ACTIONS(1685), - [anon_sym_f32] = ACTIONS(1685), - [anon_sym_f64] = ACTIONS(1685), - [anon_sym_c_char] = ACTIONS(1685), - [anon_sym_c_schar] = ACTIONS(1685), - [anon_sym_c_uchar] = ACTIONS(1685), - [anon_sym_c_short] = ACTIONS(1685), - [anon_sym_c_ushort] = ACTIONS(1685), - [anon_sym_c_int] = ACTIONS(1685), - [anon_sym_c_uint] = ACTIONS(1685), - [anon_sym_c_long] = ACTIONS(1685), - [anon_sym_c_ulong] = ACTIONS(1685), - [anon_sym_c_longlong] = ACTIONS(1685), - [anon_sym_c_ulonglong] = ACTIONS(1685), - [anon_sym_c_float] = ACTIONS(1685), - [anon_sym_c_double] = ACTIONS(1685), - [anon_sym_c_longdouble] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1685), - [anon_sym_COLON] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_defer] = ACTIONS(1685), - [anon_sym_errdefer] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_expand] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1685), - [anon_sym_DOT_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), - [anon_sym_orelse] = ACTIONS(1685), - [anon_sym_catch] = ACTIONS(1685), - [anon_sym_or] = ACTIONS(1685), - [anon_sym_and] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1683), - [anon_sym_LT_LT_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1685), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1685), - [anon_sym_false] = ACTIONS(1685), - [anon_sym_null] = ACTIONS(1685), - [anon_sym_unreachable] = ACTIONS(1685), - [anon_sym_undefined] = ACTIONS(1685), - [sym_sink] = ACTIONS(1685), - [sym_integer] = ACTIONS(1685), - [sym_float] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym_multiline_string] = ACTIONS(1683), - [sym_character] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1683), - }, - [STATE(783)] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_COLON_COLON] = ACTIONS(1687), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_test] = ACTIONS(1689), - [anon_sym_hide] = ACTIONS(1689), - [anon_sym_func] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_EQ] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_COMMA] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_QMARK] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_noreturn] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_anyopaque] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_int] = ACTIONS(1689), - [anon_sym_uint] = ACTIONS(1689), - [anon_sym_float] = ACTIONS(1689), - [anon_sym_range] = ACTIONS(1689), - [anon_sym_i8] = ACTIONS(1689), - [anon_sym_i16] = ACTIONS(1689), - [anon_sym_i32] = ACTIONS(1689), - [anon_sym_i64] = ACTIONS(1689), - [anon_sym_u8] = ACTIONS(1689), - [anon_sym_u16] = ACTIONS(1689), - [anon_sym_u32] = ACTIONS(1689), - [anon_sym_u64] = ACTIONS(1689), - [anon_sym_isize] = ACTIONS(1689), - [anon_sym_usize] = ACTIONS(1689), - [anon_sym_f32] = ACTIONS(1689), - [anon_sym_f64] = ACTIONS(1689), - [anon_sym_c_char] = ACTIONS(1689), - [anon_sym_c_schar] = ACTIONS(1689), - [anon_sym_c_uchar] = ACTIONS(1689), - [anon_sym_c_short] = ACTIONS(1689), - [anon_sym_c_ushort] = ACTIONS(1689), - [anon_sym_c_int] = ACTIONS(1689), - [anon_sym_c_uint] = ACTIONS(1689), - [anon_sym_c_long] = ACTIONS(1689), - [anon_sym_c_ulong] = ACTIONS(1689), - [anon_sym_c_longlong] = ACTIONS(1689), - [anon_sym_c_ulonglong] = ACTIONS(1689), - [anon_sym_c_float] = ACTIONS(1689), - [anon_sym_c_double] = ACTIONS(1689), - [anon_sym_c_longdouble] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_COLON] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_defer] = ACTIONS(1689), - [anon_sym_errdefer] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_expand] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_match] = ACTIONS(1689), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [anon_sym_orelse] = ACTIONS(1689), - [anon_sym_catch] = ACTIONS(1689), - [anon_sym_or] = ACTIONS(1689), - [anon_sym_and] = ACTIONS(1689), - [anon_sym_EQ_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_LT_EQ] = ACTIONS(1687), - [anon_sym_GT] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_xor] = ACTIONS(1689), - [anon_sym_LT_LT] = ACTIONS(1689), - [anon_sym_GT_GT] = ACTIONS(1687), - [anon_sym_LT_LT_PIPE] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), - [anon_sym_null] = ACTIONS(1689), - [anon_sym_unreachable] = ACTIONS(1689), - [anon_sym_undefined] = ACTIONS(1689), - [sym_sink] = ACTIONS(1689), - [sym_integer] = ACTIONS(1689), - [sym_float] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym_multiline_string] = ACTIONS(1687), - [sym_character] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1687), - }, - [STATE(784)] = { - [ts_builtin_sym_end] = ACTIONS(1691), - [sym_identifier] = ACTIONS(1693), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_import] = ACTIONS(1693), - [anon_sym_test] = ACTIONS(1693), - [anon_sym_hide] = ACTIONS(1693), - [anon_sym_func] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_RPAREN] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_COMMA] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_void] = ACTIONS(1693), - [anon_sym_noreturn] = ACTIONS(1693), - [anon_sym_type] = ACTIONS(1693), - [anon_sym_anyopaque] = ACTIONS(1693), - [anon_sym_bool] = ACTIONS(1693), - [anon_sym_int] = ACTIONS(1693), - [anon_sym_uint] = ACTIONS(1693), - [anon_sym_float] = ACTIONS(1693), - [anon_sym_range] = ACTIONS(1693), - [anon_sym_i8] = ACTIONS(1693), - [anon_sym_i16] = ACTIONS(1693), - [anon_sym_i32] = ACTIONS(1693), - [anon_sym_i64] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1693), - [anon_sym_u16] = ACTIONS(1693), - [anon_sym_u32] = ACTIONS(1693), - [anon_sym_u64] = ACTIONS(1693), - [anon_sym_isize] = ACTIONS(1693), - [anon_sym_usize] = ACTIONS(1693), - [anon_sym_f32] = ACTIONS(1693), - [anon_sym_f64] = ACTIONS(1693), - [anon_sym_c_char] = ACTIONS(1693), - [anon_sym_c_schar] = ACTIONS(1693), - [anon_sym_c_uchar] = ACTIONS(1693), - [anon_sym_c_short] = ACTIONS(1693), - [anon_sym_c_ushort] = ACTIONS(1693), - [anon_sym_c_int] = ACTIONS(1693), - [anon_sym_c_uint] = ACTIONS(1693), - [anon_sym_c_long] = ACTIONS(1693), - [anon_sym_c_ulong] = ACTIONS(1693), - [anon_sym_c_longlong] = ACTIONS(1693), - [anon_sym_c_ulonglong] = ACTIONS(1693), - [anon_sym_c_float] = ACTIONS(1693), - [anon_sym_c_double] = ACTIONS(1693), - [anon_sym_c_longdouble] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_yield] = ACTIONS(1693), - [anon_sym_COLON] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_defer] = ACTIONS(1693), - [anon_sym_errdefer] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_else] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_expand] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1693), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_orelse] = ACTIONS(1693), - [anon_sym_catch] = ACTIONS(1693), - [anon_sym_or] = ACTIONS(1693), - [anon_sym_and] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_xor] = ACTIONS(1693), - [anon_sym_LT_LT] = ACTIONS(1693), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_LT_LT_PIPE] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_SLASH] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1693), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_unreachable] = ACTIONS(1693), - [anon_sym_undefined] = ACTIONS(1693), - [sym_sink] = ACTIONS(1693), - [sym_integer] = ACTIONS(1693), - [sym_float] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym_multiline_string] = ACTIONS(1691), - [sym_character] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1691), - }, - [STATE(785)] = { - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_COLON_COLON] = ACTIONS(1723), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_test] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_func] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_EQ] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_noreturn] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_anyopaque] = ACTIONS(1725), - [anon_sym_bool] = ACTIONS(1725), - [anon_sym_int] = ACTIONS(1725), - [anon_sym_uint] = ACTIONS(1725), - [anon_sym_float] = ACTIONS(1725), - [anon_sym_range] = ACTIONS(1725), - [anon_sym_i8] = ACTIONS(1725), - [anon_sym_i16] = ACTIONS(1725), - [anon_sym_i32] = ACTIONS(1725), - [anon_sym_i64] = ACTIONS(1725), - [anon_sym_u8] = ACTIONS(1725), - [anon_sym_u16] = ACTIONS(1725), - [anon_sym_u32] = ACTIONS(1725), - [anon_sym_u64] = ACTIONS(1725), - [anon_sym_isize] = ACTIONS(1725), - [anon_sym_usize] = ACTIONS(1725), - [anon_sym_f32] = ACTIONS(1725), - [anon_sym_f64] = ACTIONS(1725), - [anon_sym_c_char] = ACTIONS(1725), - [anon_sym_c_schar] = ACTIONS(1725), - [anon_sym_c_uchar] = ACTIONS(1725), - [anon_sym_c_short] = ACTIONS(1725), - [anon_sym_c_ushort] = ACTIONS(1725), - [anon_sym_c_int] = ACTIONS(1725), - [anon_sym_c_uint] = ACTIONS(1725), - [anon_sym_c_long] = ACTIONS(1725), - [anon_sym_c_ulong] = ACTIONS(1725), - [anon_sym_c_longlong] = ACTIONS(1725), - [anon_sym_c_ulonglong] = ACTIONS(1725), - [anon_sym_c_float] = ACTIONS(1725), - [anon_sym_c_double] = ACTIONS(1725), - [anon_sym_c_longdouble] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_COLON] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_defer] = ACTIONS(1725), - [anon_sym_errdefer] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_expand] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_orelse] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_or] = ACTIONS(1725), - [anon_sym_and] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_xor] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_LT_LT_PIPE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_null] = ACTIONS(1725), - [anon_sym_unreachable] = ACTIONS(1725), - [anon_sym_undefined] = ACTIONS(1725), - [sym_sink] = ACTIONS(1725), - [sym_integer] = ACTIONS(1725), - [sym_float] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym_multiline_string] = ACTIONS(1723), - [sym_character] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1723), - }, - [STATE(786)] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_identifier] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1817), - [anon_sym_test] = ACTIONS(1817), - [anon_sym_hide] = ACTIONS(1817), - [anon_sym_func] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_DOLLAR] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_void] = ACTIONS(1817), - [anon_sym_noreturn] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_anyopaque] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_int] = ACTIONS(1817), - [anon_sym_uint] = ACTIONS(1817), - [anon_sym_float] = ACTIONS(1817), - [anon_sym_range] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_c_char] = ACTIONS(1817), - [anon_sym_c_schar] = ACTIONS(1817), - [anon_sym_c_uchar] = ACTIONS(1817), - [anon_sym_c_short] = ACTIONS(1817), - [anon_sym_c_ushort] = ACTIONS(1817), - [anon_sym_c_int] = ACTIONS(1817), - [anon_sym_c_uint] = ACTIONS(1817), - [anon_sym_c_long] = ACTIONS(1817), - [anon_sym_c_ulong] = ACTIONS(1817), - [anon_sym_c_longlong] = ACTIONS(1817), - [anon_sym_c_ulonglong] = ACTIONS(1817), - [anon_sym_c_float] = ACTIONS(1817), - [anon_sym_c_double] = ACTIONS(1817), - [anon_sym_c_longdouble] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_defer] = ACTIONS(1817), - [anon_sym_errdefer] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_expand] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1815), - [anon_sym_orelse] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_xor] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1815), - [anon_sym_LT_LT_PIPE] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_null] = ACTIONS(1817), - [anon_sym_unreachable] = ACTIONS(1817), - [anon_sym_undefined] = ACTIONS(1817), - [sym_sink] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(1815), - [sym_multiline_string] = ACTIONS(1815), - [sym_character] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1815), - }, - [STATE(787)] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(1729), - [anon_sym_test] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_func] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_COMMA] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_QMARK] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1729), - [anon_sym_noreturn] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_anyopaque] = ACTIONS(1729), - [anon_sym_bool] = ACTIONS(1729), - [anon_sym_int] = ACTIONS(1729), - [anon_sym_uint] = ACTIONS(1729), - [anon_sym_float] = ACTIONS(1729), - [anon_sym_range] = ACTIONS(1729), - [anon_sym_i8] = ACTIONS(1729), - [anon_sym_i16] = ACTIONS(1729), - [anon_sym_i32] = ACTIONS(1729), - [anon_sym_i64] = ACTIONS(1729), - [anon_sym_u8] = ACTIONS(1729), - [anon_sym_u16] = ACTIONS(1729), - [anon_sym_u32] = ACTIONS(1729), - [anon_sym_u64] = ACTIONS(1729), - [anon_sym_isize] = ACTIONS(1729), - [anon_sym_usize] = ACTIONS(1729), - [anon_sym_f32] = ACTIONS(1729), - [anon_sym_f64] = ACTIONS(1729), - [anon_sym_c_char] = ACTIONS(1729), - [anon_sym_c_schar] = ACTIONS(1729), - [anon_sym_c_uchar] = ACTIONS(1729), - [anon_sym_c_short] = ACTIONS(1729), - [anon_sym_c_ushort] = ACTIONS(1729), - [anon_sym_c_int] = ACTIONS(1729), - [anon_sym_c_uint] = ACTIONS(1729), - [anon_sym_c_long] = ACTIONS(1729), - [anon_sym_c_ulong] = ACTIONS(1729), - [anon_sym_c_longlong] = ACTIONS(1729), - [anon_sym_c_ulonglong] = ACTIONS(1729), - [anon_sym_c_float] = ACTIONS(1729), - [anon_sym_c_double] = ACTIONS(1729), - [anon_sym_c_longdouble] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_defer] = ACTIONS(1729), - [anon_sym_errdefer] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_expand] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_orelse] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_or] = ACTIONS(1729), - [anon_sym_and] = ACTIONS(1729), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_xor] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1727), - [anon_sym_LT_LT_PIPE] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [anon_sym_null] = ACTIONS(1729), - [anon_sym_unreachable] = ACTIONS(1729), - [anon_sym_undefined] = ACTIONS(1729), - [sym_sink] = ACTIONS(1729), - [sym_integer] = ACTIONS(1729), - [sym_float] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym_multiline_string] = ACTIONS(1727), - [sym_character] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1727), - }, - [STATE(788)] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_import] = ACTIONS(1733), - [anon_sym_test] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_func] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_void] = ACTIONS(1733), - [anon_sym_noreturn] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_anyopaque] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_int] = ACTIONS(1733), - [anon_sym_uint] = ACTIONS(1733), - [anon_sym_float] = ACTIONS(1733), - [anon_sym_range] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_c_char] = ACTIONS(1733), - [anon_sym_c_schar] = ACTIONS(1733), - [anon_sym_c_uchar] = ACTIONS(1733), - [anon_sym_c_short] = ACTIONS(1733), - [anon_sym_c_ushort] = ACTIONS(1733), - [anon_sym_c_int] = ACTIONS(1733), - [anon_sym_c_uint] = ACTIONS(1733), - [anon_sym_c_long] = ACTIONS(1733), - [anon_sym_c_ulong] = ACTIONS(1733), - [anon_sym_c_longlong] = ACTIONS(1733), - [anon_sym_c_ulonglong] = ACTIONS(1733), - [anon_sym_c_float] = ACTIONS(1733), - [anon_sym_c_double] = ACTIONS(1733), - [anon_sym_c_longdouble] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_COLON] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_defer] = ACTIONS(1733), - [anon_sym_errdefer] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_expand] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), - [anon_sym_orelse] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_or] = ACTIONS(1733), - [anon_sym_and] = ACTIONS(1733), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_xor] = ACTIONS(1733), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_LT_LT_PIPE] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1731), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [anon_sym_null] = ACTIONS(1733), - [anon_sym_unreachable] = ACTIONS(1733), - [anon_sym_undefined] = ACTIONS(1733), - [sym_sink] = ACTIONS(1733), - [sym_integer] = ACTIONS(1733), - [sym_float] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [sym_multiline_string] = ACTIONS(1731), - [sym_character] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1731), - }, - [STATE(789)] = { - [ts_builtin_sym_end] = ACTIONS(1631), - [sym_identifier] = ACTIONS(1633), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_import] = ACTIONS(1633), - [anon_sym_test] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_func] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_EQ] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_COMMA] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_QMARK] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_void] = ACTIONS(1633), - [anon_sym_noreturn] = 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(1633), - [anon_sym_yield] = ACTIONS(1633), - [anon_sym_COLON] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_defer] = ACTIONS(1633), - [anon_sym_errdefer] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_expand] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_orelse] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_or] = ACTIONS(1633), - [anon_sym_and] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1631), - [anon_sym_BANG_EQ] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LT_EQ] = ACTIONS(1631), - [anon_sym_GT] = ACTIONS(1633), - [anon_sym_GT_EQ] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_xor] = ACTIONS(1633), - [anon_sym_LT_LT] = ACTIONS(1633), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_LT_LT_PIPE] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_DOT] = ACTIONS(1633), - [anon_sym_CARET] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [anon_sym_unreachable] = ACTIONS(1633), - [anon_sym_undefined] = ACTIONS(1633), - [sym_sink] = ACTIONS(1633), - [sym_integer] = ACTIONS(1633), - [sym_float] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_multiline_string] = ACTIONS(1631), - [sym_character] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1631), - }, - [STATE(790)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(1415), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_test] = ACTIONS(2205), - [anon_sym_hide] = ACTIONS(2205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(791)] = { - [sym_argument_list] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_import] = ACTIONS(1490), - [anon_sym_test] = ACTIONS(1490), - [anon_sym_hide] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_anyopaque] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_int] = ACTIONS(1490), - [anon_sym_uint] = ACTIONS(1490), - [anon_sym_float] = ACTIONS(1490), - [anon_sym_range] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_c_char] = ACTIONS(1490), - [anon_sym_c_schar] = ACTIONS(1490), - [anon_sym_c_uchar] = ACTIONS(1490), - [anon_sym_c_short] = ACTIONS(1490), - [anon_sym_c_ushort] = ACTIONS(1490), - [anon_sym_c_int] = ACTIONS(1490), - [anon_sym_c_uint] = ACTIONS(1490), - [anon_sym_c_long] = ACTIONS(1490), - [anon_sym_c_ulong] = ACTIONS(1490), - [anon_sym_c_longlong] = ACTIONS(1490), - [anon_sym_c_ulonglong] = ACTIONS(1490), - [anon_sym_c_float] = ACTIONS(1490), - [anon_sym_c_double] = ACTIONS(1490), - [anon_sym_c_longdouble] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_COLON] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_defer] = ACTIONS(1490), - [anon_sym_errdefer] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_else] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_expand] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_SLASH] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1490), - [anon_sym_unreachable] = ACTIONS(1490), - [anon_sym_undefined] = ACTIONS(1490), - [sym_sink] = ACTIONS(1490), - [sym_integer] = ACTIONS(1490), - [sym_float] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_multiline_string] = ACTIONS(1488), - [sym_character] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(792)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(793)] = { - [sym_argument_list] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_test] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_COLON] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(794)] = { - [aux_sym_type_repeat1] = STATE(798), - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_test] = ACTIONS(1478), - [anon_sym_hide] = ACTIONS(1478), - [anon_sym_func] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_void] = ACTIONS(1478), - [anon_sym_noreturn] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_anyopaque] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_int] = ACTIONS(1478), - [anon_sym_uint] = ACTIONS(1478), - [anon_sym_float] = ACTIONS(1478), - [anon_sym_range] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_c_char] = ACTIONS(1478), - [anon_sym_c_schar] = ACTIONS(1478), - [anon_sym_c_uchar] = ACTIONS(1478), - [anon_sym_c_short] = ACTIONS(1478), - [anon_sym_c_ushort] = ACTIONS(1478), - [anon_sym_c_int] = ACTIONS(1478), - [anon_sym_c_uint] = ACTIONS(1478), - [anon_sym_c_long] = ACTIONS(1478), - [anon_sym_c_ulong] = ACTIONS(1478), - [anon_sym_c_longlong] = ACTIONS(1478), - [anon_sym_c_ulonglong] = ACTIONS(1478), - [anon_sym_c_float] = ACTIONS(1478), - [anon_sym_c_double] = ACTIONS(1478), - [anon_sym_c_longdouble] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_defer] = ACTIONS(1478), - [anon_sym_errdefer] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_expand] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_orelse] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_or] = ACTIONS(1478), - [anon_sym_and] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_xor] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_LT_LT_PIPE] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_null] = ACTIONS(1478), - [anon_sym_unreachable] = ACTIONS(1478), - [anon_sym_undefined] = ACTIONS(1478), - [sym_sink] = ACTIONS(1478), - [sym_integer] = ACTIONS(1478), - [sym_float] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym_multiline_string] = ACTIONS(1476), - [sym_character] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1476), - }, - [STATE(795)] = { - [sym_argument_list] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_import] = ACTIONS(1405), - [anon_sym_test] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_anyopaque] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_range] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_c_char] = ACTIONS(1405), - [anon_sym_c_schar] = ACTIONS(1405), - [anon_sym_c_uchar] = ACTIONS(1405), - [anon_sym_c_short] = ACTIONS(1405), - [anon_sym_c_ushort] = ACTIONS(1405), - [anon_sym_c_int] = ACTIONS(1405), - [anon_sym_c_uint] = ACTIONS(1405), - [anon_sym_c_long] = ACTIONS(1405), - [anon_sym_c_ulong] = ACTIONS(1405), - [anon_sym_c_longlong] = ACTIONS(1405), - [anon_sym_c_ulonglong] = ACTIONS(1405), - [anon_sym_c_float] = ACTIONS(1405), - [anon_sym_c_double] = ACTIONS(1405), - [anon_sym_c_longdouble] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_yield] = ACTIONS(1405), - [anon_sym_COLON] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_errdefer] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_expand] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_unreachable] = ACTIONS(1405), - [anon_sym_undefined] = ACTIONS(1405), - [sym_sink] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [sym_float] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_multiline_string] = ACTIONS(1403), - [sym_character] = ACTIONS(1403), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(796)] = { - [aux_sym_type_repeat1] = STATE(794), - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(1474), - [anon_sym_test] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_func] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_noreturn] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_anyopaque] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_int] = ACTIONS(1474), - [anon_sym_uint] = ACTIONS(1474), - [anon_sym_float] = ACTIONS(1474), - [anon_sym_range] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_c_char] = ACTIONS(1474), - [anon_sym_c_schar] = ACTIONS(1474), - [anon_sym_c_uchar] = ACTIONS(1474), - [anon_sym_c_short] = ACTIONS(1474), - [anon_sym_c_ushort] = ACTIONS(1474), - [anon_sym_c_int] = ACTIONS(1474), - [anon_sym_c_uint] = ACTIONS(1474), - [anon_sym_c_long] = ACTIONS(1474), - [anon_sym_c_ulong] = ACTIONS(1474), - [anon_sym_c_longlong] = ACTIONS(1474), - [anon_sym_c_ulonglong] = ACTIONS(1474), - [anon_sym_c_float] = ACTIONS(1474), - [anon_sym_c_double] = ACTIONS(1474), - [anon_sym_c_longdouble] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_defer] = ACTIONS(1474), - [anon_sym_errdefer] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_else] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_expand] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_orelse] = ACTIONS(1474), - [anon_sym_catch] = ACTIONS(1474), - [anon_sym_or] = ACTIONS(1474), - [anon_sym_and] = ACTIONS(1474), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_xor] = ACTIONS(1474), - [anon_sym_LT_LT] = ACTIONS(1474), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_LT_LT_PIPE] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_DOT] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_unreachable] = ACTIONS(1474), - [anon_sym_undefined] = ACTIONS(1474), - [sym_sink] = ACTIONS(1474), - [sym_integer] = ACTIONS(1474), - [sym_float] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym_multiline_string] = ACTIONS(1472), - [sym_character] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1472), - }, - [STATE(797)] = { - [sym_argument_list] = STATE(853), - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(1413), - [anon_sym_test] = ACTIONS(1413), - [anon_sym_hide] = ACTIONS(1413), - [anon_sym_func] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_QMARK] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_noreturn] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_anyopaque] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_int] = ACTIONS(1413), - [anon_sym_uint] = ACTIONS(1413), - [anon_sym_float] = ACTIONS(1413), - [anon_sym_range] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_c_char] = ACTIONS(1413), - [anon_sym_c_schar] = ACTIONS(1413), - [anon_sym_c_uchar] = ACTIONS(1413), - [anon_sym_c_short] = ACTIONS(1413), - [anon_sym_c_ushort] = ACTIONS(1413), - [anon_sym_c_int] = ACTIONS(1413), - [anon_sym_c_uint] = ACTIONS(1413), - [anon_sym_c_long] = ACTIONS(1413), - [anon_sym_c_ulong] = ACTIONS(1413), - [anon_sym_c_longlong] = ACTIONS(1413), - [anon_sym_c_ulonglong] = ACTIONS(1413), - [anon_sym_c_float] = ACTIONS(1413), - [anon_sym_c_double] = ACTIONS(1413), - [anon_sym_c_longdouble] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_COLON] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_defer] = ACTIONS(1413), - [anon_sym_errdefer] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_expand] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), - [anon_sym_orelse] = ACTIONS(1413), - [anon_sym_catch] = ACTIONS(1413), - [anon_sym_or] = ACTIONS(1413), - [anon_sym_and] = ACTIONS(1413), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT] = ACTIONS(1413), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_GT_GT] = ACTIONS(1411), - [anon_sym_LT_LT_PIPE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_null] = ACTIONS(1413), - [anon_sym_unreachable] = ACTIONS(1413), - [anon_sym_undefined] = ACTIONS(1413), - [sym_sink] = ACTIONS(1413), - [sym_integer] = ACTIONS(1413), - [sym_float] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_multiline_string] = ACTIONS(1411), - [sym_character] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1411), - }, - [STATE(798)] = { - [aux_sym_type_repeat1] = STATE(798), - [ts_builtin_sym_end] = ACTIONS(1465), - [sym_identifier] = ACTIONS(1467), - [anon_sym_import] = ACTIONS(1467), - [anon_sym_test] = ACTIONS(1467), - [anon_sym_hide] = ACTIONS(1467), - [anon_sym_func] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_DOLLAR] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_noreturn] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_anyopaque] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_range] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_c_char] = ACTIONS(1467), - [anon_sym_c_schar] = ACTIONS(1467), - [anon_sym_c_uchar] = ACTIONS(1467), - [anon_sym_c_short] = ACTIONS(1467), - [anon_sym_c_ushort] = ACTIONS(1467), - [anon_sym_c_int] = ACTIONS(1467), - [anon_sym_c_uint] = ACTIONS(1467), - [anon_sym_c_long] = ACTIONS(1467), - [anon_sym_c_ulong] = ACTIONS(1467), - [anon_sym_c_longlong] = ACTIONS(1467), - [anon_sym_c_ulonglong] = ACTIONS(1467), - [anon_sym_c_float] = ACTIONS(1467), - [anon_sym_c_double] = ACTIONS(1467), - [anon_sym_c_longdouble] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_errdefer] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_else] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_expand] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_match] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), - [anon_sym_orelse] = ACTIONS(1467), - [anon_sym_catch] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_xor] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_LT_LT_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_unreachable] = ACTIONS(1467), - [anon_sym_undefined] = ACTIONS(1467), - [sym_sink] = ACTIONS(1467), - [sym_integer] = ACTIONS(1467), - [sym_float] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_multiline_string] = ACTIONS(1465), - [sym_character] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1465), - }, - [STATE(799)] = { - [sym_argument_list] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_test] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_COLON] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(800)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(801)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3909), - [sym_labeled_block] = STATE(3909), - [sym_if_statement] = STATE(3909), - [sym_while_statement] = STATE(3909), - [sym_for_statement] = STATE(3909), - [sym_match_statement] = STATE(3909), - [sym__value] = STATE(3909), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(933), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2242), - }, - [STATE(802)] = { - [ts_builtin_sym_end] = ACTIONS(2033), - [sym_identifier] = ACTIONS(2035), - [anon_sym_import] = ACTIONS(2035), - [anon_sym_test] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_func] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2035), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2033), - [anon_sym_QMARK] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_void] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_anyopaque] = ACTIONS(2035), - [anon_sym_bool] = ACTIONS(2035), - [anon_sym_int] = ACTIONS(2035), - [anon_sym_uint] = ACTIONS(2035), - [anon_sym_float] = ACTIONS(2035), - [anon_sym_range] = ACTIONS(2035), - [anon_sym_i8] = ACTIONS(2035), - [anon_sym_i16] = ACTIONS(2035), - [anon_sym_i32] = ACTIONS(2035), - [anon_sym_i64] = ACTIONS(2035), - [anon_sym_u8] = ACTIONS(2035), - [anon_sym_u16] = ACTIONS(2035), - [anon_sym_u32] = ACTIONS(2035), - [anon_sym_u64] = ACTIONS(2035), - [anon_sym_isize] = ACTIONS(2035), - [anon_sym_usize] = ACTIONS(2035), - [anon_sym_f32] = ACTIONS(2035), - [anon_sym_f64] = ACTIONS(2035), - [anon_sym_c_char] = ACTIONS(2035), - [anon_sym_c_schar] = ACTIONS(2035), - [anon_sym_c_uchar] = ACTIONS(2035), - [anon_sym_c_short] = ACTIONS(2035), - [anon_sym_c_ushort] = ACTIONS(2035), - [anon_sym_c_int] = ACTIONS(2035), - [anon_sym_c_uint] = ACTIONS(2035), - [anon_sym_c_long] = ACTIONS(2035), - [anon_sym_c_ulong] = ACTIONS(2035), - [anon_sym_c_longlong] = ACTIONS(2035), - [anon_sym_c_ulonglong] = ACTIONS(2035), - [anon_sym_c_float] = ACTIONS(2035), - [anon_sym_c_double] = ACTIONS(2035), - [anon_sym_c_longdouble] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_COLON] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_defer] = ACTIONS(2035), - [anon_sym_errdefer] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_expand] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), - [anon_sym_orelse] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_or] = ACTIONS(2035), - [anon_sym_and] = ACTIONS(2035), - [anon_sym_EQ_EQ] = ACTIONS(2033), - [anon_sym_BANG_EQ] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_LT_EQ] = ACTIONS(2033), - [anon_sym_GT] = ACTIONS(2035), - [anon_sym_GT_EQ] = ACTIONS(2033), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym_xor] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_GT_GT] = ACTIONS(2033), - [anon_sym_LT_LT_PIPE] = ACTIONS(2033), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_SLASH] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_DOT] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_unreachable] = ACTIONS(2035), - [anon_sym_undefined] = ACTIONS(2035), - [sym_sink] = ACTIONS(2035), - [sym_integer] = ACTIONS(2035), - [sym_float] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym_multiline_string] = ACTIONS(2033), - [sym_character] = ACTIONS(2033), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2033), - }, - [STATE(803)] = { - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2039), - [anon_sym_import] = ACTIONS(2039), - [anon_sym_test] = ACTIONS(2039), - [anon_sym_hide] = ACTIONS(2039), - [anon_sym_func] = ACTIONS(2039), - [anon_sym_BANG] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_DASH] = ACTIONS(2037), - [anon_sym_DOLLAR] = ACTIONS(2037), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_void] = ACTIONS(2039), - [anon_sym_noreturn] = ACTIONS(2039), - [anon_sym_type] = ACTIONS(2039), - [anon_sym_anyopaque] = ACTIONS(2039), - [anon_sym_bool] = ACTIONS(2039), - [anon_sym_int] = ACTIONS(2039), - [anon_sym_uint] = ACTIONS(2039), - [anon_sym_float] = ACTIONS(2039), - [anon_sym_range] = ACTIONS(2039), - [anon_sym_i8] = ACTIONS(2039), - [anon_sym_i16] = ACTIONS(2039), - [anon_sym_i32] = ACTIONS(2039), - [anon_sym_i64] = ACTIONS(2039), - [anon_sym_u8] = ACTIONS(2039), - [anon_sym_u16] = ACTIONS(2039), - [anon_sym_u32] = ACTIONS(2039), - [anon_sym_u64] = ACTIONS(2039), - [anon_sym_isize] = ACTIONS(2039), - [anon_sym_usize] = ACTIONS(2039), - [anon_sym_f32] = ACTIONS(2039), - [anon_sym_f64] = ACTIONS(2039), - [anon_sym_c_char] = ACTIONS(2039), - [anon_sym_c_schar] = ACTIONS(2039), - [anon_sym_c_uchar] = ACTIONS(2039), - [anon_sym_c_short] = ACTIONS(2039), - [anon_sym_c_ushort] = ACTIONS(2039), - [anon_sym_c_int] = ACTIONS(2039), - [anon_sym_c_uint] = ACTIONS(2039), - [anon_sym_c_long] = ACTIONS(2039), - [anon_sym_c_ulong] = ACTIONS(2039), - [anon_sym_c_longlong] = ACTIONS(2039), - [anon_sym_c_ulonglong] = ACTIONS(2039), - [anon_sym_c_float] = ACTIONS(2039), - [anon_sym_c_double] = ACTIONS(2039), - [anon_sym_c_longdouble] = ACTIONS(2039), - [anon_sym_return] = ACTIONS(2039), - [anon_sym_yield] = ACTIONS(2039), - [anon_sym_COLON] = ACTIONS(2037), - [anon_sym_break] = ACTIONS(2039), - [anon_sym_continue] = ACTIONS(2039), - [anon_sym_defer] = ACTIONS(2039), - [anon_sym_errdefer] = ACTIONS(2039), - [anon_sym_if] = ACTIONS(2039), - [anon_sym_else] = ACTIONS(2039), - [anon_sym_while] = ACTIONS(2039), - [anon_sym_expand] = ACTIONS(2039), - [anon_sym_for] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2037), - [anon_sym_orelse] = ACTIONS(2039), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_or] = ACTIONS(2039), - [anon_sym_and] = ACTIONS(2039), - [anon_sym_EQ_EQ] = ACTIONS(2037), - [anon_sym_BANG_EQ] = ACTIONS(2037), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_LT_EQ] = ACTIONS(2037), - [anon_sym_GT] = ACTIONS(2039), - [anon_sym_GT_EQ] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_xor] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2039), - [anon_sym_GT_GT] = ACTIONS(2037), - [anon_sym_LT_LT_PIPE] = ACTIONS(2037), - [anon_sym_PLUS] = ACTIONS(2037), - [anon_sym_SLASH] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_try] = ACTIONS(2039), - [anon_sym_DOT] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = ACTIONS(2039), - [anon_sym_null] = ACTIONS(2039), - [anon_sym_unreachable] = ACTIONS(2039), - [anon_sym_undefined] = ACTIONS(2039), - [sym_sink] = ACTIONS(2039), - [sym_integer] = ACTIONS(2039), - [sym_float] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [sym_multiline_string] = ACTIONS(2037), - [sym_character] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2037), - }, - [STATE(804)] = { - [ts_builtin_sym_end] = ACTIONS(1933), - [sym_identifier] = ACTIONS(1935), - [anon_sym_import] = ACTIONS(1935), - [anon_sym_test] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_func] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_QMARK] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_void] = ACTIONS(1935), - [anon_sym_noreturn] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_anyopaque] = ACTIONS(1935), - [anon_sym_bool] = ACTIONS(1935), - [anon_sym_int] = ACTIONS(1935), - [anon_sym_uint] = ACTIONS(1935), - [anon_sym_float] = ACTIONS(1935), - [anon_sym_range] = ACTIONS(1935), - [anon_sym_i8] = ACTIONS(1935), - [anon_sym_i16] = ACTIONS(1935), - [anon_sym_i32] = ACTIONS(1935), - [anon_sym_i64] = ACTIONS(1935), - [anon_sym_u8] = ACTIONS(1935), - [anon_sym_u16] = ACTIONS(1935), - [anon_sym_u32] = ACTIONS(1935), - [anon_sym_u64] = ACTIONS(1935), - [anon_sym_isize] = ACTIONS(1935), - [anon_sym_usize] = ACTIONS(1935), - [anon_sym_f32] = ACTIONS(1935), - [anon_sym_f64] = ACTIONS(1935), - [anon_sym_c_char] = ACTIONS(1935), - [anon_sym_c_schar] = ACTIONS(1935), - [anon_sym_c_uchar] = ACTIONS(1935), - [anon_sym_c_short] = ACTIONS(1935), - [anon_sym_c_ushort] = ACTIONS(1935), - [anon_sym_c_int] = ACTIONS(1935), - [anon_sym_c_uint] = ACTIONS(1935), - [anon_sym_c_long] = ACTIONS(1935), - [anon_sym_c_ulong] = ACTIONS(1935), - [anon_sym_c_longlong] = ACTIONS(1935), - [anon_sym_c_ulonglong] = ACTIONS(1935), - [anon_sym_c_float] = ACTIONS(1935), - [anon_sym_c_double] = ACTIONS(1935), - [anon_sym_c_longdouble] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_yield] = ACTIONS(1935), - [anon_sym_COLON] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_defer] = ACTIONS(1935), - [anon_sym_errdefer] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_expand] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_orelse] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_or] = ACTIONS(1935), - [anon_sym_and] = ACTIONS(1935), - [anon_sym_EQ_EQ] = ACTIONS(1933), - [anon_sym_BANG_EQ] = ACTIONS(1933), - [anon_sym_LT] = ACTIONS(1935), - [anon_sym_LT_EQ] = ACTIONS(1933), - [anon_sym_GT] = ACTIONS(1935), - [anon_sym_GT_EQ] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1933), - [anon_sym_xor] = ACTIONS(1935), - [anon_sym_LT_LT] = ACTIONS(1935), - [anon_sym_GT_GT] = ACTIONS(1933), - [anon_sym_LT_LT_PIPE] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_SLASH] = ACTIONS(1933), - [anon_sym_TILDE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_DOT] = ACTIONS(1935), - [anon_sym_CARET] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_unreachable] = ACTIONS(1935), - [anon_sym_undefined] = ACTIONS(1935), - [sym_sink] = ACTIONS(1935), - [sym_integer] = ACTIONS(1935), - [sym_float] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym_multiline_string] = ACTIONS(1933), - [sym_character] = ACTIONS(1933), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1933), - }, - [STATE(805)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2244), - }, - [STATE(806)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2246), - }, - [STATE(807)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(849), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2248), - }, - [STATE(808)] = { - [ts_builtin_sym_end] = ACTIONS(1937), - [sym_identifier] = ACTIONS(1939), - [anon_sym_import] = ACTIONS(1939), - [anon_sym_test] = ACTIONS(1939), - [anon_sym_hide] = ACTIONS(1939), - [anon_sym_func] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(1939), - [anon_sym_struct] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_void] = ACTIONS(1939), - [anon_sym_noreturn] = ACTIONS(1939), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_anyopaque] = ACTIONS(1939), - [anon_sym_bool] = ACTIONS(1939), - [anon_sym_int] = ACTIONS(1939), - [anon_sym_uint] = ACTIONS(1939), - [anon_sym_float] = ACTIONS(1939), - [anon_sym_range] = ACTIONS(1939), - [anon_sym_i8] = ACTIONS(1939), - [anon_sym_i16] = ACTIONS(1939), - [anon_sym_i32] = ACTIONS(1939), - [anon_sym_i64] = ACTIONS(1939), - [anon_sym_u8] = ACTIONS(1939), - [anon_sym_u16] = ACTIONS(1939), - [anon_sym_u32] = ACTIONS(1939), - [anon_sym_u64] = ACTIONS(1939), - [anon_sym_isize] = ACTIONS(1939), - [anon_sym_usize] = ACTIONS(1939), - [anon_sym_f32] = ACTIONS(1939), - [anon_sym_f64] = ACTIONS(1939), - [anon_sym_c_char] = ACTIONS(1939), - [anon_sym_c_schar] = ACTIONS(1939), - [anon_sym_c_uchar] = ACTIONS(1939), - [anon_sym_c_short] = ACTIONS(1939), - [anon_sym_c_ushort] = ACTIONS(1939), - [anon_sym_c_int] = ACTIONS(1939), - [anon_sym_c_uint] = ACTIONS(1939), - [anon_sym_c_long] = ACTIONS(1939), - [anon_sym_c_ulong] = ACTIONS(1939), - [anon_sym_c_longlong] = ACTIONS(1939), - [anon_sym_c_ulonglong] = ACTIONS(1939), - [anon_sym_c_float] = ACTIONS(1939), - [anon_sym_c_double] = ACTIONS(1939), - [anon_sym_c_longdouble] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_yield] = ACTIONS(1939), - [anon_sym_COLON] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_defer] = ACTIONS(1939), - [anon_sym_errdefer] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_expand] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1937), - [anon_sym_orelse] = ACTIONS(1939), - [anon_sym_catch] = ACTIONS(1939), - [anon_sym_or] = ACTIONS(1939), - [anon_sym_and] = ACTIONS(1939), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1939), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_xor] = ACTIONS(1939), - [anon_sym_LT_LT] = ACTIONS(1939), - [anon_sym_GT_GT] = ACTIONS(1937), - [anon_sym_LT_LT_PIPE] = ACTIONS(1937), - [anon_sym_PLUS] = ACTIONS(1937), - [anon_sym_SLASH] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(1939), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_unreachable] = ACTIONS(1939), - [anon_sym_undefined] = ACTIONS(1939), - [sym_sink] = ACTIONS(1939), - [sym_integer] = ACTIONS(1939), - [sym_float] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym_multiline_string] = ACTIONS(1937), - [sym_character] = ACTIONS(1937), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1937), - }, - [STATE(809)] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1609), - [anon_sym_import] = ACTIONS(1609), - [anon_sym_test] = ACTIONS(1609), - [anon_sym_hide] = ACTIONS(1609), - [anon_sym_func] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_noreturn] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_anyopaque] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_range] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_c_char] = ACTIONS(1609), - [anon_sym_c_schar] = ACTIONS(1609), - [anon_sym_c_uchar] = ACTIONS(1609), - [anon_sym_c_short] = ACTIONS(1609), - [anon_sym_c_ushort] = ACTIONS(1609), - [anon_sym_c_int] = ACTIONS(1609), - [anon_sym_c_uint] = ACTIONS(1609), - [anon_sym_c_long] = ACTIONS(1609), - [anon_sym_c_ulong] = ACTIONS(1609), - [anon_sym_c_longlong] = ACTIONS(1609), - [anon_sym_c_ulonglong] = ACTIONS(1609), - [anon_sym_c_float] = ACTIONS(1609), - [anon_sym_c_double] = ACTIONS(1609), - [anon_sym_c_longdouble] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_COLON] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_defer] = ACTIONS(1609), - [anon_sym_errdefer] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_expand] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_match] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_orelse] = ACTIONS(1609), - [anon_sym_catch] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_LT_EQ] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1609), - [anon_sym_GT_EQ] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1609), - [anon_sym_GT_GT] = ACTIONS(1607), - [anon_sym_LT_LT_PIPE] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_DOT] = ACTIONS(1609), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_unreachable] = ACTIONS(1609), - [anon_sym_undefined] = ACTIONS(1609), - [sym_sink] = ACTIONS(1609), - [sym_integer] = ACTIONS(1609), - [sym_float] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_multiline_string] = ACTIONS(1607), - [sym_character] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1607), - }, - [STATE(810)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(811)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(842), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2250), - }, - [STATE(812)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2252), - }, - [STATE(813)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(814)] = { - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1943), - [anon_sym_import] = ACTIONS(1943), - [anon_sym_test] = ACTIONS(1943), - [anon_sym_hide] = ACTIONS(1943), - [anon_sym_func] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_void] = ACTIONS(1943), - [anon_sym_noreturn] = ACTIONS(1943), - [anon_sym_type] = ACTIONS(1943), - [anon_sym_anyopaque] = ACTIONS(1943), - [anon_sym_bool] = ACTIONS(1943), - [anon_sym_int] = ACTIONS(1943), - [anon_sym_uint] = ACTIONS(1943), - [anon_sym_float] = ACTIONS(1943), - [anon_sym_range] = ACTIONS(1943), - [anon_sym_i8] = ACTIONS(1943), - [anon_sym_i16] = ACTIONS(1943), - [anon_sym_i32] = ACTIONS(1943), - [anon_sym_i64] = ACTIONS(1943), - [anon_sym_u8] = ACTIONS(1943), - [anon_sym_u16] = ACTIONS(1943), - [anon_sym_u32] = ACTIONS(1943), - [anon_sym_u64] = ACTIONS(1943), - [anon_sym_isize] = ACTIONS(1943), - [anon_sym_usize] = ACTIONS(1943), - [anon_sym_f32] = ACTIONS(1943), - [anon_sym_f64] = ACTIONS(1943), - [anon_sym_c_char] = ACTIONS(1943), - [anon_sym_c_schar] = ACTIONS(1943), - [anon_sym_c_uchar] = ACTIONS(1943), - [anon_sym_c_short] = ACTIONS(1943), - [anon_sym_c_ushort] = ACTIONS(1943), - [anon_sym_c_int] = ACTIONS(1943), - [anon_sym_c_uint] = ACTIONS(1943), - [anon_sym_c_long] = ACTIONS(1943), - [anon_sym_c_ulong] = ACTIONS(1943), - [anon_sym_c_longlong] = ACTIONS(1943), - [anon_sym_c_ulonglong] = ACTIONS(1943), - [anon_sym_c_float] = ACTIONS(1943), - [anon_sym_c_double] = ACTIONS(1943), - [anon_sym_c_longdouble] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_yield] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_defer] = ACTIONS(1943), - [anon_sym_errdefer] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_else] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_expand] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_orelse] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_or] = ACTIONS(1943), - [anon_sym_and] = ACTIONS(1943), - [anon_sym_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_xor] = ACTIONS(1943), - [anon_sym_LT_LT] = ACTIONS(1943), - [anon_sym_GT_GT] = ACTIONS(1941), - [anon_sym_LT_LT_PIPE] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_DOT] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_unreachable] = ACTIONS(1943), - [anon_sym_undefined] = ACTIONS(1943), - [sym_sink] = ACTIONS(1943), - [sym_integer] = ACTIONS(1943), - [sym_float] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym_multiline_string] = ACTIONS(1941), - [sym_character] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1941), - }, - [STATE(815)] = { - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1947), - [anon_sym_import] = ACTIONS(1947), - [anon_sym_test] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_func] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_QMARK] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_void] = ACTIONS(1947), - [anon_sym_noreturn] = ACTIONS(1947), - [anon_sym_type] = ACTIONS(1947), - [anon_sym_anyopaque] = ACTIONS(1947), - [anon_sym_bool] = ACTIONS(1947), - [anon_sym_int] = ACTIONS(1947), - [anon_sym_uint] = ACTIONS(1947), - [anon_sym_float] = ACTIONS(1947), - [anon_sym_range] = ACTIONS(1947), - [anon_sym_i8] = ACTIONS(1947), - [anon_sym_i16] = ACTIONS(1947), - [anon_sym_i32] = ACTIONS(1947), - [anon_sym_i64] = ACTIONS(1947), - [anon_sym_u8] = ACTIONS(1947), - [anon_sym_u16] = ACTIONS(1947), - [anon_sym_u32] = ACTIONS(1947), - [anon_sym_u64] = ACTIONS(1947), - [anon_sym_isize] = ACTIONS(1947), - [anon_sym_usize] = ACTIONS(1947), - [anon_sym_f32] = ACTIONS(1947), - [anon_sym_f64] = ACTIONS(1947), - [anon_sym_c_char] = ACTIONS(1947), - [anon_sym_c_schar] = ACTIONS(1947), - [anon_sym_c_uchar] = ACTIONS(1947), - [anon_sym_c_short] = ACTIONS(1947), - [anon_sym_c_ushort] = ACTIONS(1947), - [anon_sym_c_int] = ACTIONS(1947), - [anon_sym_c_uint] = ACTIONS(1947), - [anon_sym_c_long] = ACTIONS(1947), - [anon_sym_c_ulong] = ACTIONS(1947), - [anon_sym_c_longlong] = ACTIONS(1947), - [anon_sym_c_ulonglong] = ACTIONS(1947), - [anon_sym_c_float] = ACTIONS(1947), - [anon_sym_c_double] = ACTIONS(1947), - [anon_sym_c_longdouble] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_yield] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_defer] = ACTIONS(1947), - [anon_sym_errdefer] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_expand] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_orelse] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_or] = ACTIONS(1947), - [anon_sym_and] = ACTIONS(1947), - [anon_sym_EQ_EQ] = ACTIONS(1945), - [anon_sym_BANG_EQ] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_LT_EQ] = ACTIONS(1945), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_GT_EQ] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_xor] = ACTIONS(1947), - [anon_sym_LT_LT] = ACTIONS(1947), - [anon_sym_GT_GT] = ACTIONS(1945), - [anon_sym_LT_LT_PIPE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_SLASH] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [anon_sym_unreachable] = ACTIONS(1947), - [anon_sym_undefined] = ACTIONS(1947), - [sym_sink] = ACTIONS(1947), - [sym_integer] = ACTIONS(1947), - [sym_float] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym_multiline_string] = ACTIONS(1945), - [sym_character] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1945), - }, - [STATE(816)] = { - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1515), - [anon_sym_import] = ACTIONS(1515), - [anon_sym_test] = ACTIONS(1515), - [anon_sym_hide] = ACTIONS(1515), - [anon_sym_func] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_DOLLAR] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_noreturn] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1515), - [anon_sym_anyopaque] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_range] = ACTIONS(1515), - [anon_sym_i8] = ACTIONS(1515), - [anon_sym_i16] = ACTIONS(1515), - [anon_sym_i32] = ACTIONS(1515), - [anon_sym_i64] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1515), - [anon_sym_u16] = ACTIONS(1515), - [anon_sym_u32] = ACTIONS(1515), - [anon_sym_u64] = ACTIONS(1515), - [anon_sym_isize] = ACTIONS(1515), - [anon_sym_usize] = ACTIONS(1515), - [anon_sym_f32] = ACTIONS(1515), - [anon_sym_f64] = ACTIONS(1515), - [anon_sym_c_char] = ACTIONS(1515), - [anon_sym_c_schar] = ACTIONS(1515), - [anon_sym_c_uchar] = ACTIONS(1515), - [anon_sym_c_short] = ACTIONS(1515), - [anon_sym_c_ushort] = ACTIONS(1515), - [anon_sym_c_int] = ACTIONS(1515), - [anon_sym_c_uint] = ACTIONS(1515), - [anon_sym_c_long] = ACTIONS(1515), - [anon_sym_c_ulong] = ACTIONS(1515), - [anon_sym_c_longlong] = ACTIONS(1515), - [anon_sym_c_ulonglong] = ACTIONS(1515), - [anon_sym_c_float] = ACTIONS(1515), - [anon_sym_c_double] = ACTIONS(1515), - [anon_sym_c_longdouble] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_yield] = ACTIONS(1515), - [anon_sym_COLON] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_defer] = ACTIONS(1515), - [anon_sym_errdefer] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_else] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_expand] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), - [anon_sym_orelse] = ACTIONS(1515), - [anon_sym_catch] = ACTIONS(1515), - [anon_sym_or] = ACTIONS(1515), - [anon_sym_and] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_xor] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1515), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_LT_LT_PIPE] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_unreachable] = ACTIONS(1515), - [anon_sym_undefined] = ACTIONS(1515), - [sym_sink] = ACTIONS(1515), - [sym_integer] = ACTIONS(1515), - [sym_float] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_multiline_string] = ACTIONS(1513), - [sym_character] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1513), - }, - [STATE(817)] = { - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(423), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_QMARK] = ACTIONS(418), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_void] = ACTIONS(423), - [anon_sym_noreturn] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_anyopaque] = ACTIONS(423), - [anon_sym_bool] = ACTIONS(423), - [anon_sym_int] = ACTIONS(423), - [anon_sym_uint] = ACTIONS(423), - [anon_sym_float] = ACTIONS(423), - [anon_sym_range] = ACTIONS(423), - [anon_sym_i8] = ACTIONS(423), - [anon_sym_i16] = ACTIONS(423), - [anon_sym_i32] = ACTIONS(423), - [anon_sym_i64] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(423), - [anon_sym_u16] = ACTIONS(423), - [anon_sym_u32] = ACTIONS(423), - [anon_sym_u64] = ACTIONS(423), - [anon_sym_isize] = ACTIONS(423), - [anon_sym_usize] = ACTIONS(423), - [anon_sym_f32] = ACTIONS(423), - [anon_sym_f64] = ACTIONS(423), - [anon_sym_c_char] = ACTIONS(423), - [anon_sym_c_schar] = ACTIONS(423), - [anon_sym_c_uchar] = ACTIONS(423), - [anon_sym_c_short] = ACTIONS(423), - [anon_sym_c_ushort] = ACTIONS(423), - [anon_sym_c_int] = ACTIONS(423), - [anon_sym_c_uint] = ACTIONS(423), - [anon_sym_c_long] = ACTIONS(423), - [anon_sym_c_ulong] = ACTIONS(423), - [anon_sym_c_longlong] = ACTIONS(423), - [anon_sym_c_ulonglong] = ACTIONS(423), - [anon_sym_c_float] = ACTIONS(423), - [anon_sym_c_double] = ACTIONS(423), - [anon_sym_c_longdouble] = ACTIONS(423), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_break] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_defer] = ACTIONS(423), - [anon_sym_errdefer] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_else] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_expand] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_TILDE] = ACTIONS(418), - [anon_sym_try] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_null] = ACTIONS(423), - [anon_sym_unreachable] = ACTIONS(423), - [anon_sym_undefined] = ACTIONS(423), - [sym_sink] = ACTIONS(423), - [sym_integer] = ACTIONS(423), - [sym_float] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_multiline_string] = ACTIONS(418), - [sym_character] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), - }, - [STATE(818)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(819)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(826), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2254), - }, - [STATE(820)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(827), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2256), - }, - [STATE(821)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(822)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - }, - [STATE(823)] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1605), - [anon_sym_test] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_noreturn] = ACTIONS(1605), - [anon_sym_type] = ACTIONS(1605), - [anon_sym_anyopaque] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_int] = ACTIONS(1605), - [anon_sym_uint] = ACTIONS(1605), - [anon_sym_float] = ACTIONS(1605), - [anon_sym_range] = ACTIONS(1605), - [anon_sym_i8] = ACTIONS(1605), - [anon_sym_i16] = ACTIONS(1605), - [anon_sym_i32] = ACTIONS(1605), - [anon_sym_i64] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1605), - [anon_sym_u16] = ACTIONS(1605), - [anon_sym_u32] = ACTIONS(1605), - [anon_sym_u64] = ACTIONS(1605), - [anon_sym_isize] = ACTIONS(1605), - [anon_sym_usize] = ACTIONS(1605), - [anon_sym_f32] = ACTIONS(1605), - [anon_sym_f64] = ACTIONS(1605), - [anon_sym_c_char] = ACTIONS(1605), - [anon_sym_c_schar] = ACTIONS(1605), - [anon_sym_c_uchar] = ACTIONS(1605), - [anon_sym_c_short] = ACTIONS(1605), - [anon_sym_c_ushort] = ACTIONS(1605), - [anon_sym_c_int] = ACTIONS(1605), - [anon_sym_c_uint] = ACTIONS(1605), - [anon_sym_c_long] = ACTIONS(1605), - [anon_sym_c_ulong] = ACTIONS(1605), - [anon_sym_c_longlong] = ACTIONS(1605), - [anon_sym_c_ulonglong] = ACTIONS(1605), - [anon_sym_c_float] = ACTIONS(1605), - [anon_sym_c_double] = ACTIONS(1605), - [anon_sym_c_longdouble] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_yield] = ACTIONS(1605), - [anon_sym_COLON] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_defer] = ACTIONS(1605), - [anon_sym_errdefer] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_expand] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_orelse] = ACTIONS(1605), - [anon_sym_catch] = ACTIONS(1605), - [anon_sym_or] = ACTIONS(1605), - [anon_sym_and] = ACTIONS(1605), - [anon_sym_EQ_EQ] = ACTIONS(1603), - [anon_sym_BANG_EQ] = ACTIONS(1603), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym_LT_EQ] = ACTIONS(1603), - [anon_sym_GT] = ACTIONS(1605), - [anon_sym_GT_EQ] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_xor] = ACTIONS(1605), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_GT_GT] = ACTIONS(1603), - [anon_sym_LT_LT_PIPE] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_DOT] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1605), - [anon_sym_false] = ACTIONS(1605), - [anon_sym_null] = ACTIONS(1605), - [anon_sym_unreachable] = ACTIONS(1605), - [anon_sym_undefined] = ACTIONS(1605), - [sym_sink] = ACTIONS(1605), - [sym_integer] = ACTIONS(1605), - [sym_float] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_multiline_string] = ACTIONS(1603), - [sym_character] = ACTIONS(1603), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1603), - }, - [STATE(824)] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym_identifier] = ACTIONS(1613), - [anon_sym_import] = ACTIONS(1613), - [anon_sym_test] = ACTIONS(1613), - [anon_sym_hide] = ACTIONS(1613), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_struct] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_DOLLAR] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1611), - [anon_sym_QMARK] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_void] = ACTIONS(1613), - [anon_sym_noreturn] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1613), - [anon_sym_anyopaque] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_int] = ACTIONS(1613), - [anon_sym_uint] = ACTIONS(1613), - [anon_sym_float] = ACTIONS(1613), - [anon_sym_range] = ACTIONS(1613), - [anon_sym_i8] = ACTIONS(1613), - [anon_sym_i16] = ACTIONS(1613), - [anon_sym_i32] = ACTIONS(1613), - [anon_sym_i64] = ACTIONS(1613), - [anon_sym_u8] = ACTIONS(1613), - [anon_sym_u16] = ACTIONS(1613), - [anon_sym_u32] = ACTIONS(1613), - [anon_sym_u64] = ACTIONS(1613), - [anon_sym_isize] = ACTIONS(1613), - [anon_sym_usize] = ACTIONS(1613), - [anon_sym_f32] = ACTIONS(1613), - [anon_sym_f64] = ACTIONS(1613), - [anon_sym_c_char] = ACTIONS(1613), - [anon_sym_c_schar] = ACTIONS(1613), - [anon_sym_c_uchar] = ACTIONS(1613), - [anon_sym_c_short] = ACTIONS(1613), - [anon_sym_c_ushort] = ACTIONS(1613), - [anon_sym_c_int] = ACTIONS(1613), - [anon_sym_c_uint] = ACTIONS(1613), - [anon_sym_c_long] = ACTIONS(1613), - [anon_sym_c_ulong] = ACTIONS(1613), - [anon_sym_c_longlong] = ACTIONS(1613), - [anon_sym_c_ulonglong] = ACTIONS(1613), - [anon_sym_c_float] = ACTIONS(1613), - [anon_sym_c_double] = ACTIONS(1613), - [anon_sym_c_longdouble] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_yield] = ACTIONS(1613), - [anon_sym_COLON] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_defer] = ACTIONS(1613), - [anon_sym_errdefer] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_else] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_expand] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_match] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1611), - [anon_sym_orelse] = ACTIONS(1613), - [anon_sym_catch] = ACTIONS(1613), - [anon_sym_or] = ACTIONS(1613), - [anon_sym_and] = ACTIONS(1613), - [anon_sym_EQ_EQ] = ACTIONS(1611), - [anon_sym_BANG_EQ] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_LT_EQ] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1613), - [anon_sym_GT_EQ] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_xor] = ACTIONS(1613), - [anon_sym_LT_LT] = ACTIONS(1613), - [anon_sym_GT_GT] = ACTIONS(1611), - [anon_sym_LT_LT_PIPE] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_try] = ACTIONS(1613), - [anon_sym_DOT] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_null] = ACTIONS(1613), - [anon_sym_unreachable] = ACTIONS(1613), - [anon_sym_undefined] = ACTIONS(1613), - [sym_sink] = ACTIONS(1613), - [sym_integer] = ACTIONS(1613), - [sym_float] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_multiline_string] = ACTIONS(1611), - [sym_character] = ACTIONS(1611), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1611), - }, - [STATE(825)] = { - [ts_builtin_sym_end] = ACTIONS(1819), - [sym_identifier] = ACTIONS(1821), - [anon_sym_import] = ACTIONS(1821), - [anon_sym_test] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_func] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_QMARK] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1821), - [anon_sym_noreturn] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_anyopaque] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_int] = ACTIONS(1821), - [anon_sym_uint] = ACTIONS(1821), - [anon_sym_float] = ACTIONS(1821), - [anon_sym_range] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_c_char] = ACTIONS(1821), - [anon_sym_c_schar] = ACTIONS(1821), - [anon_sym_c_uchar] = ACTIONS(1821), - [anon_sym_c_short] = ACTIONS(1821), - [anon_sym_c_ushort] = ACTIONS(1821), - [anon_sym_c_int] = ACTIONS(1821), - [anon_sym_c_uint] = ACTIONS(1821), - [anon_sym_c_long] = ACTIONS(1821), - [anon_sym_c_ulong] = ACTIONS(1821), - [anon_sym_c_longlong] = ACTIONS(1821), - [anon_sym_c_ulonglong] = ACTIONS(1821), - [anon_sym_c_float] = ACTIONS(1821), - [anon_sym_c_double] = ACTIONS(1821), - [anon_sym_c_longdouble] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_yield] = ACTIONS(1821), - [anon_sym_COLON] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_defer] = ACTIONS(1821), - [anon_sym_errdefer] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_expand] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [anon_sym_orelse] = ACTIONS(1821), - [anon_sym_catch] = ACTIONS(1821), - [anon_sym_or] = ACTIONS(1821), - [anon_sym_and] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1819), - [anon_sym_BANG_EQ] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1821), - [anon_sym_LT_EQ] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_xor] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_LT_LT_PIPE] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_unreachable] = ACTIONS(1821), - [anon_sym_undefined] = ACTIONS(1821), - [sym_sink] = ACTIONS(1821), - [sym_integer] = ACTIONS(1821), - [sym_float] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym_multiline_string] = ACTIONS(1819), - [sym_character] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1819), - }, - [STATE(826)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(827)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(828)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(829)] = { - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_import] = ACTIONS(1813), - [anon_sym_test] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_func] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_void] = ACTIONS(1813), - [anon_sym_noreturn] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_anyopaque] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_int] = ACTIONS(1813), - [anon_sym_uint] = ACTIONS(1813), - [anon_sym_float] = ACTIONS(1813), - [anon_sym_range] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_c_char] = ACTIONS(1813), - [anon_sym_c_schar] = ACTIONS(1813), - [anon_sym_c_uchar] = ACTIONS(1813), - [anon_sym_c_short] = ACTIONS(1813), - [anon_sym_c_ushort] = ACTIONS(1813), - [anon_sym_c_int] = ACTIONS(1813), - [anon_sym_c_uint] = ACTIONS(1813), - [anon_sym_c_long] = ACTIONS(1813), - [anon_sym_c_ulong] = ACTIONS(1813), - [anon_sym_c_longlong] = ACTIONS(1813), - [anon_sym_c_ulonglong] = ACTIONS(1813), - [anon_sym_c_float] = ACTIONS(1813), - [anon_sym_c_double] = ACTIONS(1813), - [anon_sym_c_longdouble] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_COLON] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_defer] = ACTIONS(1813), - [anon_sym_errdefer] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_expand] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_DOT_DOT] = ACTIONS(1813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), - [anon_sym_orelse] = ACTIONS(1813), - [anon_sym_catch] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [anon_sym_and] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1811), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_xor] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1811), - [anon_sym_LT_LT_PIPE] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [anon_sym_null] = ACTIONS(1813), - [anon_sym_unreachable] = ACTIONS(1813), - [anon_sym_undefined] = ACTIONS(1813), - [sym_sink] = ACTIONS(1813), - [sym_integer] = ACTIONS(1813), - [sym_float] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [sym_multiline_string] = ACTIONS(1811), - [sym_character] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1811), - }, - [STATE(830)] = { - [ts_builtin_sym_end] = ACTIONS(457), - [sym_identifier] = ACTIONS(455), - [anon_sym_import] = ACTIONS(455), - [anon_sym_test] = ACTIONS(455), - [anon_sym_hide] = ACTIONS(455), - [anon_sym_func] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(455), - [anon_sym_struct] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_DOLLAR] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_void] = ACTIONS(455), - [anon_sym_noreturn] = ACTIONS(455), - [anon_sym_type] = ACTIONS(455), - [anon_sym_anyopaque] = ACTIONS(455), - [anon_sym_bool] = ACTIONS(455), - [anon_sym_int] = ACTIONS(455), - [anon_sym_uint] = ACTIONS(455), - [anon_sym_float] = ACTIONS(455), - [anon_sym_range] = ACTIONS(455), - [anon_sym_i8] = ACTIONS(455), - [anon_sym_i16] = ACTIONS(455), - [anon_sym_i32] = ACTIONS(455), - [anon_sym_i64] = ACTIONS(455), - [anon_sym_u8] = ACTIONS(455), - [anon_sym_u16] = ACTIONS(455), - [anon_sym_u32] = ACTIONS(455), - [anon_sym_u64] = ACTIONS(455), - [anon_sym_isize] = ACTIONS(455), - [anon_sym_usize] = ACTIONS(455), - [anon_sym_f32] = ACTIONS(455), - [anon_sym_f64] = ACTIONS(455), - [anon_sym_c_char] = ACTIONS(455), - [anon_sym_c_schar] = ACTIONS(455), - [anon_sym_c_uchar] = ACTIONS(455), - [anon_sym_c_short] = ACTIONS(455), - [anon_sym_c_ushort] = ACTIONS(455), - [anon_sym_c_int] = ACTIONS(455), - [anon_sym_c_uint] = ACTIONS(455), - [anon_sym_c_long] = ACTIONS(455), - [anon_sym_c_ulong] = ACTIONS(455), - [anon_sym_c_longlong] = ACTIONS(455), - [anon_sym_c_ulonglong] = ACTIONS(455), - [anon_sym_c_float] = ACTIONS(455), - [anon_sym_c_double] = ACTIONS(455), - [anon_sym_c_longdouble] = ACTIONS(455), - [anon_sym_return] = ACTIONS(455), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_COLON] = ACTIONS(457), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_defer] = ACTIONS(455), - [anon_sym_errdefer] = ACTIONS(455), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(455), - [anon_sym_while] = ACTIONS(455), - [anon_sym_expand] = ACTIONS(455), - [anon_sym_for] = ACTIONS(455), - [anon_sym_match] = ACTIONS(455), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(457), - [anon_sym_orelse] = ACTIONS(455), - [anon_sym_catch] = ACTIONS(455), - [anon_sym_or] = ACTIONS(455), - [anon_sym_and] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(455), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_LT_LT_PIPE] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_try] = ACTIONS(455), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_null] = ACTIONS(455), - [anon_sym_unreachable] = ACTIONS(455), - [anon_sym_undefined] = ACTIONS(455), - [sym_sink] = ACTIONS(455), - [sym_integer] = ACTIONS(455), - [sym_float] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_multiline_string] = ACTIONS(457), - [sym_character] = ACTIONS(457), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(457), - }, - [STATE(831)] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_test] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_func] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_QMARK] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_noreturn] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_anyopaque] = ACTIONS(1841), - [anon_sym_bool] = ACTIONS(1841), - [anon_sym_int] = ACTIONS(1841), - [anon_sym_uint] = ACTIONS(1841), - [anon_sym_float] = ACTIONS(1841), - [anon_sym_range] = ACTIONS(1841), - [anon_sym_i8] = ACTIONS(1841), - [anon_sym_i16] = ACTIONS(1841), - [anon_sym_i32] = ACTIONS(1841), - [anon_sym_i64] = ACTIONS(1841), - [anon_sym_u8] = ACTIONS(1841), - [anon_sym_u16] = ACTIONS(1841), - [anon_sym_u32] = ACTIONS(1841), - [anon_sym_u64] = ACTIONS(1841), - [anon_sym_isize] = ACTIONS(1841), - [anon_sym_usize] = ACTIONS(1841), - [anon_sym_f32] = ACTIONS(1841), - [anon_sym_f64] = ACTIONS(1841), - [anon_sym_c_char] = ACTIONS(1841), - [anon_sym_c_schar] = ACTIONS(1841), - [anon_sym_c_uchar] = ACTIONS(1841), - [anon_sym_c_short] = ACTIONS(1841), - [anon_sym_c_ushort] = ACTIONS(1841), - [anon_sym_c_int] = ACTIONS(1841), - [anon_sym_c_uint] = ACTIONS(1841), - [anon_sym_c_long] = ACTIONS(1841), - [anon_sym_c_ulong] = ACTIONS(1841), - [anon_sym_c_longlong] = ACTIONS(1841), - [anon_sym_c_ulonglong] = ACTIONS(1841), - [anon_sym_c_float] = ACTIONS(1841), - [anon_sym_c_double] = ACTIONS(1841), - [anon_sym_c_longdouble] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_defer] = ACTIONS(1841), - [anon_sym_errdefer] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_expand] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1839), - [anon_sym_orelse] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_or] = ACTIONS(1841), - [anon_sym_and] = ACTIONS(1841), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_xor] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(1841), - [anon_sym_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_PIPE] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1839), + [STATE(370)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), [anon_sym_true] = ACTIONS(1841), [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [anon_sym_unreachable] = ACTIONS(1841), - [anon_sym_undefined] = ACTIONS(1841), - [sym_sink] = ACTIONS(1841), - [sym_integer] = ACTIONS(1841), - [sym_float] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym_multiline_string] = ACTIONS(1839), - [sym_character] = ACTIONS(1839), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1839), + [sym__newline] = ACTIONS(2187), }, - [STATE(832)] = { - [ts_builtin_sym_end] = ACTIONS(1591), - [sym_identifier] = ACTIONS(1593), - [anon_sym_import] = ACTIONS(1593), - [anon_sym_test] = ACTIONS(1593), - [anon_sym_hide] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_noreturn] = ACTIONS(1593), - [anon_sym_type] = 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_return] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(1591), - [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(1593), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_orelse] = ACTIONS(1593), - [anon_sym_catch] = ACTIONS(1593), - [anon_sym_or] = ACTIONS(1593), - [anon_sym_and] = ACTIONS(1593), - [anon_sym_EQ_EQ] = ACTIONS(1591), - [anon_sym_BANG_EQ] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1593), - [anon_sym_LT_EQ] = ACTIONS(1591), - [anon_sym_GT] = ACTIONS(1593), - [anon_sym_GT_EQ] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_xor] = ACTIONS(1593), - [anon_sym_LT_LT] = ACTIONS(1593), - [anon_sym_GT_GT] = ACTIONS(1591), - [anon_sym_LT_LT_PIPE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_null] = ACTIONS(1593), - [anon_sym_unreachable] = ACTIONS(1593), - [anon_sym_undefined] = ACTIONS(1593), - [sym_sink] = ACTIONS(1593), - [sym_integer] = ACTIONS(1593), - [sym_float] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_multiline_string] = ACTIONS(1591), - [sym_character] = ACTIONS(1591), + [STATE(371)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1591), + [sym__newline] = ACTIONS(1849), }, - [STATE(833)] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_import] = ACTIONS(1701), - [anon_sym_test] = ACTIONS(1701), - [anon_sym_hide] = ACTIONS(1701), - [anon_sym_func] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_void] = ACTIONS(1701), - [anon_sym_noreturn] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_anyopaque] = ACTIONS(1701), - [anon_sym_bool] = ACTIONS(1701), - [anon_sym_int] = ACTIONS(1701), - [anon_sym_uint] = ACTIONS(1701), - [anon_sym_float] = ACTIONS(1701), - [anon_sym_range] = ACTIONS(1701), - [anon_sym_i8] = ACTIONS(1701), - [anon_sym_i16] = ACTIONS(1701), - [anon_sym_i32] = ACTIONS(1701), - [anon_sym_i64] = ACTIONS(1701), - [anon_sym_u8] = ACTIONS(1701), - [anon_sym_u16] = ACTIONS(1701), - [anon_sym_u32] = ACTIONS(1701), - [anon_sym_u64] = ACTIONS(1701), - [anon_sym_isize] = ACTIONS(1701), - [anon_sym_usize] = ACTIONS(1701), - [anon_sym_f32] = ACTIONS(1701), - [anon_sym_f64] = ACTIONS(1701), - [anon_sym_c_char] = ACTIONS(1701), - [anon_sym_c_schar] = ACTIONS(1701), - [anon_sym_c_uchar] = ACTIONS(1701), - [anon_sym_c_short] = ACTIONS(1701), - [anon_sym_c_ushort] = ACTIONS(1701), - [anon_sym_c_int] = ACTIONS(1701), - [anon_sym_c_uint] = ACTIONS(1701), - [anon_sym_c_long] = ACTIONS(1701), - [anon_sym_c_ulong] = ACTIONS(1701), - [anon_sym_c_longlong] = ACTIONS(1701), - [anon_sym_c_ulonglong] = ACTIONS(1701), - [anon_sym_c_float] = ACTIONS(1701), - [anon_sym_c_double] = ACTIONS(1701), - [anon_sym_c_longdouble] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_COLON] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_defer] = ACTIONS(1701), - [anon_sym_errdefer] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_expand] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1699), - [anon_sym_orelse] = ACTIONS(1701), - [anon_sym_catch] = ACTIONS(1701), - [anon_sym_or] = ACTIONS(1701), - [anon_sym_and] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_xor] = ACTIONS(1701), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1699), - [anon_sym_LT_LT_PIPE] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [anon_sym_null] = ACTIONS(1701), - [anon_sym_unreachable] = ACTIONS(1701), - [anon_sym_undefined] = ACTIONS(1701), - [sym_sink] = ACTIONS(1701), - [sym_integer] = ACTIONS(1701), - [sym_float] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym_multiline_string] = ACTIONS(1699), - [sym_character] = ACTIONS(1699), + [STATE(372)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1699), + [sym__newline] = ACTIONS(1849), }, - [STATE(834)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3930), - [sym_labeled_block] = STATE(3930), - [sym_if_statement] = STATE(3930), - [sym_while_statement] = STATE(3930), - [sym_for_statement] = STATE(3930), - [sym_match_statement] = STATE(3930), - [sym__value] = STATE(3930), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(373)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2191), }, - [STATE(835)] = { - [ts_builtin_sym_end] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1713), - [anon_sym_import] = ACTIONS(1713), - [anon_sym_test] = ACTIONS(1713), - [anon_sym_hide] = ACTIONS(1713), - [anon_sym_func] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_QMARK] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1713), - [anon_sym_noreturn] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_anyopaque] = ACTIONS(1713), - [anon_sym_bool] = ACTIONS(1713), - [anon_sym_int] = ACTIONS(1713), - [anon_sym_uint] = ACTIONS(1713), - [anon_sym_float] = ACTIONS(1713), - [anon_sym_range] = ACTIONS(1713), - [anon_sym_i8] = ACTIONS(1713), - [anon_sym_i16] = ACTIONS(1713), - [anon_sym_i32] = ACTIONS(1713), - [anon_sym_i64] = ACTIONS(1713), - [anon_sym_u8] = ACTIONS(1713), - [anon_sym_u16] = ACTIONS(1713), - [anon_sym_u32] = ACTIONS(1713), - [anon_sym_u64] = ACTIONS(1713), - [anon_sym_isize] = ACTIONS(1713), - [anon_sym_usize] = ACTIONS(1713), - [anon_sym_f32] = ACTIONS(1713), - [anon_sym_f64] = ACTIONS(1713), - [anon_sym_c_char] = ACTIONS(1713), - [anon_sym_c_schar] = ACTIONS(1713), - [anon_sym_c_uchar] = ACTIONS(1713), - [anon_sym_c_short] = ACTIONS(1713), - [anon_sym_c_ushort] = ACTIONS(1713), - [anon_sym_c_int] = ACTIONS(1713), - [anon_sym_c_uint] = ACTIONS(1713), - [anon_sym_c_long] = ACTIONS(1713), - [anon_sym_c_ulong] = ACTIONS(1713), - [anon_sym_c_longlong] = ACTIONS(1713), - [anon_sym_c_ulonglong] = ACTIONS(1713), - [anon_sym_c_float] = ACTIONS(1713), - [anon_sym_c_double] = ACTIONS(1713), - [anon_sym_c_longdouble] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_COLON] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_defer] = ACTIONS(1713), - [anon_sym_errdefer] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_expand] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_orelse] = ACTIONS(1713), - [anon_sym_catch] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1711), - [anon_sym_BANG_EQ] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_GT_EQ] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_LT_LT] = ACTIONS(1713), - [anon_sym_GT_GT] = ACTIONS(1711), - [anon_sym_LT_LT_PIPE] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1713), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_unreachable] = ACTIONS(1713), - [anon_sym_undefined] = ACTIONS(1713), - [sym_sink] = ACTIONS(1713), - [sym_integer] = ACTIONS(1713), - [sym_float] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym_multiline_string] = ACTIONS(1711), - [sym_character] = ACTIONS(1711), + [STATE(374)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1711), + [sym__newline] = ACTIONS(1849), }, - [STATE(836)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(837)] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1645), - [anon_sym_import] = ACTIONS(1645), - [anon_sym_test] = ACTIONS(1645), - [anon_sym_hide] = ACTIONS(1645), - [anon_sym_func] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_QMARK] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(1645), - [anon_sym_noreturn] = ACTIONS(1645), - [anon_sym_type] = ACTIONS(1645), - [anon_sym_anyopaque] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_int] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_range] = ACTIONS(1645), - [anon_sym_i8] = ACTIONS(1645), - [anon_sym_i16] = ACTIONS(1645), - [anon_sym_i32] = ACTIONS(1645), - [anon_sym_i64] = ACTIONS(1645), - [anon_sym_u8] = ACTIONS(1645), - [anon_sym_u16] = ACTIONS(1645), - [anon_sym_u32] = ACTIONS(1645), - [anon_sym_u64] = ACTIONS(1645), - [anon_sym_isize] = ACTIONS(1645), - [anon_sym_usize] = ACTIONS(1645), - [anon_sym_f32] = ACTIONS(1645), - [anon_sym_f64] = ACTIONS(1645), - [anon_sym_c_char] = ACTIONS(1645), - [anon_sym_c_schar] = ACTIONS(1645), - [anon_sym_c_uchar] = ACTIONS(1645), - [anon_sym_c_short] = ACTIONS(1645), - [anon_sym_c_ushort] = ACTIONS(1645), - [anon_sym_c_int] = ACTIONS(1645), - [anon_sym_c_uint] = ACTIONS(1645), - [anon_sym_c_long] = ACTIONS(1645), - [anon_sym_c_ulong] = ACTIONS(1645), - [anon_sym_c_longlong] = ACTIONS(1645), - [anon_sym_c_ulonglong] = ACTIONS(1645), - [anon_sym_c_float] = ACTIONS(1645), - [anon_sym_c_double] = ACTIONS(1645), - [anon_sym_c_longdouble] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_yield] = ACTIONS(1645), - [anon_sym_COLON] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_defer] = ACTIONS(1645), - [anon_sym_errdefer] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_expand] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_orelse] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_or] = ACTIONS(1645), - [anon_sym_and] = ACTIONS(1645), - [anon_sym_EQ_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_xor] = ACTIONS(1645), - [anon_sym_LT_LT] = ACTIONS(1645), - [anon_sym_GT_GT] = ACTIONS(1643), - [anon_sym_LT_LT_PIPE] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_SLASH] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [anon_sym_unreachable] = ACTIONS(1645), - [anon_sym_undefined] = ACTIONS(1645), - [sym_sink] = ACTIONS(1645), - [sym_integer] = ACTIONS(1645), - [sym_float] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_multiline_string] = ACTIONS(1643), - [sym_character] = ACTIONS(1643), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1643), - }, - [STATE(838)] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym_identifier] = ACTIONS(1649), - [anon_sym_import] = ACTIONS(1649), - [anon_sym_test] = ACTIONS(1649), - [anon_sym_hide] = ACTIONS(1649), - [anon_sym_func] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_QMARK] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_noreturn] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_anyopaque] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_range] = ACTIONS(1649), - [anon_sym_i8] = ACTIONS(1649), - [anon_sym_i16] = ACTIONS(1649), - [anon_sym_i32] = ACTIONS(1649), - [anon_sym_i64] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1649), - [anon_sym_u16] = ACTIONS(1649), - [anon_sym_u32] = ACTIONS(1649), - [anon_sym_u64] = ACTIONS(1649), - [anon_sym_isize] = ACTIONS(1649), - [anon_sym_usize] = ACTIONS(1649), - [anon_sym_f32] = ACTIONS(1649), - [anon_sym_f64] = ACTIONS(1649), - [anon_sym_c_char] = ACTIONS(1649), - [anon_sym_c_schar] = ACTIONS(1649), - [anon_sym_c_uchar] = ACTIONS(1649), - [anon_sym_c_short] = ACTIONS(1649), - [anon_sym_c_ushort] = ACTIONS(1649), - [anon_sym_c_int] = ACTIONS(1649), - [anon_sym_c_uint] = ACTIONS(1649), - [anon_sym_c_long] = ACTIONS(1649), - [anon_sym_c_ulong] = ACTIONS(1649), - [anon_sym_c_longlong] = ACTIONS(1649), - [anon_sym_c_ulonglong] = ACTIONS(1649), - [anon_sym_c_float] = ACTIONS(1649), - [anon_sym_c_double] = ACTIONS(1649), - [anon_sym_c_longdouble] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1649), - [anon_sym_COLON] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_errdefer] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_expand] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1647), - [anon_sym_orelse] = ACTIONS(1649), - [anon_sym_catch] = ACTIONS(1649), - [anon_sym_or] = ACTIONS(1649), - [anon_sym_and] = ACTIONS(1649), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1649), - [anon_sym_GT_EQ] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1649), - [anon_sym_LT_LT] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1647), - [anon_sym_LT_LT_PIPE] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1649), - [anon_sym_CARET] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_unreachable] = ACTIONS(1649), - [anon_sym_undefined] = ACTIONS(1649), - [sym_sink] = ACTIONS(1649), - [sym_integer] = ACTIONS(1649), - [sym_float] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_multiline_string] = ACTIONS(1647), - [sym_character] = ACTIONS(1647), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1647), - }, - [STATE(839)] = { - [ts_builtin_sym_end] = ACTIONS(2049), - [sym_identifier] = ACTIONS(2051), - [anon_sym_import] = ACTIONS(2051), - [anon_sym_test] = ACTIONS(2051), - [anon_sym_hide] = ACTIONS(2051), - [anon_sym_func] = ACTIONS(2051), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_struct] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_QMARK] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_void] = ACTIONS(2051), - [anon_sym_noreturn] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2051), - [anon_sym_anyopaque] = ACTIONS(2051), - [anon_sym_bool] = ACTIONS(2051), - [anon_sym_int] = ACTIONS(2051), - [anon_sym_uint] = ACTIONS(2051), - [anon_sym_float] = ACTIONS(2051), - [anon_sym_range] = ACTIONS(2051), - [anon_sym_i8] = ACTIONS(2051), - [anon_sym_i16] = ACTIONS(2051), - [anon_sym_i32] = ACTIONS(2051), - [anon_sym_i64] = ACTIONS(2051), - [anon_sym_u8] = ACTIONS(2051), - [anon_sym_u16] = ACTIONS(2051), - [anon_sym_u32] = ACTIONS(2051), - [anon_sym_u64] = ACTIONS(2051), - [anon_sym_isize] = ACTIONS(2051), - [anon_sym_usize] = ACTIONS(2051), - [anon_sym_f32] = ACTIONS(2051), - [anon_sym_f64] = ACTIONS(2051), - [anon_sym_c_char] = ACTIONS(2051), - [anon_sym_c_schar] = ACTIONS(2051), - [anon_sym_c_uchar] = ACTIONS(2051), - [anon_sym_c_short] = ACTIONS(2051), - [anon_sym_c_ushort] = ACTIONS(2051), - [anon_sym_c_int] = ACTIONS(2051), - [anon_sym_c_uint] = ACTIONS(2051), - [anon_sym_c_long] = ACTIONS(2051), - [anon_sym_c_ulong] = ACTIONS(2051), - [anon_sym_c_longlong] = ACTIONS(2051), - [anon_sym_c_ulonglong] = ACTIONS(2051), - [anon_sym_c_float] = ACTIONS(2051), - [anon_sym_c_double] = ACTIONS(2051), - [anon_sym_c_longdouble] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_yield] = ACTIONS(2051), - [anon_sym_COLON] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_defer] = ACTIONS(2051), - [anon_sym_errdefer] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_else] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_expand] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2049), - [anon_sym_orelse] = ACTIONS(2051), - [anon_sym_catch] = ACTIONS(2051), - [anon_sym_or] = ACTIONS(2051), - [anon_sym_and] = ACTIONS(2051), - [anon_sym_EQ_EQ] = ACTIONS(2049), - [anon_sym_BANG_EQ] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_LT_EQ] = ACTIONS(2049), - [anon_sym_GT] = ACTIONS(2051), - [anon_sym_GT_EQ] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_xor] = ACTIONS(2051), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_GT_GT] = ACTIONS(2049), - [anon_sym_LT_LT_PIPE] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_TILDE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2051), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_CARET] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [anon_sym_null] = ACTIONS(2051), - [anon_sym_unreachable] = ACTIONS(2051), - [anon_sym_undefined] = ACTIONS(2051), - [sym_sink] = ACTIONS(2051), - [sym_integer] = ACTIONS(2051), - [sym_float] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym_multiline_string] = ACTIONS(2049), - [sym_character] = ACTIONS(2049), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2049), - }, - [STATE(840)] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_test] = ACTIONS(1849), - [anon_sym_hide] = ACTIONS(1849), - [anon_sym_func] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_noreturn] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_anyopaque] = ACTIONS(1849), - [anon_sym_bool] = ACTIONS(1849), - [anon_sym_int] = ACTIONS(1849), - [anon_sym_uint] = ACTIONS(1849), - [anon_sym_float] = ACTIONS(1849), - [anon_sym_range] = ACTIONS(1849), - [anon_sym_i8] = ACTIONS(1849), - [anon_sym_i16] = ACTIONS(1849), - [anon_sym_i32] = ACTIONS(1849), - [anon_sym_i64] = ACTIONS(1849), - [anon_sym_u8] = ACTIONS(1849), - [anon_sym_u16] = ACTIONS(1849), - [anon_sym_u32] = ACTIONS(1849), - [anon_sym_u64] = ACTIONS(1849), - [anon_sym_isize] = ACTIONS(1849), - [anon_sym_usize] = ACTIONS(1849), - [anon_sym_f32] = ACTIONS(1849), - [anon_sym_f64] = ACTIONS(1849), - [anon_sym_c_char] = ACTIONS(1849), - [anon_sym_c_schar] = ACTIONS(1849), - [anon_sym_c_uchar] = ACTIONS(1849), - [anon_sym_c_short] = ACTIONS(1849), - [anon_sym_c_ushort] = ACTIONS(1849), - [anon_sym_c_int] = ACTIONS(1849), - [anon_sym_c_uint] = ACTIONS(1849), - [anon_sym_c_long] = ACTIONS(1849), - [anon_sym_c_ulong] = ACTIONS(1849), - [anon_sym_c_longlong] = ACTIONS(1849), - [anon_sym_c_ulonglong] = ACTIONS(1849), - [anon_sym_c_float] = ACTIONS(1849), - [anon_sym_c_double] = ACTIONS(1849), - [anon_sym_c_longdouble] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_COLON] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_defer] = ACTIONS(1849), - [anon_sym_errdefer] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_expand] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_match] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1847), - [anon_sym_orelse] = ACTIONS(1849), - [anon_sym_catch] = ACTIONS(1849), - [anon_sym_or] = ACTIONS(1849), - [anon_sym_and] = ACTIONS(1849), - [anon_sym_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_xor] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1847), - [anon_sym_LT_LT_PIPE] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [anon_sym_unreachable] = ACTIONS(1849), - [anon_sym_undefined] = ACTIONS(1849), - [sym_sink] = ACTIONS(1849), - [sym_integer] = ACTIONS(1849), - [sym_float] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym_multiline_string] = ACTIONS(1847), - [sym_character] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1847), - }, - [STATE(841)] = { - [ts_builtin_sym_end] = ACTIONS(1851), + [STATE(375)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10241), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11460), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(344), [sym_identifier] = ACTIONS(1853), - [anon_sym_import] = ACTIONS(1853), - [anon_sym_test] = ACTIONS(1853), - [anon_sym_hide] = ACTIONS(1853), - [anon_sym_func] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_void] = ACTIONS(1853), - [anon_sym_noreturn] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_anyopaque] = ACTIONS(1853), - [anon_sym_bool] = ACTIONS(1853), - [anon_sym_int] = ACTIONS(1853), - [anon_sym_uint] = ACTIONS(1853), - [anon_sym_float] = ACTIONS(1853), - [anon_sym_range] = ACTIONS(1853), - [anon_sym_i8] = ACTIONS(1853), - [anon_sym_i16] = ACTIONS(1853), - [anon_sym_i32] = ACTIONS(1853), - [anon_sym_i64] = ACTIONS(1853), - [anon_sym_u8] = ACTIONS(1853), - [anon_sym_u16] = ACTIONS(1853), - [anon_sym_u32] = ACTIONS(1853), - [anon_sym_u64] = ACTIONS(1853), - [anon_sym_isize] = ACTIONS(1853), - [anon_sym_usize] = ACTIONS(1853), - [anon_sym_f32] = ACTIONS(1853), - [anon_sym_f64] = ACTIONS(1853), - [anon_sym_c_char] = ACTIONS(1853), - [anon_sym_c_schar] = ACTIONS(1853), - [anon_sym_c_uchar] = ACTIONS(1853), - [anon_sym_c_short] = ACTIONS(1853), - [anon_sym_c_ushort] = ACTIONS(1853), - [anon_sym_c_int] = ACTIONS(1853), - [anon_sym_c_uint] = ACTIONS(1853), - [anon_sym_c_long] = ACTIONS(1853), - [anon_sym_c_ulong] = ACTIONS(1853), - [anon_sym_c_longlong] = ACTIONS(1853), - [anon_sym_c_ulonglong] = ACTIONS(1853), - [anon_sym_c_float] = ACTIONS(1853), - [anon_sym_c_double] = ACTIONS(1853), - [anon_sym_c_longdouble] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_COLON] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_defer] = ACTIONS(1853), - [anon_sym_errdefer] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_expand] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), - [anon_sym_orelse] = ACTIONS(1853), - [anon_sym_catch] = ACTIONS(1853), - [anon_sym_or] = ACTIONS(1853), - [anon_sym_and] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_xor] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1851), - [anon_sym_LT_LT_PIPE] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [anon_sym_null] = ACTIONS(1853), - [anon_sym_unreachable] = ACTIONS(1853), - [anon_sym_undefined] = ACTIONS(1853), - [sym_sink] = ACTIONS(1853), - [sym_integer] = ACTIONS(1853), - [sym_float] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym_multiline_string] = ACTIONS(1851), - [sym_character] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1851), - }, - [STATE(842)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(843)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(844)] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_test] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_func] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_PIPE] = ACTIONS(1859), - [anon_sym_QMARK] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_noreturn] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_anyopaque] = ACTIONS(1861), - [anon_sym_bool] = ACTIONS(1861), - [anon_sym_int] = ACTIONS(1861), - [anon_sym_uint] = ACTIONS(1861), - [anon_sym_float] = ACTIONS(1861), - [anon_sym_range] = ACTIONS(1861), - [anon_sym_i8] = ACTIONS(1861), - [anon_sym_i16] = ACTIONS(1861), - [anon_sym_i32] = ACTIONS(1861), - [anon_sym_i64] = ACTIONS(1861), - [anon_sym_u8] = ACTIONS(1861), - [anon_sym_u16] = ACTIONS(1861), - [anon_sym_u32] = ACTIONS(1861), - [anon_sym_u64] = ACTIONS(1861), - [anon_sym_isize] = ACTIONS(1861), - [anon_sym_usize] = ACTIONS(1861), - [anon_sym_f32] = ACTIONS(1861), - [anon_sym_f64] = ACTIONS(1861), - [anon_sym_c_char] = ACTIONS(1861), - [anon_sym_c_schar] = ACTIONS(1861), - [anon_sym_c_uchar] = ACTIONS(1861), - [anon_sym_c_short] = ACTIONS(1861), - [anon_sym_c_ushort] = ACTIONS(1861), - [anon_sym_c_int] = ACTIONS(1861), - [anon_sym_c_uint] = ACTIONS(1861), - [anon_sym_c_long] = ACTIONS(1861), - [anon_sym_c_ulong] = ACTIONS(1861), - [anon_sym_c_longlong] = ACTIONS(1861), - [anon_sym_c_ulonglong] = ACTIONS(1861), - [anon_sym_c_float] = ACTIONS(1861), - [anon_sym_c_double] = ACTIONS(1861), - [anon_sym_c_longdouble] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_COLON] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_defer] = ACTIONS(1861), - [anon_sym_errdefer] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_expand] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1859), - [anon_sym_orelse] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1859), - [anon_sym_BANG_EQ] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1859), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_xor] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT] = ACTIONS(1859), - [anon_sym_LT_LT_PIPE] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_SLASH] = ACTIONS(1859), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), [anon_sym_true] = ACTIONS(1861), [anon_sym_false] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [anon_sym_unreachable] = ACTIONS(1861), - [anon_sym_undefined] = ACTIONS(1861), - [sym_sink] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [sym_multiline_string] = ACTIONS(1859), - [sym_character] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1859), - }, - [STATE(845)] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_identifier] = ACTIONS(1865), - [anon_sym_import] = ACTIONS(1865), - [anon_sym_test] = ACTIONS(1865), - [anon_sym_hide] = ACTIONS(1865), - [anon_sym_func] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_QMARK] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_void] = ACTIONS(1865), - [anon_sym_noreturn] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_anyopaque] = ACTIONS(1865), - [anon_sym_bool] = ACTIONS(1865), - [anon_sym_int] = ACTIONS(1865), - [anon_sym_uint] = ACTIONS(1865), - [anon_sym_float] = ACTIONS(1865), - [anon_sym_range] = ACTIONS(1865), - [anon_sym_i8] = ACTIONS(1865), - [anon_sym_i16] = ACTIONS(1865), - [anon_sym_i32] = ACTIONS(1865), - [anon_sym_i64] = ACTIONS(1865), - [anon_sym_u8] = ACTIONS(1865), - [anon_sym_u16] = ACTIONS(1865), - [anon_sym_u32] = ACTIONS(1865), - [anon_sym_u64] = ACTIONS(1865), - [anon_sym_isize] = ACTIONS(1865), - [anon_sym_usize] = ACTIONS(1865), - [anon_sym_f32] = ACTIONS(1865), - [anon_sym_f64] = ACTIONS(1865), - [anon_sym_c_char] = ACTIONS(1865), - [anon_sym_c_schar] = ACTIONS(1865), - [anon_sym_c_uchar] = ACTIONS(1865), - [anon_sym_c_short] = ACTIONS(1865), - [anon_sym_c_ushort] = ACTIONS(1865), - [anon_sym_c_int] = ACTIONS(1865), - [anon_sym_c_uint] = ACTIONS(1865), - [anon_sym_c_long] = ACTIONS(1865), - [anon_sym_c_ulong] = ACTIONS(1865), - [anon_sym_c_longlong] = ACTIONS(1865), - [anon_sym_c_ulonglong] = ACTIONS(1865), - [anon_sym_c_float] = ACTIONS(1865), - [anon_sym_c_double] = ACTIONS(1865), - [anon_sym_c_longdouble] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1865), - [anon_sym_COLON] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_defer] = ACTIONS(1865), - [anon_sym_errdefer] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_expand] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [anon_sym_orelse] = ACTIONS(1865), - [anon_sym_catch] = ACTIONS(1865), - [anon_sym_or] = ACTIONS(1865), - [anon_sym_and] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1863), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_xor] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1865), - [anon_sym_GT_GT] = ACTIONS(1863), - [anon_sym_LT_LT_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1863), [anon_sym_unreachable] = ACTIONS(1865), - [anon_sym_undefined] = ACTIONS(1865), - [sym_sink] = ACTIONS(1865), - [sym_integer] = ACTIONS(1865), - [sym_float] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym_multiline_string] = ACTIONS(1863), - [sym_character] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1863), - }, - [STATE(846)] = { - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(396), - [anon_sym_import] = ACTIONS(396), - [anon_sym_test] = ACTIONS(396), - [anon_sym_hide] = ACTIONS(396), - [anon_sym_func] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_struct] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_void] = ACTIONS(396), - [anon_sym_noreturn] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_anyopaque] = ACTIONS(396), - [anon_sym_bool] = ACTIONS(396), - [anon_sym_int] = ACTIONS(396), - [anon_sym_uint] = ACTIONS(396), - [anon_sym_float] = ACTIONS(396), - [anon_sym_range] = ACTIONS(396), - [anon_sym_i8] = ACTIONS(396), - [anon_sym_i16] = ACTIONS(396), - [anon_sym_i32] = ACTIONS(396), - [anon_sym_i64] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(396), - [anon_sym_u16] = ACTIONS(396), - [anon_sym_u32] = ACTIONS(396), - [anon_sym_u64] = ACTIONS(396), - [anon_sym_isize] = ACTIONS(396), - [anon_sym_usize] = ACTIONS(396), - [anon_sym_f32] = ACTIONS(396), - [anon_sym_f64] = ACTIONS(396), - [anon_sym_c_char] = ACTIONS(396), - [anon_sym_c_schar] = ACTIONS(396), - [anon_sym_c_uchar] = ACTIONS(396), - [anon_sym_c_short] = ACTIONS(396), - [anon_sym_c_ushort] = ACTIONS(396), - [anon_sym_c_int] = ACTIONS(396), - [anon_sym_c_uint] = ACTIONS(396), - [anon_sym_c_long] = ACTIONS(396), - [anon_sym_c_ulong] = ACTIONS(396), - [anon_sym_c_longlong] = ACTIONS(396), - [anon_sym_c_ulonglong] = ACTIONS(396), - [anon_sym_c_float] = ACTIONS(396), - [anon_sym_c_double] = ACTIONS(396), - [anon_sym_c_longdouble] = ACTIONS(396), - [anon_sym_return] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_defer] = ACTIONS(396), - [anon_sym_errdefer] = ACTIONS(396), - [anon_sym_if] = ACTIONS(396), - [anon_sym_else] = ACTIONS(396), - [anon_sym_while] = ACTIONS(396), - [anon_sym_expand] = ACTIONS(396), - [anon_sym_for] = ACTIONS(396), - [anon_sym_match] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT_LT_PIPE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_try] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_true] = ACTIONS(396), - [anon_sym_false] = ACTIONS(396), - [anon_sym_null] = ACTIONS(396), - [anon_sym_unreachable] = ACTIONS(396), - [anon_sym_undefined] = ACTIONS(396), - [sym_sink] = ACTIONS(396), - [sym_integer] = ACTIONS(396), - [sym_float] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), - [sym_multiline_string] = ACTIONS(391), - [sym_character] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), - }, - [STATE(847)] = { - [ts_builtin_sym_end] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1583), - [anon_sym_import] = ACTIONS(1583), - [anon_sym_test] = ACTIONS(1583), - [anon_sym_hide] = ACTIONS(1583), - [anon_sym_func] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_DOLLAR] = ACTIONS(1581), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_QMARK] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_noreturn] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_anyopaque] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_range] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_c_char] = ACTIONS(1583), - [anon_sym_c_schar] = ACTIONS(1583), - [anon_sym_c_uchar] = ACTIONS(1583), - [anon_sym_c_short] = ACTIONS(1583), - [anon_sym_c_ushort] = ACTIONS(1583), - [anon_sym_c_int] = ACTIONS(1583), - [anon_sym_c_uint] = ACTIONS(1583), - [anon_sym_c_long] = ACTIONS(1583), - [anon_sym_c_ulong] = ACTIONS(1583), - [anon_sym_c_longlong] = ACTIONS(1583), - [anon_sym_c_ulonglong] = ACTIONS(1583), - [anon_sym_c_float] = ACTIONS(1583), - [anon_sym_c_double] = ACTIONS(1583), - [anon_sym_c_longdouble] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_errdefer] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_expand] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1581), - [anon_sym_orelse] = ACTIONS(1583), - [anon_sym_catch] = ACTIONS(1583), - [anon_sym_or] = ACTIONS(1583), - [anon_sym_and] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_xor] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1581), - [anon_sym_LT_LT_PIPE] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_SLASH] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1583), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_unreachable] = ACTIONS(1583), - [anon_sym_undefined] = ACTIONS(1583), - [sym_sink] = ACTIONS(1583), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [sym_multiline_string] = ACTIONS(1581), - [sym_character] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1581), - }, - [STATE(848)] = { - [ts_builtin_sym_end] = ACTIONS(1595), - [sym_identifier] = ACTIONS(1597), - [anon_sym_import] = ACTIONS(1597), - [anon_sym_test] = ACTIONS(1597), - [anon_sym_hide] = ACTIONS(1597), - [anon_sym_func] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_QMARK] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_noreturn] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_anyopaque] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_int] = ACTIONS(1597), - [anon_sym_uint] = ACTIONS(1597), - [anon_sym_float] = ACTIONS(1597), - [anon_sym_range] = ACTIONS(1597), - [anon_sym_i8] = ACTIONS(1597), - [anon_sym_i16] = ACTIONS(1597), - [anon_sym_i32] = ACTIONS(1597), - [anon_sym_i64] = ACTIONS(1597), - [anon_sym_u8] = ACTIONS(1597), - [anon_sym_u16] = ACTIONS(1597), - [anon_sym_u32] = ACTIONS(1597), - [anon_sym_u64] = ACTIONS(1597), - [anon_sym_isize] = ACTIONS(1597), - [anon_sym_usize] = ACTIONS(1597), - [anon_sym_f32] = ACTIONS(1597), - [anon_sym_f64] = ACTIONS(1597), - [anon_sym_c_char] = ACTIONS(1597), - [anon_sym_c_schar] = ACTIONS(1597), - [anon_sym_c_uchar] = ACTIONS(1597), - [anon_sym_c_short] = ACTIONS(1597), - [anon_sym_c_ushort] = ACTIONS(1597), - [anon_sym_c_int] = ACTIONS(1597), - [anon_sym_c_uint] = ACTIONS(1597), - [anon_sym_c_long] = ACTIONS(1597), - [anon_sym_c_ulong] = ACTIONS(1597), - [anon_sym_c_longlong] = ACTIONS(1597), - [anon_sym_c_ulonglong] = ACTIONS(1597), - [anon_sym_c_float] = ACTIONS(1597), - [anon_sym_c_double] = ACTIONS(1597), - [anon_sym_c_longdouble] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_yield] = ACTIONS(1597), - [anon_sym_COLON] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_defer] = ACTIONS(1597), - [anon_sym_errdefer] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_expand] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_match] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1597), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_orelse] = ACTIONS(1597), - [anon_sym_catch] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1595), - [anon_sym_BANG_EQ] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_LT_EQ] = ACTIONS(1595), - [anon_sym_GT] = ACTIONS(1597), - [anon_sym_GT_EQ] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_LT_LT] = ACTIONS(1597), - [anon_sym_GT_GT] = ACTIONS(1595), - [anon_sym_LT_LT_PIPE] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_DOT] = ACTIONS(1597), - [anon_sym_CARET] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_unreachable] = ACTIONS(1597), - [anon_sym_undefined] = ACTIONS(1597), - [sym_sink] = ACTIONS(1597), - [sym_integer] = ACTIONS(1597), - [sym_float] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_multiline_string] = ACTIONS(1595), - [sym_character] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1595), - }, - [STATE(849)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(850)] = { - [ts_builtin_sym_end] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_import] = ACTIONS(1749), - [anon_sym_test] = ACTIONS(1749), - [anon_sym_hide] = ACTIONS(1749), - [anon_sym_func] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_QMARK] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_void] = ACTIONS(1749), - [anon_sym_noreturn] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_anyopaque] = ACTIONS(1749), - [anon_sym_bool] = ACTIONS(1749), - [anon_sym_int] = ACTIONS(1749), - [anon_sym_uint] = ACTIONS(1749), - [anon_sym_float] = ACTIONS(1749), - [anon_sym_range] = ACTIONS(1749), - [anon_sym_i8] = ACTIONS(1749), - [anon_sym_i16] = ACTIONS(1749), - [anon_sym_i32] = ACTIONS(1749), - [anon_sym_i64] = ACTIONS(1749), - [anon_sym_u8] = ACTIONS(1749), - [anon_sym_u16] = ACTIONS(1749), - [anon_sym_u32] = ACTIONS(1749), - [anon_sym_u64] = ACTIONS(1749), - [anon_sym_isize] = ACTIONS(1749), - [anon_sym_usize] = ACTIONS(1749), - [anon_sym_f32] = ACTIONS(1749), - [anon_sym_f64] = ACTIONS(1749), - [anon_sym_c_char] = ACTIONS(1749), - [anon_sym_c_schar] = ACTIONS(1749), - [anon_sym_c_uchar] = ACTIONS(1749), - [anon_sym_c_short] = ACTIONS(1749), - [anon_sym_c_ushort] = ACTIONS(1749), - [anon_sym_c_int] = ACTIONS(1749), - [anon_sym_c_uint] = ACTIONS(1749), - [anon_sym_c_long] = ACTIONS(1749), - [anon_sym_c_ulong] = ACTIONS(1749), - [anon_sym_c_longlong] = ACTIONS(1749), - [anon_sym_c_ulonglong] = ACTIONS(1749), - [anon_sym_c_float] = ACTIONS(1749), - [anon_sym_c_double] = ACTIONS(1749), - [anon_sym_c_longdouble] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_COLON] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_defer] = ACTIONS(1749), - [anon_sym_errdefer] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_else] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_expand] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1747), - [anon_sym_orelse] = ACTIONS(1749), - [anon_sym_catch] = ACTIONS(1749), - [anon_sym_or] = ACTIONS(1749), - [anon_sym_and] = ACTIONS(1749), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1749), - [anon_sym_LT_LT] = ACTIONS(1749), - [anon_sym_GT_GT] = ACTIONS(1747), - [anon_sym_LT_LT_PIPE] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_SLASH] = ACTIONS(1747), - [anon_sym_TILDE] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1749), - [anon_sym_DOT] = ACTIONS(1749), - [anon_sym_CARET] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [anon_sym_unreachable] = ACTIONS(1749), - [anon_sym_undefined] = ACTIONS(1749), - [sym_sink] = ACTIONS(1749), - [sym_integer] = ACTIONS(1749), - [sym_float] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_multiline_string] = ACTIONS(1747), - [sym_character] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1747), - }, - [STATE(851)] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_test] = ACTIONS(1753), - [anon_sym_hide] = ACTIONS(1753), - [anon_sym_func] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_noreturn] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_anyopaque] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_int] = ACTIONS(1753), - [anon_sym_uint] = ACTIONS(1753), - [anon_sym_float] = ACTIONS(1753), - [anon_sym_range] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_c_char] = ACTIONS(1753), - [anon_sym_c_schar] = ACTIONS(1753), - [anon_sym_c_uchar] = ACTIONS(1753), - [anon_sym_c_short] = ACTIONS(1753), - [anon_sym_c_ushort] = ACTIONS(1753), - [anon_sym_c_int] = ACTIONS(1753), - [anon_sym_c_uint] = ACTIONS(1753), - [anon_sym_c_long] = ACTIONS(1753), - [anon_sym_c_ulong] = ACTIONS(1753), - [anon_sym_c_longlong] = ACTIONS(1753), - [anon_sym_c_ulonglong] = ACTIONS(1753), - [anon_sym_c_float] = ACTIONS(1753), - [anon_sym_c_double] = ACTIONS(1753), - [anon_sym_c_longdouble] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_COLON] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_defer] = ACTIONS(1753), - [anon_sym_errdefer] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_expand] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_DOT_DOT] = ACTIONS(1753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), - [anon_sym_orelse] = ACTIONS(1753), - [anon_sym_catch] = ACTIONS(1753), - [anon_sym_or] = ACTIONS(1753), - [anon_sym_and] = ACTIONS(1753), - [anon_sym_EQ_EQ] = ACTIONS(1751), - [anon_sym_BANG_EQ] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_xor] = ACTIONS(1753), - [anon_sym_LT_LT] = ACTIONS(1753), - [anon_sym_GT_GT] = ACTIONS(1751), - [anon_sym_LT_LT_PIPE] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_SLASH] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_DOT] = ACTIONS(1753), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1753), - [anon_sym_false] = ACTIONS(1753), - [anon_sym_null] = ACTIONS(1753), - [anon_sym_unreachable] = ACTIONS(1753), - [anon_sym_undefined] = ACTIONS(1753), - [sym_sink] = ACTIONS(1753), - [sym_integer] = ACTIONS(1753), - [sym_float] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [sym_multiline_string] = ACTIONS(1751), - [sym_character] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1751), - }, - [STATE(852)] = { - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_import] = ACTIONS(1757), - [anon_sym_test] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_func] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_QMARK] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_void] = ACTIONS(1757), - [anon_sym_noreturn] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_anyopaque] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_int] = ACTIONS(1757), - [anon_sym_uint] = ACTIONS(1757), - [anon_sym_float] = ACTIONS(1757), - [anon_sym_range] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_c_char] = ACTIONS(1757), - [anon_sym_c_schar] = ACTIONS(1757), - [anon_sym_c_uchar] = ACTIONS(1757), - [anon_sym_c_short] = ACTIONS(1757), - [anon_sym_c_ushort] = ACTIONS(1757), - [anon_sym_c_int] = ACTIONS(1757), - [anon_sym_c_uint] = ACTIONS(1757), - [anon_sym_c_long] = ACTIONS(1757), - [anon_sym_c_ulong] = ACTIONS(1757), - [anon_sym_c_longlong] = ACTIONS(1757), - [anon_sym_c_ulonglong] = ACTIONS(1757), - [anon_sym_c_float] = ACTIONS(1757), - [anon_sym_c_double] = ACTIONS(1757), - [anon_sym_c_longdouble] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_COLON] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_errdefer] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_expand] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_orelse] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_or] = ACTIONS(1757), - [anon_sym_and] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1755), - [anon_sym_BANG_EQ] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_EQ] = ACTIONS(1755), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_xor] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1755), - [anon_sym_LT_LT_PIPE] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_unreachable] = ACTIONS(1757), - [anon_sym_undefined] = ACTIONS(1757), - [sym_sink] = ACTIONS(1757), - [sym_integer] = ACTIONS(1757), - [sym_float] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym_multiline_string] = ACTIONS(1755), - [sym_character] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1755), - }, - [STATE(853)] = { - [ts_builtin_sym_end] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1761), - [anon_sym_import] = ACTIONS(1761), - [anon_sym_test] = ACTIONS(1761), - [anon_sym_hide] = ACTIONS(1761), - [anon_sym_func] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_QMARK] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_void] = ACTIONS(1761), - [anon_sym_noreturn] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_anyopaque] = ACTIONS(1761), - [anon_sym_bool] = ACTIONS(1761), - [anon_sym_int] = ACTIONS(1761), - [anon_sym_uint] = ACTIONS(1761), - [anon_sym_float] = ACTIONS(1761), - [anon_sym_range] = ACTIONS(1761), - [anon_sym_i8] = ACTIONS(1761), - [anon_sym_i16] = ACTIONS(1761), - [anon_sym_i32] = ACTIONS(1761), - [anon_sym_i64] = ACTIONS(1761), - [anon_sym_u8] = ACTIONS(1761), - [anon_sym_u16] = ACTIONS(1761), - [anon_sym_u32] = ACTIONS(1761), - [anon_sym_u64] = ACTIONS(1761), - [anon_sym_isize] = ACTIONS(1761), - [anon_sym_usize] = ACTIONS(1761), - [anon_sym_f32] = ACTIONS(1761), - [anon_sym_f64] = ACTIONS(1761), - [anon_sym_c_char] = ACTIONS(1761), - [anon_sym_c_schar] = ACTIONS(1761), - [anon_sym_c_uchar] = ACTIONS(1761), - [anon_sym_c_short] = ACTIONS(1761), - [anon_sym_c_ushort] = ACTIONS(1761), - [anon_sym_c_int] = ACTIONS(1761), - [anon_sym_c_uint] = ACTIONS(1761), - [anon_sym_c_long] = ACTIONS(1761), - [anon_sym_c_ulong] = ACTIONS(1761), - [anon_sym_c_longlong] = ACTIONS(1761), - [anon_sym_c_ulonglong] = ACTIONS(1761), - [anon_sym_c_float] = ACTIONS(1761), - [anon_sym_c_double] = ACTIONS(1761), - [anon_sym_c_longdouble] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_yield] = ACTIONS(1761), - [anon_sym_COLON] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_defer] = ACTIONS(1761), - [anon_sym_errdefer] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_else] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_expand] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_orelse] = ACTIONS(1761), - [anon_sym_catch] = ACTIONS(1761), - [anon_sym_or] = ACTIONS(1761), - [anon_sym_and] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1759), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_xor] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(1761), - [anon_sym_GT_GT] = ACTIONS(1759), - [anon_sym_LT_LT_PIPE] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_SLASH] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1761), - [anon_sym_DOT] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [anon_sym_null] = ACTIONS(1761), - [anon_sym_unreachable] = ACTIONS(1761), - [anon_sym_undefined] = ACTIONS(1761), - [sym_sink] = ACTIONS(1761), - [sym_integer] = ACTIONS(1761), - [sym_float] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym_multiline_string] = ACTIONS(1759), - [sym_character] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1759), - }, - [STATE(854)] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_import] = ACTIONS(1891), - [anon_sym_test] = ACTIONS(1891), - [anon_sym_hide] = ACTIONS(1891), - [anon_sym_func] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_void] = ACTIONS(1891), - [anon_sym_noreturn] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_anyopaque] = ACTIONS(1891), - [anon_sym_bool] = ACTIONS(1891), - [anon_sym_int] = ACTIONS(1891), - [anon_sym_uint] = ACTIONS(1891), - [anon_sym_float] = ACTIONS(1891), - [anon_sym_range] = ACTIONS(1891), - [anon_sym_i8] = ACTIONS(1891), - [anon_sym_i16] = ACTIONS(1891), - [anon_sym_i32] = ACTIONS(1891), - [anon_sym_i64] = ACTIONS(1891), - [anon_sym_u8] = ACTIONS(1891), - [anon_sym_u16] = ACTIONS(1891), - [anon_sym_u32] = ACTIONS(1891), - [anon_sym_u64] = ACTIONS(1891), - [anon_sym_isize] = ACTIONS(1891), - [anon_sym_usize] = ACTIONS(1891), - [anon_sym_f32] = ACTIONS(1891), - [anon_sym_f64] = ACTIONS(1891), - [anon_sym_c_char] = ACTIONS(1891), - [anon_sym_c_schar] = ACTIONS(1891), - [anon_sym_c_uchar] = ACTIONS(1891), - [anon_sym_c_short] = ACTIONS(1891), - [anon_sym_c_ushort] = ACTIONS(1891), - [anon_sym_c_int] = ACTIONS(1891), - [anon_sym_c_uint] = ACTIONS(1891), - [anon_sym_c_long] = ACTIONS(1891), - [anon_sym_c_ulong] = ACTIONS(1891), - [anon_sym_c_longlong] = ACTIONS(1891), - [anon_sym_c_ulonglong] = ACTIONS(1891), - [anon_sym_c_float] = ACTIONS(1891), - [anon_sym_c_double] = ACTIONS(1891), - [anon_sym_c_longdouble] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_defer] = ACTIONS(1891), - [anon_sym_errdefer] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_expand] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [anon_sym_orelse] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_or] = ACTIONS(1891), - [anon_sym_and] = ACTIONS(1891), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_xor] = ACTIONS(1891), - [anon_sym_LT_LT] = ACTIONS(1891), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_LT_LT_PIPE] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1891), - [anon_sym_false] = ACTIONS(1891), - [anon_sym_null] = ACTIONS(1891), - [anon_sym_unreachable] = ACTIONS(1891), - [anon_sym_undefined] = ACTIONS(1891), - [sym_sink] = ACTIONS(1891), - [sym_integer] = ACTIONS(1891), - [sym_float] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym_multiline_string] = ACTIONS(1889), - [sym_character] = ACTIONS(1889), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1889), - }, - [STATE(855)] = { - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1765), - [anon_sym_test] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_func] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_void] = ACTIONS(1765), - [anon_sym_noreturn] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_anyopaque] = ACTIONS(1765), - [anon_sym_bool] = ACTIONS(1765), - [anon_sym_int] = ACTIONS(1765), - [anon_sym_uint] = ACTIONS(1765), - [anon_sym_float] = ACTIONS(1765), - [anon_sym_range] = ACTIONS(1765), - [anon_sym_i8] = ACTIONS(1765), - [anon_sym_i16] = ACTIONS(1765), - [anon_sym_i32] = ACTIONS(1765), - [anon_sym_i64] = ACTIONS(1765), - [anon_sym_u8] = ACTIONS(1765), - [anon_sym_u16] = ACTIONS(1765), - [anon_sym_u32] = ACTIONS(1765), - [anon_sym_u64] = ACTIONS(1765), - [anon_sym_isize] = ACTIONS(1765), - [anon_sym_usize] = ACTIONS(1765), - [anon_sym_f32] = ACTIONS(1765), - [anon_sym_f64] = ACTIONS(1765), - [anon_sym_c_char] = ACTIONS(1765), - [anon_sym_c_schar] = ACTIONS(1765), - [anon_sym_c_uchar] = ACTIONS(1765), - [anon_sym_c_short] = ACTIONS(1765), - [anon_sym_c_ushort] = ACTIONS(1765), - [anon_sym_c_int] = ACTIONS(1765), - [anon_sym_c_uint] = ACTIONS(1765), - [anon_sym_c_long] = ACTIONS(1765), - [anon_sym_c_ulong] = ACTIONS(1765), - [anon_sym_c_longlong] = ACTIONS(1765), - [anon_sym_c_ulonglong] = ACTIONS(1765), - [anon_sym_c_float] = ACTIONS(1765), - [anon_sym_c_double] = ACTIONS(1765), - [anon_sym_c_longdouble] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_errdefer] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_expand] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_orelse] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_LT_LT_PIPE] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_unreachable] = ACTIONS(1765), - [anon_sym_undefined] = ACTIONS(1765), - [sym_sink] = ACTIONS(1765), - [sym_integer] = ACTIONS(1765), - [sym_float] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym_multiline_string] = ACTIONS(1763), - [sym_character] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1763), - }, - [STATE(856)] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_import] = ACTIONS(1769), - [anon_sym_test] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_func] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_void] = ACTIONS(1769), - [anon_sym_noreturn] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_anyopaque] = ACTIONS(1769), - [anon_sym_bool] = ACTIONS(1769), - [anon_sym_int] = ACTIONS(1769), - [anon_sym_uint] = ACTIONS(1769), - [anon_sym_float] = ACTIONS(1769), - [anon_sym_range] = ACTIONS(1769), - [anon_sym_i8] = ACTIONS(1769), - [anon_sym_i16] = ACTIONS(1769), - [anon_sym_i32] = ACTIONS(1769), - [anon_sym_i64] = ACTIONS(1769), - [anon_sym_u8] = ACTIONS(1769), - [anon_sym_u16] = ACTIONS(1769), - [anon_sym_u32] = ACTIONS(1769), - [anon_sym_u64] = ACTIONS(1769), - [anon_sym_isize] = ACTIONS(1769), - [anon_sym_usize] = ACTIONS(1769), - [anon_sym_f32] = ACTIONS(1769), - [anon_sym_f64] = ACTIONS(1769), - [anon_sym_c_char] = ACTIONS(1769), - [anon_sym_c_schar] = ACTIONS(1769), - [anon_sym_c_uchar] = ACTIONS(1769), - [anon_sym_c_short] = ACTIONS(1769), - [anon_sym_c_ushort] = ACTIONS(1769), - [anon_sym_c_int] = ACTIONS(1769), - [anon_sym_c_uint] = ACTIONS(1769), - [anon_sym_c_long] = ACTIONS(1769), - [anon_sym_c_ulong] = ACTIONS(1769), - [anon_sym_c_longlong] = ACTIONS(1769), - [anon_sym_c_ulonglong] = ACTIONS(1769), - [anon_sym_c_float] = ACTIONS(1769), - [anon_sym_c_double] = ACTIONS(1769), - [anon_sym_c_longdouble] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_COLON] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_errdefer] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_expand] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_orelse] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1767), - [anon_sym_LT_LT_PIPE] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [anon_sym_unreachable] = ACTIONS(1769), - [anon_sym_undefined] = ACTIONS(1769), - [sym_sink] = ACTIONS(1769), - [sym_integer] = ACTIONS(1769), - [sym_float] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym_multiline_string] = ACTIONS(1767), - [sym_character] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1767), - }, - [STATE(857)] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_test] = ACTIONS(1895), - [anon_sym_hide] = ACTIONS(1895), - [anon_sym_func] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_QMARK] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_void] = ACTIONS(1895), - [anon_sym_noreturn] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_anyopaque] = ACTIONS(1895), - [anon_sym_bool] = ACTIONS(1895), - [anon_sym_int] = ACTIONS(1895), - [anon_sym_uint] = ACTIONS(1895), - [anon_sym_float] = ACTIONS(1895), - [anon_sym_range] = ACTIONS(1895), - [anon_sym_i8] = ACTIONS(1895), - [anon_sym_i16] = ACTIONS(1895), - [anon_sym_i32] = ACTIONS(1895), - [anon_sym_i64] = ACTIONS(1895), - [anon_sym_u8] = ACTIONS(1895), - [anon_sym_u16] = ACTIONS(1895), - [anon_sym_u32] = ACTIONS(1895), - [anon_sym_u64] = ACTIONS(1895), - [anon_sym_isize] = ACTIONS(1895), - [anon_sym_usize] = ACTIONS(1895), - [anon_sym_f32] = ACTIONS(1895), - [anon_sym_f64] = ACTIONS(1895), - [anon_sym_c_char] = ACTIONS(1895), - [anon_sym_c_schar] = ACTIONS(1895), - [anon_sym_c_uchar] = ACTIONS(1895), - [anon_sym_c_short] = ACTIONS(1895), - [anon_sym_c_ushort] = ACTIONS(1895), - [anon_sym_c_int] = ACTIONS(1895), - [anon_sym_c_uint] = ACTIONS(1895), - [anon_sym_c_long] = ACTIONS(1895), - [anon_sym_c_ulong] = ACTIONS(1895), - [anon_sym_c_longlong] = ACTIONS(1895), - [anon_sym_c_ulonglong] = ACTIONS(1895), - [anon_sym_c_float] = ACTIONS(1895), - [anon_sym_c_double] = ACTIONS(1895), - [anon_sym_c_longdouble] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_defer] = ACTIONS(1895), - [anon_sym_errdefer] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_expand] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_orelse] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_or] = ACTIONS(1895), - [anon_sym_and] = ACTIONS(1895), - [anon_sym_EQ_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_LT_EQ] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_xor] = ACTIONS(1895), - [anon_sym_LT_LT] = ACTIONS(1895), - [anon_sym_GT_GT] = ACTIONS(1893), - [anon_sym_LT_LT_PIPE] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [anon_sym_null] = ACTIONS(1895), - [anon_sym_unreachable] = ACTIONS(1895), - [anon_sym_undefined] = ACTIONS(1895), - [sym_sink] = ACTIONS(1895), - [sym_integer] = ACTIONS(1895), - [sym_float] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_multiline_string] = ACTIONS(1893), - [sym_character] = ACTIONS(1893), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1893), - }, - [STATE(858)] = { - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_import] = ACTIONS(1773), - [anon_sym_test] = ACTIONS(1773), - [anon_sym_hide] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_void] = ACTIONS(1773), - [anon_sym_noreturn] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_anyopaque] = ACTIONS(1773), - [anon_sym_bool] = ACTIONS(1773), - [anon_sym_int] = ACTIONS(1773), - [anon_sym_uint] = ACTIONS(1773), - [anon_sym_float] = ACTIONS(1773), - [anon_sym_range] = ACTIONS(1773), - [anon_sym_i8] = ACTIONS(1773), - [anon_sym_i16] = ACTIONS(1773), - [anon_sym_i32] = ACTIONS(1773), - [anon_sym_i64] = ACTIONS(1773), - [anon_sym_u8] = ACTIONS(1773), - [anon_sym_u16] = ACTIONS(1773), - [anon_sym_u32] = ACTIONS(1773), - [anon_sym_u64] = ACTIONS(1773), - [anon_sym_isize] = ACTIONS(1773), - [anon_sym_usize] = ACTIONS(1773), - [anon_sym_f32] = ACTIONS(1773), - [anon_sym_f64] = ACTIONS(1773), - [anon_sym_c_char] = ACTIONS(1773), - [anon_sym_c_schar] = ACTIONS(1773), - [anon_sym_c_uchar] = ACTIONS(1773), - [anon_sym_c_short] = ACTIONS(1773), - [anon_sym_c_ushort] = ACTIONS(1773), - [anon_sym_c_int] = ACTIONS(1773), - [anon_sym_c_uint] = ACTIONS(1773), - [anon_sym_c_long] = ACTIONS(1773), - [anon_sym_c_ulong] = ACTIONS(1773), - [anon_sym_c_longlong] = ACTIONS(1773), - [anon_sym_c_ulonglong] = ACTIONS(1773), - [anon_sym_c_float] = ACTIONS(1773), - [anon_sym_c_double] = ACTIONS(1773), - [anon_sym_c_longdouble] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_yield] = ACTIONS(1773), - [anon_sym_COLON] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_defer] = ACTIONS(1773), - [anon_sym_errdefer] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_else] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_expand] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_orelse] = ACTIONS(1773), - [anon_sym_catch] = ACTIONS(1773), - [anon_sym_or] = ACTIONS(1773), - [anon_sym_and] = ACTIONS(1773), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_LT_EQ] = ACTIONS(1771), - [anon_sym_GT] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_xor] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_LT_LT_PIPE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_unreachable] = ACTIONS(1773), - [anon_sym_undefined] = ACTIONS(1773), - [sym_sink] = ACTIONS(1773), - [sym_integer] = ACTIONS(1773), - [sym_float] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym_multiline_string] = ACTIONS(1771), - [sym_character] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1771), - }, - [STATE(859)] = { - [ts_builtin_sym_end] = ACTIONS(1465), - [sym_identifier] = ACTIONS(1467), - [anon_sym_import] = ACTIONS(1467), - [anon_sym_test] = ACTIONS(1467), - [anon_sym_hide] = ACTIONS(1467), - [anon_sym_func] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_DOLLAR] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_noreturn] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_anyopaque] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_range] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_c_char] = ACTIONS(1467), - [anon_sym_c_schar] = ACTIONS(1467), - [anon_sym_c_uchar] = ACTIONS(1467), - [anon_sym_c_short] = ACTIONS(1467), - [anon_sym_c_ushort] = ACTIONS(1467), - [anon_sym_c_int] = ACTIONS(1467), - [anon_sym_c_uint] = ACTIONS(1467), - [anon_sym_c_long] = ACTIONS(1467), - [anon_sym_c_ulong] = ACTIONS(1467), - [anon_sym_c_longlong] = ACTIONS(1467), - [anon_sym_c_ulonglong] = ACTIONS(1467), - [anon_sym_c_float] = ACTIONS(1467), - [anon_sym_c_double] = ACTIONS(1467), - [anon_sym_c_longdouble] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_errdefer] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_else] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_expand] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_match] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), - [anon_sym_orelse] = ACTIONS(1467), - [anon_sym_catch] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_xor] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_LT_LT_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_unreachable] = ACTIONS(1467), - [anon_sym_undefined] = ACTIONS(1467), - [sym_sink] = ACTIONS(1467), - [sym_integer] = ACTIONS(1467), - [sym_float] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_multiline_string] = ACTIONS(1465), - [sym_character] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1465), - }, - [STATE(860)] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_test] = ACTIONS(1899), - [anon_sym_hide] = ACTIONS(1899), - [anon_sym_func] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_noreturn] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_anyopaque] = ACTIONS(1899), - [anon_sym_bool] = ACTIONS(1899), - [anon_sym_int] = ACTIONS(1899), - [anon_sym_uint] = ACTIONS(1899), - [anon_sym_float] = ACTIONS(1899), - [anon_sym_range] = ACTIONS(1899), - [anon_sym_i8] = ACTIONS(1899), - [anon_sym_i16] = ACTIONS(1899), - [anon_sym_i32] = ACTIONS(1899), - [anon_sym_i64] = ACTIONS(1899), - [anon_sym_u8] = ACTIONS(1899), - [anon_sym_u16] = ACTIONS(1899), - [anon_sym_u32] = ACTIONS(1899), - [anon_sym_u64] = ACTIONS(1899), - [anon_sym_isize] = ACTIONS(1899), - [anon_sym_usize] = ACTIONS(1899), - [anon_sym_f32] = ACTIONS(1899), - [anon_sym_f64] = ACTIONS(1899), - [anon_sym_c_char] = ACTIONS(1899), - [anon_sym_c_schar] = ACTIONS(1899), - [anon_sym_c_uchar] = ACTIONS(1899), - [anon_sym_c_short] = ACTIONS(1899), - [anon_sym_c_ushort] = ACTIONS(1899), - [anon_sym_c_int] = ACTIONS(1899), - [anon_sym_c_uint] = ACTIONS(1899), - [anon_sym_c_long] = ACTIONS(1899), - [anon_sym_c_ulong] = ACTIONS(1899), - [anon_sym_c_longlong] = ACTIONS(1899), - [anon_sym_c_ulonglong] = ACTIONS(1899), - [anon_sym_c_float] = ACTIONS(1899), - [anon_sym_c_double] = ACTIONS(1899), - [anon_sym_c_longdouble] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_errdefer] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_expand] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_orelse] = ACTIONS(1899), - [anon_sym_catch] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [anon_sym_and] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_xor] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1897), - [anon_sym_LT_LT_PIPE] = ACTIONS(1897), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [anon_sym_unreachable] = ACTIONS(1899), - [anon_sym_undefined] = ACTIONS(1899), - [sym_sink] = ACTIONS(1899), - [sym_integer] = ACTIONS(1899), - [sym_float] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_multiline_string] = ACTIONS(1897), - [sym_character] = ACTIONS(1897), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1897), - }, - [STATE(861)] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_test] = ACTIONS(1903), - [anon_sym_hide] = ACTIONS(1903), - [anon_sym_func] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_QMARK] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_noreturn] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_anyopaque] = ACTIONS(1903), - [anon_sym_bool] = ACTIONS(1903), - [anon_sym_int] = ACTIONS(1903), - [anon_sym_uint] = ACTIONS(1903), - [anon_sym_float] = ACTIONS(1903), - [anon_sym_range] = ACTIONS(1903), - [anon_sym_i8] = ACTIONS(1903), - [anon_sym_i16] = ACTIONS(1903), - [anon_sym_i32] = ACTIONS(1903), - [anon_sym_i64] = ACTIONS(1903), - [anon_sym_u8] = ACTIONS(1903), - [anon_sym_u16] = ACTIONS(1903), - [anon_sym_u32] = ACTIONS(1903), - [anon_sym_u64] = ACTIONS(1903), - [anon_sym_isize] = ACTIONS(1903), - [anon_sym_usize] = ACTIONS(1903), - [anon_sym_f32] = ACTIONS(1903), - [anon_sym_f64] = ACTIONS(1903), - [anon_sym_c_char] = ACTIONS(1903), - [anon_sym_c_schar] = ACTIONS(1903), - [anon_sym_c_uchar] = ACTIONS(1903), - [anon_sym_c_short] = ACTIONS(1903), - [anon_sym_c_ushort] = ACTIONS(1903), - [anon_sym_c_int] = ACTIONS(1903), - [anon_sym_c_uint] = ACTIONS(1903), - [anon_sym_c_long] = ACTIONS(1903), - [anon_sym_c_ulong] = ACTIONS(1903), - [anon_sym_c_longlong] = ACTIONS(1903), - [anon_sym_c_ulonglong] = ACTIONS(1903), - [anon_sym_c_float] = ACTIONS(1903), - [anon_sym_c_double] = ACTIONS(1903), - [anon_sym_c_longdouble] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_COLON] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_defer] = ACTIONS(1903), - [anon_sym_errdefer] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_expand] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_orelse] = ACTIONS(1903), - [anon_sym_catch] = ACTIONS(1903), - [anon_sym_or] = ACTIONS(1903), - [anon_sym_and] = ACTIONS(1903), - [anon_sym_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_xor] = ACTIONS(1903), - [anon_sym_LT_LT] = ACTIONS(1903), - [anon_sym_GT_GT] = ACTIONS(1901), - [anon_sym_LT_LT_PIPE] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_CARET] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [anon_sym_null] = ACTIONS(1903), - [anon_sym_unreachable] = ACTIONS(1903), - [anon_sym_undefined] = ACTIONS(1903), - [sym_sink] = ACTIONS(1903), - [sym_integer] = ACTIONS(1903), - [sym_float] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym_multiline_string] = ACTIONS(1901), - [sym_character] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1901), - }, - [STATE(862)] = { - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(447), - [anon_sym_import] = ACTIONS(447), - [anon_sym_test] = ACTIONS(447), - [anon_sym_hide] = ACTIONS(447), - [anon_sym_func] = ACTIONS(447), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_struct] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(449), - [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(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_void] = ACTIONS(447), - [anon_sym_noreturn] = ACTIONS(447), - [anon_sym_type] = ACTIONS(447), - [anon_sym_anyopaque] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_int] = ACTIONS(447), - [anon_sym_uint] = ACTIONS(447), - [anon_sym_float] = ACTIONS(447), - [anon_sym_range] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_c_char] = ACTIONS(447), - [anon_sym_c_schar] = ACTIONS(447), - [anon_sym_c_uchar] = ACTIONS(447), - [anon_sym_c_short] = ACTIONS(447), - [anon_sym_c_ushort] = ACTIONS(447), - [anon_sym_c_int] = ACTIONS(447), - [anon_sym_c_uint] = ACTIONS(447), - [anon_sym_c_long] = ACTIONS(447), - [anon_sym_c_ulong] = ACTIONS(447), - [anon_sym_c_longlong] = ACTIONS(447), - [anon_sym_c_ulonglong] = ACTIONS(447), - [anon_sym_c_float] = ACTIONS(447), - [anon_sym_c_double] = ACTIONS(447), - [anon_sym_c_longdouble] = ACTIONS(447), - [anon_sym_return] = ACTIONS(447), - [anon_sym_yield] = ACTIONS(447), - [anon_sym_COLON] = ACTIONS(449), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(447), - [anon_sym_defer] = ACTIONS(447), - [anon_sym_errdefer] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(447), - [anon_sym_while] = ACTIONS(447), - [anon_sym_expand] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_match] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(447), - [anon_sym_catch] = ACTIONS(447), - [anon_sym_or] = ACTIONS(447), - [anon_sym_and] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_xor] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(447), - [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(447), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_true] = ACTIONS(447), - [anon_sym_false] = ACTIONS(447), - [anon_sym_null] = ACTIONS(447), - [anon_sym_unreachable] = ACTIONS(447), - [anon_sym_undefined] = ACTIONS(447), - [sym_sink] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [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(863)] = { - [ts_builtin_sym_end] = ACTIONS(461), - [sym_identifier] = ACTIONS(459), - [anon_sym_import] = ACTIONS(459), - [anon_sym_test] = ACTIONS(459), - [anon_sym_hide] = ACTIONS(459), - [anon_sym_func] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_DOLLAR] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_void] = ACTIONS(459), - [anon_sym_noreturn] = ACTIONS(459), - [anon_sym_type] = ACTIONS(459), - [anon_sym_anyopaque] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_int] = ACTIONS(459), - [anon_sym_uint] = ACTIONS(459), - [anon_sym_float] = ACTIONS(459), - [anon_sym_range] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_c_char] = ACTIONS(459), - [anon_sym_c_schar] = ACTIONS(459), - [anon_sym_c_uchar] = ACTIONS(459), - [anon_sym_c_short] = ACTIONS(459), - [anon_sym_c_ushort] = ACTIONS(459), - [anon_sym_c_int] = ACTIONS(459), - [anon_sym_c_uint] = ACTIONS(459), - [anon_sym_c_long] = ACTIONS(459), - [anon_sym_c_ulong] = ACTIONS(459), - [anon_sym_c_longlong] = ACTIONS(459), - [anon_sym_c_ulonglong] = ACTIONS(459), - [anon_sym_c_float] = ACTIONS(459), - [anon_sym_c_double] = ACTIONS(459), - [anon_sym_c_longdouble] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_yield] = ACTIONS(459), - [anon_sym_COLON] = ACTIONS(461), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_defer] = ACTIONS(459), - [anon_sym_errdefer] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_expand] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_match] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(461), - [anon_sym_orelse] = ACTIONS(459), - [anon_sym_catch] = ACTIONS(459), - [anon_sym_or] = ACTIONS(459), - [anon_sym_and] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_xor] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_LT_LT_PIPE] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_try] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(459), - [anon_sym_unreachable] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [sym_sink] = ACTIONS(459), - [sym_integer] = ACTIONS(459), - [sym_float] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(461), - [sym_multiline_string] = ACTIONS(461), - [sym_character] = ACTIONS(461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(461), - }, - [STATE(864)] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1907), - [anon_sym_import] = ACTIONS(1907), - [anon_sym_test] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_func] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_void] = ACTIONS(1907), - [anon_sym_noreturn] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_anyopaque] = ACTIONS(1907), - [anon_sym_bool] = ACTIONS(1907), - [anon_sym_int] = ACTIONS(1907), - [anon_sym_uint] = ACTIONS(1907), - [anon_sym_float] = ACTIONS(1907), - [anon_sym_range] = ACTIONS(1907), - [anon_sym_i8] = ACTIONS(1907), - [anon_sym_i16] = ACTIONS(1907), - [anon_sym_i32] = ACTIONS(1907), - [anon_sym_i64] = ACTIONS(1907), - [anon_sym_u8] = ACTIONS(1907), - [anon_sym_u16] = ACTIONS(1907), - [anon_sym_u32] = ACTIONS(1907), - [anon_sym_u64] = ACTIONS(1907), - [anon_sym_isize] = ACTIONS(1907), - [anon_sym_usize] = ACTIONS(1907), - [anon_sym_f32] = ACTIONS(1907), - [anon_sym_f64] = ACTIONS(1907), - [anon_sym_c_char] = ACTIONS(1907), - [anon_sym_c_schar] = ACTIONS(1907), - [anon_sym_c_uchar] = ACTIONS(1907), - [anon_sym_c_short] = ACTIONS(1907), - [anon_sym_c_ushort] = ACTIONS(1907), - [anon_sym_c_int] = ACTIONS(1907), - [anon_sym_c_uint] = ACTIONS(1907), - [anon_sym_c_long] = ACTIONS(1907), - [anon_sym_c_ulong] = ACTIONS(1907), - [anon_sym_c_longlong] = ACTIONS(1907), - [anon_sym_c_ulonglong] = ACTIONS(1907), - [anon_sym_c_float] = ACTIONS(1907), - [anon_sym_c_double] = ACTIONS(1907), - [anon_sym_c_longdouble] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(1907), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_defer] = ACTIONS(1907), - [anon_sym_errdefer] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_expand] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), - [anon_sym_orelse] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_or] = ACTIONS(1907), - [anon_sym_and] = ACTIONS(1907), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1907), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_xor] = ACTIONS(1907), - [anon_sym_LT_LT] = ACTIONS(1907), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_LT_LT_PIPE] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1907), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [anon_sym_null] = ACTIONS(1907), - [anon_sym_unreachable] = ACTIONS(1907), - [anon_sym_undefined] = ACTIONS(1907), - [sym_sink] = ACTIONS(1907), - [sym_integer] = ACTIONS(1907), - [sym_float] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym_multiline_string] = ACTIONS(1905), - [sym_character] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1905), - }, - [STATE(865)] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_import] = ACTIONS(1781), - [anon_sym_test] = ACTIONS(1781), - [anon_sym_hide] = ACTIONS(1781), - [anon_sym_func] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_QMARK] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_void] = ACTIONS(1781), - [anon_sym_noreturn] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_anyopaque] = ACTIONS(1781), - [anon_sym_bool] = ACTIONS(1781), - [anon_sym_int] = ACTIONS(1781), - [anon_sym_uint] = ACTIONS(1781), - [anon_sym_float] = ACTIONS(1781), - [anon_sym_range] = ACTIONS(1781), - [anon_sym_i8] = ACTIONS(1781), - [anon_sym_i16] = ACTIONS(1781), - [anon_sym_i32] = ACTIONS(1781), - [anon_sym_i64] = ACTIONS(1781), - [anon_sym_u8] = ACTIONS(1781), - [anon_sym_u16] = ACTIONS(1781), - [anon_sym_u32] = ACTIONS(1781), - [anon_sym_u64] = ACTIONS(1781), - [anon_sym_isize] = ACTIONS(1781), - [anon_sym_usize] = ACTIONS(1781), - [anon_sym_f32] = ACTIONS(1781), - [anon_sym_f64] = ACTIONS(1781), - [anon_sym_c_char] = ACTIONS(1781), - [anon_sym_c_schar] = ACTIONS(1781), - [anon_sym_c_uchar] = ACTIONS(1781), - [anon_sym_c_short] = ACTIONS(1781), - [anon_sym_c_ushort] = ACTIONS(1781), - [anon_sym_c_int] = ACTIONS(1781), - [anon_sym_c_uint] = ACTIONS(1781), - [anon_sym_c_long] = ACTIONS(1781), - [anon_sym_c_ulong] = ACTIONS(1781), - [anon_sym_c_longlong] = ACTIONS(1781), - [anon_sym_c_ulonglong] = ACTIONS(1781), - [anon_sym_c_float] = ACTIONS(1781), - [anon_sym_c_double] = ACTIONS(1781), - [anon_sym_c_longdouble] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_COLON] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_defer] = ACTIONS(1781), - [anon_sym_errdefer] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_expand] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_orelse] = ACTIONS(1781), - [anon_sym_catch] = ACTIONS(1781), - [anon_sym_or] = ACTIONS(1781), - [anon_sym_and] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1779), - [anon_sym_BANG_EQ] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1779), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_xor] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(1781), - [anon_sym_GT_GT] = ACTIONS(1779), - [anon_sym_LT_LT_PIPE] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_unreachable] = ACTIONS(1781), - [anon_sym_undefined] = ACTIONS(1781), - [sym_sink] = ACTIONS(1781), - [sym_integer] = ACTIONS(1781), - [sym_float] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym_multiline_string] = ACTIONS(1779), - [sym_character] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1779), - }, - [STATE(866)] = { - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym_import] = ACTIONS(1787), - [anon_sym_test] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_func] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_void] = ACTIONS(1787), - [anon_sym_noreturn] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_anyopaque] = ACTIONS(1787), - [anon_sym_bool] = ACTIONS(1787), - [anon_sym_int] = ACTIONS(1787), - [anon_sym_uint] = ACTIONS(1787), - [anon_sym_float] = ACTIONS(1787), - [anon_sym_range] = ACTIONS(1787), - [anon_sym_i8] = ACTIONS(1787), - [anon_sym_i16] = ACTIONS(1787), - [anon_sym_i32] = ACTIONS(1787), - [anon_sym_i64] = ACTIONS(1787), - [anon_sym_u8] = ACTIONS(1787), - [anon_sym_u16] = ACTIONS(1787), - [anon_sym_u32] = ACTIONS(1787), - [anon_sym_u64] = ACTIONS(1787), - [anon_sym_isize] = ACTIONS(1787), - [anon_sym_usize] = ACTIONS(1787), - [anon_sym_f32] = ACTIONS(1787), - [anon_sym_f64] = ACTIONS(1787), - [anon_sym_c_char] = ACTIONS(1787), - [anon_sym_c_schar] = ACTIONS(1787), - [anon_sym_c_uchar] = ACTIONS(1787), - [anon_sym_c_short] = ACTIONS(1787), - [anon_sym_c_ushort] = ACTIONS(1787), - [anon_sym_c_int] = ACTIONS(1787), - [anon_sym_c_uint] = ACTIONS(1787), - [anon_sym_c_long] = ACTIONS(1787), - [anon_sym_c_ulong] = ACTIONS(1787), - [anon_sym_c_longlong] = ACTIONS(1787), - [anon_sym_c_ulonglong] = ACTIONS(1787), - [anon_sym_c_float] = ACTIONS(1787), - [anon_sym_c_double] = ACTIONS(1787), - [anon_sym_c_longdouble] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_yield] = ACTIONS(1787), - [anon_sym_COLON] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_defer] = ACTIONS(1787), - [anon_sym_errdefer] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_else] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_expand] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_orelse] = ACTIONS(1787), - [anon_sym_catch] = ACTIONS(1787), - [anon_sym_or] = ACTIONS(1787), - [anon_sym_and] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_xor] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1787), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_LT_LT_PIPE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_unreachable] = ACTIONS(1787), - [anon_sym_undefined] = ACTIONS(1787), - [sym_sink] = ACTIONS(1787), - [sym_integer] = ACTIONS(1787), - [sym_float] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_multiline_string] = ACTIONS(1785), - [sym_character] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1785), - }, - [STATE(867)] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1601), - [anon_sym_import] = ACTIONS(1601), - [anon_sym_test] = ACTIONS(1601), - [anon_sym_hide] = ACTIONS(1601), - [anon_sym_func] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_QMARK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1601), - [anon_sym_noreturn] = ACTIONS(1601), - [anon_sym_type] = ACTIONS(1601), - [anon_sym_anyopaque] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_int] = ACTIONS(1601), - [anon_sym_uint] = ACTIONS(1601), - [anon_sym_float] = ACTIONS(1601), - [anon_sym_range] = ACTIONS(1601), - [anon_sym_i8] = ACTIONS(1601), - [anon_sym_i16] = ACTIONS(1601), - [anon_sym_i32] = ACTIONS(1601), - [anon_sym_i64] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1601), - [anon_sym_u16] = ACTIONS(1601), - [anon_sym_u32] = ACTIONS(1601), - [anon_sym_u64] = ACTIONS(1601), - [anon_sym_isize] = ACTIONS(1601), - [anon_sym_usize] = ACTIONS(1601), - [anon_sym_f32] = ACTIONS(1601), - [anon_sym_f64] = ACTIONS(1601), - [anon_sym_c_char] = ACTIONS(1601), - [anon_sym_c_schar] = ACTIONS(1601), - [anon_sym_c_uchar] = ACTIONS(1601), - [anon_sym_c_short] = ACTIONS(1601), - [anon_sym_c_ushort] = ACTIONS(1601), - [anon_sym_c_int] = ACTIONS(1601), - [anon_sym_c_uint] = ACTIONS(1601), - [anon_sym_c_long] = ACTIONS(1601), - [anon_sym_c_ulong] = ACTIONS(1601), - [anon_sym_c_longlong] = ACTIONS(1601), - [anon_sym_c_ulonglong] = ACTIONS(1601), - [anon_sym_c_float] = ACTIONS(1601), - [anon_sym_c_double] = ACTIONS(1601), - [anon_sym_c_longdouble] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_yield] = ACTIONS(1601), - [anon_sym_COLON] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_defer] = ACTIONS(1601), - [anon_sym_errdefer] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_expand] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_match] = ACTIONS(1601), - [anon_sym_DOT_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), - [anon_sym_orelse] = ACTIONS(1601), - [anon_sym_catch] = ACTIONS(1601), - [anon_sym_or] = ACTIONS(1601), - [anon_sym_and] = ACTIONS(1601), - [anon_sym_EQ_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1599), - [anon_sym_GT] = ACTIONS(1601), - [anon_sym_GT_EQ] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_xor] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1601), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_LT_LT_PIPE] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_DOT] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [anon_sym_null] = ACTIONS(1601), - [anon_sym_unreachable] = ACTIONS(1601), - [anon_sym_undefined] = ACTIONS(1601), - [sym_sink] = ACTIONS(1601), - [sym_integer] = ACTIONS(1601), - [sym_float] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_multiline_string] = ACTIONS(1599), - [sym_character] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1599), - }, - [STATE(868)] = { - [ts_builtin_sym_end] = ACTIONS(1695), - [sym_identifier] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(1697), - [anon_sym_test] = ACTIONS(1697), - [anon_sym_hide] = ACTIONS(1697), - [anon_sym_func] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_anyopaque] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_int] = ACTIONS(1697), - [anon_sym_uint] = ACTIONS(1697), - [anon_sym_float] = ACTIONS(1697), - [anon_sym_range] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_c_char] = ACTIONS(1697), - [anon_sym_c_schar] = ACTIONS(1697), - [anon_sym_c_uchar] = ACTIONS(1697), - [anon_sym_c_short] = ACTIONS(1697), - [anon_sym_c_ushort] = ACTIONS(1697), - [anon_sym_c_int] = ACTIONS(1697), - [anon_sym_c_uint] = ACTIONS(1697), - [anon_sym_c_long] = ACTIONS(1697), - [anon_sym_c_ulong] = ACTIONS(1697), - [anon_sym_c_longlong] = ACTIONS(1697), - [anon_sym_c_ulonglong] = ACTIONS(1697), - [anon_sym_c_float] = ACTIONS(1697), - [anon_sym_c_double] = ACTIONS(1697), - [anon_sym_c_longdouble] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_yield] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_defer] = ACTIONS(1697), - [anon_sym_errdefer] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_expand] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_orelse] = ACTIONS(1697), - [anon_sym_catch] = ACTIONS(1697), - [anon_sym_or] = ACTIONS(1697), - [anon_sym_and] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_xor] = ACTIONS(1697), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1695), - [anon_sym_LT_LT_PIPE] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_SLASH] = ACTIONS(1695), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_true] = ACTIONS(1697), - [anon_sym_false] = ACTIONS(1697), - [anon_sym_null] = ACTIONS(1697), - [anon_sym_unreachable] = ACTIONS(1697), - [anon_sym_undefined] = ACTIONS(1697), - [sym_sink] = ACTIONS(1697), - [sym_integer] = ACTIONS(1697), - [sym_float] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_multiline_string] = ACTIONS(1695), - [sym_character] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1695), - }, - [STATE(869)] = { - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(477), - [anon_sym_import] = ACTIONS(477), - [anon_sym_test] = ACTIONS(477), - [anon_sym_hide] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(486), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_else] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_LT_LT_PIPE] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), - }, - [STATE(870)] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_test] = ACTIONS(1791), - [anon_sym_hide] = ACTIONS(1791), - [anon_sym_func] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_DOLLAR] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_noreturn] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_anyopaque] = ACTIONS(1791), - [anon_sym_bool] = ACTIONS(1791), - [anon_sym_int] = ACTIONS(1791), - [anon_sym_uint] = ACTIONS(1791), - [anon_sym_float] = ACTIONS(1791), - [anon_sym_range] = ACTIONS(1791), - [anon_sym_i8] = ACTIONS(1791), - [anon_sym_i16] = ACTIONS(1791), - [anon_sym_i32] = ACTIONS(1791), - [anon_sym_i64] = ACTIONS(1791), - [anon_sym_u8] = ACTIONS(1791), - [anon_sym_u16] = ACTIONS(1791), - [anon_sym_u32] = ACTIONS(1791), - [anon_sym_u64] = ACTIONS(1791), - [anon_sym_isize] = ACTIONS(1791), - [anon_sym_usize] = ACTIONS(1791), - [anon_sym_f32] = ACTIONS(1791), - [anon_sym_f64] = ACTIONS(1791), - [anon_sym_c_char] = ACTIONS(1791), - [anon_sym_c_schar] = ACTIONS(1791), - [anon_sym_c_uchar] = ACTIONS(1791), - [anon_sym_c_short] = ACTIONS(1791), - [anon_sym_c_ushort] = ACTIONS(1791), - [anon_sym_c_int] = ACTIONS(1791), - [anon_sym_c_uint] = ACTIONS(1791), - [anon_sym_c_long] = ACTIONS(1791), - [anon_sym_c_ulong] = ACTIONS(1791), - [anon_sym_c_longlong] = ACTIONS(1791), - [anon_sym_c_ulonglong] = ACTIONS(1791), - [anon_sym_c_float] = ACTIONS(1791), - [anon_sym_c_double] = ACTIONS(1791), - [anon_sym_c_longdouble] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_errdefer] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_expand] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1789), - [anon_sym_orelse] = ACTIONS(1791), - [anon_sym_catch] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [anon_sym_and] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_xor] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1789), - [anon_sym_LT_LT_PIPE] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_true] = ACTIONS(1791), - [anon_sym_false] = ACTIONS(1791), - [anon_sym_null] = ACTIONS(1791), - [anon_sym_unreachable] = ACTIONS(1791), - [anon_sym_undefined] = ACTIONS(1791), - [sym_sink] = ACTIONS(1791), - [sym_integer] = ACTIONS(1791), - [sym_float] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [sym_multiline_string] = ACTIONS(1789), - [sym_character] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1789), - }, - [STATE(871)] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_test] = ACTIONS(1797), - [anon_sym_hide] = ACTIONS(1797), - [anon_sym_func] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_QMARK] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_noreturn] = ACTIONS(1797), - [anon_sym_type] = 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_COLON] = ACTIONS(1795), - [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_DOT_DOT] = ACTIONS(1797), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_orelse] = ACTIONS(1797), - [anon_sym_catch] = ACTIONS(1797), - [anon_sym_or] = ACTIONS(1797), - [anon_sym_and] = ACTIONS(1797), - [anon_sym_EQ_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_LT_EQ] = ACTIONS(1795), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_GT_EQ] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_xor] = ACTIONS(1797), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1795), - [anon_sym_LT_LT_PIPE] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1797), - [anon_sym_false] = ACTIONS(1797), - [anon_sym_null] = ACTIONS(1797), - [anon_sym_unreachable] = ACTIONS(1797), - [anon_sym_undefined] = ACTIONS(1797), - [sym_sink] = ACTIONS(1797), - [sym_integer] = ACTIONS(1797), - [sym_float] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_multiline_string] = ACTIONS(1795), - [sym_character] = ACTIONS(1795), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1795), - }, - [STATE(872)] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_test] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_func] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_struct] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_QMARK] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_noreturn] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_anyopaque] = ACTIONS(1801), - [anon_sym_bool] = ACTIONS(1801), - [anon_sym_int] = ACTIONS(1801), - [anon_sym_uint] = ACTIONS(1801), - [anon_sym_float] = ACTIONS(1801), - [anon_sym_range] = ACTIONS(1801), - [anon_sym_i8] = ACTIONS(1801), - [anon_sym_i16] = ACTIONS(1801), - [anon_sym_i32] = ACTIONS(1801), - [anon_sym_i64] = ACTIONS(1801), - [anon_sym_u8] = ACTIONS(1801), - [anon_sym_u16] = ACTIONS(1801), - [anon_sym_u32] = ACTIONS(1801), - [anon_sym_u64] = ACTIONS(1801), - [anon_sym_isize] = ACTIONS(1801), - [anon_sym_usize] = ACTIONS(1801), - [anon_sym_f32] = ACTIONS(1801), - [anon_sym_f64] = ACTIONS(1801), - [anon_sym_c_char] = ACTIONS(1801), - [anon_sym_c_schar] = ACTIONS(1801), - [anon_sym_c_uchar] = ACTIONS(1801), - [anon_sym_c_short] = ACTIONS(1801), - [anon_sym_c_ushort] = ACTIONS(1801), - [anon_sym_c_int] = ACTIONS(1801), - [anon_sym_c_uint] = ACTIONS(1801), - [anon_sym_c_long] = ACTIONS(1801), - [anon_sym_c_ulong] = ACTIONS(1801), - [anon_sym_c_longlong] = ACTIONS(1801), - [anon_sym_c_ulonglong] = ACTIONS(1801), - [anon_sym_c_float] = ACTIONS(1801), - [anon_sym_c_double] = ACTIONS(1801), - [anon_sym_c_longdouble] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_COLON] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_defer] = ACTIONS(1801), - [anon_sym_errdefer] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_expand] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_orelse] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_or] = ACTIONS(1801), - [anon_sym_and] = ACTIONS(1801), - [anon_sym_EQ_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_LT_EQ] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_xor] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_LT_LT_PIPE] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_DOT] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_unreachable] = ACTIONS(1801), - [anon_sym_undefined] = ACTIONS(1801), - [sym_sink] = ACTIONS(1801), - [sym_integer] = ACTIONS(1801), - [sym_float] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym_multiline_string] = ACTIONS(1799), - [sym_character] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1799), - }, - [STATE(873)] = { - [ts_builtin_sym_end] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1805), - [anon_sym_import] = ACTIONS(1805), - [anon_sym_test] = ACTIONS(1805), - [anon_sym_hide] = ACTIONS(1805), - [anon_sym_func] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_QMARK] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_void] = ACTIONS(1805), - [anon_sym_noreturn] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_anyopaque] = ACTIONS(1805), - [anon_sym_bool] = ACTIONS(1805), - [anon_sym_int] = ACTIONS(1805), - [anon_sym_uint] = ACTIONS(1805), - [anon_sym_float] = ACTIONS(1805), - [anon_sym_range] = ACTIONS(1805), - [anon_sym_i8] = ACTIONS(1805), - [anon_sym_i16] = ACTIONS(1805), - [anon_sym_i32] = ACTIONS(1805), - [anon_sym_i64] = ACTIONS(1805), - [anon_sym_u8] = ACTIONS(1805), - [anon_sym_u16] = ACTIONS(1805), - [anon_sym_u32] = ACTIONS(1805), - [anon_sym_u64] = ACTIONS(1805), - [anon_sym_isize] = ACTIONS(1805), - [anon_sym_usize] = ACTIONS(1805), - [anon_sym_f32] = ACTIONS(1805), - [anon_sym_f64] = ACTIONS(1805), - [anon_sym_c_char] = ACTIONS(1805), - [anon_sym_c_schar] = ACTIONS(1805), - [anon_sym_c_uchar] = ACTIONS(1805), - [anon_sym_c_short] = ACTIONS(1805), - [anon_sym_c_ushort] = ACTIONS(1805), - [anon_sym_c_int] = ACTIONS(1805), - [anon_sym_c_uint] = ACTIONS(1805), - [anon_sym_c_long] = ACTIONS(1805), - [anon_sym_c_ulong] = ACTIONS(1805), - [anon_sym_c_longlong] = ACTIONS(1805), - [anon_sym_c_ulonglong] = ACTIONS(1805), - [anon_sym_c_float] = ACTIONS(1805), - [anon_sym_c_double] = ACTIONS(1805), - [anon_sym_c_longdouble] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_yield] = ACTIONS(1805), - [anon_sym_COLON] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_defer] = ACTIONS(1805), - [anon_sym_errdefer] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_expand] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1805), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), - [anon_sym_orelse] = ACTIONS(1805), - [anon_sym_catch] = ACTIONS(1805), - [anon_sym_or] = ACTIONS(1805), - [anon_sym_and] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_xor] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_LT_LT_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [anon_sym_null] = ACTIONS(1805), - [anon_sym_unreachable] = ACTIONS(1805), - [anon_sym_undefined] = ACTIONS(1805), - [sym_sink] = ACTIONS(1805), - [sym_integer] = ACTIONS(1805), - [sym_float] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym_multiline_string] = ACTIONS(1803), - [sym_character] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1803), - }, - [STATE(874)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3931), - [sym_labeled_block] = STATE(3931), - [sym_if_statement] = STATE(3931), - [sym_while_statement] = STATE(3931), - [sym_for_statement] = STATE(3931), - [sym_match_statement] = STATE(3931), - [sym__value] = STATE(3931), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(934), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2264), - }, - [STATE(875)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3932), - [sym_labeled_block] = STATE(3932), - [sym_if_statement] = STATE(3932), - [sym_while_statement] = STATE(3932), - [sym_for_statement] = STATE(3932), - [sym_match_statement] = STATE(3932), - [sym__value] = STATE(3932), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2266), - }, - [STATE(876)] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_test] = ACTIONS(1887), - [anon_sym_hide] = ACTIONS(1887), - [anon_sym_func] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_noreturn] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_anyopaque] = ACTIONS(1887), - [anon_sym_bool] = ACTIONS(1887), - [anon_sym_int] = ACTIONS(1887), - [anon_sym_uint] = ACTIONS(1887), - [anon_sym_float] = ACTIONS(1887), - [anon_sym_range] = ACTIONS(1887), - [anon_sym_i8] = ACTIONS(1887), - [anon_sym_i16] = ACTIONS(1887), - [anon_sym_i32] = ACTIONS(1887), - [anon_sym_i64] = ACTIONS(1887), - [anon_sym_u8] = ACTIONS(1887), - [anon_sym_u16] = ACTIONS(1887), - [anon_sym_u32] = ACTIONS(1887), - [anon_sym_u64] = ACTIONS(1887), - [anon_sym_isize] = ACTIONS(1887), - [anon_sym_usize] = ACTIONS(1887), - [anon_sym_f32] = ACTIONS(1887), - [anon_sym_f64] = ACTIONS(1887), - [anon_sym_c_char] = ACTIONS(1887), - [anon_sym_c_schar] = ACTIONS(1887), - [anon_sym_c_uchar] = ACTIONS(1887), - [anon_sym_c_short] = ACTIONS(1887), - [anon_sym_c_ushort] = ACTIONS(1887), - [anon_sym_c_int] = ACTIONS(1887), - [anon_sym_c_uint] = ACTIONS(1887), - [anon_sym_c_long] = ACTIONS(1887), - [anon_sym_c_ulong] = ACTIONS(1887), - [anon_sym_c_longlong] = ACTIONS(1887), - [anon_sym_c_ulonglong] = ACTIONS(1887), - [anon_sym_c_float] = ACTIONS(1887), - [anon_sym_c_double] = ACTIONS(1887), - [anon_sym_c_longdouble] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_COLON] = ACTIONS(1885), - [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_else] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_expand] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_orelse] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1887), - [anon_sym_and] = ACTIONS(1887), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_xor] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_PIPE] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_null] = ACTIONS(1887), - [anon_sym_unreachable] = ACTIONS(1887), - [anon_sym_undefined] = ACTIONS(1887), - [sym_sink] = ACTIONS(1887), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym_multiline_string] = ACTIONS(1885), - [sym_character] = ACTIONS(1885), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1885), - }, - [STATE(877)] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_import] = ACTIONS(1911), - [anon_sym_test] = ACTIONS(1911), - [anon_sym_hide] = ACTIONS(1911), - [anon_sym_func] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_QMARK] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(1911), - [anon_sym_noreturn] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_anyopaque] = ACTIONS(1911), - [anon_sym_bool] = ACTIONS(1911), - [anon_sym_int] = ACTIONS(1911), - [anon_sym_uint] = ACTIONS(1911), - [anon_sym_float] = ACTIONS(1911), - [anon_sym_range] = ACTIONS(1911), - [anon_sym_i8] = ACTIONS(1911), - [anon_sym_i16] = ACTIONS(1911), - [anon_sym_i32] = ACTIONS(1911), - [anon_sym_i64] = ACTIONS(1911), - [anon_sym_u8] = ACTIONS(1911), - [anon_sym_u16] = ACTIONS(1911), - [anon_sym_u32] = ACTIONS(1911), - [anon_sym_u64] = ACTIONS(1911), - [anon_sym_isize] = ACTIONS(1911), - [anon_sym_usize] = ACTIONS(1911), - [anon_sym_f32] = ACTIONS(1911), - [anon_sym_f64] = ACTIONS(1911), - [anon_sym_c_char] = ACTIONS(1911), - [anon_sym_c_schar] = ACTIONS(1911), - [anon_sym_c_uchar] = ACTIONS(1911), - [anon_sym_c_short] = ACTIONS(1911), - [anon_sym_c_ushort] = ACTIONS(1911), - [anon_sym_c_int] = ACTIONS(1911), - [anon_sym_c_uint] = ACTIONS(1911), - [anon_sym_c_long] = ACTIONS(1911), - [anon_sym_c_ulong] = ACTIONS(1911), - [anon_sym_c_longlong] = ACTIONS(1911), - [anon_sym_c_ulonglong] = ACTIONS(1911), - [anon_sym_c_float] = ACTIONS(1911), - [anon_sym_c_double] = ACTIONS(1911), - [anon_sym_c_longdouble] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_defer] = ACTIONS(1911), - [anon_sym_errdefer] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_expand] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), - [anon_sym_orelse] = ACTIONS(1911), - [anon_sym_catch] = ACTIONS(1911), - [anon_sym_or] = ACTIONS(1911), - [anon_sym_and] = ACTIONS(1911), - [anon_sym_EQ_EQ] = ACTIONS(1909), - [anon_sym_BANG_EQ] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_LT_EQ] = ACTIONS(1909), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_GT_EQ] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_xor] = ACTIONS(1911), - [anon_sym_LT_LT] = ACTIONS(1911), - [anon_sym_GT_GT] = ACTIONS(1909), - [anon_sym_LT_LT_PIPE] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1909), - [anon_sym_SLASH] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [anon_sym_unreachable] = ACTIONS(1911), - [anon_sym_undefined] = ACTIONS(1911), - [sym_sink] = ACTIONS(1911), - [sym_integer] = ACTIONS(1911), - [sym_float] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym_multiline_string] = ACTIONS(1909), - [sym_character] = ACTIONS(1909), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1909), - }, - [STATE(878)] = { - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_import] = ACTIONS(1915), - [anon_sym_test] = ACTIONS(1915), - [anon_sym_hide] = ACTIONS(1915), - [anon_sym_func] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_void] = ACTIONS(1915), - [anon_sym_noreturn] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_anyopaque] = ACTIONS(1915), - [anon_sym_bool] = ACTIONS(1915), - [anon_sym_int] = ACTIONS(1915), - [anon_sym_uint] = ACTIONS(1915), - [anon_sym_float] = ACTIONS(1915), - [anon_sym_range] = ACTIONS(1915), - [anon_sym_i8] = ACTIONS(1915), - [anon_sym_i16] = ACTIONS(1915), - [anon_sym_i32] = ACTIONS(1915), - [anon_sym_i64] = ACTIONS(1915), - [anon_sym_u8] = ACTIONS(1915), - [anon_sym_u16] = ACTIONS(1915), - [anon_sym_u32] = ACTIONS(1915), - [anon_sym_u64] = ACTIONS(1915), - [anon_sym_isize] = ACTIONS(1915), - [anon_sym_usize] = ACTIONS(1915), - [anon_sym_f32] = ACTIONS(1915), - [anon_sym_f64] = ACTIONS(1915), - [anon_sym_c_char] = ACTIONS(1915), - [anon_sym_c_schar] = ACTIONS(1915), - [anon_sym_c_uchar] = ACTIONS(1915), - [anon_sym_c_short] = ACTIONS(1915), - [anon_sym_c_ushort] = ACTIONS(1915), - [anon_sym_c_int] = ACTIONS(1915), - [anon_sym_c_uint] = ACTIONS(1915), - [anon_sym_c_long] = ACTIONS(1915), - [anon_sym_c_ulong] = ACTIONS(1915), - [anon_sym_c_longlong] = ACTIONS(1915), - [anon_sym_c_ulonglong] = ACTIONS(1915), - [anon_sym_c_float] = ACTIONS(1915), - [anon_sym_c_double] = ACTIONS(1915), - [anon_sym_c_longdouble] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_defer] = ACTIONS(1915), - [anon_sym_errdefer] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_expand] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [anon_sym_orelse] = ACTIONS(1915), - [anon_sym_catch] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1915), - [anon_sym_and] = ACTIONS(1915), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_xor] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1915), - [anon_sym_GT_GT] = ACTIONS(1913), - [anon_sym_LT_LT_PIPE] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [anon_sym_unreachable] = ACTIONS(1915), - [anon_sym_undefined] = ACTIONS(1915), - [sym_sink] = ACTIONS(1915), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym_multiline_string] = ACTIONS(1913), - [sym_character] = ACTIONS(1913), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1913), - }, - [STATE(879)] = { - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_identifier] = ACTIONS(1919), - [anon_sym_import] = ACTIONS(1919), - [anon_sym_test] = ACTIONS(1919), - [anon_sym_hide] = ACTIONS(1919), - [anon_sym_func] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_void] = ACTIONS(1919), - [anon_sym_noreturn] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_anyopaque] = ACTIONS(1919), - [anon_sym_bool] = ACTIONS(1919), - [anon_sym_int] = ACTIONS(1919), - [anon_sym_uint] = ACTIONS(1919), - [anon_sym_float] = ACTIONS(1919), - [anon_sym_range] = ACTIONS(1919), - [anon_sym_i8] = ACTIONS(1919), - [anon_sym_i16] = ACTIONS(1919), - [anon_sym_i32] = ACTIONS(1919), - [anon_sym_i64] = ACTIONS(1919), - [anon_sym_u8] = ACTIONS(1919), - [anon_sym_u16] = ACTIONS(1919), - [anon_sym_u32] = ACTIONS(1919), - [anon_sym_u64] = ACTIONS(1919), - [anon_sym_isize] = ACTIONS(1919), - [anon_sym_usize] = ACTIONS(1919), - [anon_sym_f32] = ACTIONS(1919), - [anon_sym_f64] = ACTIONS(1919), - [anon_sym_c_char] = ACTIONS(1919), - [anon_sym_c_schar] = ACTIONS(1919), - [anon_sym_c_uchar] = ACTIONS(1919), - [anon_sym_c_short] = ACTIONS(1919), - [anon_sym_c_ushort] = ACTIONS(1919), - [anon_sym_c_int] = ACTIONS(1919), - [anon_sym_c_uint] = ACTIONS(1919), - [anon_sym_c_long] = ACTIONS(1919), - [anon_sym_c_ulong] = ACTIONS(1919), - [anon_sym_c_longlong] = ACTIONS(1919), - [anon_sym_c_ulonglong] = ACTIONS(1919), - [anon_sym_c_float] = ACTIONS(1919), - [anon_sym_c_double] = ACTIONS(1919), - [anon_sym_c_longdouble] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_yield] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_defer] = ACTIONS(1919), - [anon_sym_errdefer] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_expand] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), - [anon_sym_orelse] = ACTIONS(1919), - [anon_sym_catch] = ACTIONS(1919), - [anon_sym_or] = ACTIONS(1919), - [anon_sym_and] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_xor] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1919), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_LT_LT_PIPE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [anon_sym_null] = ACTIONS(1919), - [anon_sym_unreachable] = ACTIONS(1919), - [anon_sym_undefined] = ACTIONS(1919), - [sym_sink] = ACTIONS(1919), - [sym_integer] = ACTIONS(1919), - [sym_float] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym_multiline_string] = ACTIONS(1917), - [sym_character] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1917), - }, - [STATE(880)] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_test] = ACTIONS(1923), - [anon_sym_hide] = ACTIONS(1923), - [anon_sym_func] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_noreturn] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_anyopaque] = ACTIONS(1923), - [anon_sym_bool] = ACTIONS(1923), - [anon_sym_int] = ACTIONS(1923), - [anon_sym_uint] = ACTIONS(1923), - [anon_sym_float] = ACTIONS(1923), - [anon_sym_range] = ACTIONS(1923), - [anon_sym_i8] = ACTIONS(1923), - [anon_sym_i16] = ACTIONS(1923), - [anon_sym_i32] = ACTIONS(1923), - [anon_sym_i64] = ACTIONS(1923), - [anon_sym_u8] = ACTIONS(1923), - [anon_sym_u16] = ACTIONS(1923), - [anon_sym_u32] = ACTIONS(1923), - [anon_sym_u64] = ACTIONS(1923), - [anon_sym_isize] = ACTIONS(1923), - [anon_sym_usize] = ACTIONS(1923), - [anon_sym_f32] = ACTIONS(1923), - [anon_sym_f64] = ACTIONS(1923), - [anon_sym_c_char] = ACTIONS(1923), - [anon_sym_c_schar] = ACTIONS(1923), - [anon_sym_c_uchar] = ACTIONS(1923), - [anon_sym_c_short] = ACTIONS(1923), - [anon_sym_c_ushort] = ACTIONS(1923), - [anon_sym_c_int] = ACTIONS(1923), - [anon_sym_c_uint] = ACTIONS(1923), - [anon_sym_c_long] = ACTIONS(1923), - [anon_sym_c_ulong] = ACTIONS(1923), - [anon_sym_c_longlong] = ACTIONS(1923), - [anon_sym_c_ulonglong] = ACTIONS(1923), - [anon_sym_c_float] = ACTIONS(1923), - [anon_sym_c_double] = ACTIONS(1923), - [anon_sym_c_longdouble] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_defer] = ACTIONS(1923), - [anon_sym_errdefer] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_expand] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), - [anon_sym_orelse] = ACTIONS(1923), - [anon_sym_catch] = ACTIONS(1923), - [anon_sym_or] = ACTIONS(1923), - [anon_sym_and] = ACTIONS(1923), - [anon_sym_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_xor] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(1923), - [anon_sym_GT_GT] = ACTIONS(1921), - [anon_sym_LT_LT_PIPE] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [anon_sym_unreachable] = ACTIONS(1923), - [anon_sym_undefined] = ACTIONS(1923), - [sym_sink] = ACTIONS(1923), - [sym_integer] = ACTIONS(1923), - [sym_float] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym_multiline_string] = ACTIONS(1921), - [sym_character] = ACTIONS(1921), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1921), - }, - [STATE(881)] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_test] = ACTIONS(1927), - [anon_sym_hide] = ACTIONS(1927), - [anon_sym_func] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_noreturn] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_anyopaque] = ACTIONS(1927), - [anon_sym_bool] = ACTIONS(1927), - [anon_sym_int] = ACTIONS(1927), - [anon_sym_uint] = ACTIONS(1927), - [anon_sym_float] = ACTIONS(1927), - [anon_sym_range] = ACTIONS(1927), - [anon_sym_i8] = ACTIONS(1927), - [anon_sym_i16] = ACTIONS(1927), - [anon_sym_i32] = ACTIONS(1927), - [anon_sym_i64] = ACTIONS(1927), - [anon_sym_u8] = ACTIONS(1927), - [anon_sym_u16] = ACTIONS(1927), - [anon_sym_u32] = ACTIONS(1927), - [anon_sym_u64] = ACTIONS(1927), - [anon_sym_isize] = ACTIONS(1927), - [anon_sym_usize] = ACTIONS(1927), - [anon_sym_f32] = ACTIONS(1927), - [anon_sym_f64] = ACTIONS(1927), - [anon_sym_c_char] = ACTIONS(1927), - [anon_sym_c_schar] = ACTIONS(1927), - [anon_sym_c_uchar] = ACTIONS(1927), - [anon_sym_c_short] = ACTIONS(1927), - [anon_sym_c_ushort] = ACTIONS(1927), - [anon_sym_c_int] = ACTIONS(1927), - [anon_sym_c_uint] = ACTIONS(1927), - [anon_sym_c_long] = ACTIONS(1927), - [anon_sym_c_ulong] = ACTIONS(1927), - [anon_sym_c_longlong] = ACTIONS(1927), - [anon_sym_c_ulonglong] = ACTIONS(1927), - [anon_sym_c_float] = ACTIONS(1927), - [anon_sym_c_double] = ACTIONS(1927), - [anon_sym_c_longdouble] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_COLON] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_defer] = ACTIONS(1927), - [anon_sym_errdefer] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_expand] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1925), - [anon_sym_orelse] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_or] = ACTIONS(1927), - [anon_sym_and] = ACTIONS(1927), - [anon_sym_EQ_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_xor] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1927), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_LT_LT_PIPE] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_unreachable] = ACTIONS(1927), - [anon_sym_undefined] = ACTIONS(1927), - [sym_sink] = ACTIONS(1927), - [sym_integer] = ACTIONS(1927), - [sym_float] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym_multiline_string] = ACTIONS(1925), - [sym_character] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1925), - }, - [STATE(882)] = { - [ts_builtin_sym_end] = ACTIONS(1529), - [sym_identifier] = ACTIONS(1531), - [anon_sym_import] = ACTIONS(1531), - [anon_sym_test] = ACTIONS(1531), - [anon_sym_hide] = ACTIONS(1531), - [anon_sym_func] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_struct] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_QMARK] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_noreturn] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1531), - [anon_sym_anyopaque] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_range] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_c_char] = ACTIONS(1531), - [anon_sym_c_schar] = ACTIONS(1531), - [anon_sym_c_uchar] = ACTIONS(1531), - [anon_sym_c_short] = ACTIONS(1531), - [anon_sym_c_ushort] = ACTIONS(1531), - [anon_sym_c_int] = ACTIONS(1531), - [anon_sym_c_uint] = ACTIONS(1531), - [anon_sym_c_long] = ACTIONS(1531), - [anon_sym_c_ulong] = ACTIONS(1531), - [anon_sym_c_longlong] = ACTIONS(1531), - [anon_sym_c_ulonglong] = ACTIONS(1531), - [anon_sym_c_float] = ACTIONS(1531), - [anon_sym_c_double] = ACTIONS(1531), - [anon_sym_c_longdouble] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_yield] = ACTIONS(1531), - [anon_sym_COLON] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_defer] = ACTIONS(1531), - [anon_sym_errdefer] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_else] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_expand] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [anon_sym_orelse] = ACTIONS(1531), - [anon_sym_catch] = ACTIONS(1531), - [anon_sym_or] = ACTIONS(1531), - [anon_sym_and] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_xor] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_LT_LT_PIPE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_unreachable] = ACTIONS(1531), - [anon_sym_undefined] = ACTIONS(1531), - [sym_sink] = ACTIONS(1531), - [sym_integer] = ACTIONS(1531), - [sym_float] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1529), - [sym_multiline_string] = ACTIONS(1529), - [sym_character] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1529), - }, - [STATE(883)] = { - [ts_builtin_sym_end] = ACTIONS(1969), - [sym_identifier] = ACTIONS(1971), - [anon_sym_import] = ACTIONS(1971), - [anon_sym_test] = ACTIONS(1971), - [anon_sym_hide] = ACTIONS(1971), - [anon_sym_func] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_void] = ACTIONS(1971), - [anon_sym_noreturn] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_anyopaque] = ACTIONS(1971), - [anon_sym_bool] = ACTIONS(1971), - [anon_sym_int] = ACTIONS(1971), - [anon_sym_uint] = ACTIONS(1971), - [anon_sym_float] = ACTIONS(1971), - [anon_sym_range] = ACTIONS(1971), - [anon_sym_i8] = ACTIONS(1971), - [anon_sym_i16] = ACTIONS(1971), - [anon_sym_i32] = ACTIONS(1971), - [anon_sym_i64] = ACTIONS(1971), - [anon_sym_u8] = ACTIONS(1971), - [anon_sym_u16] = ACTIONS(1971), - [anon_sym_u32] = ACTIONS(1971), - [anon_sym_u64] = ACTIONS(1971), - [anon_sym_isize] = ACTIONS(1971), - [anon_sym_usize] = ACTIONS(1971), - [anon_sym_f32] = ACTIONS(1971), - [anon_sym_f64] = ACTIONS(1971), - [anon_sym_c_char] = ACTIONS(1971), - [anon_sym_c_schar] = ACTIONS(1971), - [anon_sym_c_uchar] = ACTIONS(1971), - [anon_sym_c_short] = ACTIONS(1971), - [anon_sym_c_ushort] = ACTIONS(1971), - [anon_sym_c_int] = ACTIONS(1971), - [anon_sym_c_uint] = ACTIONS(1971), - [anon_sym_c_long] = ACTIONS(1971), - [anon_sym_c_ulong] = ACTIONS(1971), - [anon_sym_c_longlong] = ACTIONS(1971), - [anon_sym_c_ulonglong] = ACTIONS(1971), - [anon_sym_c_float] = ACTIONS(1971), - [anon_sym_c_double] = ACTIONS(1971), - [anon_sym_c_longdouble] = ACTIONS(1971), - [anon_sym_return] = ACTIONS(1971), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_COLON] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1971), - [anon_sym_continue] = ACTIONS(1971), - [anon_sym_defer] = ACTIONS(1971), - [anon_sym_errdefer] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_else] = ACTIONS(1971), - [anon_sym_while] = ACTIONS(1971), - [anon_sym_expand] = ACTIONS(1971), - [anon_sym_for] = ACTIONS(1971), - [anon_sym_match] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1969), - [anon_sym_orelse] = ACTIONS(1971), - [anon_sym_catch] = ACTIONS(1971), - [anon_sym_or] = ACTIONS(1971), - [anon_sym_and] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_xor] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_LT_LT_PIPE] = ACTIONS(1969), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_TILDE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [anon_sym_unreachable] = ACTIONS(1971), - [anon_sym_undefined] = ACTIONS(1971), - [sym_sink] = ACTIONS(1971), - [sym_integer] = ACTIONS(1971), - [sym_float] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym_multiline_string] = ACTIONS(1969), - [sym_character] = ACTIONS(1969), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1969), - }, - [STATE(884)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(813), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2268), - }, - [STATE(885)] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [anon_sym_import] = ACTIONS(1539), - [anon_sym_test] = ACTIONS(1539), - [anon_sym_hide] = ACTIONS(1539), - [anon_sym_func] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_noreturn] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_anyopaque] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_range] = ACTIONS(1539), - [anon_sym_i8] = ACTIONS(1539), - [anon_sym_i16] = ACTIONS(1539), - [anon_sym_i32] = ACTIONS(1539), - [anon_sym_i64] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1539), - [anon_sym_u16] = ACTIONS(1539), - [anon_sym_u32] = ACTIONS(1539), - [anon_sym_u64] = ACTIONS(1539), - [anon_sym_isize] = ACTIONS(1539), - [anon_sym_usize] = ACTIONS(1539), - [anon_sym_f32] = ACTIONS(1539), - [anon_sym_f64] = ACTIONS(1539), - [anon_sym_c_char] = ACTIONS(1539), - [anon_sym_c_schar] = ACTIONS(1539), - [anon_sym_c_uchar] = ACTIONS(1539), - [anon_sym_c_short] = ACTIONS(1539), - [anon_sym_c_ushort] = ACTIONS(1539), - [anon_sym_c_int] = ACTIONS(1539), - [anon_sym_c_uint] = ACTIONS(1539), - [anon_sym_c_long] = ACTIONS(1539), - [anon_sym_c_ulong] = ACTIONS(1539), - [anon_sym_c_longlong] = ACTIONS(1539), - [anon_sym_c_ulonglong] = ACTIONS(1539), - [anon_sym_c_float] = ACTIONS(1539), - [anon_sym_c_double] = ACTIONS(1539), - [anon_sym_c_longdouble] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_yield] = ACTIONS(1539), - [anon_sym_COLON] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_defer] = ACTIONS(1539), - [anon_sym_errdefer] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_expand] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_orelse] = ACTIONS(1539), - [anon_sym_catch] = ACTIONS(1539), - [anon_sym_or] = ACTIONS(1539), - [anon_sym_and] = ACTIONS(1539), - [anon_sym_EQ_EQ] = ACTIONS(1537), - [anon_sym_BANG_EQ] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1537), - [anon_sym_GT] = ACTIONS(1539), - [anon_sym_GT_EQ] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_xor] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1539), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_LT_LT_PIPE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1539), - [anon_sym_DOT] = ACTIONS(1539), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [anon_sym_null] = ACTIONS(1539), - [anon_sym_unreachable] = ACTIONS(1539), - [anon_sym_undefined] = ACTIONS(1539), - [sym_sink] = ACTIONS(1539), - [sym_integer] = ACTIONS(1539), - [sym_float] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_multiline_string] = ACTIONS(1537), - [sym_character] = ACTIONS(1537), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1537), - }, - [STATE(886)] = { - [ts_builtin_sym_end] = ACTIONS(1949), - [sym_identifier] = ACTIONS(1951), - [anon_sym_import] = ACTIONS(1951), - [anon_sym_test] = ACTIONS(1951), - [anon_sym_hide] = ACTIONS(1951), - [anon_sym_func] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_QMARK] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_void] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_type] = ACTIONS(1951), - [anon_sym_anyopaque] = ACTIONS(1951), - [anon_sym_bool] = ACTIONS(1951), - [anon_sym_int] = ACTIONS(1951), - [anon_sym_uint] = ACTIONS(1951), - [anon_sym_float] = ACTIONS(1951), - [anon_sym_range] = ACTIONS(1951), - [anon_sym_i8] = ACTIONS(1951), - [anon_sym_i16] = ACTIONS(1951), - [anon_sym_i32] = ACTIONS(1951), - [anon_sym_i64] = ACTIONS(1951), - [anon_sym_u8] = ACTIONS(1951), - [anon_sym_u16] = ACTIONS(1951), - [anon_sym_u32] = ACTIONS(1951), - [anon_sym_u64] = ACTIONS(1951), - [anon_sym_isize] = ACTIONS(1951), - [anon_sym_usize] = ACTIONS(1951), - [anon_sym_f32] = ACTIONS(1951), - [anon_sym_f64] = ACTIONS(1951), - [anon_sym_c_char] = ACTIONS(1951), - [anon_sym_c_schar] = ACTIONS(1951), - [anon_sym_c_uchar] = ACTIONS(1951), - [anon_sym_c_short] = ACTIONS(1951), - [anon_sym_c_ushort] = ACTIONS(1951), - [anon_sym_c_int] = ACTIONS(1951), - [anon_sym_c_uint] = ACTIONS(1951), - [anon_sym_c_long] = ACTIONS(1951), - [anon_sym_c_ulong] = ACTIONS(1951), - [anon_sym_c_longlong] = ACTIONS(1951), - [anon_sym_c_ulonglong] = ACTIONS(1951), - [anon_sym_c_float] = ACTIONS(1951), - [anon_sym_c_double] = ACTIONS(1951), - [anon_sym_c_longdouble] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_yield] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_defer] = ACTIONS(1951), - [anon_sym_errdefer] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_expand] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1949), - [anon_sym_orelse] = ACTIONS(1951), - [anon_sym_catch] = ACTIONS(1951), - [anon_sym_or] = ACTIONS(1951), - [anon_sym_and] = ACTIONS(1951), - [anon_sym_EQ_EQ] = ACTIONS(1949), - [anon_sym_BANG_EQ] = ACTIONS(1949), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_LT_EQ] = ACTIONS(1949), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_GT_EQ] = ACTIONS(1949), - [anon_sym_AMP] = ACTIONS(1949), - [anon_sym_xor] = ACTIONS(1951), - [anon_sym_LT_LT] = ACTIONS(1951), - [anon_sym_GT_GT] = ACTIONS(1949), - [anon_sym_LT_LT_PIPE] = ACTIONS(1949), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_SLASH] = ACTIONS(1949), - [anon_sym_TILDE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [anon_sym_unreachable] = ACTIONS(1951), - [anon_sym_undefined] = ACTIONS(1951), - [sym_sink] = ACTIONS(1951), - [sym_integer] = ACTIONS(1951), - [sym_float] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym_multiline_string] = ACTIONS(1949), - [sym_character] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1949), - }, - [STATE(887)] = { - [ts_builtin_sym_end] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1955), - [anon_sym_import] = ACTIONS(1955), - [anon_sym_test] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_func] = ACTIONS(1955), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_void] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_type] = ACTIONS(1955), - [anon_sym_anyopaque] = ACTIONS(1955), - [anon_sym_bool] = ACTIONS(1955), - [anon_sym_int] = ACTIONS(1955), - [anon_sym_uint] = ACTIONS(1955), - [anon_sym_float] = ACTIONS(1955), - [anon_sym_range] = ACTIONS(1955), - [anon_sym_i8] = ACTIONS(1955), - [anon_sym_i16] = ACTIONS(1955), - [anon_sym_i32] = ACTIONS(1955), - [anon_sym_i64] = ACTIONS(1955), - [anon_sym_u8] = ACTIONS(1955), - [anon_sym_u16] = ACTIONS(1955), - [anon_sym_u32] = ACTIONS(1955), - [anon_sym_u64] = ACTIONS(1955), - [anon_sym_isize] = ACTIONS(1955), - [anon_sym_usize] = ACTIONS(1955), - [anon_sym_f32] = ACTIONS(1955), - [anon_sym_f64] = ACTIONS(1955), - [anon_sym_c_char] = ACTIONS(1955), - [anon_sym_c_schar] = ACTIONS(1955), - [anon_sym_c_uchar] = ACTIONS(1955), - [anon_sym_c_short] = ACTIONS(1955), - [anon_sym_c_ushort] = ACTIONS(1955), - [anon_sym_c_int] = ACTIONS(1955), - [anon_sym_c_uint] = ACTIONS(1955), - [anon_sym_c_long] = ACTIONS(1955), - [anon_sym_c_ulong] = ACTIONS(1955), - [anon_sym_c_longlong] = ACTIONS(1955), - [anon_sym_c_ulonglong] = ACTIONS(1955), - [anon_sym_c_float] = ACTIONS(1955), - [anon_sym_c_double] = ACTIONS(1955), - [anon_sym_c_longdouble] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_yield] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_defer] = ACTIONS(1955), - [anon_sym_errdefer] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_expand] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_orelse] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_or] = ACTIONS(1955), - [anon_sym_and] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_xor] = ACTIONS(1955), - [anon_sym_LT_LT] = ACTIONS(1955), - [anon_sym_GT_GT] = ACTIONS(1953), - [anon_sym_LT_LT_PIPE] = ACTIONS(1953), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_SLASH] = ACTIONS(1953), - [anon_sym_TILDE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_DOT] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_unreachable] = ACTIONS(1955), - [anon_sym_undefined] = ACTIONS(1955), - [sym_sink] = ACTIONS(1955), - [sym_integer] = ACTIONS(1955), - [sym_float] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym_multiline_string] = ACTIONS(1953), - [sym_character] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1953), - }, - [STATE(888)] = { - [ts_builtin_sym_end] = ACTIONS(1957), - [sym_identifier] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(1959), - [anon_sym_test] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_func] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_void] = ACTIONS(1959), - [anon_sym_noreturn] = ACTIONS(1959), - [anon_sym_type] = ACTIONS(1959), - [anon_sym_anyopaque] = ACTIONS(1959), - [anon_sym_bool] = ACTIONS(1959), - [anon_sym_int] = ACTIONS(1959), - [anon_sym_uint] = ACTIONS(1959), - [anon_sym_float] = ACTIONS(1959), - [anon_sym_range] = ACTIONS(1959), - [anon_sym_i8] = ACTIONS(1959), - [anon_sym_i16] = ACTIONS(1959), - [anon_sym_i32] = ACTIONS(1959), - [anon_sym_i64] = ACTIONS(1959), - [anon_sym_u8] = ACTIONS(1959), - [anon_sym_u16] = ACTIONS(1959), - [anon_sym_u32] = ACTIONS(1959), - [anon_sym_u64] = ACTIONS(1959), - [anon_sym_isize] = ACTIONS(1959), - [anon_sym_usize] = ACTIONS(1959), - [anon_sym_f32] = ACTIONS(1959), - [anon_sym_f64] = ACTIONS(1959), - [anon_sym_c_char] = ACTIONS(1959), - [anon_sym_c_schar] = ACTIONS(1959), - [anon_sym_c_uchar] = ACTIONS(1959), - [anon_sym_c_short] = ACTIONS(1959), - [anon_sym_c_ushort] = ACTIONS(1959), - [anon_sym_c_int] = ACTIONS(1959), - [anon_sym_c_uint] = ACTIONS(1959), - [anon_sym_c_long] = ACTIONS(1959), - [anon_sym_c_ulong] = ACTIONS(1959), - [anon_sym_c_longlong] = ACTIONS(1959), - [anon_sym_c_ulonglong] = ACTIONS(1959), - [anon_sym_c_float] = ACTIONS(1959), - [anon_sym_c_double] = ACTIONS(1959), - [anon_sym_c_longdouble] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_yield] = ACTIONS(1959), - [anon_sym_COLON] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_defer] = ACTIONS(1959), - [anon_sym_errdefer] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_expand] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), - [anon_sym_orelse] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_or] = ACTIONS(1959), - [anon_sym_and] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_xor] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_LT_LT_PIPE] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1957), - [anon_sym_TILDE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [anon_sym_unreachable] = ACTIONS(1959), - [anon_sym_undefined] = ACTIONS(1959), - [sym_sink] = ACTIONS(1959), - [sym_integer] = ACTIONS(1959), - [sym_float] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym_multiline_string] = ACTIONS(1957), - [sym_character] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1957), - }, - [STATE(889)] = { - [ts_builtin_sym_end] = ACTIONS(1961), - [sym_identifier] = ACTIONS(1963), - [anon_sym_import] = ACTIONS(1963), - [anon_sym_test] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_func] = ACTIONS(1963), - [anon_sym_BANG] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_void] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_type] = ACTIONS(1963), - [anon_sym_anyopaque] = ACTIONS(1963), - [anon_sym_bool] = ACTIONS(1963), - [anon_sym_int] = ACTIONS(1963), - [anon_sym_uint] = ACTIONS(1963), - [anon_sym_float] = ACTIONS(1963), - [anon_sym_range] = ACTIONS(1963), - [anon_sym_i8] = ACTIONS(1963), - [anon_sym_i16] = ACTIONS(1963), - [anon_sym_i32] = ACTIONS(1963), - [anon_sym_i64] = ACTIONS(1963), - [anon_sym_u8] = ACTIONS(1963), - [anon_sym_u16] = ACTIONS(1963), - [anon_sym_u32] = ACTIONS(1963), - [anon_sym_u64] = ACTIONS(1963), - [anon_sym_isize] = ACTIONS(1963), - [anon_sym_usize] = ACTIONS(1963), - [anon_sym_f32] = ACTIONS(1963), - [anon_sym_f64] = ACTIONS(1963), - [anon_sym_c_char] = ACTIONS(1963), - [anon_sym_c_schar] = ACTIONS(1963), - [anon_sym_c_uchar] = ACTIONS(1963), - [anon_sym_c_short] = ACTIONS(1963), - [anon_sym_c_ushort] = ACTIONS(1963), - [anon_sym_c_int] = ACTIONS(1963), - [anon_sym_c_uint] = ACTIONS(1963), - [anon_sym_c_long] = ACTIONS(1963), - [anon_sym_c_ulong] = ACTIONS(1963), - [anon_sym_c_longlong] = ACTIONS(1963), - [anon_sym_c_ulonglong] = ACTIONS(1963), - [anon_sym_c_float] = ACTIONS(1963), - [anon_sym_c_double] = ACTIONS(1963), - [anon_sym_c_longdouble] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_yield] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_defer] = ACTIONS(1963), - [anon_sym_errdefer] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_expand] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), - [anon_sym_orelse] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_or] = ACTIONS(1963), - [anon_sym_and] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [anon_sym_BANG_EQ] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_EQ] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_xor] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_LT_LT_PIPE] = ACTIONS(1961), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_DOT] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [anon_sym_unreachable] = ACTIONS(1963), - [anon_sym_undefined] = ACTIONS(1963), - [sym_sink] = ACTIONS(1963), - [sym_integer] = ACTIONS(1963), - [sym_float] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym_multiline_string] = ACTIONS(1961), - [sym_character] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1961), - }, - [STATE(890)] = { - [ts_builtin_sym_end] = ACTIONS(1965), - [sym_identifier] = ACTIONS(1967), - [anon_sym_import] = ACTIONS(1967), - [anon_sym_test] = ACTIONS(1967), - [anon_sym_hide] = ACTIONS(1967), - [anon_sym_func] = ACTIONS(1967), - [anon_sym_BANG] = ACTIONS(1967), - [anon_sym_struct] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_void] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_type] = ACTIONS(1967), - [anon_sym_anyopaque] = ACTIONS(1967), - [anon_sym_bool] = ACTIONS(1967), - [anon_sym_int] = ACTIONS(1967), - [anon_sym_uint] = ACTIONS(1967), - [anon_sym_float] = ACTIONS(1967), - [anon_sym_range] = ACTIONS(1967), - [anon_sym_i8] = ACTIONS(1967), - [anon_sym_i16] = ACTIONS(1967), - [anon_sym_i32] = ACTIONS(1967), - [anon_sym_i64] = ACTIONS(1967), - [anon_sym_u8] = ACTIONS(1967), - [anon_sym_u16] = ACTIONS(1967), - [anon_sym_u32] = ACTIONS(1967), - [anon_sym_u64] = ACTIONS(1967), - [anon_sym_isize] = ACTIONS(1967), - [anon_sym_usize] = ACTIONS(1967), - [anon_sym_f32] = ACTIONS(1967), - [anon_sym_f64] = ACTIONS(1967), - [anon_sym_c_char] = ACTIONS(1967), - [anon_sym_c_schar] = ACTIONS(1967), - [anon_sym_c_uchar] = ACTIONS(1967), - [anon_sym_c_short] = ACTIONS(1967), - [anon_sym_c_ushort] = ACTIONS(1967), - [anon_sym_c_int] = ACTIONS(1967), - [anon_sym_c_uint] = ACTIONS(1967), - [anon_sym_c_long] = ACTIONS(1967), - [anon_sym_c_ulong] = ACTIONS(1967), - [anon_sym_c_longlong] = ACTIONS(1967), - [anon_sym_c_ulonglong] = ACTIONS(1967), - [anon_sym_c_float] = ACTIONS(1967), - [anon_sym_c_double] = ACTIONS(1967), - [anon_sym_c_longdouble] = ACTIONS(1967), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_yield] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_defer] = ACTIONS(1967), - [anon_sym_errdefer] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_else] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_expand] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), - [anon_sym_orelse] = ACTIONS(1967), - [anon_sym_catch] = ACTIONS(1967), - [anon_sym_or] = ACTIONS(1967), - [anon_sym_and] = ACTIONS(1967), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1967), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1967), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_xor] = ACTIONS(1967), - [anon_sym_LT_LT] = ACTIONS(1967), - [anon_sym_GT_GT] = ACTIONS(1965), - [anon_sym_LT_LT_PIPE] = ACTIONS(1965), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1965), - [anon_sym_TILDE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1967), - [anon_sym_DOT] = ACTIONS(1967), - [anon_sym_CARET] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [anon_sym_unreachable] = ACTIONS(1967), - [anon_sym_undefined] = ACTIONS(1967), - [sym_sink] = ACTIONS(1967), - [sym_integer] = ACTIONS(1967), - [sym_float] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym_multiline_string] = ACTIONS(1965), - [sym_character] = ACTIONS(1965), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1965), - }, - [STATE(891)] = { - [ts_builtin_sym_end] = ACTIONS(1993), - [sym_identifier] = ACTIONS(1995), - [anon_sym_import] = ACTIONS(1995), - [anon_sym_test] = ACTIONS(1995), - [anon_sym_hide] = ACTIONS(1995), - [anon_sym_func] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_struct] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_PIPE] = ACTIONS(1993), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_void] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_anyopaque] = ACTIONS(1995), - [anon_sym_bool] = ACTIONS(1995), - [anon_sym_int] = ACTIONS(1995), - [anon_sym_uint] = ACTIONS(1995), - [anon_sym_float] = ACTIONS(1995), - [anon_sym_range] = ACTIONS(1995), - [anon_sym_i8] = ACTIONS(1995), - [anon_sym_i16] = ACTIONS(1995), - [anon_sym_i32] = ACTIONS(1995), - [anon_sym_i64] = ACTIONS(1995), - [anon_sym_u8] = ACTIONS(1995), - [anon_sym_u16] = ACTIONS(1995), - [anon_sym_u32] = ACTIONS(1995), - [anon_sym_u64] = ACTIONS(1995), - [anon_sym_isize] = ACTIONS(1995), - [anon_sym_usize] = ACTIONS(1995), - [anon_sym_f32] = ACTIONS(1995), - [anon_sym_f64] = ACTIONS(1995), - [anon_sym_c_char] = ACTIONS(1995), - [anon_sym_c_schar] = ACTIONS(1995), - [anon_sym_c_uchar] = ACTIONS(1995), - [anon_sym_c_short] = ACTIONS(1995), - [anon_sym_c_ushort] = ACTIONS(1995), - [anon_sym_c_int] = ACTIONS(1995), - [anon_sym_c_uint] = ACTIONS(1995), - [anon_sym_c_long] = ACTIONS(1995), - [anon_sym_c_ulong] = ACTIONS(1995), - [anon_sym_c_longlong] = ACTIONS(1995), - [anon_sym_c_ulonglong] = ACTIONS(1995), - [anon_sym_c_float] = ACTIONS(1995), - [anon_sym_c_double] = ACTIONS(1995), - [anon_sym_c_longdouble] = ACTIONS(1995), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_COLON] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_defer] = ACTIONS(1995), - [anon_sym_errdefer] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_else] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_expand] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_match] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_orelse] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_or] = ACTIONS(1995), - [anon_sym_and] = ACTIONS(1995), - [anon_sym_EQ_EQ] = ACTIONS(1993), - [anon_sym_BANG_EQ] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_LT_EQ] = ACTIONS(1993), - [anon_sym_GT] = ACTIONS(1995), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_xor] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_GT_GT] = ACTIONS(1993), - [anon_sym_LT_LT_PIPE] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_SLASH] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_DOT] = ACTIONS(1995), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_unreachable] = ACTIONS(1995), - [anon_sym_undefined] = ACTIONS(1995), - [sym_sink] = ACTIONS(1995), - [sym_integer] = ACTIONS(1995), - [sym_float] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1993), - [sym_multiline_string] = ACTIONS(1993), - [sym_character] = ACTIONS(1993), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1993), - }, - [STATE(892)] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_identifier] = ACTIONS(1999), - [anon_sym_import] = ACTIONS(1999), - [anon_sym_test] = ACTIONS(1999), - [anon_sym_hide] = ACTIONS(1999), - [anon_sym_func] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_void] = ACTIONS(1999), - [anon_sym_noreturn] = ACTIONS(1999), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_anyopaque] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_int] = ACTIONS(1999), - [anon_sym_uint] = ACTIONS(1999), - [anon_sym_float] = ACTIONS(1999), - [anon_sym_range] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_c_char] = ACTIONS(1999), - [anon_sym_c_schar] = ACTIONS(1999), - [anon_sym_c_uchar] = ACTIONS(1999), - [anon_sym_c_short] = ACTIONS(1999), - [anon_sym_c_ushort] = ACTIONS(1999), - [anon_sym_c_int] = ACTIONS(1999), - [anon_sym_c_uint] = ACTIONS(1999), - [anon_sym_c_long] = ACTIONS(1999), - [anon_sym_c_ulong] = ACTIONS(1999), - [anon_sym_c_longlong] = ACTIONS(1999), - [anon_sym_c_ulonglong] = ACTIONS(1999), - [anon_sym_c_float] = ACTIONS(1999), - [anon_sym_c_double] = ACTIONS(1999), - [anon_sym_c_longdouble] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_defer] = ACTIONS(1999), - [anon_sym_errdefer] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_expand] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), - [anon_sym_orelse] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_or] = ACTIONS(1999), - [anon_sym_and] = ACTIONS(1999), - [anon_sym_EQ_EQ] = ACTIONS(1997), - [anon_sym_BANG_EQ] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_LT_EQ] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1999), - [anon_sym_GT_EQ] = ACTIONS(1997), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_xor] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1997), - [anon_sym_LT_LT_PIPE] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_unreachable] = ACTIONS(1999), - [anon_sym_undefined] = ACTIONS(1999), - [sym_sink] = ACTIONS(1999), - [sym_integer] = ACTIONS(1999), - [sym_float] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym_multiline_string] = ACTIONS(1997), - [sym_character] = ACTIONS(1997), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1997), - }, - [STATE(893)] = { - [ts_builtin_sym_end] = ACTIONS(453), - [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(453), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_void] = ACTIONS(451), - [anon_sym_noreturn] = ACTIONS(451), - [anon_sym_type] = 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(453), - [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(453), - [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(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_LT_LT_PIPE] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [anon_sym_null] = ACTIONS(451), - [anon_sym_unreachable] = ACTIONS(451), - [anon_sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_multiline_string] = ACTIONS(453), - [sym_character] = ACTIONS(453), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(453), - }, - [STATE(894)] = { - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_identifier] = ACTIONS(2003), - [anon_sym_import] = ACTIONS(2003), - [anon_sym_test] = ACTIONS(2003), - [anon_sym_hide] = ACTIONS(2003), - [anon_sym_func] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_STAR] = ACTIONS(2001), - [anon_sym_LBRACK] = ACTIONS(2001), - [anon_sym_void] = ACTIONS(2003), - [anon_sym_noreturn] = ACTIONS(2003), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_anyopaque] = ACTIONS(2003), - [anon_sym_bool] = ACTIONS(2003), - [anon_sym_int] = ACTIONS(2003), - [anon_sym_uint] = ACTIONS(2003), - [anon_sym_float] = ACTIONS(2003), - [anon_sym_range] = ACTIONS(2003), - [anon_sym_i8] = ACTIONS(2003), - [anon_sym_i16] = ACTIONS(2003), - [anon_sym_i32] = ACTIONS(2003), - [anon_sym_i64] = ACTIONS(2003), - [anon_sym_u8] = ACTIONS(2003), - [anon_sym_u16] = ACTIONS(2003), - [anon_sym_u32] = ACTIONS(2003), - [anon_sym_u64] = ACTIONS(2003), - [anon_sym_isize] = ACTIONS(2003), - [anon_sym_usize] = ACTIONS(2003), - [anon_sym_f32] = ACTIONS(2003), - [anon_sym_f64] = ACTIONS(2003), - [anon_sym_c_char] = ACTIONS(2003), - [anon_sym_c_schar] = ACTIONS(2003), - [anon_sym_c_uchar] = ACTIONS(2003), - [anon_sym_c_short] = ACTIONS(2003), - [anon_sym_c_ushort] = ACTIONS(2003), - [anon_sym_c_int] = ACTIONS(2003), - [anon_sym_c_uint] = ACTIONS(2003), - [anon_sym_c_long] = ACTIONS(2003), - [anon_sym_c_ulong] = ACTIONS(2003), - [anon_sym_c_longlong] = ACTIONS(2003), - [anon_sym_c_ulonglong] = ACTIONS(2003), - [anon_sym_c_float] = ACTIONS(2003), - [anon_sym_c_double] = ACTIONS(2003), - [anon_sym_c_longdouble] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_defer] = ACTIONS(2003), - [anon_sym_errdefer] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_expand] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_match] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2001), - [anon_sym_orelse] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_or] = ACTIONS(2003), - [anon_sym_and] = ACTIONS(2003), - [anon_sym_EQ_EQ] = ACTIONS(2001), - [anon_sym_BANG_EQ] = ACTIONS(2001), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2001), - [anon_sym_GT] = ACTIONS(2003), - [anon_sym_GT_EQ] = ACTIONS(2001), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_xor] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2001), - [anon_sym_LT_LT_PIPE] = ACTIONS(2001), - [anon_sym_PLUS] = ACTIONS(2001), - [anon_sym_SLASH] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_unreachable] = ACTIONS(2003), - [anon_sym_undefined] = ACTIONS(2003), - [sym_sink] = ACTIONS(2003), - [sym_integer] = ACTIONS(2003), - [sym_float] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2001), - [sym_multiline_string] = ACTIONS(2001), - [sym_character] = ACTIONS(2001), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2001), - }, - [STATE(895)] = { - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_identifier] = ACTIONS(2007), - [anon_sym_import] = ACTIONS(2007), - [anon_sym_test] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_func] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_void] = ACTIONS(2007), - [anon_sym_noreturn] = ACTIONS(2007), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_anyopaque] = ACTIONS(2007), - [anon_sym_bool] = ACTIONS(2007), - [anon_sym_int] = ACTIONS(2007), - [anon_sym_uint] = ACTIONS(2007), - [anon_sym_float] = ACTIONS(2007), - [anon_sym_range] = ACTIONS(2007), - [anon_sym_i8] = ACTIONS(2007), - [anon_sym_i16] = ACTIONS(2007), - [anon_sym_i32] = ACTIONS(2007), - [anon_sym_i64] = ACTIONS(2007), - [anon_sym_u8] = ACTIONS(2007), - [anon_sym_u16] = ACTIONS(2007), - [anon_sym_u32] = ACTIONS(2007), - [anon_sym_u64] = ACTIONS(2007), - [anon_sym_isize] = ACTIONS(2007), - [anon_sym_usize] = ACTIONS(2007), - [anon_sym_f32] = ACTIONS(2007), - [anon_sym_f64] = ACTIONS(2007), - [anon_sym_c_char] = ACTIONS(2007), - [anon_sym_c_schar] = ACTIONS(2007), - [anon_sym_c_uchar] = ACTIONS(2007), - [anon_sym_c_short] = ACTIONS(2007), - [anon_sym_c_ushort] = ACTIONS(2007), - [anon_sym_c_int] = ACTIONS(2007), - [anon_sym_c_uint] = ACTIONS(2007), - [anon_sym_c_long] = ACTIONS(2007), - [anon_sym_c_ulong] = ACTIONS(2007), - [anon_sym_c_longlong] = ACTIONS(2007), - [anon_sym_c_ulonglong] = ACTIONS(2007), - [anon_sym_c_float] = ACTIONS(2007), - [anon_sym_c_double] = ACTIONS(2007), - [anon_sym_c_longdouble] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_COLON] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_defer] = ACTIONS(2007), - [anon_sym_errdefer] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_expand] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [anon_sym_orelse] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_or] = ACTIONS(2007), - [anon_sym_and] = ACTIONS(2007), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2007), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_xor] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2005), - [anon_sym_LT_LT_PIPE] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_SLASH] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_unreachable] = ACTIONS(2007), - [anon_sym_undefined] = ACTIONS(2007), - [sym_sink] = ACTIONS(2007), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym_multiline_string] = ACTIONS(2005), - [sym_character] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2005), - }, - [STATE(896)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(897)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(899), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2276), - }, - [STATE(898)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(902), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2278), - }, - [STATE(899)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(900)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(904), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2280), - }, - [STATE(901)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(905), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2282), - }, - [STATE(902)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(903)] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1501), - [anon_sym_import] = ACTIONS(1501), - [anon_sym_test] = ACTIONS(1501), - [anon_sym_hide] = ACTIONS(1501), - [anon_sym_func] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1501), - [anon_sym_noreturn] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_anyopaque] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_int] = ACTIONS(1501), - [anon_sym_uint] = ACTIONS(1501), - [anon_sym_float] = ACTIONS(1501), - [anon_sym_range] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_c_char] = ACTIONS(1501), - [anon_sym_c_schar] = ACTIONS(1501), - [anon_sym_c_uchar] = ACTIONS(1501), - [anon_sym_c_short] = ACTIONS(1501), - [anon_sym_c_ushort] = ACTIONS(1501), - [anon_sym_c_int] = ACTIONS(1501), - [anon_sym_c_uint] = ACTIONS(1501), - [anon_sym_c_long] = ACTIONS(1501), - [anon_sym_c_ulong] = ACTIONS(1501), - [anon_sym_c_longlong] = ACTIONS(1501), - [anon_sym_c_ulonglong] = ACTIONS(1501), - [anon_sym_c_float] = ACTIONS(1501), - [anon_sym_c_double] = ACTIONS(1501), - [anon_sym_c_longdouble] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_defer] = ACTIONS(1501), - [anon_sym_errdefer] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_expand] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_orelse] = ACTIONS(1501), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1501), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_xor] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_LT_LT_PIPE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1501), - [anon_sym_unreachable] = ACTIONS(1501), - [anon_sym_undefined] = ACTIONS(1501), - [sym_sink] = ACTIONS(1501), - [sym_integer] = ACTIONS(1501), - [sym_float] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym_multiline_string] = ACTIONS(1499), - [sym_character] = ACTIONS(1499), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1499), - }, - [STATE(904)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(905)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(906)] = { - [ts_builtin_sym_end] = ACTIONS(1977), - [sym_identifier] = ACTIONS(1979), - [anon_sym_import] = ACTIONS(1979), - [anon_sym_test] = ACTIONS(1979), - [anon_sym_hide] = ACTIONS(1979), - [anon_sym_func] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_struct] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_void] = ACTIONS(1979), - [anon_sym_noreturn] = ACTIONS(1979), - [anon_sym_type] = ACTIONS(1979), - [anon_sym_anyopaque] = ACTIONS(1979), - [anon_sym_bool] = ACTIONS(1979), - [anon_sym_int] = ACTIONS(1979), - [anon_sym_uint] = ACTIONS(1979), - [anon_sym_float] = ACTIONS(1979), - [anon_sym_range] = ACTIONS(1979), - [anon_sym_i8] = ACTIONS(1979), - [anon_sym_i16] = ACTIONS(1979), - [anon_sym_i32] = ACTIONS(1979), - [anon_sym_i64] = ACTIONS(1979), - [anon_sym_u8] = ACTIONS(1979), - [anon_sym_u16] = ACTIONS(1979), - [anon_sym_u32] = ACTIONS(1979), - [anon_sym_u64] = ACTIONS(1979), - [anon_sym_isize] = ACTIONS(1979), - [anon_sym_usize] = ACTIONS(1979), - [anon_sym_f32] = ACTIONS(1979), - [anon_sym_f64] = ACTIONS(1979), - [anon_sym_c_char] = ACTIONS(1979), - [anon_sym_c_schar] = ACTIONS(1979), - [anon_sym_c_uchar] = ACTIONS(1979), - [anon_sym_c_short] = ACTIONS(1979), - [anon_sym_c_ushort] = ACTIONS(1979), - [anon_sym_c_int] = ACTIONS(1979), - [anon_sym_c_uint] = ACTIONS(1979), - [anon_sym_c_long] = ACTIONS(1979), - [anon_sym_c_ulong] = ACTIONS(1979), - [anon_sym_c_longlong] = ACTIONS(1979), - [anon_sym_c_ulonglong] = ACTIONS(1979), - [anon_sym_c_float] = ACTIONS(1979), - [anon_sym_c_double] = ACTIONS(1979), - [anon_sym_c_longdouble] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_yield] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_defer] = ACTIONS(1979), - [anon_sym_errdefer] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_else] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_expand] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1977), - [anon_sym_orelse] = ACTIONS(1979), - [anon_sym_catch] = ACTIONS(1979), - [anon_sym_or] = ACTIONS(1979), - [anon_sym_and] = ACTIONS(1979), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_AMP] = ACTIONS(1977), - [anon_sym_xor] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1979), - [anon_sym_GT_GT] = ACTIONS(1977), - [anon_sym_LT_LT_PIPE] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = ACTIONS(1979), - [anon_sym_null] = ACTIONS(1979), - [anon_sym_unreachable] = ACTIONS(1979), - [anon_sym_undefined] = ACTIONS(1979), - [sym_sink] = ACTIONS(1979), - [sym_integer] = ACTIONS(1979), - [sym_float] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym_multiline_string] = ACTIONS(1977), - [sym_character] = ACTIONS(1977), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1977), - }, - [STATE(907)] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_import] = ACTIONS(2011), - [anon_sym_test] = ACTIONS(2011), - [anon_sym_hide] = ACTIONS(2011), - [anon_sym_func] = ACTIONS(2011), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_void] = ACTIONS(2011), - [anon_sym_noreturn] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_anyopaque] = ACTIONS(2011), - [anon_sym_bool] = ACTIONS(2011), - [anon_sym_int] = ACTIONS(2011), - [anon_sym_uint] = ACTIONS(2011), - [anon_sym_float] = ACTIONS(2011), - [anon_sym_range] = ACTIONS(2011), - [anon_sym_i8] = ACTIONS(2011), - [anon_sym_i16] = ACTIONS(2011), - [anon_sym_i32] = ACTIONS(2011), - [anon_sym_i64] = ACTIONS(2011), - [anon_sym_u8] = ACTIONS(2011), - [anon_sym_u16] = ACTIONS(2011), - [anon_sym_u32] = ACTIONS(2011), - [anon_sym_u64] = ACTIONS(2011), - [anon_sym_isize] = ACTIONS(2011), - [anon_sym_usize] = ACTIONS(2011), - [anon_sym_f32] = ACTIONS(2011), - [anon_sym_f64] = ACTIONS(2011), - [anon_sym_c_char] = ACTIONS(2011), - [anon_sym_c_schar] = ACTIONS(2011), - [anon_sym_c_uchar] = ACTIONS(2011), - [anon_sym_c_short] = ACTIONS(2011), - [anon_sym_c_ushort] = ACTIONS(2011), - [anon_sym_c_int] = ACTIONS(2011), - [anon_sym_c_uint] = ACTIONS(2011), - [anon_sym_c_long] = ACTIONS(2011), - [anon_sym_c_ulong] = ACTIONS(2011), - [anon_sym_c_longlong] = ACTIONS(2011), - [anon_sym_c_ulonglong] = ACTIONS(2011), - [anon_sym_c_float] = ACTIONS(2011), - [anon_sym_c_double] = ACTIONS(2011), - [anon_sym_c_longdouble] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_yield] = ACTIONS(2011), - [anon_sym_COLON] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_errdefer] = ACTIONS(2011), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_else] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2011), - [anon_sym_expand] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), - [anon_sym_orelse] = ACTIONS(2011), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [anon_sym_and] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2009), - [anon_sym_xor] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2009), - [anon_sym_LT_LT_PIPE] = ACTIONS(2009), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_SLASH] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [anon_sym_null] = ACTIONS(2011), - [anon_sym_unreachable] = ACTIONS(2011), - [anon_sym_undefined] = ACTIONS(2011), - [sym_sink] = ACTIONS(2011), - [sym_integer] = ACTIONS(2011), - [sym_float] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [sym_multiline_string] = ACTIONS(2009), - [sym_character] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2009), - }, - [STATE(908)] = { - [ts_builtin_sym_end] = ACTIONS(2013), - [sym_identifier] = ACTIONS(2015), - [anon_sym_import] = ACTIONS(2015), - [anon_sym_test] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_func] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_LBRACE] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_QMARK] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_void] = ACTIONS(2015), - [anon_sym_noreturn] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2015), - [anon_sym_anyopaque] = ACTIONS(2015), - [anon_sym_bool] = ACTIONS(2015), - [anon_sym_int] = ACTIONS(2015), - [anon_sym_uint] = ACTIONS(2015), - [anon_sym_float] = ACTIONS(2015), - [anon_sym_range] = ACTIONS(2015), - [anon_sym_i8] = ACTIONS(2015), - [anon_sym_i16] = ACTIONS(2015), - [anon_sym_i32] = ACTIONS(2015), - [anon_sym_i64] = ACTIONS(2015), - [anon_sym_u8] = ACTIONS(2015), - [anon_sym_u16] = ACTIONS(2015), - [anon_sym_u32] = ACTIONS(2015), - [anon_sym_u64] = ACTIONS(2015), - [anon_sym_isize] = ACTIONS(2015), - [anon_sym_usize] = ACTIONS(2015), - [anon_sym_f32] = ACTIONS(2015), - [anon_sym_f64] = ACTIONS(2015), - [anon_sym_c_char] = ACTIONS(2015), - [anon_sym_c_schar] = ACTIONS(2015), - [anon_sym_c_uchar] = ACTIONS(2015), - [anon_sym_c_short] = ACTIONS(2015), - [anon_sym_c_ushort] = ACTIONS(2015), - [anon_sym_c_int] = ACTIONS(2015), - [anon_sym_c_uint] = ACTIONS(2015), - [anon_sym_c_long] = ACTIONS(2015), - [anon_sym_c_ulong] = ACTIONS(2015), - [anon_sym_c_longlong] = ACTIONS(2015), - [anon_sym_c_ulonglong] = ACTIONS(2015), - [anon_sym_c_float] = ACTIONS(2015), - [anon_sym_c_double] = ACTIONS(2015), - [anon_sym_c_longdouble] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_yield] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_defer] = ACTIONS(2015), - [anon_sym_errdefer] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_expand] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), - [anon_sym_orelse] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_or] = ACTIONS(2015), - [anon_sym_and] = ACTIONS(2015), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_AMP] = ACTIONS(2013), - [anon_sym_xor] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2015), - [anon_sym_GT_GT] = ACTIONS(2013), - [anon_sym_LT_LT_PIPE] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_SLASH] = ACTIONS(2013), - [anon_sym_TILDE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [anon_sym_unreachable] = ACTIONS(2015), - [anon_sym_undefined] = ACTIONS(2015), - [sym_sink] = ACTIONS(2015), - [sym_integer] = ACTIONS(2015), - [sym_float] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym_multiline_string] = ACTIONS(2013), - [sym_character] = ACTIONS(2013), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2013), - }, - [STATE(909)] = { - [ts_builtin_sym_end] = ACTIONS(2017), - [sym_identifier] = ACTIONS(2019), - [anon_sym_import] = ACTIONS(2019), - [anon_sym_test] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_func] = ACTIONS(2019), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_QMARK] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_void] = ACTIONS(2019), - [anon_sym_noreturn] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_anyopaque] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_int] = ACTIONS(2019), - [anon_sym_uint] = ACTIONS(2019), - [anon_sym_float] = ACTIONS(2019), - [anon_sym_range] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_c_char] = ACTIONS(2019), - [anon_sym_c_schar] = ACTIONS(2019), - [anon_sym_c_uchar] = ACTIONS(2019), - [anon_sym_c_short] = ACTIONS(2019), - [anon_sym_c_ushort] = ACTIONS(2019), - [anon_sym_c_int] = ACTIONS(2019), - [anon_sym_c_uint] = ACTIONS(2019), - [anon_sym_c_long] = ACTIONS(2019), - [anon_sym_c_ulong] = ACTIONS(2019), - [anon_sym_c_longlong] = ACTIONS(2019), - [anon_sym_c_ulonglong] = ACTIONS(2019), - [anon_sym_c_float] = ACTIONS(2019), - [anon_sym_c_double] = ACTIONS(2019), - [anon_sym_c_longdouble] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_yield] = ACTIONS(2019), - [anon_sym_COLON] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_defer] = ACTIONS(2019), - [anon_sym_errdefer] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_expand] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2017), - [anon_sym_orelse] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_or] = ACTIONS(2019), - [anon_sym_and] = ACTIONS(2019), - [anon_sym_EQ_EQ] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2019), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_xor] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2019), - [anon_sym_GT_GT] = ACTIONS(2017), - [anon_sym_LT_LT_PIPE] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_SLASH] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_DOT] = ACTIONS(2019), - [anon_sym_CARET] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_null] = ACTIONS(2019), - [anon_sym_unreachable] = ACTIONS(2019), - [anon_sym_undefined] = ACTIONS(2019), - [sym_sink] = ACTIONS(2019), - [sym_integer] = ACTIONS(2019), - [sym_float] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym_multiline_string] = ACTIONS(2017), - [sym_character] = ACTIONS(2017), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2017), - }, - [STATE(910)] = { - [ts_builtin_sym_end] = ACTIONS(2021), - [sym_identifier] = ACTIONS(2023), - [anon_sym_import] = ACTIONS(2023), - [anon_sym_test] = ACTIONS(2023), - [anon_sym_hide] = ACTIONS(2023), - [anon_sym_func] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_void] = ACTIONS(2023), - [anon_sym_noreturn] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2023), - [anon_sym_anyopaque] = ACTIONS(2023), - [anon_sym_bool] = ACTIONS(2023), - [anon_sym_int] = ACTIONS(2023), - [anon_sym_uint] = ACTIONS(2023), - [anon_sym_float] = ACTIONS(2023), - [anon_sym_range] = ACTIONS(2023), - [anon_sym_i8] = ACTIONS(2023), - [anon_sym_i16] = ACTIONS(2023), - [anon_sym_i32] = ACTIONS(2023), - [anon_sym_i64] = ACTIONS(2023), - [anon_sym_u8] = ACTIONS(2023), - [anon_sym_u16] = ACTIONS(2023), - [anon_sym_u32] = ACTIONS(2023), - [anon_sym_u64] = ACTIONS(2023), - [anon_sym_isize] = ACTIONS(2023), - [anon_sym_usize] = ACTIONS(2023), - [anon_sym_f32] = ACTIONS(2023), - [anon_sym_f64] = ACTIONS(2023), - [anon_sym_c_char] = ACTIONS(2023), - [anon_sym_c_schar] = ACTIONS(2023), - [anon_sym_c_uchar] = ACTIONS(2023), - [anon_sym_c_short] = ACTIONS(2023), - [anon_sym_c_ushort] = ACTIONS(2023), - [anon_sym_c_int] = ACTIONS(2023), - [anon_sym_c_uint] = ACTIONS(2023), - [anon_sym_c_long] = ACTIONS(2023), - [anon_sym_c_ulong] = ACTIONS(2023), - [anon_sym_c_longlong] = ACTIONS(2023), - [anon_sym_c_ulonglong] = ACTIONS(2023), - [anon_sym_c_float] = ACTIONS(2023), - [anon_sym_c_double] = ACTIONS(2023), - [anon_sym_c_longdouble] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_yield] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_defer] = ACTIONS(2023), - [anon_sym_errdefer] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_expand] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2021), - [anon_sym_orelse] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_or] = ACTIONS(2023), - [anon_sym_and] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2021), - [anon_sym_BANG_EQ] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_LT_EQ] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_xor] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2021), - [anon_sym_LT_LT_PIPE] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2021), - [anon_sym_SLASH] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [anon_sym_null] = ACTIONS(2023), - [anon_sym_unreachable] = ACTIONS(2023), - [anon_sym_undefined] = ACTIONS(2023), - [sym_sink] = ACTIONS(2023), - [sym_integer] = ACTIONS(2023), - [sym_float] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym_multiline_string] = ACTIONS(2021), - [sym_character] = ACTIONS(2021), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2021), - }, - [STATE(911)] = { - [ts_builtin_sym_end] = ACTIONS(2025), - [sym_identifier] = ACTIONS(2027), - [anon_sym_import] = ACTIONS(2027), - [anon_sym_test] = ACTIONS(2027), - [anon_sym_hide] = ACTIONS(2027), - [anon_sym_func] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2027), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_void] = ACTIONS(2027), - [anon_sym_noreturn] = ACTIONS(2027), - [anon_sym_type] = ACTIONS(2027), - [anon_sym_anyopaque] = ACTIONS(2027), - [anon_sym_bool] = ACTIONS(2027), - [anon_sym_int] = ACTIONS(2027), - [anon_sym_uint] = ACTIONS(2027), - [anon_sym_float] = ACTIONS(2027), - [anon_sym_range] = ACTIONS(2027), - [anon_sym_i8] = ACTIONS(2027), - [anon_sym_i16] = ACTIONS(2027), - [anon_sym_i32] = ACTIONS(2027), - [anon_sym_i64] = ACTIONS(2027), - [anon_sym_u8] = ACTIONS(2027), - [anon_sym_u16] = ACTIONS(2027), - [anon_sym_u32] = ACTIONS(2027), - [anon_sym_u64] = ACTIONS(2027), - [anon_sym_isize] = ACTIONS(2027), - [anon_sym_usize] = ACTIONS(2027), - [anon_sym_f32] = ACTIONS(2027), - [anon_sym_f64] = ACTIONS(2027), - [anon_sym_c_char] = ACTIONS(2027), - [anon_sym_c_schar] = ACTIONS(2027), - [anon_sym_c_uchar] = ACTIONS(2027), - [anon_sym_c_short] = ACTIONS(2027), - [anon_sym_c_ushort] = ACTIONS(2027), - [anon_sym_c_int] = ACTIONS(2027), - [anon_sym_c_uint] = ACTIONS(2027), - [anon_sym_c_long] = ACTIONS(2027), - [anon_sym_c_ulong] = ACTIONS(2027), - [anon_sym_c_longlong] = ACTIONS(2027), - [anon_sym_c_ulonglong] = ACTIONS(2027), - [anon_sym_c_float] = ACTIONS(2027), - [anon_sym_c_double] = ACTIONS(2027), - [anon_sym_c_longdouble] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_yield] = ACTIONS(2027), - [anon_sym_COLON] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_defer] = ACTIONS(2027), - [anon_sym_errdefer] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_expand] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [anon_sym_orelse] = ACTIONS(2027), - [anon_sym_catch] = ACTIONS(2027), - [anon_sym_or] = ACTIONS(2027), - [anon_sym_and] = ACTIONS(2027), - [anon_sym_EQ_EQ] = ACTIONS(2025), - [anon_sym_BANG_EQ] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_LT_EQ] = ACTIONS(2025), - [anon_sym_GT] = ACTIONS(2027), - [anon_sym_GT_EQ] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2025), - [anon_sym_xor] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(2027), - [anon_sym_GT_GT] = ACTIONS(2025), - [anon_sym_LT_LT_PIPE] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2025), - [anon_sym_SLASH] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2027), - [anon_sym_DOT] = ACTIONS(2027), - [anon_sym_CARET] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2027), - [anon_sym_false] = ACTIONS(2027), - [anon_sym_null] = ACTIONS(2027), - [anon_sym_unreachable] = ACTIONS(2027), - [anon_sym_undefined] = ACTIONS(2027), - [sym_sink] = ACTIONS(2027), - [sym_integer] = ACTIONS(2027), - [sym_float] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym_multiline_string] = ACTIONS(2025), - [sym_character] = ACTIONS(2025), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2025), - }, - [STATE(912)] = { - [ts_builtin_sym_end] = ACTIONS(1541), - [sym_identifier] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1543), - [anon_sym_test] = ACTIONS(1543), - [anon_sym_hide] = ACTIONS(1543), - [anon_sym_func] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_noreturn] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_anyopaque] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_range] = ACTIONS(1543), - [anon_sym_i8] = ACTIONS(1543), - [anon_sym_i16] = ACTIONS(1543), - [anon_sym_i32] = ACTIONS(1543), - [anon_sym_i64] = ACTIONS(1543), - [anon_sym_u8] = ACTIONS(1543), - [anon_sym_u16] = ACTIONS(1543), - [anon_sym_u32] = ACTIONS(1543), - [anon_sym_u64] = ACTIONS(1543), - [anon_sym_isize] = ACTIONS(1543), - [anon_sym_usize] = ACTIONS(1543), - [anon_sym_f32] = ACTIONS(1543), - [anon_sym_f64] = ACTIONS(1543), - [anon_sym_c_char] = ACTIONS(1543), - [anon_sym_c_schar] = ACTIONS(1543), - [anon_sym_c_uchar] = ACTIONS(1543), - [anon_sym_c_short] = ACTIONS(1543), - [anon_sym_c_ushort] = ACTIONS(1543), - [anon_sym_c_int] = ACTIONS(1543), - [anon_sym_c_uint] = ACTIONS(1543), - [anon_sym_c_long] = ACTIONS(1543), - [anon_sym_c_ulong] = ACTIONS(1543), - [anon_sym_c_longlong] = ACTIONS(1543), - [anon_sym_c_ulonglong] = ACTIONS(1543), - [anon_sym_c_float] = ACTIONS(1543), - [anon_sym_c_double] = ACTIONS(1543), - [anon_sym_c_longdouble] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1543), - [anon_sym_COLON] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_defer] = ACTIONS(1543), - [anon_sym_errdefer] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_expand] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1541), - [anon_sym_orelse] = ACTIONS(1543), - [anon_sym_catch] = ACTIONS(1543), - [anon_sym_or] = ACTIONS(1543), - [anon_sym_and] = ACTIONS(1543), - [anon_sym_EQ_EQ] = ACTIONS(1541), - [anon_sym_BANG_EQ] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_LT_EQ] = ACTIONS(1541), - [anon_sym_GT] = ACTIONS(1543), - [anon_sym_GT_EQ] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_xor] = ACTIONS(1543), - [anon_sym_LT_LT] = ACTIONS(1543), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_LT_LT_PIPE] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_DOT] = ACTIONS(1543), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [anon_sym_null] = ACTIONS(1543), - [anon_sym_unreachable] = ACTIONS(1543), - [anon_sym_undefined] = ACTIONS(1543), - [sym_sink] = ACTIONS(1543), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1541), - [sym_multiline_string] = ACTIONS(1541), - [sym_character] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1541), - }, - [STATE(913)] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_identifier] = ACTIONS(1547), - [anon_sym_import] = ACTIONS(1547), - [anon_sym_test] = ACTIONS(1547), - [anon_sym_hide] = ACTIONS(1547), - [anon_sym_func] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_QMARK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_noreturn] = ACTIONS(1547), - [anon_sym_type] = ACTIONS(1547), - [anon_sym_anyopaque] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_range] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_c_char] = ACTIONS(1547), - [anon_sym_c_schar] = ACTIONS(1547), - [anon_sym_c_uchar] = ACTIONS(1547), - [anon_sym_c_short] = ACTIONS(1547), - [anon_sym_c_ushort] = ACTIONS(1547), - [anon_sym_c_int] = ACTIONS(1547), - [anon_sym_c_uint] = ACTIONS(1547), - [anon_sym_c_long] = ACTIONS(1547), - [anon_sym_c_ulong] = ACTIONS(1547), - [anon_sym_c_longlong] = ACTIONS(1547), - [anon_sym_c_ulonglong] = ACTIONS(1547), - [anon_sym_c_float] = ACTIONS(1547), - [anon_sym_c_double] = ACTIONS(1547), - [anon_sym_c_longdouble] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_yield] = ACTIONS(1547), - [anon_sym_COLON] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_defer] = ACTIONS(1547), - [anon_sym_errdefer] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_expand] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_match] = ACTIONS(1547), - [anon_sym_DOT_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [anon_sym_orelse] = ACTIONS(1547), - [anon_sym_catch] = ACTIONS(1547), - [anon_sym_or] = ACTIONS(1547), - [anon_sym_and] = ACTIONS(1547), - [anon_sym_EQ_EQ] = ACTIONS(1545), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1545), - [anon_sym_GT] = ACTIONS(1547), - [anon_sym_GT_EQ] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_xor] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1547), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_LT_LT_PIPE] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1547), - [anon_sym_DOT] = ACTIONS(1547), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [anon_sym_null] = ACTIONS(1547), - [anon_sym_unreachable] = ACTIONS(1547), - [anon_sym_undefined] = ACTIONS(1547), - [sym_sink] = ACTIONS(1547), - [sym_integer] = ACTIONS(1547), - [sym_float] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym_multiline_string] = ACTIONS(1545), - [sym_character] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1545), - }, - [STATE(914)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3901), - [sym_labeled_block] = STATE(3901), - [sym_if_statement] = STATE(3901), - [sym_while_statement] = STATE(3901), - [sym_for_statement] = STATE(3901), - [sym_match_statement] = STATE(3901), - [sym__value] = STATE(3901), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(915), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2286), - }, - [STATE(915)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3939), - [sym_labeled_block] = STATE(3939), - [sym_if_statement] = STATE(3939), - [sym_while_statement] = STATE(3939), - [sym_for_statement] = STATE(3939), - [sym_match_statement] = STATE(3939), - [sym__value] = STATE(3939), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(916)] = { - [ts_builtin_sym_end] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2047), - [anon_sym_import] = ACTIONS(2047), - [anon_sym_test] = ACTIONS(2047), - [anon_sym_hide] = ACTIONS(2047), - [anon_sym_func] = ACTIONS(2047), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_QMARK] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_void] = ACTIONS(2047), - [anon_sym_noreturn] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2047), - [anon_sym_anyopaque] = ACTIONS(2047), - [anon_sym_bool] = ACTIONS(2047), - [anon_sym_int] = ACTIONS(2047), - [anon_sym_uint] = ACTIONS(2047), - [anon_sym_float] = ACTIONS(2047), - [anon_sym_range] = ACTIONS(2047), - [anon_sym_i8] = ACTIONS(2047), - [anon_sym_i16] = ACTIONS(2047), - [anon_sym_i32] = ACTIONS(2047), - [anon_sym_i64] = ACTIONS(2047), - [anon_sym_u8] = ACTIONS(2047), - [anon_sym_u16] = ACTIONS(2047), - [anon_sym_u32] = ACTIONS(2047), - [anon_sym_u64] = ACTIONS(2047), - [anon_sym_isize] = ACTIONS(2047), - [anon_sym_usize] = ACTIONS(2047), - [anon_sym_f32] = ACTIONS(2047), - [anon_sym_f64] = ACTIONS(2047), - [anon_sym_c_char] = ACTIONS(2047), - [anon_sym_c_schar] = ACTIONS(2047), - [anon_sym_c_uchar] = ACTIONS(2047), - [anon_sym_c_short] = ACTIONS(2047), - [anon_sym_c_ushort] = ACTIONS(2047), - [anon_sym_c_int] = ACTIONS(2047), - [anon_sym_c_uint] = ACTIONS(2047), - [anon_sym_c_long] = ACTIONS(2047), - [anon_sym_c_ulong] = ACTIONS(2047), - [anon_sym_c_longlong] = ACTIONS(2047), - [anon_sym_c_ulonglong] = ACTIONS(2047), - [anon_sym_c_float] = ACTIONS(2047), - [anon_sym_c_double] = ACTIONS(2047), - [anon_sym_c_longdouble] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_yield] = ACTIONS(2047), - [anon_sym_COLON] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_defer] = ACTIONS(2047), - [anon_sym_errdefer] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_expand] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_orelse] = ACTIONS(2047), - [anon_sym_catch] = ACTIONS(2047), - [anon_sym_or] = ACTIONS(2047), - [anon_sym_and] = ACTIONS(2047), - [anon_sym_EQ_EQ] = ACTIONS(2045), - [anon_sym_BANG_EQ] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_LT_EQ] = ACTIONS(2045), - [anon_sym_GT] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_xor] = ACTIONS(2047), - [anon_sym_LT_LT] = ACTIONS(2047), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_LT_LT_PIPE] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_SLASH] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(2047), - [anon_sym_CARET] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2047), - [anon_sym_unreachable] = ACTIONS(2047), - [anon_sym_undefined] = ACTIONS(2047), - [sym_sink] = ACTIONS(2047), - [sym_integer] = ACTIONS(2047), - [sym_float] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym_multiline_string] = ACTIONS(2045), - [sym_character] = ACTIONS(2045), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2045), - }, - [STATE(917)] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_test] = ACTIONS(1845), - [anon_sym_hide] = ACTIONS(1845), - [anon_sym_func] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_noreturn] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_anyopaque] = ACTIONS(1845), - [anon_sym_bool] = ACTIONS(1845), - [anon_sym_int] = ACTIONS(1845), - [anon_sym_uint] = ACTIONS(1845), - [anon_sym_float] = ACTIONS(1845), - [anon_sym_range] = ACTIONS(1845), - [anon_sym_i8] = ACTIONS(1845), - [anon_sym_i16] = ACTIONS(1845), - [anon_sym_i32] = ACTIONS(1845), - [anon_sym_i64] = ACTIONS(1845), - [anon_sym_u8] = ACTIONS(1845), - [anon_sym_u16] = ACTIONS(1845), - [anon_sym_u32] = ACTIONS(1845), - [anon_sym_u64] = ACTIONS(1845), - [anon_sym_isize] = ACTIONS(1845), - [anon_sym_usize] = ACTIONS(1845), - [anon_sym_f32] = ACTIONS(1845), - [anon_sym_f64] = ACTIONS(1845), - [anon_sym_c_char] = ACTIONS(1845), - [anon_sym_c_schar] = ACTIONS(1845), - [anon_sym_c_uchar] = ACTIONS(1845), - [anon_sym_c_short] = ACTIONS(1845), - [anon_sym_c_ushort] = ACTIONS(1845), - [anon_sym_c_int] = ACTIONS(1845), - [anon_sym_c_uint] = ACTIONS(1845), - [anon_sym_c_long] = ACTIONS(1845), - [anon_sym_c_ulong] = ACTIONS(1845), - [anon_sym_c_longlong] = ACTIONS(1845), - [anon_sym_c_ulonglong] = ACTIONS(1845), - [anon_sym_c_float] = ACTIONS(1845), - [anon_sym_c_double] = ACTIONS(1845), - [anon_sym_c_longdouble] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_defer] = ACTIONS(1845), - [anon_sym_errdefer] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_expand] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), - [anon_sym_orelse] = ACTIONS(1845), - [anon_sym_catch] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [anon_sym_and] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_xor] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1843), - [anon_sym_LT_LT_PIPE] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), - [anon_sym_unreachable] = ACTIONS(1845), - [anon_sym_undefined] = ACTIONS(1845), - [sym_sink] = ACTIONS(1845), - [sym_integer] = ACTIONS(1845), - [sym_float] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym_multiline_string] = ACTIONS(1843), - [sym_character] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1843), - }, - [STATE(918)] = { - [ts_builtin_sym_end] = ACTIONS(1775), - [sym_identifier] = ACTIONS(1777), - [anon_sym_import] = ACTIONS(1777), - [anon_sym_test] = ACTIONS(1777), - [anon_sym_hide] = ACTIONS(1777), - [anon_sym_func] = ACTIONS(1777), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_DOLLAR] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_QMARK] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_void] = ACTIONS(1777), - [anon_sym_noreturn] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_anyopaque] = ACTIONS(1777), - [anon_sym_bool] = ACTIONS(1777), - [anon_sym_int] = ACTIONS(1777), - [anon_sym_uint] = ACTIONS(1777), - [anon_sym_float] = ACTIONS(1777), - [anon_sym_range] = ACTIONS(1777), - [anon_sym_i8] = ACTIONS(1777), - [anon_sym_i16] = ACTIONS(1777), - [anon_sym_i32] = ACTIONS(1777), - [anon_sym_i64] = ACTIONS(1777), - [anon_sym_u8] = ACTIONS(1777), - [anon_sym_u16] = ACTIONS(1777), - [anon_sym_u32] = ACTIONS(1777), - [anon_sym_u64] = ACTIONS(1777), - [anon_sym_isize] = ACTIONS(1777), - [anon_sym_usize] = ACTIONS(1777), - [anon_sym_f32] = ACTIONS(1777), - [anon_sym_f64] = ACTIONS(1777), - [anon_sym_c_char] = ACTIONS(1777), - [anon_sym_c_schar] = ACTIONS(1777), - [anon_sym_c_uchar] = ACTIONS(1777), - [anon_sym_c_short] = ACTIONS(1777), - [anon_sym_c_ushort] = ACTIONS(1777), - [anon_sym_c_int] = ACTIONS(1777), - [anon_sym_c_uint] = ACTIONS(1777), - [anon_sym_c_long] = ACTIONS(1777), - [anon_sym_c_ulong] = ACTIONS(1777), - [anon_sym_c_longlong] = ACTIONS(1777), - [anon_sym_c_ulonglong] = ACTIONS(1777), - [anon_sym_c_float] = ACTIONS(1777), - [anon_sym_c_double] = ACTIONS(1777), - [anon_sym_c_longdouble] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_yield] = ACTIONS(1777), - [anon_sym_COLON] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_defer] = ACTIONS(1777), - [anon_sym_errdefer] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_expand] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1775), - [anon_sym_orelse] = ACTIONS(1777), - [anon_sym_catch] = ACTIONS(1777), - [anon_sym_or] = ACTIONS(1777), - [anon_sym_and] = ACTIONS(1777), - [anon_sym_EQ_EQ] = ACTIONS(1775), - [anon_sym_BANG_EQ] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_LT_EQ] = ACTIONS(1775), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_GT_EQ] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_xor] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(1777), - [anon_sym_GT_GT] = ACTIONS(1775), - [anon_sym_LT_LT_PIPE] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1777), - [anon_sym_false] = ACTIONS(1777), - [anon_sym_null] = ACTIONS(1777), - [anon_sym_unreachable] = ACTIONS(1777), - [anon_sym_undefined] = ACTIONS(1777), - [sym_sink] = ACTIONS(1777), - [sym_integer] = ACTIONS(1777), - [sym_float] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(1775), - [sym_multiline_string] = ACTIONS(1775), - [sym_character] = ACTIONS(1775), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1775), - }, - [STATE(919)] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_test] = ACTIONS(1809), - [anon_sym_hide] = ACTIONS(1809), - [anon_sym_func] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_noreturn] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_anyopaque] = ACTIONS(1809), - [anon_sym_bool] = ACTIONS(1809), - [anon_sym_int] = ACTIONS(1809), - [anon_sym_uint] = ACTIONS(1809), - [anon_sym_float] = ACTIONS(1809), - [anon_sym_range] = ACTIONS(1809), - [anon_sym_i8] = ACTIONS(1809), - [anon_sym_i16] = ACTIONS(1809), - [anon_sym_i32] = ACTIONS(1809), - [anon_sym_i64] = ACTIONS(1809), - [anon_sym_u8] = ACTIONS(1809), - [anon_sym_u16] = ACTIONS(1809), - [anon_sym_u32] = ACTIONS(1809), - [anon_sym_u64] = ACTIONS(1809), - [anon_sym_isize] = ACTIONS(1809), - [anon_sym_usize] = ACTIONS(1809), - [anon_sym_f32] = ACTIONS(1809), - [anon_sym_f64] = ACTIONS(1809), - [anon_sym_c_char] = ACTIONS(1809), - [anon_sym_c_schar] = ACTIONS(1809), - [anon_sym_c_uchar] = ACTIONS(1809), - [anon_sym_c_short] = ACTIONS(1809), - [anon_sym_c_ushort] = ACTIONS(1809), - [anon_sym_c_int] = ACTIONS(1809), - [anon_sym_c_uint] = ACTIONS(1809), - [anon_sym_c_long] = ACTIONS(1809), - [anon_sym_c_ulong] = ACTIONS(1809), - [anon_sym_c_longlong] = ACTIONS(1809), - [anon_sym_c_ulonglong] = ACTIONS(1809), - [anon_sym_c_float] = ACTIONS(1809), - [anon_sym_c_double] = ACTIONS(1809), - [anon_sym_c_longdouble] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_COLON] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_errdefer] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_expand] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_DOT_DOT] = ACTIONS(1809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1807), - [anon_sym_orelse] = ACTIONS(1809), - [anon_sym_catch] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [anon_sym_and] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_xor] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_LT_LT_PIPE] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_true] = ACTIONS(1809), - [anon_sym_false] = ACTIONS(1809), - [anon_sym_null] = ACTIONS(1809), - [anon_sym_unreachable] = ACTIONS(1809), - [anon_sym_undefined] = ACTIONS(1809), - [sym_sink] = ACTIONS(1809), - [sym_integer] = ACTIONS(1809), - [sym_float] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [sym_multiline_string] = ACTIONS(1807), - [sym_character] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1807), - }, - [STATE(920)] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_test] = ACTIONS(1825), - [anon_sym_hide] = ACTIONS(1825), - [anon_sym_func] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_QMARK] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_noreturn] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_anyopaque] = ACTIONS(1825), - [anon_sym_bool] = ACTIONS(1825), - [anon_sym_int] = ACTIONS(1825), - [anon_sym_uint] = ACTIONS(1825), - [anon_sym_float] = ACTIONS(1825), - [anon_sym_range] = ACTIONS(1825), - [anon_sym_i8] = ACTIONS(1825), - [anon_sym_i16] = ACTIONS(1825), - [anon_sym_i32] = ACTIONS(1825), - [anon_sym_i64] = ACTIONS(1825), - [anon_sym_u8] = ACTIONS(1825), - [anon_sym_u16] = ACTIONS(1825), - [anon_sym_u32] = ACTIONS(1825), - [anon_sym_u64] = ACTIONS(1825), - [anon_sym_isize] = ACTIONS(1825), - [anon_sym_usize] = ACTIONS(1825), - [anon_sym_f32] = ACTIONS(1825), - [anon_sym_f64] = ACTIONS(1825), - [anon_sym_c_char] = ACTIONS(1825), - [anon_sym_c_schar] = ACTIONS(1825), - [anon_sym_c_uchar] = ACTIONS(1825), - [anon_sym_c_short] = ACTIONS(1825), - [anon_sym_c_ushort] = ACTIONS(1825), - [anon_sym_c_int] = ACTIONS(1825), - [anon_sym_c_uint] = ACTIONS(1825), - [anon_sym_c_long] = ACTIONS(1825), - [anon_sym_c_ulong] = ACTIONS(1825), - [anon_sym_c_longlong] = ACTIONS(1825), - [anon_sym_c_ulonglong] = ACTIONS(1825), - [anon_sym_c_float] = ACTIONS(1825), - [anon_sym_c_double] = ACTIONS(1825), - [anon_sym_c_longdouble] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_COLON] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_defer] = ACTIONS(1825), - [anon_sym_errdefer] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_expand] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_match] = ACTIONS(1825), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1823), - [anon_sym_orelse] = ACTIONS(1825), - [anon_sym_catch] = ACTIONS(1825), - [anon_sym_or] = ACTIONS(1825), - [anon_sym_and] = ACTIONS(1825), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_xor] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1825), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_PIPE] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_DOT] = ACTIONS(1825), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1825), - [anon_sym_false] = ACTIONS(1825), - [anon_sym_null] = ACTIONS(1825), - [anon_sym_unreachable] = ACTIONS(1825), - [anon_sym_undefined] = ACTIONS(1825), - [sym_sink] = ACTIONS(1825), - [sym_integer] = ACTIONS(1825), - [sym_float] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [sym_multiline_string] = ACTIONS(1823), - [sym_character] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1823), - }, - [STATE(921)] = { - [ts_builtin_sym_end] = ACTIONS(1881), - [sym_identifier] = ACTIONS(1883), - [anon_sym_import] = ACTIONS(1883), - [anon_sym_test] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_func] = ACTIONS(1883), - [anon_sym_BANG] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_void] = ACTIONS(1883), - [anon_sym_noreturn] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_anyopaque] = ACTIONS(1883), - [anon_sym_bool] = ACTIONS(1883), - [anon_sym_int] = ACTIONS(1883), - [anon_sym_uint] = ACTIONS(1883), - [anon_sym_float] = ACTIONS(1883), - [anon_sym_range] = ACTIONS(1883), - [anon_sym_i8] = ACTIONS(1883), - [anon_sym_i16] = ACTIONS(1883), - [anon_sym_i32] = ACTIONS(1883), - [anon_sym_i64] = ACTIONS(1883), - [anon_sym_u8] = ACTIONS(1883), - [anon_sym_u16] = ACTIONS(1883), - [anon_sym_u32] = ACTIONS(1883), - [anon_sym_u64] = ACTIONS(1883), - [anon_sym_isize] = ACTIONS(1883), - [anon_sym_usize] = ACTIONS(1883), - [anon_sym_f32] = ACTIONS(1883), - [anon_sym_f64] = ACTIONS(1883), - [anon_sym_c_char] = ACTIONS(1883), - [anon_sym_c_schar] = ACTIONS(1883), - [anon_sym_c_uchar] = ACTIONS(1883), - [anon_sym_c_short] = ACTIONS(1883), - [anon_sym_c_ushort] = ACTIONS(1883), - [anon_sym_c_int] = ACTIONS(1883), - [anon_sym_c_uint] = ACTIONS(1883), - [anon_sym_c_long] = ACTIONS(1883), - [anon_sym_c_ulong] = ACTIONS(1883), - [anon_sym_c_longlong] = ACTIONS(1883), - [anon_sym_c_ulonglong] = ACTIONS(1883), - [anon_sym_c_float] = ACTIONS(1883), - [anon_sym_c_double] = ACTIONS(1883), - [anon_sym_c_longdouble] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_yield] = ACTIONS(1883), - [anon_sym_COLON] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_defer] = ACTIONS(1883), - [anon_sym_errdefer] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_expand] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_orelse] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_or] = ACTIONS(1883), - [anon_sym_and] = ACTIONS(1883), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1883), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1883), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_xor] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1883), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_PIPE] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1883), - [anon_sym_false] = ACTIONS(1883), - [anon_sym_null] = ACTIONS(1883), - [anon_sym_unreachable] = ACTIONS(1883), - [anon_sym_undefined] = ACTIONS(1883), - [sym_sink] = ACTIONS(1883), - [sym_integer] = ACTIONS(1883), - [sym_float] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym_multiline_string] = ACTIONS(1881), - [sym_character] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1881), - }, - [STATE(922)] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_import] = ACTIONS(1523), - [anon_sym_test] = ACTIONS(1523), - [anon_sym_hide] = ACTIONS(1523), - [anon_sym_func] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_noreturn] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_anyopaque] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_range] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_c_char] = ACTIONS(1523), - [anon_sym_c_schar] = ACTIONS(1523), - [anon_sym_c_uchar] = ACTIONS(1523), - [anon_sym_c_short] = ACTIONS(1523), - [anon_sym_c_ushort] = ACTIONS(1523), - [anon_sym_c_int] = ACTIONS(1523), - [anon_sym_c_uint] = ACTIONS(1523), - [anon_sym_c_long] = ACTIONS(1523), - [anon_sym_c_ulong] = ACTIONS(1523), - [anon_sym_c_longlong] = ACTIONS(1523), - [anon_sym_c_ulonglong] = ACTIONS(1523), - [anon_sym_c_float] = ACTIONS(1523), - [anon_sym_c_double] = ACTIONS(1523), - [anon_sym_c_longdouble] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_COLON] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_defer] = ACTIONS(1523), - [anon_sym_errdefer] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_else] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_expand] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_orelse] = ACTIONS(1523), - [anon_sym_catch] = ACTIONS(1523), - [anon_sym_or] = ACTIONS(1523), - [anon_sym_and] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_xor] = ACTIONS(1523), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1521), - [anon_sym_LT_LT_PIPE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_SLASH] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1523), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_unreachable] = ACTIONS(1523), - [anon_sym_undefined] = ACTIONS(1523), - [sym_sink] = ACTIONS(1523), - [sym_integer] = ACTIONS(1523), - [sym_float] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym_multiline_string] = ACTIONS(1521), - [sym_character] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1521), - }, - [STATE(923)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3936), - [sym_labeled_block] = STATE(3936), - [sym_if_statement] = STATE(3936), - [sym_while_statement] = STATE(3936), - [sym_for_statement] = STATE(3936), - [sym_match_statement] = STATE(3936), - [sym__value] = STATE(3936), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(834), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2288), - }, - [STATE(924)] = { - [ts_builtin_sym_end] = ACTIONS(1981), - [sym_identifier] = ACTIONS(1983), - [anon_sym_import] = ACTIONS(1983), - [anon_sym_test] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_func] = ACTIONS(1983), - [anon_sym_BANG] = ACTIONS(1983), - [anon_sym_struct] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_void] = ACTIONS(1983), - [anon_sym_noreturn] = ACTIONS(1983), - [anon_sym_type] = ACTIONS(1983), - [anon_sym_anyopaque] = ACTIONS(1983), - [anon_sym_bool] = ACTIONS(1983), - [anon_sym_int] = ACTIONS(1983), - [anon_sym_uint] = ACTIONS(1983), - [anon_sym_float] = ACTIONS(1983), - [anon_sym_range] = ACTIONS(1983), - [anon_sym_i8] = ACTIONS(1983), - [anon_sym_i16] = ACTIONS(1983), - [anon_sym_i32] = ACTIONS(1983), - [anon_sym_i64] = ACTIONS(1983), - [anon_sym_u8] = ACTIONS(1983), - [anon_sym_u16] = ACTIONS(1983), - [anon_sym_u32] = ACTIONS(1983), - [anon_sym_u64] = ACTIONS(1983), - [anon_sym_isize] = ACTIONS(1983), - [anon_sym_usize] = ACTIONS(1983), - [anon_sym_f32] = ACTIONS(1983), - [anon_sym_f64] = ACTIONS(1983), - [anon_sym_c_char] = ACTIONS(1983), - [anon_sym_c_schar] = ACTIONS(1983), - [anon_sym_c_uchar] = ACTIONS(1983), - [anon_sym_c_short] = ACTIONS(1983), - [anon_sym_c_ushort] = ACTIONS(1983), - [anon_sym_c_int] = ACTIONS(1983), - [anon_sym_c_uint] = ACTIONS(1983), - [anon_sym_c_long] = ACTIONS(1983), - [anon_sym_c_ulong] = ACTIONS(1983), - [anon_sym_c_longlong] = ACTIONS(1983), - [anon_sym_c_ulonglong] = ACTIONS(1983), - [anon_sym_c_float] = ACTIONS(1983), - [anon_sym_c_double] = ACTIONS(1983), - [anon_sym_c_longdouble] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_defer] = ACTIONS(1983), - [anon_sym_errdefer] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_else] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_expand] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1981), - [anon_sym_orelse] = ACTIONS(1983), - [anon_sym_catch] = ACTIONS(1983), - [anon_sym_or] = ACTIONS(1983), - [anon_sym_and] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1983), - [anon_sym_LT_EQ] = ACTIONS(1981), - [anon_sym_GT] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_xor] = ACTIONS(1983), - [anon_sym_LT_LT] = ACTIONS(1983), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = ACTIONS(1983), - [anon_sym_null] = ACTIONS(1983), - [anon_sym_unreachable] = ACTIONS(1983), - [anon_sym_undefined] = ACTIONS(1983), - [sym_sink] = ACTIONS(1983), - [sym_integer] = ACTIONS(1983), - [sym_float] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym_multiline_string] = ACTIONS(1981), - [sym_character] = ACTIONS(1981), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1981), - }, - [STATE(925)] = { - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1869), - [anon_sym_import] = ACTIONS(1869), - [anon_sym_test] = ACTIONS(1869), - [anon_sym_hide] = ACTIONS(1869), - [anon_sym_func] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1867), - [anon_sym_QMARK] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1869), - [anon_sym_noreturn] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_anyopaque] = ACTIONS(1869), - [anon_sym_bool] = ACTIONS(1869), - [anon_sym_int] = ACTIONS(1869), - [anon_sym_uint] = ACTIONS(1869), - [anon_sym_float] = ACTIONS(1869), - [anon_sym_range] = ACTIONS(1869), - [anon_sym_i8] = ACTIONS(1869), - [anon_sym_i16] = ACTIONS(1869), - [anon_sym_i32] = ACTIONS(1869), - [anon_sym_i64] = ACTIONS(1869), - [anon_sym_u8] = ACTIONS(1869), - [anon_sym_u16] = ACTIONS(1869), - [anon_sym_u32] = ACTIONS(1869), - [anon_sym_u64] = ACTIONS(1869), - [anon_sym_isize] = ACTIONS(1869), - [anon_sym_usize] = ACTIONS(1869), - [anon_sym_f32] = ACTIONS(1869), - [anon_sym_f64] = ACTIONS(1869), - [anon_sym_c_char] = ACTIONS(1869), - [anon_sym_c_schar] = ACTIONS(1869), - [anon_sym_c_uchar] = ACTIONS(1869), - [anon_sym_c_short] = ACTIONS(1869), - [anon_sym_c_ushort] = ACTIONS(1869), - [anon_sym_c_int] = ACTIONS(1869), - [anon_sym_c_uint] = ACTIONS(1869), - [anon_sym_c_long] = ACTIONS(1869), - [anon_sym_c_ulong] = ACTIONS(1869), - [anon_sym_c_longlong] = ACTIONS(1869), - [anon_sym_c_ulonglong] = ACTIONS(1869), - [anon_sym_c_float] = ACTIONS(1869), - [anon_sym_c_double] = ACTIONS(1869), - [anon_sym_c_longdouble] = ACTIONS(1869), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_yield] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_defer] = ACTIONS(1869), - [anon_sym_errdefer] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_expand] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1867), - [anon_sym_orelse] = ACTIONS(1869), - [anon_sym_catch] = ACTIONS(1869), - [anon_sym_or] = ACTIONS(1869), - [anon_sym_and] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1867), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_xor] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1867), - [anon_sym_LT_LT_PIPE] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [anon_sym_unreachable] = ACTIONS(1869), - [anon_sym_undefined] = ACTIONS(1869), - [sym_sink] = ACTIONS(1869), - [sym_integer] = ACTIONS(1869), - [sym_float] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [sym_multiline_string] = ACTIONS(1867), - [sym_character] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1867), - }, - [STATE(926)] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_test] = ACTIONS(1875), - [anon_sym_hide] = ACTIONS(1875), - [anon_sym_func] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_struct] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_QMARK] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_noreturn] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_anyopaque] = ACTIONS(1875), - [anon_sym_bool] = ACTIONS(1875), - [anon_sym_int] = ACTIONS(1875), - [anon_sym_uint] = ACTIONS(1875), - [anon_sym_float] = ACTIONS(1875), - [anon_sym_range] = ACTIONS(1875), - [anon_sym_i8] = ACTIONS(1875), - [anon_sym_i16] = ACTIONS(1875), - [anon_sym_i32] = ACTIONS(1875), - [anon_sym_i64] = ACTIONS(1875), - [anon_sym_u8] = ACTIONS(1875), - [anon_sym_u16] = ACTIONS(1875), - [anon_sym_u32] = ACTIONS(1875), - [anon_sym_u64] = ACTIONS(1875), - [anon_sym_isize] = ACTIONS(1875), - [anon_sym_usize] = ACTIONS(1875), - [anon_sym_f32] = ACTIONS(1875), - [anon_sym_f64] = ACTIONS(1875), - [anon_sym_c_char] = ACTIONS(1875), - [anon_sym_c_schar] = ACTIONS(1875), - [anon_sym_c_uchar] = ACTIONS(1875), - [anon_sym_c_short] = ACTIONS(1875), - [anon_sym_c_ushort] = ACTIONS(1875), - [anon_sym_c_int] = ACTIONS(1875), - [anon_sym_c_uint] = ACTIONS(1875), - [anon_sym_c_long] = ACTIONS(1875), - [anon_sym_c_ulong] = ACTIONS(1875), - [anon_sym_c_longlong] = ACTIONS(1875), - [anon_sym_c_ulonglong] = ACTIONS(1875), - [anon_sym_c_float] = ACTIONS(1875), - [anon_sym_c_double] = ACTIONS(1875), - [anon_sym_c_longdouble] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_COLON] = ACTIONS(1873), - [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_else] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_expand] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_orelse] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_or] = ACTIONS(1875), - [anon_sym_and] = ACTIONS(1875), - [anon_sym_EQ_EQ] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_GT_EQ] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_xor] = ACTIONS(1875), - [anon_sym_LT_LT] = ACTIONS(1875), - [anon_sym_GT_GT] = ACTIONS(1873), - [anon_sym_LT_LT_PIPE] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1875), - [anon_sym_CARET] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1875), - [anon_sym_false] = ACTIONS(1875), - [anon_sym_null] = ACTIONS(1875), - [anon_sym_unreachable] = ACTIONS(1875), - [anon_sym_undefined] = ACTIONS(1875), - [sym_sink] = ACTIONS(1875), - [sym_integer] = ACTIONS(1875), - [sym_float] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym_multiline_string] = ACTIONS(1873), - [sym_character] = ACTIONS(1873), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1873), - }, - [STATE(927)] = { - [ts_builtin_sym_end] = ACTIONS(1929), - [sym_identifier] = ACTIONS(1931), - [anon_sym_import] = ACTIONS(1931), - [anon_sym_test] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_func] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1931), - [anon_sym_struct] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_void] = ACTIONS(1931), - [anon_sym_noreturn] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_anyopaque] = ACTIONS(1931), - [anon_sym_bool] = ACTIONS(1931), - [anon_sym_int] = ACTIONS(1931), - [anon_sym_uint] = ACTIONS(1931), - [anon_sym_float] = ACTIONS(1931), - [anon_sym_range] = ACTIONS(1931), - [anon_sym_i8] = ACTIONS(1931), - [anon_sym_i16] = ACTIONS(1931), - [anon_sym_i32] = ACTIONS(1931), - [anon_sym_i64] = ACTIONS(1931), - [anon_sym_u8] = ACTIONS(1931), - [anon_sym_u16] = ACTIONS(1931), - [anon_sym_u32] = ACTIONS(1931), - [anon_sym_u64] = ACTIONS(1931), - [anon_sym_isize] = ACTIONS(1931), - [anon_sym_usize] = ACTIONS(1931), - [anon_sym_f32] = ACTIONS(1931), - [anon_sym_f64] = ACTIONS(1931), - [anon_sym_c_char] = ACTIONS(1931), - [anon_sym_c_schar] = ACTIONS(1931), - [anon_sym_c_uchar] = ACTIONS(1931), - [anon_sym_c_short] = ACTIONS(1931), - [anon_sym_c_ushort] = ACTIONS(1931), - [anon_sym_c_int] = ACTIONS(1931), - [anon_sym_c_uint] = ACTIONS(1931), - [anon_sym_c_long] = ACTIONS(1931), - [anon_sym_c_ulong] = ACTIONS(1931), - [anon_sym_c_longlong] = ACTIONS(1931), - [anon_sym_c_ulonglong] = ACTIONS(1931), - [anon_sym_c_float] = ACTIONS(1931), - [anon_sym_c_double] = ACTIONS(1931), - [anon_sym_c_longdouble] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_yield] = ACTIONS(1931), - [anon_sym_COLON] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_defer] = ACTIONS(1931), - [anon_sym_errdefer] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_expand] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), - [anon_sym_orelse] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_or] = ACTIONS(1931), - [anon_sym_and] = ACTIONS(1931), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_BANG_EQ] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1931), - [anon_sym_LT_EQ] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1931), - [anon_sym_GT_EQ] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_xor] = ACTIONS(1931), - [anon_sym_LT_LT] = ACTIONS(1931), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_LT_LT_PIPE] = ACTIONS(1929), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_SLASH] = ACTIONS(1929), - [anon_sym_TILDE] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_CARET] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [anon_sym_unreachable] = ACTIONS(1931), - [anon_sym_undefined] = ACTIONS(1931), - [sym_sink] = ACTIONS(1931), - [sym_integer] = ACTIONS(1931), - [sym_float] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym_multiline_string] = ACTIONS(1929), - [sym_character] = ACTIONS(1929), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1929), - }, - [STATE(928)] = { - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1709), - [anon_sym_import] = ACTIONS(1709), - [anon_sym_test] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_func] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_QMARK] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_void] = ACTIONS(1709), - [anon_sym_noreturn] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_anyopaque] = ACTIONS(1709), - [anon_sym_bool] = ACTIONS(1709), - [anon_sym_int] = ACTIONS(1709), - [anon_sym_uint] = ACTIONS(1709), - [anon_sym_float] = ACTIONS(1709), - [anon_sym_range] = ACTIONS(1709), - [anon_sym_i8] = ACTIONS(1709), - [anon_sym_i16] = ACTIONS(1709), - [anon_sym_i32] = ACTIONS(1709), - [anon_sym_i64] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1709), - [anon_sym_u16] = ACTIONS(1709), - [anon_sym_u32] = ACTIONS(1709), - [anon_sym_u64] = ACTIONS(1709), - [anon_sym_isize] = ACTIONS(1709), - [anon_sym_usize] = ACTIONS(1709), - [anon_sym_f32] = ACTIONS(1709), - [anon_sym_f64] = ACTIONS(1709), - [anon_sym_c_char] = ACTIONS(1709), - [anon_sym_c_schar] = ACTIONS(1709), - [anon_sym_c_uchar] = ACTIONS(1709), - [anon_sym_c_short] = ACTIONS(1709), - [anon_sym_c_ushort] = ACTIONS(1709), - [anon_sym_c_int] = ACTIONS(1709), - [anon_sym_c_uint] = ACTIONS(1709), - [anon_sym_c_long] = ACTIONS(1709), - [anon_sym_c_ulong] = ACTIONS(1709), - [anon_sym_c_longlong] = ACTIONS(1709), - [anon_sym_c_ulonglong] = ACTIONS(1709), - [anon_sym_c_float] = ACTIONS(1709), - [anon_sym_c_double] = ACTIONS(1709), - [anon_sym_c_longdouble] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_COLON] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_defer] = ACTIONS(1709), - [anon_sym_errdefer] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_expand] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_orelse] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_or] = ACTIONS(1709), - [anon_sym_and] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1707), - [anon_sym_GT] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_xor] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_LT_LT_PIPE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_null] = ACTIONS(1709), - [anon_sym_unreachable] = ACTIONS(1709), - [anon_sym_undefined] = ACTIONS(1709), - [sym_sink] = ACTIONS(1709), - [sym_integer] = ACTIONS(1709), - [sym_float] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym_multiline_string] = ACTIONS(1707), - [sym_character] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), - }, - [STATE(929)] = { - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_test] = ACTIONS(1717), - [anon_sym_hide] = ACTIONS(1717), - [anon_sym_func] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_noreturn] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_anyopaque] = ACTIONS(1717), - [anon_sym_bool] = ACTIONS(1717), - [anon_sym_int] = ACTIONS(1717), - [anon_sym_uint] = ACTIONS(1717), - [anon_sym_float] = ACTIONS(1717), - [anon_sym_range] = ACTIONS(1717), - [anon_sym_i8] = ACTIONS(1717), - [anon_sym_i16] = ACTIONS(1717), - [anon_sym_i32] = ACTIONS(1717), - [anon_sym_i64] = ACTIONS(1717), - [anon_sym_u8] = ACTIONS(1717), - [anon_sym_u16] = ACTIONS(1717), - [anon_sym_u32] = ACTIONS(1717), - [anon_sym_u64] = ACTIONS(1717), - [anon_sym_isize] = ACTIONS(1717), - [anon_sym_usize] = ACTIONS(1717), - [anon_sym_f32] = ACTIONS(1717), - [anon_sym_f64] = ACTIONS(1717), - [anon_sym_c_char] = ACTIONS(1717), - [anon_sym_c_schar] = ACTIONS(1717), - [anon_sym_c_uchar] = ACTIONS(1717), - [anon_sym_c_short] = ACTIONS(1717), - [anon_sym_c_ushort] = ACTIONS(1717), - [anon_sym_c_int] = ACTIONS(1717), - [anon_sym_c_uint] = ACTIONS(1717), - [anon_sym_c_long] = ACTIONS(1717), - [anon_sym_c_ulong] = ACTIONS(1717), - [anon_sym_c_longlong] = ACTIONS(1717), - [anon_sym_c_ulonglong] = ACTIONS(1717), - [anon_sym_c_float] = ACTIONS(1717), - [anon_sym_c_double] = ACTIONS(1717), - [anon_sym_c_longdouble] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_COLON] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_defer] = ACTIONS(1717), - [anon_sym_errdefer] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_expand] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_orelse] = ACTIONS(1717), - [anon_sym_catch] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1715), - [anon_sym_BANG_EQ] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1715), - [anon_sym_GT] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1715), - [anon_sym_LT_LT_PIPE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [anon_sym_unreachable] = ACTIONS(1717), - [anon_sym_undefined] = ACTIONS(1717), - [sym_sink] = ACTIONS(1717), - [sym_integer] = ACTIONS(1717), - [sym_float] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym_multiline_string] = ACTIONS(1715), - [sym_character] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1715), - }, - [STATE(930)] = { - [ts_builtin_sym_end] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1721), - [anon_sym_import] = ACTIONS(1721), - [anon_sym_test] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_func] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_void] = ACTIONS(1721), - [anon_sym_noreturn] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_anyopaque] = ACTIONS(1721), - [anon_sym_bool] = ACTIONS(1721), - [anon_sym_int] = ACTIONS(1721), - [anon_sym_uint] = ACTIONS(1721), - [anon_sym_float] = ACTIONS(1721), - [anon_sym_range] = ACTIONS(1721), - [anon_sym_i8] = ACTIONS(1721), - [anon_sym_i16] = ACTIONS(1721), - [anon_sym_i32] = ACTIONS(1721), - [anon_sym_i64] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1721), - [anon_sym_u16] = ACTIONS(1721), - [anon_sym_u32] = ACTIONS(1721), - [anon_sym_u64] = ACTIONS(1721), - [anon_sym_isize] = ACTIONS(1721), - [anon_sym_usize] = ACTIONS(1721), - [anon_sym_f32] = ACTIONS(1721), - [anon_sym_f64] = ACTIONS(1721), - [anon_sym_c_char] = ACTIONS(1721), - [anon_sym_c_schar] = ACTIONS(1721), - [anon_sym_c_uchar] = ACTIONS(1721), - [anon_sym_c_short] = ACTIONS(1721), - [anon_sym_c_ushort] = ACTIONS(1721), - [anon_sym_c_int] = ACTIONS(1721), - [anon_sym_c_uint] = ACTIONS(1721), - [anon_sym_c_long] = ACTIONS(1721), - [anon_sym_c_ulong] = ACTIONS(1721), - [anon_sym_c_longlong] = ACTIONS(1721), - [anon_sym_c_ulonglong] = ACTIONS(1721), - [anon_sym_c_float] = ACTIONS(1721), - [anon_sym_c_double] = ACTIONS(1721), - [anon_sym_c_longdouble] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_COLON] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_defer] = ACTIONS(1721), - [anon_sym_errdefer] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_expand] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_orelse] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_or] = ACTIONS(1721), - [anon_sym_and] = ACTIONS(1721), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_LT_EQ] = ACTIONS(1719), - [anon_sym_GT] = ACTIONS(1721), - [anon_sym_GT_EQ] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_xor] = ACTIONS(1721), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_LT_LT_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_unreachable] = ACTIONS(1721), - [anon_sym_undefined] = ACTIONS(1721), - [sym_sink] = ACTIONS(1721), - [sym_integer] = ACTIONS(1721), - [sym_float] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym_multiline_string] = ACTIONS(1719), - [sym_character] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1719), - }, - [STATE(931)] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_import] = ACTIONS(1745), - [anon_sym_test] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_func] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_QMARK] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_noreturn] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_anyopaque] = ACTIONS(1745), - [anon_sym_bool] = ACTIONS(1745), - [anon_sym_int] = ACTIONS(1745), - [anon_sym_uint] = ACTIONS(1745), - [anon_sym_float] = ACTIONS(1745), - [anon_sym_range] = ACTIONS(1745), - [anon_sym_i8] = ACTIONS(1745), - [anon_sym_i16] = ACTIONS(1745), - [anon_sym_i32] = ACTIONS(1745), - [anon_sym_i64] = ACTIONS(1745), - [anon_sym_u8] = ACTIONS(1745), - [anon_sym_u16] = ACTIONS(1745), - [anon_sym_u32] = ACTIONS(1745), - [anon_sym_u64] = ACTIONS(1745), - [anon_sym_isize] = ACTIONS(1745), - [anon_sym_usize] = ACTIONS(1745), - [anon_sym_f32] = ACTIONS(1745), - [anon_sym_f64] = ACTIONS(1745), - [anon_sym_c_char] = ACTIONS(1745), - [anon_sym_c_schar] = ACTIONS(1745), - [anon_sym_c_uchar] = ACTIONS(1745), - [anon_sym_c_short] = ACTIONS(1745), - [anon_sym_c_ushort] = ACTIONS(1745), - [anon_sym_c_int] = ACTIONS(1745), - [anon_sym_c_uint] = ACTIONS(1745), - [anon_sym_c_long] = ACTIONS(1745), - [anon_sym_c_ulong] = ACTIONS(1745), - [anon_sym_c_longlong] = ACTIONS(1745), - [anon_sym_c_ulonglong] = ACTIONS(1745), - [anon_sym_c_float] = ACTIONS(1745), - [anon_sym_c_double] = ACTIONS(1745), - [anon_sym_c_longdouble] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_COLON] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_defer] = ACTIONS(1745), - [anon_sym_errdefer] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_expand] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_orelse] = ACTIONS(1745), - [anon_sym_catch] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1743), - [anon_sym_BANG_EQ] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_LT_LT] = ACTIONS(1745), - [anon_sym_GT_GT] = ACTIONS(1743), - [anon_sym_LT_LT_PIPE] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_DOT] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [anon_sym_unreachable] = ACTIONS(1745), - [anon_sym_undefined] = ACTIONS(1745), - [sym_sink] = ACTIONS(1745), - [sym_integer] = ACTIONS(1745), - [sym_float] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym_multiline_string] = ACTIONS(1743), - [sym_character] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1743), - }, - [STATE(932)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3912), - [sym_labeled_block] = STATE(3912), - [sym_if_statement] = STATE(3912), - [sym_while_statement] = STATE(3912), - [sym_for_statement] = STATE(3912), - [sym_match_statement] = STATE(3912), - [sym__value] = STATE(3912), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(933)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3921), - [sym_labeled_block] = STATE(3921), - [sym_if_statement] = STATE(3921), - [sym_while_statement] = STATE(3921), - [sym_for_statement] = STATE(3921), - [sym_match_statement] = STATE(3921), - [sym__value] = STATE(3921), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(934)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3945), - [sym_labeled_block] = STATE(3945), - [sym_if_statement] = STATE(3945), - [sym_while_statement] = STATE(3945), - [sym_for_statement] = STATE(3945), - [sym_match_statement] = STATE(3945), - [sym__value] = STATE(3945), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(935)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3950), - [sym_labeled_block] = STATE(3950), - [sym_if_statement] = STATE(3950), - [sym_while_statement] = STATE(3950), - [sym_for_statement] = STATE(3950), - [sym_match_statement] = STATE(3950), - [sym__value] = STATE(3950), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(936)] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_identifier] = ACTIONS(1829), - [anon_sym_import] = ACTIONS(1829), - [anon_sym_test] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_func] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_QMARK] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_void] = ACTIONS(1829), - [anon_sym_noreturn] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_anyopaque] = ACTIONS(1829), - [anon_sym_bool] = ACTIONS(1829), - [anon_sym_int] = ACTIONS(1829), - [anon_sym_uint] = ACTIONS(1829), - [anon_sym_float] = ACTIONS(1829), - [anon_sym_range] = ACTIONS(1829), - [anon_sym_i8] = ACTIONS(1829), - [anon_sym_i16] = ACTIONS(1829), - [anon_sym_i32] = ACTIONS(1829), - [anon_sym_i64] = ACTIONS(1829), - [anon_sym_u8] = ACTIONS(1829), - [anon_sym_u16] = ACTIONS(1829), - [anon_sym_u32] = ACTIONS(1829), - [anon_sym_u64] = ACTIONS(1829), - [anon_sym_isize] = ACTIONS(1829), - [anon_sym_usize] = ACTIONS(1829), - [anon_sym_f32] = ACTIONS(1829), - [anon_sym_f64] = ACTIONS(1829), - [anon_sym_c_char] = ACTIONS(1829), - [anon_sym_c_schar] = ACTIONS(1829), - [anon_sym_c_uchar] = ACTIONS(1829), - [anon_sym_c_short] = ACTIONS(1829), - [anon_sym_c_ushort] = ACTIONS(1829), - [anon_sym_c_int] = ACTIONS(1829), - [anon_sym_c_uint] = ACTIONS(1829), - [anon_sym_c_long] = ACTIONS(1829), - [anon_sym_c_ulong] = ACTIONS(1829), - [anon_sym_c_longlong] = ACTIONS(1829), - [anon_sym_c_ulonglong] = ACTIONS(1829), - [anon_sym_c_float] = ACTIONS(1829), - [anon_sym_c_double] = ACTIONS(1829), - [anon_sym_c_longdouble] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_yield] = ACTIONS(1829), - [anon_sym_COLON] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_defer] = ACTIONS(1829), - [anon_sym_errdefer] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_expand] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1827), - [anon_sym_orelse] = ACTIONS(1829), - [anon_sym_catch] = ACTIONS(1829), - [anon_sym_or] = ACTIONS(1829), - [anon_sym_and] = ACTIONS(1829), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_xor] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1829), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_PIPE] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [anon_sym_null] = ACTIONS(1829), - [anon_sym_unreachable] = ACTIONS(1829), - [anon_sym_undefined] = ACTIONS(1829), - [sym_sink] = ACTIONS(1829), - [sym_integer] = ACTIONS(1829), - [sym_float] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [sym_multiline_string] = ACTIONS(1827), - [sym_character] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1827), - }, - [STATE(937)] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_test] = ACTIONS(1833), - [anon_sym_hide] = ACTIONS(1833), - [anon_sym_func] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2197), + }, + [STATE(376)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10015), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11409), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(356), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_DOLLAR] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_QMARK] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_noreturn] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_anyopaque] = ACTIONS(1833), - [anon_sym_bool] = ACTIONS(1833), - [anon_sym_int] = ACTIONS(1833), - [anon_sym_uint] = ACTIONS(1833), - [anon_sym_float] = ACTIONS(1833), - [anon_sym_range] = ACTIONS(1833), - [anon_sym_i8] = ACTIONS(1833), - [anon_sym_i16] = ACTIONS(1833), - [anon_sym_i32] = ACTIONS(1833), - [anon_sym_i64] = ACTIONS(1833), - [anon_sym_u8] = ACTIONS(1833), - [anon_sym_u16] = ACTIONS(1833), - [anon_sym_u32] = ACTIONS(1833), - [anon_sym_u64] = ACTIONS(1833), - [anon_sym_isize] = ACTIONS(1833), - [anon_sym_usize] = ACTIONS(1833), - [anon_sym_f32] = ACTIONS(1833), - [anon_sym_f64] = ACTIONS(1833), - [anon_sym_c_char] = ACTIONS(1833), - [anon_sym_c_schar] = ACTIONS(1833), - [anon_sym_c_uchar] = ACTIONS(1833), - [anon_sym_c_short] = ACTIONS(1833), - [anon_sym_c_ushort] = ACTIONS(1833), - [anon_sym_c_int] = ACTIONS(1833), - [anon_sym_c_uint] = ACTIONS(1833), - [anon_sym_c_long] = ACTIONS(1833), - [anon_sym_c_ulong] = ACTIONS(1833), - [anon_sym_c_longlong] = ACTIONS(1833), - [anon_sym_c_ulonglong] = ACTIONS(1833), - [anon_sym_c_float] = ACTIONS(1833), - [anon_sym_c_double] = ACTIONS(1833), - [anon_sym_c_longdouble] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_COLON] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_defer] = ACTIONS(1833), - [anon_sym_errdefer] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_expand] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_match] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), - [anon_sym_orelse] = ACTIONS(1833), - [anon_sym_catch] = ACTIONS(1833), - [anon_sym_or] = ACTIONS(1833), - [anon_sym_and] = ACTIONS(1833), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_xor] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(1833), - [anon_sym_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_PIPE] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_DOT] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [anon_sym_unreachable] = ACTIONS(1833), - [anon_sym_undefined] = ACTIONS(1833), - [sym_sink] = ACTIONS(1833), - [sym_integer] = ACTIONS(1833), - [sym_float] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [sym_multiline_string] = ACTIONS(1831), - [sym_character] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1831), - }, - [STATE(938)] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1857), - [anon_sym_import] = ACTIONS(1857), - [anon_sym_test] = ACTIONS(1857), - [anon_sym_hide] = ACTIONS(1857), - [anon_sym_func] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_QMARK] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_void] = ACTIONS(1857), - [anon_sym_noreturn] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_anyopaque] = ACTIONS(1857), - [anon_sym_bool] = ACTIONS(1857), - [anon_sym_int] = ACTIONS(1857), - [anon_sym_uint] = ACTIONS(1857), - [anon_sym_float] = ACTIONS(1857), - [anon_sym_range] = ACTIONS(1857), - [anon_sym_i8] = ACTIONS(1857), - [anon_sym_i16] = ACTIONS(1857), - [anon_sym_i32] = ACTIONS(1857), - [anon_sym_i64] = ACTIONS(1857), - [anon_sym_u8] = ACTIONS(1857), - [anon_sym_u16] = ACTIONS(1857), - [anon_sym_u32] = ACTIONS(1857), - [anon_sym_u64] = ACTIONS(1857), - [anon_sym_isize] = ACTIONS(1857), - [anon_sym_usize] = ACTIONS(1857), - [anon_sym_f32] = ACTIONS(1857), - [anon_sym_f64] = ACTIONS(1857), - [anon_sym_c_char] = ACTIONS(1857), - [anon_sym_c_schar] = ACTIONS(1857), - [anon_sym_c_uchar] = ACTIONS(1857), - [anon_sym_c_short] = ACTIONS(1857), - [anon_sym_c_ushort] = ACTIONS(1857), - [anon_sym_c_int] = ACTIONS(1857), - [anon_sym_c_uint] = ACTIONS(1857), - [anon_sym_c_long] = ACTIONS(1857), - [anon_sym_c_ulong] = ACTIONS(1857), - [anon_sym_c_longlong] = ACTIONS(1857), - [anon_sym_c_ulonglong] = ACTIONS(1857), - [anon_sym_c_float] = ACTIONS(1857), - [anon_sym_c_double] = ACTIONS(1857), - [anon_sym_c_longdouble] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_yield] = ACTIONS(1857), - [anon_sym_COLON] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_defer] = ACTIONS(1857), - [anon_sym_errdefer] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_else] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_expand] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_match] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1855), - [anon_sym_orelse] = ACTIONS(1857), - [anon_sym_catch] = ACTIONS(1857), - [anon_sym_or] = ACTIONS(1857), - [anon_sym_and] = ACTIONS(1857), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1857), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_xor] = ACTIONS(1857), - [anon_sym_LT_LT] = ACTIONS(1857), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1857), - [anon_sym_DOT] = ACTIONS(1857), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [anon_sym_unreachable] = ACTIONS(1857), - [anon_sym_undefined] = ACTIONS(1857), - [sym_sink] = ACTIONS(1857), - [sym_integer] = ACTIONS(1857), - [sym_float] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_multiline_string] = ACTIONS(1855), - [sym_character] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1855), - }, - [STATE(939)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(940)] = { - [ts_builtin_sym_end] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1535), - [anon_sym_import] = ACTIONS(1535), - [anon_sym_test] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_func] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_DOLLAR] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_noreturn] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_anyopaque] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_range] = ACTIONS(1535), - [anon_sym_i8] = ACTIONS(1535), - [anon_sym_i16] = ACTIONS(1535), - [anon_sym_i32] = ACTIONS(1535), - [anon_sym_i64] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1535), - [anon_sym_u16] = ACTIONS(1535), - [anon_sym_u32] = ACTIONS(1535), - [anon_sym_u64] = ACTIONS(1535), - [anon_sym_isize] = ACTIONS(1535), - [anon_sym_usize] = ACTIONS(1535), - [anon_sym_f32] = ACTIONS(1535), - [anon_sym_f64] = ACTIONS(1535), - [anon_sym_c_char] = ACTIONS(1535), - [anon_sym_c_schar] = ACTIONS(1535), - [anon_sym_c_uchar] = ACTIONS(1535), - [anon_sym_c_short] = ACTIONS(1535), - [anon_sym_c_ushort] = ACTIONS(1535), - [anon_sym_c_int] = ACTIONS(1535), - [anon_sym_c_uint] = ACTIONS(1535), - [anon_sym_c_long] = ACTIONS(1535), - [anon_sym_c_ulong] = ACTIONS(1535), - [anon_sym_c_longlong] = ACTIONS(1535), - [anon_sym_c_ulonglong] = ACTIONS(1535), - [anon_sym_c_float] = ACTIONS(1535), - [anon_sym_c_double] = ACTIONS(1535), - [anon_sym_c_longdouble] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_yield] = ACTIONS(1535), - [anon_sym_COLON] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_defer] = ACTIONS(1535), - [anon_sym_errdefer] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_expand] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), - [anon_sym_orelse] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_or] = ACTIONS(1535), - [anon_sym_and] = ACTIONS(1535), - [anon_sym_EQ_EQ] = ACTIONS(1533), - [anon_sym_BANG_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_GT] = ACTIONS(1535), - [anon_sym_GT_EQ] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1535), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_LT_LT_PIPE] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [anon_sym_unreachable] = ACTIONS(1535), - [anon_sym_undefined] = ACTIONS(1535), - [sym_sink] = ACTIONS(1535), - [sym_integer] = ACTIONS(1535), - [sym_float] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [sym_multiline_string] = ACTIONS(1533), - [sym_character] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1533), - }, - [STATE(941)] = { - [ts_builtin_sym_end] = ACTIONS(1549), - [sym_identifier] = ACTIONS(1551), - [anon_sym_import] = ACTIONS(1551), - [anon_sym_test] = ACTIONS(1551), - [anon_sym_hide] = ACTIONS(1551), - [anon_sym_func] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_QMARK] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_noreturn] = ACTIONS(1551), - [anon_sym_type] = ACTIONS(1551), - [anon_sym_anyopaque] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_range] = ACTIONS(1551), - [anon_sym_i8] = ACTIONS(1551), - [anon_sym_i16] = ACTIONS(1551), - [anon_sym_i32] = ACTIONS(1551), - [anon_sym_i64] = ACTIONS(1551), - [anon_sym_u8] = ACTIONS(1551), - [anon_sym_u16] = ACTIONS(1551), - [anon_sym_u32] = ACTIONS(1551), - [anon_sym_u64] = ACTIONS(1551), - [anon_sym_isize] = ACTIONS(1551), - [anon_sym_usize] = ACTIONS(1551), - [anon_sym_f32] = ACTIONS(1551), - [anon_sym_f64] = ACTIONS(1551), - [anon_sym_c_char] = ACTIONS(1551), - [anon_sym_c_schar] = ACTIONS(1551), - [anon_sym_c_uchar] = ACTIONS(1551), - [anon_sym_c_short] = ACTIONS(1551), - [anon_sym_c_ushort] = ACTIONS(1551), - [anon_sym_c_int] = ACTIONS(1551), - [anon_sym_c_uint] = ACTIONS(1551), - [anon_sym_c_long] = ACTIONS(1551), - [anon_sym_c_ulong] = ACTIONS(1551), - [anon_sym_c_longlong] = ACTIONS(1551), - [anon_sym_c_ulonglong] = ACTIONS(1551), - [anon_sym_c_float] = ACTIONS(1551), - [anon_sym_c_double] = ACTIONS(1551), - [anon_sym_c_longdouble] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1551), - [anon_sym_COLON] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_defer] = ACTIONS(1551), - [anon_sym_errdefer] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_else] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_expand] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1549), - [anon_sym_orelse] = ACTIONS(1551), - [anon_sym_catch] = ACTIONS(1551), - [anon_sym_or] = ACTIONS(1551), - [anon_sym_and] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_xor] = ACTIONS(1551), - [anon_sym_LT_LT] = ACTIONS(1551), - [anon_sym_GT_GT] = ACTIONS(1549), - [anon_sym_LT_LT_PIPE] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1551), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [anon_sym_unreachable] = ACTIONS(1551), - [anon_sym_undefined] = ACTIONS(1551), - [sym_sink] = ACTIONS(1551), - [sym_integer] = ACTIONS(1551), - [sym_float] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [sym_multiline_string] = ACTIONS(1549), - [sym_character] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1549), - }, - [STATE(942)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(944), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2290), - }, - [STATE(943)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(947), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2292), - }, - [STATE(944)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(945)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(948), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2294), - }, - [STATE(946)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(949), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2296), - }, - [STATE(947)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(948)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(949)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(950)] = { - [ts_builtin_sym_end] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), - [anon_sym_import] = ACTIONS(1559), - [anon_sym_test] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_func] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_QMARK] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_noreturn] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_anyopaque] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_range] = ACTIONS(1559), - [anon_sym_i8] = ACTIONS(1559), - [anon_sym_i16] = ACTIONS(1559), - [anon_sym_i32] = ACTIONS(1559), - [anon_sym_i64] = ACTIONS(1559), - [anon_sym_u8] = ACTIONS(1559), - [anon_sym_u16] = ACTIONS(1559), - [anon_sym_u32] = ACTIONS(1559), - [anon_sym_u64] = ACTIONS(1559), - [anon_sym_isize] = ACTIONS(1559), - [anon_sym_usize] = ACTIONS(1559), - [anon_sym_f32] = ACTIONS(1559), - [anon_sym_f64] = ACTIONS(1559), - [anon_sym_c_char] = ACTIONS(1559), - [anon_sym_c_schar] = ACTIONS(1559), - [anon_sym_c_uchar] = ACTIONS(1559), - [anon_sym_c_short] = ACTIONS(1559), - [anon_sym_c_ushort] = ACTIONS(1559), - [anon_sym_c_int] = ACTIONS(1559), - [anon_sym_c_uint] = ACTIONS(1559), - [anon_sym_c_long] = ACTIONS(1559), - [anon_sym_c_ulong] = ACTIONS(1559), - [anon_sym_c_longlong] = ACTIONS(1559), - [anon_sym_c_ulonglong] = ACTIONS(1559), - [anon_sym_c_float] = ACTIONS(1559), - [anon_sym_c_double] = ACTIONS(1559), - [anon_sym_c_longdouble] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_yield] = ACTIONS(1559), - [anon_sym_COLON] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_defer] = ACTIONS(1559), - [anon_sym_errdefer] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_else] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_expand] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_orelse] = ACTIONS(1559), - [anon_sym_catch] = ACTIONS(1559), - [anon_sym_or] = ACTIONS(1559), - [anon_sym_and] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_BANG_EQ] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_xor] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1557), - [anon_sym_LT_LT_PIPE] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_DOT] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_unreachable] = ACTIONS(1559), - [anon_sym_undefined] = ACTIONS(1559), - [sym_sink] = ACTIONS(1559), - [sym_integer] = ACTIONS(1559), - [sym_float] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym_multiline_string] = ACTIONS(1557), - [sym_character] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1557), - }, - [STATE(951)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2298), - }, - [STATE(952)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(954), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2300), - }, - [STATE(953)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(957), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2302), - }, - [STATE(954)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(955)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2304), - }, - [STATE(956)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(959), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2306), - }, - [STATE(957)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(958)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(959)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(960)] = { - [ts_builtin_sym_end] = ACTIONS(2029), - [sym_identifier] = ACTIONS(2031), - [anon_sym_import] = ACTIONS(2031), - [anon_sym_test] = ACTIONS(2031), - [anon_sym_hide] = ACTIONS(2031), - [anon_sym_func] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_QMARK] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_void] = ACTIONS(2031), - [anon_sym_noreturn] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_anyopaque] = ACTIONS(2031), - [anon_sym_bool] = ACTIONS(2031), - [anon_sym_int] = ACTIONS(2031), - [anon_sym_uint] = ACTIONS(2031), - [anon_sym_float] = ACTIONS(2031), - [anon_sym_range] = ACTIONS(2031), - [anon_sym_i8] = ACTIONS(2031), - [anon_sym_i16] = ACTIONS(2031), - [anon_sym_i32] = ACTIONS(2031), - [anon_sym_i64] = ACTIONS(2031), - [anon_sym_u8] = ACTIONS(2031), - [anon_sym_u16] = ACTIONS(2031), - [anon_sym_u32] = ACTIONS(2031), - [anon_sym_u64] = ACTIONS(2031), - [anon_sym_isize] = ACTIONS(2031), - [anon_sym_usize] = ACTIONS(2031), - [anon_sym_f32] = ACTIONS(2031), - [anon_sym_f64] = ACTIONS(2031), - [anon_sym_c_char] = ACTIONS(2031), - [anon_sym_c_schar] = ACTIONS(2031), - [anon_sym_c_uchar] = ACTIONS(2031), - [anon_sym_c_short] = ACTIONS(2031), - [anon_sym_c_ushort] = ACTIONS(2031), - [anon_sym_c_int] = ACTIONS(2031), - [anon_sym_c_uint] = ACTIONS(2031), - [anon_sym_c_long] = ACTIONS(2031), - [anon_sym_c_ulong] = ACTIONS(2031), - [anon_sym_c_longlong] = ACTIONS(2031), - [anon_sym_c_ulonglong] = ACTIONS(2031), - [anon_sym_c_float] = ACTIONS(2031), - [anon_sym_c_double] = ACTIONS(2031), - [anon_sym_c_longdouble] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_COLON] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_defer] = ACTIONS(2031), - [anon_sym_errdefer] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_else] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_expand] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_match] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), - [anon_sym_orelse] = ACTIONS(2031), - [anon_sym_catch] = ACTIONS(2031), - [anon_sym_or] = ACTIONS(2031), - [anon_sym_and] = ACTIONS(2031), - [anon_sym_EQ_EQ] = ACTIONS(2029), - [anon_sym_BANG_EQ] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_LT_EQ] = ACTIONS(2029), - [anon_sym_GT] = ACTIONS(2031), - [anon_sym_GT_EQ] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_xor] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_GT_GT] = ACTIONS(2029), - [anon_sym_LT_LT_PIPE] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_SLASH] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_DOT] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_unreachable] = ACTIONS(2031), - [anon_sym_undefined] = ACTIONS(2031), - [sym_sink] = ACTIONS(2031), - [sym_integer] = ACTIONS(2031), - [sym_float] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [sym_multiline_string] = ACTIONS(2029), - [sym_character] = ACTIONS(2029), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2029), - }, - [STATE(961)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(963), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2308), - }, - [STATE(962)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(966), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2310), - }, - [STATE(963)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(964)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(967), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2312), - }, - [STATE(965)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(968), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2314), - }, - [STATE(966)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(967)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(968)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(969)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(970)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(972), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2316), - }, - [STATE(971)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(975), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2318), - }, - [STATE(972)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(973)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2320), - }, - [STATE(974)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(977), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2322), - }, - [STATE(975)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(976)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(977)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(978)] = { - [ts_builtin_sym_end] = ACTIONS(1577), - [sym_identifier] = ACTIONS(1579), - [anon_sym_import] = ACTIONS(1579), - [anon_sym_test] = ACTIONS(1579), - [anon_sym_hide] = ACTIONS(1579), - [anon_sym_func] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DOLLAR] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_noreturn] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_anyopaque] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_range] = ACTIONS(1579), - [anon_sym_i8] = ACTIONS(1579), - [anon_sym_i16] = ACTIONS(1579), - [anon_sym_i32] = ACTIONS(1579), - [anon_sym_i64] = ACTIONS(1579), - [anon_sym_u8] = ACTIONS(1579), - [anon_sym_u16] = ACTIONS(1579), - [anon_sym_u32] = ACTIONS(1579), - [anon_sym_u64] = ACTIONS(1579), - [anon_sym_isize] = ACTIONS(1579), - [anon_sym_usize] = ACTIONS(1579), - [anon_sym_f32] = ACTIONS(1579), - [anon_sym_f64] = ACTIONS(1579), - [anon_sym_c_char] = ACTIONS(1579), - [anon_sym_c_schar] = ACTIONS(1579), - [anon_sym_c_uchar] = ACTIONS(1579), - [anon_sym_c_short] = ACTIONS(1579), - [anon_sym_c_ushort] = ACTIONS(1579), - [anon_sym_c_int] = ACTIONS(1579), - [anon_sym_c_uint] = ACTIONS(1579), - [anon_sym_c_long] = ACTIONS(1579), - [anon_sym_c_ulong] = ACTIONS(1579), - [anon_sym_c_longlong] = ACTIONS(1579), - [anon_sym_c_ulonglong] = ACTIONS(1579), - [anon_sym_c_float] = ACTIONS(1579), - [anon_sym_c_double] = ACTIONS(1579), - [anon_sym_c_longdouble] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_yield] = ACTIONS(1579), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_defer] = ACTIONS(1579), - [anon_sym_errdefer] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_expand] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), - [anon_sym_orelse] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_or] = ACTIONS(1579), - [anon_sym_and] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_xor] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_LT_LT_PIPE] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_DOT] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_unreachable] = ACTIONS(1579), - [anon_sym_undefined] = ACTIONS(1579), - [sym_sink] = ACTIONS(1579), - [sym_integer] = ACTIONS(1579), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1577), - }, - [STATE(979)] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_test] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_func] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_QMARK] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1705), - [anon_sym_noreturn] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_anyopaque] = ACTIONS(1705), - [anon_sym_bool] = ACTIONS(1705), - [anon_sym_int] = ACTIONS(1705), - [anon_sym_uint] = ACTIONS(1705), - [anon_sym_float] = ACTIONS(1705), - [anon_sym_range] = ACTIONS(1705), - [anon_sym_i8] = ACTIONS(1705), - [anon_sym_i16] = ACTIONS(1705), - [anon_sym_i32] = ACTIONS(1705), - [anon_sym_i64] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1705), - [anon_sym_u16] = ACTIONS(1705), - [anon_sym_u32] = ACTIONS(1705), - [anon_sym_u64] = ACTIONS(1705), - [anon_sym_isize] = ACTIONS(1705), - [anon_sym_usize] = ACTIONS(1705), - [anon_sym_f32] = ACTIONS(1705), - [anon_sym_f64] = ACTIONS(1705), - [anon_sym_c_char] = ACTIONS(1705), - [anon_sym_c_schar] = ACTIONS(1705), - [anon_sym_c_uchar] = ACTIONS(1705), - [anon_sym_c_short] = ACTIONS(1705), - [anon_sym_c_ushort] = ACTIONS(1705), - [anon_sym_c_int] = ACTIONS(1705), - [anon_sym_c_uint] = ACTIONS(1705), - [anon_sym_c_long] = ACTIONS(1705), - [anon_sym_c_ulong] = ACTIONS(1705), - [anon_sym_c_longlong] = ACTIONS(1705), - [anon_sym_c_ulonglong] = ACTIONS(1705), - [anon_sym_c_float] = ACTIONS(1705), - [anon_sym_c_double] = ACTIONS(1705), - [anon_sym_c_longdouble] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_COLON] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_defer] = ACTIONS(1705), - [anon_sym_errdefer] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_expand] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_orelse] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_or] = ACTIONS(1705), - [anon_sym_and] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1703), - [anon_sym_BANG_EQ] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_xor] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_LT_LT_PIPE] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_DOT] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [anon_sym_unreachable] = ACTIONS(1705), - [anon_sym_undefined] = ACTIONS(1705), - [sym_sink] = ACTIONS(1705), - [sym_integer] = ACTIONS(1705), - [sym_float] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym_multiline_string] = ACTIONS(1703), - [sym_character] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1703), - }, - [STATE(980)] = { - [ts_builtin_sym_end] = ACTIONS(1561), - [sym_identifier] = ACTIONS(1563), - [anon_sym_import] = ACTIONS(1563), - [anon_sym_test] = ACTIONS(1563), - [anon_sym_hide] = ACTIONS(1563), - [anon_sym_func] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_struct] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_QMARK] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_noreturn] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_anyopaque] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_range] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_c_char] = ACTIONS(1563), - [anon_sym_c_schar] = ACTIONS(1563), - [anon_sym_c_uchar] = ACTIONS(1563), - [anon_sym_c_short] = ACTIONS(1563), - [anon_sym_c_ushort] = ACTIONS(1563), - [anon_sym_c_int] = ACTIONS(1563), - [anon_sym_c_uint] = ACTIONS(1563), - [anon_sym_c_long] = ACTIONS(1563), - [anon_sym_c_ulong] = ACTIONS(1563), - [anon_sym_c_longlong] = ACTIONS(1563), - [anon_sym_c_ulonglong] = ACTIONS(1563), - [anon_sym_c_float] = ACTIONS(1563), - [anon_sym_c_double] = ACTIONS(1563), - [anon_sym_c_longdouble] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_yield] = ACTIONS(1563), - [anon_sym_COLON] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_defer] = ACTIONS(1563), - [anon_sym_errdefer] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_else] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_expand] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_match] = ACTIONS(1563), - [anon_sym_DOT_DOT] = ACTIONS(1563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_orelse] = ACTIONS(1563), - [anon_sym_catch] = ACTIONS(1563), - [anon_sym_or] = ACTIONS(1563), - [anon_sym_and] = ACTIONS(1563), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_BANG_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1563), - [anon_sym_LT_EQ] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_xor] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1563), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_LT_LT_PIPE] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_SLASH] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1563), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_unreachable] = ACTIONS(1563), - [anon_sym_undefined] = ACTIONS(1563), - [sym_sink] = ACTIONS(1563), - [sym_integer] = ACTIONS(1563), - [sym_float] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym_multiline_string] = ACTIONS(1561), - [sym_character] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1561), - }, - [STATE(981)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(983), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2324), - }, - [STATE(982)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(986), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2326), - }, - [STATE(983)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1824), - [sym_labeled_block] = STATE(1824), - [sym_if_statement] = STATE(1824), - [sym_while_statement] = STATE(1824), - [sym_for_statement] = STATE(1824), - [sym_match_statement] = STATE(1824), - [sym__value] = STATE(1824), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(984)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1825), - [sym_labeled_block] = STATE(1825), - [sym_if_statement] = STATE(1825), - [sym_while_statement] = STATE(1825), - [sym_for_statement] = STATE(1825), - [sym_match_statement] = STATE(1825), - [sym__value] = STATE(1825), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(987), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2328), - }, - [STATE(985)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1827), - [sym_labeled_block] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_match_statement] = STATE(1827), - [sym__value] = STATE(1827), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(988), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2330), - }, - [STATE(986)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1856), - [sym_labeled_block] = STATE(1856), - [sym_if_statement] = STATE(1856), - [sym_while_statement] = STATE(1856), - [sym_for_statement] = STATE(1856), - [sym_match_statement] = STATE(1856), - [sym__value] = STATE(1856), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(987)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1882), - [sym_labeled_block] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_match_statement] = STATE(1882), - [sym__value] = STATE(1882), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(988)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1884), - [sym_labeled_block] = STATE(1884), - [sym_if_statement] = STATE(1884), - [sym_while_statement] = STATE(1884), - [sym_for_statement] = STATE(1884), - [sym_match_statement] = STATE(1884), - [sym__value] = STATE(1884), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(989)] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_test] = ACTIONS(1741), - [anon_sym_hide] = ACTIONS(1741), - [anon_sym_func] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_noreturn] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_anyopaque] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_int] = ACTIONS(1741), - [anon_sym_uint] = ACTIONS(1741), - [anon_sym_float] = ACTIONS(1741), - [anon_sym_range] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_c_char] = ACTIONS(1741), - [anon_sym_c_schar] = ACTIONS(1741), - [anon_sym_c_uchar] = ACTIONS(1741), - [anon_sym_c_short] = ACTIONS(1741), - [anon_sym_c_ushort] = ACTIONS(1741), - [anon_sym_c_int] = ACTIONS(1741), - [anon_sym_c_uint] = ACTIONS(1741), - [anon_sym_c_long] = ACTIONS(1741), - [anon_sym_c_ulong] = ACTIONS(1741), - [anon_sym_c_longlong] = ACTIONS(1741), - [anon_sym_c_ulonglong] = ACTIONS(1741), - [anon_sym_c_float] = ACTIONS(1741), - [anon_sym_c_double] = ACTIONS(1741), - [anon_sym_c_longdouble] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_defer] = ACTIONS(1741), - [anon_sym_errdefer] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_expand] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_orelse] = ACTIONS(1741), - [anon_sym_catch] = ACTIONS(1741), - [anon_sym_or] = ACTIONS(1741), - [anon_sym_and] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_xor] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_LT_LT_PIPE] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_DOT] = ACTIONS(1741), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_unreachable] = ACTIONS(1741), - [anon_sym_undefined] = ACTIONS(1741), - [sym_sink] = ACTIONS(1741), - [sym_integer] = ACTIONS(1741), - [sym_float] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym_multiline_string] = ACTIONS(1739), - [sym_character] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1739), - }, - [STATE(990)] = { - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_import] = ACTIONS(1527), - [anon_sym_test] = ACTIONS(1527), - [anon_sym_hide] = ACTIONS(1527), - [anon_sym_func] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_noreturn] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_anyopaque] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_range] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_c_char] = ACTIONS(1527), - [anon_sym_c_schar] = ACTIONS(1527), - [anon_sym_c_uchar] = ACTIONS(1527), - [anon_sym_c_short] = ACTIONS(1527), - [anon_sym_c_ushort] = ACTIONS(1527), - [anon_sym_c_int] = ACTIONS(1527), - [anon_sym_c_uint] = ACTIONS(1527), - [anon_sym_c_long] = ACTIONS(1527), - [anon_sym_c_ulong] = ACTIONS(1527), - [anon_sym_c_longlong] = ACTIONS(1527), - [anon_sym_c_ulonglong] = ACTIONS(1527), - [anon_sym_c_float] = ACTIONS(1527), - [anon_sym_c_double] = ACTIONS(1527), - [anon_sym_c_longdouble] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_yield] = ACTIONS(1527), - [anon_sym_COLON] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_defer] = ACTIONS(1527), - [anon_sym_errdefer] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_else] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_expand] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_orelse] = ACTIONS(1527), - [anon_sym_catch] = ACTIONS(1527), - [anon_sym_or] = ACTIONS(1527), - [anon_sym_and] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_xor] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1525), - [anon_sym_LT_LT_PIPE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_try] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_unreachable] = ACTIONS(1527), - [anon_sym_undefined] = ACTIONS(1527), - [sym_sink] = ACTIONS(1527), - [sym_integer] = ACTIONS(1527), - [sym_float] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [sym_multiline_string] = ACTIONS(1525), - [sym_character] = ACTIONS(1525), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1525), - }, - [STATE(991)] = { - [ts_builtin_sym_end] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1575), - [anon_sym_import] = ACTIONS(1575), - [anon_sym_test] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_func] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_QMARK] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_noreturn] = ACTIONS(1575), - [anon_sym_type] = ACTIONS(1575), - [anon_sym_anyopaque] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_range] = ACTIONS(1575), - [anon_sym_i8] = ACTIONS(1575), - [anon_sym_i16] = ACTIONS(1575), - [anon_sym_i32] = ACTIONS(1575), - [anon_sym_i64] = ACTIONS(1575), - [anon_sym_u8] = ACTIONS(1575), - [anon_sym_u16] = ACTIONS(1575), - [anon_sym_u32] = ACTIONS(1575), - [anon_sym_u64] = ACTIONS(1575), - [anon_sym_isize] = ACTIONS(1575), - [anon_sym_usize] = ACTIONS(1575), - [anon_sym_f32] = ACTIONS(1575), - [anon_sym_f64] = ACTIONS(1575), - [anon_sym_c_char] = ACTIONS(1575), - [anon_sym_c_schar] = ACTIONS(1575), - [anon_sym_c_uchar] = ACTIONS(1575), - [anon_sym_c_short] = ACTIONS(1575), - [anon_sym_c_ushort] = ACTIONS(1575), - [anon_sym_c_int] = ACTIONS(1575), - [anon_sym_c_uint] = ACTIONS(1575), - [anon_sym_c_long] = ACTIONS(1575), - [anon_sym_c_ulong] = ACTIONS(1575), - [anon_sym_c_longlong] = ACTIONS(1575), - [anon_sym_c_ulonglong] = ACTIONS(1575), - [anon_sym_c_float] = ACTIONS(1575), - [anon_sym_c_double] = ACTIONS(1575), - [anon_sym_c_longdouble] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_yield] = ACTIONS(1575), - [anon_sym_COLON] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_defer] = ACTIONS(1575), - [anon_sym_errdefer] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_expand] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_orelse] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_BANG_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_LT_EQ] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_EQ] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(1573), - [anon_sym_LT_LT_PIPE] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_DOT] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_unreachable] = ACTIONS(1575), - [anon_sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [sym_multiline_string] = ACTIONS(1573), - [sym_character] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1573), - }, - [STATE(992)] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1609), - [anon_sym_import] = ACTIONS(1609), - [anon_sym_test] = ACTIONS(1609), - [anon_sym_hide] = ACTIONS(1609), - [anon_sym_func] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_noreturn] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_anyopaque] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_range] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_c_char] = ACTIONS(1609), - [anon_sym_c_schar] = ACTIONS(1609), - [anon_sym_c_uchar] = ACTIONS(1609), - [anon_sym_c_short] = ACTIONS(1609), - [anon_sym_c_ushort] = ACTIONS(1609), - [anon_sym_c_int] = ACTIONS(1609), - [anon_sym_c_uint] = ACTIONS(1609), - [anon_sym_c_long] = ACTIONS(1609), - [anon_sym_c_ulong] = ACTIONS(1609), - [anon_sym_c_longlong] = ACTIONS(1609), - [anon_sym_c_ulonglong] = ACTIONS(1609), - [anon_sym_c_float] = ACTIONS(1609), - [anon_sym_c_double] = ACTIONS(1609), - [anon_sym_c_longdouble] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_COLON] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_defer] = ACTIONS(1609), - [anon_sym_errdefer] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_expand] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_match] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_orelse] = ACTIONS(1609), - [anon_sym_catch] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_LT_EQ] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1609), - [anon_sym_GT_EQ] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1609), - [anon_sym_GT_GT] = ACTIONS(1607), - [anon_sym_LT_LT_PIPE] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_DOT] = ACTIONS(1609), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_unreachable] = ACTIONS(1609), - [anon_sym_undefined] = ACTIONS(1609), - [sym_sink] = ACTIONS(1609), - [sym_integer] = ACTIONS(1609), - [sym_float] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_multiline_string] = ACTIONS(1607), - [sym_character] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1607), - }, - [STATE(993)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(3951), - [sym_labeled_block] = STATE(3951), - [sym_if_statement] = STATE(3951), - [sym_while_statement] = STATE(3951), - [sym_for_statement] = STATE(3951), - [sym_match_statement] = STATE(3951), - [sym__value] = STATE(3951), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(932), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2332), - }, - [STATE(994)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2334), - }, - [STATE(995)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1872), - [sym_labeled_block] = STATE(1872), - [sym_if_statement] = STATE(1872), - [sym_while_statement] = STATE(1872), - [sym_for_statement] = STATE(1872), - [sym_match_statement] = STATE(1872), - [sym__value] = STATE(1872), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(828), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2336), - }, - [STATE(996)] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_test] = ACTIONS(1837), - [anon_sym_hide] = ACTIONS(1837), - [anon_sym_func] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_QMARK] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_noreturn] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_anyopaque] = ACTIONS(1837), - [anon_sym_bool] = ACTIONS(1837), - [anon_sym_int] = ACTIONS(1837), - [anon_sym_uint] = ACTIONS(1837), - [anon_sym_float] = ACTIONS(1837), - [anon_sym_range] = ACTIONS(1837), - [anon_sym_i8] = ACTIONS(1837), - [anon_sym_i16] = ACTIONS(1837), - [anon_sym_i32] = ACTIONS(1837), - [anon_sym_i64] = ACTIONS(1837), - [anon_sym_u8] = ACTIONS(1837), - [anon_sym_u16] = ACTIONS(1837), - [anon_sym_u32] = ACTIONS(1837), - [anon_sym_u64] = ACTIONS(1837), - [anon_sym_isize] = ACTIONS(1837), - [anon_sym_usize] = ACTIONS(1837), - [anon_sym_f32] = ACTIONS(1837), - [anon_sym_f64] = ACTIONS(1837), - [anon_sym_c_char] = ACTIONS(1837), - [anon_sym_c_schar] = ACTIONS(1837), - [anon_sym_c_uchar] = ACTIONS(1837), - [anon_sym_c_short] = ACTIONS(1837), - [anon_sym_c_ushort] = ACTIONS(1837), - [anon_sym_c_int] = ACTIONS(1837), - [anon_sym_c_uint] = ACTIONS(1837), - [anon_sym_c_long] = ACTIONS(1837), - [anon_sym_c_ulong] = ACTIONS(1837), - [anon_sym_c_longlong] = ACTIONS(1837), - [anon_sym_c_ulonglong] = ACTIONS(1837), - [anon_sym_c_float] = ACTIONS(1837), - [anon_sym_c_double] = ACTIONS(1837), - [anon_sym_c_longdouble] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_defer] = ACTIONS(1837), - [anon_sym_errdefer] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_expand] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), - [anon_sym_orelse] = ACTIONS(1837), - [anon_sym_catch] = ACTIONS(1837), - [anon_sym_or] = ACTIONS(1837), - [anon_sym_and] = ACTIONS(1837), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_xor] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_PIPE] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), [anon_sym_try] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_unreachable] = ACTIONS(1837), - [anon_sym_undefined] = ACTIONS(1837), - [sym_sink] = ACTIONS(1837), - [sym_integer] = ACTIONS(1837), - [sym_float] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym_multiline_string] = ACTIONS(1835), - [sym_character] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1835), + [sym__newline] = ACTIONS(2201), }, - [STATE(997)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(2050), - [sym_labeled_block] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_match_statement] = STATE(2050), - [sym__value] = STATE(2050), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(818), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(377)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10003), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11599), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2338), + [sym__newline] = ACTIONS(2205), }, - [STATE(998)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(378)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10069), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11776), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), }, - [STATE(999)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(379)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10049), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11610), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), }, - [STATE(1000)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3312), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1729), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2346), - [anon_sym_yield] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_defer] = ACTIONS(2346), - [anon_sym_errdefer] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2346), - [anon_sym_while] = ACTIONS(2346), - [anon_sym_expand] = ACTIONS(2346), - [anon_sym_for] = ACTIONS(2346), - [anon_sym_match] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(380)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9974), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11897), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(350), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2348), + [sym__newline] = ACTIONS(2213), }, - [STATE(1001)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(2350), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(381)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), }, - [STATE(1002)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3312), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1729), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_yield] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_defer] = ACTIONS(2352), - [anon_sym_errdefer] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_expand] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_match] = ACTIONS(2352), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(382)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10020), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(11613), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2348), + [sym__newline] = ACTIONS(2217), }, - [STATE(1003)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_COLON] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(383)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10320), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_keyed_field_initializer] = STATE(11625), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(15178), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_noreturn] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_anyopaque] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_uint] = ACTIONS(1859), + [anon_sym_float] = ACTIONS(1859), + [anon_sym_range] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_c_char] = ACTIONS(1859), + [anon_sym_c_schar] = ACTIONS(1859), + [anon_sym_c_uchar] = ACTIONS(1859), + [anon_sym_c_short] = ACTIONS(1859), + [anon_sym_c_ushort] = ACTIONS(1859), + [anon_sym_c_int] = ACTIONS(1859), + [anon_sym_c_uint] = ACTIONS(1859), + [anon_sym_c_long] = ACTIONS(1859), + [anon_sym_c_ulong] = ACTIONS(1859), + [anon_sym_c_longlong] = ACTIONS(1859), + [anon_sym_c_ulonglong] = ACTIONS(1859), + [anon_sym_c_float] = ACTIONS(1859), + [anon_sym_c_double] = ACTIONS(1859), + [anon_sym_c_longdouble] = ACTIONS(1859), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_unreachable] = ACTIONS(1865), + [anon_sym_undefined] = ACTIONS(1867), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2221), }, - [STATE(1004)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(384)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), }, - [STATE(1005)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(385)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2164), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2239), }, - [STATE(1006)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(386)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), }, - [STATE(1007)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_COLON] = ACTIONS(2360), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(387)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10300), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14533), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2241), }, - [STATE(1008)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2051), - [sym_labeled_block] = STATE(2051), - [sym_if_statement] = STATE(2051), - [sym_while_statement] = STATE(2051), - [sym_for_statement] = STATE(2051), - [sym_match_statement] = STATE(2051), - [sym__value] = STATE(2051), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(388)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10277), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14209), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), + [sym__newline] = ACTIONS(1849), }, - [STATE(1009)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(2053), - [sym_labeled_block] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_match_statement] = STATE(2053), - [sym__value] = STATE(2053), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(2362), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(389)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10407), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_field_initializer] = STATE(14077), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym__field_name] = STATE(12365), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1827), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_noreturn] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_anyopaque] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_uint] = ACTIONS(1835), + [anon_sym_float] = ACTIONS(1835), + [anon_sym_range] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_c_char] = ACTIONS(1835), + [anon_sym_c_schar] = ACTIONS(1835), + [anon_sym_c_uchar] = ACTIONS(1835), + [anon_sym_c_short] = ACTIONS(1835), + [anon_sym_c_ushort] = ACTIONS(1835), + [anon_sym_c_int] = ACTIONS(1835), + [anon_sym_c_uint] = ACTIONS(1835), + [anon_sym_c_long] = ACTIONS(1835), + [anon_sym_c_ulong] = ACTIONS(1835), + [anon_sym_c_longlong] = ACTIONS(1835), + [anon_sym_c_ulonglong] = ACTIONS(1835), + [anon_sym_c_float] = ACTIONS(1835), + [anon_sym_c_double] = ACTIONS(1835), + [anon_sym_c_longdouble] = ACTIONS(1835), + [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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_unreachable] = ACTIONS(1845), + [anon_sym_undefined] = ACTIONS(1847), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2243), }, - [STATE(1010)] = { - [sym_type] = STATE(5053), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(2364), - [anon_sym_import] = ACTIONS(477), - [anon_sym_test] = ACTIONS(477), - [anon_sym_hide] = ACTIONS(477), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_else] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), + [STATE(390)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2794), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2257), }, - [STATE(1011)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(391)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2362), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2261), }, - [STATE(1012)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(838), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(392)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2366), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), }, - [STATE(1013)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [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(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(393)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2608), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2265), }, - [STATE(1014)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(161), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(394)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2509), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(409), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2267), }, - [STATE(1015)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(3370), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(886), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(395)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2398), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(396), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2269), }, - [STATE(1016)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(1049), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(247), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(396)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2402), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), }, - [STATE(1017)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(209), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(397)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2679), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2271), }, - [STATE(1018)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(3522), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [sym_identifier] = ACTIONS(2219), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(864), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(398)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3536), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_error_capture] = STATE(2434), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2275), }, - [STATE(1019)] = { - [sym_type] = STATE(5067), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(2366), - [anon_sym_import] = ACTIONS(477), - [anon_sym_test] = ACTIONS(477), - [anon_sym_hide] = ACTIONS(477), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), + [STATE(399)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3547), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_error_capture] = STATE(2438), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2257), }, - [STATE(1020)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(1797), - [sym_labeled_block] = STATE(1797), - [sym_if_statement] = STATE(1797), - [sym_while_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_match_statement] = STATE(1797), - [sym__value] = STATE(1797), - [sym_expression] = STATE(3495), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [sym_identifier] = ACTIONS(2195), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(904), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(400)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2154), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2277), }, - [STATE(1021)] = { - [aux_sym_import_declaration_repeat1] = STATE(4861), - [aux_sym_capture_list_repeat1] = STATE(3926), - [sym_identifier] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_LT_LT_PIPE] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [STATE(401)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2470), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2375), + [sym__newline] = ACTIONS(2281), }, - [STATE(1022)] = { - [sym_variant_payload] = STATE(876), - [sym_identifier] = ACTIONS(1494), - [anon_sym_func] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_noreturn] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_anyopaque] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_int] = ACTIONS(1494), - [anon_sym_uint] = ACTIONS(1494), - [anon_sym_float] = ACTIONS(1494), - [anon_sym_range] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_c_char] = ACTIONS(1494), - [anon_sym_c_schar] = ACTIONS(1494), - [anon_sym_c_uchar] = ACTIONS(1494), - [anon_sym_c_short] = ACTIONS(1494), - [anon_sym_c_ushort] = ACTIONS(1494), - [anon_sym_c_int] = ACTIONS(1494), - [anon_sym_c_uint] = ACTIONS(1494), - [anon_sym_c_long] = ACTIONS(1494), - [anon_sym_c_ulong] = ACTIONS(1494), - [anon_sym_c_longlong] = ACTIONS(1494), - [anon_sym_c_ulonglong] = ACTIONS(1494), - [anon_sym_c_float] = ACTIONS(1494), - [anon_sym_c_double] = ACTIONS(1494), - [anon_sym_c_longdouble] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_COLON] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_defer] = ACTIONS(1494), - [anon_sym_errdefer] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_else] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_expand] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_orelse] = ACTIONS(1494), - [anon_sym_catch] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1492), - [anon_sym_BANG_EQ] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_LT_EQ] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_GT_EQ] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1492), - [anon_sym_LT_LT_PIPE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1494), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_unreachable] = ACTIONS(1494), - [anon_sym_undefined] = ACTIONS(1494), - [sym_sink] = ACTIONS(1494), - [sym_integer] = ACTIONS(1494), - [sym_float] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym_multiline_string] = ACTIONS(1492), - [sym_character] = ACTIONS(1492), + [STATE(402)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2474), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1492), + [sym__newline] = ACTIONS(2257), }, - [STATE(1023)] = { - [aux_sym_import_declaration_repeat1] = STATE(4861), - [aux_sym_capture_list_repeat1] = STATE(3926), - [sym_identifier] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_LT_LT_PIPE] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [STATE(403)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2695), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2375), + [sym__newline] = ACTIONS(2257), }, - [STATE(1024)] = { - [sym_type] = STATE(559), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(362), - [sym_identifier] = ACTIONS(364), - [anon_sym_import] = ACTIONS(367), - [anon_sym_test] = ACTIONS(367), - [anon_sym_hide] = ACTIONS(367), - [anon_sym_func] = ACTIONS(339), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(378), - [anon_sym_mut] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(383), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(362), - [anon_sym_SLASH_EQ] = ACTIONS(362), - [anon_sym_AMP_EQ] = ACTIONS(362), - [anon_sym_PIPE_EQ] = ACTIONS(362), - [anon_sym_xor_EQ] = ACTIONS(362), - [anon_sym_LT_LT_EQ] = ACTIONS(362), - [anon_sym_GT_GT_EQ] = ACTIONS(362), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(362), - [anon_sym_else] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [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_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [STATE(404)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3252), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_error_capture] = STATE(2500), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2285), }, - [STATE(1025)] = { - [sym_type] = STATE(579), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(339), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_mut] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_LT_LT_PIPE] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [STATE(405)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3263), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_error_capture] = STATE(2503), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(2257), }, - [STATE(1026)] = { - [sym_type] = STATE(574), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(339), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_LT_LT_PIPE] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [STATE(406)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2156), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(2257), }, - [STATE(1027)] = { - [sym_type] = STATE(592), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(393), - [anon_sym_import] = ACTIONS(396), - [anon_sym_test] = ACTIONS(396), - [anon_sym_hide] = ACTIONS(396), - [anon_sym_func] = ACTIONS(339), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(404), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_mut] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_xor_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(391), - [anon_sym_else] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_LT_LT_PIPE] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), + [STATE(407)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3252), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_error_capture] = STATE(2518), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(2289), }, - [STATE(1028)] = { - [sym_argument_list] = STATE(568), - [sym_identifier] = ACTIONS(2155), - [anon_sym_func] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(2155), - [anon_sym_noreturn] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_anyopaque] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_uint] = ACTIONS(2155), - [anon_sym_float] = ACTIONS(2155), - [anon_sym_range] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_c_char] = ACTIONS(2155), - [anon_sym_c_schar] = ACTIONS(2155), - [anon_sym_c_uchar] = ACTIONS(2155), - [anon_sym_c_short] = ACTIONS(2155), - [anon_sym_c_ushort] = ACTIONS(2155), - [anon_sym_c_int] = ACTIONS(2155), - [anon_sym_c_uint] = ACTIONS(2155), - [anon_sym_c_long] = ACTIONS(2155), - [anon_sym_c_ulong] = ACTIONS(2155), - [anon_sym_c_longlong] = ACTIONS(2155), - [anon_sym_c_ulonglong] = ACTIONS(2155), - [anon_sym_c_float] = ACTIONS(2155), - [anon_sym_c_double] = ACTIONS(2155), - [anon_sym_c_longdouble] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2385), - [anon_sym_DASH_EQ] = ACTIONS(2385), - [anon_sym_STAR_EQ] = ACTIONS(2385), - [anon_sym_SLASH_EQ] = ACTIONS(2385), - [anon_sym_AMP_EQ] = ACTIONS(2385), - [anon_sym_PIPE_EQ] = ACTIONS(2385), - [anon_sym_xor_EQ] = ACTIONS(2385), - [anon_sym_LT_LT_EQ] = ACTIONS(2385), - [anon_sym_GT_GT_EQ] = ACTIONS(2385), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2385), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_expand] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1387), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_xor] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [anon_sym_unreachable] = ACTIONS(2155), - [anon_sym_undefined] = ACTIONS(2155), - [sym_sink] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), + [STATE(408)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3263), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_error_capture] = STATE(2520), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2159), + [sym__newline] = ACTIONS(2257), }, - [STATE(1029)] = { - [sym_type] = STATE(558), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(362), - [sym_identifier] = ACTIONS(364), - [anon_sym_import] = ACTIONS(367), - [anon_sym_test] = ACTIONS(367), - [anon_sym_hide] = ACTIONS(367), - [anon_sym_func] = ACTIONS(339), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(378), - [anon_sym_mut] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(383), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(362), - [anon_sym_SLASH_EQ] = ACTIONS(362), - [anon_sym_AMP_EQ] = ACTIONS(362), - [anon_sym_PIPE_EQ] = ACTIONS(362), - [anon_sym_xor_EQ] = ACTIONS(362), - [anon_sym_LT_LT_EQ] = ACTIONS(362), - [anon_sym_GT_GT_EQ] = ACTIONS(362), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(362), - [anon_sym_else] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [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_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [STATE(409)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2512), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2257), }, - [STATE(1030)] = { - [sym_type] = STATE(688), - [sym__type_atom] = STATE(540), - [sym_parenthesized_type] = STATE(540), - [sym_named_type] = STATE(540), - [sym_intrinsic_type] = STATE(540), - [sym_optional_type] = STATE(540), - [sym_pointer_type] = STATE(540), - [sym_array_type] = STATE(540), - [sym_function_type] = STATE(540), - [sym_builtin_type] = STATE(540), - [sym_qualified_identifier] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(329), - [sym_identifier] = ACTIONS(331), - [anon_sym_import] = ACTIONS(334), - [anon_sym_test] = ACTIONS(334), - [anon_sym_hide] = ACTIONS(334), - [anon_sym_func] = ACTIONS(339), - [anon_sym_c_func] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_struct_type_BANG] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(346), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_mut] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(356), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_SLASH_EQ] = ACTIONS(329), - [anon_sym_AMP_EQ] = ACTIONS(329), - [anon_sym_PIPE_EQ] = ACTIONS(329), - [anon_sym_xor_EQ] = ACTIONS(329), - [anon_sym_LT_LT_EQ] = ACTIONS(329), - [anon_sym_GT_GT_EQ] = ACTIONS(329), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(329), - [anon_sym_else] = ACTIONS(334), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_orelse] = ACTIONS(334), - [anon_sym_catch] = ACTIONS(334), - [anon_sym_or] = ACTIONS(334), - [anon_sym_and] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_xor] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_LT_LT_PIPE] = ACTIONS(334), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(329), + [STATE(410)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2612), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(329), + [sym__newline] = ACTIONS(2257), }, - [STATE(1031)] = { - [sym_identifier] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_else] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_LT_LT_PIPE] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [STATE(411)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2627), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2291), }, - [STATE(1032)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [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(2389), - [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(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [STATE(412)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2629), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), + [sym__newline] = ACTIONS(2257), }, - [STATE(1033)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1486), - [anon_sym_func] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_anyopaque] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_int] = ACTIONS(1486), - [anon_sym_uint] = ACTIONS(1486), - [anon_sym_float] = ACTIONS(1486), - [anon_sym_range] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_c_char] = ACTIONS(1486), - [anon_sym_c_schar] = ACTIONS(1486), - [anon_sym_c_uchar] = ACTIONS(1486), - [anon_sym_c_short] = ACTIONS(1486), - [anon_sym_c_ushort] = ACTIONS(1486), - [anon_sym_c_int] = ACTIONS(1486), - [anon_sym_c_uint] = ACTIONS(1486), - [anon_sym_c_long] = ACTIONS(1486), - [anon_sym_c_ulong] = ACTIONS(1486), - [anon_sym_c_longlong] = ACTIONS(1486), - [anon_sym_c_ulonglong] = ACTIONS(1486), - [anon_sym_c_float] = ACTIONS(1486), - [anon_sym_c_double] = ACTIONS(1486), - [anon_sym_c_longdouble] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_defer] = ACTIONS(1486), - [anon_sym_errdefer] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_expand] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_orelse] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [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(2389), - [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(1484), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_unreachable] = ACTIONS(1486), - [anon_sym_undefined] = ACTIONS(1486), - [sym_sink] = ACTIONS(1486), - [sym_integer] = ACTIONS(1486), - [sym_float] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_multiline_string] = ACTIONS(1484), - [sym_character] = ACTIONS(1484), + [STATE(413)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2640), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(414), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1484), + [sym__newline] = ACTIONS(2307), }, - [STATE(1034)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1486), - [anon_sym_func] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_anyopaque] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_int] = ACTIONS(1486), - [anon_sym_uint] = ACTIONS(1486), - [anon_sym_float] = ACTIONS(1486), - [anon_sym_range] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_c_char] = ACTIONS(1486), - [anon_sym_c_schar] = ACTIONS(1486), - [anon_sym_c_uchar] = ACTIONS(1486), - [anon_sym_c_short] = ACTIONS(1486), - [anon_sym_c_ushort] = ACTIONS(1486), - [anon_sym_c_int] = ACTIONS(1486), - [anon_sym_c_uint] = ACTIONS(1486), - [anon_sym_c_long] = ACTIONS(1486), - [anon_sym_c_ulong] = ACTIONS(1486), - [anon_sym_c_longlong] = ACTIONS(1486), - [anon_sym_c_ulonglong] = ACTIONS(1486), - [anon_sym_c_float] = ACTIONS(1486), - [anon_sym_c_double] = ACTIONS(1486), - [anon_sym_c_longdouble] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_defer] = ACTIONS(1486), - [anon_sym_errdefer] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_expand] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_orelse] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [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(2389), - [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(1484), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_unreachable] = ACTIONS(1486), - [anon_sym_undefined] = ACTIONS(1486), - [sym_sink] = ACTIONS(1486), - [sym_integer] = ACTIONS(1486), - [sym_float] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_multiline_string] = ACTIONS(1484), - [sym_character] = ACTIONS(1484), + [STATE(414)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2642), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1484), + [sym__newline] = ACTIONS(2257), }, - [STATE(1035)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(2389), - [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(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [STATE(415)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2176), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), + [sym__newline] = ACTIONS(2309), }, - [STATE(1036)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [STATE(416)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2652), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), + [sym__newline] = ACTIONS(2323), }, - [STATE(1037)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1401), - [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(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [STATE(417)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2654), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), + [sym__newline] = ACTIONS(2257), }, - [STATE(1038)] = { - [sym_type] = STATE(5065), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2393), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_else] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), + [STATE(418)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2541), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2325), }, - [STATE(1039)] = { - [sym_identifier] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_return] = ACTIONS(477), - [anon_sym_yield] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(486), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_defer] = ACTIONS(477), - [anon_sym_errdefer] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_else] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_expand] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_LT_LT_PIPE] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_try] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [anon_sym_null] = ACTIONS(477), - [anon_sym_unreachable] = ACTIONS(477), - [anon_sym_undefined] = ACTIONS(477), - [sym_sink] = ACTIONS(477), - [sym_integer] = ACTIONS(477), - [sym_float] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_multiline_string] = ACTIONS(486), - [sym_character] = ACTIONS(486), + [STATE(419)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2663), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(420), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2339), }, - [STATE(1040)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [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(2389), - [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(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [STATE(420)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2665), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), + [sym__newline] = ACTIONS(2257), }, - [STATE(1041)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [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(2389), - [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(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [STATE(421)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2180), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), + [sym__newline] = ACTIONS(2257), }, - [STATE(1042)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1409), - [anon_sym_func] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_anyopaque] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_range] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_c_char] = ACTIONS(1409), - [anon_sym_c_schar] = ACTIONS(1409), - [anon_sym_c_uchar] = ACTIONS(1409), - [anon_sym_c_short] = ACTIONS(1409), - [anon_sym_c_ushort] = ACTIONS(1409), - [anon_sym_c_int] = ACTIONS(1409), - [anon_sym_c_uint] = ACTIONS(1409), - [anon_sym_c_long] = ACTIONS(1409), - [anon_sym_c_ulong] = ACTIONS(1409), - [anon_sym_c_longlong] = ACTIONS(1409), - [anon_sym_c_ulonglong] = ACTIONS(1409), - [anon_sym_c_float] = ACTIONS(1409), - [anon_sym_c_double] = ACTIONS(1409), - [anon_sym_c_longdouble] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_errdefer] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_expand] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_orelse] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_or] = ACTIONS(1409), - [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(2389), - [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(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_unreachable] = ACTIONS(1409), - [anon_sym_undefined] = ACTIONS(1409), - [sym_sink] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [sym_float] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_multiline_string] = ACTIONS(1407), - [sym_character] = ACTIONS(1407), + [STATE(422)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2812), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1407), + [sym__newline] = ACTIONS(2341), }, - [STATE(1043)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1409), - [anon_sym_func] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_anyopaque] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_range] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_c_char] = ACTIONS(1409), - [anon_sym_c_schar] = ACTIONS(1409), - [anon_sym_c_uchar] = ACTIONS(1409), - [anon_sym_c_short] = ACTIONS(1409), - [anon_sym_c_ushort] = ACTIONS(1409), - [anon_sym_c_int] = ACTIONS(1409), - [anon_sym_c_uint] = ACTIONS(1409), - [anon_sym_c_long] = ACTIONS(1409), - [anon_sym_c_ulong] = ACTIONS(1409), - [anon_sym_c_longlong] = ACTIONS(1409), - [anon_sym_c_ulonglong] = ACTIONS(1409), - [anon_sym_c_float] = ACTIONS(1409), - [anon_sym_c_double] = ACTIONS(1409), - [anon_sym_c_longdouble] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_errdefer] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_expand] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_orelse] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_or] = ACTIONS(1409), - [anon_sym_and] = ACTIONS(1409), - [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(2389), - [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(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_unreachable] = ACTIONS(1409), - [anon_sym_undefined] = ACTIONS(1409), - [sym_sink] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [sym_float] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_multiline_string] = ACTIONS(1407), - [sym_character] = ACTIONS(1407), + [STATE(423)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2823), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1407), + [sym__newline] = ACTIONS(2257), }, - [STATE(1044)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(2389), - [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(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [STATE(424)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2193), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), + [sym__newline] = ACTIONS(2343), }, - [STATE(1045)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [STATE(425)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2673), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), + [sym__newline] = ACTIONS(2345), }, - [STATE(1046)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_expand] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_unreachable] = ACTIONS(1401), - [anon_sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [STATE(426)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2675), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), + [sym__newline] = ACTIONS(2257), }, - [STATE(1047)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [STATE(427)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2197), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), + [sym__newline] = ACTIONS(2257), }, - [STATE(1048)] = { - [sym_type] = STATE(5053), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(2364), - [anon_sym_import] = ACTIONS(477), - [anon_sym_test] = ACTIONS(477), - [anon_sym_hide] = ACTIONS(477), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_else] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), + [STATE(428)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2682), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(429), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2347), }, - [STATE(1049)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(2397), - [anon_sym_func] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(2397), - [anon_sym_noreturn] = ACTIONS(2397), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_anyopaque] = ACTIONS(2397), - [anon_sym_bool] = ACTIONS(2397), - [anon_sym_int] = ACTIONS(2397), - [anon_sym_uint] = ACTIONS(2397), - [anon_sym_float] = ACTIONS(2397), - [anon_sym_range] = ACTIONS(2397), - [anon_sym_i8] = ACTIONS(2397), - [anon_sym_i16] = ACTIONS(2397), - [anon_sym_i32] = ACTIONS(2397), - [anon_sym_i64] = ACTIONS(2397), - [anon_sym_u8] = ACTIONS(2397), - [anon_sym_u16] = ACTIONS(2397), - [anon_sym_u32] = ACTIONS(2397), - [anon_sym_u64] = ACTIONS(2397), - [anon_sym_isize] = ACTIONS(2397), - [anon_sym_usize] = ACTIONS(2397), - [anon_sym_f32] = ACTIONS(2397), - [anon_sym_f64] = ACTIONS(2397), - [anon_sym_c_char] = ACTIONS(2397), - [anon_sym_c_schar] = ACTIONS(2397), - [anon_sym_c_uchar] = ACTIONS(2397), - [anon_sym_c_short] = ACTIONS(2397), - [anon_sym_c_ushort] = ACTIONS(2397), - [anon_sym_c_int] = ACTIONS(2397), - [anon_sym_c_uint] = ACTIONS(2397), - [anon_sym_c_long] = ACTIONS(2397), - [anon_sym_c_ulong] = ACTIONS(2397), - [anon_sym_c_longlong] = ACTIONS(2397), - [anon_sym_c_ulonglong] = ACTIONS(2397), - [anon_sym_c_float] = ACTIONS(2397), - [anon_sym_c_double] = ACTIONS(2397), - [anon_sym_c_longdouble] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_defer] = ACTIONS(2397), - [anon_sym_errdefer] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_expand] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_DOT_DOT_EQ] = ACTIONS(67), - [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(2389), - [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(2399), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [anon_sym_null] = ACTIONS(2397), - [anon_sym_unreachable] = ACTIONS(2397), - [anon_sym_undefined] = ACTIONS(2397), + [STATE(429)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2684), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(430)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2540), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2349), + }, + [STATE(431)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2690), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2351), + }, + [STATE(432)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2692), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(433)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2543), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(434)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2212), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2353), + }, + [STATE(435)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2568), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(436)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2700), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(437), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2367), + }, + [STATE(437)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2702), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(438)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2216), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(439)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2707), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2381), + }, + [STATE(440)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2709), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(441)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2163), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2383), + }, + [STATE(442)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10491), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_error_capture] = STATE(2632), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(443)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2717), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), [sym_sink] = ACTIONS(2397), - [sym_integer] = ACTIONS(2397), - [sym_float] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym_multiline_string] = ACTIONS(2399), - [sym_character] = ACTIONS(2399), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2399), }, - [STATE(1050)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_xor] = ACTIONS(1369), - [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(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [STATE(444)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2719), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), + [sym__newline] = ACTIONS(2257), }, - [STATE(1051)] = { - [sym_argument_list] = STATE(912), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_expand] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [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(2389), - [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(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_unreachable] = ACTIONS(1369), - [anon_sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [STATE(445)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7220), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_error_capture] = STATE(2232), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), + [sym__newline] = ACTIONS(2401), }, - [STATE(1052)] = { - [sym_type] = STATE(5067), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(2366), - [anon_sym_import] = ACTIONS(477), - [anon_sym_test] = ACTIONS(477), - [anon_sym_hide] = ACTIONS(477), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), + [STATE(446)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10703), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_error_capture] = STATE(2724), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(447), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2415), }, - [STATE(1053)] = { - [sym_type] = STATE(5042), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(2401), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_else] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), + [STATE(447)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10491), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_error_capture] = STATE(2726), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2257), }, - [STATE(1054)] = { - [sym_type] = STATE(5080), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2403), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), + [STATE(448)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7235), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_error_capture] = STATE(2236), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2257), }, - [STATE(1055)] = { - [sym_type] = STATE(5087), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(2405), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), + [STATE(449)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2730), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2429), }, - [STATE(1056)] = { - [sym_type] = STATE(3090), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(2407), - [anon_sym_func] = ACTIONS(511), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(2412), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(2415), - [anon_sym_mut] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_LT_LT_PIPE] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [STATE(450)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2732), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(2257), }, - [STATE(1057)] = { - [sym_type] = STATE(5042), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(2401), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_else] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), + [STATE(451)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2561), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2431), }, - [STATE(1058)] = { - [sym_type] = STATE(3029), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(2407), - [anon_sym_func] = ACTIONS(511), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_RPAREN] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(2424), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2432), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_SLASH_EQ] = ACTIONS(329), - [anon_sym_AMP_EQ] = ACTIONS(329), - [anon_sym_PIPE_EQ] = ACTIONS(329), - [anon_sym_xor_EQ] = ACTIONS(329), - [anon_sym_LT_LT_EQ] = ACTIONS(329), - [anon_sym_GT_GT_EQ] = ACTIONS(329), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(329), - [anon_sym_else] = ACTIONS(334), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_orelse] = ACTIONS(334), - [anon_sym_catch] = ACTIONS(334), - [anon_sym_or] = ACTIONS(334), - [anon_sym_and] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_xor] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_LT_LT_PIPE] = ACTIONS(334), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(329), + [STATE(452)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2739), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(453), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(329), + [sym__newline] = ACTIONS(2445), }, - [STATE(1059)] = { - [sym_type] = STATE(3075), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(2407), - [anon_sym_func] = ACTIONS(511), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_mut] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(362), - [anon_sym_SLASH_EQ] = ACTIONS(362), - [anon_sym_AMP_EQ] = ACTIONS(362), - [anon_sym_PIPE_EQ] = ACTIONS(362), - [anon_sym_xor_EQ] = ACTIONS(362), - [anon_sym_LT_LT_EQ] = ACTIONS(362), - [anon_sym_GT_GT_EQ] = ACTIONS(362), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(362), - [anon_sym_else] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [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_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [STATE(453)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2741), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2257), }, - [STATE(1060)] = { - [sym_type] = STATE(3027), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(2407), - [anon_sym_func] = ACTIONS(511), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(2450), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(519), - [anon_sym_LBRACK] = ACTIONS(2456), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_xor_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(391), - [anon_sym_else] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_LT_LT_PIPE] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), + [STATE(454)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2567), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(2257), }, - [STATE(1061)] = { - [sym_type] = STATE(3087), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(2407), - [anon_sym_func] = ACTIONS(511), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(2412), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(2415), - [anon_sym_mut] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(418), - [anon_sym_DASH_EQ] = ACTIONS(418), - [anon_sym_STAR_EQ] = ACTIONS(418), - [anon_sym_SLASH_EQ] = ACTIONS(418), - [anon_sym_AMP_EQ] = ACTIONS(418), - [anon_sym_PIPE_EQ] = ACTIONS(418), - [anon_sym_xor_EQ] = ACTIONS(418), - [anon_sym_LT_LT_EQ] = ACTIONS(418), - [anon_sym_GT_GT_EQ] = ACTIONS(418), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(418), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_LT_LT_PIPE] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [STATE(455)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2749), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(456), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(2461), }, - [STATE(1062)] = { - [sym_type] = STATE(3073), - [sym__type_atom] = STATE(2999), - [sym_parenthesized_type] = STATE(2999), - [sym_named_type] = STATE(2999), - [sym_intrinsic_type] = STATE(2999), - [sym_optional_type] = STATE(2999), - [sym_pointer_type] = STATE(2999), - [sym_array_type] = STATE(2999), - [sym_function_type] = STATE(2999), - [sym_builtin_type] = STATE(2999), - [sym_qualified_identifier] = STATE(3004), - [sym_identifier] = ACTIONS(2407), - [anon_sym_func] = ACTIONS(511), - [anon_sym_c_func] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_struct_type_BANG] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_mut] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(362), - [anon_sym_SLASH_EQ] = ACTIONS(362), - [anon_sym_AMP_EQ] = ACTIONS(362), - [anon_sym_PIPE_EQ] = ACTIONS(362), - [anon_sym_xor_EQ] = ACTIONS(362), - [anon_sym_LT_LT_EQ] = ACTIONS(362), - [anon_sym_GT_GT_EQ] = ACTIONS(362), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(362), - [anon_sym_else] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [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_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [STATE(456)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2751), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2257), }, - [STATE(1063)] = { - [sym_type] = STATE(5065), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2393), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_else] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), + [STATE(457)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2756), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2475), }, - [STATE(1064)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1064), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(2461), - [anon_sym_func] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_DOLLAR] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2484), - [anon_sym_void] = ACTIONS(2487), - [anon_sym_noreturn] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_anyopaque] = ACTIONS(2487), - [anon_sym_bool] = ACTIONS(2487), - [anon_sym_int] = ACTIONS(2487), - [anon_sym_uint] = ACTIONS(2487), - [anon_sym_float] = ACTIONS(2487), - [anon_sym_range] = ACTIONS(2487), - [anon_sym_i8] = ACTIONS(2487), - [anon_sym_i16] = ACTIONS(2487), - [anon_sym_i32] = ACTIONS(2487), - [anon_sym_i64] = ACTIONS(2487), - [anon_sym_u8] = ACTIONS(2487), - [anon_sym_u16] = ACTIONS(2487), - [anon_sym_u32] = ACTIONS(2487), - [anon_sym_u64] = ACTIONS(2487), - [anon_sym_isize] = ACTIONS(2487), - [anon_sym_usize] = ACTIONS(2487), - [anon_sym_f32] = ACTIONS(2487), - [anon_sym_f64] = ACTIONS(2487), - [anon_sym_c_char] = ACTIONS(2487), - [anon_sym_c_schar] = ACTIONS(2487), - [anon_sym_c_uchar] = ACTIONS(2487), - [anon_sym_c_short] = ACTIONS(2487), - [anon_sym_c_ushort] = ACTIONS(2487), - [anon_sym_c_int] = ACTIONS(2487), - [anon_sym_c_uint] = ACTIONS(2487), - [anon_sym_c_long] = ACTIONS(2487), - [anon_sym_c_ulong] = ACTIONS(2487), - [anon_sym_c_longlong] = ACTIONS(2487), - [anon_sym_c_ulonglong] = ACTIONS(2487), - [anon_sym_c_float] = ACTIONS(2487), - [anon_sym_c_double] = ACTIONS(2487), - [anon_sym_c_longdouble] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2490), - [anon_sym_expand] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [anon_sym_null] = ACTIONS(2505), - [anon_sym_unreachable] = ACTIONS(2508), - [anon_sym_undefined] = ACTIONS(2511), - [sym_sink] = ACTIONS(2514), - [sym_integer] = ACTIONS(2514), - [sym_float] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym_multiline_string] = ACTIONS(2517), - [sym_character] = ACTIONS(2517), + [STATE(458)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2758), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(459)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2257), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2477), + }, + [STATE(460)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2762), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(461), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2491), + }, + [STATE(461)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2764), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(462)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2260), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(463)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2768), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(464), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2507), + }, + [STATE(464)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2770), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(465)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2813), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(466)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2774), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(467), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2521), + }, + [STATE(467)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2776), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(468)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2125), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2523), }, - [STATE(1065)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1064), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_expand] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(469)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7220), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_error_capture] = STATE(2780), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2532), + [sym__newline] = ACTIONS(2537), }, - [STATE(1066)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1064), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_expand] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(470)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7235), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_error_capture] = STATE(2782), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2532), + [sym__newline] = ACTIONS(2257), }, - [STATE(1067)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1073), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1073), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_expand] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(471)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2288), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2538), + [sym__newline] = ACTIONS(2539), }, - [STATE(1068)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3385), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1072), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_RBRACK] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2550), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(472)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2786), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(473), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2552), + [sym__newline] = ACTIONS(2553), }, - [STATE(1069)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3388), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_RBRACK] = ACTIONS(2558), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(473)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_error_capture] = STATE(2788), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2562), + [sym__newline] = ACTIONS(2257), }, - [STATE(1070)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3400), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2397), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2568), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2572), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(474)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2792), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2574), + [sym__newline] = ACTIONS(2555), }, - [STATE(1071)] = { - [sym_type] = STATE(5080), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2403), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), + [STATE(475)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2854), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2257), }, - [STATE(1072)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3386), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_RBRACK] = ACTIONS(2580), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2582), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(476)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_error_capture] = STATE(2294), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2584), + [sym__newline] = ACTIONS(2257), }, - [STATE(1073)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1064), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_expand] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(477)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9084), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_error_capture] = STATE(2798), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2532), + [sym__newline] = ACTIONS(2581), }, - [STATE(1074)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1066), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1066), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_expand] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(478)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9096), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_error_capture] = STATE(2800), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2590), + [sym__newline] = ACTIONS(2257), }, - [STATE(1075)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3388), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1070), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_RBRACK] = ACTIONS(2592), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(479)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2131), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2594), + [sym__newline] = ACTIONS(2257), }, - [STATE(1076)] = { - [sym_type] = STATE(5087), - [sym__type_atom] = STATE(3857), - [sym_parenthesized_type] = STATE(3857), - [sym_named_type] = STATE(3857), - [sym_intrinsic_type] = STATE(3857), - [sym_optional_type] = STATE(3857), - [sym_pointer_type] = STATE(3857), - [sym_array_type] = STATE(3857), - [sym_function_type] = STATE(3857), - [sym_builtin_type] = STATE(3857), - [sym_qualified_identifier] = STATE(3856), - [sym_identifier] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(2405), - [anon_sym_func] = ACTIONS(471), - [anon_sym_c_func] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_struct_type_BANG] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_xor_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(486), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_LT_LT_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), + [STATE(480)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2805), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), + [sym__newline] = ACTIONS(2595), }, - [STATE(1077)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1065), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1065), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_expand] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(481)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2807), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2596), + [sym__newline] = ACTIONS(2257), }, - [STATE(1078)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1080), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_expand] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(482)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2818), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2600), + [sym__newline] = ACTIONS(2609), }, - [STATE(1079)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3400), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2397), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2572), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(483)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2820), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2574), + [sym__newline] = ACTIONS(2257), }, - [STATE(1080)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_match_arm] = STATE(1064), - [sym_expression] = STATE(3395), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_match_statement_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_expand] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(484)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3252), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_error_capture] = STATE(2829), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2532), + [sym__newline] = ACTIONS(2623), }, - [STATE(1081)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3497), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1114), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_RBRACK] = ACTIONS(2608), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2610), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(485)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3263), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_error_capture] = STATE(2831), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2612), + [sym__newline] = ACTIONS(2257), }, - [STATE(1082)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3378), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_RBRACK] = ACTIONS(2558), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(486)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_error_capture] = STATE(2164), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2614), + [sym__newline] = ACTIONS(2239), }, - [STATE(1083)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3493), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_RBRACK] = ACTIONS(2620), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2622), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(487)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9084), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_error_capture] = STATE(2326), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2624), + [sym__newline] = ACTIONS(2625), }, - [STATE(1084)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3492), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2408), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_RBRACK] = ACTIONS(2630), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2632), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(488)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9096), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_error_capture] = STATE(2330), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2634), + [sym__newline] = ACTIONS(2257), }, - [STATE(1085)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3392), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2412), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2638), - [anon_sym_RBRACK] = ACTIONS(2640), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2642), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(489)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2836), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2644), + [sym__newline] = ACTIONS(2639), }, - [STATE(1086)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3487), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1088), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_RBRACK] = ACTIONS(2650), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2652), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(490)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2838), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2654), + [sym__newline] = ACTIONS(2257), }, - [STATE(1087)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3403), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1089), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_RBRACK] = ACTIONS(2656), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2652), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(491)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10703), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_error_capture] = STATE(2621), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2658), + [sym__newline] = ACTIONS(2641), }, - [STATE(1088)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3486), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2412), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2638), - [anon_sym_RBRACK] = ACTIONS(2660), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2642), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(492)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_error_capture] = STATE(2852), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(475), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2644), + [sym__newline] = ACTIONS(2643), }, - [STATE(1089)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3394), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2412), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2638), - [anon_sym_RBRACK] = ACTIONS(2662), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2642), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(493)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_error_capture] = STATE(2177), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2644), + [sym__newline] = ACTIONS(2257), }, - [STATE(1090)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3384), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2402), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2572), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(494)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9165), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9165), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(495)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8609), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8609), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(496)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_test] = ACTIONS(2647), + [anon_sym_hide] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(497)] = { + [sym_variant_payload] = STATE(2548), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_import] = ACTIONS(2659), + [anon_sym_test] = ACTIONS(2659), + [anon_sym_hide] = ACTIONS(2659), + [anon_sym_func] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_DOLLAR] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_RBRACK] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_anyopaque] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_int] = ACTIONS(2659), + [anon_sym_uint] = ACTIONS(2659), + [anon_sym_float] = ACTIONS(2659), + [anon_sym_range] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_c_char] = ACTIONS(2659), + [anon_sym_c_schar] = ACTIONS(2659), + [anon_sym_c_uchar] = ACTIONS(2659), + [anon_sym_c_short] = ACTIONS(2659), + [anon_sym_c_ushort] = ACTIONS(2659), + [anon_sym_c_int] = ACTIONS(2659), + [anon_sym_c_uint] = ACTIONS(2659), + [anon_sym_c_long] = ACTIONS(2659), + [anon_sym_c_ulong] = ACTIONS(2659), + [anon_sym_c_longlong] = ACTIONS(2659), + [anon_sym_c_ulonglong] = ACTIONS(2659), + [anon_sym_c_float] = ACTIONS(2659), + [anon_sym_c_double] = ACTIONS(2659), + [anon_sym_c_longdouble] = ACTIONS(2659), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2657), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_defer] = ACTIONS(2659), + [anon_sym_errdefer] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_expand] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_match] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2657), + [anon_sym_orelse] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_xor] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_PIPE] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_null] = ACTIONS(2659), + [anon_sym_unreachable] = ACTIONS(2659), + [anon_sym_undefined] = ACTIONS(2659), + [sym_sink] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_multiline_string] = ACTIONS(2657), + [sym_character] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2657), + }, + [STATE(498)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_test] = ACTIONS(2666), + [anon_sym_hide] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2664), }, - [STATE(1091)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3379), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_RBRACK] = ACTIONS(2666), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2652), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(499)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9880), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9880), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2668), }, - [STATE(1092)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3472), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2399), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_RBRACK] = ACTIONS(2674), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2676), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(500)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9880), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9880), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2678), + [sym__newline] = ACTIONS(2257), }, - [STATE(1093)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3480), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1095), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_RBRACK] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2686), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(501)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_test] = ACTIONS(2672), + [anon_sym_hide] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2688), + [sym__newline] = ACTIONS(2670), }, - [STATE(1094)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3390), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1096), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2692), + [STATE(502)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_test] = ACTIONS(2672), + [anon_sym_hide] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(503)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_test] = ACTIONS(2672), + [anon_sym_hide] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(504)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_test] = ACTIONS(2672), + [anon_sym_hide] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(505)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_import] = ACTIONS(2692), + [anon_sym_test] = ACTIONS(2692), + [anon_sym_hide] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_RBRACK] = ACTIONS(2690), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2690), + [anon_sym_xor_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_COLON] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_errdefer] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_expand] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_unreachable] = ACTIONS(2692), + [anon_sym_undefined] = ACTIONS(2692), + [sym_sink] = ACTIONS(2692), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [sym_multiline_string] = ACTIONS(2690), + [sym_character] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(506)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_import] = ACTIONS(2692), + [anon_sym_test] = ACTIONS(2692), + [anon_sym_hide] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_RBRACK] = ACTIONS(2690), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2690), + [anon_sym_xor_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_COLON] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_errdefer] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_expand] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_unreachable] = ACTIONS(2692), + [anon_sym_undefined] = ACTIONS(2692), + [sym_sink] = ACTIONS(2692), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [sym_multiline_string] = ACTIONS(2690), + [sym_character] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(507)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_test] = ACTIONS(2672), + [anon_sym_hide] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(508)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_test] = ACTIONS(2672), + [anon_sym_hide] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(509)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_import] = ACTIONS(2696), + [anon_sym_test] = ACTIONS(2696), + [anon_sym_hide] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2694), [anon_sym_RBRACK] = ACTIONS(2694), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_xor_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_errdefer] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_expand] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_unreachable] = ACTIONS(2696), + [anon_sym_undefined] = ACTIONS(2696), [sym_sink] = ACTIONS(2696), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [sym_multiline_string] = ACTIONS(2694), + [sym_character] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(510)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9888), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9888), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(511)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2698), }, - [STATE(1095)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3484), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2407), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2704), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2706), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(512)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9893), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9893), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(527), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2708), + [sym__newline] = ACTIONS(2700), }, - [STATE(1096)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3393), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2405), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2712), + [STATE(513)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9893), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9893), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(514)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_test] = ACTIONS(2704), + [anon_sym_hide] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(515)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_test] = ACTIONS(2704), + [anon_sym_hide] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(516)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_test] = ACTIONS(2704), + [anon_sym_hide] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(517)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_test] = ACTIONS(2704), + [anon_sym_hide] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(518)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_import] = ACTIONS(2708), + [anon_sym_test] = ACTIONS(2708), + [anon_sym_hide] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_RBRACK] = ACTIONS(2706), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_xor_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_COLON] = ACTIONS(2706), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_defer] = ACTIONS(2708), + [anon_sym_errdefer] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_expand] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_unreachable] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [sym_sink] = ACTIONS(2708), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [sym_multiline_string] = ACTIONS(2706), + [sym_character] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(519)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_import] = ACTIONS(2708), + [anon_sym_test] = ACTIONS(2708), + [anon_sym_hide] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_RBRACK] = ACTIONS(2706), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_xor_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_COLON] = ACTIONS(2706), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_defer] = ACTIONS(2708), + [anon_sym_errdefer] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_expand] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_unreachable] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [sym_sink] = ACTIONS(2708), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [sym_multiline_string] = ACTIONS(2706), + [sym_character] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(520)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_test] = ACTIONS(2704), + [anon_sym_hide] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(521)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_test] = ACTIONS(2704), + [anon_sym_hide] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(522)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_test] = ACTIONS(2712), + [anon_sym_hide] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_RBRACK] = ACTIONS(2710), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_PLUS_EQ] = ACTIONS(2710), + [anon_sym_DASH_EQ] = ACTIONS(2710), + [anon_sym_STAR_EQ] = ACTIONS(2710), + [anon_sym_SLASH_EQ] = ACTIONS(2710), + [anon_sym_AMP_EQ] = ACTIONS(2710), + [anon_sym_PIPE_EQ] = ACTIONS(2710), + [anon_sym_xor_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_COLON] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_defer] = ACTIONS(2712), + [anon_sym_errdefer] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_expand] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_unreachable] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [sym_sink] = ACTIONS(2712), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [sym_multiline_string] = ACTIONS(2710), + [sym_character] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(523)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2716), + [anon_sym_test] = ACTIONS(2716), + [anon_sym_hide] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2714), [anon_sym_RBRACK] = ACTIONS(2714), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_PLUS_EQ] = ACTIONS(2714), + [anon_sym_DASH_EQ] = ACTIONS(2714), + [anon_sym_STAR_EQ] = ACTIONS(2714), + [anon_sym_SLASH_EQ] = ACTIONS(2714), + [anon_sym_AMP_EQ] = ACTIONS(2714), + [anon_sym_PIPE_EQ] = ACTIONS(2714), + [anon_sym_xor_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_COLON] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_defer] = ACTIONS(2716), + [anon_sym_errdefer] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_expand] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_unreachable] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), [sym_sink] = ACTIONS(2716), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [sym_multiline_string] = ACTIONS(2714), + [sym_character] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(524)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(530), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2718), }, - [STATE(1097)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3399), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2407), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2706), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(525)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2708), + [sym__newline] = ACTIONS(2257), }, - [STATE(1098)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3387), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1100), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_RBRACK] = ACTIONS(2592), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(526)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2720), + }, + [STATE(527)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9882), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9882), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(528)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2722), }, - [STATE(1099)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3503), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2402), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2566), + [STATE(529)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2726), + [anon_sym_import] = ACTIONS(2726), + [anon_sym_test] = ACTIONS(2726), + [anon_sym_hide] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2724), [anon_sym_RBRACK] = ACTIONS(2724), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2572), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2724), + [anon_sym_xor_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_COLON] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_defer] = ACTIONS(2726), + [anon_sym_errdefer] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_expand] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2726), + [anon_sym_unreachable] = ACTIONS(2726), + [anon_sym_undefined] = ACTIONS(2726), + [sym_sink] = ACTIONS(2726), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [sym_multiline_string] = ACTIONS(2724), + [sym_character] = ACTIONS(2724), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2664), + [sym__newline] = ACTIONS(2724), }, - [STATE(1100)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3389), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2402), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2568), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2572), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(530)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2664), + [sym__newline] = ACTIONS(2257), }, - [STATE(1101)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3476), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1104), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_RBRACK] = ACTIONS(2726), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2696), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(531)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(537), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2728), }, - [STATE(1102)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3200), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1738), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(532)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2730), }, - [STATE(1103)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3397), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1105), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_RBRACK] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2550), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(533)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(534)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(540), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2732), }, - [STATE(1104)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3477), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2405), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_RBRACK] = ACTIONS(2734), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2716), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(535)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2718), + [sym__newline] = ACTIONS(2257), }, - [STATE(1105)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3401), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_RBRACK] = ACTIONS(2580), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2582), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(536)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(543), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2734), + }, + [STATE(537)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(538)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(539)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(544), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2736), }, - [STATE(1106)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3482), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1108), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_RBRACK] = ACTIONS(2738), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2550), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(540)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(541)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2738), + }, + [STATE(542)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(546), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2740), }, - [STATE(1107)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3380), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_RBRACK] = ACTIONS(2746), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2748), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(543)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(544)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(545)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(546)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(547)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(548), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2742), + }, + [STATE(548)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(549)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9876), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9876), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(552), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2744), + }, + [STATE(550)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9876), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9876), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(551)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1405), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1405), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2748), + }, + [STATE(552)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9884), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9884), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(553)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9773), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9773), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(557), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2750), }, - [STATE(1108)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3471), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_RBRACK] = ACTIONS(2752), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2582), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(554)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9870), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9870), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(559), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2736), + [sym__newline] = ACTIONS(2752), }, - [STATE(1109)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3382), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2404), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_RBRACK] = ACTIONS(2758), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2760), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(555)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9870), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9870), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(556)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9623), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9623), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(561), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2754), + }, + [STATE(557)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(558)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(564), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2756), + }, + [STATE(559)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9875), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9875), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(560)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9660), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9660), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(566), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2758), + }, + [STATE(561)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(562)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(568), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2760), + }, + [STATE(563)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9626), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9626), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(569), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2762), }, - [STATE(1110)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3488), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1111), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_RBRACK] = ACTIONS(2764), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2748), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(564)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9712), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9712), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(565)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9737), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9737), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(571), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2764), + }, + [STATE(566)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(567)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(574), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2766), }, - [STATE(1111)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3491), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2404), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_RBRACK] = ACTIONS(2768), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2760), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(568)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9668), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9668), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2762), + [sym__newline] = ACTIONS(2257), + }, + [STATE(569)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(570)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(575), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2768), + }, + [STATE(571)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(572)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(576), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2770), + }, + [STATE(573)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9677), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9677), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(577), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2772), + }, + [STATE(574)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9678), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9678), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(575)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9530), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9530), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(576)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9532), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9532), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(577)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(578)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(579), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2774), + }, + [STATE(579)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9606), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9606), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(580)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3358), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3358), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2776), + }, + [STATE(581)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3358), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3358), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(582)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2778), + [anon_sym_func] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_void] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_anyopaque] = ACTIONS(2804), + [anon_sym_bool] = ACTIONS(2804), + [anon_sym_int] = ACTIONS(2804), + [anon_sym_uint] = ACTIONS(2804), + [anon_sym_float] = ACTIONS(2804), + [anon_sym_range] = ACTIONS(2804), + [anon_sym_i8] = ACTIONS(2804), + [anon_sym_i16] = ACTIONS(2804), + [anon_sym_i32] = ACTIONS(2804), + [anon_sym_i64] = ACTIONS(2804), + [anon_sym_u8] = ACTIONS(2804), + [anon_sym_u16] = ACTIONS(2804), + [anon_sym_u32] = ACTIONS(2804), + [anon_sym_u64] = ACTIONS(2804), + [anon_sym_isize] = ACTIONS(2804), + [anon_sym_usize] = ACTIONS(2804), + [anon_sym_f32] = ACTIONS(2804), + [anon_sym_f64] = ACTIONS(2804), + [anon_sym_c_char] = ACTIONS(2804), + [anon_sym_c_schar] = ACTIONS(2804), + [anon_sym_c_uchar] = ACTIONS(2804), + [anon_sym_c_short] = ACTIONS(2804), + [anon_sym_c_ushort] = ACTIONS(2804), + [anon_sym_c_int] = ACTIONS(2804), + [anon_sym_c_uint] = ACTIONS(2804), + [anon_sym_c_long] = ACTIONS(2804), + [anon_sym_c_ulong] = ACTIONS(2804), + [anon_sym_c_longlong] = ACTIONS(2804), + [anon_sym_c_ulonglong] = ACTIONS(2804), + [anon_sym_c_float] = ACTIONS(2804), + [anon_sym_c_double] = ACTIONS(2804), + [anon_sym_c_longdouble] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_yield] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_defer] = ACTIONS(2819), + [anon_sym_errdefer] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_expand] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2784), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_DOT] = ACTIONS(2843), + [anon_sym_true] = ACTIONS(2846), + [anon_sym_false] = ACTIONS(2846), + [anon_sym_null] = ACTIONS(2849), + [anon_sym_unreachable] = ACTIONS(2852), + [anon_sym_undefined] = ACTIONS(2855), + [sym_sink] = ACTIONS(2858), + [sym_integer] = ACTIONS(2861), + [sym_float] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2867), + [sym_multiline_string] = ACTIONS(2864), + [sym_character] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2870), + }, + [STATE(583)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3355), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3355), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(584)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(588), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2873), + }, + [STATE(585)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3361), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3361), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(590), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2875), + }, + [STATE(586)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3361), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3361), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(587)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(592), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2877), + }, + [STATE(588)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(589)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(595), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2879), + }, + [STATE(590)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3365), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3365), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(591)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(597), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2881), + }, + [STATE(592)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(593)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2883), + }, + [STATE(594)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2885), + }, + [STATE(595)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(596)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(602), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2887), + }, + [STATE(597)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(598)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(605), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2889), + }, + [STATE(599)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(600)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(601)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(606), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2891), + }, + [STATE(602)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(603)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(607), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2893), + }, + [STATE(604)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(608), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2895), + }, + [STATE(605)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(606)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(607)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(608)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(609)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(610), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2897), + }, + [STATE(610)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(611)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10946), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10946), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(768), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2899), + }, + [STATE(612)] = { + [aux_sym_type_repeat1] = STATE(612), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_import] = ACTIONS(2903), + [anon_sym_test] = ACTIONS(2903), + [anon_sym_hide] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_RPAREN] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym_RBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_PLUS_EQ] = ACTIONS(2901), + [anon_sym_DASH_EQ] = ACTIONS(2901), + [anon_sym_STAR_EQ] = ACTIONS(2901), + [anon_sym_SLASH_EQ] = ACTIONS(2901), + [anon_sym_AMP_EQ] = ACTIONS(2901), + [anon_sym_PIPE_EQ] = ACTIONS(2901), + [anon_sym_xor_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_GT_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_COLON] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_errdefer] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_expand] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_LT_LT_PIPE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2903), + [anon_sym_unreachable] = ACTIONS(2903), + [anon_sym_undefined] = ACTIONS(2903), + [sym_sink] = ACTIONS(2903), + [sym_integer] = ACTIONS(2903), + [sym_float] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_multiline_string] = ACTIONS(2901), + [sym_character] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(613)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10946), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10946), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(614)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5039), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5039), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(616), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2908), + }, + [STATE(615)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5039), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5039), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(616)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5043), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5043), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(617)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2910), + }, + [STATE(618)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5044), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5044), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2912), + }, + [STATE(619)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5044), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5044), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(620)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(625), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2914), + }, + [STATE(621)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(622)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(628), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2916), + }, + [STATE(623)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5045), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5045), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(624)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(630), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2918), + }, + [STATE(625)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(626)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(632), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2920), + }, + [STATE(627)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(633), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2922), + }, + [STATE(628)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(629)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(635), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2924), + }, + [STATE(630)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(631)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(638), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2926), + }, + [STATE(632)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(633)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(634)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(639), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2928), + }, + [STATE(635)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(636)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(640), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2930), + }, + [STATE(637)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2932), + }, + [STATE(638)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(639)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(640)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(641)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(642)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(643), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2934), + }, + [STATE(643)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(644)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10076), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10076), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2936), + }, + [STATE(645)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10076), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10076), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(646)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10008), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10008), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(647)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(651), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2938), + }, + [STATE(648)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10022), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10022), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(653), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2940), + }, + [STATE(649)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10022), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10022), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(650)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(655), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2942), + }, + [STATE(651)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(652)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2944), + }, + [STATE(653)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10025), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10025), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(654)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(660), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2946), + }, + [STATE(655)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(656)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2948), + }, + [STATE(657)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(663), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2950), + }, + [STATE(658)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(659)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(665), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2952), + }, + [STATE(660)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(661)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(668), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2954), + }, + [STATE(662)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(663)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(664)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(669), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2956), + }, + [STATE(665)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(666)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(670), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2958), + }, + [STATE(667)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(671), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2960), + }, + [STATE(668)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(669)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(670)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(671)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(672)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(673), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2962), + }, + [STATE(673)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(674)] = { + [sym_argument_list] = STATE(2613), + [ts_builtin_sym_end] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_test] = ACTIONS(2966), + [anon_sym_hide] = ACTIONS(2966), + [anon_sym_func] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_RBRACK] = ACTIONS(2964), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_anyopaque] = ACTIONS(2966), + [anon_sym_bool] = ACTIONS(2966), + [anon_sym_int] = ACTIONS(2966), + [anon_sym_uint] = ACTIONS(2966), + [anon_sym_float] = ACTIONS(2966), + [anon_sym_range] = ACTIONS(2966), + [anon_sym_i8] = ACTIONS(2966), + [anon_sym_i16] = ACTIONS(2966), + [anon_sym_i32] = ACTIONS(2966), + [anon_sym_i64] = ACTIONS(2966), + [anon_sym_u8] = ACTIONS(2966), + [anon_sym_u16] = ACTIONS(2966), + [anon_sym_u32] = ACTIONS(2966), + [anon_sym_u64] = ACTIONS(2966), + [anon_sym_isize] = ACTIONS(2966), + [anon_sym_usize] = ACTIONS(2966), + [anon_sym_f32] = ACTIONS(2966), + [anon_sym_f64] = ACTIONS(2966), + [anon_sym_c_char] = ACTIONS(2966), + [anon_sym_c_schar] = ACTIONS(2966), + [anon_sym_c_uchar] = ACTIONS(2966), + [anon_sym_c_short] = ACTIONS(2966), + [anon_sym_c_ushort] = ACTIONS(2966), + [anon_sym_c_int] = ACTIONS(2966), + [anon_sym_c_uint] = ACTIONS(2966), + [anon_sym_c_long] = ACTIONS(2966), + [anon_sym_c_ulong] = ACTIONS(2966), + [anon_sym_c_longlong] = ACTIONS(2966), + [anon_sym_c_ulonglong] = ACTIONS(2966), + [anon_sym_c_float] = ACTIONS(2966), + [anon_sym_c_double] = ACTIONS(2966), + [anon_sym_c_longdouble] = ACTIONS(2966), + [anon_sym_PLUS_EQ] = ACTIONS(2964), + [anon_sym_DASH_EQ] = ACTIONS(2964), + [anon_sym_STAR_EQ] = ACTIONS(2964), + [anon_sym_SLASH_EQ] = ACTIONS(2964), + [anon_sym_AMP_EQ] = ACTIONS(2964), + [anon_sym_PIPE_EQ] = ACTIONS(2964), + [anon_sym_xor_EQ] = ACTIONS(2964), + [anon_sym_LT_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_GT_EQ] = ACTIONS(2964), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_defer] = ACTIONS(2966), + [anon_sym_errdefer] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_expand] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2964), + [anon_sym_orelse] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_and] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_xor] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_LT_LT_PIPE] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_catch] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2966), + [anon_sym_false] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_unreachable] = ACTIONS(2966), + [anon_sym_undefined] = ACTIONS(2966), + [sym_sink] = ACTIONS(2966), + [sym_integer] = ACTIONS(2966), + [sym_float] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_multiline_string] = ACTIONS(2964), + [sym_character] = ACTIONS(2964), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2964), + }, + [STATE(675)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10219), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10219), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(677), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2968), + }, + [STATE(676)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10219), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10219), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(677)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10233), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10233), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(678)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10590), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10590), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2970), + }, + [STATE(679)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10256), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10256), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2972), + }, + [STATE(680)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10256), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10256), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(681)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10498), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10498), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(686), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2974), + }, + [STATE(682)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10530), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10530), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(683)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10530), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10530), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(689), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2976), + }, + [STATE(684)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10441), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10441), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(685)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10749), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10749), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(691), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2978), + }, + [STATE(686)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10658), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10658), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(687)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10658), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10658), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(693), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2980), + }, + [STATE(688)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10671), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10671), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(694), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2982), + }, + [STATE(689)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10681), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10681), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(690)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10685), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10685), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(696), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2984), + }, + [STATE(691)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10712), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10712), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(692)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10712), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10712), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(699), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2986), + }, + [STATE(693)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10613), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10613), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(694)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10684), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10684), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(695)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10684), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10684), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2988), + }, + [STATE(696)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10722), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10722), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(697)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10722), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10722), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(701), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2990), + }, + [STATE(698)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10732), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10732), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(702), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2992), + }, + [STATE(699)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10750), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10750), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(700)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10592), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10592), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(701)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10594), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10594), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(702)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10595), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10595), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(703)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10595), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10595), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2994), + }, + [STATE(704)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10817), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10817), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(705)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10443), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10443), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(707), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2996), + }, + [STATE(706)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10443), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10443), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(707)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10229), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10229), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(708)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9773), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9773), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(712), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2998), + }, + [STATE(709)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10325), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10325), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(714), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3000), + }, + [STATE(710)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10325), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10325), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(711)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9623), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9623), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(716), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3002), + }, + [STATE(712)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(713)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(719), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3004), + }, + [STATE(714)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10212), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10212), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(715)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9660), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9660), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(721), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3006), + }, + [STATE(716)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(717)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(723), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3008), + }, + [STATE(718)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9626), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9626), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(724), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3010), + }, + [STATE(719)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9712), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9712), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(720)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9737), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9737), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(726), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3012), + }, + [STATE(721)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(722)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(729), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3014), + }, + [STATE(723)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9668), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9668), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(724)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(725)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(730), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3016), + }, + [STATE(726)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(727)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(731), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3018), + }, + [STATE(728)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9677), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9677), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3020), + }, + [STATE(729)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9678), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9678), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(730)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9530), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9530), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(731)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9532), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9532), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(732)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(733)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(734), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3022), + }, + [STATE(734)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9606), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9606), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(735)] = { + [aux_sym_type_repeat1] = STATE(766), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3026), + [anon_sym_import] = ACTIONS(3026), + [anon_sym_test] = ACTIONS(3026), + [anon_sym_hide] = ACTIONS(3026), + [anon_sym_func] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_EQ] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_RPAREN] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3024), + [anon_sym_RBRACK] = ACTIONS(3024), + [anon_sym_void] = ACTIONS(3026), + [anon_sym_noreturn] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_anyopaque] = ACTIONS(3026), + [anon_sym_bool] = ACTIONS(3026), + [anon_sym_int] = ACTIONS(3026), + [anon_sym_uint] = ACTIONS(3026), + [anon_sym_float] = ACTIONS(3026), + [anon_sym_range] = ACTIONS(3026), + [anon_sym_i8] = ACTIONS(3026), + [anon_sym_i16] = ACTIONS(3026), + [anon_sym_i32] = ACTIONS(3026), + [anon_sym_i64] = ACTIONS(3026), + [anon_sym_u8] = ACTIONS(3026), + [anon_sym_u16] = ACTIONS(3026), + [anon_sym_u32] = ACTIONS(3026), + [anon_sym_u64] = ACTIONS(3026), + [anon_sym_isize] = ACTIONS(3026), + [anon_sym_usize] = ACTIONS(3026), + [anon_sym_f32] = ACTIONS(3026), + [anon_sym_f64] = ACTIONS(3026), + [anon_sym_c_char] = ACTIONS(3026), + [anon_sym_c_schar] = ACTIONS(3026), + [anon_sym_c_uchar] = ACTIONS(3026), + [anon_sym_c_short] = ACTIONS(3026), + [anon_sym_c_ushort] = ACTIONS(3026), + [anon_sym_c_int] = ACTIONS(3026), + [anon_sym_c_uint] = ACTIONS(3026), + [anon_sym_c_long] = ACTIONS(3026), + [anon_sym_c_ulong] = ACTIONS(3026), + [anon_sym_c_longlong] = ACTIONS(3026), + [anon_sym_c_ulonglong] = ACTIONS(3026), + [anon_sym_c_float] = ACTIONS(3026), + [anon_sym_c_double] = ACTIONS(3026), + [anon_sym_c_longdouble] = ACTIONS(3026), + [anon_sym_PLUS_EQ] = ACTIONS(3024), + [anon_sym_DASH_EQ] = ACTIONS(3024), + [anon_sym_STAR_EQ] = ACTIONS(3024), + [anon_sym_SLASH_EQ] = ACTIONS(3024), + [anon_sym_AMP_EQ] = ACTIONS(3024), + [anon_sym_PIPE_EQ] = ACTIONS(3024), + [anon_sym_xor_EQ] = ACTIONS(3024), + [anon_sym_LT_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_GT_EQ] = ACTIONS(3024), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3026), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_defer] = ACTIONS(3026), + [anon_sym_errdefer] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_expand] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(3026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3024), + [anon_sym_orelse] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3026), + [anon_sym_and] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_xor] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_LT_LT_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_catch] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3026), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3026), + [anon_sym_unreachable] = ACTIONS(3026), + [anon_sym_undefined] = ACTIONS(3026), + [sym_sink] = ACTIONS(3026), + [sym_integer] = ACTIONS(3026), + [sym_float] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [sym_multiline_string] = ACTIONS(3024), + [sym_character] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3024), + }, + [STATE(736)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8764), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8764), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(738), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3028), + }, + [STATE(737)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8764), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8764), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(738)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8776), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8776), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(739)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(743), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3030), + }, + [STATE(740)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8778), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8778), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3032), + }, + [STATE(741)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8778), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8778), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(742)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(747), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3034), + }, + [STATE(743)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(744)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(750), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3036), + }, + [STATE(745)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8788), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8788), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(746)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(752), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3038), + }, + [STATE(747)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(748)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(754), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3040), + }, + [STATE(749)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(755), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3042), + }, + [STATE(750)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(751)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3044), + }, + [STATE(752)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(753)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(760), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3046), + }, + [STATE(754)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(755)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(756)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3048), + }, + [STATE(757)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(758)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3050), + }, + [STATE(759)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(763), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3052), + }, + [STATE(760)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(761)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(762)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(763)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(764)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3054), + }, + [STATE(765)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(766)] = { + [aux_sym_type_repeat1] = STATE(612), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_import] = ACTIONS(3058), + [anon_sym_test] = ACTIONS(3058), + [anon_sym_hide] = ACTIONS(3058), + [anon_sym_func] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_void] = ACTIONS(3058), + [anon_sym_noreturn] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_anyopaque] = ACTIONS(3058), + [anon_sym_bool] = ACTIONS(3058), + [anon_sym_int] = ACTIONS(3058), + [anon_sym_uint] = ACTIONS(3058), + [anon_sym_float] = ACTIONS(3058), + [anon_sym_range] = ACTIONS(3058), + [anon_sym_i8] = ACTIONS(3058), + [anon_sym_i16] = ACTIONS(3058), + [anon_sym_i32] = ACTIONS(3058), + [anon_sym_i64] = ACTIONS(3058), + [anon_sym_u8] = ACTIONS(3058), + [anon_sym_u16] = ACTIONS(3058), + [anon_sym_u32] = ACTIONS(3058), + [anon_sym_u64] = ACTIONS(3058), + [anon_sym_isize] = ACTIONS(3058), + [anon_sym_usize] = ACTIONS(3058), + [anon_sym_f32] = ACTIONS(3058), + [anon_sym_f64] = ACTIONS(3058), + [anon_sym_c_char] = ACTIONS(3058), + [anon_sym_c_schar] = ACTIONS(3058), + [anon_sym_c_uchar] = ACTIONS(3058), + [anon_sym_c_short] = ACTIONS(3058), + [anon_sym_c_ushort] = ACTIONS(3058), + [anon_sym_c_int] = ACTIONS(3058), + [anon_sym_c_uint] = ACTIONS(3058), + [anon_sym_c_long] = ACTIONS(3058), + [anon_sym_c_ulong] = ACTIONS(3058), + [anon_sym_c_longlong] = ACTIONS(3058), + [anon_sym_c_ulonglong] = ACTIONS(3058), + [anon_sym_c_float] = ACTIONS(3058), + [anon_sym_c_double] = ACTIONS(3058), + [anon_sym_c_longdouble] = ACTIONS(3058), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_AMP_EQ] = ACTIONS(3056), + [anon_sym_PIPE_EQ] = ACTIONS(3056), + [anon_sym_xor_EQ] = ACTIONS(3056), + [anon_sym_LT_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_GT_EQ] = ACTIONS(3056), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_errdefer] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_expand] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3056), + [anon_sym_orelse] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_and] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_xor] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_LT_LT_PIPE] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_catch] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_unreachable] = ACTIONS(3058), + [anon_sym_undefined] = ACTIONS(3058), + [sym_sink] = ACTIONS(3058), + [sym_integer] = ACTIONS(3058), + [sym_float] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3056), + [sym_multiline_string] = ACTIONS(3056), + [sym_character] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3056), + }, + [STATE(767)] = { + [sym_variant_payload] = STATE(2548), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(2659), + [anon_sym_test] = ACTIONS(2659), + [anon_sym_hide] = ACTIONS(2659), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_RBRACK] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2657), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_LT_LT_PIPE] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(768)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10926), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10926), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(769)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3064), + }, + [STATE(770)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11061), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11061), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(774), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3066), + }, + [STATE(771)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11061), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11061), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(772)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10932), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10932), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3068), + }, + [STATE(773)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10932), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10932), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(774)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11116), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11116), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(775)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(779), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3070), + }, + [STATE(776)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11117), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11117), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(781), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3072), + }, + [STATE(777)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11117), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11117), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(778)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(783), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3074), + }, + [STATE(779)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(780)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(786), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3076), + }, + [STATE(781)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11207), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11207), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(782)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(788), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), + }, + [STATE(783)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(784)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3080), + }, + [STATE(785)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(791), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3082), + }, + [STATE(786)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(787)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3084), + }, + [STATE(788)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(789)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(796), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3086), + }, + [STATE(790)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(791)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(792)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(797), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3088), + }, + [STATE(793)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(794)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(798), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3090), + }, + [STATE(795)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(799), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3092), + }, + [STATE(796)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(797)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(798)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(799)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(800)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(801), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3094), + }, + [STATE(801)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(802)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8865), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8865), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3096), + }, + [STATE(803)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8865), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8865), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(804)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8867), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8867), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(805)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3098), + }, + [STATE(806)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8868), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8868), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3100), + }, + [STATE(807)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8868), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8868), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(808)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(813), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3102), + }, + [STATE(809)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(810)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(816), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3104), + }, + [STATE(811)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8869), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8869), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(812)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3106), + }, + [STATE(813)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(814)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(820), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3108), + }, + [STATE(815)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3110), + }, + [STATE(816)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(817)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3112), + }, + [STATE(818)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(819)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3114), + }, + [STATE(820)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(821)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(822)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(827), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3116), + }, + [STATE(823)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(824)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(828), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3118), + }, + [STATE(825)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3120), + }, + [STATE(826)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(827)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(828)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(829)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(830)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(831), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3122), + }, + [STATE(831)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(832)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10118), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10118), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(834), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3124), + }, + [STATE(833)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10118), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10118), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(834)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10120), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10120), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(835)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9773), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9773), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(839), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3126), + }, + [STATE(836)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10121), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10121), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(841), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3128), + }, + [STATE(837)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10121), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10121), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(838)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9623), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9623), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(843), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3130), + }, + [STATE(839)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(840)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3132), + }, + [STATE(841)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10122), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10122), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(842)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9660), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9660), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3134), + }, + [STATE(843)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(844)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3136), + }, + [STATE(845)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9626), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9626), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(851), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3138), + }, + [STATE(846)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9712), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9712), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(847)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9737), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9737), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3140), + }, + [STATE(848)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(849)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3142), + }, + [STATE(850)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9668), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9668), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(851)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(852)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(857), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3144), + }, + [STATE(853)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(854)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(858), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3146), + }, + [STATE(855)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9677), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9677), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3148), + }, + [STATE(856)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9678), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9678), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(857)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9530), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9530), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(858)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9532), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9532), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(859)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(860)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3150), + }, + [STATE(861)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9606), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9606), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(862)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8760), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8760), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(864), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3152), + }, + [STATE(863)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8760), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8760), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(864)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8768), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8768), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(865)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8701), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8701), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(869), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3154), + }, + [STATE(866)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8771), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8771), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(871), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3156), + }, + [STATE(867)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8771), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8771), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(868)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8495), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8495), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(873), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3158), + }, + [STATE(869)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(870)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(876), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3160), + }, + [STATE(871)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8790), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8790), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(872)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8505), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8505), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3162), + }, + [STATE(873)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(874)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(880), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3164), + }, + [STATE(875)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8707), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8707), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3166), + }, + [STATE(876)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8709), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8709), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(877)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8592), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8592), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(883), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3168), + }, + [STATE(878)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(879)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(886), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3170), + }, + [STATE(880)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8729), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8729), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(881)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(882)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(887), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3172), + }, + [STATE(883)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(884)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(888), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3174), + }, + [STATE(885)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8685), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8685), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(889), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3176), + }, + [STATE(886)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8728), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8728), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(887)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8719), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8719), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(888)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8721), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8721), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(889)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(890)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(891), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3178), + }, + [STATE(891)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8609), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8609), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(892)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7160), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7160), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(894), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3180), + }, + [STATE(893)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7160), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7160), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(894)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7208), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7208), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(895)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7267), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7267), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(899), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3182), + }, + [STATE(896)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7163), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7163), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(901), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3184), + }, + [STATE(897)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7163), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7163), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(898)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7281), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7281), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(903), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3186), + }, + [STATE(899)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7283), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7283), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(900)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7283), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7283), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3188), + }, + [STATE(901)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7164), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7164), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(902)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7285), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7285), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3190), + }, + [STATE(903)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7295), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7295), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(904)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7295), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7295), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(910), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3192), + }, + [STATE(905)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7296), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7296), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(911), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3194), + }, + [STATE(906)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7297), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7297), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(907)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7298), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7298), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3196), + }, + [STATE(908)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7299), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7299), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(909)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7299), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7299), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(916), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3198), + }, + [STATE(910)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7314), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7314), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(911)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7315), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7315), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(912)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7315), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7315), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3200), + }, + [STATE(913)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7316), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7316), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(914)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7316), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7316), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3202), + }, + [STATE(915)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7317), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7317), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(919), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3204), + }, + [STATE(916)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7318), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7318), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(917)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7336), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7336), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(918)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7337), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7337), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(919)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7338), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7338), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(920)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7338), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7338), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(921), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3206), + }, + [STATE(921)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7365), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7365), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(922)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10153), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10153), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(924), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3208), + }, + [STATE(923)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10153), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10153), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(924)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10167), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10167), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(925)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(929), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3210), + }, + [STATE(926)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10168), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10168), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(931), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3212), + }, + [STATE(927)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10168), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10168), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(928)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(933), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3214), + }, + [STATE(929)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(930)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(936), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3216), + }, + [STATE(931)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10089), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10089), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(932)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(938), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3218), + }, + [STATE(933)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(934)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(940), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3220), + }, + [STATE(935)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3222), + }, + [STATE(936)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(937)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3224), + }, + [STATE(938)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(939)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3226), + }, + [STATE(940)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(941)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(942)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3228), + }, + [STATE(943)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(944)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(948), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3230), + }, + [STATE(945)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(949), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3232), + }, + [STATE(946)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(947)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(948)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(949)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(950)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(951), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3234), + }, + [STATE(951)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(952)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8840), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8840), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3236), + }, + [STATE(953)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8840), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8840), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(954)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8823), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8823), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(955)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3238), + }, + [STATE(956)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8828), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8828), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3240), + }, + [STATE(957)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8828), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8828), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(958)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(963), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3242), + }, + [STATE(959)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(960)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(966), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3244), + }, + [STATE(961)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8814), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8814), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(962)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3246), + }, + [STATE(963)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(964)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3248), + }, + [STATE(965)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3250), + }, + [STATE(966)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(967)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(973), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3252), + }, + [STATE(968)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(969)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(976), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3254), + }, + [STATE(970)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(971)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(972)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3256), + }, + [STATE(973)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(974)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(978), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3258), + }, + [STATE(975)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3260), + }, + [STATE(976)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(977)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(978)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(979)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(980)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3262), + }, + [STATE(981)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(982)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(983)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1203), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3264), + }, + [STATE(984)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10921), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10921), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(985)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8941), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8941), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(988), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3266), + }, + [STATE(986)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8941), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8941), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(987)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1205), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3268), + }, + [STATE(988)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8945), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8945), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(989)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9122), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9122), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3270), + }, + [STATE(990)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8946), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8946), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(995), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3272), + }, + [STATE(991)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8946), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8946), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(992)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9132), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9132), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(997), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3274), + }, + [STATE(993)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9134), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9134), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(994)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9134), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9134), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1000), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3276), + }, + [STATE(995)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8948), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8948), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(996)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9136), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9136), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1002), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3278), + }, + [STATE(997)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9147), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9147), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(998)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9147), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9147), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3280), + }, + [STATE(999)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9148), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9148), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1004), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3282), + }, + [STATE(1000)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9149), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9149), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1001)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9150), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9150), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3284), + }, + [STATE(1002)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9151), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9151), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1003)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9151), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9151), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3286), + }, + [STATE(1004)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9166), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9166), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1005)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9166), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9166), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1010), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3288), + }, + [STATE(1006)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9167), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9167), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1007)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9167), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9167), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1011), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3290), + }, + [STATE(1008)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9168), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9168), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1012), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3292), + }, + [STATE(1009)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9169), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9169), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1010)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9188), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9188), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1011)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9189), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9189), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1012)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9190), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9190), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1013)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9190), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9190), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3294), + }, + [STATE(1014)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9224), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9224), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1015)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7594), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7594), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1211), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3296), + }, + [STATE(1016)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8983), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8983), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1018), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3298), + }, + [STATE(1017)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8983), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8983), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1018)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8985), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8985), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1019)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8701), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8701), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1023), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3300), + }, + [STATE(1020)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8986), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8986), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1025), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3302), + }, + [STATE(1021)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8986), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8986), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1022)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8495), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8495), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1027), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3304), + }, + [STATE(1023)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1024)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3306), + }, + [STATE(1025)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8987), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8987), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1026)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8505), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8505), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1032), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3308), + }, + [STATE(1027)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1028)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3310), + }, + [STATE(1029)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8707), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8707), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1035), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3312), + }, + [STATE(1030)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8709), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8709), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1031)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8592), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8592), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3314), + }, + [STATE(1032)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1033)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1040), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3316), + }, + [STATE(1034)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8729), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8729), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1035)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1036)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3318), + }, + [STATE(1037)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1038)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1042), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3320), + }, + [STATE(1039)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8685), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8685), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3322), + }, + [STATE(1040)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8728), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8728), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1041)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8719), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8719), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1042)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8721), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8721), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1043)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1044)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1045), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3324), + }, + [STATE(1045)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8609), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8609), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1046)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3360), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3360), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1048), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3326), + }, + [STATE(1047)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3360), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3360), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1048)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3364), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3364), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1049)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3328), + }, + [STATE(1050)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3354), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3354), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1055), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3330), + }, + [STATE(1051)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3354), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3354), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1052)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3332), + }, + [STATE(1053)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1054)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1060), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3334), + }, + [STATE(1055)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(3356), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(3356), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1056)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3336), + }, + [STATE(1057)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1058)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3338), + }, + [STATE(1059)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3340), + }, + [STATE(1060)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1061)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1067), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3342), + }, + [STATE(1062)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1063)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1070), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3344), + }, + [STATE(1064)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1065)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1066)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3346), + }, + [STATE(1067)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1068)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1072), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3348), + }, + [STATE(1069)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1073), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3350), + }, + [STATE(1070)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1071)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1072)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1073)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1074)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1075), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3352), + }, + [STATE(1075)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1076)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3423), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3423), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1078), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3354), + }, + [STATE(1077)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3423), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3423), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1078)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3425), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3425), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1079)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3568), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3568), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1083), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3356), + }, + [STATE(1080)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3426), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3426), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3358), + }, + [STATE(1081)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3426), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3426), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1082)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3581), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3581), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1087), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3360), + }, + [STATE(1083)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3583), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3583), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1084)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3583), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3583), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3362), + }, + [STATE(1085)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3427), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3427), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1086)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3584), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3584), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1092), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3364), + }, + [STATE(1087)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3597), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3597), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1088)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3597), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3597), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1094), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3366), + }, + [STATE(1089)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3598), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3598), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1095), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3368), + }, + [STATE(1090)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3599), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3599), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1091)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3600), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3600), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3370), + }, + [STATE(1092)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3601), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3601), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1093)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3601), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3601), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1100), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3372), + }, + [STATE(1094)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3614), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3614), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1095)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3615), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3615), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1096)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3615), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3615), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3374), + }, + [STATE(1097)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3616), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3616), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1098)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3616), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3616), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1102), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3376), + }, + [STATE(1099)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3617), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3617), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3378), + }, + [STATE(1100)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3618), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3618), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1101)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3637), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3637), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1102)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3638), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3638), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1103)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3639), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3639), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1104)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3639), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3639), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(1105), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3380), + }, + [STATE(1105)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3670), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym__branch_body] = STATE(3670), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1106)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8873), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8873), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1108), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3382), + }, + [STATE(1107)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8873), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8873), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1108)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8875), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8875), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1109)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8701), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8701), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3384), + }, + [STATE(1110)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8876), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8876), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1115), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3386), + }, + [STATE(1111)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8876), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8876), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), }, [STATE(1112)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3475), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1084), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_RBRACK] = ACTIONS(2774), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2776), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8495), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8495), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1117), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2778), + [sym__newline] = ACTIONS(3388), }, [STATE(1113)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3391), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1097), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_RBRACK] = ACTIONS(2780), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2686), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2782), + [sym__newline] = ACTIONS(2257), }, [STATE(1114)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3502), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2401), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_RBRACK] = ACTIONS(2788), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2790), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1120), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2792), + [sym__newline] = ACTIONS(3390), }, [STATE(1115)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3499), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1099), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_RBRACK] = ACTIONS(2794), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8877), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8877), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2796), + [sym__newline] = ACTIONS(2257), }, [STATE(1116)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_assignment_statement] = STATE(4892), - [sym_expression_statement] = STATE(4892), - [sym_expression] = STATE(3036), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1119), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8505), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8505), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1122), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2802), + [sym__newline] = ACTIONS(3392), }, [STATE(1117)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_assignment_statement] = STATE(4769), - [sym_expression_statement] = STATE(4769), - [sym_expression] = STATE(3036), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1125), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2804), + [sym__newline] = ACTIONS(2257), }, [STATE(1118)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_assignment_statement] = STATE(4728), - [sym_expression_statement] = STATE(4728), - [sym_expression] = STATE(3098), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1124), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3394), }, [STATE(1119)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_assignment_statement] = STATE(4999), - [sym_expression_statement] = STATE(4999), - [sym_expression] = STATE(3098), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8707), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8707), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1125), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3396), }, [STATE(1120)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_assignment_statement] = STATE(4741), - [sym_expression_statement] = STATE(4741), - [sym_expression] = STATE(3098), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8709), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8709), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1121)] = { - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(2806), - [anon_sym_import] = ACTIONS(2806), - [anon_sym_test] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_c_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_c_struct] = ACTIONS(2806), - [anon_sym_opaque] = ACTIONS(2806), - [anon_sym_distinct] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_defer] = ACTIONS(2806), - [anon_sym_errdefer] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_else] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_expand] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_orelse] = ACTIONS(2806), - [anon_sym_catch] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_and] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_xor] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8592), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8592), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1127), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2810), + [sym__newline] = ACTIONS(3398), }, [STATE(1122)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_assignment_statement] = STATE(4987), - [sym_expression_statement] = STATE(4987), - [sym_expression] = STATE(3036), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2813), + [sym__newline] = ACTIONS(2257), }, [STATE(1123)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_assignment_statement] = STATE(4159), - [sym_expression_statement] = STATE(4159), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1127), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1130), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2821), + [sym__newline] = ACTIONS(3400), }, [STATE(1124)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_assignment_statement] = STATE(4777), - [sym_expression_statement] = STATE(4777), - [sym_expression] = STATE(3036), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1120), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8729), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8729), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2823), + [sym__newline] = ACTIONS(2257), }, [STATE(1125)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_assignment_statement] = STATE(4857), - [sym_expression_statement] = STATE(4857), - [sym_expression] = STATE(3098), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1126)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_assignment_statement] = STATE(3971), - [sym_expression_statement] = STATE(3971), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1131), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3402), }, [STATE(1127)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_assignment_statement] = STATE(4141), - [sym_expression_statement] = STATE(4141), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1128)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_assignment_statement] = STATE(4177), - [sym_expression_statement] = STATE(4177), - [sym_expression] = STATE(3067), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1126), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1132), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2831), + [sym__newline] = ACTIONS(3404), }, [STATE(1129)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8685), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8685), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1133), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3406), }, [STATE(1130)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3551), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4962), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2835), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8728), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8728), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2837), + [sym__newline] = ACTIONS(2257), }, [STATE(1131)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8719), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8719), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1132)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8721), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8721), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2843), + [sym__newline] = ACTIONS(2257), }, [STATE(1133)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1134)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1150), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1135), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2847), + [sym__newline] = ACTIONS(3408), }, [STATE(1135)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1151), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8609), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8609), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2849), + [sym__newline] = ACTIONS(2257), }, [STATE(1136)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2851), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6556), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6556), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3410), }, [STATE(1137)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1154), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2851), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6556), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6556), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2853), + [sym__newline] = ACTIONS(2257), }, [STATE(1138)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1155), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2851), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6558), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6558), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2855), + [sym__newline] = ACTIONS(2257), }, [STATE(1139)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1393), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3290), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3290), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2859), + [sym__newline] = ACTIONS(3412), }, [STATE(1140)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1359), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6559), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6559), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1145), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2863), + [sym__newline] = ACTIONS(3414), }, [STATE(1141)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1413), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2865), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6559), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6559), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2867), + [sym__newline] = ACTIONS(2257), }, [STATE(1142)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(531), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1475), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3305), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3305), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1147), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2871), + [sym__newline] = ACTIONS(3416), }, [STATE(1143)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_block] = STATE(3697), - [sym_expression] = STATE(3597), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1459), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3306), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3306), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2909), + [sym__newline] = ACTIONS(2257), }, [STATE(1144)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3561), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1159), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3306), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3306), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1150), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2913), + [sym__newline] = ACTIONS(3418), }, [STATE(1145)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3563), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(5014), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2915), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6560), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6560), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2917), + [sym__newline] = ACTIONS(2257), }, [STATE(1146)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3468), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1229), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3309), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3309), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1152), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2921), + [sym__newline] = ACTIONS(3420), }, [STATE(1147)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3321), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3321), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1148)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1164), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3321), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3321), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1154), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2925), + [sym__newline] = ACTIONS(3422), }, [STATE(1149)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3323), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3323), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1155), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2927), + [sym__newline] = ACTIONS(3424), }, [STATE(1150)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3326), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3326), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1151)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3327), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3327), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1157), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3426), }, [STATE(1152)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1168), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3330), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3330), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2931), + [sym__newline] = ACTIONS(2257), }, [STATE(1153)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1169), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3330), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3330), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1160), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2933), + [sym__newline] = ACTIONS(3428), }, [STATE(1154)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2935), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3082), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3082), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1155)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2935), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2968), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2968), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1156)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1171), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2935), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2968), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2968), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1161), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2937), + [sym__newline] = ACTIONS(3430), }, [STATE(1157)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1172), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2935), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2973), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2973), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2939), + [sym__newline] = ACTIONS(2257), }, [STATE(1158)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2973), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2973), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1162), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3432), }, [STATE(1159)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2943), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2986), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2986), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1163), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3434), }, [STATE(1160)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3568), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1174), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2988), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2988), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2947), + [sym__newline] = ACTIONS(2257), }, [STATE(1161)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3473), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1617), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3054), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3054), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2951), + [sym__newline] = ACTIONS(2257), }, [STATE(1162)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3592), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1458), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3061), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3061), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2953), + [sym__newline] = ACTIONS(2257), }, [STATE(1163)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1186), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3062), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3062), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2957), + [sym__newline] = ACTIONS(2257), }, [STATE(1164)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3062), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3062), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1165), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3436), }, [STATE(1165)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3161), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3161), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1166)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2907), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2907), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1168), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2961), + [sym__newline] = ACTIONS(3438), }, [STATE(1167)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1176), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2907), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2907), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2963), + [sym__newline] = ACTIONS(2257), }, [STATE(1168)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2911), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2911), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1169)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3290), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3290), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3440), }, [STATE(1170)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1178), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2912), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2912), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2967), + [sym__newline] = ACTIONS(3442), }, [STATE(1171)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2912), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2912), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1172)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3305), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3305), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1177), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3444), }, [STATE(1173)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1179), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3306), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3306), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2971), + [sym__newline] = ACTIONS(2257), }, [STATE(1174)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2973), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3306), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3306), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1180), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3446), }, [STATE(1175)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2913), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2913), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1176)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3309), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3309), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1182), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3448), }, [STATE(1177)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1182), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3321), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3321), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2977), + [sym__newline] = ACTIONS(2257), }, [STATE(1178)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3321), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3321), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1184), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3450), }, [STATE(1179)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2981), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3323), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3323), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1185), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3452), }, [STATE(1180)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3326), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3326), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1181)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1446), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3327), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3327), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1187), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2983), + [sym__newline] = ACTIONS(3454), }, [STATE(1182)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3330), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3330), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1183)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1450), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3330), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3330), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1190), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2987), + [sym__newline] = ACTIONS(3456), }, [STATE(1184)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(3114), - [sym_expression] = STATE(3017), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1417), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3082), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3082), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2991), + [sym__newline] = ACTIONS(2257), }, [STATE(1185)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3373), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1731), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2968), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2968), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2999), + [sym__newline] = ACTIONS(2257), }, [STATE(1186)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2968), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2968), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1191), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3458), }, [STATE(1187)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3448), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1190), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2973), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2973), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3005), + [sym__newline] = ACTIONS(2257), }, [STATE(1188)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1362), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2973), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2973), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1192), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3007), + [sym__newline] = ACTIONS(3460), }, [STATE(1189)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2986), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2986), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1193), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3009), + [sym__newline] = ACTIONS(3462), }, [STATE(1190)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3469), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2988), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2988), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1191)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3054), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3054), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3015), + [sym__newline] = ACTIONS(2257), }, [STATE(1192)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3017), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3061), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3061), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3019), + [sym__newline] = ACTIONS(2257), }, [STATE(1193)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3570), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4856), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3021), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3062), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3062), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3023), + [sym__newline] = ACTIONS(2257), }, [STATE(1194)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1203), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3062), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3062), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3027), + [sym__newline] = ACTIONS(3464), }, [STATE(1195)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3161), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3161), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1196)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1206), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1197), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1197), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3031), + [sym__newline] = ACTIONS(3468), }, [STATE(1197)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1207), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3033), + [sym__newline] = ACTIONS(3472), }, [STATE(1198)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1199)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1290), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3037), + [sym__newline] = ACTIONS(3474), }, [STATE(1200)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1211), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3039), + [sym__newline] = ACTIONS(3476), }, [STATE(1201)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3524), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1214), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3041), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10935), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10935), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1206), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3043), + [sym__newline] = ACTIONS(3478), }, [STATE(1202)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3526), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4784), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3045), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10935), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10935), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3047), + [sym__newline] = ACTIONS(2257), }, [STATE(1203)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1204)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1218), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1311), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3051), + [sym__newline] = ACTIONS(3480), }, [STATE(1205)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1219), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3053), + [sym__newline] = ACTIONS(2257), }, [STATE(1206)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10923), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10923), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1207)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1214), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3482), }, [STATE(1208)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1222), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10924), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10924), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1216), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3057), + [sym__newline] = ACTIONS(3484), }, [STATE(1209)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10924), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10924), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3059), + [sym__newline] = ACTIONS(2257), }, [STATE(1210)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1326), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3486), }, [STATE(1211)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7595), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7595), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1212)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1225), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7595), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7595), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1333), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3063), + [sym__newline] = ACTIONS(3488), }, [STATE(1213)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1220), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3065), + [sym__newline] = ACTIONS(3490), }, [STATE(1214)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3067), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1215)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3579), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1228), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1223), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3071), + [sym__newline] = ACTIONS(3492), }, [STATE(1216)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1398), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(10938), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(10938), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3073), + [sym__newline] = ACTIONS(2257), }, [STATE(1217)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1225), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3077), + [sym__newline] = ACTIONS(3494), }, [STATE(1218)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7596), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7596), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1340), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3496), }, [STATE(1219)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7597), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7597), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1347), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3498), }, [STATE(1220)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1231), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3081), + [sym__newline] = ACTIONS(2257), }, [STATE(1221)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1232), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3083), + [sym__newline] = ACTIONS(3500), }, [STATE(1222)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1228), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3502), }, [STATE(1223)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1224)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1230), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3087), + [sym__newline] = ACTIONS(3504), }, [STATE(1225)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1226)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1233), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3506), }, [STATE(1227)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1235), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3091), + [sym__newline] = ACTIONS(2257), }, [STATE(1228)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3093), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1229)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3437), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3508), }, [STATE(1230)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1231)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3510), }, [STATE(1232)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1236), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3512), }, [STATE(1233)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3101), + [sym__newline] = ACTIONS(2257), }, [STATE(1234)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1235)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3105), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1236)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1391), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3109), + [sym__newline] = ACTIONS(2257), }, [STATE(1237)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3514), }, [STATE(1238)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1239)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7093), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7093), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3516), }, [STATE(1240)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7093), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7093), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1241)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_block] = STATE(2321), - [sym_expression] = STATE(2303), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1438), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2150), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3151), + [sym__newline] = ACTIONS(3518), }, [STATE(1242)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1379), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7097), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7097), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3153), + [sym__newline] = ACTIONS(2257), }, [STATE(1243)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1429), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7098), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7098), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3157), + [sym__newline] = ACTIONS(3520), }, [STATE(1244)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7098), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7098), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3159), + [sym__newline] = ACTIONS(2257), }, [STATE(1245)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3470), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1248), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7104), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7104), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3163), + [sym__newline] = ACTIONS(2257), }, [STATE(1246)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9899), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9899), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1248), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3522), }, [STATE(1247)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9899), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9899), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1248)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3452), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9910), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9910), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1249)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9886), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9886), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1251), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3171), + [sym__newline] = ACTIONS(3524), }, [STATE(1250)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1256), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9886), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9886), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3175), + [sym__newline] = ACTIONS(2257), }, [STATE(1251)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3539), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4807), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3177), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9878), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9878), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3179), + [sym__newline] = ACTIONS(2257), }, [STATE(1252)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1129), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9874), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9874), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1254), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3183), + [sym__newline] = ACTIONS(3526), }, [STATE(1253)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9874), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9874), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1254)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1264), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9908), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9908), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3187), + [sym__newline] = ACTIONS(2257), }, [STATE(1255)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1265), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9887), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9887), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1257), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3189), + [sym__newline] = ACTIONS(3528), }, [STATE(1256)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9887), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9887), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1257)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1268), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9873), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9873), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3193), + [sym__newline] = ACTIONS(2257), }, [STATE(1258)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1269), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2132), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2132), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3195), + [sym__newline] = ACTIONS(3530), }, [STATE(1259)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3543), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1272), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2132), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2132), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3199), + [sym__newline] = ACTIONS(2257), }, [STATE(1260)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3544), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4729), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2140), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2140), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3203), + [sym__newline] = ACTIONS(2257), }, [STATE(1261)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(4), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2142), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2142), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1263), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3207), + [sym__newline] = ACTIONS(3532), }, [STATE(1262)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2142), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2142), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3209), + [sym__newline] = ACTIONS(2257), }, [STATE(1263)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1275), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2145), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2145), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3211), + [sym__newline] = ACTIONS(2257), }, [STATE(1264)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5053), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5053), [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1266), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3534), }, [STATE(1265)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5053), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5053), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1266)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5066), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5066), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3215), + [sym__newline] = ACTIONS(2257), }, [STATE(1267)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1279), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5067), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1269), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3536), }, [STATE(1268)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5067), [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1269)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(5076), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(5076), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1270)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1281), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10014), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10014), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1272), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3221), + [sym__newline] = ACTIONS(3538), }, [STATE(1271)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1282), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10014), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10014), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3223), + [sym__newline] = ACTIONS(2257), }, [STATE(1272)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10010), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10010), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1273)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3549), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1284), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9978), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9978), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1275), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3229), + [sym__newline] = ACTIONS(3540), }, [STATE(1274)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9978), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9978), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1275)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(9994), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(9994), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1276)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10299), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10299), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3233), + [sym__newline] = ACTIONS(3542), }, [STATE(1277)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1286), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10299), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10299), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3235), + [sym__newline] = ACTIONS(2257), }, [STATE(1278)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10392), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10392), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1279)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10410), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10410), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1281), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3544), }, [STATE(1280)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1288), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10410), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10410), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3239), + [sym__newline] = ACTIONS(2257), }, [STATE(1281)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10423), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10423), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1282)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10228), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10228), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1284), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3546), }, [STATE(1283)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1289), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10228), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10228), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3243), + [sym__newline] = ACTIONS(2257), }, [STATE(1284)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10216), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10216), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1285)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10240), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10240), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3548), }, [STATE(1286)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10240), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10240), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1287)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1290), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10202), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10202), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3249), + [sym__newline] = ACTIONS(2257), }, [STATE(1288)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8779), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8779), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1291), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3550), }, [STATE(1289)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3253), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8779), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8779), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1290)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1291)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1385), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8786), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8786), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3257), + [sym__newline] = ACTIONS(2257), }, [STATE(1292)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1387), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8741), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8741), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1294), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3259), + [sym__newline] = ACTIONS(3552), }, [STATE(1293)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3405), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1296), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8741), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8741), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3263), + [sym__newline] = ACTIONS(2257), }, [STATE(1294)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(565), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1473), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8751), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8751), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3267), + [sym__newline] = ACTIONS(2257), }, [STATE(1295)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3422), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1448), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3269), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11911), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11911), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1298), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3271), + [sym__newline] = ACTIONS(3554), }, [STATE(1296)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3417), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11911), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11911), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1297)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3277), + [sym__newline] = ACTIONS(2257), }, [STATE(1298)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1305), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11915), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11915), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3281), + [sym__newline] = ACTIONS(2257), }, [STATE(1299)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3576), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4782), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3283), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11917), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11917), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1301), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3285), + [sym__newline] = ACTIONS(3556), }, [STATE(1300)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(3298), - [sym_expression] = STATE(3200), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1383), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11917), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11917), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3299), + [sym__newline] = ACTIONS(2257), }, [STATE(1301)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(11926), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(11926), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3303), + [sym__newline] = ACTIONS(2257), }, [STATE(1302)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8854), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8854), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1305), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3558), }, [STATE(1303)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1314), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8854), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8854), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3307), + [sym__newline] = ACTIONS(2257), }, [STATE(1304)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1315), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1379), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3309), + [sym__newline] = ACTIONS(3560), }, [STATE(1305)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8856), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8856), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1306)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8851), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8851), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3313), + [sym__newline] = ACTIONS(3562), }, [STATE(1307)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1319), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8851), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8851), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3315), + [sym__newline] = ACTIONS(2257), }, [STATE(1308)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3591), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1322), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8859), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8859), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3319), + [sym__newline] = ACTIONS(2257), }, [STATE(1309)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3509), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4830), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10162), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10162), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1312), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3323), + [sym__newline] = ACTIONS(3564), }, [STATE(1310)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3614), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1520), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10162), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10162), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3327), + [sym__newline] = ACTIONS(2257), }, [STATE(1311)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1312)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1324), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10166), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10166), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3331), + [sym__newline] = ACTIONS(2257), }, [STATE(1313)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10173), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10173), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1315), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3333), + [sym__newline] = ACTIONS(3566), }, [STATE(1314)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10173), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10173), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1315)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10144), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10144), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1316)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1328), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8762), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8762), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1319), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3337), + [sym__newline] = ACTIONS(3568), }, [STATE(1317)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1329), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8762), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8762), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3339), + [sym__newline] = ACTIONS(2257), }, [STATE(1318)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1380), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3570), }, [STATE(1319)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8749), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8749), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1320)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1331), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8769), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8769), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3343), + [sym__newline] = ACTIONS(3572), }, [STATE(1321)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(835), - [sym_expression] = STATE(795), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8769), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8769), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1322)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8787), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8787), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1323)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3515), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1334), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3351), + [sym__newline] = ACTIONS(3574), }, [STATE(1324)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7186), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7186), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1327), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3576), }, [STATE(1325)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7186), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7186), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1326)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1335), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3355), + [sym__newline] = ACTIONS(2257), }, [STATE(1327)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1336), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7188), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7188), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3357), + [sym__newline] = ACTIONS(2257), }, [STATE(1328)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7189), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7189), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1330), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3578), }, [STATE(1329)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7189), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7189), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1330)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1338), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7190), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7190), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3361), + [sym__newline] = ACTIONS(2257), }, [STATE(1331)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10099), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10099), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1334), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3580), }, [STATE(1332)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10099), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10099), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1333)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1339), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7593), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7593), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3365), + [sym__newline] = ACTIONS(2257), }, [STATE(1334)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10102), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10102), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1335)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10105), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10105), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1337), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3582), }, [STATE(1336)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10105), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10105), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1337)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1340), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(10106), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(10106), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3371), + [sym__newline] = ACTIONS(2257), }, [STATE(1338)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8820), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8820), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3584), }, [STATE(1339)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8820), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8820), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1340)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7591), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7591), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1341)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1041), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1477), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8850), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8850), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3379), + [sym__newline] = ACTIONS(2257), }, [STATE(1342)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3521), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4906), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8837), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8837), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1344), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3383), + [sym__newline] = ACTIONS(3586), }, [STATE(1343)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3453), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1346), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8837), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8837), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3387), + [sym__newline] = ACTIONS(2257), }, [STATE(1344)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(8841), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(8841), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1345)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3573), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1411), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3391), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8995), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8995), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1348), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3393), + [sym__newline] = ACTIONS(3588), }, [STATE(1346)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3460), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8995), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8995), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1347)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1348), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7590), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7590), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3399), + [sym__newline] = ACTIONS(2257), }, [STATE(1348)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8997), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8997), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1349)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8998), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8998), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), [aux_sym_import_declaration_repeat1] = STATE(1351), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3403), + [sym__newline] = ACTIONS(3590), }, [STATE(1350)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1352), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8998), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8998), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3405), + [sym__newline] = ACTIONS(2257), }, [STATE(1351)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(8999), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(8999), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1352)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9007), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9007), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3592), }, [STATE(1353)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1355), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9007), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9007), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3409), + [sym__newline] = ACTIONS(2257), }, [STATE(1354)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1356), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7590), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7590), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1383), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3411), + [sym__newline] = ACTIONS(3594), }, [STATE(1355)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9010), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9010), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1356)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9012), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9012), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1358), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3596), }, [STATE(1357)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1358), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9012), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9012), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3415), + [sym__newline] = ACTIONS(2257), }, [STATE(1358)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9013), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9013), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1359)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8880), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8880), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1361), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3598), }, [STATE(1360)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3383), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1615), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8880), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8880), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3421), + [sym__newline] = ACTIONS(2257), }, [STATE(1361)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3442), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1364), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8883), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8883), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3425), + [sym__newline] = ACTIONS(2257), }, [STATE(1362)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8884), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8884), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1364), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3600), }, [STATE(1363)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8884), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8884), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1364)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3449), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8885), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8885), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1365)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1366), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6564), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6564), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1367), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3433), + [sym__newline] = ACTIONS(3602), }, [STATE(1366)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6564), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6564), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1367)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1369), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6566), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6566), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3437), + [sym__newline] = ACTIONS(2257), }, [STATE(1368)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6551), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6551), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), [aux_sym_import_declaration_repeat1] = STATE(1370), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3439), + [sym__newline] = ACTIONS(3604), }, [STATE(1369)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6551), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6551), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1370)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(6568), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(6568), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1371)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1373), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1372), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1372), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3443), + [sym__newline] = ACTIONS(3608), }, [STATE(1372)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1374), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3445), + [sym__newline] = ACTIONS(3472), }, [STATE(1373)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(12279), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(12279), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3612), }, [STATE(1374)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(12279), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(12279), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1375)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1376), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(12291), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(12291), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3449), + [sym__newline] = ACTIONS(2257), }, [STATE(1376)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1377)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1414), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3453), - }, - [STATE(1378)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1415), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3455), - }, - [STATE(1379)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1380)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3578), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1384), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3461), - }, - [STATE(1381)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1382)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1426), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3463), - }, - [STATE(1383)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(3308), - [sym_expression] = STATE(3216), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1384)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3585), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3467), - }, - [STATE(1385)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3469), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1386)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3664), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1579), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3471), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3473), - }, - [STATE(1387)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3469), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1388)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1392), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3475), - }, - [STATE(1389)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1427), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3469), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3477), - }, - [STATE(1390)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1395), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3479), - }, - [STATE(1391)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1392)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1393)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3483), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1394)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1395)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1396)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1394), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3487), - }, - [STATE(1397)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3489), - }, - [STATE(1398)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3483), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1399)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3491), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1400)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3491), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1401)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1408), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3491), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3493), - }, - [STATE(1402)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1399), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3483), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3495), - }, - [STATE(1403)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(835), - [sym_expression] = STATE(795), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1404)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(565), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1405), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3497), - }, - [STATE(1405)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(611), - [sym_expression] = STATE(532), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1406)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3000), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1703), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3499), - }, - [STATE(1407)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3532), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1412), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3503), - }, - [STATE(1408)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3505), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1409)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1240), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3507), - }, - [STATE(1410)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1400), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3483), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3509), - }, - [STATE(1411)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3511), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1412)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3595), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3467), - }, - [STATE(1413)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3515), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1414)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1415)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1416)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3511), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1618), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3519), - }, - [STATE(1417)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_block] = STATE(3179), - [sym_expression] = STATE(3083), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1418)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1432), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3521), - }, - [STATE(1419)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3026), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1646), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(3523), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3525), - }, - [STATE(1420)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3538), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1421), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3529), - }, - [STATE(1421)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3594), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3467), - }, - [STATE(1422)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3527), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1423), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3533), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3535), - }, - [STATE(1423)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3540), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3467), - }, - [STATE(1424)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3580), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1425), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3541), - }, - [STATE(1425)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3535), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3467), - }, - [STATE(1426)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1427)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3547), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1428)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1765), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3549), - }, - [STATE(1429)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1430)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1158), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3553), - }, - [STATE(1431)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3515), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3555), - }, - [STATE(1432)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3557), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1433)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1247), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3515), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3559), - }, - [STATE(1434)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3561), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3563), - }, - [STATE(1435)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(565), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1436), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3567), - }, - [STATE(1436)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(611), - [sym_expression] = STATE(532), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1437)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2973), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3569), - }, - [STATE(1438)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_block] = STATE(2341), - [sym_expression] = STATE(2296), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1439)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3418), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1471), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3571), - }, - [STATE(1440)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(3298), - [sym_expression] = STATE(3200), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3573), - }, - [STATE(1441)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1180), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3575), - }, - [STATE(1442)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3461), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1443)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2290), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1678), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3583), - }, - [STATE(1444)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3587), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(5026), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3585), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3587), - }, - [STATE(1445)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(882), - [sym_expression] = STATE(791), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1455), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3589), - }, - [STATE(1446)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1447)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_block] = STATE(3308), - [sym_expression] = STATE(3216), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1448)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3593), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1449)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3451), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1464), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3597), - }, - [STATE(1450)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1451)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1131), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3599), - }, - [STATE(1452)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1230), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3601), - }, - [STATE(1453)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3447), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1470), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3603), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3605), - }, - [STATE(1454)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(882), - [sym_expression] = STATE(791), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3607), - }, - [STATE(1455)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(835), - [sym_expression] = STATE(795), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1456)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1457)] = { - [sym_identifier] = ACTIONS(3609), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_test] = ACTIONS(3612), - [anon_sym_hide] = ACTIONS(3612), - [anon_sym_func] = ACTIONS(3609), - [anon_sym_c_func] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3609), - [anon_sym_c_struct] = ACTIONS(3612), - [anon_sym_opaque] = ACTIONS(3612), - [anon_sym_distinct] = ACTIONS(3612), - [anon_sym_alias] = ACTIONS(3612), - [anon_sym_union] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_mut] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_void] = ACTIONS(3609), - [anon_sym_noreturn] = ACTIONS(3609), - [anon_sym_type] = ACTIONS(3609), - [anon_sym_anyopaque] = ACTIONS(3609), - [anon_sym_bool] = ACTIONS(3609), - [anon_sym_int] = ACTIONS(3609), - [anon_sym_uint] = ACTIONS(3609), - [anon_sym_float] = ACTIONS(3609), - [anon_sym_range] = ACTIONS(3609), - [anon_sym_i8] = ACTIONS(3609), - [anon_sym_i16] = ACTIONS(3609), - [anon_sym_i32] = ACTIONS(3609), - [anon_sym_i64] = ACTIONS(3609), - [anon_sym_u8] = ACTIONS(3609), - [anon_sym_u16] = ACTIONS(3609), - [anon_sym_u32] = ACTIONS(3609), - [anon_sym_u64] = ACTIONS(3609), - [anon_sym_isize] = ACTIONS(3609), - [anon_sym_usize] = ACTIONS(3609), - [anon_sym_f32] = ACTIONS(3609), - [anon_sym_f64] = ACTIONS(3609), - [anon_sym_c_char] = ACTIONS(3609), - [anon_sym_c_schar] = ACTIONS(3609), - [anon_sym_c_uchar] = ACTIONS(3609), - [anon_sym_c_short] = ACTIONS(3609), - [anon_sym_c_ushort] = ACTIONS(3609), - [anon_sym_c_int] = ACTIONS(3609), - [anon_sym_c_uint] = ACTIONS(3609), - [anon_sym_c_long] = ACTIONS(3609), - [anon_sym_c_ulong] = ACTIONS(3609), - [anon_sym_c_longlong] = ACTIONS(3609), - [anon_sym_c_ulonglong] = ACTIONS(3609), - [anon_sym_c_float] = ACTIONS(3609), - [anon_sym_c_double] = ACTIONS(3609), - [anon_sym_c_longdouble] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_break] = ACTIONS(3609), - [anon_sym_continue] = ACTIONS(3609), - [anon_sym_defer] = ACTIONS(3609), - [anon_sym_errdefer] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_else] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_expand] = ACTIONS(3609), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_orelse] = ACTIONS(3612), - [anon_sym_catch] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_xor] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_true] = ACTIONS(3609), - [anon_sym_false] = ACTIONS(3609), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_unreachable] = ACTIONS(3609), - [anon_sym_undefined] = ACTIONS(3609), - [sym_sink] = ACTIONS(3609), - [sym_integer] = ACTIONS(3609), - [sym_float] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [sym_multiline_string] = ACTIONS(3614), - [sym_character] = ACTIONS(3614), + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(12294), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(12294), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1378), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3614), }, - [STATE(1458)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3512), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1377)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(12294), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(12294), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3467), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1378)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(12303), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(12303), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1379)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1380)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1381)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1382)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1396), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3616), + }, + [STATE(1383)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7592), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7592), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1384)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10827), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10827), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1386), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3618), + }, + [STATE(1385)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10827), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10827), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1386)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10751), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10751), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1387)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10767), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10767), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1389), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3620), + }, + [STATE(1388)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10767), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10767), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1389)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(10586), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(10586), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1390)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9299), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9299), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1392), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3622), + }, + [STATE(1391)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9299), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9299), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1392)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9301), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9301), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1393)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9302), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9302), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1395), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3624), + }, + [STATE(1394)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9302), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9302), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1395)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(9303), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(9303), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1396)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1397)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1398), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1398), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3628), + }, + [STATE(1398)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3472), + }, + [STATE(1399)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(13131), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(13131), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1401), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3632), + }, + [STATE(1400)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(13131), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(13131), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1401)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(13165), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(13165), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1402)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(13166), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(13166), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1404), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3634), + }, + [STATE(1403)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(13166), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(13166), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1404)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(13318), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(13318), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1405)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3472), + }, + [STATE(1406)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1407), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1407), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3640), + }, + [STATE(1407)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3472), + }, + [STATE(1408)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7099), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7099), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1414), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3644), + }, + [STATE(1409)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7099), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7099), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1410)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1411), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1411), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3648), + }, + [STATE(1411)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3472), + }, + [STATE(1412)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_test] = ACTIONS(2647), + [anon_sym_hide] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(1413)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_test] = ACTIONS(2647), + [anon_sym_hide] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(1414)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7101), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7101), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1415)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3652), + }, + [STATE(1416)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7102), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7102), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1425), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3654), + }, + [STATE(1417)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7102), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7102), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1418)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1419), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3658), + }, + [STATE(1419)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3472), + }, + [STATE(1420)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_test] = ACTIONS(2666), + [anon_sym_hide] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(1421)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_test] = ACTIONS(2666), + [anon_sym_hide] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(1422)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3662), + }, + [STATE(1423)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1424)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1432), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3664), + }, + [STATE(1425)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7107), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7107), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1426)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3666), + }, + [STATE(1427)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1428), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1428), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3670), + }, + [STATE(1428)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3472), + }, + [STATE(1429)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1430)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1438), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3674), + }, + [STATE(1431)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1439), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3676), + }, + [STATE(1432)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1433)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1441), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3678), + }, + [STATE(1434)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1435)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1444), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3680), + }, + [STATE(1436)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1437), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1437), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3684), + }, + [STATE(1437)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3472), + }, + [STATE(1438)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1439)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1440)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1447), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3688), + }, + [STATE(1441)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1442)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1448), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3690), + }, + [STATE(1443)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1449), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3692), + }, + [STATE(1444)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1445)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(1446), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(1446), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3696), + }, + [STATE(1446)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(582), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_block_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3472), + }, + [STATE(1447)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1448)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1449)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1450)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1451), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3700), + }, + [STATE(1451)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1452)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3702), + }, + [STATE(1453)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1457), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3704), + }, + [STATE(1454)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1455)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1460), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3706), + }, + [STATE(1456)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1462), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3708), + }, + [STATE(1457)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1458)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1464), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3710), }, [STATE(1459)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_block] = STATE(3742), - [sym_expression] = STATE(3605), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1465), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3712), }, [STATE(1460)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3315), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1511), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(3471), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3617), + [sym__newline] = ACTIONS(2257), }, [STATE(1461)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_block] = STATE(882), - [sym_expression] = STATE(791), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1467), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3619), + [sym__newline] = ACTIONS(3714), }, [STATE(1462)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3463), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1602), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3621), + [sym__newline] = ACTIONS(2257), }, [STATE(1463)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3584), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4818), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1470), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3625), + [sym__newline] = ACTIONS(3716), }, [STATE(1464)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3414), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1465)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1133), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3631), + [sym__newline] = ACTIONS(2257), }, [STATE(1466)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3441), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1442), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1471), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3635), + [sym__newline] = ACTIONS(3718), }, [STATE(1467)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1136), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3637), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3639), + [sym__newline] = ACTIONS(2257), }, [STATE(1468)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3312), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1729), - [sym_identifier] = ACTIONS(3641), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_AT] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(3645), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1472), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2348), + [sym__newline] = ACTIONS(3720), }, [STATE(1469)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3588), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1344), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3647), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1473), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3649), + [sym__newline] = ACTIONS(3722), }, [STATE(1470)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1471)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3445), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1472)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3558), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(4753), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3653), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3655), + [sym__newline] = ACTIONS(2257), }, [STATE(1473)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_block] = STATE(611), - [sym_expression] = STATE(532), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1474)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1332), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1475), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3657), + [sym__newline] = ACTIONS(3724), }, [STATE(1475)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(545), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1476)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1051), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1478), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3726), }, [STATE(1477)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1032), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1481), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3728), }, [STATE(1478)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3597), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1490), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3659), + [sym__newline] = ACTIONS(2257), }, [STATE(1479)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1033), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1484), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3730), }, [STATE(1480)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3546), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1486), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3732), }, [STATE(1481)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1034), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1482)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3224), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1488), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3734), }, [STATE(1483)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1035), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1489), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3736), }, [STATE(1484)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1036), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1485)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3366), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1752), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3661), + [sym__newline] = ACTIONS(3738), }, [STATE(1486)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3368), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, [STATE(1487)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3333), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1488)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3369), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1489)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(711), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1505), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3663), - }, - [STATE(1490)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3605), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1491)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(549), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1641), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3665), - }, - [STATE(1492)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(533), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1655), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3667), - }, - [STATE(1493)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(728), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1494)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3608), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3669), - }, - [STATE(1495)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(727), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1496)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3609), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1517), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3671), - }, - [STATE(1497)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3611), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1518), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3673), - }, - [STATE(1498)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3612), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3675), - }, - [STATE(1499)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3614), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1520), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3327), - }, - [STATE(1500)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3589), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1613), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3677), - }, - [STATE(1501)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3617), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1521), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3679), - }, - [STATE(1502)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3618), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1522), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3681), - }, - [STATE(1503)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3620), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1523), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3683), - }, - [STATE(1504)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3621), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1524), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3685), - }, - [STATE(1505)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(719), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1506)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1037), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1769), - [sym_identifier] = ACTIONS(3687), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(3689), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3691), - }, - [STATE(1507)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(556), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1667), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3693), - }, - [STATE(1508)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(543), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1673), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3695), - }, - [STATE(1509)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(531), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1475), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2871), - }, - [STATE(1510)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(717), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1511)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3334), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1512)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(546), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1725), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3697), - }, - [STATE(1513)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(534), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1727), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3699), - }, - [STATE(1514)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(535), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1730), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3701), - }, - [STATE(1515)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(536), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1749), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3703), - }, - [STATE(1516)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3638), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1517)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3639), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1518)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3640), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1519)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3641), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1520)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3642), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1521)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3643), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1522)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3644), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1523)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3645), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1524)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3646), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1525)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3398), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1526)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3571), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1527)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(712), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1510), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3705), - }, - [STATE(1528)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3335), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1529)] = { - [sym_type] = STATE(3223), - [sym__type_atom] = STATE(3189), - [sym_parenthesized_type] = STATE(3189), - [sym_named_type] = STATE(3189), - [sym_intrinsic_type] = STATE(3189), - [sym_optional_type] = STATE(3189), - [sym_pointer_type] = STATE(3189), - [sym_array_type] = STATE(3189), - [sym_function_type] = STATE(3189), - [sym_builtin_type] = STATE(3189), - [sym_qualified_identifier] = STATE(3190), - [sym_identifier] = ACTIONS(3707), - [anon_sym_func] = ACTIONS(3709), - [anon_sym_c_func] = ACTIONS(3709), - [anon_sym_LPAREN] = ACTIONS(3711), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_AT] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3721), - [anon_sym_mut] = ACTIONS(3724), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(418), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), - }, - [STATE(1530)] = { - [sym_type] = STATE(3252), - [sym__type_atom] = STATE(3189), - [sym_parenthesized_type] = STATE(3189), - [sym_named_type] = STATE(3189), - [sym_intrinsic_type] = STATE(3189), - [sym_optional_type] = STATE(3189), - [sym_pointer_type] = STATE(3189), - [sym_array_type] = STATE(3189), - [sym_function_type] = STATE(3189), - [sym_builtin_type] = STATE(3189), - [sym_qualified_identifier] = STATE(3190), - [sym_identifier] = ACTIONS(3707), - [anon_sym_func] = ACTIONS(3709), - [anon_sym_c_func] = ACTIONS(3709), - [anon_sym_LPAREN] = ACTIONS(3711), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_AT] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3721), - [anon_sym_mut] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(418), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), - }, - [STATE(1531)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3336), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1532)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3504), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1533)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3376), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1633), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3731), - }, - [STATE(1534)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3374), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3733), - }, - [STATE(1535)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3377), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1488), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3735), - }, - [STATE(1536)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(795), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1537)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_import] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_c_struct] = ACTIONS(2806), - [anon_sym_opaque] = ACTIONS(2806), - [anon_sym_distinct] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(2808), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_defer] = ACTIONS(2806), - [anon_sym_errdefer] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_else] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_expand] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), - }, - [STATE(1538)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3337), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1539)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3200), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1540), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1494), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3740), }, - [STATE(1540)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3216), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1488)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1541)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3533), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1480), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1489)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1490)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1495), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3742), }, - [STATE(1542)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3685), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1491)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1492)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3744), }, - [STATE(1543)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3662), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1576), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1493)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1497), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3746), }, - [STATE(1544)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3197), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1577), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1494)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1495)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1496)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1497)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1498)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1499), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3748), }, - [STATE(1545)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1547), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1499)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1500)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1502), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3750), }, - [STATE(1546)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3693), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1578), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1501)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1505), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3752), }, - [STATE(1547)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(532), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1502)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1548)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3664), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1579), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3473), - }, - [STATE(1549)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2971), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1560), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1503)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1508), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3754), }, - [STATE(1550)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2978), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1561), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1504)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1510), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3756), }, - [STATE(1551)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(556), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1562), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1505)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1506)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1512), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3758), }, - [STATE(1552)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2967), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1507)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1513), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3760), }, - [STATE(1553)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2973), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1508)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3569), + [sym__newline] = ACTIONS(2257), }, - [STATE(1554)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2979), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1565), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1509)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1515), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3762), }, - [STATE(1555)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2981), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1566), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1510)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1511)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1518), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3764), }, - [STATE(1556)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2982), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1567), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1512)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1513)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1514)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1519), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3766), }, - [STATE(1557)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2965), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1568), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1515)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1516)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3768), }, - [STATE(1558)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3600), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1586), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1517)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3770), }, - [STATE(1559)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3623), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1591), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1518)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1519)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1520)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1521)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1522)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1523), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3772), }, - [STATE(1560)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2966), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1523)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1561)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2968), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1562)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(542), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1563)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2976), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1564)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2977), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1565)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2980), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1566)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2970), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1567)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2974), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1568)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2972), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(846), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1569)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3672), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1592), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1524)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3774), }, - [STATE(1570)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(791), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1574), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1525)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1529), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3776), }, - [STATE(1571)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3682), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1593), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1526)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1527)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1532), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3778), }, - [STATE(1572)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3550), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1528)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1534), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3780), }, - [STATE(1573)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(9), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1580), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1529)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1530)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1536), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3782), }, - [STATE(1574)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(795), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), + [STATE(1531)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1575)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3687), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1576)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3688), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1577)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3224), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1578)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3634), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1579)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3635), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1580)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(10), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1581)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3454), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1597), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3784), }, - [STATE(1582)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3456), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1598), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1532)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1533)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1539), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3786), }, - [STATE(1583)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(793), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1599), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1534)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1535)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1542), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3788), }, - [STATE(1584)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3459), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1601), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1536)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1537)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1538)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1543), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3790), }, - [STATE(1585)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3463), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1602), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1539)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3621), + [sym__newline] = ACTIONS(2257), }, - [STATE(1586)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3656), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1587)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3465), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1603), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1540)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1544), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3792), }, - [STATE(1588)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3406), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1604), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1541)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1545), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3794), }, - [STATE(1589)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3408), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1605), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1542)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1543)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1544)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1545)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1546)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1547), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3796), }, - [STATE(1590)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3411), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1606), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1547)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1548)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7574), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7574), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3798), }, - [STATE(1591)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3659), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1549)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7574), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7574), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1592)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3661), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1550)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7580), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7580), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1593)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3666), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1594)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2282), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1595)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(753), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1551)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7581), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7581), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1553), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3800), }, - [STATE(1596)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(746), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1611), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1552)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7581), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7581), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1553)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(7579), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(7579), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1554)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(5020), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(5020), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3802), }, - [STATE(1597)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3423), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1555)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(5020), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(5020), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1598)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3424), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1556)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(5022), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(5022), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1599)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(799), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1600)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3367), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1601)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3427), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1602)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3428), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1603)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3429), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1604)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3430), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1605)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3431), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1606)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3432), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1607)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3372), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1608)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1609)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3402), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1525), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1557)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(5023), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(5023), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3804), }, - [STATE(1610)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(745), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1558)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(5023), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(5023), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1611)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(748), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1559)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(5024), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(5024), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1612)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(799), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1613)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3556), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1614)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(2), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1615)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3396), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1616)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3478), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1532), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [STATE(1560)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(6543), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(6543), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1562), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3806), }, - [STATE(1617)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3478), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [STATE(1561)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(6543), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(6543), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1618)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3545), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1562)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(6545), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(6545), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1619)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3338), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1620)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2235), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1563)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(6546), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(6546), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1565), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3808), }, - [STATE(1621)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3083), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1564)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(6546), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(6546), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1622)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3017), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1621), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1565)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(6547), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(6547), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1566)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1568), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3810), }, - [STATE(1623)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(14), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1652), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1567)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1571), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3812), }, - [STATE(1624)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3023), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1642), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1568)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1569)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1574), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3814), }, - [STATE(1625)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3024), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1643), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1570)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1576), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3816), }, - [STATE(1626)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(6), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1571)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1627)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3018), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1644), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1572)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1578), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3818), }, - [STATE(1628)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3025), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1645), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1573)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1579), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3820), }, - [STATE(1629)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3026), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1646), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1574)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3525), + [sym__newline] = ACTIONS(2257), }, - [STATE(1630)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(736), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1637), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1575)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1581), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3822), }, - [STATE(1631)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(740), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1638), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1576)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1577)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3824), }, - [STATE(1632)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3028), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1647), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1578)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1579)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1580)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1585), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3826), }, - [STATE(1633)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3363), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1581)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1634)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3032), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1649), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1582)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1586), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3828), }, - [STATE(1635)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3033), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1650), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1583)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1587), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3830), }, - [STATE(1636)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3362), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1600), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1584)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1585)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1586)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1587)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1588)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1589), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3832), }, - [STATE(1637)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(729), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1589)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1638)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(730), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1639)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3375), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1607), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1590)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1592), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3834), }, - [STATE(1640)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(793), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1612), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1591)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1595), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3836), }, - [STATE(1641)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(547), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1592)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1642)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3056), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1643)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3058), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1644)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3091), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1645)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3060), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1646)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3062), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1647)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3064), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1648)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3065), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1649)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3066), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1650)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3068), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1651)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2303), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1660), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1593)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1598), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3838), }, - [STATE(1652)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(15), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1653)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(741), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1656), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1594)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1600), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3840), }, - [STATE(1654)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(739), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1657), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1595)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1596)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1602), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3842), }, - [STATE(1655)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(552), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1656)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(735), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1657)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(737), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1658)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(799), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1659)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(11), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1660)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2296), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1661)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3361), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1662)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2266), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1674), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1597)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1603), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3844), }, - [STATE(1663)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2256), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1675), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1598)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1599)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1605), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3846), }, - [STATE(1664)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2305), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1676), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1600)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1601)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3848), }, - [STATE(1665)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2288), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1677), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1602)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1603)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1604)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1609), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3850), }, - [STATE(1666)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2290), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1678), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1605)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3583), + [sym__newline] = ACTIONS(2257), }, - [STATE(1667)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(542), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1668)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2304), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1679), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1606)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1610), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3852), }, - [STATE(1669)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2250), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1680), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1607)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1611), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3854), }, - [STATE(1670)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2277), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1681), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1608)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1609)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1610)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1611)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1612)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1613), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3856), }, - [STATE(1671)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2285), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1682), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), + [STATE(1613)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1614)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1616), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3858), }, - [STATE(1672)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(791), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1536), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1615)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1619), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3860), }, - [STATE(1673)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(530), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1616)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1674)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2289), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1675)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2233), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1676)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2264), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1677)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1678)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2236), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1679)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2237), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1680)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2238), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1681)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2241), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1682)] = { - [sym_struct_type] = STATE(2374), - [sym_array_type] = STATE(2374), - [sym_builtin_type] = STATE(2374), - [sym_expression] = STATE(2242), - [sym_binary_expression] = STATE(2374), - [sym_catch_expression] = STATE(2374), - [sym_unary_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_intrinsic_call_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_slice_expression] = STATE(2374), - [sym_postfix_expression] = STATE(2374), - [sym_struct_literal] = STATE(2374), - [sym_anonymous_record_literal] = STATE(2374), - [sym_tuple_literal] = STATE(2374), - [sym_enum_literal] = STATE(2374), - [sym_array_literal] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_comptime_block] = STATE(2374), - [sym_function_literal] = STATE(2374), - [sym_qualified_identifier] = STATE(4301), - [sym_boolean] = STATE(2374), - [sym_null] = STATE(2374), - [sym_unreachable] = STATE(2374), - [sym_undefined] = STATE(2374), - [sym_string] = STATE(2374), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym_type] = 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_AMP] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [anon_sym_unreachable] = ACTIONS(3141), - [anon_sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3145), - [sym_integer] = ACTIONS(3145), - [sym_float] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3147), - [sym_character] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1683)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3381), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1617)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1622), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3862), }, - [STATE(1684)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3559), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1686), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1618)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1624), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3864), }, - [STATE(1685)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(7), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1687), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1619)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1620)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1626), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3866), }, - [STATE(1686)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3575), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1687)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(8), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1688)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1689), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1621)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3868), }, - [STATE(1689)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(532), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1622)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1690)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3007), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1699), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1623)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1629), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3870), }, - [STATE(1691)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2996), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1700), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1624)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1625)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1632), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3872), }, - [STATE(1692)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(556), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1701), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1626)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1627)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1628)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1633), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3874), }, - [STATE(1693)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2998), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1702), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1629)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1630)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1634), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3876), }, - [STATE(1694)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3000), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1703), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3499), - }, - [STATE(1695)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3005), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1704), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1631)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1635), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3878), }, - [STATE(1696)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3008), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1705), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1632)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1633)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1634)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1635)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1636)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1637), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3880), }, - [STATE(1697)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3010), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1706), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1637)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1638)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1640), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3882), }, - [STATE(1698)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3011), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1707), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1639)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1643), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3884), }, - [STATE(1699)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3012), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1640)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1700)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3013), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1701)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(542), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1702)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3015), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1703)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2997), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1704)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3001), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1705)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3003), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1706)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(2994), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1707)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(3006), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_try] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1708)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3572), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1710), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1641)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1646), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3886), }, - [STATE(1709)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(12), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1626), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1642)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1648), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3888), }, - [STATE(1710)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3523), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1643)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1711)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(13), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1712)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3593), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1714), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1644)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1650), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3890), }, - [STATE(1713)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(16), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1711), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1645)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1651), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3892), }, - [STATE(1714)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3547), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1646)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1715)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(17), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1716)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3507), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1718), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1647)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1653), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3894), }, - [STATE(1717)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(18), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1659), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1648)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1649)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1656), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3896), }, - [STATE(1718)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3514), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1650)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1719)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(791), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1651)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1652)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1657), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3898), }, - [STATE(1720)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3567), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1722), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1653)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1654)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1658), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3900), }, - [STATE(1721)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(19), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1715), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1655)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1659), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3902), }, - [STATE(1722)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3577), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1656)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1723)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3329), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1657)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1724)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(4), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1658)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3207), + [sym__newline] = ACTIONS(2257), }, - [STATE(1725)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(548), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1659)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1726)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1765), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3549), - }, - [STATE(1727)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(553), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1728)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(795), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1729)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3330), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1730)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(554), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1731)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3364), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1732)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1660)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1661), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3904), }, - [STATE(1733)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3200), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1738), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1661)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2730), + [sym__newline] = ACTIONS(2257), }, - [STATE(1734)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(5), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1735)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1046), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1768), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1662)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9773), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9773), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1664), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3906), }, - [STATE(1736)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1037), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1769), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3691), - }, - [STATE(1737)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(793), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1658), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1663)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9623), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9623), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1667), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3908), }, - [STATE(1738)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3216), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1664)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1739)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1040), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1476), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1665)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1670), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3910), }, - [STATE(1740)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1041), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1477), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3379), - }, - [STATE(1741)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3383), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1615), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3421), - }, - [STATE(1742)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1042), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1479), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1666)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9660), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9660), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1672), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3912), }, - [STATE(1743)] = { - [sym_type] = STATE(3248), - [sym__type_atom] = STATE(3189), - [sym_parenthesized_type] = STATE(3189), - [sym_named_type] = STATE(3189), - [sym_intrinsic_type] = STATE(3189), - [sym_optional_type] = STATE(3189), - [sym_pointer_type] = STATE(3189), - [sym_array_type] = STATE(3189), - [sym_function_type] = STATE(3189), - [sym_builtin_type] = STATE(3189), - [sym_qualified_identifier] = STATE(3190), - [sym_identifier] = ACTIONS(3707), - [anon_sym_func] = ACTIONS(3709), - [anon_sym_c_func] = ACTIONS(3709), - [anon_sym_LPAREN] = ACTIONS(3914), - [anon_sym_RPAREN] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_struct_type_BANG] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3917), - [anon_sym_AT] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3920), - [anon_sym_mut] = ACTIONS(3923), - [anon_sym_LBRACK] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_RBRACK] = ACTIONS(329), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_COLON] = ACTIONS(329), - [anon_sym_else] = ACTIONS(334), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_orelse] = ACTIONS(334), - [anon_sym_catch] = ACTIONS(334), - [anon_sym_or] = ACTIONS(334), - [anon_sym_and] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_xor] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_LT_LT_PIPE] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(329), + [STATE(1667)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(329), + [sym__newline] = ACTIONS(2257), }, - [STATE(1744)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1043), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1481), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1668)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1674), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3914), + }, + [STATE(1669)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9626), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9626), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1675), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3916), + }, + [STATE(1670)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9712), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9712), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1671)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9737), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9737), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1677), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3918), + }, + [STATE(1672)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1673)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1680), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3920), + }, + [STATE(1674)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9668), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9668), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1675)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1676)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1681), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3922), + }, + [STATE(1677)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1678)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1682), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3924), + }, + [STATE(1679)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9677), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9677), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1683), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3926), + }, + [STATE(1680)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9678), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9678), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1681)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9530), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9530), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1682)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9532), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9532), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1683)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1684)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1685), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3928), }, - [STATE(1745)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1044), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1483), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1685)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9606), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9606), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1686)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1688), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3930), }, - [STATE(1746)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1045), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1484), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1687)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1691), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3932), }, - [STATE(1747)] = { - [sym_struct_type] = STATE(3695), - [sym_array_type] = STATE(3695), - [sym_builtin_type] = STATE(3695), - [sym_expression] = STATE(3473), - [sym_binary_expression] = STATE(3695), - [sym_catch_expression] = STATE(3695), - [sym_unary_expression] = STATE(3695), - [sym_field_expression] = STATE(3695), - [sym_intrinsic_call_expression] = STATE(3695), - [sym_call_expression] = STATE(3695), - [sym_index_expression] = STATE(3695), - [sym_slice_expression] = STATE(3695), - [sym_postfix_expression] = STATE(3695), - [sym_struct_literal] = STATE(3695), - [sym_anonymous_record_literal] = STATE(3695), - [sym_tuple_literal] = STATE(3695), - [sym_enum_literal] = STATE(3695), - [sym_array_literal] = STATE(3695), - [sym_parenthesized_expression] = STATE(3695), - [sym_comptime_block] = STATE(3695), - [sym_function_literal] = STATE(3695), - [sym_qualified_identifier] = STATE(4665), - [sym_boolean] = STATE(3695), - [sym_null] = STATE(3695), - [sym_unreachable] = STATE(3695), - [sym_undefined] = STATE(3695), - [sym_string] = STATE(3695), - [aux_sym_import_declaration_repeat1] = STATE(1617), - [sym_identifier] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2897), - [anon_sym_unreachable] = ACTIONS(2899), - [anon_sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [STATE(1688)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2951), + [sym__newline] = ACTIONS(2257), }, - [STATE(1748)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3511), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1618), - [sym_identifier] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1689)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1694), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3519), + [sym__newline] = ACTIONS(3934), }, - [STATE(1749)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(555), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1690)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1696), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3936), }, - [STATE(1750)] = { - [sym_type] = STATE(3203), - [sym__type_atom] = STATE(3189), - [sym_parenthesized_type] = STATE(3189), - [sym_named_type] = STATE(3189), - [sym_intrinsic_type] = STATE(3189), - [sym_optional_type] = STATE(3189), - [sym_pointer_type] = STATE(3189), - [sym_array_type] = STATE(3189), - [sym_function_type] = STATE(3189), - [sym_builtin_type] = STATE(3189), - [sym_qualified_identifier] = STATE(3190), - [sym_identifier] = ACTIONS(3707), - [anon_sym_func] = ACTIONS(3709), - [anon_sym_c_func] = ACTIONS(3709), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_struct_type_BANG] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3937), - [anon_sym_AT] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3940), - [anon_sym_mut] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(391), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_else] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT_LT_PIPE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), + [STATE(1691)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(2257), }, - [STATE(1751)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3311), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1723), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1692)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1698), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3938), + }, + [STATE(1693)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1699), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3940), + }, + [STATE(1694)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1695)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1701), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3942), + }, + [STATE(1696)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1697)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1704), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3944), + }, + [STATE(1698)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1699)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1700)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1705), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3946), + }, + [STATE(1701)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1702)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1706), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3948), }, - [STATE(1752)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3365), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), - }, - [STATE(1753)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3312), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1729), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2348), - }, - [STATE(1754)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3197), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1703)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1707), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3950), }, - [STATE(1755)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3314), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1487), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1704)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1705)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1706)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1707)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1708)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1709), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3952), }, - [STATE(1756)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3315), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1511), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1709)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3617), + [sym__newline] = ACTIONS(2257), }, - [STATE(1757)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3316), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1528), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1710)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10590), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10590), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1712), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3954), }, - [STATE(1758)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3317), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1531), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1711)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10498), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10498), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1715), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3956), }, - [STATE(1759)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3318), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1538), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1712)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10530), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10530), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1713)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10530), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10530), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1718), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3958), }, - [STATE(1760)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3319), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [aux_sym_import_declaration_repeat1] = STATE(1619), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [STATE(1714)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10749), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10749), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1720), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3960), }, - [STATE(1761)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(731), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1493), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1715)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10658), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10658), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1716)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10658), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10658), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1722), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3962), }, - [STATE(1762)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(733), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1495), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1717)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10671), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10671), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1723), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3964), }, - [STATE(1763)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3371), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1661), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1718)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10681), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10681), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1719)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10685), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10685), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1725), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3966), }, - [STATE(1764)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(3373), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), + [STATE(1720)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10712), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10712), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1721)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10712), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10712), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1728), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3968), + }, + [STATE(1722)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10613), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10613), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1723)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10684), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10684), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1724)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10684), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10684), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3970), + }, + [STATE(1725)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10722), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10722), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1726)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10722), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10722), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1730), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3972), + }, + [STATE(1727)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10732), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10732), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), [aux_sym_import_declaration_repeat1] = STATE(1731), - [sym_identifier] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2999), + [sym__newline] = ACTIONS(3974), }, - [STATE(1765)] = { - [sym_struct_type] = STATE(562), - [sym_array_type] = STATE(562), - [sym_builtin_type] = STATE(562), - [sym_expression] = STATE(532), - [sym_binary_expression] = STATE(562), - [sym_catch_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_intrinsic_call_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_index_expression] = STATE(562), - [sym_slice_expression] = STATE(562), - [sym_postfix_expression] = STATE(562), - [sym_struct_literal] = STATE(562), - [sym_anonymous_record_literal] = STATE(562), - [sym_tuple_literal] = STATE(562), - [sym_enum_literal] = STATE(562), - [sym_array_literal] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_comptime_block] = STATE(562), - [sym_function_literal] = STATE(562), - [sym_qualified_identifier] = STATE(4549), - [sym_boolean] = STATE(562), - [sym_null] = STATE(562), - [sym_unreachable] = STATE(562), - [sym_undefined] = STATE(562), - [sym_string] = STATE(562), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_noreturn] = ACTIONS(41), - [anon_sym_type] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_TILDE] = ACTIONS(137), - [anon_sym_try] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_null] = ACTIONS(97), - [anon_sym_unreachable] = ACTIONS(99), - [anon_sym_undefined] = ACTIONS(101), - [sym_sink] = ACTIONS(105), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_multiline_string] = ACTIONS(107), - [sym_character] = ACTIONS(107), + [STATE(1728)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10750), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10750), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1766)] = { - [sym_type] = STATE(3198), - [sym__type_atom] = STATE(3189), - [sym_parenthesized_type] = STATE(3189), - [sym_named_type] = STATE(3189), - [sym_intrinsic_type] = STATE(3189), - [sym_optional_type] = STATE(3189), - [sym_pointer_type] = STATE(3189), - [sym_array_type] = STATE(3189), - [sym_function_type] = STATE(3189), - [sym_builtin_type] = STATE(3189), - [sym_qualified_identifier] = STATE(3190), - [sym_identifier] = ACTIONS(3707), - [anon_sym_func] = ACTIONS(3709), - [anon_sym_c_func] = ACTIONS(3709), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(362), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_struct_type_BANG] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_AT] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_mut] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_RBRACK] = ACTIONS(362), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_COLON] = ACTIONS(362), - [anon_sym_else] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [STATE(1729)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10592), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10592), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2257), }, - [STATE(1767)] = { - [sym_type] = STATE(3237), - [sym__type_atom] = STATE(3189), - [sym_parenthesized_type] = STATE(3189), - [sym_named_type] = STATE(3189), - [sym_intrinsic_type] = STATE(3189), - [sym_optional_type] = STATE(3189), - [sym_pointer_type] = STATE(3189), - [sym_array_type] = STATE(3189), - [sym_function_type] = STATE(3189), - [sym_builtin_type] = STATE(3189), - [sym_qualified_identifier] = STATE(3190), - [sym_identifier] = ACTIONS(3707), - [anon_sym_func] = ACTIONS(3709), - [anon_sym_c_func] = ACTIONS(3709), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(362), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_struct_type_BANG] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_AT] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_mut] = ACTIONS(3982), - [anon_sym_LBRACK] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_RBRACK] = ACTIONS(362), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_COLON] = ACTIONS(362), - [anon_sym_else] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [STATE(1730)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10594), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10594), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2257), }, - [STATE(1768)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1047), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1731)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10595), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10595), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(2257), }, - [STATE(1769)] = { - [sym_struct_type] = STATE(869), - [sym_array_type] = STATE(869), - [sym_builtin_type] = STATE(869), - [sym_expression] = STATE(1050), - [sym_binary_expression] = STATE(869), - [sym_catch_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym_field_expression] = STATE(869), - [sym_intrinsic_call_expression] = STATE(869), - [sym_call_expression] = STATE(869), - [sym_index_expression] = STATE(869), - [sym_slice_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_struct_literal] = STATE(869), - [sym_anonymous_record_literal] = STATE(869), - [sym_tuple_literal] = STATE(869), - [sym_enum_literal] = STATE(869), - [sym_array_literal] = STATE(869), - [sym_parenthesized_expression] = STATE(869), - [sym_comptime_block] = STATE(869), - [sym_function_literal] = STATE(869), - [sym_qualified_identifier] = STATE(4667), - [sym_boolean] = STATE(869), - [sym_null] = STATE(869), - [sym_unreachable] = STATE(869), - [sym_undefined] = STATE(869), - [sym_string] = STATE(869), - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(3205), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_unreachable] = ACTIONS(1455), - [anon_sym_undefined] = ACTIONS(1457), - [sym_sink] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_multiline_string] = ACTIONS(1461), - [sym_character] = ACTIONS(1461), + [STATE(1732)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10595), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10595), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(848), + [sym__newline] = ACTIONS(3976), }, - [STATE(1770)] = { - [sym_struct_type] = STATE(3174), - [sym_array_type] = STATE(3174), - [sym_builtin_type] = STATE(3174), - [sym_expression] = STATE(3030), - [sym_binary_expression] = STATE(3174), - [sym_catch_expression] = STATE(3174), - [sym_unary_expression] = STATE(3174), - [sym_field_expression] = STATE(3174), - [sym_intrinsic_call_expression] = STATE(3174), - [sym_call_expression] = STATE(3174), - [sym_index_expression] = STATE(3174), - [sym_slice_expression] = STATE(3174), - [sym_postfix_expression] = STATE(3174), - [sym_struct_literal] = STATE(3174), - [sym_anonymous_record_literal] = STATE(3174), - [sym_tuple_literal] = STATE(3174), - [sym_enum_literal] = STATE(3174), - [sym_array_literal] = STATE(3174), - [sym_parenthesized_expression] = STATE(3174), - [sym_comptime_block] = STATE(3174), - [sym_function_literal] = STATE(3174), - [sym_qualified_identifier] = STATE(4668), - [sym_boolean] = STATE(3174), - [sym_null] = STATE(3174), - [sym_unreachable] = STATE(3174), - [sym_undefined] = STATE(3174), - [sym_string] = STATE(3174), - [aux_sym_import_declaration_repeat1] = STATE(1648), - [sym_identifier] = ACTIONS(2798), - [anon_sym_func] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_void] = ACTIONS(199), - [anon_sym_noreturn] = ACTIONS(199), - [anon_sym_type] = ACTIONS(199), - [anon_sym_anyopaque] = ACTIONS(199), - [anon_sym_bool] = ACTIONS(199), - [anon_sym_int] = ACTIONS(199), - [anon_sym_uint] = ACTIONS(199), - [anon_sym_float] = ACTIONS(199), - [anon_sym_range] = ACTIONS(199), - [anon_sym_i8] = ACTIONS(199), - [anon_sym_i16] = ACTIONS(199), - [anon_sym_i32] = ACTIONS(199), - [anon_sym_i64] = ACTIONS(199), - [anon_sym_u8] = ACTIONS(199), - [anon_sym_u16] = ACTIONS(199), - [anon_sym_u32] = ACTIONS(199), - [anon_sym_u64] = ACTIONS(199), - [anon_sym_isize] = ACTIONS(199), - [anon_sym_usize] = ACTIONS(199), - [anon_sym_f32] = ACTIONS(199), - [anon_sym_f64] = ACTIONS(199), - [anon_sym_c_char] = ACTIONS(199), - [anon_sym_c_schar] = ACTIONS(199), - [anon_sym_c_uchar] = ACTIONS(199), - [anon_sym_c_short] = ACTIONS(199), - [anon_sym_c_ushort] = ACTIONS(199), - [anon_sym_c_int] = ACTIONS(199), - [anon_sym_c_uint] = ACTIONS(199), - [anon_sym_c_long] = ACTIONS(199), - [anon_sym_c_ulong] = ACTIONS(199), - [anon_sym_c_longlong] = ACTIONS(199), - [anon_sym_c_ulonglong] = ACTIONS(199), - [anon_sym_c_float] = ACTIONS(199), - [anon_sym_c_double] = ACTIONS(199), - [anon_sym_c_longdouble] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_try] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_true] = ACTIONS(217), - [anon_sym_false] = ACTIONS(217), - [anon_sym_null] = ACTIONS(219), - [anon_sym_unreachable] = ACTIONS(221), - [anon_sym_undefined] = ACTIONS(223), - [sym_sink] = ACTIONS(227), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [STATE(1733)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10817), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym__branch_body] = STATE(10817), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1734)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9773), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9773), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1736), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3978), + }, + [STATE(1735)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9623), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9623), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1739), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3980), + }, + [STATE(1736)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1737)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1742), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3982), + }, + [STATE(1738)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9660), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9660), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1744), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3984), }, - [STATE(1771)] = { - [sym_type] = STATE(769), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(2130), - [anon_sym_import] = ACTIONS(396), - [anon_sym_test] = ACTIONS(396), - [anon_sym_hide] = ACTIONS(396), - [anon_sym_func] = ACTIONS(2059), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_mut] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_else] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT_LT_PIPE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), + [STATE(1739)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1740)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1746), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3986), + }, + [STATE(1741)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9626), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9626), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1747), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3988), + }, + [STATE(1742)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9712), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9712), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1743)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9737), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9737), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1749), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3990), + }, + [STATE(1744)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1745)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1752), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3992), + }, + [STATE(1746)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9668), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9668), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1747)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1748)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1753), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3994), + }, + [STATE(1749)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1750)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1754), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3996), + }, + [STATE(1751)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9677), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9677), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1755), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3998), + }, + [STATE(1752)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9678), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9678), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1753)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9530), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9530), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1754)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9532), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9532), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1755)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1756)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1757), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4000), + }, + [STATE(1757)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9606), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9606), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1758)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1760), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4002), + }, + [STATE(1759)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1763), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4004), + }, + [STATE(1760)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1761)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1766), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4006), + }, + [STATE(1762)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1768), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4008), + }, + [STATE(1763)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1764)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1770), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4010), + }, + [STATE(1765)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1771), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4012), + }, + [STATE(1766)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1767)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1773), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4014), + }, + [STATE(1768)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1769)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1776), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4016), + }, + [STATE(1770)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1771)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), }, [STATE(1772)] = { - [sym_type] = STATE(761), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(2059), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2114), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(4018), }, [STATE(1773)] = { - [sym_type] = STATE(754), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [ts_builtin_sym_end] = ACTIONS(362), - [sym_identifier] = ACTIONS(2053), - [anon_sym_import] = ACTIONS(367), - [anon_sym_test] = ACTIONS(367), - [anon_sym_hide] = ACTIONS(367), - [anon_sym_func] = ACTIONS(2059), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(362), - [anon_sym_else] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(2257), }, [STATE(1774)] = { - [sym_type] = STATE(780), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [ts_builtin_sym_end] = ACTIONS(329), - [sym_identifier] = ACTIONS(2082), - [anon_sym_import] = ACTIONS(334), - [anon_sym_test] = ACTIONS(334), - [anon_sym_hide] = ACTIONS(334), - [anon_sym_func] = ACTIONS(2059), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2091), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(329), - [anon_sym_else] = ACTIONS(334), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_orelse] = ACTIONS(334), - [anon_sym_catch] = ACTIONS(334), - [anon_sym_or] = ACTIONS(334), - [anon_sym_and] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_xor] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_LT_LT_PIPE] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(329), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(329), + [sym__newline] = ACTIONS(4020), }, [STATE(1775)] = { - [sym_type] = STATE(757), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [ts_builtin_sym_end] = ACTIONS(362), - [sym_identifier] = ACTIONS(2053), - [anon_sym_import] = ACTIONS(367), - [anon_sym_test] = ACTIONS(367), - [anon_sym_hide] = ACTIONS(367), - [anon_sym_func] = ACTIONS(2059), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(362), - [anon_sym_else] = ACTIONS(367), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1779), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(4022), }, [STATE(1776)] = { - [sym_type] = STATE(763), - [sym__type_atom] = STATE(796), - [sym_parenthesized_type] = STATE(796), - [sym_named_type] = STATE(796), - [sym_intrinsic_type] = STATE(796), - [sym_optional_type] = STATE(796), - [sym_pointer_type] = STATE(796), - [sym_array_type] = STATE(796), - [sym_function_type] = STATE(796), - [sym_builtin_type] = STATE(796), - [sym_qualified_identifier] = STATE(797), - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(423), - [anon_sym_test] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_func] = ACTIONS(2059), - [anon_sym_c_func] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2114), - [anon_sym_AT] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_anyopaque] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_range] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_c_char] = ACTIONS(1445), - [anon_sym_c_schar] = ACTIONS(1445), - [anon_sym_c_uchar] = ACTIONS(1445), - [anon_sym_c_short] = ACTIONS(1445), - [anon_sym_c_ushort] = ACTIONS(1445), - [anon_sym_c_int] = ACTIONS(1445), - [anon_sym_c_uint] = ACTIONS(1445), - [anon_sym_c_long] = ACTIONS(1445), - [anon_sym_c_ulong] = ACTIONS(1445), - [anon_sym_c_longlong] = ACTIONS(1445), - [anon_sym_c_ulonglong] = ACTIONS(1445), - [anon_sym_c_float] = ACTIONS(1445), - [anon_sym_c_double] = ACTIONS(1445), - [anon_sym_c_longdouble] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(2257), }, [STATE(1777)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3780), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), }, [STATE(1778)] = { - [sym_struct_type] = STATE(3292), - [sym_array_type] = STATE(3292), - [sym_builtin_type] = STATE(3292), - [sym_expression] = STATE(3781), - [sym_binary_expression] = STATE(3292), - [sym_catch_expression] = STATE(3292), - [sym_unary_expression] = STATE(3292), - [sym_field_expression] = STATE(3292), - [sym_intrinsic_call_expression] = STATE(3292), - [sym_call_expression] = STATE(3292), - [sym_index_expression] = STATE(3292), - [sym_slice_expression] = STATE(3292), - [sym_postfix_expression] = STATE(3292), - [sym_struct_literal] = STATE(3292), - [sym_anonymous_record_literal] = STATE(3292), - [sym_tuple_literal] = STATE(3292), - [sym_enum_literal] = STATE(3292), - [sym_array_literal] = STATE(3292), - [sym_parenthesized_expression] = STATE(3292), - [sym_comptime_block] = STATE(3292), - [sym_function_literal] = STATE(3292), - [sym_qualified_identifier] = STATE(4518), - [sym_boolean] = STATE(3292), - [sym_null] = STATE(3292), - [sym_unreachable] = STATE(3292), - [sym_undefined] = STATE(3292), - [sym_string] = STATE(3292), - [sym_identifier] = ACTIONS(2344), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_noreturn] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_anyopaque] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_uint] = ACTIONS(2227), - [anon_sym_float] = ACTIONS(2227), - [anon_sym_range] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_c_char] = ACTIONS(2227), - [anon_sym_c_schar] = ACTIONS(2227), - [anon_sym_c_uchar] = ACTIONS(2227), - [anon_sym_c_short] = ACTIONS(2227), - [anon_sym_c_ushort] = ACTIONS(2227), - [anon_sym_c_int] = ACTIONS(2227), - [anon_sym_c_uint] = ACTIONS(2227), - [anon_sym_c_long] = ACTIONS(2227), - [anon_sym_c_ulong] = ACTIONS(2227), - [anon_sym_c_longlong] = ACTIONS(2227), - [anon_sym_c_ulonglong] = ACTIONS(2227), - [anon_sym_c_float] = ACTIONS(2227), - [anon_sym_c_double] = ACTIONS(2227), - [anon_sym_c_longdouble] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_unreachable] = ACTIONS(2235), - [anon_sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_multiline_string] = ACTIONS(562), - [sym_character] = ACTIONS(562), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), }, [STATE(1779)] = { - [sym_type] = STATE(2268), - [sym__type_atom] = STATE(2221), - [sym_parenthesized_type] = STATE(2221), - [sym_named_type] = STATE(2221), - [sym_intrinsic_type] = STATE(2221), - [sym_optional_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_function_type] = STATE(2221), - [sym_builtin_type] = STATE(2221), - [sym_qualified_identifier] = STATE(2219), - [sym_identifier] = ACTIONS(3986), - [anon_sym_func] = ACTIONS(3989), - [anon_sym_c_func] = ACTIONS(3989), - [anon_sym_struct] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_struct_type_BANG] = ACTIONS(3995), - [anon_sym_QMARK] = ACTIONS(3998), - [anon_sym_AT] = ACTIONS(4001), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_mut] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_void] = ACTIONS(4009), - [anon_sym_noreturn] = ACTIONS(4009), - [anon_sym_type] = ACTIONS(4009), - [anon_sym_anyopaque] = ACTIONS(4009), - [anon_sym_bool] = ACTIONS(4009), - [anon_sym_int] = ACTIONS(4009), - [anon_sym_uint] = ACTIONS(4009), - [anon_sym_float] = ACTIONS(4009), - [anon_sym_range] = ACTIONS(4009), - [anon_sym_i8] = ACTIONS(4009), - [anon_sym_i16] = ACTIONS(4009), - [anon_sym_i32] = ACTIONS(4009), - [anon_sym_i64] = ACTIONS(4009), - [anon_sym_u8] = ACTIONS(4009), - [anon_sym_u16] = ACTIONS(4009), - [anon_sym_u32] = ACTIONS(4009), - [anon_sym_u64] = ACTIONS(4009), - [anon_sym_isize] = ACTIONS(4009), - [anon_sym_usize] = ACTIONS(4009), - [anon_sym_f32] = ACTIONS(4009), - [anon_sym_f64] = ACTIONS(4009), - [anon_sym_c_char] = ACTIONS(4009), - [anon_sym_c_schar] = ACTIONS(4009), - [anon_sym_c_uchar] = ACTIONS(4009), - [anon_sym_c_short] = ACTIONS(4009), - [anon_sym_c_ushort] = ACTIONS(4009), - [anon_sym_c_int] = ACTIONS(4009), - [anon_sym_c_uint] = ACTIONS(4009), - [anon_sym_c_long] = ACTIONS(4009), - [anon_sym_c_ulong] = ACTIONS(4009), - [anon_sym_c_longlong] = ACTIONS(4009), - [anon_sym_c_ulonglong] = ACTIONS(4009), - [anon_sym_c_float] = ACTIONS(4009), - [anon_sym_c_double] = ACTIONS(4009), - [anon_sym_c_longdouble] = ACTIONS(4009), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_orelse] = ACTIONS(334), - [anon_sym_catch] = ACTIONS(334), - [anon_sym_or] = ACTIONS(334), - [anon_sym_and] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_xor] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_LT_LT_PIPE] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(329), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(329), + [sym__newline] = ACTIONS(2257), }, [STATE(1780)] = { - [sym_type] = STATE(2225), - [sym__type_atom] = STATE(2221), - [sym_parenthesized_type] = STATE(2221), - [sym_named_type] = STATE(2221), - [sym_intrinsic_type] = STATE(2221), - [sym_optional_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_function_type] = STATE(2221), - [sym_builtin_type] = STATE(2221), - [sym_qualified_identifier] = STATE(2219), - [sym_identifier] = ACTIONS(4012), - [anon_sym_func] = ACTIONS(4015), - [anon_sym_c_func] = ACTIONS(4015), - [anon_sym_struct] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_struct_type_BANG] = ACTIONS(4021), - [anon_sym_QMARK] = ACTIONS(4024), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_mut] = ACTIONS(4030), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_void] = ACTIONS(4035), - [anon_sym_noreturn] = ACTIONS(4035), - [anon_sym_type] = 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_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(4024), }, [STATE(1781)] = { - [sym_type] = STATE(2293), - [sym__type_atom] = STATE(2221), - [sym_parenthesized_type] = STATE(2221), - [sym_named_type] = STATE(2221), - [sym_intrinsic_type] = STATE(2221), - [sym_optional_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_function_type] = STATE(2221), - [sym_builtin_type] = STATE(2221), - [sym_qualified_identifier] = STATE(2219), - [sym_identifier] = ACTIONS(4038), - [anon_sym_func] = ACTIONS(4041), - [anon_sym_c_func] = ACTIONS(4041), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(4044), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4050), - [anon_sym_AT] = ACTIONS(4053), - [anon_sym_STAR] = ACTIONS(4053), - [anon_sym_mut] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_void] = ACTIONS(4061), - [anon_sym_noreturn] = ACTIONS(4061), - [anon_sym_type] = ACTIONS(4061), - [anon_sym_anyopaque] = ACTIONS(4061), - [anon_sym_bool] = ACTIONS(4061), - [anon_sym_int] = ACTIONS(4061), - [anon_sym_uint] = ACTIONS(4061), - [anon_sym_float] = ACTIONS(4061), - [anon_sym_range] = ACTIONS(4061), - [anon_sym_i8] = ACTIONS(4061), - [anon_sym_i16] = ACTIONS(4061), - [anon_sym_i32] = ACTIONS(4061), - [anon_sym_i64] = ACTIONS(4061), - [anon_sym_u8] = ACTIONS(4061), - [anon_sym_u16] = ACTIONS(4061), - [anon_sym_u32] = ACTIONS(4061), - [anon_sym_u64] = ACTIONS(4061), - [anon_sym_isize] = ACTIONS(4061), - [anon_sym_usize] = ACTIONS(4061), - [anon_sym_f32] = ACTIONS(4061), - [anon_sym_f64] = ACTIONS(4061), - [anon_sym_c_char] = ACTIONS(4061), - [anon_sym_c_schar] = ACTIONS(4061), - [anon_sym_c_uchar] = ACTIONS(4061), - [anon_sym_c_short] = ACTIONS(4061), - [anon_sym_c_ushort] = ACTIONS(4061), - [anon_sym_c_int] = ACTIONS(4061), - [anon_sym_c_uint] = ACTIONS(4061), - [anon_sym_c_long] = ACTIONS(4061), - [anon_sym_c_ulong] = ACTIONS(4061), - [anon_sym_c_longlong] = ACTIONS(4061), - [anon_sym_c_ulonglong] = ACTIONS(4061), - [anon_sym_c_float] = ACTIONS(4061), - [anon_sym_c_double] = ACTIONS(4061), - [anon_sym_c_longdouble] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(2257), }, [STATE(1782)] = { - [sym_type] = STATE(2281), - [sym__type_atom] = STATE(2221), - [sym_parenthesized_type] = STATE(2221), - [sym_named_type] = STATE(2221), - [sym_intrinsic_type] = STATE(2221), - [sym_optional_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_function_type] = STATE(2221), - [sym_builtin_type] = STATE(2221), - [sym_qualified_identifier] = STATE(2219), - [sym_identifier] = ACTIONS(4012), - [anon_sym_func] = ACTIONS(4015), - [anon_sym_c_func] = ACTIONS(4015), - [anon_sym_struct] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_struct_type_BANG] = ACTIONS(4021), - [anon_sym_QMARK] = ACTIONS(4024), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_mut] = ACTIONS(4064), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_void] = ACTIONS(4035), - [anon_sym_noreturn] = ACTIONS(4035), - [anon_sym_type] = 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_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(4026), }, [STATE(1783)] = { - [sym_type] = STATE(2295), - [sym__type_atom] = STATE(2221), - [sym_parenthesized_type] = STATE(2221), - [sym_named_type] = STATE(2221), - [sym_intrinsic_type] = STATE(2221), - [sym_optional_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_function_type] = STATE(2221), - [sym_builtin_type] = STATE(2221), - [sym_qualified_identifier] = STATE(2219), - [sym_identifier] = ACTIONS(4038), - [anon_sym_func] = ACTIONS(4041), - [anon_sym_c_func] = ACTIONS(4041), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(4044), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4050), - [anon_sym_AT] = ACTIONS(4053), - [anon_sym_STAR] = ACTIONS(4053), - [anon_sym_mut] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_void] = ACTIONS(4061), - [anon_sym_noreturn] = ACTIONS(4061), - [anon_sym_type] = ACTIONS(4061), - [anon_sym_anyopaque] = ACTIONS(4061), - [anon_sym_bool] = ACTIONS(4061), - [anon_sym_int] = ACTIONS(4061), - [anon_sym_uint] = ACTIONS(4061), - [anon_sym_float] = ACTIONS(4061), - [anon_sym_range] = ACTIONS(4061), - [anon_sym_i8] = ACTIONS(4061), - [anon_sym_i16] = ACTIONS(4061), - [anon_sym_i32] = ACTIONS(4061), - [anon_sym_i64] = ACTIONS(4061), - [anon_sym_u8] = ACTIONS(4061), - [anon_sym_u16] = ACTIONS(4061), - [anon_sym_u32] = ACTIONS(4061), - [anon_sym_u64] = ACTIONS(4061), - [anon_sym_isize] = ACTIONS(4061), - [anon_sym_usize] = ACTIONS(4061), - [anon_sym_f32] = ACTIONS(4061), - [anon_sym_f64] = ACTIONS(4061), - [anon_sym_c_char] = ACTIONS(4061), - [anon_sym_c_schar] = ACTIONS(4061), - [anon_sym_c_uchar] = ACTIONS(4061), - [anon_sym_c_short] = ACTIONS(4061), - [anon_sym_c_ushort] = ACTIONS(4061), - [anon_sym_c_int] = ACTIONS(4061), - [anon_sym_c_uint] = ACTIONS(4061), - [anon_sym_c_long] = ACTIONS(4061), - [anon_sym_c_ulong] = ACTIONS(4061), - [anon_sym_c_longlong] = ACTIONS(4061), - [anon_sym_c_ulonglong] = ACTIONS(4061), - [anon_sym_c_float] = ACTIONS(4061), - [anon_sym_c_double] = ACTIONS(4061), - [anon_sym_c_longdouble] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1787), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(4028), }, [STATE(1784)] = { - [sym_type] = STATE(2302), - [sym__type_atom] = STATE(2221), - [sym_parenthesized_type] = STATE(2221), - [sym_named_type] = STATE(2221), - [sym_intrinsic_type] = STATE(2221), - [sym_optional_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_function_type] = STATE(2221), - [sym_builtin_type] = STATE(2221), - [sym_qualified_identifier] = STATE(2219), - [sym_identifier] = ACTIONS(4068), - [anon_sym_func] = ACTIONS(4071), - [anon_sym_c_func] = ACTIONS(4071), - [anon_sym_struct] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(4074), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_struct_type_BANG] = ACTIONS(4077), - [anon_sym_QMARK] = ACTIONS(4080), - [anon_sym_AT] = ACTIONS(4083), - [anon_sym_STAR] = ACTIONS(4083), - [anon_sym_mut] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4088), - [anon_sym_void] = ACTIONS(4091), - [anon_sym_noreturn] = ACTIONS(4091), - [anon_sym_type] = ACTIONS(4091), - [anon_sym_anyopaque] = ACTIONS(4091), - [anon_sym_bool] = ACTIONS(4091), - [anon_sym_int] = ACTIONS(4091), - [anon_sym_uint] = ACTIONS(4091), - [anon_sym_float] = ACTIONS(4091), - [anon_sym_range] = ACTIONS(4091), - [anon_sym_i8] = ACTIONS(4091), - [anon_sym_i16] = ACTIONS(4091), - [anon_sym_i32] = ACTIONS(4091), - [anon_sym_i64] = ACTIONS(4091), - [anon_sym_u8] = ACTIONS(4091), - [anon_sym_u16] = ACTIONS(4091), - [anon_sym_u32] = ACTIONS(4091), - [anon_sym_u64] = ACTIONS(4091), - [anon_sym_isize] = ACTIONS(4091), - [anon_sym_usize] = ACTIONS(4091), - [anon_sym_f32] = ACTIONS(4091), - [anon_sym_f64] = ACTIONS(4091), - [anon_sym_c_char] = ACTIONS(4091), - [anon_sym_c_schar] = ACTIONS(4091), - [anon_sym_c_uchar] = ACTIONS(4091), - [anon_sym_c_short] = ACTIONS(4091), - [anon_sym_c_ushort] = ACTIONS(4091), - [anon_sym_c_int] = ACTIONS(4091), - [anon_sym_c_uint] = ACTIONS(4091), - [anon_sym_c_long] = ACTIONS(4091), - [anon_sym_c_ulong] = ACTIONS(4091), - [anon_sym_c_longlong] = ACTIONS(4091), - [anon_sym_c_ulonglong] = ACTIONS(4091), - [anon_sym_c_float] = ACTIONS(4091), - [anon_sym_c_double] = ACTIONS(4091), - [anon_sym_c_longdouble] = ACTIONS(4091), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT_LT_PIPE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(2257), }, [STATE(1785)] = { - [sym_type] = STATE(3655), - [sym__type_atom] = STATE(3555), - [sym_parenthesized_type] = STATE(3555), - [sym_named_type] = STATE(3555), - [sym_intrinsic_type] = STATE(3555), - [sym_optional_type] = STATE(3555), - [sym_pointer_type] = STATE(3555), - [sym_array_type] = STATE(3555), - [sym_function_type] = STATE(3555), - [sym_builtin_type] = STATE(3555), - [sym_qualified_identifier] = STATE(3562), - [sym_identifier] = ACTIONS(4094), - [anon_sym_func] = ACTIONS(4096), - [anon_sym_c_func] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_struct_type_BANG] = ACTIONS(4101), - [anon_sym_QMARK] = ACTIONS(4103), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_mut] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4113), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_PIPE2] = ACTIONS(418), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(4030), }, [STATE(1786)] = { - [sym_type] = STATE(3674), - [sym__type_atom] = STATE(3555), - [sym_parenthesized_type] = STATE(3555), - [sym_named_type] = STATE(3555), - [sym_intrinsic_type] = STATE(3555), - [sym_optional_type] = STATE(3555), - [sym_pointer_type] = STATE(3555), - [sym_array_type] = STATE(3555), - [sym_function_type] = STATE(3555), - [sym_builtin_type] = STATE(3555), - [sym_qualified_identifier] = STATE(3562), - [sym_identifier] = ACTIONS(4094), - [anon_sym_func] = ACTIONS(4096), - [anon_sym_c_func] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_struct_type_BANG] = ACTIONS(4101), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_mut] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(4127), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_PIPE2] = ACTIONS(362), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(4032), }, [STATE(1787)] = { - [sym_type] = STATE(3660), - [sym__type_atom] = STATE(3555), - [sym_parenthesized_type] = STATE(3555), - [sym_named_type] = STATE(3555), - [sym_intrinsic_type] = STATE(3555), - [sym_optional_type] = STATE(3555), - [sym_pointer_type] = STATE(3555), - [sym_array_type] = STATE(3555), - [sym_function_type] = STATE(3555), - [sym_builtin_type] = STATE(3555), - [sym_qualified_identifier] = STATE(3562), - [sym_identifier] = ACTIONS(4094), - [anon_sym_func] = ACTIONS(4096), - [anon_sym_c_func] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_struct_type_BANG] = ACTIONS(4101), - [anon_sym_QMARK] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_mut] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_PIPE2] = ACTIONS(329), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_orelse] = ACTIONS(334), - [anon_sym_catch] = ACTIONS(334), - [anon_sym_or] = ACTIONS(334), - [anon_sym_and] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_xor] = ACTIONS(334), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_LT_LT_PIPE] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(329), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(329), + [sym__newline] = ACTIONS(2257), }, [STATE(1788)] = { - [sym_type] = STATE(3678), - [sym__type_atom] = STATE(3555), - [sym_parenthesized_type] = STATE(3555), - [sym_named_type] = STATE(3555), - [sym_intrinsic_type] = STATE(3555), - [sym_optional_type] = STATE(3555), - [sym_pointer_type] = STATE(3555), - [sym_array_type] = STATE(3555), - [sym_function_type] = STATE(3555), - [sym_builtin_type] = STATE(3555), - [sym_qualified_identifier] = STATE(3562), - [sym_identifier] = ACTIONS(4094), - [anon_sym_func] = ACTIONS(4096), - [anon_sym_c_func] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4144), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_struct_type_BANG] = ACTIONS(4101), - [anon_sym_QMARK] = ACTIONS(4147), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_mut] = ACTIONS(4153), - [anon_sym_LBRACK] = ACTIONS(4155), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_PIPE2] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT_LT_PIPE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1794), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), + [sym__newline] = ACTIONS(4034), }, [STATE(1789)] = { - [sym_type] = STATE(3669), - [sym__type_atom] = STATE(3555), - [sym_parenthesized_type] = STATE(3555), - [sym_named_type] = STATE(3555), - [sym_intrinsic_type] = STATE(3555), - [sym_optional_type] = STATE(3555), - [sym_pointer_type] = STATE(3555), - [sym_array_type] = STATE(3555), - [sym_function_type] = STATE(3555), - [sym_builtin_type] = STATE(3555), - [sym_qualified_identifier] = STATE(3562), - [sym_identifier] = ACTIONS(4094), - [anon_sym_func] = ACTIONS(4096), - [anon_sym_c_func] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_struct_type_BANG] = ACTIONS(4101), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_mut] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4127), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_PIPE2] = ACTIONS(362), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(362), - [anon_sym_orelse] = ACTIONS(367), - [anon_sym_catch] = ACTIONS(367), - [anon_sym_or] = ACTIONS(367), - [anon_sym_and] = ACTIONS(367), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_LT_LT] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(362), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(362), + [sym__newline] = ACTIONS(4036), }, [STATE(1790)] = { - [sym_type] = STATE(3651), - [sym__type_atom] = STATE(3555), - [sym_parenthesized_type] = STATE(3555), - [sym_named_type] = STATE(3555), - [sym_intrinsic_type] = STATE(3555), - [sym_optional_type] = STATE(3555), - [sym_pointer_type] = STATE(3555), - [sym_array_type] = STATE(3555), - [sym_function_type] = STATE(3555), - [sym_builtin_type] = STATE(3555), - [sym_qualified_identifier] = STATE(3562), - [sym_identifier] = ACTIONS(4094), - [anon_sym_func] = ACTIONS(4096), - [anon_sym_c_func] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_struct_type_BANG] = ACTIONS(4101), - [anon_sym_QMARK] = ACTIONS(4103), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_mut] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4113), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_uint] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_PIPE2] = ACTIONS(418), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), + [sym__newline] = ACTIONS(2257), }, [STATE(1791)] = { - [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_noreturn] = 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_COLON] = ACTIONS(4166), - [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), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_unreachable] = ACTIONS(4164), - [anon_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_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1797), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4038), + }, + [STATE(1792)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1793)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4040), + }, + [STATE(1794)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1795)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1796)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1801), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4042), + }, + [STATE(1797)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1798)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1802), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4044), + }, + [STATE(1799)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1803), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4046), + }, + [STATE(1800)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1801)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1802)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1803)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1804)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1805), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4048), + }, + [STATE(1805)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1806)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1808), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4050), + }, + [STATE(1807)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4052), + }, + [STATE(1808)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1809)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1814), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4054), + }, + [STATE(1810)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1816), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4056), + }, + [STATE(1811)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1812)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1818), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4058), + }, + [STATE(1813)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1819), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4060), + }, + [STATE(1814)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1815)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1821), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4062), + }, + [STATE(1816)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1817)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1824), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4064), + }, + [STATE(1818)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1819)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1820)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1825), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4066), + }, + [STATE(1821)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1822)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1826), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4068), + }, + [STATE(1823)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1827), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4070), + }, + [STATE(1824)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1825)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1826)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1827)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1828)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1829), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4072), + }, + [STATE(1829)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1830)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9773), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9773), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1832), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4074), + }, + [STATE(1831)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9623), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9623), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1835), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4076), + }, + [STATE(1832)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1833)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1838), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4078), + }, + [STATE(1834)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9660), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9660), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1840), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4080), + }, + [STATE(1835)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1836)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1842), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4082), + }, + [STATE(1837)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9626), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9626), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1843), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4084), + }, + [STATE(1838)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9712), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9712), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1839)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9737), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9737), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4086), + }, + [STATE(1840)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1841)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1848), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4088), + }, + [STATE(1842)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9668), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9668), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1843)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1844)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1849), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4090), + }, + [STATE(1845)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1846)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1850), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4092), + }, + [STATE(1847)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9677), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9677), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1851), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4094), + }, + [STATE(1848)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9678), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9678), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1849)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9530), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9530), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1850)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9532), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9532), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1851)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1852)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1853), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4096), + }, + [STATE(1853)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9606), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9606), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1854)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8701), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8701), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1856), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4098), + }, + [STATE(1855)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8495), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8495), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1859), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4100), + }, + [STATE(1856)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1857)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1862), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4102), + }, + [STATE(1858)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8505), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8505), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1864), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4104), + }, + [STATE(1859)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1860)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1866), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4106), + }, + [STATE(1861)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8707), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8707), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1867), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4108), + }, + [STATE(1862)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8709), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8709), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1863)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8592), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8592), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1869), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4110), + }, + [STATE(1864)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1865)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1872), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4112), + }, + [STATE(1866)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8729), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8729), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1867)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1868)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1873), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4114), + }, + [STATE(1869)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1870)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1874), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4116), + }, + [STATE(1871)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8685), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8685), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1875), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4118), + }, + [STATE(1872)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8728), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8728), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1873)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8719), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8719), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1874)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8721), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8721), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1875)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1876)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1877), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4120), + }, + [STATE(1877)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8609), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8609), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1878)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7267), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7267), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4122), + }, + [STATE(1879)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7281), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7281), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1883), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4124), + }, + [STATE(1880)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7283), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7283), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1881)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7283), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7283), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1886), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4126), + }, + [STATE(1882)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7285), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7285), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1888), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4128), + }, + [STATE(1883)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7295), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7295), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1884)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7295), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7295), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1890), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4130), + }, + [STATE(1885)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7296), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7296), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1891), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4132), + }, + [STATE(1886)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7297), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7297), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1887)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7298), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7298), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1893), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4134), + }, + [STATE(1888)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7299), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7299), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1889)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7299), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7299), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1896), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4136), + }, + [STATE(1890)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7314), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7314), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1891)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7315), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7315), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1892)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7315), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7315), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1897), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4138), + }, + [STATE(1893)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7316), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7316), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1894)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7316), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7316), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1898), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4140), + }, + [STATE(1895)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7317), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7317), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1899), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4142), + }, + [STATE(1896)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7318), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7318), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1897)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7336), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7336), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1898)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7337), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7337), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1899)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7338), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7338), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1900)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7338), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7338), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(1901), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4144), + }, + [STATE(1901)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7365), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym__branch_body] = STATE(7365), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1902)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4376), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4376), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1904), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4146), + }, + [STATE(1903)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4435), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4435), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1907), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4148), + }, + [STATE(1904)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1905)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4461), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4461), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1910), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4150), + }, + [STATE(1906)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4477), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4477), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1912), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4152), + }, + [STATE(1907)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1908)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3913), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3913), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1914), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4154), + }, + [STATE(1909)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3916), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3916), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1915), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4156), + }, + [STATE(1910)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3920), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3920), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1911)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3924), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3924), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1917), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4158), + }, + [STATE(1912)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1913)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3955), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3955), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1920), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4160), + }, + [STATE(1914)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4019), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4019), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1915)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1916)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4020), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4020), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1921), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4162), }, - [STATE(1792)] = { - [ts_builtin_sym_end] = ACTIONS(4168), - [sym_identifier] = ACTIONS(4170), - [anon_sym_import] = ACTIONS(4170), - [anon_sym_test] = ACTIONS(4170), - [anon_sym_hide] = ACTIONS(4170), - [anon_sym_func] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4170), - [anon_sym_LPAREN] = ACTIONS(4168), - [anon_sym_RPAREN] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4168), - [anon_sym_RBRACE] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_DOLLAR] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_void] = ACTIONS(4170), - [anon_sym_noreturn] = ACTIONS(4170), - [anon_sym_type] = ACTIONS(4170), - [anon_sym_anyopaque] = ACTIONS(4170), - [anon_sym_bool] = ACTIONS(4170), - [anon_sym_int] = ACTIONS(4170), - [anon_sym_uint] = ACTIONS(4170), - [anon_sym_float] = ACTIONS(4170), - [anon_sym_range] = ACTIONS(4170), - [anon_sym_i8] = ACTIONS(4170), - [anon_sym_i16] = ACTIONS(4170), - [anon_sym_i32] = ACTIONS(4170), - [anon_sym_i64] = ACTIONS(4170), - [anon_sym_u8] = ACTIONS(4170), - [anon_sym_u16] = ACTIONS(4170), - [anon_sym_u32] = ACTIONS(4170), - [anon_sym_u64] = ACTIONS(4170), - [anon_sym_isize] = ACTIONS(4170), - [anon_sym_usize] = ACTIONS(4170), - [anon_sym_f32] = ACTIONS(4170), - [anon_sym_f64] = ACTIONS(4170), - [anon_sym_c_char] = ACTIONS(4170), - [anon_sym_c_schar] = ACTIONS(4170), - [anon_sym_c_uchar] = ACTIONS(4170), - [anon_sym_c_short] = ACTIONS(4170), - [anon_sym_c_ushort] = ACTIONS(4170), - [anon_sym_c_int] = ACTIONS(4170), - [anon_sym_c_uint] = ACTIONS(4170), - [anon_sym_c_long] = ACTIONS(4170), - [anon_sym_c_ulong] = ACTIONS(4170), - [anon_sym_c_longlong] = ACTIONS(4170), - [anon_sym_c_ulonglong] = ACTIONS(4170), - [anon_sym_c_float] = ACTIONS(4170), - [anon_sym_c_double] = ACTIONS(4170), - [anon_sym_c_longdouble] = ACTIONS(4170), - [anon_sym_return] = ACTIONS(4170), - [anon_sym_yield] = ACTIONS(4170), - [anon_sym_COLON] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4170), - [anon_sym_continue] = ACTIONS(4170), - [anon_sym_defer] = ACTIONS(4170), - [anon_sym_errdefer] = ACTIONS(4170), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(4170), - [anon_sym_while] = ACTIONS(4170), - [anon_sym_expand] = ACTIONS(4170), - [anon_sym_for] = ACTIONS(4170), - [anon_sym_match] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_TILDE] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4170), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_true] = ACTIONS(4170), - [anon_sym_false] = ACTIONS(4170), - [anon_sym_null] = ACTIONS(4170), - [anon_sym_unreachable] = ACTIONS(4170), - [anon_sym_undefined] = ACTIONS(4170), - [sym_sink] = ACTIONS(4170), - [sym_integer] = ACTIONS(4170), - [sym_float] = ACTIONS(4168), - [anon_sym_DQUOTE] = ACTIONS(4168), - [sym_multiline_string] = ACTIONS(4168), - [sym_character] = ACTIONS(4168), + [STATE(1917)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1918)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4027), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4027), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1922), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4164), + }, + [STATE(1919)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4052), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4052), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1923), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4166), + }, + [STATE(1920)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4067), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4067), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1921)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4115), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4115), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1922)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4116), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4116), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1923)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1924)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4117), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(4117), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1925), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4168), }, - [STATE(1793)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4176), - [anon_sym_unreachable] = ACTIONS(4176), - [anon_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), + [STATE(1925)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(3957), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym__branch_body] = STATE(3957), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1926)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2201), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2201), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1928), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4170), + }, + [STATE(1927)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2214), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2214), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1931), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4172), + }, + [STATE(1928)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1929)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2217), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2217), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4174), }, - [STATE(1794)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4180), - [anon_sym_unreachable] = ACTIONS(4180), - [anon_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), + [STATE(1930)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2219), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2219), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1936), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4176), + }, + [STATE(1931)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1932)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2229), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2229), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4178), }, - [STATE(1795)] = { - [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(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(4184), - [anon_sym_noreturn] = 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(4184), - [anon_sym_DOT] = ACTIONS(4182), - [anon_sym_true] = ACTIONS(4184), - [anon_sym_false] = ACTIONS(4184), - [anon_sym_null] = ACTIONS(4184), - [anon_sym_unreachable] = ACTIONS(4184), - [anon_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), - [sym_character] = ACTIONS(4182), + [STATE(1933)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2233), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2233), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1939), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4180), + }, + [STATE(1934)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2237), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2237), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1935)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2238), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2238), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1941), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4182), }, - [STATE(1796)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4188), - [anon_sym_unreachable] = ACTIONS(4188), - [anon_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), + [STATE(1936)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1937)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2240), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2240), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1944), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4184), + }, + [STATE(1938)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2253), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2253), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1939)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1940)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2254), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2254), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1945), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4186), }, - [STATE(1797)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4192), - [anon_sym_unreachable] = ACTIONS(4192), - [anon_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), + [STATE(1941)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1942)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2258), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2258), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1946), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4188), + }, + [STATE(1943)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2261), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2261), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1947), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4190), }, - [STATE(1798)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_unreachable] = ACTIONS(4196), - [anon_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), + [STATE(1944)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2262), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2262), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1945)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2281), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2281), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1946)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2282), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2282), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1947)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1948)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2283), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2283), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1949), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4192), + }, + [STATE(1949)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2316), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym__branch_body] = STATE(2316), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1950)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9122), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9122), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1952), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4194), }, - [STATE(1799)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_unreachable] = ACTIONS(4200), - [anon_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), + [STATE(1951)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9132), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9132), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1955), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4196), + }, + [STATE(1952)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9134), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9134), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1953)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9134), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9134), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1958), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4198), }, - [STATE(1800)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4204), - [anon_sym_unreachable] = ACTIONS(4204), - [anon_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), + [STATE(1954)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9136), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9136), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4200), + }, + [STATE(1955)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9147), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9147), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1956)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9147), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9147), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4202), }, - [STATE(1801)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_unreachable] = ACTIONS(4208), - [anon_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), + [STATE(1957)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9148), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9148), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4204), + }, + [STATE(1958)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9149), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9149), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1959)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9150), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9150), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1965), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4206), }, - [STATE(1802)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4212), - [anon_sym_unreachable] = ACTIONS(4212), - [anon_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), + [STATE(1960)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9151), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9151), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1961)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9151), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9151), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1968), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4208), + }, + [STATE(1962)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9165), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9165), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1963)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9166), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9166), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1964)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9166), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9166), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4210), }, - [STATE(1803)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4216), - [anon_sym_unreachable] = ACTIONS(4216), - [anon_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), + [STATE(1965)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9167), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9167), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1966)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9167), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9167), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1970), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4212), + }, + [STATE(1967)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9168), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9168), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1971), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4214), }, - [STATE(1804)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_unreachable] = ACTIONS(4220), - [anon_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), + [STATE(1968)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9169), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9169), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1969)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9188), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9188), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1970)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9189), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9189), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1971)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9190), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9190), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1972)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9190), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9190), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(1973), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4216), + }, + [STATE(1973)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9224), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym__branch_body] = STATE(9224), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1974)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8701), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8701), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1976), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4218), }, - [STATE(1805)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4224), - [anon_sym_unreachable] = ACTIONS(4224), - [anon_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), + [STATE(1975)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8495), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8495), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4220), + }, + [STATE(1976)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1977)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4222), }, - [STATE(1806)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_unreachable] = ACTIONS(4228), - [anon_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), + [STATE(1978)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8505), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8505), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4224), + }, + [STATE(1979)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1980)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1986), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4226), }, - [STATE(1807)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4232), - [anon_sym_unreachable] = ACTIONS(4232), - [anon_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), + [STATE(1981)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8707), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8707), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1987), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4228), + }, + [STATE(1982)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8709), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8709), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1983)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8592), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8592), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1989), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4230), }, - [STATE(1808)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_unreachable] = ACTIONS(4236), - [anon_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), + [STATE(1984)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1985)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1992), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4232), + }, + [STATE(1986)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8729), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8729), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1987)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1988)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1993), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4234), }, - [STATE(1809)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4240), - [anon_sym_unreachable] = ACTIONS(4240), - [anon_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), + [STATE(1989)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1990)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1994), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4236), + }, + [STATE(1991)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8685), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8685), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1995), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4238), }, - [STATE(1810)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_unreachable] = ACTIONS(4244), - [anon_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), + [STATE(1992)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8728), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8728), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1993)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8719), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8719), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1994)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8721), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8721), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1995)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1996)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(1997), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4240), + }, + [STATE(1997)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8609), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8609), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(1998)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8701), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8701), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2000), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4242), }, - [STATE(1811)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4248), - [anon_sym_unreachable] = ACTIONS(4248), - [anon_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), + [STATE(1999)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8495), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8495), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2003), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4244), + }, + [STATE(2000)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2001)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2006), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4246), }, - [STATE(1812)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4252), - [anon_sym_unreachable] = ACTIONS(4252), - [anon_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), + [STATE(2002)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8505), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8505), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2008), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4248), + }, + [STATE(2003)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2004)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2010), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4250), }, - [STATE(1813)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_unreachable] = ACTIONS(4256), - [anon_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), + [STATE(2005)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8707), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8707), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2011), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4252), + }, + [STATE(2006)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8709), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8709), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2007)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8592), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8592), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2013), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4254), }, - [STATE(1814)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_unreachable] = ACTIONS(4260), - [anon_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), + [STATE(2008)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2009)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2016), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4256), + }, + [STATE(2010)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8729), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8729), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2011)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2012)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2017), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4258), }, - [STATE(1815)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_unreachable] = ACTIONS(4264), - [anon_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), + [STATE(2013)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2014)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2018), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4260), + }, + [STATE(2015)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8685), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8685), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2019), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4262), }, - [STATE(1816)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_unreachable] = ACTIONS(4268), - [anon_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), + [STATE(2016)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8728), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8728), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2017)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8719), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8719), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2018)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8721), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8721), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2019)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2020)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4264), + }, + [STATE(2021)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8609), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8609), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2022)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3290), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3290), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2024), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4266), }, - [STATE(1817)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_unreachable] = ACTIONS(4272), - [anon_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), + [STATE(2023)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3305), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3305), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2027), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4268), + }, + [STATE(2024)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3306), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3306), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2025)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3306), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3306), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2030), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4270), }, - [STATE(1818)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4276), - [anon_sym_unreachable] = ACTIONS(4276), - [anon_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), + [STATE(2026)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3309), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3309), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2032), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4272), + }, + [STATE(2027)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3321), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3321), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2028)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3321), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3321), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2034), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4274), }, - [STATE(1819)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4280), - [anon_sym_unreachable] = ACTIONS(4280), - [anon_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), + [STATE(2029)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3323), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3323), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2035), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4276), + }, + [STATE(2030)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3326), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3326), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2031)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3327), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3327), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4278), }, - [STATE(1820)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_unreachable] = ACTIONS(4284), - [anon_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), + [STATE(2032)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3330), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3330), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2033)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3330), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3330), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2040), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4280), + }, + [STATE(2034)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3082), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3082), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2035)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2968), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2968), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2036)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2968), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2968), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2041), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4282), }, - [STATE(1821)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4288), - [anon_sym_unreachable] = ACTIONS(4288), - [anon_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), + [STATE(2037)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2973), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2973), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2038)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2973), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2973), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2042), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4284), + }, + [STATE(2039)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2986), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2986), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4286), }, - [STATE(1822)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_unreachable] = ACTIONS(4292), - [anon_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), + [STATE(2040)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(2988), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(2988), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2041)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3054), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3054), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2042)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3061), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3061), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2043)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3062), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3062), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2044)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3062), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3062), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2045), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4288), + }, + [STATE(2045)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3161), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym__branch_body] = STATE(3161), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2046)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6796), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6796), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2048), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4290), }, - [STATE(1823)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4296), - [anon_sym_unreachable] = ACTIONS(4296), - [anon_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), + [STATE(2047)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2051), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4292), + }, + [STATE(2048)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2049)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6776), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6776), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2054), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4294), }, - [STATE(1824)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_unreachable] = ACTIONS(4300), - [anon_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), + [STATE(2050)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6792), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6792), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2056), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4296), + }, + [STATE(2051)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2052)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6673), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6673), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2058), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4298), }, - [STATE(1825)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4304), - [anon_sym_unreachable] = ACTIONS(4304), - [anon_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), + [STATE(2053)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6680), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6680), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2059), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4300), + }, + [STATE(2054)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6683), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6683), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2055)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6687), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6687), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2061), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4302), }, - [STATE(1826)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4308), - [anon_sym_unreachable] = ACTIONS(4308), - [anon_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), + [STATE(2056)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2057)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6809), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6809), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2064), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4304), + }, + [STATE(2058)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6827), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6827), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2059)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2060)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6840), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6840), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2065), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4306), }, - [STATE(1827)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4312), - [anon_sym_unreachable] = ACTIONS(4312), - [anon_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), + [STATE(2061)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2062)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6842), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6842), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2066), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4308), + }, + [STATE(2063)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6864), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6864), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2067), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4310), }, - [STATE(1828)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4316), - [anon_sym_unreachable] = ACTIONS(4316), - [anon_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), + [STATE(2064)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6615), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6615), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2065)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6739), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6739), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2066)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6743), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6743), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2067)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2068)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6744), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6744), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2069), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4312), + }, + [STATE(2069)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6606), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6606), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2070)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9773), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9773), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2072), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4314), }, - [STATE(1829)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4320), - [anon_sym_unreachable] = ACTIONS(4320), - [anon_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), + [STATE(2071)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9623), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9623), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2075), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4316), + }, + [STATE(2072)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2073)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9636), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9636), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2078), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4318), }, - [STATE(1830)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_unreachable] = ACTIONS(4324), - [anon_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), + [STATE(2074)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9660), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9660), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2080), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4320), + }, + [STATE(2075)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2076)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9625), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9625), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2082), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4322), }, - [STATE(1831)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4328), - [anon_sym_unreachable] = ACTIONS(4328), - [anon_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), + [STATE(2077)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9626), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9626), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2083), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4324), + }, + [STATE(2078)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9712), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9712), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2079)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9737), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9737), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2085), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4326), }, - [STATE(1832)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4332), - [anon_sym_unreachable] = ACTIONS(4332), - [anon_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), + [STATE(2080)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2081)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9514), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9514), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4328), + }, + [STATE(2082)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9668), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9668), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2083)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2084)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9669), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9669), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2089), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4330), }, - [STATE(1833)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4336), - [anon_sym_unreachable] = ACTIONS(4336), - [anon_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), + [STATE(2085)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2086)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9676), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9676), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2090), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4332), + }, + [STATE(2087)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9677), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9677), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4334), }, - [STATE(1834)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_unreachable] = ACTIONS(4340), - [anon_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), + [STATE(2088)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9678), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9678), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2089)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9530), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9530), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2090)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9532), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9532), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2091)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2092)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9533), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9533), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2093), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4336), + }, + [STATE(2093)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9606), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym__branch_body] = STATE(9606), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2094)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8701), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8701), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2096), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4338), }, - [STATE(1835)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_unreachable] = ACTIONS(4344), - [anon_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), + [STATE(2095)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8495), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8495), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2099), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4340), + }, + [STATE(2096)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2097)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8500), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8500), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2102), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4342), }, - [STATE(1836)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4348), - [anon_sym_unreachable] = ACTIONS(4348), - [anon_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), + [STATE(2098)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8505), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8505), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2104), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4344), + }, + [STATE(2099)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2100)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8624), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8624), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2106), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4346), }, - [STATE(1837)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4352), - [anon_sym_unreachable] = ACTIONS(4352), - [anon_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), + [STATE(2101)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8707), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8707), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2107), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4348), + }, + [STATE(2102)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8709), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8709), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2103)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8592), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8592), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2109), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4350), }, - [STATE(1838)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4356), - [anon_sym_unreachable] = ACTIONS(4356), - [anon_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), + [STATE(2104)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2105)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8394), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8394), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2112), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4352), + }, + [STATE(2106)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8729), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8729), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2107)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2108)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8734), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8734), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2113), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4354), }, - [STATE(1839)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4360), - [anon_sym_unreachable] = ACTIONS(4360), - [anon_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), + [STATE(2109)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2110)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8637), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8637), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2114), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4356), + }, + [STATE(2111)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8685), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8685), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2115), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4358), }, - [STATE(1840)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4364), - [anon_sym_unreachable] = ACTIONS(4364), - [anon_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), + [STATE(2112)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8728), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8728), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2113)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8719), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8719), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2114)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8721), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8721), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2115)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2116)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8724), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym__branch_body] = STATE(8724), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4360), + }, + [STATE(2117)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6772), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym__branch_body] = STATE(6772), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(1198), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4362), }, - [STATE(1841)] = { - [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), + [STATE(2118)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2119)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8486), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2120)] = { + [ts_builtin_sym_end] = ACTIONS(4364), + [sym_identifier] = ACTIONS(4366), + [anon_sym_import] = ACTIONS(4366), + [anon_sym_test] = ACTIONS(4366), + [anon_sym_hide] = ACTIONS(4366), + [anon_sym_func] = ACTIONS(4366), [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_EQ] = ACTIONS(4366), + [anon_sym_struct] = ACTIONS(4366), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_RPAREN] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_RBRACE] = ACTIONS(4364), [anon_sym_DASH] = ACTIONS(4366), - [anon_sym_DOLLAR] = ACTIONS(4366), - [anon_sym_LBRACK] = ACTIONS(4366), - [anon_sym_void] = ACTIONS(4368), - [anon_sym_noreturn] = 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_DOLLAR] = ACTIONS(4364), + [anon_sym_PIPE] = ACTIONS(4366), + [anon_sym_QMARK] = ACTIONS(4364), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_RBRACK] = ACTIONS(4364), + [anon_sym_void] = ACTIONS(4366), + [anon_sym_noreturn] = ACTIONS(4366), + [anon_sym_type] = ACTIONS(4366), + [anon_sym_anyopaque] = ACTIONS(4366), + [anon_sym_bool] = ACTIONS(4366), + [anon_sym_int] = ACTIONS(4366), + [anon_sym_uint] = ACTIONS(4366), + [anon_sym_float] = ACTIONS(4366), + [anon_sym_range] = ACTIONS(4366), + [anon_sym_i8] = ACTIONS(4366), + [anon_sym_i16] = ACTIONS(4366), + [anon_sym_i32] = ACTIONS(4366), + [anon_sym_i64] = ACTIONS(4366), + [anon_sym_u8] = ACTIONS(4366), + [anon_sym_u16] = ACTIONS(4366), + [anon_sym_u32] = ACTIONS(4366), + [anon_sym_u64] = ACTIONS(4366), + [anon_sym_isize] = ACTIONS(4366), + [anon_sym_usize] = ACTIONS(4366), + [anon_sym_f32] = ACTIONS(4366), + [anon_sym_f64] = ACTIONS(4366), + [anon_sym_c_char] = ACTIONS(4366), + [anon_sym_c_schar] = ACTIONS(4366), + [anon_sym_c_uchar] = ACTIONS(4366), + [anon_sym_c_short] = ACTIONS(4366), + [anon_sym_c_ushort] = ACTIONS(4366), + [anon_sym_c_int] = ACTIONS(4366), + [anon_sym_c_uint] = ACTIONS(4366), + [anon_sym_c_long] = ACTIONS(4366), + [anon_sym_c_ulong] = ACTIONS(4366), + [anon_sym_c_longlong] = ACTIONS(4366), + [anon_sym_c_ulonglong] = ACTIONS(4366), + [anon_sym_c_float] = ACTIONS(4366), + [anon_sym_c_double] = ACTIONS(4366), + [anon_sym_c_longdouble] = ACTIONS(4366), + [anon_sym_PLUS_EQ] = ACTIONS(4364), + [anon_sym_DASH_EQ] = ACTIONS(4364), + [anon_sym_STAR_EQ] = ACTIONS(4364), + [anon_sym_SLASH_EQ] = ACTIONS(4364), + [anon_sym_AMP_EQ] = ACTIONS(4364), + [anon_sym_PIPE_EQ] = ACTIONS(4364), + [anon_sym_xor_EQ] = ACTIONS(4364), + [anon_sym_LT_LT_EQ] = ACTIONS(4364), + [anon_sym_GT_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4364), + [anon_sym_return] = ACTIONS(4366), + [anon_sym_yield] = ACTIONS(4366), + [anon_sym_COLON] = ACTIONS(4364), + [anon_sym_break] = ACTIONS(4366), + [anon_sym_continue] = ACTIONS(4366), + [anon_sym_defer] = ACTIONS(4366), + [anon_sym_errdefer] = ACTIONS(4366), + [anon_sym_if] = ACTIONS(4366), + [anon_sym_else] = ACTIONS(4366), + [anon_sym_while] = ACTIONS(4366), + [anon_sym_expand] = ACTIONS(4366), + [anon_sym_for] = ACTIONS(4366), + [anon_sym_match] = ACTIONS(4366), + [anon_sym_DOT_DOT] = ACTIONS(4366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4364), + [anon_sym_orelse] = ACTIONS(4366), + [anon_sym_or] = ACTIONS(4366), + [anon_sym_and] = ACTIONS(4366), + [anon_sym_EQ_EQ] = ACTIONS(4364), + [anon_sym_BANG_EQ] = ACTIONS(4364), + [anon_sym_LT] = ACTIONS(4366), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4366), + [anon_sym_GT_EQ] = ACTIONS(4364), [anon_sym_AMP] = ACTIONS(4366), - [anon_sym_TILDE] = ACTIONS(4366), - [anon_sym_try] = ACTIONS(4368), + [anon_sym_xor] = ACTIONS(4366), + [anon_sym_LT_LT] = ACTIONS(4366), + [anon_sym_GT_GT] = ACTIONS(4366), + [anon_sym_LT_LT_PIPE] = ACTIONS(4366), + [anon_sym_PLUS] = ACTIONS(4366), + [anon_sym_SLASH] = ACTIONS(4366), + [anon_sym_catch] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4364), + [anon_sym_try] = ACTIONS(4366), [anon_sym_DOT] = ACTIONS(4366), - [anon_sym_true] = ACTIONS(4368), - [anon_sym_false] = ACTIONS(4368), - [anon_sym_null] = ACTIONS(4368), - [anon_sym_unreachable] = ACTIONS(4368), - [anon_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), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4366), + [anon_sym_false] = ACTIONS(4366), + [anon_sym_null] = ACTIONS(4366), + [anon_sym_unreachable] = ACTIONS(4366), + [anon_sym_undefined] = ACTIONS(4366), + [sym_sink] = ACTIONS(4366), + [sym_integer] = ACTIONS(4366), + [sym_float] = ACTIONS(4364), + [anon_sym_DQUOTE] = ACTIONS(4364), + [sym_multiline_string] = ACTIONS(4364), + [sym_character] = ACTIONS(4364), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4366), + [sym__newline] = ACTIONS(4364), }, - [STATE(1842)] = { - [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), + [STATE(2121)] = { + [ts_builtin_sym_end] = ACTIONS(4368), + [sym_identifier] = ACTIONS(4370), + [anon_sym_import] = ACTIONS(4370), + [anon_sym_test] = ACTIONS(4370), + [anon_sym_hide] = ACTIONS(4370), + [anon_sym_func] = ACTIONS(4370), [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_EQ] = ACTIONS(4370), + [anon_sym_struct] = ACTIONS(4370), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_RPAREN] = ACTIONS(4368), + [anon_sym_LBRACE] = ACTIONS(4368), + [anon_sym_COMMA] = ACTIONS(4368), + [anon_sym_RBRACE] = ACTIONS(4368), [anon_sym_DASH] = ACTIONS(4370), - [anon_sym_DOLLAR] = ACTIONS(4370), - [anon_sym_LBRACK] = ACTIONS(4370), - [anon_sym_void] = ACTIONS(4372), - [anon_sym_noreturn] = 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_DOLLAR] = ACTIONS(4368), + [anon_sym_PIPE] = ACTIONS(4370), + [anon_sym_QMARK] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(4370), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4368), + [anon_sym_RBRACK] = ACTIONS(4368), + [anon_sym_void] = ACTIONS(4370), + [anon_sym_noreturn] = ACTIONS(4370), + [anon_sym_type] = ACTIONS(4370), + [anon_sym_anyopaque] = ACTIONS(4370), + [anon_sym_bool] = ACTIONS(4370), + [anon_sym_int] = ACTIONS(4370), + [anon_sym_uint] = ACTIONS(4370), + [anon_sym_float] = ACTIONS(4370), + [anon_sym_range] = ACTIONS(4370), + [anon_sym_i8] = ACTIONS(4370), + [anon_sym_i16] = ACTIONS(4370), + [anon_sym_i32] = ACTIONS(4370), + [anon_sym_i64] = ACTIONS(4370), + [anon_sym_u8] = ACTIONS(4370), + [anon_sym_u16] = ACTIONS(4370), + [anon_sym_u32] = ACTIONS(4370), + [anon_sym_u64] = ACTIONS(4370), + [anon_sym_isize] = ACTIONS(4370), + [anon_sym_usize] = ACTIONS(4370), + [anon_sym_f32] = ACTIONS(4370), + [anon_sym_f64] = ACTIONS(4370), + [anon_sym_c_char] = ACTIONS(4370), + [anon_sym_c_schar] = ACTIONS(4370), + [anon_sym_c_uchar] = ACTIONS(4370), + [anon_sym_c_short] = ACTIONS(4370), + [anon_sym_c_ushort] = ACTIONS(4370), + [anon_sym_c_int] = ACTIONS(4370), + [anon_sym_c_uint] = ACTIONS(4370), + [anon_sym_c_long] = ACTIONS(4370), + [anon_sym_c_ulong] = ACTIONS(4370), + [anon_sym_c_longlong] = ACTIONS(4370), + [anon_sym_c_ulonglong] = ACTIONS(4370), + [anon_sym_c_float] = ACTIONS(4370), + [anon_sym_c_double] = ACTIONS(4370), + [anon_sym_c_longdouble] = ACTIONS(4370), + [anon_sym_PLUS_EQ] = ACTIONS(4368), + [anon_sym_DASH_EQ] = ACTIONS(4368), + [anon_sym_STAR_EQ] = ACTIONS(4368), + [anon_sym_SLASH_EQ] = ACTIONS(4368), + [anon_sym_AMP_EQ] = ACTIONS(4368), + [anon_sym_PIPE_EQ] = ACTIONS(4368), + [anon_sym_xor_EQ] = ACTIONS(4368), + [anon_sym_LT_LT_EQ] = ACTIONS(4368), + [anon_sym_GT_GT_EQ] = ACTIONS(4368), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4368), + [anon_sym_return] = ACTIONS(4370), + [anon_sym_yield] = ACTIONS(4370), + [anon_sym_COLON] = ACTIONS(4368), + [anon_sym_break] = ACTIONS(4370), + [anon_sym_continue] = ACTIONS(4370), + [anon_sym_defer] = ACTIONS(4370), + [anon_sym_errdefer] = ACTIONS(4370), + [anon_sym_if] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(4370), + [anon_sym_while] = ACTIONS(4370), + [anon_sym_expand] = ACTIONS(4370), + [anon_sym_for] = ACTIONS(4370), + [anon_sym_match] = ACTIONS(4370), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4368), + [anon_sym_orelse] = ACTIONS(4370), + [anon_sym_or] = ACTIONS(4370), + [anon_sym_and] = ACTIONS(4370), + [anon_sym_EQ_EQ] = ACTIONS(4368), + [anon_sym_BANG_EQ] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4370), + [anon_sym_LT_EQ] = ACTIONS(4368), + [anon_sym_GT] = ACTIONS(4370), + [anon_sym_GT_EQ] = ACTIONS(4368), [anon_sym_AMP] = ACTIONS(4370), - [anon_sym_TILDE] = ACTIONS(4370), - [anon_sym_try] = ACTIONS(4372), + [anon_sym_xor] = ACTIONS(4370), + [anon_sym_LT_LT] = ACTIONS(4370), + [anon_sym_GT_GT] = ACTIONS(4370), + [anon_sym_LT_LT_PIPE] = ACTIONS(4370), + [anon_sym_PLUS] = ACTIONS(4370), + [anon_sym_SLASH] = ACTIONS(4370), + [anon_sym_catch] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4368), + [anon_sym_try] = ACTIONS(4370), [anon_sym_DOT] = ACTIONS(4370), - [anon_sym_true] = ACTIONS(4372), - [anon_sym_false] = ACTIONS(4372), - [anon_sym_null] = ACTIONS(4372), - [anon_sym_unreachable] = ACTIONS(4372), - [anon_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), + [anon_sym_CARET] = ACTIONS(4368), + [anon_sym_true] = ACTIONS(4370), + [anon_sym_false] = ACTIONS(4370), + [anon_sym_null] = ACTIONS(4370), + [anon_sym_unreachable] = ACTIONS(4370), + [anon_sym_undefined] = ACTIONS(4370), + [sym_sink] = ACTIONS(4370), + [sym_integer] = ACTIONS(4370), + [sym_float] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(4368), + [sym_multiline_string] = ACTIONS(4368), + [sym_character] = ACTIONS(4368), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4370), + [sym__newline] = ACTIONS(4368), }, - [STATE(1843)] = { - [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), + [STATE(2122)] = { + [ts_builtin_sym_end] = ACTIONS(4372), + [sym_identifier] = ACTIONS(4374), + [anon_sym_import] = ACTIONS(4374), + [anon_sym_test] = ACTIONS(4374), + [anon_sym_hide] = ACTIONS(4374), + [anon_sym_func] = ACTIONS(4374), [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_EQ] = ACTIONS(4374), + [anon_sym_struct] = ACTIONS(4374), + [anon_sym_LPAREN] = ACTIONS(4372), + [anon_sym_RPAREN] = ACTIONS(4372), + [anon_sym_LBRACE] = ACTIONS(4372), + [anon_sym_COMMA] = ACTIONS(4372), + [anon_sym_RBRACE] = ACTIONS(4372), [anon_sym_DASH] = ACTIONS(4374), - [anon_sym_DOLLAR] = ACTIONS(4374), - [anon_sym_LBRACK] = ACTIONS(4374), - [anon_sym_void] = ACTIONS(4376), - [anon_sym_noreturn] = 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_DOLLAR] = ACTIONS(4372), + [anon_sym_PIPE] = ACTIONS(4374), + [anon_sym_QMARK] = ACTIONS(4372), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_SEMI] = ACTIONS(4372), + [anon_sym_RBRACK] = ACTIONS(4372), + [anon_sym_void] = ACTIONS(4374), + [anon_sym_noreturn] = ACTIONS(4374), + [anon_sym_type] = ACTIONS(4374), + [anon_sym_anyopaque] = ACTIONS(4374), + [anon_sym_bool] = ACTIONS(4374), + [anon_sym_int] = ACTIONS(4374), + [anon_sym_uint] = ACTIONS(4374), + [anon_sym_float] = ACTIONS(4374), + [anon_sym_range] = ACTIONS(4374), + [anon_sym_i8] = ACTIONS(4374), + [anon_sym_i16] = ACTIONS(4374), + [anon_sym_i32] = ACTIONS(4374), + [anon_sym_i64] = ACTIONS(4374), + [anon_sym_u8] = ACTIONS(4374), + [anon_sym_u16] = ACTIONS(4374), + [anon_sym_u32] = ACTIONS(4374), + [anon_sym_u64] = ACTIONS(4374), + [anon_sym_isize] = ACTIONS(4374), + [anon_sym_usize] = ACTIONS(4374), + [anon_sym_f32] = ACTIONS(4374), + [anon_sym_f64] = ACTIONS(4374), + [anon_sym_c_char] = ACTIONS(4374), + [anon_sym_c_schar] = ACTIONS(4374), + [anon_sym_c_uchar] = ACTIONS(4374), + [anon_sym_c_short] = ACTIONS(4374), + [anon_sym_c_ushort] = ACTIONS(4374), + [anon_sym_c_int] = ACTIONS(4374), + [anon_sym_c_uint] = ACTIONS(4374), + [anon_sym_c_long] = ACTIONS(4374), + [anon_sym_c_ulong] = ACTIONS(4374), + [anon_sym_c_longlong] = ACTIONS(4374), + [anon_sym_c_ulonglong] = ACTIONS(4374), + [anon_sym_c_float] = ACTIONS(4374), + [anon_sym_c_double] = ACTIONS(4374), + [anon_sym_c_longdouble] = ACTIONS(4374), + [anon_sym_PLUS_EQ] = ACTIONS(4372), + [anon_sym_DASH_EQ] = ACTIONS(4372), + [anon_sym_STAR_EQ] = ACTIONS(4372), + [anon_sym_SLASH_EQ] = ACTIONS(4372), + [anon_sym_AMP_EQ] = ACTIONS(4372), + [anon_sym_PIPE_EQ] = ACTIONS(4372), + [anon_sym_xor_EQ] = ACTIONS(4372), + [anon_sym_LT_LT_EQ] = ACTIONS(4372), + [anon_sym_GT_GT_EQ] = ACTIONS(4372), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4372), + [anon_sym_return] = ACTIONS(4374), + [anon_sym_yield] = ACTIONS(4374), + [anon_sym_COLON] = ACTIONS(4372), + [anon_sym_break] = ACTIONS(4374), + [anon_sym_continue] = ACTIONS(4374), + [anon_sym_defer] = ACTIONS(4374), + [anon_sym_errdefer] = ACTIONS(4374), + [anon_sym_if] = ACTIONS(4374), + [anon_sym_else] = ACTIONS(4374), + [anon_sym_while] = ACTIONS(4374), + [anon_sym_expand] = ACTIONS(4374), + [anon_sym_for] = ACTIONS(4374), + [anon_sym_match] = ACTIONS(4374), + [anon_sym_DOT_DOT] = ACTIONS(4374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_orelse] = ACTIONS(4374), + [anon_sym_or] = ACTIONS(4374), + [anon_sym_and] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_LT] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4372), + [anon_sym_GT] = ACTIONS(4374), + [anon_sym_GT_EQ] = ACTIONS(4372), [anon_sym_AMP] = ACTIONS(4374), - [anon_sym_TILDE] = ACTIONS(4374), - [anon_sym_try] = ACTIONS(4376), + [anon_sym_xor] = ACTIONS(4374), + [anon_sym_LT_LT] = ACTIONS(4374), + [anon_sym_GT_GT] = ACTIONS(4374), + [anon_sym_LT_LT_PIPE] = ACTIONS(4374), + [anon_sym_PLUS] = ACTIONS(4374), + [anon_sym_SLASH] = ACTIONS(4374), + [anon_sym_catch] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4372), + [anon_sym_try] = ACTIONS(4374), [anon_sym_DOT] = ACTIONS(4374), - [anon_sym_true] = ACTIONS(4376), - [anon_sym_false] = ACTIONS(4376), - [anon_sym_null] = ACTIONS(4376), - [anon_sym_unreachable] = ACTIONS(4376), - [anon_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), + [anon_sym_CARET] = ACTIONS(4372), + [anon_sym_true] = ACTIONS(4374), + [anon_sym_false] = ACTIONS(4374), + [anon_sym_null] = ACTIONS(4374), + [anon_sym_unreachable] = ACTIONS(4374), + [anon_sym_undefined] = ACTIONS(4374), + [sym_sink] = ACTIONS(4374), + [sym_integer] = ACTIONS(4374), + [sym_float] = ACTIONS(4372), + [anon_sym_DQUOTE] = ACTIONS(4372), + [sym_multiline_string] = ACTIONS(4372), + [sym_character] = ACTIONS(4372), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4374), + [sym__newline] = ACTIONS(4372), }, - [STATE(1844)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4380), - [anon_sym_unreachable] = ACTIONS(4380), - [anon_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), + [STATE(2123)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2124), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4376), + }, + [STATE(2124)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2125)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2130), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4378), }, - [STATE(1845)] = { - [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), + [STATE(2126)] = { + [ts_builtin_sym_end] = ACTIONS(4380), + [sym_identifier] = ACTIONS(4382), + [anon_sym_import] = ACTIONS(4382), + [anon_sym_test] = ACTIONS(4382), + [anon_sym_hide] = ACTIONS(4382), + [anon_sym_func] = ACTIONS(4382), [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_EQ] = ACTIONS(4382), + [anon_sym_struct] = ACTIONS(4382), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_RPAREN] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4380), + [anon_sym_COMMA] = ACTIONS(4380), + [anon_sym_RBRACE] = ACTIONS(4380), [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_DOLLAR] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_void] = ACTIONS(4384), - [anon_sym_noreturn] = 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_DOLLAR] = ACTIONS(4380), + [anon_sym_PIPE] = ACTIONS(4382), + [anon_sym_QMARK] = ACTIONS(4380), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_SEMI] = ACTIONS(4380), + [anon_sym_RBRACK] = ACTIONS(4380), + [anon_sym_void] = ACTIONS(4382), + [anon_sym_noreturn] = ACTIONS(4382), + [anon_sym_type] = ACTIONS(4382), + [anon_sym_anyopaque] = ACTIONS(4382), + [anon_sym_bool] = ACTIONS(4382), + [anon_sym_int] = ACTIONS(4382), + [anon_sym_uint] = ACTIONS(4382), + [anon_sym_float] = ACTIONS(4382), + [anon_sym_range] = ACTIONS(4382), + [anon_sym_i8] = ACTIONS(4382), + [anon_sym_i16] = ACTIONS(4382), + [anon_sym_i32] = ACTIONS(4382), + [anon_sym_i64] = ACTIONS(4382), + [anon_sym_u8] = ACTIONS(4382), + [anon_sym_u16] = ACTIONS(4382), + [anon_sym_u32] = ACTIONS(4382), + [anon_sym_u64] = ACTIONS(4382), + [anon_sym_isize] = ACTIONS(4382), + [anon_sym_usize] = ACTIONS(4382), + [anon_sym_f32] = ACTIONS(4382), + [anon_sym_f64] = ACTIONS(4382), + [anon_sym_c_char] = ACTIONS(4382), + [anon_sym_c_schar] = ACTIONS(4382), + [anon_sym_c_uchar] = ACTIONS(4382), + [anon_sym_c_short] = ACTIONS(4382), + [anon_sym_c_ushort] = ACTIONS(4382), + [anon_sym_c_int] = ACTIONS(4382), + [anon_sym_c_uint] = ACTIONS(4382), + [anon_sym_c_long] = ACTIONS(4382), + [anon_sym_c_ulong] = ACTIONS(4382), + [anon_sym_c_longlong] = ACTIONS(4382), + [anon_sym_c_ulonglong] = ACTIONS(4382), + [anon_sym_c_float] = ACTIONS(4382), + [anon_sym_c_double] = ACTIONS(4382), + [anon_sym_c_longdouble] = ACTIONS(4382), + [anon_sym_PLUS_EQ] = ACTIONS(4380), + [anon_sym_DASH_EQ] = ACTIONS(4380), + [anon_sym_STAR_EQ] = ACTIONS(4380), + [anon_sym_SLASH_EQ] = ACTIONS(4380), + [anon_sym_AMP_EQ] = ACTIONS(4380), + [anon_sym_PIPE_EQ] = ACTIONS(4380), + [anon_sym_xor_EQ] = ACTIONS(4380), + [anon_sym_LT_LT_EQ] = ACTIONS(4380), + [anon_sym_GT_GT_EQ] = ACTIONS(4380), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4380), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_yield] = ACTIONS(4382), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_defer] = ACTIONS(4382), + [anon_sym_errdefer] = ACTIONS(4382), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_expand] = ACTIONS(4382), + [anon_sym_for] = ACTIONS(4382), + [anon_sym_match] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4380), + [anon_sym_orelse] = ACTIONS(4382), + [anon_sym_or] = ACTIONS(4382), + [anon_sym_and] = ACTIONS(4382), + [anon_sym_EQ_EQ] = ACTIONS(4380), + [anon_sym_BANG_EQ] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_LT_EQ] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_GT_EQ] = ACTIONS(4380), [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_TILDE] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4384), + [anon_sym_xor] = ACTIONS(4382), + [anon_sym_LT_LT] = ACTIONS(4382), + [anon_sym_GT_GT] = ACTIONS(4382), + [anon_sym_LT_LT_PIPE] = ACTIONS(4382), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_catch] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4380), + [anon_sym_try] = ACTIONS(4382), [anon_sym_DOT] = ACTIONS(4382), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_unreachable] = ACTIONS(4384), - [anon_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), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_null] = ACTIONS(4382), + [anon_sym_unreachable] = ACTIONS(4382), + [anon_sym_undefined] = ACTIONS(4382), + [sym_sink] = ACTIONS(4382), + [sym_integer] = ACTIONS(4382), + [sym_float] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(4380), + [sym_multiline_string] = ACTIONS(4380), + [sym_character] = ACTIONS(4380), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4382), + [sym__newline] = ACTIONS(4380), }, - [STATE(1846)] = { - [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), + [STATE(2127)] = { + [ts_builtin_sym_end] = ACTIONS(4384), + [sym_identifier] = ACTIONS(4386), + [anon_sym_import] = ACTIONS(4386), + [anon_sym_test] = ACTIONS(4386), + [anon_sym_hide] = ACTIONS(4386), + [anon_sym_func] = ACTIONS(4386), [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_EQ] = ACTIONS(4386), + [anon_sym_struct] = ACTIONS(4386), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_RPAREN] = ACTIONS(4384), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_DOLLAR] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_void] = ACTIONS(4388), - [anon_sym_noreturn] = 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_DOLLAR] = ACTIONS(4384), + [anon_sym_PIPE] = ACTIONS(4386), + [anon_sym_QMARK] = ACTIONS(4384), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_RBRACK] = ACTIONS(4384), + [anon_sym_void] = ACTIONS(4386), + [anon_sym_noreturn] = ACTIONS(4386), + [anon_sym_type] = ACTIONS(4386), + [anon_sym_anyopaque] = ACTIONS(4386), + [anon_sym_bool] = ACTIONS(4386), + [anon_sym_int] = ACTIONS(4386), + [anon_sym_uint] = ACTIONS(4386), + [anon_sym_float] = ACTIONS(4386), + [anon_sym_range] = ACTIONS(4386), + [anon_sym_i8] = ACTIONS(4386), + [anon_sym_i16] = ACTIONS(4386), + [anon_sym_i32] = ACTIONS(4386), + [anon_sym_i64] = ACTIONS(4386), + [anon_sym_u8] = ACTIONS(4386), + [anon_sym_u16] = ACTIONS(4386), + [anon_sym_u32] = ACTIONS(4386), + [anon_sym_u64] = ACTIONS(4386), + [anon_sym_isize] = ACTIONS(4386), + [anon_sym_usize] = ACTIONS(4386), + [anon_sym_f32] = ACTIONS(4386), + [anon_sym_f64] = ACTIONS(4386), + [anon_sym_c_char] = ACTIONS(4386), + [anon_sym_c_schar] = ACTIONS(4386), + [anon_sym_c_uchar] = ACTIONS(4386), + [anon_sym_c_short] = ACTIONS(4386), + [anon_sym_c_ushort] = ACTIONS(4386), + [anon_sym_c_int] = ACTIONS(4386), + [anon_sym_c_uint] = ACTIONS(4386), + [anon_sym_c_long] = ACTIONS(4386), + [anon_sym_c_ulong] = ACTIONS(4386), + [anon_sym_c_longlong] = ACTIONS(4386), + [anon_sym_c_ulonglong] = ACTIONS(4386), + [anon_sym_c_float] = ACTIONS(4386), + [anon_sym_c_double] = ACTIONS(4386), + [anon_sym_c_longdouble] = ACTIONS(4386), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_AMP_EQ] = ACTIONS(4384), + [anon_sym_PIPE_EQ] = ACTIONS(4384), + [anon_sym_xor_EQ] = ACTIONS(4384), + [anon_sym_LT_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_GT_EQ] = ACTIONS(4384), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4384), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_yield] = ACTIONS(4386), + [anon_sym_COLON] = ACTIONS(4384), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_defer] = ACTIONS(4386), + [anon_sym_errdefer] = ACTIONS(4386), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_while] = ACTIONS(4386), + [anon_sym_expand] = ACTIONS(4386), + [anon_sym_for] = ACTIONS(4386), + [anon_sym_match] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4384), + [anon_sym_orelse] = ACTIONS(4386), + [anon_sym_or] = ACTIONS(4386), + [anon_sym_and] = ACTIONS(4386), + [anon_sym_EQ_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_GT_EQ] = ACTIONS(4384), [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_TILDE] = ACTIONS(4386), - [anon_sym_try] = ACTIONS(4388), + [anon_sym_xor] = ACTIONS(4386), + [anon_sym_LT_LT] = ACTIONS(4386), + [anon_sym_GT_GT] = ACTIONS(4386), + [anon_sym_LT_LT_PIPE] = ACTIONS(4386), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_catch] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4384), + [anon_sym_try] = ACTIONS(4386), [anon_sym_DOT] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4388), - [anon_sym_false] = ACTIONS(4388), - [anon_sym_null] = ACTIONS(4388), - [anon_sym_unreachable] = ACTIONS(4388), - [anon_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), + [anon_sym_CARET] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_null] = ACTIONS(4386), + [anon_sym_unreachable] = ACTIONS(4386), + [anon_sym_undefined] = ACTIONS(4386), + [sym_sink] = ACTIONS(4386), + [sym_integer] = ACTIONS(4386), + [sym_float] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym_multiline_string] = ACTIONS(4384), + [sym_character] = ACTIONS(4384), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4386), + [sym__newline] = ACTIONS(4384), }, - [STATE(1847)] = { - [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), + [STATE(2128)] = { + [ts_builtin_sym_end] = ACTIONS(4388), + [sym_identifier] = ACTIONS(4390), + [anon_sym_import] = ACTIONS(4390), + [anon_sym_test] = ACTIONS(4390), + [anon_sym_hide] = ACTIONS(4390), + [anon_sym_func] = ACTIONS(4390), [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_EQ] = ACTIONS(4390), + [anon_sym_struct] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4388), [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_DOLLAR] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(4390), - [anon_sym_void] = ACTIONS(4392), - [anon_sym_noreturn] = 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_DOLLAR] = ACTIONS(4388), + [anon_sym_PIPE] = ACTIONS(4390), + [anon_sym_QMARK] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_RBRACK] = ACTIONS(4388), + [anon_sym_void] = ACTIONS(4390), + [anon_sym_noreturn] = ACTIONS(4390), + [anon_sym_type] = ACTIONS(4390), + [anon_sym_anyopaque] = ACTIONS(4390), + [anon_sym_bool] = ACTIONS(4390), + [anon_sym_int] = ACTIONS(4390), + [anon_sym_uint] = ACTIONS(4390), + [anon_sym_float] = ACTIONS(4390), + [anon_sym_range] = ACTIONS(4390), + [anon_sym_i8] = ACTIONS(4390), + [anon_sym_i16] = ACTIONS(4390), + [anon_sym_i32] = ACTIONS(4390), + [anon_sym_i64] = ACTIONS(4390), + [anon_sym_u8] = ACTIONS(4390), + [anon_sym_u16] = ACTIONS(4390), + [anon_sym_u32] = ACTIONS(4390), + [anon_sym_u64] = ACTIONS(4390), + [anon_sym_isize] = ACTIONS(4390), + [anon_sym_usize] = ACTIONS(4390), + [anon_sym_f32] = ACTIONS(4390), + [anon_sym_f64] = ACTIONS(4390), + [anon_sym_c_char] = ACTIONS(4390), + [anon_sym_c_schar] = ACTIONS(4390), + [anon_sym_c_uchar] = ACTIONS(4390), + [anon_sym_c_short] = ACTIONS(4390), + [anon_sym_c_ushort] = ACTIONS(4390), + [anon_sym_c_int] = ACTIONS(4390), + [anon_sym_c_uint] = ACTIONS(4390), + [anon_sym_c_long] = ACTIONS(4390), + [anon_sym_c_ulong] = ACTIONS(4390), + [anon_sym_c_longlong] = ACTIONS(4390), + [anon_sym_c_ulonglong] = ACTIONS(4390), + [anon_sym_c_float] = ACTIONS(4390), + [anon_sym_c_double] = ACTIONS(4390), + [anon_sym_c_longdouble] = ACTIONS(4390), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_AMP_EQ] = ACTIONS(4388), + [anon_sym_PIPE_EQ] = ACTIONS(4388), + [anon_sym_xor_EQ] = ACTIONS(4388), + [anon_sym_LT_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_GT_EQ] = ACTIONS(4388), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_yield] = ACTIONS(4390), + [anon_sym_COLON] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_defer] = ACTIONS(4390), + [anon_sym_errdefer] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_expand] = ACTIONS(4390), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_match] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4388), + [anon_sym_orelse] = ACTIONS(4390), + [anon_sym_or] = ACTIONS(4390), + [anon_sym_and] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4388), [anon_sym_AMP] = ACTIONS(4390), - [anon_sym_TILDE] = ACTIONS(4390), - [anon_sym_try] = ACTIONS(4392), + [anon_sym_xor] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT_PIPE] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_catch] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4388), + [anon_sym_try] = ACTIONS(4390), [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_true] = ACTIONS(4392), - [anon_sym_false] = ACTIONS(4392), - [anon_sym_null] = ACTIONS(4392), - [anon_sym_unreachable] = ACTIONS(4392), - [anon_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), + [anon_sym_CARET] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_unreachable] = ACTIONS(4390), + [anon_sym_undefined] = ACTIONS(4390), + [sym_sink] = ACTIONS(4390), + [sym_integer] = ACTIONS(4390), + [sym_float] = ACTIONS(4388), + [anon_sym_DQUOTE] = ACTIONS(4388), + [sym_multiline_string] = ACTIONS(4388), + [sym_character] = ACTIONS(4388), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4390), + [sym__newline] = ACTIONS(4388), }, - [STATE(1848)] = { - [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), + [STATE(2129)] = { + [aux_sym_import_declaration_repeat1] = STATE(14240), + [ts_builtin_sym_end] = ACTIONS(4392), + [sym_identifier] = ACTIONS(4394), + [anon_sym_import] = ACTIONS(4394), + [anon_sym_test] = ACTIONS(4394), + [anon_sym_hide] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), [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_EQ] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_DOLLAR] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4394), - [anon_sym_void] = ACTIONS(4396), - [anon_sym_noreturn] = 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_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4394), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_RBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_AMP_EQ] = ACTIONS(4392), + [anon_sym_PIPE_EQ] = ACTIONS(4392), + [anon_sym_xor_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_GT_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4392), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), [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_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), [anon_sym_AMP] = ACTIONS(4394), - [anon_sym_TILDE] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4396), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_LT_LT_PIPE] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_true] = ACTIONS(4396), - [anon_sym_false] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4396), - [anon_sym_unreachable] = ACTIONS(4396), - [anon_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), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4394), + [sym__newline] = ACTIONS(4399), }, - [STATE(1849)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_unreachable] = ACTIONS(4400), - [anon_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), + [STATE(2130)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4398), + [sym__newline] = ACTIONS(2257), }, - [STATE(1850)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4404), - [anon_sym_unreachable] = ACTIONS(4404), - [anon_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), + [STATE(2131)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2138), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4402), }, - [STATE(1851)] = { - [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), + [STATE(2132)] = { + [aux_sym_import_declaration_repeat1] = STATE(14241), + [ts_builtin_sym_end] = ACTIONS(4404), + [sym_identifier] = ACTIONS(4406), + [anon_sym_import] = ACTIONS(4406), + [anon_sym_test] = ACTIONS(4406), + [anon_sym_hide] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), [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_EQ] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_RPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), [anon_sym_DASH] = ACTIONS(4406), - [anon_sym_DOLLAR] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_void] = ACTIONS(4408), - [anon_sym_noreturn] = 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_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4406), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_RBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_AMP_EQ] = ACTIONS(4404), + [anon_sym_PIPE_EQ] = ACTIONS(4404), + [anon_sym_xor_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_GT_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), [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_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), [anon_sym_AMP] = ACTIONS(4406), - [anon_sym_TILDE] = ACTIONS(4406), - [anon_sym_try] = ACTIONS(4408), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4406), + [anon_sym_LT_LT_PIPE] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), [anon_sym_DOT] = ACTIONS(4406), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_unreachable] = ACTIONS(4408), - [anon_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), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4406), + [sym__newline] = ACTIONS(4411), }, - [STATE(1852)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4412), - [anon_sym_unreachable] = ACTIONS(4412), - [anon_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(1853)] = { + [STATE(2133)] = { [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_BANG] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4416), [anon_sym_struct] = ACTIONS(4416), [anon_sym_LPAREN] = ACTIONS(4414), [anon_sym_RPAREN] = ACTIONS(4414), [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), [anon_sym_RBRACE] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4416), [anon_sym_DOLLAR] = ACTIONS(4414), + [anon_sym_PIPE] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4416), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_RBRACK] = ACTIONS(4414), + [anon_sym_void] = ACTIONS(4416), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_AMP_EQ] = ACTIONS(4414), + [anon_sym_PIPE_EQ] = ACTIONS(4414), + [anon_sym_xor_EQ] = ACTIONS(4414), + [anon_sym_LT_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_GT_EQ] = ACTIONS(4414), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4414), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_yield] = ACTIONS(4416), + [anon_sym_COLON] = ACTIONS(4414), + [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_DOT_DOT] = ACTIONS(4416), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4414), + [anon_sym_orelse] = ACTIONS(4416), + [anon_sym_or] = ACTIONS(4416), + [anon_sym_and] = ACTIONS(4416), + [anon_sym_EQ_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_xor] = ACTIONS(4416), + [anon_sym_LT_LT] = ACTIONS(4416), + [anon_sym_GT_GT] = ACTIONS(4416), + [anon_sym_LT_LT_PIPE] = ACTIONS(4416), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_catch] = ACTIONS(4416), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_CARET] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_unreachable] = ACTIONS(4416), + [anon_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(2134)] = { + [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(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_DOLLAR] = ACTIONS(4418), + [anon_sym_PIPE] = ACTIONS(4420), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_RBRACK] = ACTIONS(4418), + [anon_sym_void] = ACTIONS(4420), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_AMP_EQ] = ACTIONS(4418), + [anon_sym_PIPE_EQ] = ACTIONS(4418), + [anon_sym_xor_EQ] = ACTIONS(4418), + [anon_sym_LT_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_GT_EQ] = ACTIONS(4418), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4418), + [anon_sym_return] = ACTIONS(4420), + [anon_sym_yield] = ACTIONS(4420), + [anon_sym_COLON] = ACTIONS(4418), + [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_DOT_DOT] = ACTIONS(4420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), + [anon_sym_orelse] = ACTIONS(4420), + [anon_sym_or] = ACTIONS(4420), + [anon_sym_and] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_xor] = ACTIONS(4420), + [anon_sym_LT_LT] = ACTIONS(4420), + [anon_sym_GT_GT] = ACTIONS(4420), + [anon_sym_LT_LT_PIPE] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_SLASH] = ACTIONS(4420), + [anon_sym_catch] = ACTIONS(4420), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4420), + [anon_sym_false] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(4420), + [anon_sym_unreachable] = ACTIONS(4420), + [anon_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(2135)] = { + [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(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym_RPAREN] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_COMMA] = ACTIONS(4422), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_DOLLAR] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(4424), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_RBRACK] = ACTIONS(4422), + [anon_sym_void] = ACTIONS(4424), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4422), + [anon_sym_DASH_EQ] = ACTIONS(4422), + [anon_sym_STAR_EQ] = ACTIONS(4422), + [anon_sym_SLASH_EQ] = ACTIONS(4422), + [anon_sym_AMP_EQ] = ACTIONS(4422), + [anon_sym_PIPE_EQ] = ACTIONS(4422), + [anon_sym_xor_EQ] = ACTIONS(4422), + [anon_sym_LT_LT_EQ] = ACTIONS(4422), + [anon_sym_GT_GT_EQ] = ACTIONS(4422), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_yield] = ACTIONS(4424), + [anon_sym_COLON] = ACTIONS(4422), + [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_DOT_DOT] = ACTIONS(4424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4422), + [anon_sym_orelse] = ACTIONS(4424), + [anon_sym_or] = ACTIONS(4424), + [anon_sym_and] = ACTIONS(4424), + [anon_sym_EQ_EQ] = ACTIONS(4422), + [anon_sym_BANG_EQ] = ACTIONS(4422), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_LT_EQ] = ACTIONS(4422), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_GT_EQ] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_xor] = ACTIONS(4424), + [anon_sym_LT_LT] = ACTIONS(4424), + [anon_sym_GT_GT] = ACTIONS(4424), + [anon_sym_LT_LT_PIPE] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_catch] = ACTIONS(4424), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_unreachable] = ACTIONS(4424), + [anon_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(2136)] = { + [aux_sym_import_declaration_repeat1] = STATE(14243), + [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(4428), + [anon_sym_EQ] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_RPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4428), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_RBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_AMP_EQ] = ACTIONS(4426), + [anon_sym_PIPE_EQ] = ACTIONS(4426), + [anon_sym_xor_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_GT_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4426), + [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(4430), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4428), + [anon_sym_LT_LT_PIPE] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_SLASH] = ACTIONS(4428), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(4433), + }, + [STATE(2137)] = { + [ts_builtin_sym_end] = ACTIONS(4436), + [sym_identifier] = ACTIONS(4438), + [anon_sym_import] = ACTIONS(4438), + [anon_sym_test] = ACTIONS(4438), + [anon_sym_hide] = ACTIONS(4438), + [anon_sym_func] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_LPAREN] = ACTIONS(4436), + [anon_sym_RPAREN] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_COMMA] = ACTIONS(4436), + [anon_sym_RBRACE] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_DOLLAR] = ACTIONS(4436), + [anon_sym_PIPE] = ACTIONS(4438), + [anon_sym_QMARK] = ACTIONS(4436), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_SEMI] = ACTIONS(4436), + [anon_sym_RBRACK] = ACTIONS(4436), + [anon_sym_void] = ACTIONS(4438), + [anon_sym_noreturn] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_anyopaque] = ACTIONS(4438), + [anon_sym_bool] = ACTIONS(4438), + [anon_sym_int] = ACTIONS(4438), + [anon_sym_uint] = ACTIONS(4438), + [anon_sym_float] = ACTIONS(4438), + [anon_sym_range] = ACTIONS(4438), + [anon_sym_i8] = ACTIONS(4438), + [anon_sym_i16] = ACTIONS(4438), + [anon_sym_i32] = ACTIONS(4438), + [anon_sym_i64] = ACTIONS(4438), + [anon_sym_u8] = ACTIONS(4438), + [anon_sym_u16] = ACTIONS(4438), + [anon_sym_u32] = ACTIONS(4438), + [anon_sym_u64] = ACTIONS(4438), + [anon_sym_isize] = ACTIONS(4438), + [anon_sym_usize] = ACTIONS(4438), + [anon_sym_f32] = ACTIONS(4438), + [anon_sym_f64] = ACTIONS(4438), + [anon_sym_c_char] = ACTIONS(4438), + [anon_sym_c_schar] = ACTIONS(4438), + [anon_sym_c_uchar] = ACTIONS(4438), + [anon_sym_c_short] = ACTIONS(4438), + [anon_sym_c_ushort] = ACTIONS(4438), + [anon_sym_c_int] = ACTIONS(4438), + [anon_sym_c_uint] = ACTIONS(4438), + [anon_sym_c_long] = ACTIONS(4438), + [anon_sym_c_ulong] = ACTIONS(4438), + [anon_sym_c_longlong] = ACTIONS(4438), + [anon_sym_c_ulonglong] = ACTIONS(4438), + [anon_sym_c_float] = ACTIONS(4438), + [anon_sym_c_double] = ACTIONS(4438), + [anon_sym_c_longdouble] = ACTIONS(4438), + [anon_sym_PLUS_EQ] = ACTIONS(4436), + [anon_sym_DASH_EQ] = ACTIONS(4436), + [anon_sym_STAR_EQ] = ACTIONS(4436), + [anon_sym_SLASH_EQ] = ACTIONS(4436), + [anon_sym_AMP_EQ] = ACTIONS(4436), + [anon_sym_PIPE_EQ] = ACTIONS(4436), + [anon_sym_xor_EQ] = ACTIONS(4436), + [anon_sym_LT_LT_EQ] = ACTIONS(4436), + [anon_sym_GT_GT_EQ] = ACTIONS(4436), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4436), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_yield] = ACTIONS(4438), + [anon_sym_COLON] = ACTIONS(4436), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_defer] = ACTIONS(4438), + [anon_sym_errdefer] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_expand] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_match] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4436), + [anon_sym_orelse] = ACTIONS(4438), + [anon_sym_or] = ACTIONS(4438), + [anon_sym_and] = ACTIONS(4438), + [anon_sym_EQ_EQ] = ACTIONS(4436), + [anon_sym_BANG_EQ] = ACTIONS(4436), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_LT_EQ] = ACTIONS(4436), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_GT_EQ] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_xor] = ACTIONS(4438), + [anon_sym_LT_LT] = ACTIONS(4438), + [anon_sym_GT_GT] = ACTIONS(4438), + [anon_sym_LT_LT_PIPE] = ACTIONS(4438), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_catch] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4436), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4436), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_unreachable] = ACTIONS(4438), + [anon_sym_undefined] = ACTIONS(4438), + [sym_sink] = ACTIONS(4438), + [sym_integer] = ACTIONS(4438), + [sym_float] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(4436), + [sym_multiline_string] = ACTIONS(4436), + [sym_character] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4436), + }, + [STATE(2138)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8881), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(515), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(521), + [anon_sym_errdefer] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(527), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2139)] = { + [ts_builtin_sym_end] = ACTIONS(4440), + [sym_identifier] = ACTIONS(4442), + [anon_sym_import] = ACTIONS(4442), + [anon_sym_test] = ACTIONS(4442), + [anon_sym_hide] = ACTIONS(4442), + [anon_sym_func] = ACTIONS(4442), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_RPAREN] = ACTIONS(4440), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_DOLLAR] = ACTIONS(4440), + [anon_sym_PIPE] = ACTIONS(4442), + [anon_sym_QMARK] = ACTIONS(4440), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_RBRACK] = ACTIONS(4440), + [anon_sym_void] = ACTIONS(4442), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_anyopaque] = ACTIONS(4442), + [anon_sym_bool] = ACTIONS(4442), + [anon_sym_int] = ACTIONS(4442), + [anon_sym_uint] = ACTIONS(4442), + [anon_sym_float] = ACTIONS(4442), + [anon_sym_range] = ACTIONS(4442), + [anon_sym_i8] = ACTIONS(4442), + [anon_sym_i16] = ACTIONS(4442), + [anon_sym_i32] = ACTIONS(4442), + [anon_sym_i64] = ACTIONS(4442), + [anon_sym_u8] = ACTIONS(4442), + [anon_sym_u16] = ACTIONS(4442), + [anon_sym_u32] = ACTIONS(4442), + [anon_sym_u64] = ACTIONS(4442), + [anon_sym_isize] = ACTIONS(4442), + [anon_sym_usize] = ACTIONS(4442), + [anon_sym_f32] = ACTIONS(4442), + [anon_sym_f64] = ACTIONS(4442), + [anon_sym_c_char] = ACTIONS(4442), + [anon_sym_c_schar] = ACTIONS(4442), + [anon_sym_c_uchar] = ACTIONS(4442), + [anon_sym_c_short] = ACTIONS(4442), + [anon_sym_c_ushort] = ACTIONS(4442), + [anon_sym_c_int] = ACTIONS(4442), + [anon_sym_c_uint] = ACTIONS(4442), + [anon_sym_c_long] = ACTIONS(4442), + [anon_sym_c_ulong] = ACTIONS(4442), + [anon_sym_c_longlong] = ACTIONS(4442), + [anon_sym_c_ulonglong] = ACTIONS(4442), + [anon_sym_c_float] = ACTIONS(4442), + [anon_sym_c_double] = ACTIONS(4442), + [anon_sym_c_longdouble] = ACTIONS(4442), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_AMP_EQ] = ACTIONS(4440), + [anon_sym_PIPE_EQ] = ACTIONS(4440), + [anon_sym_xor_EQ] = ACTIONS(4440), + [anon_sym_LT_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_GT_EQ] = ACTIONS(4440), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4440), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_yield] = ACTIONS(4442), + [anon_sym_COLON] = ACTIONS(4440), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_defer] = ACTIONS(4442), + [anon_sym_errdefer] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_expand] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_match] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4440), + [anon_sym_orelse] = ACTIONS(4442), + [anon_sym_or] = ACTIONS(4442), + [anon_sym_and] = ACTIONS(4442), + [anon_sym_EQ_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_xor] = ACTIONS(4442), + [anon_sym_LT_LT] = ACTIONS(4442), + [anon_sym_GT_GT] = ACTIONS(4442), + [anon_sym_LT_LT_PIPE] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_catch] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4440), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_unreachable] = ACTIONS(4442), + [anon_sym_undefined] = ACTIONS(4442), + [sym_sink] = ACTIONS(4442), + [sym_integer] = ACTIONS(4442), + [sym_float] = ACTIONS(4440), + [anon_sym_DQUOTE] = ACTIONS(4440), + [sym_multiline_string] = ACTIONS(4440), + [sym_character] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4440), + }, + [STATE(2140)] = { + [aux_sym_import_declaration_repeat1] = STATE(14244), + [ts_builtin_sym_end] = ACTIONS(4444), + [sym_identifier] = ACTIONS(4446), + [anon_sym_import] = ACTIONS(4446), + [anon_sym_test] = ACTIONS(4446), + [anon_sym_hide] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4446), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_RBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_AMP_EQ] = ACTIONS(4444), + [anon_sym_PIPE_EQ] = ACTIONS(4444), + [anon_sym_xor_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_GT_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(4448), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT_PIPE] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4451), + }, + [STATE(2141)] = { + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(4454), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2142)] = { + [aux_sym_import_declaration_repeat1] = STATE(14245), + [ts_builtin_sym_end] = ACTIONS(4456), + [sym_identifier] = ACTIONS(4458), + [anon_sym_import] = ACTIONS(4458), + [anon_sym_test] = ACTIONS(4458), + [anon_sym_hide] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_RPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_COMMA] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4456), + [anon_sym_RBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_PLUS_EQ] = ACTIONS(4456), + [anon_sym_DASH_EQ] = ACTIONS(4456), + [anon_sym_STAR_EQ] = ACTIONS(4456), + [anon_sym_SLASH_EQ] = ACTIONS(4456), + [anon_sym_AMP_EQ] = ACTIONS(4456), + [anon_sym_PIPE_EQ] = ACTIONS(4456), + [anon_sym_xor_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_EQ] = ACTIONS(4456), + [anon_sym_GT_GT_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(4460), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4458), + [anon_sym_LT_LT_PIPE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(4458), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4463), + }, + [STATE(2143)] = { + [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(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4468), + [anon_sym_QMARK] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_RBRACK] = ACTIONS(4466), + [anon_sym_void] = ACTIONS(4468), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4466), + [anon_sym_DASH_EQ] = ACTIONS(4466), + [anon_sym_STAR_EQ] = ACTIONS(4466), + [anon_sym_SLASH_EQ] = ACTIONS(4466), + [anon_sym_AMP_EQ] = ACTIONS(4466), + [anon_sym_PIPE_EQ] = ACTIONS(4466), + [anon_sym_xor_EQ] = ACTIONS(4466), + [anon_sym_LT_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_GT_EQ] = ACTIONS(4466), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_yield] = ACTIONS(4468), + [anon_sym_COLON] = ACTIONS(4466), + [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_DOT_DOT] = ACTIONS(4468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4466), + [anon_sym_orelse] = ACTIONS(4468), + [anon_sym_or] = ACTIONS(4468), + [anon_sym_and] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_xor] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT_PIPE] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_SLASH] = ACTIONS(4468), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_CARET] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4468), + [anon_sym_false] = ACTIONS(4468), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_unreachable] = ACTIONS(4468), + [anon_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(2144)] = { + [ts_builtin_sym_end] = ACTIONS(4470), + [sym_identifier] = ACTIONS(4472), + [anon_sym_import] = ACTIONS(4472), + [anon_sym_test] = ACTIONS(4472), + [anon_sym_hide] = ACTIONS(4472), + [anon_sym_func] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4472), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_RBRACK] = ACTIONS(4470), + [anon_sym_void] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym_type] = ACTIONS(4472), + [anon_sym_anyopaque] = ACTIONS(4472), + [anon_sym_bool] = ACTIONS(4472), + [anon_sym_int] = ACTIONS(4472), + [anon_sym_uint] = ACTIONS(4472), + [anon_sym_float] = ACTIONS(4472), + [anon_sym_range] = ACTIONS(4472), + [anon_sym_i8] = ACTIONS(4472), + [anon_sym_i16] = ACTIONS(4472), + [anon_sym_i32] = ACTIONS(4472), + [anon_sym_i64] = ACTIONS(4472), + [anon_sym_u8] = ACTIONS(4472), + [anon_sym_u16] = ACTIONS(4472), + [anon_sym_u32] = ACTIONS(4472), + [anon_sym_u64] = ACTIONS(4472), + [anon_sym_isize] = ACTIONS(4472), + [anon_sym_usize] = ACTIONS(4472), + [anon_sym_f32] = ACTIONS(4472), + [anon_sym_f64] = ACTIONS(4472), + [anon_sym_c_char] = ACTIONS(4472), + [anon_sym_c_schar] = ACTIONS(4472), + [anon_sym_c_uchar] = ACTIONS(4472), + [anon_sym_c_short] = ACTIONS(4472), + [anon_sym_c_ushort] = ACTIONS(4472), + [anon_sym_c_int] = ACTIONS(4472), + [anon_sym_c_uint] = ACTIONS(4472), + [anon_sym_c_long] = ACTIONS(4472), + [anon_sym_c_ulong] = ACTIONS(4472), + [anon_sym_c_longlong] = ACTIONS(4472), + [anon_sym_c_ulonglong] = ACTIONS(4472), + [anon_sym_c_float] = ACTIONS(4472), + [anon_sym_c_double] = ACTIONS(4472), + [anon_sym_c_longdouble] = ACTIONS(4472), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_AMP_EQ] = ACTIONS(4470), + [anon_sym_PIPE_EQ] = ACTIONS(4470), + [anon_sym_xor_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_GT_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_defer] = ACTIONS(4472), + [anon_sym_errdefer] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_expand] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_match] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4470), + [anon_sym_orelse] = ACTIONS(4472), + [anon_sym_or] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4472), + [anon_sym_EQ_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_xor] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(4472), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_LT_LT_PIPE] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_SLASH] = ACTIONS(4472), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_CARET] = ACTIONS(4470), + [anon_sym_true] = ACTIONS(4472), + [anon_sym_false] = ACTIONS(4472), + [anon_sym_null] = ACTIONS(4472), + [anon_sym_unreachable] = ACTIONS(4472), + [anon_sym_undefined] = ACTIONS(4472), + [sym_sink] = ACTIONS(4472), + [sym_integer] = ACTIONS(4472), + [sym_float] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_multiline_string] = ACTIONS(4470), + [sym_character] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4470), + }, + [STATE(2145)] = { + [aux_sym_import_declaration_repeat1] = STATE(14247), + [ts_builtin_sym_end] = ACTIONS(4474), + [sym_identifier] = ACTIONS(4476), + [anon_sym_import] = ACTIONS(4476), + [anon_sym_test] = ACTIONS(4476), + [anon_sym_hide] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_RPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_RBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_AMP_EQ] = ACTIONS(4474), + [anon_sym_PIPE_EQ] = ACTIONS(4474), + [anon_sym_xor_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_GT_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_yield] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_errdefer] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4478), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_LT_LT_PIPE] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4481), + }, + [STATE(2146)] = { + [ts_builtin_sym_end] = ACTIONS(4484), + [sym_identifier] = ACTIONS(4486), + [anon_sym_import] = ACTIONS(4486), + [anon_sym_test] = ACTIONS(4486), + [anon_sym_hide] = ACTIONS(4486), + [anon_sym_func] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_RBRACK] = ACTIONS(4484), + [anon_sym_void] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_type] = ACTIONS(4486), + [anon_sym_anyopaque] = ACTIONS(4486), + [anon_sym_bool] = ACTIONS(4486), + [anon_sym_int] = ACTIONS(4486), + [anon_sym_uint] = ACTIONS(4486), + [anon_sym_float] = ACTIONS(4486), + [anon_sym_range] = ACTIONS(4486), + [anon_sym_i8] = ACTIONS(4486), + [anon_sym_i16] = ACTIONS(4486), + [anon_sym_i32] = ACTIONS(4486), + [anon_sym_i64] = ACTIONS(4486), + [anon_sym_u8] = ACTIONS(4486), + [anon_sym_u16] = ACTIONS(4486), + [anon_sym_u32] = ACTIONS(4486), + [anon_sym_u64] = ACTIONS(4486), + [anon_sym_isize] = ACTIONS(4486), + [anon_sym_usize] = ACTIONS(4486), + [anon_sym_f32] = ACTIONS(4486), + [anon_sym_f64] = ACTIONS(4486), + [anon_sym_c_char] = ACTIONS(4486), + [anon_sym_c_schar] = ACTIONS(4486), + [anon_sym_c_uchar] = ACTIONS(4486), + [anon_sym_c_short] = ACTIONS(4486), + [anon_sym_c_ushort] = ACTIONS(4486), + [anon_sym_c_int] = ACTIONS(4486), + [anon_sym_c_uint] = ACTIONS(4486), + [anon_sym_c_long] = ACTIONS(4486), + [anon_sym_c_ulong] = ACTIONS(4486), + [anon_sym_c_longlong] = ACTIONS(4486), + [anon_sym_c_ulonglong] = ACTIONS(4486), + [anon_sym_c_float] = ACTIONS(4486), + [anon_sym_c_double] = ACTIONS(4486), + [anon_sym_c_longdouble] = ACTIONS(4486), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_AMP_EQ] = ACTIONS(4484), + [anon_sym_PIPE_EQ] = ACTIONS(4484), + [anon_sym_xor_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_GT_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_yield] = ACTIONS(4486), + [anon_sym_COLON] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_defer] = ACTIONS(4486), + [anon_sym_errdefer] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_while] = ACTIONS(4486), + [anon_sym_expand] = ACTIONS(4486), + [anon_sym_for] = ACTIONS(4486), + [anon_sym_match] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4484), + [anon_sym_orelse] = ACTIONS(4486), + [anon_sym_or] = ACTIONS(4486), + [anon_sym_and] = ACTIONS(4486), + [anon_sym_EQ_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_AMP] = ACTIONS(4486), + [anon_sym_xor] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_LT_LT_PIPE] = ACTIONS(4486), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_SLASH] = ACTIONS(4486), + [anon_sym_catch] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_CARET] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_unreachable] = ACTIONS(4486), + [anon_sym_undefined] = ACTIONS(4486), + [sym_sink] = ACTIONS(4486), + [sym_integer] = ACTIONS(4486), + [sym_float] = ACTIONS(4484), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_multiline_string] = ACTIONS(4484), + [sym_character] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4484), + }, + [STATE(2147)] = { + [ts_builtin_sym_end] = ACTIONS(4488), + [sym_identifier] = ACTIONS(4490), + [anon_sym_import] = ACTIONS(4490), + [anon_sym_test] = ACTIONS(4490), + [anon_sym_hide] = ACTIONS(4490), + [anon_sym_func] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_RPAREN] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym_RBRACK] = ACTIONS(4488), + [anon_sym_void] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym_type] = ACTIONS(4490), + [anon_sym_anyopaque] = ACTIONS(4490), + [anon_sym_bool] = ACTIONS(4490), + [anon_sym_int] = ACTIONS(4490), + [anon_sym_uint] = ACTIONS(4490), + [anon_sym_float] = ACTIONS(4490), + [anon_sym_range] = ACTIONS(4490), + [anon_sym_i8] = ACTIONS(4490), + [anon_sym_i16] = ACTIONS(4490), + [anon_sym_i32] = ACTIONS(4490), + [anon_sym_i64] = ACTIONS(4490), + [anon_sym_u8] = ACTIONS(4490), + [anon_sym_u16] = ACTIONS(4490), + [anon_sym_u32] = ACTIONS(4490), + [anon_sym_u64] = ACTIONS(4490), + [anon_sym_isize] = ACTIONS(4490), + [anon_sym_usize] = ACTIONS(4490), + [anon_sym_f32] = ACTIONS(4490), + [anon_sym_f64] = ACTIONS(4490), + [anon_sym_c_char] = ACTIONS(4490), + [anon_sym_c_schar] = ACTIONS(4490), + [anon_sym_c_uchar] = ACTIONS(4490), + [anon_sym_c_short] = ACTIONS(4490), + [anon_sym_c_ushort] = ACTIONS(4490), + [anon_sym_c_int] = ACTIONS(4490), + [anon_sym_c_uint] = ACTIONS(4490), + [anon_sym_c_long] = ACTIONS(4490), + [anon_sym_c_ulong] = ACTIONS(4490), + [anon_sym_c_longlong] = ACTIONS(4490), + [anon_sym_c_ulonglong] = ACTIONS(4490), + [anon_sym_c_float] = ACTIONS(4490), + [anon_sym_c_double] = ACTIONS(4490), + [anon_sym_c_longdouble] = ACTIONS(4490), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_AMP_EQ] = ACTIONS(4488), + [anon_sym_PIPE_EQ] = ACTIONS(4488), + [anon_sym_xor_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_GT_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_yield] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(4492), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_defer] = ACTIONS(4490), + [anon_sym_errdefer] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_else] = ACTIONS(4490), + [anon_sym_while] = ACTIONS(4490), + [anon_sym_expand] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_DOT_DOT] = ACTIONS(4490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4488), + [anon_sym_orelse] = ACTIONS(4490), + [anon_sym_or] = ACTIONS(4490), + [anon_sym_and] = ACTIONS(4490), + [anon_sym_EQ_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4488), + [anon_sym_LT] = ACTIONS(4490), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT] = ACTIONS(4490), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_xor] = ACTIONS(4490), + [anon_sym_LT_LT] = ACTIONS(4490), + [anon_sym_GT_GT] = ACTIONS(4490), + [anon_sym_LT_LT_PIPE] = ACTIONS(4490), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_SLASH] = ACTIONS(4490), + [anon_sym_catch] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4490), + [anon_sym_false] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4490), + [anon_sym_unreachable] = ACTIONS(4490), + [anon_sym_undefined] = ACTIONS(4490), + [sym_sink] = ACTIONS(4490), + [sym_integer] = ACTIONS(4490), + [sym_float] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4488), + [sym_multiline_string] = ACTIONS(4488), + [sym_character] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4488), + }, + [STATE(2148)] = { + [ts_builtin_sym_end] = ACTIONS(4494), + [sym_identifier] = ACTIONS(4496), + [anon_sym_import] = ACTIONS(4496), + [anon_sym_test] = ACTIONS(4496), + [anon_sym_hide] = ACTIONS(4496), + [anon_sym_func] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4494), + [anon_sym_RPAREN] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_COMMA] = ACTIONS(4494), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_DOLLAR] = ACTIONS(4494), + [anon_sym_PIPE] = ACTIONS(4496), + [anon_sym_QMARK] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4494), + [anon_sym_RBRACK] = ACTIONS(4494), + [anon_sym_void] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_anyopaque] = ACTIONS(4496), + [anon_sym_bool] = ACTIONS(4496), + [anon_sym_int] = ACTIONS(4496), + [anon_sym_uint] = ACTIONS(4496), + [anon_sym_float] = ACTIONS(4496), + [anon_sym_range] = ACTIONS(4496), + [anon_sym_i8] = ACTIONS(4496), + [anon_sym_i16] = ACTIONS(4496), + [anon_sym_i32] = ACTIONS(4496), + [anon_sym_i64] = ACTIONS(4496), + [anon_sym_u8] = ACTIONS(4496), + [anon_sym_u16] = ACTIONS(4496), + [anon_sym_u32] = ACTIONS(4496), + [anon_sym_u64] = ACTIONS(4496), + [anon_sym_isize] = ACTIONS(4496), + [anon_sym_usize] = ACTIONS(4496), + [anon_sym_f32] = ACTIONS(4496), + [anon_sym_f64] = ACTIONS(4496), + [anon_sym_c_char] = ACTIONS(4496), + [anon_sym_c_schar] = ACTIONS(4496), + [anon_sym_c_uchar] = ACTIONS(4496), + [anon_sym_c_short] = ACTIONS(4496), + [anon_sym_c_ushort] = ACTIONS(4496), + [anon_sym_c_int] = ACTIONS(4496), + [anon_sym_c_uint] = ACTIONS(4496), + [anon_sym_c_long] = ACTIONS(4496), + [anon_sym_c_ulong] = ACTIONS(4496), + [anon_sym_c_longlong] = ACTIONS(4496), + [anon_sym_c_ulonglong] = ACTIONS(4496), + [anon_sym_c_float] = ACTIONS(4496), + [anon_sym_c_double] = ACTIONS(4496), + [anon_sym_c_longdouble] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4494), + [anon_sym_DASH_EQ] = ACTIONS(4494), + [anon_sym_STAR_EQ] = ACTIONS(4494), + [anon_sym_SLASH_EQ] = ACTIONS(4494), + [anon_sym_AMP_EQ] = ACTIONS(4494), + [anon_sym_PIPE_EQ] = ACTIONS(4494), + [anon_sym_xor_EQ] = ACTIONS(4494), + [anon_sym_LT_LT_EQ] = ACTIONS(4494), + [anon_sym_GT_GT_EQ] = ACTIONS(4494), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_yield] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_defer] = ACTIONS(4496), + [anon_sym_errdefer] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_expand] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_match] = ACTIONS(4496), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4494), + [anon_sym_orelse] = ACTIONS(4496), + [anon_sym_or] = ACTIONS(4496), + [anon_sym_and] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_LT] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_xor] = ACTIONS(4496), + [anon_sym_LT_LT] = ACTIONS(4496), + [anon_sym_GT_GT] = ACTIONS(4496), + [anon_sym_LT_LT_PIPE] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_SLASH] = ACTIONS(4496), + [anon_sym_catch] = ACTIONS(4496), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_DOT] = ACTIONS(4496), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym_true] = ACTIONS(4496), + [anon_sym_false] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4496), + [anon_sym_unreachable] = ACTIONS(4496), + [anon_sym_undefined] = ACTIONS(4496), + [sym_sink] = ACTIONS(4496), + [sym_integer] = ACTIONS(4496), + [sym_float] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_multiline_string] = ACTIONS(4494), + [sym_character] = ACTIONS(4494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4494), + }, + [STATE(2149)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2162), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4500), + }, + [STATE(2150)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2151)] = { + [ts_builtin_sym_end] = ACTIONS(4502), + [sym_identifier] = ACTIONS(4504), + [anon_sym_import] = ACTIONS(4504), + [anon_sym_test] = ACTIONS(4504), + [anon_sym_hide] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_EQ] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_RPAREN] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(4502), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_DOLLAR] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4504), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4502), + [anon_sym_RBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4502), + [anon_sym_DASH_EQ] = ACTIONS(4502), + [anon_sym_STAR_EQ] = ACTIONS(4502), + [anon_sym_SLASH_EQ] = ACTIONS(4502), + [anon_sym_AMP_EQ] = ACTIONS(4502), + [anon_sym_PIPE_EQ] = ACTIONS(4502), + [anon_sym_xor_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_EQ] = ACTIONS(4502), + [anon_sym_GT_GT_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_COLON] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_errdefer] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_expand] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4504), + [anon_sym_LT_LT_PIPE] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_SLASH] = ACTIONS(4504), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [anon_sym_true] = ACTIONS(4504), + [anon_sym_false] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_unreachable] = ACTIONS(4504), + [anon_sym_undefined] = ACTIONS(4504), + [sym_sink] = ACTIONS(4504), + [sym_integer] = ACTIONS(4504), + [sym_float] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_multiline_string] = ACTIONS(4502), + [sym_character] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(2152)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2153), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4506), + }, + [STATE(2153)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2154)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2155), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4508), + }, + [STATE(2155)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2156)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2161), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4510), + }, + [STATE(2157)] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_identifier] = ACTIONS(4514), + [anon_sym_import] = ACTIONS(4514), + [anon_sym_test] = ACTIONS(4514), + [anon_sym_hide] = ACTIONS(4514), + [anon_sym_func] = ACTIONS(4514), + [anon_sym_BANG] = ACTIONS(4514), + [anon_sym_EQ] = ACTIONS(4514), + [anon_sym_struct] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_COMMA] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_DOLLAR] = ACTIONS(4512), + [anon_sym_PIPE] = ACTIONS(4514), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_STAR] = ACTIONS(4514), + [anon_sym_LBRACK] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [anon_sym_RBRACK] = ACTIONS(4512), + [anon_sym_void] = ACTIONS(4514), + [anon_sym_noreturn] = ACTIONS(4514), + [anon_sym_type] = ACTIONS(4514), + [anon_sym_anyopaque] = ACTIONS(4514), + [anon_sym_bool] = ACTIONS(4514), + [anon_sym_int] = ACTIONS(4514), + [anon_sym_uint] = ACTIONS(4514), + [anon_sym_float] = ACTIONS(4514), + [anon_sym_range] = ACTIONS(4514), + [anon_sym_i8] = ACTIONS(4514), + [anon_sym_i16] = ACTIONS(4514), + [anon_sym_i32] = ACTIONS(4514), + [anon_sym_i64] = ACTIONS(4514), + [anon_sym_u8] = ACTIONS(4514), + [anon_sym_u16] = ACTIONS(4514), + [anon_sym_u32] = ACTIONS(4514), + [anon_sym_u64] = ACTIONS(4514), + [anon_sym_isize] = ACTIONS(4514), + [anon_sym_usize] = ACTIONS(4514), + [anon_sym_f32] = ACTIONS(4514), + [anon_sym_f64] = ACTIONS(4514), + [anon_sym_c_char] = ACTIONS(4514), + [anon_sym_c_schar] = ACTIONS(4514), + [anon_sym_c_uchar] = ACTIONS(4514), + [anon_sym_c_short] = ACTIONS(4514), + [anon_sym_c_ushort] = ACTIONS(4514), + [anon_sym_c_int] = ACTIONS(4514), + [anon_sym_c_uint] = ACTIONS(4514), + [anon_sym_c_long] = ACTIONS(4514), + [anon_sym_c_ulong] = ACTIONS(4514), + [anon_sym_c_longlong] = ACTIONS(4514), + [anon_sym_c_ulonglong] = ACTIONS(4514), + [anon_sym_c_float] = ACTIONS(4514), + [anon_sym_c_double] = ACTIONS(4514), + [anon_sym_c_longdouble] = ACTIONS(4514), + [anon_sym_PLUS_EQ] = ACTIONS(4512), + [anon_sym_DASH_EQ] = ACTIONS(4512), + [anon_sym_STAR_EQ] = ACTIONS(4512), + [anon_sym_SLASH_EQ] = ACTIONS(4512), + [anon_sym_AMP_EQ] = ACTIONS(4512), + [anon_sym_PIPE_EQ] = ACTIONS(4512), + [anon_sym_xor_EQ] = ACTIONS(4512), + [anon_sym_LT_LT_EQ] = ACTIONS(4512), + [anon_sym_GT_GT_EQ] = ACTIONS(4512), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4512), + [anon_sym_return] = ACTIONS(4514), + [anon_sym_yield] = ACTIONS(4514), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_break] = ACTIONS(4514), + [anon_sym_continue] = ACTIONS(4514), + [anon_sym_defer] = ACTIONS(4514), + [anon_sym_errdefer] = ACTIONS(4514), + [anon_sym_if] = ACTIONS(4514), + [anon_sym_else] = ACTIONS(4514), + [anon_sym_while] = ACTIONS(4514), + [anon_sym_expand] = ACTIONS(4514), + [anon_sym_for] = ACTIONS(4514), + [anon_sym_match] = ACTIONS(4514), + [anon_sym_DOT_DOT] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4512), + [anon_sym_orelse] = ACTIONS(4514), + [anon_sym_or] = ACTIONS(4514), + [anon_sym_and] = ACTIONS(4514), + [anon_sym_EQ_EQ] = ACTIONS(4512), + [anon_sym_BANG_EQ] = ACTIONS(4512), + [anon_sym_LT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4512), + [anon_sym_GT] = ACTIONS(4514), + [anon_sym_GT_EQ] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4514), + [anon_sym_xor] = ACTIONS(4514), + [anon_sym_LT_LT] = ACTIONS(4514), + [anon_sym_GT_GT] = ACTIONS(4514), + [anon_sym_LT_LT_PIPE] = ACTIONS(4514), + [anon_sym_PLUS] = ACTIONS(4514), + [anon_sym_SLASH] = ACTIONS(4514), + [anon_sym_catch] = ACTIONS(4514), + [anon_sym_TILDE] = ACTIONS(4512), + [anon_sym_try] = ACTIONS(4514), + [anon_sym_DOT] = ACTIONS(4514), + [anon_sym_CARET] = ACTIONS(4512), + [anon_sym_true] = ACTIONS(4514), + [anon_sym_false] = ACTIONS(4514), + [anon_sym_null] = ACTIONS(4514), + [anon_sym_unreachable] = ACTIONS(4514), + [anon_sym_undefined] = ACTIONS(4514), + [sym_sink] = ACTIONS(4514), + [sym_integer] = ACTIONS(4514), + [sym_float] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [sym_multiline_string] = ACTIONS(4512), + [sym_character] = ACTIONS(4512), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4512), + }, + [STATE(2158)] = { + [ts_builtin_sym_end] = ACTIONS(4516), + [sym_identifier] = ACTIONS(4518), + [anon_sym_import] = ACTIONS(4518), + [anon_sym_test] = ACTIONS(4518), + [anon_sym_hide] = ACTIONS(4518), + [anon_sym_func] = ACTIONS(4518), + [anon_sym_BANG] = ACTIONS(4518), + [anon_sym_EQ] = ACTIONS(4518), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym_RPAREN] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_COMMA] = ACTIONS(4516), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4518), + [anon_sym_DOLLAR] = ACTIONS(4516), + [anon_sym_PIPE] = ACTIONS(4518), + [anon_sym_QMARK] = ACTIONS(4516), + [anon_sym_STAR] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_SEMI] = ACTIONS(4516), + [anon_sym_RBRACK] = ACTIONS(4516), + [anon_sym_void] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym_type] = ACTIONS(4518), + [anon_sym_anyopaque] = ACTIONS(4518), + [anon_sym_bool] = ACTIONS(4518), + [anon_sym_int] = ACTIONS(4518), + [anon_sym_uint] = ACTIONS(4518), + [anon_sym_float] = ACTIONS(4518), + [anon_sym_range] = ACTIONS(4518), + [anon_sym_i8] = ACTIONS(4518), + [anon_sym_i16] = ACTIONS(4518), + [anon_sym_i32] = ACTIONS(4518), + [anon_sym_i64] = ACTIONS(4518), + [anon_sym_u8] = ACTIONS(4518), + [anon_sym_u16] = ACTIONS(4518), + [anon_sym_u32] = ACTIONS(4518), + [anon_sym_u64] = ACTIONS(4518), + [anon_sym_isize] = ACTIONS(4518), + [anon_sym_usize] = ACTIONS(4518), + [anon_sym_f32] = ACTIONS(4518), + [anon_sym_f64] = ACTIONS(4518), + [anon_sym_c_char] = ACTIONS(4518), + [anon_sym_c_schar] = ACTIONS(4518), + [anon_sym_c_uchar] = ACTIONS(4518), + [anon_sym_c_short] = ACTIONS(4518), + [anon_sym_c_ushort] = ACTIONS(4518), + [anon_sym_c_int] = ACTIONS(4518), + [anon_sym_c_uint] = ACTIONS(4518), + [anon_sym_c_long] = ACTIONS(4518), + [anon_sym_c_ulong] = ACTIONS(4518), + [anon_sym_c_longlong] = ACTIONS(4518), + [anon_sym_c_ulonglong] = ACTIONS(4518), + [anon_sym_c_float] = ACTIONS(4518), + [anon_sym_c_double] = ACTIONS(4518), + [anon_sym_c_longdouble] = ACTIONS(4518), + [anon_sym_PLUS_EQ] = ACTIONS(4516), + [anon_sym_DASH_EQ] = ACTIONS(4516), + [anon_sym_STAR_EQ] = ACTIONS(4516), + [anon_sym_SLASH_EQ] = ACTIONS(4516), + [anon_sym_AMP_EQ] = ACTIONS(4516), + [anon_sym_PIPE_EQ] = ACTIONS(4516), + [anon_sym_xor_EQ] = ACTIONS(4516), + [anon_sym_LT_LT_EQ] = ACTIONS(4516), + [anon_sym_GT_GT_EQ] = ACTIONS(4516), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4516), + [anon_sym_return] = ACTIONS(4518), + [anon_sym_yield] = ACTIONS(4518), + [anon_sym_COLON] = ACTIONS(4516), + [anon_sym_break] = ACTIONS(4518), + [anon_sym_continue] = ACTIONS(4518), + [anon_sym_defer] = ACTIONS(4518), + [anon_sym_errdefer] = ACTIONS(4518), + [anon_sym_if] = ACTIONS(4518), + [anon_sym_else] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4518), + [anon_sym_expand] = ACTIONS(4518), + [anon_sym_for] = ACTIONS(4518), + [anon_sym_match] = ACTIONS(4518), + [anon_sym_DOT_DOT] = ACTIONS(4518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4516), + [anon_sym_orelse] = ACTIONS(4518), + [anon_sym_or] = ACTIONS(4518), + [anon_sym_and] = ACTIONS(4518), + [anon_sym_EQ_EQ] = ACTIONS(4516), + [anon_sym_BANG_EQ] = ACTIONS(4516), + [anon_sym_LT] = ACTIONS(4518), + [anon_sym_LT_EQ] = ACTIONS(4516), + [anon_sym_GT] = ACTIONS(4518), + [anon_sym_GT_EQ] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4518), + [anon_sym_xor] = ACTIONS(4518), + [anon_sym_LT_LT] = ACTIONS(4518), + [anon_sym_GT_GT] = ACTIONS(4518), + [anon_sym_LT_LT_PIPE] = ACTIONS(4518), + [anon_sym_PLUS] = ACTIONS(4518), + [anon_sym_SLASH] = ACTIONS(4518), + [anon_sym_catch] = ACTIONS(4518), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_try] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4518), + [anon_sym_CARET] = ACTIONS(4516), + [anon_sym_true] = ACTIONS(4518), + [anon_sym_false] = ACTIONS(4518), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_unreachable] = ACTIONS(4518), + [anon_sym_undefined] = ACTIONS(4518), + [sym_sink] = ACTIONS(4518), + [sym_integer] = ACTIONS(4518), + [sym_float] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym_multiline_string] = ACTIONS(4516), + [sym_character] = ACTIONS(4516), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4516), + }, + [STATE(2159)] = { + [ts_builtin_sym_end] = ACTIONS(4520), + [sym_identifier] = ACTIONS(4522), + [anon_sym_import] = ACTIONS(4522), + [anon_sym_test] = ACTIONS(4522), + [anon_sym_hide] = ACTIONS(4522), + [anon_sym_func] = ACTIONS(4522), + [anon_sym_BANG] = ACTIONS(4522), + [anon_sym_EQ] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym_RPAREN] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_COMMA] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_DOLLAR] = ACTIONS(4520), + [anon_sym_PIPE] = ACTIONS(4522), + [anon_sym_QMARK] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_SEMI] = ACTIONS(4520), + [anon_sym_RBRACK] = ACTIONS(4520), + [anon_sym_void] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym_type] = ACTIONS(4522), + [anon_sym_anyopaque] = ACTIONS(4522), + [anon_sym_bool] = ACTIONS(4522), + [anon_sym_int] = ACTIONS(4522), + [anon_sym_uint] = ACTIONS(4522), + [anon_sym_float] = ACTIONS(4522), + [anon_sym_range] = ACTIONS(4522), + [anon_sym_i8] = ACTIONS(4522), + [anon_sym_i16] = ACTIONS(4522), + [anon_sym_i32] = ACTIONS(4522), + [anon_sym_i64] = ACTIONS(4522), + [anon_sym_u8] = ACTIONS(4522), + [anon_sym_u16] = ACTIONS(4522), + [anon_sym_u32] = ACTIONS(4522), + [anon_sym_u64] = ACTIONS(4522), + [anon_sym_isize] = ACTIONS(4522), + [anon_sym_usize] = ACTIONS(4522), + [anon_sym_f32] = ACTIONS(4522), + [anon_sym_f64] = ACTIONS(4522), + [anon_sym_c_char] = ACTIONS(4522), + [anon_sym_c_schar] = ACTIONS(4522), + [anon_sym_c_uchar] = ACTIONS(4522), + [anon_sym_c_short] = ACTIONS(4522), + [anon_sym_c_ushort] = ACTIONS(4522), + [anon_sym_c_int] = ACTIONS(4522), + [anon_sym_c_uint] = ACTIONS(4522), + [anon_sym_c_long] = ACTIONS(4522), + [anon_sym_c_ulong] = ACTIONS(4522), + [anon_sym_c_longlong] = ACTIONS(4522), + [anon_sym_c_ulonglong] = ACTIONS(4522), + [anon_sym_c_float] = ACTIONS(4522), + [anon_sym_c_double] = ACTIONS(4522), + [anon_sym_c_longdouble] = ACTIONS(4522), + [anon_sym_PLUS_EQ] = ACTIONS(4520), + [anon_sym_DASH_EQ] = ACTIONS(4520), + [anon_sym_STAR_EQ] = ACTIONS(4520), + [anon_sym_SLASH_EQ] = ACTIONS(4520), + [anon_sym_AMP_EQ] = ACTIONS(4520), + [anon_sym_PIPE_EQ] = ACTIONS(4520), + [anon_sym_xor_EQ] = ACTIONS(4520), + [anon_sym_LT_LT_EQ] = ACTIONS(4520), + [anon_sym_GT_GT_EQ] = ACTIONS(4520), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4520), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_yield] = ACTIONS(4522), + [anon_sym_COLON] = ACTIONS(4520), + [anon_sym_break] = ACTIONS(4522), + [anon_sym_continue] = ACTIONS(4522), + [anon_sym_defer] = ACTIONS(4522), + [anon_sym_errdefer] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_else] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_expand] = ACTIONS(4522), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_match] = ACTIONS(4522), + [anon_sym_DOT_DOT] = ACTIONS(4522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4520), + [anon_sym_orelse] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4522), + [anon_sym_and] = ACTIONS(4522), + [anon_sym_EQ_EQ] = ACTIONS(4520), + [anon_sym_BANG_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_GT] = ACTIONS(4522), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_xor] = ACTIONS(4522), + [anon_sym_LT_LT] = ACTIONS(4522), + [anon_sym_GT_GT] = ACTIONS(4522), + [anon_sym_LT_LT_PIPE] = ACTIONS(4522), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_SLASH] = ACTIONS(4522), + [anon_sym_catch] = ACTIONS(4522), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4522), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_true] = ACTIONS(4522), + [anon_sym_false] = ACTIONS(4522), + [anon_sym_null] = ACTIONS(4522), + [anon_sym_unreachable] = ACTIONS(4522), + [anon_sym_undefined] = ACTIONS(4522), + [sym_sink] = ACTIONS(4522), + [sym_integer] = ACTIONS(4522), + [sym_float] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [sym_multiline_string] = ACTIONS(4520), + [sym_character] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4520), + }, + [STATE(2160)] = { + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_identifier] = ACTIONS(4526), + [anon_sym_import] = ACTIONS(4526), + [anon_sym_test] = ACTIONS(4526), + [anon_sym_hide] = ACTIONS(4526), + [anon_sym_func] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_DOLLAR] = ACTIONS(4524), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_QMARK] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_SEMI] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_void] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym_type] = ACTIONS(4526), + [anon_sym_anyopaque] = ACTIONS(4526), + [anon_sym_bool] = ACTIONS(4526), + [anon_sym_int] = ACTIONS(4526), + [anon_sym_uint] = ACTIONS(4526), + [anon_sym_float] = ACTIONS(4526), + [anon_sym_range] = ACTIONS(4526), + [anon_sym_i8] = ACTIONS(4526), + [anon_sym_i16] = ACTIONS(4526), + [anon_sym_i32] = ACTIONS(4526), + [anon_sym_i64] = ACTIONS(4526), + [anon_sym_u8] = ACTIONS(4526), + [anon_sym_u16] = ACTIONS(4526), + [anon_sym_u32] = ACTIONS(4526), + [anon_sym_u64] = ACTIONS(4526), + [anon_sym_isize] = ACTIONS(4526), + [anon_sym_usize] = ACTIONS(4526), + [anon_sym_f32] = ACTIONS(4526), + [anon_sym_f64] = ACTIONS(4526), + [anon_sym_c_char] = ACTIONS(4526), + [anon_sym_c_schar] = ACTIONS(4526), + [anon_sym_c_uchar] = ACTIONS(4526), + [anon_sym_c_short] = ACTIONS(4526), + [anon_sym_c_ushort] = ACTIONS(4526), + [anon_sym_c_int] = ACTIONS(4526), + [anon_sym_c_uint] = ACTIONS(4526), + [anon_sym_c_long] = ACTIONS(4526), + [anon_sym_c_ulong] = ACTIONS(4526), + [anon_sym_c_longlong] = ACTIONS(4526), + [anon_sym_c_ulonglong] = ACTIONS(4526), + [anon_sym_c_float] = ACTIONS(4526), + [anon_sym_c_double] = ACTIONS(4526), + [anon_sym_c_longdouble] = ACTIONS(4526), + [anon_sym_PLUS_EQ] = ACTIONS(4524), + [anon_sym_DASH_EQ] = ACTIONS(4524), + [anon_sym_STAR_EQ] = ACTIONS(4524), + [anon_sym_SLASH_EQ] = ACTIONS(4524), + [anon_sym_AMP_EQ] = ACTIONS(4524), + [anon_sym_PIPE_EQ] = ACTIONS(4524), + [anon_sym_xor_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_yield] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4524), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_defer] = ACTIONS(4526), + [anon_sym_errdefer] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_else] = ACTIONS(4526), + [anon_sym_while] = ACTIONS(4526), + [anon_sym_expand] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_match] = ACTIONS(4526), + [anon_sym_DOT_DOT] = ACTIONS(4526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4524), + [anon_sym_orelse] = ACTIONS(4526), + [anon_sym_or] = ACTIONS(4526), + [anon_sym_and] = ACTIONS(4526), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_xor] = ACTIONS(4526), + [anon_sym_LT_LT] = ACTIONS(4526), + [anon_sym_GT_GT] = ACTIONS(4526), + [anon_sym_LT_LT_PIPE] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_catch] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4524), + [anon_sym_try] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4524), + [anon_sym_true] = ACTIONS(4526), + [anon_sym_false] = ACTIONS(4526), + [anon_sym_null] = ACTIONS(4526), + [anon_sym_unreachable] = ACTIONS(4526), + [anon_sym_undefined] = ACTIONS(4526), + [sym_sink] = ACTIONS(4526), + [sym_integer] = ACTIONS(4526), + [sym_float] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4524), + [sym_multiline_string] = ACTIONS(4524), + [sym_character] = ACTIONS(4524), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4524), + }, + [STATE(2161)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(531), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(537), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(543), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2162)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2163)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9850), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2173), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4528), + }, + [STATE(2164)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2810), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4530), + }, + [STATE(2165)] = { + [ts_builtin_sym_end] = ACTIONS(4532), + [sym_identifier] = ACTIONS(4534), + [anon_sym_import] = ACTIONS(4534), + [anon_sym_test] = ACTIONS(4534), + [anon_sym_hide] = ACTIONS(4534), + [anon_sym_func] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_RPAREN] = ACTIONS(4532), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_COMMA] = ACTIONS(4532), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4532), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_SEMI] = ACTIONS(4532), + [anon_sym_RBRACK] = ACTIONS(4532), + [anon_sym_void] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym_type] = ACTIONS(4534), + [anon_sym_anyopaque] = ACTIONS(4534), + [anon_sym_bool] = ACTIONS(4534), + [anon_sym_int] = ACTIONS(4534), + [anon_sym_uint] = ACTIONS(4534), + [anon_sym_float] = ACTIONS(4534), + [anon_sym_range] = ACTIONS(4534), + [anon_sym_i8] = ACTIONS(4534), + [anon_sym_i16] = ACTIONS(4534), + [anon_sym_i32] = ACTIONS(4534), + [anon_sym_i64] = ACTIONS(4534), + [anon_sym_u8] = ACTIONS(4534), + [anon_sym_u16] = ACTIONS(4534), + [anon_sym_u32] = ACTIONS(4534), + [anon_sym_u64] = ACTIONS(4534), + [anon_sym_isize] = ACTIONS(4534), + [anon_sym_usize] = ACTIONS(4534), + [anon_sym_f32] = ACTIONS(4534), + [anon_sym_f64] = ACTIONS(4534), + [anon_sym_c_char] = ACTIONS(4534), + [anon_sym_c_schar] = ACTIONS(4534), + [anon_sym_c_uchar] = ACTIONS(4534), + [anon_sym_c_short] = ACTIONS(4534), + [anon_sym_c_ushort] = ACTIONS(4534), + [anon_sym_c_int] = ACTIONS(4534), + [anon_sym_c_uint] = ACTIONS(4534), + [anon_sym_c_long] = ACTIONS(4534), + [anon_sym_c_ulong] = ACTIONS(4534), + [anon_sym_c_longlong] = ACTIONS(4534), + [anon_sym_c_ulonglong] = ACTIONS(4534), + [anon_sym_c_float] = ACTIONS(4534), + [anon_sym_c_double] = ACTIONS(4534), + [anon_sym_c_longdouble] = ACTIONS(4534), + [anon_sym_PLUS_EQ] = ACTIONS(4532), + [anon_sym_DASH_EQ] = ACTIONS(4532), + [anon_sym_STAR_EQ] = ACTIONS(4532), + [anon_sym_SLASH_EQ] = ACTIONS(4532), + [anon_sym_AMP_EQ] = ACTIONS(4532), + [anon_sym_PIPE_EQ] = ACTIONS(4532), + [anon_sym_xor_EQ] = ACTIONS(4532), + [anon_sym_LT_LT_EQ] = ACTIONS(4532), + [anon_sym_GT_GT_EQ] = ACTIONS(4532), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4532), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_yield] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4532), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_defer] = ACTIONS(4534), + [anon_sym_errdefer] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_else] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4534), + [anon_sym_expand] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_match] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4532), + [anon_sym_orelse] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_EQ_EQ] = ACTIONS(4532), + [anon_sym_BANG_EQ] = ACTIONS(4532), + [anon_sym_LT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_xor] = ACTIONS(4534), + [anon_sym_LT_LT] = ACTIONS(4534), + [anon_sym_GT_GT] = ACTIONS(4534), + [anon_sym_LT_LT_PIPE] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_catch] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4534), + [anon_sym_DOT] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4532), + [anon_sym_true] = ACTIONS(4534), + [anon_sym_false] = ACTIONS(4534), + [anon_sym_null] = ACTIONS(4534), + [anon_sym_unreachable] = ACTIONS(4534), + [anon_sym_undefined] = ACTIONS(4534), + [sym_sink] = ACTIONS(4534), + [sym_integer] = ACTIONS(4534), + [sym_float] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [sym_multiline_string] = ACTIONS(4532), + [sym_character] = ACTIONS(4532), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4532), + }, + [STATE(2166)] = { + [ts_builtin_sym_end] = ACTIONS(4536), + [sym_identifier] = ACTIONS(4538), + [anon_sym_import] = ACTIONS(4538), + [anon_sym_test] = ACTIONS(4538), + [anon_sym_hide] = ACTIONS(4538), + [anon_sym_func] = ACTIONS(4538), + [anon_sym_BANG] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4536), + [anon_sym_RPAREN] = ACTIONS(4536), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_COMMA] = ACTIONS(4536), + [anon_sym_RBRACE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4538), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_SEMI] = ACTIONS(4536), + [anon_sym_RBRACK] = ACTIONS(4536), + [anon_sym_void] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym_type] = ACTIONS(4538), + [anon_sym_anyopaque] = ACTIONS(4538), + [anon_sym_bool] = ACTIONS(4538), + [anon_sym_int] = ACTIONS(4538), + [anon_sym_uint] = ACTIONS(4538), + [anon_sym_float] = ACTIONS(4538), + [anon_sym_range] = ACTIONS(4538), + [anon_sym_i8] = ACTIONS(4538), + [anon_sym_i16] = ACTIONS(4538), + [anon_sym_i32] = ACTIONS(4538), + [anon_sym_i64] = ACTIONS(4538), + [anon_sym_u8] = ACTIONS(4538), + [anon_sym_u16] = ACTIONS(4538), + [anon_sym_u32] = ACTIONS(4538), + [anon_sym_u64] = ACTIONS(4538), + [anon_sym_isize] = ACTIONS(4538), + [anon_sym_usize] = ACTIONS(4538), + [anon_sym_f32] = ACTIONS(4538), + [anon_sym_f64] = ACTIONS(4538), + [anon_sym_c_char] = ACTIONS(4538), + [anon_sym_c_schar] = ACTIONS(4538), + [anon_sym_c_uchar] = ACTIONS(4538), + [anon_sym_c_short] = ACTIONS(4538), + [anon_sym_c_ushort] = ACTIONS(4538), + [anon_sym_c_int] = ACTIONS(4538), + [anon_sym_c_uint] = ACTIONS(4538), + [anon_sym_c_long] = ACTIONS(4538), + [anon_sym_c_ulong] = ACTIONS(4538), + [anon_sym_c_longlong] = ACTIONS(4538), + [anon_sym_c_ulonglong] = ACTIONS(4538), + [anon_sym_c_float] = ACTIONS(4538), + [anon_sym_c_double] = ACTIONS(4538), + [anon_sym_c_longdouble] = ACTIONS(4538), + [anon_sym_PLUS_EQ] = ACTIONS(4536), + [anon_sym_DASH_EQ] = ACTIONS(4536), + [anon_sym_STAR_EQ] = ACTIONS(4536), + [anon_sym_SLASH_EQ] = ACTIONS(4536), + [anon_sym_AMP_EQ] = ACTIONS(4536), + [anon_sym_PIPE_EQ] = ACTIONS(4536), + [anon_sym_xor_EQ] = ACTIONS(4536), + [anon_sym_LT_LT_EQ] = ACTIONS(4536), + [anon_sym_GT_GT_EQ] = ACTIONS(4536), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4536), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_yield] = ACTIONS(4538), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_defer] = ACTIONS(4538), + [anon_sym_errdefer] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_else] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_expand] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_match] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4536), + [anon_sym_orelse] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4536), + [anon_sym_BANG_EQ] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_xor] = ACTIONS(4538), + [anon_sym_LT_LT] = ACTIONS(4538), + [anon_sym_GT_GT] = ACTIONS(4538), + [anon_sym_LT_LT_PIPE] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_catch] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4536), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_DOT] = ACTIONS(4538), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_true] = ACTIONS(4538), + [anon_sym_false] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4538), + [anon_sym_unreachable] = ACTIONS(4538), + [anon_sym_undefined] = ACTIONS(4538), + [sym_sink] = ACTIONS(4538), + [sym_integer] = ACTIONS(4538), + [sym_float] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [sym_multiline_string] = ACTIONS(4536), + [sym_character] = ACTIONS(4536), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4536), + }, + [STATE(2167)] = { + [ts_builtin_sym_end] = ACTIONS(4540), + [sym_identifier] = ACTIONS(4542), + [anon_sym_import] = ACTIONS(4542), + [anon_sym_test] = ACTIONS(4542), + [anon_sym_hide] = ACTIONS(4542), + [anon_sym_func] = ACTIONS(4542), + [anon_sym_BANG] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4542), + [anon_sym_struct] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4542), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4542), + [anon_sym_LBRACK] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym_RBRACK] = ACTIONS(4540), + [anon_sym_void] = ACTIONS(4542), + [anon_sym_noreturn] = ACTIONS(4542), + [anon_sym_type] = ACTIONS(4542), + [anon_sym_anyopaque] = ACTIONS(4542), + [anon_sym_bool] = ACTIONS(4542), + [anon_sym_int] = ACTIONS(4542), + [anon_sym_uint] = ACTIONS(4542), + [anon_sym_float] = ACTIONS(4542), + [anon_sym_range] = ACTIONS(4542), + [anon_sym_i8] = ACTIONS(4542), + [anon_sym_i16] = ACTIONS(4542), + [anon_sym_i32] = ACTIONS(4542), + [anon_sym_i64] = ACTIONS(4542), + [anon_sym_u8] = ACTIONS(4542), + [anon_sym_u16] = ACTIONS(4542), + [anon_sym_u32] = ACTIONS(4542), + [anon_sym_u64] = ACTIONS(4542), + [anon_sym_isize] = ACTIONS(4542), + [anon_sym_usize] = ACTIONS(4542), + [anon_sym_f32] = ACTIONS(4542), + [anon_sym_f64] = ACTIONS(4542), + [anon_sym_c_char] = ACTIONS(4542), + [anon_sym_c_schar] = ACTIONS(4542), + [anon_sym_c_uchar] = ACTIONS(4542), + [anon_sym_c_short] = ACTIONS(4542), + [anon_sym_c_ushort] = ACTIONS(4542), + [anon_sym_c_int] = ACTIONS(4542), + [anon_sym_c_uint] = ACTIONS(4542), + [anon_sym_c_long] = ACTIONS(4542), + [anon_sym_c_ulong] = ACTIONS(4542), + [anon_sym_c_longlong] = ACTIONS(4542), + [anon_sym_c_ulonglong] = ACTIONS(4542), + [anon_sym_c_float] = ACTIONS(4542), + [anon_sym_c_double] = ACTIONS(4542), + [anon_sym_c_longdouble] = ACTIONS(4542), + [anon_sym_PLUS_EQ] = ACTIONS(4540), + [anon_sym_DASH_EQ] = ACTIONS(4540), + [anon_sym_STAR_EQ] = ACTIONS(4540), + [anon_sym_SLASH_EQ] = ACTIONS(4540), + [anon_sym_AMP_EQ] = ACTIONS(4540), + [anon_sym_PIPE_EQ] = ACTIONS(4540), + [anon_sym_xor_EQ] = ACTIONS(4540), + [anon_sym_LT_LT_EQ] = ACTIONS(4540), + [anon_sym_GT_GT_EQ] = ACTIONS(4540), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4540), + [anon_sym_return] = ACTIONS(4542), + [anon_sym_yield] = ACTIONS(4542), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_break] = ACTIONS(4542), + [anon_sym_continue] = ACTIONS(4542), + [anon_sym_defer] = ACTIONS(4542), + [anon_sym_errdefer] = ACTIONS(4542), + [anon_sym_if] = ACTIONS(4542), + [anon_sym_else] = ACTIONS(4542), + [anon_sym_while] = ACTIONS(4542), + [anon_sym_expand] = ACTIONS(4542), + [anon_sym_for] = ACTIONS(4542), + [anon_sym_match] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4540), + [anon_sym_orelse] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4540), + [anon_sym_BANG_EQ] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_xor] = ACTIONS(4542), + [anon_sym_LT_LT] = ACTIONS(4542), + [anon_sym_GT_GT] = ACTIONS(4542), + [anon_sym_LT_LT_PIPE] = ACTIONS(4542), + [anon_sym_PLUS] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4542), + [anon_sym_catch] = ACTIONS(4542), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_try] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym_true] = ACTIONS(4542), + [anon_sym_false] = ACTIONS(4542), + [anon_sym_null] = ACTIONS(4542), + [anon_sym_unreachable] = ACTIONS(4542), + [anon_sym_undefined] = ACTIONS(4542), + [sym_sink] = ACTIONS(4542), + [sym_integer] = ACTIONS(4542), + [sym_float] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym_multiline_string] = ACTIONS(4540), + [sym_character] = ACTIONS(4540), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4540), + }, + [STATE(2168)] = { + [ts_builtin_sym_end] = ACTIONS(4544), + [sym_identifier] = ACTIONS(4546), + [anon_sym_import] = ACTIONS(4546), + [anon_sym_test] = ACTIONS(4546), + [anon_sym_hide] = ACTIONS(4546), + [anon_sym_func] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_struct] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4544), + [anon_sym_RPAREN] = ACTIONS(4544), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_COMMA] = ACTIONS(4544), + [anon_sym_RBRACE] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4544), + [anon_sym_SEMI] = ACTIONS(4544), + [anon_sym_RBRACK] = ACTIONS(4544), + [anon_sym_void] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_type] = ACTIONS(4546), + [anon_sym_anyopaque] = ACTIONS(4546), + [anon_sym_bool] = ACTIONS(4546), + [anon_sym_int] = ACTIONS(4546), + [anon_sym_uint] = ACTIONS(4546), + [anon_sym_float] = ACTIONS(4546), + [anon_sym_range] = ACTIONS(4546), + [anon_sym_i8] = ACTIONS(4546), + [anon_sym_i16] = ACTIONS(4546), + [anon_sym_i32] = ACTIONS(4546), + [anon_sym_i64] = ACTIONS(4546), + [anon_sym_u8] = ACTIONS(4546), + [anon_sym_u16] = ACTIONS(4546), + [anon_sym_u32] = ACTIONS(4546), + [anon_sym_u64] = ACTIONS(4546), + [anon_sym_isize] = ACTIONS(4546), + [anon_sym_usize] = ACTIONS(4546), + [anon_sym_f32] = ACTIONS(4546), + [anon_sym_f64] = ACTIONS(4546), + [anon_sym_c_char] = ACTIONS(4546), + [anon_sym_c_schar] = ACTIONS(4546), + [anon_sym_c_uchar] = ACTIONS(4546), + [anon_sym_c_short] = ACTIONS(4546), + [anon_sym_c_ushort] = ACTIONS(4546), + [anon_sym_c_int] = ACTIONS(4546), + [anon_sym_c_uint] = ACTIONS(4546), + [anon_sym_c_long] = ACTIONS(4546), + [anon_sym_c_ulong] = ACTIONS(4546), + [anon_sym_c_longlong] = ACTIONS(4546), + [anon_sym_c_ulonglong] = ACTIONS(4546), + [anon_sym_c_float] = ACTIONS(4546), + [anon_sym_c_double] = ACTIONS(4546), + [anon_sym_c_longdouble] = ACTIONS(4546), + [anon_sym_PLUS_EQ] = ACTIONS(4544), + [anon_sym_DASH_EQ] = ACTIONS(4544), + [anon_sym_STAR_EQ] = ACTIONS(4544), + [anon_sym_SLASH_EQ] = ACTIONS(4544), + [anon_sym_AMP_EQ] = ACTIONS(4544), + [anon_sym_PIPE_EQ] = ACTIONS(4544), + [anon_sym_xor_EQ] = ACTIONS(4544), + [anon_sym_LT_LT_EQ] = ACTIONS(4544), + [anon_sym_GT_GT_EQ] = ACTIONS(4544), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4544), + [anon_sym_return] = ACTIONS(4546), + [anon_sym_yield] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4544), + [anon_sym_break] = ACTIONS(4546), + [anon_sym_continue] = ACTIONS(4546), + [anon_sym_defer] = ACTIONS(4546), + [anon_sym_errdefer] = ACTIONS(4546), + [anon_sym_if] = ACTIONS(4546), + [anon_sym_else] = ACTIONS(4546), + [anon_sym_while] = ACTIONS(4546), + [anon_sym_expand] = ACTIONS(4546), + [anon_sym_for] = ACTIONS(4546), + [anon_sym_match] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4544), + [anon_sym_orelse] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4544), + [anon_sym_BANG_EQ] = ACTIONS(4544), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4544), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_LT_LT_PIPE] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_catch] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4544), + [anon_sym_try] = ACTIONS(4546), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4544), + [anon_sym_true] = ACTIONS(4546), + [anon_sym_false] = ACTIONS(4546), + [anon_sym_null] = ACTIONS(4546), + [anon_sym_unreachable] = ACTIONS(4546), + [anon_sym_undefined] = ACTIONS(4546), + [sym_sink] = ACTIONS(4546), + [sym_integer] = ACTIONS(4546), + [sym_float] = ACTIONS(4544), + [anon_sym_DQUOTE] = ACTIONS(4544), + [sym_multiline_string] = ACTIONS(4544), + [sym_character] = ACTIONS(4544), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4544), + }, + [STATE(2169)] = { + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_identifier] = ACTIONS(4550), + [anon_sym_import] = ACTIONS(4550), + [anon_sym_test] = ACTIONS(4550), + [anon_sym_hide] = ACTIONS(4550), + [anon_sym_func] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_struct] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_SEMI] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_void] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_type] = ACTIONS(4550), + [anon_sym_anyopaque] = ACTIONS(4550), + [anon_sym_bool] = ACTIONS(4550), + [anon_sym_int] = ACTIONS(4550), + [anon_sym_uint] = ACTIONS(4550), + [anon_sym_float] = ACTIONS(4550), + [anon_sym_range] = ACTIONS(4550), + [anon_sym_i8] = ACTIONS(4550), + [anon_sym_i16] = ACTIONS(4550), + [anon_sym_i32] = ACTIONS(4550), + [anon_sym_i64] = ACTIONS(4550), + [anon_sym_u8] = ACTIONS(4550), + [anon_sym_u16] = ACTIONS(4550), + [anon_sym_u32] = ACTIONS(4550), + [anon_sym_u64] = ACTIONS(4550), + [anon_sym_isize] = ACTIONS(4550), + [anon_sym_usize] = ACTIONS(4550), + [anon_sym_f32] = ACTIONS(4550), + [anon_sym_f64] = ACTIONS(4550), + [anon_sym_c_char] = ACTIONS(4550), + [anon_sym_c_schar] = ACTIONS(4550), + [anon_sym_c_uchar] = ACTIONS(4550), + [anon_sym_c_short] = ACTIONS(4550), + [anon_sym_c_ushort] = ACTIONS(4550), + [anon_sym_c_int] = ACTIONS(4550), + [anon_sym_c_uint] = ACTIONS(4550), + [anon_sym_c_long] = ACTIONS(4550), + [anon_sym_c_ulong] = ACTIONS(4550), + [anon_sym_c_longlong] = ACTIONS(4550), + [anon_sym_c_ulonglong] = ACTIONS(4550), + [anon_sym_c_float] = ACTIONS(4550), + [anon_sym_c_double] = ACTIONS(4550), + [anon_sym_c_longdouble] = ACTIONS(4550), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4548), + [anon_sym_xor_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4548), + [anon_sym_return] = ACTIONS(4550), + [anon_sym_yield] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4548), + [anon_sym_break] = ACTIONS(4550), + [anon_sym_continue] = ACTIONS(4550), + [anon_sym_defer] = ACTIONS(4550), + [anon_sym_errdefer] = ACTIONS(4550), + [anon_sym_if] = ACTIONS(4550), + [anon_sym_else] = ACTIONS(4550), + [anon_sym_while] = ACTIONS(4550), + [anon_sym_expand] = ACTIONS(4550), + [anon_sym_for] = ACTIONS(4550), + [anon_sym_match] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4548), + [anon_sym_orelse] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP] = ACTIONS(4550), + [anon_sym_xor] = ACTIONS(4550), + [anon_sym_LT_LT] = ACTIONS(4550), + [anon_sym_GT_GT] = ACTIONS(4550), + [anon_sym_LT_LT_PIPE] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_catch] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_try] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym_true] = ACTIONS(4550), + [anon_sym_false] = ACTIONS(4550), + [anon_sym_null] = ACTIONS(4550), + [anon_sym_unreachable] = ACTIONS(4550), + [anon_sym_undefined] = ACTIONS(4550), + [sym_sink] = ACTIONS(4550), + [sym_integer] = ACTIONS(4550), + [sym_float] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(4548), + [sym_multiline_string] = ACTIONS(4548), + [sym_character] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4548), + }, + [STATE(2170)] = { + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_identifier] = ACTIONS(4554), + [anon_sym_import] = ACTIONS(4554), + [anon_sym_test] = ACTIONS(4554), + [anon_sym_hide] = ACTIONS(4554), + [anon_sym_func] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_struct] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_SEMI] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_void] = ACTIONS(4554), + [anon_sym_noreturn] = ACTIONS(4554), + [anon_sym_type] = ACTIONS(4554), + [anon_sym_anyopaque] = ACTIONS(4554), + [anon_sym_bool] = ACTIONS(4554), + [anon_sym_int] = ACTIONS(4554), + [anon_sym_uint] = ACTIONS(4554), + [anon_sym_float] = ACTIONS(4554), + [anon_sym_range] = ACTIONS(4554), + [anon_sym_i8] = ACTIONS(4554), + [anon_sym_i16] = ACTIONS(4554), + [anon_sym_i32] = ACTIONS(4554), + [anon_sym_i64] = ACTIONS(4554), + [anon_sym_u8] = ACTIONS(4554), + [anon_sym_u16] = ACTIONS(4554), + [anon_sym_u32] = ACTIONS(4554), + [anon_sym_u64] = ACTIONS(4554), + [anon_sym_isize] = ACTIONS(4554), + [anon_sym_usize] = ACTIONS(4554), + [anon_sym_f32] = ACTIONS(4554), + [anon_sym_f64] = ACTIONS(4554), + [anon_sym_c_char] = ACTIONS(4554), + [anon_sym_c_schar] = ACTIONS(4554), + [anon_sym_c_uchar] = ACTIONS(4554), + [anon_sym_c_short] = ACTIONS(4554), + [anon_sym_c_ushort] = ACTIONS(4554), + [anon_sym_c_int] = ACTIONS(4554), + [anon_sym_c_uint] = ACTIONS(4554), + [anon_sym_c_long] = ACTIONS(4554), + [anon_sym_c_ulong] = ACTIONS(4554), + [anon_sym_c_longlong] = ACTIONS(4554), + [anon_sym_c_ulonglong] = ACTIONS(4554), + [anon_sym_c_float] = ACTIONS(4554), + [anon_sym_c_double] = ACTIONS(4554), + [anon_sym_c_longdouble] = ACTIONS(4554), + [anon_sym_PLUS_EQ] = ACTIONS(4552), + [anon_sym_DASH_EQ] = ACTIONS(4552), + [anon_sym_STAR_EQ] = ACTIONS(4552), + [anon_sym_SLASH_EQ] = ACTIONS(4552), + [anon_sym_AMP_EQ] = ACTIONS(4552), + [anon_sym_PIPE_EQ] = ACTIONS(4552), + [anon_sym_xor_EQ] = ACTIONS(4552), + [anon_sym_LT_LT_EQ] = ACTIONS(4552), + [anon_sym_GT_GT_EQ] = ACTIONS(4552), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4552), + [anon_sym_return] = ACTIONS(4554), + [anon_sym_yield] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4552), + [anon_sym_break] = ACTIONS(4554), + [anon_sym_continue] = ACTIONS(4554), + [anon_sym_defer] = ACTIONS(4554), + [anon_sym_errdefer] = ACTIONS(4554), + [anon_sym_if] = ACTIONS(4554), + [anon_sym_else] = ACTIONS(4554), + [anon_sym_while] = ACTIONS(4554), + [anon_sym_expand] = ACTIONS(4554), + [anon_sym_for] = ACTIONS(4554), + [anon_sym_match] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4552), + [anon_sym_orelse] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4552), + [anon_sym_BANG_EQ] = ACTIONS(4552), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4552), + [anon_sym_AMP] = ACTIONS(4554), + [anon_sym_xor] = ACTIONS(4554), + [anon_sym_LT_LT] = ACTIONS(4554), + [anon_sym_GT_GT] = ACTIONS(4554), + [anon_sym_LT_LT_PIPE] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_catch] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4552), + [anon_sym_try] = ACTIONS(4554), + [anon_sym_DOT] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym_true] = ACTIONS(4554), + [anon_sym_false] = ACTIONS(4554), + [anon_sym_null] = ACTIONS(4554), + [anon_sym_unreachable] = ACTIONS(4554), + [anon_sym_undefined] = ACTIONS(4554), + [sym_sink] = ACTIONS(4554), + [sym_integer] = ACTIONS(4554), + [sym_float] = ACTIONS(4552), + [anon_sym_DQUOTE] = ACTIONS(4552), + [sym_multiline_string] = ACTIONS(4552), + [sym_character] = ACTIONS(4552), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4552), + }, + [STATE(2171)] = { + [ts_builtin_sym_end] = ACTIONS(4556), + [sym_identifier] = ACTIONS(4558), + [anon_sym_import] = ACTIONS(4558), + [anon_sym_test] = ACTIONS(4558), + [anon_sym_hide] = ACTIONS(4558), + [anon_sym_func] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_struct] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4556), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_SEMI] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_void] = ACTIONS(4558), + [anon_sym_noreturn] = ACTIONS(4558), + [anon_sym_type] = ACTIONS(4558), + [anon_sym_anyopaque] = ACTIONS(4558), + [anon_sym_bool] = ACTIONS(4558), + [anon_sym_int] = ACTIONS(4558), + [anon_sym_uint] = ACTIONS(4558), + [anon_sym_float] = ACTIONS(4558), + [anon_sym_range] = ACTIONS(4558), + [anon_sym_i8] = ACTIONS(4558), + [anon_sym_i16] = ACTIONS(4558), + [anon_sym_i32] = ACTIONS(4558), + [anon_sym_i64] = ACTIONS(4558), + [anon_sym_u8] = ACTIONS(4558), + [anon_sym_u16] = ACTIONS(4558), + [anon_sym_u32] = ACTIONS(4558), + [anon_sym_u64] = ACTIONS(4558), + [anon_sym_isize] = ACTIONS(4558), + [anon_sym_usize] = ACTIONS(4558), + [anon_sym_f32] = ACTIONS(4558), + [anon_sym_f64] = ACTIONS(4558), + [anon_sym_c_char] = ACTIONS(4558), + [anon_sym_c_schar] = ACTIONS(4558), + [anon_sym_c_uchar] = ACTIONS(4558), + [anon_sym_c_short] = ACTIONS(4558), + [anon_sym_c_ushort] = ACTIONS(4558), + [anon_sym_c_int] = ACTIONS(4558), + [anon_sym_c_uint] = ACTIONS(4558), + [anon_sym_c_long] = ACTIONS(4558), + [anon_sym_c_ulong] = ACTIONS(4558), + [anon_sym_c_longlong] = ACTIONS(4558), + [anon_sym_c_ulonglong] = ACTIONS(4558), + [anon_sym_c_float] = ACTIONS(4558), + [anon_sym_c_double] = ACTIONS(4558), + [anon_sym_c_longdouble] = ACTIONS(4558), + [anon_sym_PLUS_EQ] = ACTIONS(4556), + [anon_sym_DASH_EQ] = ACTIONS(4556), + [anon_sym_STAR_EQ] = ACTIONS(4556), + [anon_sym_SLASH_EQ] = ACTIONS(4556), + [anon_sym_AMP_EQ] = ACTIONS(4556), + [anon_sym_PIPE_EQ] = ACTIONS(4556), + [anon_sym_xor_EQ] = ACTIONS(4556), + [anon_sym_LT_LT_EQ] = ACTIONS(4556), + [anon_sym_GT_GT_EQ] = ACTIONS(4556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4556), + [anon_sym_return] = ACTIONS(4558), + [anon_sym_yield] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4556), + [anon_sym_break] = ACTIONS(4558), + [anon_sym_continue] = ACTIONS(4558), + [anon_sym_defer] = ACTIONS(4558), + [anon_sym_errdefer] = ACTIONS(4558), + [anon_sym_if] = ACTIONS(4558), + [anon_sym_else] = ACTIONS(4558), + [anon_sym_while] = ACTIONS(4558), + [anon_sym_expand] = ACTIONS(4558), + [anon_sym_for] = ACTIONS(4558), + [anon_sym_match] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4556), + [anon_sym_orelse] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4556), + [anon_sym_BANG_EQ] = ACTIONS(4556), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4556), + [anon_sym_AMP] = ACTIONS(4558), + [anon_sym_xor] = ACTIONS(4558), + [anon_sym_LT_LT] = ACTIONS(4558), + [anon_sym_GT_GT] = ACTIONS(4558), + [anon_sym_LT_LT_PIPE] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_catch] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4556), + [anon_sym_try] = ACTIONS(4558), + [anon_sym_DOT] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym_true] = ACTIONS(4558), + [anon_sym_false] = ACTIONS(4558), + [anon_sym_null] = ACTIONS(4558), + [anon_sym_unreachable] = ACTIONS(4558), + [anon_sym_undefined] = ACTIONS(4558), + [sym_sink] = ACTIONS(4558), + [sym_integer] = ACTIONS(4558), + [sym_float] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(4556), + [sym_multiline_string] = ACTIONS(4556), + [sym_character] = ACTIONS(4556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4556), + }, + [STATE(2172)] = { + [ts_builtin_sym_end] = ACTIONS(4560), + [sym_identifier] = ACTIONS(4562), + [anon_sym_import] = ACTIONS(4562), + [anon_sym_test] = ACTIONS(4562), + [anon_sym_hide] = ACTIONS(4562), + [anon_sym_func] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_struct] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4560), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_SEMI] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_void] = ACTIONS(4562), + [anon_sym_noreturn] = ACTIONS(4562), + [anon_sym_type] = ACTIONS(4562), + [anon_sym_anyopaque] = ACTIONS(4562), + [anon_sym_bool] = ACTIONS(4562), + [anon_sym_int] = ACTIONS(4562), + [anon_sym_uint] = ACTIONS(4562), + [anon_sym_float] = ACTIONS(4562), + [anon_sym_range] = ACTIONS(4562), + [anon_sym_i8] = ACTIONS(4562), + [anon_sym_i16] = ACTIONS(4562), + [anon_sym_i32] = ACTIONS(4562), + [anon_sym_i64] = ACTIONS(4562), + [anon_sym_u8] = ACTIONS(4562), + [anon_sym_u16] = ACTIONS(4562), + [anon_sym_u32] = ACTIONS(4562), + [anon_sym_u64] = ACTIONS(4562), + [anon_sym_isize] = ACTIONS(4562), + [anon_sym_usize] = ACTIONS(4562), + [anon_sym_f32] = ACTIONS(4562), + [anon_sym_f64] = ACTIONS(4562), + [anon_sym_c_char] = ACTIONS(4562), + [anon_sym_c_schar] = ACTIONS(4562), + [anon_sym_c_uchar] = ACTIONS(4562), + [anon_sym_c_short] = ACTIONS(4562), + [anon_sym_c_ushort] = ACTIONS(4562), + [anon_sym_c_int] = ACTIONS(4562), + [anon_sym_c_uint] = ACTIONS(4562), + [anon_sym_c_long] = ACTIONS(4562), + [anon_sym_c_ulong] = ACTIONS(4562), + [anon_sym_c_longlong] = ACTIONS(4562), + [anon_sym_c_ulonglong] = ACTIONS(4562), + [anon_sym_c_float] = ACTIONS(4562), + [anon_sym_c_double] = ACTIONS(4562), + [anon_sym_c_longdouble] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4560), + [anon_sym_DASH_EQ] = ACTIONS(4560), + [anon_sym_STAR_EQ] = ACTIONS(4560), + [anon_sym_SLASH_EQ] = ACTIONS(4560), + [anon_sym_AMP_EQ] = ACTIONS(4560), + [anon_sym_PIPE_EQ] = ACTIONS(4560), + [anon_sym_xor_EQ] = ACTIONS(4560), + [anon_sym_LT_LT_EQ] = ACTIONS(4560), + [anon_sym_GT_GT_EQ] = ACTIONS(4560), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4560), + [anon_sym_return] = ACTIONS(4562), + [anon_sym_yield] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4560), + [anon_sym_break] = ACTIONS(4562), + [anon_sym_continue] = ACTIONS(4562), + [anon_sym_defer] = ACTIONS(4562), + [anon_sym_errdefer] = ACTIONS(4562), + [anon_sym_if] = ACTIONS(4562), + [anon_sym_else] = ACTIONS(4562), + [anon_sym_while] = ACTIONS(4562), + [anon_sym_expand] = ACTIONS(4562), + [anon_sym_for] = ACTIONS(4562), + [anon_sym_match] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4560), + [anon_sym_orelse] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4560), + [anon_sym_BANG_EQ] = ACTIONS(4560), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4562), + [anon_sym_xor] = ACTIONS(4562), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(4562), + [anon_sym_LT_LT_PIPE] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_catch] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4560), + [anon_sym_try] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym_true] = ACTIONS(4562), + [anon_sym_false] = ACTIONS(4562), + [anon_sym_null] = ACTIONS(4562), + [anon_sym_unreachable] = ACTIONS(4562), + [anon_sym_undefined] = ACTIONS(4562), + [sym_sink] = ACTIONS(4562), + [sym_integer] = ACTIONS(4562), + [sym_float] = ACTIONS(4560), + [anon_sym_DQUOTE] = ACTIONS(4560), + [sym_multiline_string] = ACTIONS(4560), + [sym_character] = ACTIONS(4560), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4560), + }, + [STATE(2173)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9503), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2174)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2175), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4564), + }, + [STATE(2175)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2176)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9850), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2179), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4566), + }, + [STATE(2177)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9504), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2190), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4568), + }, + [STATE(2178)] = { + [ts_builtin_sym_end] = ACTIONS(4570), + [sym_identifier] = ACTIONS(4572), + [anon_sym_import] = ACTIONS(4572), + [anon_sym_test] = ACTIONS(4572), + [anon_sym_hide] = ACTIONS(4572), + [anon_sym_func] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_struct] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_RPAREN] = ACTIONS(4570), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_SEMI] = ACTIONS(4570), + [anon_sym_RBRACK] = ACTIONS(4570), + [anon_sym_void] = ACTIONS(4572), + [anon_sym_noreturn] = ACTIONS(4572), + [anon_sym_type] = ACTIONS(4572), + [anon_sym_anyopaque] = ACTIONS(4572), + [anon_sym_bool] = ACTIONS(4572), + [anon_sym_int] = ACTIONS(4572), + [anon_sym_uint] = ACTIONS(4572), + [anon_sym_float] = ACTIONS(4572), + [anon_sym_range] = ACTIONS(4572), + [anon_sym_i8] = ACTIONS(4572), + [anon_sym_i16] = ACTIONS(4572), + [anon_sym_i32] = ACTIONS(4572), + [anon_sym_i64] = ACTIONS(4572), + [anon_sym_u8] = ACTIONS(4572), + [anon_sym_u16] = ACTIONS(4572), + [anon_sym_u32] = ACTIONS(4572), + [anon_sym_u64] = ACTIONS(4572), + [anon_sym_isize] = ACTIONS(4572), + [anon_sym_usize] = ACTIONS(4572), + [anon_sym_f32] = ACTIONS(4572), + [anon_sym_f64] = ACTIONS(4572), + [anon_sym_c_char] = ACTIONS(4572), + [anon_sym_c_schar] = ACTIONS(4572), + [anon_sym_c_uchar] = ACTIONS(4572), + [anon_sym_c_short] = ACTIONS(4572), + [anon_sym_c_ushort] = ACTIONS(4572), + [anon_sym_c_int] = ACTIONS(4572), + [anon_sym_c_uint] = ACTIONS(4572), + [anon_sym_c_long] = ACTIONS(4572), + [anon_sym_c_ulong] = ACTIONS(4572), + [anon_sym_c_longlong] = ACTIONS(4572), + [anon_sym_c_ulonglong] = ACTIONS(4572), + [anon_sym_c_float] = ACTIONS(4572), + [anon_sym_c_double] = ACTIONS(4572), + [anon_sym_c_longdouble] = ACTIONS(4572), + [anon_sym_PLUS_EQ] = ACTIONS(4570), + [anon_sym_DASH_EQ] = ACTIONS(4570), + [anon_sym_STAR_EQ] = ACTIONS(4570), + [anon_sym_SLASH_EQ] = ACTIONS(4570), + [anon_sym_AMP_EQ] = ACTIONS(4570), + [anon_sym_PIPE_EQ] = ACTIONS(4570), + [anon_sym_xor_EQ] = ACTIONS(4570), + [anon_sym_LT_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_GT_EQ] = ACTIONS(4570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4570), + [anon_sym_return] = ACTIONS(4572), + [anon_sym_yield] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4570), + [anon_sym_break] = ACTIONS(4572), + [anon_sym_continue] = ACTIONS(4572), + [anon_sym_defer] = ACTIONS(4572), + [anon_sym_errdefer] = ACTIONS(4572), + [anon_sym_if] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_while] = ACTIONS(4572), + [anon_sym_expand] = ACTIONS(4572), + [anon_sym_for] = ACTIONS(4572), + [anon_sym_match] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4570), + [anon_sym_orelse] = ACTIONS(4572), + [anon_sym_or] = ACTIONS(4572), + [anon_sym_and] = ACTIONS(4572), + [anon_sym_EQ_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4572), + [anon_sym_xor] = ACTIONS(4572), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(4572), + [anon_sym_LT_LT_PIPE] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_catch] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_try] = ACTIONS(4572), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_null] = ACTIONS(4572), + [anon_sym_unreachable] = ACTIONS(4572), + [anon_sym_undefined] = ACTIONS(4572), + [sym_sink] = ACTIONS(4572), + [sym_integer] = ACTIONS(4572), + [sym_float] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [sym_multiline_string] = ACTIONS(4570), + [sym_character] = ACTIONS(4570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4570), + }, + [STATE(2179)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9503), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2180)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9504), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2182), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4574), + }, + [STATE(2181)] = { + [ts_builtin_sym_end] = ACTIONS(4576), + [sym_identifier] = ACTIONS(4578), + [anon_sym_import] = ACTIONS(4578), + [anon_sym_test] = ACTIONS(4578), + [anon_sym_hide] = ACTIONS(4578), + [anon_sym_func] = ACTIONS(4578), + [anon_sym_BANG] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4578), + [anon_sym_struct] = ACTIONS(4578), + [anon_sym_LPAREN] = ACTIONS(4576), + [anon_sym_RPAREN] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PIPE] = ACTIONS(4578), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4576), + [anon_sym_RBRACK] = ACTIONS(4576), + [anon_sym_void] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_type] = ACTIONS(4578), + [anon_sym_anyopaque] = ACTIONS(4578), + [anon_sym_bool] = ACTIONS(4578), + [anon_sym_int] = ACTIONS(4578), + [anon_sym_uint] = ACTIONS(4578), + [anon_sym_float] = ACTIONS(4578), + [anon_sym_range] = ACTIONS(4578), + [anon_sym_i8] = ACTIONS(4578), + [anon_sym_i16] = ACTIONS(4578), + [anon_sym_i32] = ACTIONS(4578), + [anon_sym_i64] = ACTIONS(4578), + [anon_sym_u8] = ACTIONS(4578), + [anon_sym_u16] = ACTIONS(4578), + [anon_sym_u32] = ACTIONS(4578), + [anon_sym_u64] = ACTIONS(4578), + [anon_sym_isize] = ACTIONS(4578), + [anon_sym_usize] = ACTIONS(4578), + [anon_sym_f32] = ACTIONS(4578), + [anon_sym_f64] = ACTIONS(4578), + [anon_sym_c_char] = ACTIONS(4578), + [anon_sym_c_schar] = ACTIONS(4578), + [anon_sym_c_uchar] = ACTIONS(4578), + [anon_sym_c_short] = ACTIONS(4578), + [anon_sym_c_ushort] = ACTIONS(4578), + [anon_sym_c_int] = ACTIONS(4578), + [anon_sym_c_uint] = ACTIONS(4578), + [anon_sym_c_long] = ACTIONS(4578), + [anon_sym_c_ulong] = ACTIONS(4578), + [anon_sym_c_longlong] = ACTIONS(4578), + [anon_sym_c_ulonglong] = ACTIONS(4578), + [anon_sym_c_float] = ACTIONS(4578), + [anon_sym_c_double] = ACTIONS(4578), + [anon_sym_c_longdouble] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4576), + [anon_sym_DASH_EQ] = ACTIONS(4576), + [anon_sym_STAR_EQ] = ACTIONS(4576), + [anon_sym_SLASH_EQ] = ACTIONS(4576), + [anon_sym_AMP_EQ] = ACTIONS(4576), + [anon_sym_PIPE_EQ] = ACTIONS(4576), + [anon_sym_xor_EQ] = ACTIONS(4576), + [anon_sym_LT_LT_EQ] = ACTIONS(4576), + [anon_sym_GT_GT_EQ] = ACTIONS(4576), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4576), + [anon_sym_return] = ACTIONS(4578), + [anon_sym_yield] = ACTIONS(4578), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_break] = ACTIONS(4578), + [anon_sym_continue] = ACTIONS(4578), + [anon_sym_defer] = ACTIONS(4578), + [anon_sym_errdefer] = ACTIONS(4578), + [anon_sym_if] = ACTIONS(4578), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_while] = ACTIONS(4578), + [anon_sym_expand] = ACTIONS(4578), + [anon_sym_for] = ACTIONS(4578), + [anon_sym_match] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4576), + [anon_sym_orelse] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4578), + [anon_sym_EQ_EQ] = ACTIONS(4576), + [anon_sym_BANG_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_GT_EQ] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_xor] = ACTIONS(4578), + [anon_sym_LT_LT] = ACTIONS(4578), + [anon_sym_GT_GT] = ACTIONS(4578), + [anon_sym_LT_LT_PIPE] = ACTIONS(4578), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_catch] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_try] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_null] = ACTIONS(4578), + [anon_sym_unreachable] = ACTIONS(4578), + [anon_sym_undefined] = ACTIONS(4578), + [sym_sink] = ACTIONS(4578), + [sym_integer] = ACTIONS(4578), + [sym_float] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [sym_multiline_string] = ACTIONS(4576), + [sym_character] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4576), + }, + [STATE(2182)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9610), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8853), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(547), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(553), + [anon_sym_errdefer] = ACTIONS(555), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(559), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2183)] = { + [ts_builtin_sym_end] = ACTIONS(4580), + [sym_identifier] = ACTIONS(4582), + [anon_sym_import] = ACTIONS(4582), + [anon_sym_test] = ACTIONS(4582), + [anon_sym_hide] = ACTIONS(4582), + [anon_sym_func] = ACTIONS(4582), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_struct] = ACTIONS(4582), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_RPAREN] = ACTIONS(4580), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_DOLLAR] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4582), + [anon_sym_QMARK] = ACTIONS(4580), + [anon_sym_STAR] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_SEMI] = ACTIONS(4580), + [anon_sym_RBRACK] = ACTIONS(4580), + [anon_sym_void] = ACTIONS(4582), + [anon_sym_noreturn] = ACTIONS(4582), + [anon_sym_type] = ACTIONS(4582), + [anon_sym_anyopaque] = ACTIONS(4582), + [anon_sym_bool] = ACTIONS(4582), + [anon_sym_int] = ACTIONS(4582), + [anon_sym_uint] = ACTIONS(4582), + [anon_sym_float] = ACTIONS(4582), + [anon_sym_range] = ACTIONS(4582), + [anon_sym_i8] = ACTIONS(4582), + [anon_sym_i16] = ACTIONS(4582), + [anon_sym_i32] = ACTIONS(4582), + [anon_sym_i64] = ACTIONS(4582), + [anon_sym_u8] = ACTIONS(4582), + [anon_sym_u16] = ACTIONS(4582), + [anon_sym_u32] = ACTIONS(4582), + [anon_sym_u64] = ACTIONS(4582), + [anon_sym_isize] = ACTIONS(4582), + [anon_sym_usize] = ACTIONS(4582), + [anon_sym_f32] = ACTIONS(4582), + [anon_sym_f64] = ACTIONS(4582), + [anon_sym_c_char] = ACTIONS(4582), + [anon_sym_c_schar] = ACTIONS(4582), + [anon_sym_c_uchar] = ACTIONS(4582), + [anon_sym_c_short] = ACTIONS(4582), + [anon_sym_c_ushort] = ACTIONS(4582), + [anon_sym_c_int] = ACTIONS(4582), + [anon_sym_c_uint] = ACTIONS(4582), + [anon_sym_c_long] = ACTIONS(4582), + [anon_sym_c_ulong] = ACTIONS(4582), + [anon_sym_c_longlong] = ACTIONS(4582), + [anon_sym_c_ulonglong] = ACTIONS(4582), + [anon_sym_c_float] = ACTIONS(4582), + [anon_sym_c_double] = ACTIONS(4582), + [anon_sym_c_longdouble] = ACTIONS(4582), + [anon_sym_PLUS_EQ] = ACTIONS(4580), + [anon_sym_DASH_EQ] = ACTIONS(4580), + [anon_sym_STAR_EQ] = ACTIONS(4580), + [anon_sym_SLASH_EQ] = ACTIONS(4580), + [anon_sym_AMP_EQ] = ACTIONS(4580), + [anon_sym_PIPE_EQ] = ACTIONS(4580), + [anon_sym_xor_EQ] = ACTIONS(4580), + [anon_sym_LT_LT_EQ] = ACTIONS(4580), + [anon_sym_GT_GT_EQ] = ACTIONS(4580), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4580), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_yield] = ACTIONS(4582), + [anon_sym_COLON] = ACTIONS(4580), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_defer] = ACTIONS(4582), + [anon_sym_errdefer] = ACTIONS(4582), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_while] = ACTIONS(4582), + [anon_sym_expand] = ACTIONS(4582), + [anon_sym_for] = ACTIONS(4582), + [anon_sym_match] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4580), + [anon_sym_orelse] = ACTIONS(4582), + [anon_sym_or] = ACTIONS(4582), + [anon_sym_and] = ACTIONS(4582), + [anon_sym_EQ_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_AMP] = ACTIONS(4582), + [anon_sym_xor] = ACTIONS(4582), + [anon_sym_LT_LT] = ACTIONS(4582), + [anon_sym_GT_GT] = ACTIONS(4582), + [anon_sym_LT_LT_PIPE] = ACTIONS(4582), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_catch] = ACTIONS(4582), + [anon_sym_TILDE] = ACTIONS(4580), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_CARET] = ACTIONS(4580), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_null] = ACTIONS(4582), + [anon_sym_unreachable] = ACTIONS(4582), + [anon_sym_undefined] = ACTIONS(4582), + [sym_sink] = ACTIONS(4582), + [sym_integer] = ACTIONS(4582), + [sym_float] = ACTIONS(4580), + [anon_sym_DQUOTE] = ACTIONS(4580), + [sym_multiline_string] = ACTIONS(4580), + [sym_character] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4580), + }, + [STATE(2184)] = { + [ts_builtin_sym_end] = ACTIONS(4584), + [sym_identifier] = ACTIONS(4586), + [anon_sym_import] = ACTIONS(4586), + [anon_sym_test] = ACTIONS(4586), + [anon_sym_hide] = ACTIONS(4586), + [anon_sym_func] = ACTIONS(4586), + [anon_sym_BANG] = ACTIONS(4586), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_struct] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4584), + [anon_sym_void] = ACTIONS(4586), + [anon_sym_noreturn] = ACTIONS(4586), + [anon_sym_type] = ACTIONS(4586), + [anon_sym_anyopaque] = ACTIONS(4586), + [anon_sym_bool] = ACTIONS(4586), + [anon_sym_int] = ACTIONS(4586), + [anon_sym_uint] = ACTIONS(4586), + [anon_sym_float] = ACTIONS(4586), + [anon_sym_range] = ACTIONS(4586), + [anon_sym_i8] = ACTIONS(4586), + [anon_sym_i16] = ACTIONS(4586), + [anon_sym_i32] = ACTIONS(4586), + [anon_sym_i64] = ACTIONS(4586), + [anon_sym_u8] = ACTIONS(4586), + [anon_sym_u16] = ACTIONS(4586), + [anon_sym_u32] = ACTIONS(4586), + [anon_sym_u64] = ACTIONS(4586), + [anon_sym_isize] = ACTIONS(4586), + [anon_sym_usize] = ACTIONS(4586), + [anon_sym_f32] = ACTIONS(4586), + [anon_sym_f64] = ACTIONS(4586), + [anon_sym_c_char] = ACTIONS(4586), + [anon_sym_c_schar] = ACTIONS(4586), + [anon_sym_c_uchar] = ACTIONS(4586), + [anon_sym_c_short] = ACTIONS(4586), + [anon_sym_c_ushort] = ACTIONS(4586), + [anon_sym_c_int] = ACTIONS(4586), + [anon_sym_c_uint] = ACTIONS(4586), + [anon_sym_c_long] = ACTIONS(4586), + [anon_sym_c_ulong] = ACTIONS(4586), + [anon_sym_c_longlong] = ACTIONS(4586), + [anon_sym_c_ulonglong] = ACTIONS(4586), + [anon_sym_c_float] = ACTIONS(4586), + [anon_sym_c_double] = ACTIONS(4586), + [anon_sym_c_longdouble] = ACTIONS(4586), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_AMP_EQ] = ACTIONS(4584), + [anon_sym_PIPE_EQ] = ACTIONS(4584), + [anon_sym_xor_EQ] = ACTIONS(4584), + [anon_sym_LT_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_GT_EQ] = ACTIONS(4584), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4584), + [anon_sym_return] = ACTIONS(4586), + [anon_sym_yield] = ACTIONS(4586), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_break] = ACTIONS(4586), + [anon_sym_continue] = ACTIONS(4586), + [anon_sym_defer] = ACTIONS(4586), + [anon_sym_errdefer] = ACTIONS(4586), + [anon_sym_if] = ACTIONS(4586), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_while] = ACTIONS(4586), + [anon_sym_expand] = ACTIONS(4586), + [anon_sym_for] = ACTIONS(4586), + [anon_sym_match] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4584), + [anon_sym_orelse] = ACTIONS(4586), + [anon_sym_or] = ACTIONS(4586), + [anon_sym_and] = ACTIONS(4586), + [anon_sym_EQ_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4586), + [anon_sym_GT_GT] = ACTIONS(4586), + [anon_sym_LT_LT_PIPE] = ACTIONS(4586), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4586), + [anon_sym_catch] = ACTIONS(4586), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_try] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4586), + [anon_sym_false] = ACTIONS(4586), + [anon_sym_null] = ACTIONS(4586), + [anon_sym_unreachable] = ACTIONS(4586), + [anon_sym_undefined] = ACTIONS(4586), + [sym_sink] = ACTIONS(4586), + [sym_integer] = ACTIONS(4586), + [sym_float] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [sym_multiline_string] = ACTIONS(4584), + [sym_character] = ACTIONS(4584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4584), + }, + [STATE(2185)] = { + [ts_builtin_sym_end] = ACTIONS(4588), + [sym_identifier] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4590), + [anon_sym_test] = ACTIONS(4590), + [anon_sym_hide] = ACTIONS(4590), + [anon_sym_func] = ACTIONS(4590), + [anon_sym_BANG] = ACTIONS(4590), + [anon_sym_EQ] = ACTIONS(4590), + [anon_sym_struct] = ACTIONS(4590), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4590), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_RBRACK] = ACTIONS(4588), + [anon_sym_void] = ACTIONS(4590), + [anon_sym_noreturn] = ACTIONS(4590), + [anon_sym_type] = ACTIONS(4590), + [anon_sym_anyopaque] = ACTIONS(4590), + [anon_sym_bool] = ACTIONS(4590), + [anon_sym_int] = ACTIONS(4590), + [anon_sym_uint] = ACTIONS(4590), + [anon_sym_float] = ACTIONS(4590), + [anon_sym_range] = ACTIONS(4590), + [anon_sym_i8] = ACTIONS(4590), + [anon_sym_i16] = ACTIONS(4590), + [anon_sym_i32] = ACTIONS(4590), + [anon_sym_i64] = ACTIONS(4590), + [anon_sym_u8] = ACTIONS(4590), + [anon_sym_u16] = ACTIONS(4590), + [anon_sym_u32] = ACTIONS(4590), + [anon_sym_u64] = ACTIONS(4590), + [anon_sym_isize] = ACTIONS(4590), + [anon_sym_usize] = ACTIONS(4590), + [anon_sym_f32] = ACTIONS(4590), + [anon_sym_f64] = ACTIONS(4590), + [anon_sym_c_char] = ACTIONS(4590), + [anon_sym_c_schar] = ACTIONS(4590), + [anon_sym_c_uchar] = ACTIONS(4590), + [anon_sym_c_short] = ACTIONS(4590), + [anon_sym_c_ushort] = ACTIONS(4590), + [anon_sym_c_int] = ACTIONS(4590), + [anon_sym_c_uint] = ACTIONS(4590), + [anon_sym_c_long] = ACTIONS(4590), + [anon_sym_c_ulong] = ACTIONS(4590), + [anon_sym_c_longlong] = ACTIONS(4590), + [anon_sym_c_ulonglong] = ACTIONS(4590), + [anon_sym_c_float] = ACTIONS(4590), + [anon_sym_c_double] = ACTIONS(4590), + [anon_sym_c_longdouble] = ACTIONS(4590), + [anon_sym_PLUS_EQ] = ACTIONS(4588), + [anon_sym_DASH_EQ] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4588), + [anon_sym_SLASH_EQ] = ACTIONS(4588), + [anon_sym_AMP_EQ] = ACTIONS(4588), + [anon_sym_PIPE_EQ] = ACTIONS(4588), + [anon_sym_xor_EQ] = ACTIONS(4588), + [anon_sym_LT_LT_EQ] = ACTIONS(4588), + [anon_sym_GT_GT_EQ] = ACTIONS(4588), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4588), + [anon_sym_return] = ACTIONS(4590), + [anon_sym_yield] = ACTIONS(4590), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_break] = ACTIONS(4590), + [anon_sym_continue] = ACTIONS(4590), + [anon_sym_defer] = ACTIONS(4590), + [anon_sym_errdefer] = ACTIONS(4590), + [anon_sym_if] = ACTIONS(4590), + [anon_sym_else] = ACTIONS(4590), + [anon_sym_while] = ACTIONS(4590), + [anon_sym_expand] = ACTIONS(4590), + [anon_sym_for] = ACTIONS(4590), + [anon_sym_match] = ACTIONS(4590), + [anon_sym_DOT_DOT] = ACTIONS(4590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4588), + [anon_sym_orelse] = ACTIONS(4590), + [anon_sym_or] = ACTIONS(4590), + [anon_sym_and] = ACTIONS(4590), + [anon_sym_EQ_EQ] = ACTIONS(4588), + [anon_sym_BANG_EQ] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_LT_EQ] = ACTIONS(4588), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_GT_EQ] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_xor] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4590), + [anon_sym_catch] = ACTIONS(4590), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_try] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4588), + [anon_sym_true] = ACTIONS(4590), + [anon_sym_false] = ACTIONS(4590), + [anon_sym_null] = ACTIONS(4590), + [anon_sym_unreachable] = ACTIONS(4590), + [anon_sym_undefined] = ACTIONS(4590), + [sym_sink] = ACTIONS(4590), + [sym_integer] = ACTIONS(4590), + [sym_float] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym_multiline_string] = ACTIONS(4588), + [sym_character] = ACTIONS(4588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4588), + }, + [STATE(2186)] = { + [ts_builtin_sym_end] = ACTIONS(4592), + [sym_identifier] = ACTIONS(4594), + [anon_sym_import] = ACTIONS(4594), + [anon_sym_test] = ACTIONS(4594), + [anon_sym_hide] = ACTIONS(4594), + [anon_sym_func] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_EQ] = ACTIONS(4594), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_RBRACE] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PIPE] = ACTIONS(4594), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_RBRACK] = ACTIONS(4592), + [anon_sym_void] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_type] = ACTIONS(4594), + [anon_sym_anyopaque] = ACTIONS(4594), + [anon_sym_bool] = ACTIONS(4594), + [anon_sym_int] = ACTIONS(4594), + [anon_sym_uint] = ACTIONS(4594), + [anon_sym_float] = ACTIONS(4594), + [anon_sym_range] = ACTIONS(4594), + [anon_sym_i8] = ACTIONS(4594), + [anon_sym_i16] = ACTIONS(4594), + [anon_sym_i32] = ACTIONS(4594), + [anon_sym_i64] = ACTIONS(4594), + [anon_sym_u8] = ACTIONS(4594), + [anon_sym_u16] = ACTIONS(4594), + [anon_sym_u32] = ACTIONS(4594), + [anon_sym_u64] = ACTIONS(4594), + [anon_sym_isize] = ACTIONS(4594), + [anon_sym_usize] = ACTIONS(4594), + [anon_sym_f32] = ACTIONS(4594), + [anon_sym_f64] = ACTIONS(4594), + [anon_sym_c_char] = ACTIONS(4594), + [anon_sym_c_schar] = ACTIONS(4594), + [anon_sym_c_uchar] = ACTIONS(4594), + [anon_sym_c_short] = ACTIONS(4594), + [anon_sym_c_ushort] = ACTIONS(4594), + [anon_sym_c_int] = ACTIONS(4594), + [anon_sym_c_uint] = ACTIONS(4594), + [anon_sym_c_long] = ACTIONS(4594), + [anon_sym_c_ulong] = ACTIONS(4594), + [anon_sym_c_longlong] = ACTIONS(4594), + [anon_sym_c_ulonglong] = ACTIONS(4594), + [anon_sym_c_float] = ACTIONS(4594), + [anon_sym_c_double] = ACTIONS(4594), + [anon_sym_c_longdouble] = ACTIONS(4594), + [anon_sym_PLUS_EQ] = ACTIONS(4592), + [anon_sym_DASH_EQ] = ACTIONS(4592), + [anon_sym_STAR_EQ] = ACTIONS(4592), + [anon_sym_SLASH_EQ] = ACTIONS(4592), + [anon_sym_AMP_EQ] = ACTIONS(4592), + [anon_sym_PIPE_EQ] = ACTIONS(4592), + [anon_sym_xor_EQ] = ACTIONS(4592), + [anon_sym_LT_LT_EQ] = ACTIONS(4592), + [anon_sym_GT_GT_EQ] = ACTIONS(4592), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4592), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_continue] = ACTIONS(4594), + [anon_sym_defer] = ACTIONS(4594), + [anon_sym_errdefer] = ACTIONS(4594), + [anon_sym_if] = ACTIONS(4594), + [anon_sym_else] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_expand] = ACTIONS(4594), + [anon_sym_for] = ACTIONS(4594), + [anon_sym_match] = ACTIONS(4594), + [anon_sym_DOT_DOT] = ACTIONS(4594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4592), + [anon_sym_orelse] = ACTIONS(4594), + [anon_sym_or] = ACTIONS(4594), + [anon_sym_and] = ACTIONS(4594), + [anon_sym_EQ_EQ] = ACTIONS(4592), + [anon_sym_BANG_EQ] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_LT_EQ] = ACTIONS(4592), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_xor] = ACTIONS(4594), + [anon_sym_LT_LT] = ACTIONS(4594), + [anon_sym_GT_GT] = ACTIONS(4594), + [anon_sym_LT_LT_PIPE] = ACTIONS(4594), + [anon_sym_PLUS] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_catch] = ACTIONS(4594), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_try] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_true] = ACTIONS(4594), + [anon_sym_false] = ACTIONS(4594), + [anon_sym_null] = ACTIONS(4594), + [anon_sym_unreachable] = ACTIONS(4594), + [anon_sym_undefined] = ACTIONS(4594), + [sym_sink] = ACTIONS(4594), + [sym_integer] = ACTIONS(4594), + [sym_float] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [sym_multiline_string] = ACTIONS(4592), + [sym_character] = ACTIONS(4592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4592), + }, + [STATE(2187)] = { + [ts_builtin_sym_end] = ACTIONS(4596), + [sym_identifier] = ACTIONS(4598), + [anon_sym_import] = ACTIONS(4598), + [anon_sym_test] = ACTIONS(4598), + [anon_sym_hide] = ACTIONS(4598), + [anon_sym_func] = ACTIONS(4598), + [anon_sym_BANG] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4598), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4598), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_RBRACK] = ACTIONS(4596), + [anon_sym_void] = ACTIONS(4598), + [anon_sym_noreturn] = ACTIONS(4598), + [anon_sym_type] = ACTIONS(4598), + [anon_sym_anyopaque] = ACTIONS(4598), + [anon_sym_bool] = ACTIONS(4598), + [anon_sym_int] = ACTIONS(4598), + [anon_sym_uint] = ACTIONS(4598), + [anon_sym_float] = ACTIONS(4598), + [anon_sym_range] = ACTIONS(4598), + [anon_sym_i8] = ACTIONS(4598), + [anon_sym_i16] = ACTIONS(4598), + [anon_sym_i32] = ACTIONS(4598), + [anon_sym_i64] = ACTIONS(4598), + [anon_sym_u8] = ACTIONS(4598), + [anon_sym_u16] = ACTIONS(4598), + [anon_sym_u32] = ACTIONS(4598), + [anon_sym_u64] = ACTIONS(4598), + [anon_sym_isize] = ACTIONS(4598), + [anon_sym_usize] = ACTIONS(4598), + [anon_sym_f32] = ACTIONS(4598), + [anon_sym_f64] = ACTIONS(4598), + [anon_sym_c_char] = ACTIONS(4598), + [anon_sym_c_schar] = ACTIONS(4598), + [anon_sym_c_uchar] = ACTIONS(4598), + [anon_sym_c_short] = ACTIONS(4598), + [anon_sym_c_ushort] = ACTIONS(4598), + [anon_sym_c_int] = ACTIONS(4598), + [anon_sym_c_uint] = ACTIONS(4598), + [anon_sym_c_long] = ACTIONS(4598), + [anon_sym_c_ulong] = ACTIONS(4598), + [anon_sym_c_longlong] = ACTIONS(4598), + [anon_sym_c_ulonglong] = ACTIONS(4598), + [anon_sym_c_float] = ACTIONS(4598), + [anon_sym_c_double] = ACTIONS(4598), + [anon_sym_c_longdouble] = ACTIONS(4598), + [anon_sym_PLUS_EQ] = ACTIONS(4596), + [anon_sym_DASH_EQ] = ACTIONS(4596), + [anon_sym_STAR_EQ] = ACTIONS(4596), + [anon_sym_SLASH_EQ] = ACTIONS(4596), + [anon_sym_AMP_EQ] = ACTIONS(4596), + [anon_sym_PIPE_EQ] = ACTIONS(4596), + [anon_sym_xor_EQ] = ACTIONS(4596), + [anon_sym_LT_LT_EQ] = ACTIONS(4596), + [anon_sym_GT_GT_EQ] = ACTIONS(4596), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4596), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_yield] = ACTIONS(4598), + [anon_sym_COLON] = ACTIONS(4596), + [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_else] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_expand] = ACTIONS(4598), + [anon_sym_for] = ACTIONS(4598), + [anon_sym_match] = ACTIONS(4598), + [anon_sym_DOT_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4596), + [anon_sym_orelse] = ACTIONS(4598), + [anon_sym_or] = ACTIONS(4598), + [anon_sym_and] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_GT_EQ] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_xor] = ACTIONS(4598), + [anon_sym_LT_LT] = ACTIONS(4598), + [anon_sym_GT_GT] = ACTIONS(4598), + [anon_sym_LT_LT_PIPE] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4598), + [anon_sym_catch] = ACTIONS(4598), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_try] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_true] = ACTIONS(4598), + [anon_sym_false] = ACTIONS(4598), + [anon_sym_null] = ACTIONS(4598), + [anon_sym_unreachable] = ACTIONS(4598), + [anon_sym_undefined] = ACTIONS(4598), + [sym_sink] = ACTIONS(4598), + [sym_integer] = ACTIONS(4598), + [sym_float] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [sym_multiline_string] = ACTIONS(4596), + [sym_character] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4596), + }, + [STATE(2188)] = { + [ts_builtin_sym_end] = ACTIONS(4600), + [sym_identifier] = ACTIONS(4602), + [anon_sym_import] = ACTIONS(4602), + [anon_sym_test] = ACTIONS(4602), + [anon_sym_hide] = ACTIONS(4602), + [anon_sym_func] = ACTIONS(4602), + [anon_sym_BANG] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_struct] = ACTIONS(4602), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_RBRACK] = ACTIONS(4600), + [anon_sym_void] = ACTIONS(4602), + [anon_sym_noreturn] = ACTIONS(4602), + [anon_sym_type] = ACTIONS(4602), + [anon_sym_anyopaque] = ACTIONS(4602), + [anon_sym_bool] = ACTIONS(4602), + [anon_sym_int] = ACTIONS(4602), + [anon_sym_uint] = ACTIONS(4602), + [anon_sym_float] = ACTIONS(4602), + [anon_sym_range] = ACTIONS(4602), + [anon_sym_i8] = ACTIONS(4602), + [anon_sym_i16] = ACTIONS(4602), + [anon_sym_i32] = ACTIONS(4602), + [anon_sym_i64] = ACTIONS(4602), + [anon_sym_u8] = ACTIONS(4602), + [anon_sym_u16] = ACTIONS(4602), + [anon_sym_u32] = ACTIONS(4602), + [anon_sym_u64] = ACTIONS(4602), + [anon_sym_isize] = ACTIONS(4602), + [anon_sym_usize] = ACTIONS(4602), + [anon_sym_f32] = ACTIONS(4602), + [anon_sym_f64] = ACTIONS(4602), + [anon_sym_c_char] = ACTIONS(4602), + [anon_sym_c_schar] = ACTIONS(4602), + [anon_sym_c_uchar] = ACTIONS(4602), + [anon_sym_c_short] = ACTIONS(4602), + [anon_sym_c_ushort] = ACTIONS(4602), + [anon_sym_c_int] = ACTIONS(4602), + [anon_sym_c_uint] = ACTIONS(4602), + [anon_sym_c_long] = ACTIONS(4602), + [anon_sym_c_ulong] = ACTIONS(4602), + [anon_sym_c_longlong] = ACTIONS(4602), + [anon_sym_c_ulonglong] = ACTIONS(4602), + [anon_sym_c_float] = ACTIONS(4602), + [anon_sym_c_double] = ACTIONS(4602), + [anon_sym_c_longdouble] = ACTIONS(4602), + [anon_sym_PLUS_EQ] = ACTIONS(4600), + [anon_sym_DASH_EQ] = ACTIONS(4600), + [anon_sym_STAR_EQ] = ACTIONS(4600), + [anon_sym_SLASH_EQ] = ACTIONS(4600), + [anon_sym_AMP_EQ] = ACTIONS(4600), + [anon_sym_PIPE_EQ] = ACTIONS(4600), + [anon_sym_xor_EQ] = ACTIONS(4600), + [anon_sym_LT_LT_EQ] = ACTIONS(4600), + [anon_sym_GT_GT_EQ] = ACTIONS(4600), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4600), + [anon_sym_return] = ACTIONS(4602), + [anon_sym_yield] = ACTIONS(4602), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_break] = ACTIONS(4602), + [anon_sym_continue] = ACTIONS(4602), + [anon_sym_defer] = ACTIONS(4602), + [anon_sym_errdefer] = ACTIONS(4602), + [anon_sym_if] = ACTIONS(4602), + [anon_sym_else] = ACTIONS(4602), + [anon_sym_while] = ACTIONS(4602), + [anon_sym_expand] = ACTIONS(4602), + [anon_sym_for] = ACTIONS(4602), + [anon_sym_match] = ACTIONS(4602), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4600), + [anon_sym_orelse] = ACTIONS(4602), + [anon_sym_or] = ACTIONS(4602), + [anon_sym_and] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4600), + [anon_sym_BANG_EQ] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_xor] = ACTIONS(4602), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4602), + [anon_sym_LT_LT_PIPE] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_catch] = ACTIONS(4602), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_try] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4600), + [anon_sym_true] = ACTIONS(4602), + [anon_sym_false] = ACTIONS(4602), + [anon_sym_null] = ACTIONS(4602), + [anon_sym_unreachable] = ACTIONS(4602), + [anon_sym_undefined] = ACTIONS(4602), + [sym_sink] = ACTIONS(4602), + [sym_integer] = ACTIONS(4602), + [sym_float] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [sym_multiline_string] = ACTIONS(4600), + [sym_character] = ACTIONS(4600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4600), + }, + [STATE(2189)] = { + [ts_builtin_sym_end] = ACTIONS(4604), + [sym_identifier] = ACTIONS(4606), + [anon_sym_import] = ACTIONS(4606), + [anon_sym_test] = ACTIONS(4606), + [anon_sym_hide] = ACTIONS(4606), + [anon_sym_func] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_struct] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4604), + [anon_sym_RPAREN] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_COMMA] = ACTIONS(4604), + [anon_sym_RBRACE] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4604), + [anon_sym_SEMI] = ACTIONS(4604), + [anon_sym_RBRACK] = ACTIONS(4604), + [anon_sym_void] = ACTIONS(4606), + [anon_sym_noreturn] = ACTIONS(4606), + [anon_sym_type] = ACTIONS(4606), + [anon_sym_anyopaque] = ACTIONS(4606), + [anon_sym_bool] = ACTIONS(4606), + [anon_sym_int] = ACTIONS(4606), + [anon_sym_uint] = ACTIONS(4606), + [anon_sym_float] = ACTIONS(4606), + [anon_sym_range] = ACTIONS(4606), + [anon_sym_i8] = ACTIONS(4606), + [anon_sym_i16] = ACTIONS(4606), + [anon_sym_i32] = ACTIONS(4606), + [anon_sym_i64] = ACTIONS(4606), + [anon_sym_u8] = ACTIONS(4606), + [anon_sym_u16] = ACTIONS(4606), + [anon_sym_u32] = ACTIONS(4606), + [anon_sym_u64] = ACTIONS(4606), + [anon_sym_isize] = ACTIONS(4606), + [anon_sym_usize] = ACTIONS(4606), + [anon_sym_f32] = ACTIONS(4606), + [anon_sym_f64] = ACTIONS(4606), + [anon_sym_c_char] = ACTIONS(4606), + [anon_sym_c_schar] = ACTIONS(4606), + [anon_sym_c_uchar] = ACTIONS(4606), + [anon_sym_c_short] = ACTIONS(4606), + [anon_sym_c_ushort] = ACTIONS(4606), + [anon_sym_c_int] = ACTIONS(4606), + [anon_sym_c_uint] = ACTIONS(4606), + [anon_sym_c_long] = ACTIONS(4606), + [anon_sym_c_ulong] = ACTIONS(4606), + [anon_sym_c_longlong] = ACTIONS(4606), + [anon_sym_c_ulonglong] = ACTIONS(4606), + [anon_sym_c_float] = ACTIONS(4606), + [anon_sym_c_double] = ACTIONS(4606), + [anon_sym_c_longdouble] = ACTIONS(4606), + [anon_sym_PLUS_EQ] = ACTIONS(4604), + [anon_sym_DASH_EQ] = ACTIONS(4604), + [anon_sym_STAR_EQ] = ACTIONS(4604), + [anon_sym_SLASH_EQ] = ACTIONS(4604), + [anon_sym_AMP_EQ] = ACTIONS(4604), + [anon_sym_PIPE_EQ] = ACTIONS(4604), + [anon_sym_xor_EQ] = ACTIONS(4604), + [anon_sym_LT_LT_EQ] = ACTIONS(4604), + [anon_sym_GT_GT_EQ] = ACTIONS(4604), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4604), + [anon_sym_return] = ACTIONS(4606), + [anon_sym_yield] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4604), + [anon_sym_break] = ACTIONS(4606), + [anon_sym_continue] = ACTIONS(4606), + [anon_sym_defer] = ACTIONS(4606), + [anon_sym_errdefer] = ACTIONS(4606), + [anon_sym_if] = ACTIONS(4606), + [anon_sym_else] = ACTIONS(4606), + [anon_sym_while] = ACTIONS(4606), + [anon_sym_expand] = ACTIONS(4606), + [anon_sym_for] = ACTIONS(4606), + [anon_sym_match] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4604), + [anon_sym_orelse] = ACTIONS(4606), + [anon_sym_or] = ACTIONS(4606), + [anon_sym_and] = ACTIONS(4606), + [anon_sym_EQ_EQ] = ACTIONS(4604), + [anon_sym_BANG_EQ] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4606), + [anon_sym_LT_EQ] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_GT_EQ] = ACTIONS(4604), + [anon_sym_AMP] = ACTIONS(4606), + [anon_sym_xor] = ACTIONS(4606), + [anon_sym_LT_LT] = ACTIONS(4606), + [anon_sym_GT_GT] = ACTIONS(4606), + [anon_sym_LT_LT_PIPE] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_catch] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4604), + [anon_sym_try] = ACTIONS(4606), + [anon_sym_DOT] = ACTIONS(4606), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym_true] = ACTIONS(4606), + [anon_sym_false] = ACTIONS(4606), + [anon_sym_null] = ACTIONS(4606), + [anon_sym_unreachable] = ACTIONS(4606), + [anon_sym_undefined] = ACTIONS(4606), + [sym_sink] = ACTIONS(4606), + [sym_integer] = ACTIONS(4606), + [sym_float] = ACTIONS(4604), + [anon_sym_DQUOTE] = ACTIONS(4604), + [sym_multiline_string] = ACTIONS(4604), + [sym_character] = ACTIONS(4604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4604), + }, + [STATE(2190)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9610), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8783), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(317), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(321), + [anon_sym_yield] = ACTIONS(323), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(329), + [anon_sym_errdefer] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2191)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2192), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4608), + }, + [STATE(2192)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2193)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2196), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4610), + }, + [STATE(2194)] = { + [ts_builtin_sym_end] = ACTIONS(4612), + [sym_identifier] = ACTIONS(4614), + [anon_sym_import] = ACTIONS(4614), + [anon_sym_test] = ACTIONS(4614), + [anon_sym_hide] = ACTIONS(4614), + [anon_sym_func] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_EQ] = ACTIONS(4614), + [anon_sym_struct] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [anon_sym_COMMA] = ACTIONS(4612), + [anon_sym_RBRACE] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_QMARK] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_SEMI] = ACTIONS(4612), + [anon_sym_RBRACK] = ACTIONS(4612), + [anon_sym_void] = ACTIONS(4614), + [anon_sym_noreturn] = ACTIONS(4614), + [anon_sym_type] = ACTIONS(4614), + [anon_sym_anyopaque] = ACTIONS(4614), + [anon_sym_bool] = ACTIONS(4614), + [anon_sym_int] = ACTIONS(4614), + [anon_sym_uint] = ACTIONS(4614), + [anon_sym_float] = ACTIONS(4614), + [anon_sym_range] = ACTIONS(4614), + [anon_sym_i8] = ACTIONS(4614), + [anon_sym_i16] = ACTIONS(4614), + [anon_sym_i32] = ACTIONS(4614), + [anon_sym_i64] = ACTIONS(4614), + [anon_sym_u8] = ACTIONS(4614), + [anon_sym_u16] = ACTIONS(4614), + [anon_sym_u32] = ACTIONS(4614), + [anon_sym_u64] = ACTIONS(4614), + [anon_sym_isize] = ACTIONS(4614), + [anon_sym_usize] = ACTIONS(4614), + [anon_sym_f32] = ACTIONS(4614), + [anon_sym_f64] = ACTIONS(4614), + [anon_sym_c_char] = ACTIONS(4614), + [anon_sym_c_schar] = ACTIONS(4614), + [anon_sym_c_uchar] = ACTIONS(4614), + [anon_sym_c_short] = ACTIONS(4614), + [anon_sym_c_ushort] = ACTIONS(4614), + [anon_sym_c_int] = ACTIONS(4614), + [anon_sym_c_uint] = ACTIONS(4614), + [anon_sym_c_long] = ACTIONS(4614), + [anon_sym_c_ulong] = ACTIONS(4614), + [anon_sym_c_longlong] = ACTIONS(4614), + [anon_sym_c_ulonglong] = ACTIONS(4614), + [anon_sym_c_float] = ACTIONS(4614), + [anon_sym_c_double] = ACTIONS(4614), + [anon_sym_c_longdouble] = ACTIONS(4614), + [anon_sym_PLUS_EQ] = ACTIONS(4612), + [anon_sym_DASH_EQ] = ACTIONS(4612), + [anon_sym_STAR_EQ] = ACTIONS(4612), + [anon_sym_SLASH_EQ] = ACTIONS(4612), + [anon_sym_AMP_EQ] = ACTIONS(4612), + [anon_sym_PIPE_EQ] = ACTIONS(4612), + [anon_sym_xor_EQ] = ACTIONS(4612), + [anon_sym_LT_LT_EQ] = ACTIONS(4612), + [anon_sym_GT_GT_EQ] = ACTIONS(4612), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4612), + [anon_sym_return] = ACTIONS(4614), + [anon_sym_yield] = ACTIONS(4614), + [anon_sym_COLON] = ACTIONS(4612), + [anon_sym_break] = ACTIONS(4614), + [anon_sym_continue] = ACTIONS(4614), + [anon_sym_defer] = ACTIONS(4614), + [anon_sym_errdefer] = ACTIONS(4614), + [anon_sym_if] = ACTIONS(4614), + [anon_sym_else] = ACTIONS(4614), + [anon_sym_while] = ACTIONS(4614), + [anon_sym_expand] = ACTIONS(4614), + [anon_sym_for] = ACTIONS(4614), + [anon_sym_match] = ACTIONS(4614), + [anon_sym_DOT_DOT] = ACTIONS(4614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4612), + [anon_sym_orelse] = ACTIONS(4614), + [anon_sym_or] = ACTIONS(4614), + [anon_sym_and] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4612), + [anon_sym_BANG_EQ] = ACTIONS(4612), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_LT_EQ] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4612), + [anon_sym_AMP] = ACTIONS(4614), + [anon_sym_xor] = ACTIONS(4614), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(4614), + [anon_sym_LT_LT_PIPE] = ACTIONS(4614), + [anon_sym_PLUS] = ACTIONS(4614), + [anon_sym_SLASH] = ACTIONS(4614), + [anon_sym_catch] = ACTIONS(4614), + [anon_sym_TILDE] = ACTIONS(4612), + [anon_sym_try] = ACTIONS(4614), + [anon_sym_DOT] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym_true] = ACTIONS(4614), + [anon_sym_false] = ACTIONS(4614), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_unreachable] = ACTIONS(4614), + [anon_sym_undefined] = ACTIONS(4614), + [sym_sink] = ACTIONS(4614), + [sym_integer] = ACTIONS(4614), + [sym_float] = ACTIONS(4612), + [anon_sym_DQUOTE] = ACTIONS(4612), + [sym_multiline_string] = ACTIONS(4612), + [sym_character] = ACTIONS(4612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4612), + }, + [STATE(2195)] = { + [ts_builtin_sym_end] = ACTIONS(4616), + [sym_identifier] = ACTIONS(4618), + [anon_sym_import] = ACTIONS(4618), + [anon_sym_test] = ACTIONS(4618), + [anon_sym_hide] = ACTIONS(4618), + [anon_sym_func] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_struct] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4616), + [anon_sym_RPAREN] = ACTIONS(4616), + [anon_sym_LBRACE] = ACTIONS(4616), + [anon_sym_COMMA] = ACTIONS(4616), + [anon_sym_RBRACE] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_DOLLAR] = ACTIONS(4616), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_QMARK] = ACTIONS(4616), + [anon_sym_STAR] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4616), + [anon_sym_SEMI] = ACTIONS(4616), + [anon_sym_RBRACK] = ACTIONS(4616), + [anon_sym_void] = ACTIONS(4618), + [anon_sym_noreturn] = ACTIONS(4618), + [anon_sym_type] = ACTIONS(4618), + [anon_sym_anyopaque] = ACTIONS(4618), + [anon_sym_bool] = ACTIONS(4618), + [anon_sym_int] = ACTIONS(4618), + [anon_sym_uint] = ACTIONS(4618), + [anon_sym_float] = ACTIONS(4618), + [anon_sym_range] = ACTIONS(4618), + [anon_sym_i8] = ACTIONS(4618), + [anon_sym_i16] = ACTIONS(4618), + [anon_sym_i32] = ACTIONS(4618), + [anon_sym_i64] = ACTIONS(4618), + [anon_sym_u8] = ACTIONS(4618), + [anon_sym_u16] = ACTIONS(4618), + [anon_sym_u32] = ACTIONS(4618), + [anon_sym_u64] = ACTIONS(4618), + [anon_sym_isize] = ACTIONS(4618), + [anon_sym_usize] = ACTIONS(4618), + [anon_sym_f32] = ACTIONS(4618), + [anon_sym_f64] = ACTIONS(4618), + [anon_sym_c_char] = ACTIONS(4618), + [anon_sym_c_schar] = ACTIONS(4618), + [anon_sym_c_uchar] = ACTIONS(4618), + [anon_sym_c_short] = ACTIONS(4618), + [anon_sym_c_ushort] = ACTIONS(4618), + [anon_sym_c_int] = ACTIONS(4618), + [anon_sym_c_uint] = ACTIONS(4618), + [anon_sym_c_long] = ACTIONS(4618), + [anon_sym_c_ulong] = ACTIONS(4618), + [anon_sym_c_longlong] = ACTIONS(4618), + [anon_sym_c_ulonglong] = ACTIONS(4618), + [anon_sym_c_float] = ACTIONS(4618), + [anon_sym_c_double] = ACTIONS(4618), + [anon_sym_c_longdouble] = ACTIONS(4618), + [anon_sym_PLUS_EQ] = ACTIONS(4616), + [anon_sym_DASH_EQ] = ACTIONS(4616), + [anon_sym_STAR_EQ] = ACTIONS(4616), + [anon_sym_SLASH_EQ] = ACTIONS(4616), + [anon_sym_AMP_EQ] = ACTIONS(4616), + [anon_sym_PIPE_EQ] = ACTIONS(4616), + [anon_sym_xor_EQ] = ACTIONS(4616), + [anon_sym_LT_LT_EQ] = ACTIONS(4616), + [anon_sym_GT_GT_EQ] = ACTIONS(4616), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4616), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_yield] = ACTIONS(4618), + [anon_sym_COLON] = ACTIONS(4616), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_defer] = ACTIONS(4618), + [anon_sym_errdefer] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_while] = ACTIONS(4618), + [anon_sym_expand] = ACTIONS(4618), + [anon_sym_for] = ACTIONS(4618), + [anon_sym_match] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4616), + [anon_sym_orelse] = ACTIONS(4618), + [anon_sym_or] = ACTIONS(4618), + [anon_sym_and] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4616), + [anon_sym_BANG_EQ] = ACTIONS(4616), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_LT_EQ] = ACTIONS(4616), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_EQ] = ACTIONS(4616), + [anon_sym_AMP] = ACTIONS(4618), + [anon_sym_xor] = ACTIONS(4618), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(4618), + [anon_sym_LT_LT_PIPE] = ACTIONS(4618), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_catch] = ACTIONS(4618), + [anon_sym_TILDE] = ACTIONS(4616), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_CARET] = ACTIONS(4616), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_unreachable] = ACTIONS(4618), + [anon_sym_undefined] = ACTIONS(4618), + [sym_sink] = ACTIONS(4618), + [sym_integer] = ACTIONS(4618), + [sym_float] = ACTIONS(4616), + [anon_sym_DQUOTE] = ACTIONS(4616), + [sym_multiline_string] = ACTIONS(4616), + [sym_character] = ACTIONS(4616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4616), + }, + [STATE(2196)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2197)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2200), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4620), + }, + [STATE(2198)] = { + [ts_builtin_sym_end] = ACTIONS(4622), + [sym_identifier] = ACTIONS(4624), + [anon_sym_import] = ACTIONS(4624), + [anon_sym_test] = ACTIONS(4624), + [anon_sym_hide] = ACTIONS(4624), + [anon_sym_func] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_EQ] = ACTIONS(4624), + [anon_sym_struct] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_RBRACE] = ACTIONS(4622), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_DOLLAR] = ACTIONS(4622), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_QMARK] = ACTIONS(4622), + [anon_sym_STAR] = ACTIONS(4624), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_SEMI] = ACTIONS(4622), + [anon_sym_RBRACK] = ACTIONS(4622), + [anon_sym_void] = ACTIONS(4624), + [anon_sym_noreturn] = ACTIONS(4624), + [anon_sym_type] = ACTIONS(4624), + [anon_sym_anyopaque] = ACTIONS(4624), + [anon_sym_bool] = ACTIONS(4624), + [anon_sym_int] = ACTIONS(4624), + [anon_sym_uint] = ACTIONS(4624), + [anon_sym_float] = ACTIONS(4624), + [anon_sym_range] = ACTIONS(4624), + [anon_sym_i8] = ACTIONS(4624), + [anon_sym_i16] = ACTIONS(4624), + [anon_sym_i32] = ACTIONS(4624), + [anon_sym_i64] = ACTIONS(4624), + [anon_sym_u8] = ACTIONS(4624), + [anon_sym_u16] = ACTIONS(4624), + [anon_sym_u32] = ACTIONS(4624), + [anon_sym_u64] = ACTIONS(4624), + [anon_sym_isize] = ACTIONS(4624), + [anon_sym_usize] = ACTIONS(4624), + [anon_sym_f32] = ACTIONS(4624), + [anon_sym_f64] = ACTIONS(4624), + [anon_sym_c_char] = ACTIONS(4624), + [anon_sym_c_schar] = ACTIONS(4624), + [anon_sym_c_uchar] = ACTIONS(4624), + [anon_sym_c_short] = ACTIONS(4624), + [anon_sym_c_ushort] = ACTIONS(4624), + [anon_sym_c_int] = ACTIONS(4624), + [anon_sym_c_uint] = ACTIONS(4624), + [anon_sym_c_long] = ACTIONS(4624), + [anon_sym_c_ulong] = ACTIONS(4624), + [anon_sym_c_longlong] = ACTIONS(4624), + [anon_sym_c_ulonglong] = ACTIONS(4624), + [anon_sym_c_float] = ACTIONS(4624), + [anon_sym_c_double] = ACTIONS(4624), + [anon_sym_c_longdouble] = ACTIONS(4624), + [anon_sym_PLUS_EQ] = ACTIONS(4622), + [anon_sym_DASH_EQ] = ACTIONS(4622), + [anon_sym_STAR_EQ] = ACTIONS(4622), + [anon_sym_SLASH_EQ] = ACTIONS(4622), + [anon_sym_AMP_EQ] = ACTIONS(4622), + [anon_sym_PIPE_EQ] = ACTIONS(4622), + [anon_sym_xor_EQ] = ACTIONS(4622), + [anon_sym_LT_LT_EQ] = ACTIONS(4622), + [anon_sym_GT_GT_EQ] = ACTIONS(4622), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4622), + [anon_sym_return] = ACTIONS(4624), + [anon_sym_yield] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4622), + [anon_sym_break] = ACTIONS(4624), + [anon_sym_continue] = ACTIONS(4624), + [anon_sym_defer] = ACTIONS(4624), + [anon_sym_errdefer] = ACTIONS(4624), + [anon_sym_if] = ACTIONS(4624), + [anon_sym_else] = ACTIONS(4624), + [anon_sym_while] = ACTIONS(4624), + [anon_sym_expand] = ACTIONS(4624), + [anon_sym_for] = ACTIONS(4624), + [anon_sym_match] = ACTIONS(4624), + [anon_sym_DOT_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4622), + [anon_sym_orelse] = ACTIONS(4624), + [anon_sym_or] = ACTIONS(4624), + [anon_sym_and] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_BANG_EQ] = ACTIONS(4622), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_LT_EQ] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_EQ] = ACTIONS(4622), + [anon_sym_AMP] = ACTIONS(4624), + [anon_sym_xor] = ACTIONS(4624), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(4624), + [anon_sym_LT_LT_PIPE] = ACTIONS(4624), + [anon_sym_PLUS] = ACTIONS(4624), + [anon_sym_SLASH] = ACTIONS(4624), + [anon_sym_catch] = ACTIONS(4624), + [anon_sym_TILDE] = ACTIONS(4622), + [anon_sym_try] = ACTIONS(4624), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4622), + [anon_sym_true] = ACTIONS(4624), + [anon_sym_false] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(4624), + [anon_sym_unreachable] = ACTIONS(4624), + [anon_sym_undefined] = ACTIONS(4624), + [sym_sink] = ACTIONS(4624), + [sym_integer] = ACTIONS(4624), + [sym_float] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(4622), + [sym_multiline_string] = ACTIONS(4622), + [sym_character] = ACTIONS(4622), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4622), + }, + [STATE(2199)] = { + [ts_builtin_sym_end] = ACTIONS(4626), + [sym_identifier] = ACTIONS(4628), + [anon_sym_import] = ACTIONS(4628), + [anon_sym_test] = ACTIONS(4628), + [anon_sym_hide] = ACTIONS(4628), + [anon_sym_func] = ACTIONS(4628), + [anon_sym_BANG] = ACTIONS(4628), + [anon_sym_EQ] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_RPAREN] = ACTIONS(4626), + [anon_sym_LBRACE] = ACTIONS(4626), + [anon_sym_COMMA] = ACTIONS(4626), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_DASH] = ACTIONS(4628), + [anon_sym_DOLLAR] = ACTIONS(4626), + [anon_sym_PIPE] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4626), + [anon_sym_SEMI] = ACTIONS(4626), + [anon_sym_RBRACK] = ACTIONS(4626), + [anon_sym_void] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym_type] = ACTIONS(4628), + [anon_sym_anyopaque] = ACTIONS(4628), + [anon_sym_bool] = ACTIONS(4628), + [anon_sym_int] = ACTIONS(4628), + [anon_sym_uint] = ACTIONS(4628), + [anon_sym_float] = ACTIONS(4628), + [anon_sym_range] = ACTIONS(4628), + [anon_sym_i8] = ACTIONS(4628), + [anon_sym_i16] = ACTIONS(4628), + [anon_sym_i32] = ACTIONS(4628), + [anon_sym_i64] = ACTIONS(4628), + [anon_sym_u8] = ACTIONS(4628), + [anon_sym_u16] = ACTIONS(4628), + [anon_sym_u32] = ACTIONS(4628), + [anon_sym_u64] = ACTIONS(4628), + [anon_sym_isize] = ACTIONS(4628), + [anon_sym_usize] = ACTIONS(4628), + [anon_sym_f32] = ACTIONS(4628), + [anon_sym_f64] = ACTIONS(4628), + [anon_sym_c_char] = ACTIONS(4628), + [anon_sym_c_schar] = ACTIONS(4628), + [anon_sym_c_uchar] = ACTIONS(4628), + [anon_sym_c_short] = ACTIONS(4628), + [anon_sym_c_ushort] = ACTIONS(4628), + [anon_sym_c_int] = ACTIONS(4628), + [anon_sym_c_uint] = ACTIONS(4628), + [anon_sym_c_long] = ACTIONS(4628), + [anon_sym_c_ulong] = ACTIONS(4628), + [anon_sym_c_longlong] = ACTIONS(4628), + [anon_sym_c_ulonglong] = ACTIONS(4628), + [anon_sym_c_float] = ACTIONS(4628), + [anon_sym_c_double] = ACTIONS(4628), + [anon_sym_c_longdouble] = ACTIONS(4628), + [anon_sym_PLUS_EQ] = ACTIONS(4626), + [anon_sym_DASH_EQ] = ACTIONS(4626), + [anon_sym_STAR_EQ] = ACTIONS(4626), + [anon_sym_SLASH_EQ] = ACTIONS(4626), + [anon_sym_AMP_EQ] = ACTIONS(4626), + [anon_sym_PIPE_EQ] = ACTIONS(4626), + [anon_sym_xor_EQ] = ACTIONS(4626), + [anon_sym_LT_LT_EQ] = ACTIONS(4626), + [anon_sym_GT_GT_EQ] = ACTIONS(4626), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4626), + [anon_sym_return] = ACTIONS(4628), + [anon_sym_yield] = ACTIONS(4628), + [anon_sym_COLON] = ACTIONS(4626), + [anon_sym_break] = ACTIONS(4628), + [anon_sym_continue] = ACTIONS(4628), + [anon_sym_defer] = ACTIONS(4628), + [anon_sym_errdefer] = ACTIONS(4628), + [anon_sym_if] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(4628), + [anon_sym_expand] = ACTIONS(4628), + [anon_sym_for] = ACTIONS(4628), + [anon_sym_match] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4626), + [anon_sym_orelse] = ACTIONS(4628), + [anon_sym_or] = ACTIONS(4628), + [anon_sym_and] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4628), + [anon_sym_GT_EQ] = ACTIONS(4626), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_xor] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT_PIPE] = ACTIONS(4628), + [anon_sym_PLUS] = ACTIONS(4628), + [anon_sym_SLASH] = ACTIONS(4628), + [anon_sym_catch] = ACTIONS(4628), + [anon_sym_TILDE] = ACTIONS(4626), + [anon_sym_try] = ACTIONS(4628), + [anon_sym_DOT] = ACTIONS(4628), + [anon_sym_CARET] = ACTIONS(4626), + [anon_sym_true] = ACTIONS(4628), + [anon_sym_false] = ACTIONS(4628), + [anon_sym_null] = ACTIONS(4628), + [anon_sym_unreachable] = ACTIONS(4628), + [anon_sym_undefined] = ACTIONS(4628), + [sym_sink] = ACTIONS(4628), + [sym_integer] = ACTIONS(4628), + [sym_float] = ACTIONS(4626), + [anon_sym_DQUOTE] = ACTIONS(4626), + [sym_multiline_string] = ACTIONS(4626), + [sym_character] = ACTIONS(4626), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4626), + }, + [STATE(2200)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8912), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(117), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(151), + [anon_sym_errdefer] = ACTIONS(153), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2201)] = { + [ts_builtin_sym_end] = ACTIONS(4630), + [sym_identifier] = ACTIONS(4632), + [anon_sym_import] = ACTIONS(4632), + [anon_sym_test] = ACTIONS(4632), + [anon_sym_hide] = ACTIONS(4632), + [anon_sym_func] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_COMMA] = ACTIONS(4630), + [anon_sym_RBRACE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_DOLLAR] = ACTIONS(4630), + [anon_sym_PIPE] = ACTIONS(4632), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4630), + [anon_sym_RBRACK] = ACTIONS(4630), + [anon_sym_void] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym_type] = ACTIONS(4632), + [anon_sym_anyopaque] = ACTIONS(4632), + [anon_sym_bool] = ACTIONS(4632), + [anon_sym_int] = ACTIONS(4632), + [anon_sym_uint] = ACTIONS(4632), + [anon_sym_float] = ACTIONS(4632), + [anon_sym_range] = ACTIONS(4632), + [anon_sym_i8] = ACTIONS(4632), + [anon_sym_i16] = ACTIONS(4632), + [anon_sym_i32] = ACTIONS(4632), + [anon_sym_i64] = ACTIONS(4632), + [anon_sym_u8] = ACTIONS(4632), + [anon_sym_u16] = ACTIONS(4632), + [anon_sym_u32] = ACTIONS(4632), + [anon_sym_u64] = ACTIONS(4632), + [anon_sym_isize] = ACTIONS(4632), + [anon_sym_usize] = ACTIONS(4632), + [anon_sym_f32] = ACTIONS(4632), + [anon_sym_f64] = ACTIONS(4632), + [anon_sym_c_char] = ACTIONS(4632), + [anon_sym_c_schar] = ACTIONS(4632), + [anon_sym_c_uchar] = ACTIONS(4632), + [anon_sym_c_short] = ACTIONS(4632), + [anon_sym_c_ushort] = ACTIONS(4632), + [anon_sym_c_int] = ACTIONS(4632), + [anon_sym_c_uint] = ACTIONS(4632), + [anon_sym_c_long] = ACTIONS(4632), + [anon_sym_c_ulong] = ACTIONS(4632), + [anon_sym_c_longlong] = ACTIONS(4632), + [anon_sym_c_ulonglong] = ACTIONS(4632), + [anon_sym_c_float] = ACTIONS(4632), + [anon_sym_c_double] = ACTIONS(4632), + [anon_sym_c_longdouble] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4630), + [anon_sym_DASH_EQ] = ACTIONS(4630), + [anon_sym_STAR_EQ] = ACTIONS(4630), + [anon_sym_SLASH_EQ] = ACTIONS(4630), + [anon_sym_AMP_EQ] = ACTIONS(4630), + [anon_sym_PIPE_EQ] = ACTIONS(4630), + [anon_sym_xor_EQ] = ACTIONS(4630), + [anon_sym_LT_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_GT_EQ] = ACTIONS(4630), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4630), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_yield] = ACTIONS(4632), + [anon_sym_COLON] = ACTIONS(4630), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_defer] = ACTIONS(4632), + [anon_sym_errdefer] = ACTIONS(4632), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_expand] = ACTIONS(4632), + [anon_sym_for] = ACTIONS(4632), + [anon_sym_match] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4630), + [anon_sym_orelse] = ACTIONS(4632), + [anon_sym_or] = ACTIONS(4632), + [anon_sym_and] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_xor] = ACTIONS(4632), + [anon_sym_LT_LT] = ACTIONS(4632), + [anon_sym_GT_GT] = ACTIONS(4632), + [anon_sym_LT_LT_PIPE] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_catch] = ACTIONS(4632), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4632), + [anon_sym_unreachable] = ACTIONS(4632), + [anon_sym_undefined] = ACTIONS(4632), + [sym_sink] = ACTIONS(4632), + [sym_integer] = ACTIONS(4632), + [sym_float] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_multiline_string] = ACTIONS(4630), + [sym_character] = ACTIONS(4630), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4630), + }, + [STATE(2202)] = { + [ts_builtin_sym_end] = ACTIONS(4634), + [sym_identifier] = ACTIONS(4636), + [anon_sym_import] = ACTIONS(4636), + [anon_sym_test] = ACTIONS(4636), + [anon_sym_hide] = ACTIONS(4636), + [anon_sym_func] = ACTIONS(4636), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(4634), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_QMARK] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_RBRACK] = ACTIONS(4634), + [anon_sym_void] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym_type] = ACTIONS(4636), + [anon_sym_anyopaque] = ACTIONS(4636), + [anon_sym_bool] = ACTIONS(4636), + [anon_sym_int] = ACTIONS(4636), + [anon_sym_uint] = ACTIONS(4636), + [anon_sym_float] = ACTIONS(4636), + [anon_sym_range] = ACTIONS(4636), + [anon_sym_i8] = ACTIONS(4636), + [anon_sym_i16] = ACTIONS(4636), + [anon_sym_i32] = ACTIONS(4636), + [anon_sym_i64] = ACTIONS(4636), + [anon_sym_u8] = ACTIONS(4636), + [anon_sym_u16] = ACTIONS(4636), + [anon_sym_u32] = ACTIONS(4636), + [anon_sym_u64] = ACTIONS(4636), + [anon_sym_isize] = ACTIONS(4636), + [anon_sym_usize] = ACTIONS(4636), + [anon_sym_f32] = ACTIONS(4636), + [anon_sym_f64] = ACTIONS(4636), + [anon_sym_c_char] = ACTIONS(4636), + [anon_sym_c_schar] = ACTIONS(4636), + [anon_sym_c_uchar] = ACTIONS(4636), + [anon_sym_c_short] = ACTIONS(4636), + [anon_sym_c_ushort] = ACTIONS(4636), + [anon_sym_c_int] = ACTIONS(4636), + [anon_sym_c_uint] = ACTIONS(4636), + [anon_sym_c_long] = ACTIONS(4636), + [anon_sym_c_ulong] = ACTIONS(4636), + [anon_sym_c_longlong] = ACTIONS(4636), + [anon_sym_c_ulonglong] = ACTIONS(4636), + [anon_sym_c_float] = ACTIONS(4636), + [anon_sym_c_double] = ACTIONS(4636), + [anon_sym_c_longdouble] = ACTIONS(4636), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_AMP_EQ] = ACTIONS(4634), + [anon_sym_PIPE_EQ] = ACTIONS(4634), + [anon_sym_xor_EQ] = ACTIONS(4634), + [anon_sym_LT_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_GT_EQ] = ACTIONS(4634), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4634), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_yield] = ACTIONS(4636), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_defer] = ACTIONS(4636), + [anon_sym_errdefer] = ACTIONS(4636), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_expand] = ACTIONS(4636), + [anon_sym_for] = ACTIONS(4636), + [anon_sym_match] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4634), + [anon_sym_orelse] = ACTIONS(4636), + [anon_sym_or] = ACTIONS(4636), + [anon_sym_and] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_xor] = ACTIONS(4636), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(4636), + [anon_sym_LT_LT_PIPE] = ACTIONS(4636), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_SLASH] = ACTIONS(4636), + [anon_sym_catch] = ACTIONS(4636), + [anon_sym_TILDE] = ACTIONS(4634), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4636), + [anon_sym_false] = ACTIONS(4636), + [anon_sym_null] = ACTIONS(4636), + [anon_sym_unreachable] = ACTIONS(4636), + [anon_sym_undefined] = ACTIONS(4636), + [sym_sink] = ACTIONS(4636), + [sym_integer] = ACTIONS(4636), + [sym_float] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4634), + [sym_multiline_string] = ACTIONS(4634), + [sym_character] = ACTIONS(4634), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4634), + }, + [STATE(2203)] = { + [ts_builtin_sym_end] = ACTIONS(4638), + [sym_identifier] = ACTIONS(4640), + [anon_sym_import] = ACTIONS(4640), + [anon_sym_test] = ACTIONS(4640), + [anon_sym_hide] = ACTIONS(4640), + [anon_sym_func] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_RPAREN] = ACTIONS(4638), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_COMMA] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_DOLLAR] = ACTIONS(4638), + [anon_sym_PIPE] = ACTIONS(4640), + [anon_sym_QMARK] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_SEMI] = ACTIONS(4638), + [anon_sym_RBRACK] = ACTIONS(4638), + [anon_sym_void] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym_type] = ACTIONS(4640), + [anon_sym_anyopaque] = ACTIONS(4640), + [anon_sym_bool] = ACTIONS(4640), + [anon_sym_int] = ACTIONS(4640), + [anon_sym_uint] = ACTIONS(4640), + [anon_sym_float] = ACTIONS(4640), + [anon_sym_range] = ACTIONS(4640), + [anon_sym_i8] = ACTIONS(4640), + [anon_sym_i16] = ACTIONS(4640), + [anon_sym_i32] = ACTIONS(4640), + [anon_sym_i64] = ACTIONS(4640), + [anon_sym_u8] = ACTIONS(4640), + [anon_sym_u16] = ACTIONS(4640), + [anon_sym_u32] = ACTIONS(4640), + [anon_sym_u64] = ACTIONS(4640), + [anon_sym_isize] = ACTIONS(4640), + [anon_sym_usize] = ACTIONS(4640), + [anon_sym_f32] = ACTIONS(4640), + [anon_sym_f64] = ACTIONS(4640), + [anon_sym_c_char] = ACTIONS(4640), + [anon_sym_c_schar] = ACTIONS(4640), + [anon_sym_c_uchar] = ACTIONS(4640), + [anon_sym_c_short] = ACTIONS(4640), + [anon_sym_c_ushort] = ACTIONS(4640), + [anon_sym_c_int] = ACTIONS(4640), + [anon_sym_c_uint] = ACTIONS(4640), + [anon_sym_c_long] = ACTIONS(4640), + [anon_sym_c_ulong] = ACTIONS(4640), + [anon_sym_c_longlong] = ACTIONS(4640), + [anon_sym_c_ulonglong] = ACTIONS(4640), + [anon_sym_c_float] = ACTIONS(4640), + [anon_sym_c_double] = ACTIONS(4640), + [anon_sym_c_longdouble] = ACTIONS(4640), + [anon_sym_PLUS_EQ] = ACTIONS(4638), + [anon_sym_DASH_EQ] = ACTIONS(4638), + [anon_sym_STAR_EQ] = ACTIONS(4638), + [anon_sym_SLASH_EQ] = ACTIONS(4638), + [anon_sym_AMP_EQ] = ACTIONS(4638), + [anon_sym_PIPE_EQ] = ACTIONS(4638), + [anon_sym_xor_EQ] = ACTIONS(4638), + [anon_sym_LT_LT_EQ] = ACTIONS(4638), + [anon_sym_GT_GT_EQ] = ACTIONS(4638), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4638), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_yield] = ACTIONS(4640), + [anon_sym_COLON] = ACTIONS(4638), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_defer] = ACTIONS(4640), + [anon_sym_errdefer] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_expand] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_match] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4638), + [anon_sym_orelse] = ACTIONS(4640), + [anon_sym_or] = ACTIONS(4640), + [anon_sym_and] = ACTIONS(4640), + [anon_sym_EQ_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4640), + [anon_sym_xor] = ACTIONS(4640), + [anon_sym_LT_LT] = ACTIONS(4640), + [anon_sym_GT_GT] = ACTIONS(4640), + [anon_sym_LT_LT_PIPE] = ACTIONS(4640), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_SLASH] = ACTIONS(4640), + [anon_sym_catch] = ACTIONS(4640), + [anon_sym_TILDE] = ACTIONS(4638), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_CARET] = ACTIONS(4638), + [anon_sym_true] = ACTIONS(4640), + [anon_sym_false] = ACTIONS(4640), + [anon_sym_null] = ACTIONS(4640), + [anon_sym_unreachable] = ACTIONS(4640), + [anon_sym_undefined] = ACTIONS(4640), + [sym_sink] = ACTIONS(4640), + [sym_integer] = ACTIONS(4640), + [sym_float] = ACTIONS(4638), + [anon_sym_DQUOTE] = ACTIONS(4638), + [sym_multiline_string] = ACTIONS(4638), + [sym_character] = ACTIONS(4638), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4638), + }, + [STATE(2204)] = { + [ts_builtin_sym_end] = ACTIONS(4642), + [sym_identifier] = ACTIONS(4644), + [anon_sym_import] = ACTIONS(4644), + [anon_sym_test] = ACTIONS(4644), + [anon_sym_hide] = ACTIONS(4644), + [anon_sym_func] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_void] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym_type] = ACTIONS(4644), + [anon_sym_anyopaque] = ACTIONS(4644), + [anon_sym_bool] = ACTIONS(4644), + [anon_sym_int] = ACTIONS(4644), + [anon_sym_uint] = ACTIONS(4644), + [anon_sym_float] = ACTIONS(4644), + [anon_sym_range] = ACTIONS(4644), + [anon_sym_i8] = ACTIONS(4644), + [anon_sym_i16] = ACTIONS(4644), + [anon_sym_i32] = ACTIONS(4644), + [anon_sym_i64] = ACTIONS(4644), + [anon_sym_u8] = ACTIONS(4644), + [anon_sym_u16] = ACTIONS(4644), + [anon_sym_u32] = ACTIONS(4644), + [anon_sym_u64] = ACTIONS(4644), + [anon_sym_isize] = ACTIONS(4644), + [anon_sym_usize] = ACTIONS(4644), + [anon_sym_f32] = ACTIONS(4644), + [anon_sym_f64] = ACTIONS(4644), + [anon_sym_c_char] = ACTIONS(4644), + [anon_sym_c_schar] = ACTIONS(4644), + [anon_sym_c_uchar] = ACTIONS(4644), + [anon_sym_c_short] = ACTIONS(4644), + [anon_sym_c_ushort] = ACTIONS(4644), + [anon_sym_c_int] = ACTIONS(4644), + [anon_sym_c_uint] = ACTIONS(4644), + [anon_sym_c_long] = ACTIONS(4644), + [anon_sym_c_ulong] = ACTIONS(4644), + [anon_sym_c_longlong] = ACTIONS(4644), + [anon_sym_c_ulonglong] = ACTIONS(4644), + [anon_sym_c_float] = ACTIONS(4644), + [anon_sym_c_double] = ACTIONS(4644), + [anon_sym_c_longdouble] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4642), + [anon_sym_DASH_EQ] = ACTIONS(4642), + [anon_sym_STAR_EQ] = ACTIONS(4642), + [anon_sym_SLASH_EQ] = ACTIONS(4642), + [anon_sym_AMP_EQ] = ACTIONS(4642), + [anon_sym_PIPE_EQ] = ACTIONS(4642), + [anon_sym_xor_EQ] = ACTIONS(4642), + [anon_sym_LT_LT_EQ] = ACTIONS(4642), + [anon_sym_GT_GT_EQ] = ACTIONS(4642), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_yield] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_defer] = ACTIONS(4644), + [anon_sym_errdefer] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_expand] = ACTIONS(4644), + [anon_sym_for] = ACTIONS(4644), + [anon_sym_match] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4642), + [anon_sym_orelse] = ACTIONS(4644), + [anon_sym_or] = ACTIONS(4644), + [anon_sym_and] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_xor] = ACTIONS(4644), + [anon_sym_LT_LT] = ACTIONS(4644), + [anon_sym_GT_GT] = ACTIONS(4644), + [anon_sym_LT_LT_PIPE] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_catch] = ACTIONS(4644), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4642), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_unreachable] = ACTIONS(4644), + [anon_sym_undefined] = ACTIONS(4644), + [sym_sink] = ACTIONS(4644), + [sym_integer] = ACTIONS(4644), + [sym_float] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [sym_multiline_string] = ACTIONS(4642), + [sym_character] = ACTIONS(4642), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4642), + }, + [STATE(2205)] = { + [ts_builtin_sym_end] = ACTIONS(4646), + [sym_identifier] = ACTIONS(4648), + [anon_sym_import] = ACTIONS(4648), + [anon_sym_test] = ACTIONS(4648), + [anon_sym_hide] = ACTIONS(4648), + [anon_sym_func] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4646), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_void] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym_type] = ACTIONS(4648), + [anon_sym_anyopaque] = ACTIONS(4648), + [anon_sym_bool] = ACTIONS(4648), + [anon_sym_int] = ACTIONS(4648), + [anon_sym_uint] = ACTIONS(4648), + [anon_sym_float] = ACTIONS(4648), + [anon_sym_range] = ACTIONS(4648), + [anon_sym_i8] = ACTIONS(4648), + [anon_sym_i16] = ACTIONS(4648), + [anon_sym_i32] = ACTIONS(4648), + [anon_sym_i64] = ACTIONS(4648), + [anon_sym_u8] = ACTIONS(4648), + [anon_sym_u16] = ACTIONS(4648), + [anon_sym_u32] = ACTIONS(4648), + [anon_sym_u64] = ACTIONS(4648), + [anon_sym_isize] = ACTIONS(4648), + [anon_sym_usize] = ACTIONS(4648), + [anon_sym_f32] = ACTIONS(4648), + [anon_sym_f64] = ACTIONS(4648), + [anon_sym_c_char] = ACTIONS(4648), + [anon_sym_c_schar] = ACTIONS(4648), + [anon_sym_c_uchar] = ACTIONS(4648), + [anon_sym_c_short] = ACTIONS(4648), + [anon_sym_c_ushort] = ACTIONS(4648), + [anon_sym_c_int] = ACTIONS(4648), + [anon_sym_c_uint] = ACTIONS(4648), + [anon_sym_c_long] = ACTIONS(4648), + [anon_sym_c_ulong] = ACTIONS(4648), + [anon_sym_c_longlong] = ACTIONS(4648), + [anon_sym_c_ulonglong] = ACTIONS(4648), + [anon_sym_c_float] = ACTIONS(4648), + [anon_sym_c_double] = ACTIONS(4648), + [anon_sym_c_longdouble] = ACTIONS(4648), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_AMP_EQ] = ACTIONS(4646), + [anon_sym_PIPE_EQ] = ACTIONS(4646), + [anon_sym_xor_EQ] = ACTIONS(4646), + [anon_sym_LT_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_GT_EQ] = ACTIONS(4646), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4646), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_yield] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_defer] = ACTIONS(4648), + [anon_sym_errdefer] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_expand] = ACTIONS(4648), + [anon_sym_for] = ACTIONS(4648), + [anon_sym_match] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4646), + [anon_sym_orelse] = ACTIONS(4648), + [anon_sym_or] = ACTIONS(4648), + [anon_sym_and] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_AMP] = ACTIONS(4648), + [anon_sym_xor] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [anon_sym_LT_LT_PIPE] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_catch] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4648), + [anon_sym_false] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4648), + [anon_sym_unreachable] = ACTIONS(4648), + [anon_sym_undefined] = ACTIONS(4648), + [sym_sink] = ACTIONS(4648), + [sym_integer] = ACTIONS(4648), + [sym_float] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym_multiline_string] = ACTIONS(4646), + [sym_character] = ACTIONS(4646), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4646), + }, + [STATE(2206)] = { + [ts_builtin_sym_end] = ACTIONS(4650), + [sym_identifier] = ACTIONS(4652), + [anon_sym_import] = ACTIONS(4652), + [anon_sym_test] = ACTIONS(4652), + [anon_sym_hide] = ACTIONS(4652), + [anon_sym_func] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_RPAREN] = ACTIONS(4650), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_DOLLAR] = ACTIONS(4650), + [anon_sym_PIPE] = ACTIONS(4652), + [anon_sym_QMARK] = ACTIONS(4650), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_RBRACK] = ACTIONS(4650), + [anon_sym_void] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym_type] = ACTIONS(4652), + [anon_sym_anyopaque] = ACTIONS(4652), + [anon_sym_bool] = ACTIONS(4652), + [anon_sym_int] = ACTIONS(4652), + [anon_sym_uint] = ACTIONS(4652), + [anon_sym_float] = ACTIONS(4652), + [anon_sym_range] = ACTIONS(4652), + [anon_sym_i8] = ACTIONS(4652), + [anon_sym_i16] = ACTIONS(4652), + [anon_sym_i32] = ACTIONS(4652), + [anon_sym_i64] = ACTIONS(4652), + [anon_sym_u8] = ACTIONS(4652), + [anon_sym_u16] = ACTIONS(4652), + [anon_sym_u32] = ACTIONS(4652), + [anon_sym_u64] = ACTIONS(4652), + [anon_sym_isize] = ACTIONS(4652), + [anon_sym_usize] = ACTIONS(4652), + [anon_sym_f32] = ACTIONS(4652), + [anon_sym_f64] = ACTIONS(4652), + [anon_sym_c_char] = ACTIONS(4652), + [anon_sym_c_schar] = ACTIONS(4652), + [anon_sym_c_uchar] = ACTIONS(4652), + [anon_sym_c_short] = ACTIONS(4652), + [anon_sym_c_ushort] = ACTIONS(4652), + [anon_sym_c_int] = ACTIONS(4652), + [anon_sym_c_uint] = ACTIONS(4652), + [anon_sym_c_long] = ACTIONS(4652), + [anon_sym_c_ulong] = ACTIONS(4652), + [anon_sym_c_longlong] = ACTIONS(4652), + [anon_sym_c_ulonglong] = ACTIONS(4652), + [anon_sym_c_float] = ACTIONS(4652), + [anon_sym_c_double] = ACTIONS(4652), + [anon_sym_c_longdouble] = ACTIONS(4652), + [anon_sym_PLUS_EQ] = ACTIONS(4650), + [anon_sym_DASH_EQ] = ACTIONS(4650), + [anon_sym_STAR_EQ] = ACTIONS(4650), + [anon_sym_SLASH_EQ] = ACTIONS(4650), + [anon_sym_AMP_EQ] = ACTIONS(4650), + [anon_sym_PIPE_EQ] = ACTIONS(4650), + [anon_sym_xor_EQ] = ACTIONS(4650), + [anon_sym_LT_LT_EQ] = ACTIONS(4650), + [anon_sym_GT_GT_EQ] = ACTIONS(4650), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4650), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_yield] = ACTIONS(4652), + [anon_sym_COLON] = ACTIONS(4650), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_defer] = ACTIONS(4652), + [anon_sym_errdefer] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_expand] = ACTIONS(4652), + [anon_sym_for] = ACTIONS(4652), + [anon_sym_match] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4650), + [anon_sym_orelse] = ACTIONS(4652), + [anon_sym_or] = ACTIONS(4652), + [anon_sym_and] = ACTIONS(4652), + [anon_sym_EQ_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4650), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_AMP] = ACTIONS(4652), + [anon_sym_xor] = ACTIONS(4652), + [anon_sym_LT_LT] = ACTIONS(4652), + [anon_sym_GT_GT] = ACTIONS(4652), + [anon_sym_LT_LT_PIPE] = ACTIONS(4652), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_catch] = ACTIONS(4652), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_unreachable] = ACTIONS(4652), + [anon_sym_undefined] = ACTIONS(4652), + [sym_sink] = ACTIONS(4652), + [sym_integer] = ACTIONS(4652), + [sym_float] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym_multiline_string] = ACTIONS(4650), + [sym_character] = ACTIONS(4650), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4650), + }, + [STATE(2207)] = { + [ts_builtin_sym_end] = ACTIONS(4654), + [sym_identifier] = ACTIONS(4656), + [anon_sym_import] = ACTIONS(4656), + [anon_sym_test] = ACTIONS(4656), + [anon_sym_hide] = ACTIONS(4656), + [anon_sym_func] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_DOLLAR] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_QMARK] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_void] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym_type] = ACTIONS(4656), + [anon_sym_anyopaque] = ACTIONS(4656), + [anon_sym_bool] = ACTIONS(4656), + [anon_sym_int] = ACTIONS(4656), + [anon_sym_uint] = ACTIONS(4656), + [anon_sym_float] = ACTIONS(4656), + [anon_sym_range] = ACTIONS(4656), + [anon_sym_i8] = ACTIONS(4656), + [anon_sym_i16] = ACTIONS(4656), + [anon_sym_i32] = ACTIONS(4656), + [anon_sym_i64] = ACTIONS(4656), + [anon_sym_u8] = ACTIONS(4656), + [anon_sym_u16] = ACTIONS(4656), + [anon_sym_u32] = ACTIONS(4656), + [anon_sym_u64] = ACTIONS(4656), + [anon_sym_isize] = ACTIONS(4656), + [anon_sym_usize] = ACTIONS(4656), + [anon_sym_f32] = ACTIONS(4656), + [anon_sym_f64] = ACTIONS(4656), + [anon_sym_c_char] = ACTIONS(4656), + [anon_sym_c_schar] = ACTIONS(4656), + [anon_sym_c_uchar] = ACTIONS(4656), + [anon_sym_c_short] = ACTIONS(4656), + [anon_sym_c_ushort] = ACTIONS(4656), + [anon_sym_c_int] = ACTIONS(4656), + [anon_sym_c_uint] = ACTIONS(4656), + [anon_sym_c_long] = ACTIONS(4656), + [anon_sym_c_ulong] = ACTIONS(4656), + [anon_sym_c_longlong] = ACTIONS(4656), + [anon_sym_c_ulonglong] = ACTIONS(4656), + [anon_sym_c_float] = ACTIONS(4656), + [anon_sym_c_double] = ACTIONS(4656), + [anon_sym_c_longdouble] = ACTIONS(4656), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_AMP_EQ] = ACTIONS(4654), + [anon_sym_PIPE_EQ] = ACTIONS(4654), + [anon_sym_xor_EQ] = ACTIONS(4654), + [anon_sym_LT_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_GT_EQ] = ACTIONS(4654), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4654), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_yield] = ACTIONS(4656), + [anon_sym_COLON] = ACTIONS(4654), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_continue] = ACTIONS(4656), + [anon_sym_defer] = ACTIONS(4656), + [anon_sym_errdefer] = ACTIONS(4656), + [anon_sym_if] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_expand] = ACTIONS(4656), + [anon_sym_for] = ACTIONS(4656), + [anon_sym_match] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4656), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4654), + [anon_sym_orelse] = ACTIONS(4656), + [anon_sym_or] = ACTIONS(4656), + [anon_sym_and] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_AMP] = ACTIONS(4656), + [anon_sym_xor] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT_PIPE] = ACTIONS(4656), + [anon_sym_PLUS] = ACTIONS(4656), + [anon_sym_SLASH] = ACTIONS(4656), + [anon_sym_catch] = ACTIONS(4656), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_try] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4656), + [anon_sym_false] = ACTIONS(4656), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_unreachable] = ACTIONS(4656), + [anon_sym_undefined] = ACTIONS(4656), + [sym_sink] = ACTIONS(4656), + [sym_integer] = ACTIONS(4656), + [sym_float] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym_multiline_string] = ACTIONS(4654), + [sym_character] = ACTIONS(4654), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4654), + }, + [STATE(2208)] = { + [ts_builtin_sym_end] = ACTIONS(4658), + [sym_identifier] = ACTIONS(4660), + [anon_sym_import] = ACTIONS(4660), + [anon_sym_test] = ACTIONS(4660), + [anon_sym_hide] = ACTIONS(4660), + [anon_sym_func] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4658), + [anon_sym_RPAREN] = ACTIONS(4658), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_COMMA] = ACTIONS(4658), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_DOLLAR] = ACTIONS(4658), + [anon_sym_PIPE] = ACTIONS(4660), + [anon_sym_QMARK] = ACTIONS(4658), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym_RBRACK] = ACTIONS(4658), + [anon_sym_void] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym_type] = ACTIONS(4660), + [anon_sym_anyopaque] = ACTIONS(4660), + [anon_sym_bool] = ACTIONS(4660), + [anon_sym_int] = ACTIONS(4660), + [anon_sym_uint] = ACTIONS(4660), + [anon_sym_float] = ACTIONS(4660), + [anon_sym_range] = ACTIONS(4660), + [anon_sym_i8] = ACTIONS(4660), + [anon_sym_i16] = ACTIONS(4660), + [anon_sym_i32] = ACTIONS(4660), + [anon_sym_i64] = ACTIONS(4660), + [anon_sym_u8] = ACTIONS(4660), + [anon_sym_u16] = ACTIONS(4660), + [anon_sym_u32] = ACTIONS(4660), + [anon_sym_u64] = ACTIONS(4660), + [anon_sym_isize] = ACTIONS(4660), + [anon_sym_usize] = ACTIONS(4660), + [anon_sym_f32] = ACTIONS(4660), + [anon_sym_f64] = ACTIONS(4660), + [anon_sym_c_char] = ACTIONS(4660), + [anon_sym_c_schar] = ACTIONS(4660), + [anon_sym_c_uchar] = ACTIONS(4660), + [anon_sym_c_short] = ACTIONS(4660), + [anon_sym_c_ushort] = ACTIONS(4660), + [anon_sym_c_int] = ACTIONS(4660), + [anon_sym_c_uint] = ACTIONS(4660), + [anon_sym_c_long] = ACTIONS(4660), + [anon_sym_c_ulong] = ACTIONS(4660), + [anon_sym_c_longlong] = ACTIONS(4660), + [anon_sym_c_ulonglong] = ACTIONS(4660), + [anon_sym_c_float] = ACTIONS(4660), + [anon_sym_c_double] = ACTIONS(4660), + [anon_sym_c_longdouble] = ACTIONS(4660), + [anon_sym_PLUS_EQ] = ACTIONS(4658), + [anon_sym_DASH_EQ] = ACTIONS(4658), + [anon_sym_STAR_EQ] = ACTIONS(4658), + [anon_sym_SLASH_EQ] = ACTIONS(4658), + [anon_sym_AMP_EQ] = ACTIONS(4658), + [anon_sym_PIPE_EQ] = ACTIONS(4658), + [anon_sym_xor_EQ] = ACTIONS(4658), + [anon_sym_LT_LT_EQ] = ACTIONS(4658), + [anon_sym_GT_GT_EQ] = ACTIONS(4658), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4658), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4658), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_defer] = ACTIONS(4660), + [anon_sym_errdefer] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_expand] = ACTIONS(4660), + [anon_sym_for] = ACTIONS(4660), + [anon_sym_match] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4658), + [anon_sym_orelse] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_EQ_EQ] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(4658), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4658), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4658), + [anon_sym_AMP] = ACTIONS(4660), + [anon_sym_xor] = ACTIONS(4660), + [anon_sym_LT_LT] = ACTIONS(4660), + [anon_sym_GT_GT] = ACTIONS(4660), + [anon_sym_LT_LT_PIPE] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_catch] = ACTIONS(4660), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_CARET] = ACTIONS(4658), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_unreachable] = ACTIONS(4660), + [anon_sym_undefined] = ACTIONS(4660), + [sym_sink] = ACTIONS(4660), + [sym_integer] = ACTIONS(4660), + [sym_float] = ACTIONS(4658), + [anon_sym_DQUOTE] = ACTIONS(4658), + [sym_multiline_string] = ACTIONS(4658), + [sym_character] = ACTIONS(4658), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4658), + }, + [STATE(2209)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4662), + }, + [STATE(2210)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2211)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2212)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8610), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2215), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4664), + }, + [STATE(2213)] = { + [ts_builtin_sym_end] = ACTIONS(4666), + [sym_identifier] = ACTIONS(4668), + [anon_sym_import] = ACTIONS(4668), + [anon_sym_test] = ACTIONS(4668), + [anon_sym_hide] = ACTIONS(4668), + [anon_sym_func] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4668), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_LPAREN] = ACTIONS(4666), + [anon_sym_RPAREN] = ACTIONS(4666), + [anon_sym_LBRACE] = ACTIONS(4666), + [anon_sym_COMMA] = ACTIONS(4666), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4668), + [anon_sym_DOLLAR] = ACTIONS(4666), + [anon_sym_PIPE] = ACTIONS(4668), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_STAR] = ACTIONS(4668), + [anon_sym_LBRACK] = ACTIONS(4666), + [anon_sym_SEMI] = ACTIONS(4666), + [anon_sym_RBRACK] = ACTIONS(4666), + [anon_sym_void] = ACTIONS(4668), + [anon_sym_noreturn] = ACTIONS(4668), + [anon_sym_type] = ACTIONS(4668), + [anon_sym_anyopaque] = ACTIONS(4668), + [anon_sym_bool] = ACTIONS(4668), + [anon_sym_int] = ACTIONS(4668), + [anon_sym_uint] = ACTIONS(4668), + [anon_sym_float] = ACTIONS(4668), + [anon_sym_range] = ACTIONS(4668), + [anon_sym_i8] = ACTIONS(4668), + [anon_sym_i16] = ACTIONS(4668), + [anon_sym_i32] = ACTIONS(4668), + [anon_sym_i64] = ACTIONS(4668), + [anon_sym_u8] = ACTIONS(4668), + [anon_sym_u16] = ACTIONS(4668), + [anon_sym_u32] = ACTIONS(4668), + [anon_sym_u64] = ACTIONS(4668), + [anon_sym_isize] = ACTIONS(4668), + [anon_sym_usize] = ACTIONS(4668), + [anon_sym_f32] = ACTIONS(4668), + [anon_sym_f64] = ACTIONS(4668), + [anon_sym_c_char] = ACTIONS(4668), + [anon_sym_c_schar] = ACTIONS(4668), + [anon_sym_c_uchar] = ACTIONS(4668), + [anon_sym_c_short] = ACTIONS(4668), + [anon_sym_c_ushort] = ACTIONS(4668), + [anon_sym_c_int] = ACTIONS(4668), + [anon_sym_c_uint] = ACTIONS(4668), + [anon_sym_c_long] = ACTIONS(4668), + [anon_sym_c_ulong] = ACTIONS(4668), + [anon_sym_c_longlong] = ACTIONS(4668), + [anon_sym_c_ulonglong] = ACTIONS(4668), + [anon_sym_c_float] = ACTIONS(4668), + [anon_sym_c_double] = ACTIONS(4668), + [anon_sym_c_longdouble] = ACTIONS(4668), + [anon_sym_PLUS_EQ] = ACTIONS(4666), + [anon_sym_DASH_EQ] = ACTIONS(4666), + [anon_sym_STAR_EQ] = ACTIONS(4666), + [anon_sym_SLASH_EQ] = ACTIONS(4666), + [anon_sym_AMP_EQ] = ACTIONS(4666), + [anon_sym_PIPE_EQ] = ACTIONS(4666), + [anon_sym_xor_EQ] = ACTIONS(4666), + [anon_sym_LT_LT_EQ] = ACTIONS(4666), + [anon_sym_GT_GT_EQ] = ACTIONS(4666), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4666), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_yield] = ACTIONS(4668), + [anon_sym_COLON] = ACTIONS(4666), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_continue] = ACTIONS(4668), + [anon_sym_defer] = ACTIONS(4668), + [anon_sym_errdefer] = ACTIONS(4668), + [anon_sym_if] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_while] = ACTIONS(4668), + [anon_sym_expand] = ACTIONS(4668), + [anon_sym_for] = ACTIONS(4668), + [anon_sym_match] = ACTIONS(4668), + [anon_sym_DOT_DOT] = ACTIONS(4668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4666), + [anon_sym_orelse] = ACTIONS(4668), + [anon_sym_or] = ACTIONS(4668), + [anon_sym_and] = ACTIONS(4668), + [anon_sym_EQ_EQ] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(4666), + [anon_sym_LT] = ACTIONS(4668), + [anon_sym_LT_EQ] = ACTIONS(4666), + [anon_sym_GT] = ACTIONS(4668), + [anon_sym_GT_EQ] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4668), + [anon_sym_xor] = ACTIONS(4668), + [anon_sym_LT_LT] = ACTIONS(4668), + [anon_sym_GT_GT] = ACTIONS(4668), + [anon_sym_LT_LT_PIPE] = ACTIONS(4668), + [anon_sym_PLUS] = ACTIONS(4668), + [anon_sym_SLASH] = ACTIONS(4668), + [anon_sym_catch] = ACTIONS(4668), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_try] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_CARET] = ACTIONS(4666), + [anon_sym_true] = ACTIONS(4668), + [anon_sym_false] = ACTIONS(4668), + [anon_sym_null] = ACTIONS(4668), + [anon_sym_unreachable] = ACTIONS(4668), + [anon_sym_undefined] = ACTIONS(4668), + [sym_sink] = ACTIONS(4668), + [sym_integer] = ACTIONS(4668), + [sym_float] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(4666), + [sym_multiline_string] = ACTIONS(4666), + [sym_character] = ACTIONS(4666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4666), + }, + [STATE(2214)] = { + [ts_builtin_sym_end] = ACTIONS(4670), + [sym_identifier] = ACTIONS(4672), + [anon_sym_import] = ACTIONS(4672), + [anon_sym_test] = ACTIONS(4672), + [anon_sym_hide] = ACTIONS(4672), + [anon_sym_func] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_struct] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_RPAREN] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_DOLLAR] = ACTIONS(4670), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_QMARK] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_RBRACK] = ACTIONS(4670), + [anon_sym_void] = ACTIONS(4672), + [anon_sym_noreturn] = ACTIONS(4672), + [anon_sym_type] = ACTIONS(4672), + [anon_sym_anyopaque] = ACTIONS(4672), + [anon_sym_bool] = ACTIONS(4672), + [anon_sym_int] = ACTIONS(4672), + [anon_sym_uint] = ACTIONS(4672), + [anon_sym_float] = ACTIONS(4672), + [anon_sym_range] = ACTIONS(4672), + [anon_sym_i8] = ACTIONS(4672), + [anon_sym_i16] = ACTIONS(4672), + [anon_sym_i32] = ACTIONS(4672), + [anon_sym_i64] = ACTIONS(4672), + [anon_sym_u8] = ACTIONS(4672), + [anon_sym_u16] = ACTIONS(4672), + [anon_sym_u32] = ACTIONS(4672), + [anon_sym_u64] = ACTIONS(4672), + [anon_sym_isize] = ACTIONS(4672), + [anon_sym_usize] = ACTIONS(4672), + [anon_sym_f32] = ACTIONS(4672), + [anon_sym_f64] = ACTIONS(4672), + [anon_sym_c_char] = ACTIONS(4672), + [anon_sym_c_schar] = ACTIONS(4672), + [anon_sym_c_uchar] = ACTIONS(4672), + [anon_sym_c_short] = ACTIONS(4672), + [anon_sym_c_ushort] = ACTIONS(4672), + [anon_sym_c_int] = ACTIONS(4672), + [anon_sym_c_uint] = ACTIONS(4672), + [anon_sym_c_long] = ACTIONS(4672), + [anon_sym_c_ulong] = ACTIONS(4672), + [anon_sym_c_longlong] = ACTIONS(4672), + [anon_sym_c_ulonglong] = ACTIONS(4672), + [anon_sym_c_float] = ACTIONS(4672), + [anon_sym_c_double] = ACTIONS(4672), + [anon_sym_c_longdouble] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_AMP_EQ] = ACTIONS(4670), + [anon_sym_PIPE_EQ] = ACTIONS(4670), + [anon_sym_xor_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_GT_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_yield] = ACTIONS(4672), + [anon_sym_COLON] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_defer] = ACTIONS(4672), + [anon_sym_errdefer] = ACTIONS(4672), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_expand] = ACTIONS(4672), + [anon_sym_for] = ACTIONS(4672), + [anon_sym_match] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4670), + [anon_sym_orelse] = ACTIONS(4672), + [anon_sym_or] = ACTIONS(4672), + [anon_sym_and] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_AMP] = ACTIONS(4672), + [anon_sym_xor] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [anon_sym_LT_LT_PIPE] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_catch] = ACTIONS(4672), + [anon_sym_TILDE] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4670), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4672), + [anon_sym_unreachable] = ACTIONS(4672), + [anon_sym_undefined] = ACTIONS(4672), + [sym_sink] = ACTIONS(4672), + [sym_integer] = ACTIONS(4672), + [sym_float] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(4670), + [sym_multiline_string] = ACTIONS(4670), + [sym_character] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4670), + }, + [STATE(2215)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8736), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2216)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8533), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2218), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4674), + }, + [STATE(2217)] = { + [ts_builtin_sym_end] = ACTIONS(4676), + [sym_identifier] = ACTIONS(4678), + [anon_sym_import] = ACTIONS(4678), + [anon_sym_test] = ACTIONS(4678), + [anon_sym_hide] = ACTIONS(4678), + [anon_sym_func] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_struct] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_DOLLAR] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4678), + [anon_sym_QMARK] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_RBRACK] = ACTIONS(4676), + [anon_sym_void] = ACTIONS(4678), + [anon_sym_noreturn] = ACTIONS(4678), + [anon_sym_type] = ACTIONS(4678), + [anon_sym_anyopaque] = ACTIONS(4678), + [anon_sym_bool] = ACTIONS(4678), + [anon_sym_int] = ACTIONS(4678), + [anon_sym_uint] = ACTIONS(4678), + [anon_sym_float] = ACTIONS(4678), + [anon_sym_range] = ACTIONS(4678), + [anon_sym_i8] = ACTIONS(4678), + [anon_sym_i16] = ACTIONS(4678), + [anon_sym_i32] = ACTIONS(4678), + [anon_sym_i64] = ACTIONS(4678), + [anon_sym_u8] = ACTIONS(4678), + [anon_sym_u16] = ACTIONS(4678), + [anon_sym_u32] = ACTIONS(4678), + [anon_sym_u64] = ACTIONS(4678), + [anon_sym_isize] = ACTIONS(4678), + [anon_sym_usize] = ACTIONS(4678), + [anon_sym_f32] = ACTIONS(4678), + [anon_sym_f64] = ACTIONS(4678), + [anon_sym_c_char] = ACTIONS(4678), + [anon_sym_c_schar] = ACTIONS(4678), + [anon_sym_c_uchar] = ACTIONS(4678), + [anon_sym_c_short] = ACTIONS(4678), + [anon_sym_c_ushort] = ACTIONS(4678), + [anon_sym_c_int] = ACTIONS(4678), + [anon_sym_c_uint] = ACTIONS(4678), + [anon_sym_c_long] = ACTIONS(4678), + [anon_sym_c_ulong] = ACTIONS(4678), + [anon_sym_c_longlong] = ACTIONS(4678), + [anon_sym_c_ulonglong] = ACTIONS(4678), + [anon_sym_c_float] = ACTIONS(4678), + [anon_sym_c_double] = ACTIONS(4678), + [anon_sym_c_longdouble] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_AMP_EQ] = ACTIONS(4676), + [anon_sym_PIPE_EQ] = ACTIONS(4676), + [anon_sym_xor_EQ] = ACTIONS(4676), + [anon_sym_LT_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_GT_EQ] = ACTIONS(4676), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_yield] = ACTIONS(4678), + [anon_sym_COLON] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_defer] = ACTIONS(4678), + [anon_sym_errdefer] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_while] = ACTIONS(4678), + [anon_sym_expand] = ACTIONS(4678), + [anon_sym_for] = ACTIONS(4678), + [anon_sym_match] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4676), + [anon_sym_orelse] = ACTIONS(4678), + [anon_sym_or] = ACTIONS(4678), + [anon_sym_and] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4678), + [anon_sym_xor] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT_PIPE] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_catch] = ACTIONS(4678), + [anon_sym_TILDE] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_unreachable] = ACTIONS(4678), + [anon_sym_undefined] = ACTIONS(4678), + [sym_sink] = ACTIONS(4678), + [sym_integer] = ACTIONS(4678), + [sym_float] = ACTIONS(4676), + [anon_sym_DQUOTE] = ACTIONS(4676), + [sym_multiline_string] = ACTIONS(4676), + [sym_character] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4676), + }, + [STATE(2218)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8486), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8777), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(575), + [anon_sym_errdefer] = ACTIONS(577), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(589), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2219)] = { + [ts_builtin_sym_end] = ACTIONS(4680), + [sym_identifier] = ACTIONS(4682), + [anon_sym_import] = ACTIONS(4682), + [anon_sym_test] = ACTIONS(4682), + [anon_sym_hide] = ACTIONS(4682), + [anon_sym_func] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_struct] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_RPAREN] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_COMMA] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_DOLLAR] = ACTIONS(4680), + [anon_sym_PIPE] = ACTIONS(4682), + [anon_sym_QMARK] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4680), + [anon_sym_RBRACK] = ACTIONS(4680), + [anon_sym_void] = ACTIONS(4682), + [anon_sym_noreturn] = ACTIONS(4682), + [anon_sym_type] = ACTIONS(4682), + [anon_sym_anyopaque] = ACTIONS(4682), + [anon_sym_bool] = ACTIONS(4682), + [anon_sym_int] = ACTIONS(4682), + [anon_sym_uint] = ACTIONS(4682), + [anon_sym_float] = ACTIONS(4682), + [anon_sym_range] = ACTIONS(4682), + [anon_sym_i8] = ACTIONS(4682), + [anon_sym_i16] = ACTIONS(4682), + [anon_sym_i32] = ACTIONS(4682), + [anon_sym_i64] = ACTIONS(4682), + [anon_sym_u8] = ACTIONS(4682), + [anon_sym_u16] = ACTIONS(4682), + [anon_sym_u32] = ACTIONS(4682), + [anon_sym_u64] = ACTIONS(4682), + [anon_sym_isize] = ACTIONS(4682), + [anon_sym_usize] = ACTIONS(4682), + [anon_sym_f32] = ACTIONS(4682), + [anon_sym_f64] = ACTIONS(4682), + [anon_sym_c_char] = ACTIONS(4682), + [anon_sym_c_schar] = ACTIONS(4682), + [anon_sym_c_uchar] = ACTIONS(4682), + [anon_sym_c_short] = ACTIONS(4682), + [anon_sym_c_ushort] = ACTIONS(4682), + [anon_sym_c_int] = ACTIONS(4682), + [anon_sym_c_uint] = ACTIONS(4682), + [anon_sym_c_long] = ACTIONS(4682), + [anon_sym_c_ulong] = ACTIONS(4682), + [anon_sym_c_longlong] = ACTIONS(4682), + [anon_sym_c_ulonglong] = ACTIONS(4682), + [anon_sym_c_float] = ACTIONS(4682), + [anon_sym_c_double] = ACTIONS(4682), + [anon_sym_c_longdouble] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4680), + [anon_sym_DASH_EQ] = ACTIONS(4680), + [anon_sym_STAR_EQ] = ACTIONS(4680), + [anon_sym_SLASH_EQ] = ACTIONS(4680), + [anon_sym_AMP_EQ] = ACTIONS(4680), + [anon_sym_PIPE_EQ] = ACTIONS(4680), + [anon_sym_xor_EQ] = ACTIONS(4680), + [anon_sym_LT_LT_EQ] = ACTIONS(4680), + [anon_sym_GT_GT_EQ] = ACTIONS(4680), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_yield] = ACTIONS(4682), + [anon_sym_COLON] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_defer] = ACTIONS(4682), + [anon_sym_errdefer] = ACTIONS(4682), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_while] = ACTIONS(4682), + [anon_sym_expand] = ACTIONS(4682), + [anon_sym_for] = ACTIONS(4682), + [anon_sym_match] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4680), + [anon_sym_orelse] = ACTIONS(4682), + [anon_sym_or] = ACTIONS(4682), + [anon_sym_and] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4680), + [anon_sym_AMP] = ACTIONS(4682), + [anon_sym_xor] = ACTIONS(4682), + [anon_sym_LT_LT] = ACTIONS(4682), + [anon_sym_GT_GT] = ACTIONS(4682), + [anon_sym_LT_LT_PIPE] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_catch] = ACTIONS(4682), + [anon_sym_TILDE] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_CARET] = ACTIONS(4680), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(4682), + [anon_sym_unreachable] = ACTIONS(4682), + [anon_sym_undefined] = ACTIONS(4682), + [sym_sink] = ACTIONS(4682), + [sym_integer] = ACTIONS(4682), + [sym_float] = ACTIONS(4680), + [anon_sym_DQUOTE] = ACTIONS(4680), + [sym_multiline_string] = ACTIONS(4680), + [sym_character] = ACTIONS(4680), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4680), + }, + [STATE(2220)] = { + [ts_builtin_sym_end] = ACTIONS(4684), + [sym_identifier] = ACTIONS(4686), + [anon_sym_import] = ACTIONS(4686), + [anon_sym_test] = ACTIONS(4686), + [anon_sym_hide] = ACTIONS(4686), + [anon_sym_func] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_struct] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_DOLLAR] = ACTIONS(4684), + [anon_sym_PIPE] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_RBRACK] = ACTIONS(4684), + [anon_sym_void] = ACTIONS(4686), + [anon_sym_noreturn] = ACTIONS(4686), + [anon_sym_type] = ACTIONS(4686), + [anon_sym_anyopaque] = ACTIONS(4686), + [anon_sym_bool] = ACTIONS(4686), + [anon_sym_int] = ACTIONS(4686), + [anon_sym_uint] = ACTIONS(4686), + [anon_sym_float] = ACTIONS(4686), + [anon_sym_range] = ACTIONS(4686), + [anon_sym_i8] = ACTIONS(4686), + [anon_sym_i16] = ACTIONS(4686), + [anon_sym_i32] = ACTIONS(4686), + [anon_sym_i64] = ACTIONS(4686), + [anon_sym_u8] = ACTIONS(4686), + [anon_sym_u16] = ACTIONS(4686), + [anon_sym_u32] = ACTIONS(4686), + [anon_sym_u64] = ACTIONS(4686), + [anon_sym_isize] = ACTIONS(4686), + [anon_sym_usize] = ACTIONS(4686), + [anon_sym_f32] = ACTIONS(4686), + [anon_sym_f64] = ACTIONS(4686), + [anon_sym_c_char] = ACTIONS(4686), + [anon_sym_c_schar] = ACTIONS(4686), + [anon_sym_c_uchar] = ACTIONS(4686), + [anon_sym_c_short] = ACTIONS(4686), + [anon_sym_c_ushort] = ACTIONS(4686), + [anon_sym_c_int] = ACTIONS(4686), + [anon_sym_c_uint] = ACTIONS(4686), + [anon_sym_c_long] = ACTIONS(4686), + [anon_sym_c_ulong] = ACTIONS(4686), + [anon_sym_c_longlong] = ACTIONS(4686), + [anon_sym_c_ulonglong] = ACTIONS(4686), + [anon_sym_c_float] = ACTIONS(4686), + [anon_sym_c_double] = ACTIONS(4686), + [anon_sym_c_longdouble] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_AMP_EQ] = ACTIONS(4684), + [anon_sym_PIPE_EQ] = ACTIONS(4684), + [anon_sym_xor_EQ] = ACTIONS(4684), + [anon_sym_LT_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_GT_EQ] = ACTIONS(4684), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4686), + [anon_sym_yield] = ACTIONS(4686), + [anon_sym_COLON] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4686), + [anon_sym_continue] = ACTIONS(4686), + [anon_sym_defer] = ACTIONS(4686), + [anon_sym_errdefer] = ACTIONS(4686), + [anon_sym_if] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_while] = ACTIONS(4686), + [anon_sym_expand] = ACTIONS(4686), + [anon_sym_for] = ACTIONS(4686), + [anon_sym_match] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4684), + [anon_sym_orelse] = ACTIONS(4686), + [anon_sym_or] = ACTIONS(4686), + [anon_sym_and] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_AMP] = ACTIONS(4686), + [anon_sym_xor] = ACTIONS(4686), + [anon_sym_LT_LT] = ACTIONS(4686), + [anon_sym_GT_GT] = ACTIONS(4686), + [anon_sym_LT_LT_PIPE] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_catch] = ACTIONS(4686), + [anon_sym_TILDE] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_CARET] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4686), + [anon_sym_false] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4686), + [anon_sym_unreachable] = ACTIONS(4686), + [anon_sym_undefined] = ACTIONS(4686), + [sym_sink] = ACTIONS(4686), + [sym_integer] = ACTIONS(4686), + [sym_float] = ACTIONS(4684), + [anon_sym_DQUOTE] = ACTIONS(4684), + [sym_multiline_string] = ACTIONS(4684), + [sym_character] = ACTIONS(4684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4684), + }, + [STATE(2221)] = { + [ts_builtin_sym_end] = ACTIONS(4688), + [sym_identifier] = ACTIONS(4690), + [anon_sym_import] = ACTIONS(4690), + [anon_sym_test] = ACTIONS(4690), + [anon_sym_hide] = ACTIONS(4690), + [anon_sym_func] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_struct] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_RPAREN] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_SEMI] = ACTIONS(4688), + [anon_sym_RBRACK] = ACTIONS(4688), + [anon_sym_void] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym_type] = ACTIONS(4690), + [anon_sym_anyopaque] = ACTIONS(4690), + [anon_sym_bool] = ACTIONS(4690), + [anon_sym_int] = ACTIONS(4690), + [anon_sym_uint] = ACTIONS(4690), + [anon_sym_float] = ACTIONS(4690), + [anon_sym_range] = ACTIONS(4690), + [anon_sym_i8] = ACTIONS(4690), + [anon_sym_i16] = ACTIONS(4690), + [anon_sym_i32] = ACTIONS(4690), + [anon_sym_i64] = ACTIONS(4690), + [anon_sym_u8] = ACTIONS(4690), + [anon_sym_u16] = ACTIONS(4690), + [anon_sym_u32] = ACTIONS(4690), + [anon_sym_u64] = ACTIONS(4690), + [anon_sym_isize] = ACTIONS(4690), + [anon_sym_usize] = ACTIONS(4690), + [anon_sym_f32] = ACTIONS(4690), + [anon_sym_f64] = ACTIONS(4690), + [anon_sym_c_char] = ACTIONS(4690), + [anon_sym_c_schar] = ACTIONS(4690), + [anon_sym_c_uchar] = ACTIONS(4690), + [anon_sym_c_short] = ACTIONS(4690), + [anon_sym_c_ushort] = ACTIONS(4690), + [anon_sym_c_int] = ACTIONS(4690), + [anon_sym_c_uint] = ACTIONS(4690), + [anon_sym_c_long] = ACTIONS(4690), + [anon_sym_c_ulong] = ACTIONS(4690), + [anon_sym_c_longlong] = ACTIONS(4690), + [anon_sym_c_ulonglong] = ACTIONS(4690), + [anon_sym_c_float] = ACTIONS(4690), + [anon_sym_c_double] = ACTIONS(4690), + [anon_sym_c_longdouble] = ACTIONS(4690), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_AMP_EQ] = ACTIONS(4688), + [anon_sym_PIPE_EQ] = ACTIONS(4688), + [anon_sym_xor_EQ] = ACTIONS(4688), + [anon_sym_LT_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_GT_EQ] = ACTIONS(4688), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4688), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_yield] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4688), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_defer] = ACTIONS(4690), + [anon_sym_errdefer] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_expand] = ACTIONS(4690), + [anon_sym_for] = ACTIONS(4690), + [anon_sym_match] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4688), + [anon_sym_orelse] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4690), + [anon_sym_and] = ACTIONS(4690), + [anon_sym_EQ_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4690), + [anon_sym_xor] = ACTIONS(4690), + [anon_sym_LT_LT] = ACTIONS(4690), + [anon_sym_GT_GT] = ACTIONS(4690), + [anon_sym_LT_LT_PIPE] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_catch] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4688), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_unreachable] = ACTIONS(4690), + [anon_sym_undefined] = ACTIONS(4690), + [sym_sink] = ACTIONS(4690), + [sym_integer] = ACTIONS(4690), + [sym_float] = ACTIONS(4688), + [anon_sym_DQUOTE] = ACTIONS(4688), + [sym_multiline_string] = ACTIONS(4688), + [sym_character] = ACTIONS(4688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4688), + }, + [STATE(2222)] = { + [ts_builtin_sym_end] = ACTIONS(4692), + [sym_identifier] = ACTIONS(4694), + [anon_sym_import] = ACTIONS(4694), + [anon_sym_test] = ACTIONS(4694), + [anon_sym_hide] = ACTIONS(4694), + [anon_sym_func] = ACTIONS(4694), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_RPAREN] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_DOLLAR] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4694), + [anon_sym_QMARK] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_RBRACK] = ACTIONS(4692), + [anon_sym_void] = ACTIONS(4694), + [anon_sym_noreturn] = ACTIONS(4694), + [anon_sym_type] = ACTIONS(4694), + [anon_sym_anyopaque] = ACTIONS(4694), + [anon_sym_bool] = ACTIONS(4694), + [anon_sym_int] = ACTIONS(4694), + [anon_sym_uint] = ACTIONS(4694), + [anon_sym_float] = ACTIONS(4694), + [anon_sym_range] = ACTIONS(4694), + [anon_sym_i8] = ACTIONS(4694), + [anon_sym_i16] = ACTIONS(4694), + [anon_sym_i32] = ACTIONS(4694), + [anon_sym_i64] = ACTIONS(4694), + [anon_sym_u8] = ACTIONS(4694), + [anon_sym_u16] = ACTIONS(4694), + [anon_sym_u32] = ACTIONS(4694), + [anon_sym_u64] = ACTIONS(4694), + [anon_sym_isize] = ACTIONS(4694), + [anon_sym_usize] = ACTIONS(4694), + [anon_sym_f32] = ACTIONS(4694), + [anon_sym_f64] = ACTIONS(4694), + [anon_sym_c_char] = ACTIONS(4694), + [anon_sym_c_schar] = ACTIONS(4694), + [anon_sym_c_uchar] = ACTIONS(4694), + [anon_sym_c_short] = ACTIONS(4694), + [anon_sym_c_ushort] = ACTIONS(4694), + [anon_sym_c_int] = ACTIONS(4694), + [anon_sym_c_uint] = ACTIONS(4694), + [anon_sym_c_long] = ACTIONS(4694), + [anon_sym_c_ulong] = ACTIONS(4694), + [anon_sym_c_longlong] = ACTIONS(4694), + [anon_sym_c_ulonglong] = ACTIONS(4694), + [anon_sym_c_float] = ACTIONS(4694), + [anon_sym_c_double] = ACTIONS(4694), + [anon_sym_c_longdouble] = ACTIONS(4694), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_AMP_EQ] = ACTIONS(4692), + [anon_sym_PIPE_EQ] = ACTIONS(4692), + [anon_sym_xor_EQ] = ACTIONS(4692), + [anon_sym_LT_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_GT_EQ] = ACTIONS(4692), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4692), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_yield] = ACTIONS(4694), + [anon_sym_COLON] = ACTIONS(4692), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_defer] = ACTIONS(4694), + [anon_sym_errdefer] = ACTIONS(4694), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_while] = ACTIONS(4694), + [anon_sym_expand] = ACTIONS(4694), + [anon_sym_for] = ACTIONS(4694), + [anon_sym_match] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4692), + [anon_sym_orelse] = ACTIONS(4694), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [anon_sym_EQ_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_xor] = ACTIONS(4694), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4694), + [anon_sym_LT_LT_PIPE] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_catch] = ACTIONS(4694), + [anon_sym_TILDE] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_null] = ACTIONS(4694), + [anon_sym_unreachable] = ACTIONS(4694), + [anon_sym_undefined] = ACTIONS(4694), + [sym_sink] = ACTIONS(4694), + [sym_integer] = ACTIONS(4694), + [sym_float] = ACTIONS(4692), + [anon_sym_DQUOTE] = ACTIONS(4692), + [sym_multiline_string] = ACTIONS(4692), + [sym_character] = ACTIONS(4692), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4692), + }, + [STATE(2223)] = { + [ts_builtin_sym_end] = ACTIONS(4696), + [sym_identifier] = ACTIONS(4698), + [anon_sym_import] = ACTIONS(4698), + [anon_sym_test] = ACTIONS(4698), + [anon_sym_hide] = ACTIONS(4698), + [anon_sym_func] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_struct] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_RBRACK] = ACTIONS(4696), + [anon_sym_void] = ACTIONS(4698), + [anon_sym_noreturn] = ACTIONS(4698), + [anon_sym_type] = ACTIONS(4698), + [anon_sym_anyopaque] = ACTIONS(4698), + [anon_sym_bool] = ACTIONS(4698), + [anon_sym_int] = ACTIONS(4698), + [anon_sym_uint] = ACTIONS(4698), + [anon_sym_float] = ACTIONS(4698), + [anon_sym_range] = ACTIONS(4698), + [anon_sym_i8] = ACTIONS(4698), + [anon_sym_i16] = ACTIONS(4698), + [anon_sym_i32] = ACTIONS(4698), + [anon_sym_i64] = ACTIONS(4698), + [anon_sym_u8] = ACTIONS(4698), + [anon_sym_u16] = ACTIONS(4698), + [anon_sym_u32] = ACTIONS(4698), + [anon_sym_u64] = ACTIONS(4698), + [anon_sym_isize] = ACTIONS(4698), + [anon_sym_usize] = ACTIONS(4698), + [anon_sym_f32] = ACTIONS(4698), + [anon_sym_f64] = ACTIONS(4698), + [anon_sym_c_char] = ACTIONS(4698), + [anon_sym_c_schar] = ACTIONS(4698), + [anon_sym_c_uchar] = ACTIONS(4698), + [anon_sym_c_short] = ACTIONS(4698), + [anon_sym_c_ushort] = ACTIONS(4698), + [anon_sym_c_int] = ACTIONS(4698), + [anon_sym_c_uint] = ACTIONS(4698), + [anon_sym_c_long] = ACTIONS(4698), + [anon_sym_c_ulong] = ACTIONS(4698), + [anon_sym_c_longlong] = ACTIONS(4698), + [anon_sym_c_ulonglong] = ACTIONS(4698), + [anon_sym_c_float] = ACTIONS(4698), + [anon_sym_c_double] = ACTIONS(4698), + [anon_sym_c_longdouble] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_AMP_EQ] = ACTIONS(4696), + [anon_sym_PIPE_EQ] = ACTIONS(4696), + [anon_sym_xor_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_GT_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4698), + [anon_sym_yield] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4698), + [anon_sym_continue] = ACTIONS(4698), + [anon_sym_defer] = ACTIONS(4698), + [anon_sym_errdefer] = ACTIONS(4698), + [anon_sym_if] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_while] = ACTIONS(4698), + [anon_sym_expand] = ACTIONS(4698), + [anon_sym_for] = ACTIONS(4698), + [anon_sym_match] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4696), + [anon_sym_orelse] = ACTIONS(4698), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_xor] = ACTIONS(4698), + [anon_sym_LT_LT] = ACTIONS(4698), + [anon_sym_GT_GT] = ACTIONS(4698), + [anon_sym_LT_LT_PIPE] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_catch] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4698), + [anon_sym_false] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4698), + [anon_sym_unreachable] = ACTIONS(4698), + [anon_sym_undefined] = ACTIONS(4698), + [sym_sink] = ACTIONS(4698), + [sym_integer] = ACTIONS(4698), + [sym_float] = ACTIONS(4696), + [anon_sym_DQUOTE] = ACTIONS(4696), + [sym_multiline_string] = ACTIONS(4696), + [sym_character] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4696), + }, + [STATE(2224)] = { + [ts_builtin_sym_end] = ACTIONS(4700), + [sym_identifier] = ACTIONS(4702), + [anon_sym_import] = ACTIONS(4702), + [anon_sym_test] = ACTIONS(4702), + [anon_sym_hide] = ACTIONS(4702), + [anon_sym_func] = ACTIONS(4702), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_struct] = ACTIONS(4702), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_DOLLAR] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(4702), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_STAR] = ACTIONS(4702), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_RBRACK] = ACTIONS(4700), + [anon_sym_void] = ACTIONS(4702), + [anon_sym_noreturn] = ACTIONS(4702), + [anon_sym_type] = ACTIONS(4702), + [anon_sym_anyopaque] = ACTIONS(4702), + [anon_sym_bool] = ACTIONS(4702), + [anon_sym_int] = ACTIONS(4702), + [anon_sym_uint] = ACTIONS(4702), + [anon_sym_float] = ACTIONS(4702), + [anon_sym_range] = ACTIONS(4702), + [anon_sym_i8] = ACTIONS(4702), + [anon_sym_i16] = ACTIONS(4702), + [anon_sym_i32] = ACTIONS(4702), + [anon_sym_i64] = ACTIONS(4702), + [anon_sym_u8] = ACTIONS(4702), + [anon_sym_u16] = ACTIONS(4702), + [anon_sym_u32] = ACTIONS(4702), + [anon_sym_u64] = ACTIONS(4702), + [anon_sym_isize] = ACTIONS(4702), + [anon_sym_usize] = ACTIONS(4702), + [anon_sym_f32] = ACTIONS(4702), + [anon_sym_f64] = ACTIONS(4702), + [anon_sym_c_char] = ACTIONS(4702), + [anon_sym_c_schar] = ACTIONS(4702), + [anon_sym_c_uchar] = ACTIONS(4702), + [anon_sym_c_short] = ACTIONS(4702), + [anon_sym_c_ushort] = ACTIONS(4702), + [anon_sym_c_int] = ACTIONS(4702), + [anon_sym_c_uint] = ACTIONS(4702), + [anon_sym_c_long] = ACTIONS(4702), + [anon_sym_c_ulong] = ACTIONS(4702), + [anon_sym_c_longlong] = ACTIONS(4702), + [anon_sym_c_ulonglong] = ACTIONS(4702), + [anon_sym_c_float] = ACTIONS(4702), + [anon_sym_c_double] = ACTIONS(4702), + [anon_sym_c_longdouble] = ACTIONS(4702), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_AMP_EQ] = ACTIONS(4700), + [anon_sym_PIPE_EQ] = ACTIONS(4700), + [anon_sym_xor_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4700), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_yield] = ACTIONS(4702), + [anon_sym_COLON] = ACTIONS(4700), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_defer] = ACTIONS(4702), + [anon_sym_errdefer] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_while] = ACTIONS(4702), + [anon_sym_expand] = ACTIONS(4702), + [anon_sym_for] = ACTIONS(4702), + [anon_sym_match] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4700), + [anon_sym_orelse] = ACTIONS(4702), + [anon_sym_or] = ACTIONS(4702), + [anon_sym_and] = ACTIONS(4702), + [anon_sym_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(4702), + [anon_sym_xor] = ACTIONS(4702), + [anon_sym_LT_LT] = ACTIONS(4702), + [anon_sym_GT_GT] = ACTIONS(4702), + [anon_sym_LT_LT_PIPE] = ACTIONS(4702), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_catch] = ACTIONS(4702), + [anon_sym_TILDE] = ACTIONS(4700), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_unreachable] = ACTIONS(4702), + [anon_sym_undefined] = ACTIONS(4702), + [sym_sink] = ACTIONS(4702), + [sym_integer] = ACTIONS(4702), + [sym_float] = ACTIONS(4700), + [anon_sym_DQUOTE] = ACTIONS(4700), + [sym_multiline_string] = ACTIONS(4700), + [sym_character] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4700), + }, + [STATE(2225)] = { + [ts_builtin_sym_end] = ACTIONS(4704), + [sym_identifier] = ACTIONS(4706), + [anon_sym_import] = ACTIONS(4706), + [anon_sym_test] = ACTIONS(4706), + [anon_sym_hide] = ACTIONS(4706), + [anon_sym_func] = ACTIONS(4706), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_struct] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_RBRACK] = ACTIONS(4704), + [anon_sym_void] = ACTIONS(4706), + [anon_sym_noreturn] = ACTIONS(4706), + [anon_sym_type] = ACTIONS(4706), + [anon_sym_anyopaque] = ACTIONS(4706), + [anon_sym_bool] = ACTIONS(4706), + [anon_sym_int] = ACTIONS(4706), + [anon_sym_uint] = ACTIONS(4706), + [anon_sym_float] = ACTIONS(4706), + [anon_sym_range] = ACTIONS(4706), + [anon_sym_i8] = ACTIONS(4706), + [anon_sym_i16] = ACTIONS(4706), + [anon_sym_i32] = ACTIONS(4706), + [anon_sym_i64] = ACTIONS(4706), + [anon_sym_u8] = ACTIONS(4706), + [anon_sym_u16] = ACTIONS(4706), + [anon_sym_u32] = ACTIONS(4706), + [anon_sym_u64] = ACTIONS(4706), + [anon_sym_isize] = ACTIONS(4706), + [anon_sym_usize] = ACTIONS(4706), + [anon_sym_f32] = ACTIONS(4706), + [anon_sym_f64] = ACTIONS(4706), + [anon_sym_c_char] = ACTIONS(4706), + [anon_sym_c_schar] = ACTIONS(4706), + [anon_sym_c_uchar] = ACTIONS(4706), + [anon_sym_c_short] = ACTIONS(4706), + [anon_sym_c_ushort] = ACTIONS(4706), + [anon_sym_c_int] = ACTIONS(4706), + [anon_sym_c_uint] = ACTIONS(4706), + [anon_sym_c_long] = ACTIONS(4706), + [anon_sym_c_ulong] = ACTIONS(4706), + [anon_sym_c_longlong] = ACTIONS(4706), + [anon_sym_c_ulonglong] = ACTIONS(4706), + [anon_sym_c_float] = ACTIONS(4706), + [anon_sym_c_double] = ACTIONS(4706), + [anon_sym_c_longdouble] = ACTIONS(4706), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_AMP_EQ] = ACTIONS(4704), + [anon_sym_PIPE_EQ] = ACTIONS(4704), + [anon_sym_xor_EQ] = ACTIONS(4704), + [anon_sym_LT_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_GT_EQ] = ACTIONS(4704), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4704), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_yield] = ACTIONS(4706), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_defer] = ACTIONS(4706), + [anon_sym_errdefer] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_expand] = ACTIONS(4706), + [anon_sym_for] = ACTIONS(4706), + [anon_sym_match] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4704), + [anon_sym_orelse] = ACTIONS(4706), + [anon_sym_or] = ACTIONS(4706), + [anon_sym_and] = ACTIONS(4706), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_xor] = ACTIONS(4706), + [anon_sym_LT_LT] = ACTIONS(4706), + [anon_sym_GT_GT] = ACTIONS(4706), + [anon_sym_LT_LT_PIPE] = ACTIONS(4706), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_catch] = ACTIONS(4706), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_unreachable] = ACTIONS(4706), + [anon_sym_undefined] = ACTIONS(4706), + [sym_sink] = ACTIONS(4706), + [sym_integer] = ACTIONS(4706), + [sym_float] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [sym_multiline_string] = ACTIONS(4704), + [sym_character] = ACTIONS(4704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4704), + }, + [STATE(2226)] = { + [ts_builtin_sym_end] = ACTIONS(4708), + [sym_identifier] = ACTIONS(4710), + [anon_sym_import] = ACTIONS(4710), + [anon_sym_test] = ACTIONS(4710), + [anon_sym_hide] = ACTIONS(4710), + [anon_sym_func] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_struct] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_RPAREN] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4708), + [anon_sym_PIPE] = ACTIONS(4710), + [anon_sym_QMARK] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_RBRACK] = ACTIONS(4708), + [anon_sym_void] = ACTIONS(4710), + [anon_sym_noreturn] = ACTIONS(4710), + [anon_sym_type] = ACTIONS(4710), + [anon_sym_anyopaque] = ACTIONS(4710), + [anon_sym_bool] = ACTIONS(4710), + [anon_sym_int] = ACTIONS(4710), + [anon_sym_uint] = ACTIONS(4710), + [anon_sym_float] = ACTIONS(4710), + [anon_sym_range] = ACTIONS(4710), + [anon_sym_i8] = ACTIONS(4710), + [anon_sym_i16] = ACTIONS(4710), + [anon_sym_i32] = ACTIONS(4710), + [anon_sym_i64] = ACTIONS(4710), + [anon_sym_u8] = ACTIONS(4710), + [anon_sym_u16] = ACTIONS(4710), + [anon_sym_u32] = ACTIONS(4710), + [anon_sym_u64] = ACTIONS(4710), + [anon_sym_isize] = ACTIONS(4710), + [anon_sym_usize] = ACTIONS(4710), + [anon_sym_f32] = ACTIONS(4710), + [anon_sym_f64] = ACTIONS(4710), + [anon_sym_c_char] = ACTIONS(4710), + [anon_sym_c_schar] = ACTIONS(4710), + [anon_sym_c_uchar] = ACTIONS(4710), + [anon_sym_c_short] = ACTIONS(4710), + [anon_sym_c_ushort] = ACTIONS(4710), + [anon_sym_c_int] = ACTIONS(4710), + [anon_sym_c_uint] = ACTIONS(4710), + [anon_sym_c_long] = ACTIONS(4710), + [anon_sym_c_ulong] = ACTIONS(4710), + [anon_sym_c_longlong] = ACTIONS(4710), + [anon_sym_c_ulonglong] = ACTIONS(4710), + [anon_sym_c_float] = ACTIONS(4710), + [anon_sym_c_double] = ACTIONS(4710), + [anon_sym_c_longdouble] = ACTIONS(4710), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_AMP_EQ] = ACTIONS(4708), + [anon_sym_PIPE_EQ] = ACTIONS(4708), + [anon_sym_xor_EQ] = ACTIONS(4708), + [anon_sym_LT_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_GT_EQ] = ACTIONS(4708), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4708), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_yield] = ACTIONS(4710), + [anon_sym_COLON] = ACTIONS(4708), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_defer] = ACTIONS(4710), + [anon_sym_errdefer] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_expand] = ACTIONS(4710), + [anon_sym_for] = ACTIONS(4710), + [anon_sym_match] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4708), + [anon_sym_orelse] = ACTIONS(4710), + [anon_sym_or] = ACTIONS(4710), + [anon_sym_and] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_xor] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4710), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_LT_LT_PIPE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_catch] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4708), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_unreachable] = ACTIONS(4710), + [anon_sym_undefined] = ACTIONS(4710), + [sym_sink] = ACTIONS(4710), + [sym_integer] = ACTIONS(4710), + [sym_float] = ACTIONS(4708), + [anon_sym_DQUOTE] = ACTIONS(4708), + [sym_multiline_string] = ACTIONS(4708), + [sym_character] = ACTIONS(4708), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4708), + }, + [STATE(2227)] = { + [ts_builtin_sym_end] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4714), + [anon_sym_import] = ACTIONS(4714), + [anon_sym_test] = ACTIONS(4714), + [anon_sym_hide] = ACTIONS(4714), + [anon_sym_func] = ACTIONS(4714), + [anon_sym_BANG] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_struct] = ACTIONS(4714), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4714), + [anon_sym_QMARK] = ACTIONS(4712), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_RBRACK] = ACTIONS(4712), + [anon_sym_void] = ACTIONS(4714), + [anon_sym_noreturn] = ACTIONS(4714), + [anon_sym_type] = ACTIONS(4714), + [anon_sym_anyopaque] = ACTIONS(4714), + [anon_sym_bool] = ACTIONS(4714), + [anon_sym_int] = ACTIONS(4714), + [anon_sym_uint] = ACTIONS(4714), + [anon_sym_float] = ACTIONS(4714), + [anon_sym_range] = ACTIONS(4714), + [anon_sym_i8] = ACTIONS(4714), + [anon_sym_i16] = ACTIONS(4714), + [anon_sym_i32] = ACTIONS(4714), + [anon_sym_i64] = ACTIONS(4714), + [anon_sym_u8] = ACTIONS(4714), + [anon_sym_u16] = ACTIONS(4714), + [anon_sym_u32] = ACTIONS(4714), + [anon_sym_u64] = ACTIONS(4714), + [anon_sym_isize] = ACTIONS(4714), + [anon_sym_usize] = ACTIONS(4714), + [anon_sym_f32] = ACTIONS(4714), + [anon_sym_f64] = ACTIONS(4714), + [anon_sym_c_char] = ACTIONS(4714), + [anon_sym_c_schar] = ACTIONS(4714), + [anon_sym_c_uchar] = ACTIONS(4714), + [anon_sym_c_short] = ACTIONS(4714), + [anon_sym_c_ushort] = ACTIONS(4714), + [anon_sym_c_int] = ACTIONS(4714), + [anon_sym_c_uint] = ACTIONS(4714), + [anon_sym_c_long] = ACTIONS(4714), + [anon_sym_c_ulong] = ACTIONS(4714), + [anon_sym_c_longlong] = ACTIONS(4714), + [anon_sym_c_ulonglong] = ACTIONS(4714), + [anon_sym_c_float] = ACTIONS(4714), + [anon_sym_c_double] = ACTIONS(4714), + [anon_sym_c_longdouble] = ACTIONS(4714), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_AMP_EQ] = ACTIONS(4712), + [anon_sym_PIPE_EQ] = ACTIONS(4712), + [anon_sym_xor_EQ] = ACTIONS(4712), + [anon_sym_LT_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_GT_EQ] = ACTIONS(4712), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4714), + [anon_sym_yield] = ACTIONS(4714), + [anon_sym_COLON] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4714), + [anon_sym_continue] = ACTIONS(4714), + [anon_sym_defer] = ACTIONS(4714), + [anon_sym_errdefer] = ACTIONS(4714), + [anon_sym_if] = ACTIONS(4714), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_while] = ACTIONS(4714), + [anon_sym_expand] = ACTIONS(4714), + [anon_sym_for] = ACTIONS(4714), + [anon_sym_match] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4712), + [anon_sym_orelse] = ACTIONS(4714), + [anon_sym_or] = ACTIONS(4714), + [anon_sym_and] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4714), + [anon_sym_xor] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4714), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_LT_LT_PIPE] = ACTIONS(4714), + [anon_sym_PLUS] = ACTIONS(4714), + [anon_sym_SLASH] = ACTIONS(4714), + [anon_sym_catch] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4712), + [anon_sym_try] = ACTIONS(4714), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_CARET] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4714), + [anon_sym_false] = ACTIONS(4714), + [anon_sym_null] = ACTIONS(4714), + [anon_sym_unreachable] = ACTIONS(4714), + [anon_sym_undefined] = ACTIONS(4714), + [sym_sink] = ACTIONS(4714), + [sym_integer] = ACTIONS(4714), + [sym_float] = ACTIONS(4712), + [anon_sym_DQUOTE] = ACTIONS(4712), + [sym_multiline_string] = ACTIONS(4712), + [sym_character] = ACTIONS(4712), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4712), + }, + [STATE(2228)] = { + [ts_builtin_sym_end] = ACTIONS(4716), + [sym_identifier] = ACTIONS(4718), + [anon_sym_import] = ACTIONS(4718), + [anon_sym_test] = ACTIONS(4718), + [anon_sym_hide] = ACTIONS(4718), + [anon_sym_func] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_struct] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_RBRACK] = ACTIONS(4716), + [anon_sym_void] = ACTIONS(4718), + [anon_sym_noreturn] = ACTIONS(4718), + [anon_sym_type] = ACTIONS(4718), + [anon_sym_anyopaque] = ACTIONS(4718), + [anon_sym_bool] = ACTIONS(4718), + [anon_sym_int] = ACTIONS(4718), + [anon_sym_uint] = ACTIONS(4718), + [anon_sym_float] = ACTIONS(4718), + [anon_sym_range] = ACTIONS(4718), + [anon_sym_i8] = ACTIONS(4718), + [anon_sym_i16] = ACTIONS(4718), + [anon_sym_i32] = ACTIONS(4718), + [anon_sym_i64] = ACTIONS(4718), + [anon_sym_u8] = ACTIONS(4718), + [anon_sym_u16] = ACTIONS(4718), + [anon_sym_u32] = ACTIONS(4718), + [anon_sym_u64] = ACTIONS(4718), + [anon_sym_isize] = ACTIONS(4718), + [anon_sym_usize] = ACTIONS(4718), + [anon_sym_f32] = ACTIONS(4718), + [anon_sym_f64] = ACTIONS(4718), + [anon_sym_c_char] = ACTIONS(4718), + [anon_sym_c_schar] = ACTIONS(4718), + [anon_sym_c_uchar] = ACTIONS(4718), + [anon_sym_c_short] = ACTIONS(4718), + [anon_sym_c_ushort] = ACTIONS(4718), + [anon_sym_c_int] = ACTIONS(4718), + [anon_sym_c_uint] = ACTIONS(4718), + [anon_sym_c_long] = ACTIONS(4718), + [anon_sym_c_ulong] = ACTIONS(4718), + [anon_sym_c_longlong] = ACTIONS(4718), + [anon_sym_c_ulonglong] = ACTIONS(4718), + [anon_sym_c_float] = ACTIONS(4718), + [anon_sym_c_double] = ACTIONS(4718), + [anon_sym_c_longdouble] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4716), + [anon_sym_STAR_EQ] = ACTIONS(4716), + [anon_sym_SLASH_EQ] = ACTIONS(4716), + [anon_sym_AMP_EQ] = ACTIONS(4716), + [anon_sym_PIPE_EQ] = ACTIONS(4716), + [anon_sym_xor_EQ] = ACTIONS(4716), + [anon_sym_LT_LT_EQ] = ACTIONS(4716), + [anon_sym_GT_GT_EQ] = ACTIONS(4716), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_yield] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4716), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_defer] = ACTIONS(4718), + [anon_sym_errdefer] = ACTIONS(4718), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_while] = ACTIONS(4718), + [anon_sym_expand] = ACTIONS(4718), + [anon_sym_for] = ACTIONS(4718), + [anon_sym_match] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4716), + [anon_sym_orelse] = ACTIONS(4718), + [anon_sym_or] = ACTIONS(4718), + [anon_sym_and] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_AMP] = ACTIONS(4718), + [anon_sym_xor] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4718), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_LT_LT_PIPE] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_catch] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_CARET] = ACTIONS(4716), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(4718), + [anon_sym_unreachable] = ACTIONS(4718), + [anon_sym_undefined] = ACTIONS(4718), + [sym_sink] = ACTIONS(4718), + [sym_integer] = ACTIONS(4718), + [sym_float] = ACTIONS(4716), + [anon_sym_DQUOTE] = ACTIONS(4716), + [sym_multiline_string] = ACTIONS(4716), + [sym_character] = ACTIONS(4716), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4716), + }, + [STATE(2229)] = { + [ts_builtin_sym_end] = ACTIONS(4720), + [sym_identifier] = ACTIONS(4722), + [anon_sym_import] = ACTIONS(4722), + [anon_sym_test] = ACTIONS(4722), + [anon_sym_hide] = ACTIONS(4722), + [anon_sym_func] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_QMARK] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_RBRACK] = ACTIONS(4720), + [anon_sym_void] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_type] = ACTIONS(4722), + [anon_sym_anyopaque] = ACTIONS(4722), + [anon_sym_bool] = ACTIONS(4722), + [anon_sym_int] = ACTIONS(4722), + [anon_sym_uint] = ACTIONS(4722), + [anon_sym_float] = ACTIONS(4722), + [anon_sym_range] = ACTIONS(4722), + [anon_sym_i8] = ACTIONS(4722), + [anon_sym_i16] = ACTIONS(4722), + [anon_sym_i32] = ACTIONS(4722), + [anon_sym_i64] = ACTIONS(4722), + [anon_sym_u8] = ACTIONS(4722), + [anon_sym_u16] = ACTIONS(4722), + [anon_sym_u32] = ACTIONS(4722), + [anon_sym_u64] = ACTIONS(4722), + [anon_sym_isize] = ACTIONS(4722), + [anon_sym_usize] = ACTIONS(4722), + [anon_sym_f32] = ACTIONS(4722), + [anon_sym_f64] = ACTIONS(4722), + [anon_sym_c_char] = ACTIONS(4722), + [anon_sym_c_schar] = ACTIONS(4722), + [anon_sym_c_uchar] = ACTIONS(4722), + [anon_sym_c_short] = ACTIONS(4722), + [anon_sym_c_ushort] = ACTIONS(4722), + [anon_sym_c_int] = ACTIONS(4722), + [anon_sym_c_uint] = ACTIONS(4722), + [anon_sym_c_long] = ACTIONS(4722), + [anon_sym_c_ulong] = ACTIONS(4722), + [anon_sym_c_longlong] = ACTIONS(4722), + [anon_sym_c_ulonglong] = ACTIONS(4722), + [anon_sym_c_float] = ACTIONS(4722), + [anon_sym_c_double] = ACTIONS(4722), + [anon_sym_c_longdouble] = ACTIONS(4722), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_AMP_EQ] = ACTIONS(4720), + [anon_sym_PIPE_EQ] = ACTIONS(4720), + [anon_sym_xor_EQ] = ACTIONS(4720), + [anon_sym_LT_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_GT_EQ] = ACTIONS(4720), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4720), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_yield] = ACTIONS(4722), + [anon_sym_COLON] = ACTIONS(4720), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_defer] = ACTIONS(4722), + [anon_sym_errdefer] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_while] = ACTIONS(4722), + [anon_sym_expand] = ACTIONS(4722), + [anon_sym_for] = ACTIONS(4722), + [anon_sym_match] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4720), + [anon_sym_orelse] = ACTIONS(4722), + [anon_sym_or] = ACTIONS(4722), + [anon_sym_and] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), + [anon_sym_xor] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT_PIPE] = ACTIONS(4722), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_catch] = ACTIONS(4722), + [anon_sym_TILDE] = ACTIONS(4720), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_unreachable] = ACTIONS(4722), + [anon_sym_undefined] = ACTIONS(4722), + [sym_sink] = ACTIONS(4722), + [sym_integer] = ACTIONS(4722), + [sym_float] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4720), + [sym_multiline_string] = ACTIONS(4720), + [sym_character] = ACTIONS(4720), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4720), + }, + [STATE(2230)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7220), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2231), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4724), + }, + [STATE(2231)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7235), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2232)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7236), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2235), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4726), + }, + [STATE(2233)] = { + [ts_builtin_sym_end] = ACTIONS(4728), + [sym_identifier] = ACTIONS(4730), + [anon_sym_import] = ACTIONS(4730), + [anon_sym_test] = ACTIONS(4730), + [anon_sym_hide] = ACTIONS(4730), + [anon_sym_func] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_struct] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_RBRACK] = ACTIONS(4728), + [anon_sym_void] = ACTIONS(4730), + [anon_sym_noreturn] = ACTIONS(4730), + [anon_sym_type] = ACTIONS(4730), + [anon_sym_anyopaque] = ACTIONS(4730), + [anon_sym_bool] = ACTIONS(4730), + [anon_sym_int] = ACTIONS(4730), + [anon_sym_uint] = ACTIONS(4730), + [anon_sym_float] = ACTIONS(4730), + [anon_sym_range] = ACTIONS(4730), + [anon_sym_i8] = ACTIONS(4730), + [anon_sym_i16] = ACTIONS(4730), + [anon_sym_i32] = ACTIONS(4730), + [anon_sym_i64] = ACTIONS(4730), + [anon_sym_u8] = ACTIONS(4730), + [anon_sym_u16] = ACTIONS(4730), + [anon_sym_u32] = ACTIONS(4730), + [anon_sym_u64] = ACTIONS(4730), + [anon_sym_isize] = ACTIONS(4730), + [anon_sym_usize] = ACTIONS(4730), + [anon_sym_f32] = ACTIONS(4730), + [anon_sym_f64] = ACTIONS(4730), + [anon_sym_c_char] = ACTIONS(4730), + [anon_sym_c_schar] = ACTIONS(4730), + [anon_sym_c_uchar] = ACTIONS(4730), + [anon_sym_c_short] = ACTIONS(4730), + [anon_sym_c_ushort] = ACTIONS(4730), + [anon_sym_c_int] = ACTIONS(4730), + [anon_sym_c_uint] = ACTIONS(4730), + [anon_sym_c_long] = ACTIONS(4730), + [anon_sym_c_ulong] = ACTIONS(4730), + [anon_sym_c_longlong] = ACTIONS(4730), + [anon_sym_c_ulonglong] = ACTIONS(4730), + [anon_sym_c_float] = ACTIONS(4730), + [anon_sym_c_double] = ACTIONS(4730), + [anon_sym_c_longdouble] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_AMP_EQ] = ACTIONS(4728), + [anon_sym_PIPE_EQ] = ACTIONS(4728), + [anon_sym_xor_EQ] = ACTIONS(4728), + [anon_sym_LT_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_GT_EQ] = ACTIONS(4728), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4730), + [anon_sym_yield] = ACTIONS(4730), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_break] = ACTIONS(4730), + [anon_sym_continue] = ACTIONS(4730), + [anon_sym_defer] = ACTIONS(4730), + [anon_sym_errdefer] = ACTIONS(4730), + [anon_sym_if] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_while] = ACTIONS(4730), + [anon_sym_expand] = ACTIONS(4730), + [anon_sym_for] = ACTIONS(4730), + [anon_sym_match] = ACTIONS(4730), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4728), + [anon_sym_orelse] = ACTIONS(4730), + [anon_sym_or] = ACTIONS(4730), + [anon_sym_and] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_xor] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_LT_LT_PIPE] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4730), + [anon_sym_catch] = ACTIONS(4730), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4730), + [anon_sym_false] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4730), + [anon_sym_unreachable] = ACTIONS(4730), + [anon_sym_undefined] = ACTIONS(4730), + [sym_sink] = ACTIONS(4730), + [sym_integer] = ACTIONS(4730), + [sym_float] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [sym_multiline_string] = ACTIONS(4728), + [sym_character] = ACTIONS(4728), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4728), + }, + [STATE(2234)] = { + [ts_builtin_sym_end] = ACTIONS(4732), + [sym_identifier] = ACTIONS(4734), + [anon_sym_import] = ACTIONS(4736), + [anon_sym_test] = ACTIONS(4736), + [anon_sym_hide] = ACTIONS(4736), + [anon_sym_func] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4738), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(4732), + [anon_sym_RBRACK] = ACTIONS(4732), + [anon_sym_void] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_type] = ACTIONS(4734), + [anon_sym_anyopaque] = ACTIONS(4734), + [anon_sym_bool] = ACTIONS(4734), + [anon_sym_int] = ACTIONS(4734), + [anon_sym_uint] = ACTIONS(4734), + [anon_sym_float] = ACTIONS(4734), + [anon_sym_range] = ACTIONS(4734), + [anon_sym_i8] = ACTIONS(4734), + [anon_sym_i16] = ACTIONS(4734), + [anon_sym_i32] = ACTIONS(4734), + [anon_sym_i64] = ACTIONS(4734), + [anon_sym_u8] = ACTIONS(4734), + [anon_sym_u16] = ACTIONS(4734), + [anon_sym_u32] = ACTIONS(4734), + [anon_sym_u64] = ACTIONS(4734), + [anon_sym_isize] = ACTIONS(4734), + [anon_sym_usize] = ACTIONS(4734), + [anon_sym_f32] = ACTIONS(4734), + [anon_sym_f64] = ACTIONS(4734), + [anon_sym_c_char] = ACTIONS(4734), + [anon_sym_c_schar] = ACTIONS(4734), + [anon_sym_c_uchar] = ACTIONS(4734), + [anon_sym_c_short] = ACTIONS(4734), + [anon_sym_c_ushort] = ACTIONS(4734), + [anon_sym_c_int] = ACTIONS(4734), + [anon_sym_c_uint] = ACTIONS(4734), + [anon_sym_c_long] = ACTIONS(4734), + [anon_sym_c_ulong] = ACTIONS(4734), + [anon_sym_c_longlong] = ACTIONS(4734), + [anon_sym_c_ulonglong] = ACTIONS(4734), + [anon_sym_c_float] = ACTIONS(4734), + [anon_sym_c_double] = ACTIONS(4734), + [anon_sym_c_longdouble] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_AMP_EQ] = ACTIONS(4732), + [anon_sym_PIPE_EQ] = ACTIONS(4732), + [anon_sym_xor_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_GT_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_COLON] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_defer] = ACTIONS(4734), + [anon_sym_errdefer] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_expand] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4738), + [anon_sym_orelse] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4734), + [anon_sym_xor] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_LT_LT_PIPE] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_catch] = ACTIONS(4734), + [anon_sym_TILDE] = ACTIONS(4738), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_unreachable] = ACTIONS(4734), + [anon_sym_undefined] = ACTIONS(4734), + [sym_sink] = ACTIONS(4734), + [sym_integer] = ACTIONS(4734), + [sym_float] = ACTIONS(4738), + [anon_sym_DQUOTE] = ACTIONS(4738), + [sym_multiline_string] = ACTIONS(4738), + [sym_character] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4738), + }, + [STATE(2235)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7252), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2236)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7253), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2239), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4740), + }, + [STATE(2237)] = { + [ts_builtin_sym_end] = ACTIONS(4742), + [sym_identifier] = ACTIONS(4744), + [anon_sym_import] = ACTIONS(4744), + [anon_sym_test] = ACTIONS(4744), + [anon_sym_hide] = ACTIONS(4744), + [anon_sym_func] = ACTIONS(4744), + [anon_sym_BANG] = ACTIONS(4744), + [anon_sym_EQ] = ACTIONS(4744), + [anon_sym_struct] = ACTIONS(4744), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(4744), + [anon_sym_DOLLAR] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4744), + [anon_sym_QMARK] = ACTIONS(4742), + [anon_sym_STAR] = ACTIONS(4744), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_RBRACK] = ACTIONS(4742), + [anon_sym_void] = ACTIONS(4744), + [anon_sym_noreturn] = ACTIONS(4744), + [anon_sym_type] = ACTIONS(4744), + [anon_sym_anyopaque] = ACTIONS(4744), + [anon_sym_bool] = ACTIONS(4744), + [anon_sym_int] = ACTIONS(4744), + [anon_sym_uint] = ACTIONS(4744), + [anon_sym_float] = ACTIONS(4744), + [anon_sym_range] = ACTIONS(4744), + [anon_sym_i8] = ACTIONS(4744), + [anon_sym_i16] = ACTIONS(4744), + [anon_sym_i32] = ACTIONS(4744), + [anon_sym_i64] = ACTIONS(4744), + [anon_sym_u8] = ACTIONS(4744), + [anon_sym_u16] = ACTIONS(4744), + [anon_sym_u32] = ACTIONS(4744), + [anon_sym_u64] = ACTIONS(4744), + [anon_sym_isize] = ACTIONS(4744), + [anon_sym_usize] = ACTIONS(4744), + [anon_sym_f32] = ACTIONS(4744), + [anon_sym_f64] = ACTIONS(4744), + [anon_sym_c_char] = ACTIONS(4744), + [anon_sym_c_schar] = ACTIONS(4744), + [anon_sym_c_uchar] = ACTIONS(4744), + [anon_sym_c_short] = ACTIONS(4744), + [anon_sym_c_ushort] = ACTIONS(4744), + [anon_sym_c_int] = ACTIONS(4744), + [anon_sym_c_uint] = ACTIONS(4744), + [anon_sym_c_long] = ACTIONS(4744), + [anon_sym_c_ulong] = ACTIONS(4744), + [anon_sym_c_longlong] = ACTIONS(4744), + [anon_sym_c_ulonglong] = ACTIONS(4744), + [anon_sym_c_float] = ACTIONS(4744), + [anon_sym_c_double] = ACTIONS(4744), + [anon_sym_c_longdouble] = ACTIONS(4744), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_AMP_EQ] = ACTIONS(4742), + [anon_sym_PIPE_EQ] = ACTIONS(4742), + [anon_sym_xor_EQ] = ACTIONS(4742), + [anon_sym_LT_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_GT_EQ] = ACTIONS(4742), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4742), + [anon_sym_return] = ACTIONS(4744), + [anon_sym_yield] = ACTIONS(4744), + [anon_sym_COLON] = ACTIONS(4742), + [anon_sym_break] = ACTIONS(4744), + [anon_sym_continue] = ACTIONS(4744), + [anon_sym_defer] = ACTIONS(4744), + [anon_sym_errdefer] = ACTIONS(4744), + [anon_sym_if] = ACTIONS(4744), + [anon_sym_else] = ACTIONS(4744), + [anon_sym_while] = ACTIONS(4744), + [anon_sym_expand] = ACTIONS(4744), + [anon_sym_for] = ACTIONS(4744), + [anon_sym_match] = ACTIONS(4744), + [anon_sym_DOT_DOT] = ACTIONS(4744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4742), + [anon_sym_orelse] = ACTIONS(4744), + [anon_sym_or] = ACTIONS(4744), + [anon_sym_and] = ACTIONS(4744), + [anon_sym_EQ_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4744), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4744), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_AMP] = ACTIONS(4744), + [anon_sym_xor] = ACTIONS(4744), + [anon_sym_LT_LT] = ACTIONS(4744), + [anon_sym_GT_GT] = ACTIONS(4744), + [anon_sym_LT_LT_PIPE] = ACTIONS(4744), + [anon_sym_PLUS] = ACTIONS(4744), + [anon_sym_SLASH] = ACTIONS(4744), + [anon_sym_catch] = ACTIONS(4744), + [anon_sym_TILDE] = ACTIONS(4742), + [anon_sym_try] = ACTIONS(4744), + [anon_sym_DOT] = ACTIONS(4744), + [anon_sym_CARET] = ACTIONS(4742), + [anon_sym_true] = ACTIONS(4744), + [anon_sym_false] = ACTIONS(4744), + [anon_sym_null] = ACTIONS(4744), + [anon_sym_unreachable] = ACTIONS(4744), + [anon_sym_undefined] = ACTIONS(4744), + [sym_sink] = ACTIONS(4744), + [sym_integer] = ACTIONS(4744), + [sym_float] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [sym_multiline_string] = ACTIONS(4742), + [sym_character] = ACTIONS(4742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4742), + }, + [STATE(2238)] = { + [ts_builtin_sym_end] = ACTIONS(4746), + [sym_identifier] = ACTIONS(4748), + [anon_sym_import] = ACTIONS(4748), + [anon_sym_test] = ACTIONS(4748), + [anon_sym_hide] = ACTIONS(4748), + [anon_sym_func] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4748), + [anon_sym_struct] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_RPAREN] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_COMMA] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_DOLLAR] = ACTIONS(4746), + [anon_sym_PIPE] = ACTIONS(4748), + [anon_sym_QMARK] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4746), + [anon_sym_RBRACK] = ACTIONS(4746), + [anon_sym_void] = ACTIONS(4748), + [anon_sym_noreturn] = ACTIONS(4748), + [anon_sym_type] = ACTIONS(4748), + [anon_sym_anyopaque] = ACTIONS(4748), + [anon_sym_bool] = ACTIONS(4748), + [anon_sym_int] = ACTIONS(4748), + [anon_sym_uint] = ACTIONS(4748), + [anon_sym_float] = ACTIONS(4748), + [anon_sym_range] = ACTIONS(4748), + [anon_sym_i8] = ACTIONS(4748), + [anon_sym_i16] = ACTIONS(4748), + [anon_sym_i32] = ACTIONS(4748), + [anon_sym_i64] = ACTIONS(4748), + [anon_sym_u8] = ACTIONS(4748), + [anon_sym_u16] = ACTIONS(4748), + [anon_sym_u32] = ACTIONS(4748), + [anon_sym_u64] = ACTIONS(4748), + [anon_sym_isize] = ACTIONS(4748), + [anon_sym_usize] = ACTIONS(4748), + [anon_sym_f32] = ACTIONS(4748), + [anon_sym_f64] = ACTIONS(4748), + [anon_sym_c_char] = ACTIONS(4748), + [anon_sym_c_schar] = ACTIONS(4748), + [anon_sym_c_uchar] = ACTIONS(4748), + [anon_sym_c_short] = ACTIONS(4748), + [anon_sym_c_ushort] = ACTIONS(4748), + [anon_sym_c_int] = ACTIONS(4748), + [anon_sym_c_uint] = ACTIONS(4748), + [anon_sym_c_long] = ACTIONS(4748), + [anon_sym_c_ulong] = ACTIONS(4748), + [anon_sym_c_longlong] = ACTIONS(4748), + [anon_sym_c_ulonglong] = ACTIONS(4748), + [anon_sym_c_float] = ACTIONS(4748), + [anon_sym_c_double] = ACTIONS(4748), + [anon_sym_c_longdouble] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4746), + [anon_sym_DASH_EQ] = ACTIONS(4746), + [anon_sym_STAR_EQ] = ACTIONS(4746), + [anon_sym_SLASH_EQ] = ACTIONS(4746), + [anon_sym_AMP_EQ] = ACTIONS(4746), + [anon_sym_PIPE_EQ] = ACTIONS(4746), + [anon_sym_xor_EQ] = ACTIONS(4746), + [anon_sym_LT_LT_EQ] = ACTIONS(4746), + [anon_sym_GT_GT_EQ] = ACTIONS(4746), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4748), + [anon_sym_yield] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_break] = ACTIONS(4748), + [anon_sym_continue] = ACTIONS(4748), + [anon_sym_defer] = ACTIONS(4748), + [anon_sym_errdefer] = ACTIONS(4748), + [anon_sym_if] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_while] = ACTIONS(4748), + [anon_sym_expand] = ACTIONS(4748), + [anon_sym_for] = ACTIONS(4748), + [anon_sym_match] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4746), + [anon_sym_orelse] = ACTIONS(4748), + [anon_sym_or] = ACTIONS(4748), + [anon_sym_and] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_LT] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4746), + [anon_sym_AMP] = ACTIONS(4748), + [anon_sym_xor] = ACTIONS(4748), + [anon_sym_LT_LT] = ACTIONS(4748), + [anon_sym_GT_GT] = ACTIONS(4748), + [anon_sym_LT_LT_PIPE] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4748), + [anon_sym_SLASH] = ACTIONS(4748), + [anon_sym_catch] = ACTIONS(4748), + [anon_sym_TILDE] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_CARET] = ACTIONS(4746), + [anon_sym_true] = ACTIONS(4748), + [anon_sym_false] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4748), + [anon_sym_unreachable] = ACTIONS(4748), + [anon_sym_undefined] = ACTIONS(4748), + [sym_sink] = ACTIONS(4748), + [sym_integer] = ACTIONS(4748), + [sym_float] = ACTIONS(4746), + [anon_sym_DQUOTE] = ACTIONS(4746), + [sym_multiline_string] = ACTIONS(4746), + [sym_character] = ACTIONS(4746), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4746), + }, + [STATE(2239)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7278), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6574), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(593), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2240)] = { + [ts_builtin_sym_end] = ACTIONS(4750), + [sym_identifier] = ACTIONS(4752), + [anon_sym_import] = ACTIONS(4752), + [anon_sym_test] = ACTIONS(4752), + [anon_sym_hide] = ACTIONS(4752), + [anon_sym_func] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4752), + [anon_sym_EQ] = ACTIONS(4752), + [anon_sym_struct] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4750), + [anon_sym_RPAREN] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4750), + [anon_sym_COMMA] = ACTIONS(4750), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4752), + [anon_sym_DOLLAR] = ACTIONS(4750), + [anon_sym_PIPE] = ACTIONS(4752), + [anon_sym_QMARK] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4750), + [anon_sym_RBRACK] = ACTIONS(4750), + [anon_sym_void] = ACTIONS(4752), + [anon_sym_noreturn] = ACTIONS(4752), + [anon_sym_type] = ACTIONS(4752), + [anon_sym_anyopaque] = ACTIONS(4752), + [anon_sym_bool] = ACTIONS(4752), + [anon_sym_int] = ACTIONS(4752), + [anon_sym_uint] = ACTIONS(4752), + [anon_sym_float] = ACTIONS(4752), + [anon_sym_range] = ACTIONS(4752), + [anon_sym_i8] = ACTIONS(4752), + [anon_sym_i16] = ACTIONS(4752), + [anon_sym_i32] = ACTIONS(4752), + [anon_sym_i64] = ACTIONS(4752), + [anon_sym_u8] = ACTIONS(4752), + [anon_sym_u16] = ACTIONS(4752), + [anon_sym_u32] = ACTIONS(4752), + [anon_sym_u64] = ACTIONS(4752), + [anon_sym_isize] = ACTIONS(4752), + [anon_sym_usize] = ACTIONS(4752), + [anon_sym_f32] = ACTIONS(4752), + [anon_sym_f64] = ACTIONS(4752), + [anon_sym_c_char] = ACTIONS(4752), + [anon_sym_c_schar] = ACTIONS(4752), + [anon_sym_c_uchar] = ACTIONS(4752), + [anon_sym_c_short] = ACTIONS(4752), + [anon_sym_c_ushort] = ACTIONS(4752), + [anon_sym_c_int] = ACTIONS(4752), + [anon_sym_c_uint] = ACTIONS(4752), + [anon_sym_c_long] = ACTIONS(4752), + [anon_sym_c_ulong] = ACTIONS(4752), + [anon_sym_c_longlong] = ACTIONS(4752), + [anon_sym_c_ulonglong] = ACTIONS(4752), + [anon_sym_c_float] = ACTIONS(4752), + [anon_sym_c_double] = ACTIONS(4752), + [anon_sym_c_longdouble] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4750), + [anon_sym_DASH_EQ] = ACTIONS(4750), + [anon_sym_STAR_EQ] = ACTIONS(4750), + [anon_sym_SLASH_EQ] = ACTIONS(4750), + [anon_sym_AMP_EQ] = ACTIONS(4750), + [anon_sym_PIPE_EQ] = ACTIONS(4750), + [anon_sym_xor_EQ] = ACTIONS(4750), + [anon_sym_LT_LT_EQ] = ACTIONS(4750), + [anon_sym_GT_GT_EQ] = ACTIONS(4750), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4752), + [anon_sym_yield] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_break] = ACTIONS(4752), + [anon_sym_continue] = ACTIONS(4752), + [anon_sym_defer] = ACTIONS(4752), + [anon_sym_errdefer] = ACTIONS(4752), + [anon_sym_if] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4752), + [anon_sym_while] = ACTIONS(4752), + [anon_sym_expand] = ACTIONS(4752), + [anon_sym_for] = ACTIONS(4752), + [anon_sym_match] = ACTIONS(4752), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4750), + [anon_sym_orelse] = ACTIONS(4752), + [anon_sym_or] = ACTIONS(4752), + [anon_sym_and] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_LT] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4750), + [anon_sym_AMP] = ACTIONS(4752), + [anon_sym_xor] = ACTIONS(4752), + [anon_sym_LT_LT] = ACTIONS(4752), + [anon_sym_GT_GT] = ACTIONS(4752), + [anon_sym_LT_LT_PIPE] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4752), + [anon_sym_SLASH] = ACTIONS(4752), + [anon_sym_catch] = ACTIONS(4752), + [anon_sym_TILDE] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4752), + [anon_sym_CARET] = ACTIONS(4750), + [anon_sym_true] = ACTIONS(4752), + [anon_sym_false] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4752), + [anon_sym_unreachable] = ACTIONS(4752), + [anon_sym_undefined] = ACTIONS(4752), + [sym_sink] = ACTIONS(4752), + [sym_integer] = ACTIONS(4752), + [sym_float] = ACTIONS(4750), + [anon_sym_DQUOTE] = ACTIONS(4750), + [sym_multiline_string] = ACTIONS(4750), + [sym_character] = ACTIONS(4750), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4750), + }, + [STATE(2241)] = { + [ts_builtin_sym_end] = ACTIONS(4754), + [sym_identifier] = ACTIONS(4756), + [anon_sym_import] = ACTIONS(4756), + [anon_sym_test] = ACTIONS(4756), + [anon_sym_hide] = ACTIONS(4756), + [anon_sym_func] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_struct] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4754), + [anon_sym_RPAREN] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4754), + [anon_sym_COMMA] = ACTIONS(4754), + [anon_sym_RBRACE] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_QMARK] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4754), + [anon_sym_RBRACK] = ACTIONS(4754), + [anon_sym_void] = ACTIONS(4756), + [anon_sym_noreturn] = ACTIONS(4756), + [anon_sym_type] = ACTIONS(4756), + [anon_sym_anyopaque] = ACTIONS(4756), + [anon_sym_bool] = ACTIONS(4756), + [anon_sym_int] = ACTIONS(4756), + [anon_sym_uint] = ACTIONS(4756), + [anon_sym_float] = ACTIONS(4756), + [anon_sym_range] = ACTIONS(4756), + [anon_sym_i8] = ACTIONS(4756), + [anon_sym_i16] = ACTIONS(4756), + [anon_sym_i32] = ACTIONS(4756), + [anon_sym_i64] = ACTIONS(4756), + [anon_sym_u8] = ACTIONS(4756), + [anon_sym_u16] = ACTIONS(4756), + [anon_sym_u32] = ACTIONS(4756), + [anon_sym_u64] = ACTIONS(4756), + [anon_sym_isize] = ACTIONS(4756), + [anon_sym_usize] = ACTIONS(4756), + [anon_sym_f32] = ACTIONS(4756), + [anon_sym_f64] = ACTIONS(4756), + [anon_sym_c_char] = ACTIONS(4756), + [anon_sym_c_schar] = ACTIONS(4756), + [anon_sym_c_uchar] = ACTIONS(4756), + [anon_sym_c_short] = ACTIONS(4756), + [anon_sym_c_ushort] = ACTIONS(4756), + [anon_sym_c_int] = ACTIONS(4756), + [anon_sym_c_uint] = ACTIONS(4756), + [anon_sym_c_long] = ACTIONS(4756), + [anon_sym_c_ulong] = ACTIONS(4756), + [anon_sym_c_longlong] = ACTIONS(4756), + [anon_sym_c_ulonglong] = ACTIONS(4756), + [anon_sym_c_float] = ACTIONS(4756), + [anon_sym_c_double] = ACTIONS(4756), + [anon_sym_c_longdouble] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4754), + [anon_sym_DASH_EQ] = ACTIONS(4754), + [anon_sym_STAR_EQ] = ACTIONS(4754), + [anon_sym_SLASH_EQ] = ACTIONS(4754), + [anon_sym_AMP_EQ] = ACTIONS(4754), + [anon_sym_PIPE_EQ] = ACTIONS(4754), + [anon_sym_xor_EQ] = ACTIONS(4754), + [anon_sym_LT_LT_EQ] = ACTIONS(4754), + [anon_sym_GT_GT_EQ] = ACTIONS(4754), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4756), + [anon_sym_yield] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4756), + [anon_sym_continue] = ACTIONS(4756), + [anon_sym_defer] = ACTIONS(4756), + [anon_sym_errdefer] = ACTIONS(4756), + [anon_sym_if] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4756), + [anon_sym_while] = ACTIONS(4756), + [anon_sym_expand] = ACTIONS(4756), + [anon_sym_for] = ACTIONS(4756), + [anon_sym_match] = ACTIONS(4756), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4754), + [anon_sym_orelse] = ACTIONS(4756), + [anon_sym_or] = ACTIONS(4756), + [anon_sym_and] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + [anon_sym_xor] = ACTIONS(4756), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4756), + [anon_sym_LT_LT_PIPE] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4756), + [anon_sym_SLASH] = ACTIONS(4756), + [anon_sym_catch] = ACTIONS(4756), + [anon_sym_TILDE] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4756), + [anon_sym_CARET] = ACTIONS(4754), + [anon_sym_true] = ACTIONS(4756), + [anon_sym_false] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4756), + [anon_sym_unreachable] = ACTIONS(4756), + [anon_sym_undefined] = ACTIONS(4756), + [sym_sink] = ACTIONS(4756), + [sym_integer] = ACTIONS(4756), + [sym_float] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [sym_multiline_string] = ACTIONS(4754), + [sym_character] = ACTIONS(4754), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4754), + }, + [STATE(2242)] = { + [ts_builtin_sym_end] = ACTIONS(4758), + [sym_identifier] = ACTIONS(4760), + [anon_sym_import] = ACTIONS(4760), + [anon_sym_test] = ACTIONS(4760), + [anon_sym_hide] = ACTIONS(4760), + [anon_sym_func] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4760), + [anon_sym_EQ] = ACTIONS(4760), + [anon_sym_struct] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4758), + [anon_sym_COMMA] = ACTIONS(4758), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4760), + [anon_sym_DOLLAR] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4760), + [anon_sym_QMARK] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_RBRACK] = ACTIONS(4758), + [anon_sym_void] = ACTIONS(4760), + [anon_sym_noreturn] = ACTIONS(4760), + [anon_sym_type] = ACTIONS(4760), + [anon_sym_anyopaque] = ACTIONS(4760), + [anon_sym_bool] = ACTIONS(4760), + [anon_sym_int] = ACTIONS(4760), + [anon_sym_uint] = ACTIONS(4760), + [anon_sym_float] = ACTIONS(4760), + [anon_sym_range] = ACTIONS(4760), + [anon_sym_i8] = ACTIONS(4760), + [anon_sym_i16] = ACTIONS(4760), + [anon_sym_i32] = ACTIONS(4760), + [anon_sym_i64] = ACTIONS(4760), + [anon_sym_u8] = ACTIONS(4760), + [anon_sym_u16] = ACTIONS(4760), + [anon_sym_u32] = ACTIONS(4760), + [anon_sym_u64] = ACTIONS(4760), + [anon_sym_isize] = ACTIONS(4760), + [anon_sym_usize] = ACTIONS(4760), + [anon_sym_f32] = ACTIONS(4760), + [anon_sym_f64] = ACTIONS(4760), + [anon_sym_c_char] = ACTIONS(4760), + [anon_sym_c_schar] = ACTIONS(4760), + [anon_sym_c_uchar] = ACTIONS(4760), + [anon_sym_c_short] = ACTIONS(4760), + [anon_sym_c_ushort] = ACTIONS(4760), + [anon_sym_c_int] = ACTIONS(4760), + [anon_sym_c_uint] = ACTIONS(4760), + [anon_sym_c_long] = ACTIONS(4760), + [anon_sym_c_ulong] = ACTIONS(4760), + [anon_sym_c_longlong] = ACTIONS(4760), + [anon_sym_c_ulonglong] = ACTIONS(4760), + [anon_sym_c_float] = ACTIONS(4760), + [anon_sym_c_double] = ACTIONS(4760), + [anon_sym_c_longdouble] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4758), + [anon_sym_DASH_EQ] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(4758), + [anon_sym_SLASH_EQ] = ACTIONS(4758), + [anon_sym_AMP_EQ] = ACTIONS(4758), + [anon_sym_PIPE_EQ] = ACTIONS(4758), + [anon_sym_xor_EQ] = ACTIONS(4758), + [anon_sym_LT_LT_EQ] = ACTIONS(4758), + [anon_sym_GT_GT_EQ] = ACTIONS(4758), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4760), + [anon_sym_yield] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_break] = ACTIONS(4760), + [anon_sym_continue] = ACTIONS(4760), + [anon_sym_defer] = ACTIONS(4760), + [anon_sym_errdefer] = ACTIONS(4760), + [anon_sym_if] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4760), + [anon_sym_while] = ACTIONS(4760), + [anon_sym_expand] = ACTIONS(4760), + [anon_sym_for] = ACTIONS(4760), + [anon_sym_match] = ACTIONS(4760), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4758), + [anon_sym_orelse] = ACTIONS(4760), + [anon_sym_or] = ACTIONS(4760), + [anon_sym_and] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4758), + [anon_sym_AMP] = ACTIONS(4760), + [anon_sym_xor] = ACTIONS(4760), + [anon_sym_LT_LT] = ACTIONS(4760), + [anon_sym_GT_GT] = ACTIONS(4760), + [anon_sym_LT_LT_PIPE] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_catch] = ACTIONS(4760), + [anon_sym_TILDE] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4760), + [anon_sym_CARET] = ACTIONS(4758), + [anon_sym_true] = ACTIONS(4760), + [anon_sym_false] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4760), + [anon_sym_unreachable] = ACTIONS(4760), + [anon_sym_undefined] = ACTIONS(4760), + [sym_sink] = ACTIONS(4760), + [sym_integer] = ACTIONS(4760), + [sym_float] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [sym_multiline_string] = ACTIONS(4758), + [sym_character] = ACTIONS(4758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4758), + }, + [STATE(2243)] = { + [ts_builtin_sym_end] = ACTIONS(4762), + [sym_identifier] = ACTIONS(4764), + [anon_sym_import] = ACTIONS(4764), + [anon_sym_test] = ACTIONS(4764), + [anon_sym_hide] = ACTIONS(4764), + [anon_sym_func] = ACTIONS(4764), + [anon_sym_BANG] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4764), + [anon_sym_struct] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4762), + [anon_sym_RPAREN] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4764), + [anon_sym_DOLLAR] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4764), + [anon_sym_QMARK] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_RBRACK] = ACTIONS(4762), + [anon_sym_void] = ACTIONS(4764), + [anon_sym_noreturn] = ACTIONS(4764), + [anon_sym_type] = ACTIONS(4764), + [anon_sym_anyopaque] = ACTIONS(4764), + [anon_sym_bool] = ACTIONS(4764), + [anon_sym_int] = ACTIONS(4764), + [anon_sym_uint] = ACTIONS(4764), + [anon_sym_float] = ACTIONS(4764), + [anon_sym_range] = ACTIONS(4764), + [anon_sym_i8] = ACTIONS(4764), + [anon_sym_i16] = ACTIONS(4764), + [anon_sym_i32] = ACTIONS(4764), + [anon_sym_i64] = ACTIONS(4764), + [anon_sym_u8] = ACTIONS(4764), + [anon_sym_u16] = ACTIONS(4764), + [anon_sym_u32] = ACTIONS(4764), + [anon_sym_u64] = ACTIONS(4764), + [anon_sym_isize] = ACTIONS(4764), + [anon_sym_usize] = ACTIONS(4764), + [anon_sym_f32] = ACTIONS(4764), + [anon_sym_f64] = ACTIONS(4764), + [anon_sym_c_char] = ACTIONS(4764), + [anon_sym_c_schar] = ACTIONS(4764), + [anon_sym_c_uchar] = ACTIONS(4764), + [anon_sym_c_short] = ACTIONS(4764), + [anon_sym_c_ushort] = ACTIONS(4764), + [anon_sym_c_int] = ACTIONS(4764), + [anon_sym_c_uint] = ACTIONS(4764), + [anon_sym_c_long] = ACTIONS(4764), + [anon_sym_c_ulong] = ACTIONS(4764), + [anon_sym_c_longlong] = ACTIONS(4764), + [anon_sym_c_ulonglong] = ACTIONS(4764), + [anon_sym_c_float] = ACTIONS(4764), + [anon_sym_c_double] = ACTIONS(4764), + [anon_sym_c_longdouble] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4762), + [anon_sym_DASH_EQ] = ACTIONS(4762), + [anon_sym_STAR_EQ] = ACTIONS(4762), + [anon_sym_SLASH_EQ] = ACTIONS(4762), + [anon_sym_AMP_EQ] = ACTIONS(4762), + [anon_sym_PIPE_EQ] = ACTIONS(4762), + [anon_sym_xor_EQ] = ACTIONS(4762), + [anon_sym_LT_LT_EQ] = ACTIONS(4762), + [anon_sym_GT_GT_EQ] = ACTIONS(4762), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4764), + [anon_sym_yield] = ACTIONS(4764), + [anon_sym_COLON] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4764), + [anon_sym_continue] = ACTIONS(4764), + [anon_sym_defer] = ACTIONS(4764), + [anon_sym_errdefer] = ACTIONS(4764), + [anon_sym_if] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4764), + [anon_sym_while] = ACTIONS(4764), + [anon_sym_expand] = ACTIONS(4764), + [anon_sym_for] = ACTIONS(4764), + [anon_sym_match] = ACTIONS(4764), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4762), + [anon_sym_orelse] = ACTIONS(4764), + [anon_sym_or] = ACTIONS(4764), + [anon_sym_and] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4764), + [anon_sym_xor] = ACTIONS(4764), + [anon_sym_LT_LT] = ACTIONS(4764), + [anon_sym_GT_GT] = ACTIONS(4764), + [anon_sym_LT_LT_PIPE] = ACTIONS(4764), + [anon_sym_PLUS] = ACTIONS(4764), + [anon_sym_SLASH] = ACTIONS(4764), + [anon_sym_catch] = ACTIONS(4764), + [anon_sym_TILDE] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4764), + [anon_sym_CARET] = ACTIONS(4762), + [anon_sym_true] = ACTIONS(4764), + [anon_sym_false] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(4764), + [anon_sym_unreachable] = ACTIONS(4764), + [anon_sym_undefined] = ACTIONS(4764), + [sym_sink] = ACTIONS(4764), + [sym_integer] = ACTIONS(4764), + [sym_float] = ACTIONS(4762), + [anon_sym_DQUOTE] = ACTIONS(4762), + [sym_multiline_string] = ACTIONS(4762), + [sym_character] = ACTIONS(4762), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4762), + }, + [STATE(2244)] = { + [ts_builtin_sym_end] = ACTIONS(4766), + [sym_identifier] = ACTIONS(4768), + [anon_sym_import] = ACTIONS(4768), + [anon_sym_test] = ACTIONS(4768), + [anon_sym_hide] = ACTIONS(4768), + [anon_sym_func] = ACTIONS(4768), + [anon_sym_BANG] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_struct] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4766), + [anon_sym_RPAREN] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4766), + [anon_sym_COMMA] = ACTIONS(4766), + [anon_sym_RBRACE] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4768), + [anon_sym_QMARK] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_RBRACK] = ACTIONS(4766), + [anon_sym_void] = ACTIONS(4768), + [anon_sym_noreturn] = ACTIONS(4768), + [anon_sym_type] = ACTIONS(4768), + [anon_sym_anyopaque] = ACTIONS(4768), + [anon_sym_bool] = ACTIONS(4768), + [anon_sym_int] = ACTIONS(4768), + [anon_sym_uint] = ACTIONS(4768), + [anon_sym_float] = ACTIONS(4768), + [anon_sym_range] = ACTIONS(4768), + [anon_sym_i8] = ACTIONS(4768), + [anon_sym_i16] = ACTIONS(4768), + [anon_sym_i32] = ACTIONS(4768), + [anon_sym_i64] = ACTIONS(4768), + [anon_sym_u8] = ACTIONS(4768), + [anon_sym_u16] = ACTIONS(4768), + [anon_sym_u32] = ACTIONS(4768), + [anon_sym_u64] = ACTIONS(4768), + [anon_sym_isize] = ACTIONS(4768), + [anon_sym_usize] = ACTIONS(4768), + [anon_sym_f32] = ACTIONS(4768), + [anon_sym_f64] = ACTIONS(4768), + [anon_sym_c_char] = ACTIONS(4768), + [anon_sym_c_schar] = ACTIONS(4768), + [anon_sym_c_uchar] = ACTIONS(4768), + [anon_sym_c_short] = ACTIONS(4768), + [anon_sym_c_ushort] = ACTIONS(4768), + [anon_sym_c_int] = ACTIONS(4768), + [anon_sym_c_uint] = ACTIONS(4768), + [anon_sym_c_long] = ACTIONS(4768), + [anon_sym_c_ulong] = ACTIONS(4768), + [anon_sym_c_longlong] = ACTIONS(4768), + [anon_sym_c_ulonglong] = ACTIONS(4768), + [anon_sym_c_float] = ACTIONS(4768), + [anon_sym_c_double] = ACTIONS(4768), + [anon_sym_c_longdouble] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4766), + [anon_sym_DASH_EQ] = ACTIONS(4766), + [anon_sym_STAR_EQ] = ACTIONS(4766), + [anon_sym_SLASH_EQ] = ACTIONS(4766), + [anon_sym_AMP_EQ] = ACTIONS(4766), + [anon_sym_PIPE_EQ] = ACTIONS(4766), + [anon_sym_xor_EQ] = ACTIONS(4766), + [anon_sym_LT_LT_EQ] = ACTIONS(4766), + [anon_sym_GT_GT_EQ] = ACTIONS(4766), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4766), + [anon_sym_return] = ACTIONS(4768), + [anon_sym_yield] = ACTIONS(4768), + [anon_sym_COLON] = ACTIONS(4766), + [anon_sym_break] = ACTIONS(4768), + [anon_sym_continue] = ACTIONS(4768), + [anon_sym_defer] = ACTIONS(4768), + [anon_sym_errdefer] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_while] = ACTIONS(4768), + [anon_sym_expand] = ACTIONS(4768), + [anon_sym_for] = ACTIONS(4768), + [anon_sym_match] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4766), + [anon_sym_orelse] = ACTIONS(4768), + [anon_sym_or] = ACTIONS(4768), + [anon_sym_and] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4766), + [anon_sym_AMP] = ACTIONS(4768), + [anon_sym_xor] = ACTIONS(4768), + [anon_sym_LT_LT] = ACTIONS(4768), + [anon_sym_GT_GT] = ACTIONS(4768), + [anon_sym_LT_LT_PIPE] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4768), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_catch] = ACTIONS(4768), + [anon_sym_TILDE] = ACTIONS(4766), + [anon_sym_try] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_CARET] = ACTIONS(4766), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_unreachable] = ACTIONS(4768), + [anon_sym_undefined] = ACTIONS(4768), + [sym_sink] = ACTIONS(4768), + [sym_integer] = ACTIONS(4768), + [sym_float] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [sym_multiline_string] = ACTIONS(4766), + [sym_character] = ACTIONS(4766), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4766), + }, + [STATE(2245)] = { + [ts_builtin_sym_end] = ACTIONS(4770), + [sym_identifier] = ACTIONS(4772), + [anon_sym_import] = ACTIONS(4772), + [anon_sym_test] = ACTIONS(4772), + [anon_sym_hide] = ACTIONS(4772), + [anon_sym_func] = ACTIONS(4772), + [anon_sym_BANG] = ACTIONS(4772), + [anon_sym_EQ] = ACTIONS(4772), + [anon_sym_struct] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4772), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4772), + [anon_sym_QMARK] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_RBRACK] = ACTIONS(4770), + [anon_sym_void] = ACTIONS(4772), + [anon_sym_noreturn] = ACTIONS(4772), + [anon_sym_type] = ACTIONS(4772), + [anon_sym_anyopaque] = ACTIONS(4772), + [anon_sym_bool] = ACTIONS(4772), + [anon_sym_int] = ACTIONS(4772), + [anon_sym_uint] = ACTIONS(4772), + [anon_sym_float] = ACTIONS(4772), + [anon_sym_range] = ACTIONS(4772), + [anon_sym_i8] = ACTIONS(4772), + [anon_sym_i16] = ACTIONS(4772), + [anon_sym_i32] = ACTIONS(4772), + [anon_sym_i64] = ACTIONS(4772), + [anon_sym_u8] = ACTIONS(4772), + [anon_sym_u16] = ACTIONS(4772), + [anon_sym_u32] = ACTIONS(4772), + [anon_sym_u64] = ACTIONS(4772), + [anon_sym_isize] = ACTIONS(4772), + [anon_sym_usize] = ACTIONS(4772), + [anon_sym_f32] = ACTIONS(4772), + [anon_sym_f64] = ACTIONS(4772), + [anon_sym_c_char] = ACTIONS(4772), + [anon_sym_c_schar] = ACTIONS(4772), + [anon_sym_c_uchar] = ACTIONS(4772), + [anon_sym_c_short] = ACTIONS(4772), + [anon_sym_c_ushort] = ACTIONS(4772), + [anon_sym_c_int] = ACTIONS(4772), + [anon_sym_c_uint] = ACTIONS(4772), + [anon_sym_c_long] = ACTIONS(4772), + [anon_sym_c_ulong] = ACTIONS(4772), + [anon_sym_c_longlong] = ACTIONS(4772), + [anon_sym_c_ulonglong] = ACTIONS(4772), + [anon_sym_c_float] = ACTIONS(4772), + [anon_sym_c_double] = ACTIONS(4772), + [anon_sym_c_longdouble] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4770), + [anon_sym_DASH_EQ] = ACTIONS(4770), + [anon_sym_STAR_EQ] = ACTIONS(4770), + [anon_sym_SLASH_EQ] = ACTIONS(4770), + [anon_sym_AMP_EQ] = ACTIONS(4770), + [anon_sym_PIPE_EQ] = ACTIONS(4770), + [anon_sym_xor_EQ] = ACTIONS(4770), + [anon_sym_LT_LT_EQ] = ACTIONS(4770), + [anon_sym_GT_GT_EQ] = ACTIONS(4770), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4770), + [anon_sym_return] = ACTIONS(4772), + [anon_sym_yield] = ACTIONS(4772), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_break] = ACTIONS(4772), + [anon_sym_continue] = ACTIONS(4772), + [anon_sym_defer] = ACTIONS(4772), + [anon_sym_errdefer] = ACTIONS(4772), + [anon_sym_if] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4772), + [anon_sym_while] = ACTIONS(4772), + [anon_sym_expand] = ACTIONS(4772), + [anon_sym_for] = ACTIONS(4772), + [anon_sym_match] = ACTIONS(4772), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4770), + [anon_sym_orelse] = ACTIONS(4772), + [anon_sym_or] = ACTIONS(4772), + [anon_sym_and] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_AMP] = ACTIONS(4772), + [anon_sym_xor] = ACTIONS(4772), + [anon_sym_LT_LT] = ACTIONS(4772), + [anon_sym_GT_GT] = ACTIONS(4772), + [anon_sym_LT_LT_PIPE] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4772), + [anon_sym_SLASH] = ACTIONS(4772), + [anon_sym_catch] = ACTIONS(4772), + [anon_sym_TILDE] = ACTIONS(4770), + [anon_sym_try] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4772), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym_true] = ACTIONS(4772), + [anon_sym_false] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(4772), + [anon_sym_unreachable] = ACTIONS(4772), + [anon_sym_undefined] = ACTIONS(4772), + [sym_sink] = ACTIONS(4772), + [sym_integer] = ACTIONS(4772), + [sym_float] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [sym_multiline_string] = ACTIONS(4770), + [sym_character] = ACTIONS(4770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4770), + }, + [STATE(2246)] = { + [ts_builtin_sym_end] = ACTIONS(4774), + [sym_identifier] = ACTIONS(4776), + [anon_sym_import] = ACTIONS(4776), + [anon_sym_test] = ACTIONS(4776), + [anon_sym_hide] = ACTIONS(4776), + [anon_sym_func] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4776), + [anon_sym_struct] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4774), + [anon_sym_RPAREN] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4774), + [anon_sym_COMMA] = ACTIONS(4774), + [anon_sym_RBRACE] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4776), + [anon_sym_DOLLAR] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4776), + [anon_sym_QMARK] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_RBRACK] = ACTIONS(4774), + [anon_sym_void] = ACTIONS(4776), + [anon_sym_noreturn] = ACTIONS(4776), + [anon_sym_type] = ACTIONS(4776), + [anon_sym_anyopaque] = ACTIONS(4776), + [anon_sym_bool] = ACTIONS(4776), + [anon_sym_int] = ACTIONS(4776), + [anon_sym_uint] = ACTIONS(4776), + [anon_sym_float] = ACTIONS(4776), + [anon_sym_range] = ACTIONS(4776), + [anon_sym_i8] = ACTIONS(4776), + [anon_sym_i16] = ACTIONS(4776), + [anon_sym_i32] = ACTIONS(4776), + [anon_sym_i64] = ACTIONS(4776), + [anon_sym_u8] = ACTIONS(4776), + [anon_sym_u16] = ACTIONS(4776), + [anon_sym_u32] = ACTIONS(4776), + [anon_sym_u64] = ACTIONS(4776), + [anon_sym_isize] = ACTIONS(4776), + [anon_sym_usize] = ACTIONS(4776), + [anon_sym_f32] = ACTIONS(4776), + [anon_sym_f64] = ACTIONS(4776), + [anon_sym_c_char] = ACTIONS(4776), + [anon_sym_c_schar] = ACTIONS(4776), + [anon_sym_c_uchar] = ACTIONS(4776), + [anon_sym_c_short] = ACTIONS(4776), + [anon_sym_c_ushort] = ACTIONS(4776), + [anon_sym_c_int] = ACTIONS(4776), + [anon_sym_c_uint] = ACTIONS(4776), + [anon_sym_c_long] = ACTIONS(4776), + [anon_sym_c_ulong] = ACTIONS(4776), + [anon_sym_c_longlong] = ACTIONS(4776), + [anon_sym_c_ulonglong] = ACTIONS(4776), + [anon_sym_c_float] = ACTIONS(4776), + [anon_sym_c_double] = ACTIONS(4776), + [anon_sym_c_longdouble] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4774), + [anon_sym_DASH_EQ] = ACTIONS(4774), + [anon_sym_STAR_EQ] = ACTIONS(4774), + [anon_sym_SLASH_EQ] = ACTIONS(4774), + [anon_sym_AMP_EQ] = ACTIONS(4774), + [anon_sym_PIPE_EQ] = ACTIONS(4774), + [anon_sym_xor_EQ] = ACTIONS(4774), + [anon_sym_LT_LT_EQ] = ACTIONS(4774), + [anon_sym_GT_GT_EQ] = ACTIONS(4774), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4776), + [anon_sym_yield] = ACTIONS(4776), + [anon_sym_COLON] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4776), + [anon_sym_continue] = ACTIONS(4776), + [anon_sym_defer] = ACTIONS(4776), + [anon_sym_errdefer] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_expand] = ACTIONS(4776), + [anon_sym_for] = ACTIONS(4776), + [anon_sym_match] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4774), + [anon_sym_orelse] = ACTIONS(4776), + [anon_sym_or] = ACTIONS(4776), + [anon_sym_and] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4774), + [anon_sym_AMP] = ACTIONS(4776), + [anon_sym_xor] = ACTIONS(4776), + [anon_sym_LT_LT] = ACTIONS(4776), + [anon_sym_GT_GT] = ACTIONS(4776), + [anon_sym_LT_LT_PIPE] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4776), + [anon_sym_SLASH] = ACTIONS(4776), + [anon_sym_catch] = ACTIONS(4776), + [anon_sym_TILDE] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_CARET] = ACTIONS(4774), + [anon_sym_true] = ACTIONS(4776), + [anon_sym_false] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4776), + [anon_sym_unreachable] = ACTIONS(4776), + [anon_sym_undefined] = ACTIONS(4776), + [sym_sink] = ACTIONS(4776), + [sym_integer] = ACTIONS(4776), + [sym_float] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [sym_multiline_string] = ACTIONS(4774), + [sym_character] = ACTIONS(4774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4774), + }, + [STATE(2247)] = { + [ts_builtin_sym_end] = ACTIONS(4778), + [sym_identifier] = ACTIONS(4780), + [anon_sym_import] = ACTIONS(4780), + [anon_sym_test] = ACTIONS(4780), + [anon_sym_hide] = ACTIONS(4780), + [anon_sym_func] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_struct] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_RPAREN] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_QMARK] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym_RBRACK] = ACTIONS(4778), + [anon_sym_void] = ACTIONS(4780), + [anon_sym_noreturn] = ACTIONS(4780), + [anon_sym_type] = ACTIONS(4780), + [anon_sym_anyopaque] = ACTIONS(4780), + [anon_sym_bool] = ACTIONS(4780), + [anon_sym_int] = ACTIONS(4780), + [anon_sym_uint] = ACTIONS(4780), + [anon_sym_float] = ACTIONS(4780), + [anon_sym_range] = ACTIONS(4780), + [anon_sym_i8] = ACTIONS(4780), + [anon_sym_i16] = ACTIONS(4780), + [anon_sym_i32] = ACTIONS(4780), + [anon_sym_i64] = ACTIONS(4780), + [anon_sym_u8] = ACTIONS(4780), + [anon_sym_u16] = ACTIONS(4780), + [anon_sym_u32] = ACTIONS(4780), + [anon_sym_u64] = ACTIONS(4780), + [anon_sym_isize] = ACTIONS(4780), + [anon_sym_usize] = ACTIONS(4780), + [anon_sym_f32] = ACTIONS(4780), + [anon_sym_f64] = ACTIONS(4780), + [anon_sym_c_char] = ACTIONS(4780), + [anon_sym_c_schar] = ACTIONS(4780), + [anon_sym_c_uchar] = ACTIONS(4780), + [anon_sym_c_short] = ACTIONS(4780), + [anon_sym_c_ushort] = ACTIONS(4780), + [anon_sym_c_int] = ACTIONS(4780), + [anon_sym_c_uint] = ACTIONS(4780), + [anon_sym_c_long] = ACTIONS(4780), + [anon_sym_c_ulong] = ACTIONS(4780), + [anon_sym_c_longlong] = ACTIONS(4780), + [anon_sym_c_ulonglong] = ACTIONS(4780), + [anon_sym_c_float] = ACTIONS(4780), + [anon_sym_c_double] = ACTIONS(4780), + [anon_sym_c_longdouble] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4778), + [anon_sym_DASH_EQ] = ACTIONS(4778), + [anon_sym_STAR_EQ] = ACTIONS(4778), + [anon_sym_SLASH_EQ] = ACTIONS(4778), + [anon_sym_AMP_EQ] = ACTIONS(4778), + [anon_sym_PIPE_EQ] = ACTIONS(4778), + [anon_sym_xor_EQ] = ACTIONS(4778), + [anon_sym_LT_LT_EQ] = ACTIONS(4778), + [anon_sym_GT_GT_EQ] = ACTIONS(4778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4780), + [anon_sym_yield] = ACTIONS(4780), + [anon_sym_COLON] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4780), + [anon_sym_continue] = ACTIONS(4780), + [anon_sym_defer] = ACTIONS(4780), + [anon_sym_errdefer] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_while] = ACTIONS(4780), + [anon_sym_expand] = ACTIONS(4780), + [anon_sym_for] = ACTIONS(4780), + [anon_sym_match] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4778), + [anon_sym_orelse] = ACTIONS(4780), + [anon_sym_or] = ACTIONS(4780), + [anon_sym_and] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + [anon_sym_xor] = ACTIONS(4780), + [anon_sym_LT_LT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4780), + [anon_sym_LT_LT_PIPE] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4780), + [anon_sym_SLASH] = ACTIONS(4780), + [anon_sym_catch] = ACTIONS(4780), + [anon_sym_TILDE] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_CARET] = ACTIONS(4778), + [anon_sym_true] = ACTIONS(4780), + [anon_sym_false] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4780), + [anon_sym_unreachable] = ACTIONS(4780), + [anon_sym_undefined] = ACTIONS(4780), + [sym_sink] = ACTIONS(4780), + [sym_integer] = ACTIONS(4780), + [sym_float] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(4778), + [sym_multiline_string] = ACTIONS(4778), + [sym_character] = ACTIONS(4778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4778), + }, + [STATE(2248)] = { + [ts_builtin_sym_end] = ACTIONS(4782), + [sym_identifier] = ACTIONS(4784), + [anon_sym_import] = ACTIONS(4784), + [anon_sym_test] = ACTIONS(4784), + [anon_sym_hide] = ACTIONS(4784), + [anon_sym_func] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_struct] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_RPAREN] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_COMMA] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4782), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_QMARK] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4782), + [anon_sym_RBRACK] = ACTIONS(4782), + [anon_sym_void] = ACTIONS(4784), + [anon_sym_noreturn] = ACTIONS(4784), + [anon_sym_type] = ACTIONS(4784), + [anon_sym_anyopaque] = ACTIONS(4784), + [anon_sym_bool] = ACTIONS(4784), + [anon_sym_int] = ACTIONS(4784), + [anon_sym_uint] = ACTIONS(4784), + [anon_sym_float] = ACTIONS(4784), + [anon_sym_range] = ACTIONS(4784), + [anon_sym_i8] = ACTIONS(4784), + [anon_sym_i16] = ACTIONS(4784), + [anon_sym_i32] = ACTIONS(4784), + [anon_sym_i64] = ACTIONS(4784), + [anon_sym_u8] = ACTIONS(4784), + [anon_sym_u16] = ACTIONS(4784), + [anon_sym_u32] = ACTIONS(4784), + [anon_sym_u64] = ACTIONS(4784), + [anon_sym_isize] = ACTIONS(4784), + [anon_sym_usize] = ACTIONS(4784), + [anon_sym_f32] = ACTIONS(4784), + [anon_sym_f64] = ACTIONS(4784), + [anon_sym_c_char] = ACTIONS(4784), + [anon_sym_c_schar] = ACTIONS(4784), + [anon_sym_c_uchar] = ACTIONS(4784), + [anon_sym_c_short] = ACTIONS(4784), + [anon_sym_c_ushort] = ACTIONS(4784), + [anon_sym_c_int] = ACTIONS(4784), + [anon_sym_c_uint] = ACTIONS(4784), + [anon_sym_c_long] = ACTIONS(4784), + [anon_sym_c_ulong] = ACTIONS(4784), + [anon_sym_c_longlong] = ACTIONS(4784), + [anon_sym_c_ulonglong] = ACTIONS(4784), + [anon_sym_c_float] = ACTIONS(4784), + [anon_sym_c_double] = ACTIONS(4784), + [anon_sym_c_longdouble] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4782), + [anon_sym_DASH_EQ] = ACTIONS(4782), + [anon_sym_STAR_EQ] = ACTIONS(4782), + [anon_sym_SLASH_EQ] = ACTIONS(4782), + [anon_sym_AMP_EQ] = ACTIONS(4782), + [anon_sym_PIPE_EQ] = ACTIONS(4782), + [anon_sym_xor_EQ] = ACTIONS(4782), + [anon_sym_LT_LT_EQ] = ACTIONS(4782), + [anon_sym_GT_GT_EQ] = ACTIONS(4782), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4782), + [anon_sym_return] = ACTIONS(4784), + [anon_sym_yield] = ACTIONS(4784), + [anon_sym_COLON] = ACTIONS(4782), + [anon_sym_break] = ACTIONS(4784), + [anon_sym_continue] = ACTIONS(4784), + [anon_sym_defer] = ACTIONS(4784), + [anon_sym_errdefer] = ACTIONS(4784), + [anon_sym_if] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_while] = ACTIONS(4784), + [anon_sym_expand] = ACTIONS(4784), + [anon_sym_for] = ACTIONS(4784), + [anon_sym_match] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4782), + [anon_sym_orelse] = ACTIONS(4784), + [anon_sym_or] = ACTIONS(4784), + [anon_sym_and] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), + [anon_sym_xor] = ACTIONS(4784), + [anon_sym_LT_LT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4784), + [anon_sym_LT_LT_PIPE] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4784), + [anon_sym_SLASH] = ACTIONS(4784), + [anon_sym_catch] = ACTIONS(4784), + [anon_sym_TILDE] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_true] = ACTIONS(4784), + [anon_sym_false] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4784), + [anon_sym_unreachable] = ACTIONS(4784), + [anon_sym_undefined] = ACTIONS(4784), + [sym_sink] = ACTIONS(4784), + [sym_integer] = ACTIONS(4784), + [sym_float] = ACTIONS(4782), + [anon_sym_DQUOTE] = ACTIONS(4782), + [sym_multiline_string] = ACTIONS(4782), + [sym_character] = ACTIONS(4782), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4782), + }, + [STATE(2249)] = { + [ts_builtin_sym_end] = ACTIONS(4786), + [sym_identifier] = ACTIONS(4788), + [anon_sym_import] = ACTIONS(4788), + [anon_sym_test] = ACTIONS(4788), + [anon_sym_hide] = ACTIONS(4788), + [anon_sym_func] = ACTIONS(4788), + [anon_sym_BANG] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_struct] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_COMMA] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_DOLLAR] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4788), + [anon_sym_QMARK] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_RBRACK] = ACTIONS(4786), + [anon_sym_void] = ACTIONS(4788), + [anon_sym_noreturn] = ACTIONS(4788), + [anon_sym_type] = ACTIONS(4788), + [anon_sym_anyopaque] = ACTIONS(4788), + [anon_sym_bool] = ACTIONS(4788), + [anon_sym_int] = ACTIONS(4788), + [anon_sym_uint] = ACTIONS(4788), + [anon_sym_float] = ACTIONS(4788), + [anon_sym_range] = ACTIONS(4788), + [anon_sym_i8] = ACTIONS(4788), + [anon_sym_i16] = ACTIONS(4788), + [anon_sym_i32] = ACTIONS(4788), + [anon_sym_i64] = ACTIONS(4788), + [anon_sym_u8] = ACTIONS(4788), + [anon_sym_u16] = ACTIONS(4788), + [anon_sym_u32] = ACTIONS(4788), + [anon_sym_u64] = ACTIONS(4788), + [anon_sym_isize] = ACTIONS(4788), + [anon_sym_usize] = ACTIONS(4788), + [anon_sym_f32] = ACTIONS(4788), + [anon_sym_f64] = ACTIONS(4788), + [anon_sym_c_char] = ACTIONS(4788), + [anon_sym_c_schar] = ACTIONS(4788), + [anon_sym_c_uchar] = ACTIONS(4788), + [anon_sym_c_short] = ACTIONS(4788), + [anon_sym_c_ushort] = ACTIONS(4788), + [anon_sym_c_int] = ACTIONS(4788), + [anon_sym_c_uint] = ACTIONS(4788), + [anon_sym_c_long] = ACTIONS(4788), + [anon_sym_c_ulong] = ACTIONS(4788), + [anon_sym_c_longlong] = ACTIONS(4788), + [anon_sym_c_ulonglong] = ACTIONS(4788), + [anon_sym_c_float] = ACTIONS(4788), + [anon_sym_c_double] = ACTIONS(4788), + [anon_sym_c_longdouble] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4786), + [anon_sym_DASH_EQ] = ACTIONS(4786), + [anon_sym_STAR_EQ] = ACTIONS(4786), + [anon_sym_SLASH_EQ] = ACTIONS(4786), + [anon_sym_AMP_EQ] = ACTIONS(4786), + [anon_sym_PIPE_EQ] = ACTIONS(4786), + [anon_sym_xor_EQ] = ACTIONS(4786), + [anon_sym_LT_LT_EQ] = ACTIONS(4786), + [anon_sym_GT_GT_EQ] = ACTIONS(4786), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4786), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_yield] = ACTIONS(4788), + [anon_sym_COLON] = ACTIONS(4786), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_defer] = ACTIONS(4788), + [anon_sym_errdefer] = ACTIONS(4788), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_while] = ACTIONS(4788), + [anon_sym_expand] = ACTIONS(4788), + [anon_sym_for] = ACTIONS(4788), + [anon_sym_match] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4786), + [anon_sym_orelse] = ACTIONS(4788), + [anon_sym_or] = ACTIONS(4788), + [anon_sym_and] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_AMP] = ACTIONS(4788), + [anon_sym_xor] = ACTIONS(4788), + [anon_sym_LT_LT] = ACTIONS(4788), + [anon_sym_GT_GT] = ACTIONS(4788), + [anon_sym_LT_LT_PIPE] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_catch] = ACTIONS(4788), + [anon_sym_TILDE] = ACTIONS(4786), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_CARET] = ACTIONS(4786), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4788), + [anon_sym_unreachable] = ACTIONS(4788), + [anon_sym_undefined] = ACTIONS(4788), + [sym_sink] = ACTIONS(4788), + [sym_integer] = ACTIONS(4788), + [sym_float] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [sym_multiline_string] = ACTIONS(4786), + [sym_character] = ACTIONS(4786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4786), + }, + [STATE(2250)] = { + [ts_builtin_sym_end] = ACTIONS(4790), + [sym_identifier] = ACTIONS(4792), + [anon_sym_import] = ACTIONS(4792), + [anon_sym_test] = ACTIONS(4792), + [anon_sym_hide] = ACTIONS(4792), + [anon_sym_func] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_struct] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_RBRACK] = ACTIONS(4790), + [anon_sym_void] = ACTIONS(4792), + [anon_sym_noreturn] = ACTIONS(4792), + [anon_sym_type] = ACTIONS(4792), + [anon_sym_anyopaque] = ACTIONS(4792), + [anon_sym_bool] = ACTIONS(4792), + [anon_sym_int] = ACTIONS(4792), + [anon_sym_uint] = ACTIONS(4792), + [anon_sym_float] = ACTIONS(4792), + [anon_sym_range] = ACTIONS(4792), + [anon_sym_i8] = ACTIONS(4792), + [anon_sym_i16] = ACTIONS(4792), + [anon_sym_i32] = ACTIONS(4792), + [anon_sym_i64] = ACTIONS(4792), + [anon_sym_u8] = ACTIONS(4792), + [anon_sym_u16] = ACTIONS(4792), + [anon_sym_u32] = ACTIONS(4792), + [anon_sym_u64] = ACTIONS(4792), + [anon_sym_isize] = ACTIONS(4792), + [anon_sym_usize] = ACTIONS(4792), + [anon_sym_f32] = ACTIONS(4792), + [anon_sym_f64] = ACTIONS(4792), + [anon_sym_c_char] = ACTIONS(4792), + [anon_sym_c_schar] = ACTIONS(4792), + [anon_sym_c_uchar] = ACTIONS(4792), + [anon_sym_c_short] = ACTIONS(4792), + [anon_sym_c_ushort] = ACTIONS(4792), + [anon_sym_c_int] = ACTIONS(4792), + [anon_sym_c_uint] = ACTIONS(4792), + [anon_sym_c_long] = ACTIONS(4792), + [anon_sym_c_ulong] = ACTIONS(4792), + [anon_sym_c_longlong] = ACTIONS(4792), + [anon_sym_c_ulonglong] = ACTIONS(4792), + [anon_sym_c_float] = ACTIONS(4792), + [anon_sym_c_double] = ACTIONS(4792), + [anon_sym_c_longdouble] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_AMP_EQ] = ACTIONS(4790), + [anon_sym_PIPE_EQ] = ACTIONS(4790), + [anon_sym_xor_EQ] = ACTIONS(4790), + [anon_sym_LT_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_GT_EQ] = ACTIONS(4790), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4790), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_yield] = ACTIONS(4792), + [anon_sym_COLON] = ACTIONS(4790), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_defer] = ACTIONS(4792), + [anon_sym_errdefer] = ACTIONS(4792), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_while] = ACTIONS(4792), + [anon_sym_expand] = ACTIONS(4792), + [anon_sym_for] = ACTIONS(4792), + [anon_sym_match] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4790), + [anon_sym_orelse] = ACTIONS(4792), + [anon_sym_or] = ACTIONS(4792), + [anon_sym_and] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + [anon_sym_xor] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_LT_LT_PIPE] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_catch] = ACTIONS(4792), + [anon_sym_TILDE] = ACTIONS(4790), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_CARET] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4792), + [anon_sym_unreachable] = ACTIONS(4792), + [anon_sym_undefined] = ACTIONS(4792), + [sym_sink] = ACTIONS(4792), + [sym_integer] = ACTIONS(4792), + [sym_float] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4790), + [sym_multiline_string] = ACTIONS(4790), + [sym_character] = ACTIONS(4790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4790), + }, + [STATE(2251)] = { + [ts_builtin_sym_end] = ACTIONS(4794), + [sym_identifier] = ACTIONS(4796), + [anon_sym_import] = ACTIONS(4796), + [anon_sym_test] = ACTIONS(4796), + [anon_sym_hide] = ACTIONS(4796), + [anon_sym_func] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_struct] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_RPAREN] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4794), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_QMARK] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_RBRACK] = ACTIONS(4794), + [anon_sym_void] = ACTIONS(4796), + [anon_sym_noreturn] = ACTIONS(4796), + [anon_sym_type] = ACTIONS(4796), + [anon_sym_anyopaque] = ACTIONS(4796), + [anon_sym_bool] = ACTIONS(4796), + [anon_sym_int] = ACTIONS(4796), + [anon_sym_uint] = ACTIONS(4796), + [anon_sym_float] = ACTIONS(4796), + [anon_sym_range] = ACTIONS(4796), + [anon_sym_i8] = ACTIONS(4796), + [anon_sym_i16] = ACTIONS(4796), + [anon_sym_i32] = ACTIONS(4796), + [anon_sym_i64] = ACTIONS(4796), + [anon_sym_u8] = ACTIONS(4796), + [anon_sym_u16] = ACTIONS(4796), + [anon_sym_u32] = ACTIONS(4796), + [anon_sym_u64] = ACTIONS(4796), + [anon_sym_isize] = ACTIONS(4796), + [anon_sym_usize] = ACTIONS(4796), + [anon_sym_f32] = ACTIONS(4796), + [anon_sym_f64] = ACTIONS(4796), + [anon_sym_c_char] = ACTIONS(4796), + [anon_sym_c_schar] = ACTIONS(4796), + [anon_sym_c_uchar] = ACTIONS(4796), + [anon_sym_c_short] = ACTIONS(4796), + [anon_sym_c_ushort] = ACTIONS(4796), + [anon_sym_c_int] = ACTIONS(4796), + [anon_sym_c_uint] = ACTIONS(4796), + [anon_sym_c_long] = ACTIONS(4796), + [anon_sym_c_ulong] = ACTIONS(4796), + [anon_sym_c_longlong] = ACTIONS(4796), + [anon_sym_c_ulonglong] = ACTIONS(4796), + [anon_sym_c_float] = ACTIONS(4796), + [anon_sym_c_double] = ACTIONS(4796), + [anon_sym_c_longdouble] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_AMP_EQ] = ACTIONS(4794), + [anon_sym_PIPE_EQ] = ACTIONS(4794), + [anon_sym_xor_EQ] = ACTIONS(4794), + [anon_sym_LT_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_GT_EQ] = ACTIONS(4794), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_yield] = ACTIONS(4796), + [anon_sym_COLON] = ACTIONS(4794), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_defer] = ACTIONS(4796), + [anon_sym_errdefer] = ACTIONS(4796), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_expand] = ACTIONS(4796), + [anon_sym_for] = ACTIONS(4796), + [anon_sym_match] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4794), + [anon_sym_orelse] = ACTIONS(4796), + [anon_sym_or] = ACTIONS(4796), + [anon_sym_and] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + [anon_sym_xor] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_LT_LT_PIPE] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_catch] = ACTIONS(4796), + [anon_sym_TILDE] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_CARET] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4796), + [anon_sym_unreachable] = ACTIONS(4796), + [anon_sym_undefined] = ACTIONS(4796), + [sym_sink] = ACTIONS(4796), + [sym_integer] = ACTIONS(4796), + [sym_float] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(4794), + [sym_multiline_string] = ACTIONS(4794), + [sym_character] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4794), + }, + [STATE(2252)] = { + [ts_builtin_sym_end] = ACTIONS(4798), + [sym_identifier] = ACTIONS(4800), + [anon_sym_import] = ACTIONS(4800), + [anon_sym_test] = ACTIONS(4800), + [anon_sym_hide] = ACTIONS(4800), + [anon_sym_func] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4800), + [anon_sym_EQ] = ACTIONS(4800), + [anon_sym_struct] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4800), + [anon_sym_DOLLAR] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4800), + [anon_sym_QMARK] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4798), + [anon_sym_RBRACK] = ACTIONS(4798), + [anon_sym_void] = ACTIONS(4800), + [anon_sym_noreturn] = ACTIONS(4800), + [anon_sym_type] = ACTIONS(4800), + [anon_sym_anyopaque] = ACTIONS(4800), + [anon_sym_bool] = ACTIONS(4800), + [anon_sym_int] = ACTIONS(4800), + [anon_sym_uint] = ACTIONS(4800), + [anon_sym_float] = ACTIONS(4800), + [anon_sym_range] = ACTIONS(4800), + [anon_sym_i8] = ACTIONS(4800), + [anon_sym_i16] = ACTIONS(4800), + [anon_sym_i32] = ACTIONS(4800), + [anon_sym_i64] = ACTIONS(4800), + [anon_sym_u8] = ACTIONS(4800), + [anon_sym_u16] = ACTIONS(4800), + [anon_sym_u32] = ACTIONS(4800), + [anon_sym_u64] = ACTIONS(4800), + [anon_sym_isize] = ACTIONS(4800), + [anon_sym_usize] = ACTIONS(4800), + [anon_sym_f32] = ACTIONS(4800), + [anon_sym_f64] = ACTIONS(4800), + [anon_sym_c_char] = ACTIONS(4800), + [anon_sym_c_schar] = ACTIONS(4800), + [anon_sym_c_uchar] = ACTIONS(4800), + [anon_sym_c_short] = ACTIONS(4800), + [anon_sym_c_ushort] = ACTIONS(4800), + [anon_sym_c_int] = ACTIONS(4800), + [anon_sym_c_uint] = ACTIONS(4800), + [anon_sym_c_long] = ACTIONS(4800), + [anon_sym_c_ulong] = ACTIONS(4800), + [anon_sym_c_longlong] = ACTIONS(4800), + [anon_sym_c_ulonglong] = ACTIONS(4800), + [anon_sym_c_float] = ACTIONS(4800), + [anon_sym_c_double] = ACTIONS(4800), + [anon_sym_c_longdouble] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_AMP_EQ] = ACTIONS(4798), + [anon_sym_PIPE_EQ] = ACTIONS(4798), + [anon_sym_xor_EQ] = ACTIONS(4798), + [anon_sym_LT_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_GT_EQ] = ACTIONS(4798), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4800), + [anon_sym_yield] = ACTIONS(4800), + [anon_sym_COLON] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4800), + [anon_sym_continue] = ACTIONS(4800), + [anon_sym_defer] = ACTIONS(4800), + [anon_sym_errdefer] = ACTIONS(4800), + [anon_sym_if] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4800), + [anon_sym_while] = ACTIONS(4800), + [anon_sym_expand] = ACTIONS(4800), + [anon_sym_for] = ACTIONS(4800), + [anon_sym_match] = ACTIONS(4800), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4798), + [anon_sym_orelse] = ACTIONS(4800), + [anon_sym_or] = ACTIONS(4800), + [anon_sym_and] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4800), + [anon_sym_xor] = ACTIONS(4800), + [anon_sym_LT_LT] = ACTIONS(4800), + [anon_sym_GT_GT] = ACTIONS(4800), + [anon_sym_LT_LT_PIPE] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4800), + [anon_sym_SLASH] = ACTIONS(4800), + [anon_sym_catch] = ACTIONS(4800), + [anon_sym_TILDE] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4800), + [anon_sym_CARET] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4800), + [anon_sym_false] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4800), + [anon_sym_unreachable] = ACTIONS(4800), + [anon_sym_undefined] = ACTIONS(4800), + [sym_sink] = ACTIONS(4800), + [sym_integer] = ACTIONS(4800), + [sym_float] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [sym_multiline_string] = ACTIONS(4798), + [sym_character] = ACTIONS(4798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4798), + }, + [STATE(2253)] = { + [ts_builtin_sym_end] = ACTIONS(4802), + [sym_identifier] = ACTIONS(4804), + [anon_sym_import] = ACTIONS(4804), + [anon_sym_test] = ACTIONS(4804), + [anon_sym_hide] = ACTIONS(4804), + [anon_sym_func] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_struct] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4802), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_QMARK] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4802), + [anon_sym_RBRACK] = ACTIONS(4802), + [anon_sym_void] = ACTIONS(4804), + [anon_sym_noreturn] = ACTIONS(4804), + [anon_sym_type] = ACTIONS(4804), + [anon_sym_anyopaque] = ACTIONS(4804), + [anon_sym_bool] = ACTIONS(4804), + [anon_sym_int] = ACTIONS(4804), + [anon_sym_uint] = ACTIONS(4804), + [anon_sym_float] = ACTIONS(4804), + [anon_sym_range] = ACTIONS(4804), + [anon_sym_i8] = ACTIONS(4804), + [anon_sym_i16] = ACTIONS(4804), + [anon_sym_i32] = ACTIONS(4804), + [anon_sym_i64] = ACTIONS(4804), + [anon_sym_u8] = ACTIONS(4804), + [anon_sym_u16] = ACTIONS(4804), + [anon_sym_u32] = ACTIONS(4804), + [anon_sym_u64] = ACTIONS(4804), + [anon_sym_isize] = ACTIONS(4804), + [anon_sym_usize] = ACTIONS(4804), + [anon_sym_f32] = ACTIONS(4804), + [anon_sym_f64] = ACTIONS(4804), + [anon_sym_c_char] = ACTIONS(4804), + [anon_sym_c_schar] = ACTIONS(4804), + [anon_sym_c_uchar] = ACTIONS(4804), + [anon_sym_c_short] = ACTIONS(4804), + [anon_sym_c_ushort] = ACTIONS(4804), + [anon_sym_c_int] = ACTIONS(4804), + [anon_sym_c_uint] = ACTIONS(4804), + [anon_sym_c_long] = ACTIONS(4804), + [anon_sym_c_ulong] = ACTIONS(4804), + [anon_sym_c_longlong] = ACTIONS(4804), + [anon_sym_c_ulonglong] = ACTIONS(4804), + [anon_sym_c_float] = ACTIONS(4804), + [anon_sym_c_double] = ACTIONS(4804), + [anon_sym_c_longdouble] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4802), + [anon_sym_DASH_EQ] = ACTIONS(4802), + [anon_sym_STAR_EQ] = ACTIONS(4802), + [anon_sym_SLASH_EQ] = ACTIONS(4802), + [anon_sym_AMP_EQ] = ACTIONS(4802), + [anon_sym_PIPE_EQ] = ACTIONS(4802), + [anon_sym_xor_EQ] = ACTIONS(4802), + [anon_sym_LT_LT_EQ] = ACTIONS(4802), + [anon_sym_GT_GT_EQ] = ACTIONS(4802), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_yield] = ACTIONS(4804), + [anon_sym_COLON] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_defer] = ACTIONS(4804), + [anon_sym_errdefer] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_expand] = ACTIONS(4804), + [anon_sym_for] = ACTIONS(4804), + [anon_sym_match] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4802), + [anon_sym_orelse] = ACTIONS(4804), + [anon_sym_or] = ACTIONS(4804), + [anon_sym_and] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_AMP] = ACTIONS(4804), + [anon_sym_xor] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_LT_LT_PIPE] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_catch] = ACTIONS(4804), + [anon_sym_TILDE] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_unreachable] = ACTIONS(4804), + [anon_sym_undefined] = ACTIONS(4804), + [sym_sink] = ACTIONS(4804), + [sym_integer] = ACTIONS(4804), + [sym_float] = ACTIONS(4802), + [anon_sym_DQUOTE] = ACTIONS(4802), + [sym_multiline_string] = ACTIONS(4802), + [sym_character] = ACTIONS(4802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4802), + }, + [STATE(2254)] = { + [ts_builtin_sym_end] = ACTIONS(4806), + [sym_identifier] = ACTIONS(4808), + [anon_sym_import] = ACTIONS(4808), + [anon_sym_test] = ACTIONS(4808), + [anon_sym_hide] = ACTIONS(4808), + [anon_sym_func] = ACTIONS(4808), + [anon_sym_BANG] = ACTIONS(4808), + [anon_sym_EQ] = ACTIONS(4808), + [anon_sym_struct] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_RPAREN] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(4806), + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_QMARK] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_RBRACK] = ACTIONS(4806), + [anon_sym_void] = ACTIONS(4808), + [anon_sym_noreturn] = ACTIONS(4808), + [anon_sym_type] = ACTIONS(4808), + [anon_sym_anyopaque] = ACTIONS(4808), + [anon_sym_bool] = ACTIONS(4808), + [anon_sym_int] = ACTIONS(4808), + [anon_sym_uint] = ACTIONS(4808), + [anon_sym_float] = ACTIONS(4808), + [anon_sym_range] = ACTIONS(4808), + [anon_sym_i8] = ACTIONS(4808), + [anon_sym_i16] = ACTIONS(4808), + [anon_sym_i32] = ACTIONS(4808), + [anon_sym_i64] = ACTIONS(4808), + [anon_sym_u8] = ACTIONS(4808), + [anon_sym_u16] = ACTIONS(4808), + [anon_sym_u32] = ACTIONS(4808), + [anon_sym_u64] = ACTIONS(4808), + [anon_sym_isize] = ACTIONS(4808), + [anon_sym_usize] = ACTIONS(4808), + [anon_sym_f32] = ACTIONS(4808), + [anon_sym_f64] = ACTIONS(4808), + [anon_sym_c_char] = ACTIONS(4808), + [anon_sym_c_schar] = ACTIONS(4808), + [anon_sym_c_uchar] = ACTIONS(4808), + [anon_sym_c_short] = ACTIONS(4808), + [anon_sym_c_ushort] = ACTIONS(4808), + [anon_sym_c_int] = ACTIONS(4808), + [anon_sym_c_uint] = ACTIONS(4808), + [anon_sym_c_long] = ACTIONS(4808), + [anon_sym_c_ulong] = ACTIONS(4808), + [anon_sym_c_longlong] = ACTIONS(4808), + [anon_sym_c_ulonglong] = ACTIONS(4808), + [anon_sym_c_float] = ACTIONS(4808), + [anon_sym_c_double] = ACTIONS(4808), + [anon_sym_c_longdouble] = ACTIONS(4808), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_AMP_EQ] = ACTIONS(4806), + [anon_sym_PIPE_EQ] = ACTIONS(4806), + [anon_sym_xor_EQ] = ACTIONS(4806), + [anon_sym_LT_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_GT_EQ] = ACTIONS(4806), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4806), + [anon_sym_return] = ACTIONS(4808), + [anon_sym_yield] = ACTIONS(4808), + [anon_sym_COLON] = ACTIONS(4806), + [anon_sym_break] = ACTIONS(4808), + [anon_sym_continue] = ACTIONS(4808), + [anon_sym_defer] = ACTIONS(4808), + [anon_sym_errdefer] = ACTIONS(4808), + [anon_sym_if] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_while] = ACTIONS(4808), + [anon_sym_expand] = ACTIONS(4808), + [anon_sym_for] = ACTIONS(4808), + [anon_sym_match] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4806), + [anon_sym_orelse] = ACTIONS(4808), + [anon_sym_or] = ACTIONS(4808), + [anon_sym_and] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_AMP] = ACTIONS(4808), + [anon_sym_xor] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(4808), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_LT_LT_PIPE] = ACTIONS(4808), + [anon_sym_PLUS] = ACTIONS(4808), + [anon_sym_SLASH] = ACTIONS(4808), + [anon_sym_catch] = ACTIONS(4808), + [anon_sym_TILDE] = ACTIONS(4806), + [anon_sym_try] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_CARET] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), + [anon_sym_unreachable] = ACTIONS(4808), + [anon_sym_undefined] = ACTIONS(4808), + [sym_sink] = ACTIONS(4808), + [sym_integer] = ACTIONS(4808), + [sym_float] = ACTIONS(4806), + [anon_sym_DQUOTE] = ACTIONS(4806), + [sym_multiline_string] = ACTIONS(4806), + [sym_character] = ACTIONS(4806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4806), + }, + [STATE(2255)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2256), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4810), + }, + [STATE(2256)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2257)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4812), + }, + [STATE(2258)] = { + [ts_builtin_sym_end] = ACTIONS(4814), + [sym_identifier] = ACTIONS(4816), + [anon_sym_import] = ACTIONS(4816), + [anon_sym_test] = ACTIONS(4816), + [anon_sym_hide] = ACTIONS(4816), + [anon_sym_func] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_struct] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_RPAREN] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4814), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_RBRACK] = ACTIONS(4814), + [anon_sym_void] = ACTIONS(4816), + [anon_sym_noreturn] = ACTIONS(4816), + [anon_sym_type] = ACTIONS(4816), + [anon_sym_anyopaque] = ACTIONS(4816), + [anon_sym_bool] = ACTIONS(4816), + [anon_sym_int] = ACTIONS(4816), + [anon_sym_uint] = ACTIONS(4816), + [anon_sym_float] = ACTIONS(4816), + [anon_sym_range] = ACTIONS(4816), + [anon_sym_i8] = ACTIONS(4816), + [anon_sym_i16] = ACTIONS(4816), + [anon_sym_i32] = ACTIONS(4816), + [anon_sym_i64] = ACTIONS(4816), + [anon_sym_u8] = ACTIONS(4816), + [anon_sym_u16] = ACTIONS(4816), + [anon_sym_u32] = ACTIONS(4816), + [anon_sym_u64] = ACTIONS(4816), + [anon_sym_isize] = ACTIONS(4816), + [anon_sym_usize] = ACTIONS(4816), + [anon_sym_f32] = ACTIONS(4816), + [anon_sym_f64] = ACTIONS(4816), + [anon_sym_c_char] = ACTIONS(4816), + [anon_sym_c_schar] = ACTIONS(4816), + [anon_sym_c_uchar] = ACTIONS(4816), + [anon_sym_c_short] = ACTIONS(4816), + [anon_sym_c_ushort] = ACTIONS(4816), + [anon_sym_c_int] = ACTIONS(4816), + [anon_sym_c_uint] = ACTIONS(4816), + [anon_sym_c_long] = ACTIONS(4816), + [anon_sym_c_ulong] = ACTIONS(4816), + [anon_sym_c_longlong] = ACTIONS(4816), + [anon_sym_c_ulonglong] = ACTIONS(4816), + [anon_sym_c_float] = ACTIONS(4816), + [anon_sym_c_double] = ACTIONS(4816), + [anon_sym_c_longdouble] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_AMP_EQ] = ACTIONS(4814), + [anon_sym_PIPE_EQ] = ACTIONS(4814), + [anon_sym_xor_EQ] = ACTIONS(4814), + [anon_sym_LT_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_GT_EQ] = ACTIONS(4814), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4814), + [anon_sym_return] = ACTIONS(4816), + [anon_sym_yield] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4814), + [anon_sym_break] = ACTIONS(4816), + [anon_sym_continue] = ACTIONS(4816), + [anon_sym_defer] = ACTIONS(4816), + [anon_sym_errdefer] = ACTIONS(4816), + [anon_sym_if] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_while] = ACTIONS(4816), + [anon_sym_expand] = ACTIONS(4816), + [anon_sym_for] = ACTIONS(4816), + [anon_sym_match] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4814), + [anon_sym_orelse] = ACTIONS(4816), + [anon_sym_or] = ACTIONS(4816), + [anon_sym_and] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4816), + [anon_sym_xor] = ACTIONS(4816), + [anon_sym_LT_LT] = ACTIONS(4816), + [anon_sym_GT_GT] = ACTIONS(4816), + [anon_sym_LT_LT_PIPE] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_catch] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4816), + [anon_sym_false] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4816), + [anon_sym_unreachable] = ACTIONS(4816), + [anon_sym_undefined] = ACTIONS(4816), + [sym_sink] = ACTIONS(4816), + [sym_integer] = ACTIONS(4816), + [sym_float] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(4814), + [sym_multiline_string] = ACTIONS(4814), + [sym_character] = ACTIONS(4814), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4814), + }, + [STATE(2259)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2260)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4818), + }, + [STATE(2261)] = { + [ts_builtin_sym_end] = ACTIONS(4820), + [sym_identifier] = ACTIONS(4822), + [anon_sym_import] = ACTIONS(4822), + [anon_sym_test] = ACTIONS(4822), + [anon_sym_hide] = ACTIONS(4822), + [anon_sym_func] = ACTIONS(4822), + [anon_sym_BANG] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_struct] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4822), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_void] = ACTIONS(4822), + [anon_sym_noreturn] = ACTIONS(4822), + [anon_sym_type] = ACTIONS(4822), + [anon_sym_anyopaque] = ACTIONS(4822), + [anon_sym_bool] = ACTIONS(4822), + [anon_sym_int] = ACTIONS(4822), + [anon_sym_uint] = ACTIONS(4822), + [anon_sym_float] = ACTIONS(4822), + [anon_sym_range] = ACTIONS(4822), + [anon_sym_i8] = ACTIONS(4822), + [anon_sym_i16] = ACTIONS(4822), + [anon_sym_i32] = ACTIONS(4822), + [anon_sym_i64] = ACTIONS(4822), + [anon_sym_u8] = ACTIONS(4822), + [anon_sym_u16] = ACTIONS(4822), + [anon_sym_u32] = ACTIONS(4822), + [anon_sym_u64] = ACTIONS(4822), + [anon_sym_isize] = ACTIONS(4822), + [anon_sym_usize] = ACTIONS(4822), + [anon_sym_f32] = ACTIONS(4822), + [anon_sym_f64] = ACTIONS(4822), + [anon_sym_c_char] = ACTIONS(4822), + [anon_sym_c_schar] = ACTIONS(4822), + [anon_sym_c_uchar] = ACTIONS(4822), + [anon_sym_c_short] = ACTIONS(4822), + [anon_sym_c_ushort] = ACTIONS(4822), + [anon_sym_c_int] = ACTIONS(4822), + [anon_sym_c_uint] = ACTIONS(4822), + [anon_sym_c_long] = ACTIONS(4822), + [anon_sym_c_ulong] = ACTIONS(4822), + [anon_sym_c_longlong] = ACTIONS(4822), + [anon_sym_c_ulonglong] = ACTIONS(4822), + [anon_sym_c_float] = ACTIONS(4822), + [anon_sym_c_double] = ACTIONS(4822), + [anon_sym_c_longdouble] = ACTIONS(4822), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_AMP_EQ] = ACTIONS(4820), + [anon_sym_PIPE_EQ] = ACTIONS(4820), + [anon_sym_xor_EQ] = ACTIONS(4820), + [anon_sym_LT_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_GT_EQ] = ACTIONS(4820), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4820), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_yield] = ACTIONS(4822), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_defer] = ACTIONS(4822), + [anon_sym_errdefer] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_while] = ACTIONS(4822), + [anon_sym_expand] = ACTIONS(4822), + [anon_sym_for] = ACTIONS(4822), + [anon_sym_match] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4820), + [anon_sym_orelse] = ACTIONS(4822), + [anon_sym_or] = ACTIONS(4822), + [anon_sym_and] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_xor] = ACTIONS(4822), + [anon_sym_LT_LT] = ACTIONS(4822), + [anon_sym_GT_GT] = ACTIONS(4822), + [anon_sym_LT_LT_PIPE] = ACTIONS(4822), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_catch] = ACTIONS(4822), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_unreachable] = ACTIONS(4822), + [anon_sym_undefined] = ACTIONS(4822), + [sym_sink] = ACTIONS(4822), + [sym_integer] = ACTIONS(4822), + [sym_float] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [sym_multiline_string] = ACTIONS(4820), + [sym_character] = ACTIONS(4820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4820), + }, + [STATE(2262)] = { + [ts_builtin_sym_end] = ACTIONS(4824), + [sym_identifier] = ACTIONS(4826), + [anon_sym_import] = ACTIONS(4826), + [anon_sym_test] = ACTIONS(4826), + [anon_sym_hide] = ACTIONS(4826), + [anon_sym_func] = ACTIONS(4826), + [anon_sym_BANG] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_struct] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4826), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_RBRACK] = ACTIONS(4824), + [anon_sym_void] = ACTIONS(4826), + [anon_sym_noreturn] = ACTIONS(4826), + [anon_sym_type] = ACTIONS(4826), + [anon_sym_anyopaque] = ACTIONS(4826), + [anon_sym_bool] = ACTIONS(4826), + [anon_sym_int] = ACTIONS(4826), + [anon_sym_uint] = ACTIONS(4826), + [anon_sym_float] = ACTIONS(4826), + [anon_sym_range] = ACTIONS(4826), + [anon_sym_i8] = ACTIONS(4826), + [anon_sym_i16] = ACTIONS(4826), + [anon_sym_i32] = ACTIONS(4826), + [anon_sym_i64] = ACTIONS(4826), + [anon_sym_u8] = ACTIONS(4826), + [anon_sym_u16] = ACTIONS(4826), + [anon_sym_u32] = ACTIONS(4826), + [anon_sym_u64] = ACTIONS(4826), + [anon_sym_isize] = ACTIONS(4826), + [anon_sym_usize] = ACTIONS(4826), + [anon_sym_f32] = ACTIONS(4826), + [anon_sym_f64] = ACTIONS(4826), + [anon_sym_c_char] = ACTIONS(4826), + [anon_sym_c_schar] = ACTIONS(4826), + [anon_sym_c_uchar] = ACTIONS(4826), + [anon_sym_c_short] = ACTIONS(4826), + [anon_sym_c_ushort] = ACTIONS(4826), + [anon_sym_c_int] = ACTIONS(4826), + [anon_sym_c_uint] = ACTIONS(4826), + [anon_sym_c_long] = ACTIONS(4826), + [anon_sym_c_ulong] = ACTIONS(4826), + [anon_sym_c_longlong] = ACTIONS(4826), + [anon_sym_c_ulonglong] = ACTIONS(4826), + [anon_sym_c_float] = ACTIONS(4826), + [anon_sym_c_double] = ACTIONS(4826), + [anon_sym_c_longdouble] = ACTIONS(4826), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_AMP_EQ] = ACTIONS(4824), + [anon_sym_PIPE_EQ] = ACTIONS(4824), + [anon_sym_xor_EQ] = ACTIONS(4824), + [anon_sym_LT_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_GT_EQ] = ACTIONS(4824), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4824), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_yield] = ACTIONS(4826), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_defer] = ACTIONS(4826), + [anon_sym_errdefer] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_while] = ACTIONS(4826), + [anon_sym_expand] = ACTIONS(4826), + [anon_sym_for] = ACTIONS(4826), + [anon_sym_match] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4824), + [anon_sym_orelse] = ACTIONS(4826), + [anon_sym_or] = ACTIONS(4826), + [anon_sym_and] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_xor] = ACTIONS(4826), + [anon_sym_LT_LT] = ACTIONS(4826), + [anon_sym_GT_GT] = ACTIONS(4826), + [anon_sym_LT_LT_PIPE] = ACTIONS(4826), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_catch] = ACTIONS(4826), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_unreachable] = ACTIONS(4826), + [anon_sym_undefined] = ACTIONS(4826), + [sym_sink] = ACTIONS(4826), + [sym_integer] = ACTIONS(4826), + [sym_float] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [sym_multiline_string] = ACTIONS(4824), + [sym_character] = ACTIONS(4824), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4824), + }, + [STATE(2263)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8862), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(639), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(645), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2264)] = { + [ts_builtin_sym_end] = ACTIONS(4828), + [sym_identifier] = ACTIONS(4830), + [anon_sym_import] = ACTIONS(4830), + [anon_sym_test] = ACTIONS(4830), + [anon_sym_hide] = ACTIONS(4830), + [anon_sym_func] = ACTIONS(4830), + [anon_sym_BANG] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_struct] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4830), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_RBRACK] = ACTIONS(4828), + [anon_sym_void] = ACTIONS(4830), + [anon_sym_noreturn] = ACTIONS(4830), + [anon_sym_type] = ACTIONS(4830), + [anon_sym_anyopaque] = ACTIONS(4830), + [anon_sym_bool] = ACTIONS(4830), + [anon_sym_int] = ACTIONS(4830), + [anon_sym_uint] = ACTIONS(4830), + [anon_sym_float] = ACTIONS(4830), + [anon_sym_range] = ACTIONS(4830), + [anon_sym_i8] = ACTIONS(4830), + [anon_sym_i16] = ACTIONS(4830), + [anon_sym_i32] = ACTIONS(4830), + [anon_sym_i64] = ACTIONS(4830), + [anon_sym_u8] = ACTIONS(4830), + [anon_sym_u16] = ACTIONS(4830), + [anon_sym_u32] = ACTIONS(4830), + [anon_sym_u64] = ACTIONS(4830), + [anon_sym_isize] = ACTIONS(4830), + [anon_sym_usize] = ACTIONS(4830), + [anon_sym_f32] = ACTIONS(4830), + [anon_sym_f64] = ACTIONS(4830), + [anon_sym_c_char] = ACTIONS(4830), + [anon_sym_c_schar] = ACTIONS(4830), + [anon_sym_c_uchar] = ACTIONS(4830), + [anon_sym_c_short] = ACTIONS(4830), + [anon_sym_c_ushort] = ACTIONS(4830), + [anon_sym_c_int] = ACTIONS(4830), + [anon_sym_c_uint] = ACTIONS(4830), + [anon_sym_c_long] = ACTIONS(4830), + [anon_sym_c_ulong] = ACTIONS(4830), + [anon_sym_c_longlong] = ACTIONS(4830), + [anon_sym_c_ulonglong] = ACTIONS(4830), + [anon_sym_c_float] = ACTIONS(4830), + [anon_sym_c_double] = ACTIONS(4830), + [anon_sym_c_longdouble] = ACTIONS(4830), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_AMP_EQ] = ACTIONS(4828), + [anon_sym_PIPE_EQ] = ACTIONS(4828), + [anon_sym_xor_EQ] = ACTIONS(4828), + [anon_sym_LT_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_GT_EQ] = ACTIONS(4828), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4828), + [anon_sym_return] = ACTIONS(4830), + [anon_sym_yield] = ACTIONS(4830), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_break] = ACTIONS(4830), + [anon_sym_continue] = ACTIONS(4830), + [anon_sym_defer] = ACTIONS(4830), + [anon_sym_errdefer] = ACTIONS(4830), + [anon_sym_if] = ACTIONS(4830), + [anon_sym_else] = ACTIONS(4830), + [anon_sym_while] = ACTIONS(4830), + [anon_sym_expand] = ACTIONS(4830), + [anon_sym_for] = ACTIONS(4830), + [anon_sym_match] = ACTIONS(4830), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_orelse] = ACTIONS(4830), + [anon_sym_or] = ACTIONS(4830), + [anon_sym_and] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_xor] = ACTIONS(4830), + [anon_sym_LT_LT] = ACTIONS(4830), + [anon_sym_GT_GT] = ACTIONS(4830), + [anon_sym_LT_LT_PIPE] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4830), + [anon_sym_catch] = ACTIONS(4830), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_try] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4830), + [anon_sym_false] = ACTIONS(4830), + [anon_sym_null] = ACTIONS(4830), + [anon_sym_unreachable] = ACTIONS(4830), + [anon_sym_undefined] = ACTIONS(4830), + [sym_sink] = ACTIONS(4830), + [sym_integer] = ACTIONS(4830), + [sym_float] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [sym_multiline_string] = ACTIONS(4828), + [sym_character] = ACTIONS(4828), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4828), + }, + [STATE(2265)] = { + [ts_builtin_sym_end] = ACTIONS(4832), + [sym_identifier] = ACTIONS(4834), + [anon_sym_import] = ACTIONS(4834), + [anon_sym_test] = ACTIONS(4834), + [anon_sym_hide] = ACTIONS(4834), + [anon_sym_func] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_RBRACE] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4834), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_RBRACK] = ACTIONS(4832), + [anon_sym_void] = ACTIONS(4834), + [anon_sym_noreturn] = ACTIONS(4834), + [anon_sym_type] = ACTIONS(4834), + [anon_sym_anyopaque] = ACTIONS(4834), + [anon_sym_bool] = ACTIONS(4834), + [anon_sym_int] = ACTIONS(4834), + [anon_sym_uint] = ACTIONS(4834), + [anon_sym_float] = ACTIONS(4834), + [anon_sym_range] = ACTIONS(4834), + [anon_sym_i8] = ACTIONS(4834), + [anon_sym_i16] = ACTIONS(4834), + [anon_sym_i32] = ACTIONS(4834), + [anon_sym_i64] = ACTIONS(4834), + [anon_sym_u8] = ACTIONS(4834), + [anon_sym_u16] = ACTIONS(4834), + [anon_sym_u32] = ACTIONS(4834), + [anon_sym_u64] = ACTIONS(4834), + [anon_sym_isize] = ACTIONS(4834), + [anon_sym_usize] = ACTIONS(4834), + [anon_sym_f32] = ACTIONS(4834), + [anon_sym_f64] = ACTIONS(4834), + [anon_sym_c_char] = ACTIONS(4834), + [anon_sym_c_schar] = ACTIONS(4834), + [anon_sym_c_uchar] = ACTIONS(4834), + [anon_sym_c_short] = ACTIONS(4834), + [anon_sym_c_ushort] = ACTIONS(4834), + [anon_sym_c_int] = ACTIONS(4834), + [anon_sym_c_uint] = ACTIONS(4834), + [anon_sym_c_long] = ACTIONS(4834), + [anon_sym_c_ulong] = ACTIONS(4834), + [anon_sym_c_longlong] = ACTIONS(4834), + [anon_sym_c_ulonglong] = ACTIONS(4834), + [anon_sym_c_float] = ACTIONS(4834), + [anon_sym_c_double] = ACTIONS(4834), + [anon_sym_c_longdouble] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4832), + [anon_sym_DASH_EQ] = ACTIONS(4832), + [anon_sym_STAR_EQ] = ACTIONS(4832), + [anon_sym_SLASH_EQ] = ACTIONS(4832), + [anon_sym_AMP_EQ] = ACTIONS(4832), + [anon_sym_PIPE_EQ] = ACTIONS(4832), + [anon_sym_xor_EQ] = ACTIONS(4832), + [anon_sym_LT_LT_EQ] = ACTIONS(4832), + [anon_sym_GT_GT_EQ] = ACTIONS(4832), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4832), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_yield] = ACTIONS(4834), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_defer] = ACTIONS(4834), + [anon_sym_errdefer] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_while] = ACTIONS(4834), + [anon_sym_expand] = ACTIONS(4834), + [anon_sym_for] = ACTIONS(4834), + [anon_sym_match] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4832), + [anon_sym_orelse] = ACTIONS(4834), + [anon_sym_or] = ACTIONS(4834), + [anon_sym_and] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_xor] = ACTIONS(4834), + [anon_sym_LT_LT] = ACTIONS(4834), + [anon_sym_GT_GT] = ACTIONS(4834), + [anon_sym_LT_LT_PIPE] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_catch] = ACTIONS(4834), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_unreachable] = ACTIONS(4834), + [anon_sym_undefined] = ACTIONS(4834), + [sym_sink] = ACTIONS(4834), + [sym_integer] = ACTIONS(4834), + [sym_float] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [sym_multiline_string] = ACTIONS(4832), + [sym_character] = ACTIONS(4832), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4832), + }, + [STATE(2266)] = { + [ts_builtin_sym_end] = ACTIONS(4836), + [sym_identifier] = ACTIONS(4838), + [anon_sym_import] = ACTIONS(4838), + [anon_sym_test] = ACTIONS(4838), + [anon_sym_hide] = ACTIONS(4838), + [anon_sym_func] = ACTIONS(4838), + [anon_sym_BANG] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_struct] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4836), + [anon_sym_void] = ACTIONS(4838), + [anon_sym_noreturn] = ACTIONS(4838), + [anon_sym_type] = ACTIONS(4838), + [anon_sym_anyopaque] = ACTIONS(4838), + [anon_sym_bool] = ACTIONS(4838), + [anon_sym_int] = ACTIONS(4838), + [anon_sym_uint] = ACTIONS(4838), + [anon_sym_float] = ACTIONS(4838), + [anon_sym_range] = ACTIONS(4838), + [anon_sym_i8] = ACTIONS(4838), + [anon_sym_i16] = ACTIONS(4838), + [anon_sym_i32] = ACTIONS(4838), + [anon_sym_i64] = ACTIONS(4838), + [anon_sym_u8] = ACTIONS(4838), + [anon_sym_u16] = ACTIONS(4838), + [anon_sym_u32] = ACTIONS(4838), + [anon_sym_u64] = ACTIONS(4838), + [anon_sym_isize] = ACTIONS(4838), + [anon_sym_usize] = ACTIONS(4838), + [anon_sym_f32] = ACTIONS(4838), + [anon_sym_f64] = ACTIONS(4838), + [anon_sym_c_char] = ACTIONS(4838), + [anon_sym_c_schar] = ACTIONS(4838), + [anon_sym_c_uchar] = ACTIONS(4838), + [anon_sym_c_short] = ACTIONS(4838), + [anon_sym_c_ushort] = ACTIONS(4838), + [anon_sym_c_int] = ACTIONS(4838), + [anon_sym_c_uint] = ACTIONS(4838), + [anon_sym_c_long] = ACTIONS(4838), + [anon_sym_c_ulong] = ACTIONS(4838), + [anon_sym_c_longlong] = ACTIONS(4838), + [anon_sym_c_ulonglong] = ACTIONS(4838), + [anon_sym_c_float] = ACTIONS(4838), + [anon_sym_c_double] = ACTIONS(4838), + [anon_sym_c_longdouble] = ACTIONS(4838), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_AMP_EQ] = ACTIONS(4836), + [anon_sym_PIPE_EQ] = ACTIONS(4836), + [anon_sym_xor_EQ] = ACTIONS(4836), + [anon_sym_LT_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_GT_EQ] = ACTIONS(4836), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4836), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_yield] = ACTIONS(4838), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_defer] = ACTIONS(4838), + [anon_sym_errdefer] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_expand] = ACTIONS(4838), + [anon_sym_for] = ACTIONS(4838), + [anon_sym_match] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4836), + [anon_sym_orelse] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_xor] = ACTIONS(4838), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4838), + [anon_sym_LT_LT_PIPE] = ACTIONS(4838), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_catch] = ACTIONS(4838), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_unreachable] = ACTIONS(4838), + [anon_sym_undefined] = ACTIONS(4838), + [sym_sink] = ACTIONS(4838), + [sym_integer] = ACTIONS(4838), + [sym_float] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [sym_multiline_string] = ACTIONS(4836), + [sym_character] = ACTIONS(4836), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4836), + }, + [STATE(2267)] = { + [ts_builtin_sym_end] = ACTIONS(4840), + [sym_identifier] = ACTIONS(4842), + [anon_sym_import] = ACTIONS(4842), + [anon_sym_test] = ACTIONS(4842), + [anon_sym_hide] = ACTIONS(4842), + [anon_sym_func] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_struct] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_RBRACK] = ACTIONS(4840), + [anon_sym_void] = ACTIONS(4842), + [anon_sym_noreturn] = ACTIONS(4842), + [anon_sym_type] = ACTIONS(4842), + [anon_sym_anyopaque] = ACTIONS(4842), + [anon_sym_bool] = ACTIONS(4842), + [anon_sym_int] = ACTIONS(4842), + [anon_sym_uint] = ACTIONS(4842), + [anon_sym_float] = ACTIONS(4842), + [anon_sym_range] = ACTIONS(4842), + [anon_sym_i8] = ACTIONS(4842), + [anon_sym_i16] = ACTIONS(4842), + [anon_sym_i32] = ACTIONS(4842), + [anon_sym_i64] = ACTIONS(4842), + [anon_sym_u8] = ACTIONS(4842), + [anon_sym_u16] = ACTIONS(4842), + [anon_sym_u32] = ACTIONS(4842), + [anon_sym_u64] = ACTIONS(4842), + [anon_sym_isize] = ACTIONS(4842), + [anon_sym_usize] = ACTIONS(4842), + [anon_sym_f32] = ACTIONS(4842), + [anon_sym_f64] = ACTIONS(4842), + [anon_sym_c_char] = ACTIONS(4842), + [anon_sym_c_schar] = ACTIONS(4842), + [anon_sym_c_uchar] = ACTIONS(4842), + [anon_sym_c_short] = ACTIONS(4842), + [anon_sym_c_ushort] = ACTIONS(4842), + [anon_sym_c_int] = ACTIONS(4842), + [anon_sym_c_uint] = ACTIONS(4842), + [anon_sym_c_long] = ACTIONS(4842), + [anon_sym_c_ulong] = ACTIONS(4842), + [anon_sym_c_longlong] = ACTIONS(4842), + [anon_sym_c_ulonglong] = ACTIONS(4842), + [anon_sym_c_float] = ACTIONS(4842), + [anon_sym_c_double] = ACTIONS(4842), + [anon_sym_c_longdouble] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_AMP_EQ] = ACTIONS(4840), + [anon_sym_PIPE_EQ] = ACTIONS(4840), + [anon_sym_xor_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_yield] = ACTIONS(4842), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_defer] = ACTIONS(4842), + [anon_sym_errdefer] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_while] = ACTIONS(4842), + [anon_sym_expand] = ACTIONS(4842), + [anon_sym_for] = ACTIONS(4842), + [anon_sym_match] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4840), + [anon_sym_orelse] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4842), + [anon_sym_LT_LT_PIPE] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_catch] = ACTIONS(4842), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_unreachable] = ACTIONS(4842), + [anon_sym_undefined] = ACTIONS(4842), + [sym_sink] = ACTIONS(4842), + [sym_integer] = ACTIONS(4842), + [sym_float] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [sym_multiline_string] = ACTIONS(4840), + [sym_character] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4840), + }, + [STATE(2268)] = { + [ts_builtin_sym_end] = ACTIONS(4844), + [sym_identifier] = ACTIONS(4846), + [anon_sym_import] = ACTIONS(4846), + [anon_sym_test] = ACTIONS(4846), + [anon_sym_hide] = ACTIONS(4846), + [anon_sym_func] = ACTIONS(4846), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_struct] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4846), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_RBRACK] = ACTIONS(4844), + [anon_sym_void] = ACTIONS(4846), + [anon_sym_noreturn] = ACTIONS(4846), + [anon_sym_type] = ACTIONS(4846), + [anon_sym_anyopaque] = ACTIONS(4846), + [anon_sym_bool] = ACTIONS(4846), + [anon_sym_int] = ACTIONS(4846), + [anon_sym_uint] = ACTIONS(4846), + [anon_sym_float] = ACTIONS(4846), + [anon_sym_range] = ACTIONS(4846), + [anon_sym_i8] = ACTIONS(4846), + [anon_sym_i16] = ACTIONS(4846), + [anon_sym_i32] = ACTIONS(4846), + [anon_sym_i64] = ACTIONS(4846), + [anon_sym_u8] = ACTIONS(4846), + [anon_sym_u16] = ACTIONS(4846), + [anon_sym_u32] = ACTIONS(4846), + [anon_sym_u64] = ACTIONS(4846), + [anon_sym_isize] = ACTIONS(4846), + [anon_sym_usize] = ACTIONS(4846), + [anon_sym_f32] = ACTIONS(4846), + [anon_sym_f64] = ACTIONS(4846), + [anon_sym_c_char] = ACTIONS(4846), + [anon_sym_c_schar] = ACTIONS(4846), + [anon_sym_c_uchar] = ACTIONS(4846), + [anon_sym_c_short] = ACTIONS(4846), + [anon_sym_c_ushort] = ACTIONS(4846), + [anon_sym_c_int] = ACTIONS(4846), + [anon_sym_c_uint] = ACTIONS(4846), + [anon_sym_c_long] = ACTIONS(4846), + [anon_sym_c_ulong] = ACTIONS(4846), + [anon_sym_c_longlong] = ACTIONS(4846), + [anon_sym_c_ulonglong] = ACTIONS(4846), + [anon_sym_c_float] = ACTIONS(4846), + [anon_sym_c_double] = ACTIONS(4846), + [anon_sym_c_longdouble] = ACTIONS(4846), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_AMP_EQ] = ACTIONS(4844), + [anon_sym_PIPE_EQ] = ACTIONS(4844), + [anon_sym_xor_EQ] = ACTIONS(4844), + [anon_sym_LT_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_GT_EQ] = ACTIONS(4844), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4844), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_yield] = ACTIONS(4846), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_defer] = ACTIONS(4846), + [anon_sym_errdefer] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_while] = ACTIONS(4846), + [anon_sym_expand] = ACTIONS(4846), + [anon_sym_for] = ACTIONS(4846), + [anon_sym_match] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), + [anon_sym_orelse] = ACTIONS(4846), + [anon_sym_or] = ACTIONS(4846), + [anon_sym_and] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_xor] = ACTIONS(4846), + [anon_sym_LT_LT] = ACTIONS(4846), + [anon_sym_GT_GT] = ACTIONS(4846), + [anon_sym_LT_LT_PIPE] = ACTIONS(4846), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_catch] = ACTIONS(4846), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_unreachable] = ACTIONS(4846), + [anon_sym_undefined] = ACTIONS(4846), + [sym_sink] = ACTIONS(4846), + [sym_integer] = ACTIONS(4846), + [sym_float] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [sym_multiline_string] = ACTIONS(4844), + [sym_character] = ACTIONS(4844), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4844), + }, + [STATE(2269)] = { + [ts_builtin_sym_end] = ACTIONS(4848), + [sym_identifier] = ACTIONS(4850), + [anon_sym_import] = ACTIONS(4850), + [anon_sym_test] = ACTIONS(4850), + [anon_sym_hide] = ACTIONS(4850), + [anon_sym_func] = ACTIONS(4850), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_struct] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4850), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_RBRACK] = ACTIONS(4848), + [anon_sym_void] = ACTIONS(4850), + [anon_sym_noreturn] = ACTIONS(4850), + [anon_sym_type] = ACTIONS(4850), + [anon_sym_anyopaque] = ACTIONS(4850), + [anon_sym_bool] = ACTIONS(4850), + [anon_sym_int] = ACTIONS(4850), + [anon_sym_uint] = ACTIONS(4850), + [anon_sym_float] = ACTIONS(4850), + [anon_sym_range] = ACTIONS(4850), + [anon_sym_i8] = ACTIONS(4850), + [anon_sym_i16] = ACTIONS(4850), + [anon_sym_i32] = ACTIONS(4850), + [anon_sym_i64] = ACTIONS(4850), + [anon_sym_u8] = ACTIONS(4850), + [anon_sym_u16] = ACTIONS(4850), + [anon_sym_u32] = ACTIONS(4850), + [anon_sym_u64] = ACTIONS(4850), + [anon_sym_isize] = ACTIONS(4850), + [anon_sym_usize] = ACTIONS(4850), + [anon_sym_f32] = ACTIONS(4850), + [anon_sym_f64] = ACTIONS(4850), + [anon_sym_c_char] = ACTIONS(4850), + [anon_sym_c_schar] = ACTIONS(4850), + [anon_sym_c_uchar] = ACTIONS(4850), + [anon_sym_c_short] = ACTIONS(4850), + [anon_sym_c_ushort] = ACTIONS(4850), + [anon_sym_c_int] = ACTIONS(4850), + [anon_sym_c_uint] = ACTIONS(4850), + [anon_sym_c_long] = ACTIONS(4850), + [anon_sym_c_ulong] = ACTIONS(4850), + [anon_sym_c_longlong] = ACTIONS(4850), + [anon_sym_c_ulonglong] = ACTIONS(4850), + [anon_sym_c_float] = ACTIONS(4850), + [anon_sym_c_double] = ACTIONS(4850), + [anon_sym_c_longdouble] = ACTIONS(4850), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_AMP_EQ] = ACTIONS(4848), + [anon_sym_PIPE_EQ] = ACTIONS(4848), + [anon_sym_xor_EQ] = ACTIONS(4848), + [anon_sym_LT_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_GT_EQ] = ACTIONS(4848), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4848), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_yield] = ACTIONS(4850), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_defer] = ACTIONS(4850), + [anon_sym_errdefer] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_expand] = ACTIONS(4850), + [anon_sym_for] = ACTIONS(4850), + [anon_sym_match] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_orelse] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_xor] = ACTIONS(4850), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4850), + [anon_sym_LT_LT_PIPE] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_catch] = ACTIONS(4850), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_unreachable] = ACTIONS(4850), + [anon_sym_undefined] = ACTIONS(4850), + [sym_sink] = ACTIONS(4850), + [sym_integer] = ACTIONS(4850), + [sym_float] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym_multiline_string] = ACTIONS(4848), + [sym_character] = ACTIONS(4848), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4848), + }, + [STATE(2270)] = { + [ts_builtin_sym_end] = ACTIONS(4852), + [sym_identifier] = ACTIONS(4854), + [anon_sym_import] = ACTIONS(4854), + [anon_sym_test] = ACTIONS(4854), + [anon_sym_hide] = ACTIONS(4854), + [anon_sym_func] = ACTIONS(4854), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4854), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_RBRACK] = ACTIONS(4852), + [anon_sym_void] = ACTIONS(4854), + [anon_sym_noreturn] = ACTIONS(4854), + [anon_sym_type] = ACTIONS(4854), + [anon_sym_anyopaque] = ACTIONS(4854), + [anon_sym_bool] = ACTIONS(4854), + [anon_sym_int] = ACTIONS(4854), + [anon_sym_uint] = ACTIONS(4854), + [anon_sym_float] = ACTIONS(4854), + [anon_sym_range] = ACTIONS(4854), + [anon_sym_i8] = ACTIONS(4854), + [anon_sym_i16] = ACTIONS(4854), + [anon_sym_i32] = ACTIONS(4854), + [anon_sym_i64] = ACTIONS(4854), + [anon_sym_u8] = ACTIONS(4854), + [anon_sym_u16] = ACTIONS(4854), + [anon_sym_u32] = ACTIONS(4854), + [anon_sym_u64] = ACTIONS(4854), + [anon_sym_isize] = ACTIONS(4854), + [anon_sym_usize] = ACTIONS(4854), + [anon_sym_f32] = ACTIONS(4854), + [anon_sym_f64] = ACTIONS(4854), + [anon_sym_c_char] = ACTIONS(4854), + [anon_sym_c_schar] = ACTIONS(4854), + [anon_sym_c_uchar] = ACTIONS(4854), + [anon_sym_c_short] = ACTIONS(4854), + [anon_sym_c_ushort] = ACTIONS(4854), + [anon_sym_c_int] = ACTIONS(4854), + [anon_sym_c_uint] = ACTIONS(4854), + [anon_sym_c_long] = ACTIONS(4854), + [anon_sym_c_ulong] = ACTIONS(4854), + [anon_sym_c_longlong] = ACTIONS(4854), + [anon_sym_c_ulonglong] = ACTIONS(4854), + [anon_sym_c_float] = ACTIONS(4854), + [anon_sym_c_double] = ACTIONS(4854), + [anon_sym_c_longdouble] = ACTIONS(4854), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_AMP_EQ] = ACTIONS(4852), + [anon_sym_PIPE_EQ] = ACTIONS(4852), + [anon_sym_xor_EQ] = ACTIONS(4852), + [anon_sym_LT_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_GT_EQ] = ACTIONS(4852), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4852), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_yield] = ACTIONS(4854), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_defer] = ACTIONS(4854), + [anon_sym_errdefer] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4854), + [anon_sym_expand] = ACTIONS(4854), + [anon_sym_for] = ACTIONS(4854), + [anon_sym_match] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4852), + [anon_sym_orelse] = ACTIONS(4854), + [anon_sym_or] = ACTIONS(4854), + [anon_sym_and] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_xor] = ACTIONS(4854), + [anon_sym_LT_LT] = ACTIONS(4854), + [anon_sym_GT_GT] = ACTIONS(4854), + [anon_sym_LT_LT_PIPE] = ACTIONS(4854), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_catch] = ACTIONS(4854), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_unreachable] = ACTIONS(4854), + [anon_sym_undefined] = ACTIONS(4854), + [sym_sink] = ACTIONS(4854), + [sym_integer] = ACTIONS(4854), + [sym_float] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [sym_multiline_string] = ACTIONS(4852), + [sym_character] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4852), + }, + [STATE(2271)] = { + [ts_builtin_sym_end] = ACTIONS(4856), + [sym_identifier] = ACTIONS(4858), + [anon_sym_import] = ACTIONS(4858), + [anon_sym_test] = ACTIONS(4858), + [anon_sym_hide] = ACTIONS(4858), + [anon_sym_func] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4858), + [anon_sym_EQ] = ACTIONS(4858), + [anon_sym_struct] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4858), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_RBRACK] = ACTIONS(4856), + [anon_sym_void] = ACTIONS(4858), + [anon_sym_noreturn] = ACTIONS(4858), + [anon_sym_type] = ACTIONS(4858), + [anon_sym_anyopaque] = ACTIONS(4858), + [anon_sym_bool] = ACTIONS(4858), + [anon_sym_int] = ACTIONS(4858), + [anon_sym_uint] = ACTIONS(4858), + [anon_sym_float] = ACTIONS(4858), + [anon_sym_range] = ACTIONS(4858), + [anon_sym_i8] = ACTIONS(4858), + [anon_sym_i16] = ACTIONS(4858), + [anon_sym_i32] = ACTIONS(4858), + [anon_sym_i64] = ACTIONS(4858), + [anon_sym_u8] = ACTIONS(4858), + [anon_sym_u16] = ACTIONS(4858), + [anon_sym_u32] = ACTIONS(4858), + [anon_sym_u64] = ACTIONS(4858), + [anon_sym_isize] = ACTIONS(4858), + [anon_sym_usize] = ACTIONS(4858), + [anon_sym_f32] = ACTIONS(4858), + [anon_sym_f64] = ACTIONS(4858), + [anon_sym_c_char] = ACTIONS(4858), + [anon_sym_c_schar] = ACTIONS(4858), + [anon_sym_c_uchar] = ACTIONS(4858), + [anon_sym_c_short] = ACTIONS(4858), + [anon_sym_c_ushort] = ACTIONS(4858), + [anon_sym_c_int] = ACTIONS(4858), + [anon_sym_c_uint] = ACTIONS(4858), + [anon_sym_c_long] = ACTIONS(4858), + [anon_sym_c_ulong] = ACTIONS(4858), + [anon_sym_c_longlong] = ACTIONS(4858), + [anon_sym_c_ulonglong] = ACTIONS(4858), + [anon_sym_c_float] = ACTIONS(4858), + [anon_sym_c_double] = ACTIONS(4858), + [anon_sym_c_longdouble] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_AMP_EQ] = ACTIONS(4856), + [anon_sym_PIPE_EQ] = ACTIONS(4856), + [anon_sym_xor_EQ] = ACTIONS(4856), + [anon_sym_LT_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_GT_EQ] = ACTIONS(4856), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4858), + [anon_sym_yield] = ACTIONS(4858), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4858), + [anon_sym_continue] = ACTIONS(4858), + [anon_sym_defer] = ACTIONS(4858), + [anon_sym_errdefer] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_while] = ACTIONS(4858), + [anon_sym_expand] = ACTIONS(4858), + [anon_sym_for] = ACTIONS(4858), + [anon_sym_match] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4856), + [anon_sym_orelse] = ACTIONS(4858), + [anon_sym_or] = ACTIONS(4858), + [anon_sym_and] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_xor] = ACTIONS(4858), + [anon_sym_LT_LT] = ACTIONS(4858), + [anon_sym_GT_GT] = ACTIONS(4858), + [anon_sym_LT_LT_PIPE] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4858), + [anon_sym_catch] = ACTIONS(4858), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_unreachable] = ACTIONS(4858), + [anon_sym_undefined] = ACTIONS(4858), + [sym_sink] = ACTIONS(4858), + [sym_integer] = ACTIONS(4858), + [sym_float] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [sym_multiline_string] = ACTIONS(4856), + [sym_character] = ACTIONS(4856), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4856), + }, + [STATE(2272)] = { + [ts_builtin_sym_end] = ACTIONS(4860), + [sym_identifier] = ACTIONS(4862), + [anon_sym_import] = ACTIONS(4862), + [anon_sym_test] = ACTIONS(4862), + [anon_sym_hide] = ACTIONS(4862), + [anon_sym_func] = ACTIONS(4862), + [anon_sym_BANG] = ACTIONS(4862), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_struct] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4862), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4862), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_RBRACK] = ACTIONS(4860), + [anon_sym_void] = ACTIONS(4862), + [anon_sym_noreturn] = ACTIONS(4862), + [anon_sym_type] = ACTIONS(4862), + [anon_sym_anyopaque] = ACTIONS(4862), + [anon_sym_bool] = ACTIONS(4862), + [anon_sym_int] = ACTIONS(4862), + [anon_sym_uint] = ACTIONS(4862), + [anon_sym_float] = ACTIONS(4862), + [anon_sym_range] = ACTIONS(4862), + [anon_sym_i8] = ACTIONS(4862), + [anon_sym_i16] = ACTIONS(4862), + [anon_sym_i32] = ACTIONS(4862), + [anon_sym_i64] = ACTIONS(4862), + [anon_sym_u8] = ACTIONS(4862), + [anon_sym_u16] = ACTIONS(4862), + [anon_sym_u32] = ACTIONS(4862), + [anon_sym_u64] = ACTIONS(4862), + [anon_sym_isize] = ACTIONS(4862), + [anon_sym_usize] = ACTIONS(4862), + [anon_sym_f32] = ACTIONS(4862), + [anon_sym_f64] = ACTIONS(4862), + [anon_sym_c_char] = ACTIONS(4862), + [anon_sym_c_schar] = ACTIONS(4862), + [anon_sym_c_uchar] = ACTIONS(4862), + [anon_sym_c_short] = ACTIONS(4862), + [anon_sym_c_ushort] = ACTIONS(4862), + [anon_sym_c_int] = ACTIONS(4862), + [anon_sym_c_uint] = ACTIONS(4862), + [anon_sym_c_long] = ACTIONS(4862), + [anon_sym_c_ulong] = ACTIONS(4862), + [anon_sym_c_longlong] = ACTIONS(4862), + [anon_sym_c_ulonglong] = ACTIONS(4862), + [anon_sym_c_float] = ACTIONS(4862), + [anon_sym_c_double] = ACTIONS(4862), + [anon_sym_c_longdouble] = ACTIONS(4862), + [anon_sym_PLUS_EQ] = ACTIONS(4860), + [anon_sym_DASH_EQ] = ACTIONS(4860), + [anon_sym_STAR_EQ] = ACTIONS(4860), + [anon_sym_SLASH_EQ] = ACTIONS(4860), + [anon_sym_AMP_EQ] = ACTIONS(4860), + [anon_sym_PIPE_EQ] = ACTIONS(4860), + [anon_sym_xor_EQ] = ACTIONS(4860), + [anon_sym_LT_LT_EQ] = ACTIONS(4860), + [anon_sym_GT_GT_EQ] = ACTIONS(4860), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4860), + [anon_sym_return] = ACTIONS(4862), + [anon_sym_yield] = ACTIONS(4862), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_break] = ACTIONS(4862), + [anon_sym_continue] = ACTIONS(4862), + [anon_sym_defer] = ACTIONS(4862), + [anon_sym_errdefer] = ACTIONS(4862), + [anon_sym_if] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_while] = ACTIONS(4862), + [anon_sym_expand] = ACTIONS(4862), + [anon_sym_for] = ACTIONS(4862), + [anon_sym_match] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4860), + [anon_sym_orelse] = ACTIONS(4862), + [anon_sym_or] = ACTIONS(4862), + [anon_sym_and] = ACTIONS(4862), + [anon_sym_EQ_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_xor] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4862), + [anon_sym_GT_GT] = ACTIONS(4862), + [anon_sym_LT_LT_PIPE] = ACTIONS(4862), + [anon_sym_PLUS] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4862), + [anon_sym_catch] = ACTIONS(4862), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_try] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4860), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_unreachable] = ACTIONS(4862), + [anon_sym_undefined] = ACTIONS(4862), + [sym_sink] = ACTIONS(4862), + [sym_integer] = ACTIONS(4862), + [sym_float] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [sym_multiline_string] = ACTIONS(4860), + [sym_character] = ACTIONS(4860), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4860), + }, + [STATE(2273)] = { + [ts_builtin_sym_end] = ACTIONS(4864), + [sym_identifier] = ACTIONS(4866), + [anon_sym_import] = ACTIONS(4866), + [anon_sym_test] = ACTIONS(4866), + [anon_sym_hide] = ACTIONS(4866), + [anon_sym_func] = ACTIONS(4866), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_struct] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4866), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4866), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_RBRACK] = ACTIONS(4864), + [anon_sym_void] = ACTIONS(4866), + [anon_sym_noreturn] = ACTIONS(4866), + [anon_sym_type] = ACTIONS(4866), + [anon_sym_anyopaque] = ACTIONS(4866), + [anon_sym_bool] = ACTIONS(4866), + [anon_sym_int] = ACTIONS(4866), + [anon_sym_uint] = ACTIONS(4866), + [anon_sym_float] = ACTIONS(4866), + [anon_sym_range] = ACTIONS(4866), + [anon_sym_i8] = ACTIONS(4866), + [anon_sym_i16] = ACTIONS(4866), + [anon_sym_i32] = ACTIONS(4866), + [anon_sym_i64] = ACTIONS(4866), + [anon_sym_u8] = ACTIONS(4866), + [anon_sym_u16] = ACTIONS(4866), + [anon_sym_u32] = ACTIONS(4866), + [anon_sym_u64] = ACTIONS(4866), + [anon_sym_isize] = ACTIONS(4866), + [anon_sym_usize] = ACTIONS(4866), + [anon_sym_f32] = ACTIONS(4866), + [anon_sym_f64] = ACTIONS(4866), + [anon_sym_c_char] = ACTIONS(4866), + [anon_sym_c_schar] = ACTIONS(4866), + [anon_sym_c_uchar] = ACTIONS(4866), + [anon_sym_c_short] = ACTIONS(4866), + [anon_sym_c_ushort] = ACTIONS(4866), + [anon_sym_c_int] = ACTIONS(4866), + [anon_sym_c_uint] = ACTIONS(4866), + [anon_sym_c_long] = ACTIONS(4866), + [anon_sym_c_ulong] = ACTIONS(4866), + [anon_sym_c_longlong] = ACTIONS(4866), + [anon_sym_c_ulonglong] = ACTIONS(4866), + [anon_sym_c_float] = ACTIONS(4866), + [anon_sym_c_double] = ACTIONS(4866), + [anon_sym_c_longdouble] = ACTIONS(4866), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_AMP_EQ] = ACTIONS(4864), + [anon_sym_PIPE_EQ] = ACTIONS(4864), + [anon_sym_xor_EQ] = ACTIONS(4864), + [anon_sym_LT_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_GT_EQ] = ACTIONS(4864), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4864), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_yield] = ACTIONS(4866), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_defer] = ACTIONS(4866), + [anon_sym_errdefer] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_while] = ACTIONS(4866), + [anon_sym_expand] = ACTIONS(4866), + [anon_sym_for] = ACTIONS(4866), + [anon_sym_match] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4864), + [anon_sym_orelse] = ACTIONS(4866), + [anon_sym_or] = ACTIONS(4866), + [anon_sym_and] = ACTIONS(4866), + [anon_sym_EQ_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_xor] = ACTIONS(4866), + [anon_sym_LT_LT] = ACTIONS(4866), + [anon_sym_GT_GT] = ACTIONS(4866), + [anon_sym_LT_LT_PIPE] = ACTIONS(4866), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_catch] = ACTIONS(4866), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_unreachable] = ACTIONS(4866), + [anon_sym_undefined] = ACTIONS(4866), + [sym_sink] = ACTIONS(4866), + [sym_integer] = ACTIONS(4866), + [sym_float] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [sym_multiline_string] = ACTIONS(4864), + [sym_character] = ACTIONS(4864), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4864), + }, + [STATE(2274)] = { + [ts_builtin_sym_end] = ACTIONS(4868), + [sym_identifier] = ACTIONS(4870), + [anon_sym_import] = ACTIONS(4870), + [anon_sym_test] = ACTIONS(4870), + [anon_sym_hide] = ACTIONS(4870), + [anon_sym_func] = ACTIONS(4870), + [anon_sym_BANG] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_struct] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4870), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4870), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_RBRACK] = ACTIONS(4868), + [anon_sym_void] = ACTIONS(4870), + [anon_sym_noreturn] = ACTIONS(4870), + [anon_sym_type] = ACTIONS(4870), + [anon_sym_anyopaque] = ACTIONS(4870), + [anon_sym_bool] = ACTIONS(4870), + [anon_sym_int] = ACTIONS(4870), + [anon_sym_uint] = ACTIONS(4870), + [anon_sym_float] = ACTIONS(4870), + [anon_sym_range] = ACTIONS(4870), + [anon_sym_i8] = ACTIONS(4870), + [anon_sym_i16] = ACTIONS(4870), + [anon_sym_i32] = ACTIONS(4870), + [anon_sym_i64] = ACTIONS(4870), + [anon_sym_u8] = ACTIONS(4870), + [anon_sym_u16] = ACTIONS(4870), + [anon_sym_u32] = ACTIONS(4870), + [anon_sym_u64] = ACTIONS(4870), + [anon_sym_isize] = ACTIONS(4870), + [anon_sym_usize] = ACTIONS(4870), + [anon_sym_f32] = ACTIONS(4870), + [anon_sym_f64] = ACTIONS(4870), + [anon_sym_c_char] = ACTIONS(4870), + [anon_sym_c_schar] = ACTIONS(4870), + [anon_sym_c_uchar] = ACTIONS(4870), + [anon_sym_c_short] = ACTIONS(4870), + [anon_sym_c_ushort] = ACTIONS(4870), + [anon_sym_c_int] = ACTIONS(4870), + [anon_sym_c_uint] = ACTIONS(4870), + [anon_sym_c_long] = ACTIONS(4870), + [anon_sym_c_ulong] = ACTIONS(4870), + [anon_sym_c_longlong] = ACTIONS(4870), + [anon_sym_c_ulonglong] = ACTIONS(4870), + [anon_sym_c_float] = ACTIONS(4870), + [anon_sym_c_double] = ACTIONS(4870), + [anon_sym_c_longdouble] = ACTIONS(4870), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_AMP_EQ] = ACTIONS(4868), + [anon_sym_PIPE_EQ] = ACTIONS(4868), + [anon_sym_xor_EQ] = ACTIONS(4868), + [anon_sym_LT_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_GT_EQ] = ACTIONS(4868), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4868), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_yield] = ACTIONS(4870), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_defer] = ACTIONS(4870), + [anon_sym_errdefer] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_while] = ACTIONS(4870), + [anon_sym_expand] = ACTIONS(4870), + [anon_sym_for] = ACTIONS(4870), + [anon_sym_match] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4868), + [anon_sym_orelse] = ACTIONS(4870), + [anon_sym_or] = ACTIONS(4870), + [anon_sym_and] = ACTIONS(4870), + [anon_sym_EQ_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_xor] = ACTIONS(4870), + [anon_sym_LT_LT] = ACTIONS(4870), + [anon_sym_GT_GT] = ACTIONS(4870), + [anon_sym_LT_LT_PIPE] = ACTIONS(4870), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_catch] = ACTIONS(4870), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_unreachable] = ACTIONS(4870), + [anon_sym_undefined] = ACTIONS(4870), + [sym_sink] = ACTIONS(4870), + [sym_integer] = ACTIONS(4870), + [sym_float] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [sym_multiline_string] = ACTIONS(4868), + [sym_character] = ACTIONS(4868), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4868), + }, + [STATE(2275)] = { + [ts_builtin_sym_end] = ACTIONS(4872), + [sym_identifier] = ACTIONS(4874), + [anon_sym_import] = ACTIONS(4874), + [anon_sym_test] = ACTIONS(4874), + [anon_sym_hide] = ACTIONS(4874), + [anon_sym_func] = ACTIONS(4874), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_struct] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4874), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_RBRACK] = ACTIONS(4872), + [anon_sym_void] = ACTIONS(4874), + [anon_sym_noreturn] = ACTIONS(4874), + [anon_sym_type] = ACTIONS(4874), + [anon_sym_anyopaque] = ACTIONS(4874), + [anon_sym_bool] = ACTIONS(4874), + [anon_sym_int] = ACTIONS(4874), + [anon_sym_uint] = ACTIONS(4874), + [anon_sym_float] = ACTIONS(4874), + [anon_sym_range] = ACTIONS(4874), + [anon_sym_i8] = ACTIONS(4874), + [anon_sym_i16] = ACTIONS(4874), + [anon_sym_i32] = ACTIONS(4874), + [anon_sym_i64] = ACTIONS(4874), + [anon_sym_u8] = ACTIONS(4874), + [anon_sym_u16] = ACTIONS(4874), + [anon_sym_u32] = ACTIONS(4874), + [anon_sym_u64] = ACTIONS(4874), + [anon_sym_isize] = ACTIONS(4874), + [anon_sym_usize] = ACTIONS(4874), + [anon_sym_f32] = ACTIONS(4874), + [anon_sym_f64] = ACTIONS(4874), + [anon_sym_c_char] = ACTIONS(4874), + [anon_sym_c_schar] = ACTIONS(4874), + [anon_sym_c_uchar] = ACTIONS(4874), + [anon_sym_c_short] = ACTIONS(4874), + [anon_sym_c_ushort] = ACTIONS(4874), + [anon_sym_c_int] = ACTIONS(4874), + [anon_sym_c_uint] = ACTIONS(4874), + [anon_sym_c_long] = ACTIONS(4874), + [anon_sym_c_ulong] = ACTIONS(4874), + [anon_sym_c_longlong] = ACTIONS(4874), + [anon_sym_c_ulonglong] = ACTIONS(4874), + [anon_sym_c_float] = ACTIONS(4874), + [anon_sym_c_double] = ACTIONS(4874), + [anon_sym_c_longdouble] = ACTIONS(4874), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_AMP_EQ] = ACTIONS(4872), + [anon_sym_PIPE_EQ] = ACTIONS(4872), + [anon_sym_xor_EQ] = ACTIONS(4872), + [anon_sym_LT_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_GT_EQ] = ACTIONS(4872), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4872), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_yield] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_defer] = ACTIONS(4874), + [anon_sym_errdefer] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_expand] = ACTIONS(4874), + [anon_sym_for] = ACTIONS(4874), + [anon_sym_match] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4872), + [anon_sym_orelse] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_xor] = ACTIONS(4874), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4874), + [anon_sym_LT_LT_PIPE] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_catch] = ACTIONS(4874), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_unreachable] = ACTIONS(4874), + [anon_sym_undefined] = ACTIONS(4874), + [sym_sink] = ACTIONS(4874), + [sym_integer] = ACTIONS(4874), + [sym_float] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [sym_multiline_string] = ACTIONS(4872), + [sym_character] = ACTIONS(4872), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4872), + }, + [STATE(2276)] = { + [ts_builtin_sym_end] = ACTIONS(4876), + [sym_identifier] = ACTIONS(4878), + [anon_sym_import] = ACTIONS(4878), + [anon_sym_test] = ACTIONS(4878), + [anon_sym_hide] = ACTIONS(4878), + [anon_sym_func] = ACTIONS(4878), + [anon_sym_BANG] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_struct] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4878), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_RBRACK] = ACTIONS(4876), + [anon_sym_void] = ACTIONS(4878), + [anon_sym_noreturn] = ACTIONS(4878), + [anon_sym_type] = ACTIONS(4878), + [anon_sym_anyopaque] = ACTIONS(4878), + [anon_sym_bool] = ACTIONS(4878), + [anon_sym_int] = ACTIONS(4878), + [anon_sym_uint] = ACTIONS(4878), + [anon_sym_float] = ACTIONS(4878), + [anon_sym_range] = ACTIONS(4878), + [anon_sym_i8] = ACTIONS(4878), + [anon_sym_i16] = ACTIONS(4878), + [anon_sym_i32] = ACTIONS(4878), + [anon_sym_i64] = ACTIONS(4878), + [anon_sym_u8] = ACTIONS(4878), + [anon_sym_u16] = ACTIONS(4878), + [anon_sym_u32] = ACTIONS(4878), + [anon_sym_u64] = ACTIONS(4878), + [anon_sym_isize] = ACTIONS(4878), + [anon_sym_usize] = ACTIONS(4878), + [anon_sym_f32] = ACTIONS(4878), + [anon_sym_f64] = ACTIONS(4878), + [anon_sym_c_char] = ACTIONS(4878), + [anon_sym_c_schar] = ACTIONS(4878), + [anon_sym_c_uchar] = ACTIONS(4878), + [anon_sym_c_short] = ACTIONS(4878), + [anon_sym_c_ushort] = ACTIONS(4878), + [anon_sym_c_int] = ACTIONS(4878), + [anon_sym_c_uint] = ACTIONS(4878), + [anon_sym_c_long] = ACTIONS(4878), + [anon_sym_c_ulong] = ACTIONS(4878), + [anon_sym_c_longlong] = ACTIONS(4878), + [anon_sym_c_ulonglong] = ACTIONS(4878), + [anon_sym_c_float] = ACTIONS(4878), + [anon_sym_c_double] = ACTIONS(4878), + [anon_sym_c_longdouble] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_AMP_EQ] = ACTIONS(4876), + [anon_sym_PIPE_EQ] = ACTIONS(4876), + [anon_sym_xor_EQ] = ACTIONS(4876), + [anon_sym_LT_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_GT_EQ] = ACTIONS(4876), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4876), + [anon_sym_return] = ACTIONS(4878), + [anon_sym_yield] = ACTIONS(4878), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_break] = ACTIONS(4878), + [anon_sym_continue] = ACTIONS(4878), + [anon_sym_defer] = ACTIONS(4878), + [anon_sym_errdefer] = ACTIONS(4878), + [anon_sym_if] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_while] = ACTIONS(4878), + [anon_sym_expand] = ACTIONS(4878), + [anon_sym_for] = ACTIONS(4878), + [anon_sym_match] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4876), + [anon_sym_orelse] = ACTIONS(4878), + [anon_sym_or] = ACTIONS(4878), + [anon_sym_and] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_xor] = ACTIONS(4878), + [anon_sym_LT_LT] = ACTIONS(4878), + [anon_sym_GT_GT] = ACTIONS(4878), + [anon_sym_LT_LT_PIPE] = ACTIONS(4878), + [anon_sym_PLUS] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4878), + [anon_sym_catch] = ACTIONS(4878), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_try] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4878), + [anon_sym_false] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4878), + [anon_sym_unreachable] = ACTIONS(4878), + [anon_sym_undefined] = ACTIONS(4878), + [sym_sink] = ACTIONS(4878), + [sym_integer] = ACTIONS(4878), + [sym_float] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [sym_multiline_string] = ACTIONS(4876), + [sym_character] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4876), + }, + [STATE(2277)] = { + [ts_builtin_sym_end] = ACTIONS(4880), + [sym_identifier] = ACTIONS(4882), + [anon_sym_import] = ACTIONS(4882), + [anon_sym_test] = ACTIONS(4882), + [anon_sym_hide] = ACTIONS(4882), + [anon_sym_func] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_struct] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_RBRACK] = ACTIONS(4880), + [anon_sym_void] = ACTIONS(4882), + [anon_sym_noreturn] = ACTIONS(4882), + [anon_sym_type] = ACTIONS(4882), + [anon_sym_anyopaque] = ACTIONS(4882), + [anon_sym_bool] = ACTIONS(4882), + [anon_sym_int] = ACTIONS(4882), + [anon_sym_uint] = ACTIONS(4882), + [anon_sym_float] = ACTIONS(4882), + [anon_sym_range] = ACTIONS(4882), + [anon_sym_i8] = ACTIONS(4882), + [anon_sym_i16] = ACTIONS(4882), + [anon_sym_i32] = ACTIONS(4882), + [anon_sym_i64] = ACTIONS(4882), + [anon_sym_u8] = ACTIONS(4882), + [anon_sym_u16] = ACTIONS(4882), + [anon_sym_u32] = ACTIONS(4882), + [anon_sym_u64] = ACTIONS(4882), + [anon_sym_isize] = ACTIONS(4882), + [anon_sym_usize] = ACTIONS(4882), + [anon_sym_f32] = ACTIONS(4882), + [anon_sym_f64] = ACTIONS(4882), + [anon_sym_c_char] = ACTIONS(4882), + [anon_sym_c_schar] = ACTIONS(4882), + [anon_sym_c_uchar] = ACTIONS(4882), + [anon_sym_c_short] = ACTIONS(4882), + [anon_sym_c_ushort] = ACTIONS(4882), + [anon_sym_c_int] = ACTIONS(4882), + [anon_sym_c_uint] = ACTIONS(4882), + [anon_sym_c_long] = ACTIONS(4882), + [anon_sym_c_ulong] = ACTIONS(4882), + [anon_sym_c_longlong] = ACTIONS(4882), + [anon_sym_c_ulonglong] = ACTIONS(4882), + [anon_sym_c_float] = ACTIONS(4882), + [anon_sym_c_double] = ACTIONS(4882), + [anon_sym_c_longdouble] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_AMP_EQ] = ACTIONS(4880), + [anon_sym_PIPE_EQ] = ACTIONS(4880), + [anon_sym_xor_EQ] = ACTIONS(4880), + [anon_sym_LT_LT_EQ] = ACTIONS(4880), + [anon_sym_GT_GT_EQ] = ACTIONS(4880), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4882), + [anon_sym_yield] = ACTIONS(4882), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4882), + [anon_sym_continue] = ACTIONS(4882), + [anon_sym_defer] = ACTIONS(4882), + [anon_sym_errdefer] = ACTIONS(4882), + [anon_sym_if] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_while] = ACTIONS(4882), + [anon_sym_expand] = ACTIONS(4882), + [anon_sym_for] = ACTIONS(4882), + [anon_sym_match] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4880), + [anon_sym_orelse] = ACTIONS(4882), + [anon_sym_or] = ACTIONS(4882), + [anon_sym_and] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_xor] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4882), + [anon_sym_GT_GT] = ACTIONS(4882), + [anon_sym_LT_LT_PIPE] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_catch] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_unreachable] = ACTIONS(4882), + [anon_sym_undefined] = ACTIONS(4882), + [sym_sink] = ACTIONS(4882), + [sym_integer] = ACTIONS(4882), + [sym_float] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [sym_multiline_string] = ACTIONS(4880), + [sym_character] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4880), + }, + [STATE(2278)] = { + [ts_builtin_sym_end] = ACTIONS(4884), + [sym_identifier] = ACTIONS(4886), + [anon_sym_import] = ACTIONS(4886), + [anon_sym_test] = ACTIONS(4886), + [anon_sym_hide] = ACTIONS(4886), + [anon_sym_func] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4886), + [anon_sym_struct] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4886), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_RBRACK] = ACTIONS(4884), + [anon_sym_void] = ACTIONS(4886), + [anon_sym_noreturn] = ACTIONS(4886), + [anon_sym_type] = ACTIONS(4886), + [anon_sym_anyopaque] = ACTIONS(4886), + [anon_sym_bool] = ACTIONS(4886), + [anon_sym_int] = ACTIONS(4886), + [anon_sym_uint] = ACTIONS(4886), + [anon_sym_float] = ACTIONS(4886), + [anon_sym_range] = ACTIONS(4886), + [anon_sym_i8] = ACTIONS(4886), + [anon_sym_i16] = ACTIONS(4886), + [anon_sym_i32] = ACTIONS(4886), + [anon_sym_i64] = ACTIONS(4886), + [anon_sym_u8] = ACTIONS(4886), + [anon_sym_u16] = ACTIONS(4886), + [anon_sym_u32] = ACTIONS(4886), + [anon_sym_u64] = ACTIONS(4886), + [anon_sym_isize] = ACTIONS(4886), + [anon_sym_usize] = ACTIONS(4886), + [anon_sym_f32] = ACTIONS(4886), + [anon_sym_f64] = ACTIONS(4886), + [anon_sym_c_char] = ACTIONS(4886), + [anon_sym_c_schar] = ACTIONS(4886), + [anon_sym_c_uchar] = ACTIONS(4886), + [anon_sym_c_short] = ACTIONS(4886), + [anon_sym_c_ushort] = ACTIONS(4886), + [anon_sym_c_int] = ACTIONS(4886), + [anon_sym_c_uint] = ACTIONS(4886), + [anon_sym_c_long] = ACTIONS(4886), + [anon_sym_c_ulong] = ACTIONS(4886), + [anon_sym_c_longlong] = ACTIONS(4886), + [anon_sym_c_ulonglong] = ACTIONS(4886), + [anon_sym_c_float] = ACTIONS(4886), + [anon_sym_c_double] = ACTIONS(4886), + [anon_sym_c_longdouble] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4884), + [anon_sym_DASH_EQ] = ACTIONS(4884), + [anon_sym_STAR_EQ] = ACTIONS(4884), + [anon_sym_SLASH_EQ] = ACTIONS(4884), + [anon_sym_AMP_EQ] = ACTIONS(4884), + [anon_sym_PIPE_EQ] = ACTIONS(4884), + [anon_sym_xor_EQ] = ACTIONS(4884), + [anon_sym_LT_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_GT_EQ] = ACTIONS(4884), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4886), + [anon_sym_yield] = ACTIONS(4886), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_break] = ACTIONS(4886), + [anon_sym_continue] = ACTIONS(4886), + [anon_sym_defer] = ACTIONS(4886), + [anon_sym_errdefer] = ACTIONS(4886), + [anon_sym_if] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_while] = ACTIONS(4886), + [anon_sym_expand] = ACTIONS(4886), + [anon_sym_for] = ACTIONS(4886), + [anon_sym_match] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), + [anon_sym_orelse] = ACTIONS(4886), + [anon_sym_or] = ACTIONS(4886), + [anon_sym_and] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_xor] = ACTIONS(4886), + [anon_sym_LT_LT] = ACTIONS(4886), + [anon_sym_GT_GT] = ACTIONS(4886), + [anon_sym_LT_LT_PIPE] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_catch] = ACTIONS(4886), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4884), + [anon_sym_true] = ACTIONS(4886), + [anon_sym_false] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4886), + [anon_sym_unreachable] = ACTIONS(4886), + [anon_sym_undefined] = ACTIONS(4886), + [sym_sink] = ACTIONS(4886), + [sym_integer] = ACTIONS(4886), + [sym_float] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [sym_multiline_string] = ACTIONS(4884), + [sym_character] = ACTIONS(4884), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4884), + }, + [STATE(2279)] = { + [ts_builtin_sym_end] = ACTIONS(4888), + [sym_identifier] = ACTIONS(4890), + [anon_sym_import] = ACTIONS(4890), + [anon_sym_test] = ACTIONS(4890), + [anon_sym_hide] = ACTIONS(4890), + [anon_sym_func] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4890), + [anon_sym_EQ] = ACTIONS(4890), + [anon_sym_struct] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4890), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_RBRACK] = ACTIONS(4888), + [anon_sym_void] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym_type] = ACTIONS(4890), + [anon_sym_anyopaque] = ACTIONS(4890), + [anon_sym_bool] = ACTIONS(4890), + [anon_sym_int] = ACTIONS(4890), + [anon_sym_uint] = ACTIONS(4890), + [anon_sym_float] = ACTIONS(4890), + [anon_sym_range] = ACTIONS(4890), + [anon_sym_i8] = ACTIONS(4890), + [anon_sym_i16] = ACTIONS(4890), + [anon_sym_i32] = ACTIONS(4890), + [anon_sym_i64] = ACTIONS(4890), + [anon_sym_u8] = ACTIONS(4890), + [anon_sym_u16] = ACTIONS(4890), + [anon_sym_u32] = ACTIONS(4890), + [anon_sym_u64] = ACTIONS(4890), + [anon_sym_isize] = ACTIONS(4890), + [anon_sym_usize] = ACTIONS(4890), + [anon_sym_f32] = ACTIONS(4890), + [anon_sym_f64] = ACTIONS(4890), + [anon_sym_c_char] = ACTIONS(4890), + [anon_sym_c_schar] = ACTIONS(4890), + [anon_sym_c_uchar] = ACTIONS(4890), + [anon_sym_c_short] = ACTIONS(4890), + [anon_sym_c_ushort] = ACTIONS(4890), + [anon_sym_c_int] = ACTIONS(4890), + [anon_sym_c_uint] = ACTIONS(4890), + [anon_sym_c_long] = ACTIONS(4890), + [anon_sym_c_ulong] = ACTIONS(4890), + [anon_sym_c_longlong] = ACTIONS(4890), + [anon_sym_c_ulonglong] = ACTIONS(4890), + [anon_sym_c_float] = ACTIONS(4890), + [anon_sym_c_double] = ACTIONS(4890), + [anon_sym_c_longdouble] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4888), + [anon_sym_DASH_EQ] = ACTIONS(4888), + [anon_sym_STAR_EQ] = ACTIONS(4888), + [anon_sym_SLASH_EQ] = ACTIONS(4888), + [anon_sym_AMP_EQ] = ACTIONS(4888), + [anon_sym_PIPE_EQ] = ACTIONS(4888), + [anon_sym_xor_EQ] = ACTIONS(4888), + [anon_sym_LT_LT_EQ] = ACTIONS(4888), + [anon_sym_GT_GT_EQ] = ACTIONS(4888), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4888), + [anon_sym_return] = ACTIONS(4890), + [anon_sym_yield] = ACTIONS(4890), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_break] = ACTIONS(4890), + [anon_sym_continue] = ACTIONS(4890), + [anon_sym_defer] = ACTIONS(4890), + [anon_sym_errdefer] = ACTIONS(4890), + [anon_sym_if] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_while] = ACTIONS(4890), + [anon_sym_expand] = ACTIONS(4890), + [anon_sym_for] = ACTIONS(4890), + [anon_sym_match] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), + [anon_sym_orelse] = ACTIONS(4890), + [anon_sym_or] = ACTIONS(4890), + [anon_sym_and] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_xor] = ACTIONS(4890), + [anon_sym_LT_LT] = ACTIONS(4890), + [anon_sym_GT_GT] = ACTIONS(4890), + [anon_sym_LT_LT_PIPE] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_catch] = ACTIONS(4890), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4888), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_unreachable] = ACTIONS(4890), + [anon_sym_undefined] = ACTIONS(4890), + [sym_sink] = ACTIONS(4890), + [sym_integer] = ACTIONS(4890), + [sym_float] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [sym_multiline_string] = ACTIONS(4888), + [sym_character] = ACTIONS(4888), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4888), + }, + [STATE(2280)] = { + [ts_builtin_sym_end] = ACTIONS(4892), + [sym_identifier] = ACTIONS(4894), + [anon_sym_import] = ACTIONS(4894), + [anon_sym_test] = ACTIONS(4894), + [anon_sym_hide] = ACTIONS(4894), + [anon_sym_func] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_struct] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_RBRACK] = ACTIONS(4892), + [anon_sym_void] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym_type] = ACTIONS(4894), + [anon_sym_anyopaque] = ACTIONS(4894), + [anon_sym_bool] = ACTIONS(4894), + [anon_sym_int] = ACTIONS(4894), + [anon_sym_uint] = ACTIONS(4894), + [anon_sym_float] = ACTIONS(4894), + [anon_sym_range] = ACTIONS(4894), + [anon_sym_i8] = ACTIONS(4894), + [anon_sym_i16] = ACTIONS(4894), + [anon_sym_i32] = ACTIONS(4894), + [anon_sym_i64] = ACTIONS(4894), + [anon_sym_u8] = ACTIONS(4894), + [anon_sym_u16] = ACTIONS(4894), + [anon_sym_u32] = ACTIONS(4894), + [anon_sym_u64] = ACTIONS(4894), + [anon_sym_isize] = ACTIONS(4894), + [anon_sym_usize] = ACTIONS(4894), + [anon_sym_f32] = ACTIONS(4894), + [anon_sym_f64] = ACTIONS(4894), + [anon_sym_c_char] = ACTIONS(4894), + [anon_sym_c_schar] = ACTIONS(4894), + [anon_sym_c_uchar] = ACTIONS(4894), + [anon_sym_c_short] = ACTIONS(4894), + [anon_sym_c_ushort] = ACTIONS(4894), + [anon_sym_c_int] = ACTIONS(4894), + [anon_sym_c_uint] = ACTIONS(4894), + [anon_sym_c_long] = ACTIONS(4894), + [anon_sym_c_ulong] = ACTIONS(4894), + [anon_sym_c_longlong] = ACTIONS(4894), + [anon_sym_c_ulonglong] = ACTIONS(4894), + [anon_sym_c_float] = ACTIONS(4894), + [anon_sym_c_double] = ACTIONS(4894), + [anon_sym_c_longdouble] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4892), + [anon_sym_DASH_EQ] = ACTIONS(4892), + [anon_sym_STAR_EQ] = ACTIONS(4892), + [anon_sym_SLASH_EQ] = ACTIONS(4892), + [anon_sym_AMP_EQ] = ACTIONS(4892), + [anon_sym_PIPE_EQ] = ACTIONS(4892), + [anon_sym_xor_EQ] = ACTIONS(4892), + [anon_sym_LT_LT_EQ] = ACTIONS(4892), + [anon_sym_GT_GT_EQ] = ACTIONS(4892), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4894), + [anon_sym_yield] = ACTIONS(4894), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4894), + [anon_sym_continue] = ACTIONS(4894), + [anon_sym_defer] = ACTIONS(4894), + [anon_sym_errdefer] = ACTIONS(4894), + [anon_sym_if] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4894), + [anon_sym_while] = ACTIONS(4894), + [anon_sym_expand] = ACTIONS(4894), + [anon_sym_for] = ACTIONS(4894), + [anon_sym_match] = ACTIONS(4894), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4892), + [anon_sym_orelse] = ACTIONS(4894), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_and] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_xor] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4894), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_LT_LT_PIPE] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_catch] = ACTIONS(4894), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4892), + [anon_sym_true] = ACTIONS(4894), + [anon_sym_false] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4894), + [anon_sym_unreachable] = ACTIONS(4894), + [anon_sym_undefined] = ACTIONS(4894), + [sym_sink] = ACTIONS(4894), + [sym_integer] = ACTIONS(4894), + [sym_float] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [sym_multiline_string] = ACTIONS(4892), + [sym_character] = ACTIONS(4892), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4892), + }, + [STATE(2281)] = { + [ts_builtin_sym_end] = ACTIONS(4896), + [sym_identifier] = ACTIONS(4898), + [anon_sym_import] = ACTIONS(4898), + [anon_sym_test] = ACTIONS(4898), + [anon_sym_hide] = ACTIONS(4898), + [anon_sym_func] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_struct] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_RBRACE] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_RBRACK] = ACTIONS(4896), + [anon_sym_void] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym_type] = ACTIONS(4898), + [anon_sym_anyopaque] = ACTIONS(4898), + [anon_sym_bool] = ACTIONS(4898), + [anon_sym_int] = ACTIONS(4898), + [anon_sym_uint] = ACTIONS(4898), + [anon_sym_float] = ACTIONS(4898), + [anon_sym_range] = ACTIONS(4898), + [anon_sym_i8] = ACTIONS(4898), + [anon_sym_i16] = ACTIONS(4898), + [anon_sym_i32] = ACTIONS(4898), + [anon_sym_i64] = ACTIONS(4898), + [anon_sym_u8] = ACTIONS(4898), + [anon_sym_u16] = ACTIONS(4898), + [anon_sym_u32] = ACTIONS(4898), + [anon_sym_u64] = ACTIONS(4898), + [anon_sym_isize] = ACTIONS(4898), + [anon_sym_usize] = ACTIONS(4898), + [anon_sym_f32] = ACTIONS(4898), + [anon_sym_f64] = ACTIONS(4898), + [anon_sym_c_char] = ACTIONS(4898), + [anon_sym_c_schar] = ACTIONS(4898), + [anon_sym_c_uchar] = ACTIONS(4898), + [anon_sym_c_short] = ACTIONS(4898), + [anon_sym_c_ushort] = ACTIONS(4898), + [anon_sym_c_int] = ACTIONS(4898), + [anon_sym_c_uint] = ACTIONS(4898), + [anon_sym_c_long] = ACTIONS(4898), + [anon_sym_c_ulong] = ACTIONS(4898), + [anon_sym_c_longlong] = ACTIONS(4898), + [anon_sym_c_ulonglong] = ACTIONS(4898), + [anon_sym_c_float] = ACTIONS(4898), + [anon_sym_c_double] = ACTIONS(4898), + [anon_sym_c_longdouble] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4896), + [anon_sym_DASH_EQ] = ACTIONS(4896), + [anon_sym_STAR_EQ] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(4896), + [anon_sym_AMP_EQ] = ACTIONS(4896), + [anon_sym_PIPE_EQ] = ACTIONS(4896), + [anon_sym_xor_EQ] = ACTIONS(4896), + [anon_sym_LT_LT_EQ] = ACTIONS(4896), + [anon_sym_GT_GT_EQ] = ACTIONS(4896), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4896), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_yield] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_continue] = ACTIONS(4898), + [anon_sym_defer] = ACTIONS(4898), + [anon_sym_errdefer] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_while] = ACTIONS(4898), + [anon_sym_expand] = ACTIONS(4898), + [anon_sym_for] = ACTIONS(4898), + [anon_sym_match] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4896), + [anon_sym_orelse] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4898), + [anon_sym_LT_LT_PIPE] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_catch] = ACTIONS(4898), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_unreachable] = ACTIONS(4898), + [anon_sym_undefined] = ACTIONS(4898), + [sym_sink] = ACTIONS(4898), + [sym_integer] = ACTIONS(4898), + [sym_float] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [sym_multiline_string] = ACTIONS(4896), + [sym_character] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4896), + }, + [STATE(2282)] = { + [ts_builtin_sym_end] = ACTIONS(4900), + [sym_identifier] = ACTIONS(4902), + [anon_sym_import] = ACTIONS(4902), + [anon_sym_test] = ACTIONS(4902), + [anon_sym_hide] = ACTIONS(4902), + [anon_sym_func] = ACTIONS(4902), + [anon_sym_BANG] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_struct] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4902), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_void] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym_type] = ACTIONS(4902), + [anon_sym_anyopaque] = ACTIONS(4902), + [anon_sym_bool] = ACTIONS(4902), + [anon_sym_int] = ACTIONS(4902), + [anon_sym_uint] = ACTIONS(4902), + [anon_sym_float] = ACTIONS(4902), + [anon_sym_range] = ACTIONS(4902), + [anon_sym_i8] = ACTIONS(4902), + [anon_sym_i16] = ACTIONS(4902), + [anon_sym_i32] = ACTIONS(4902), + [anon_sym_i64] = ACTIONS(4902), + [anon_sym_u8] = ACTIONS(4902), + [anon_sym_u16] = ACTIONS(4902), + [anon_sym_u32] = ACTIONS(4902), + [anon_sym_u64] = ACTIONS(4902), + [anon_sym_isize] = ACTIONS(4902), + [anon_sym_usize] = ACTIONS(4902), + [anon_sym_f32] = ACTIONS(4902), + [anon_sym_f64] = ACTIONS(4902), + [anon_sym_c_char] = ACTIONS(4902), + [anon_sym_c_schar] = ACTIONS(4902), + [anon_sym_c_uchar] = ACTIONS(4902), + [anon_sym_c_short] = ACTIONS(4902), + [anon_sym_c_ushort] = ACTIONS(4902), + [anon_sym_c_int] = ACTIONS(4902), + [anon_sym_c_uint] = ACTIONS(4902), + [anon_sym_c_long] = ACTIONS(4902), + [anon_sym_c_ulong] = ACTIONS(4902), + [anon_sym_c_longlong] = ACTIONS(4902), + [anon_sym_c_ulonglong] = ACTIONS(4902), + [anon_sym_c_float] = ACTIONS(4902), + [anon_sym_c_double] = ACTIONS(4902), + [anon_sym_c_longdouble] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_AMP_EQ] = ACTIONS(4900), + [anon_sym_PIPE_EQ] = ACTIONS(4900), + [anon_sym_xor_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4900), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_yield] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_continue] = ACTIONS(4902), + [anon_sym_defer] = ACTIONS(4902), + [anon_sym_errdefer] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_while] = ACTIONS(4902), + [anon_sym_expand] = ACTIONS(4902), + [anon_sym_for] = ACTIONS(4902), + [anon_sym_match] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4900), + [anon_sym_orelse] = ACTIONS(4902), + [anon_sym_or] = ACTIONS(4902), + [anon_sym_and] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_xor] = ACTIONS(4902), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_LT_LT_PIPE] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_catch] = ACTIONS(4902), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4902), + [anon_sym_false] = ACTIONS(4902), + [anon_sym_null] = ACTIONS(4902), + [anon_sym_unreachable] = ACTIONS(4902), + [anon_sym_undefined] = ACTIONS(4902), + [sym_sink] = ACTIONS(4902), + [sym_integer] = ACTIONS(4902), + [sym_float] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [sym_multiline_string] = ACTIONS(4900), + [sym_character] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4900), + }, + [STATE(2283)] = { + [ts_builtin_sym_end] = ACTIONS(4904), + [sym_identifier] = ACTIONS(4906), + [anon_sym_import] = ACTIONS(4906), + [anon_sym_test] = ACTIONS(4906), + [anon_sym_hide] = ACTIONS(4906), + [anon_sym_func] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_void] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym_type] = ACTIONS(4906), + [anon_sym_anyopaque] = ACTIONS(4906), + [anon_sym_bool] = ACTIONS(4906), + [anon_sym_int] = ACTIONS(4906), + [anon_sym_uint] = ACTIONS(4906), + [anon_sym_float] = ACTIONS(4906), + [anon_sym_range] = ACTIONS(4906), + [anon_sym_i8] = ACTIONS(4906), + [anon_sym_i16] = ACTIONS(4906), + [anon_sym_i32] = ACTIONS(4906), + [anon_sym_i64] = ACTIONS(4906), + [anon_sym_u8] = ACTIONS(4906), + [anon_sym_u16] = ACTIONS(4906), + [anon_sym_u32] = ACTIONS(4906), + [anon_sym_u64] = ACTIONS(4906), + [anon_sym_isize] = ACTIONS(4906), + [anon_sym_usize] = ACTIONS(4906), + [anon_sym_f32] = ACTIONS(4906), + [anon_sym_f64] = ACTIONS(4906), + [anon_sym_c_char] = ACTIONS(4906), + [anon_sym_c_schar] = ACTIONS(4906), + [anon_sym_c_uchar] = ACTIONS(4906), + [anon_sym_c_short] = ACTIONS(4906), + [anon_sym_c_ushort] = ACTIONS(4906), + [anon_sym_c_int] = ACTIONS(4906), + [anon_sym_c_uint] = ACTIONS(4906), + [anon_sym_c_long] = ACTIONS(4906), + [anon_sym_c_ulong] = ACTIONS(4906), + [anon_sym_c_longlong] = ACTIONS(4906), + [anon_sym_c_ulonglong] = ACTIONS(4906), + [anon_sym_c_float] = ACTIONS(4906), + [anon_sym_c_double] = ACTIONS(4906), + [anon_sym_c_longdouble] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_AMP_EQ] = ACTIONS(4904), + [anon_sym_PIPE_EQ] = ACTIONS(4904), + [anon_sym_xor_EQ] = ACTIONS(4904), + [anon_sym_LT_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4904), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_yield] = ACTIONS(4906), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_continue] = ACTIONS(4906), + [anon_sym_defer] = ACTIONS(4906), + [anon_sym_errdefer] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_expand] = ACTIONS(4906), + [anon_sym_for] = ACTIONS(4906), + [anon_sym_match] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4904), + [anon_sym_orelse] = ACTIONS(4906), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_and] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_xor] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4906), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_LT_LT_PIPE] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_catch] = ACTIONS(4906), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_unreachable] = ACTIONS(4906), + [anon_sym_undefined] = ACTIONS(4906), + [sym_sink] = ACTIONS(4906), + [sym_integer] = ACTIONS(4906), + [sym_float] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [sym_multiline_string] = ACTIONS(4904), + [sym_character] = ACTIONS(4904), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4904), + }, + [STATE(2284)] = { + [ts_builtin_sym_end] = ACTIONS(4908), + [sym_identifier] = ACTIONS(4910), + [anon_sym_import] = ACTIONS(4910), + [anon_sym_test] = ACTIONS(4910), + [anon_sym_hide] = ACTIONS(4910), + [anon_sym_func] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_struct] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_void] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym_type] = ACTIONS(4910), + [anon_sym_anyopaque] = ACTIONS(4910), + [anon_sym_bool] = ACTIONS(4910), + [anon_sym_int] = ACTIONS(4910), + [anon_sym_uint] = ACTIONS(4910), + [anon_sym_float] = ACTIONS(4910), + [anon_sym_range] = ACTIONS(4910), + [anon_sym_i8] = ACTIONS(4910), + [anon_sym_i16] = ACTIONS(4910), + [anon_sym_i32] = ACTIONS(4910), + [anon_sym_i64] = ACTIONS(4910), + [anon_sym_u8] = ACTIONS(4910), + [anon_sym_u16] = ACTIONS(4910), + [anon_sym_u32] = ACTIONS(4910), + [anon_sym_u64] = ACTIONS(4910), + [anon_sym_isize] = ACTIONS(4910), + [anon_sym_usize] = ACTIONS(4910), + [anon_sym_f32] = ACTIONS(4910), + [anon_sym_f64] = ACTIONS(4910), + [anon_sym_c_char] = ACTIONS(4910), + [anon_sym_c_schar] = ACTIONS(4910), + [anon_sym_c_uchar] = ACTIONS(4910), + [anon_sym_c_short] = ACTIONS(4910), + [anon_sym_c_ushort] = ACTIONS(4910), + [anon_sym_c_int] = ACTIONS(4910), + [anon_sym_c_uint] = ACTIONS(4910), + [anon_sym_c_long] = ACTIONS(4910), + [anon_sym_c_ulong] = ACTIONS(4910), + [anon_sym_c_longlong] = ACTIONS(4910), + [anon_sym_c_ulonglong] = ACTIONS(4910), + [anon_sym_c_float] = ACTIONS(4910), + [anon_sym_c_double] = ACTIONS(4910), + [anon_sym_c_longdouble] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_AMP_EQ] = ACTIONS(4908), + [anon_sym_PIPE_EQ] = ACTIONS(4908), + [anon_sym_xor_EQ] = ACTIONS(4908), + [anon_sym_LT_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4908), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_yield] = ACTIONS(4910), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_defer] = ACTIONS(4910), + [anon_sym_errdefer] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_expand] = ACTIONS(4910), + [anon_sym_for] = ACTIONS(4910), + [anon_sym_match] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4908), + [anon_sym_orelse] = ACTIONS(4910), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_and] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_xor] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4910), + [anon_sym_GT_GT] = ACTIONS(4910), + [anon_sym_LT_LT_PIPE] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_catch] = ACTIONS(4910), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_unreachable] = ACTIONS(4910), + [anon_sym_undefined] = ACTIONS(4910), + [sym_sink] = ACTIONS(4910), + [sym_integer] = ACTIONS(4910), + [sym_float] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [sym_multiline_string] = ACTIONS(4908), + [sym_character] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4908), + }, + [STATE(2285)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2287), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4912), + }, + [STATE(2286)] = { + [ts_builtin_sym_end] = ACTIONS(4914), + [sym_identifier] = ACTIONS(4916), + [anon_sym_import] = ACTIONS(4916), + [anon_sym_test] = ACTIONS(4916), + [anon_sym_hide] = ACTIONS(4916), + [anon_sym_func] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_struct] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4914), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_void] = ACTIONS(4916), + [anon_sym_noreturn] = ACTIONS(4916), + [anon_sym_type] = ACTIONS(4916), + [anon_sym_anyopaque] = ACTIONS(4916), + [anon_sym_bool] = ACTIONS(4916), + [anon_sym_int] = ACTIONS(4916), + [anon_sym_uint] = ACTIONS(4916), + [anon_sym_float] = ACTIONS(4916), + [anon_sym_range] = ACTIONS(4916), + [anon_sym_i8] = ACTIONS(4916), + [anon_sym_i16] = ACTIONS(4916), + [anon_sym_i32] = ACTIONS(4916), + [anon_sym_i64] = ACTIONS(4916), + [anon_sym_u8] = ACTIONS(4916), + [anon_sym_u16] = ACTIONS(4916), + [anon_sym_u32] = ACTIONS(4916), + [anon_sym_u64] = ACTIONS(4916), + [anon_sym_isize] = ACTIONS(4916), + [anon_sym_usize] = ACTIONS(4916), + [anon_sym_f32] = ACTIONS(4916), + [anon_sym_f64] = ACTIONS(4916), + [anon_sym_c_char] = ACTIONS(4916), + [anon_sym_c_schar] = ACTIONS(4916), + [anon_sym_c_uchar] = ACTIONS(4916), + [anon_sym_c_short] = ACTIONS(4916), + [anon_sym_c_ushort] = ACTIONS(4916), + [anon_sym_c_int] = ACTIONS(4916), + [anon_sym_c_uint] = ACTIONS(4916), + [anon_sym_c_long] = ACTIONS(4916), + [anon_sym_c_ulong] = ACTIONS(4916), + [anon_sym_c_longlong] = ACTIONS(4916), + [anon_sym_c_ulonglong] = ACTIONS(4916), + [anon_sym_c_float] = ACTIONS(4916), + [anon_sym_c_double] = ACTIONS(4916), + [anon_sym_c_longdouble] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_AMP_EQ] = ACTIONS(4914), + [anon_sym_PIPE_EQ] = ACTIONS(4914), + [anon_sym_xor_EQ] = ACTIONS(4914), + [anon_sym_LT_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_GT_EQ] = ACTIONS(4914), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4914), + [anon_sym_return] = ACTIONS(4916), + [anon_sym_yield] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4914), + [anon_sym_break] = ACTIONS(4916), + [anon_sym_continue] = ACTIONS(4916), + [anon_sym_defer] = ACTIONS(4916), + [anon_sym_errdefer] = ACTIONS(4916), + [anon_sym_if] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_while] = ACTIONS(4916), + [anon_sym_expand] = ACTIONS(4916), + [anon_sym_for] = ACTIONS(4916), + [anon_sym_match] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), + [anon_sym_orelse] = ACTIONS(4916), + [anon_sym_or] = ACTIONS(4916), + [anon_sym_and] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_AMP] = ACTIONS(4916), + [anon_sym_xor] = ACTIONS(4916), + [anon_sym_LT_LT] = ACTIONS(4916), + [anon_sym_GT_GT] = ACTIONS(4916), + [anon_sym_LT_LT_PIPE] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_catch] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4916), + [anon_sym_false] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4916), + [anon_sym_unreachable] = ACTIONS(4916), + [anon_sym_undefined] = ACTIONS(4916), + [sym_sink] = ACTIONS(4916), + [sym_integer] = ACTIONS(4916), + [sym_float] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(4914), + [sym_multiline_string] = ACTIONS(4914), + [sym_character] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4914), + }, + [STATE(2287)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2288)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4918), + }, + [STATE(2289)] = { + [ts_builtin_sym_end] = ACTIONS(4920), + [sym_identifier] = ACTIONS(4922), + [anon_sym_import] = ACTIONS(4922), + [anon_sym_test] = ACTIONS(4922), + [anon_sym_hide] = ACTIONS(4922), + [anon_sym_func] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_struct] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4922), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_void] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym_type] = ACTIONS(4922), + [anon_sym_anyopaque] = ACTIONS(4922), + [anon_sym_bool] = ACTIONS(4922), + [anon_sym_int] = ACTIONS(4922), + [anon_sym_uint] = ACTIONS(4922), + [anon_sym_float] = ACTIONS(4922), + [anon_sym_range] = ACTIONS(4922), + [anon_sym_i8] = ACTIONS(4922), + [anon_sym_i16] = ACTIONS(4922), + [anon_sym_i32] = ACTIONS(4922), + [anon_sym_i64] = ACTIONS(4922), + [anon_sym_u8] = ACTIONS(4922), + [anon_sym_u16] = ACTIONS(4922), + [anon_sym_u32] = ACTIONS(4922), + [anon_sym_u64] = ACTIONS(4922), + [anon_sym_isize] = ACTIONS(4922), + [anon_sym_usize] = ACTIONS(4922), + [anon_sym_f32] = ACTIONS(4922), + [anon_sym_f64] = ACTIONS(4922), + [anon_sym_c_char] = ACTIONS(4922), + [anon_sym_c_schar] = ACTIONS(4922), + [anon_sym_c_uchar] = ACTIONS(4922), + [anon_sym_c_short] = ACTIONS(4922), + [anon_sym_c_ushort] = ACTIONS(4922), + [anon_sym_c_int] = ACTIONS(4922), + [anon_sym_c_uint] = ACTIONS(4922), + [anon_sym_c_long] = ACTIONS(4922), + [anon_sym_c_ulong] = ACTIONS(4922), + [anon_sym_c_longlong] = ACTIONS(4922), + [anon_sym_c_ulonglong] = ACTIONS(4922), + [anon_sym_c_float] = ACTIONS(4922), + [anon_sym_c_double] = ACTIONS(4922), + [anon_sym_c_longdouble] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_AMP_EQ] = ACTIONS(4920), + [anon_sym_PIPE_EQ] = ACTIONS(4920), + [anon_sym_xor_EQ] = ACTIONS(4920), + [anon_sym_LT_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4920), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_yield] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_continue] = ACTIONS(4922), + [anon_sym_defer] = ACTIONS(4922), + [anon_sym_errdefer] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_expand] = ACTIONS(4922), + [anon_sym_for] = ACTIONS(4922), + [anon_sym_match] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), + [anon_sym_orelse] = ACTIONS(4922), + [anon_sym_or] = ACTIONS(4922), + [anon_sym_and] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_xor] = ACTIONS(4922), + [anon_sym_LT_LT] = ACTIONS(4922), + [anon_sym_GT_GT] = ACTIONS(4922), + [anon_sym_LT_LT_PIPE] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_catch] = ACTIONS(4922), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_unreachable] = ACTIONS(4922), + [anon_sym_undefined] = ACTIONS(4922), + [sym_sink] = ACTIONS(4922), + [sym_integer] = ACTIONS(4922), + [sym_float] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [sym_multiline_string] = ACTIONS(4920), + [sym_character] = ACTIONS(4920), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4920), + }, + [STATE(2290)] = { + [ts_builtin_sym_end] = ACTIONS(4924), + [sym_identifier] = ACTIONS(4926), + [anon_sym_import] = ACTIONS(4926), + [anon_sym_test] = ACTIONS(4926), + [anon_sym_hide] = ACTIONS(4926), + [anon_sym_func] = ACTIONS(4926), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_struct] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_void] = ACTIONS(4926), + [anon_sym_noreturn] = ACTIONS(4926), + [anon_sym_type] = ACTIONS(4926), + [anon_sym_anyopaque] = ACTIONS(4926), + [anon_sym_bool] = ACTIONS(4926), + [anon_sym_int] = ACTIONS(4926), + [anon_sym_uint] = ACTIONS(4926), + [anon_sym_float] = ACTIONS(4926), + [anon_sym_range] = ACTIONS(4926), + [anon_sym_i8] = ACTIONS(4926), + [anon_sym_i16] = ACTIONS(4926), + [anon_sym_i32] = ACTIONS(4926), + [anon_sym_i64] = ACTIONS(4926), + [anon_sym_u8] = ACTIONS(4926), + [anon_sym_u16] = ACTIONS(4926), + [anon_sym_u32] = ACTIONS(4926), + [anon_sym_u64] = ACTIONS(4926), + [anon_sym_isize] = ACTIONS(4926), + [anon_sym_usize] = ACTIONS(4926), + [anon_sym_f32] = ACTIONS(4926), + [anon_sym_f64] = ACTIONS(4926), + [anon_sym_c_char] = ACTIONS(4926), + [anon_sym_c_schar] = ACTIONS(4926), + [anon_sym_c_uchar] = ACTIONS(4926), + [anon_sym_c_short] = ACTIONS(4926), + [anon_sym_c_ushort] = ACTIONS(4926), + [anon_sym_c_int] = ACTIONS(4926), + [anon_sym_c_uint] = ACTIONS(4926), + [anon_sym_c_long] = ACTIONS(4926), + [anon_sym_c_ulong] = ACTIONS(4926), + [anon_sym_c_longlong] = ACTIONS(4926), + [anon_sym_c_ulonglong] = ACTIONS(4926), + [anon_sym_c_float] = ACTIONS(4926), + [anon_sym_c_double] = ACTIONS(4926), + [anon_sym_c_longdouble] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_AMP_EQ] = ACTIONS(4924), + [anon_sym_PIPE_EQ] = ACTIONS(4924), + [anon_sym_xor_EQ] = ACTIONS(4924), + [anon_sym_LT_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_GT_EQ] = ACTIONS(4924), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4924), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_yield] = ACTIONS(4926), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_continue] = ACTIONS(4926), + [anon_sym_defer] = ACTIONS(4926), + [anon_sym_errdefer] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_while] = ACTIONS(4926), + [anon_sym_expand] = ACTIONS(4926), + [anon_sym_for] = ACTIONS(4926), + [anon_sym_match] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4924), + [anon_sym_orelse] = ACTIONS(4926), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_and] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_xor] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4926), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_LT_LT_PIPE] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_catch] = ACTIONS(4926), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_unreachable] = ACTIONS(4926), + [anon_sym_undefined] = ACTIONS(4926), + [sym_sink] = ACTIONS(4926), + [sym_integer] = ACTIONS(4926), + [sym_float] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [sym_multiline_string] = ACTIONS(4924), + [sym_character] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4924), + }, + [STATE(2291)] = { + [ts_builtin_sym_end] = ACTIONS(4928), + [sym_identifier] = ACTIONS(4930), + [anon_sym_import] = ACTIONS(4930), + [anon_sym_test] = ACTIONS(4930), + [anon_sym_hide] = ACTIONS(4930), + [anon_sym_func] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_struct] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4930), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_RBRACK] = ACTIONS(4928), + [anon_sym_void] = ACTIONS(4930), + [anon_sym_noreturn] = ACTIONS(4930), + [anon_sym_type] = ACTIONS(4930), + [anon_sym_anyopaque] = ACTIONS(4930), + [anon_sym_bool] = ACTIONS(4930), + [anon_sym_int] = ACTIONS(4930), + [anon_sym_uint] = ACTIONS(4930), + [anon_sym_float] = ACTIONS(4930), + [anon_sym_range] = ACTIONS(4930), + [anon_sym_i8] = ACTIONS(4930), + [anon_sym_i16] = ACTIONS(4930), + [anon_sym_i32] = ACTIONS(4930), + [anon_sym_i64] = ACTIONS(4930), + [anon_sym_u8] = ACTIONS(4930), + [anon_sym_u16] = ACTIONS(4930), + [anon_sym_u32] = ACTIONS(4930), + [anon_sym_u64] = ACTIONS(4930), + [anon_sym_isize] = ACTIONS(4930), + [anon_sym_usize] = ACTIONS(4930), + [anon_sym_f32] = ACTIONS(4930), + [anon_sym_f64] = ACTIONS(4930), + [anon_sym_c_char] = ACTIONS(4930), + [anon_sym_c_schar] = ACTIONS(4930), + [anon_sym_c_uchar] = ACTIONS(4930), + [anon_sym_c_short] = ACTIONS(4930), + [anon_sym_c_ushort] = ACTIONS(4930), + [anon_sym_c_int] = ACTIONS(4930), + [anon_sym_c_uint] = ACTIONS(4930), + [anon_sym_c_long] = ACTIONS(4930), + [anon_sym_c_ulong] = ACTIONS(4930), + [anon_sym_c_longlong] = ACTIONS(4930), + [anon_sym_c_ulonglong] = ACTIONS(4930), + [anon_sym_c_float] = ACTIONS(4930), + [anon_sym_c_double] = ACTIONS(4930), + [anon_sym_c_longdouble] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_AMP_EQ] = ACTIONS(4928), + [anon_sym_PIPE_EQ] = ACTIONS(4928), + [anon_sym_xor_EQ] = ACTIONS(4928), + [anon_sym_LT_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_GT_EQ] = ACTIONS(4928), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4928), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_yield] = ACTIONS(4930), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_defer] = ACTIONS(4930), + [anon_sym_errdefer] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_expand] = ACTIONS(4930), + [anon_sym_for] = ACTIONS(4930), + [anon_sym_match] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), + [anon_sym_orelse] = ACTIONS(4930), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_and] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_xor] = ACTIONS(4930), + [anon_sym_LT_LT] = ACTIONS(4930), + [anon_sym_GT_GT] = ACTIONS(4930), + [anon_sym_LT_LT_PIPE] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_catch] = ACTIONS(4930), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_unreachable] = ACTIONS(4930), + [anon_sym_undefined] = ACTIONS(4930), + [sym_sink] = ACTIONS(4930), + [sym_integer] = ACTIONS(4930), + [sym_float] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [sym_multiline_string] = ACTIONS(4928), + [sym_character] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4928), + }, + [STATE(2292)] = { + [ts_builtin_sym_end] = ACTIONS(4932), + [sym_identifier] = ACTIONS(4934), + [anon_sym_import] = ACTIONS(4934), + [anon_sym_test] = ACTIONS(4934), + [anon_sym_hide] = ACTIONS(4934), + [anon_sym_func] = ACTIONS(4934), + [anon_sym_BANG] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_struct] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_void] = ACTIONS(4934), + [anon_sym_noreturn] = ACTIONS(4934), + [anon_sym_type] = ACTIONS(4934), + [anon_sym_anyopaque] = ACTIONS(4934), + [anon_sym_bool] = ACTIONS(4934), + [anon_sym_int] = ACTIONS(4934), + [anon_sym_uint] = ACTIONS(4934), + [anon_sym_float] = ACTIONS(4934), + [anon_sym_range] = ACTIONS(4934), + [anon_sym_i8] = ACTIONS(4934), + [anon_sym_i16] = ACTIONS(4934), + [anon_sym_i32] = ACTIONS(4934), + [anon_sym_i64] = ACTIONS(4934), + [anon_sym_u8] = ACTIONS(4934), + [anon_sym_u16] = ACTIONS(4934), + [anon_sym_u32] = ACTIONS(4934), + [anon_sym_u64] = ACTIONS(4934), + [anon_sym_isize] = ACTIONS(4934), + [anon_sym_usize] = ACTIONS(4934), + [anon_sym_f32] = ACTIONS(4934), + [anon_sym_f64] = ACTIONS(4934), + [anon_sym_c_char] = ACTIONS(4934), + [anon_sym_c_schar] = ACTIONS(4934), + [anon_sym_c_uchar] = ACTIONS(4934), + [anon_sym_c_short] = ACTIONS(4934), + [anon_sym_c_ushort] = ACTIONS(4934), + [anon_sym_c_int] = ACTIONS(4934), + [anon_sym_c_uint] = ACTIONS(4934), + [anon_sym_c_long] = ACTIONS(4934), + [anon_sym_c_ulong] = ACTIONS(4934), + [anon_sym_c_longlong] = ACTIONS(4934), + [anon_sym_c_ulonglong] = ACTIONS(4934), + [anon_sym_c_float] = ACTIONS(4934), + [anon_sym_c_double] = ACTIONS(4934), + [anon_sym_c_longdouble] = ACTIONS(4934), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_AMP_EQ] = ACTIONS(4932), + [anon_sym_PIPE_EQ] = ACTIONS(4932), + [anon_sym_xor_EQ] = ACTIONS(4932), + [anon_sym_LT_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_GT_EQ] = ACTIONS(4932), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4932), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_yield] = ACTIONS(4934), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_continue] = ACTIONS(4934), + [anon_sym_defer] = ACTIONS(4934), + [anon_sym_errdefer] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_while] = ACTIONS(4934), + [anon_sym_expand] = ACTIONS(4934), + [anon_sym_for] = ACTIONS(4934), + [anon_sym_match] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), + [anon_sym_orelse] = ACTIONS(4934), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym_LT_LT_PIPE] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_catch] = ACTIONS(4934), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4934), + [anon_sym_false] = ACTIONS(4934), + [anon_sym_null] = ACTIONS(4934), + [anon_sym_unreachable] = ACTIONS(4934), + [anon_sym_undefined] = ACTIONS(4934), + [sym_sink] = ACTIONS(4934), + [sym_integer] = ACTIONS(4934), + [sym_float] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [sym_multiline_string] = ACTIONS(4932), + [sym_character] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4932), + }, + [STATE(2293)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2294)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2299), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4936), + }, + [STATE(2295)] = { + [ts_builtin_sym_end] = ACTIONS(4938), + [sym_identifier] = ACTIONS(4940), + [anon_sym_import] = ACTIONS(4940), + [anon_sym_test] = ACTIONS(4940), + [anon_sym_hide] = ACTIONS(4940), + [anon_sym_func] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_struct] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_RBRACK] = ACTIONS(4938), + [anon_sym_void] = ACTIONS(4940), + [anon_sym_noreturn] = ACTIONS(4940), + [anon_sym_type] = ACTIONS(4940), + [anon_sym_anyopaque] = ACTIONS(4940), + [anon_sym_bool] = ACTIONS(4940), + [anon_sym_int] = ACTIONS(4940), + [anon_sym_uint] = ACTIONS(4940), + [anon_sym_float] = ACTIONS(4940), + [anon_sym_range] = ACTIONS(4940), + [anon_sym_i8] = ACTIONS(4940), + [anon_sym_i16] = ACTIONS(4940), + [anon_sym_i32] = ACTIONS(4940), + [anon_sym_i64] = ACTIONS(4940), + [anon_sym_u8] = ACTIONS(4940), + [anon_sym_u16] = ACTIONS(4940), + [anon_sym_u32] = ACTIONS(4940), + [anon_sym_u64] = ACTIONS(4940), + [anon_sym_isize] = ACTIONS(4940), + [anon_sym_usize] = ACTIONS(4940), + [anon_sym_f32] = ACTIONS(4940), + [anon_sym_f64] = ACTIONS(4940), + [anon_sym_c_char] = ACTIONS(4940), + [anon_sym_c_schar] = ACTIONS(4940), + [anon_sym_c_uchar] = ACTIONS(4940), + [anon_sym_c_short] = ACTIONS(4940), + [anon_sym_c_ushort] = ACTIONS(4940), + [anon_sym_c_int] = ACTIONS(4940), + [anon_sym_c_uint] = ACTIONS(4940), + [anon_sym_c_long] = ACTIONS(4940), + [anon_sym_c_ulong] = ACTIONS(4940), + [anon_sym_c_longlong] = ACTIONS(4940), + [anon_sym_c_ulonglong] = ACTIONS(4940), + [anon_sym_c_float] = ACTIONS(4940), + [anon_sym_c_double] = ACTIONS(4940), + [anon_sym_c_longdouble] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_AMP_EQ] = ACTIONS(4938), + [anon_sym_PIPE_EQ] = ACTIONS(4938), + [anon_sym_xor_EQ] = ACTIONS(4938), + [anon_sym_LT_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_GT_EQ] = ACTIONS(4938), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4938), + [anon_sym_return] = ACTIONS(4940), + [anon_sym_yield] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4938), + [anon_sym_break] = ACTIONS(4940), + [anon_sym_continue] = ACTIONS(4940), + [anon_sym_defer] = ACTIONS(4940), + [anon_sym_errdefer] = ACTIONS(4940), + [anon_sym_if] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_while] = ACTIONS(4940), + [anon_sym_expand] = ACTIONS(4940), + [anon_sym_for] = ACTIONS(4940), + [anon_sym_match] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), + [anon_sym_orelse] = ACTIONS(4940), + [anon_sym_or] = ACTIONS(4940), + [anon_sym_and] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_AMP] = ACTIONS(4940), + [anon_sym_xor] = ACTIONS(4940), + [anon_sym_LT_LT] = ACTIONS(4940), + [anon_sym_GT_GT] = ACTIONS(4940), + [anon_sym_LT_LT_PIPE] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_catch] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_unreachable] = ACTIONS(4940), + [anon_sym_undefined] = ACTIONS(4940), + [sym_sink] = ACTIONS(4940), + [sym_integer] = ACTIONS(4940), + [sym_float] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(4938), + [sym_multiline_string] = ACTIONS(4938), + [sym_character] = ACTIONS(4938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4938), + }, + [STATE(2296)] = { + [ts_builtin_sym_end] = ACTIONS(4942), + [sym_identifier] = ACTIONS(4944), + [anon_sym_import] = ACTIONS(4944), + [anon_sym_test] = ACTIONS(4944), + [anon_sym_hide] = ACTIONS(4944), + [anon_sym_func] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_struct] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_void] = ACTIONS(4944), + [anon_sym_noreturn] = ACTIONS(4944), + [anon_sym_type] = ACTIONS(4944), + [anon_sym_anyopaque] = ACTIONS(4944), + [anon_sym_bool] = ACTIONS(4944), + [anon_sym_int] = ACTIONS(4944), + [anon_sym_uint] = ACTIONS(4944), + [anon_sym_float] = ACTIONS(4944), + [anon_sym_range] = ACTIONS(4944), + [anon_sym_i8] = ACTIONS(4944), + [anon_sym_i16] = ACTIONS(4944), + [anon_sym_i32] = ACTIONS(4944), + [anon_sym_i64] = ACTIONS(4944), + [anon_sym_u8] = ACTIONS(4944), + [anon_sym_u16] = ACTIONS(4944), + [anon_sym_u32] = ACTIONS(4944), + [anon_sym_u64] = ACTIONS(4944), + [anon_sym_isize] = ACTIONS(4944), + [anon_sym_usize] = ACTIONS(4944), + [anon_sym_f32] = ACTIONS(4944), + [anon_sym_f64] = ACTIONS(4944), + [anon_sym_c_char] = ACTIONS(4944), + [anon_sym_c_schar] = ACTIONS(4944), + [anon_sym_c_uchar] = ACTIONS(4944), + [anon_sym_c_short] = ACTIONS(4944), + [anon_sym_c_ushort] = ACTIONS(4944), + [anon_sym_c_int] = ACTIONS(4944), + [anon_sym_c_uint] = ACTIONS(4944), + [anon_sym_c_long] = ACTIONS(4944), + [anon_sym_c_ulong] = ACTIONS(4944), + [anon_sym_c_longlong] = ACTIONS(4944), + [anon_sym_c_ulonglong] = ACTIONS(4944), + [anon_sym_c_float] = ACTIONS(4944), + [anon_sym_c_double] = ACTIONS(4944), + [anon_sym_c_longdouble] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_AMP_EQ] = ACTIONS(4942), + [anon_sym_PIPE_EQ] = ACTIONS(4942), + [anon_sym_xor_EQ] = ACTIONS(4942), + [anon_sym_LT_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_GT_EQ] = ACTIONS(4942), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4942), + [anon_sym_return] = ACTIONS(4944), + [anon_sym_yield] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4942), + [anon_sym_break] = ACTIONS(4944), + [anon_sym_continue] = ACTIONS(4944), + [anon_sym_defer] = ACTIONS(4944), + [anon_sym_errdefer] = ACTIONS(4944), + [anon_sym_if] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_while] = ACTIONS(4944), + [anon_sym_expand] = ACTIONS(4944), + [anon_sym_for] = ACTIONS(4944), + [anon_sym_match] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4942), + [anon_sym_orelse] = ACTIONS(4944), + [anon_sym_or] = ACTIONS(4944), + [anon_sym_and] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_AMP] = ACTIONS(4944), + [anon_sym_xor] = ACTIONS(4944), + [anon_sym_LT_LT] = ACTIONS(4944), + [anon_sym_GT_GT] = ACTIONS(4944), + [anon_sym_LT_LT_PIPE] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_catch] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym_true] = ACTIONS(4944), + [anon_sym_false] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4944), + [anon_sym_unreachable] = ACTIONS(4944), + [anon_sym_undefined] = ACTIONS(4944), + [sym_sink] = ACTIONS(4944), + [sym_integer] = ACTIONS(4944), + [sym_float] = ACTIONS(4942), + [anon_sym_DQUOTE] = ACTIONS(4942), + [sym_multiline_string] = ACTIONS(4942), + [sym_character] = ACTIONS(4942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4942), + }, + [STATE(2297)] = { + [ts_builtin_sym_end] = ACTIONS(4946), + [sym_identifier] = ACTIONS(4948), + [anon_sym_import] = ACTIONS(4948), + [anon_sym_test] = ACTIONS(4948), + [anon_sym_hide] = ACTIONS(4948), + [anon_sym_func] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_struct] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_RPAREN] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4946), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4946), + [anon_sym_RBRACK] = ACTIONS(4946), + [anon_sym_void] = ACTIONS(4948), + [anon_sym_noreturn] = ACTIONS(4948), + [anon_sym_type] = ACTIONS(4948), + [anon_sym_anyopaque] = ACTIONS(4948), + [anon_sym_bool] = ACTIONS(4948), + [anon_sym_int] = ACTIONS(4948), + [anon_sym_uint] = ACTIONS(4948), + [anon_sym_float] = ACTIONS(4948), + [anon_sym_range] = ACTIONS(4948), + [anon_sym_i8] = ACTIONS(4948), + [anon_sym_i16] = ACTIONS(4948), + [anon_sym_i32] = ACTIONS(4948), + [anon_sym_i64] = ACTIONS(4948), + [anon_sym_u8] = ACTIONS(4948), + [anon_sym_u16] = ACTIONS(4948), + [anon_sym_u32] = ACTIONS(4948), + [anon_sym_u64] = ACTIONS(4948), + [anon_sym_isize] = ACTIONS(4948), + [anon_sym_usize] = ACTIONS(4948), + [anon_sym_f32] = ACTIONS(4948), + [anon_sym_f64] = ACTIONS(4948), + [anon_sym_c_char] = ACTIONS(4948), + [anon_sym_c_schar] = ACTIONS(4948), + [anon_sym_c_uchar] = ACTIONS(4948), + [anon_sym_c_short] = ACTIONS(4948), + [anon_sym_c_ushort] = ACTIONS(4948), + [anon_sym_c_int] = ACTIONS(4948), + [anon_sym_c_uint] = ACTIONS(4948), + [anon_sym_c_long] = ACTIONS(4948), + [anon_sym_c_ulong] = ACTIONS(4948), + [anon_sym_c_longlong] = ACTIONS(4948), + [anon_sym_c_ulonglong] = ACTIONS(4948), + [anon_sym_c_float] = ACTIONS(4948), + [anon_sym_c_double] = ACTIONS(4948), + [anon_sym_c_longdouble] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_AMP_EQ] = ACTIONS(4946), + [anon_sym_PIPE_EQ] = ACTIONS(4946), + [anon_sym_xor_EQ] = ACTIONS(4946), + [anon_sym_LT_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_GT_EQ] = ACTIONS(4946), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4946), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_yield] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4946), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_defer] = ACTIONS(4948), + [anon_sym_errdefer] = ACTIONS(4948), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_while] = ACTIONS(4948), + [anon_sym_expand] = ACTIONS(4948), + [anon_sym_for] = ACTIONS(4948), + [anon_sym_match] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4946), + [anon_sym_orelse] = ACTIONS(4948), + [anon_sym_or] = ACTIONS(4948), + [anon_sym_and] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_AMP] = ACTIONS(4948), + [anon_sym_xor] = ACTIONS(4948), + [anon_sym_LT_LT] = ACTIONS(4948), + [anon_sym_GT_GT] = ACTIONS(4948), + [anon_sym_LT_LT_PIPE] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_catch] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4948), + [anon_sym_unreachable] = ACTIONS(4948), + [anon_sym_undefined] = ACTIONS(4948), + [sym_sink] = ACTIONS(4948), + [sym_integer] = ACTIONS(4948), + [sym_float] = ACTIONS(4946), + [anon_sym_DQUOTE] = ACTIONS(4946), + [sym_multiline_string] = ACTIONS(4946), + [sym_character] = ACTIONS(4946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4946), + }, + [STATE(2298)] = { + [ts_builtin_sym_end] = ACTIONS(4950), + [sym_identifier] = ACTIONS(4952), + [anon_sym_import] = ACTIONS(4952), + [anon_sym_test] = ACTIONS(4952), + [anon_sym_hide] = ACTIONS(4952), + [anon_sym_func] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_struct] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_RPAREN] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4950), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_RBRACK] = ACTIONS(4950), + [anon_sym_void] = ACTIONS(4952), + [anon_sym_noreturn] = ACTIONS(4952), + [anon_sym_type] = ACTIONS(4952), + [anon_sym_anyopaque] = ACTIONS(4952), + [anon_sym_bool] = ACTIONS(4952), + [anon_sym_int] = ACTIONS(4952), + [anon_sym_uint] = ACTIONS(4952), + [anon_sym_float] = ACTIONS(4952), + [anon_sym_range] = ACTIONS(4952), + [anon_sym_i8] = ACTIONS(4952), + [anon_sym_i16] = ACTIONS(4952), + [anon_sym_i32] = ACTIONS(4952), + [anon_sym_i64] = ACTIONS(4952), + [anon_sym_u8] = ACTIONS(4952), + [anon_sym_u16] = ACTIONS(4952), + [anon_sym_u32] = ACTIONS(4952), + [anon_sym_u64] = ACTIONS(4952), + [anon_sym_isize] = ACTIONS(4952), + [anon_sym_usize] = ACTIONS(4952), + [anon_sym_f32] = ACTIONS(4952), + [anon_sym_f64] = ACTIONS(4952), + [anon_sym_c_char] = ACTIONS(4952), + [anon_sym_c_schar] = ACTIONS(4952), + [anon_sym_c_uchar] = ACTIONS(4952), + [anon_sym_c_short] = ACTIONS(4952), + [anon_sym_c_ushort] = ACTIONS(4952), + [anon_sym_c_int] = ACTIONS(4952), + [anon_sym_c_uint] = ACTIONS(4952), + [anon_sym_c_long] = ACTIONS(4952), + [anon_sym_c_ulong] = ACTIONS(4952), + [anon_sym_c_longlong] = ACTIONS(4952), + [anon_sym_c_ulonglong] = ACTIONS(4952), + [anon_sym_c_float] = ACTIONS(4952), + [anon_sym_c_double] = ACTIONS(4952), + [anon_sym_c_longdouble] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_AMP_EQ] = ACTIONS(4950), + [anon_sym_PIPE_EQ] = ACTIONS(4950), + [anon_sym_xor_EQ] = ACTIONS(4950), + [anon_sym_LT_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_GT_EQ] = ACTIONS(4950), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4950), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_yield] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4950), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_defer] = ACTIONS(4952), + [anon_sym_errdefer] = ACTIONS(4952), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_while] = ACTIONS(4952), + [anon_sym_expand] = ACTIONS(4952), + [anon_sym_for] = ACTIONS(4952), + [anon_sym_match] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4950), + [anon_sym_orelse] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_AMP] = ACTIONS(4952), + [anon_sym_xor] = ACTIONS(4952), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4952), + [anon_sym_LT_LT_PIPE] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_catch] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_unreachable] = ACTIONS(4952), + [anon_sym_undefined] = ACTIONS(4952), + [sym_sink] = ACTIONS(4952), + [sym_integer] = ACTIONS(4952), + [sym_float] = ACTIONS(4950), + [anon_sym_DQUOTE] = ACTIONS(4950), + [sym_multiline_string] = ACTIONS(4950), + [sym_character] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4950), + }, + [STATE(2299)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8836), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(655), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(659), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(667), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2300)] = { + [ts_builtin_sym_end] = ACTIONS(4954), + [sym_identifier] = ACTIONS(4956), + [anon_sym_import] = ACTIONS(4956), + [anon_sym_test] = ACTIONS(4956), + [anon_sym_hide] = ACTIONS(4956), + [anon_sym_func] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_struct] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_RPAREN] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4954), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_RBRACK] = ACTIONS(4954), + [anon_sym_void] = ACTIONS(4956), + [anon_sym_noreturn] = ACTIONS(4956), + [anon_sym_type] = ACTIONS(4956), + [anon_sym_anyopaque] = ACTIONS(4956), + [anon_sym_bool] = ACTIONS(4956), + [anon_sym_int] = ACTIONS(4956), + [anon_sym_uint] = ACTIONS(4956), + [anon_sym_float] = ACTIONS(4956), + [anon_sym_range] = ACTIONS(4956), + [anon_sym_i8] = ACTIONS(4956), + [anon_sym_i16] = ACTIONS(4956), + [anon_sym_i32] = ACTIONS(4956), + [anon_sym_i64] = ACTIONS(4956), + [anon_sym_u8] = ACTIONS(4956), + [anon_sym_u16] = ACTIONS(4956), + [anon_sym_u32] = ACTIONS(4956), + [anon_sym_u64] = ACTIONS(4956), + [anon_sym_isize] = ACTIONS(4956), + [anon_sym_usize] = ACTIONS(4956), + [anon_sym_f32] = ACTIONS(4956), + [anon_sym_f64] = ACTIONS(4956), + [anon_sym_c_char] = ACTIONS(4956), + [anon_sym_c_schar] = ACTIONS(4956), + [anon_sym_c_uchar] = ACTIONS(4956), + [anon_sym_c_short] = ACTIONS(4956), + [anon_sym_c_ushort] = ACTIONS(4956), + [anon_sym_c_int] = ACTIONS(4956), + [anon_sym_c_uint] = ACTIONS(4956), + [anon_sym_c_long] = ACTIONS(4956), + [anon_sym_c_ulong] = ACTIONS(4956), + [anon_sym_c_longlong] = ACTIONS(4956), + [anon_sym_c_ulonglong] = ACTIONS(4956), + [anon_sym_c_float] = ACTIONS(4956), + [anon_sym_c_double] = ACTIONS(4956), + [anon_sym_c_longdouble] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_AMP_EQ] = ACTIONS(4954), + [anon_sym_PIPE_EQ] = ACTIONS(4954), + [anon_sym_xor_EQ] = ACTIONS(4954), + [anon_sym_LT_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_GT_EQ] = ACTIONS(4954), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4954), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_yield] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4954), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_defer] = ACTIONS(4956), + [anon_sym_errdefer] = ACTIONS(4956), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_while] = ACTIONS(4956), + [anon_sym_expand] = ACTIONS(4956), + [anon_sym_for] = ACTIONS(4956), + [anon_sym_match] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), + [anon_sym_orelse] = ACTIONS(4956), + [anon_sym_or] = ACTIONS(4956), + [anon_sym_and] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4956), + [anon_sym_xor] = ACTIONS(4956), + [anon_sym_LT_LT] = ACTIONS(4956), + [anon_sym_GT_GT] = ACTIONS(4956), + [anon_sym_LT_LT_PIPE] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_catch] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4956), + [anon_sym_unreachable] = ACTIONS(4956), + [anon_sym_undefined] = ACTIONS(4956), + [sym_sink] = ACTIONS(4956), + [sym_integer] = ACTIONS(4956), + [sym_float] = ACTIONS(4954), + [anon_sym_DQUOTE] = ACTIONS(4954), + [sym_multiline_string] = ACTIONS(4954), + [sym_character] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4954), + }, + [STATE(2301)] = { + [ts_builtin_sym_end] = ACTIONS(4958), + [sym_identifier] = ACTIONS(4960), + [anon_sym_import] = ACTIONS(4960), + [anon_sym_test] = ACTIONS(4960), + [anon_sym_hide] = ACTIONS(4960), + [anon_sym_func] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_struct] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_RPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_RBRACK] = ACTIONS(4958), + [anon_sym_void] = ACTIONS(4960), + [anon_sym_noreturn] = ACTIONS(4960), + [anon_sym_type] = ACTIONS(4960), + [anon_sym_anyopaque] = ACTIONS(4960), + [anon_sym_bool] = ACTIONS(4960), + [anon_sym_int] = ACTIONS(4960), + [anon_sym_uint] = ACTIONS(4960), + [anon_sym_float] = ACTIONS(4960), + [anon_sym_range] = ACTIONS(4960), + [anon_sym_i8] = ACTIONS(4960), + [anon_sym_i16] = ACTIONS(4960), + [anon_sym_i32] = ACTIONS(4960), + [anon_sym_i64] = ACTIONS(4960), + [anon_sym_u8] = ACTIONS(4960), + [anon_sym_u16] = ACTIONS(4960), + [anon_sym_u32] = ACTIONS(4960), + [anon_sym_u64] = ACTIONS(4960), + [anon_sym_isize] = ACTIONS(4960), + [anon_sym_usize] = ACTIONS(4960), + [anon_sym_f32] = ACTIONS(4960), + [anon_sym_f64] = ACTIONS(4960), + [anon_sym_c_char] = ACTIONS(4960), + [anon_sym_c_schar] = ACTIONS(4960), + [anon_sym_c_uchar] = ACTIONS(4960), + [anon_sym_c_short] = ACTIONS(4960), + [anon_sym_c_ushort] = ACTIONS(4960), + [anon_sym_c_int] = ACTIONS(4960), + [anon_sym_c_uint] = ACTIONS(4960), + [anon_sym_c_long] = ACTIONS(4960), + [anon_sym_c_ulong] = ACTIONS(4960), + [anon_sym_c_longlong] = ACTIONS(4960), + [anon_sym_c_ulonglong] = ACTIONS(4960), + [anon_sym_c_float] = ACTIONS(4960), + [anon_sym_c_double] = ACTIONS(4960), + [anon_sym_c_longdouble] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_AMP_EQ] = ACTIONS(4958), + [anon_sym_PIPE_EQ] = ACTIONS(4958), + [anon_sym_xor_EQ] = ACTIONS(4958), + [anon_sym_LT_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_GT_EQ] = ACTIONS(4958), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_defer] = ACTIONS(4960), + [anon_sym_errdefer] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_expand] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4958), + [anon_sym_orelse] = ACTIONS(4960), + [anon_sym_or] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_xor] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4960), + [anon_sym_GT_GT] = ACTIONS(4960), + [anon_sym_LT_LT_PIPE] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_catch] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_unreachable] = ACTIONS(4960), + [anon_sym_undefined] = ACTIONS(4960), + [sym_sink] = ACTIONS(4960), + [sym_integer] = ACTIONS(4960), + [sym_float] = ACTIONS(4958), + [anon_sym_DQUOTE] = ACTIONS(4958), + [sym_multiline_string] = ACTIONS(4958), + [sym_character] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4958), + }, + [STATE(2302)] = { + [ts_builtin_sym_end] = ACTIONS(4962), + [sym_identifier] = ACTIONS(4964), + [anon_sym_import] = ACTIONS(4964), + [anon_sym_test] = ACTIONS(4964), + [anon_sym_hide] = ACTIONS(4964), + [anon_sym_func] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_struct] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_RPAREN] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_RBRACK] = ACTIONS(4962), + [anon_sym_void] = ACTIONS(4964), + [anon_sym_noreturn] = ACTIONS(4964), + [anon_sym_type] = ACTIONS(4964), + [anon_sym_anyopaque] = ACTIONS(4964), + [anon_sym_bool] = ACTIONS(4964), + [anon_sym_int] = ACTIONS(4964), + [anon_sym_uint] = ACTIONS(4964), + [anon_sym_float] = ACTIONS(4964), + [anon_sym_range] = ACTIONS(4964), + [anon_sym_i8] = ACTIONS(4964), + [anon_sym_i16] = ACTIONS(4964), + [anon_sym_i32] = ACTIONS(4964), + [anon_sym_i64] = ACTIONS(4964), + [anon_sym_u8] = ACTIONS(4964), + [anon_sym_u16] = ACTIONS(4964), + [anon_sym_u32] = ACTIONS(4964), + [anon_sym_u64] = ACTIONS(4964), + [anon_sym_isize] = ACTIONS(4964), + [anon_sym_usize] = ACTIONS(4964), + [anon_sym_f32] = ACTIONS(4964), + [anon_sym_f64] = ACTIONS(4964), + [anon_sym_c_char] = ACTIONS(4964), + [anon_sym_c_schar] = ACTIONS(4964), + [anon_sym_c_uchar] = ACTIONS(4964), + [anon_sym_c_short] = ACTIONS(4964), + [anon_sym_c_ushort] = ACTIONS(4964), + [anon_sym_c_int] = ACTIONS(4964), + [anon_sym_c_uint] = ACTIONS(4964), + [anon_sym_c_long] = ACTIONS(4964), + [anon_sym_c_ulong] = ACTIONS(4964), + [anon_sym_c_longlong] = ACTIONS(4964), + [anon_sym_c_ulonglong] = ACTIONS(4964), + [anon_sym_c_float] = ACTIONS(4964), + [anon_sym_c_double] = ACTIONS(4964), + [anon_sym_c_longdouble] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_AMP_EQ] = ACTIONS(4962), + [anon_sym_PIPE_EQ] = ACTIONS(4962), + [anon_sym_xor_EQ] = ACTIONS(4962), + [anon_sym_LT_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_GT_EQ] = ACTIONS(4962), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_yield] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4962), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_defer] = ACTIONS(4964), + [anon_sym_errdefer] = ACTIONS(4964), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_while] = ACTIONS(4964), + [anon_sym_expand] = ACTIONS(4964), + [anon_sym_for] = ACTIONS(4964), + [anon_sym_match] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), + [anon_sym_orelse] = ACTIONS(4964), + [anon_sym_or] = ACTIONS(4964), + [anon_sym_and] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_AMP] = ACTIONS(4964), + [anon_sym_xor] = ACTIONS(4964), + [anon_sym_LT_LT] = ACTIONS(4964), + [anon_sym_GT_GT] = ACTIONS(4964), + [anon_sym_LT_LT_PIPE] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_catch] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4964), + [anon_sym_unreachable] = ACTIONS(4964), + [anon_sym_undefined] = ACTIONS(4964), + [sym_sink] = ACTIONS(4964), + [sym_integer] = ACTIONS(4964), + [sym_float] = ACTIONS(4962), + [anon_sym_DQUOTE] = ACTIONS(4962), + [sym_multiline_string] = ACTIONS(4962), + [sym_character] = ACTIONS(4962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4962), + }, + [STATE(2303)] = { + [ts_builtin_sym_end] = ACTIONS(4966), + [sym_identifier] = ACTIONS(4968), + [anon_sym_import] = ACTIONS(4968), + [anon_sym_test] = ACTIONS(4968), + [anon_sym_hide] = ACTIONS(4968), + [anon_sym_func] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_struct] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_RPAREN] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_RBRACK] = ACTIONS(4966), + [anon_sym_void] = ACTIONS(4968), + [anon_sym_noreturn] = ACTIONS(4968), + [anon_sym_type] = ACTIONS(4968), + [anon_sym_anyopaque] = ACTIONS(4968), + [anon_sym_bool] = ACTIONS(4968), + [anon_sym_int] = ACTIONS(4968), + [anon_sym_uint] = ACTIONS(4968), + [anon_sym_float] = ACTIONS(4968), + [anon_sym_range] = ACTIONS(4968), + [anon_sym_i8] = ACTIONS(4968), + [anon_sym_i16] = ACTIONS(4968), + [anon_sym_i32] = ACTIONS(4968), + [anon_sym_i64] = ACTIONS(4968), + [anon_sym_u8] = ACTIONS(4968), + [anon_sym_u16] = ACTIONS(4968), + [anon_sym_u32] = ACTIONS(4968), + [anon_sym_u64] = ACTIONS(4968), + [anon_sym_isize] = ACTIONS(4968), + [anon_sym_usize] = ACTIONS(4968), + [anon_sym_f32] = ACTIONS(4968), + [anon_sym_f64] = ACTIONS(4968), + [anon_sym_c_char] = ACTIONS(4968), + [anon_sym_c_schar] = ACTIONS(4968), + [anon_sym_c_uchar] = ACTIONS(4968), + [anon_sym_c_short] = ACTIONS(4968), + [anon_sym_c_ushort] = ACTIONS(4968), + [anon_sym_c_int] = ACTIONS(4968), + [anon_sym_c_uint] = ACTIONS(4968), + [anon_sym_c_long] = ACTIONS(4968), + [anon_sym_c_ulong] = ACTIONS(4968), + [anon_sym_c_longlong] = ACTIONS(4968), + [anon_sym_c_ulonglong] = ACTIONS(4968), + [anon_sym_c_float] = ACTIONS(4968), + [anon_sym_c_double] = ACTIONS(4968), + [anon_sym_c_longdouble] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_AMP_EQ] = ACTIONS(4966), + [anon_sym_PIPE_EQ] = ACTIONS(4966), + [anon_sym_xor_EQ] = ACTIONS(4966), + [anon_sym_LT_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_GT_EQ] = ACTIONS(4966), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4966), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_yield] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_defer] = ACTIONS(4968), + [anon_sym_errdefer] = ACTIONS(4968), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_while] = ACTIONS(4968), + [anon_sym_expand] = ACTIONS(4968), + [anon_sym_for] = ACTIONS(4968), + [anon_sym_match] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4966), + [anon_sym_orelse] = ACTIONS(4968), + [anon_sym_or] = ACTIONS(4968), + [anon_sym_and] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4968), + [anon_sym_xor] = ACTIONS(4968), + [anon_sym_LT_LT] = ACTIONS(4968), + [anon_sym_GT_GT] = ACTIONS(4968), + [anon_sym_LT_LT_PIPE] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_catch] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4968), + [anon_sym_unreachable] = ACTIONS(4968), + [anon_sym_undefined] = ACTIONS(4968), + [sym_sink] = ACTIONS(4968), + [sym_integer] = ACTIONS(4968), + [sym_float] = ACTIONS(4966), + [anon_sym_DQUOTE] = ACTIONS(4966), + [sym_multiline_string] = ACTIONS(4966), + [sym_character] = ACTIONS(4966), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4966), + }, + [STATE(2304)] = { + [ts_builtin_sym_end] = ACTIONS(4970), + [sym_identifier] = ACTIONS(4972), + [anon_sym_import] = ACTIONS(4972), + [anon_sym_test] = ACTIONS(4972), + [anon_sym_hide] = ACTIONS(4972), + [anon_sym_func] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_struct] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_RPAREN] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_RBRACK] = ACTIONS(4970), + [anon_sym_void] = ACTIONS(4972), + [anon_sym_noreturn] = ACTIONS(4972), + [anon_sym_type] = ACTIONS(4972), + [anon_sym_anyopaque] = ACTIONS(4972), + [anon_sym_bool] = ACTIONS(4972), + [anon_sym_int] = ACTIONS(4972), + [anon_sym_uint] = ACTIONS(4972), + [anon_sym_float] = ACTIONS(4972), + [anon_sym_range] = ACTIONS(4972), + [anon_sym_i8] = ACTIONS(4972), + [anon_sym_i16] = ACTIONS(4972), + [anon_sym_i32] = ACTIONS(4972), + [anon_sym_i64] = ACTIONS(4972), + [anon_sym_u8] = ACTIONS(4972), + [anon_sym_u16] = ACTIONS(4972), + [anon_sym_u32] = ACTIONS(4972), + [anon_sym_u64] = ACTIONS(4972), + [anon_sym_isize] = ACTIONS(4972), + [anon_sym_usize] = ACTIONS(4972), + [anon_sym_f32] = ACTIONS(4972), + [anon_sym_f64] = ACTIONS(4972), + [anon_sym_c_char] = ACTIONS(4972), + [anon_sym_c_schar] = ACTIONS(4972), + [anon_sym_c_uchar] = ACTIONS(4972), + [anon_sym_c_short] = ACTIONS(4972), + [anon_sym_c_ushort] = ACTIONS(4972), + [anon_sym_c_int] = ACTIONS(4972), + [anon_sym_c_uint] = ACTIONS(4972), + [anon_sym_c_long] = ACTIONS(4972), + [anon_sym_c_ulong] = ACTIONS(4972), + [anon_sym_c_longlong] = ACTIONS(4972), + [anon_sym_c_ulonglong] = ACTIONS(4972), + [anon_sym_c_float] = ACTIONS(4972), + [anon_sym_c_double] = ACTIONS(4972), + [anon_sym_c_longdouble] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_AMP_EQ] = ACTIONS(4970), + [anon_sym_PIPE_EQ] = ACTIONS(4970), + [anon_sym_xor_EQ] = ACTIONS(4970), + [anon_sym_LT_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_GT_EQ] = ACTIONS(4970), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_defer] = ACTIONS(4972), + [anon_sym_errdefer] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_expand] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4970), + [anon_sym_orelse] = ACTIONS(4972), + [anon_sym_or] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_xor] = ACTIONS(4972), + [anon_sym_LT_LT] = ACTIONS(4972), + [anon_sym_GT_GT] = ACTIONS(4972), + [anon_sym_LT_LT_PIPE] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_catch] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_unreachable] = ACTIONS(4972), + [anon_sym_undefined] = ACTIONS(4972), + [sym_sink] = ACTIONS(4972), + [sym_integer] = ACTIONS(4972), + [sym_float] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(4970), + [sym_multiline_string] = ACTIONS(4970), + [sym_character] = ACTIONS(4970), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4970), + }, + [STATE(2305)] = { + [ts_builtin_sym_end] = ACTIONS(4974), + [sym_identifier] = ACTIONS(4976), + [anon_sym_import] = ACTIONS(4976), + [anon_sym_test] = ACTIONS(4976), + [anon_sym_hide] = ACTIONS(4976), + [anon_sym_func] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4974), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_void] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym_type] = ACTIONS(4976), + [anon_sym_anyopaque] = ACTIONS(4976), + [anon_sym_bool] = ACTIONS(4976), + [anon_sym_int] = ACTIONS(4976), + [anon_sym_uint] = ACTIONS(4976), + [anon_sym_float] = ACTIONS(4976), + [anon_sym_range] = ACTIONS(4976), + [anon_sym_i8] = ACTIONS(4976), + [anon_sym_i16] = ACTIONS(4976), + [anon_sym_i32] = ACTIONS(4976), + [anon_sym_i64] = ACTIONS(4976), + [anon_sym_u8] = ACTIONS(4976), + [anon_sym_u16] = ACTIONS(4976), + [anon_sym_u32] = ACTIONS(4976), + [anon_sym_u64] = ACTIONS(4976), + [anon_sym_isize] = ACTIONS(4976), + [anon_sym_usize] = ACTIONS(4976), + [anon_sym_f32] = ACTIONS(4976), + [anon_sym_f64] = ACTIONS(4976), + [anon_sym_c_char] = ACTIONS(4976), + [anon_sym_c_schar] = ACTIONS(4976), + [anon_sym_c_uchar] = ACTIONS(4976), + [anon_sym_c_short] = ACTIONS(4976), + [anon_sym_c_ushort] = ACTIONS(4976), + [anon_sym_c_int] = ACTIONS(4976), + [anon_sym_c_uint] = ACTIONS(4976), + [anon_sym_c_long] = ACTIONS(4976), + [anon_sym_c_ulong] = ACTIONS(4976), + [anon_sym_c_longlong] = ACTIONS(4976), + [anon_sym_c_ulonglong] = ACTIONS(4976), + [anon_sym_c_float] = ACTIONS(4976), + [anon_sym_c_double] = ACTIONS(4976), + [anon_sym_c_longdouble] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_AMP_EQ] = ACTIONS(4974), + [anon_sym_PIPE_EQ] = ACTIONS(4974), + [anon_sym_xor_EQ] = ACTIONS(4974), + [anon_sym_LT_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_GT_EQ] = ACTIONS(4974), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4974), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_yield] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4974), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_defer] = ACTIONS(4976), + [anon_sym_errdefer] = ACTIONS(4976), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_while] = ACTIONS(4976), + [anon_sym_expand] = ACTIONS(4976), + [anon_sym_for] = ACTIONS(4976), + [anon_sym_match] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), + [anon_sym_orelse] = ACTIONS(4976), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym_LT_LT_PIPE] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_catch] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_unreachable] = ACTIONS(4976), + [anon_sym_undefined] = ACTIONS(4976), + [sym_sink] = ACTIONS(4976), + [sym_integer] = ACTIONS(4976), + [sym_float] = ACTIONS(4974), + [anon_sym_DQUOTE] = ACTIONS(4974), + [sym_multiline_string] = ACTIONS(4974), + [sym_character] = ACTIONS(4974), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4974), + }, + [STATE(2306)] = { + [ts_builtin_sym_end] = ACTIONS(4978), + [sym_identifier] = ACTIONS(4980), + [anon_sym_import] = ACTIONS(4980), + [anon_sym_test] = ACTIONS(4980), + [anon_sym_hide] = ACTIONS(4980), + [anon_sym_func] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_struct] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_void] = ACTIONS(4980), + [anon_sym_noreturn] = ACTIONS(4980), + [anon_sym_type] = ACTIONS(4980), + [anon_sym_anyopaque] = ACTIONS(4980), + [anon_sym_bool] = ACTIONS(4980), + [anon_sym_int] = ACTIONS(4980), + [anon_sym_uint] = ACTIONS(4980), + [anon_sym_float] = ACTIONS(4980), + [anon_sym_range] = ACTIONS(4980), + [anon_sym_i8] = ACTIONS(4980), + [anon_sym_i16] = ACTIONS(4980), + [anon_sym_i32] = ACTIONS(4980), + [anon_sym_i64] = ACTIONS(4980), + [anon_sym_u8] = ACTIONS(4980), + [anon_sym_u16] = ACTIONS(4980), + [anon_sym_u32] = ACTIONS(4980), + [anon_sym_u64] = ACTIONS(4980), + [anon_sym_isize] = ACTIONS(4980), + [anon_sym_usize] = ACTIONS(4980), + [anon_sym_f32] = ACTIONS(4980), + [anon_sym_f64] = ACTIONS(4980), + [anon_sym_c_char] = ACTIONS(4980), + [anon_sym_c_schar] = ACTIONS(4980), + [anon_sym_c_uchar] = ACTIONS(4980), + [anon_sym_c_short] = ACTIONS(4980), + [anon_sym_c_ushort] = ACTIONS(4980), + [anon_sym_c_int] = ACTIONS(4980), + [anon_sym_c_uint] = ACTIONS(4980), + [anon_sym_c_long] = ACTIONS(4980), + [anon_sym_c_ulong] = ACTIONS(4980), + [anon_sym_c_longlong] = ACTIONS(4980), + [anon_sym_c_ulonglong] = ACTIONS(4980), + [anon_sym_c_float] = ACTIONS(4980), + [anon_sym_c_double] = ACTIONS(4980), + [anon_sym_c_longdouble] = ACTIONS(4980), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4978), + [anon_sym_xor_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4978), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_yield] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4978), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_defer] = ACTIONS(4980), + [anon_sym_errdefer] = ACTIONS(4980), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_while] = ACTIONS(4980), + [anon_sym_expand] = ACTIONS(4980), + [anon_sym_for] = ACTIONS(4980), + [anon_sym_match] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4978), + [anon_sym_orelse] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4980), + [anon_sym_xor] = ACTIONS(4980), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4980), + [anon_sym_LT_LT_PIPE] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_catch] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_null] = ACTIONS(4980), + [anon_sym_unreachable] = ACTIONS(4980), + [anon_sym_undefined] = ACTIONS(4980), + [sym_sink] = ACTIONS(4980), + [sym_integer] = ACTIONS(4980), + [sym_float] = ACTIONS(4978), + [anon_sym_DQUOTE] = ACTIONS(4978), + [sym_multiline_string] = ACTIONS(4978), + [sym_character] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4978), + }, + [STATE(2307)] = { + [ts_builtin_sym_end] = ACTIONS(4982), + [sym_identifier] = ACTIONS(4984), + [anon_sym_import] = ACTIONS(4984), + [anon_sym_test] = ACTIONS(4984), + [anon_sym_hide] = ACTIONS(4984), + [anon_sym_func] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_void] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym_type] = ACTIONS(4984), + [anon_sym_anyopaque] = ACTIONS(4984), + [anon_sym_bool] = ACTIONS(4984), + [anon_sym_int] = ACTIONS(4984), + [anon_sym_uint] = ACTIONS(4984), + [anon_sym_float] = ACTIONS(4984), + [anon_sym_range] = ACTIONS(4984), + [anon_sym_i8] = ACTIONS(4984), + [anon_sym_i16] = ACTIONS(4984), + [anon_sym_i32] = ACTIONS(4984), + [anon_sym_i64] = ACTIONS(4984), + [anon_sym_u8] = ACTIONS(4984), + [anon_sym_u16] = ACTIONS(4984), + [anon_sym_u32] = ACTIONS(4984), + [anon_sym_u64] = ACTIONS(4984), + [anon_sym_isize] = ACTIONS(4984), + [anon_sym_usize] = ACTIONS(4984), + [anon_sym_f32] = ACTIONS(4984), + [anon_sym_f64] = ACTIONS(4984), + [anon_sym_c_char] = ACTIONS(4984), + [anon_sym_c_schar] = ACTIONS(4984), + [anon_sym_c_uchar] = ACTIONS(4984), + [anon_sym_c_short] = ACTIONS(4984), + [anon_sym_c_ushort] = ACTIONS(4984), + [anon_sym_c_int] = ACTIONS(4984), + [anon_sym_c_uint] = ACTIONS(4984), + [anon_sym_c_long] = ACTIONS(4984), + [anon_sym_c_ulong] = ACTIONS(4984), + [anon_sym_c_longlong] = ACTIONS(4984), + [anon_sym_c_ulonglong] = ACTIONS(4984), + [anon_sym_c_float] = ACTIONS(4984), + [anon_sym_c_double] = ACTIONS(4984), + [anon_sym_c_longdouble] = ACTIONS(4984), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_AMP_EQ] = ACTIONS(4982), + [anon_sym_PIPE_EQ] = ACTIONS(4982), + [anon_sym_xor_EQ] = ACTIONS(4982), + [anon_sym_LT_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_GT_EQ] = ACTIONS(4982), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4982), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_yield] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4982), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_defer] = ACTIONS(4984), + [anon_sym_errdefer] = ACTIONS(4984), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_expand] = ACTIONS(4984), + [anon_sym_for] = ACTIONS(4984), + [anon_sym_match] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4982), + [anon_sym_orelse] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4984), + [anon_sym_and] = ACTIONS(4984), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_xor] = ACTIONS(4984), + [anon_sym_LT_LT] = ACTIONS(4984), + [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_LT_LT_PIPE] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_catch] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4982), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_null] = ACTIONS(4984), + [anon_sym_unreachable] = ACTIONS(4984), + [anon_sym_undefined] = ACTIONS(4984), + [sym_sink] = ACTIONS(4984), + [sym_integer] = ACTIONS(4984), + [sym_float] = ACTIONS(4982), + [anon_sym_DQUOTE] = ACTIONS(4982), + [sym_multiline_string] = ACTIONS(4982), + [sym_character] = ACTIONS(4982), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4982), + }, + [STATE(2308)] = { + [ts_builtin_sym_end] = ACTIONS(4986), + [sym_identifier] = ACTIONS(4988), + [anon_sym_import] = ACTIONS(4988), + [anon_sym_test] = ACTIONS(4988), + [anon_sym_hide] = ACTIONS(4988), + [anon_sym_func] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_void] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym_type] = ACTIONS(4988), + [anon_sym_anyopaque] = ACTIONS(4988), + [anon_sym_bool] = ACTIONS(4988), + [anon_sym_int] = ACTIONS(4988), + [anon_sym_uint] = ACTIONS(4988), + [anon_sym_float] = ACTIONS(4988), + [anon_sym_range] = ACTIONS(4988), + [anon_sym_i8] = ACTIONS(4988), + [anon_sym_i16] = ACTIONS(4988), + [anon_sym_i32] = ACTIONS(4988), + [anon_sym_i64] = ACTIONS(4988), + [anon_sym_u8] = ACTIONS(4988), + [anon_sym_u16] = ACTIONS(4988), + [anon_sym_u32] = ACTIONS(4988), + [anon_sym_u64] = ACTIONS(4988), + [anon_sym_isize] = ACTIONS(4988), + [anon_sym_usize] = ACTIONS(4988), + [anon_sym_f32] = ACTIONS(4988), + [anon_sym_f64] = ACTIONS(4988), + [anon_sym_c_char] = ACTIONS(4988), + [anon_sym_c_schar] = ACTIONS(4988), + [anon_sym_c_uchar] = ACTIONS(4988), + [anon_sym_c_short] = ACTIONS(4988), + [anon_sym_c_ushort] = ACTIONS(4988), + [anon_sym_c_int] = ACTIONS(4988), + [anon_sym_c_uint] = ACTIONS(4988), + [anon_sym_c_long] = ACTIONS(4988), + [anon_sym_c_ulong] = ACTIONS(4988), + [anon_sym_c_longlong] = ACTIONS(4988), + [anon_sym_c_ulonglong] = ACTIONS(4988), + [anon_sym_c_float] = ACTIONS(4988), + [anon_sym_c_double] = ACTIONS(4988), + [anon_sym_c_longdouble] = ACTIONS(4988), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_xor_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4986), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4986), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_defer] = ACTIONS(4988), + [anon_sym_errdefer] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_while] = ACTIONS(4988), + [anon_sym_expand] = ACTIONS(4988), + [anon_sym_for] = ACTIONS(4988), + [anon_sym_match] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), + [anon_sym_orelse] = ACTIONS(4988), + [anon_sym_or] = ACTIONS(4988), + [anon_sym_and] = ACTIONS(4988), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4988), + [anon_sym_xor] = ACTIONS(4988), + [anon_sym_LT_LT] = ACTIONS(4988), + [anon_sym_GT_GT] = ACTIONS(4988), + [anon_sym_LT_LT_PIPE] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_catch] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4986), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_null] = ACTIONS(4988), + [anon_sym_unreachable] = ACTIONS(4988), + [anon_sym_undefined] = ACTIONS(4988), + [sym_sink] = ACTIONS(4988), + [sym_integer] = ACTIONS(4988), + [sym_float] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(4986), + [sym_multiline_string] = ACTIONS(4986), + [sym_character] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4986), + }, + [STATE(2309)] = { + [ts_builtin_sym_end] = ACTIONS(4990), + [sym_identifier] = ACTIONS(4992), + [anon_sym_import] = ACTIONS(4992), + [anon_sym_test] = ACTIONS(4992), + [anon_sym_hide] = ACTIONS(4992), + [anon_sym_func] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_struct] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4990), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4990), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_void] = ACTIONS(4992), + [anon_sym_noreturn] = ACTIONS(4992), + [anon_sym_type] = ACTIONS(4992), + [anon_sym_anyopaque] = ACTIONS(4992), + [anon_sym_bool] = ACTIONS(4992), + [anon_sym_int] = ACTIONS(4992), + [anon_sym_uint] = ACTIONS(4992), + [anon_sym_float] = ACTIONS(4992), + [anon_sym_range] = ACTIONS(4992), + [anon_sym_i8] = ACTIONS(4992), + [anon_sym_i16] = ACTIONS(4992), + [anon_sym_i32] = ACTIONS(4992), + [anon_sym_i64] = ACTIONS(4992), + [anon_sym_u8] = ACTIONS(4992), + [anon_sym_u16] = ACTIONS(4992), + [anon_sym_u32] = ACTIONS(4992), + [anon_sym_u64] = ACTIONS(4992), + [anon_sym_isize] = ACTIONS(4992), + [anon_sym_usize] = ACTIONS(4992), + [anon_sym_f32] = ACTIONS(4992), + [anon_sym_f64] = ACTIONS(4992), + [anon_sym_c_char] = ACTIONS(4992), + [anon_sym_c_schar] = ACTIONS(4992), + [anon_sym_c_uchar] = ACTIONS(4992), + [anon_sym_c_short] = ACTIONS(4992), + [anon_sym_c_ushort] = ACTIONS(4992), + [anon_sym_c_int] = ACTIONS(4992), + [anon_sym_c_uint] = ACTIONS(4992), + [anon_sym_c_long] = ACTIONS(4992), + [anon_sym_c_ulong] = ACTIONS(4992), + [anon_sym_c_longlong] = ACTIONS(4992), + [anon_sym_c_ulonglong] = ACTIONS(4992), + [anon_sym_c_float] = ACTIONS(4992), + [anon_sym_c_double] = ACTIONS(4992), + [anon_sym_c_longdouble] = ACTIONS(4992), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_AMP_EQ] = ACTIONS(4990), + [anon_sym_PIPE_EQ] = ACTIONS(4990), + [anon_sym_xor_EQ] = ACTIONS(4990), + [anon_sym_LT_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_GT_EQ] = ACTIONS(4990), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4990), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_yield] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4990), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_defer] = ACTIONS(4992), + [anon_sym_errdefer] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_while] = ACTIONS(4992), + [anon_sym_expand] = ACTIONS(4992), + [anon_sym_for] = ACTIONS(4992), + [anon_sym_match] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4990), + [anon_sym_orelse] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_AMP] = ACTIONS(4992), + [anon_sym_xor] = ACTIONS(4992), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4992), + [anon_sym_LT_LT_PIPE] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_catch] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4990), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_unreachable] = ACTIONS(4992), + [anon_sym_undefined] = ACTIONS(4992), + [sym_sink] = ACTIONS(4992), + [sym_integer] = ACTIONS(4992), + [sym_float] = ACTIONS(4990), + [anon_sym_DQUOTE] = ACTIONS(4990), + [sym_multiline_string] = ACTIONS(4990), + [sym_character] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4990), + }, + [STATE(2310)] = { + [ts_builtin_sym_end] = ACTIONS(4994), + [sym_identifier] = ACTIONS(4996), + [anon_sym_import] = ACTIONS(4996), + [anon_sym_test] = ACTIONS(4996), + [anon_sym_hide] = ACTIONS(4996), + [anon_sym_func] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_struct] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4994), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_void] = ACTIONS(4996), + [anon_sym_noreturn] = ACTIONS(4996), + [anon_sym_type] = ACTIONS(4996), + [anon_sym_anyopaque] = ACTIONS(4996), + [anon_sym_bool] = ACTIONS(4996), + [anon_sym_int] = ACTIONS(4996), + [anon_sym_uint] = ACTIONS(4996), + [anon_sym_float] = ACTIONS(4996), + [anon_sym_range] = ACTIONS(4996), + [anon_sym_i8] = ACTIONS(4996), + [anon_sym_i16] = ACTIONS(4996), + [anon_sym_i32] = ACTIONS(4996), + [anon_sym_i64] = ACTIONS(4996), + [anon_sym_u8] = ACTIONS(4996), + [anon_sym_u16] = ACTIONS(4996), + [anon_sym_u32] = ACTIONS(4996), + [anon_sym_u64] = ACTIONS(4996), + [anon_sym_isize] = ACTIONS(4996), + [anon_sym_usize] = ACTIONS(4996), + [anon_sym_f32] = ACTIONS(4996), + [anon_sym_f64] = ACTIONS(4996), + [anon_sym_c_char] = ACTIONS(4996), + [anon_sym_c_schar] = ACTIONS(4996), + [anon_sym_c_uchar] = ACTIONS(4996), + [anon_sym_c_short] = ACTIONS(4996), + [anon_sym_c_ushort] = ACTIONS(4996), + [anon_sym_c_int] = ACTIONS(4996), + [anon_sym_c_uint] = ACTIONS(4996), + [anon_sym_c_long] = ACTIONS(4996), + [anon_sym_c_ulong] = ACTIONS(4996), + [anon_sym_c_longlong] = ACTIONS(4996), + [anon_sym_c_ulonglong] = ACTIONS(4996), + [anon_sym_c_float] = ACTIONS(4996), + [anon_sym_c_double] = ACTIONS(4996), + [anon_sym_c_longdouble] = ACTIONS(4996), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_AMP_EQ] = ACTIONS(4994), + [anon_sym_PIPE_EQ] = ACTIONS(4994), + [anon_sym_xor_EQ] = ACTIONS(4994), + [anon_sym_LT_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_GT_EQ] = ACTIONS(4994), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4994), + [anon_sym_return] = ACTIONS(4996), + [anon_sym_yield] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4994), + [anon_sym_break] = ACTIONS(4996), + [anon_sym_continue] = ACTIONS(4996), + [anon_sym_defer] = ACTIONS(4996), + [anon_sym_errdefer] = ACTIONS(4996), + [anon_sym_if] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_while] = ACTIONS(4996), + [anon_sym_expand] = ACTIONS(4996), + [anon_sym_for] = ACTIONS(4996), + [anon_sym_match] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4994), + [anon_sym_orelse] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_xor] = ACTIONS(4996), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4996), + [anon_sym_LT_LT_PIPE] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_catch] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4996), + [anon_sym_unreachable] = ACTIONS(4996), + [anon_sym_undefined] = ACTIONS(4996), + [sym_sink] = ACTIONS(4996), + [sym_integer] = ACTIONS(4996), + [sym_float] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(4994), + [sym_multiline_string] = ACTIONS(4994), + [sym_character] = ACTIONS(4994), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4994), + }, + [STATE(2311)] = { + [ts_builtin_sym_end] = ACTIONS(4998), + [sym_identifier] = ACTIONS(5000), + [anon_sym_import] = ACTIONS(5000), + [anon_sym_test] = ACTIONS(5000), + [anon_sym_hide] = ACTIONS(5000), + [anon_sym_func] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_void] = ACTIONS(5000), + [anon_sym_noreturn] = ACTIONS(5000), + [anon_sym_type] = ACTIONS(5000), + [anon_sym_anyopaque] = ACTIONS(5000), + [anon_sym_bool] = ACTIONS(5000), + [anon_sym_int] = ACTIONS(5000), + [anon_sym_uint] = ACTIONS(5000), + [anon_sym_float] = ACTIONS(5000), + [anon_sym_range] = ACTIONS(5000), + [anon_sym_i8] = ACTIONS(5000), + [anon_sym_i16] = ACTIONS(5000), + [anon_sym_i32] = ACTIONS(5000), + [anon_sym_i64] = ACTIONS(5000), + [anon_sym_u8] = ACTIONS(5000), + [anon_sym_u16] = ACTIONS(5000), + [anon_sym_u32] = ACTIONS(5000), + [anon_sym_u64] = ACTIONS(5000), + [anon_sym_isize] = ACTIONS(5000), + [anon_sym_usize] = ACTIONS(5000), + [anon_sym_f32] = ACTIONS(5000), + [anon_sym_f64] = ACTIONS(5000), + [anon_sym_c_char] = ACTIONS(5000), + [anon_sym_c_schar] = ACTIONS(5000), + [anon_sym_c_uchar] = ACTIONS(5000), + [anon_sym_c_short] = ACTIONS(5000), + [anon_sym_c_ushort] = ACTIONS(5000), + [anon_sym_c_int] = ACTIONS(5000), + [anon_sym_c_uint] = ACTIONS(5000), + [anon_sym_c_long] = ACTIONS(5000), + [anon_sym_c_ulong] = ACTIONS(5000), + [anon_sym_c_longlong] = ACTIONS(5000), + [anon_sym_c_ulonglong] = ACTIONS(5000), + [anon_sym_c_float] = ACTIONS(5000), + [anon_sym_c_double] = ACTIONS(5000), + [anon_sym_c_longdouble] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(4998), + [anon_sym_DASH_EQ] = ACTIONS(4998), + [anon_sym_STAR_EQ] = ACTIONS(4998), + [anon_sym_SLASH_EQ] = ACTIONS(4998), + [anon_sym_AMP_EQ] = ACTIONS(4998), + [anon_sym_PIPE_EQ] = ACTIONS(4998), + [anon_sym_xor_EQ] = ACTIONS(4998), + [anon_sym_LT_LT_EQ] = ACTIONS(4998), + [anon_sym_GT_GT_EQ] = ACTIONS(4998), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4998), + [anon_sym_return] = ACTIONS(5000), + [anon_sym_yield] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_break] = ACTIONS(5000), + [anon_sym_continue] = ACTIONS(5000), + [anon_sym_defer] = ACTIONS(5000), + [anon_sym_errdefer] = ACTIONS(5000), + [anon_sym_if] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_while] = ACTIONS(5000), + [anon_sym_expand] = ACTIONS(5000), + [anon_sym_for] = ACTIONS(5000), + [anon_sym_match] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4998), + [anon_sym_orelse] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(5000), + [anon_sym_and] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(5000), + [anon_sym_xor] = ACTIONS(5000), + [anon_sym_LT_LT] = ACTIONS(5000), + [anon_sym_GT_GT] = ACTIONS(5000), + [anon_sym_LT_LT_PIPE] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_catch] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_try] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_true] = ACTIONS(5000), + [anon_sym_false] = ACTIONS(5000), + [anon_sym_null] = ACTIONS(5000), + [anon_sym_unreachable] = ACTIONS(5000), + [anon_sym_undefined] = ACTIONS(5000), + [sym_sink] = ACTIONS(5000), + [sym_integer] = ACTIONS(5000), + [sym_float] = ACTIONS(4998), + [anon_sym_DQUOTE] = ACTIONS(4998), + [sym_multiline_string] = ACTIONS(4998), + [sym_character] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4998), + }, + [STATE(2312)] = { + [ts_builtin_sym_end] = ACTIONS(5002), + [sym_identifier] = ACTIONS(5004), + [anon_sym_import] = ACTIONS(5004), + [anon_sym_test] = ACTIONS(5004), + [anon_sym_hide] = ACTIONS(5004), + [anon_sym_func] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_struct] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5002), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_void] = ACTIONS(5004), + [anon_sym_noreturn] = ACTIONS(5004), + [anon_sym_type] = ACTIONS(5004), + [anon_sym_anyopaque] = ACTIONS(5004), + [anon_sym_bool] = ACTIONS(5004), + [anon_sym_int] = ACTIONS(5004), + [anon_sym_uint] = ACTIONS(5004), + [anon_sym_float] = ACTIONS(5004), + [anon_sym_range] = ACTIONS(5004), + [anon_sym_i8] = ACTIONS(5004), + [anon_sym_i16] = ACTIONS(5004), + [anon_sym_i32] = ACTIONS(5004), + [anon_sym_i64] = ACTIONS(5004), + [anon_sym_u8] = ACTIONS(5004), + [anon_sym_u16] = ACTIONS(5004), + [anon_sym_u32] = ACTIONS(5004), + [anon_sym_u64] = ACTIONS(5004), + [anon_sym_isize] = ACTIONS(5004), + [anon_sym_usize] = ACTIONS(5004), + [anon_sym_f32] = ACTIONS(5004), + [anon_sym_f64] = ACTIONS(5004), + [anon_sym_c_char] = ACTIONS(5004), + [anon_sym_c_schar] = ACTIONS(5004), + [anon_sym_c_uchar] = ACTIONS(5004), + [anon_sym_c_short] = ACTIONS(5004), + [anon_sym_c_ushort] = ACTIONS(5004), + [anon_sym_c_int] = ACTIONS(5004), + [anon_sym_c_uint] = ACTIONS(5004), + [anon_sym_c_long] = ACTIONS(5004), + [anon_sym_c_ulong] = ACTIONS(5004), + [anon_sym_c_longlong] = ACTIONS(5004), + [anon_sym_c_ulonglong] = ACTIONS(5004), + [anon_sym_c_float] = ACTIONS(5004), + [anon_sym_c_double] = ACTIONS(5004), + [anon_sym_c_longdouble] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_xor_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5002), + [anon_sym_return] = ACTIONS(5004), + [anon_sym_yield] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_break] = ACTIONS(5004), + [anon_sym_continue] = ACTIONS(5004), + [anon_sym_defer] = ACTIONS(5004), + [anon_sym_errdefer] = ACTIONS(5004), + [anon_sym_if] = ACTIONS(5004), + [anon_sym_else] = ACTIONS(5004), + [anon_sym_while] = ACTIONS(5004), + [anon_sym_expand] = ACTIONS(5004), + [anon_sym_for] = ACTIONS(5004), + [anon_sym_match] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), + [anon_sym_orelse] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5004), + [anon_sym_xor] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_LT_LT_PIPE] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_catch] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5002), + [anon_sym_try] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_true] = ACTIONS(5004), + [anon_sym_false] = ACTIONS(5004), + [anon_sym_null] = ACTIONS(5004), + [anon_sym_unreachable] = ACTIONS(5004), + [anon_sym_undefined] = ACTIONS(5004), + [sym_sink] = ACTIONS(5004), + [sym_integer] = ACTIONS(5004), + [sym_float] = ACTIONS(5002), + [anon_sym_DQUOTE] = ACTIONS(5002), + [sym_multiline_string] = ACTIONS(5002), + [sym_character] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5002), + }, + [STATE(2313)] = { + [ts_builtin_sym_end] = ACTIONS(5006), + [sym_identifier] = ACTIONS(5008), + [anon_sym_import] = ACTIONS(5008), + [anon_sym_test] = ACTIONS(5008), + [anon_sym_hide] = ACTIONS(5008), + [anon_sym_func] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_struct] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_RBRACE] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5006), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_void] = ACTIONS(5008), + [anon_sym_noreturn] = ACTIONS(5008), + [anon_sym_type] = ACTIONS(5008), + [anon_sym_anyopaque] = ACTIONS(5008), + [anon_sym_bool] = ACTIONS(5008), + [anon_sym_int] = ACTIONS(5008), + [anon_sym_uint] = ACTIONS(5008), + [anon_sym_float] = ACTIONS(5008), + [anon_sym_range] = ACTIONS(5008), + [anon_sym_i8] = ACTIONS(5008), + [anon_sym_i16] = ACTIONS(5008), + [anon_sym_i32] = ACTIONS(5008), + [anon_sym_i64] = ACTIONS(5008), + [anon_sym_u8] = ACTIONS(5008), + [anon_sym_u16] = ACTIONS(5008), + [anon_sym_u32] = ACTIONS(5008), + [anon_sym_u64] = ACTIONS(5008), + [anon_sym_isize] = ACTIONS(5008), + [anon_sym_usize] = ACTIONS(5008), + [anon_sym_f32] = ACTIONS(5008), + [anon_sym_f64] = ACTIONS(5008), + [anon_sym_c_char] = ACTIONS(5008), + [anon_sym_c_schar] = ACTIONS(5008), + [anon_sym_c_uchar] = ACTIONS(5008), + [anon_sym_c_short] = ACTIONS(5008), + [anon_sym_c_ushort] = ACTIONS(5008), + [anon_sym_c_int] = ACTIONS(5008), + [anon_sym_c_uint] = ACTIONS(5008), + [anon_sym_c_long] = ACTIONS(5008), + [anon_sym_c_ulong] = ACTIONS(5008), + [anon_sym_c_longlong] = ACTIONS(5008), + [anon_sym_c_ulonglong] = ACTIONS(5008), + [anon_sym_c_float] = ACTIONS(5008), + [anon_sym_c_double] = ACTIONS(5008), + [anon_sym_c_longdouble] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5006), + [anon_sym_DASH_EQ] = ACTIONS(5006), + [anon_sym_STAR_EQ] = ACTIONS(5006), + [anon_sym_SLASH_EQ] = ACTIONS(5006), + [anon_sym_AMP_EQ] = ACTIONS(5006), + [anon_sym_PIPE_EQ] = ACTIONS(5006), + [anon_sym_xor_EQ] = ACTIONS(5006), + [anon_sym_LT_LT_EQ] = ACTIONS(5006), + [anon_sym_GT_GT_EQ] = ACTIONS(5006), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5006), + [anon_sym_return] = ACTIONS(5008), + [anon_sym_yield] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5006), + [anon_sym_break] = ACTIONS(5008), + [anon_sym_continue] = ACTIONS(5008), + [anon_sym_defer] = ACTIONS(5008), + [anon_sym_errdefer] = ACTIONS(5008), + [anon_sym_if] = ACTIONS(5008), + [anon_sym_else] = ACTIONS(5008), + [anon_sym_while] = ACTIONS(5008), + [anon_sym_expand] = ACTIONS(5008), + [anon_sym_for] = ACTIONS(5008), + [anon_sym_match] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_orelse] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5006), + [anon_sym_BANG_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5008), + [anon_sym_xor] = ACTIONS(5008), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5008), + [anon_sym_LT_LT_PIPE] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_catch] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5006), + [anon_sym_try] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_true] = ACTIONS(5008), + [anon_sym_false] = ACTIONS(5008), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_unreachable] = ACTIONS(5008), + [anon_sym_undefined] = ACTIONS(5008), + [sym_sink] = ACTIONS(5008), + [sym_integer] = ACTIONS(5008), + [sym_float] = ACTIONS(5006), + [anon_sym_DQUOTE] = ACTIONS(5006), + [sym_multiline_string] = ACTIONS(5006), + [sym_character] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5006), + }, + [STATE(2314)] = { + [ts_builtin_sym_end] = ACTIONS(5010), + [sym_identifier] = ACTIONS(5012), + [anon_sym_import] = ACTIONS(5012), + [anon_sym_test] = ACTIONS(5012), + [anon_sym_hide] = ACTIONS(5012), + [anon_sym_func] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_struct] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_RPAREN] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5010), + [anon_sym_COMMA] = ACTIONS(5010), + [anon_sym_RBRACE] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5010), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5010), + [anon_sym_RBRACK] = ACTIONS(5010), + [anon_sym_void] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_type] = ACTIONS(5012), + [anon_sym_anyopaque] = ACTIONS(5012), + [anon_sym_bool] = ACTIONS(5012), + [anon_sym_int] = ACTIONS(5012), + [anon_sym_uint] = ACTIONS(5012), + [anon_sym_float] = ACTIONS(5012), + [anon_sym_range] = ACTIONS(5012), + [anon_sym_i8] = ACTIONS(5012), + [anon_sym_i16] = ACTIONS(5012), + [anon_sym_i32] = ACTIONS(5012), + [anon_sym_i64] = ACTIONS(5012), + [anon_sym_u8] = ACTIONS(5012), + [anon_sym_u16] = ACTIONS(5012), + [anon_sym_u32] = ACTIONS(5012), + [anon_sym_u64] = ACTIONS(5012), + [anon_sym_isize] = ACTIONS(5012), + [anon_sym_usize] = ACTIONS(5012), + [anon_sym_f32] = ACTIONS(5012), + [anon_sym_f64] = ACTIONS(5012), + [anon_sym_c_char] = ACTIONS(5012), + [anon_sym_c_schar] = ACTIONS(5012), + [anon_sym_c_uchar] = ACTIONS(5012), + [anon_sym_c_short] = ACTIONS(5012), + [anon_sym_c_ushort] = ACTIONS(5012), + [anon_sym_c_int] = ACTIONS(5012), + [anon_sym_c_uint] = ACTIONS(5012), + [anon_sym_c_long] = ACTIONS(5012), + [anon_sym_c_ulong] = ACTIONS(5012), + [anon_sym_c_longlong] = ACTIONS(5012), + [anon_sym_c_ulonglong] = ACTIONS(5012), + [anon_sym_c_float] = ACTIONS(5012), + [anon_sym_c_double] = ACTIONS(5012), + [anon_sym_c_longdouble] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5010), + [anon_sym_DASH_EQ] = ACTIONS(5010), + [anon_sym_STAR_EQ] = ACTIONS(5010), + [anon_sym_SLASH_EQ] = ACTIONS(5010), + [anon_sym_AMP_EQ] = ACTIONS(5010), + [anon_sym_PIPE_EQ] = ACTIONS(5010), + [anon_sym_xor_EQ] = ACTIONS(5010), + [anon_sym_LT_LT_EQ] = ACTIONS(5010), + [anon_sym_GT_GT_EQ] = ACTIONS(5010), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5010), + [anon_sym_return] = ACTIONS(5012), + [anon_sym_yield] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5010), + [anon_sym_break] = ACTIONS(5012), + [anon_sym_continue] = ACTIONS(5012), + [anon_sym_defer] = ACTIONS(5012), + [anon_sym_errdefer] = ACTIONS(5012), + [anon_sym_if] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5012), + [anon_sym_while] = ACTIONS(5012), + [anon_sym_expand] = ACTIONS(5012), + [anon_sym_for] = ACTIONS(5012), + [anon_sym_match] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), + [anon_sym_orelse] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5012), + [anon_sym_and] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5012), + [anon_sym_xor] = ACTIONS(5012), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5012), + [anon_sym_LT_LT_PIPE] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_catch] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_true] = ACTIONS(5012), + [anon_sym_false] = ACTIONS(5012), + [anon_sym_null] = ACTIONS(5012), + [anon_sym_unreachable] = ACTIONS(5012), + [anon_sym_undefined] = ACTIONS(5012), + [sym_sink] = ACTIONS(5012), + [sym_integer] = ACTIONS(5012), + [sym_float] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(5010), + [sym_multiline_string] = ACTIONS(5010), + [sym_character] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5010), + }, + [STATE(2315)] = { + [ts_builtin_sym_end] = ACTIONS(5014), + [sym_identifier] = ACTIONS(5016), + [anon_sym_import] = ACTIONS(5016), + [anon_sym_test] = ACTIONS(5016), + [anon_sym_hide] = ACTIONS(5016), + [anon_sym_func] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_struct] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_RPAREN] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_RBRACK] = ACTIONS(5014), + [anon_sym_void] = ACTIONS(5016), + [anon_sym_noreturn] = ACTIONS(5016), + [anon_sym_type] = ACTIONS(5016), + [anon_sym_anyopaque] = ACTIONS(5016), + [anon_sym_bool] = ACTIONS(5016), + [anon_sym_int] = ACTIONS(5016), + [anon_sym_uint] = ACTIONS(5016), + [anon_sym_float] = ACTIONS(5016), + [anon_sym_range] = ACTIONS(5016), + [anon_sym_i8] = ACTIONS(5016), + [anon_sym_i16] = ACTIONS(5016), + [anon_sym_i32] = ACTIONS(5016), + [anon_sym_i64] = ACTIONS(5016), + [anon_sym_u8] = ACTIONS(5016), + [anon_sym_u16] = ACTIONS(5016), + [anon_sym_u32] = ACTIONS(5016), + [anon_sym_u64] = ACTIONS(5016), + [anon_sym_isize] = ACTIONS(5016), + [anon_sym_usize] = ACTIONS(5016), + [anon_sym_f32] = ACTIONS(5016), + [anon_sym_f64] = ACTIONS(5016), + [anon_sym_c_char] = ACTIONS(5016), + [anon_sym_c_schar] = ACTIONS(5016), + [anon_sym_c_uchar] = ACTIONS(5016), + [anon_sym_c_short] = ACTIONS(5016), + [anon_sym_c_ushort] = ACTIONS(5016), + [anon_sym_c_int] = ACTIONS(5016), + [anon_sym_c_uint] = ACTIONS(5016), + [anon_sym_c_long] = ACTIONS(5016), + [anon_sym_c_ulong] = ACTIONS(5016), + [anon_sym_c_longlong] = ACTIONS(5016), + [anon_sym_c_ulonglong] = ACTIONS(5016), + [anon_sym_c_float] = ACTIONS(5016), + [anon_sym_c_double] = ACTIONS(5016), + [anon_sym_c_longdouble] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5014), + [anon_sym_DASH_EQ] = ACTIONS(5014), + [anon_sym_STAR_EQ] = ACTIONS(5014), + [anon_sym_SLASH_EQ] = ACTIONS(5014), + [anon_sym_AMP_EQ] = ACTIONS(5014), + [anon_sym_PIPE_EQ] = ACTIONS(5014), + [anon_sym_xor_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_EQ] = ACTIONS(5014), + [anon_sym_GT_GT_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5014), + [anon_sym_return] = ACTIONS(5016), + [anon_sym_yield] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_break] = ACTIONS(5016), + [anon_sym_continue] = ACTIONS(5016), + [anon_sym_defer] = ACTIONS(5016), + [anon_sym_errdefer] = ACTIONS(5016), + [anon_sym_if] = ACTIONS(5016), + [anon_sym_else] = ACTIONS(5016), + [anon_sym_while] = ACTIONS(5016), + [anon_sym_expand] = ACTIONS(5016), + [anon_sym_for] = ACTIONS(5016), + [anon_sym_match] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5014), + [anon_sym_orelse] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5016), + [anon_sym_and] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_xor] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_LT_LT_PIPE] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_catch] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_true] = ACTIONS(5016), + [anon_sym_false] = ACTIONS(5016), + [anon_sym_null] = ACTIONS(5016), + [anon_sym_unreachable] = ACTIONS(5016), + [anon_sym_undefined] = ACTIONS(5016), + [sym_sink] = ACTIONS(5016), + [sym_integer] = ACTIONS(5016), + [sym_float] = ACTIONS(5014), + [anon_sym_DQUOTE] = ACTIONS(5014), + [sym_multiline_string] = ACTIONS(5014), + [sym_character] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5014), + }, + [STATE(2316)] = { + [ts_builtin_sym_end] = ACTIONS(5018), + [sym_identifier] = ACTIONS(5020), + [anon_sym_import] = ACTIONS(5020), + [anon_sym_test] = ACTIONS(5020), + [anon_sym_hide] = ACTIONS(5020), + [anon_sym_func] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_RPAREN] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5018), + [anon_sym_COMMA] = ACTIONS(5018), + [anon_sym_RBRACE] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5018), + [anon_sym_RBRACK] = ACTIONS(5018), + [anon_sym_void] = ACTIONS(5020), + [anon_sym_noreturn] = ACTIONS(5020), + [anon_sym_type] = ACTIONS(5020), + [anon_sym_anyopaque] = ACTIONS(5020), + [anon_sym_bool] = ACTIONS(5020), + [anon_sym_int] = ACTIONS(5020), + [anon_sym_uint] = ACTIONS(5020), + [anon_sym_float] = ACTIONS(5020), + [anon_sym_range] = ACTIONS(5020), + [anon_sym_i8] = ACTIONS(5020), + [anon_sym_i16] = ACTIONS(5020), + [anon_sym_i32] = ACTIONS(5020), + [anon_sym_i64] = ACTIONS(5020), + [anon_sym_u8] = ACTIONS(5020), + [anon_sym_u16] = ACTIONS(5020), + [anon_sym_u32] = ACTIONS(5020), + [anon_sym_u64] = ACTIONS(5020), + [anon_sym_isize] = ACTIONS(5020), + [anon_sym_usize] = ACTIONS(5020), + [anon_sym_f32] = ACTIONS(5020), + [anon_sym_f64] = ACTIONS(5020), + [anon_sym_c_char] = ACTIONS(5020), + [anon_sym_c_schar] = ACTIONS(5020), + [anon_sym_c_uchar] = ACTIONS(5020), + [anon_sym_c_short] = ACTIONS(5020), + [anon_sym_c_ushort] = ACTIONS(5020), + [anon_sym_c_int] = ACTIONS(5020), + [anon_sym_c_uint] = ACTIONS(5020), + [anon_sym_c_long] = ACTIONS(5020), + [anon_sym_c_ulong] = ACTIONS(5020), + [anon_sym_c_longlong] = ACTIONS(5020), + [anon_sym_c_ulonglong] = ACTIONS(5020), + [anon_sym_c_float] = ACTIONS(5020), + [anon_sym_c_double] = ACTIONS(5020), + [anon_sym_c_longdouble] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5018), + [anon_sym_DASH_EQ] = ACTIONS(5018), + [anon_sym_STAR_EQ] = ACTIONS(5018), + [anon_sym_SLASH_EQ] = ACTIONS(5018), + [anon_sym_AMP_EQ] = ACTIONS(5018), + [anon_sym_PIPE_EQ] = ACTIONS(5018), + [anon_sym_xor_EQ] = ACTIONS(5018), + [anon_sym_LT_LT_EQ] = ACTIONS(5018), + [anon_sym_GT_GT_EQ] = ACTIONS(5018), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5018), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_continue] = ACTIONS(5020), + [anon_sym_defer] = ACTIONS(5020), + [anon_sym_errdefer] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_expand] = ACTIONS(5020), + [anon_sym_for] = ACTIONS(5020), + [anon_sym_match] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5018), + [anon_sym_orelse] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5020), + [anon_sym_xor] = ACTIONS(5020), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5020), + [anon_sym_LT_LT_PIPE] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_catch] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5018), + [anon_sym_try] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_true] = ACTIONS(5020), + [anon_sym_false] = ACTIONS(5020), + [anon_sym_null] = ACTIONS(5020), + [anon_sym_unreachable] = ACTIONS(5020), + [anon_sym_undefined] = ACTIONS(5020), + [sym_sink] = ACTIONS(5020), + [sym_integer] = ACTIONS(5020), + [sym_float] = ACTIONS(5018), + [anon_sym_DQUOTE] = ACTIONS(5018), + [sym_multiline_string] = ACTIONS(5018), + [sym_character] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5018), + }, + [STATE(2317)] = { + [ts_builtin_sym_end] = ACTIONS(5022), + [sym_identifier] = ACTIONS(5024), + [anon_sym_import] = ACTIONS(5024), + [anon_sym_test] = ACTIONS(5024), + [anon_sym_hide] = ACTIONS(5024), + [anon_sym_func] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_struct] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_RPAREN] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_RBRACK] = ACTIONS(5022), + [anon_sym_void] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_type] = ACTIONS(5024), + [anon_sym_anyopaque] = ACTIONS(5024), + [anon_sym_bool] = ACTIONS(5024), + [anon_sym_int] = ACTIONS(5024), + [anon_sym_uint] = ACTIONS(5024), + [anon_sym_float] = ACTIONS(5024), + [anon_sym_range] = ACTIONS(5024), + [anon_sym_i8] = ACTIONS(5024), + [anon_sym_i16] = ACTIONS(5024), + [anon_sym_i32] = ACTIONS(5024), + [anon_sym_i64] = ACTIONS(5024), + [anon_sym_u8] = ACTIONS(5024), + [anon_sym_u16] = ACTIONS(5024), + [anon_sym_u32] = ACTIONS(5024), + [anon_sym_u64] = ACTIONS(5024), + [anon_sym_isize] = ACTIONS(5024), + [anon_sym_usize] = ACTIONS(5024), + [anon_sym_f32] = ACTIONS(5024), + [anon_sym_f64] = ACTIONS(5024), + [anon_sym_c_char] = ACTIONS(5024), + [anon_sym_c_schar] = ACTIONS(5024), + [anon_sym_c_uchar] = ACTIONS(5024), + [anon_sym_c_short] = ACTIONS(5024), + [anon_sym_c_ushort] = ACTIONS(5024), + [anon_sym_c_int] = ACTIONS(5024), + [anon_sym_c_uint] = ACTIONS(5024), + [anon_sym_c_long] = ACTIONS(5024), + [anon_sym_c_ulong] = ACTIONS(5024), + [anon_sym_c_longlong] = ACTIONS(5024), + [anon_sym_c_ulonglong] = ACTIONS(5024), + [anon_sym_c_float] = ACTIONS(5024), + [anon_sym_c_double] = ACTIONS(5024), + [anon_sym_c_longdouble] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_AMP_EQ] = ACTIONS(5022), + [anon_sym_PIPE_EQ] = ACTIONS(5022), + [anon_sym_xor_EQ] = ACTIONS(5022), + [anon_sym_LT_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_GT_EQ] = ACTIONS(5022), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5022), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_yield] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_defer] = ACTIONS(5024), + [anon_sym_errdefer] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_while] = ACTIONS(5024), + [anon_sym_expand] = ACTIONS(5024), + [anon_sym_for] = ACTIONS(5024), + [anon_sym_match] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5022), + [anon_sym_orelse] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym_LT_LT_PIPE] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_catch] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_unreachable] = ACTIONS(5024), + [anon_sym_undefined] = ACTIONS(5024), + [sym_sink] = ACTIONS(5024), + [sym_integer] = ACTIONS(5024), + [sym_float] = ACTIONS(5022), + [anon_sym_DQUOTE] = ACTIONS(5022), + [sym_multiline_string] = ACTIONS(5022), + [sym_character] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5022), + }, + [STATE(2318)] = { + [ts_builtin_sym_end] = ACTIONS(5026), + [sym_identifier] = ACTIONS(5028), + [anon_sym_import] = ACTIONS(5028), + [anon_sym_test] = ACTIONS(5028), + [anon_sym_hide] = ACTIONS(5028), + [anon_sym_func] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_RBRACK] = ACTIONS(5026), + [anon_sym_void] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_type] = ACTIONS(5028), + [anon_sym_anyopaque] = ACTIONS(5028), + [anon_sym_bool] = ACTIONS(5028), + [anon_sym_int] = ACTIONS(5028), + [anon_sym_uint] = ACTIONS(5028), + [anon_sym_float] = ACTIONS(5028), + [anon_sym_range] = ACTIONS(5028), + [anon_sym_i8] = ACTIONS(5028), + [anon_sym_i16] = ACTIONS(5028), + [anon_sym_i32] = ACTIONS(5028), + [anon_sym_i64] = ACTIONS(5028), + [anon_sym_u8] = ACTIONS(5028), + [anon_sym_u16] = ACTIONS(5028), + [anon_sym_u32] = ACTIONS(5028), + [anon_sym_u64] = ACTIONS(5028), + [anon_sym_isize] = ACTIONS(5028), + [anon_sym_usize] = ACTIONS(5028), + [anon_sym_f32] = ACTIONS(5028), + [anon_sym_f64] = ACTIONS(5028), + [anon_sym_c_char] = ACTIONS(5028), + [anon_sym_c_schar] = ACTIONS(5028), + [anon_sym_c_uchar] = ACTIONS(5028), + [anon_sym_c_short] = ACTIONS(5028), + [anon_sym_c_ushort] = ACTIONS(5028), + [anon_sym_c_int] = ACTIONS(5028), + [anon_sym_c_uint] = ACTIONS(5028), + [anon_sym_c_long] = ACTIONS(5028), + [anon_sym_c_ulong] = ACTIONS(5028), + [anon_sym_c_longlong] = ACTIONS(5028), + [anon_sym_c_ulonglong] = ACTIONS(5028), + [anon_sym_c_float] = ACTIONS(5028), + [anon_sym_c_double] = ACTIONS(5028), + [anon_sym_c_longdouble] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5026), + [anon_sym_xor_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5026), + [anon_sym_return] = ACTIONS(5028), + [anon_sym_yield] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_break] = ACTIONS(5028), + [anon_sym_continue] = ACTIONS(5028), + [anon_sym_defer] = ACTIONS(5028), + [anon_sym_errdefer] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5028), + [anon_sym_while] = ACTIONS(5028), + [anon_sym_expand] = ACTIONS(5028), + [anon_sym_for] = ACTIONS(5028), + [anon_sym_match] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5026), + [anon_sym_orelse] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym_LT_LT_PIPE] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_catch] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5028), + [anon_sym_false] = ACTIONS(5028), + [anon_sym_null] = ACTIONS(5028), + [anon_sym_unreachable] = ACTIONS(5028), + [anon_sym_undefined] = ACTIONS(5028), + [sym_sink] = ACTIONS(5028), + [sym_integer] = ACTIONS(5028), + [sym_float] = ACTIONS(5026), + [anon_sym_DQUOTE] = ACTIONS(5026), + [sym_multiline_string] = ACTIONS(5026), + [sym_character] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5026), + }, + [STATE(2319)] = { + [ts_builtin_sym_end] = ACTIONS(5030), + [sym_identifier] = ACTIONS(5032), + [anon_sym_import] = ACTIONS(5032), + [anon_sym_test] = ACTIONS(5032), + [anon_sym_hide] = ACTIONS(5032), + [anon_sym_func] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_struct] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5030), + [anon_sym_RBRACK] = ACTIONS(5030), + [anon_sym_void] = ACTIONS(5032), + [anon_sym_noreturn] = ACTIONS(5032), + [anon_sym_type] = ACTIONS(5032), + [anon_sym_anyopaque] = ACTIONS(5032), + [anon_sym_bool] = ACTIONS(5032), + [anon_sym_int] = ACTIONS(5032), + [anon_sym_uint] = ACTIONS(5032), + [anon_sym_float] = ACTIONS(5032), + [anon_sym_range] = ACTIONS(5032), + [anon_sym_i8] = ACTIONS(5032), + [anon_sym_i16] = ACTIONS(5032), + [anon_sym_i32] = ACTIONS(5032), + [anon_sym_i64] = ACTIONS(5032), + [anon_sym_u8] = ACTIONS(5032), + [anon_sym_u16] = ACTIONS(5032), + [anon_sym_u32] = ACTIONS(5032), + [anon_sym_u64] = ACTIONS(5032), + [anon_sym_isize] = ACTIONS(5032), + [anon_sym_usize] = ACTIONS(5032), + [anon_sym_f32] = ACTIONS(5032), + [anon_sym_f64] = ACTIONS(5032), + [anon_sym_c_char] = ACTIONS(5032), + [anon_sym_c_schar] = ACTIONS(5032), + [anon_sym_c_uchar] = ACTIONS(5032), + [anon_sym_c_short] = ACTIONS(5032), + [anon_sym_c_ushort] = ACTIONS(5032), + [anon_sym_c_int] = ACTIONS(5032), + [anon_sym_c_uint] = ACTIONS(5032), + [anon_sym_c_long] = ACTIONS(5032), + [anon_sym_c_ulong] = ACTIONS(5032), + [anon_sym_c_longlong] = ACTIONS(5032), + [anon_sym_c_ulonglong] = ACTIONS(5032), + [anon_sym_c_float] = ACTIONS(5032), + [anon_sym_c_double] = ACTIONS(5032), + [anon_sym_c_longdouble] = ACTIONS(5032), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5030), + [anon_sym_xor_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5030), + [anon_sym_return] = ACTIONS(5032), + [anon_sym_yield] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_break] = ACTIONS(5032), + [anon_sym_continue] = ACTIONS(5032), + [anon_sym_defer] = ACTIONS(5032), + [anon_sym_errdefer] = ACTIONS(5032), + [anon_sym_if] = ACTIONS(5032), + [anon_sym_else] = ACTIONS(5032), + [anon_sym_while] = ACTIONS(5032), + [anon_sym_expand] = ACTIONS(5032), + [anon_sym_for] = ACTIONS(5032), + [anon_sym_match] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5030), + [anon_sym_orelse] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5032), + [anon_sym_xor] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5032), + [anon_sym_LT_LT_PIPE] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_catch] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_try] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_true] = ACTIONS(5032), + [anon_sym_false] = ACTIONS(5032), + [anon_sym_null] = ACTIONS(5032), + [anon_sym_unreachable] = ACTIONS(5032), + [anon_sym_undefined] = ACTIONS(5032), + [sym_sink] = ACTIONS(5032), + [sym_integer] = ACTIONS(5032), + [sym_float] = ACTIONS(5030), + [anon_sym_DQUOTE] = ACTIONS(5030), + [sym_multiline_string] = ACTIONS(5030), + [sym_character] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5030), + }, + [STATE(2320)] = { + [ts_builtin_sym_end] = ACTIONS(5034), + [sym_identifier] = ACTIONS(5036), + [anon_sym_import] = ACTIONS(5036), + [anon_sym_test] = ACTIONS(5036), + [anon_sym_hide] = ACTIONS(5036), + [anon_sym_func] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_struct] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_RPAREN] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_SEMI] = ACTIONS(5034), + [anon_sym_RBRACK] = ACTIONS(5034), + [anon_sym_void] = ACTIONS(5036), + [anon_sym_noreturn] = ACTIONS(5036), + [anon_sym_type] = ACTIONS(5036), + [anon_sym_anyopaque] = ACTIONS(5036), + [anon_sym_bool] = ACTIONS(5036), + [anon_sym_int] = ACTIONS(5036), + [anon_sym_uint] = ACTIONS(5036), + [anon_sym_float] = ACTIONS(5036), + [anon_sym_range] = ACTIONS(5036), + [anon_sym_i8] = ACTIONS(5036), + [anon_sym_i16] = ACTIONS(5036), + [anon_sym_i32] = ACTIONS(5036), + [anon_sym_i64] = ACTIONS(5036), + [anon_sym_u8] = ACTIONS(5036), + [anon_sym_u16] = ACTIONS(5036), + [anon_sym_u32] = ACTIONS(5036), + [anon_sym_u64] = ACTIONS(5036), + [anon_sym_isize] = ACTIONS(5036), + [anon_sym_usize] = ACTIONS(5036), + [anon_sym_f32] = ACTIONS(5036), + [anon_sym_f64] = ACTIONS(5036), + [anon_sym_c_char] = ACTIONS(5036), + [anon_sym_c_schar] = ACTIONS(5036), + [anon_sym_c_uchar] = ACTIONS(5036), + [anon_sym_c_short] = ACTIONS(5036), + [anon_sym_c_ushort] = ACTIONS(5036), + [anon_sym_c_int] = ACTIONS(5036), + [anon_sym_c_uint] = ACTIONS(5036), + [anon_sym_c_long] = ACTIONS(5036), + [anon_sym_c_ulong] = ACTIONS(5036), + [anon_sym_c_longlong] = ACTIONS(5036), + [anon_sym_c_ulonglong] = ACTIONS(5036), + [anon_sym_c_float] = ACTIONS(5036), + [anon_sym_c_double] = ACTIONS(5036), + [anon_sym_c_longdouble] = ACTIONS(5036), + [anon_sym_PLUS_EQ] = ACTIONS(5034), + [anon_sym_DASH_EQ] = ACTIONS(5034), + [anon_sym_STAR_EQ] = ACTIONS(5034), + [anon_sym_SLASH_EQ] = ACTIONS(5034), + [anon_sym_AMP_EQ] = ACTIONS(5034), + [anon_sym_PIPE_EQ] = ACTIONS(5034), + [anon_sym_xor_EQ] = ACTIONS(5034), + [anon_sym_LT_LT_EQ] = ACTIONS(5034), + [anon_sym_GT_GT_EQ] = ACTIONS(5034), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5034), + [anon_sym_return] = ACTIONS(5036), + [anon_sym_yield] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_break] = ACTIONS(5036), + [anon_sym_continue] = ACTIONS(5036), + [anon_sym_defer] = ACTIONS(5036), + [anon_sym_errdefer] = ACTIONS(5036), + [anon_sym_if] = ACTIONS(5036), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_while] = ACTIONS(5036), + [anon_sym_expand] = ACTIONS(5036), + [anon_sym_for] = ACTIONS(5036), + [anon_sym_match] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5034), + [anon_sym_orelse] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5036), + [anon_sym_xor] = ACTIONS(5036), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5036), + [anon_sym_LT_LT_PIPE] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_catch] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5034), + [anon_sym_try] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym_true] = ACTIONS(5036), + [anon_sym_false] = ACTIONS(5036), + [anon_sym_null] = ACTIONS(5036), + [anon_sym_unreachable] = ACTIONS(5036), + [anon_sym_undefined] = ACTIONS(5036), + [sym_sink] = ACTIONS(5036), + [sym_integer] = ACTIONS(5036), + [sym_float] = ACTIONS(5034), + [anon_sym_DQUOTE] = ACTIONS(5034), + [sym_multiline_string] = ACTIONS(5034), + [sym_character] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5034), + }, + [STATE(2321)] = { + [ts_builtin_sym_end] = ACTIONS(5038), + [sym_identifier] = ACTIONS(5040), + [anon_sym_import] = ACTIONS(5040), + [anon_sym_test] = ACTIONS(5040), + [anon_sym_hide] = ACTIONS(5040), + [anon_sym_func] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_struct] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_RPAREN] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_COMMA] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_SEMI] = ACTIONS(5038), + [anon_sym_RBRACK] = ACTIONS(5038), + [anon_sym_void] = ACTIONS(5040), + [anon_sym_noreturn] = ACTIONS(5040), + [anon_sym_type] = ACTIONS(5040), + [anon_sym_anyopaque] = ACTIONS(5040), + [anon_sym_bool] = ACTIONS(5040), + [anon_sym_int] = ACTIONS(5040), + [anon_sym_uint] = ACTIONS(5040), + [anon_sym_float] = ACTIONS(5040), + [anon_sym_range] = ACTIONS(5040), + [anon_sym_i8] = ACTIONS(5040), + [anon_sym_i16] = ACTIONS(5040), + [anon_sym_i32] = ACTIONS(5040), + [anon_sym_i64] = ACTIONS(5040), + [anon_sym_u8] = ACTIONS(5040), + [anon_sym_u16] = ACTIONS(5040), + [anon_sym_u32] = ACTIONS(5040), + [anon_sym_u64] = ACTIONS(5040), + [anon_sym_isize] = ACTIONS(5040), + [anon_sym_usize] = ACTIONS(5040), + [anon_sym_f32] = ACTIONS(5040), + [anon_sym_f64] = ACTIONS(5040), + [anon_sym_c_char] = ACTIONS(5040), + [anon_sym_c_schar] = ACTIONS(5040), + [anon_sym_c_uchar] = ACTIONS(5040), + [anon_sym_c_short] = ACTIONS(5040), + [anon_sym_c_ushort] = ACTIONS(5040), + [anon_sym_c_int] = ACTIONS(5040), + [anon_sym_c_uint] = ACTIONS(5040), + [anon_sym_c_long] = ACTIONS(5040), + [anon_sym_c_ulong] = ACTIONS(5040), + [anon_sym_c_longlong] = ACTIONS(5040), + [anon_sym_c_ulonglong] = ACTIONS(5040), + [anon_sym_c_float] = ACTIONS(5040), + [anon_sym_c_double] = ACTIONS(5040), + [anon_sym_c_longdouble] = ACTIONS(5040), + [anon_sym_PLUS_EQ] = ACTIONS(5038), + [anon_sym_DASH_EQ] = ACTIONS(5038), + [anon_sym_STAR_EQ] = ACTIONS(5038), + [anon_sym_SLASH_EQ] = ACTIONS(5038), + [anon_sym_AMP_EQ] = ACTIONS(5038), + [anon_sym_PIPE_EQ] = ACTIONS(5038), + [anon_sym_xor_EQ] = ACTIONS(5038), + [anon_sym_LT_LT_EQ] = ACTIONS(5038), + [anon_sym_GT_GT_EQ] = ACTIONS(5038), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5038), + [anon_sym_return] = ACTIONS(5040), + [anon_sym_yield] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_break] = ACTIONS(5040), + [anon_sym_continue] = ACTIONS(5040), + [anon_sym_defer] = ACTIONS(5040), + [anon_sym_errdefer] = ACTIONS(5040), + [anon_sym_if] = ACTIONS(5040), + [anon_sym_else] = ACTIONS(5040), + [anon_sym_while] = ACTIONS(5040), + [anon_sym_expand] = ACTIONS(5040), + [anon_sym_for] = ACTIONS(5040), + [anon_sym_match] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5038), + [anon_sym_orelse] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5040), + [anon_sym_and] = ACTIONS(5040), + [anon_sym_EQ_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5040), + [anon_sym_xor] = ACTIONS(5040), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5040), + [anon_sym_LT_LT_PIPE] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_catch] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5038), + [anon_sym_try] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym_true] = ACTIONS(5040), + [anon_sym_false] = ACTIONS(5040), + [anon_sym_null] = ACTIONS(5040), + [anon_sym_unreachable] = ACTIONS(5040), + [anon_sym_undefined] = ACTIONS(5040), + [sym_sink] = ACTIONS(5040), + [sym_integer] = ACTIONS(5040), + [sym_float] = ACTIONS(5038), + [anon_sym_DQUOTE] = ACTIONS(5038), + [sym_multiline_string] = ACTIONS(5038), + [sym_character] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5038), + }, + [STATE(2322)] = { + [ts_builtin_sym_end] = ACTIONS(5042), + [sym_identifier] = ACTIONS(5044), + [anon_sym_import] = ACTIONS(5044), + [anon_sym_test] = ACTIONS(5044), + [anon_sym_hide] = ACTIONS(5044), + [anon_sym_func] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_struct] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_RPAREN] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5042), + [anon_sym_COMMA] = ACTIONS(5042), + [anon_sym_RBRACE] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_SEMI] = ACTIONS(5042), + [anon_sym_RBRACK] = ACTIONS(5042), + [anon_sym_void] = ACTIONS(5044), + [anon_sym_noreturn] = ACTIONS(5044), + [anon_sym_type] = ACTIONS(5044), + [anon_sym_anyopaque] = ACTIONS(5044), + [anon_sym_bool] = ACTIONS(5044), + [anon_sym_int] = ACTIONS(5044), + [anon_sym_uint] = ACTIONS(5044), + [anon_sym_float] = ACTIONS(5044), + [anon_sym_range] = ACTIONS(5044), + [anon_sym_i8] = ACTIONS(5044), + [anon_sym_i16] = ACTIONS(5044), + [anon_sym_i32] = ACTIONS(5044), + [anon_sym_i64] = ACTIONS(5044), + [anon_sym_u8] = ACTIONS(5044), + [anon_sym_u16] = ACTIONS(5044), + [anon_sym_u32] = ACTIONS(5044), + [anon_sym_u64] = ACTIONS(5044), + [anon_sym_isize] = ACTIONS(5044), + [anon_sym_usize] = ACTIONS(5044), + [anon_sym_f32] = ACTIONS(5044), + [anon_sym_f64] = ACTIONS(5044), + [anon_sym_c_char] = ACTIONS(5044), + [anon_sym_c_schar] = ACTIONS(5044), + [anon_sym_c_uchar] = ACTIONS(5044), + [anon_sym_c_short] = ACTIONS(5044), + [anon_sym_c_ushort] = ACTIONS(5044), + [anon_sym_c_int] = ACTIONS(5044), + [anon_sym_c_uint] = ACTIONS(5044), + [anon_sym_c_long] = ACTIONS(5044), + [anon_sym_c_ulong] = ACTIONS(5044), + [anon_sym_c_longlong] = ACTIONS(5044), + [anon_sym_c_ulonglong] = ACTIONS(5044), + [anon_sym_c_float] = ACTIONS(5044), + [anon_sym_c_double] = ACTIONS(5044), + [anon_sym_c_longdouble] = ACTIONS(5044), + [anon_sym_PLUS_EQ] = ACTIONS(5042), + [anon_sym_DASH_EQ] = ACTIONS(5042), + [anon_sym_STAR_EQ] = ACTIONS(5042), + [anon_sym_SLASH_EQ] = ACTIONS(5042), + [anon_sym_AMP_EQ] = ACTIONS(5042), + [anon_sym_PIPE_EQ] = ACTIONS(5042), + [anon_sym_xor_EQ] = ACTIONS(5042), + [anon_sym_LT_LT_EQ] = ACTIONS(5042), + [anon_sym_GT_GT_EQ] = ACTIONS(5042), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5042), + [anon_sym_return] = ACTIONS(5044), + [anon_sym_yield] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_break] = ACTIONS(5044), + [anon_sym_continue] = ACTIONS(5044), + [anon_sym_defer] = ACTIONS(5044), + [anon_sym_errdefer] = ACTIONS(5044), + [anon_sym_if] = ACTIONS(5044), + [anon_sym_else] = ACTIONS(5044), + [anon_sym_while] = ACTIONS(5044), + [anon_sym_expand] = ACTIONS(5044), + [anon_sym_for] = ACTIONS(5044), + [anon_sym_match] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5042), + [anon_sym_orelse] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5042), + [anon_sym_BANG_EQ] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5044), + [anon_sym_xor] = ACTIONS(5044), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5044), + [anon_sym_LT_LT_PIPE] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_catch] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5042), + [anon_sym_try] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym_true] = ACTIONS(5044), + [anon_sym_false] = ACTIONS(5044), + [anon_sym_null] = ACTIONS(5044), + [anon_sym_unreachable] = ACTIONS(5044), + [anon_sym_undefined] = ACTIONS(5044), + [sym_sink] = ACTIONS(5044), + [sym_integer] = ACTIONS(5044), + [sym_float] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5042), + [sym_multiline_string] = ACTIONS(5042), + [sym_character] = ACTIONS(5042), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5042), + }, + [STATE(2323)] = { + [ts_builtin_sym_end] = ACTIONS(5046), + [sym_identifier] = ACTIONS(5048), + [anon_sym_import] = ACTIONS(5048), + [anon_sym_test] = ACTIONS(5048), + [anon_sym_hide] = ACTIONS(5048), + [anon_sym_func] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_void] = ACTIONS(5048), + [anon_sym_noreturn] = ACTIONS(5048), + [anon_sym_type] = ACTIONS(5048), + [anon_sym_anyopaque] = ACTIONS(5048), + [anon_sym_bool] = ACTIONS(5048), + [anon_sym_int] = ACTIONS(5048), + [anon_sym_uint] = ACTIONS(5048), + [anon_sym_float] = ACTIONS(5048), + [anon_sym_range] = ACTIONS(5048), + [anon_sym_i8] = ACTIONS(5048), + [anon_sym_i16] = ACTIONS(5048), + [anon_sym_i32] = ACTIONS(5048), + [anon_sym_i64] = ACTIONS(5048), + [anon_sym_u8] = ACTIONS(5048), + [anon_sym_u16] = ACTIONS(5048), + [anon_sym_u32] = ACTIONS(5048), + [anon_sym_u64] = ACTIONS(5048), + [anon_sym_isize] = ACTIONS(5048), + [anon_sym_usize] = ACTIONS(5048), + [anon_sym_f32] = ACTIONS(5048), + [anon_sym_f64] = ACTIONS(5048), + [anon_sym_c_char] = ACTIONS(5048), + [anon_sym_c_schar] = ACTIONS(5048), + [anon_sym_c_uchar] = ACTIONS(5048), + [anon_sym_c_short] = ACTIONS(5048), + [anon_sym_c_ushort] = ACTIONS(5048), + [anon_sym_c_int] = ACTIONS(5048), + [anon_sym_c_uint] = ACTIONS(5048), + [anon_sym_c_long] = ACTIONS(5048), + [anon_sym_c_ulong] = ACTIONS(5048), + [anon_sym_c_longlong] = ACTIONS(5048), + [anon_sym_c_ulonglong] = ACTIONS(5048), + [anon_sym_c_float] = ACTIONS(5048), + [anon_sym_c_double] = ACTIONS(5048), + [anon_sym_c_longdouble] = ACTIONS(5048), + [anon_sym_PLUS_EQ] = ACTIONS(5046), + [anon_sym_DASH_EQ] = ACTIONS(5046), + [anon_sym_STAR_EQ] = ACTIONS(5046), + [anon_sym_SLASH_EQ] = ACTIONS(5046), + [anon_sym_AMP_EQ] = ACTIONS(5046), + [anon_sym_PIPE_EQ] = ACTIONS(5046), + [anon_sym_xor_EQ] = ACTIONS(5046), + [anon_sym_LT_LT_EQ] = ACTIONS(5046), + [anon_sym_GT_GT_EQ] = ACTIONS(5046), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5046), + [anon_sym_return] = ACTIONS(5048), + [anon_sym_yield] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5046), + [anon_sym_break] = ACTIONS(5048), + [anon_sym_continue] = ACTIONS(5048), + [anon_sym_defer] = ACTIONS(5048), + [anon_sym_errdefer] = ACTIONS(5048), + [anon_sym_if] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5048), + [anon_sym_while] = ACTIONS(5048), + [anon_sym_expand] = ACTIONS(5048), + [anon_sym_for] = ACTIONS(5048), + [anon_sym_match] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5046), + [anon_sym_orelse] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym_LT_LT_PIPE] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_catch] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_try] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym_true] = ACTIONS(5048), + [anon_sym_false] = ACTIONS(5048), + [anon_sym_null] = ACTIONS(5048), + [anon_sym_unreachable] = ACTIONS(5048), + [anon_sym_undefined] = ACTIONS(5048), + [sym_sink] = ACTIONS(5048), + [sym_integer] = ACTIONS(5048), + [sym_float] = ACTIONS(5046), + [anon_sym_DQUOTE] = ACTIONS(5046), + [sym_multiline_string] = ACTIONS(5046), + [sym_character] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5046), + }, + [STATE(2324)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9084), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2325), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5050), + }, + [STATE(2325)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9096), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2326)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9097), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5052), + }, + [STATE(2327)] = { + [ts_builtin_sym_end] = ACTIONS(5054), + [sym_identifier] = ACTIONS(5056), + [anon_sym_import] = ACTIONS(5056), + [anon_sym_test] = ACTIONS(5056), + [anon_sym_hide] = ACTIONS(5056), + [anon_sym_func] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_struct] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5054), + [anon_sym_RPAREN] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5054), + [anon_sym_COMMA] = ACTIONS(5054), + [anon_sym_RBRACE] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5054), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(5054), + [anon_sym_RBRACK] = ACTIONS(5054), + [anon_sym_void] = ACTIONS(5056), + [anon_sym_noreturn] = ACTIONS(5056), + [anon_sym_type] = ACTIONS(5056), + [anon_sym_anyopaque] = ACTIONS(5056), + [anon_sym_bool] = ACTIONS(5056), + [anon_sym_int] = ACTIONS(5056), + [anon_sym_uint] = ACTIONS(5056), + [anon_sym_float] = ACTIONS(5056), + [anon_sym_range] = ACTIONS(5056), + [anon_sym_i8] = ACTIONS(5056), + [anon_sym_i16] = ACTIONS(5056), + [anon_sym_i32] = ACTIONS(5056), + [anon_sym_i64] = ACTIONS(5056), + [anon_sym_u8] = ACTIONS(5056), + [anon_sym_u16] = ACTIONS(5056), + [anon_sym_u32] = ACTIONS(5056), + [anon_sym_u64] = ACTIONS(5056), + [anon_sym_isize] = ACTIONS(5056), + [anon_sym_usize] = ACTIONS(5056), + [anon_sym_f32] = ACTIONS(5056), + [anon_sym_f64] = ACTIONS(5056), + [anon_sym_c_char] = ACTIONS(5056), + [anon_sym_c_schar] = ACTIONS(5056), + [anon_sym_c_uchar] = ACTIONS(5056), + [anon_sym_c_short] = ACTIONS(5056), + [anon_sym_c_ushort] = ACTIONS(5056), + [anon_sym_c_int] = ACTIONS(5056), + [anon_sym_c_uint] = ACTIONS(5056), + [anon_sym_c_long] = ACTIONS(5056), + [anon_sym_c_ulong] = ACTIONS(5056), + [anon_sym_c_longlong] = ACTIONS(5056), + [anon_sym_c_ulonglong] = ACTIONS(5056), + [anon_sym_c_float] = ACTIONS(5056), + [anon_sym_c_double] = ACTIONS(5056), + [anon_sym_c_longdouble] = ACTIONS(5056), + [anon_sym_PLUS_EQ] = ACTIONS(5054), + [anon_sym_DASH_EQ] = ACTIONS(5054), + [anon_sym_STAR_EQ] = ACTIONS(5054), + [anon_sym_SLASH_EQ] = ACTIONS(5054), + [anon_sym_AMP_EQ] = ACTIONS(5054), + [anon_sym_PIPE_EQ] = ACTIONS(5054), + [anon_sym_xor_EQ] = ACTIONS(5054), + [anon_sym_LT_LT_EQ] = ACTIONS(5054), + [anon_sym_GT_GT_EQ] = ACTIONS(5054), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5054), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_yield] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5054), + [anon_sym_break] = ACTIONS(5056), + [anon_sym_continue] = ACTIONS(5056), + [anon_sym_defer] = ACTIONS(5056), + [anon_sym_errdefer] = ACTIONS(5056), + [anon_sym_if] = ACTIONS(5056), + [anon_sym_else] = ACTIONS(5056), + [anon_sym_while] = ACTIONS(5056), + [anon_sym_expand] = ACTIONS(5056), + [anon_sym_for] = ACTIONS(5056), + [anon_sym_match] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5054), + [anon_sym_orelse] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_LT] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_xor] = ACTIONS(5056), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5056), + [anon_sym_LT_LT_PIPE] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_catch] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5054), + [anon_sym_try] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym_true] = ACTIONS(5056), + [anon_sym_false] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_unreachable] = ACTIONS(5056), + [anon_sym_undefined] = ACTIONS(5056), + [sym_sink] = ACTIONS(5056), + [sym_integer] = ACTIONS(5056), + [sym_float] = ACTIONS(5054), + [anon_sym_DQUOTE] = ACTIONS(5054), + [sym_multiline_string] = ACTIONS(5054), + [sym_character] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5054), + }, + [STATE(2328)] = { + [ts_builtin_sym_end] = ACTIONS(5058), + [sym_identifier] = ACTIONS(5060), + [anon_sym_import] = ACTIONS(5060), + [anon_sym_test] = ACTIONS(5060), + [anon_sym_hide] = ACTIONS(5060), + [anon_sym_func] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_struct] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_RPAREN] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5058), + [anon_sym_COMMA] = ACTIONS(5058), + [anon_sym_RBRACE] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5058), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_SEMI] = ACTIONS(5058), + [anon_sym_RBRACK] = ACTIONS(5058), + [anon_sym_void] = ACTIONS(5060), + [anon_sym_noreturn] = ACTIONS(5060), + [anon_sym_type] = ACTIONS(5060), + [anon_sym_anyopaque] = ACTIONS(5060), + [anon_sym_bool] = ACTIONS(5060), + [anon_sym_int] = ACTIONS(5060), + [anon_sym_uint] = ACTIONS(5060), + [anon_sym_float] = ACTIONS(5060), + [anon_sym_range] = ACTIONS(5060), + [anon_sym_i8] = ACTIONS(5060), + [anon_sym_i16] = ACTIONS(5060), + [anon_sym_i32] = ACTIONS(5060), + [anon_sym_i64] = ACTIONS(5060), + [anon_sym_u8] = ACTIONS(5060), + [anon_sym_u16] = ACTIONS(5060), + [anon_sym_u32] = ACTIONS(5060), + [anon_sym_u64] = ACTIONS(5060), + [anon_sym_isize] = ACTIONS(5060), + [anon_sym_usize] = ACTIONS(5060), + [anon_sym_f32] = ACTIONS(5060), + [anon_sym_f64] = ACTIONS(5060), + [anon_sym_c_char] = ACTIONS(5060), + [anon_sym_c_schar] = ACTIONS(5060), + [anon_sym_c_uchar] = ACTIONS(5060), + [anon_sym_c_short] = ACTIONS(5060), + [anon_sym_c_ushort] = ACTIONS(5060), + [anon_sym_c_int] = ACTIONS(5060), + [anon_sym_c_uint] = ACTIONS(5060), + [anon_sym_c_long] = ACTIONS(5060), + [anon_sym_c_ulong] = ACTIONS(5060), + [anon_sym_c_longlong] = ACTIONS(5060), + [anon_sym_c_ulonglong] = ACTIONS(5060), + [anon_sym_c_float] = ACTIONS(5060), + [anon_sym_c_double] = ACTIONS(5060), + [anon_sym_c_longdouble] = ACTIONS(5060), + [anon_sym_PLUS_EQ] = ACTIONS(5058), + [anon_sym_DASH_EQ] = ACTIONS(5058), + [anon_sym_STAR_EQ] = ACTIONS(5058), + [anon_sym_SLASH_EQ] = ACTIONS(5058), + [anon_sym_AMP_EQ] = ACTIONS(5058), + [anon_sym_PIPE_EQ] = ACTIONS(5058), + [anon_sym_xor_EQ] = ACTIONS(5058), + [anon_sym_LT_LT_EQ] = ACTIONS(5058), + [anon_sym_GT_GT_EQ] = ACTIONS(5058), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5058), + [anon_sym_return] = ACTIONS(5060), + [anon_sym_yield] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5058), + [anon_sym_break] = ACTIONS(5060), + [anon_sym_continue] = ACTIONS(5060), + [anon_sym_defer] = ACTIONS(5060), + [anon_sym_errdefer] = ACTIONS(5060), + [anon_sym_if] = ACTIONS(5060), + [anon_sym_else] = ACTIONS(5060), + [anon_sym_while] = ACTIONS(5060), + [anon_sym_expand] = ACTIONS(5060), + [anon_sym_for] = ACTIONS(5060), + [anon_sym_match] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5058), + [anon_sym_orelse] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5058), + [anon_sym_BANG_EQ] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym_LT_LT_PIPE] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_catch] = ACTIONS(5060), + [anon_sym_TILDE] = ACTIONS(5058), + [anon_sym_try] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym_true] = ACTIONS(5060), + [anon_sym_false] = ACTIONS(5060), + [anon_sym_null] = ACTIONS(5060), + [anon_sym_unreachable] = ACTIONS(5060), + [anon_sym_undefined] = ACTIONS(5060), + [sym_sink] = ACTIONS(5060), + [sym_integer] = ACTIONS(5060), + [sym_float] = ACTIONS(5058), + [anon_sym_DQUOTE] = ACTIONS(5058), + [sym_multiline_string] = ACTIONS(5058), + [sym_character] = ACTIONS(5058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5058), + }, + [STATE(2329)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9116), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2330)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9117), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2335), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5062), + }, + [STATE(2331)] = { + [ts_builtin_sym_end] = ACTIONS(5064), + [sym_identifier] = ACTIONS(5066), + [anon_sym_import] = ACTIONS(5066), + [anon_sym_test] = ACTIONS(5066), + [anon_sym_hide] = ACTIONS(5066), + [anon_sym_func] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5066), + [anon_sym_struct] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_void] = ACTIONS(5066), + [anon_sym_noreturn] = ACTIONS(5066), + [anon_sym_type] = ACTIONS(5066), + [anon_sym_anyopaque] = ACTIONS(5066), + [anon_sym_bool] = ACTIONS(5066), + [anon_sym_int] = ACTIONS(5066), + [anon_sym_uint] = ACTIONS(5066), + [anon_sym_float] = ACTIONS(5066), + [anon_sym_range] = ACTIONS(5066), + [anon_sym_i8] = ACTIONS(5066), + [anon_sym_i16] = ACTIONS(5066), + [anon_sym_i32] = ACTIONS(5066), + [anon_sym_i64] = ACTIONS(5066), + [anon_sym_u8] = ACTIONS(5066), + [anon_sym_u16] = ACTIONS(5066), + [anon_sym_u32] = ACTIONS(5066), + [anon_sym_u64] = ACTIONS(5066), + [anon_sym_isize] = ACTIONS(5066), + [anon_sym_usize] = ACTIONS(5066), + [anon_sym_f32] = ACTIONS(5066), + [anon_sym_f64] = ACTIONS(5066), + [anon_sym_c_char] = ACTIONS(5066), + [anon_sym_c_schar] = ACTIONS(5066), + [anon_sym_c_uchar] = ACTIONS(5066), + [anon_sym_c_short] = ACTIONS(5066), + [anon_sym_c_ushort] = ACTIONS(5066), + [anon_sym_c_int] = ACTIONS(5066), + [anon_sym_c_uint] = ACTIONS(5066), + [anon_sym_c_long] = ACTIONS(5066), + [anon_sym_c_ulong] = ACTIONS(5066), + [anon_sym_c_longlong] = ACTIONS(5066), + [anon_sym_c_ulonglong] = ACTIONS(5066), + [anon_sym_c_float] = ACTIONS(5066), + [anon_sym_c_double] = ACTIONS(5066), + [anon_sym_c_longdouble] = ACTIONS(5066), + [anon_sym_PLUS_EQ] = ACTIONS(5064), + [anon_sym_DASH_EQ] = ACTIONS(5064), + [anon_sym_STAR_EQ] = ACTIONS(5064), + [anon_sym_SLASH_EQ] = ACTIONS(5064), + [anon_sym_AMP_EQ] = ACTIONS(5064), + [anon_sym_PIPE_EQ] = ACTIONS(5064), + [anon_sym_xor_EQ] = ACTIONS(5064), + [anon_sym_LT_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5064), + [anon_sym_return] = ACTIONS(5066), + [anon_sym_yield] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_break] = ACTIONS(5066), + [anon_sym_continue] = ACTIONS(5066), + [anon_sym_defer] = ACTIONS(5066), + [anon_sym_errdefer] = ACTIONS(5066), + [anon_sym_if] = ACTIONS(5066), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_while] = ACTIONS(5066), + [anon_sym_expand] = ACTIONS(5066), + [anon_sym_for] = ACTIONS(5066), + [anon_sym_match] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5064), + [anon_sym_orelse] = ACTIONS(5066), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_and] = ACTIONS(5066), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_xor] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5066), + [anon_sym_GT_GT] = ACTIONS(5066), + [anon_sym_LT_LT_PIPE] = ACTIONS(5066), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_catch] = ACTIONS(5066), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_try] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_true] = ACTIONS(5066), + [anon_sym_false] = ACTIONS(5066), + [anon_sym_null] = ACTIONS(5066), + [anon_sym_unreachable] = ACTIONS(5066), + [anon_sym_undefined] = ACTIONS(5066), + [sym_sink] = ACTIONS(5066), + [sym_integer] = ACTIONS(5066), + [sym_float] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [sym_multiline_string] = ACTIONS(5064), + [sym_character] = ACTIONS(5064), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5064), + }, + [STATE(2332)] = { + [ts_builtin_sym_end] = ACTIONS(5068), + [sym_identifier] = ACTIONS(5070), + [anon_sym_import] = ACTIONS(5070), + [anon_sym_test] = ACTIONS(5070), + [anon_sym_hide] = ACTIONS(5070), + [anon_sym_func] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_struct] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_DOLLAR] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_QMARK] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_void] = ACTIONS(5070), + [anon_sym_noreturn] = ACTIONS(5070), + [anon_sym_type] = ACTIONS(5070), + [anon_sym_anyopaque] = ACTIONS(5070), + [anon_sym_bool] = ACTIONS(5070), + [anon_sym_int] = ACTIONS(5070), + [anon_sym_uint] = ACTIONS(5070), + [anon_sym_float] = ACTIONS(5070), + [anon_sym_range] = ACTIONS(5070), + [anon_sym_i8] = ACTIONS(5070), + [anon_sym_i16] = ACTIONS(5070), + [anon_sym_i32] = ACTIONS(5070), + [anon_sym_i64] = ACTIONS(5070), + [anon_sym_u8] = ACTIONS(5070), + [anon_sym_u16] = ACTIONS(5070), + [anon_sym_u32] = ACTIONS(5070), + [anon_sym_u64] = ACTIONS(5070), + [anon_sym_isize] = ACTIONS(5070), + [anon_sym_usize] = ACTIONS(5070), + [anon_sym_f32] = ACTIONS(5070), + [anon_sym_f64] = ACTIONS(5070), + [anon_sym_c_char] = ACTIONS(5070), + [anon_sym_c_schar] = ACTIONS(5070), + [anon_sym_c_uchar] = ACTIONS(5070), + [anon_sym_c_short] = ACTIONS(5070), + [anon_sym_c_ushort] = ACTIONS(5070), + [anon_sym_c_int] = ACTIONS(5070), + [anon_sym_c_uint] = ACTIONS(5070), + [anon_sym_c_long] = ACTIONS(5070), + [anon_sym_c_ulong] = ACTIONS(5070), + [anon_sym_c_longlong] = ACTIONS(5070), + [anon_sym_c_ulonglong] = ACTIONS(5070), + [anon_sym_c_float] = ACTIONS(5070), + [anon_sym_c_double] = ACTIONS(5070), + [anon_sym_c_longdouble] = ACTIONS(5070), + [anon_sym_PLUS_EQ] = ACTIONS(5068), + [anon_sym_DASH_EQ] = ACTIONS(5068), + [anon_sym_STAR_EQ] = ACTIONS(5068), + [anon_sym_SLASH_EQ] = ACTIONS(5068), + [anon_sym_AMP_EQ] = ACTIONS(5068), + [anon_sym_PIPE_EQ] = ACTIONS(5068), + [anon_sym_xor_EQ] = ACTIONS(5068), + [anon_sym_LT_LT_EQ] = ACTIONS(5068), + [anon_sym_GT_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5068), + [anon_sym_return] = ACTIONS(5070), + [anon_sym_yield] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_break] = ACTIONS(5070), + [anon_sym_continue] = ACTIONS(5070), + [anon_sym_defer] = ACTIONS(5070), + [anon_sym_errdefer] = ACTIONS(5070), + [anon_sym_if] = ACTIONS(5070), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_while] = ACTIONS(5070), + [anon_sym_expand] = ACTIONS(5070), + [anon_sym_for] = ACTIONS(5070), + [anon_sym_match] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5068), + [anon_sym_orelse] = ACTIONS(5070), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5070), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_xor] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5070), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym_LT_LT_PIPE] = ACTIONS(5070), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_catch] = ACTIONS(5070), + [anon_sym_TILDE] = ACTIONS(5068), + [anon_sym_try] = ACTIONS(5070), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_true] = ACTIONS(5070), + [anon_sym_false] = ACTIONS(5070), + [anon_sym_null] = ACTIONS(5070), + [anon_sym_unreachable] = ACTIONS(5070), + [anon_sym_undefined] = ACTIONS(5070), + [sym_sink] = ACTIONS(5070), + [sym_integer] = ACTIONS(5070), + [sym_float] = ACTIONS(5068), + [anon_sym_DQUOTE] = ACTIONS(5068), + [sym_multiline_string] = ACTIONS(5068), + [sym_character] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5068), + }, + [STATE(2333)] = { + [ts_builtin_sym_end] = ACTIONS(5072), + [sym_identifier] = ACTIONS(5074), + [anon_sym_import] = ACTIONS(5074), + [anon_sym_test] = ACTIONS(5074), + [anon_sym_hide] = ACTIONS(5074), + [anon_sym_func] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5074), + [anon_sym_struct] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_DOLLAR] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_QMARK] = ACTIONS(5072), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_void] = ACTIONS(5074), + [anon_sym_noreturn] = ACTIONS(5074), + [anon_sym_type] = ACTIONS(5074), + [anon_sym_anyopaque] = ACTIONS(5074), + [anon_sym_bool] = ACTIONS(5074), + [anon_sym_int] = ACTIONS(5074), + [anon_sym_uint] = ACTIONS(5074), + [anon_sym_float] = ACTIONS(5074), + [anon_sym_range] = ACTIONS(5074), + [anon_sym_i8] = ACTIONS(5074), + [anon_sym_i16] = ACTIONS(5074), + [anon_sym_i32] = ACTIONS(5074), + [anon_sym_i64] = ACTIONS(5074), + [anon_sym_u8] = ACTIONS(5074), + [anon_sym_u16] = ACTIONS(5074), + [anon_sym_u32] = ACTIONS(5074), + [anon_sym_u64] = ACTIONS(5074), + [anon_sym_isize] = ACTIONS(5074), + [anon_sym_usize] = ACTIONS(5074), + [anon_sym_f32] = ACTIONS(5074), + [anon_sym_f64] = ACTIONS(5074), + [anon_sym_c_char] = ACTIONS(5074), + [anon_sym_c_schar] = ACTIONS(5074), + [anon_sym_c_uchar] = ACTIONS(5074), + [anon_sym_c_short] = ACTIONS(5074), + [anon_sym_c_ushort] = ACTIONS(5074), + [anon_sym_c_int] = ACTIONS(5074), + [anon_sym_c_uint] = ACTIONS(5074), + [anon_sym_c_long] = ACTIONS(5074), + [anon_sym_c_ulong] = ACTIONS(5074), + [anon_sym_c_longlong] = ACTIONS(5074), + [anon_sym_c_ulonglong] = ACTIONS(5074), + [anon_sym_c_float] = ACTIONS(5074), + [anon_sym_c_double] = ACTIONS(5074), + [anon_sym_c_longdouble] = ACTIONS(5074), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_AMP_EQ] = ACTIONS(5072), + [anon_sym_PIPE_EQ] = ACTIONS(5072), + [anon_sym_xor_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5072), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_yield] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5072), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_defer] = ACTIONS(5074), + [anon_sym_errdefer] = ACTIONS(5074), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_while] = ACTIONS(5074), + [anon_sym_expand] = ACTIONS(5074), + [anon_sym_for] = ACTIONS(5074), + [anon_sym_match] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5072), + [anon_sym_orelse] = ACTIONS(5074), + [anon_sym_or] = ACTIONS(5074), + [anon_sym_and] = ACTIONS(5074), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_xor] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5074), + [anon_sym_GT_GT] = ACTIONS(5074), + [anon_sym_LT_LT_PIPE] = ACTIONS(5074), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_catch] = ACTIONS(5074), + [anon_sym_TILDE] = ACTIONS(5072), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5072), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_null] = ACTIONS(5074), + [anon_sym_unreachable] = ACTIONS(5074), + [anon_sym_undefined] = ACTIONS(5074), + [sym_sink] = ACTIONS(5074), + [sym_integer] = ACTIONS(5074), + [sym_float] = ACTIONS(5072), + [anon_sym_DQUOTE] = ACTIONS(5072), + [sym_multiline_string] = ACTIONS(5072), + [sym_character] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5072), + }, + [STATE(2334)] = { + [ts_builtin_sym_end] = ACTIONS(5076), + [sym_identifier] = ACTIONS(5078), + [anon_sym_import] = ACTIONS(5078), + [anon_sym_test] = ACTIONS(5078), + [anon_sym_hide] = ACTIONS(5078), + [anon_sym_func] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_struct] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_DOLLAR] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5076), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_void] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym_type] = ACTIONS(5078), + [anon_sym_anyopaque] = ACTIONS(5078), + [anon_sym_bool] = ACTIONS(5078), + [anon_sym_int] = ACTIONS(5078), + [anon_sym_uint] = ACTIONS(5078), + [anon_sym_float] = ACTIONS(5078), + [anon_sym_range] = ACTIONS(5078), + [anon_sym_i8] = ACTIONS(5078), + [anon_sym_i16] = ACTIONS(5078), + [anon_sym_i32] = ACTIONS(5078), + [anon_sym_i64] = ACTIONS(5078), + [anon_sym_u8] = ACTIONS(5078), + [anon_sym_u16] = ACTIONS(5078), + [anon_sym_u32] = ACTIONS(5078), + [anon_sym_u64] = ACTIONS(5078), + [anon_sym_isize] = ACTIONS(5078), + [anon_sym_usize] = ACTIONS(5078), + [anon_sym_f32] = ACTIONS(5078), + [anon_sym_f64] = ACTIONS(5078), + [anon_sym_c_char] = ACTIONS(5078), + [anon_sym_c_schar] = ACTIONS(5078), + [anon_sym_c_uchar] = ACTIONS(5078), + [anon_sym_c_short] = ACTIONS(5078), + [anon_sym_c_ushort] = ACTIONS(5078), + [anon_sym_c_int] = ACTIONS(5078), + [anon_sym_c_uint] = ACTIONS(5078), + [anon_sym_c_long] = ACTIONS(5078), + [anon_sym_c_ulong] = ACTIONS(5078), + [anon_sym_c_longlong] = ACTIONS(5078), + [anon_sym_c_ulonglong] = ACTIONS(5078), + [anon_sym_c_float] = ACTIONS(5078), + [anon_sym_c_double] = ACTIONS(5078), + [anon_sym_c_longdouble] = ACTIONS(5078), + [anon_sym_PLUS_EQ] = ACTIONS(5076), + [anon_sym_DASH_EQ] = ACTIONS(5076), + [anon_sym_STAR_EQ] = ACTIONS(5076), + [anon_sym_SLASH_EQ] = ACTIONS(5076), + [anon_sym_AMP_EQ] = ACTIONS(5076), + [anon_sym_PIPE_EQ] = ACTIONS(5076), + [anon_sym_xor_EQ] = ACTIONS(5076), + [anon_sym_LT_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_GT_EQ] = ACTIONS(5076), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5076), + [anon_sym_return] = ACTIONS(5078), + [anon_sym_yield] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5076), + [anon_sym_break] = ACTIONS(5078), + [anon_sym_continue] = ACTIONS(5078), + [anon_sym_defer] = ACTIONS(5078), + [anon_sym_errdefer] = ACTIONS(5078), + [anon_sym_if] = ACTIONS(5078), + [anon_sym_else] = ACTIONS(5078), + [anon_sym_while] = ACTIONS(5078), + [anon_sym_expand] = ACTIONS(5078), + [anon_sym_for] = ACTIONS(5078), + [anon_sym_match] = ACTIONS(5078), + [anon_sym_DOT_DOT] = ACTIONS(5078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5076), + [anon_sym_orelse] = ACTIONS(5078), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym_LT_LT_PIPE] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_catch] = ACTIONS(5078), + [anon_sym_TILDE] = ACTIONS(5076), + [anon_sym_try] = ACTIONS(5078), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5078), + [anon_sym_false] = ACTIONS(5078), + [anon_sym_null] = ACTIONS(5078), + [anon_sym_unreachable] = ACTIONS(5078), + [anon_sym_undefined] = ACTIONS(5078), + [sym_sink] = ACTIONS(5078), + [sym_integer] = ACTIONS(5078), + [sym_float] = ACTIONS(5076), + [anon_sym_DQUOTE] = ACTIONS(5076), + [sym_multiline_string] = ACTIONS(5076), + [sym_character] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5076), + }, + [STATE(2335)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9129), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(8899), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(717), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(723), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(729), + [anon_sym_errdefer] = ACTIONS(731), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(743), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2336)] = { + [ts_builtin_sym_end] = ACTIONS(5080), + [sym_identifier] = ACTIONS(5082), + [anon_sym_import] = ACTIONS(5082), + [anon_sym_test] = ACTIONS(5082), + [anon_sym_hide] = ACTIONS(5082), + [anon_sym_func] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_EQ] = ACTIONS(5082), + [anon_sym_struct] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_DOLLAR] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_SEMI] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_void] = ACTIONS(5082), + [anon_sym_noreturn] = ACTIONS(5082), + [anon_sym_type] = ACTIONS(5082), + [anon_sym_anyopaque] = ACTIONS(5082), + [anon_sym_bool] = ACTIONS(5082), + [anon_sym_int] = ACTIONS(5082), + [anon_sym_uint] = ACTIONS(5082), + [anon_sym_float] = ACTIONS(5082), + [anon_sym_range] = ACTIONS(5082), + [anon_sym_i8] = ACTIONS(5082), + [anon_sym_i16] = ACTIONS(5082), + [anon_sym_i32] = ACTIONS(5082), + [anon_sym_i64] = ACTIONS(5082), + [anon_sym_u8] = ACTIONS(5082), + [anon_sym_u16] = ACTIONS(5082), + [anon_sym_u32] = ACTIONS(5082), + [anon_sym_u64] = ACTIONS(5082), + [anon_sym_isize] = ACTIONS(5082), + [anon_sym_usize] = ACTIONS(5082), + [anon_sym_f32] = ACTIONS(5082), + [anon_sym_f64] = ACTIONS(5082), + [anon_sym_c_char] = ACTIONS(5082), + [anon_sym_c_schar] = ACTIONS(5082), + [anon_sym_c_uchar] = ACTIONS(5082), + [anon_sym_c_short] = ACTIONS(5082), + [anon_sym_c_ushort] = ACTIONS(5082), + [anon_sym_c_int] = ACTIONS(5082), + [anon_sym_c_uint] = ACTIONS(5082), + [anon_sym_c_long] = ACTIONS(5082), + [anon_sym_c_ulong] = ACTIONS(5082), + [anon_sym_c_longlong] = ACTIONS(5082), + [anon_sym_c_ulonglong] = ACTIONS(5082), + [anon_sym_c_float] = ACTIONS(5082), + [anon_sym_c_double] = ACTIONS(5082), + [anon_sym_c_longdouble] = ACTIONS(5082), + [anon_sym_PLUS_EQ] = ACTIONS(5080), + [anon_sym_DASH_EQ] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5080), + [anon_sym_SLASH_EQ] = ACTIONS(5080), + [anon_sym_AMP_EQ] = ACTIONS(5080), + [anon_sym_PIPE_EQ] = ACTIONS(5080), + [anon_sym_xor_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_EQ] = ACTIONS(5080), + [anon_sym_GT_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5080), + [anon_sym_return] = ACTIONS(5082), + [anon_sym_yield] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5080), + [anon_sym_break] = ACTIONS(5082), + [anon_sym_continue] = ACTIONS(5082), + [anon_sym_defer] = ACTIONS(5082), + [anon_sym_errdefer] = ACTIONS(5082), + [anon_sym_if] = ACTIONS(5082), + [anon_sym_else] = ACTIONS(5082), + [anon_sym_while] = ACTIONS(5082), + [anon_sym_expand] = ACTIONS(5082), + [anon_sym_for] = ACTIONS(5082), + [anon_sym_match] = ACTIONS(5082), + [anon_sym_DOT_DOT] = ACTIONS(5082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5080), + [anon_sym_orelse] = ACTIONS(5082), + [anon_sym_or] = ACTIONS(5082), + [anon_sym_and] = ACTIONS(5082), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_xor] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_LT_LT_PIPE] = ACTIONS(5082), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_catch] = ACTIONS(5082), + [anon_sym_TILDE] = ACTIONS(5080), + [anon_sym_try] = ACTIONS(5082), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_true] = ACTIONS(5082), + [anon_sym_false] = ACTIONS(5082), + [anon_sym_null] = ACTIONS(5082), + [anon_sym_unreachable] = ACTIONS(5082), + [anon_sym_undefined] = ACTIONS(5082), + [sym_sink] = ACTIONS(5082), + [sym_integer] = ACTIONS(5082), + [sym_float] = ACTIONS(5080), + [anon_sym_DQUOTE] = ACTIONS(5080), + [sym_multiline_string] = ACTIONS(5080), + [sym_character] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5080), + }, + [STATE(2337)] = { + [ts_builtin_sym_end] = ACTIONS(5084), + [sym_identifier] = ACTIONS(5086), + [anon_sym_import] = ACTIONS(5086), + [anon_sym_test] = ACTIONS(5086), + [anon_sym_hide] = ACTIONS(5086), + [anon_sym_func] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_EQ] = ACTIONS(5086), + [anon_sym_struct] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_DOLLAR] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(5084), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_void] = ACTIONS(5086), + [anon_sym_noreturn] = ACTIONS(5086), + [anon_sym_type] = ACTIONS(5086), + [anon_sym_anyopaque] = ACTIONS(5086), + [anon_sym_bool] = ACTIONS(5086), + [anon_sym_int] = ACTIONS(5086), + [anon_sym_uint] = ACTIONS(5086), + [anon_sym_float] = ACTIONS(5086), + [anon_sym_range] = ACTIONS(5086), + [anon_sym_i8] = ACTIONS(5086), + [anon_sym_i16] = ACTIONS(5086), + [anon_sym_i32] = ACTIONS(5086), + [anon_sym_i64] = ACTIONS(5086), + [anon_sym_u8] = ACTIONS(5086), + [anon_sym_u16] = ACTIONS(5086), + [anon_sym_u32] = ACTIONS(5086), + [anon_sym_u64] = ACTIONS(5086), + [anon_sym_isize] = ACTIONS(5086), + [anon_sym_usize] = ACTIONS(5086), + [anon_sym_f32] = ACTIONS(5086), + [anon_sym_f64] = ACTIONS(5086), + [anon_sym_c_char] = ACTIONS(5086), + [anon_sym_c_schar] = ACTIONS(5086), + [anon_sym_c_uchar] = ACTIONS(5086), + [anon_sym_c_short] = ACTIONS(5086), + [anon_sym_c_ushort] = ACTIONS(5086), + [anon_sym_c_int] = ACTIONS(5086), + [anon_sym_c_uint] = ACTIONS(5086), + [anon_sym_c_long] = ACTIONS(5086), + [anon_sym_c_ulong] = ACTIONS(5086), + [anon_sym_c_longlong] = ACTIONS(5086), + [anon_sym_c_ulonglong] = ACTIONS(5086), + [anon_sym_c_float] = ACTIONS(5086), + [anon_sym_c_double] = ACTIONS(5086), + [anon_sym_c_longdouble] = ACTIONS(5086), + [anon_sym_PLUS_EQ] = ACTIONS(5084), + [anon_sym_DASH_EQ] = ACTIONS(5084), + [anon_sym_STAR_EQ] = ACTIONS(5084), + [anon_sym_SLASH_EQ] = ACTIONS(5084), + [anon_sym_AMP_EQ] = ACTIONS(5084), + [anon_sym_PIPE_EQ] = ACTIONS(5084), + [anon_sym_xor_EQ] = ACTIONS(5084), + [anon_sym_LT_LT_EQ] = ACTIONS(5084), + [anon_sym_GT_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5084), + [anon_sym_return] = ACTIONS(5086), + [anon_sym_yield] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5084), + [anon_sym_break] = ACTIONS(5086), + [anon_sym_continue] = ACTIONS(5086), + [anon_sym_defer] = ACTIONS(5086), + [anon_sym_errdefer] = ACTIONS(5086), + [anon_sym_if] = ACTIONS(5086), + [anon_sym_else] = ACTIONS(5086), + [anon_sym_while] = ACTIONS(5086), + [anon_sym_expand] = ACTIONS(5086), + [anon_sym_for] = ACTIONS(5086), + [anon_sym_match] = ACTIONS(5086), + [anon_sym_DOT_DOT] = ACTIONS(5086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5084), + [anon_sym_orelse] = ACTIONS(5086), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_and] = ACTIONS(5086), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_xor] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5086), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_LT_LT_PIPE] = ACTIONS(5086), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_catch] = ACTIONS(5086), + [anon_sym_TILDE] = ACTIONS(5084), + [anon_sym_try] = ACTIONS(5086), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_true] = ACTIONS(5086), + [anon_sym_false] = ACTIONS(5086), + [anon_sym_null] = ACTIONS(5086), + [anon_sym_unreachable] = ACTIONS(5086), + [anon_sym_undefined] = ACTIONS(5086), + [sym_sink] = ACTIONS(5086), + [sym_integer] = ACTIONS(5086), + [sym_float] = ACTIONS(5084), + [anon_sym_DQUOTE] = ACTIONS(5084), + [sym_multiline_string] = ACTIONS(5084), + [sym_character] = ACTIONS(5084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5084), + }, + [STATE(2338)] = { + [ts_builtin_sym_end] = ACTIONS(5088), + [sym_identifier] = ACTIONS(5090), + [anon_sym_import] = ACTIONS(5090), + [anon_sym_test] = ACTIONS(5090), + [anon_sym_hide] = ACTIONS(5090), + [anon_sym_func] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_struct] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_SEMI] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5088), + [anon_sym_void] = ACTIONS(5090), + [anon_sym_noreturn] = ACTIONS(5090), + [anon_sym_type] = ACTIONS(5090), + [anon_sym_anyopaque] = ACTIONS(5090), + [anon_sym_bool] = ACTIONS(5090), + [anon_sym_int] = ACTIONS(5090), + [anon_sym_uint] = ACTIONS(5090), + [anon_sym_float] = ACTIONS(5090), + [anon_sym_range] = ACTIONS(5090), + [anon_sym_i8] = ACTIONS(5090), + [anon_sym_i16] = ACTIONS(5090), + [anon_sym_i32] = ACTIONS(5090), + [anon_sym_i64] = ACTIONS(5090), + [anon_sym_u8] = ACTIONS(5090), + [anon_sym_u16] = ACTIONS(5090), + [anon_sym_u32] = ACTIONS(5090), + [anon_sym_u64] = ACTIONS(5090), + [anon_sym_isize] = ACTIONS(5090), + [anon_sym_usize] = ACTIONS(5090), + [anon_sym_f32] = ACTIONS(5090), + [anon_sym_f64] = ACTIONS(5090), + [anon_sym_c_char] = ACTIONS(5090), + [anon_sym_c_schar] = ACTIONS(5090), + [anon_sym_c_uchar] = ACTIONS(5090), + [anon_sym_c_short] = ACTIONS(5090), + [anon_sym_c_ushort] = ACTIONS(5090), + [anon_sym_c_int] = ACTIONS(5090), + [anon_sym_c_uint] = ACTIONS(5090), + [anon_sym_c_long] = ACTIONS(5090), + [anon_sym_c_ulong] = ACTIONS(5090), + [anon_sym_c_longlong] = ACTIONS(5090), + [anon_sym_c_ulonglong] = ACTIONS(5090), + [anon_sym_c_float] = ACTIONS(5090), + [anon_sym_c_double] = ACTIONS(5090), + [anon_sym_c_longdouble] = ACTIONS(5090), + [anon_sym_PLUS_EQ] = ACTIONS(5088), + [anon_sym_DASH_EQ] = ACTIONS(5088), + [anon_sym_STAR_EQ] = ACTIONS(5088), + [anon_sym_SLASH_EQ] = ACTIONS(5088), + [anon_sym_AMP_EQ] = ACTIONS(5088), + [anon_sym_PIPE_EQ] = ACTIONS(5088), + [anon_sym_xor_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_EQ] = ACTIONS(5088), + [anon_sym_GT_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5088), + [anon_sym_return] = ACTIONS(5090), + [anon_sym_yield] = ACTIONS(5090), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_break] = ACTIONS(5090), + [anon_sym_continue] = ACTIONS(5090), + [anon_sym_defer] = ACTIONS(5090), + [anon_sym_errdefer] = ACTIONS(5090), + [anon_sym_if] = ACTIONS(5090), + [anon_sym_else] = ACTIONS(5090), + [anon_sym_while] = ACTIONS(5090), + [anon_sym_expand] = ACTIONS(5090), + [anon_sym_for] = ACTIONS(5090), + [anon_sym_match] = ACTIONS(5090), + [anon_sym_DOT_DOT] = ACTIONS(5090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5088), + [anon_sym_orelse] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_and] = ACTIONS(5090), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_xor] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_LT_LT_PIPE] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_catch] = ACTIONS(5090), + [anon_sym_TILDE] = ACTIONS(5088), + [anon_sym_try] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_true] = ACTIONS(5090), + [anon_sym_false] = ACTIONS(5090), + [anon_sym_null] = ACTIONS(5090), + [anon_sym_unreachable] = ACTIONS(5090), + [anon_sym_undefined] = ACTIONS(5090), + [sym_sink] = ACTIONS(5090), + [sym_integer] = ACTIONS(5090), + [sym_float] = ACTIONS(5088), + [anon_sym_DQUOTE] = ACTIONS(5088), + [sym_multiline_string] = ACTIONS(5088), + [sym_character] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5088), + }, + [STATE(2339)] = { + [ts_builtin_sym_end] = ACTIONS(5092), + [sym_identifier] = ACTIONS(5094), + [anon_sym_import] = ACTIONS(5094), + [anon_sym_test] = ACTIONS(5094), + [anon_sym_hide] = ACTIONS(5094), + [anon_sym_func] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5092), + [anon_sym_LBRACE] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_QMARK] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_SEMI] = ACTIONS(5092), + [anon_sym_RBRACK] = ACTIONS(5092), + [anon_sym_void] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_type] = ACTIONS(5094), + [anon_sym_anyopaque] = ACTIONS(5094), + [anon_sym_bool] = ACTIONS(5094), + [anon_sym_int] = ACTIONS(5094), + [anon_sym_uint] = ACTIONS(5094), + [anon_sym_float] = ACTIONS(5094), + [anon_sym_range] = ACTIONS(5094), + [anon_sym_i8] = ACTIONS(5094), + [anon_sym_i16] = ACTIONS(5094), + [anon_sym_i32] = ACTIONS(5094), + [anon_sym_i64] = ACTIONS(5094), + [anon_sym_u8] = ACTIONS(5094), + [anon_sym_u16] = ACTIONS(5094), + [anon_sym_u32] = ACTIONS(5094), + [anon_sym_u64] = ACTIONS(5094), + [anon_sym_isize] = ACTIONS(5094), + [anon_sym_usize] = ACTIONS(5094), + [anon_sym_f32] = ACTIONS(5094), + [anon_sym_f64] = ACTIONS(5094), + [anon_sym_c_char] = ACTIONS(5094), + [anon_sym_c_schar] = ACTIONS(5094), + [anon_sym_c_uchar] = ACTIONS(5094), + [anon_sym_c_short] = ACTIONS(5094), + [anon_sym_c_ushort] = ACTIONS(5094), + [anon_sym_c_int] = ACTIONS(5094), + [anon_sym_c_uint] = ACTIONS(5094), + [anon_sym_c_long] = ACTIONS(5094), + [anon_sym_c_ulong] = ACTIONS(5094), + [anon_sym_c_longlong] = ACTIONS(5094), + [anon_sym_c_ulonglong] = ACTIONS(5094), + [anon_sym_c_float] = ACTIONS(5094), + [anon_sym_c_double] = ACTIONS(5094), + [anon_sym_c_longdouble] = ACTIONS(5094), + [anon_sym_PLUS_EQ] = ACTIONS(5092), + [anon_sym_DASH_EQ] = ACTIONS(5092), + [anon_sym_STAR_EQ] = ACTIONS(5092), + [anon_sym_SLASH_EQ] = ACTIONS(5092), + [anon_sym_AMP_EQ] = ACTIONS(5092), + [anon_sym_PIPE_EQ] = ACTIONS(5092), + [anon_sym_xor_EQ] = ACTIONS(5092), + [anon_sym_LT_LT_EQ] = ACTIONS(5092), + [anon_sym_GT_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5092), + [anon_sym_return] = ACTIONS(5094), + [anon_sym_yield] = ACTIONS(5094), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_break] = ACTIONS(5094), + [anon_sym_continue] = ACTIONS(5094), + [anon_sym_defer] = ACTIONS(5094), + [anon_sym_errdefer] = ACTIONS(5094), + [anon_sym_if] = ACTIONS(5094), + [anon_sym_else] = ACTIONS(5094), + [anon_sym_while] = ACTIONS(5094), + [anon_sym_expand] = ACTIONS(5094), + [anon_sym_for] = ACTIONS(5094), + [anon_sym_match] = ACTIONS(5094), + [anon_sym_DOT_DOT] = ACTIONS(5094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5092), + [anon_sym_orelse] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_and] = ACTIONS(5094), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_xor] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5094), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_LT_LT_PIPE] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_catch] = ACTIONS(5094), + [anon_sym_TILDE] = ACTIONS(5092), + [anon_sym_try] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_true] = ACTIONS(5094), + [anon_sym_false] = ACTIONS(5094), + [anon_sym_null] = ACTIONS(5094), + [anon_sym_unreachable] = ACTIONS(5094), + [anon_sym_undefined] = ACTIONS(5094), + [sym_sink] = ACTIONS(5094), + [sym_integer] = ACTIONS(5094), + [sym_float] = ACTIONS(5092), + [anon_sym_DQUOTE] = ACTIONS(5092), + [sym_multiline_string] = ACTIONS(5092), + [sym_character] = ACTIONS(5092), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5092), + }, + [STATE(2340)] = { + [ts_builtin_sym_end] = ACTIONS(5096), + [sym_identifier] = ACTIONS(5098), + [anon_sym_import] = ACTIONS(5098), + [anon_sym_test] = ACTIONS(5098), + [anon_sym_hide] = ACTIONS(5098), + [anon_sym_func] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_struct] = ACTIONS(5098), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_QMARK] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5096), + [anon_sym_void] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym_type] = ACTIONS(5098), + [anon_sym_anyopaque] = ACTIONS(5098), + [anon_sym_bool] = ACTIONS(5098), + [anon_sym_int] = ACTIONS(5098), + [anon_sym_uint] = ACTIONS(5098), + [anon_sym_float] = ACTIONS(5098), + [anon_sym_range] = ACTIONS(5098), + [anon_sym_i8] = ACTIONS(5098), + [anon_sym_i16] = ACTIONS(5098), + [anon_sym_i32] = ACTIONS(5098), + [anon_sym_i64] = ACTIONS(5098), + [anon_sym_u8] = ACTIONS(5098), + [anon_sym_u16] = ACTIONS(5098), + [anon_sym_u32] = ACTIONS(5098), + [anon_sym_u64] = ACTIONS(5098), + [anon_sym_isize] = ACTIONS(5098), + [anon_sym_usize] = ACTIONS(5098), + [anon_sym_f32] = ACTIONS(5098), + [anon_sym_f64] = ACTIONS(5098), + [anon_sym_c_char] = ACTIONS(5098), + [anon_sym_c_schar] = ACTIONS(5098), + [anon_sym_c_uchar] = ACTIONS(5098), + [anon_sym_c_short] = ACTIONS(5098), + [anon_sym_c_ushort] = ACTIONS(5098), + [anon_sym_c_int] = ACTIONS(5098), + [anon_sym_c_uint] = ACTIONS(5098), + [anon_sym_c_long] = ACTIONS(5098), + [anon_sym_c_ulong] = ACTIONS(5098), + [anon_sym_c_longlong] = ACTIONS(5098), + [anon_sym_c_ulonglong] = ACTIONS(5098), + [anon_sym_c_float] = ACTIONS(5098), + [anon_sym_c_double] = ACTIONS(5098), + [anon_sym_c_longdouble] = ACTIONS(5098), + [anon_sym_PLUS_EQ] = ACTIONS(5096), + [anon_sym_DASH_EQ] = ACTIONS(5096), + [anon_sym_STAR_EQ] = ACTIONS(5096), + [anon_sym_SLASH_EQ] = ACTIONS(5096), + [anon_sym_AMP_EQ] = ACTIONS(5096), + [anon_sym_PIPE_EQ] = ACTIONS(5096), + [anon_sym_xor_EQ] = ACTIONS(5096), + [anon_sym_LT_LT_EQ] = ACTIONS(5096), + [anon_sym_GT_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5096), + [anon_sym_return] = ACTIONS(5098), + [anon_sym_yield] = ACTIONS(5098), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_break] = ACTIONS(5098), + [anon_sym_continue] = ACTIONS(5098), + [anon_sym_defer] = ACTIONS(5098), + [anon_sym_errdefer] = ACTIONS(5098), + [anon_sym_if] = ACTIONS(5098), + [anon_sym_else] = ACTIONS(5098), + [anon_sym_while] = ACTIONS(5098), + [anon_sym_expand] = ACTIONS(5098), + [anon_sym_for] = ACTIONS(5098), + [anon_sym_match] = ACTIONS(5098), + [anon_sym_DOT_DOT] = ACTIONS(5098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5096), + [anon_sym_orelse] = ACTIONS(5098), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_and] = ACTIONS(5098), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_xor] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5098), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_LT_LT_PIPE] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_catch] = ACTIONS(5098), + [anon_sym_TILDE] = ACTIONS(5096), + [anon_sym_try] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_true] = ACTIONS(5098), + [anon_sym_false] = ACTIONS(5098), + [anon_sym_null] = ACTIONS(5098), + [anon_sym_unreachable] = ACTIONS(5098), + [anon_sym_undefined] = ACTIONS(5098), + [sym_sink] = ACTIONS(5098), + [sym_integer] = ACTIONS(5098), + [sym_float] = ACTIONS(5096), + [anon_sym_DQUOTE] = ACTIONS(5096), + [sym_multiline_string] = ACTIONS(5096), + [sym_character] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5096), + }, + [STATE(2341)] = { + [ts_builtin_sym_end] = ACTIONS(5100), + [sym_identifier] = ACTIONS(5102), + [anon_sym_import] = ACTIONS(5102), + [anon_sym_test] = ACTIONS(5102), + [anon_sym_hide] = ACTIONS(5102), + [anon_sym_func] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_struct] = ACTIONS(5102), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_RPAREN] = ACTIONS(5100), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_QMARK] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_SEMI] = ACTIONS(5100), + [anon_sym_RBRACK] = ACTIONS(5100), + [anon_sym_void] = ACTIONS(5102), + [anon_sym_noreturn] = ACTIONS(5102), + [anon_sym_type] = ACTIONS(5102), + [anon_sym_anyopaque] = ACTIONS(5102), + [anon_sym_bool] = ACTIONS(5102), + [anon_sym_int] = ACTIONS(5102), + [anon_sym_uint] = ACTIONS(5102), + [anon_sym_float] = ACTIONS(5102), + [anon_sym_range] = ACTIONS(5102), + [anon_sym_i8] = ACTIONS(5102), + [anon_sym_i16] = ACTIONS(5102), + [anon_sym_i32] = ACTIONS(5102), + [anon_sym_i64] = ACTIONS(5102), + [anon_sym_u8] = ACTIONS(5102), + [anon_sym_u16] = ACTIONS(5102), + [anon_sym_u32] = ACTIONS(5102), + [anon_sym_u64] = ACTIONS(5102), + [anon_sym_isize] = ACTIONS(5102), + [anon_sym_usize] = ACTIONS(5102), + [anon_sym_f32] = ACTIONS(5102), + [anon_sym_f64] = ACTIONS(5102), + [anon_sym_c_char] = ACTIONS(5102), + [anon_sym_c_schar] = ACTIONS(5102), + [anon_sym_c_uchar] = ACTIONS(5102), + [anon_sym_c_short] = ACTIONS(5102), + [anon_sym_c_ushort] = ACTIONS(5102), + [anon_sym_c_int] = ACTIONS(5102), + [anon_sym_c_uint] = ACTIONS(5102), + [anon_sym_c_long] = ACTIONS(5102), + [anon_sym_c_ulong] = ACTIONS(5102), + [anon_sym_c_longlong] = ACTIONS(5102), + [anon_sym_c_ulonglong] = ACTIONS(5102), + [anon_sym_c_float] = ACTIONS(5102), + [anon_sym_c_double] = ACTIONS(5102), + [anon_sym_c_longdouble] = ACTIONS(5102), + [anon_sym_PLUS_EQ] = ACTIONS(5100), + [anon_sym_DASH_EQ] = ACTIONS(5100), + [anon_sym_STAR_EQ] = ACTIONS(5100), + [anon_sym_SLASH_EQ] = ACTIONS(5100), + [anon_sym_AMP_EQ] = ACTIONS(5100), + [anon_sym_PIPE_EQ] = ACTIONS(5100), + [anon_sym_xor_EQ] = ACTIONS(5100), + [anon_sym_LT_LT_EQ] = ACTIONS(5100), + [anon_sym_GT_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5100), + [anon_sym_return] = ACTIONS(5102), + [anon_sym_yield] = ACTIONS(5102), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_break] = ACTIONS(5102), + [anon_sym_continue] = ACTIONS(5102), + [anon_sym_defer] = ACTIONS(5102), + [anon_sym_errdefer] = ACTIONS(5102), + [anon_sym_if] = ACTIONS(5102), + [anon_sym_else] = ACTIONS(5102), + [anon_sym_while] = ACTIONS(5102), + [anon_sym_expand] = ACTIONS(5102), + [anon_sym_for] = ACTIONS(5102), + [anon_sym_match] = ACTIONS(5102), + [anon_sym_DOT_DOT] = ACTIONS(5102), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5100), + [anon_sym_orelse] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5102), + [anon_sym_and] = ACTIONS(5102), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_AMP] = ACTIONS(5102), + [anon_sym_xor] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5102), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_LT_LT_PIPE] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5102), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_catch] = ACTIONS(5102), + [anon_sym_TILDE] = ACTIONS(5100), + [anon_sym_try] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_true] = ACTIONS(5102), + [anon_sym_false] = ACTIONS(5102), + [anon_sym_null] = ACTIONS(5102), + [anon_sym_unreachable] = ACTIONS(5102), + [anon_sym_undefined] = ACTIONS(5102), + [sym_sink] = ACTIONS(5102), + [sym_integer] = ACTIONS(5102), + [sym_float] = ACTIONS(5100), + [anon_sym_DQUOTE] = ACTIONS(5100), + [sym_multiline_string] = ACTIONS(5100), + [sym_character] = ACTIONS(5100), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5100), + }, + [STATE(2342)] = { + [ts_builtin_sym_end] = ACTIONS(5104), + [sym_identifier] = ACTIONS(5106), + [anon_sym_import] = ACTIONS(5106), + [anon_sym_test] = ACTIONS(5106), + [anon_sym_hide] = ACTIONS(5106), + [anon_sym_func] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_struct] = ACTIONS(5106), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_RPAREN] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5104), + [anon_sym_COMMA] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5106), + [anon_sym_QMARK] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_SEMI] = ACTIONS(5104), + [anon_sym_RBRACK] = ACTIONS(5104), + [anon_sym_void] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym_type] = ACTIONS(5106), + [anon_sym_anyopaque] = ACTIONS(5106), + [anon_sym_bool] = ACTIONS(5106), + [anon_sym_int] = ACTIONS(5106), + [anon_sym_uint] = ACTIONS(5106), + [anon_sym_float] = ACTIONS(5106), + [anon_sym_range] = ACTIONS(5106), + [anon_sym_i8] = ACTIONS(5106), + [anon_sym_i16] = ACTIONS(5106), + [anon_sym_i32] = ACTIONS(5106), + [anon_sym_i64] = ACTIONS(5106), + [anon_sym_u8] = ACTIONS(5106), + [anon_sym_u16] = ACTIONS(5106), + [anon_sym_u32] = ACTIONS(5106), + [anon_sym_u64] = ACTIONS(5106), + [anon_sym_isize] = ACTIONS(5106), + [anon_sym_usize] = ACTIONS(5106), + [anon_sym_f32] = ACTIONS(5106), + [anon_sym_f64] = ACTIONS(5106), + [anon_sym_c_char] = ACTIONS(5106), + [anon_sym_c_schar] = ACTIONS(5106), + [anon_sym_c_uchar] = ACTIONS(5106), + [anon_sym_c_short] = ACTIONS(5106), + [anon_sym_c_ushort] = ACTIONS(5106), + [anon_sym_c_int] = ACTIONS(5106), + [anon_sym_c_uint] = ACTIONS(5106), + [anon_sym_c_long] = ACTIONS(5106), + [anon_sym_c_ulong] = ACTIONS(5106), + [anon_sym_c_longlong] = ACTIONS(5106), + [anon_sym_c_ulonglong] = ACTIONS(5106), + [anon_sym_c_float] = ACTIONS(5106), + [anon_sym_c_double] = ACTIONS(5106), + [anon_sym_c_longdouble] = ACTIONS(5106), + [anon_sym_PLUS_EQ] = ACTIONS(5104), + [anon_sym_DASH_EQ] = ACTIONS(5104), + [anon_sym_STAR_EQ] = ACTIONS(5104), + [anon_sym_SLASH_EQ] = ACTIONS(5104), + [anon_sym_AMP_EQ] = ACTIONS(5104), + [anon_sym_PIPE_EQ] = ACTIONS(5104), + [anon_sym_xor_EQ] = ACTIONS(5104), + [anon_sym_LT_LT_EQ] = ACTIONS(5104), + [anon_sym_GT_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5104), + [anon_sym_return] = ACTIONS(5106), + [anon_sym_yield] = ACTIONS(5106), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_break] = ACTIONS(5106), + [anon_sym_continue] = ACTIONS(5106), + [anon_sym_defer] = ACTIONS(5106), + [anon_sym_errdefer] = ACTIONS(5106), + [anon_sym_if] = ACTIONS(5106), + [anon_sym_else] = ACTIONS(5106), + [anon_sym_while] = ACTIONS(5106), + [anon_sym_expand] = ACTIONS(5106), + [anon_sym_for] = ACTIONS(5106), + [anon_sym_match] = ACTIONS(5106), + [anon_sym_DOT_DOT] = ACTIONS(5106), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5104), + [anon_sym_orelse] = ACTIONS(5106), + [anon_sym_or] = ACTIONS(5106), + [anon_sym_and] = ACTIONS(5106), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5106), + [anon_sym_xor] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5106), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_LT_LT_PIPE] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5106), + [anon_sym_SLASH] = ACTIONS(5106), + [anon_sym_catch] = ACTIONS(5106), + [anon_sym_TILDE] = ACTIONS(5104), + [anon_sym_try] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_true] = ACTIONS(5106), + [anon_sym_false] = ACTIONS(5106), + [anon_sym_null] = ACTIONS(5106), + [anon_sym_unreachable] = ACTIONS(5106), + [anon_sym_undefined] = ACTIONS(5106), + [sym_sink] = ACTIONS(5106), + [sym_integer] = ACTIONS(5106), + [sym_float] = ACTIONS(5104), + [anon_sym_DQUOTE] = ACTIONS(5104), + [sym_multiline_string] = ACTIONS(5104), + [sym_character] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5104), + }, + [STATE(2343)] = { + [ts_builtin_sym_end] = ACTIONS(5108), + [sym_identifier] = ACTIONS(5110), + [anon_sym_import] = ACTIONS(5110), + [anon_sym_test] = ACTIONS(5110), + [anon_sym_hide] = ACTIONS(5110), + [anon_sym_func] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_struct] = ACTIONS(5110), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_RPAREN] = ACTIONS(5108), + [anon_sym_LBRACE] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_QMARK] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_SEMI] = ACTIONS(5108), + [anon_sym_RBRACK] = ACTIONS(5108), + [anon_sym_void] = ACTIONS(5110), + [anon_sym_noreturn] = ACTIONS(5110), + [anon_sym_type] = ACTIONS(5110), + [anon_sym_anyopaque] = ACTIONS(5110), + [anon_sym_bool] = ACTIONS(5110), + [anon_sym_int] = ACTIONS(5110), + [anon_sym_uint] = ACTIONS(5110), + [anon_sym_float] = ACTIONS(5110), + [anon_sym_range] = ACTIONS(5110), + [anon_sym_i8] = ACTIONS(5110), + [anon_sym_i16] = ACTIONS(5110), + [anon_sym_i32] = ACTIONS(5110), + [anon_sym_i64] = ACTIONS(5110), + [anon_sym_u8] = ACTIONS(5110), + [anon_sym_u16] = ACTIONS(5110), + [anon_sym_u32] = ACTIONS(5110), + [anon_sym_u64] = ACTIONS(5110), + [anon_sym_isize] = ACTIONS(5110), + [anon_sym_usize] = ACTIONS(5110), + [anon_sym_f32] = ACTIONS(5110), + [anon_sym_f64] = ACTIONS(5110), + [anon_sym_c_char] = ACTIONS(5110), + [anon_sym_c_schar] = ACTIONS(5110), + [anon_sym_c_uchar] = ACTIONS(5110), + [anon_sym_c_short] = ACTIONS(5110), + [anon_sym_c_ushort] = ACTIONS(5110), + [anon_sym_c_int] = ACTIONS(5110), + [anon_sym_c_uint] = ACTIONS(5110), + [anon_sym_c_long] = ACTIONS(5110), + [anon_sym_c_ulong] = ACTIONS(5110), + [anon_sym_c_longlong] = ACTIONS(5110), + [anon_sym_c_ulonglong] = ACTIONS(5110), + [anon_sym_c_float] = ACTIONS(5110), + [anon_sym_c_double] = ACTIONS(5110), + [anon_sym_c_longdouble] = ACTIONS(5110), + [anon_sym_PLUS_EQ] = ACTIONS(5108), + [anon_sym_DASH_EQ] = ACTIONS(5108), + [anon_sym_STAR_EQ] = ACTIONS(5108), + [anon_sym_SLASH_EQ] = ACTIONS(5108), + [anon_sym_AMP_EQ] = ACTIONS(5108), + [anon_sym_PIPE_EQ] = ACTIONS(5108), + [anon_sym_xor_EQ] = ACTIONS(5108), + [anon_sym_LT_LT_EQ] = ACTIONS(5108), + [anon_sym_GT_GT_EQ] = ACTIONS(5108), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5108), + [anon_sym_return] = ACTIONS(5110), + [anon_sym_yield] = ACTIONS(5110), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_break] = ACTIONS(5110), + [anon_sym_continue] = ACTIONS(5110), + [anon_sym_defer] = ACTIONS(5110), + [anon_sym_errdefer] = ACTIONS(5110), + [anon_sym_if] = ACTIONS(5110), + [anon_sym_else] = ACTIONS(5110), + [anon_sym_while] = ACTIONS(5110), + [anon_sym_expand] = ACTIONS(5110), + [anon_sym_for] = ACTIONS(5110), + [anon_sym_match] = ACTIONS(5110), + [anon_sym_DOT_DOT] = ACTIONS(5110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5108), + [anon_sym_orelse] = ACTIONS(5110), + [anon_sym_or] = ACTIONS(5110), + [anon_sym_and] = ACTIONS(5110), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_xor] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_LT_LT_PIPE] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_catch] = ACTIONS(5110), + [anon_sym_TILDE] = ACTIONS(5108), + [anon_sym_try] = ACTIONS(5110), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_true] = ACTIONS(5110), + [anon_sym_false] = ACTIONS(5110), + [anon_sym_null] = ACTIONS(5110), + [anon_sym_unreachable] = ACTIONS(5110), + [anon_sym_undefined] = ACTIONS(5110), + [sym_sink] = ACTIONS(5110), + [sym_integer] = ACTIONS(5110), + [sym_float] = ACTIONS(5108), + [anon_sym_DQUOTE] = ACTIONS(5108), + [sym_multiline_string] = ACTIONS(5108), + [sym_character] = ACTIONS(5108), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5108), + }, + [STATE(2344)] = { + [ts_builtin_sym_end] = ACTIONS(5112), + [sym_identifier] = ACTIONS(5114), + [anon_sym_import] = ACTIONS(5114), + [anon_sym_test] = ACTIONS(5114), + [anon_sym_hide] = ACTIONS(5114), + [anon_sym_func] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_struct] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5112), + [anon_sym_LBRACE] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_QMARK] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_SEMI] = ACTIONS(5112), + [anon_sym_RBRACK] = ACTIONS(5112), + [anon_sym_void] = ACTIONS(5114), + [anon_sym_noreturn] = ACTIONS(5114), + [anon_sym_type] = ACTIONS(5114), + [anon_sym_anyopaque] = ACTIONS(5114), + [anon_sym_bool] = ACTIONS(5114), + [anon_sym_int] = ACTIONS(5114), + [anon_sym_uint] = ACTIONS(5114), + [anon_sym_float] = ACTIONS(5114), + [anon_sym_range] = ACTIONS(5114), + [anon_sym_i8] = ACTIONS(5114), + [anon_sym_i16] = ACTIONS(5114), + [anon_sym_i32] = ACTIONS(5114), + [anon_sym_i64] = ACTIONS(5114), + [anon_sym_u8] = ACTIONS(5114), + [anon_sym_u16] = ACTIONS(5114), + [anon_sym_u32] = ACTIONS(5114), + [anon_sym_u64] = ACTIONS(5114), + [anon_sym_isize] = ACTIONS(5114), + [anon_sym_usize] = ACTIONS(5114), + [anon_sym_f32] = ACTIONS(5114), + [anon_sym_f64] = ACTIONS(5114), + [anon_sym_c_char] = ACTIONS(5114), + [anon_sym_c_schar] = ACTIONS(5114), + [anon_sym_c_uchar] = ACTIONS(5114), + [anon_sym_c_short] = ACTIONS(5114), + [anon_sym_c_ushort] = ACTIONS(5114), + [anon_sym_c_int] = ACTIONS(5114), + [anon_sym_c_uint] = ACTIONS(5114), + [anon_sym_c_long] = ACTIONS(5114), + [anon_sym_c_ulong] = ACTIONS(5114), + [anon_sym_c_longlong] = ACTIONS(5114), + [anon_sym_c_ulonglong] = ACTIONS(5114), + [anon_sym_c_float] = ACTIONS(5114), + [anon_sym_c_double] = ACTIONS(5114), + [anon_sym_c_longdouble] = ACTIONS(5114), + [anon_sym_PLUS_EQ] = ACTIONS(5112), + [anon_sym_DASH_EQ] = ACTIONS(5112), + [anon_sym_STAR_EQ] = ACTIONS(5112), + [anon_sym_SLASH_EQ] = ACTIONS(5112), + [anon_sym_AMP_EQ] = ACTIONS(5112), + [anon_sym_PIPE_EQ] = ACTIONS(5112), + [anon_sym_xor_EQ] = ACTIONS(5112), + [anon_sym_LT_LT_EQ] = ACTIONS(5112), + [anon_sym_GT_GT_EQ] = ACTIONS(5112), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5112), + [anon_sym_return] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5114), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_break] = ACTIONS(5114), + [anon_sym_continue] = ACTIONS(5114), + [anon_sym_defer] = ACTIONS(5114), + [anon_sym_errdefer] = ACTIONS(5114), + [anon_sym_if] = ACTIONS(5114), + [anon_sym_else] = ACTIONS(5114), + [anon_sym_while] = ACTIONS(5114), + [anon_sym_expand] = ACTIONS(5114), + [anon_sym_for] = ACTIONS(5114), + [anon_sym_match] = ACTIONS(5114), + [anon_sym_DOT_DOT] = ACTIONS(5114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5112), + [anon_sym_orelse] = ACTIONS(5114), + [anon_sym_or] = ACTIONS(5114), + [anon_sym_and] = ACTIONS(5114), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_xor] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_LT_LT_PIPE] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_catch] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5112), + [anon_sym_try] = ACTIONS(5114), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_true] = ACTIONS(5114), + [anon_sym_false] = ACTIONS(5114), + [anon_sym_null] = ACTIONS(5114), + [anon_sym_unreachable] = ACTIONS(5114), + [anon_sym_undefined] = ACTIONS(5114), + [sym_sink] = ACTIONS(5114), + [sym_integer] = ACTIONS(5114), + [sym_float] = ACTIONS(5112), + [anon_sym_DQUOTE] = ACTIONS(5112), + [sym_multiline_string] = ACTIONS(5112), + [sym_character] = ACTIONS(5112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5112), + }, + [STATE(2345)] = { + [ts_builtin_sym_end] = ACTIONS(5116), + [sym_identifier] = ACTIONS(5118), + [anon_sym_import] = ACTIONS(5118), + [anon_sym_test] = ACTIONS(5118), + [anon_sym_hide] = ACTIONS(5118), + [anon_sym_func] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_struct] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_RPAREN] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_QMARK] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(5116), + [anon_sym_RBRACK] = ACTIONS(5116), + [anon_sym_void] = ACTIONS(5118), + [anon_sym_noreturn] = ACTIONS(5118), + [anon_sym_type] = ACTIONS(5118), + [anon_sym_anyopaque] = ACTIONS(5118), + [anon_sym_bool] = ACTIONS(5118), + [anon_sym_int] = ACTIONS(5118), + [anon_sym_uint] = ACTIONS(5118), + [anon_sym_float] = ACTIONS(5118), + [anon_sym_range] = ACTIONS(5118), + [anon_sym_i8] = ACTIONS(5118), + [anon_sym_i16] = ACTIONS(5118), + [anon_sym_i32] = ACTIONS(5118), + [anon_sym_i64] = ACTIONS(5118), + [anon_sym_u8] = ACTIONS(5118), + [anon_sym_u16] = ACTIONS(5118), + [anon_sym_u32] = ACTIONS(5118), + [anon_sym_u64] = ACTIONS(5118), + [anon_sym_isize] = ACTIONS(5118), + [anon_sym_usize] = ACTIONS(5118), + [anon_sym_f32] = ACTIONS(5118), + [anon_sym_f64] = ACTIONS(5118), + [anon_sym_c_char] = ACTIONS(5118), + [anon_sym_c_schar] = ACTIONS(5118), + [anon_sym_c_uchar] = ACTIONS(5118), + [anon_sym_c_short] = ACTIONS(5118), + [anon_sym_c_ushort] = ACTIONS(5118), + [anon_sym_c_int] = ACTIONS(5118), + [anon_sym_c_uint] = ACTIONS(5118), + [anon_sym_c_long] = ACTIONS(5118), + [anon_sym_c_ulong] = ACTIONS(5118), + [anon_sym_c_longlong] = ACTIONS(5118), + [anon_sym_c_ulonglong] = ACTIONS(5118), + [anon_sym_c_float] = ACTIONS(5118), + [anon_sym_c_double] = ACTIONS(5118), + [anon_sym_c_longdouble] = ACTIONS(5118), + [anon_sym_PLUS_EQ] = ACTIONS(5116), + [anon_sym_DASH_EQ] = ACTIONS(5116), + [anon_sym_STAR_EQ] = ACTIONS(5116), + [anon_sym_SLASH_EQ] = ACTIONS(5116), + [anon_sym_AMP_EQ] = ACTIONS(5116), + [anon_sym_PIPE_EQ] = ACTIONS(5116), + [anon_sym_xor_EQ] = ACTIONS(5116), + [anon_sym_LT_LT_EQ] = ACTIONS(5116), + [anon_sym_GT_GT_EQ] = ACTIONS(5116), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5116), + [anon_sym_return] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5118), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_break] = ACTIONS(5118), + [anon_sym_continue] = ACTIONS(5118), + [anon_sym_defer] = ACTIONS(5118), + [anon_sym_errdefer] = ACTIONS(5118), + [anon_sym_if] = ACTIONS(5118), + [anon_sym_else] = ACTIONS(5118), + [anon_sym_while] = ACTIONS(5118), + [anon_sym_expand] = ACTIONS(5118), + [anon_sym_for] = ACTIONS(5118), + [anon_sym_match] = ACTIONS(5118), + [anon_sym_DOT_DOT] = ACTIONS(5118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5116), + [anon_sym_orelse] = ACTIONS(5118), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_and] = ACTIONS(5118), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_xor] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_LT_LT_PIPE] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_catch] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_true] = ACTIONS(5118), + [anon_sym_false] = ACTIONS(5118), + [anon_sym_null] = ACTIONS(5118), + [anon_sym_unreachable] = ACTIONS(5118), + [anon_sym_undefined] = ACTIONS(5118), + [sym_sink] = ACTIONS(5118), + [sym_integer] = ACTIONS(5118), + [sym_float] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [sym_multiline_string] = ACTIONS(5116), + [sym_character] = ACTIONS(5116), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5116), + }, + [STATE(2346)] = { + [ts_builtin_sym_end] = ACTIONS(5120), + [sym_identifier] = ACTIONS(5122), + [anon_sym_import] = ACTIONS(5122), + [anon_sym_test] = ACTIONS(5122), + [anon_sym_hide] = ACTIONS(5122), + [anon_sym_func] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_struct] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_RPAREN] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_QMARK] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(5120), + [anon_sym_RBRACK] = ACTIONS(5120), + [anon_sym_void] = ACTIONS(5122), + [anon_sym_noreturn] = ACTIONS(5122), + [anon_sym_type] = ACTIONS(5122), + [anon_sym_anyopaque] = ACTIONS(5122), + [anon_sym_bool] = ACTIONS(5122), + [anon_sym_int] = ACTIONS(5122), + [anon_sym_uint] = ACTIONS(5122), + [anon_sym_float] = ACTIONS(5122), + [anon_sym_range] = ACTIONS(5122), + [anon_sym_i8] = ACTIONS(5122), + [anon_sym_i16] = ACTIONS(5122), + [anon_sym_i32] = ACTIONS(5122), + [anon_sym_i64] = ACTIONS(5122), + [anon_sym_u8] = ACTIONS(5122), + [anon_sym_u16] = ACTIONS(5122), + [anon_sym_u32] = ACTIONS(5122), + [anon_sym_u64] = ACTIONS(5122), + [anon_sym_isize] = ACTIONS(5122), + [anon_sym_usize] = ACTIONS(5122), + [anon_sym_f32] = ACTIONS(5122), + [anon_sym_f64] = ACTIONS(5122), + [anon_sym_c_char] = ACTIONS(5122), + [anon_sym_c_schar] = ACTIONS(5122), + [anon_sym_c_uchar] = ACTIONS(5122), + [anon_sym_c_short] = ACTIONS(5122), + [anon_sym_c_ushort] = ACTIONS(5122), + [anon_sym_c_int] = ACTIONS(5122), + [anon_sym_c_uint] = ACTIONS(5122), + [anon_sym_c_long] = ACTIONS(5122), + [anon_sym_c_ulong] = ACTIONS(5122), + [anon_sym_c_longlong] = ACTIONS(5122), + [anon_sym_c_ulonglong] = ACTIONS(5122), + [anon_sym_c_float] = ACTIONS(5122), + [anon_sym_c_double] = ACTIONS(5122), + [anon_sym_c_longdouble] = ACTIONS(5122), + [anon_sym_PLUS_EQ] = ACTIONS(5120), + [anon_sym_DASH_EQ] = ACTIONS(5120), + [anon_sym_STAR_EQ] = ACTIONS(5120), + [anon_sym_SLASH_EQ] = ACTIONS(5120), + [anon_sym_AMP_EQ] = ACTIONS(5120), + [anon_sym_PIPE_EQ] = ACTIONS(5120), + [anon_sym_xor_EQ] = ACTIONS(5120), + [anon_sym_LT_LT_EQ] = ACTIONS(5120), + [anon_sym_GT_GT_EQ] = ACTIONS(5120), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5120), + [anon_sym_return] = ACTIONS(5122), + [anon_sym_yield] = ACTIONS(5122), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_break] = ACTIONS(5122), + [anon_sym_continue] = ACTIONS(5122), + [anon_sym_defer] = ACTIONS(5122), + [anon_sym_errdefer] = ACTIONS(5122), + [anon_sym_if] = ACTIONS(5122), + [anon_sym_else] = ACTIONS(5122), + [anon_sym_while] = ACTIONS(5122), + [anon_sym_expand] = ACTIONS(5122), + [anon_sym_for] = ACTIONS(5122), + [anon_sym_match] = ACTIONS(5122), + [anon_sym_DOT_DOT] = ACTIONS(5122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5120), + [anon_sym_orelse] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_and] = ACTIONS(5122), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_xor] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_LT_LT_PIPE] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_catch] = ACTIONS(5122), + [anon_sym_TILDE] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_true] = ACTIONS(5122), + [anon_sym_false] = ACTIONS(5122), + [anon_sym_null] = ACTIONS(5122), + [anon_sym_unreachable] = ACTIONS(5122), + [anon_sym_undefined] = ACTIONS(5122), + [sym_sink] = ACTIONS(5122), + [sym_integer] = ACTIONS(5122), + [sym_float] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [sym_multiline_string] = ACTIONS(5120), + [sym_character] = ACTIONS(5120), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5120), + }, + [STATE(2347)] = { + [ts_builtin_sym_end] = ACTIONS(5124), + [sym_identifier] = ACTIONS(5126), + [anon_sym_import] = ACTIONS(5126), + [anon_sym_test] = ACTIONS(5126), + [anon_sym_hide] = ACTIONS(5126), + [anon_sym_func] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_struct] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_RPAREN] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_QMARK] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5124), + [anon_sym_RBRACK] = ACTIONS(5124), + [anon_sym_void] = ACTIONS(5126), + [anon_sym_noreturn] = ACTIONS(5126), + [anon_sym_type] = ACTIONS(5126), + [anon_sym_anyopaque] = ACTIONS(5126), + [anon_sym_bool] = ACTIONS(5126), + [anon_sym_int] = ACTIONS(5126), + [anon_sym_uint] = ACTIONS(5126), + [anon_sym_float] = ACTIONS(5126), + [anon_sym_range] = ACTIONS(5126), + [anon_sym_i8] = ACTIONS(5126), + [anon_sym_i16] = ACTIONS(5126), + [anon_sym_i32] = ACTIONS(5126), + [anon_sym_i64] = ACTIONS(5126), + [anon_sym_u8] = ACTIONS(5126), + [anon_sym_u16] = ACTIONS(5126), + [anon_sym_u32] = ACTIONS(5126), + [anon_sym_u64] = ACTIONS(5126), + [anon_sym_isize] = ACTIONS(5126), + [anon_sym_usize] = ACTIONS(5126), + [anon_sym_f32] = ACTIONS(5126), + [anon_sym_f64] = ACTIONS(5126), + [anon_sym_c_char] = ACTIONS(5126), + [anon_sym_c_schar] = ACTIONS(5126), + [anon_sym_c_uchar] = ACTIONS(5126), + [anon_sym_c_short] = ACTIONS(5126), + [anon_sym_c_ushort] = ACTIONS(5126), + [anon_sym_c_int] = ACTIONS(5126), + [anon_sym_c_uint] = ACTIONS(5126), + [anon_sym_c_long] = ACTIONS(5126), + [anon_sym_c_ulong] = ACTIONS(5126), + [anon_sym_c_longlong] = ACTIONS(5126), + [anon_sym_c_ulonglong] = ACTIONS(5126), + [anon_sym_c_float] = ACTIONS(5126), + [anon_sym_c_double] = ACTIONS(5126), + [anon_sym_c_longdouble] = ACTIONS(5126), + [anon_sym_PLUS_EQ] = ACTIONS(5124), + [anon_sym_DASH_EQ] = ACTIONS(5124), + [anon_sym_STAR_EQ] = ACTIONS(5124), + [anon_sym_SLASH_EQ] = ACTIONS(5124), + [anon_sym_AMP_EQ] = ACTIONS(5124), + [anon_sym_PIPE_EQ] = ACTIONS(5124), + [anon_sym_xor_EQ] = ACTIONS(5124), + [anon_sym_LT_LT_EQ] = ACTIONS(5124), + [anon_sym_GT_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5124), + [anon_sym_return] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5126), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_break] = ACTIONS(5126), + [anon_sym_continue] = ACTIONS(5126), + [anon_sym_defer] = ACTIONS(5126), + [anon_sym_errdefer] = ACTIONS(5126), + [anon_sym_if] = ACTIONS(5126), + [anon_sym_else] = ACTIONS(5126), + [anon_sym_while] = ACTIONS(5126), + [anon_sym_expand] = ACTIONS(5126), + [anon_sym_for] = ACTIONS(5126), + [anon_sym_match] = ACTIONS(5126), + [anon_sym_DOT_DOT] = ACTIONS(5126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5124), + [anon_sym_orelse] = ACTIONS(5126), + [anon_sym_or] = ACTIONS(5126), + [anon_sym_and] = ACTIONS(5126), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_xor] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5126), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_LT_LT_PIPE] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_catch] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5124), + [anon_sym_try] = ACTIONS(5126), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_true] = ACTIONS(5126), + [anon_sym_false] = ACTIONS(5126), + [anon_sym_null] = ACTIONS(5126), + [anon_sym_unreachable] = ACTIONS(5126), + [anon_sym_undefined] = ACTIONS(5126), + [sym_sink] = ACTIONS(5126), + [sym_integer] = ACTIONS(5126), + [sym_float] = ACTIONS(5124), + [anon_sym_DQUOTE] = ACTIONS(5124), + [sym_multiline_string] = ACTIONS(5124), + [sym_character] = ACTIONS(5124), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5124), + }, + [STATE(2348)] = { + [ts_builtin_sym_end] = ACTIONS(5128), + [sym_identifier] = ACTIONS(5130), + [anon_sym_import] = ACTIONS(5130), + [anon_sym_test] = ACTIONS(5130), + [anon_sym_hide] = ACTIONS(5130), + [anon_sym_func] = ACTIONS(5130), + [anon_sym_BANG] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_struct] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_RPAREN] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_COMMA] = ACTIONS(5128), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5130), + [anon_sym_QMARK] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(5128), + [anon_sym_RBRACK] = ACTIONS(5128), + [anon_sym_void] = ACTIONS(5130), + [anon_sym_noreturn] = ACTIONS(5130), + [anon_sym_type] = ACTIONS(5130), + [anon_sym_anyopaque] = ACTIONS(5130), + [anon_sym_bool] = ACTIONS(5130), + [anon_sym_int] = ACTIONS(5130), + [anon_sym_uint] = ACTIONS(5130), + [anon_sym_float] = ACTIONS(5130), + [anon_sym_range] = ACTIONS(5130), + [anon_sym_i8] = ACTIONS(5130), + [anon_sym_i16] = ACTIONS(5130), + [anon_sym_i32] = ACTIONS(5130), + [anon_sym_i64] = ACTIONS(5130), + [anon_sym_u8] = ACTIONS(5130), + [anon_sym_u16] = ACTIONS(5130), + [anon_sym_u32] = ACTIONS(5130), + [anon_sym_u64] = ACTIONS(5130), + [anon_sym_isize] = ACTIONS(5130), + [anon_sym_usize] = ACTIONS(5130), + [anon_sym_f32] = ACTIONS(5130), + [anon_sym_f64] = ACTIONS(5130), + [anon_sym_c_char] = ACTIONS(5130), + [anon_sym_c_schar] = ACTIONS(5130), + [anon_sym_c_uchar] = ACTIONS(5130), + [anon_sym_c_short] = ACTIONS(5130), + [anon_sym_c_ushort] = ACTIONS(5130), + [anon_sym_c_int] = ACTIONS(5130), + [anon_sym_c_uint] = ACTIONS(5130), + [anon_sym_c_long] = ACTIONS(5130), + [anon_sym_c_ulong] = ACTIONS(5130), + [anon_sym_c_longlong] = ACTIONS(5130), + [anon_sym_c_ulonglong] = ACTIONS(5130), + [anon_sym_c_float] = ACTIONS(5130), + [anon_sym_c_double] = ACTIONS(5130), + [anon_sym_c_longdouble] = ACTIONS(5130), + [anon_sym_PLUS_EQ] = ACTIONS(5128), + [anon_sym_DASH_EQ] = ACTIONS(5128), + [anon_sym_STAR_EQ] = ACTIONS(5128), + [anon_sym_SLASH_EQ] = ACTIONS(5128), + [anon_sym_AMP_EQ] = ACTIONS(5128), + [anon_sym_PIPE_EQ] = ACTIONS(5128), + [anon_sym_xor_EQ] = ACTIONS(5128), + [anon_sym_LT_LT_EQ] = ACTIONS(5128), + [anon_sym_GT_GT_EQ] = ACTIONS(5128), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5128), + [anon_sym_return] = ACTIONS(5130), + [anon_sym_yield] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_break] = ACTIONS(5130), + [anon_sym_continue] = ACTIONS(5130), + [anon_sym_defer] = ACTIONS(5130), + [anon_sym_errdefer] = ACTIONS(5130), + [anon_sym_if] = ACTIONS(5130), + [anon_sym_else] = ACTIONS(5130), + [anon_sym_while] = ACTIONS(5130), + [anon_sym_expand] = ACTIONS(5130), + [anon_sym_for] = ACTIONS(5130), + [anon_sym_match] = ACTIONS(5130), + [anon_sym_DOT_DOT] = ACTIONS(5130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5128), + [anon_sym_orelse] = ACTIONS(5130), + [anon_sym_or] = ACTIONS(5130), + [anon_sym_and] = ACTIONS(5130), + [anon_sym_EQ_EQ] = ACTIONS(5128), + [anon_sym_BANG_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5130), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5130), + [anon_sym_GT_EQ] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5130), + [anon_sym_xor] = ACTIONS(5130), + [anon_sym_LT_LT] = ACTIONS(5130), + [anon_sym_GT_GT] = ACTIONS(5130), + [anon_sym_LT_LT_PIPE] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5130), + [anon_sym_SLASH] = ACTIONS(5130), + [anon_sym_catch] = ACTIONS(5130), + [anon_sym_TILDE] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5130), + [anon_sym_DOT] = ACTIONS(5130), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_true] = ACTIONS(5130), + [anon_sym_false] = ACTIONS(5130), + [anon_sym_null] = ACTIONS(5130), + [anon_sym_unreachable] = ACTIONS(5130), + [anon_sym_undefined] = ACTIONS(5130), + [sym_sink] = ACTIONS(5130), + [sym_integer] = ACTIONS(5130), + [sym_float] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [sym_multiline_string] = ACTIONS(5128), + [sym_character] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5128), + }, + [STATE(2349)] = { + [ts_builtin_sym_end] = ACTIONS(5132), + [sym_identifier] = ACTIONS(5134), + [anon_sym_import] = ACTIONS(5134), + [anon_sym_test] = ACTIONS(5134), + [anon_sym_hide] = ACTIONS(5134), + [anon_sym_func] = ACTIONS(5134), + [anon_sym_BANG] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_struct] = ACTIONS(5134), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_RPAREN] = ACTIONS(5132), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_COMMA] = ACTIONS(5132), + [anon_sym_RBRACE] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_QMARK] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_SEMI] = ACTIONS(5132), + [anon_sym_RBRACK] = ACTIONS(5132), + [anon_sym_void] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym_type] = ACTIONS(5134), + [anon_sym_anyopaque] = ACTIONS(5134), + [anon_sym_bool] = ACTIONS(5134), + [anon_sym_int] = ACTIONS(5134), + [anon_sym_uint] = ACTIONS(5134), + [anon_sym_float] = ACTIONS(5134), + [anon_sym_range] = ACTIONS(5134), + [anon_sym_i8] = ACTIONS(5134), + [anon_sym_i16] = ACTIONS(5134), + [anon_sym_i32] = ACTIONS(5134), + [anon_sym_i64] = ACTIONS(5134), + [anon_sym_u8] = ACTIONS(5134), + [anon_sym_u16] = ACTIONS(5134), + [anon_sym_u32] = ACTIONS(5134), + [anon_sym_u64] = ACTIONS(5134), + [anon_sym_isize] = ACTIONS(5134), + [anon_sym_usize] = ACTIONS(5134), + [anon_sym_f32] = ACTIONS(5134), + [anon_sym_f64] = ACTIONS(5134), + [anon_sym_c_char] = ACTIONS(5134), + [anon_sym_c_schar] = ACTIONS(5134), + [anon_sym_c_uchar] = ACTIONS(5134), + [anon_sym_c_short] = ACTIONS(5134), + [anon_sym_c_ushort] = ACTIONS(5134), + [anon_sym_c_int] = ACTIONS(5134), + [anon_sym_c_uint] = ACTIONS(5134), + [anon_sym_c_long] = ACTIONS(5134), + [anon_sym_c_ulong] = ACTIONS(5134), + [anon_sym_c_longlong] = ACTIONS(5134), + [anon_sym_c_ulonglong] = ACTIONS(5134), + [anon_sym_c_float] = ACTIONS(5134), + [anon_sym_c_double] = ACTIONS(5134), + [anon_sym_c_longdouble] = ACTIONS(5134), + [anon_sym_PLUS_EQ] = ACTIONS(5132), + [anon_sym_DASH_EQ] = ACTIONS(5132), + [anon_sym_STAR_EQ] = ACTIONS(5132), + [anon_sym_SLASH_EQ] = ACTIONS(5132), + [anon_sym_AMP_EQ] = ACTIONS(5132), + [anon_sym_PIPE_EQ] = ACTIONS(5132), + [anon_sym_xor_EQ] = ACTIONS(5132), + [anon_sym_LT_LT_EQ] = ACTIONS(5132), + [anon_sym_GT_GT_EQ] = ACTIONS(5132), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5132), + [anon_sym_return] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_break] = ACTIONS(5134), + [anon_sym_continue] = ACTIONS(5134), + [anon_sym_defer] = ACTIONS(5134), + [anon_sym_errdefer] = ACTIONS(5134), + [anon_sym_if] = ACTIONS(5134), + [anon_sym_else] = ACTIONS(5134), + [anon_sym_while] = ACTIONS(5134), + [anon_sym_expand] = ACTIONS(5134), + [anon_sym_for] = ACTIONS(5134), + [anon_sym_match] = ACTIONS(5134), + [anon_sym_DOT_DOT] = ACTIONS(5134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5132), + [anon_sym_orelse] = ACTIONS(5134), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5132), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5134), + [anon_sym_LT_LT_PIPE] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_catch] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5132), + [anon_sym_try] = ACTIONS(5134), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym_true] = ACTIONS(5134), + [anon_sym_false] = ACTIONS(5134), + [anon_sym_null] = ACTIONS(5134), + [anon_sym_unreachable] = ACTIONS(5134), + [anon_sym_undefined] = ACTIONS(5134), + [sym_sink] = ACTIONS(5134), + [sym_integer] = ACTIONS(5134), + [sym_float] = ACTIONS(5132), + [anon_sym_DQUOTE] = ACTIONS(5132), + [sym_multiline_string] = ACTIONS(5132), + [sym_character] = ACTIONS(5132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5132), + }, + [STATE(2350)] = { + [ts_builtin_sym_end] = ACTIONS(5136), + [sym_identifier] = ACTIONS(5138), + [anon_sym_import] = ACTIONS(5138), + [anon_sym_test] = ACTIONS(5138), + [anon_sym_hide] = ACTIONS(5138), + [anon_sym_func] = ACTIONS(5138), + [anon_sym_BANG] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_struct] = ACTIONS(5138), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym_RBRACK] = ACTIONS(5136), + [anon_sym_void] = ACTIONS(5138), + [anon_sym_noreturn] = ACTIONS(5138), + [anon_sym_type] = ACTIONS(5138), + [anon_sym_anyopaque] = ACTIONS(5138), + [anon_sym_bool] = ACTIONS(5138), + [anon_sym_int] = ACTIONS(5138), + [anon_sym_uint] = ACTIONS(5138), + [anon_sym_float] = ACTIONS(5138), + [anon_sym_range] = ACTIONS(5138), + [anon_sym_i8] = ACTIONS(5138), + [anon_sym_i16] = ACTIONS(5138), + [anon_sym_i32] = ACTIONS(5138), + [anon_sym_i64] = ACTIONS(5138), + [anon_sym_u8] = ACTIONS(5138), + [anon_sym_u16] = ACTIONS(5138), + [anon_sym_u32] = ACTIONS(5138), + [anon_sym_u64] = ACTIONS(5138), + [anon_sym_isize] = ACTIONS(5138), + [anon_sym_usize] = ACTIONS(5138), + [anon_sym_f32] = ACTIONS(5138), + [anon_sym_f64] = ACTIONS(5138), + [anon_sym_c_char] = ACTIONS(5138), + [anon_sym_c_schar] = ACTIONS(5138), + [anon_sym_c_uchar] = ACTIONS(5138), + [anon_sym_c_short] = ACTIONS(5138), + [anon_sym_c_ushort] = ACTIONS(5138), + [anon_sym_c_int] = ACTIONS(5138), + [anon_sym_c_uint] = ACTIONS(5138), + [anon_sym_c_long] = ACTIONS(5138), + [anon_sym_c_ulong] = ACTIONS(5138), + [anon_sym_c_longlong] = ACTIONS(5138), + [anon_sym_c_ulonglong] = ACTIONS(5138), + [anon_sym_c_float] = ACTIONS(5138), + [anon_sym_c_double] = ACTIONS(5138), + [anon_sym_c_longdouble] = ACTIONS(5138), + [anon_sym_PLUS_EQ] = ACTIONS(5136), + [anon_sym_DASH_EQ] = ACTIONS(5136), + [anon_sym_STAR_EQ] = ACTIONS(5136), + [anon_sym_SLASH_EQ] = ACTIONS(5136), + [anon_sym_AMP_EQ] = ACTIONS(5136), + [anon_sym_PIPE_EQ] = ACTIONS(5136), + [anon_sym_xor_EQ] = ACTIONS(5136), + [anon_sym_LT_LT_EQ] = ACTIONS(5136), + [anon_sym_GT_GT_EQ] = ACTIONS(5136), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5136), + [anon_sym_return] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_break] = ACTIONS(5138), + [anon_sym_continue] = ACTIONS(5138), + [anon_sym_defer] = ACTIONS(5138), + [anon_sym_errdefer] = ACTIONS(5138), + [anon_sym_if] = ACTIONS(5138), + [anon_sym_else] = ACTIONS(5138), + [anon_sym_while] = ACTIONS(5138), + [anon_sym_expand] = ACTIONS(5138), + [anon_sym_for] = ACTIONS(5138), + [anon_sym_match] = ACTIONS(5138), + [anon_sym_DOT_DOT] = ACTIONS(5138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5136), + [anon_sym_orelse] = ACTIONS(5138), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_EQ] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym_LT_LT_PIPE] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_catch] = ACTIONS(5138), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_try] = ACTIONS(5138), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym_true] = ACTIONS(5138), + [anon_sym_false] = ACTIONS(5138), + [anon_sym_null] = ACTIONS(5138), + [anon_sym_unreachable] = ACTIONS(5138), + [anon_sym_undefined] = ACTIONS(5138), + [sym_sink] = ACTIONS(5138), + [sym_integer] = ACTIONS(5138), + [sym_float] = ACTIONS(5136), + [anon_sym_DQUOTE] = ACTIONS(5136), + [sym_multiline_string] = ACTIONS(5136), + [sym_character] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5136), + }, + [STATE(2351)] = { + [ts_builtin_sym_end] = ACTIONS(5140), + [sym_identifier] = ACTIONS(5142), + [anon_sym_import] = ACTIONS(5142), + [anon_sym_test] = ACTIONS(5142), + [anon_sym_hide] = ACTIONS(5142), + [anon_sym_func] = ACTIONS(5142), + [anon_sym_BANG] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_RPAREN] = ACTIONS(5140), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_COMMA] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5142), + [anon_sym_QMARK] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_SEMI] = ACTIONS(5140), + [anon_sym_RBRACK] = ACTIONS(5140), + [anon_sym_void] = ACTIONS(5142), + [anon_sym_noreturn] = ACTIONS(5142), + [anon_sym_type] = ACTIONS(5142), + [anon_sym_anyopaque] = ACTIONS(5142), + [anon_sym_bool] = ACTIONS(5142), + [anon_sym_int] = ACTIONS(5142), + [anon_sym_uint] = ACTIONS(5142), + [anon_sym_float] = ACTIONS(5142), + [anon_sym_range] = ACTIONS(5142), + [anon_sym_i8] = ACTIONS(5142), + [anon_sym_i16] = ACTIONS(5142), + [anon_sym_i32] = ACTIONS(5142), + [anon_sym_i64] = ACTIONS(5142), + [anon_sym_u8] = ACTIONS(5142), + [anon_sym_u16] = ACTIONS(5142), + [anon_sym_u32] = ACTIONS(5142), + [anon_sym_u64] = ACTIONS(5142), + [anon_sym_isize] = ACTIONS(5142), + [anon_sym_usize] = ACTIONS(5142), + [anon_sym_f32] = ACTIONS(5142), + [anon_sym_f64] = ACTIONS(5142), + [anon_sym_c_char] = ACTIONS(5142), + [anon_sym_c_schar] = ACTIONS(5142), + [anon_sym_c_uchar] = ACTIONS(5142), + [anon_sym_c_short] = ACTIONS(5142), + [anon_sym_c_ushort] = ACTIONS(5142), + [anon_sym_c_int] = ACTIONS(5142), + [anon_sym_c_uint] = ACTIONS(5142), + [anon_sym_c_long] = ACTIONS(5142), + [anon_sym_c_ulong] = ACTIONS(5142), + [anon_sym_c_longlong] = ACTIONS(5142), + [anon_sym_c_ulonglong] = ACTIONS(5142), + [anon_sym_c_float] = ACTIONS(5142), + [anon_sym_c_double] = ACTIONS(5142), + [anon_sym_c_longdouble] = ACTIONS(5142), + [anon_sym_PLUS_EQ] = ACTIONS(5140), + [anon_sym_DASH_EQ] = ACTIONS(5140), + [anon_sym_STAR_EQ] = ACTIONS(5140), + [anon_sym_SLASH_EQ] = ACTIONS(5140), + [anon_sym_AMP_EQ] = ACTIONS(5140), + [anon_sym_PIPE_EQ] = ACTIONS(5140), + [anon_sym_xor_EQ] = ACTIONS(5140), + [anon_sym_LT_LT_EQ] = ACTIONS(5140), + [anon_sym_GT_GT_EQ] = ACTIONS(5140), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5140), + [anon_sym_return] = ACTIONS(5142), + [anon_sym_yield] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_break] = ACTIONS(5142), + [anon_sym_continue] = ACTIONS(5142), + [anon_sym_defer] = ACTIONS(5142), + [anon_sym_errdefer] = ACTIONS(5142), + [anon_sym_if] = ACTIONS(5142), + [anon_sym_else] = ACTIONS(5142), + [anon_sym_while] = ACTIONS(5142), + [anon_sym_expand] = ACTIONS(5142), + [anon_sym_for] = ACTIONS(5142), + [anon_sym_match] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5140), + [anon_sym_orelse] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5140), + [anon_sym_BANG_EQ] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5140), + [anon_sym_AMP] = ACTIONS(5142), + [anon_sym_xor] = ACTIONS(5142), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5142), + [anon_sym_LT_LT_PIPE] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5142), + [anon_sym_catch] = ACTIONS(5142), + [anon_sym_TILDE] = ACTIONS(5140), + [anon_sym_try] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym_true] = ACTIONS(5142), + [anon_sym_false] = ACTIONS(5142), + [anon_sym_null] = ACTIONS(5142), + [anon_sym_unreachable] = ACTIONS(5142), + [anon_sym_undefined] = ACTIONS(5142), + [sym_sink] = ACTIONS(5142), + [sym_integer] = ACTIONS(5142), + [sym_float] = ACTIONS(5140), + [anon_sym_DQUOTE] = ACTIONS(5140), + [sym_multiline_string] = ACTIONS(5140), + [sym_character] = ACTIONS(5140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5140), + }, + [STATE(2352)] = { + [ts_builtin_sym_end] = ACTIONS(5144), + [sym_identifier] = ACTIONS(5146), + [anon_sym_import] = ACTIONS(5146), + [anon_sym_test] = ACTIONS(5146), + [anon_sym_hide] = ACTIONS(5146), + [anon_sym_func] = ACTIONS(5146), + [anon_sym_BANG] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5146), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_RPAREN] = ACTIONS(5144), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_COMMA] = ACTIONS(5144), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5146), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5144), + [anon_sym_RBRACK] = ACTIONS(5144), + [anon_sym_void] = ACTIONS(5146), + [anon_sym_noreturn] = ACTIONS(5146), + [anon_sym_type] = ACTIONS(5146), + [anon_sym_anyopaque] = ACTIONS(5146), + [anon_sym_bool] = ACTIONS(5146), + [anon_sym_int] = ACTIONS(5146), + [anon_sym_uint] = ACTIONS(5146), + [anon_sym_float] = ACTIONS(5146), + [anon_sym_range] = ACTIONS(5146), + [anon_sym_i8] = ACTIONS(5146), + [anon_sym_i16] = ACTIONS(5146), + [anon_sym_i32] = ACTIONS(5146), + [anon_sym_i64] = ACTIONS(5146), + [anon_sym_u8] = ACTIONS(5146), + [anon_sym_u16] = ACTIONS(5146), + [anon_sym_u32] = ACTIONS(5146), + [anon_sym_u64] = ACTIONS(5146), + [anon_sym_isize] = ACTIONS(5146), + [anon_sym_usize] = ACTIONS(5146), + [anon_sym_f32] = ACTIONS(5146), + [anon_sym_f64] = ACTIONS(5146), + [anon_sym_c_char] = ACTIONS(5146), + [anon_sym_c_schar] = ACTIONS(5146), + [anon_sym_c_uchar] = ACTIONS(5146), + [anon_sym_c_short] = ACTIONS(5146), + [anon_sym_c_ushort] = ACTIONS(5146), + [anon_sym_c_int] = ACTIONS(5146), + [anon_sym_c_uint] = ACTIONS(5146), + [anon_sym_c_long] = ACTIONS(5146), + [anon_sym_c_ulong] = ACTIONS(5146), + [anon_sym_c_longlong] = ACTIONS(5146), + [anon_sym_c_ulonglong] = ACTIONS(5146), + [anon_sym_c_float] = ACTIONS(5146), + [anon_sym_c_double] = ACTIONS(5146), + [anon_sym_c_longdouble] = ACTIONS(5146), + [anon_sym_PLUS_EQ] = ACTIONS(5144), + [anon_sym_DASH_EQ] = ACTIONS(5144), + [anon_sym_STAR_EQ] = ACTIONS(5144), + [anon_sym_SLASH_EQ] = ACTIONS(5144), + [anon_sym_AMP_EQ] = ACTIONS(5144), + [anon_sym_PIPE_EQ] = ACTIONS(5144), + [anon_sym_xor_EQ] = ACTIONS(5144), + [anon_sym_LT_LT_EQ] = ACTIONS(5144), + [anon_sym_GT_GT_EQ] = ACTIONS(5144), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5144), + [anon_sym_return] = ACTIONS(5146), + [anon_sym_yield] = ACTIONS(5146), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_break] = ACTIONS(5146), + [anon_sym_continue] = ACTIONS(5146), + [anon_sym_defer] = ACTIONS(5146), + [anon_sym_errdefer] = ACTIONS(5146), + [anon_sym_if] = ACTIONS(5146), + [anon_sym_else] = ACTIONS(5146), + [anon_sym_while] = ACTIONS(5146), + [anon_sym_expand] = ACTIONS(5146), + [anon_sym_for] = ACTIONS(5146), + [anon_sym_match] = ACTIONS(5146), + [anon_sym_DOT_DOT] = ACTIONS(5146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5144), + [anon_sym_orelse] = ACTIONS(5146), + [anon_sym_or] = ACTIONS(5146), + [anon_sym_and] = ACTIONS(5146), + [anon_sym_EQ_EQ] = ACTIONS(5144), + [anon_sym_BANG_EQ] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5146), + [anon_sym_LT_EQ] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5146), + [anon_sym_GT_EQ] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5146), + [anon_sym_xor] = ACTIONS(5146), + [anon_sym_LT_LT] = ACTIONS(5146), + [anon_sym_GT_GT] = ACTIONS(5146), + [anon_sym_LT_LT_PIPE] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5146), + [anon_sym_SLASH] = ACTIONS(5146), + [anon_sym_catch] = ACTIONS(5146), + [anon_sym_TILDE] = ACTIONS(5144), + [anon_sym_try] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5146), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym_true] = ACTIONS(5146), + [anon_sym_false] = ACTIONS(5146), + [anon_sym_null] = ACTIONS(5146), + [anon_sym_unreachable] = ACTIONS(5146), + [anon_sym_undefined] = ACTIONS(5146), + [sym_sink] = ACTIONS(5146), + [sym_integer] = ACTIONS(5146), + [sym_float] = ACTIONS(5144), + [anon_sym_DQUOTE] = ACTIONS(5144), + [sym_multiline_string] = ACTIONS(5144), + [sym_character] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5144), + }, + [STATE(2353)] = { + [ts_builtin_sym_end] = ACTIONS(5148), + [sym_identifier] = ACTIONS(5150), + [anon_sym_import] = ACTIONS(5150), + [anon_sym_test] = ACTIONS(5150), + [anon_sym_hide] = ACTIONS(5150), + [anon_sym_func] = ACTIONS(5150), + [anon_sym_BANG] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_RPAREN] = ACTIONS(5148), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_COMMA] = ACTIONS(5148), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5150), + [anon_sym_QMARK] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_SEMI] = ACTIONS(5148), + [anon_sym_RBRACK] = ACTIONS(5148), + [anon_sym_void] = ACTIONS(5150), + [anon_sym_noreturn] = ACTIONS(5150), + [anon_sym_type] = ACTIONS(5150), + [anon_sym_anyopaque] = ACTIONS(5150), + [anon_sym_bool] = ACTIONS(5150), + [anon_sym_int] = ACTIONS(5150), + [anon_sym_uint] = ACTIONS(5150), + [anon_sym_float] = ACTIONS(5150), + [anon_sym_range] = ACTIONS(5150), + [anon_sym_i8] = ACTIONS(5150), + [anon_sym_i16] = ACTIONS(5150), + [anon_sym_i32] = ACTIONS(5150), + [anon_sym_i64] = ACTIONS(5150), + [anon_sym_u8] = ACTIONS(5150), + [anon_sym_u16] = ACTIONS(5150), + [anon_sym_u32] = ACTIONS(5150), + [anon_sym_u64] = ACTIONS(5150), + [anon_sym_isize] = ACTIONS(5150), + [anon_sym_usize] = ACTIONS(5150), + [anon_sym_f32] = ACTIONS(5150), + [anon_sym_f64] = ACTIONS(5150), + [anon_sym_c_char] = ACTIONS(5150), + [anon_sym_c_schar] = ACTIONS(5150), + [anon_sym_c_uchar] = ACTIONS(5150), + [anon_sym_c_short] = ACTIONS(5150), + [anon_sym_c_ushort] = ACTIONS(5150), + [anon_sym_c_int] = ACTIONS(5150), + [anon_sym_c_uint] = ACTIONS(5150), + [anon_sym_c_long] = ACTIONS(5150), + [anon_sym_c_ulong] = ACTIONS(5150), + [anon_sym_c_longlong] = ACTIONS(5150), + [anon_sym_c_ulonglong] = ACTIONS(5150), + [anon_sym_c_float] = ACTIONS(5150), + [anon_sym_c_double] = ACTIONS(5150), + [anon_sym_c_longdouble] = ACTIONS(5150), + [anon_sym_PLUS_EQ] = ACTIONS(5148), + [anon_sym_DASH_EQ] = ACTIONS(5148), + [anon_sym_STAR_EQ] = ACTIONS(5148), + [anon_sym_SLASH_EQ] = ACTIONS(5148), + [anon_sym_AMP_EQ] = ACTIONS(5148), + [anon_sym_PIPE_EQ] = ACTIONS(5148), + [anon_sym_xor_EQ] = ACTIONS(5148), + [anon_sym_LT_LT_EQ] = ACTIONS(5148), + [anon_sym_GT_GT_EQ] = ACTIONS(5148), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5148), + [anon_sym_return] = ACTIONS(5150), + [anon_sym_yield] = ACTIONS(5150), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_break] = ACTIONS(5150), + [anon_sym_continue] = ACTIONS(5150), + [anon_sym_defer] = ACTIONS(5150), + [anon_sym_errdefer] = ACTIONS(5150), + [anon_sym_if] = ACTIONS(5150), + [anon_sym_else] = ACTIONS(5150), + [anon_sym_while] = ACTIONS(5150), + [anon_sym_expand] = ACTIONS(5150), + [anon_sym_for] = ACTIONS(5150), + [anon_sym_match] = ACTIONS(5150), + [anon_sym_DOT_DOT] = ACTIONS(5150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5148), + [anon_sym_orelse] = ACTIONS(5150), + [anon_sym_or] = ACTIONS(5150), + [anon_sym_and] = ACTIONS(5150), + [anon_sym_EQ_EQ] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5150), + [anon_sym_LT_EQ] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_GT_EQ] = ACTIONS(5148), + [anon_sym_AMP] = ACTIONS(5150), + [anon_sym_xor] = ACTIONS(5150), + [anon_sym_LT_LT] = ACTIONS(5150), + [anon_sym_GT_GT] = ACTIONS(5150), + [anon_sym_LT_LT_PIPE] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5150), + [anon_sym_SLASH] = ACTIONS(5150), + [anon_sym_catch] = ACTIONS(5150), + [anon_sym_TILDE] = ACTIONS(5148), + [anon_sym_try] = ACTIONS(5150), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym_true] = ACTIONS(5150), + [anon_sym_false] = ACTIONS(5150), + [anon_sym_null] = ACTIONS(5150), + [anon_sym_unreachable] = ACTIONS(5150), + [anon_sym_undefined] = ACTIONS(5150), + [sym_sink] = ACTIONS(5150), + [sym_integer] = ACTIONS(5150), + [sym_float] = ACTIONS(5148), + [anon_sym_DQUOTE] = ACTIONS(5148), + [sym_multiline_string] = ACTIONS(5148), + [sym_character] = ACTIONS(5148), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5148), + }, + [STATE(2354)] = { + [ts_builtin_sym_end] = ACTIONS(5152), + [sym_identifier] = ACTIONS(5154), + [anon_sym_import] = ACTIONS(5154), + [anon_sym_test] = ACTIONS(5154), + [anon_sym_hide] = ACTIONS(5154), + [anon_sym_func] = ACTIONS(5154), + [anon_sym_BANG] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_struct] = ACTIONS(5154), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_RPAREN] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5152), + [anon_sym_COMMA] = ACTIONS(5152), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5154), + [anon_sym_QMARK] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5152), + [anon_sym_RBRACK] = ACTIONS(5152), + [anon_sym_void] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym_type] = ACTIONS(5154), + [anon_sym_anyopaque] = ACTIONS(5154), + [anon_sym_bool] = ACTIONS(5154), + [anon_sym_int] = ACTIONS(5154), + [anon_sym_uint] = ACTIONS(5154), + [anon_sym_float] = ACTIONS(5154), + [anon_sym_range] = ACTIONS(5154), + [anon_sym_i8] = ACTIONS(5154), + [anon_sym_i16] = ACTIONS(5154), + [anon_sym_i32] = ACTIONS(5154), + [anon_sym_i64] = ACTIONS(5154), + [anon_sym_u8] = ACTIONS(5154), + [anon_sym_u16] = ACTIONS(5154), + [anon_sym_u32] = ACTIONS(5154), + [anon_sym_u64] = ACTIONS(5154), + [anon_sym_isize] = ACTIONS(5154), + [anon_sym_usize] = ACTIONS(5154), + [anon_sym_f32] = ACTIONS(5154), + [anon_sym_f64] = ACTIONS(5154), + [anon_sym_c_char] = ACTIONS(5154), + [anon_sym_c_schar] = ACTIONS(5154), + [anon_sym_c_uchar] = ACTIONS(5154), + [anon_sym_c_short] = ACTIONS(5154), + [anon_sym_c_ushort] = ACTIONS(5154), + [anon_sym_c_int] = ACTIONS(5154), + [anon_sym_c_uint] = ACTIONS(5154), + [anon_sym_c_long] = ACTIONS(5154), + [anon_sym_c_ulong] = ACTIONS(5154), + [anon_sym_c_longlong] = ACTIONS(5154), + [anon_sym_c_ulonglong] = ACTIONS(5154), + [anon_sym_c_float] = ACTIONS(5154), + [anon_sym_c_double] = ACTIONS(5154), + [anon_sym_c_longdouble] = ACTIONS(5154), + [anon_sym_PLUS_EQ] = ACTIONS(5152), + [anon_sym_DASH_EQ] = ACTIONS(5152), + [anon_sym_STAR_EQ] = ACTIONS(5152), + [anon_sym_SLASH_EQ] = ACTIONS(5152), + [anon_sym_AMP_EQ] = ACTIONS(5152), + [anon_sym_PIPE_EQ] = ACTIONS(5152), + [anon_sym_xor_EQ] = ACTIONS(5152), + [anon_sym_LT_LT_EQ] = ACTIONS(5152), + [anon_sym_GT_GT_EQ] = ACTIONS(5152), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5152), + [anon_sym_return] = ACTIONS(5154), + [anon_sym_yield] = ACTIONS(5154), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_break] = ACTIONS(5154), + [anon_sym_continue] = ACTIONS(5154), + [anon_sym_defer] = ACTIONS(5154), + [anon_sym_errdefer] = ACTIONS(5154), + [anon_sym_if] = ACTIONS(5154), + [anon_sym_else] = ACTIONS(5154), + [anon_sym_while] = ACTIONS(5154), + [anon_sym_expand] = ACTIONS(5154), + [anon_sym_for] = ACTIONS(5154), + [anon_sym_match] = ACTIONS(5154), + [anon_sym_DOT_DOT] = ACTIONS(5154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5152), + [anon_sym_orelse] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5154), + [anon_sym_and] = ACTIONS(5154), + [anon_sym_EQ_EQ] = ACTIONS(5152), + [anon_sym_BANG_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5154), + [anon_sym_GT_EQ] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5154), + [anon_sym_xor] = ACTIONS(5154), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5154), + [anon_sym_LT_LT_PIPE] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(5154), + [anon_sym_SLASH] = ACTIONS(5154), + [anon_sym_catch] = ACTIONS(5154), + [anon_sym_TILDE] = ACTIONS(5152), + [anon_sym_try] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5154), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym_true] = ACTIONS(5154), + [anon_sym_false] = ACTIONS(5154), + [anon_sym_null] = ACTIONS(5154), + [anon_sym_unreachable] = ACTIONS(5154), + [anon_sym_undefined] = ACTIONS(5154), + [sym_sink] = ACTIONS(5154), + [sym_integer] = ACTIONS(5154), + [sym_float] = ACTIONS(5152), + [anon_sym_DQUOTE] = ACTIONS(5152), + [sym_multiline_string] = ACTIONS(5152), + [sym_character] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5152), + }, + [STATE(2355)] = { + [ts_builtin_sym_end] = ACTIONS(5156), + [sym_identifier] = ACTIONS(5158), + [anon_sym_import] = ACTIONS(5158), + [anon_sym_test] = ACTIONS(5158), + [anon_sym_hide] = ACTIONS(5158), + [anon_sym_func] = ACTIONS(5158), + [anon_sym_BANG] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_struct] = ACTIONS(5158), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_RPAREN] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5156), + [anon_sym_COMMA] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5158), + [anon_sym_QMARK] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(5156), + [anon_sym_RBRACK] = ACTIONS(5156), + [anon_sym_void] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym_type] = ACTIONS(5158), + [anon_sym_anyopaque] = ACTIONS(5158), + [anon_sym_bool] = ACTIONS(5158), + [anon_sym_int] = ACTIONS(5158), + [anon_sym_uint] = ACTIONS(5158), + [anon_sym_float] = ACTIONS(5158), + [anon_sym_range] = ACTIONS(5158), + [anon_sym_i8] = ACTIONS(5158), + [anon_sym_i16] = ACTIONS(5158), + [anon_sym_i32] = ACTIONS(5158), + [anon_sym_i64] = ACTIONS(5158), + [anon_sym_u8] = ACTIONS(5158), + [anon_sym_u16] = ACTIONS(5158), + [anon_sym_u32] = ACTIONS(5158), + [anon_sym_u64] = ACTIONS(5158), + [anon_sym_isize] = ACTIONS(5158), + [anon_sym_usize] = ACTIONS(5158), + [anon_sym_f32] = ACTIONS(5158), + [anon_sym_f64] = ACTIONS(5158), + [anon_sym_c_char] = ACTIONS(5158), + [anon_sym_c_schar] = ACTIONS(5158), + [anon_sym_c_uchar] = ACTIONS(5158), + [anon_sym_c_short] = ACTIONS(5158), + [anon_sym_c_ushort] = ACTIONS(5158), + [anon_sym_c_int] = ACTIONS(5158), + [anon_sym_c_uint] = ACTIONS(5158), + [anon_sym_c_long] = ACTIONS(5158), + [anon_sym_c_ulong] = ACTIONS(5158), + [anon_sym_c_longlong] = ACTIONS(5158), + [anon_sym_c_ulonglong] = ACTIONS(5158), + [anon_sym_c_float] = ACTIONS(5158), + [anon_sym_c_double] = ACTIONS(5158), + [anon_sym_c_longdouble] = ACTIONS(5158), + [anon_sym_PLUS_EQ] = ACTIONS(5156), + [anon_sym_DASH_EQ] = ACTIONS(5156), + [anon_sym_STAR_EQ] = ACTIONS(5156), + [anon_sym_SLASH_EQ] = ACTIONS(5156), + [anon_sym_AMP_EQ] = ACTIONS(5156), + [anon_sym_PIPE_EQ] = ACTIONS(5156), + [anon_sym_xor_EQ] = ACTIONS(5156), + [anon_sym_LT_LT_EQ] = ACTIONS(5156), + [anon_sym_GT_GT_EQ] = ACTIONS(5156), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5156), + [anon_sym_return] = ACTIONS(5158), + [anon_sym_yield] = ACTIONS(5158), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_break] = ACTIONS(5158), + [anon_sym_continue] = ACTIONS(5158), + [anon_sym_defer] = ACTIONS(5158), + [anon_sym_errdefer] = ACTIONS(5158), + [anon_sym_if] = ACTIONS(5158), + [anon_sym_else] = ACTIONS(5158), + [anon_sym_while] = ACTIONS(5158), + [anon_sym_expand] = ACTIONS(5158), + [anon_sym_for] = ACTIONS(5158), + [anon_sym_match] = ACTIONS(5158), + [anon_sym_DOT_DOT] = ACTIONS(5158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5156), + [anon_sym_orelse] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_and] = ACTIONS(5158), + [anon_sym_EQ_EQ] = ACTIONS(5156), + [anon_sym_BANG_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5158), + [anon_sym_GT_EQ] = ACTIONS(5156), + [anon_sym_AMP] = ACTIONS(5158), + [anon_sym_xor] = ACTIONS(5158), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5158), + [anon_sym_LT_LT_PIPE] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5158), + [anon_sym_SLASH] = ACTIONS(5158), + [anon_sym_catch] = ACTIONS(5158), + [anon_sym_TILDE] = ACTIONS(5156), + [anon_sym_try] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5158), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym_true] = ACTIONS(5158), + [anon_sym_false] = ACTIONS(5158), + [anon_sym_null] = ACTIONS(5158), + [anon_sym_unreachable] = ACTIONS(5158), + [anon_sym_undefined] = ACTIONS(5158), + [sym_sink] = ACTIONS(5158), + [sym_integer] = ACTIONS(5158), + [sym_float] = ACTIONS(5156), + [anon_sym_DQUOTE] = ACTIONS(5156), + [sym_multiline_string] = ACTIONS(5156), + [sym_character] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5156), + }, + [STATE(2356)] = { + [ts_builtin_sym_end] = ACTIONS(5160), + [sym_identifier] = ACTIONS(5162), + [anon_sym_import] = ACTIONS(5162), + [anon_sym_test] = ACTIONS(5162), + [anon_sym_hide] = ACTIONS(5162), + [anon_sym_func] = ACTIONS(5162), + [anon_sym_BANG] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_struct] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_RPAREN] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5160), + [anon_sym_COMMA] = ACTIONS(5160), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5160), + [anon_sym_RBRACK] = ACTIONS(5160), + [anon_sym_void] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym_type] = ACTIONS(5162), + [anon_sym_anyopaque] = ACTIONS(5162), + [anon_sym_bool] = ACTIONS(5162), + [anon_sym_int] = ACTIONS(5162), + [anon_sym_uint] = ACTIONS(5162), + [anon_sym_float] = ACTIONS(5162), + [anon_sym_range] = ACTIONS(5162), + [anon_sym_i8] = ACTIONS(5162), + [anon_sym_i16] = ACTIONS(5162), + [anon_sym_i32] = ACTIONS(5162), + [anon_sym_i64] = ACTIONS(5162), + [anon_sym_u8] = ACTIONS(5162), + [anon_sym_u16] = ACTIONS(5162), + [anon_sym_u32] = ACTIONS(5162), + [anon_sym_u64] = ACTIONS(5162), + [anon_sym_isize] = ACTIONS(5162), + [anon_sym_usize] = ACTIONS(5162), + [anon_sym_f32] = ACTIONS(5162), + [anon_sym_f64] = ACTIONS(5162), + [anon_sym_c_char] = ACTIONS(5162), + [anon_sym_c_schar] = ACTIONS(5162), + [anon_sym_c_uchar] = ACTIONS(5162), + [anon_sym_c_short] = ACTIONS(5162), + [anon_sym_c_ushort] = ACTIONS(5162), + [anon_sym_c_int] = ACTIONS(5162), + [anon_sym_c_uint] = ACTIONS(5162), + [anon_sym_c_long] = ACTIONS(5162), + [anon_sym_c_ulong] = ACTIONS(5162), + [anon_sym_c_longlong] = ACTIONS(5162), + [anon_sym_c_ulonglong] = ACTIONS(5162), + [anon_sym_c_float] = ACTIONS(5162), + [anon_sym_c_double] = ACTIONS(5162), + [anon_sym_c_longdouble] = ACTIONS(5162), + [anon_sym_PLUS_EQ] = ACTIONS(5160), + [anon_sym_DASH_EQ] = ACTIONS(5160), + [anon_sym_STAR_EQ] = ACTIONS(5160), + [anon_sym_SLASH_EQ] = ACTIONS(5160), + [anon_sym_AMP_EQ] = ACTIONS(5160), + [anon_sym_PIPE_EQ] = ACTIONS(5160), + [anon_sym_xor_EQ] = ACTIONS(5160), + [anon_sym_LT_LT_EQ] = ACTIONS(5160), + [anon_sym_GT_GT_EQ] = ACTIONS(5160), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5160), + [anon_sym_return] = ACTIONS(5162), + [anon_sym_yield] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_break] = ACTIONS(5162), + [anon_sym_continue] = ACTIONS(5162), + [anon_sym_defer] = ACTIONS(5162), + [anon_sym_errdefer] = ACTIONS(5162), + [anon_sym_if] = ACTIONS(5162), + [anon_sym_else] = ACTIONS(5162), + [anon_sym_while] = ACTIONS(5162), + [anon_sym_expand] = ACTIONS(5162), + [anon_sym_for] = ACTIONS(5162), + [anon_sym_match] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5160), + [anon_sym_orelse] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5160), + [anon_sym_BANG_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5162), + [anon_sym_xor] = ACTIONS(5162), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5162), + [anon_sym_LT_LT_PIPE] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5162), + [anon_sym_catch] = ACTIONS(5162), + [anon_sym_TILDE] = ACTIONS(5160), + [anon_sym_try] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym_true] = ACTIONS(5162), + [anon_sym_false] = ACTIONS(5162), + [anon_sym_null] = ACTIONS(5162), + [anon_sym_unreachable] = ACTIONS(5162), + [anon_sym_undefined] = ACTIONS(5162), + [sym_sink] = ACTIONS(5162), + [sym_integer] = ACTIONS(5162), + [sym_float] = ACTIONS(5160), + [anon_sym_DQUOTE] = ACTIONS(5160), + [sym_multiline_string] = ACTIONS(5160), + [sym_character] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5160), + }, + [STATE(2357)] = { + [ts_builtin_sym_end] = ACTIONS(5164), + [sym_identifier] = ACTIONS(5166), + [anon_sym_import] = ACTIONS(5166), + [anon_sym_test] = ACTIONS(5166), + [anon_sym_hide] = ACTIONS(5166), + [anon_sym_func] = ACTIONS(5166), + [anon_sym_BANG] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_struct] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_RPAREN] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5164), + [anon_sym_COMMA] = ACTIONS(5164), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5166), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5164), + [anon_sym_RBRACK] = ACTIONS(5164), + [anon_sym_void] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym_type] = ACTIONS(5166), + [anon_sym_anyopaque] = ACTIONS(5166), + [anon_sym_bool] = ACTIONS(5166), + [anon_sym_int] = ACTIONS(5166), + [anon_sym_uint] = ACTIONS(5166), + [anon_sym_float] = ACTIONS(5166), + [anon_sym_range] = ACTIONS(5166), + [anon_sym_i8] = ACTIONS(5166), + [anon_sym_i16] = ACTIONS(5166), + [anon_sym_i32] = ACTIONS(5166), + [anon_sym_i64] = ACTIONS(5166), + [anon_sym_u8] = ACTIONS(5166), + [anon_sym_u16] = ACTIONS(5166), + [anon_sym_u32] = ACTIONS(5166), + [anon_sym_u64] = ACTIONS(5166), + [anon_sym_isize] = ACTIONS(5166), + [anon_sym_usize] = ACTIONS(5166), + [anon_sym_f32] = ACTIONS(5166), + [anon_sym_f64] = ACTIONS(5166), + [anon_sym_c_char] = ACTIONS(5166), + [anon_sym_c_schar] = ACTIONS(5166), + [anon_sym_c_uchar] = ACTIONS(5166), + [anon_sym_c_short] = ACTIONS(5166), + [anon_sym_c_ushort] = ACTIONS(5166), + [anon_sym_c_int] = ACTIONS(5166), + [anon_sym_c_uint] = ACTIONS(5166), + [anon_sym_c_long] = ACTIONS(5166), + [anon_sym_c_ulong] = ACTIONS(5166), + [anon_sym_c_longlong] = ACTIONS(5166), + [anon_sym_c_ulonglong] = ACTIONS(5166), + [anon_sym_c_float] = ACTIONS(5166), + [anon_sym_c_double] = ACTIONS(5166), + [anon_sym_c_longdouble] = ACTIONS(5166), + [anon_sym_PLUS_EQ] = ACTIONS(5164), + [anon_sym_DASH_EQ] = ACTIONS(5164), + [anon_sym_STAR_EQ] = ACTIONS(5164), + [anon_sym_SLASH_EQ] = ACTIONS(5164), + [anon_sym_AMP_EQ] = ACTIONS(5164), + [anon_sym_PIPE_EQ] = ACTIONS(5164), + [anon_sym_xor_EQ] = ACTIONS(5164), + [anon_sym_LT_LT_EQ] = ACTIONS(5164), + [anon_sym_GT_GT_EQ] = ACTIONS(5164), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5164), + [anon_sym_return] = ACTIONS(5166), + [anon_sym_yield] = ACTIONS(5166), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_break] = ACTIONS(5166), + [anon_sym_continue] = ACTIONS(5166), + [anon_sym_defer] = ACTIONS(5166), + [anon_sym_errdefer] = ACTIONS(5166), + [anon_sym_if] = ACTIONS(5166), + [anon_sym_else] = ACTIONS(5166), + [anon_sym_while] = ACTIONS(5166), + [anon_sym_expand] = ACTIONS(5166), + [anon_sym_for] = ACTIONS(5166), + [anon_sym_match] = ACTIONS(5166), + [anon_sym_DOT_DOT] = ACTIONS(5166), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5164), + [anon_sym_orelse] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5166), + [anon_sym_and] = ACTIONS(5166), + [anon_sym_EQ_EQ] = ACTIONS(5164), + [anon_sym_BANG_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5166), + [anon_sym_GT_EQ] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5166), + [anon_sym_xor] = ACTIONS(5166), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5166), + [anon_sym_LT_LT_PIPE] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5166), + [anon_sym_SLASH] = ACTIONS(5166), + [anon_sym_catch] = ACTIONS(5166), + [anon_sym_TILDE] = ACTIONS(5164), + [anon_sym_try] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5166), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_true] = ACTIONS(5166), + [anon_sym_false] = ACTIONS(5166), + [anon_sym_null] = ACTIONS(5166), + [anon_sym_unreachable] = ACTIONS(5166), + [anon_sym_undefined] = ACTIONS(5166), + [sym_sink] = ACTIONS(5166), + [sym_integer] = ACTIONS(5166), + [sym_float] = ACTIONS(5164), + [anon_sym_DQUOTE] = ACTIONS(5164), + [sym_multiline_string] = ACTIONS(5164), + [sym_character] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5164), + }, + [STATE(2358)] = { + [ts_builtin_sym_end] = ACTIONS(5168), + [sym_identifier] = ACTIONS(5170), + [anon_sym_import] = ACTIONS(5170), + [anon_sym_test] = ACTIONS(5170), + [anon_sym_hide] = ACTIONS(5170), + [anon_sym_func] = ACTIONS(5170), + [anon_sym_BANG] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_struct] = ACTIONS(5170), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5168), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_QMARK] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5168), + [anon_sym_RBRACK] = ACTIONS(5168), + [anon_sym_void] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym_type] = ACTIONS(5170), + [anon_sym_anyopaque] = ACTIONS(5170), + [anon_sym_bool] = ACTIONS(5170), + [anon_sym_int] = ACTIONS(5170), + [anon_sym_uint] = ACTIONS(5170), + [anon_sym_float] = ACTIONS(5170), + [anon_sym_range] = ACTIONS(5170), + [anon_sym_i8] = ACTIONS(5170), + [anon_sym_i16] = ACTIONS(5170), + [anon_sym_i32] = ACTIONS(5170), + [anon_sym_i64] = ACTIONS(5170), + [anon_sym_u8] = ACTIONS(5170), + [anon_sym_u16] = ACTIONS(5170), + [anon_sym_u32] = ACTIONS(5170), + [anon_sym_u64] = ACTIONS(5170), + [anon_sym_isize] = ACTIONS(5170), + [anon_sym_usize] = ACTIONS(5170), + [anon_sym_f32] = ACTIONS(5170), + [anon_sym_f64] = ACTIONS(5170), + [anon_sym_c_char] = ACTIONS(5170), + [anon_sym_c_schar] = ACTIONS(5170), + [anon_sym_c_uchar] = ACTIONS(5170), + [anon_sym_c_short] = ACTIONS(5170), + [anon_sym_c_ushort] = ACTIONS(5170), + [anon_sym_c_int] = ACTIONS(5170), + [anon_sym_c_uint] = ACTIONS(5170), + [anon_sym_c_long] = ACTIONS(5170), + [anon_sym_c_ulong] = ACTIONS(5170), + [anon_sym_c_longlong] = ACTIONS(5170), + [anon_sym_c_ulonglong] = ACTIONS(5170), + [anon_sym_c_float] = ACTIONS(5170), + [anon_sym_c_double] = ACTIONS(5170), + [anon_sym_c_longdouble] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_STAR_EQ] = ACTIONS(5168), + [anon_sym_SLASH_EQ] = ACTIONS(5168), + [anon_sym_AMP_EQ] = ACTIONS(5168), + [anon_sym_PIPE_EQ] = ACTIONS(5168), + [anon_sym_xor_EQ] = ACTIONS(5168), + [anon_sym_LT_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_GT_EQ] = ACTIONS(5168), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5168), + [anon_sym_return] = ACTIONS(5170), + [anon_sym_yield] = ACTIONS(5170), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_break] = ACTIONS(5170), + [anon_sym_continue] = ACTIONS(5170), + [anon_sym_defer] = ACTIONS(5170), + [anon_sym_errdefer] = ACTIONS(5170), + [anon_sym_if] = ACTIONS(5170), + [anon_sym_else] = ACTIONS(5170), + [anon_sym_while] = ACTIONS(5170), + [anon_sym_expand] = ACTIONS(5170), + [anon_sym_for] = ACTIONS(5170), + [anon_sym_match] = ACTIONS(5170), + [anon_sym_DOT_DOT] = ACTIONS(5170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5168), + [anon_sym_orelse] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), + [anon_sym_xor] = ACTIONS(5170), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5170), + [anon_sym_LT_LT_PIPE] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_SLASH] = ACTIONS(5170), + [anon_sym_catch] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5168), + [anon_sym_try] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym_true] = ACTIONS(5170), + [anon_sym_false] = ACTIONS(5170), + [anon_sym_null] = ACTIONS(5170), + [anon_sym_unreachable] = ACTIONS(5170), + [anon_sym_undefined] = ACTIONS(5170), + [sym_sink] = ACTIONS(5170), + [sym_integer] = ACTIONS(5170), + [sym_float] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [sym_multiline_string] = ACTIONS(5168), + [sym_character] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5168), + }, + [STATE(2359)] = { + [ts_builtin_sym_end] = ACTIONS(5172), + [sym_identifier] = ACTIONS(5174), + [anon_sym_import] = ACTIONS(5174), + [anon_sym_test] = ACTIONS(5174), + [anon_sym_hide] = ACTIONS(5174), + [anon_sym_func] = ACTIONS(5174), + [anon_sym_BANG] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_RPAREN] = ACTIONS(5172), + [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_COMMA] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_QMARK] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5172), + [anon_sym_RBRACK] = ACTIONS(5172), + [anon_sym_void] = ACTIONS(5174), + [anon_sym_noreturn] = ACTIONS(5174), + [anon_sym_type] = ACTIONS(5174), + [anon_sym_anyopaque] = ACTIONS(5174), + [anon_sym_bool] = ACTIONS(5174), + [anon_sym_int] = ACTIONS(5174), + [anon_sym_uint] = ACTIONS(5174), + [anon_sym_float] = ACTIONS(5174), + [anon_sym_range] = ACTIONS(5174), + [anon_sym_i8] = ACTIONS(5174), + [anon_sym_i16] = ACTIONS(5174), + [anon_sym_i32] = ACTIONS(5174), + [anon_sym_i64] = ACTIONS(5174), + [anon_sym_u8] = ACTIONS(5174), + [anon_sym_u16] = ACTIONS(5174), + [anon_sym_u32] = ACTIONS(5174), + [anon_sym_u64] = ACTIONS(5174), + [anon_sym_isize] = ACTIONS(5174), + [anon_sym_usize] = ACTIONS(5174), + [anon_sym_f32] = ACTIONS(5174), + [anon_sym_f64] = ACTIONS(5174), + [anon_sym_c_char] = ACTIONS(5174), + [anon_sym_c_schar] = ACTIONS(5174), + [anon_sym_c_uchar] = ACTIONS(5174), + [anon_sym_c_short] = ACTIONS(5174), + [anon_sym_c_ushort] = ACTIONS(5174), + [anon_sym_c_int] = ACTIONS(5174), + [anon_sym_c_uint] = ACTIONS(5174), + [anon_sym_c_long] = ACTIONS(5174), + [anon_sym_c_ulong] = ACTIONS(5174), + [anon_sym_c_longlong] = ACTIONS(5174), + [anon_sym_c_ulonglong] = ACTIONS(5174), + [anon_sym_c_float] = ACTIONS(5174), + [anon_sym_c_double] = ACTIONS(5174), + [anon_sym_c_longdouble] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5172), + [anon_sym_DASH_EQ] = ACTIONS(5172), + [anon_sym_STAR_EQ] = ACTIONS(5172), + [anon_sym_SLASH_EQ] = ACTIONS(5172), + [anon_sym_AMP_EQ] = ACTIONS(5172), + [anon_sym_PIPE_EQ] = ACTIONS(5172), + [anon_sym_xor_EQ] = ACTIONS(5172), + [anon_sym_LT_LT_EQ] = ACTIONS(5172), + [anon_sym_GT_GT_EQ] = ACTIONS(5172), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5172), + [anon_sym_return] = ACTIONS(5174), + [anon_sym_yield] = ACTIONS(5174), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_break] = ACTIONS(5174), + [anon_sym_continue] = ACTIONS(5174), + [anon_sym_defer] = ACTIONS(5174), + [anon_sym_errdefer] = ACTIONS(5174), + [anon_sym_if] = ACTIONS(5174), + [anon_sym_else] = ACTIONS(5174), + [anon_sym_while] = ACTIONS(5174), + [anon_sym_expand] = ACTIONS(5174), + [anon_sym_for] = ACTIONS(5174), + [anon_sym_match] = ACTIONS(5174), + [anon_sym_DOT_DOT] = ACTIONS(5174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5172), + [anon_sym_orelse] = ACTIONS(5174), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5174), + [anon_sym_LT_LT_PIPE] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_catch] = ACTIONS(5174), + [anon_sym_TILDE] = ACTIONS(5172), + [anon_sym_try] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym_true] = ACTIONS(5174), + [anon_sym_false] = ACTIONS(5174), + [anon_sym_null] = ACTIONS(5174), + [anon_sym_unreachable] = ACTIONS(5174), + [anon_sym_undefined] = ACTIONS(5174), + [sym_sink] = ACTIONS(5174), + [sym_integer] = ACTIONS(5174), + [sym_float] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [sym_multiline_string] = ACTIONS(5172), + [sym_character] = ACTIONS(5172), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5172), + }, + [STATE(2360)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2361), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5176), + }, + [STATE(2361)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2362)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8610), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2365), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5178), + }, + [STATE(2363)] = { + [ts_builtin_sym_end] = ACTIONS(5180), + [sym_identifier] = ACTIONS(5182), + [anon_sym_import] = ACTIONS(5182), + [anon_sym_test] = ACTIONS(5182), + [anon_sym_hide] = ACTIONS(5182), + [anon_sym_func] = ACTIONS(5182), + [anon_sym_BANG] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_LPAREN] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5180), + [anon_sym_COMMA] = ACTIONS(5180), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_QMARK] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5180), + [anon_sym_void] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym_type] = ACTIONS(5182), + [anon_sym_anyopaque] = ACTIONS(5182), + [anon_sym_bool] = ACTIONS(5182), + [anon_sym_int] = ACTIONS(5182), + [anon_sym_uint] = ACTIONS(5182), + [anon_sym_float] = ACTIONS(5182), + [anon_sym_range] = ACTIONS(5182), + [anon_sym_i8] = ACTIONS(5182), + [anon_sym_i16] = ACTIONS(5182), + [anon_sym_i32] = ACTIONS(5182), + [anon_sym_i64] = ACTIONS(5182), + [anon_sym_u8] = ACTIONS(5182), + [anon_sym_u16] = ACTIONS(5182), + [anon_sym_u32] = ACTIONS(5182), + [anon_sym_u64] = ACTIONS(5182), + [anon_sym_isize] = ACTIONS(5182), + [anon_sym_usize] = ACTIONS(5182), + [anon_sym_f32] = ACTIONS(5182), + [anon_sym_f64] = ACTIONS(5182), + [anon_sym_c_char] = ACTIONS(5182), + [anon_sym_c_schar] = ACTIONS(5182), + [anon_sym_c_uchar] = ACTIONS(5182), + [anon_sym_c_short] = ACTIONS(5182), + [anon_sym_c_ushort] = ACTIONS(5182), + [anon_sym_c_int] = ACTIONS(5182), + [anon_sym_c_uint] = ACTIONS(5182), + [anon_sym_c_long] = ACTIONS(5182), + [anon_sym_c_ulong] = ACTIONS(5182), + [anon_sym_c_longlong] = ACTIONS(5182), + [anon_sym_c_ulonglong] = ACTIONS(5182), + [anon_sym_c_float] = ACTIONS(5182), + [anon_sym_c_double] = ACTIONS(5182), + [anon_sym_c_longdouble] = ACTIONS(5182), + [anon_sym_PLUS_EQ] = ACTIONS(5180), + [anon_sym_DASH_EQ] = ACTIONS(5180), + [anon_sym_STAR_EQ] = ACTIONS(5180), + [anon_sym_SLASH_EQ] = ACTIONS(5180), + [anon_sym_AMP_EQ] = ACTIONS(5180), + [anon_sym_PIPE_EQ] = ACTIONS(5180), + [anon_sym_xor_EQ] = ACTIONS(5180), + [anon_sym_LT_LT_EQ] = ACTIONS(5180), + [anon_sym_GT_GT_EQ] = ACTIONS(5180), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5180), + [anon_sym_return] = ACTIONS(5182), + [anon_sym_yield] = ACTIONS(5182), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_break] = ACTIONS(5182), + [anon_sym_continue] = ACTIONS(5182), + [anon_sym_defer] = ACTIONS(5182), + [anon_sym_errdefer] = ACTIONS(5182), + [anon_sym_if] = ACTIONS(5182), + [anon_sym_else] = ACTIONS(5182), + [anon_sym_while] = ACTIONS(5182), + [anon_sym_expand] = ACTIONS(5182), + [anon_sym_for] = ACTIONS(5182), + [anon_sym_match] = ACTIONS(5182), + [anon_sym_DOT_DOT] = ACTIONS(5182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5180), + [anon_sym_orelse] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_BANG_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5182), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5182), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5182), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5182), + [anon_sym_LT_LT_PIPE] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5182), + [anon_sym_catch] = ACTIONS(5182), + [anon_sym_TILDE] = ACTIONS(5180), + [anon_sym_try] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5182), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_true] = ACTIONS(5182), + [anon_sym_false] = ACTIONS(5182), + [anon_sym_null] = ACTIONS(5182), + [anon_sym_unreachable] = ACTIONS(5182), + [anon_sym_undefined] = ACTIONS(5182), + [sym_sink] = ACTIONS(5182), + [sym_integer] = ACTIONS(5182), + [sym_float] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [sym_multiline_string] = ACTIONS(5180), + [sym_character] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5180), + }, + [STATE(2364)] = { + [ts_builtin_sym_end] = ACTIONS(5184), + [sym_identifier] = ACTIONS(5186), + [anon_sym_import] = ACTIONS(5186), + [anon_sym_test] = ACTIONS(5186), + [anon_sym_hide] = ACTIONS(5186), + [anon_sym_func] = ACTIONS(5186), + [anon_sym_BANG] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_struct] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5184), + [anon_sym_COMMA] = ACTIONS(5184), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_QMARK] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_RBRACK] = ACTIONS(5184), + [anon_sym_void] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym_type] = ACTIONS(5186), + [anon_sym_anyopaque] = ACTIONS(5186), + [anon_sym_bool] = ACTIONS(5186), + [anon_sym_int] = ACTIONS(5186), + [anon_sym_uint] = ACTIONS(5186), + [anon_sym_float] = ACTIONS(5186), + [anon_sym_range] = ACTIONS(5186), + [anon_sym_i8] = ACTIONS(5186), + [anon_sym_i16] = ACTIONS(5186), + [anon_sym_i32] = ACTIONS(5186), + [anon_sym_i64] = ACTIONS(5186), + [anon_sym_u8] = ACTIONS(5186), + [anon_sym_u16] = ACTIONS(5186), + [anon_sym_u32] = ACTIONS(5186), + [anon_sym_u64] = ACTIONS(5186), + [anon_sym_isize] = ACTIONS(5186), + [anon_sym_usize] = ACTIONS(5186), + [anon_sym_f32] = ACTIONS(5186), + [anon_sym_f64] = ACTIONS(5186), + [anon_sym_c_char] = ACTIONS(5186), + [anon_sym_c_schar] = ACTIONS(5186), + [anon_sym_c_uchar] = ACTIONS(5186), + [anon_sym_c_short] = ACTIONS(5186), + [anon_sym_c_ushort] = ACTIONS(5186), + [anon_sym_c_int] = ACTIONS(5186), + [anon_sym_c_uint] = ACTIONS(5186), + [anon_sym_c_long] = ACTIONS(5186), + [anon_sym_c_ulong] = ACTIONS(5186), + [anon_sym_c_longlong] = ACTIONS(5186), + [anon_sym_c_ulonglong] = ACTIONS(5186), + [anon_sym_c_float] = ACTIONS(5186), + [anon_sym_c_double] = ACTIONS(5186), + [anon_sym_c_longdouble] = ACTIONS(5186), + [anon_sym_PLUS_EQ] = ACTIONS(5184), + [anon_sym_DASH_EQ] = ACTIONS(5184), + [anon_sym_STAR_EQ] = ACTIONS(5184), + [anon_sym_SLASH_EQ] = ACTIONS(5184), + [anon_sym_AMP_EQ] = ACTIONS(5184), + [anon_sym_PIPE_EQ] = ACTIONS(5184), + [anon_sym_xor_EQ] = ACTIONS(5184), + [anon_sym_LT_LT_EQ] = ACTIONS(5184), + [anon_sym_GT_GT_EQ] = ACTIONS(5184), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5184), + [anon_sym_return] = ACTIONS(5186), + [anon_sym_yield] = ACTIONS(5186), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_break] = ACTIONS(5186), + [anon_sym_continue] = ACTIONS(5186), + [anon_sym_defer] = ACTIONS(5186), + [anon_sym_errdefer] = ACTIONS(5186), + [anon_sym_if] = ACTIONS(5186), + [anon_sym_else] = ACTIONS(5186), + [anon_sym_while] = ACTIONS(5186), + [anon_sym_expand] = ACTIONS(5186), + [anon_sym_for] = ACTIONS(5186), + [anon_sym_match] = ACTIONS(5186), + [anon_sym_DOT_DOT] = ACTIONS(5186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5184), + [anon_sym_orelse] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5186), + [anon_sym_and] = ACTIONS(5186), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5186), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5186), + [anon_sym_xor] = ACTIONS(5186), + [anon_sym_LT_LT] = ACTIONS(5186), + [anon_sym_GT_GT] = ACTIONS(5186), + [anon_sym_LT_LT_PIPE] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5186), + [anon_sym_SLASH] = ACTIONS(5186), + [anon_sym_catch] = ACTIONS(5186), + [anon_sym_TILDE] = ACTIONS(5184), + [anon_sym_try] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5186), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_true] = ACTIONS(5186), + [anon_sym_false] = ACTIONS(5186), + [anon_sym_null] = ACTIONS(5186), + [anon_sym_unreachable] = ACTIONS(5186), + [anon_sym_undefined] = ACTIONS(5186), + [sym_sink] = ACTIONS(5186), + [sym_integer] = ACTIONS(5186), + [sym_float] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [sym_multiline_string] = ACTIONS(5184), + [sym_character] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5184), + }, + [STATE(2365)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8736), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2366)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8533), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2371), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5188), + }, + [STATE(2367)] = { + [ts_builtin_sym_end] = ACTIONS(5190), + [sym_identifier] = ACTIONS(5192), + [anon_sym_import] = ACTIONS(5192), + [anon_sym_test] = ACTIONS(5192), + [anon_sym_hide] = ACTIONS(5192), + [anon_sym_func] = ACTIONS(5192), + [anon_sym_BANG] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_struct] = ACTIONS(5192), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_RPAREN] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_COMMA] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5192), + [anon_sym_DOLLAR] = ACTIONS(5190), + [anon_sym_PIPE] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_SEMI] = ACTIONS(5190), + [anon_sym_RBRACK] = ACTIONS(5190), + [anon_sym_void] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym_type] = ACTIONS(5192), + [anon_sym_anyopaque] = ACTIONS(5192), + [anon_sym_bool] = ACTIONS(5192), + [anon_sym_int] = ACTIONS(5192), + [anon_sym_uint] = ACTIONS(5192), + [anon_sym_float] = ACTIONS(5192), + [anon_sym_range] = ACTIONS(5192), + [anon_sym_i8] = ACTIONS(5192), + [anon_sym_i16] = ACTIONS(5192), + [anon_sym_i32] = ACTIONS(5192), + [anon_sym_i64] = ACTIONS(5192), + [anon_sym_u8] = ACTIONS(5192), + [anon_sym_u16] = ACTIONS(5192), + [anon_sym_u32] = ACTIONS(5192), + [anon_sym_u64] = ACTIONS(5192), + [anon_sym_isize] = ACTIONS(5192), + [anon_sym_usize] = ACTIONS(5192), + [anon_sym_f32] = ACTIONS(5192), + [anon_sym_f64] = ACTIONS(5192), + [anon_sym_c_char] = ACTIONS(5192), + [anon_sym_c_schar] = ACTIONS(5192), + [anon_sym_c_uchar] = ACTIONS(5192), + [anon_sym_c_short] = ACTIONS(5192), + [anon_sym_c_ushort] = ACTIONS(5192), + [anon_sym_c_int] = ACTIONS(5192), + [anon_sym_c_uint] = ACTIONS(5192), + [anon_sym_c_long] = ACTIONS(5192), + [anon_sym_c_ulong] = ACTIONS(5192), + [anon_sym_c_longlong] = ACTIONS(5192), + [anon_sym_c_ulonglong] = ACTIONS(5192), + [anon_sym_c_float] = ACTIONS(5192), + [anon_sym_c_double] = ACTIONS(5192), + [anon_sym_c_longdouble] = ACTIONS(5192), + [anon_sym_PLUS_EQ] = ACTIONS(5190), + [anon_sym_DASH_EQ] = ACTIONS(5190), + [anon_sym_STAR_EQ] = ACTIONS(5190), + [anon_sym_SLASH_EQ] = ACTIONS(5190), + [anon_sym_AMP_EQ] = ACTIONS(5190), + [anon_sym_PIPE_EQ] = ACTIONS(5190), + [anon_sym_xor_EQ] = ACTIONS(5190), + [anon_sym_LT_LT_EQ] = ACTIONS(5190), + [anon_sym_GT_GT_EQ] = ACTIONS(5190), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5190), + [anon_sym_return] = ACTIONS(5192), + [anon_sym_yield] = ACTIONS(5192), + [anon_sym_COLON] = ACTIONS(5190), + [anon_sym_break] = ACTIONS(5192), + [anon_sym_continue] = ACTIONS(5192), + [anon_sym_defer] = ACTIONS(5192), + [anon_sym_errdefer] = ACTIONS(5192), + [anon_sym_if] = ACTIONS(5192), + [anon_sym_else] = ACTIONS(5192), + [anon_sym_while] = ACTIONS(5192), + [anon_sym_expand] = ACTIONS(5192), + [anon_sym_for] = ACTIONS(5192), + [anon_sym_match] = ACTIONS(5192), + [anon_sym_DOT_DOT] = ACTIONS(5192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5190), + [anon_sym_orelse] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_EQ_EQ] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_GT] = ACTIONS(5192), + [anon_sym_GT_EQ] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5192), + [anon_sym_xor] = ACTIONS(5192), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5192), + [anon_sym_LT_LT_PIPE] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5192), + [anon_sym_SLASH] = ACTIONS(5192), + [anon_sym_catch] = ACTIONS(5192), + [anon_sym_TILDE] = ACTIONS(5190), + [anon_sym_try] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5192), + [anon_sym_CARET] = ACTIONS(5190), + [anon_sym_true] = ACTIONS(5192), + [anon_sym_false] = ACTIONS(5192), + [anon_sym_null] = ACTIONS(5192), + [anon_sym_unreachable] = ACTIONS(5192), + [anon_sym_undefined] = ACTIONS(5192), + [sym_sink] = ACTIONS(5192), + [sym_integer] = ACTIONS(5192), + [sym_float] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(5190), + [sym_multiline_string] = ACTIONS(5190), + [sym_character] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5190), + }, + [STATE(2368)] = { + [ts_builtin_sym_end] = ACTIONS(5194), + [sym_identifier] = ACTIONS(5196), + [anon_sym_import] = ACTIONS(5196), + [anon_sym_test] = ACTIONS(5196), + [anon_sym_hide] = ACTIONS(5196), + [anon_sym_func] = ACTIONS(5196), + [anon_sym_BANG] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_RPAREN] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_COMMA] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_QMARK] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5194), + [anon_sym_RBRACK] = ACTIONS(5194), + [anon_sym_void] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym_type] = ACTIONS(5196), + [anon_sym_anyopaque] = ACTIONS(5196), + [anon_sym_bool] = ACTIONS(5196), + [anon_sym_int] = ACTIONS(5196), + [anon_sym_uint] = ACTIONS(5196), + [anon_sym_float] = ACTIONS(5196), + [anon_sym_range] = ACTIONS(5196), + [anon_sym_i8] = ACTIONS(5196), + [anon_sym_i16] = ACTIONS(5196), + [anon_sym_i32] = ACTIONS(5196), + [anon_sym_i64] = ACTIONS(5196), + [anon_sym_u8] = ACTIONS(5196), + [anon_sym_u16] = ACTIONS(5196), + [anon_sym_u32] = ACTIONS(5196), + [anon_sym_u64] = ACTIONS(5196), + [anon_sym_isize] = ACTIONS(5196), + [anon_sym_usize] = ACTIONS(5196), + [anon_sym_f32] = ACTIONS(5196), + [anon_sym_f64] = ACTIONS(5196), + [anon_sym_c_char] = ACTIONS(5196), + [anon_sym_c_schar] = ACTIONS(5196), + [anon_sym_c_uchar] = ACTIONS(5196), + [anon_sym_c_short] = ACTIONS(5196), + [anon_sym_c_ushort] = ACTIONS(5196), + [anon_sym_c_int] = ACTIONS(5196), + [anon_sym_c_uint] = ACTIONS(5196), + [anon_sym_c_long] = ACTIONS(5196), + [anon_sym_c_ulong] = ACTIONS(5196), + [anon_sym_c_longlong] = ACTIONS(5196), + [anon_sym_c_ulonglong] = ACTIONS(5196), + [anon_sym_c_float] = ACTIONS(5196), + [anon_sym_c_double] = ACTIONS(5196), + [anon_sym_c_longdouble] = ACTIONS(5196), + [anon_sym_PLUS_EQ] = ACTIONS(5194), + [anon_sym_DASH_EQ] = ACTIONS(5194), + [anon_sym_STAR_EQ] = ACTIONS(5194), + [anon_sym_SLASH_EQ] = ACTIONS(5194), + [anon_sym_AMP_EQ] = ACTIONS(5194), + [anon_sym_PIPE_EQ] = ACTIONS(5194), + [anon_sym_xor_EQ] = ACTIONS(5194), + [anon_sym_LT_LT_EQ] = ACTIONS(5194), + [anon_sym_GT_GT_EQ] = ACTIONS(5194), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5194), + [anon_sym_return] = ACTIONS(5196), + [anon_sym_yield] = ACTIONS(5196), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_break] = ACTIONS(5196), + [anon_sym_continue] = ACTIONS(5196), + [anon_sym_defer] = ACTIONS(5196), + [anon_sym_errdefer] = ACTIONS(5196), + [anon_sym_if] = ACTIONS(5196), + [anon_sym_else] = ACTIONS(5196), + [anon_sym_while] = ACTIONS(5196), + [anon_sym_expand] = ACTIONS(5196), + [anon_sym_for] = ACTIONS(5196), + [anon_sym_match] = ACTIONS(5196), + [anon_sym_DOT_DOT] = ACTIONS(5196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5194), + [anon_sym_orelse] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_EQ_EQ] = ACTIONS(5194), + [anon_sym_BANG_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5196), + [anon_sym_GT_EQ] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_xor] = ACTIONS(5196), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5196), + [anon_sym_LT_LT_PIPE] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5196), + [anon_sym_SLASH] = ACTIONS(5196), + [anon_sym_catch] = ACTIONS(5196), + [anon_sym_TILDE] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5196), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym_true] = ACTIONS(5196), + [anon_sym_false] = ACTIONS(5196), + [anon_sym_null] = ACTIONS(5196), + [anon_sym_unreachable] = ACTIONS(5196), + [anon_sym_undefined] = ACTIONS(5196), + [sym_sink] = ACTIONS(5196), + [sym_integer] = ACTIONS(5196), + [sym_float] = ACTIONS(5194), + [anon_sym_DQUOTE] = ACTIONS(5194), + [sym_multiline_string] = ACTIONS(5194), + [sym_character] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5194), + }, + [STATE(2369)] = { + [ts_builtin_sym_end] = ACTIONS(5198), + [sym_identifier] = ACTIONS(5200), + [anon_sym_import] = ACTIONS(5200), + [anon_sym_test] = ACTIONS(5200), + [anon_sym_hide] = ACTIONS(5200), + [anon_sym_func] = ACTIONS(5200), + [anon_sym_BANG] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_struct] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_RPAREN] = ACTIONS(5198), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_QMARK] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_SEMI] = ACTIONS(5198), + [anon_sym_RBRACK] = ACTIONS(5198), + [anon_sym_void] = ACTIONS(5200), + [anon_sym_noreturn] = ACTIONS(5200), + [anon_sym_type] = ACTIONS(5200), + [anon_sym_anyopaque] = ACTIONS(5200), + [anon_sym_bool] = ACTIONS(5200), + [anon_sym_int] = ACTIONS(5200), + [anon_sym_uint] = ACTIONS(5200), + [anon_sym_float] = ACTIONS(5200), + [anon_sym_range] = ACTIONS(5200), + [anon_sym_i8] = ACTIONS(5200), + [anon_sym_i16] = ACTIONS(5200), + [anon_sym_i32] = ACTIONS(5200), + [anon_sym_i64] = ACTIONS(5200), + [anon_sym_u8] = ACTIONS(5200), + [anon_sym_u16] = ACTIONS(5200), + [anon_sym_u32] = ACTIONS(5200), + [anon_sym_u64] = ACTIONS(5200), + [anon_sym_isize] = ACTIONS(5200), + [anon_sym_usize] = ACTIONS(5200), + [anon_sym_f32] = ACTIONS(5200), + [anon_sym_f64] = ACTIONS(5200), + [anon_sym_c_char] = ACTIONS(5200), + [anon_sym_c_schar] = ACTIONS(5200), + [anon_sym_c_uchar] = ACTIONS(5200), + [anon_sym_c_short] = ACTIONS(5200), + [anon_sym_c_ushort] = ACTIONS(5200), + [anon_sym_c_int] = ACTIONS(5200), + [anon_sym_c_uint] = ACTIONS(5200), + [anon_sym_c_long] = ACTIONS(5200), + [anon_sym_c_ulong] = ACTIONS(5200), + [anon_sym_c_longlong] = ACTIONS(5200), + [anon_sym_c_ulonglong] = ACTIONS(5200), + [anon_sym_c_float] = ACTIONS(5200), + [anon_sym_c_double] = ACTIONS(5200), + [anon_sym_c_longdouble] = ACTIONS(5200), + [anon_sym_PLUS_EQ] = ACTIONS(5198), + [anon_sym_DASH_EQ] = ACTIONS(5198), + [anon_sym_STAR_EQ] = ACTIONS(5198), + [anon_sym_SLASH_EQ] = ACTIONS(5198), + [anon_sym_AMP_EQ] = ACTIONS(5198), + [anon_sym_PIPE_EQ] = ACTIONS(5198), + [anon_sym_xor_EQ] = ACTIONS(5198), + [anon_sym_LT_LT_EQ] = ACTIONS(5198), + [anon_sym_GT_GT_EQ] = ACTIONS(5198), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5198), + [anon_sym_return] = ACTIONS(5200), + [anon_sym_yield] = ACTIONS(5200), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_break] = ACTIONS(5200), + [anon_sym_continue] = ACTIONS(5200), + [anon_sym_defer] = ACTIONS(5200), + [anon_sym_errdefer] = ACTIONS(5200), + [anon_sym_if] = ACTIONS(5200), + [anon_sym_else] = ACTIONS(5200), + [anon_sym_while] = ACTIONS(5200), + [anon_sym_expand] = ACTIONS(5200), + [anon_sym_for] = ACTIONS(5200), + [anon_sym_match] = ACTIONS(5200), + [anon_sym_DOT_DOT] = ACTIONS(5200), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5198), + [anon_sym_orelse] = ACTIONS(5200), + [anon_sym_or] = ACTIONS(5200), + [anon_sym_and] = ACTIONS(5200), + [anon_sym_EQ_EQ] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5200), + [anon_sym_xor] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5200), + [anon_sym_LT_LT_PIPE] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5200), + [anon_sym_SLASH] = ACTIONS(5200), + [anon_sym_catch] = ACTIONS(5200), + [anon_sym_TILDE] = ACTIONS(5198), + [anon_sym_try] = ACTIONS(5200), + [anon_sym_DOT] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_true] = ACTIONS(5200), + [anon_sym_false] = ACTIONS(5200), + [anon_sym_null] = ACTIONS(5200), + [anon_sym_unreachable] = ACTIONS(5200), + [anon_sym_undefined] = ACTIONS(5200), + [sym_sink] = ACTIONS(5200), + [sym_integer] = ACTIONS(5200), + [sym_float] = ACTIONS(5198), + [anon_sym_DQUOTE] = ACTIONS(5198), + [sym_multiline_string] = ACTIONS(5198), + [sym_character] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5198), + }, + [STATE(2370)] = { + [ts_builtin_sym_end] = ACTIONS(5202), + [sym_identifier] = ACTIONS(5204), + [anon_sym_import] = ACTIONS(5204), + [anon_sym_test] = ACTIONS(5204), + [anon_sym_hide] = ACTIONS(5204), + [anon_sym_func] = ACTIONS(5204), + [anon_sym_BANG] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5202), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_LBRACE] = ACTIONS(5202), + [anon_sym_COMMA] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_QMARK] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5202), + [anon_sym_RBRACK] = ACTIONS(5202), + [anon_sym_void] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym_type] = ACTIONS(5204), + [anon_sym_anyopaque] = ACTIONS(5204), + [anon_sym_bool] = ACTIONS(5204), + [anon_sym_int] = ACTIONS(5204), + [anon_sym_uint] = ACTIONS(5204), + [anon_sym_float] = ACTIONS(5204), + [anon_sym_range] = ACTIONS(5204), + [anon_sym_i8] = ACTIONS(5204), + [anon_sym_i16] = ACTIONS(5204), + [anon_sym_i32] = ACTIONS(5204), + [anon_sym_i64] = ACTIONS(5204), + [anon_sym_u8] = ACTIONS(5204), + [anon_sym_u16] = ACTIONS(5204), + [anon_sym_u32] = ACTIONS(5204), + [anon_sym_u64] = ACTIONS(5204), + [anon_sym_isize] = ACTIONS(5204), + [anon_sym_usize] = ACTIONS(5204), + [anon_sym_f32] = ACTIONS(5204), + [anon_sym_f64] = ACTIONS(5204), + [anon_sym_c_char] = ACTIONS(5204), + [anon_sym_c_schar] = ACTIONS(5204), + [anon_sym_c_uchar] = ACTIONS(5204), + [anon_sym_c_short] = ACTIONS(5204), + [anon_sym_c_ushort] = ACTIONS(5204), + [anon_sym_c_int] = ACTIONS(5204), + [anon_sym_c_uint] = ACTIONS(5204), + [anon_sym_c_long] = ACTIONS(5204), + [anon_sym_c_ulong] = ACTIONS(5204), + [anon_sym_c_longlong] = ACTIONS(5204), + [anon_sym_c_ulonglong] = ACTIONS(5204), + [anon_sym_c_float] = ACTIONS(5204), + [anon_sym_c_double] = ACTIONS(5204), + [anon_sym_c_longdouble] = ACTIONS(5204), + [anon_sym_PLUS_EQ] = ACTIONS(5202), + [anon_sym_DASH_EQ] = ACTIONS(5202), + [anon_sym_STAR_EQ] = ACTIONS(5202), + [anon_sym_SLASH_EQ] = ACTIONS(5202), + [anon_sym_AMP_EQ] = ACTIONS(5202), + [anon_sym_PIPE_EQ] = ACTIONS(5202), + [anon_sym_xor_EQ] = ACTIONS(5202), + [anon_sym_LT_LT_EQ] = ACTIONS(5202), + [anon_sym_GT_GT_EQ] = ACTIONS(5202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5202), + [anon_sym_return] = ACTIONS(5204), + [anon_sym_yield] = ACTIONS(5204), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_break] = ACTIONS(5204), + [anon_sym_continue] = ACTIONS(5204), + [anon_sym_defer] = ACTIONS(5204), + [anon_sym_errdefer] = ACTIONS(5204), + [anon_sym_if] = ACTIONS(5204), + [anon_sym_else] = ACTIONS(5204), + [anon_sym_while] = ACTIONS(5204), + [anon_sym_expand] = ACTIONS(5204), + [anon_sym_for] = ACTIONS(5204), + [anon_sym_match] = ACTIONS(5204), + [anon_sym_DOT_DOT] = ACTIONS(5204), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5202), + [anon_sym_orelse] = ACTIONS(5204), + [anon_sym_or] = ACTIONS(5204), + [anon_sym_and] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym_xor] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5204), + [anon_sym_LT_LT_PIPE] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_SLASH] = ACTIONS(5204), + [anon_sym_catch] = ACTIONS(5204), + [anon_sym_TILDE] = ACTIONS(5202), + [anon_sym_try] = ACTIONS(5204), + [anon_sym_DOT] = ACTIONS(5204), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym_true] = ACTIONS(5204), + [anon_sym_false] = ACTIONS(5204), + [anon_sym_null] = ACTIONS(5204), + [anon_sym_unreachable] = ACTIONS(5204), + [anon_sym_undefined] = ACTIONS(5204), + [sym_sink] = ACTIONS(5204), + [sym_integer] = ACTIONS(5204), + [sym_float] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [sym_multiline_string] = ACTIONS(5202), + [sym_character] = ACTIONS(5202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5202), + }, + [STATE(2371)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8486), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9024), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(747), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(751), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(753), + [anon_sym_errdefer] = ACTIONS(755), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(759), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2372)] = { + [ts_builtin_sym_end] = ACTIONS(5206), + [sym_identifier] = ACTIONS(5208), + [anon_sym_import] = ACTIONS(5208), + [anon_sym_test] = ACTIONS(5208), + [anon_sym_hide] = ACTIONS(5208), + [anon_sym_func] = ACTIONS(5208), + [anon_sym_BANG] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_struct] = ACTIONS(5208), + [anon_sym_LPAREN] = ACTIONS(5206), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_LBRACE] = ACTIONS(5206), + [anon_sym_COMMA] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_QMARK] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5206), + [anon_sym_RBRACK] = ACTIONS(5206), + [anon_sym_void] = ACTIONS(5208), + [anon_sym_noreturn] = ACTIONS(5208), + [anon_sym_type] = ACTIONS(5208), + [anon_sym_anyopaque] = ACTIONS(5208), + [anon_sym_bool] = ACTIONS(5208), + [anon_sym_int] = ACTIONS(5208), + [anon_sym_uint] = ACTIONS(5208), + [anon_sym_float] = ACTIONS(5208), + [anon_sym_range] = ACTIONS(5208), + [anon_sym_i8] = ACTIONS(5208), + [anon_sym_i16] = ACTIONS(5208), + [anon_sym_i32] = ACTIONS(5208), + [anon_sym_i64] = ACTIONS(5208), + [anon_sym_u8] = ACTIONS(5208), + [anon_sym_u16] = ACTIONS(5208), + [anon_sym_u32] = ACTIONS(5208), + [anon_sym_u64] = ACTIONS(5208), + [anon_sym_isize] = ACTIONS(5208), + [anon_sym_usize] = ACTIONS(5208), + [anon_sym_f32] = ACTIONS(5208), + [anon_sym_f64] = ACTIONS(5208), + [anon_sym_c_char] = ACTIONS(5208), + [anon_sym_c_schar] = ACTIONS(5208), + [anon_sym_c_uchar] = ACTIONS(5208), + [anon_sym_c_short] = ACTIONS(5208), + [anon_sym_c_ushort] = ACTIONS(5208), + [anon_sym_c_int] = ACTIONS(5208), + [anon_sym_c_uint] = ACTIONS(5208), + [anon_sym_c_long] = ACTIONS(5208), + [anon_sym_c_ulong] = ACTIONS(5208), + [anon_sym_c_longlong] = ACTIONS(5208), + [anon_sym_c_ulonglong] = ACTIONS(5208), + [anon_sym_c_float] = ACTIONS(5208), + [anon_sym_c_double] = ACTIONS(5208), + [anon_sym_c_longdouble] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5206), + [anon_sym_DASH_EQ] = ACTIONS(5206), + [anon_sym_STAR_EQ] = ACTIONS(5206), + [anon_sym_SLASH_EQ] = ACTIONS(5206), + [anon_sym_AMP_EQ] = ACTIONS(5206), + [anon_sym_PIPE_EQ] = ACTIONS(5206), + [anon_sym_xor_EQ] = ACTIONS(5206), + [anon_sym_LT_LT_EQ] = ACTIONS(5206), + [anon_sym_GT_GT_EQ] = ACTIONS(5206), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5206), + [anon_sym_return] = ACTIONS(5208), + [anon_sym_yield] = ACTIONS(5208), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_break] = ACTIONS(5208), + [anon_sym_continue] = ACTIONS(5208), + [anon_sym_defer] = ACTIONS(5208), + [anon_sym_errdefer] = ACTIONS(5208), + [anon_sym_if] = ACTIONS(5208), + [anon_sym_else] = ACTIONS(5208), + [anon_sym_while] = ACTIONS(5208), + [anon_sym_expand] = ACTIONS(5208), + [anon_sym_for] = ACTIONS(5208), + [anon_sym_match] = ACTIONS(5208), + [anon_sym_DOT_DOT] = ACTIONS(5208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5206), + [anon_sym_orelse] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5208), + [anon_sym_and] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + [anon_sym_xor] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5208), + [anon_sym_LT_LT_PIPE] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_SLASH] = ACTIONS(5208), + [anon_sym_catch] = ACTIONS(5208), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_try] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym_true] = ACTIONS(5208), + [anon_sym_false] = ACTIONS(5208), + [anon_sym_null] = ACTIONS(5208), + [anon_sym_unreachable] = ACTIONS(5208), + [anon_sym_undefined] = ACTIONS(5208), + [sym_sink] = ACTIONS(5208), + [sym_integer] = ACTIONS(5208), + [sym_float] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [sym_multiline_string] = ACTIONS(5206), + [sym_character] = ACTIONS(5206), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5206), + }, + [STATE(2373)] = { + [ts_builtin_sym_end] = ACTIONS(5210), + [sym_identifier] = ACTIONS(5212), + [anon_sym_import] = ACTIONS(5212), + [anon_sym_test] = ACTIONS(5212), + [anon_sym_hide] = ACTIONS(5212), + [anon_sym_func] = ACTIONS(5212), + [anon_sym_BANG] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_struct] = ACTIONS(5212), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_LBRACE] = ACTIONS(5210), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5210), + [anon_sym_SEMI] = ACTIONS(5210), + [anon_sym_RBRACK] = ACTIONS(5210), + [anon_sym_void] = ACTIONS(5212), + [anon_sym_noreturn] = ACTIONS(5212), + [anon_sym_type] = ACTIONS(5212), + [anon_sym_anyopaque] = ACTIONS(5212), + [anon_sym_bool] = ACTIONS(5212), + [anon_sym_int] = ACTIONS(5212), + [anon_sym_uint] = ACTIONS(5212), + [anon_sym_float] = ACTIONS(5212), + [anon_sym_range] = ACTIONS(5212), + [anon_sym_i8] = ACTIONS(5212), + [anon_sym_i16] = ACTIONS(5212), + [anon_sym_i32] = ACTIONS(5212), + [anon_sym_i64] = ACTIONS(5212), + [anon_sym_u8] = ACTIONS(5212), + [anon_sym_u16] = ACTIONS(5212), + [anon_sym_u32] = ACTIONS(5212), + [anon_sym_u64] = ACTIONS(5212), + [anon_sym_isize] = ACTIONS(5212), + [anon_sym_usize] = ACTIONS(5212), + [anon_sym_f32] = ACTIONS(5212), + [anon_sym_f64] = ACTIONS(5212), + [anon_sym_c_char] = ACTIONS(5212), + [anon_sym_c_schar] = ACTIONS(5212), + [anon_sym_c_uchar] = ACTIONS(5212), + [anon_sym_c_short] = ACTIONS(5212), + [anon_sym_c_ushort] = ACTIONS(5212), + [anon_sym_c_int] = ACTIONS(5212), + [anon_sym_c_uint] = ACTIONS(5212), + [anon_sym_c_long] = ACTIONS(5212), + [anon_sym_c_ulong] = ACTIONS(5212), + [anon_sym_c_longlong] = ACTIONS(5212), + [anon_sym_c_ulonglong] = ACTIONS(5212), + [anon_sym_c_float] = ACTIONS(5212), + [anon_sym_c_double] = ACTIONS(5212), + [anon_sym_c_longdouble] = ACTIONS(5212), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_xor_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5210), + [anon_sym_return] = ACTIONS(5212), + [anon_sym_yield] = ACTIONS(5212), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_break] = ACTIONS(5212), + [anon_sym_continue] = ACTIONS(5212), + [anon_sym_defer] = ACTIONS(5212), + [anon_sym_errdefer] = ACTIONS(5212), + [anon_sym_if] = ACTIONS(5212), + [anon_sym_else] = ACTIONS(5212), + [anon_sym_while] = ACTIONS(5212), + [anon_sym_expand] = ACTIONS(5212), + [anon_sym_for] = ACTIONS(5212), + [anon_sym_match] = ACTIONS(5212), + [anon_sym_DOT_DOT] = ACTIONS(5212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5210), + [anon_sym_orelse] = ACTIONS(5212), + [anon_sym_or] = ACTIONS(5212), + [anon_sym_and] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), + [anon_sym_xor] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_LT_LT_PIPE] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_catch] = ACTIONS(5212), + [anon_sym_TILDE] = ACTIONS(5210), + [anon_sym_try] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_true] = ACTIONS(5212), + [anon_sym_false] = ACTIONS(5212), + [anon_sym_null] = ACTIONS(5212), + [anon_sym_unreachable] = ACTIONS(5212), + [anon_sym_undefined] = ACTIONS(5212), + [sym_sink] = ACTIONS(5212), + [sym_integer] = ACTIONS(5212), + [sym_float] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [sym_multiline_string] = ACTIONS(5210), + [sym_character] = ACTIONS(5210), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5210), + }, + [STATE(2374)] = { + [ts_builtin_sym_end] = ACTIONS(5214), + [sym_identifier] = ACTIONS(5216), + [anon_sym_import] = ACTIONS(5216), + [anon_sym_test] = ACTIONS(5216), + [anon_sym_hide] = ACTIONS(5216), + [anon_sym_func] = ACTIONS(5216), + [anon_sym_BANG] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_struct] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_RPAREN] = ACTIONS(5214), + [anon_sym_LBRACE] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(5214), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_QMARK] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_SEMI] = ACTIONS(5214), + [anon_sym_RBRACK] = ACTIONS(5214), + [anon_sym_void] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym_type] = ACTIONS(5216), + [anon_sym_anyopaque] = ACTIONS(5216), + [anon_sym_bool] = ACTIONS(5216), + [anon_sym_int] = ACTIONS(5216), + [anon_sym_uint] = ACTIONS(5216), + [anon_sym_float] = ACTIONS(5216), + [anon_sym_range] = ACTIONS(5216), + [anon_sym_i8] = ACTIONS(5216), + [anon_sym_i16] = ACTIONS(5216), + [anon_sym_i32] = ACTIONS(5216), + [anon_sym_i64] = ACTIONS(5216), + [anon_sym_u8] = ACTIONS(5216), + [anon_sym_u16] = ACTIONS(5216), + [anon_sym_u32] = ACTIONS(5216), + [anon_sym_u64] = ACTIONS(5216), + [anon_sym_isize] = ACTIONS(5216), + [anon_sym_usize] = ACTIONS(5216), + [anon_sym_f32] = ACTIONS(5216), + [anon_sym_f64] = ACTIONS(5216), + [anon_sym_c_char] = ACTIONS(5216), + [anon_sym_c_schar] = ACTIONS(5216), + [anon_sym_c_uchar] = ACTIONS(5216), + [anon_sym_c_short] = ACTIONS(5216), + [anon_sym_c_ushort] = ACTIONS(5216), + [anon_sym_c_int] = ACTIONS(5216), + [anon_sym_c_uint] = ACTIONS(5216), + [anon_sym_c_long] = ACTIONS(5216), + [anon_sym_c_ulong] = ACTIONS(5216), + [anon_sym_c_longlong] = ACTIONS(5216), + [anon_sym_c_ulonglong] = ACTIONS(5216), + [anon_sym_c_float] = ACTIONS(5216), + [anon_sym_c_double] = ACTIONS(5216), + [anon_sym_c_longdouble] = ACTIONS(5216), + [anon_sym_PLUS_EQ] = ACTIONS(5214), + [anon_sym_DASH_EQ] = ACTIONS(5214), + [anon_sym_STAR_EQ] = ACTIONS(5214), + [anon_sym_SLASH_EQ] = ACTIONS(5214), + [anon_sym_AMP_EQ] = ACTIONS(5214), + [anon_sym_PIPE_EQ] = ACTIONS(5214), + [anon_sym_xor_EQ] = ACTIONS(5214), + [anon_sym_LT_LT_EQ] = ACTIONS(5214), + [anon_sym_GT_GT_EQ] = ACTIONS(5214), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5214), + [anon_sym_return] = ACTIONS(5216), + [anon_sym_yield] = ACTIONS(5216), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_break] = ACTIONS(5216), + [anon_sym_continue] = ACTIONS(5216), + [anon_sym_defer] = ACTIONS(5216), + [anon_sym_errdefer] = ACTIONS(5216), + [anon_sym_if] = ACTIONS(5216), + [anon_sym_else] = ACTIONS(5216), + [anon_sym_while] = ACTIONS(5216), + [anon_sym_expand] = ACTIONS(5216), + [anon_sym_for] = ACTIONS(5216), + [anon_sym_match] = ACTIONS(5216), + [anon_sym_DOT_DOT] = ACTIONS(5216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5214), + [anon_sym_orelse] = ACTIONS(5216), + [anon_sym_or] = ACTIONS(5216), + [anon_sym_and] = ACTIONS(5216), + [anon_sym_EQ_EQ] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_LT_EQ] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_EQ] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), + [anon_sym_xor] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5216), + [anon_sym_LT_LT_PIPE] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5216), + [anon_sym_SLASH] = ACTIONS(5216), + [anon_sym_catch] = ACTIONS(5216), + [anon_sym_TILDE] = ACTIONS(5214), + [anon_sym_try] = ACTIONS(5216), + [anon_sym_DOT] = ACTIONS(5216), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym_true] = ACTIONS(5216), + [anon_sym_false] = ACTIONS(5216), + [anon_sym_null] = ACTIONS(5216), + [anon_sym_unreachable] = ACTIONS(5216), + [anon_sym_undefined] = ACTIONS(5216), + [sym_sink] = ACTIONS(5216), + [sym_integer] = ACTIONS(5216), + [sym_float] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [sym_multiline_string] = ACTIONS(5214), + [sym_character] = ACTIONS(5214), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5214), + }, + [STATE(2375)] = { + [ts_builtin_sym_end] = ACTIONS(5218), + [sym_identifier] = ACTIONS(5220), + [anon_sym_import] = ACTIONS(5220), + [anon_sym_test] = ACTIONS(5220), + [anon_sym_hide] = ACTIONS(5220), + [anon_sym_func] = ACTIONS(5220), + [anon_sym_BANG] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5220), + [anon_sym_struct] = ACTIONS(5220), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_RPAREN] = ACTIONS(5218), + [anon_sym_LBRACE] = ACTIONS(5218), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_QMARK] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5220), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_SEMI] = ACTIONS(5218), + [anon_sym_RBRACK] = ACTIONS(5218), + [anon_sym_void] = ACTIONS(5220), + [anon_sym_noreturn] = ACTIONS(5220), + [anon_sym_type] = ACTIONS(5220), + [anon_sym_anyopaque] = ACTIONS(5220), + [anon_sym_bool] = ACTIONS(5220), + [anon_sym_int] = ACTIONS(5220), + [anon_sym_uint] = ACTIONS(5220), + [anon_sym_float] = ACTIONS(5220), + [anon_sym_range] = ACTIONS(5220), + [anon_sym_i8] = ACTIONS(5220), + [anon_sym_i16] = ACTIONS(5220), + [anon_sym_i32] = ACTIONS(5220), + [anon_sym_i64] = ACTIONS(5220), + [anon_sym_u8] = ACTIONS(5220), + [anon_sym_u16] = ACTIONS(5220), + [anon_sym_u32] = ACTIONS(5220), + [anon_sym_u64] = ACTIONS(5220), + [anon_sym_isize] = ACTIONS(5220), + [anon_sym_usize] = ACTIONS(5220), + [anon_sym_f32] = ACTIONS(5220), + [anon_sym_f64] = ACTIONS(5220), + [anon_sym_c_char] = ACTIONS(5220), + [anon_sym_c_schar] = ACTIONS(5220), + [anon_sym_c_uchar] = ACTIONS(5220), + [anon_sym_c_short] = ACTIONS(5220), + [anon_sym_c_ushort] = ACTIONS(5220), + [anon_sym_c_int] = ACTIONS(5220), + [anon_sym_c_uint] = ACTIONS(5220), + [anon_sym_c_long] = ACTIONS(5220), + [anon_sym_c_ulong] = ACTIONS(5220), + [anon_sym_c_longlong] = ACTIONS(5220), + [anon_sym_c_ulonglong] = ACTIONS(5220), + [anon_sym_c_float] = ACTIONS(5220), + [anon_sym_c_double] = ACTIONS(5220), + [anon_sym_c_longdouble] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5218), + [anon_sym_DASH_EQ] = ACTIONS(5218), + [anon_sym_STAR_EQ] = ACTIONS(5218), + [anon_sym_SLASH_EQ] = ACTIONS(5218), + [anon_sym_AMP_EQ] = ACTIONS(5218), + [anon_sym_PIPE_EQ] = ACTIONS(5218), + [anon_sym_xor_EQ] = ACTIONS(5218), + [anon_sym_LT_LT_EQ] = ACTIONS(5218), + [anon_sym_GT_GT_EQ] = ACTIONS(5218), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5218), + [anon_sym_return] = ACTIONS(5220), + [anon_sym_yield] = ACTIONS(5220), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_break] = ACTIONS(5220), + [anon_sym_continue] = ACTIONS(5220), + [anon_sym_defer] = ACTIONS(5220), + [anon_sym_errdefer] = ACTIONS(5220), + [anon_sym_if] = ACTIONS(5220), + [anon_sym_else] = ACTIONS(5220), + [anon_sym_while] = ACTIONS(5220), + [anon_sym_expand] = ACTIONS(5220), + [anon_sym_for] = ACTIONS(5220), + [anon_sym_match] = ACTIONS(5220), + [anon_sym_DOT_DOT] = ACTIONS(5220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5218), + [anon_sym_orelse] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5220), + [anon_sym_and] = ACTIONS(5220), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_AMP] = ACTIONS(5220), + [anon_sym_xor] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5220), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_LT_LT_PIPE] = ACTIONS(5220), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_catch] = ACTIONS(5220), + [anon_sym_TILDE] = ACTIONS(5218), + [anon_sym_try] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym_true] = ACTIONS(5220), + [anon_sym_false] = ACTIONS(5220), + [anon_sym_null] = ACTIONS(5220), + [anon_sym_unreachable] = ACTIONS(5220), + [anon_sym_undefined] = ACTIONS(5220), + [sym_sink] = ACTIONS(5220), + [sym_integer] = ACTIONS(5220), + [sym_float] = ACTIONS(5218), + [anon_sym_DQUOTE] = ACTIONS(5218), + [sym_multiline_string] = ACTIONS(5218), + [sym_character] = ACTIONS(5218), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5218), + }, + [STATE(2376)] = { + [ts_builtin_sym_end] = ACTIONS(5222), + [sym_identifier] = ACTIONS(5224), + [anon_sym_import] = ACTIONS(5224), + [anon_sym_test] = ACTIONS(5224), + [anon_sym_hide] = ACTIONS(5224), + [anon_sym_func] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(5224), + [anon_sym_struct] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_DOLLAR] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_QMARK] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_void] = ACTIONS(5224), + [anon_sym_noreturn] = ACTIONS(5224), + [anon_sym_type] = ACTIONS(5224), + [anon_sym_anyopaque] = ACTIONS(5224), + [anon_sym_bool] = ACTIONS(5224), + [anon_sym_int] = ACTIONS(5224), + [anon_sym_uint] = ACTIONS(5224), + [anon_sym_float] = ACTIONS(5224), + [anon_sym_range] = ACTIONS(5224), + [anon_sym_i8] = ACTIONS(5224), + [anon_sym_i16] = ACTIONS(5224), + [anon_sym_i32] = ACTIONS(5224), + [anon_sym_i64] = ACTIONS(5224), + [anon_sym_u8] = ACTIONS(5224), + [anon_sym_u16] = ACTIONS(5224), + [anon_sym_u32] = ACTIONS(5224), + [anon_sym_u64] = ACTIONS(5224), + [anon_sym_isize] = ACTIONS(5224), + [anon_sym_usize] = ACTIONS(5224), + [anon_sym_f32] = ACTIONS(5224), + [anon_sym_f64] = ACTIONS(5224), + [anon_sym_c_char] = ACTIONS(5224), + [anon_sym_c_schar] = ACTIONS(5224), + [anon_sym_c_uchar] = ACTIONS(5224), + [anon_sym_c_short] = ACTIONS(5224), + [anon_sym_c_ushort] = ACTIONS(5224), + [anon_sym_c_int] = ACTIONS(5224), + [anon_sym_c_uint] = ACTIONS(5224), + [anon_sym_c_long] = ACTIONS(5224), + [anon_sym_c_ulong] = ACTIONS(5224), + [anon_sym_c_longlong] = ACTIONS(5224), + [anon_sym_c_ulonglong] = ACTIONS(5224), + [anon_sym_c_float] = ACTIONS(5224), + [anon_sym_c_double] = ACTIONS(5224), + [anon_sym_c_longdouble] = ACTIONS(5224), + [anon_sym_PLUS_EQ] = ACTIONS(5222), + [anon_sym_DASH_EQ] = ACTIONS(5222), + [anon_sym_STAR_EQ] = ACTIONS(5222), + [anon_sym_SLASH_EQ] = ACTIONS(5222), + [anon_sym_AMP_EQ] = ACTIONS(5222), + [anon_sym_PIPE_EQ] = ACTIONS(5222), + [anon_sym_xor_EQ] = ACTIONS(5222), + [anon_sym_LT_LT_EQ] = ACTIONS(5222), + [anon_sym_GT_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5222), + [anon_sym_return] = ACTIONS(5224), + [anon_sym_yield] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5222), + [anon_sym_break] = ACTIONS(5224), + [anon_sym_continue] = ACTIONS(5224), + [anon_sym_defer] = ACTIONS(5224), + [anon_sym_errdefer] = ACTIONS(5224), + [anon_sym_if] = ACTIONS(5224), + [anon_sym_else] = ACTIONS(5224), + [anon_sym_while] = ACTIONS(5224), + [anon_sym_expand] = ACTIONS(5224), + [anon_sym_for] = ACTIONS(5224), + [anon_sym_match] = ACTIONS(5224), + [anon_sym_DOT_DOT] = ACTIONS(5224), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5222), + [anon_sym_orelse] = ACTIONS(5224), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_and] = ACTIONS(5224), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_xor] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5224), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_LT_LT_PIPE] = ACTIONS(5224), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_catch] = ACTIONS(5224), + [anon_sym_TILDE] = ACTIONS(5222), + [anon_sym_try] = ACTIONS(5224), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_true] = ACTIONS(5224), + [anon_sym_false] = ACTIONS(5224), + [anon_sym_null] = ACTIONS(5224), + [anon_sym_unreachable] = ACTIONS(5224), + [anon_sym_undefined] = ACTIONS(5224), + [sym_sink] = ACTIONS(5224), + [sym_integer] = ACTIONS(5224), + [sym_float] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [sym_multiline_string] = ACTIONS(5222), + [sym_character] = ACTIONS(5222), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5222), + }, + [STATE(2377)] = { + [ts_builtin_sym_end] = ACTIONS(5226), + [sym_identifier] = ACTIONS(5228), + [anon_sym_import] = ACTIONS(5228), + [anon_sym_test] = ACTIONS(5228), + [anon_sym_hide] = ACTIONS(5228), + [anon_sym_func] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(5228), + [anon_sym_struct] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_QMARK] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_SEMI] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_void] = ACTIONS(5228), + [anon_sym_noreturn] = ACTIONS(5228), + [anon_sym_type] = ACTIONS(5228), + [anon_sym_anyopaque] = ACTIONS(5228), + [anon_sym_bool] = ACTIONS(5228), + [anon_sym_int] = ACTIONS(5228), + [anon_sym_uint] = ACTIONS(5228), + [anon_sym_float] = ACTIONS(5228), + [anon_sym_range] = ACTIONS(5228), + [anon_sym_i8] = ACTIONS(5228), + [anon_sym_i16] = ACTIONS(5228), + [anon_sym_i32] = ACTIONS(5228), + [anon_sym_i64] = ACTIONS(5228), + [anon_sym_u8] = ACTIONS(5228), + [anon_sym_u16] = ACTIONS(5228), + [anon_sym_u32] = ACTIONS(5228), + [anon_sym_u64] = ACTIONS(5228), + [anon_sym_isize] = ACTIONS(5228), + [anon_sym_usize] = ACTIONS(5228), + [anon_sym_f32] = ACTIONS(5228), + [anon_sym_f64] = ACTIONS(5228), + [anon_sym_c_char] = ACTIONS(5228), + [anon_sym_c_schar] = ACTIONS(5228), + [anon_sym_c_uchar] = ACTIONS(5228), + [anon_sym_c_short] = ACTIONS(5228), + [anon_sym_c_ushort] = ACTIONS(5228), + [anon_sym_c_int] = ACTIONS(5228), + [anon_sym_c_uint] = ACTIONS(5228), + [anon_sym_c_long] = ACTIONS(5228), + [anon_sym_c_ulong] = ACTIONS(5228), + [anon_sym_c_longlong] = ACTIONS(5228), + [anon_sym_c_ulonglong] = ACTIONS(5228), + [anon_sym_c_float] = ACTIONS(5228), + [anon_sym_c_double] = ACTIONS(5228), + [anon_sym_c_longdouble] = ACTIONS(5228), + [anon_sym_PLUS_EQ] = ACTIONS(5226), + [anon_sym_DASH_EQ] = ACTIONS(5226), + [anon_sym_STAR_EQ] = ACTIONS(5226), + [anon_sym_SLASH_EQ] = ACTIONS(5226), + [anon_sym_AMP_EQ] = ACTIONS(5226), + [anon_sym_PIPE_EQ] = ACTIONS(5226), + [anon_sym_xor_EQ] = ACTIONS(5226), + [anon_sym_LT_LT_EQ] = ACTIONS(5226), + [anon_sym_GT_GT_EQ] = ACTIONS(5226), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5226), + [anon_sym_return] = ACTIONS(5228), + [anon_sym_yield] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5226), + [anon_sym_break] = ACTIONS(5228), + [anon_sym_continue] = ACTIONS(5228), + [anon_sym_defer] = ACTIONS(5228), + [anon_sym_errdefer] = ACTIONS(5228), + [anon_sym_if] = ACTIONS(5228), + [anon_sym_else] = ACTIONS(5228), + [anon_sym_while] = ACTIONS(5228), + [anon_sym_expand] = ACTIONS(5228), + [anon_sym_for] = ACTIONS(5228), + [anon_sym_match] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5226), + [anon_sym_orelse] = ACTIONS(5228), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_and] = ACTIONS(5228), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_xor] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_LT_LT_PIPE] = ACTIONS(5228), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_catch] = ACTIONS(5228), + [anon_sym_TILDE] = ACTIONS(5226), + [anon_sym_try] = ACTIONS(5228), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_true] = ACTIONS(5228), + [anon_sym_false] = ACTIONS(5228), + [anon_sym_null] = ACTIONS(5228), + [anon_sym_unreachable] = ACTIONS(5228), + [anon_sym_undefined] = ACTIONS(5228), + [sym_sink] = ACTIONS(5228), + [sym_integer] = ACTIONS(5228), + [sym_float] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [sym_multiline_string] = ACTIONS(5226), + [sym_character] = ACTIONS(5226), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5226), + }, + [STATE(2378)] = { + [ts_builtin_sym_end] = ACTIONS(5230), + [sym_identifier] = ACTIONS(5232), + [anon_sym_import] = ACTIONS(5232), + [anon_sym_test] = ACTIONS(5232), + [anon_sym_hide] = ACTIONS(5232), + [anon_sym_func] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5232), + [anon_sym_struct] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5230), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_QMARK] = ACTIONS(5230), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_SEMI] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_void] = ACTIONS(5232), + [anon_sym_noreturn] = ACTIONS(5232), + [anon_sym_type] = ACTIONS(5232), + [anon_sym_anyopaque] = ACTIONS(5232), + [anon_sym_bool] = ACTIONS(5232), + [anon_sym_int] = ACTIONS(5232), + [anon_sym_uint] = ACTIONS(5232), + [anon_sym_float] = ACTIONS(5232), + [anon_sym_range] = ACTIONS(5232), + [anon_sym_i8] = ACTIONS(5232), + [anon_sym_i16] = ACTIONS(5232), + [anon_sym_i32] = ACTIONS(5232), + [anon_sym_i64] = ACTIONS(5232), + [anon_sym_u8] = ACTIONS(5232), + [anon_sym_u16] = ACTIONS(5232), + [anon_sym_u32] = ACTIONS(5232), + [anon_sym_u64] = ACTIONS(5232), + [anon_sym_isize] = ACTIONS(5232), + [anon_sym_usize] = ACTIONS(5232), + [anon_sym_f32] = ACTIONS(5232), + [anon_sym_f64] = ACTIONS(5232), + [anon_sym_c_char] = ACTIONS(5232), + [anon_sym_c_schar] = ACTIONS(5232), + [anon_sym_c_uchar] = ACTIONS(5232), + [anon_sym_c_short] = ACTIONS(5232), + [anon_sym_c_ushort] = ACTIONS(5232), + [anon_sym_c_int] = ACTIONS(5232), + [anon_sym_c_uint] = ACTIONS(5232), + [anon_sym_c_long] = ACTIONS(5232), + [anon_sym_c_ulong] = ACTIONS(5232), + [anon_sym_c_longlong] = ACTIONS(5232), + [anon_sym_c_ulonglong] = ACTIONS(5232), + [anon_sym_c_float] = ACTIONS(5232), + [anon_sym_c_double] = ACTIONS(5232), + [anon_sym_c_longdouble] = ACTIONS(5232), + [anon_sym_PLUS_EQ] = ACTIONS(5230), + [anon_sym_DASH_EQ] = ACTIONS(5230), + [anon_sym_STAR_EQ] = ACTIONS(5230), + [anon_sym_SLASH_EQ] = ACTIONS(5230), + [anon_sym_AMP_EQ] = ACTIONS(5230), + [anon_sym_PIPE_EQ] = ACTIONS(5230), + [anon_sym_xor_EQ] = ACTIONS(5230), + [anon_sym_LT_LT_EQ] = ACTIONS(5230), + [anon_sym_GT_GT_EQ] = ACTIONS(5230), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5230), + [anon_sym_return] = ACTIONS(5232), + [anon_sym_yield] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5230), + [anon_sym_break] = ACTIONS(5232), + [anon_sym_continue] = ACTIONS(5232), + [anon_sym_defer] = ACTIONS(5232), + [anon_sym_errdefer] = ACTIONS(5232), + [anon_sym_if] = ACTIONS(5232), + [anon_sym_else] = ACTIONS(5232), + [anon_sym_while] = ACTIONS(5232), + [anon_sym_expand] = ACTIONS(5232), + [anon_sym_for] = ACTIONS(5232), + [anon_sym_match] = ACTIONS(5232), + [anon_sym_DOT_DOT] = ACTIONS(5232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5230), + [anon_sym_orelse] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5230), + [anon_sym_BANG_EQ] = ACTIONS(5230), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_LT_EQ] = ACTIONS(5230), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_GT_EQ] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(5232), + [anon_sym_xor] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5232), + [anon_sym_GT_GT] = ACTIONS(5232), + [anon_sym_LT_LT_PIPE] = ACTIONS(5232), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_catch] = ACTIONS(5232), + [anon_sym_TILDE] = ACTIONS(5230), + [anon_sym_try] = ACTIONS(5232), + [anon_sym_DOT] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5230), + [anon_sym_true] = ACTIONS(5232), + [anon_sym_false] = ACTIONS(5232), + [anon_sym_null] = ACTIONS(5232), + [anon_sym_unreachable] = ACTIONS(5232), + [anon_sym_undefined] = ACTIONS(5232), + [sym_sink] = ACTIONS(5232), + [sym_integer] = ACTIONS(5232), + [sym_float] = ACTIONS(5230), + [anon_sym_DQUOTE] = ACTIONS(5230), + [sym_multiline_string] = ACTIONS(5230), + [sym_character] = ACTIONS(5230), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5230), + }, + [STATE(2379)] = { + [ts_builtin_sym_end] = ACTIONS(5234), + [sym_identifier] = ACTIONS(5236), + [anon_sym_import] = ACTIONS(5236), + [anon_sym_test] = ACTIONS(5236), + [anon_sym_hide] = ACTIONS(5236), + [anon_sym_func] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_struct] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_void] = ACTIONS(5236), + [anon_sym_noreturn] = ACTIONS(5236), + [anon_sym_type] = ACTIONS(5236), + [anon_sym_anyopaque] = ACTIONS(5236), + [anon_sym_bool] = ACTIONS(5236), + [anon_sym_int] = ACTIONS(5236), + [anon_sym_uint] = ACTIONS(5236), + [anon_sym_float] = ACTIONS(5236), + [anon_sym_range] = ACTIONS(5236), + [anon_sym_i8] = ACTIONS(5236), + [anon_sym_i16] = ACTIONS(5236), + [anon_sym_i32] = ACTIONS(5236), + [anon_sym_i64] = ACTIONS(5236), + [anon_sym_u8] = ACTIONS(5236), + [anon_sym_u16] = ACTIONS(5236), + [anon_sym_u32] = ACTIONS(5236), + [anon_sym_u64] = ACTIONS(5236), + [anon_sym_isize] = ACTIONS(5236), + [anon_sym_usize] = ACTIONS(5236), + [anon_sym_f32] = ACTIONS(5236), + [anon_sym_f64] = ACTIONS(5236), + [anon_sym_c_char] = ACTIONS(5236), + [anon_sym_c_schar] = ACTIONS(5236), + [anon_sym_c_uchar] = ACTIONS(5236), + [anon_sym_c_short] = ACTIONS(5236), + [anon_sym_c_ushort] = ACTIONS(5236), + [anon_sym_c_int] = ACTIONS(5236), + [anon_sym_c_uint] = ACTIONS(5236), + [anon_sym_c_long] = ACTIONS(5236), + [anon_sym_c_ulong] = ACTIONS(5236), + [anon_sym_c_longlong] = ACTIONS(5236), + [anon_sym_c_ulonglong] = ACTIONS(5236), + [anon_sym_c_float] = ACTIONS(5236), + [anon_sym_c_double] = ACTIONS(5236), + [anon_sym_c_longdouble] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [anon_sym_DASH_EQ] = ACTIONS(5234), + [anon_sym_STAR_EQ] = ACTIONS(5234), + [anon_sym_SLASH_EQ] = ACTIONS(5234), + [anon_sym_AMP_EQ] = ACTIONS(5234), + [anon_sym_PIPE_EQ] = ACTIONS(5234), + [anon_sym_xor_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_EQ] = ACTIONS(5234), + [anon_sym_GT_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5234), + [anon_sym_return] = ACTIONS(5236), + [anon_sym_yield] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_break] = ACTIONS(5236), + [anon_sym_continue] = ACTIONS(5236), + [anon_sym_defer] = ACTIONS(5236), + [anon_sym_errdefer] = ACTIONS(5236), + [anon_sym_if] = ACTIONS(5236), + [anon_sym_else] = ACTIONS(5236), + [anon_sym_while] = ACTIONS(5236), + [anon_sym_expand] = ACTIONS(5236), + [anon_sym_for] = ACTIONS(5236), + [anon_sym_match] = ACTIONS(5236), + [anon_sym_DOT_DOT] = ACTIONS(5236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5234), + [anon_sym_orelse] = ACTIONS(5236), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_LT_LT_PIPE] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_catch] = ACTIONS(5236), + [anon_sym_TILDE] = ACTIONS(5234), + [anon_sym_try] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_true] = ACTIONS(5236), + [anon_sym_false] = ACTIONS(5236), + [anon_sym_null] = ACTIONS(5236), + [anon_sym_unreachable] = ACTIONS(5236), + [anon_sym_undefined] = ACTIONS(5236), + [sym_sink] = ACTIONS(5236), + [sym_integer] = ACTIONS(5236), + [sym_float] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [sym_multiline_string] = ACTIONS(5234), + [sym_character] = ACTIONS(5234), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5234), + }, + [STATE(2380)] = { + [ts_builtin_sym_end] = ACTIONS(5238), + [sym_identifier] = ACTIONS(5240), + [anon_sym_import] = ACTIONS(5240), + [anon_sym_test] = ACTIONS(5240), + [anon_sym_hide] = ACTIONS(5240), + [anon_sym_func] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_EQ] = ACTIONS(5240), + [anon_sym_struct] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_DOLLAR] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_QMARK] = ACTIONS(5238), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_void] = ACTIONS(5240), + [anon_sym_noreturn] = ACTIONS(5240), + [anon_sym_type] = ACTIONS(5240), + [anon_sym_anyopaque] = ACTIONS(5240), + [anon_sym_bool] = ACTIONS(5240), + [anon_sym_int] = ACTIONS(5240), + [anon_sym_uint] = ACTIONS(5240), + [anon_sym_float] = ACTIONS(5240), + [anon_sym_range] = ACTIONS(5240), + [anon_sym_i8] = ACTIONS(5240), + [anon_sym_i16] = ACTIONS(5240), + [anon_sym_i32] = ACTIONS(5240), + [anon_sym_i64] = ACTIONS(5240), + [anon_sym_u8] = ACTIONS(5240), + [anon_sym_u16] = ACTIONS(5240), + [anon_sym_u32] = ACTIONS(5240), + [anon_sym_u64] = ACTIONS(5240), + [anon_sym_isize] = ACTIONS(5240), + [anon_sym_usize] = ACTIONS(5240), + [anon_sym_f32] = ACTIONS(5240), + [anon_sym_f64] = ACTIONS(5240), + [anon_sym_c_char] = ACTIONS(5240), + [anon_sym_c_schar] = ACTIONS(5240), + [anon_sym_c_uchar] = ACTIONS(5240), + [anon_sym_c_short] = ACTIONS(5240), + [anon_sym_c_ushort] = ACTIONS(5240), + [anon_sym_c_int] = ACTIONS(5240), + [anon_sym_c_uint] = ACTIONS(5240), + [anon_sym_c_long] = ACTIONS(5240), + [anon_sym_c_ulong] = ACTIONS(5240), + [anon_sym_c_longlong] = ACTIONS(5240), + [anon_sym_c_ulonglong] = ACTIONS(5240), + [anon_sym_c_float] = ACTIONS(5240), + [anon_sym_c_double] = ACTIONS(5240), + [anon_sym_c_longdouble] = ACTIONS(5240), + [anon_sym_PLUS_EQ] = ACTIONS(5238), + [anon_sym_DASH_EQ] = ACTIONS(5238), + [anon_sym_STAR_EQ] = ACTIONS(5238), + [anon_sym_SLASH_EQ] = ACTIONS(5238), + [anon_sym_AMP_EQ] = ACTIONS(5238), + [anon_sym_PIPE_EQ] = ACTIONS(5238), + [anon_sym_xor_EQ] = ACTIONS(5238), + [anon_sym_LT_LT_EQ] = ACTIONS(5238), + [anon_sym_GT_GT_EQ] = ACTIONS(5238), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5238), + [anon_sym_return] = ACTIONS(5240), + [anon_sym_yield] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_break] = ACTIONS(5240), + [anon_sym_continue] = ACTIONS(5240), + [anon_sym_defer] = ACTIONS(5240), + [anon_sym_errdefer] = ACTIONS(5240), + [anon_sym_if] = ACTIONS(5240), + [anon_sym_else] = ACTIONS(5240), + [anon_sym_while] = ACTIONS(5240), + [anon_sym_expand] = ACTIONS(5240), + [anon_sym_for] = ACTIONS(5240), + [anon_sym_match] = ACTIONS(5240), + [anon_sym_DOT_DOT] = ACTIONS(5240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5238), + [anon_sym_orelse] = ACTIONS(5240), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_and] = ACTIONS(5240), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(5240), + [anon_sym_xor] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5240), + [anon_sym_GT_GT] = ACTIONS(5240), + [anon_sym_LT_LT_PIPE] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_catch] = ACTIONS(5240), + [anon_sym_TILDE] = ACTIONS(5238), + [anon_sym_try] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_true] = ACTIONS(5240), + [anon_sym_false] = ACTIONS(5240), + [anon_sym_null] = ACTIONS(5240), + [anon_sym_unreachable] = ACTIONS(5240), + [anon_sym_undefined] = ACTIONS(5240), + [sym_sink] = ACTIONS(5240), + [sym_integer] = ACTIONS(5240), + [sym_float] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [sym_multiline_string] = ACTIONS(5238), + [sym_character] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5238), + }, + [STATE(2381)] = { + [ts_builtin_sym_end] = ACTIONS(5242), + [sym_identifier] = ACTIONS(5244), + [anon_sym_import] = ACTIONS(5244), + [anon_sym_test] = ACTIONS(5244), + [anon_sym_hide] = ACTIONS(5244), + [anon_sym_func] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_EQ] = ACTIONS(5244), + [anon_sym_struct] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_DOLLAR] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_QMARK] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_void] = ACTIONS(5244), + [anon_sym_noreturn] = ACTIONS(5244), + [anon_sym_type] = ACTIONS(5244), + [anon_sym_anyopaque] = ACTIONS(5244), + [anon_sym_bool] = ACTIONS(5244), + [anon_sym_int] = ACTIONS(5244), + [anon_sym_uint] = ACTIONS(5244), + [anon_sym_float] = ACTIONS(5244), + [anon_sym_range] = ACTIONS(5244), + [anon_sym_i8] = ACTIONS(5244), + [anon_sym_i16] = ACTIONS(5244), + [anon_sym_i32] = ACTIONS(5244), + [anon_sym_i64] = ACTIONS(5244), + [anon_sym_u8] = ACTIONS(5244), + [anon_sym_u16] = ACTIONS(5244), + [anon_sym_u32] = ACTIONS(5244), + [anon_sym_u64] = ACTIONS(5244), + [anon_sym_isize] = ACTIONS(5244), + [anon_sym_usize] = ACTIONS(5244), + [anon_sym_f32] = ACTIONS(5244), + [anon_sym_f64] = ACTIONS(5244), + [anon_sym_c_char] = ACTIONS(5244), + [anon_sym_c_schar] = ACTIONS(5244), + [anon_sym_c_uchar] = ACTIONS(5244), + [anon_sym_c_short] = ACTIONS(5244), + [anon_sym_c_ushort] = ACTIONS(5244), + [anon_sym_c_int] = ACTIONS(5244), + [anon_sym_c_uint] = ACTIONS(5244), + [anon_sym_c_long] = ACTIONS(5244), + [anon_sym_c_ulong] = ACTIONS(5244), + [anon_sym_c_longlong] = ACTIONS(5244), + [anon_sym_c_ulonglong] = ACTIONS(5244), + [anon_sym_c_float] = ACTIONS(5244), + [anon_sym_c_double] = ACTIONS(5244), + [anon_sym_c_longdouble] = ACTIONS(5244), + [anon_sym_PLUS_EQ] = ACTIONS(5242), + [anon_sym_DASH_EQ] = ACTIONS(5242), + [anon_sym_STAR_EQ] = ACTIONS(5242), + [anon_sym_SLASH_EQ] = ACTIONS(5242), + [anon_sym_AMP_EQ] = ACTIONS(5242), + [anon_sym_PIPE_EQ] = ACTIONS(5242), + [anon_sym_xor_EQ] = ACTIONS(5242), + [anon_sym_LT_LT_EQ] = ACTIONS(5242), + [anon_sym_GT_GT_EQ] = ACTIONS(5242), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5242), + [anon_sym_return] = ACTIONS(5244), + [anon_sym_yield] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5242), + [anon_sym_break] = ACTIONS(5244), + [anon_sym_continue] = ACTIONS(5244), + [anon_sym_defer] = ACTIONS(5244), + [anon_sym_errdefer] = ACTIONS(5244), + [anon_sym_if] = ACTIONS(5244), + [anon_sym_else] = ACTIONS(5244), + [anon_sym_while] = ACTIONS(5244), + [anon_sym_expand] = ACTIONS(5244), + [anon_sym_for] = ACTIONS(5244), + [anon_sym_match] = ACTIONS(5244), + [anon_sym_DOT_DOT] = ACTIONS(5244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5242), + [anon_sym_orelse] = ACTIONS(5244), + [anon_sym_or] = ACTIONS(5244), + [anon_sym_and] = ACTIONS(5244), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_xor] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5244), + [anon_sym_GT_GT] = ACTIONS(5244), + [anon_sym_LT_LT_PIPE] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_catch] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5242), + [anon_sym_try] = ACTIONS(5244), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_true] = ACTIONS(5244), + [anon_sym_false] = ACTIONS(5244), + [anon_sym_null] = ACTIONS(5244), + [anon_sym_unreachable] = ACTIONS(5244), + [anon_sym_undefined] = ACTIONS(5244), + [sym_sink] = ACTIONS(5244), + [sym_integer] = ACTIONS(5244), + [sym_float] = ACTIONS(5242), + [anon_sym_DQUOTE] = ACTIONS(5242), + [sym_multiline_string] = ACTIONS(5242), + [sym_character] = ACTIONS(5242), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5242), + }, + [STATE(2382)] = { + [ts_builtin_sym_end] = ACTIONS(5246), + [sym_identifier] = ACTIONS(5248), + [anon_sym_import] = ACTIONS(5248), + [anon_sym_test] = ACTIONS(5248), + [anon_sym_hide] = ACTIONS(5248), + [anon_sym_func] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_EQ] = ACTIONS(5248), + [anon_sym_struct] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_DOLLAR] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_QMARK] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_void] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym_type] = ACTIONS(5248), + [anon_sym_anyopaque] = ACTIONS(5248), + [anon_sym_bool] = ACTIONS(5248), + [anon_sym_int] = ACTIONS(5248), + [anon_sym_uint] = ACTIONS(5248), + [anon_sym_float] = ACTIONS(5248), + [anon_sym_range] = ACTIONS(5248), + [anon_sym_i8] = ACTIONS(5248), + [anon_sym_i16] = ACTIONS(5248), + [anon_sym_i32] = ACTIONS(5248), + [anon_sym_i64] = ACTIONS(5248), + [anon_sym_u8] = ACTIONS(5248), + [anon_sym_u16] = ACTIONS(5248), + [anon_sym_u32] = ACTIONS(5248), + [anon_sym_u64] = ACTIONS(5248), + [anon_sym_isize] = ACTIONS(5248), + [anon_sym_usize] = ACTIONS(5248), + [anon_sym_f32] = ACTIONS(5248), + [anon_sym_f64] = ACTIONS(5248), + [anon_sym_c_char] = ACTIONS(5248), + [anon_sym_c_schar] = ACTIONS(5248), + [anon_sym_c_uchar] = ACTIONS(5248), + [anon_sym_c_short] = ACTIONS(5248), + [anon_sym_c_ushort] = ACTIONS(5248), + [anon_sym_c_int] = ACTIONS(5248), + [anon_sym_c_uint] = ACTIONS(5248), + [anon_sym_c_long] = ACTIONS(5248), + [anon_sym_c_ulong] = ACTIONS(5248), + [anon_sym_c_longlong] = ACTIONS(5248), + [anon_sym_c_ulonglong] = ACTIONS(5248), + [anon_sym_c_float] = ACTIONS(5248), + [anon_sym_c_double] = ACTIONS(5248), + [anon_sym_c_longdouble] = ACTIONS(5248), + [anon_sym_PLUS_EQ] = ACTIONS(5246), + [anon_sym_DASH_EQ] = ACTIONS(5246), + [anon_sym_STAR_EQ] = ACTIONS(5246), + [anon_sym_SLASH_EQ] = ACTIONS(5246), + [anon_sym_AMP_EQ] = ACTIONS(5246), + [anon_sym_PIPE_EQ] = ACTIONS(5246), + [anon_sym_xor_EQ] = ACTIONS(5246), + [anon_sym_LT_LT_EQ] = ACTIONS(5246), + [anon_sym_GT_GT_EQ] = ACTIONS(5246), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5246), + [anon_sym_return] = ACTIONS(5248), + [anon_sym_yield] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5246), + [anon_sym_break] = ACTIONS(5248), + [anon_sym_continue] = ACTIONS(5248), + [anon_sym_defer] = ACTIONS(5248), + [anon_sym_errdefer] = ACTIONS(5248), + [anon_sym_if] = ACTIONS(5248), + [anon_sym_else] = ACTIONS(5248), + [anon_sym_while] = ACTIONS(5248), + [anon_sym_expand] = ACTIONS(5248), + [anon_sym_for] = ACTIONS(5248), + [anon_sym_match] = ACTIONS(5248), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5246), + [anon_sym_orelse] = ACTIONS(5248), + [anon_sym_or] = ACTIONS(5248), + [anon_sym_and] = ACTIONS(5248), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5248), + [anon_sym_xor] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5248), + [anon_sym_GT_GT] = ACTIONS(5248), + [anon_sym_LT_LT_PIPE] = ACTIONS(5248), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_catch] = ACTIONS(5248), + [anon_sym_TILDE] = ACTIONS(5246), + [anon_sym_try] = ACTIONS(5248), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_true] = ACTIONS(5248), + [anon_sym_false] = ACTIONS(5248), + [anon_sym_null] = ACTIONS(5248), + [anon_sym_unreachable] = ACTIONS(5248), + [anon_sym_undefined] = ACTIONS(5248), + [sym_sink] = ACTIONS(5248), + [sym_integer] = ACTIONS(5248), + [sym_float] = ACTIONS(5246), + [anon_sym_DQUOTE] = ACTIONS(5246), + [sym_multiline_string] = ACTIONS(5246), + [sym_character] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5246), + }, + [STATE(2383)] = { + [ts_builtin_sym_end] = ACTIONS(5250), + [sym_identifier] = ACTIONS(5252), + [anon_sym_import] = ACTIONS(5252), + [anon_sym_test] = ACTIONS(5252), + [anon_sym_hide] = ACTIONS(5252), + [anon_sym_func] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5252), + [anon_sym_EQ] = ACTIONS(5252), + [anon_sym_struct] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_RPAREN] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_COMMA] = ACTIONS(5250), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5252), + [anon_sym_DOLLAR] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5252), + [anon_sym_QMARK] = ACTIONS(5250), + [anon_sym_STAR] = ACTIONS(5252), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_SEMI] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(5250), + [anon_sym_void] = ACTIONS(5252), + [anon_sym_noreturn] = ACTIONS(5252), + [anon_sym_type] = ACTIONS(5252), + [anon_sym_anyopaque] = ACTIONS(5252), + [anon_sym_bool] = ACTIONS(5252), + [anon_sym_int] = ACTIONS(5252), + [anon_sym_uint] = ACTIONS(5252), + [anon_sym_float] = ACTIONS(5252), + [anon_sym_range] = ACTIONS(5252), + [anon_sym_i8] = ACTIONS(5252), + [anon_sym_i16] = ACTIONS(5252), + [anon_sym_i32] = ACTIONS(5252), + [anon_sym_i64] = ACTIONS(5252), + [anon_sym_u8] = ACTIONS(5252), + [anon_sym_u16] = ACTIONS(5252), + [anon_sym_u32] = ACTIONS(5252), + [anon_sym_u64] = ACTIONS(5252), + [anon_sym_isize] = ACTIONS(5252), + [anon_sym_usize] = ACTIONS(5252), + [anon_sym_f32] = ACTIONS(5252), + [anon_sym_f64] = ACTIONS(5252), + [anon_sym_c_char] = ACTIONS(5252), + [anon_sym_c_schar] = ACTIONS(5252), + [anon_sym_c_uchar] = ACTIONS(5252), + [anon_sym_c_short] = ACTIONS(5252), + [anon_sym_c_ushort] = ACTIONS(5252), + [anon_sym_c_int] = ACTIONS(5252), + [anon_sym_c_uint] = ACTIONS(5252), + [anon_sym_c_long] = ACTIONS(5252), + [anon_sym_c_ulong] = ACTIONS(5252), + [anon_sym_c_longlong] = ACTIONS(5252), + [anon_sym_c_ulonglong] = ACTIONS(5252), + [anon_sym_c_float] = ACTIONS(5252), + [anon_sym_c_double] = ACTIONS(5252), + [anon_sym_c_longdouble] = ACTIONS(5252), + [anon_sym_PLUS_EQ] = ACTIONS(5250), + [anon_sym_DASH_EQ] = ACTIONS(5250), + [anon_sym_STAR_EQ] = ACTIONS(5250), + [anon_sym_SLASH_EQ] = ACTIONS(5250), + [anon_sym_AMP_EQ] = ACTIONS(5250), + [anon_sym_PIPE_EQ] = ACTIONS(5250), + [anon_sym_xor_EQ] = ACTIONS(5250), + [anon_sym_LT_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_GT_EQ] = ACTIONS(5250), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5250), + [anon_sym_return] = ACTIONS(5252), + [anon_sym_yield] = ACTIONS(5252), + [anon_sym_COLON] = ACTIONS(5250), + [anon_sym_break] = ACTIONS(5252), + [anon_sym_continue] = ACTIONS(5252), + [anon_sym_defer] = ACTIONS(5252), + [anon_sym_errdefer] = ACTIONS(5252), + [anon_sym_if] = ACTIONS(5252), + [anon_sym_else] = ACTIONS(5252), + [anon_sym_while] = ACTIONS(5252), + [anon_sym_expand] = ACTIONS(5252), + [anon_sym_for] = ACTIONS(5252), + [anon_sym_match] = ACTIONS(5252), + [anon_sym_DOT_DOT] = ACTIONS(5252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5250), + [anon_sym_orelse] = ACTIONS(5252), + [anon_sym_or] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_xor] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5252), + [anon_sym_GT_GT] = ACTIONS(5252), + [anon_sym_LT_LT_PIPE] = ACTIONS(5252), + [anon_sym_PLUS] = ACTIONS(5252), + [anon_sym_SLASH] = ACTIONS(5252), + [anon_sym_catch] = ACTIONS(5252), + [anon_sym_TILDE] = ACTIONS(5250), + [anon_sym_try] = ACTIONS(5252), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_true] = ACTIONS(5252), + [anon_sym_false] = ACTIONS(5252), + [anon_sym_null] = ACTIONS(5252), + [anon_sym_unreachable] = ACTIONS(5252), + [anon_sym_undefined] = ACTIONS(5252), + [sym_sink] = ACTIONS(5252), + [sym_integer] = ACTIONS(5252), + [sym_float] = ACTIONS(5250), + [anon_sym_DQUOTE] = ACTIONS(5250), + [sym_multiline_string] = ACTIONS(5250), + [sym_character] = ACTIONS(5250), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5250), + }, + [STATE(2384)] = { + [ts_builtin_sym_end] = ACTIONS(5254), + [sym_identifier] = ACTIONS(5256), + [anon_sym_import] = ACTIONS(5256), + [anon_sym_test] = ACTIONS(5256), + [anon_sym_hide] = ACTIONS(5256), + [anon_sym_func] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_EQ] = ACTIONS(5256), + [anon_sym_struct] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_DOLLAR] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_QMARK] = ACTIONS(5254), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_void] = ACTIONS(5256), + [anon_sym_noreturn] = ACTIONS(5256), + [anon_sym_type] = ACTIONS(5256), + [anon_sym_anyopaque] = ACTIONS(5256), + [anon_sym_bool] = ACTIONS(5256), + [anon_sym_int] = ACTIONS(5256), + [anon_sym_uint] = ACTIONS(5256), + [anon_sym_float] = ACTIONS(5256), + [anon_sym_range] = ACTIONS(5256), + [anon_sym_i8] = ACTIONS(5256), + [anon_sym_i16] = ACTIONS(5256), + [anon_sym_i32] = ACTIONS(5256), + [anon_sym_i64] = ACTIONS(5256), + [anon_sym_u8] = ACTIONS(5256), + [anon_sym_u16] = ACTIONS(5256), + [anon_sym_u32] = ACTIONS(5256), + [anon_sym_u64] = ACTIONS(5256), + [anon_sym_isize] = ACTIONS(5256), + [anon_sym_usize] = ACTIONS(5256), + [anon_sym_f32] = ACTIONS(5256), + [anon_sym_f64] = ACTIONS(5256), + [anon_sym_c_char] = ACTIONS(5256), + [anon_sym_c_schar] = ACTIONS(5256), + [anon_sym_c_uchar] = ACTIONS(5256), + [anon_sym_c_short] = ACTIONS(5256), + [anon_sym_c_ushort] = ACTIONS(5256), + [anon_sym_c_int] = ACTIONS(5256), + [anon_sym_c_uint] = ACTIONS(5256), + [anon_sym_c_long] = ACTIONS(5256), + [anon_sym_c_ulong] = ACTIONS(5256), + [anon_sym_c_longlong] = ACTIONS(5256), + [anon_sym_c_ulonglong] = ACTIONS(5256), + [anon_sym_c_float] = ACTIONS(5256), + [anon_sym_c_double] = ACTIONS(5256), + [anon_sym_c_longdouble] = ACTIONS(5256), + [anon_sym_PLUS_EQ] = ACTIONS(5254), + [anon_sym_DASH_EQ] = ACTIONS(5254), + [anon_sym_STAR_EQ] = ACTIONS(5254), + [anon_sym_SLASH_EQ] = ACTIONS(5254), + [anon_sym_AMP_EQ] = ACTIONS(5254), + [anon_sym_PIPE_EQ] = ACTIONS(5254), + [anon_sym_xor_EQ] = ACTIONS(5254), + [anon_sym_LT_LT_EQ] = ACTIONS(5254), + [anon_sym_GT_GT_EQ] = ACTIONS(5254), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5254), + [anon_sym_return] = ACTIONS(5256), + [anon_sym_yield] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5254), + [anon_sym_break] = ACTIONS(5256), + [anon_sym_continue] = ACTIONS(5256), + [anon_sym_defer] = ACTIONS(5256), + [anon_sym_errdefer] = ACTIONS(5256), + [anon_sym_if] = ACTIONS(5256), + [anon_sym_else] = ACTIONS(5256), + [anon_sym_while] = ACTIONS(5256), + [anon_sym_expand] = ACTIONS(5256), + [anon_sym_for] = ACTIONS(5256), + [anon_sym_match] = ACTIONS(5256), + [anon_sym_DOT_DOT] = ACTIONS(5256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5254), + [anon_sym_orelse] = ACTIONS(5256), + [anon_sym_or] = ACTIONS(5256), + [anon_sym_and] = ACTIONS(5256), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_xor] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5256), + [anon_sym_GT_GT] = ACTIONS(5256), + [anon_sym_LT_LT_PIPE] = ACTIONS(5256), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_catch] = ACTIONS(5256), + [anon_sym_TILDE] = ACTIONS(5254), + [anon_sym_try] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_true] = ACTIONS(5256), + [anon_sym_false] = ACTIONS(5256), + [anon_sym_null] = ACTIONS(5256), + [anon_sym_unreachable] = ACTIONS(5256), + [anon_sym_undefined] = ACTIONS(5256), + [sym_sink] = ACTIONS(5256), + [sym_integer] = ACTIONS(5256), + [sym_float] = ACTIONS(5254), + [anon_sym_DQUOTE] = ACTIONS(5254), + [sym_multiline_string] = ACTIONS(5254), + [sym_character] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5254), + }, + [STATE(2385)] = { + [ts_builtin_sym_end] = ACTIONS(5258), + [sym_identifier] = ACTIONS(5260), + [anon_sym_import] = ACTIONS(5260), + [anon_sym_test] = ACTIONS(5260), + [anon_sym_hide] = ACTIONS(5260), + [anon_sym_func] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_struct] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_DOLLAR] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_SEMI] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_void] = ACTIONS(5260), + [anon_sym_noreturn] = ACTIONS(5260), + [anon_sym_type] = ACTIONS(5260), + [anon_sym_anyopaque] = ACTIONS(5260), + [anon_sym_bool] = ACTIONS(5260), + [anon_sym_int] = ACTIONS(5260), + [anon_sym_uint] = ACTIONS(5260), + [anon_sym_float] = ACTIONS(5260), + [anon_sym_range] = ACTIONS(5260), + [anon_sym_i8] = ACTIONS(5260), + [anon_sym_i16] = ACTIONS(5260), + [anon_sym_i32] = ACTIONS(5260), + [anon_sym_i64] = ACTIONS(5260), + [anon_sym_u8] = ACTIONS(5260), + [anon_sym_u16] = ACTIONS(5260), + [anon_sym_u32] = ACTIONS(5260), + [anon_sym_u64] = ACTIONS(5260), + [anon_sym_isize] = ACTIONS(5260), + [anon_sym_usize] = ACTIONS(5260), + [anon_sym_f32] = ACTIONS(5260), + [anon_sym_f64] = ACTIONS(5260), + [anon_sym_c_char] = ACTIONS(5260), + [anon_sym_c_schar] = ACTIONS(5260), + [anon_sym_c_uchar] = ACTIONS(5260), + [anon_sym_c_short] = ACTIONS(5260), + [anon_sym_c_ushort] = ACTIONS(5260), + [anon_sym_c_int] = ACTIONS(5260), + [anon_sym_c_uint] = ACTIONS(5260), + [anon_sym_c_long] = ACTIONS(5260), + [anon_sym_c_ulong] = ACTIONS(5260), + [anon_sym_c_longlong] = ACTIONS(5260), + [anon_sym_c_ulonglong] = ACTIONS(5260), + [anon_sym_c_float] = ACTIONS(5260), + [anon_sym_c_double] = ACTIONS(5260), + [anon_sym_c_longdouble] = ACTIONS(5260), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_xor_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5258), + [anon_sym_return] = ACTIONS(5260), + [anon_sym_yield] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5258), + [anon_sym_break] = ACTIONS(5260), + [anon_sym_continue] = ACTIONS(5260), + [anon_sym_defer] = ACTIONS(5260), + [anon_sym_errdefer] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(5260), + [anon_sym_else] = ACTIONS(5260), + [anon_sym_while] = ACTIONS(5260), + [anon_sym_expand] = ACTIONS(5260), + [anon_sym_for] = ACTIONS(5260), + [anon_sym_match] = ACTIONS(5260), + [anon_sym_DOT_DOT] = ACTIONS(5260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5258), + [anon_sym_orelse] = ACTIONS(5260), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_LT_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_LT_LT_PIPE] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_catch] = ACTIONS(5260), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_try] = ACTIONS(5260), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_true] = ACTIONS(5260), + [anon_sym_false] = ACTIONS(5260), + [anon_sym_null] = ACTIONS(5260), + [anon_sym_unreachable] = ACTIONS(5260), + [anon_sym_undefined] = ACTIONS(5260), + [sym_sink] = ACTIONS(5260), + [sym_integer] = ACTIONS(5260), + [sym_float] = ACTIONS(5258), + [anon_sym_DQUOTE] = ACTIONS(5258), + [sym_multiline_string] = ACTIONS(5258), + [sym_character] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5258), + }, + [STATE(2386)] = { + [ts_builtin_sym_end] = ACTIONS(5262), + [sym_identifier] = ACTIONS(5264), + [anon_sym_import] = ACTIONS(5264), + [anon_sym_test] = ACTIONS(5264), + [anon_sym_hide] = ACTIONS(5264), + [anon_sym_func] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_EQ] = ACTIONS(5264), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_RBRACE] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_DOLLAR] = ACTIONS(5262), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_QMARK] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_void] = ACTIONS(5264), + [anon_sym_noreturn] = ACTIONS(5264), + [anon_sym_type] = ACTIONS(5264), + [anon_sym_anyopaque] = ACTIONS(5264), + [anon_sym_bool] = ACTIONS(5264), + [anon_sym_int] = ACTIONS(5264), + [anon_sym_uint] = ACTIONS(5264), + [anon_sym_float] = ACTIONS(5264), + [anon_sym_range] = ACTIONS(5264), + [anon_sym_i8] = ACTIONS(5264), + [anon_sym_i16] = ACTIONS(5264), + [anon_sym_i32] = ACTIONS(5264), + [anon_sym_i64] = ACTIONS(5264), + [anon_sym_u8] = ACTIONS(5264), + [anon_sym_u16] = ACTIONS(5264), + [anon_sym_u32] = ACTIONS(5264), + [anon_sym_u64] = ACTIONS(5264), + [anon_sym_isize] = ACTIONS(5264), + [anon_sym_usize] = ACTIONS(5264), + [anon_sym_f32] = ACTIONS(5264), + [anon_sym_f64] = ACTIONS(5264), + [anon_sym_c_char] = ACTIONS(5264), + [anon_sym_c_schar] = ACTIONS(5264), + [anon_sym_c_uchar] = ACTIONS(5264), + [anon_sym_c_short] = ACTIONS(5264), + [anon_sym_c_ushort] = ACTIONS(5264), + [anon_sym_c_int] = ACTIONS(5264), + [anon_sym_c_uint] = ACTIONS(5264), + [anon_sym_c_long] = ACTIONS(5264), + [anon_sym_c_ulong] = ACTIONS(5264), + [anon_sym_c_longlong] = ACTIONS(5264), + [anon_sym_c_ulonglong] = ACTIONS(5264), + [anon_sym_c_float] = ACTIONS(5264), + [anon_sym_c_double] = ACTIONS(5264), + [anon_sym_c_longdouble] = ACTIONS(5264), + [anon_sym_PLUS_EQ] = ACTIONS(5262), + [anon_sym_DASH_EQ] = ACTIONS(5262), + [anon_sym_STAR_EQ] = ACTIONS(5262), + [anon_sym_SLASH_EQ] = ACTIONS(5262), + [anon_sym_AMP_EQ] = ACTIONS(5262), + [anon_sym_PIPE_EQ] = ACTIONS(5262), + [anon_sym_xor_EQ] = ACTIONS(5262), + [anon_sym_LT_LT_EQ] = ACTIONS(5262), + [anon_sym_GT_GT_EQ] = ACTIONS(5262), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5262), + [anon_sym_return] = ACTIONS(5264), + [anon_sym_yield] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5262), + [anon_sym_break] = ACTIONS(5264), + [anon_sym_continue] = ACTIONS(5264), + [anon_sym_defer] = ACTIONS(5264), + [anon_sym_errdefer] = ACTIONS(5264), + [anon_sym_if] = ACTIONS(5264), + [anon_sym_else] = ACTIONS(5264), + [anon_sym_while] = ACTIONS(5264), + [anon_sym_expand] = ACTIONS(5264), + [anon_sym_for] = ACTIONS(5264), + [anon_sym_match] = ACTIONS(5264), + [anon_sym_DOT_DOT] = ACTIONS(5264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5262), + [anon_sym_orelse] = ACTIONS(5264), + [anon_sym_or] = ACTIONS(5264), + [anon_sym_and] = ACTIONS(5264), + [anon_sym_EQ_EQ] = ACTIONS(5262), + [anon_sym_BANG_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [anon_sym_xor] = ACTIONS(5264), + [anon_sym_LT_LT] = ACTIONS(5264), + [anon_sym_GT_GT] = ACTIONS(5264), + [anon_sym_LT_LT_PIPE] = ACTIONS(5264), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_catch] = ACTIONS(5264), + [anon_sym_TILDE] = ACTIONS(5262), + [anon_sym_try] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_true] = ACTIONS(5264), + [anon_sym_false] = ACTIONS(5264), + [anon_sym_null] = ACTIONS(5264), + [anon_sym_unreachable] = ACTIONS(5264), + [anon_sym_undefined] = ACTIONS(5264), + [sym_sink] = ACTIONS(5264), + [sym_integer] = ACTIONS(5264), + [sym_float] = ACTIONS(5262), + [anon_sym_DQUOTE] = ACTIONS(5262), + [sym_multiline_string] = ACTIONS(5262), + [sym_character] = ACTIONS(5262), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5262), + }, + [STATE(2387)] = { + [ts_builtin_sym_end] = ACTIONS(5266), + [sym_identifier] = ACTIONS(5268), + [anon_sym_import] = ACTIONS(5268), + [anon_sym_test] = ACTIONS(5268), + [anon_sym_hide] = ACTIONS(5268), + [anon_sym_func] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5268), + [anon_sym_struct] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(5266), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5266), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_void] = ACTIONS(5268), + [anon_sym_noreturn] = ACTIONS(5268), + [anon_sym_type] = ACTIONS(5268), + [anon_sym_anyopaque] = ACTIONS(5268), + [anon_sym_bool] = ACTIONS(5268), + [anon_sym_int] = ACTIONS(5268), + [anon_sym_uint] = ACTIONS(5268), + [anon_sym_float] = ACTIONS(5268), + [anon_sym_range] = ACTIONS(5268), + [anon_sym_i8] = ACTIONS(5268), + [anon_sym_i16] = ACTIONS(5268), + [anon_sym_i32] = ACTIONS(5268), + [anon_sym_i64] = ACTIONS(5268), + [anon_sym_u8] = ACTIONS(5268), + [anon_sym_u16] = ACTIONS(5268), + [anon_sym_u32] = ACTIONS(5268), + [anon_sym_u64] = ACTIONS(5268), + [anon_sym_isize] = ACTIONS(5268), + [anon_sym_usize] = ACTIONS(5268), + [anon_sym_f32] = ACTIONS(5268), + [anon_sym_f64] = ACTIONS(5268), + [anon_sym_c_char] = ACTIONS(5268), + [anon_sym_c_schar] = ACTIONS(5268), + [anon_sym_c_uchar] = ACTIONS(5268), + [anon_sym_c_short] = ACTIONS(5268), + [anon_sym_c_ushort] = ACTIONS(5268), + [anon_sym_c_int] = ACTIONS(5268), + [anon_sym_c_uint] = ACTIONS(5268), + [anon_sym_c_long] = ACTIONS(5268), + [anon_sym_c_ulong] = ACTIONS(5268), + [anon_sym_c_longlong] = ACTIONS(5268), + [anon_sym_c_ulonglong] = ACTIONS(5268), + [anon_sym_c_float] = ACTIONS(5268), + [anon_sym_c_double] = ACTIONS(5268), + [anon_sym_c_longdouble] = ACTIONS(5268), + [anon_sym_PLUS_EQ] = ACTIONS(5266), + [anon_sym_DASH_EQ] = ACTIONS(5266), + [anon_sym_STAR_EQ] = ACTIONS(5266), + [anon_sym_SLASH_EQ] = ACTIONS(5266), + [anon_sym_AMP_EQ] = ACTIONS(5266), + [anon_sym_PIPE_EQ] = ACTIONS(5266), + [anon_sym_xor_EQ] = ACTIONS(5266), + [anon_sym_LT_LT_EQ] = ACTIONS(5266), + [anon_sym_GT_GT_EQ] = ACTIONS(5266), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5266), + [anon_sym_return] = ACTIONS(5268), + [anon_sym_yield] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5266), + [anon_sym_break] = ACTIONS(5268), + [anon_sym_continue] = ACTIONS(5268), + [anon_sym_defer] = ACTIONS(5268), + [anon_sym_errdefer] = ACTIONS(5268), + [anon_sym_if] = ACTIONS(5268), + [anon_sym_else] = ACTIONS(5268), + [anon_sym_while] = ACTIONS(5268), + [anon_sym_expand] = ACTIONS(5268), + [anon_sym_for] = ACTIONS(5268), + [anon_sym_match] = ACTIONS(5268), + [anon_sym_DOT_DOT] = ACTIONS(5268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5266), + [anon_sym_orelse] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5268), + [anon_sym_and] = ACTIONS(5268), + [anon_sym_EQ_EQ] = ACTIONS(5266), + [anon_sym_BANG_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_GT_EQ] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5268), + [anon_sym_xor] = ACTIONS(5268), + [anon_sym_LT_LT] = ACTIONS(5268), + [anon_sym_GT_GT] = ACTIONS(5268), + [anon_sym_LT_LT_PIPE] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_catch] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(5266), + [anon_sym_try] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_true] = ACTIONS(5268), + [anon_sym_false] = ACTIONS(5268), + [anon_sym_null] = ACTIONS(5268), + [anon_sym_unreachable] = ACTIONS(5268), + [anon_sym_undefined] = ACTIONS(5268), + [sym_sink] = ACTIONS(5268), + [sym_integer] = ACTIONS(5268), + [sym_float] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5266), + [sym_multiline_string] = ACTIONS(5266), + [sym_character] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5266), + }, + [STATE(2388)] = { + [ts_builtin_sym_end] = ACTIONS(5270), + [sym_identifier] = ACTIONS(5272), + [anon_sym_import] = ACTIONS(5272), + [anon_sym_test] = ACTIONS(5272), + [anon_sym_hide] = ACTIONS(5272), + [anon_sym_func] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(5272), + [anon_sym_struct] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_DOLLAR] = ACTIONS(5270), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_QMARK] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_SEMI] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_void] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym_type] = ACTIONS(5272), + [anon_sym_anyopaque] = ACTIONS(5272), + [anon_sym_bool] = ACTIONS(5272), + [anon_sym_int] = ACTIONS(5272), + [anon_sym_uint] = ACTIONS(5272), + [anon_sym_float] = ACTIONS(5272), + [anon_sym_range] = ACTIONS(5272), + [anon_sym_i8] = ACTIONS(5272), + [anon_sym_i16] = ACTIONS(5272), + [anon_sym_i32] = ACTIONS(5272), + [anon_sym_i64] = ACTIONS(5272), + [anon_sym_u8] = ACTIONS(5272), + [anon_sym_u16] = ACTIONS(5272), + [anon_sym_u32] = ACTIONS(5272), + [anon_sym_u64] = ACTIONS(5272), + [anon_sym_isize] = ACTIONS(5272), + [anon_sym_usize] = ACTIONS(5272), + [anon_sym_f32] = ACTIONS(5272), + [anon_sym_f64] = ACTIONS(5272), + [anon_sym_c_char] = ACTIONS(5272), + [anon_sym_c_schar] = ACTIONS(5272), + [anon_sym_c_uchar] = ACTIONS(5272), + [anon_sym_c_short] = ACTIONS(5272), + [anon_sym_c_ushort] = ACTIONS(5272), + [anon_sym_c_int] = ACTIONS(5272), + [anon_sym_c_uint] = ACTIONS(5272), + [anon_sym_c_long] = ACTIONS(5272), + [anon_sym_c_ulong] = ACTIONS(5272), + [anon_sym_c_longlong] = ACTIONS(5272), + [anon_sym_c_ulonglong] = ACTIONS(5272), + [anon_sym_c_float] = ACTIONS(5272), + [anon_sym_c_double] = ACTIONS(5272), + [anon_sym_c_longdouble] = ACTIONS(5272), + [anon_sym_PLUS_EQ] = ACTIONS(5270), + [anon_sym_DASH_EQ] = ACTIONS(5270), + [anon_sym_STAR_EQ] = ACTIONS(5270), + [anon_sym_SLASH_EQ] = ACTIONS(5270), + [anon_sym_AMP_EQ] = ACTIONS(5270), + [anon_sym_PIPE_EQ] = ACTIONS(5270), + [anon_sym_xor_EQ] = ACTIONS(5270), + [anon_sym_LT_LT_EQ] = ACTIONS(5270), + [anon_sym_GT_GT_EQ] = ACTIONS(5270), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5270), + [anon_sym_return] = ACTIONS(5272), + [anon_sym_yield] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5270), + [anon_sym_break] = ACTIONS(5272), + [anon_sym_continue] = ACTIONS(5272), + [anon_sym_defer] = ACTIONS(5272), + [anon_sym_errdefer] = ACTIONS(5272), + [anon_sym_if] = ACTIONS(5272), + [anon_sym_else] = ACTIONS(5272), + [anon_sym_while] = ACTIONS(5272), + [anon_sym_expand] = ACTIONS(5272), + [anon_sym_for] = ACTIONS(5272), + [anon_sym_match] = ACTIONS(5272), + [anon_sym_DOT_DOT] = ACTIONS(5272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5270), + [anon_sym_orelse] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5272), + [anon_sym_and] = ACTIONS(5272), + [anon_sym_EQ_EQ] = ACTIONS(5270), + [anon_sym_BANG_EQ] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_GT_EQ] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5272), + [anon_sym_xor] = ACTIONS(5272), + [anon_sym_LT_LT] = ACTIONS(5272), + [anon_sym_GT_GT] = ACTIONS(5272), + [anon_sym_LT_LT_PIPE] = ACTIONS(5272), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_catch] = ACTIONS(5272), + [anon_sym_TILDE] = ACTIONS(5270), + [anon_sym_try] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_true] = ACTIONS(5272), + [anon_sym_false] = ACTIONS(5272), + [anon_sym_null] = ACTIONS(5272), + [anon_sym_unreachable] = ACTIONS(5272), + [anon_sym_undefined] = ACTIONS(5272), + [sym_sink] = ACTIONS(5272), + [sym_integer] = ACTIONS(5272), + [sym_float] = ACTIONS(5270), + [anon_sym_DQUOTE] = ACTIONS(5270), + [sym_multiline_string] = ACTIONS(5270), + [sym_character] = ACTIONS(5270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5270), + }, + [STATE(2389)] = { + [ts_builtin_sym_end] = ACTIONS(5274), + [sym_identifier] = ACTIONS(5276), + [anon_sym_import] = ACTIONS(5276), + [anon_sym_test] = ACTIONS(5276), + [anon_sym_hide] = ACTIONS(5276), + [anon_sym_func] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_struct] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_DOLLAR] = ACTIONS(5274), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5274), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_SEMI] = ACTIONS(5274), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_void] = ACTIONS(5276), + [anon_sym_noreturn] = ACTIONS(5276), + [anon_sym_type] = ACTIONS(5276), + [anon_sym_anyopaque] = ACTIONS(5276), + [anon_sym_bool] = ACTIONS(5276), + [anon_sym_int] = ACTIONS(5276), + [anon_sym_uint] = ACTIONS(5276), + [anon_sym_float] = ACTIONS(5276), + [anon_sym_range] = ACTIONS(5276), + [anon_sym_i8] = ACTIONS(5276), + [anon_sym_i16] = ACTIONS(5276), + [anon_sym_i32] = ACTIONS(5276), + [anon_sym_i64] = ACTIONS(5276), + [anon_sym_u8] = ACTIONS(5276), + [anon_sym_u16] = ACTIONS(5276), + [anon_sym_u32] = ACTIONS(5276), + [anon_sym_u64] = ACTIONS(5276), + [anon_sym_isize] = ACTIONS(5276), + [anon_sym_usize] = ACTIONS(5276), + [anon_sym_f32] = ACTIONS(5276), + [anon_sym_f64] = ACTIONS(5276), + [anon_sym_c_char] = ACTIONS(5276), + [anon_sym_c_schar] = ACTIONS(5276), + [anon_sym_c_uchar] = ACTIONS(5276), + [anon_sym_c_short] = ACTIONS(5276), + [anon_sym_c_ushort] = ACTIONS(5276), + [anon_sym_c_int] = ACTIONS(5276), + [anon_sym_c_uint] = ACTIONS(5276), + [anon_sym_c_long] = ACTIONS(5276), + [anon_sym_c_ulong] = ACTIONS(5276), + [anon_sym_c_longlong] = ACTIONS(5276), + [anon_sym_c_ulonglong] = ACTIONS(5276), + [anon_sym_c_float] = ACTIONS(5276), + [anon_sym_c_double] = ACTIONS(5276), + [anon_sym_c_longdouble] = ACTIONS(5276), + [anon_sym_PLUS_EQ] = ACTIONS(5274), + [anon_sym_DASH_EQ] = ACTIONS(5274), + [anon_sym_STAR_EQ] = ACTIONS(5274), + [anon_sym_SLASH_EQ] = ACTIONS(5274), + [anon_sym_AMP_EQ] = ACTIONS(5274), + [anon_sym_PIPE_EQ] = ACTIONS(5274), + [anon_sym_xor_EQ] = ACTIONS(5274), + [anon_sym_LT_LT_EQ] = ACTIONS(5274), + [anon_sym_GT_GT_EQ] = ACTIONS(5274), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5274), + [anon_sym_return] = ACTIONS(5276), + [anon_sym_yield] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5274), + [anon_sym_break] = ACTIONS(5276), + [anon_sym_continue] = ACTIONS(5276), + [anon_sym_defer] = ACTIONS(5276), + [anon_sym_errdefer] = ACTIONS(5276), + [anon_sym_if] = ACTIONS(5276), + [anon_sym_else] = ACTIONS(5276), + [anon_sym_while] = ACTIONS(5276), + [anon_sym_expand] = ACTIONS(5276), + [anon_sym_for] = ACTIONS(5276), + [anon_sym_match] = ACTIONS(5276), + [anon_sym_DOT_DOT] = ACTIONS(5276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5274), + [anon_sym_orelse] = ACTIONS(5276), + [anon_sym_or] = ACTIONS(5276), + [anon_sym_and] = ACTIONS(5276), + [anon_sym_EQ_EQ] = ACTIONS(5274), + [anon_sym_BANG_EQ] = ACTIONS(5274), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_LT_EQ] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_GT_EQ] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(5276), + [anon_sym_xor] = ACTIONS(5276), + [anon_sym_LT_LT] = ACTIONS(5276), + [anon_sym_GT_GT] = ACTIONS(5276), + [anon_sym_LT_LT_PIPE] = ACTIONS(5276), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_catch] = ACTIONS(5276), + [anon_sym_TILDE] = ACTIONS(5274), + [anon_sym_try] = ACTIONS(5276), + [anon_sym_DOT] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5274), + [anon_sym_true] = ACTIONS(5276), + [anon_sym_false] = ACTIONS(5276), + [anon_sym_null] = ACTIONS(5276), + [anon_sym_unreachable] = ACTIONS(5276), + [anon_sym_undefined] = ACTIONS(5276), + [sym_sink] = ACTIONS(5276), + [sym_integer] = ACTIONS(5276), + [sym_float] = ACTIONS(5274), + [anon_sym_DQUOTE] = ACTIONS(5274), + [sym_multiline_string] = ACTIONS(5274), + [sym_character] = ACTIONS(5274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5274), + }, + [STATE(2390)] = { + [ts_builtin_sym_end] = ACTIONS(5278), + [sym_identifier] = ACTIONS(5280), + [anon_sym_import] = ACTIONS(5280), + [anon_sym_test] = ACTIONS(5280), + [anon_sym_hide] = ACTIONS(5280), + [anon_sym_func] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_EQ] = ACTIONS(5280), + [anon_sym_struct] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_RBRACE] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_DOLLAR] = ACTIONS(5278), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_QMARK] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_SEMI] = ACTIONS(5278), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_void] = ACTIONS(5280), + [anon_sym_noreturn] = ACTIONS(5280), + [anon_sym_type] = ACTIONS(5280), + [anon_sym_anyopaque] = ACTIONS(5280), + [anon_sym_bool] = ACTIONS(5280), + [anon_sym_int] = ACTIONS(5280), + [anon_sym_uint] = ACTIONS(5280), + [anon_sym_float] = ACTIONS(5280), + [anon_sym_range] = ACTIONS(5280), + [anon_sym_i8] = ACTIONS(5280), + [anon_sym_i16] = ACTIONS(5280), + [anon_sym_i32] = ACTIONS(5280), + [anon_sym_i64] = ACTIONS(5280), + [anon_sym_u8] = ACTIONS(5280), + [anon_sym_u16] = ACTIONS(5280), + [anon_sym_u32] = ACTIONS(5280), + [anon_sym_u64] = ACTIONS(5280), + [anon_sym_isize] = ACTIONS(5280), + [anon_sym_usize] = ACTIONS(5280), + [anon_sym_f32] = ACTIONS(5280), + [anon_sym_f64] = ACTIONS(5280), + [anon_sym_c_char] = ACTIONS(5280), + [anon_sym_c_schar] = ACTIONS(5280), + [anon_sym_c_uchar] = ACTIONS(5280), + [anon_sym_c_short] = ACTIONS(5280), + [anon_sym_c_ushort] = ACTIONS(5280), + [anon_sym_c_int] = ACTIONS(5280), + [anon_sym_c_uint] = ACTIONS(5280), + [anon_sym_c_long] = ACTIONS(5280), + [anon_sym_c_ulong] = ACTIONS(5280), + [anon_sym_c_longlong] = ACTIONS(5280), + [anon_sym_c_ulonglong] = ACTIONS(5280), + [anon_sym_c_float] = ACTIONS(5280), + [anon_sym_c_double] = ACTIONS(5280), + [anon_sym_c_longdouble] = ACTIONS(5280), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_xor_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5278), + [anon_sym_return] = ACTIONS(5280), + [anon_sym_yield] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5278), + [anon_sym_break] = ACTIONS(5280), + [anon_sym_continue] = ACTIONS(5280), + [anon_sym_defer] = ACTIONS(5280), + [anon_sym_errdefer] = ACTIONS(5280), + [anon_sym_if] = ACTIONS(5280), + [anon_sym_else] = ACTIONS(5280), + [anon_sym_while] = ACTIONS(5280), + [anon_sym_expand] = ACTIONS(5280), + [anon_sym_for] = ACTIONS(5280), + [anon_sym_match] = ACTIONS(5280), + [anon_sym_DOT_DOT] = ACTIONS(5280), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5278), + [anon_sym_orelse] = ACTIONS(5280), + [anon_sym_or] = ACTIONS(5280), + [anon_sym_and] = ACTIONS(5280), + [anon_sym_EQ_EQ] = ACTIONS(5278), + [anon_sym_BANG_EQ] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5280), + [anon_sym_xor] = ACTIONS(5280), + [anon_sym_LT_LT] = ACTIONS(5280), + [anon_sym_GT_GT] = ACTIONS(5280), + [anon_sym_LT_LT_PIPE] = ACTIONS(5280), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_catch] = ACTIONS(5280), + [anon_sym_TILDE] = ACTIONS(5278), + [anon_sym_try] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5278), + [anon_sym_true] = ACTIONS(5280), + [anon_sym_false] = ACTIONS(5280), + [anon_sym_null] = ACTIONS(5280), + [anon_sym_unreachable] = ACTIONS(5280), + [anon_sym_undefined] = ACTIONS(5280), + [sym_sink] = ACTIONS(5280), + [sym_integer] = ACTIONS(5280), + [sym_float] = ACTIONS(5278), + [anon_sym_DQUOTE] = ACTIONS(5278), + [sym_multiline_string] = ACTIONS(5278), + [sym_character] = ACTIONS(5278), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5278), + }, + [STATE(2391)] = { + [ts_builtin_sym_end] = ACTIONS(5282), + [sym_identifier] = ACTIONS(5284), + [anon_sym_import] = ACTIONS(5284), + [anon_sym_test] = ACTIONS(5284), + [anon_sym_hide] = ACTIONS(5284), + [anon_sym_func] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_EQ] = ACTIONS(5284), + [anon_sym_struct] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_QMARK] = ACTIONS(5282), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_SEMI] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_void] = ACTIONS(5284), + [anon_sym_noreturn] = ACTIONS(5284), + [anon_sym_type] = ACTIONS(5284), + [anon_sym_anyopaque] = ACTIONS(5284), + [anon_sym_bool] = ACTIONS(5284), + [anon_sym_int] = ACTIONS(5284), + [anon_sym_uint] = ACTIONS(5284), + [anon_sym_float] = ACTIONS(5284), + [anon_sym_range] = ACTIONS(5284), + [anon_sym_i8] = ACTIONS(5284), + [anon_sym_i16] = ACTIONS(5284), + [anon_sym_i32] = ACTIONS(5284), + [anon_sym_i64] = ACTIONS(5284), + [anon_sym_u8] = ACTIONS(5284), + [anon_sym_u16] = ACTIONS(5284), + [anon_sym_u32] = ACTIONS(5284), + [anon_sym_u64] = ACTIONS(5284), + [anon_sym_isize] = ACTIONS(5284), + [anon_sym_usize] = ACTIONS(5284), + [anon_sym_f32] = ACTIONS(5284), + [anon_sym_f64] = ACTIONS(5284), + [anon_sym_c_char] = ACTIONS(5284), + [anon_sym_c_schar] = ACTIONS(5284), + [anon_sym_c_uchar] = ACTIONS(5284), + [anon_sym_c_short] = ACTIONS(5284), + [anon_sym_c_ushort] = ACTIONS(5284), + [anon_sym_c_int] = ACTIONS(5284), + [anon_sym_c_uint] = ACTIONS(5284), + [anon_sym_c_long] = ACTIONS(5284), + [anon_sym_c_ulong] = ACTIONS(5284), + [anon_sym_c_longlong] = ACTIONS(5284), + [anon_sym_c_ulonglong] = ACTIONS(5284), + [anon_sym_c_float] = ACTIONS(5284), + [anon_sym_c_double] = ACTIONS(5284), + [anon_sym_c_longdouble] = ACTIONS(5284), + [anon_sym_PLUS_EQ] = ACTIONS(5282), + [anon_sym_DASH_EQ] = ACTIONS(5282), + [anon_sym_STAR_EQ] = ACTIONS(5282), + [anon_sym_SLASH_EQ] = ACTIONS(5282), + [anon_sym_AMP_EQ] = ACTIONS(5282), + [anon_sym_PIPE_EQ] = ACTIONS(5282), + [anon_sym_xor_EQ] = ACTIONS(5282), + [anon_sym_LT_LT_EQ] = ACTIONS(5282), + [anon_sym_GT_GT_EQ] = ACTIONS(5282), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5282), + [anon_sym_return] = ACTIONS(5284), + [anon_sym_yield] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5282), + [anon_sym_break] = ACTIONS(5284), + [anon_sym_continue] = ACTIONS(5284), + [anon_sym_defer] = ACTIONS(5284), + [anon_sym_errdefer] = ACTIONS(5284), + [anon_sym_if] = ACTIONS(5284), + [anon_sym_else] = ACTIONS(5284), + [anon_sym_while] = ACTIONS(5284), + [anon_sym_expand] = ACTIONS(5284), + [anon_sym_for] = ACTIONS(5284), + [anon_sym_match] = ACTIONS(5284), + [anon_sym_DOT_DOT] = ACTIONS(5284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5282), + [anon_sym_orelse] = ACTIONS(5284), + [anon_sym_or] = ACTIONS(5284), + [anon_sym_and] = ACTIONS(5284), + [anon_sym_EQ_EQ] = ACTIONS(5282), + [anon_sym_BANG_EQ] = ACTIONS(5282), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_LT_EQ] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_EQ] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), + [anon_sym_xor] = ACTIONS(5284), + [anon_sym_LT_LT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5284), + [anon_sym_LT_LT_PIPE] = ACTIONS(5284), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_catch] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5282), + [anon_sym_try] = ACTIONS(5284), + [anon_sym_DOT] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5282), + [anon_sym_true] = ACTIONS(5284), + [anon_sym_false] = ACTIONS(5284), + [anon_sym_null] = ACTIONS(5284), + [anon_sym_unreachable] = ACTIONS(5284), + [anon_sym_undefined] = ACTIONS(5284), + [sym_sink] = ACTIONS(5284), + [sym_integer] = ACTIONS(5284), + [sym_float] = ACTIONS(5282), + [anon_sym_DQUOTE] = ACTIONS(5282), + [sym_multiline_string] = ACTIONS(5282), + [sym_character] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5282), + }, + [STATE(2392)] = { + [ts_builtin_sym_end] = ACTIONS(5286), + [sym_identifier] = ACTIONS(5288), + [anon_sym_import] = ACTIONS(5288), + [anon_sym_test] = ACTIONS(5288), + [anon_sym_hide] = ACTIONS(5288), + [anon_sym_func] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_EQ] = ACTIONS(5288), + [anon_sym_struct] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_QMARK] = ACTIONS(5286), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_SEMI] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_void] = ACTIONS(5288), + [anon_sym_noreturn] = ACTIONS(5288), + [anon_sym_type] = ACTIONS(5288), + [anon_sym_anyopaque] = ACTIONS(5288), + [anon_sym_bool] = ACTIONS(5288), + [anon_sym_int] = ACTIONS(5288), + [anon_sym_uint] = ACTIONS(5288), + [anon_sym_float] = ACTIONS(5288), + [anon_sym_range] = ACTIONS(5288), + [anon_sym_i8] = ACTIONS(5288), + [anon_sym_i16] = ACTIONS(5288), + [anon_sym_i32] = ACTIONS(5288), + [anon_sym_i64] = ACTIONS(5288), + [anon_sym_u8] = ACTIONS(5288), + [anon_sym_u16] = ACTIONS(5288), + [anon_sym_u32] = ACTIONS(5288), + [anon_sym_u64] = ACTIONS(5288), + [anon_sym_isize] = ACTIONS(5288), + [anon_sym_usize] = ACTIONS(5288), + [anon_sym_f32] = ACTIONS(5288), + [anon_sym_f64] = ACTIONS(5288), + [anon_sym_c_char] = ACTIONS(5288), + [anon_sym_c_schar] = ACTIONS(5288), + [anon_sym_c_uchar] = ACTIONS(5288), + [anon_sym_c_short] = ACTIONS(5288), + [anon_sym_c_ushort] = ACTIONS(5288), + [anon_sym_c_int] = ACTIONS(5288), + [anon_sym_c_uint] = ACTIONS(5288), + [anon_sym_c_long] = ACTIONS(5288), + [anon_sym_c_ulong] = ACTIONS(5288), + [anon_sym_c_longlong] = ACTIONS(5288), + [anon_sym_c_ulonglong] = ACTIONS(5288), + [anon_sym_c_float] = ACTIONS(5288), + [anon_sym_c_double] = ACTIONS(5288), + [anon_sym_c_longdouble] = ACTIONS(5288), + [anon_sym_PLUS_EQ] = ACTIONS(5286), + [anon_sym_DASH_EQ] = ACTIONS(5286), + [anon_sym_STAR_EQ] = ACTIONS(5286), + [anon_sym_SLASH_EQ] = ACTIONS(5286), + [anon_sym_AMP_EQ] = ACTIONS(5286), + [anon_sym_PIPE_EQ] = ACTIONS(5286), + [anon_sym_xor_EQ] = ACTIONS(5286), + [anon_sym_LT_LT_EQ] = ACTIONS(5286), + [anon_sym_GT_GT_EQ] = ACTIONS(5286), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5286), + [anon_sym_return] = ACTIONS(5288), + [anon_sym_yield] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5286), + [anon_sym_break] = ACTIONS(5288), + [anon_sym_continue] = ACTIONS(5288), + [anon_sym_defer] = ACTIONS(5288), + [anon_sym_errdefer] = ACTIONS(5288), + [anon_sym_if] = ACTIONS(5288), + [anon_sym_else] = ACTIONS(5288), + [anon_sym_while] = ACTIONS(5288), + [anon_sym_expand] = ACTIONS(5288), + [anon_sym_for] = ACTIONS(5288), + [anon_sym_match] = ACTIONS(5288), + [anon_sym_DOT_DOT] = ACTIONS(5288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5286), + [anon_sym_orelse] = ACTIONS(5288), + [anon_sym_or] = ACTIONS(5288), + [anon_sym_and] = ACTIONS(5288), + [anon_sym_EQ_EQ] = ACTIONS(5286), + [anon_sym_BANG_EQ] = ACTIONS(5286), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_LT_EQ] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_EQ] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), + [anon_sym_xor] = ACTIONS(5288), + [anon_sym_LT_LT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5288), + [anon_sym_LT_LT_PIPE] = ACTIONS(5288), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_catch] = ACTIONS(5288), + [anon_sym_TILDE] = ACTIONS(5286), + [anon_sym_try] = ACTIONS(5288), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5286), + [anon_sym_true] = ACTIONS(5288), + [anon_sym_false] = ACTIONS(5288), + [anon_sym_null] = ACTIONS(5288), + [anon_sym_unreachable] = ACTIONS(5288), + [anon_sym_undefined] = ACTIONS(5288), + [sym_sink] = ACTIONS(5288), + [sym_integer] = ACTIONS(5288), + [sym_float] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5286), + [sym_multiline_string] = ACTIONS(5286), + [sym_character] = ACTIONS(5286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5286), + }, + [STATE(2393)] = { + [ts_builtin_sym_end] = ACTIONS(5290), + [sym_identifier] = ACTIONS(5292), + [anon_sym_import] = ACTIONS(5292), + [anon_sym_test] = ACTIONS(5292), + [anon_sym_hide] = ACTIONS(5292), + [anon_sym_func] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_EQ] = ACTIONS(5292), + [anon_sym_struct] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_RBRACE] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_QMARK] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_SEMI] = ACTIONS(5290), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_void] = ACTIONS(5292), + [anon_sym_noreturn] = ACTIONS(5292), + [anon_sym_type] = ACTIONS(5292), + [anon_sym_anyopaque] = ACTIONS(5292), + [anon_sym_bool] = ACTIONS(5292), + [anon_sym_int] = ACTIONS(5292), + [anon_sym_uint] = ACTIONS(5292), + [anon_sym_float] = ACTIONS(5292), + [anon_sym_range] = ACTIONS(5292), + [anon_sym_i8] = ACTIONS(5292), + [anon_sym_i16] = ACTIONS(5292), + [anon_sym_i32] = ACTIONS(5292), + [anon_sym_i64] = ACTIONS(5292), + [anon_sym_u8] = ACTIONS(5292), + [anon_sym_u16] = ACTIONS(5292), + [anon_sym_u32] = ACTIONS(5292), + [anon_sym_u64] = ACTIONS(5292), + [anon_sym_isize] = ACTIONS(5292), + [anon_sym_usize] = ACTIONS(5292), + [anon_sym_f32] = ACTIONS(5292), + [anon_sym_f64] = ACTIONS(5292), + [anon_sym_c_char] = ACTIONS(5292), + [anon_sym_c_schar] = ACTIONS(5292), + [anon_sym_c_uchar] = ACTIONS(5292), + [anon_sym_c_short] = ACTIONS(5292), + [anon_sym_c_ushort] = ACTIONS(5292), + [anon_sym_c_int] = ACTIONS(5292), + [anon_sym_c_uint] = ACTIONS(5292), + [anon_sym_c_long] = ACTIONS(5292), + [anon_sym_c_ulong] = ACTIONS(5292), + [anon_sym_c_longlong] = ACTIONS(5292), + [anon_sym_c_ulonglong] = ACTIONS(5292), + [anon_sym_c_float] = ACTIONS(5292), + [anon_sym_c_double] = ACTIONS(5292), + [anon_sym_c_longdouble] = ACTIONS(5292), + [anon_sym_PLUS_EQ] = ACTIONS(5290), + [anon_sym_DASH_EQ] = ACTIONS(5290), + [anon_sym_STAR_EQ] = ACTIONS(5290), + [anon_sym_SLASH_EQ] = ACTIONS(5290), + [anon_sym_AMP_EQ] = ACTIONS(5290), + [anon_sym_PIPE_EQ] = ACTIONS(5290), + [anon_sym_xor_EQ] = ACTIONS(5290), + [anon_sym_LT_LT_EQ] = ACTIONS(5290), + [anon_sym_GT_GT_EQ] = ACTIONS(5290), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5290), + [anon_sym_return] = ACTIONS(5292), + [anon_sym_yield] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5290), + [anon_sym_break] = ACTIONS(5292), + [anon_sym_continue] = ACTIONS(5292), + [anon_sym_defer] = ACTIONS(5292), + [anon_sym_errdefer] = ACTIONS(5292), + [anon_sym_if] = ACTIONS(5292), + [anon_sym_else] = ACTIONS(5292), + [anon_sym_while] = ACTIONS(5292), + [anon_sym_expand] = ACTIONS(5292), + [anon_sym_for] = ACTIONS(5292), + [anon_sym_match] = ACTIONS(5292), + [anon_sym_DOT_DOT] = ACTIONS(5292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5290), + [anon_sym_orelse] = ACTIONS(5292), + [anon_sym_or] = ACTIONS(5292), + [anon_sym_and] = ACTIONS(5292), + [anon_sym_EQ_EQ] = ACTIONS(5290), + [anon_sym_BANG_EQ] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_LT_EQ] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_EQ] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), + [anon_sym_xor] = ACTIONS(5292), + [anon_sym_LT_LT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5292), + [anon_sym_LT_LT_PIPE] = ACTIONS(5292), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_catch] = ACTIONS(5292), + [anon_sym_TILDE] = ACTIONS(5290), + [anon_sym_try] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5290), + [anon_sym_true] = ACTIONS(5292), + [anon_sym_false] = ACTIONS(5292), + [anon_sym_null] = ACTIONS(5292), + [anon_sym_unreachable] = ACTIONS(5292), + [anon_sym_undefined] = ACTIONS(5292), + [sym_sink] = ACTIONS(5292), + [sym_integer] = ACTIONS(5292), + [sym_float] = ACTIONS(5290), + [anon_sym_DQUOTE] = ACTIONS(5290), + [sym_multiline_string] = ACTIONS(5290), + [sym_character] = ACTIONS(5290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5290), + }, + [STATE(2394)] = { + [ts_builtin_sym_end] = ACTIONS(5294), + [sym_identifier] = ACTIONS(5296), + [anon_sym_import] = ACTIONS(5296), + [anon_sym_test] = ACTIONS(5296), + [anon_sym_hide] = ACTIONS(5296), + [anon_sym_func] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_EQ] = ACTIONS(5296), + [anon_sym_struct] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_RPAREN] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_DOLLAR] = ACTIONS(5294), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5294), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_SEMI] = ACTIONS(5294), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_void] = ACTIONS(5296), + [anon_sym_noreturn] = ACTIONS(5296), + [anon_sym_type] = ACTIONS(5296), + [anon_sym_anyopaque] = ACTIONS(5296), + [anon_sym_bool] = ACTIONS(5296), + [anon_sym_int] = ACTIONS(5296), + [anon_sym_uint] = ACTIONS(5296), + [anon_sym_float] = ACTIONS(5296), + [anon_sym_range] = ACTIONS(5296), + [anon_sym_i8] = ACTIONS(5296), + [anon_sym_i16] = ACTIONS(5296), + [anon_sym_i32] = ACTIONS(5296), + [anon_sym_i64] = ACTIONS(5296), + [anon_sym_u8] = ACTIONS(5296), + [anon_sym_u16] = ACTIONS(5296), + [anon_sym_u32] = ACTIONS(5296), + [anon_sym_u64] = ACTIONS(5296), + [anon_sym_isize] = ACTIONS(5296), + [anon_sym_usize] = ACTIONS(5296), + [anon_sym_f32] = ACTIONS(5296), + [anon_sym_f64] = ACTIONS(5296), + [anon_sym_c_char] = ACTIONS(5296), + [anon_sym_c_schar] = ACTIONS(5296), + [anon_sym_c_uchar] = ACTIONS(5296), + [anon_sym_c_short] = ACTIONS(5296), + [anon_sym_c_ushort] = ACTIONS(5296), + [anon_sym_c_int] = ACTIONS(5296), + [anon_sym_c_uint] = ACTIONS(5296), + [anon_sym_c_long] = ACTIONS(5296), + [anon_sym_c_ulong] = ACTIONS(5296), + [anon_sym_c_longlong] = ACTIONS(5296), + [anon_sym_c_ulonglong] = ACTIONS(5296), + [anon_sym_c_float] = ACTIONS(5296), + [anon_sym_c_double] = ACTIONS(5296), + [anon_sym_c_longdouble] = ACTIONS(5296), + [anon_sym_PLUS_EQ] = ACTIONS(5294), + [anon_sym_DASH_EQ] = ACTIONS(5294), + [anon_sym_STAR_EQ] = ACTIONS(5294), + [anon_sym_SLASH_EQ] = ACTIONS(5294), + [anon_sym_AMP_EQ] = ACTIONS(5294), + [anon_sym_PIPE_EQ] = ACTIONS(5294), + [anon_sym_xor_EQ] = ACTIONS(5294), + [anon_sym_LT_LT_EQ] = ACTIONS(5294), + [anon_sym_GT_GT_EQ] = ACTIONS(5294), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5294), + [anon_sym_return] = ACTIONS(5296), + [anon_sym_yield] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5294), + [anon_sym_break] = ACTIONS(5296), + [anon_sym_continue] = ACTIONS(5296), + [anon_sym_defer] = ACTIONS(5296), + [anon_sym_errdefer] = ACTIONS(5296), + [anon_sym_if] = ACTIONS(5296), + [anon_sym_else] = ACTIONS(5296), + [anon_sym_while] = ACTIONS(5296), + [anon_sym_expand] = ACTIONS(5296), + [anon_sym_for] = ACTIONS(5296), + [anon_sym_match] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(5296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5294), + [anon_sym_orelse] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5294), + [anon_sym_BANG_EQ] = ACTIONS(5294), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_LT_EQ] = ACTIONS(5294), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_GT_EQ] = ACTIONS(5294), + [anon_sym_AMP] = ACTIONS(5296), + [anon_sym_xor] = ACTIONS(5296), + [anon_sym_LT_LT] = ACTIONS(5296), + [anon_sym_GT_GT] = ACTIONS(5296), + [anon_sym_LT_LT_PIPE] = ACTIONS(5296), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_catch] = ACTIONS(5296), + [anon_sym_TILDE] = ACTIONS(5294), + [anon_sym_try] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5294), + [anon_sym_true] = ACTIONS(5296), + [anon_sym_false] = ACTIONS(5296), + [anon_sym_null] = ACTIONS(5296), + [anon_sym_unreachable] = ACTIONS(5296), + [anon_sym_undefined] = ACTIONS(5296), + [sym_sink] = ACTIONS(5296), + [sym_integer] = ACTIONS(5296), + [sym_float] = ACTIONS(5294), + [anon_sym_DQUOTE] = ACTIONS(5294), + [sym_multiline_string] = ACTIONS(5294), + [sym_character] = ACTIONS(5294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5294), + }, + [STATE(2395)] = { + [ts_builtin_sym_end] = ACTIONS(5298), + [sym_identifier] = ACTIONS(5300), + [anon_sym_import] = ACTIONS(5300), + [anon_sym_test] = ACTIONS(5300), + [anon_sym_hide] = ACTIONS(5300), + [anon_sym_func] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_EQ] = ACTIONS(5300), + [anon_sym_struct] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_RBRACE] = ACTIONS(5298), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_DOLLAR] = ACTIONS(5298), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5298), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_SEMI] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_void] = ACTIONS(5300), + [anon_sym_noreturn] = ACTIONS(5300), + [anon_sym_type] = ACTIONS(5300), + [anon_sym_anyopaque] = ACTIONS(5300), + [anon_sym_bool] = ACTIONS(5300), + [anon_sym_int] = ACTIONS(5300), + [anon_sym_uint] = ACTIONS(5300), + [anon_sym_float] = ACTIONS(5300), + [anon_sym_range] = ACTIONS(5300), + [anon_sym_i8] = ACTIONS(5300), + [anon_sym_i16] = ACTIONS(5300), + [anon_sym_i32] = ACTIONS(5300), + [anon_sym_i64] = ACTIONS(5300), + [anon_sym_u8] = ACTIONS(5300), + [anon_sym_u16] = ACTIONS(5300), + [anon_sym_u32] = ACTIONS(5300), + [anon_sym_u64] = ACTIONS(5300), + [anon_sym_isize] = ACTIONS(5300), + [anon_sym_usize] = ACTIONS(5300), + [anon_sym_f32] = ACTIONS(5300), + [anon_sym_f64] = ACTIONS(5300), + [anon_sym_c_char] = ACTIONS(5300), + [anon_sym_c_schar] = ACTIONS(5300), + [anon_sym_c_uchar] = ACTIONS(5300), + [anon_sym_c_short] = ACTIONS(5300), + [anon_sym_c_ushort] = ACTIONS(5300), + [anon_sym_c_int] = ACTIONS(5300), + [anon_sym_c_uint] = ACTIONS(5300), + [anon_sym_c_long] = ACTIONS(5300), + [anon_sym_c_ulong] = ACTIONS(5300), + [anon_sym_c_longlong] = ACTIONS(5300), + [anon_sym_c_ulonglong] = ACTIONS(5300), + [anon_sym_c_float] = ACTIONS(5300), + [anon_sym_c_double] = ACTIONS(5300), + [anon_sym_c_longdouble] = ACTIONS(5300), + [anon_sym_PLUS_EQ] = ACTIONS(5298), + [anon_sym_DASH_EQ] = ACTIONS(5298), + [anon_sym_STAR_EQ] = ACTIONS(5298), + [anon_sym_SLASH_EQ] = ACTIONS(5298), + [anon_sym_AMP_EQ] = ACTIONS(5298), + [anon_sym_PIPE_EQ] = ACTIONS(5298), + [anon_sym_xor_EQ] = ACTIONS(5298), + [anon_sym_LT_LT_EQ] = ACTIONS(5298), + [anon_sym_GT_GT_EQ] = ACTIONS(5298), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5298), + [anon_sym_return] = ACTIONS(5300), + [anon_sym_yield] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5298), + [anon_sym_break] = ACTIONS(5300), + [anon_sym_continue] = ACTIONS(5300), + [anon_sym_defer] = ACTIONS(5300), + [anon_sym_errdefer] = ACTIONS(5300), + [anon_sym_if] = ACTIONS(5300), + [anon_sym_else] = ACTIONS(5300), + [anon_sym_while] = ACTIONS(5300), + [anon_sym_expand] = ACTIONS(5300), + [anon_sym_for] = ACTIONS(5300), + [anon_sym_match] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5298), + [anon_sym_orelse] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5298), + [anon_sym_BANG_EQ] = ACTIONS(5298), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_LT_EQ] = ACTIONS(5298), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5298), + [anon_sym_AMP] = ACTIONS(5300), + [anon_sym_xor] = ACTIONS(5300), + [anon_sym_LT_LT] = ACTIONS(5300), + [anon_sym_GT_GT] = ACTIONS(5300), + [anon_sym_LT_LT_PIPE] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_catch] = ACTIONS(5300), + [anon_sym_TILDE] = ACTIONS(5298), + [anon_sym_try] = ACTIONS(5300), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5298), + [anon_sym_true] = ACTIONS(5300), + [anon_sym_false] = ACTIONS(5300), + [anon_sym_null] = ACTIONS(5300), + [anon_sym_unreachable] = ACTIONS(5300), + [anon_sym_undefined] = ACTIONS(5300), + [sym_sink] = ACTIONS(5300), + [sym_integer] = ACTIONS(5300), + [sym_float] = ACTIONS(5298), + [anon_sym_DQUOTE] = ACTIONS(5298), + [sym_multiline_string] = ACTIONS(5298), + [sym_character] = ACTIONS(5298), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5298), + }, + [STATE(2396)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2397), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5302), + }, + [STATE(2397)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2398)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2401), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5304), + }, + [STATE(2399)] = { + [ts_builtin_sym_end] = ACTIONS(5306), + [sym_identifier] = ACTIONS(5308), + [anon_sym_import] = ACTIONS(5308), + [anon_sym_test] = ACTIONS(5308), + [anon_sym_hide] = ACTIONS(5308), + [anon_sym_func] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_EQ] = ACTIONS(5308), + [anon_sym_struct] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_RPAREN] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_DOLLAR] = ACTIONS(5306), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5306), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_SEMI] = ACTIONS(5306), + [anon_sym_RBRACK] = ACTIONS(5306), + [anon_sym_void] = ACTIONS(5308), + [anon_sym_noreturn] = ACTIONS(5308), + [anon_sym_type] = ACTIONS(5308), + [anon_sym_anyopaque] = ACTIONS(5308), + [anon_sym_bool] = ACTIONS(5308), + [anon_sym_int] = ACTIONS(5308), + [anon_sym_uint] = ACTIONS(5308), + [anon_sym_float] = ACTIONS(5308), + [anon_sym_range] = ACTIONS(5308), + [anon_sym_i8] = ACTIONS(5308), + [anon_sym_i16] = ACTIONS(5308), + [anon_sym_i32] = ACTIONS(5308), + [anon_sym_i64] = ACTIONS(5308), + [anon_sym_u8] = ACTIONS(5308), + [anon_sym_u16] = ACTIONS(5308), + [anon_sym_u32] = ACTIONS(5308), + [anon_sym_u64] = ACTIONS(5308), + [anon_sym_isize] = ACTIONS(5308), + [anon_sym_usize] = ACTIONS(5308), + [anon_sym_f32] = ACTIONS(5308), + [anon_sym_f64] = ACTIONS(5308), + [anon_sym_c_char] = ACTIONS(5308), + [anon_sym_c_schar] = ACTIONS(5308), + [anon_sym_c_uchar] = ACTIONS(5308), + [anon_sym_c_short] = ACTIONS(5308), + [anon_sym_c_ushort] = ACTIONS(5308), + [anon_sym_c_int] = ACTIONS(5308), + [anon_sym_c_uint] = ACTIONS(5308), + [anon_sym_c_long] = ACTIONS(5308), + [anon_sym_c_ulong] = ACTIONS(5308), + [anon_sym_c_longlong] = ACTIONS(5308), + [anon_sym_c_ulonglong] = ACTIONS(5308), + [anon_sym_c_float] = ACTIONS(5308), + [anon_sym_c_double] = ACTIONS(5308), + [anon_sym_c_longdouble] = ACTIONS(5308), + [anon_sym_PLUS_EQ] = ACTIONS(5306), + [anon_sym_DASH_EQ] = ACTIONS(5306), + [anon_sym_STAR_EQ] = ACTIONS(5306), + [anon_sym_SLASH_EQ] = ACTIONS(5306), + [anon_sym_AMP_EQ] = ACTIONS(5306), + [anon_sym_PIPE_EQ] = ACTIONS(5306), + [anon_sym_xor_EQ] = ACTIONS(5306), + [anon_sym_LT_LT_EQ] = ACTIONS(5306), + [anon_sym_GT_GT_EQ] = ACTIONS(5306), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5306), + [anon_sym_return] = ACTIONS(5308), + [anon_sym_yield] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(5306), + [anon_sym_break] = ACTIONS(5308), + [anon_sym_continue] = ACTIONS(5308), + [anon_sym_defer] = ACTIONS(5308), + [anon_sym_errdefer] = ACTIONS(5308), + [anon_sym_if] = ACTIONS(5308), + [anon_sym_else] = ACTIONS(5308), + [anon_sym_while] = ACTIONS(5308), + [anon_sym_expand] = ACTIONS(5308), + [anon_sym_for] = ACTIONS(5308), + [anon_sym_match] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5306), + [anon_sym_orelse] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5306), + [anon_sym_BANG_EQ] = ACTIONS(5306), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5306), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5306), + [anon_sym_AMP] = ACTIONS(5308), + [anon_sym_xor] = ACTIONS(5308), + [anon_sym_LT_LT] = ACTIONS(5308), + [anon_sym_GT_GT] = ACTIONS(5308), + [anon_sym_LT_LT_PIPE] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_catch] = ACTIONS(5308), + [anon_sym_TILDE] = ACTIONS(5306), + [anon_sym_try] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5306), + [anon_sym_true] = ACTIONS(5308), + [anon_sym_false] = ACTIONS(5308), + [anon_sym_null] = ACTIONS(5308), + [anon_sym_unreachable] = ACTIONS(5308), + [anon_sym_undefined] = ACTIONS(5308), + [sym_sink] = ACTIONS(5308), + [sym_integer] = ACTIONS(5308), + [sym_float] = ACTIONS(5306), + [anon_sym_DQUOTE] = ACTIONS(5306), + [sym_multiline_string] = ACTIONS(5306), + [sym_character] = ACTIONS(5306), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5306), + }, + [STATE(2400)] = { + [ts_builtin_sym_end] = ACTIONS(5310), + [sym_identifier] = ACTIONS(5312), + [anon_sym_import] = ACTIONS(5312), + [anon_sym_test] = ACTIONS(5312), + [anon_sym_hide] = ACTIONS(5312), + [anon_sym_func] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_struct] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_SEMI] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5310), + [anon_sym_void] = ACTIONS(5312), + [anon_sym_noreturn] = ACTIONS(5312), + [anon_sym_type] = ACTIONS(5312), + [anon_sym_anyopaque] = ACTIONS(5312), + [anon_sym_bool] = ACTIONS(5312), + [anon_sym_int] = ACTIONS(5312), + [anon_sym_uint] = ACTIONS(5312), + [anon_sym_float] = ACTIONS(5312), + [anon_sym_range] = ACTIONS(5312), + [anon_sym_i8] = ACTIONS(5312), + [anon_sym_i16] = ACTIONS(5312), + [anon_sym_i32] = ACTIONS(5312), + [anon_sym_i64] = ACTIONS(5312), + [anon_sym_u8] = ACTIONS(5312), + [anon_sym_u16] = ACTIONS(5312), + [anon_sym_u32] = ACTIONS(5312), + [anon_sym_u64] = ACTIONS(5312), + [anon_sym_isize] = ACTIONS(5312), + [anon_sym_usize] = ACTIONS(5312), + [anon_sym_f32] = ACTIONS(5312), + [anon_sym_f64] = ACTIONS(5312), + [anon_sym_c_char] = ACTIONS(5312), + [anon_sym_c_schar] = ACTIONS(5312), + [anon_sym_c_uchar] = ACTIONS(5312), + [anon_sym_c_short] = ACTIONS(5312), + [anon_sym_c_ushort] = ACTIONS(5312), + [anon_sym_c_int] = ACTIONS(5312), + [anon_sym_c_uint] = ACTIONS(5312), + [anon_sym_c_long] = ACTIONS(5312), + [anon_sym_c_ulong] = ACTIONS(5312), + [anon_sym_c_longlong] = ACTIONS(5312), + [anon_sym_c_ulonglong] = ACTIONS(5312), + [anon_sym_c_float] = ACTIONS(5312), + [anon_sym_c_double] = ACTIONS(5312), + [anon_sym_c_longdouble] = ACTIONS(5312), + [anon_sym_PLUS_EQ] = ACTIONS(5310), + [anon_sym_DASH_EQ] = ACTIONS(5310), + [anon_sym_STAR_EQ] = ACTIONS(5310), + [anon_sym_SLASH_EQ] = ACTIONS(5310), + [anon_sym_AMP_EQ] = ACTIONS(5310), + [anon_sym_PIPE_EQ] = ACTIONS(5310), + [anon_sym_xor_EQ] = ACTIONS(5310), + [anon_sym_LT_LT_EQ] = ACTIONS(5310), + [anon_sym_GT_GT_EQ] = ACTIONS(5310), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5310), + [anon_sym_return] = ACTIONS(5312), + [anon_sym_yield] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5310), + [anon_sym_break] = ACTIONS(5312), + [anon_sym_continue] = ACTIONS(5312), + [anon_sym_defer] = ACTIONS(5312), + [anon_sym_errdefer] = ACTIONS(5312), + [anon_sym_if] = ACTIONS(5312), + [anon_sym_else] = ACTIONS(5312), + [anon_sym_while] = ACTIONS(5312), + [anon_sym_expand] = ACTIONS(5312), + [anon_sym_for] = ACTIONS(5312), + [anon_sym_match] = ACTIONS(5312), + [anon_sym_DOT_DOT] = ACTIONS(5312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5310), + [anon_sym_orelse] = ACTIONS(5312), + [anon_sym_or] = ACTIONS(5312), + [anon_sym_and] = ACTIONS(5312), + [anon_sym_EQ_EQ] = ACTIONS(5310), + [anon_sym_BANG_EQ] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_LT_EQ] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_EQ] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + [anon_sym_xor] = ACTIONS(5312), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5312), + [anon_sym_LT_LT_PIPE] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_catch] = ACTIONS(5312), + [anon_sym_TILDE] = ACTIONS(5310), + [anon_sym_try] = ACTIONS(5312), + [anon_sym_DOT] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5310), + [anon_sym_true] = ACTIONS(5312), + [anon_sym_false] = ACTIONS(5312), + [anon_sym_null] = ACTIONS(5312), + [anon_sym_unreachable] = ACTIONS(5312), + [anon_sym_undefined] = ACTIONS(5312), + [sym_sink] = ACTIONS(5312), + [sym_integer] = ACTIONS(5312), + [sym_float] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(5310), + [sym_multiline_string] = ACTIONS(5310), + [sym_character] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5310), + }, + [STATE(2401)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2402)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2407), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5314), + }, + [STATE(2403)] = { + [ts_builtin_sym_end] = ACTIONS(5316), + [sym_identifier] = ACTIONS(5318), + [anon_sym_import] = ACTIONS(5318), + [anon_sym_test] = ACTIONS(5318), + [anon_sym_hide] = ACTIONS(5318), + [anon_sym_func] = ACTIONS(5318), + [anon_sym_BANG] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_struct] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(5316), + [anon_sym_LBRACE] = ACTIONS(5316), + [anon_sym_COMMA] = ACTIONS(5316), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_RBRACK] = ACTIONS(5316), + [anon_sym_void] = ACTIONS(5318), + [anon_sym_noreturn] = ACTIONS(5318), + [anon_sym_type] = ACTIONS(5318), + [anon_sym_anyopaque] = ACTIONS(5318), + [anon_sym_bool] = ACTIONS(5318), + [anon_sym_int] = ACTIONS(5318), + [anon_sym_uint] = ACTIONS(5318), + [anon_sym_float] = ACTIONS(5318), + [anon_sym_range] = ACTIONS(5318), + [anon_sym_i8] = ACTIONS(5318), + [anon_sym_i16] = ACTIONS(5318), + [anon_sym_i32] = ACTIONS(5318), + [anon_sym_i64] = ACTIONS(5318), + [anon_sym_u8] = ACTIONS(5318), + [anon_sym_u16] = ACTIONS(5318), + [anon_sym_u32] = ACTIONS(5318), + [anon_sym_u64] = ACTIONS(5318), + [anon_sym_isize] = ACTIONS(5318), + [anon_sym_usize] = ACTIONS(5318), + [anon_sym_f32] = ACTIONS(5318), + [anon_sym_f64] = ACTIONS(5318), + [anon_sym_c_char] = ACTIONS(5318), + [anon_sym_c_schar] = ACTIONS(5318), + [anon_sym_c_uchar] = ACTIONS(5318), + [anon_sym_c_short] = ACTIONS(5318), + [anon_sym_c_ushort] = ACTIONS(5318), + [anon_sym_c_int] = ACTIONS(5318), + [anon_sym_c_uint] = ACTIONS(5318), + [anon_sym_c_long] = ACTIONS(5318), + [anon_sym_c_ulong] = ACTIONS(5318), + [anon_sym_c_longlong] = ACTIONS(5318), + [anon_sym_c_ulonglong] = ACTIONS(5318), + [anon_sym_c_float] = ACTIONS(5318), + [anon_sym_c_double] = ACTIONS(5318), + [anon_sym_c_longdouble] = ACTIONS(5318), + [anon_sym_PLUS_EQ] = ACTIONS(5316), + [anon_sym_DASH_EQ] = ACTIONS(5316), + [anon_sym_STAR_EQ] = ACTIONS(5316), + [anon_sym_SLASH_EQ] = ACTIONS(5316), + [anon_sym_AMP_EQ] = ACTIONS(5316), + [anon_sym_PIPE_EQ] = ACTIONS(5316), + [anon_sym_xor_EQ] = ACTIONS(5316), + [anon_sym_LT_LT_EQ] = ACTIONS(5316), + [anon_sym_GT_GT_EQ] = ACTIONS(5316), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5316), + [anon_sym_return] = ACTIONS(5318), + [anon_sym_yield] = ACTIONS(5318), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_break] = ACTIONS(5318), + [anon_sym_continue] = ACTIONS(5318), + [anon_sym_defer] = ACTIONS(5318), + [anon_sym_errdefer] = ACTIONS(5318), + [anon_sym_if] = ACTIONS(5318), + [anon_sym_else] = ACTIONS(5318), + [anon_sym_while] = ACTIONS(5318), + [anon_sym_expand] = ACTIONS(5318), + [anon_sym_for] = ACTIONS(5318), + [anon_sym_match] = ACTIONS(5318), + [anon_sym_DOT_DOT] = ACTIONS(5318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5316), + [anon_sym_orelse] = ACTIONS(5318), + [anon_sym_or] = ACTIONS(5318), + [anon_sym_and] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5316), + [anon_sym_BANG_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_LT_EQ] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_EQ] = ACTIONS(5316), + [anon_sym_AMP] = ACTIONS(5318), + [anon_sym_xor] = ACTIONS(5318), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(5318), + [anon_sym_LT_LT_PIPE] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym_SLASH] = ACTIONS(5318), + [anon_sym_catch] = ACTIONS(5318), + [anon_sym_TILDE] = ACTIONS(5316), + [anon_sym_try] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym_true] = ACTIONS(5318), + [anon_sym_false] = ACTIONS(5318), + [anon_sym_null] = ACTIONS(5318), + [anon_sym_unreachable] = ACTIONS(5318), + [anon_sym_undefined] = ACTIONS(5318), + [sym_sink] = ACTIONS(5318), + [sym_integer] = ACTIONS(5318), + [sym_float] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [sym_multiline_string] = ACTIONS(5316), + [sym_character] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5316), + }, + [STATE(2404)] = { + [ts_builtin_sym_end] = ACTIONS(5320), + [sym_identifier] = ACTIONS(5322), + [anon_sym_import] = ACTIONS(5322), + [anon_sym_test] = ACTIONS(5322), + [anon_sym_hide] = ACTIONS(5322), + [anon_sym_func] = ACTIONS(5322), + [anon_sym_BANG] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_LBRACE] = ACTIONS(5320), + [anon_sym_COMMA] = ACTIONS(5320), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5322), + [anon_sym_QMARK] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_RBRACK] = ACTIONS(5320), + [anon_sym_void] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_type] = ACTIONS(5322), + [anon_sym_anyopaque] = ACTIONS(5322), + [anon_sym_bool] = ACTIONS(5322), + [anon_sym_int] = ACTIONS(5322), + [anon_sym_uint] = ACTIONS(5322), + [anon_sym_float] = ACTIONS(5322), + [anon_sym_range] = ACTIONS(5322), + [anon_sym_i8] = ACTIONS(5322), + [anon_sym_i16] = ACTIONS(5322), + [anon_sym_i32] = ACTIONS(5322), + [anon_sym_i64] = ACTIONS(5322), + [anon_sym_u8] = ACTIONS(5322), + [anon_sym_u16] = ACTIONS(5322), + [anon_sym_u32] = ACTIONS(5322), + [anon_sym_u64] = ACTIONS(5322), + [anon_sym_isize] = ACTIONS(5322), + [anon_sym_usize] = ACTIONS(5322), + [anon_sym_f32] = ACTIONS(5322), + [anon_sym_f64] = ACTIONS(5322), + [anon_sym_c_char] = ACTIONS(5322), + [anon_sym_c_schar] = ACTIONS(5322), + [anon_sym_c_uchar] = ACTIONS(5322), + [anon_sym_c_short] = ACTIONS(5322), + [anon_sym_c_ushort] = ACTIONS(5322), + [anon_sym_c_int] = ACTIONS(5322), + [anon_sym_c_uint] = ACTIONS(5322), + [anon_sym_c_long] = ACTIONS(5322), + [anon_sym_c_ulong] = ACTIONS(5322), + [anon_sym_c_longlong] = ACTIONS(5322), + [anon_sym_c_ulonglong] = ACTIONS(5322), + [anon_sym_c_float] = ACTIONS(5322), + [anon_sym_c_double] = ACTIONS(5322), + [anon_sym_c_longdouble] = ACTIONS(5322), + [anon_sym_PLUS_EQ] = ACTIONS(5320), + [anon_sym_DASH_EQ] = ACTIONS(5320), + [anon_sym_STAR_EQ] = ACTIONS(5320), + [anon_sym_SLASH_EQ] = ACTIONS(5320), + [anon_sym_AMP_EQ] = ACTIONS(5320), + [anon_sym_PIPE_EQ] = ACTIONS(5320), + [anon_sym_xor_EQ] = ACTIONS(5320), + [anon_sym_LT_LT_EQ] = ACTIONS(5320), + [anon_sym_GT_GT_EQ] = ACTIONS(5320), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5320), + [anon_sym_return] = ACTIONS(5322), + [anon_sym_yield] = ACTIONS(5322), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_break] = ACTIONS(5322), + [anon_sym_continue] = ACTIONS(5322), + [anon_sym_defer] = ACTIONS(5322), + [anon_sym_errdefer] = ACTIONS(5322), + [anon_sym_if] = ACTIONS(5322), + [anon_sym_else] = ACTIONS(5322), + [anon_sym_while] = ACTIONS(5322), + [anon_sym_expand] = ACTIONS(5322), + [anon_sym_for] = ACTIONS(5322), + [anon_sym_match] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5320), + [anon_sym_orelse] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5320), + [anon_sym_BANG_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(5322), + [anon_sym_xor] = ACTIONS(5322), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5322), + [anon_sym_LT_LT_PIPE] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5322), + [anon_sym_catch] = ACTIONS(5322), + [anon_sym_TILDE] = ACTIONS(5320), + [anon_sym_try] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym_true] = ACTIONS(5322), + [anon_sym_false] = ACTIONS(5322), + [anon_sym_null] = ACTIONS(5322), + [anon_sym_unreachable] = ACTIONS(5322), + [anon_sym_undefined] = ACTIONS(5322), + [sym_sink] = ACTIONS(5322), + [sym_integer] = ACTIONS(5322), + [sym_float] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [sym_multiline_string] = ACTIONS(5320), + [sym_character] = ACTIONS(5320), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5320), + }, + [STATE(2405)] = { + [ts_builtin_sym_end] = ACTIONS(5324), + [sym_identifier] = ACTIONS(5326), + [anon_sym_import] = ACTIONS(5326), + [anon_sym_test] = ACTIONS(5326), + [anon_sym_hide] = ACTIONS(5326), + [anon_sym_func] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_struct] = ACTIONS(5326), + [anon_sym_LPAREN] = ACTIONS(5324), + [anon_sym_RPAREN] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5324), + [anon_sym_COMMA] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5326), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym_SEMI] = ACTIONS(5324), + [anon_sym_RBRACK] = ACTIONS(5324), + [anon_sym_void] = ACTIONS(5326), + [anon_sym_noreturn] = ACTIONS(5326), + [anon_sym_type] = ACTIONS(5326), + [anon_sym_anyopaque] = ACTIONS(5326), + [anon_sym_bool] = ACTIONS(5326), + [anon_sym_int] = ACTIONS(5326), + [anon_sym_uint] = ACTIONS(5326), + [anon_sym_float] = ACTIONS(5326), + [anon_sym_range] = ACTIONS(5326), + [anon_sym_i8] = ACTIONS(5326), + [anon_sym_i16] = ACTIONS(5326), + [anon_sym_i32] = ACTIONS(5326), + [anon_sym_i64] = ACTIONS(5326), + [anon_sym_u8] = ACTIONS(5326), + [anon_sym_u16] = ACTIONS(5326), + [anon_sym_u32] = ACTIONS(5326), + [anon_sym_u64] = ACTIONS(5326), + [anon_sym_isize] = ACTIONS(5326), + [anon_sym_usize] = ACTIONS(5326), + [anon_sym_f32] = ACTIONS(5326), + [anon_sym_f64] = ACTIONS(5326), + [anon_sym_c_char] = ACTIONS(5326), + [anon_sym_c_schar] = ACTIONS(5326), + [anon_sym_c_uchar] = ACTIONS(5326), + [anon_sym_c_short] = ACTIONS(5326), + [anon_sym_c_ushort] = ACTIONS(5326), + [anon_sym_c_int] = ACTIONS(5326), + [anon_sym_c_uint] = ACTIONS(5326), + [anon_sym_c_long] = ACTIONS(5326), + [anon_sym_c_ulong] = ACTIONS(5326), + [anon_sym_c_longlong] = ACTIONS(5326), + [anon_sym_c_ulonglong] = ACTIONS(5326), + [anon_sym_c_float] = ACTIONS(5326), + [anon_sym_c_double] = ACTIONS(5326), + [anon_sym_c_longdouble] = ACTIONS(5326), + [anon_sym_PLUS_EQ] = ACTIONS(5324), + [anon_sym_DASH_EQ] = ACTIONS(5324), + [anon_sym_STAR_EQ] = ACTIONS(5324), + [anon_sym_SLASH_EQ] = ACTIONS(5324), + [anon_sym_AMP_EQ] = ACTIONS(5324), + [anon_sym_PIPE_EQ] = ACTIONS(5324), + [anon_sym_xor_EQ] = ACTIONS(5324), + [anon_sym_LT_LT_EQ] = ACTIONS(5324), + [anon_sym_GT_GT_EQ] = ACTIONS(5324), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5324), + [anon_sym_return] = ACTIONS(5326), + [anon_sym_yield] = ACTIONS(5326), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_break] = ACTIONS(5326), + [anon_sym_continue] = ACTIONS(5326), + [anon_sym_defer] = ACTIONS(5326), + [anon_sym_errdefer] = ACTIONS(5326), + [anon_sym_if] = ACTIONS(5326), + [anon_sym_else] = ACTIONS(5326), + [anon_sym_while] = ACTIONS(5326), + [anon_sym_expand] = ACTIONS(5326), + [anon_sym_for] = ACTIONS(5326), + [anon_sym_match] = ACTIONS(5326), + [anon_sym_DOT_DOT] = ACTIONS(5326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5324), + [anon_sym_orelse] = ACTIONS(5326), + [anon_sym_or] = ACTIONS(5326), + [anon_sym_and] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5324), + [anon_sym_BANG_EQ] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5326), + [anon_sym_GT_EQ] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5326), + [anon_sym_xor] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5326), + [anon_sym_GT_GT] = ACTIONS(5326), + [anon_sym_LT_LT_PIPE] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5326), + [anon_sym_SLASH] = ACTIONS(5326), + [anon_sym_catch] = ACTIONS(5326), + [anon_sym_TILDE] = ACTIONS(5324), + [anon_sym_try] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym_true] = ACTIONS(5326), + [anon_sym_false] = ACTIONS(5326), + [anon_sym_null] = ACTIONS(5326), + [anon_sym_unreachable] = ACTIONS(5326), + [anon_sym_undefined] = ACTIONS(5326), + [sym_sink] = ACTIONS(5326), + [sym_integer] = ACTIONS(5326), + [sym_float] = ACTIONS(5324), + [anon_sym_DQUOTE] = ACTIONS(5324), + [sym_multiline_string] = ACTIONS(5324), + [sym_character] = ACTIONS(5324), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5324), + }, + [STATE(2406)] = { + [ts_builtin_sym_end] = ACTIONS(5328), + [sym_identifier] = ACTIONS(5330), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_test] = ACTIONS(5330), + [anon_sym_hide] = ACTIONS(5330), + [anon_sym_func] = ACTIONS(5330), + [anon_sym_BANG] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_struct] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_RPAREN] = ACTIONS(5328), + [anon_sym_LBRACE] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5330), + [anon_sym_QMARK] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5328), + [anon_sym_SEMI] = ACTIONS(5328), + [anon_sym_RBRACK] = ACTIONS(5328), + [anon_sym_void] = ACTIONS(5330), + [anon_sym_noreturn] = ACTIONS(5330), + [anon_sym_type] = ACTIONS(5330), + [anon_sym_anyopaque] = ACTIONS(5330), + [anon_sym_bool] = ACTIONS(5330), + [anon_sym_int] = ACTIONS(5330), + [anon_sym_uint] = ACTIONS(5330), + [anon_sym_float] = ACTIONS(5330), + [anon_sym_range] = ACTIONS(5330), + [anon_sym_i8] = ACTIONS(5330), + [anon_sym_i16] = ACTIONS(5330), + [anon_sym_i32] = ACTIONS(5330), + [anon_sym_i64] = ACTIONS(5330), + [anon_sym_u8] = ACTIONS(5330), + [anon_sym_u16] = ACTIONS(5330), + [anon_sym_u32] = ACTIONS(5330), + [anon_sym_u64] = ACTIONS(5330), + [anon_sym_isize] = ACTIONS(5330), + [anon_sym_usize] = ACTIONS(5330), + [anon_sym_f32] = ACTIONS(5330), + [anon_sym_f64] = ACTIONS(5330), + [anon_sym_c_char] = ACTIONS(5330), + [anon_sym_c_schar] = ACTIONS(5330), + [anon_sym_c_uchar] = ACTIONS(5330), + [anon_sym_c_short] = ACTIONS(5330), + [anon_sym_c_ushort] = ACTIONS(5330), + [anon_sym_c_int] = ACTIONS(5330), + [anon_sym_c_uint] = ACTIONS(5330), + [anon_sym_c_long] = ACTIONS(5330), + [anon_sym_c_ulong] = ACTIONS(5330), + [anon_sym_c_longlong] = ACTIONS(5330), + [anon_sym_c_ulonglong] = ACTIONS(5330), + [anon_sym_c_float] = ACTIONS(5330), + [anon_sym_c_double] = ACTIONS(5330), + [anon_sym_c_longdouble] = ACTIONS(5330), + [anon_sym_PLUS_EQ] = ACTIONS(5328), + [anon_sym_DASH_EQ] = ACTIONS(5328), + [anon_sym_STAR_EQ] = ACTIONS(5328), + [anon_sym_SLASH_EQ] = ACTIONS(5328), + [anon_sym_AMP_EQ] = ACTIONS(5328), + [anon_sym_PIPE_EQ] = ACTIONS(5328), + [anon_sym_xor_EQ] = ACTIONS(5328), + [anon_sym_LT_LT_EQ] = ACTIONS(5328), + [anon_sym_GT_GT_EQ] = ACTIONS(5328), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5328), + [anon_sym_return] = ACTIONS(5330), + [anon_sym_yield] = ACTIONS(5330), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_break] = ACTIONS(5330), + [anon_sym_continue] = ACTIONS(5330), + [anon_sym_defer] = ACTIONS(5330), + [anon_sym_errdefer] = ACTIONS(5330), + [anon_sym_if] = ACTIONS(5330), + [anon_sym_else] = ACTIONS(5330), + [anon_sym_while] = ACTIONS(5330), + [anon_sym_expand] = ACTIONS(5330), + [anon_sym_for] = ACTIONS(5330), + [anon_sym_match] = ACTIONS(5330), + [anon_sym_DOT_DOT] = ACTIONS(5330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5328), + [anon_sym_orelse] = ACTIONS(5330), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_and] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_BANG_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_EQ] = ACTIONS(5328), + [anon_sym_AMP] = ACTIONS(5330), + [anon_sym_xor] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5330), + [anon_sym_LT_LT_PIPE] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5330), + [anon_sym_SLASH] = ACTIONS(5330), + [anon_sym_catch] = ACTIONS(5330), + [anon_sym_TILDE] = ACTIONS(5328), + [anon_sym_try] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym_true] = ACTIONS(5330), + [anon_sym_false] = ACTIONS(5330), + [anon_sym_null] = ACTIONS(5330), + [anon_sym_unreachable] = ACTIONS(5330), + [anon_sym_undefined] = ACTIONS(5330), + [sym_sink] = ACTIONS(5330), + [sym_integer] = ACTIONS(5330), + [sym_float] = ACTIONS(5328), + [anon_sym_DQUOTE] = ACTIONS(5328), + [sym_multiline_string] = ACTIONS(5328), + [sym_character] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5328), + }, + [STATE(2407)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3362), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(351), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(353), + [anon_sym_errdefer] = ACTIONS(355), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2408)] = { + [ts_builtin_sym_end] = ACTIONS(5332), + [sym_identifier] = ACTIONS(5334), + [anon_sym_import] = ACTIONS(5334), + [anon_sym_test] = ACTIONS(5334), + [anon_sym_hide] = ACTIONS(5334), + [anon_sym_func] = ACTIONS(5334), + [anon_sym_BANG] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5332), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_LBRACE] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5334), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5332), + [anon_sym_SEMI] = ACTIONS(5332), + [anon_sym_RBRACK] = ACTIONS(5332), + [anon_sym_void] = ACTIONS(5334), + [anon_sym_noreturn] = ACTIONS(5334), + [anon_sym_type] = ACTIONS(5334), + [anon_sym_anyopaque] = ACTIONS(5334), + [anon_sym_bool] = ACTIONS(5334), + [anon_sym_int] = ACTIONS(5334), + [anon_sym_uint] = ACTIONS(5334), + [anon_sym_float] = ACTIONS(5334), + [anon_sym_range] = ACTIONS(5334), + [anon_sym_i8] = ACTIONS(5334), + [anon_sym_i16] = ACTIONS(5334), + [anon_sym_i32] = ACTIONS(5334), + [anon_sym_i64] = ACTIONS(5334), + [anon_sym_u8] = ACTIONS(5334), + [anon_sym_u16] = ACTIONS(5334), + [anon_sym_u32] = ACTIONS(5334), + [anon_sym_u64] = ACTIONS(5334), + [anon_sym_isize] = ACTIONS(5334), + [anon_sym_usize] = ACTIONS(5334), + [anon_sym_f32] = ACTIONS(5334), + [anon_sym_f64] = ACTIONS(5334), + [anon_sym_c_char] = ACTIONS(5334), + [anon_sym_c_schar] = ACTIONS(5334), + [anon_sym_c_uchar] = ACTIONS(5334), + [anon_sym_c_short] = ACTIONS(5334), + [anon_sym_c_ushort] = ACTIONS(5334), + [anon_sym_c_int] = ACTIONS(5334), + [anon_sym_c_uint] = ACTIONS(5334), + [anon_sym_c_long] = ACTIONS(5334), + [anon_sym_c_ulong] = ACTIONS(5334), + [anon_sym_c_longlong] = ACTIONS(5334), + [anon_sym_c_ulonglong] = ACTIONS(5334), + [anon_sym_c_float] = ACTIONS(5334), + [anon_sym_c_double] = ACTIONS(5334), + [anon_sym_c_longdouble] = ACTIONS(5334), + [anon_sym_PLUS_EQ] = ACTIONS(5332), + [anon_sym_DASH_EQ] = ACTIONS(5332), + [anon_sym_STAR_EQ] = ACTIONS(5332), + [anon_sym_SLASH_EQ] = ACTIONS(5332), + [anon_sym_AMP_EQ] = ACTIONS(5332), + [anon_sym_PIPE_EQ] = ACTIONS(5332), + [anon_sym_xor_EQ] = ACTIONS(5332), + [anon_sym_LT_LT_EQ] = ACTIONS(5332), + [anon_sym_GT_GT_EQ] = ACTIONS(5332), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5332), + [anon_sym_return] = ACTIONS(5334), + [anon_sym_yield] = ACTIONS(5334), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_break] = ACTIONS(5334), + [anon_sym_continue] = ACTIONS(5334), + [anon_sym_defer] = ACTIONS(5334), + [anon_sym_errdefer] = ACTIONS(5334), + [anon_sym_if] = ACTIONS(5334), + [anon_sym_else] = ACTIONS(5334), + [anon_sym_while] = ACTIONS(5334), + [anon_sym_expand] = ACTIONS(5334), + [anon_sym_for] = ACTIONS(5334), + [anon_sym_match] = ACTIONS(5334), + [anon_sym_DOT_DOT] = ACTIONS(5334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5332), + [anon_sym_orelse] = ACTIONS(5334), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_and] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5332), + [anon_sym_BANG_EQ] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5334), + [anon_sym_LT_EQ] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5334), + [anon_sym_GT_EQ] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5334), + [anon_sym_xor] = ACTIONS(5334), + [anon_sym_LT_LT] = ACTIONS(5334), + [anon_sym_GT_GT] = ACTIONS(5334), + [anon_sym_LT_LT_PIPE] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5334), + [anon_sym_SLASH] = ACTIONS(5334), + [anon_sym_catch] = ACTIONS(5334), + [anon_sym_TILDE] = ACTIONS(5332), + [anon_sym_try] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(5334), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym_true] = ACTIONS(5334), + [anon_sym_false] = ACTIONS(5334), + [anon_sym_null] = ACTIONS(5334), + [anon_sym_unreachable] = ACTIONS(5334), + [anon_sym_undefined] = ACTIONS(5334), + [sym_sink] = ACTIONS(5334), + [sym_integer] = ACTIONS(5334), + [sym_float] = ACTIONS(5332), + [anon_sym_DQUOTE] = ACTIONS(5332), + [sym_multiline_string] = ACTIONS(5332), + [sym_character] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5332), + }, + [STATE(2409)] = { + [ts_builtin_sym_end] = ACTIONS(5336), + [sym_identifier] = ACTIONS(5338), + [anon_sym_import] = ACTIONS(5338), + [anon_sym_test] = ACTIONS(5338), + [anon_sym_hide] = ACTIONS(5338), + [anon_sym_func] = ACTIONS(5338), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_struct] = ACTIONS(5338), + [anon_sym_LPAREN] = ACTIONS(5336), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_LBRACE] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5338), + [anon_sym_QMARK] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5336), + [anon_sym_SEMI] = ACTIONS(5336), + [anon_sym_RBRACK] = ACTIONS(5336), + [anon_sym_void] = ACTIONS(5338), + [anon_sym_noreturn] = ACTIONS(5338), + [anon_sym_type] = ACTIONS(5338), + [anon_sym_anyopaque] = ACTIONS(5338), + [anon_sym_bool] = ACTIONS(5338), + [anon_sym_int] = ACTIONS(5338), + [anon_sym_uint] = ACTIONS(5338), + [anon_sym_float] = ACTIONS(5338), + [anon_sym_range] = ACTIONS(5338), + [anon_sym_i8] = ACTIONS(5338), + [anon_sym_i16] = ACTIONS(5338), + [anon_sym_i32] = ACTIONS(5338), + [anon_sym_i64] = ACTIONS(5338), + [anon_sym_u8] = ACTIONS(5338), + [anon_sym_u16] = ACTIONS(5338), + [anon_sym_u32] = ACTIONS(5338), + [anon_sym_u64] = ACTIONS(5338), + [anon_sym_isize] = ACTIONS(5338), + [anon_sym_usize] = ACTIONS(5338), + [anon_sym_f32] = ACTIONS(5338), + [anon_sym_f64] = ACTIONS(5338), + [anon_sym_c_char] = ACTIONS(5338), + [anon_sym_c_schar] = ACTIONS(5338), + [anon_sym_c_uchar] = ACTIONS(5338), + [anon_sym_c_short] = ACTIONS(5338), + [anon_sym_c_ushort] = ACTIONS(5338), + [anon_sym_c_int] = ACTIONS(5338), + [anon_sym_c_uint] = ACTIONS(5338), + [anon_sym_c_long] = ACTIONS(5338), + [anon_sym_c_ulong] = ACTIONS(5338), + [anon_sym_c_longlong] = ACTIONS(5338), + [anon_sym_c_ulonglong] = ACTIONS(5338), + [anon_sym_c_float] = ACTIONS(5338), + [anon_sym_c_double] = ACTIONS(5338), + [anon_sym_c_longdouble] = ACTIONS(5338), + [anon_sym_PLUS_EQ] = ACTIONS(5336), + [anon_sym_DASH_EQ] = ACTIONS(5336), + [anon_sym_STAR_EQ] = ACTIONS(5336), + [anon_sym_SLASH_EQ] = ACTIONS(5336), + [anon_sym_AMP_EQ] = ACTIONS(5336), + [anon_sym_PIPE_EQ] = ACTIONS(5336), + [anon_sym_xor_EQ] = ACTIONS(5336), + [anon_sym_LT_LT_EQ] = ACTIONS(5336), + [anon_sym_GT_GT_EQ] = ACTIONS(5336), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5336), + [anon_sym_return] = ACTIONS(5338), + [anon_sym_yield] = ACTIONS(5338), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_break] = ACTIONS(5338), + [anon_sym_continue] = ACTIONS(5338), + [anon_sym_defer] = ACTIONS(5338), + [anon_sym_errdefer] = ACTIONS(5338), + [anon_sym_if] = ACTIONS(5338), + [anon_sym_else] = ACTIONS(5338), + [anon_sym_while] = ACTIONS(5338), + [anon_sym_expand] = ACTIONS(5338), + [anon_sym_for] = ACTIONS(5338), + [anon_sym_match] = ACTIONS(5338), + [anon_sym_DOT_DOT] = ACTIONS(5338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5336), + [anon_sym_orelse] = ACTIONS(5338), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_and] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5338), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5338), + [anon_sym_xor] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5338), + [anon_sym_LT_LT_PIPE] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_SLASH] = ACTIONS(5338), + [anon_sym_catch] = ACTIONS(5338), + [anon_sym_TILDE] = ACTIONS(5336), + [anon_sym_try] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym_true] = ACTIONS(5338), + [anon_sym_false] = ACTIONS(5338), + [anon_sym_null] = ACTIONS(5338), + [anon_sym_unreachable] = ACTIONS(5338), + [anon_sym_undefined] = ACTIONS(5338), + [sym_sink] = ACTIONS(5338), + [sym_integer] = ACTIONS(5338), + [sym_float] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(5336), + [sym_multiline_string] = ACTIONS(5336), + [sym_character] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5336), + }, + [STATE(2410)] = { + [ts_builtin_sym_end] = ACTIONS(5340), + [sym_identifier] = ACTIONS(5342), + [anon_sym_import] = ACTIONS(5342), + [anon_sym_test] = ACTIONS(5342), + [anon_sym_hide] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5342), + [anon_sym_BANG] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_struct] = ACTIONS(5342), + [anon_sym_LPAREN] = ACTIONS(5340), + [anon_sym_RPAREN] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5340), + [anon_sym_COMMA] = ACTIONS(5340), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5342), + [anon_sym_QMARK] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5340), + [anon_sym_SEMI] = ACTIONS(5340), + [anon_sym_RBRACK] = ACTIONS(5340), + [anon_sym_void] = ACTIONS(5342), + [anon_sym_noreturn] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_anyopaque] = ACTIONS(5342), + [anon_sym_bool] = ACTIONS(5342), + [anon_sym_int] = ACTIONS(5342), + [anon_sym_uint] = ACTIONS(5342), + [anon_sym_float] = ACTIONS(5342), + [anon_sym_range] = ACTIONS(5342), + [anon_sym_i8] = ACTIONS(5342), + [anon_sym_i16] = ACTIONS(5342), + [anon_sym_i32] = ACTIONS(5342), + [anon_sym_i64] = ACTIONS(5342), + [anon_sym_u8] = ACTIONS(5342), + [anon_sym_u16] = ACTIONS(5342), + [anon_sym_u32] = ACTIONS(5342), + [anon_sym_u64] = ACTIONS(5342), + [anon_sym_isize] = ACTIONS(5342), + [anon_sym_usize] = ACTIONS(5342), + [anon_sym_f32] = ACTIONS(5342), + [anon_sym_f64] = ACTIONS(5342), + [anon_sym_c_char] = ACTIONS(5342), + [anon_sym_c_schar] = ACTIONS(5342), + [anon_sym_c_uchar] = ACTIONS(5342), + [anon_sym_c_short] = ACTIONS(5342), + [anon_sym_c_ushort] = ACTIONS(5342), + [anon_sym_c_int] = ACTIONS(5342), + [anon_sym_c_uint] = ACTIONS(5342), + [anon_sym_c_long] = ACTIONS(5342), + [anon_sym_c_ulong] = ACTIONS(5342), + [anon_sym_c_longlong] = ACTIONS(5342), + [anon_sym_c_ulonglong] = ACTIONS(5342), + [anon_sym_c_float] = ACTIONS(5342), + [anon_sym_c_double] = ACTIONS(5342), + [anon_sym_c_longdouble] = ACTIONS(5342), + [anon_sym_PLUS_EQ] = ACTIONS(5340), + [anon_sym_DASH_EQ] = ACTIONS(5340), + [anon_sym_STAR_EQ] = ACTIONS(5340), + [anon_sym_SLASH_EQ] = ACTIONS(5340), + [anon_sym_AMP_EQ] = ACTIONS(5340), + [anon_sym_PIPE_EQ] = ACTIONS(5340), + [anon_sym_xor_EQ] = ACTIONS(5340), + [anon_sym_LT_LT_EQ] = ACTIONS(5340), + [anon_sym_GT_GT_EQ] = ACTIONS(5340), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5340), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_break] = ACTIONS(5342), + [anon_sym_continue] = ACTIONS(5342), + [anon_sym_defer] = ACTIONS(5342), + [anon_sym_errdefer] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_else] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_expand] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_DOT_DOT] = ACTIONS(5342), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5340), + [anon_sym_orelse] = ACTIONS(5342), + [anon_sym_or] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_EQ_EQ] = ACTIONS(5340), + [anon_sym_BANG_EQ] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5342), + [anon_sym_LT_EQ] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5342), + [anon_sym_GT_EQ] = ACTIONS(5340), + [anon_sym_AMP] = ACTIONS(5342), + [anon_sym_xor] = ACTIONS(5342), + [anon_sym_LT_LT] = ACTIONS(5342), + [anon_sym_GT_GT] = ACTIONS(5342), + [anon_sym_LT_LT_PIPE] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_SLASH] = ACTIONS(5342), + [anon_sym_catch] = ACTIONS(5342), + [anon_sym_TILDE] = ACTIONS(5340), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_DOT] = ACTIONS(5342), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym_true] = ACTIONS(5342), + [anon_sym_false] = ACTIONS(5342), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_unreachable] = ACTIONS(5342), + [anon_sym_undefined] = ACTIONS(5342), + [sym_sink] = ACTIONS(5342), + [sym_integer] = ACTIONS(5342), + [sym_float] = ACTIONS(5340), + [anon_sym_DQUOTE] = ACTIONS(5340), + [sym_multiline_string] = ACTIONS(5340), + [sym_character] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5340), + }, + [STATE(2411)] = { + [ts_builtin_sym_end] = ACTIONS(5344), + [sym_identifier] = ACTIONS(5346), + [anon_sym_import] = ACTIONS(5346), + [anon_sym_test] = ACTIONS(5346), + [anon_sym_hide] = ACTIONS(5346), + [anon_sym_func] = ACTIONS(5346), + [anon_sym_BANG] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_LPAREN] = ACTIONS(5344), + [anon_sym_RPAREN] = ACTIONS(5344), + [anon_sym_LBRACE] = ACTIONS(5344), + [anon_sym_COMMA] = ACTIONS(5344), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5346), + [anon_sym_QMARK] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5344), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym_RBRACK] = ACTIONS(5344), + [anon_sym_void] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_type] = ACTIONS(5346), + [anon_sym_anyopaque] = ACTIONS(5346), + [anon_sym_bool] = ACTIONS(5346), + [anon_sym_int] = ACTIONS(5346), + [anon_sym_uint] = ACTIONS(5346), + [anon_sym_float] = ACTIONS(5346), + [anon_sym_range] = ACTIONS(5346), + [anon_sym_i8] = ACTIONS(5346), + [anon_sym_i16] = ACTIONS(5346), + [anon_sym_i32] = ACTIONS(5346), + [anon_sym_i64] = ACTIONS(5346), + [anon_sym_u8] = ACTIONS(5346), + [anon_sym_u16] = ACTIONS(5346), + [anon_sym_u32] = ACTIONS(5346), + [anon_sym_u64] = ACTIONS(5346), + [anon_sym_isize] = ACTIONS(5346), + [anon_sym_usize] = ACTIONS(5346), + [anon_sym_f32] = ACTIONS(5346), + [anon_sym_f64] = ACTIONS(5346), + [anon_sym_c_char] = ACTIONS(5346), + [anon_sym_c_schar] = ACTIONS(5346), + [anon_sym_c_uchar] = ACTIONS(5346), + [anon_sym_c_short] = ACTIONS(5346), + [anon_sym_c_ushort] = ACTIONS(5346), + [anon_sym_c_int] = ACTIONS(5346), + [anon_sym_c_uint] = ACTIONS(5346), + [anon_sym_c_long] = ACTIONS(5346), + [anon_sym_c_ulong] = ACTIONS(5346), + [anon_sym_c_longlong] = ACTIONS(5346), + [anon_sym_c_ulonglong] = ACTIONS(5346), + [anon_sym_c_float] = ACTIONS(5346), + [anon_sym_c_double] = ACTIONS(5346), + [anon_sym_c_longdouble] = ACTIONS(5346), + [anon_sym_PLUS_EQ] = ACTIONS(5344), + [anon_sym_DASH_EQ] = ACTIONS(5344), + [anon_sym_STAR_EQ] = ACTIONS(5344), + [anon_sym_SLASH_EQ] = ACTIONS(5344), + [anon_sym_AMP_EQ] = ACTIONS(5344), + [anon_sym_PIPE_EQ] = ACTIONS(5344), + [anon_sym_xor_EQ] = ACTIONS(5344), + [anon_sym_LT_LT_EQ] = ACTIONS(5344), + [anon_sym_GT_GT_EQ] = ACTIONS(5344), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5344), + [anon_sym_return] = ACTIONS(5346), + [anon_sym_yield] = ACTIONS(5346), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_break] = ACTIONS(5346), + [anon_sym_continue] = ACTIONS(5346), + [anon_sym_defer] = ACTIONS(5346), + [anon_sym_errdefer] = ACTIONS(5346), + [anon_sym_if] = ACTIONS(5346), + [anon_sym_else] = ACTIONS(5346), + [anon_sym_while] = ACTIONS(5346), + [anon_sym_expand] = ACTIONS(5346), + [anon_sym_for] = ACTIONS(5346), + [anon_sym_match] = ACTIONS(5346), + [anon_sym_DOT_DOT] = ACTIONS(5346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5344), + [anon_sym_orelse] = ACTIONS(5346), + [anon_sym_or] = ACTIONS(5346), + [anon_sym_and] = ACTIONS(5346), + [anon_sym_EQ_EQ] = ACTIONS(5344), + [anon_sym_BANG_EQ] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5346), + [anon_sym_LT_EQ] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5346), + [anon_sym_GT_EQ] = ACTIONS(5344), + [anon_sym_AMP] = ACTIONS(5346), + [anon_sym_xor] = ACTIONS(5346), + [anon_sym_LT_LT] = ACTIONS(5346), + [anon_sym_GT_GT] = ACTIONS(5346), + [anon_sym_LT_LT_PIPE] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5346), + [anon_sym_SLASH] = ACTIONS(5346), + [anon_sym_catch] = ACTIONS(5346), + [anon_sym_TILDE] = ACTIONS(5344), + [anon_sym_try] = ACTIONS(5346), + [anon_sym_DOT] = ACTIONS(5346), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym_true] = ACTIONS(5346), + [anon_sym_false] = ACTIONS(5346), + [anon_sym_null] = ACTIONS(5346), + [anon_sym_unreachable] = ACTIONS(5346), + [anon_sym_undefined] = ACTIONS(5346), + [sym_sink] = ACTIONS(5346), + [sym_integer] = ACTIONS(5346), + [sym_float] = ACTIONS(5344), + [anon_sym_DQUOTE] = ACTIONS(5344), + [sym_multiline_string] = ACTIONS(5344), + [sym_character] = ACTIONS(5344), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5344), + }, + [STATE(2412)] = { + [ts_builtin_sym_end] = ACTIONS(5348), + [sym_identifier] = ACTIONS(5350), + [anon_sym_import] = ACTIONS(5350), + [anon_sym_test] = ACTIONS(5350), + [anon_sym_hide] = ACTIONS(5350), + [anon_sym_func] = ACTIONS(5350), + [anon_sym_BANG] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_struct] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5348), + [anon_sym_RPAREN] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5348), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_SEMI] = ACTIONS(5348), + [anon_sym_RBRACK] = ACTIONS(5348), + [anon_sym_void] = ACTIONS(5350), + [anon_sym_noreturn] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_anyopaque] = ACTIONS(5350), + [anon_sym_bool] = ACTIONS(5350), + [anon_sym_int] = ACTIONS(5350), + [anon_sym_uint] = ACTIONS(5350), + [anon_sym_float] = ACTIONS(5350), + [anon_sym_range] = ACTIONS(5350), + [anon_sym_i8] = ACTIONS(5350), + [anon_sym_i16] = ACTIONS(5350), + [anon_sym_i32] = ACTIONS(5350), + [anon_sym_i64] = ACTIONS(5350), + [anon_sym_u8] = ACTIONS(5350), + [anon_sym_u16] = ACTIONS(5350), + [anon_sym_u32] = ACTIONS(5350), + [anon_sym_u64] = ACTIONS(5350), + [anon_sym_isize] = ACTIONS(5350), + [anon_sym_usize] = ACTIONS(5350), + [anon_sym_f32] = ACTIONS(5350), + [anon_sym_f64] = ACTIONS(5350), + [anon_sym_c_char] = ACTIONS(5350), + [anon_sym_c_schar] = ACTIONS(5350), + [anon_sym_c_uchar] = ACTIONS(5350), + [anon_sym_c_short] = ACTIONS(5350), + [anon_sym_c_ushort] = ACTIONS(5350), + [anon_sym_c_int] = ACTIONS(5350), + [anon_sym_c_uint] = ACTIONS(5350), + [anon_sym_c_long] = ACTIONS(5350), + [anon_sym_c_ulong] = ACTIONS(5350), + [anon_sym_c_longlong] = ACTIONS(5350), + [anon_sym_c_ulonglong] = ACTIONS(5350), + [anon_sym_c_float] = ACTIONS(5350), + [anon_sym_c_double] = ACTIONS(5350), + [anon_sym_c_longdouble] = ACTIONS(5350), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_xor_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5348), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_break] = ACTIONS(5350), + [anon_sym_continue] = ACTIONS(5350), + [anon_sym_defer] = ACTIONS(5350), + [anon_sym_errdefer] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_else] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_expand] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_DOT_DOT] = ACTIONS(5350), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5348), + [anon_sym_orelse] = ACTIONS(5350), + [anon_sym_or] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_xor] = ACTIONS(5350), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_LT_LT_PIPE] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_catch] = ACTIONS(5350), + [anon_sym_TILDE] = ACTIONS(5348), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_true] = ACTIONS(5350), + [anon_sym_false] = ACTIONS(5350), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_unreachable] = ACTIONS(5350), + [anon_sym_undefined] = ACTIONS(5350), + [sym_sink] = ACTIONS(5350), + [sym_integer] = ACTIONS(5350), + [sym_float] = ACTIONS(5348), + [anon_sym_DQUOTE] = ACTIONS(5348), + [sym_multiline_string] = ACTIONS(5348), + [sym_character] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5348), + }, + [STATE(2413)] = { + [ts_builtin_sym_end] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5354), + [anon_sym_import] = ACTIONS(5354), + [anon_sym_test] = ACTIONS(5354), + [anon_sym_hide] = ACTIONS(5354), + [anon_sym_func] = ACTIONS(5354), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5352), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_LBRACE] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_SEMI] = ACTIONS(5352), + [anon_sym_RBRACK] = ACTIONS(5352), + [anon_sym_void] = ACTIONS(5354), + [anon_sym_noreturn] = ACTIONS(5354), + [anon_sym_type] = ACTIONS(5354), + [anon_sym_anyopaque] = ACTIONS(5354), + [anon_sym_bool] = ACTIONS(5354), + [anon_sym_int] = ACTIONS(5354), + [anon_sym_uint] = ACTIONS(5354), + [anon_sym_float] = ACTIONS(5354), + [anon_sym_range] = ACTIONS(5354), + [anon_sym_i8] = ACTIONS(5354), + [anon_sym_i16] = ACTIONS(5354), + [anon_sym_i32] = ACTIONS(5354), + [anon_sym_i64] = ACTIONS(5354), + [anon_sym_u8] = ACTIONS(5354), + [anon_sym_u16] = ACTIONS(5354), + [anon_sym_u32] = ACTIONS(5354), + [anon_sym_u64] = ACTIONS(5354), + [anon_sym_isize] = ACTIONS(5354), + [anon_sym_usize] = ACTIONS(5354), + [anon_sym_f32] = ACTIONS(5354), + [anon_sym_f64] = ACTIONS(5354), + [anon_sym_c_char] = ACTIONS(5354), + [anon_sym_c_schar] = ACTIONS(5354), + [anon_sym_c_uchar] = ACTIONS(5354), + [anon_sym_c_short] = ACTIONS(5354), + [anon_sym_c_ushort] = ACTIONS(5354), + [anon_sym_c_int] = ACTIONS(5354), + [anon_sym_c_uint] = ACTIONS(5354), + [anon_sym_c_long] = ACTIONS(5354), + [anon_sym_c_ulong] = ACTIONS(5354), + [anon_sym_c_longlong] = ACTIONS(5354), + [anon_sym_c_ulonglong] = ACTIONS(5354), + [anon_sym_c_float] = ACTIONS(5354), + [anon_sym_c_double] = ACTIONS(5354), + [anon_sym_c_longdouble] = ACTIONS(5354), + [anon_sym_PLUS_EQ] = ACTIONS(5352), + [anon_sym_DASH_EQ] = ACTIONS(5352), + [anon_sym_STAR_EQ] = ACTIONS(5352), + [anon_sym_SLASH_EQ] = ACTIONS(5352), + [anon_sym_AMP_EQ] = ACTIONS(5352), + [anon_sym_PIPE_EQ] = ACTIONS(5352), + [anon_sym_xor_EQ] = ACTIONS(5352), + [anon_sym_LT_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_GT_EQ] = ACTIONS(5352), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5354), + [anon_sym_yield] = ACTIONS(5354), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5354), + [anon_sym_continue] = ACTIONS(5354), + [anon_sym_defer] = ACTIONS(5354), + [anon_sym_errdefer] = ACTIONS(5354), + [anon_sym_if] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5354), + [anon_sym_expand] = ACTIONS(5354), + [anon_sym_for] = ACTIONS(5354), + [anon_sym_match] = ACTIONS(5354), + [anon_sym_DOT_DOT] = ACTIONS(5354), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5352), + [anon_sym_orelse] = ACTIONS(5354), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_and] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [anon_sym_xor] = ACTIONS(5354), + [anon_sym_LT_LT] = ACTIONS(5354), + [anon_sym_GT_GT] = ACTIONS(5354), + [anon_sym_LT_LT_PIPE] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_SLASH] = ACTIONS(5354), + [anon_sym_catch] = ACTIONS(5354), + [anon_sym_TILDE] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym_true] = ACTIONS(5354), + [anon_sym_false] = ACTIONS(5354), + [anon_sym_null] = ACTIONS(5354), + [anon_sym_unreachable] = ACTIONS(5354), + [anon_sym_undefined] = ACTIONS(5354), + [sym_sink] = ACTIONS(5354), + [sym_integer] = ACTIONS(5354), + [sym_float] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5352), + [sym_multiline_string] = ACTIONS(5352), + [sym_character] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5352), + }, + [STATE(2414)] = { + [ts_builtin_sym_end] = ACTIONS(5356), + [sym_identifier] = ACTIONS(5358), + [anon_sym_import] = ACTIONS(5358), + [anon_sym_test] = ACTIONS(5358), + [anon_sym_hide] = ACTIONS(5358), + [anon_sym_func] = ACTIONS(5358), + [anon_sym_BANG] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_struct] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5356), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_LBRACE] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5358), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_SEMI] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5356), + [anon_sym_void] = ACTIONS(5358), + [anon_sym_noreturn] = ACTIONS(5358), + [anon_sym_type] = ACTIONS(5358), + [anon_sym_anyopaque] = ACTIONS(5358), + [anon_sym_bool] = ACTIONS(5358), + [anon_sym_int] = ACTIONS(5358), + [anon_sym_uint] = ACTIONS(5358), + [anon_sym_float] = ACTIONS(5358), + [anon_sym_range] = ACTIONS(5358), + [anon_sym_i8] = ACTIONS(5358), + [anon_sym_i16] = ACTIONS(5358), + [anon_sym_i32] = ACTIONS(5358), + [anon_sym_i64] = ACTIONS(5358), + [anon_sym_u8] = ACTIONS(5358), + [anon_sym_u16] = ACTIONS(5358), + [anon_sym_u32] = ACTIONS(5358), + [anon_sym_u64] = ACTIONS(5358), + [anon_sym_isize] = ACTIONS(5358), + [anon_sym_usize] = ACTIONS(5358), + [anon_sym_f32] = ACTIONS(5358), + [anon_sym_f64] = ACTIONS(5358), + [anon_sym_c_char] = ACTIONS(5358), + [anon_sym_c_schar] = ACTIONS(5358), + [anon_sym_c_uchar] = ACTIONS(5358), + [anon_sym_c_short] = ACTIONS(5358), + [anon_sym_c_ushort] = ACTIONS(5358), + [anon_sym_c_int] = ACTIONS(5358), + [anon_sym_c_uint] = ACTIONS(5358), + [anon_sym_c_long] = ACTIONS(5358), + [anon_sym_c_ulong] = ACTIONS(5358), + [anon_sym_c_longlong] = ACTIONS(5358), + [anon_sym_c_ulonglong] = ACTIONS(5358), + [anon_sym_c_float] = ACTIONS(5358), + [anon_sym_c_double] = ACTIONS(5358), + [anon_sym_c_longdouble] = ACTIONS(5358), + [anon_sym_PLUS_EQ] = ACTIONS(5356), + [anon_sym_DASH_EQ] = ACTIONS(5356), + [anon_sym_STAR_EQ] = ACTIONS(5356), + [anon_sym_SLASH_EQ] = ACTIONS(5356), + [anon_sym_AMP_EQ] = ACTIONS(5356), + [anon_sym_PIPE_EQ] = ACTIONS(5356), + [anon_sym_xor_EQ] = ACTIONS(5356), + [anon_sym_LT_LT_EQ] = ACTIONS(5356), + [anon_sym_GT_GT_EQ] = ACTIONS(5356), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5356), + [anon_sym_return] = ACTIONS(5358), + [anon_sym_yield] = ACTIONS(5358), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_break] = ACTIONS(5358), + [anon_sym_continue] = ACTIONS(5358), + [anon_sym_defer] = ACTIONS(5358), + [anon_sym_errdefer] = ACTIONS(5358), + [anon_sym_if] = ACTIONS(5358), + [anon_sym_else] = ACTIONS(5358), + [anon_sym_while] = ACTIONS(5358), + [anon_sym_expand] = ACTIONS(5358), + [anon_sym_for] = ACTIONS(5358), + [anon_sym_match] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5356), + [anon_sym_orelse] = ACTIONS(5358), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5356), + [anon_sym_BANG_EQ] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5358), + [anon_sym_xor] = ACTIONS(5358), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5358), + [anon_sym_LT_LT_PIPE] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5358), + [anon_sym_SLASH] = ACTIONS(5358), + [anon_sym_catch] = ACTIONS(5358), + [anon_sym_TILDE] = ACTIONS(5356), + [anon_sym_try] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym_true] = ACTIONS(5358), + [anon_sym_false] = ACTIONS(5358), + [anon_sym_null] = ACTIONS(5358), + [anon_sym_unreachable] = ACTIONS(5358), + [anon_sym_undefined] = ACTIONS(5358), + [sym_sink] = ACTIONS(5358), + [sym_integer] = ACTIONS(5358), + [sym_float] = ACTIONS(5356), + [anon_sym_DQUOTE] = ACTIONS(5356), + [sym_multiline_string] = ACTIONS(5356), + [sym_character] = ACTIONS(5356), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5356), + }, + [STATE(2415)] = { + [ts_builtin_sym_end] = ACTIONS(5360), + [sym_identifier] = ACTIONS(5362), + [anon_sym_import] = ACTIONS(5362), + [anon_sym_test] = ACTIONS(5362), + [anon_sym_hide] = ACTIONS(5362), + [anon_sym_func] = ACTIONS(5362), + [anon_sym_BANG] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_struct] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5360), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_LBRACE] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5360), + [anon_sym_SEMI] = ACTIONS(5360), + [anon_sym_RBRACK] = ACTIONS(5360), + [anon_sym_void] = ACTIONS(5362), + [anon_sym_noreturn] = ACTIONS(5362), + [anon_sym_type] = ACTIONS(5362), + [anon_sym_anyopaque] = ACTIONS(5362), + [anon_sym_bool] = ACTIONS(5362), + [anon_sym_int] = ACTIONS(5362), + [anon_sym_uint] = ACTIONS(5362), + [anon_sym_float] = ACTIONS(5362), + [anon_sym_range] = ACTIONS(5362), + [anon_sym_i8] = ACTIONS(5362), + [anon_sym_i16] = ACTIONS(5362), + [anon_sym_i32] = ACTIONS(5362), + [anon_sym_i64] = ACTIONS(5362), + [anon_sym_u8] = ACTIONS(5362), + [anon_sym_u16] = ACTIONS(5362), + [anon_sym_u32] = ACTIONS(5362), + [anon_sym_u64] = ACTIONS(5362), + [anon_sym_isize] = ACTIONS(5362), + [anon_sym_usize] = ACTIONS(5362), + [anon_sym_f32] = ACTIONS(5362), + [anon_sym_f64] = ACTIONS(5362), + [anon_sym_c_char] = ACTIONS(5362), + [anon_sym_c_schar] = ACTIONS(5362), + [anon_sym_c_uchar] = ACTIONS(5362), + [anon_sym_c_short] = ACTIONS(5362), + [anon_sym_c_ushort] = ACTIONS(5362), + [anon_sym_c_int] = ACTIONS(5362), + [anon_sym_c_uint] = ACTIONS(5362), + [anon_sym_c_long] = ACTIONS(5362), + [anon_sym_c_ulong] = ACTIONS(5362), + [anon_sym_c_longlong] = ACTIONS(5362), + [anon_sym_c_ulonglong] = ACTIONS(5362), + [anon_sym_c_float] = ACTIONS(5362), + [anon_sym_c_double] = ACTIONS(5362), + [anon_sym_c_longdouble] = ACTIONS(5362), + [anon_sym_PLUS_EQ] = ACTIONS(5360), + [anon_sym_DASH_EQ] = ACTIONS(5360), + [anon_sym_STAR_EQ] = ACTIONS(5360), + [anon_sym_SLASH_EQ] = ACTIONS(5360), + [anon_sym_AMP_EQ] = ACTIONS(5360), + [anon_sym_PIPE_EQ] = ACTIONS(5360), + [anon_sym_xor_EQ] = ACTIONS(5360), + [anon_sym_LT_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_GT_EQ] = ACTIONS(5360), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5360), + [anon_sym_return] = ACTIONS(5362), + [anon_sym_yield] = ACTIONS(5362), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_break] = ACTIONS(5362), + [anon_sym_continue] = ACTIONS(5362), + [anon_sym_defer] = ACTIONS(5362), + [anon_sym_errdefer] = ACTIONS(5362), + [anon_sym_if] = ACTIONS(5362), + [anon_sym_else] = ACTIONS(5362), + [anon_sym_while] = ACTIONS(5362), + [anon_sym_expand] = ACTIONS(5362), + [anon_sym_for] = ACTIONS(5362), + [anon_sym_match] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5360), + [anon_sym_orelse] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [anon_sym_xor] = ACTIONS(5362), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5362), + [anon_sym_LT_LT_PIPE] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5362), + [anon_sym_catch] = ACTIONS(5362), + [anon_sym_TILDE] = ACTIONS(5360), + [anon_sym_try] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym_true] = ACTIONS(5362), + [anon_sym_false] = ACTIONS(5362), + [anon_sym_null] = ACTIONS(5362), + [anon_sym_unreachable] = ACTIONS(5362), + [anon_sym_undefined] = ACTIONS(5362), + [sym_sink] = ACTIONS(5362), + [sym_integer] = ACTIONS(5362), + [sym_float] = ACTIONS(5360), + [anon_sym_DQUOTE] = ACTIONS(5360), + [sym_multiline_string] = ACTIONS(5360), + [sym_character] = ACTIONS(5360), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5360), + }, + [STATE(2416)] = { + [ts_builtin_sym_end] = ACTIONS(5364), + [sym_identifier] = ACTIONS(5366), + [anon_sym_import] = ACTIONS(5366), + [anon_sym_test] = ACTIONS(5366), + [anon_sym_hide] = ACTIONS(5366), + [anon_sym_func] = ACTIONS(5366), + [anon_sym_BANG] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_struct] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5364), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_LBRACE] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5366), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5364), + [anon_sym_SEMI] = ACTIONS(5364), + [anon_sym_RBRACK] = ACTIONS(5364), + [anon_sym_void] = ACTIONS(5366), + [anon_sym_noreturn] = ACTIONS(5366), + [anon_sym_type] = ACTIONS(5366), + [anon_sym_anyopaque] = ACTIONS(5366), + [anon_sym_bool] = ACTIONS(5366), + [anon_sym_int] = ACTIONS(5366), + [anon_sym_uint] = ACTIONS(5366), + [anon_sym_float] = ACTIONS(5366), + [anon_sym_range] = ACTIONS(5366), + [anon_sym_i8] = ACTIONS(5366), + [anon_sym_i16] = ACTIONS(5366), + [anon_sym_i32] = ACTIONS(5366), + [anon_sym_i64] = ACTIONS(5366), + [anon_sym_u8] = ACTIONS(5366), + [anon_sym_u16] = ACTIONS(5366), + [anon_sym_u32] = ACTIONS(5366), + [anon_sym_u64] = ACTIONS(5366), + [anon_sym_isize] = ACTIONS(5366), + [anon_sym_usize] = ACTIONS(5366), + [anon_sym_f32] = ACTIONS(5366), + [anon_sym_f64] = ACTIONS(5366), + [anon_sym_c_char] = ACTIONS(5366), + [anon_sym_c_schar] = ACTIONS(5366), + [anon_sym_c_uchar] = ACTIONS(5366), + [anon_sym_c_short] = ACTIONS(5366), + [anon_sym_c_ushort] = ACTIONS(5366), + [anon_sym_c_int] = ACTIONS(5366), + [anon_sym_c_uint] = ACTIONS(5366), + [anon_sym_c_long] = ACTIONS(5366), + [anon_sym_c_ulong] = ACTIONS(5366), + [anon_sym_c_longlong] = ACTIONS(5366), + [anon_sym_c_ulonglong] = ACTIONS(5366), + [anon_sym_c_float] = ACTIONS(5366), + [anon_sym_c_double] = ACTIONS(5366), + [anon_sym_c_longdouble] = ACTIONS(5366), + [anon_sym_PLUS_EQ] = ACTIONS(5364), + [anon_sym_DASH_EQ] = ACTIONS(5364), + [anon_sym_STAR_EQ] = ACTIONS(5364), + [anon_sym_SLASH_EQ] = ACTIONS(5364), + [anon_sym_AMP_EQ] = ACTIONS(5364), + [anon_sym_PIPE_EQ] = ACTIONS(5364), + [anon_sym_xor_EQ] = ACTIONS(5364), + [anon_sym_LT_LT_EQ] = ACTIONS(5364), + [anon_sym_GT_GT_EQ] = ACTIONS(5364), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5364), + [anon_sym_return] = ACTIONS(5366), + [anon_sym_yield] = ACTIONS(5366), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_break] = ACTIONS(5366), + [anon_sym_continue] = ACTIONS(5366), + [anon_sym_defer] = ACTIONS(5366), + [anon_sym_errdefer] = ACTIONS(5366), + [anon_sym_if] = ACTIONS(5366), + [anon_sym_else] = ACTIONS(5366), + [anon_sym_while] = ACTIONS(5366), + [anon_sym_expand] = ACTIONS(5366), + [anon_sym_for] = ACTIONS(5366), + [anon_sym_match] = ACTIONS(5366), + [anon_sym_DOT_DOT] = ACTIONS(5366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5364), + [anon_sym_orelse] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_and] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5364), + [anon_sym_BANG_EQ] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5366), + [anon_sym_GT_EQ] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5366), + [anon_sym_xor] = ACTIONS(5366), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5366), + [anon_sym_LT_LT_PIPE] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5366), + [anon_sym_SLASH] = ACTIONS(5366), + [anon_sym_catch] = ACTIONS(5366), + [anon_sym_TILDE] = ACTIONS(5364), + [anon_sym_try] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5366), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym_true] = ACTIONS(5366), + [anon_sym_false] = ACTIONS(5366), + [anon_sym_null] = ACTIONS(5366), + [anon_sym_unreachable] = ACTIONS(5366), + [anon_sym_undefined] = ACTIONS(5366), + [sym_sink] = ACTIONS(5366), + [sym_integer] = ACTIONS(5366), + [sym_float] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(5364), + [sym_multiline_string] = ACTIONS(5364), + [sym_character] = ACTIONS(5364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5364), + }, + [STATE(2417)] = { + [ts_builtin_sym_end] = ACTIONS(5368), + [sym_identifier] = ACTIONS(5370), + [anon_sym_import] = ACTIONS(5370), + [anon_sym_test] = ACTIONS(5370), + [anon_sym_hide] = ACTIONS(5370), + [anon_sym_func] = ACTIONS(5370), + [anon_sym_BANG] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_struct] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5368), + [anon_sym_RPAREN] = ACTIONS(5368), + [anon_sym_LBRACE] = ACTIONS(5368), + [anon_sym_COMMA] = ACTIONS(5368), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5370), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5368), + [anon_sym_SEMI] = ACTIONS(5368), + [anon_sym_RBRACK] = ACTIONS(5368), + [anon_sym_void] = ACTIONS(5370), + [anon_sym_noreturn] = ACTIONS(5370), + [anon_sym_type] = ACTIONS(5370), + [anon_sym_anyopaque] = ACTIONS(5370), + [anon_sym_bool] = ACTIONS(5370), + [anon_sym_int] = ACTIONS(5370), + [anon_sym_uint] = ACTIONS(5370), + [anon_sym_float] = ACTIONS(5370), + [anon_sym_range] = ACTIONS(5370), + [anon_sym_i8] = ACTIONS(5370), + [anon_sym_i16] = ACTIONS(5370), + [anon_sym_i32] = ACTIONS(5370), + [anon_sym_i64] = ACTIONS(5370), + [anon_sym_u8] = ACTIONS(5370), + [anon_sym_u16] = ACTIONS(5370), + [anon_sym_u32] = ACTIONS(5370), + [anon_sym_u64] = ACTIONS(5370), + [anon_sym_isize] = ACTIONS(5370), + [anon_sym_usize] = ACTIONS(5370), + [anon_sym_f32] = ACTIONS(5370), + [anon_sym_f64] = ACTIONS(5370), + [anon_sym_c_char] = ACTIONS(5370), + [anon_sym_c_schar] = ACTIONS(5370), + [anon_sym_c_uchar] = ACTIONS(5370), + [anon_sym_c_short] = ACTIONS(5370), + [anon_sym_c_ushort] = ACTIONS(5370), + [anon_sym_c_int] = ACTIONS(5370), + [anon_sym_c_uint] = ACTIONS(5370), + [anon_sym_c_long] = ACTIONS(5370), + [anon_sym_c_ulong] = ACTIONS(5370), + [anon_sym_c_longlong] = ACTIONS(5370), + [anon_sym_c_ulonglong] = ACTIONS(5370), + [anon_sym_c_float] = ACTIONS(5370), + [anon_sym_c_double] = ACTIONS(5370), + [anon_sym_c_longdouble] = ACTIONS(5370), + [anon_sym_PLUS_EQ] = ACTIONS(5368), + [anon_sym_DASH_EQ] = ACTIONS(5368), + [anon_sym_STAR_EQ] = ACTIONS(5368), + [anon_sym_SLASH_EQ] = ACTIONS(5368), + [anon_sym_AMP_EQ] = ACTIONS(5368), + [anon_sym_PIPE_EQ] = ACTIONS(5368), + [anon_sym_xor_EQ] = ACTIONS(5368), + [anon_sym_LT_LT_EQ] = ACTIONS(5368), + [anon_sym_GT_GT_EQ] = ACTIONS(5368), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5368), + [anon_sym_return] = ACTIONS(5370), + [anon_sym_yield] = ACTIONS(5370), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_break] = ACTIONS(5370), + [anon_sym_continue] = ACTIONS(5370), + [anon_sym_defer] = ACTIONS(5370), + [anon_sym_errdefer] = ACTIONS(5370), + [anon_sym_if] = ACTIONS(5370), + [anon_sym_else] = ACTIONS(5370), + [anon_sym_while] = ACTIONS(5370), + [anon_sym_expand] = ACTIONS(5370), + [anon_sym_for] = ACTIONS(5370), + [anon_sym_match] = ACTIONS(5370), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5368), + [anon_sym_orelse] = ACTIONS(5370), + [anon_sym_or] = ACTIONS(5370), + [anon_sym_and] = ACTIONS(5370), + [anon_sym_EQ_EQ] = ACTIONS(5368), + [anon_sym_BANG_EQ] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5370), + [anon_sym_xor] = ACTIONS(5370), + [anon_sym_LT_LT] = ACTIONS(5370), + [anon_sym_GT_GT] = ACTIONS(5370), + [anon_sym_LT_LT_PIPE] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5370), + [anon_sym_SLASH] = ACTIONS(5370), + [anon_sym_catch] = ACTIONS(5370), + [anon_sym_TILDE] = ACTIONS(5368), + [anon_sym_try] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5370), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym_true] = ACTIONS(5370), + [anon_sym_false] = ACTIONS(5370), + [anon_sym_null] = ACTIONS(5370), + [anon_sym_unreachable] = ACTIONS(5370), + [anon_sym_undefined] = ACTIONS(5370), + [sym_sink] = ACTIONS(5370), + [sym_integer] = ACTIONS(5370), + [sym_float] = ACTIONS(5368), + [anon_sym_DQUOTE] = ACTIONS(5368), + [sym_multiline_string] = ACTIONS(5368), + [sym_character] = ACTIONS(5368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5368), + }, + [STATE(2418)] = { + [ts_builtin_sym_end] = ACTIONS(5372), + [sym_identifier] = ACTIONS(5374), + [anon_sym_import] = ACTIONS(5374), + [anon_sym_test] = ACTIONS(5374), + [anon_sym_hide] = ACTIONS(5374), + [anon_sym_func] = ACTIONS(5374), + [anon_sym_BANG] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_struct] = ACTIONS(5374), + [anon_sym_LPAREN] = ACTIONS(5372), + [anon_sym_RPAREN] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5372), + [anon_sym_COMMA] = ACTIONS(5372), + [anon_sym_RBRACE] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5374), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5372), + [anon_sym_SEMI] = ACTIONS(5372), + [anon_sym_RBRACK] = ACTIONS(5372), + [anon_sym_void] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_anyopaque] = ACTIONS(5374), + [anon_sym_bool] = ACTIONS(5374), + [anon_sym_int] = ACTIONS(5374), + [anon_sym_uint] = ACTIONS(5374), + [anon_sym_float] = ACTIONS(5374), + [anon_sym_range] = ACTIONS(5374), + [anon_sym_i8] = ACTIONS(5374), + [anon_sym_i16] = ACTIONS(5374), + [anon_sym_i32] = ACTIONS(5374), + [anon_sym_i64] = ACTIONS(5374), + [anon_sym_u8] = ACTIONS(5374), + [anon_sym_u16] = ACTIONS(5374), + [anon_sym_u32] = ACTIONS(5374), + [anon_sym_u64] = ACTIONS(5374), + [anon_sym_isize] = ACTIONS(5374), + [anon_sym_usize] = ACTIONS(5374), + [anon_sym_f32] = ACTIONS(5374), + [anon_sym_f64] = ACTIONS(5374), + [anon_sym_c_char] = ACTIONS(5374), + [anon_sym_c_schar] = ACTIONS(5374), + [anon_sym_c_uchar] = ACTIONS(5374), + [anon_sym_c_short] = ACTIONS(5374), + [anon_sym_c_ushort] = ACTIONS(5374), + [anon_sym_c_int] = ACTIONS(5374), + [anon_sym_c_uint] = ACTIONS(5374), + [anon_sym_c_long] = ACTIONS(5374), + [anon_sym_c_ulong] = ACTIONS(5374), + [anon_sym_c_longlong] = ACTIONS(5374), + [anon_sym_c_ulonglong] = ACTIONS(5374), + [anon_sym_c_float] = ACTIONS(5374), + [anon_sym_c_double] = ACTIONS(5374), + [anon_sym_c_longdouble] = ACTIONS(5374), + [anon_sym_PLUS_EQ] = ACTIONS(5372), + [anon_sym_DASH_EQ] = ACTIONS(5372), + [anon_sym_STAR_EQ] = ACTIONS(5372), + [anon_sym_SLASH_EQ] = ACTIONS(5372), + [anon_sym_AMP_EQ] = ACTIONS(5372), + [anon_sym_PIPE_EQ] = ACTIONS(5372), + [anon_sym_xor_EQ] = ACTIONS(5372), + [anon_sym_LT_LT_EQ] = ACTIONS(5372), + [anon_sym_GT_GT_EQ] = ACTIONS(5372), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5372), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_break] = ACTIONS(5374), + [anon_sym_continue] = ACTIONS(5374), + [anon_sym_defer] = ACTIONS(5374), + [anon_sym_errdefer] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_else] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_expand] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_DOT_DOT] = ACTIONS(5374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5372), + [anon_sym_orelse] = ACTIONS(5374), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_EQ_EQ] = ACTIONS(5372), + [anon_sym_BANG_EQ] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5374), + [anon_sym_LT_EQ] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_xor] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(5374), + [anon_sym_GT_GT] = ACTIONS(5374), + [anon_sym_LT_LT_PIPE] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_SLASH] = ACTIONS(5374), + [anon_sym_catch] = ACTIONS(5374), + [anon_sym_TILDE] = ACTIONS(5372), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_DOT] = ACTIONS(5374), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym_true] = ACTIONS(5374), + [anon_sym_false] = ACTIONS(5374), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_unreachable] = ACTIONS(5374), + [anon_sym_undefined] = ACTIONS(5374), + [sym_sink] = ACTIONS(5374), + [sym_integer] = ACTIONS(5374), + [sym_float] = ACTIONS(5372), + [anon_sym_DQUOTE] = ACTIONS(5372), + [sym_multiline_string] = ACTIONS(5372), + [sym_character] = ACTIONS(5372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5372), + }, + [STATE(2419)] = { + [ts_builtin_sym_end] = ACTIONS(5376), + [sym_identifier] = ACTIONS(5378), + [anon_sym_import] = ACTIONS(5378), + [anon_sym_test] = ACTIONS(5378), + [anon_sym_hide] = ACTIONS(5378), + [anon_sym_func] = ACTIONS(5378), + [anon_sym_BANG] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_struct] = ACTIONS(5378), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_RPAREN] = ACTIONS(5376), + [anon_sym_LBRACE] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5378), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym_RBRACK] = ACTIONS(5376), + [anon_sym_void] = ACTIONS(5378), + [anon_sym_noreturn] = ACTIONS(5378), + [anon_sym_type] = ACTIONS(5378), + [anon_sym_anyopaque] = ACTIONS(5378), + [anon_sym_bool] = ACTIONS(5378), + [anon_sym_int] = ACTIONS(5378), + [anon_sym_uint] = ACTIONS(5378), + [anon_sym_float] = ACTIONS(5378), + [anon_sym_range] = ACTIONS(5378), + [anon_sym_i8] = ACTIONS(5378), + [anon_sym_i16] = ACTIONS(5378), + [anon_sym_i32] = ACTIONS(5378), + [anon_sym_i64] = ACTIONS(5378), + [anon_sym_u8] = ACTIONS(5378), + [anon_sym_u16] = ACTIONS(5378), + [anon_sym_u32] = ACTIONS(5378), + [anon_sym_u64] = ACTIONS(5378), + [anon_sym_isize] = ACTIONS(5378), + [anon_sym_usize] = ACTIONS(5378), + [anon_sym_f32] = ACTIONS(5378), + [anon_sym_f64] = ACTIONS(5378), + [anon_sym_c_char] = ACTIONS(5378), + [anon_sym_c_schar] = ACTIONS(5378), + [anon_sym_c_uchar] = ACTIONS(5378), + [anon_sym_c_short] = ACTIONS(5378), + [anon_sym_c_ushort] = ACTIONS(5378), + [anon_sym_c_int] = ACTIONS(5378), + [anon_sym_c_uint] = ACTIONS(5378), + [anon_sym_c_long] = ACTIONS(5378), + [anon_sym_c_ulong] = ACTIONS(5378), + [anon_sym_c_longlong] = ACTIONS(5378), + [anon_sym_c_ulonglong] = ACTIONS(5378), + [anon_sym_c_float] = ACTIONS(5378), + [anon_sym_c_double] = ACTIONS(5378), + [anon_sym_c_longdouble] = ACTIONS(5378), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_xor_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5376), + [anon_sym_return] = ACTIONS(5378), + [anon_sym_yield] = ACTIONS(5378), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_break] = ACTIONS(5378), + [anon_sym_continue] = ACTIONS(5378), + [anon_sym_defer] = ACTIONS(5378), + [anon_sym_errdefer] = ACTIONS(5378), + [anon_sym_if] = ACTIONS(5378), + [anon_sym_else] = ACTIONS(5378), + [anon_sym_while] = ACTIONS(5378), + [anon_sym_expand] = ACTIONS(5378), + [anon_sym_for] = ACTIONS(5378), + [anon_sym_match] = ACTIONS(5378), + [anon_sym_DOT_DOT] = ACTIONS(5378), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5376), + [anon_sym_orelse] = ACTIONS(5378), + [anon_sym_or] = ACTIONS(5378), + [anon_sym_and] = ACTIONS(5378), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5378), + [anon_sym_LT_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5378), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP] = ACTIONS(5378), + [anon_sym_xor] = ACTIONS(5378), + [anon_sym_LT_LT] = ACTIONS(5378), + [anon_sym_GT_GT] = ACTIONS(5378), + [anon_sym_LT_LT_PIPE] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5378), + [anon_sym_SLASH] = ACTIONS(5378), + [anon_sym_catch] = ACTIONS(5378), + [anon_sym_TILDE] = ACTIONS(5376), + [anon_sym_try] = ACTIONS(5378), + [anon_sym_DOT] = ACTIONS(5378), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym_true] = ACTIONS(5378), + [anon_sym_false] = ACTIONS(5378), + [anon_sym_null] = ACTIONS(5378), + [anon_sym_unreachable] = ACTIONS(5378), + [anon_sym_undefined] = ACTIONS(5378), + [sym_sink] = ACTIONS(5378), + [sym_integer] = ACTIONS(5378), + [sym_float] = ACTIONS(5376), + [anon_sym_DQUOTE] = ACTIONS(5376), + [sym_multiline_string] = ACTIONS(5376), + [sym_character] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5376), + }, + [STATE(2420)] = { + [ts_builtin_sym_end] = ACTIONS(5380), + [sym_identifier] = ACTIONS(5382), + [anon_sym_import] = ACTIONS(5382), + [anon_sym_test] = ACTIONS(5382), + [anon_sym_hide] = ACTIONS(5382), + [anon_sym_func] = ACTIONS(5382), + [anon_sym_BANG] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_struct] = ACTIONS(5382), + [anon_sym_LPAREN] = ACTIONS(5380), + [anon_sym_RPAREN] = ACTIONS(5380), + [anon_sym_LBRACE] = ACTIONS(5380), + [anon_sym_COMMA] = ACTIONS(5380), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5382), + [anon_sym_QMARK] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5380), + [anon_sym_SEMI] = ACTIONS(5380), + [anon_sym_RBRACK] = ACTIONS(5380), + [anon_sym_void] = ACTIONS(5382), + [anon_sym_noreturn] = ACTIONS(5382), + [anon_sym_type] = ACTIONS(5382), + [anon_sym_anyopaque] = ACTIONS(5382), + [anon_sym_bool] = ACTIONS(5382), + [anon_sym_int] = ACTIONS(5382), + [anon_sym_uint] = ACTIONS(5382), + [anon_sym_float] = ACTIONS(5382), + [anon_sym_range] = ACTIONS(5382), + [anon_sym_i8] = ACTIONS(5382), + [anon_sym_i16] = ACTIONS(5382), + [anon_sym_i32] = ACTIONS(5382), + [anon_sym_i64] = ACTIONS(5382), + [anon_sym_u8] = ACTIONS(5382), + [anon_sym_u16] = ACTIONS(5382), + [anon_sym_u32] = ACTIONS(5382), + [anon_sym_u64] = ACTIONS(5382), + [anon_sym_isize] = ACTIONS(5382), + [anon_sym_usize] = ACTIONS(5382), + [anon_sym_f32] = ACTIONS(5382), + [anon_sym_f64] = ACTIONS(5382), + [anon_sym_c_char] = ACTIONS(5382), + [anon_sym_c_schar] = ACTIONS(5382), + [anon_sym_c_uchar] = ACTIONS(5382), + [anon_sym_c_short] = ACTIONS(5382), + [anon_sym_c_ushort] = ACTIONS(5382), + [anon_sym_c_int] = ACTIONS(5382), + [anon_sym_c_uint] = ACTIONS(5382), + [anon_sym_c_long] = ACTIONS(5382), + [anon_sym_c_ulong] = ACTIONS(5382), + [anon_sym_c_longlong] = ACTIONS(5382), + [anon_sym_c_ulonglong] = ACTIONS(5382), + [anon_sym_c_float] = ACTIONS(5382), + [anon_sym_c_double] = ACTIONS(5382), + [anon_sym_c_longdouble] = ACTIONS(5382), + [anon_sym_PLUS_EQ] = ACTIONS(5380), + [anon_sym_DASH_EQ] = ACTIONS(5380), + [anon_sym_STAR_EQ] = ACTIONS(5380), + [anon_sym_SLASH_EQ] = ACTIONS(5380), + [anon_sym_AMP_EQ] = ACTIONS(5380), + [anon_sym_PIPE_EQ] = ACTIONS(5380), + [anon_sym_xor_EQ] = ACTIONS(5380), + [anon_sym_LT_LT_EQ] = ACTIONS(5380), + [anon_sym_GT_GT_EQ] = ACTIONS(5380), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5380), + [anon_sym_return] = ACTIONS(5382), + [anon_sym_yield] = ACTIONS(5382), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_break] = ACTIONS(5382), + [anon_sym_continue] = ACTIONS(5382), + [anon_sym_defer] = ACTIONS(5382), + [anon_sym_errdefer] = ACTIONS(5382), + [anon_sym_if] = ACTIONS(5382), + [anon_sym_else] = ACTIONS(5382), + [anon_sym_while] = ACTIONS(5382), + [anon_sym_expand] = ACTIONS(5382), + [anon_sym_for] = ACTIONS(5382), + [anon_sym_match] = ACTIONS(5382), + [anon_sym_DOT_DOT] = ACTIONS(5382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5380), + [anon_sym_orelse] = ACTIONS(5382), + [anon_sym_or] = ACTIONS(5382), + [anon_sym_and] = ACTIONS(5382), + [anon_sym_EQ_EQ] = ACTIONS(5380), + [anon_sym_BANG_EQ] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5382), + [anon_sym_LT_EQ] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5382), + [anon_sym_GT_EQ] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(5382), + [anon_sym_xor] = ACTIONS(5382), + [anon_sym_LT_LT] = ACTIONS(5382), + [anon_sym_GT_GT] = ACTIONS(5382), + [anon_sym_LT_LT_PIPE] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5382), + [anon_sym_SLASH] = ACTIONS(5382), + [anon_sym_catch] = ACTIONS(5382), + [anon_sym_TILDE] = ACTIONS(5380), + [anon_sym_try] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5382), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym_true] = ACTIONS(5382), + [anon_sym_false] = ACTIONS(5382), + [anon_sym_null] = ACTIONS(5382), + [anon_sym_unreachable] = ACTIONS(5382), + [anon_sym_undefined] = ACTIONS(5382), + [sym_sink] = ACTIONS(5382), + [sym_integer] = ACTIONS(5382), + [sym_float] = ACTIONS(5380), + [anon_sym_DQUOTE] = ACTIONS(5380), + [sym_multiline_string] = ACTIONS(5380), + [sym_character] = ACTIONS(5380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5380), + }, + [STATE(2421)] = { + [ts_builtin_sym_end] = ACTIONS(5384), + [sym_identifier] = ACTIONS(5386), + [anon_sym_import] = ACTIONS(5386), + [anon_sym_test] = ACTIONS(5386), + [anon_sym_hide] = ACTIONS(5386), + [anon_sym_func] = ACTIONS(5386), + [anon_sym_BANG] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_struct] = ACTIONS(5386), + [anon_sym_LPAREN] = ACTIONS(5384), + [anon_sym_RPAREN] = ACTIONS(5384), + [anon_sym_LBRACE] = ACTIONS(5384), + [anon_sym_COMMA] = ACTIONS(5384), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5386), + [anon_sym_QMARK] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5384), + [anon_sym_SEMI] = ACTIONS(5384), + [anon_sym_RBRACK] = ACTIONS(5384), + [anon_sym_void] = ACTIONS(5386), + [anon_sym_noreturn] = ACTIONS(5386), + [anon_sym_type] = ACTIONS(5386), + [anon_sym_anyopaque] = ACTIONS(5386), + [anon_sym_bool] = ACTIONS(5386), + [anon_sym_int] = ACTIONS(5386), + [anon_sym_uint] = ACTIONS(5386), + [anon_sym_float] = ACTIONS(5386), + [anon_sym_range] = ACTIONS(5386), + [anon_sym_i8] = ACTIONS(5386), + [anon_sym_i16] = ACTIONS(5386), + [anon_sym_i32] = ACTIONS(5386), + [anon_sym_i64] = ACTIONS(5386), + [anon_sym_u8] = ACTIONS(5386), + [anon_sym_u16] = ACTIONS(5386), + [anon_sym_u32] = ACTIONS(5386), + [anon_sym_u64] = ACTIONS(5386), + [anon_sym_isize] = ACTIONS(5386), + [anon_sym_usize] = ACTIONS(5386), + [anon_sym_f32] = ACTIONS(5386), + [anon_sym_f64] = ACTIONS(5386), + [anon_sym_c_char] = ACTIONS(5386), + [anon_sym_c_schar] = ACTIONS(5386), + [anon_sym_c_uchar] = ACTIONS(5386), + [anon_sym_c_short] = ACTIONS(5386), + [anon_sym_c_ushort] = ACTIONS(5386), + [anon_sym_c_int] = ACTIONS(5386), + [anon_sym_c_uint] = ACTIONS(5386), + [anon_sym_c_long] = ACTIONS(5386), + [anon_sym_c_ulong] = ACTIONS(5386), + [anon_sym_c_longlong] = ACTIONS(5386), + [anon_sym_c_ulonglong] = ACTIONS(5386), + [anon_sym_c_float] = ACTIONS(5386), + [anon_sym_c_double] = ACTIONS(5386), + [anon_sym_c_longdouble] = ACTIONS(5386), + [anon_sym_PLUS_EQ] = ACTIONS(5384), + [anon_sym_DASH_EQ] = ACTIONS(5384), + [anon_sym_STAR_EQ] = ACTIONS(5384), + [anon_sym_SLASH_EQ] = ACTIONS(5384), + [anon_sym_AMP_EQ] = ACTIONS(5384), + [anon_sym_PIPE_EQ] = ACTIONS(5384), + [anon_sym_xor_EQ] = ACTIONS(5384), + [anon_sym_LT_LT_EQ] = ACTIONS(5384), + [anon_sym_GT_GT_EQ] = ACTIONS(5384), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5384), + [anon_sym_return] = ACTIONS(5386), + [anon_sym_yield] = ACTIONS(5386), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_break] = ACTIONS(5386), + [anon_sym_continue] = ACTIONS(5386), + [anon_sym_defer] = ACTIONS(5386), + [anon_sym_errdefer] = ACTIONS(5386), + [anon_sym_if] = ACTIONS(5386), + [anon_sym_else] = ACTIONS(5386), + [anon_sym_while] = ACTIONS(5386), + [anon_sym_expand] = ACTIONS(5386), + [anon_sym_for] = ACTIONS(5386), + [anon_sym_match] = ACTIONS(5386), + [anon_sym_DOT_DOT] = ACTIONS(5386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5384), + [anon_sym_orelse] = ACTIONS(5386), + [anon_sym_or] = ACTIONS(5386), + [anon_sym_and] = ACTIONS(5386), + [anon_sym_EQ_EQ] = ACTIONS(5384), + [anon_sym_BANG_EQ] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_EQ] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5386), + [anon_sym_GT_EQ] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(5386), + [anon_sym_xor] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(5386), + [anon_sym_GT_GT] = ACTIONS(5386), + [anon_sym_LT_LT_PIPE] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5386), + [anon_sym_SLASH] = ACTIONS(5386), + [anon_sym_catch] = ACTIONS(5386), + [anon_sym_TILDE] = ACTIONS(5384), + [anon_sym_try] = ACTIONS(5386), + [anon_sym_DOT] = ACTIONS(5386), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym_true] = ACTIONS(5386), + [anon_sym_false] = ACTIONS(5386), + [anon_sym_null] = ACTIONS(5386), + [anon_sym_unreachable] = ACTIONS(5386), + [anon_sym_undefined] = ACTIONS(5386), + [sym_sink] = ACTIONS(5386), + [sym_integer] = ACTIONS(5386), + [sym_float] = ACTIONS(5384), + [anon_sym_DQUOTE] = ACTIONS(5384), + [sym_multiline_string] = ACTIONS(5384), + [sym_character] = ACTIONS(5384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5384), + }, + [STATE(2422)] = { + [ts_builtin_sym_end] = ACTIONS(5388), + [sym_identifier] = ACTIONS(5390), + [anon_sym_import] = ACTIONS(5390), + [anon_sym_test] = ACTIONS(5390), + [anon_sym_hide] = ACTIONS(5390), + [anon_sym_func] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_struct] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_RPAREN] = ACTIONS(5388), + [anon_sym_LBRACE] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_SEMI] = ACTIONS(5388), + [anon_sym_RBRACK] = ACTIONS(5388), + [anon_sym_void] = ACTIONS(5390), + [anon_sym_noreturn] = ACTIONS(5390), + [anon_sym_type] = ACTIONS(5390), + [anon_sym_anyopaque] = ACTIONS(5390), + [anon_sym_bool] = ACTIONS(5390), + [anon_sym_int] = ACTIONS(5390), + [anon_sym_uint] = ACTIONS(5390), + [anon_sym_float] = ACTIONS(5390), + [anon_sym_range] = ACTIONS(5390), + [anon_sym_i8] = ACTIONS(5390), + [anon_sym_i16] = ACTIONS(5390), + [anon_sym_i32] = ACTIONS(5390), + [anon_sym_i64] = ACTIONS(5390), + [anon_sym_u8] = ACTIONS(5390), + [anon_sym_u16] = ACTIONS(5390), + [anon_sym_u32] = ACTIONS(5390), + [anon_sym_u64] = ACTIONS(5390), + [anon_sym_isize] = ACTIONS(5390), + [anon_sym_usize] = ACTIONS(5390), + [anon_sym_f32] = ACTIONS(5390), + [anon_sym_f64] = ACTIONS(5390), + [anon_sym_c_char] = ACTIONS(5390), + [anon_sym_c_schar] = ACTIONS(5390), + [anon_sym_c_uchar] = ACTIONS(5390), + [anon_sym_c_short] = ACTIONS(5390), + [anon_sym_c_ushort] = ACTIONS(5390), + [anon_sym_c_int] = ACTIONS(5390), + [anon_sym_c_uint] = ACTIONS(5390), + [anon_sym_c_long] = ACTIONS(5390), + [anon_sym_c_ulong] = ACTIONS(5390), + [anon_sym_c_longlong] = ACTIONS(5390), + [anon_sym_c_ulonglong] = ACTIONS(5390), + [anon_sym_c_float] = ACTIONS(5390), + [anon_sym_c_double] = ACTIONS(5390), + [anon_sym_c_longdouble] = ACTIONS(5390), + [anon_sym_PLUS_EQ] = ACTIONS(5388), + [anon_sym_DASH_EQ] = ACTIONS(5388), + [anon_sym_STAR_EQ] = ACTIONS(5388), + [anon_sym_SLASH_EQ] = ACTIONS(5388), + [anon_sym_AMP_EQ] = ACTIONS(5388), + [anon_sym_PIPE_EQ] = ACTIONS(5388), + [anon_sym_xor_EQ] = ACTIONS(5388), + [anon_sym_LT_LT_EQ] = ACTIONS(5388), + [anon_sym_GT_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5388), + [anon_sym_return] = ACTIONS(5390), + [anon_sym_yield] = ACTIONS(5390), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_break] = ACTIONS(5390), + [anon_sym_continue] = ACTIONS(5390), + [anon_sym_defer] = ACTIONS(5390), + [anon_sym_errdefer] = ACTIONS(5390), + [anon_sym_if] = ACTIONS(5390), + [anon_sym_else] = ACTIONS(5390), + [anon_sym_while] = ACTIONS(5390), + [anon_sym_expand] = ACTIONS(5390), + [anon_sym_for] = ACTIONS(5390), + [anon_sym_match] = ACTIONS(5390), + [anon_sym_DOT_DOT] = ACTIONS(5390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5388), + [anon_sym_orelse] = ACTIONS(5390), + [anon_sym_or] = ACTIONS(5390), + [anon_sym_and] = ACTIONS(5390), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_xor] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5390), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_LT_LT_PIPE] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_catch] = ACTIONS(5390), + [anon_sym_TILDE] = ACTIONS(5388), + [anon_sym_try] = ACTIONS(5390), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_true] = ACTIONS(5390), + [anon_sym_false] = ACTIONS(5390), + [anon_sym_null] = ACTIONS(5390), + [anon_sym_unreachable] = ACTIONS(5390), + [anon_sym_undefined] = ACTIONS(5390), + [sym_sink] = ACTIONS(5390), + [sym_integer] = ACTIONS(5390), + [sym_float] = ACTIONS(5388), + [anon_sym_DQUOTE] = ACTIONS(5388), + [sym_multiline_string] = ACTIONS(5388), + [sym_character] = ACTIONS(5388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5388), + }, + [STATE(2423)] = { + [ts_builtin_sym_end] = ACTIONS(5392), + [sym_identifier] = ACTIONS(5394), + [anon_sym_import] = ACTIONS(5394), + [anon_sym_test] = ACTIONS(5394), + [anon_sym_hide] = ACTIONS(5394), + [anon_sym_func] = ACTIONS(5394), + [anon_sym_BANG] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_struct] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5392), + [anon_sym_RPAREN] = ACTIONS(5392), + [anon_sym_LBRACE] = ACTIONS(5392), + [anon_sym_COMMA] = ACTIONS(5392), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(5392), + [anon_sym_SEMI] = ACTIONS(5392), + [anon_sym_RBRACK] = ACTIONS(5392), + [anon_sym_void] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_type] = ACTIONS(5394), + [anon_sym_anyopaque] = ACTIONS(5394), + [anon_sym_bool] = ACTIONS(5394), + [anon_sym_int] = ACTIONS(5394), + [anon_sym_uint] = ACTIONS(5394), + [anon_sym_float] = ACTIONS(5394), + [anon_sym_range] = ACTIONS(5394), + [anon_sym_i8] = ACTIONS(5394), + [anon_sym_i16] = ACTIONS(5394), + [anon_sym_i32] = ACTIONS(5394), + [anon_sym_i64] = ACTIONS(5394), + [anon_sym_u8] = ACTIONS(5394), + [anon_sym_u16] = ACTIONS(5394), + [anon_sym_u32] = ACTIONS(5394), + [anon_sym_u64] = ACTIONS(5394), + [anon_sym_isize] = ACTIONS(5394), + [anon_sym_usize] = ACTIONS(5394), + [anon_sym_f32] = ACTIONS(5394), + [anon_sym_f64] = ACTIONS(5394), + [anon_sym_c_char] = ACTIONS(5394), + [anon_sym_c_schar] = ACTIONS(5394), + [anon_sym_c_uchar] = ACTIONS(5394), + [anon_sym_c_short] = ACTIONS(5394), + [anon_sym_c_ushort] = ACTIONS(5394), + [anon_sym_c_int] = ACTIONS(5394), + [anon_sym_c_uint] = ACTIONS(5394), + [anon_sym_c_long] = ACTIONS(5394), + [anon_sym_c_ulong] = ACTIONS(5394), + [anon_sym_c_longlong] = ACTIONS(5394), + [anon_sym_c_ulonglong] = ACTIONS(5394), + [anon_sym_c_float] = ACTIONS(5394), + [anon_sym_c_double] = ACTIONS(5394), + [anon_sym_c_longdouble] = ACTIONS(5394), + [anon_sym_PLUS_EQ] = ACTIONS(5392), + [anon_sym_DASH_EQ] = ACTIONS(5392), + [anon_sym_STAR_EQ] = ACTIONS(5392), + [anon_sym_SLASH_EQ] = ACTIONS(5392), + [anon_sym_AMP_EQ] = ACTIONS(5392), + [anon_sym_PIPE_EQ] = ACTIONS(5392), + [anon_sym_xor_EQ] = ACTIONS(5392), + [anon_sym_LT_LT_EQ] = ACTIONS(5392), + [anon_sym_GT_GT_EQ] = ACTIONS(5392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5392), + [anon_sym_return] = ACTIONS(5394), + [anon_sym_yield] = ACTIONS(5394), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_break] = ACTIONS(5394), + [anon_sym_continue] = ACTIONS(5394), + [anon_sym_defer] = ACTIONS(5394), + [anon_sym_errdefer] = ACTIONS(5394), + [anon_sym_if] = ACTIONS(5394), + [anon_sym_else] = ACTIONS(5394), + [anon_sym_while] = ACTIONS(5394), + [anon_sym_expand] = ACTIONS(5394), + [anon_sym_for] = ACTIONS(5394), + [anon_sym_match] = ACTIONS(5394), + [anon_sym_DOT_DOT] = ACTIONS(5394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5392), + [anon_sym_orelse] = ACTIONS(5394), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5392), + [anon_sym_BANG_EQ] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_EQ] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5392), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym_LT_LT_PIPE] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_catch] = ACTIONS(5394), + [anon_sym_TILDE] = ACTIONS(5392), + [anon_sym_try] = ACTIONS(5394), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym_true] = ACTIONS(5394), + [anon_sym_false] = ACTIONS(5394), + [anon_sym_null] = ACTIONS(5394), + [anon_sym_unreachable] = ACTIONS(5394), + [anon_sym_undefined] = ACTIONS(5394), + [sym_sink] = ACTIONS(5394), + [sym_integer] = ACTIONS(5394), + [sym_float] = ACTIONS(5392), + [anon_sym_DQUOTE] = ACTIONS(5392), + [sym_multiline_string] = ACTIONS(5392), + [sym_character] = ACTIONS(5392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5392), + }, + [STATE(2424)] = { + [ts_builtin_sym_end] = ACTIONS(5396), + [sym_identifier] = ACTIONS(5398), + [anon_sym_import] = ACTIONS(5398), + [anon_sym_test] = ACTIONS(5398), + [anon_sym_hide] = ACTIONS(5398), + [anon_sym_func] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_struct] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_DOLLAR] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_SEMI] = ACTIONS(5396), + [anon_sym_RBRACK] = ACTIONS(5396), + [anon_sym_void] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_type] = ACTIONS(5398), + [anon_sym_anyopaque] = ACTIONS(5398), + [anon_sym_bool] = ACTIONS(5398), + [anon_sym_int] = ACTIONS(5398), + [anon_sym_uint] = ACTIONS(5398), + [anon_sym_float] = ACTIONS(5398), + [anon_sym_range] = ACTIONS(5398), + [anon_sym_i8] = ACTIONS(5398), + [anon_sym_i16] = ACTIONS(5398), + [anon_sym_i32] = ACTIONS(5398), + [anon_sym_i64] = ACTIONS(5398), + [anon_sym_u8] = ACTIONS(5398), + [anon_sym_u16] = ACTIONS(5398), + [anon_sym_u32] = ACTIONS(5398), + [anon_sym_u64] = ACTIONS(5398), + [anon_sym_isize] = ACTIONS(5398), + [anon_sym_usize] = ACTIONS(5398), + [anon_sym_f32] = ACTIONS(5398), + [anon_sym_f64] = ACTIONS(5398), + [anon_sym_c_char] = ACTIONS(5398), + [anon_sym_c_schar] = ACTIONS(5398), + [anon_sym_c_uchar] = ACTIONS(5398), + [anon_sym_c_short] = ACTIONS(5398), + [anon_sym_c_ushort] = ACTIONS(5398), + [anon_sym_c_int] = ACTIONS(5398), + [anon_sym_c_uint] = ACTIONS(5398), + [anon_sym_c_long] = ACTIONS(5398), + [anon_sym_c_ulong] = ACTIONS(5398), + [anon_sym_c_longlong] = ACTIONS(5398), + [anon_sym_c_ulonglong] = ACTIONS(5398), + [anon_sym_c_float] = ACTIONS(5398), + [anon_sym_c_double] = ACTIONS(5398), + [anon_sym_c_longdouble] = ACTIONS(5398), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_xor_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5396), + [anon_sym_return] = ACTIONS(5398), + [anon_sym_yield] = ACTIONS(5398), + [anon_sym_COLON] = ACTIONS(5396), + [anon_sym_break] = ACTIONS(5398), + [anon_sym_continue] = ACTIONS(5398), + [anon_sym_defer] = ACTIONS(5398), + [anon_sym_errdefer] = ACTIONS(5398), + [anon_sym_if] = ACTIONS(5398), + [anon_sym_else] = ACTIONS(5398), + [anon_sym_while] = ACTIONS(5398), + [anon_sym_expand] = ACTIONS(5398), + [anon_sym_for] = ACTIONS(5398), + [anon_sym_match] = ACTIONS(5398), + [anon_sym_DOT_DOT] = ACTIONS(5398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5396), + [anon_sym_orelse] = ACTIONS(5398), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym_LT_LT_PIPE] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_catch] = ACTIONS(5398), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_try] = ACTIONS(5398), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_true] = ACTIONS(5398), + [anon_sym_false] = ACTIONS(5398), + [anon_sym_null] = ACTIONS(5398), + [anon_sym_unreachable] = ACTIONS(5398), + [anon_sym_undefined] = ACTIONS(5398), + [sym_sink] = ACTIONS(5398), + [sym_integer] = ACTIONS(5398), + [sym_float] = ACTIONS(5396), + [anon_sym_DQUOTE] = ACTIONS(5396), + [sym_multiline_string] = ACTIONS(5396), + [sym_character] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5396), + }, + [STATE(2425)] = { + [ts_builtin_sym_end] = ACTIONS(5400), + [sym_identifier] = ACTIONS(5402), + [anon_sym_import] = ACTIONS(5402), + [anon_sym_test] = ACTIONS(5402), + [anon_sym_hide] = ACTIONS(5402), + [anon_sym_func] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_struct] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_DOLLAR] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_SEMI] = ACTIONS(5400), + [anon_sym_RBRACK] = ACTIONS(5400), + [anon_sym_void] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_type] = ACTIONS(5402), + [anon_sym_anyopaque] = ACTIONS(5402), + [anon_sym_bool] = ACTIONS(5402), + [anon_sym_int] = ACTIONS(5402), + [anon_sym_uint] = ACTIONS(5402), + [anon_sym_float] = ACTIONS(5402), + [anon_sym_range] = ACTIONS(5402), + [anon_sym_i8] = ACTIONS(5402), + [anon_sym_i16] = ACTIONS(5402), + [anon_sym_i32] = ACTIONS(5402), + [anon_sym_i64] = ACTIONS(5402), + [anon_sym_u8] = ACTIONS(5402), + [anon_sym_u16] = ACTIONS(5402), + [anon_sym_u32] = ACTIONS(5402), + [anon_sym_u64] = ACTIONS(5402), + [anon_sym_isize] = ACTIONS(5402), + [anon_sym_usize] = ACTIONS(5402), + [anon_sym_f32] = ACTIONS(5402), + [anon_sym_f64] = ACTIONS(5402), + [anon_sym_c_char] = ACTIONS(5402), + [anon_sym_c_schar] = ACTIONS(5402), + [anon_sym_c_uchar] = ACTIONS(5402), + [anon_sym_c_short] = ACTIONS(5402), + [anon_sym_c_ushort] = ACTIONS(5402), + [anon_sym_c_int] = ACTIONS(5402), + [anon_sym_c_uint] = ACTIONS(5402), + [anon_sym_c_long] = ACTIONS(5402), + [anon_sym_c_ulong] = ACTIONS(5402), + [anon_sym_c_longlong] = ACTIONS(5402), + [anon_sym_c_ulonglong] = ACTIONS(5402), + [anon_sym_c_float] = ACTIONS(5402), + [anon_sym_c_double] = ACTIONS(5402), + [anon_sym_c_longdouble] = ACTIONS(5402), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_xor_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5400), + [anon_sym_return] = ACTIONS(5402), + [anon_sym_yield] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5400), + [anon_sym_break] = ACTIONS(5402), + [anon_sym_continue] = ACTIONS(5402), + [anon_sym_defer] = ACTIONS(5402), + [anon_sym_errdefer] = ACTIONS(5402), + [anon_sym_if] = ACTIONS(5402), + [anon_sym_else] = ACTIONS(5402), + [anon_sym_while] = ACTIONS(5402), + [anon_sym_expand] = ACTIONS(5402), + [anon_sym_for] = ACTIONS(5402), + [anon_sym_match] = ACTIONS(5402), + [anon_sym_DOT_DOT] = ACTIONS(5402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5400), + [anon_sym_orelse] = ACTIONS(5402), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym_LT_LT_PIPE] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_catch] = ACTIONS(5402), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_try] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5400), + [anon_sym_true] = ACTIONS(5402), + [anon_sym_false] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5402), + [anon_sym_unreachable] = ACTIONS(5402), + [anon_sym_undefined] = ACTIONS(5402), + [sym_sink] = ACTIONS(5402), + [sym_integer] = ACTIONS(5402), + [sym_float] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [sym_multiline_string] = ACTIONS(5400), + [sym_character] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5400), + }, + [STATE(2426)] = { + [ts_builtin_sym_end] = ACTIONS(5404), + [sym_identifier] = ACTIONS(5406), + [anon_sym_import] = ACTIONS(5406), + [anon_sym_test] = ACTIONS(5406), + [anon_sym_hide] = ACTIONS(5406), + [anon_sym_func] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_EQ] = ACTIONS(5406), + [anon_sym_struct] = ACTIONS(5406), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_DOLLAR] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR] = ACTIONS(5406), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_SEMI] = ACTIONS(5404), + [anon_sym_RBRACK] = ACTIONS(5404), + [anon_sym_void] = ACTIONS(5406), + [anon_sym_noreturn] = ACTIONS(5406), + [anon_sym_type] = ACTIONS(5406), + [anon_sym_anyopaque] = ACTIONS(5406), + [anon_sym_bool] = ACTIONS(5406), + [anon_sym_int] = ACTIONS(5406), + [anon_sym_uint] = ACTIONS(5406), + [anon_sym_float] = ACTIONS(5406), + [anon_sym_range] = ACTIONS(5406), + [anon_sym_i8] = ACTIONS(5406), + [anon_sym_i16] = ACTIONS(5406), + [anon_sym_i32] = ACTIONS(5406), + [anon_sym_i64] = ACTIONS(5406), + [anon_sym_u8] = ACTIONS(5406), + [anon_sym_u16] = ACTIONS(5406), + [anon_sym_u32] = ACTIONS(5406), + [anon_sym_u64] = ACTIONS(5406), + [anon_sym_isize] = ACTIONS(5406), + [anon_sym_usize] = ACTIONS(5406), + [anon_sym_f32] = ACTIONS(5406), + [anon_sym_f64] = ACTIONS(5406), + [anon_sym_c_char] = ACTIONS(5406), + [anon_sym_c_schar] = ACTIONS(5406), + [anon_sym_c_uchar] = ACTIONS(5406), + [anon_sym_c_short] = ACTIONS(5406), + [anon_sym_c_ushort] = ACTIONS(5406), + [anon_sym_c_int] = ACTIONS(5406), + [anon_sym_c_uint] = ACTIONS(5406), + [anon_sym_c_long] = ACTIONS(5406), + [anon_sym_c_ulong] = ACTIONS(5406), + [anon_sym_c_longlong] = ACTIONS(5406), + [anon_sym_c_ulonglong] = ACTIONS(5406), + [anon_sym_c_float] = ACTIONS(5406), + [anon_sym_c_double] = ACTIONS(5406), + [anon_sym_c_longdouble] = ACTIONS(5406), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_xor_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5404), + [anon_sym_return] = ACTIONS(5406), + [anon_sym_yield] = ACTIONS(5406), + [anon_sym_COLON] = ACTIONS(5404), + [anon_sym_break] = ACTIONS(5406), + [anon_sym_continue] = ACTIONS(5406), + [anon_sym_defer] = ACTIONS(5406), + [anon_sym_errdefer] = ACTIONS(5406), + [anon_sym_if] = ACTIONS(5406), + [anon_sym_else] = ACTIONS(5406), + [anon_sym_while] = ACTIONS(5406), + [anon_sym_expand] = ACTIONS(5406), + [anon_sym_for] = ACTIONS(5406), + [anon_sym_match] = ACTIONS(5406), + [anon_sym_DOT_DOT] = ACTIONS(5406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5404), + [anon_sym_orelse] = ACTIONS(5406), + [anon_sym_or] = ACTIONS(5406), + [anon_sym_and] = ACTIONS(5406), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_LT_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_xor] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(5406), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_LT_LT_PIPE] = ACTIONS(5406), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_catch] = ACTIONS(5406), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_try] = ACTIONS(5406), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_CARET] = ACTIONS(5404), + [anon_sym_true] = ACTIONS(5406), + [anon_sym_false] = ACTIONS(5406), + [anon_sym_null] = ACTIONS(5406), + [anon_sym_unreachable] = ACTIONS(5406), + [anon_sym_undefined] = ACTIONS(5406), + [sym_sink] = ACTIONS(5406), + [sym_integer] = ACTIONS(5406), + [sym_float] = ACTIONS(5404), + [anon_sym_DQUOTE] = ACTIONS(5404), + [sym_multiline_string] = ACTIONS(5404), + [sym_character] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5404), + }, + [STATE(2427)] = { + [ts_builtin_sym_end] = ACTIONS(5408), + [sym_identifier] = ACTIONS(5410), + [anon_sym_import] = ACTIONS(5410), + [anon_sym_test] = ACTIONS(5410), + [anon_sym_hide] = ACTIONS(5410), + [anon_sym_func] = ACTIONS(5410), + [anon_sym_BANG] = ACTIONS(5410), + [anon_sym_EQ] = ACTIONS(5410), + [anon_sym_struct] = ACTIONS(5410), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_RPAREN] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5408), + [anon_sym_COMMA] = ACTIONS(5408), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_DASH] = ACTIONS(5410), + [anon_sym_DOLLAR] = ACTIONS(5408), + [anon_sym_PIPE] = ACTIONS(5410), + [anon_sym_QMARK] = ACTIONS(5408), + [anon_sym_STAR] = ACTIONS(5410), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_SEMI] = ACTIONS(5408), + [anon_sym_RBRACK] = ACTIONS(5408), + [anon_sym_void] = ACTIONS(5410), + [anon_sym_noreturn] = ACTIONS(5410), + [anon_sym_type] = ACTIONS(5410), + [anon_sym_anyopaque] = ACTIONS(5410), + [anon_sym_bool] = ACTIONS(5410), + [anon_sym_int] = ACTIONS(5410), + [anon_sym_uint] = ACTIONS(5410), + [anon_sym_float] = ACTIONS(5410), + [anon_sym_range] = ACTIONS(5410), + [anon_sym_i8] = ACTIONS(5410), + [anon_sym_i16] = ACTIONS(5410), + [anon_sym_i32] = ACTIONS(5410), + [anon_sym_i64] = ACTIONS(5410), + [anon_sym_u8] = ACTIONS(5410), + [anon_sym_u16] = ACTIONS(5410), + [anon_sym_u32] = ACTIONS(5410), + [anon_sym_u64] = ACTIONS(5410), + [anon_sym_isize] = ACTIONS(5410), + [anon_sym_usize] = ACTIONS(5410), + [anon_sym_f32] = ACTIONS(5410), + [anon_sym_f64] = ACTIONS(5410), + [anon_sym_c_char] = ACTIONS(5410), + [anon_sym_c_schar] = ACTIONS(5410), + [anon_sym_c_uchar] = ACTIONS(5410), + [anon_sym_c_short] = ACTIONS(5410), + [anon_sym_c_ushort] = ACTIONS(5410), + [anon_sym_c_int] = ACTIONS(5410), + [anon_sym_c_uint] = ACTIONS(5410), + [anon_sym_c_long] = ACTIONS(5410), + [anon_sym_c_ulong] = ACTIONS(5410), + [anon_sym_c_longlong] = ACTIONS(5410), + [anon_sym_c_ulonglong] = ACTIONS(5410), + [anon_sym_c_float] = ACTIONS(5410), + [anon_sym_c_double] = ACTIONS(5410), + [anon_sym_c_longdouble] = ACTIONS(5410), + [anon_sym_PLUS_EQ] = ACTIONS(5408), + [anon_sym_DASH_EQ] = ACTIONS(5408), + [anon_sym_STAR_EQ] = ACTIONS(5408), + [anon_sym_SLASH_EQ] = ACTIONS(5408), + [anon_sym_AMP_EQ] = ACTIONS(5408), + [anon_sym_PIPE_EQ] = ACTIONS(5408), + [anon_sym_xor_EQ] = ACTIONS(5408), + [anon_sym_LT_LT_EQ] = ACTIONS(5408), + [anon_sym_GT_GT_EQ] = ACTIONS(5408), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5408), + [anon_sym_return] = ACTIONS(5410), + [anon_sym_yield] = ACTIONS(5410), + [anon_sym_COLON] = ACTIONS(5408), + [anon_sym_break] = ACTIONS(5410), + [anon_sym_continue] = ACTIONS(5410), + [anon_sym_defer] = ACTIONS(5410), + [anon_sym_errdefer] = ACTIONS(5410), + [anon_sym_if] = ACTIONS(5410), + [anon_sym_else] = ACTIONS(5410), + [anon_sym_while] = ACTIONS(5410), + [anon_sym_expand] = ACTIONS(5410), + [anon_sym_for] = ACTIONS(5410), + [anon_sym_match] = ACTIONS(5410), + [anon_sym_DOT_DOT] = ACTIONS(5410), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5408), + [anon_sym_orelse] = ACTIONS(5410), + [anon_sym_or] = ACTIONS(5410), + [anon_sym_and] = ACTIONS(5410), + [anon_sym_EQ_EQ] = ACTIONS(5408), + [anon_sym_BANG_EQ] = ACTIONS(5408), + [anon_sym_LT] = ACTIONS(5410), + [anon_sym_LT_EQ] = ACTIONS(5408), + [anon_sym_GT] = ACTIONS(5410), + [anon_sym_GT_EQ] = ACTIONS(5408), + [anon_sym_AMP] = ACTIONS(5410), + [anon_sym_xor] = ACTIONS(5410), + [anon_sym_LT_LT] = ACTIONS(5410), + [anon_sym_GT_GT] = ACTIONS(5410), + [anon_sym_LT_LT_PIPE] = ACTIONS(5410), + [anon_sym_PLUS] = ACTIONS(5410), + [anon_sym_SLASH] = ACTIONS(5410), + [anon_sym_catch] = ACTIONS(5410), + [anon_sym_TILDE] = ACTIONS(5408), + [anon_sym_try] = ACTIONS(5410), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_CARET] = ACTIONS(5408), + [anon_sym_true] = ACTIONS(5410), + [anon_sym_false] = ACTIONS(5410), + [anon_sym_null] = ACTIONS(5410), + [anon_sym_unreachable] = ACTIONS(5410), + [anon_sym_undefined] = ACTIONS(5410), + [sym_sink] = ACTIONS(5410), + [sym_integer] = ACTIONS(5410), + [sym_float] = ACTIONS(5408), + [anon_sym_DQUOTE] = ACTIONS(5408), + [sym_multiline_string] = ACTIONS(5408), + [sym_character] = ACTIONS(5408), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5408), + }, + [STATE(2428)] = { + [ts_builtin_sym_end] = ACTIONS(5412), + [sym_identifier] = ACTIONS(5414), + [anon_sym_import] = ACTIONS(5414), + [anon_sym_test] = ACTIONS(5414), + [anon_sym_hide] = ACTIONS(5414), + [anon_sym_func] = ACTIONS(5414), + [anon_sym_BANG] = ACTIONS(5414), + [anon_sym_EQ] = ACTIONS(5414), + [anon_sym_struct] = ACTIONS(5414), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(5412), + [anon_sym_LBRACE] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(5412), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5414), + [anon_sym_DOLLAR] = ACTIONS(5412), + [anon_sym_PIPE] = ACTIONS(5414), + [anon_sym_QMARK] = ACTIONS(5412), + [anon_sym_STAR] = ACTIONS(5414), + [anon_sym_LBRACK] = ACTIONS(5412), + [anon_sym_SEMI] = ACTIONS(5412), + [anon_sym_RBRACK] = ACTIONS(5412), + [anon_sym_void] = ACTIONS(5414), + [anon_sym_noreturn] = ACTIONS(5414), + [anon_sym_type] = ACTIONS(5414), + [anon_sym_anyopaque] = ACTIONS(5414), + [anon_sym_bool] = ACTIONS(5414), + [anon_sym_int] = ACTIONS(5414), + [anon_sym_uint] = ACTIONS(5414), + [anon_sym_float] = ACTIONS(5414), + [anon_sym_range] = ACTIONS(5414), + [anon_sym_i8] = ACTIONS(5414), + [anon_sym_i16] = ACTIONS(5414), + [anon_sym_i32] = ACTIONS(5414), + [anon_sym_i64] = ACTIONS(5414), + [anon_sym_u8] = ACTIONS(5414), + [anon_sym_u16] = ACTIONS(5414), + [anon_sym_u32] = ACTIONS(5414), + [anon_sym_u64] = ACTIONS(5414), + [anon_sym_isize] = ACTIONS(5414), + [anon_sym_usize] = ACTIONS(5414), + [anon_sym_f32] = ACTIONS(5414), + [anon_sym_f64] = ACTIONS(5414), + [anon_sym_c_char] = ACTIONS(5414), + [anon_sym_c_schar] = ACTIONS(5414), + [anon_sym_c_uchar] = ACTIONS(5414), + [anon_sym_c_short] = ACTIONS(5414), + [anon_sym_c_ushort] = ACTIONS(5414), + [anon_sym_c_int] = ACTIONS(5414), + [anon_sym_c_uint] = ACTIONS(5414), + [anon_sym_c_long] = ACTIONS(5414), + [anon_sym_c_ulong] = ACTIONS(5414), + [anon_sym_c_longlong] = ACTIONS(5414), + [anon_sym_c_ulonglong] = ACTIONS(5414), + [anon_sym_c_float] = ACTIONS(5414), + [anon_sym_c_double] = ACTIONS(5414), + [anon_sym_c_longdouble] = ACTIONS(5414), + [anon_sym_PLUS_EQ] = ACTIONS(5412), + [anon_sym_DASH_EQ] = ACTIONS(5412), + [anon_sym_STAR_EQ] = ACTIONS(5412), + [anon_sym_SLASH_EQ] = ACTIONS(5412), + [anon_sym_AMP_EQ] = ACTIONS(5412), + [anon_sym_PIPE_EQ] = ACTIONS(5412), + [anon_sym_xor_EQ] = ACTIONS(5412), + [anon_sym_LT_LT_EQ] = ACTIONS(5412), + [anon_sym_GT_GT_EQ] = ACTIONS(5412), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5412), + [anon_sym_return] = ACTIONS(5414), + [anon_sym_yield] = ACTIONS(5414), + [anon_sym_COLON] = ACTIONS(5412), + [anon_sym_break] = ACTIONS(5414), + [anon_sym_continue] = ACTIONS(5414), + [anon_sym_defer] = ACTIONS(5414), + [anon_sym_errdefer] = ACTIONS(5414), + [anon_sym_if] = ACTIONS(5414), + [anon_sym_else] = ACTIONS(5414), + [anon_sym_while] = ACTIONS(5414), + [anon_sym_expand] = ACTIONS(5414), + [anon_sym_for] = ACTIONS(5414), + [anon_sym_match] = ACTIONS(5414), + [anon_sym_DOT_DOT] = ACTIONS(5414), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5412), + [anon_sym_orelse] = ACTIONS(5414), + [anon_sym_or] = ACTIONS(5414), + [anon_sym_and] = ACTIONS(5414), + [anon_sym_EQ_EQ] = ACTIONS(5412), + [anon_sym_BANG_EQ] = ACTIONS(5412), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_LT_EQ] = ACTIONS(5412), + [anon_sym_GT] = ACTIONS(5414), + [anon_sym_GT_EQ] = ACTIONS(5412), + [anon_sym_AMP] = ACTIONS(5414), + [anon_sym_xor] = ACTIONS(5414), + [anon_sym_LT_LT] = ACTIONS(5414), + [anon_sym_GT_GT] = ACTIONS(5414), + [anon_sym_LT_LT_PIPE] = ACTIONS(5414), + [anon_sym_PLUS] = ACTIONS(5414), + [anon_sym_SLASH] = ACTIONS(5414), + [anon_sym_catch] = ACTIONS(5414), + [anon_sym_TILDE] = ACTIONS(5412), + [anon_sym_try] = ACTIONS(5414), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_CARET] = ACTIONS(5412), + [anon_sym_true] = ACTIONS(5414), + [anon_sym_false] = ACTIONS(5414), + [anon_sym_null] = ACTIONS(5414), + [anon_sym_unreachable] = ACTIONS(5414), + [anon_sym_undefined] = ACTIONS(5414), + [sym_sink] = ACTIONS(5414), + [sym_integer] = ACTIONS(5414), + [sym_float] = ACTIONS(5412), + [anon_sym_DQUOTE] = ACTIONS(5412), + [sym_multiline_string] = ACTIONS(5412), + [sym_character] = ACTIONS(5412), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5412), + }, + [STATE(2429)] = { + [ts_builtin_sym_end] = ACTIONS(5416), + [sym_identifier] = ACTIONS(5418), + [anon_sym_import] = ACTIONS(5418), + [anon_sym_test] = ACTIONS(5418), + [anon_sym_hide] = ACTIONS(5418), + [anon_sym_func] = ACTIONS(5418), + [anon_sym_BANG] = ACTIONS(5418), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_struct] = ACTIONS(5418), + [anon_sym_LPAREN] = ACTIONS(5416), + [anon_sym_RPAREN] = ACTIONS(5416), + [anon_sym_LBRACE] = ACTIONS(5416), + [anon_sym_COMMA] = ACTIONS(5416), + [anon_sym_RBRACE] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_DOLLAR] = ACTIONS(5416), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_QMARK] = ACTIONS(5416), + [anon_sym_STAR] = ACTIONS(5418), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(5416), + [anon_sym_RBRACK] = ACTIONS(5416), + [anon_sym_void] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_type] = ACTIONS(5418), + [anon_sym_anyopaque] = ACTIONS(5418), + [anon_sym_bool] = ACTIONS(5418), + [anon_sym_int] = ACTIONS(5418), + [anon_sym_uint] = ACTIONS(5418), + [anon_sym_float] = ACTIONS(5418), + [anon_sym_range] = ACTIONS(5418), + [anon_sym_i8] = ACTIONS(5418), + [anon_sym_i16] = ACTIONS(5418), + [anon_sym_i32] = ACTIONS(5418), + [anon_sym_i64] = ACTIONS(5418), + [anon_sym_u8] = ACTIONS(5418), + [anon_sym_u16] = ACTIONS(5418), + [anon_sym_u32] = ACTIONS(5418), + [anon_sym_u64] = ACTIONS(5418), + [anon_sym_isize] = ACTIONS(5418), + [anon_sym_usize] = ACTIONS(5418), + [anon_sym_f32] = ACTIONS(5418), + [anon_sym_f64] = ACTIONS(5418), + [anon_sym_c_char] = ACTIONS(5418), + [anon_sym_c_schar] = ACTIONS(5418), + [anon_sym_c_uchar] = ACTIONS(5418), + [anon_sym_c_short] = ACTIONS(5418), + [anon_sym_c_ushort] = ACTIONS(5418), + [anon_sym_c_int] = ACTIONS(5418), + [anon_sym_c_uint] = ACTIONS(5418), + [anon_sym_c_long] = ACTIONS(5418), + [anon_sym_c_ulong] = ACTIONS(5418), + [anon_sym_c_longlong] = ACTIONS(5418), + [anon_sym_c_ulonglong] = ACTIONS(5418), + [anon_sym_c_float] = ACTIONS(5418), + [anon_sym_c_double] = ACTIONS(5418), + [anon_sym_c_longdouble] = ACTIONS(5418), + [anon_sym_PLUS_EQ] = ACTIONS(5416), + [anon_sym_DASH_EQ] = ACTIONS(5416), + [anon_sym_STAR_EQ] = ACTIONS(5416), + [anon_sym_SLASH_EQ] = ACTIONS(5416), + [anon_sym_AMP_EQ] = ACTIONS(5416), + [anon_sym_PIPE_EQ] = ACTIONS(5416), + [anon_sym_xor_EQ] = ACTIONS(5416), + [anon_sym_LT_LT_EQ] = ACTIONS(5416), + [anon_sym_GT_GT_EQ] = ACTIONS(5416), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5416), + [anon_sym_return] = ACTIONS(5418), + [anon_sym_yield] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5416), + [anon_sym_break] = ACTIONS(5418), + [anon_sym_continue] = ACTIONS(5418), + [anon_sym_defer] = ACTIONS(5418), + [anon_sym_errdefer] = ACTIONS(5418), + [anon_sym_if] = ACTIONS(5418), + [anon_sym_else] = ACTIONS(5418), + [anon_sym_while] = ACTIONS(5418), + [anon_sym_expand] = ACTIONS(5418), + [anon_sym_for] = ACTIONS(5418), + [anon_sym_match] = ACTIONS(5418), + [anon_sym_DOT_DOT] = ACTIONS(5418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5416), + [anon_sym_orelse] = ACTIONS(5418), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5416), + [anon_sym_BANG_EQ] = ACTIONS(5416), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_EQ] = ACTIONS(5416), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5418), + [anon_sym_GT_GT] = ACTIONS(5418), + [anon_sym_LT_LT_PIPE] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_catch] = ACTIONS(5418), + [anon_sym_TILDE] = ACTIONS(5416), + [anon_sym_try] = ACTIONS(5418), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5416), + [anon_sym_true] = ACTIONS(5418), + [anon_sym_false] = ACTIONS(5418), + [anon_sym_null] = ACTIONS(5418), + [anon_sym_unreachable] = ACTIONS(5418), + [anon_sym_undefined] = ACTIONS(5418), + [sym_sink] = ACTIONS(5418), + [sym_integer] = ACTIONS(5418), + [sym_float] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5416), + [sym_multiline_string] = ACTIONS(5416), + [sym_character] = ACTIONS(5416), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5416), + }, + [STATE(2430)] = { + [ts_builtin_sym_end] = ACTIONS(5420), + [sym_identifier] = ACTIONS(5422), + [anon_sym_import] = ACTIONS(5422), + [anon_sym_test] = ACTIONS(5422), + [anon_sym_hide] = ACTIONS(5422), + [anon_sym_func] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5422), + [anon_sym_EQ] = ACTIONS(5422), + [anon_sym_struct] = ACTIONS(5422), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5422), + [anon_sym_DOLLAR] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5422), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_STAR] = ACTIONS(5422), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_void] = ACTIONS(5422), + [anon_sym_noreturn] = ACTIONS(5422), + [anon_sym_type] = ACTIONS(5422), + [anon_sym_anyopaque] = ACTIONS(5422), + [anon_sym_bool] = ACTIONS(5422), + [anon_sym_int] = ACTIONS(5422), + [anon_sym_uint] = ACTIONS(5422), + [anon_sym_float] = ACTIONS(5422), + [anon_sym_range] = ACTIONS(5422), + [anon_sym_i8] = ACTIONS(5422), + [anon_sym_i16] = ACTIONS(5422), + [anon_sym_i32] = ACTIONS(5422), + [anon_sym_i64] = ACTIONS(5422), + [anon_sym_u8] = ACTIONS(5422), + [anon_sym_u16] = ACTIONS(5422), + [anon_sym_u32] = ACTIONS(5422), + [anon_sym_u64] = ACTIONS(5422), + [anon_sym_isize] = ACTIONS(5422), + [anon_sym_usize] = ACTIONS(5422), + [anon_sym_f32] = ACTIONS(5422), + [anon_sym_f64] = ACTIONS(5422), + [anon_sym_c_char] = ACTIONS(5422), + [anon_sym_c_schar] = ACTIONS(5422), + [anon_sym_c_uchar] = ACTIONS(5422), + [anon_sym_c_short] = ACTIONS(5422), + [anon_sym_c_ushort] = ACTIONS(5422), + [anon_sym_c_int] = ACTIONS(5422), + [anon_sym_c_uint] = ACTIONS(5422), + [anon_sym_c_long] = ACTIONS(5422), + [anon_sym_c_ulong] = ACTIONS(5422), + [anon_sym_c_longlong] = ACTIONS(5422), + [anon_sym_c_ulonglong] = ACTIONS(5422), + [anon_sym_c_float] = ACTIONS(5422), + [anon_sym_c_double] = ACTIONS(5422), + [anon_sym_c_longdouble] = ACTIONS(5422), + [anon_sym_PLUS_EQ] = ACTIONS(5420), + [anon_sym_DASH_EQ] = ACTIONS(5420), + [anon_sym_STAR_EQ] = ACTIONS(5420), + [anon_sym_SLASH_EQ] = ACTIONS(5420), + [anon_sym_AMP_EQ] = ACTIONS(5420), + [anon_sym_PIPE_EQ] = ACTIONS(5420), + [anon_sym_xor_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_EQ] = ACTIONS(5420), + [anon_sym_GT_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5420), + [anon_sym_return] = ACTIONS(5422), + [anon_sym_yield] = ACTIONS(5422), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_break] = ACTIONS(5422), + [anon_sym_continue] = ACTIONS(5422), + [anon_sym_defer] = ACTIONS(5422), + [anon_sym_errdefer] = ACTIONS(5422), + [anon_sym_if] = ACTIONS(5422), + [anon_sym_else] = ACTIONS(5422), + [anon_sym_while] = ACTIONS(5422), + [anon_sym_expand] = ACTIONS(5422), + [anon_sym_for] = ACTIONS(5422), + [anon_sym_match] = ACTIONS(5422), + [anon_sym_DOT_DOT] = ACTIONS(5422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5420), + [anon_sym_orelse] = ACTIONS(5422), + [anon_sym_or] = ACTIONS(5422), + [anon_sym_and] = ACTIONS(5422), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_LT] = ACTIONS(5422), + [anon_sym_LT_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5422), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_xor] = ACTIONS(5422), + [anon_sym_LT_LT] = ACTIONS(5422), + [anon_sym_GT_GT] = ACTIONS(5422), + [anon_sym_LT_LT_PIPE] = ACTIONS(5422), + [anon_sym_PLUS] = ACTIONS(5422), + [anon_sym_SLASH] = ACTIONS(5422), + [anon_sym_catch] = ACTIONS(5422), + [anon_sym_TILDE] = ACTIONS(5420), + [anon_sym_try] = ACTIONS(5422), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_true] = ACTIONS(5422), + [anon_sym_false] = ACTIONS(5422), + [anon_sym_null] = ACTIONS(5422), + [anon_sym_unreachable] = ACTIONS(5422), + [anon_sym_undefined] = ACTIONS(5422), + [sym_sink] = ACTIONS(5422), + [sym_integer] = ACTIONS(5422), + [sym_float] = ACTIONS(5420), + [anon_sym_DQUOTE] = ACTIONS(5420), + [sym_multiline_string] = ACTIONS(5420), + [sym_character] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5420), + }, + [STATE(2431)] = { + [ts_builtin_sym_end] = ACTIONS(5424), + [sym_identifier] = ACTIONS(5426), + [anon_sym_import] = ACTIONS(5426), + [anon_sym_test] = ACTIONS(5426), + [anon_sym_hide] = ACTIONS(5426), + [anon_sym_func] = ACTIONS(5426), + [anon_sym_BANG] = ACTIONS(5426), + [anon_sym_EQ] = ACTIONS(5426), + [anon_sym_struct] = ACTIONS(5426), + [anon_sym_LPAREN] = ACTIONS(5424), + [anon_sym_RPAREN] = ACTIONS(5424), + [anon_sym_LBRACE] = ACTIONS(5424), + [anon_sym_COMMA] = ACTIONS(5424), + [anon_sym_RBRACE] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5426), + [anon_sym_DOLLAR] = ACTIONS(5424), + [anon_sym_PIPE] = ACTIONS(5426), + [anon_sym_QMARK] = ACTIONS(5424), + [anon_sym_STAR] = ACTIONS(5426), + [anon_sym_LBRACK] = ACTIONS(5424), + [anon_sym_SEMI] = ACTIONS(5424), + [anon_sym_RBRACK] = ACTIONS(5424), + [anon_sym_void] = ACTIONS(5426), + [anon_sym_noreturn] = ACTIONS(5426), + [anon_sym_type] = ACTIONS(5426), + [anon_sym_anyopaque] = ACTIONS(5426), + [anon_sym_bool] = ACTIONS(5426), + [anon_sym_int] = ACTIONS(5426), + [anon_sym_uint] = ACTIONS(5426), + [anon_sym_float] = ACTIONS(5426), + [anon_sym_range] = ACTIONS(5426), + [anon_sym_i8] = ACTIONS(5426), + [anon_sym_i16] = ACTIONS(5426), + [anon_sym_i32] = ACTIONS(5426), + [anon_sym_i64] = ACTIONS(5426), + [anon_sym_u8] = ACTIONS(5426), + [anon_sym_u16] = ACTIONS(5426), + [anon_sym_u32] = ACTIONS(5426), + [anon_sym_u64] = ACTIONS(5426), + [anon_sym_isize] = ACTIONS(5426), + [anon_sym_usize] = ACTIONS(5426), + [anon_sym_f32] = ACTIONS(5426), + [anon_sym_f64] = ACTIONS(5426), + [anon_sym_c_char] = ACTIONS(5426), + [anon_sym_c_schar] = ACTIONS(5426), + [anon_sym_c_uchar] = ACTIONS(5426), + [anon_sym_c_short] = ACTIONS(5426), + [anon_sym_c_ushort] = ACTIONS(5426), + [anon_sym_c_int] = ACTIONS(5426), + [anon_sym_c_uint] = ACTIONS(5426), + [anon_sym_c_long] = ACTIONS(5426), + [anon_sym_c_ulong] = ACTIONS(5426), + [anon_sym_c_longlong] = ACTIONS(5426), + [anon_sym_c_ulonglong] = ACTIONS(5426), + [anon_sym_c_float] = ACTIONS(5426), + [anon_sym_c_double] = ACTIONS(5426), + [anon_sym_c_longdouble] = ACTIONS(5426), + [anon_sym_PLUS_EQ] = ACTIONS(5424), + [anon_sym_DASH_EQ] = ACTIONS(5424), + [anon_sym_STAR_EQ] = ACTIONS(5424), + [anon_sym_SLASH_EQ] = ACTIONS(5424), + [anon_sym_AMP_EQ] = ACTIONS(5424), + [anon_sym_PIPE_EQ] = ACTIONS(5424), + [anon_sym_xor_EQ] = ACTIONS(5424), + [anon_sym_LT_LT_EQ] = ACTIONS(5424), + [anon_sym_GT_GT_EQ] = ACTIONS(5424), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5424), + [anon_sym_return] = ACTIONS(5426), + [anon_sym_yield] = ACTIONS(5426), + [anon_sym_COLON] = ACTIONS(5424), + [anon_sym_break] = ACTIONS(5426), + [anon_sym_continue] = ACTIONS(5426), + [anon_sym_defer] = ACTIONS(5426), + [anon_sym_errdefer] = ACTIONS(5426), + [anon_sym_if] = ACTIONS(5426), + [anon_sym_else] = ACTIONS(5426), + [anon_sym_while] = ACTIONS(5426), + [anon_sym_expand] = ACTIONS(5426), + [anon_sym_for] = ACTIONS(5426), + [anon_sym_match] = ACTIONS(5426), + [anon_sym_DOT_DOT] = ACTIONS(5426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5424), + [anon_sym_orelse] = ACTIONS(5426), + [anon_sym_or] = ACTIONS(5426), + [anon_sym_and] = ACTIONS(5426), + [anon_sym_EQ_EQ] = ACTIONS(5424), + [anon_sym_BANG_EQ] = ACTIONS(5424), + [anon_sym_LT] = ACTIONS(5426), + [anon_sym_LT_EQ] = ACTIONS(5424), + [anon_sym_GT] = ACTIONS(5426), + [anon_sym_GT_EQ] = ACTIONS(5424), + [anon_sym_AMP] = ACTIONS(5426), + [anon_sym_xor] = ACTIONS(5426), + [anon_sym_LT_LT] = ACTIONS(5426), + [anon_sym_GT_GT] = ACTIONS(5426), + [anon_sym_LT_LT_PIPE] = ACTIONS(5426), + [anon_sym_PLUS] = ACTIONS(5426), + [anon_sym_SLASH] = ACTIONS(5426), + [anon_sym_catch] = ACTIONS(5426), + [anon_sym_TILDE] = ACTIONS(5424), + [anon_sym_try] = ACTIONS(5426), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_CARET] = ACTIONS(5424), + [anon_sym_true] = ACTIONS(5426), + [anon_sym_false] = ACTIONS(5426), + [anon_sym_null] = ACTIONS(5426), + [anon_sym_unreachable] = ACTIONS(5426), + [anon_sym_undefined] = ACTIONS(5426), + [sym_sink] = ACTIONS(5426), + [sym_integer] = ACTIONS(5426), + [sym_float] = ACTIONS(5424), + [anon_sym_DQUOTE] = ACTIONS(5424), + [sym_multiline_string] = ACTIONS(5424), + [sym_character] = ACTIONS(5424), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5424), + }, + [STATE(2432)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3536), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(2433), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5428), + }, + [STATE(2433)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3547), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2434)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3548), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(2437), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5430), + }, + [STATE(2435)] = { + [ts_builtin_sym_end] = ACTIONS(5432), + [sym_identifier] = ACTIONS(5434), + [anon_sym_import] = ACTIONS(5434), + [anon_sym_test] = ACTIONS(5434), + [anon_sym_hide] = ACTIONS(5434), + [anon_sym_func] = ACTIONS(5434), + [anon_sym_BANG] = ACTIONS(5434), + [anon_sym_EQ] = ACTIONS(5434), + [anon_sym_struct] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5432), + [anon_sym_RPAREN] = ACTIONS(5432), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_COMMA] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5434), + [anon_sym_DOLLAR] = ACTIONS(5432), + [anon_sym_PIPE] = ACTIONS(5434), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_STAR] = ACTIONS(5434), + [anon_sym_LBRACK] = ACTIONS(5432), + [anon_sym_SEMI] = ACTIONS(5432), + [anon_sym_RBRACK] = ACTIONS(5432), + [anon_sym_void] = ACTIONS(5434), + [anon_sym_noreturn] = ACTIONS(5434), + [anon_sym_type] = ACTIONS(5434), + [anon_sym_anyopaque] = ACTIONS(5434), + [anon_sym_bool] = ACTIONS(5434), + [anon_sym_int] = ACTIONS(5434), + [anon_sym_uint] = ACTIONS(5434), + [anon_sym_float] = ACTIONS(5434), + [anon_sym_range] = ACTIONS(5434), + [anon_sym_i8] = ACTIONS(5434), + [anon_sym_i16] = ACTIONS(5434), + [anon_sym_i32] = ACTIONS(5434), + [anon_sym_i64] = ACTIONS(5434), + [anon_sym_u8] = ACTIONS(5434), + [anon_sym_u16] = ACTIONS(5434), + [anon_sym_u32] = ACTIONS(5434), + [anon_sym_u64] = ACTIONS(5434), + [anon_sym_isize] = ACTIONS(5434), + [anon_sym_usize] = ACTIONS(5434), + [anon_sym_f32] = ACTIONS(5434), + [anon_sym_f64] = ACTIONS(5434), + [anon_sym_c_char] = ACTIONS(5434), + [anon_sym_c_schar] = ACTIONS(5434), + [anon_sym_c_uchar] = ACTIONS(5434), + [anon_sym_c_short] = ACTIONS(5434), + [anon_sym_c_ushort] = ACTIONS(5434), + [anon_sym_c_int] = ACTIONS(5434), + [anon_sym_c_uint] = ACTIONS(5434), + [anon_sym_c_long] = ACTIONS(5434), + [anon_sym_c_ulong] = ACTIONS(5434), + [anon_sym_c_longlong] = ACTIONS(5434), + [anon_sym_c_ulonglong] = ACTIONS(5434), + [anon_sym_c_float] = ACTIONS(5434), + [anon_sym_c_double] = ACTIONS(5434), + [anon_sym_c_longdouble] = ACTIONS(5434), + [anon_sym_PLUS_EQ] = ACTIONS(5432), + [anon_sym_DASH_EQ] = ACTIONS(5432), + [anon_sym_STAR_EQ] = ACTIONS(5432), + [anon_sym_SLASH_EQ] = ACTIONS(5432), + [anon_sym_AMP_EQ] = ACTIONS(5432), + [anon_sym_PIPE_EQ] = ACTIONS(5432), + [anon_sym_xor_EQ] = ACTIONS(5432), + [anon_sym_LT_LT_EQ] = ACTIONS(5432), + [anon_sym_GT_GT_EQ] = ACTIONS(5432), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5432), + [anon_sym_return] = ACTIONS(5434), + [anon_sym_yield] = ACTIONS(5434), + [anon_sym_COLON] = ACTIONS(5432), + [anon_sym_break] = ACTIONS(5434), + [anon_sym_continue] = ACTIONS(5434), + [anon_sym_defer] = ACTIONS(5434), + [anon_sym_errdefer] = ACTIONS(5434), + [anon_sym_if] = ACTIONS(5434), + [anon_sym_else] = ACTIONS(5434), + [anon_sym_while] = ACTIONS(5434), + [anon_sym_expand] = ACTIONS(5434), + [anon_sym_for] = ACTIONS(5434), + [anon_sym_match] = ACTIONS(5434), + [anon_sym_DOT_DOT] = ACTIONS(5434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5432), + [anon_sym_orelse] = ACTIONS(5434), + [anon_sym_or] = ACTIONS(5434), + [anon_sym_and] = ACTIONS(5434), + [anon_sym_EQ_EQ] = ACTIONS(5432), + [anon_sym_BANG_EQ] = ACTIONS(5432), + [anon_sym_LT] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5432), + [anon_sym_GT] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(5434), + [anon_sym_xor] = ACTIONS(5434), + [anon_sym_LT_LT] = ACTIONS(5434), + [anon_sym_GT_GT] = ACTIONS(5434), + [anon_sym_LT_LT_PIPE] = ACTIONS(5434), + [anon_sym_PLUS] = ACTIONS(5434), + [anon_sym_SLASH] = ACTIONS(5434), + [anon_sym_catch] = ACTIONS(5434), + [anon_sym_TILDE] = ACTIONS(5432), + [anon_sym_try] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5434), + [anon_sym_CARET] = ACTIONS(5432), + [anon_sym_true] = ACTIONS(5434), + [anon_sym_false] = ACTIONS(5434), + [anon_sym_null] = ACTIONS(5434), + [anon_sym_unreachable] = ACTIONS(5434), + [anon_sym_undefined] = ACTIONS(5434), + [sym_sink] = ACTIONS(5434), + [sym_integer] = ACTIONS(5434), + [sym_float] = ACTIONS(5432), + [anon_sym_DQUOTE] = ACTIONS(5432), + [sym_multiline_string] = ACTIONS(5432), + [sym_character] = ACTIONS(5432), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5432), + }, + [STATE(2436)] = { + [ts_builtin_sym_end] = ACTIONS(5436), + [sym_identifier] = ACTIONS(5438), + [anon_sym_import] = ACTIONS(5438), + [anon_sym_test] = ACTIONS(5438), + [anon_sym_hide] = ACTIONS(5438), + [anon_sym_func] = ACTIONS(5438), + [anon_sym_BANG] = ACTIONS(5438), + [anon_sym_EQ] = ACTIONS(5438), + [anon_sym_struct] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5436), + [anon_sym_RPAREN] = ACTIONS(5436), + [anon_sym_LBRACE] = ACTIONS(5436), + [anon_sym_COMMA] = ACTIONS(5436), + [anon_sym_RBRACE] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5438), + [anon_sym_DOLLAR] = ACTIONS(5436), + [anon_sym_PIPE] = ACTIONS(5438), + [anon_sym_QMARK] = ACTIONS(5436), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5436), + [anon_sym_SEMI] = ACTIONS(5436), + [anon_sym_RBRACK] = ACTIONS(5436), + [anon_sym_void] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_type] = ACTIONS(5438), + [anon_sym_anyopaque] = ACTIONS(5438), + [anon_sym_bool] = ACTIONS(5438), + [anon_sym_int] = ACTIONS(5438), + [anon_sym_uint] = ACTIONS(5438), + [anon_sym_float] = ACTIONS(5438), + [anon_sym_range] = ACTIONS(5438), + [anon_sym_i8] = ACTIONS(5438), + [anon_sym_i16] = ACTIONS(5438), + [anon_sym_i32] = ACTIONS(5438), + [anon_sym_i64] = ACTIONS(5438), + [anon_sym_u8] = ACTIONS(5438), + [anon_sym_u16] = ACTIONS(5438), + [anon_sym_u32] = ACTIONS(5438), + [anon_sym_u64] = ACTIONS(5438), + [anon_sym_isize] = ACTIONS(5438), + [anon_sym_usize] = ACTIONS(5438), + [anon_sym_f32] = ACTIONS(5438), + [anon_sym_f64] = ACTIONS(5438), + [anon_sym_c_char] = ACTIONS(5438), + [anon_sym_c_schar] = ACTIONS(5438), + [anon_sym_c_uchar] = ACTIONS(5438), + [anon_sym_c_short] = ACTIONS(5438), + [anon_sym_c_ushort] = ACTIONS(5438), + [anon_sym_c_int] = ACTIONS(5438), + [anon_sym_c_uint] = ACTIONS(5438), + [anon_sym_c_long] = ACTIONS(5438), + [anon_sym_c_ulong] = ACTIONS(5438), + [anon_sym_c_longlong] = ACTIONS(5438), + [anon_sym_c_ulonglong] = ACTIONS(5438), + [anon_sym_c_float] = ACTIONS(5438), + [anon_sym_c_double] = ACTIONS(5438), + [anon_sym_c_longdouble] = ACTIONS(5438), + [anon_sym_PLUS_EQ] = ACTIONS(5436), + [anon_sym_DASH_EQ] = ACTIONS(5436), + [anon_sym_STAR_EQ] = ACTIONS(5436), + [anon_sym_SLASH_EQ] = ACTIONS(5436), + [anon_sym_AMP_EQ] = ACTIONS(5436), + [anon_sym_PIPE_EQ] = ACTIONS(5436), + [anon_sym_xor_EQ] = ACTIONS(5436), + [anon_sym_LT_LT_EQ] = ACTIONS(5436), + [anon_sym_GT_GT_EQ] = ACTIONS(5436), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5436), + [anon_sym_return] = ACTIONS(5438), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_COLON] = ACTIONS(5436), + [anon_sym_break] = ACTIONS(5438), + [anon_sym_continue] = ACTIONS(5438), + [anon_sym_defer] = ACTIONS(5438), + [anon_sym_errdefer] = ACTIONS(5438), + [anon_sym_if] = ACTIONS(5438), + [anon_sym_else] = ACTIONS(5438), + [anon_sym_while] = ACTIONS(5438), + [anon_sym_expand] = ACTIONS(5438), + [anon_sym_for] = ACTIONS(5438), + [anon_sym_match] = ACTIONS(5438), + [anon_sym_DOT_DOT] = ACTIONS(5438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5436), + [anon_sym_orelse] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_EQ_EQ] = ACTIONS(5436), + [anon_sym_BANG_EQ] = ACTIONS(5436), + [anon_sym_LT] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5436), + [anon_sym_GT] = ACTIONS(5438), + [anon_sym_GT_EQ] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5438), + [anon_sym_xor] = ACTIONS(5438), + [anon_sym_LT_LT] = ACTIONS(5438), + [anon_sym_GT_GT] = ACTIONS(5438), + [anon_sym_LT_LT_PIPE] = ACTIONS(5438), + [anon_sym_PLUS] = ACTIONS(5438), + [anon_sym_SLASH] = ACTIONS(5438), + [anon_sym_catch] = ACTIONS(5438), + [anon_sym_TILDE] = ACTIONS(5436), + [anon_sym_try] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5438), + [anon_sym_CARET] = ACTIONS(5436), + [anon_sym_true] = ACTIONS(5438), + [anon_sym_false] = ACTIONS(5438), + [anon_sym_null] = ACTIONS(5438), + [anon_sym_unreachable] = ACTIONS(5438), + [anon_sym_undefined] = ACTIONS(5438), + [sym_sink] = ACTIONS(5438), + [sym_integer] = ACTIONS(5438), + [sym_float] = ACTIONS(5436), + [anon_sym_DQUOTE] = ACTIONS(5436), + [sym_multiline_string] = ACTIONS(5436), + [sym_character] = ACTIONS(5436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5436), + }, + [STATE(2437)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3561), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2438)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3562), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(2443), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5440), + }, + [STATE(2439)] = { + [ts_builtin_sym_end] = ACTIONS(5442), + [sym_identifier] = ACTIONS(5444), + [anon_sym_import] = ACTIONS(5444), + [anon_sym_test] = ACTIONS(5444), + [anon_sym_hide] = ACTIONS(5444), + [anon_sym_func] = ACTIONS(5444), + [anon_sym_BANG] = ACTIONS(5444), + [anon_sym_EQ] = ACTIONS(5444), + [anon_sym_struct] = ACTIONS(5444), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_RPAREN] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5442), + [anon_sym_COMMA] = ACTIONS(5442), + [anon_sym_RBRACE] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5444), + [anon_sym_DOLLAR] = ACTIONS(5442), + [anon_sym_PIPE] = ACTIONS(5444), + [anon_sym_QMARK] = ACTIONS(5442), + [anon_sym_STAR] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_SEMI] = ACTIONS(5442), + [anon_sym_RBRACK] = ACTIONS(5442), + [anon_sym_void] = ACTIONS(5444), + [anon_sym_noreturn] = ACTIONS(5444), + [anon_sym_type] = ACTIONS(5444), + [anon_sym_anyopaque] = ACTIONS(5444), + [anon_sym_bool] = ACTIONS(5444), + [anon_sym_int] = ACTIONS(5444), + [anon_sym_uint] = ACTIONS(5444), + [anon_sym_float] = ACTIONS(5444), + [anon_sym_range] = ACTIONS(5444), + [anon_sym_i8] = ACTIONS(5444), + [anon_sym_i16] = ACTIONS(5444), + [anon_sym_i32] = ACTIONS(5444), + [anon_sym_i64] = ACTIONS(5444), + [anon_sym_u8] = ACTIONS(5444), + [anon_sym_u16] = ACTIONS(5444), + [anon_sym_u32] = ACTIONS(5444), + [anon_sym_u64] = ACTIONS(5444), + [anon_sym_isize] = ACTIONS(5444), + [anon_sym_usize] = ACTIONS(5444), + [anon_sym_f32] = ACTIONS(5444), + [anon_sym_f64] = ACTIONS(5444), + [anon_sym_c_char] = ACTIONS(5444), + [anon_sym_c_schar] = ACTIONS(5444), + [anon_sym_c_uchar] = ACTIONS(5444), + [anon_sym_c_short] = ACTIONS(5444), + [anon_sym_c_ushort] = ACTIONS(5444), + [anon_sym_c_int] = ACTIONS(5444), + [anon_sym_c_uint] = ACTIONS(5444), + [anon_sym_c_long] = ACTIONS(5444), + [anon_sym_c_ulong] = ACTIONS(5444), + [anon_sym_c_longlong] = ACTIONS(5444), + [anon_sym_c_ulonglong] = ACTIONS(5444), + [anon_sym_c_float] = ACTIONS(5444), + [anon_sym_c_double] = ACTIONS(5444), + [anon_sym_c_longdouble] = ACTIONS(5444), + [anon_sym_PLUS_EQ] = ACTIONS(5442), + [anon_sym_DASH_EQ] = ACTIONS(5442), + [anon_sym_STAR_EQ] = ACTIONS(5442), + [anon_sym_SLASH_EQ] = ACTIONS(5442), + [anon_sym_AMP_EQ] = ACTIONS(5442), + [anon_sym_PIPE_EQ] = ACTIONS(5442), + [anon_sym_xor_EQ] = ACTIONS(5442), + [anon_sym_LT_LT_EQ] = ACTIONS(5442), + [anon_sym_GT_GT_EQ] = ACTIONS(5442), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5442), + [anon_sym_return] = ACTIONS(5444), + [anon_sym_yield] = ACTIONS(5444), + [anon_sym_COLON] = ACTIONS(5442), + [anon_sym_break] = ACTIONS(5444), + [anon_sym_continue] = ACTIONS(5444), + [anon_sym_defer] = ACTIONS(5444), + [anon_sym_errdefer] = ACTIONS(5444), + [anon_sym_if] = ACTIONS(5444), + [anon_sym_else] = ACTIONS(5444), + [anon_sym_while] = ACTIONS(5444), + [anon_sym_expand] = ACTIONS(5444), + [anon_sym_for] = ACTIONS(5444), + [anon_sym_match] = ACTIONS(5444), + [anon_sym_DOT_DOT] = ACTIONS(5444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5442), + [anon_sym_orelse] = ACTIONS(5444), + [anon_sym_or] = ACTIONS(5444), + [anon_sym_and] = ACTIONS(5444), + [anon_sym_EQ_EQ] = ACTIONS(5442), + [anon_sym_BANG_EQ] = ACTIONS(5442), + [anon_sym_LT] = ACTIONS(5444), + [anon_sym_LT_EQ] = ACTIONS(5442), + [anon_sym_GT] = ACTIONS(5444), + [anon_sym_GT_EQ] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5444), + [anon_sym_xor] = ACTIONS(5444), + [anon_sym_LT_LT] = ACTIONS(5444), + [anon_sym_GT_GT] = ACTIONS(5444), + [anon_sym_LT_LT_PIPE] = ACTIONS(5444), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_SLASH] = ACTIONS(5444), + [anon_sym_catch] = ACTIONS(5444), + [anon_sym_TILDE] = ACTIONS(5442), + [anon_sym_try] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5444), + [anon_sym_CARET] = ACTIONS(5442), + [anon_sym_true] = ACTIONS(5444), + [anon_sym_false] = ACTIONS(5444), + [anon_sym_null] = ACTIONS(5444), + [anon_sym_unreachable] = ACTIONS(5444), + [anon_sym_undefined] = ACTIONS(5444), + [sym_sink] = ACTIONS(5444), + [sym_integer] = ACTIONS(5444), + [sym_float] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [sym_multiline_string] = ACTIONS(5442), + [sym_character] = ACTIONS(5442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5442), + }, + [STATE(2440)] = { + [ts_builtin_sym_end] = ACTIONS(5446), + [sym_identifier] = ACTIONS(5448), + [anon_sym_import] = ACTIONS(5448), + [anon_sym_test] = ACTIONS(5448), + [anon_sym_hide] = ACTIONS(5448), + [anon_sym_func] = ACTIONS(5448), + [anon_sym_BANG] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(5448), + [anon_sym_struct] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(5446), + [anon_sym_LBRACE] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(5446), + [anon_sym_RBRACE] = ACTIONS(5446), + [anon_sym_DASH] = ACTIONS(5448), + [anon_sym_DOLLAR] = ACTIONS(5446), + [anon_sym_PIPE] = ACTIONS(5448), + [anon_sym_QMARK] = ACTIONS(5446), + [anon_sym_STAR] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_SEMI] = ACTIONS(5446), + [anon_sym_RBRACK] = ACTIONS(5446), + [anon_sym_void] = ACTIONS(5448), + [anon_sym_noreturn] = ACTIONS(5448), + [anon_sym_type] = ACTIONS(5448), + [anon_sym_anyopaque] = ACTIONS(5448), + [anon_sym_bool] = ACTIONS(5448), + [anon_sym_int] = ACTIONS(5448), + [anon_sym_uint] = ACTIONS(5448), + [anon_sym_float] = ACTIONS(5448), + [anon_sym_range] = ACTIONS(5448), + [anon_sym_i8] = ACTIONS(5448), + [anon_sym_i16] = ACTIONS(5448), + [anon_sym_i32] = ACTIONS(5448), + [anon_sym_i64] = ACTIONS(5448), + [anon_sym_u8] = ACTIONS(5448), + [anon_sym_u16] = ACTIONS(5448), + [anon_sym_u32] = ACTIONS(5448), + [anon_sym_u64] = ACTIONS(5448), + [anon_sym_isize] = ACTIONS(5448), + [anon_sym_usize] = ACTIONS(5448), + [anon_sym_f32] = ACTIONS(5448), + [anon_sym_f64] = ACTIONS(5448), + [anon_sym_c_char] = ACTIONS(5448), + [anon_sym_c_schar] = ACTIONS(5448), + [anon_sym_c_uchar] = ACTIONS(5448), + [anon_sym_c_short] = ACTIONS(5448), + [anon_sym_c_ushort] = ACTIONS(5448), + [anon_sym_c_int] = ACTIONS(5448), + [anon_sym_c_uint] = ACTIONS(5448), + [anon_sym_c_long] = ACTIONS(5448), + [anon_sym_c_ulong] = ACTIONS(5448), + [anon_sym_c_longlong] = ACTIONS(5448), + [anon_sym_c_ulonglong] = ACTIONS(5448), + [anon_sym_c_float] = ACTIONS(5448), + [anon_sym_c_double] = ACTIONS(5448), + [anon_sym_c_longdouble] = ACTIONS(5448), + [anon_sym_PLUS_EQ] = ACTIONS(5446), + [anon_sym_DASH_EQ] = ACTIONS(5446), + [anon_sym_STAR_EQ] = ACTIONS(5446), + [anon_sym_SLASH_EQ] = ACTIONS(5446), + [anon_sym_AMP_EQ] = ACTIONS(5446), + [anon_sym_PIPE_EQ] = ACTIONS(5446), + [anon_sym_xor_EQ] = ACTIONS(5446), + [anon_sym_LT_LT_EQ] = ACTIONS(5446), + [anon_sym_GT_GT_EQ] = ACTIONS(5446), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5446), + [anon_sym_return] = ACTIONS(5448), + [anon_sym_yield] = ACTIONS(5448), + [anon_sym_COLON] = ACTIONS(5446), + [anon_sym_break] = ACTIONS(5448), + [anon_sym_continue] = ACTIONS(5448), + [anon_sym_defer] = ACTIONS(5448), + [anon_sym_errdefer] = ACTIONS(5448), + [anon_sym_if] = ACTIONS(5448), + [anon_sym_else] = ACTIONS(5448), + [anon_sym_while] = ACTIONS(5448), + [anon_sym_expand] = ACTIONS(5448), + [anon_sym_for] = ACTIONS(5448), + [anon_sym_match] = ACTIONS(5448), + [anon_sym_DOT_DOT] = ACTIONS(5448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5446), + [anon_sym_orelse] = ACTIONS(5448), + [anon_sym_or] = ACTIONS(5448), + [anon_sym_and] = ACTIONS(5448), + [anon_sym_EQ_EQ] = ACTIONS(5446), + [anon_sym_BANG_EQ] = ACTIONS(5446), + [anon_sym_LT] = ACTIONS(5448), + [anon_sym_LT_EQ] = ACTIONS(5446), + [anon_sym_GT] = ACTIONS(5448), + [anon_sym_GT_EQ] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(5448), + [anon_sym_xor] = ACTIONS(5448), + [anon_sym_LT_LT] = ACTIONS(5448), + [anon_sym_GT_GT] = ACTIONS(5448), + [anon_sym_LT_LT_PIPE] = ACTIONS(5448), + [anon_sym_PLUS] = ACTIONS(5448), + [anon_sym_SLASH] = ACTIONS(5448), + [anon_sym_catch] = ACTIONS(5448), + [anon_sym_TILDE] = ACTIONS(5446), + [anon_sym_try] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5448), + [anon_sym_CARET] = ACTIONS(5446), + [anon_sym_true] = ACTIONS(5448), + [anon_sym_false] = ACTIONS(5448), + [anon_sym_null] = ACTIONS(5448), + [anon_sym_unreachable] = ACTIONS(5448), + [anon_sym_undefined] = ACTIONS(5448), + [sym_sink] = ACTIONS(5448), + [sym_integer] = ACTIONS(5448), + [sym_float] = ACTIONS(5446), + [anon_sym_DQUOTE] = ACTIONS(5446), + [sym_multiline_string] = ACTIONS(5446), + [sym_character] = ACTIONS(5446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5446), + }, + [STATE(2441)] = { + [ts_builtin_sym_end] = ACTIONS(5450), + [sym_identifier] = ACTIONS(5452), + [anon_sym_import] = ACTIONS(5452), + [anon_sym_test] = ACTIONS(5452), + [anon_sym_hide] = ACTIONS(5452), + [anon_sym_func] = ACTIONS(5452), + [anon_sym_BANG] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(5452), + [anon_sym_struct] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(5450), + [anon_sym_RPAREN] = ACTIONS(5450), + [anon_sym_LBRACE] = ACTIONS(5450), + [anon_sym_COMMA] = ACTIONS(5450), + [anon_sym_RBRACE] = ACTIONS(5450), + [anon_sym_DASH] = ACTIONS(5452), + [anon_sym_DOLLAR] = ACTIONS(5450), + [anon_sym_PIPE] = ACTIONS(5452), + [anon_sym_QMARK] = ACTIONS(5450), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_SEMI] = ACTIONS(5450), + [anon_sym_RBRACK] = ACTIONS(5450), + [anon_sym_void] = ACTIONS(5452), + [anon_sym_noreturn] = ACTIONS(5452), + [anon_sym_type] = ACTIONS(5452), + [anon_sym_anyopaque] = ACTIONS(5452), + [anon_sym_bool] = ACTIONS(5452), + [anon_sym_int] = ACTIONS(5452), + [anon_sym_uint] = ACTIONS(5452), + [anon_sym_float] = ACTIONS(5452), + [anon_sym_range] = ACTIONS(5452), + [anon_sym_i8] = ACTIONS(5452), + [anon_sym_i16] = ACTIONS(5452), + [anon_sym_i32] = ACTIONS(5452), + [anon_sym_i64] = ACTIONS(5452), + [anon_sym_u8] = ACTIONS(5452), + [anon_sym_u16] = ACTIONS(5452), + [anon_sym_u32] = ACTIONS(5452), + [anon_sym_u64] = ACTIONS(5452), + [anon_sym_isize] = ACTIONS(5452), + [anon_sym_usize] = ACTIONS(5452), + [anon_sym_f32] = ACTIONS(5452), + [anon_sym_f64] = ACTIONS(5452), + [anon_sym_c_char] = ACTIONS(5452), + [anon_sym_c_schar] = ACTIONS(5452), + [anon_sym_c_uchar] = ACTIONS(5452), + [anon_sym_c_short] = ACTIONS(5452), + [anon_sym_c_ushort] = ACTIONS(5452), + [anon_sym_c_int] = ACTIONS(5452), + [anon_sym_c_uint] = ACTIONS(5452), + [anon_sym_c_long] = ACTIONS(5452), + [anon_sym_c_ulong] = ACTIONS(5452), + [anon_sym_c_longlong] = ACTIONS(5452), + [anon_sym_c_ulonglong] = ACTIONS(5452), + [anon_sym_c_float] = ACTIONS(5452), + [anon_sym_c_double] = ACTIONS(5452), + [anon_sym_c_longdouble] = ACTIONS(5452), + [anon_sym_PLUS_EQ] = ACTIONS(5450), + [anon_sym_DASH_EQ] = ACTIONS(5450), + [anon_sym_STAR_EQ] = ACTIONS(5450), + [anon_sym_SLASH_EQ] = ACTIONS(5450), + [anon_sym_AMP_EQ] = ACTIONS(5450), + [anon_sym_PIPE_EQ] = ACTIONS(5450), + [anon_sym_xor_EQ] = ACTIONS(5450), + [anon_sym_LT_LT_EQ] = ACTIONS(5450), + [anon_sym_GT_GT_EQ] = ACTIONS(5450), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5450), + [anon_sym_return] = ACTIONS(5452), + [anon_sym_yield] = ACTIONS(5452), + [anon_sym_COLON] = ACTIONS(5450), + [anon_sym_break] = ACTIONS(5452), + [anon_sym_continue] = ACTIONS(5452), + [anon_sym_defer] = ACTIONS(5452), + [anon_sym_errdefer] = ACTIONS(5452), + [anon_sym_if] = ACTIONS(5452), + [anon_sym_else] = ACTIONS(5452), + [anon_sym_while] = ACTIONS(5452), + [anon_sym_expand] = ACTIONS(5452), + [anon_sym_for] = ACTIONS(5452), + [anon_sym_match] = ACTIONS(5452), + [anon_sym_DOT_DOT] = ACTIONS(5452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5450), + [anon_sym_orelse] = ACTIONS(5452), + [anon_sym_or] = ACTIONS(5452), + [anon_sym_and] = ACTIONS(5452), + [anon_sym_EQ_EQ] = ACTIONS(5450), + [anon_sym_BANG_EQ] = ACTIONS(5450), + [anon_sym_LT] = ACTIONS(5452), + [anon_sym_LT_EQ] = ACTIONS(5450), + [anon_sym_GT] = ACTIONS(5452), + [anon_sym_GT_EQ] = ACTIONS(5450), + [anon_sym_AMP] = ACTIONS(5452), + [anon_sym_xor] = ACTIONS(5452), + [anon_sym_LT_LT] = ACTIONS(5452), + [anon_sym_GT_GT] = ACTIONS(5452), + [anon_sym_LT_LT_PIPE] = ACTIONS(5452), + [anon_sym_PLUS] = ACTIONS(5452), + [anon_sym_SLASH] = ACTIONS(5452), + [anon_sym_catch] = ACTIONS(5452), + [anon_sym_TILDE] = ACTIONS(5450), + [anon_sym_try] = ACTIONS(5452), + [anon_sym_DOT] = ACTIONS(5452), + [anon_sym_CARET] = ACTIONS(5450), + [anon_sym_true] = ACTIONS(5452), + [anon_sym_false] = ACTIONS(5452), + [anon_sym_null] = ACTIONS(5452), + [anon_sym_unreachable] = ACTIONS(5452), + [anon_sym_undefined] = ACTIONS(5452), + [sym_sink] = ACTIONS(5452), + [sym_integer] = ACTIONS(5452), + [sym_float] = ACTIONS(5450), + [anon_sym_DQUOTE] = ACTIONS(5450), + [sym_multiline_string] = ACTIONS(5450), + [sym_character] = ACTIONS(5450), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5450), + }, + [STATE(2442)] = { + [ts_builtin_sym_end] = ACTIONS(5454), + [sym_identifier] = ACTIONS(5456), + [anon_sym_import] = ACTIONS(5456), + [anon_sym_test] = ACTIONS(5456), + [anon_sym_hide] = ACTIONS(5456), + [anon_sym_func] = ACTIONS(5456), + [anon_sym_BANG] = ACTIONS(5456), + [anon_sym_EQ] = ACTIONS(5456), + [anon_sym_struct] = ACTIONS(5456), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_RPAREN] = ACTIONS(5454), + [anon_sym_LBRACE] = ACTIONS(5454), + [anon_sym_COMMA] = ACTIONS(5454), + [anon_sym_RBRACE] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5456), + [anon_sym_DOLLAR] = ACTIONS(5454), + [anon_sym_PIPE] = ACTIONS(5456), + [anon_sym_QMARK] = ACTIONS(5454), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(5454), + [anon_sym_RBRACK] = ACTIONS(5454), + [anon_sym_void] = ACTIONS(5456), + [anon_sym_noreturn] = ACTIONS(5456), + [anon_sym_type] = ACTIONS(5456), + [anon_sym_anyopaque] = ACTIONS(5456), + [anon_sym_bool] = ACTIONS(5456), + [anon_sym_int] = ACTIONS(5456), + [anon_sym_uint] = ACTIONS(5456), + [anon_sym_float] = ACTIONS(5456), + [anon_sym_range] = ACTIONS(5456), + [anon_sym_i8] = ACTIONS(5456), + [anon_sym_i16] = ACTIONS(5456), + [anon_sym_i32] = ACTIONS(5456), + [anon_sym_i64] = ACTIONS(5456), + [anon_sym_u8] = ACTIONS(5456), + [anon_sym_u16] = ACTIONS(5456), + [anon_sym_u32] = ACTIONS(5456), + [anon_sym_u64] = ACTIONS(5456), + [anon_sym_isize] = ACTIONS(5456), + [anon_sym_usize] = ACTIONS(5456), + [anon_sym_f32] = ACTIONS(5456), + [anon_sym_f64] = ACTIONS(5456), + [anon_sym_c_char] = ACTIONS(5456), + [anon_sym_c_schar] = ACTIONS(5456), + [anon_sym_c_uchar] = ACTIONS(5456), + [anon_sym_c_short] = ACTIONS(5456), + [anon_sym_c_ushort] = ACTIONS(5456), + [anon_sym_c_int] = ACTIONS(5456), + [anon_sym_c_uint] = ACTIONS(5456), + [anon_sym_c_long] = ACTIONS(5456), + [anon_sym_c_ulong] = ACTIONS(5456), + [anon_sym_c_longlong] = ACTIONS(5456), + [anon_sym_c_ulonglong] = ACTIONS(5456), + [anon_sym_c_float] = ACTIONS(5456), + [anon_sym_c_double] = ACTIONS(5456), + [anon_sym_c_longdouble] = ACTIONS(5456), + [anon_sym_PLUS_EQ] = ACTIONS(5454), + [anon_sym_DASH_EQ] = ACTIONS(5454), + [anon_sym_STAR_EQ] = ACTIONS(5454), + [anon_sym_SLASH_EQ] = ACTIONS(5454), + [anon_sym_AMP_EQ] = ACTIONS(5454), + [anon_sym_PIPE_EQ] = ACTIONS(5454), + [anon_sym_xor_EQ] = ACTIONS(5454), + [anon_sym_LT_LT_EQ] = ACTIONS(5454), + [anon_sym_GT_GT_EQ] = ACTIONS(5454), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5454), + [anon_sym_return] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(5456), + [anon_sym_COLON] = ACTIONS(5454), + [anon_sym_break] = ACTIONS(5456), + [anon_sym_continue] = ACTIONS(5456), + [anon_sym_defer] = ACTIONS(5456), + [anon_sym_errdefer] = ACTIONS(5456), + [anon_sym_if] = ACTIONS(5456), + [anon_sym_else] = ACTIONS(5456), + [anon_sym_while] = ACTIONS(5456), + [anon_sym_expand] = ACTIONS(5456), + [anon_sym_for] = ACTIONS(5456), + [anon_sym_match] = ACTIONS(5456), + [anon_sym_DOT_DOT] = ACTIONS(5456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5454), + [anon_sym_orelse] = ACTIONS(5456), + [anon_sym_or] = ACTIONS(5456), + [anon_sym_and] = ACTIONS(5456), + [anon_sym_EQ_EQ] = ACTIONS(5454), + [anon_sym_BANG_EQ] = ACTIONS(5454), + [anon_sym_LT] = ACTIONS(5456), + [anon_sym_LT_EQ] = ACTIONS(5454), + [anon_sym_GT] = ACTIONS(5456), + [anon_sym_GT_EQ] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(5456), + [anon_sym_xor] = ACTIONS(5456), + [anon_sym_LT_LT] = ACTIONS(5456), + [anon_sym_GT_GT] = ACTIONS(5456), + [anon_sym_LT_LT_PIPE] = ACTIONS(5456), + [anon_sym_PLUS] = ACTIONS(5456), + [anon_sym_SLASH] = ACTIONS(5456), + [anon_sym_catch] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5454), + [anon_sym_try] = ACTIONS(5456), + [anon_sym_DOT] = ACTIONS(5456), + [anon_sym_CARET] = ACTIONS(5454), + [anon_sym_true] = ACTIONS(5456), + [anon_sym_false] = ACTIONS(5456), + [anon_sym_null] = ACTIONS(5456), + [anon_sym_unreachable] = ACTIONS(5456), + [anon_sym_undefined] = ACTIONS(5456), + [sym_sink] = ACTIONS(5456), + [sym_integer] = ACTIONS(5456), + [sym_float] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5454), + [sym_multiline_string] = ACTIONS(5454), + [sym_character] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5454), + }, + [STATE(2443)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3531), + [sym_statement] = STATE(3577), + [sym_constant_declaration] = STATE(3531), + [sym_variable_declaration] = STATE(3531), + [sym_assignment_statement] = STATE(3531), + [sym_expression_statement] = STATE(3531), + [sym_return_statement] = STATE(3531), + [sym_yield_statement] = STATE(3531), + [sym_break_statement] = STATE(3531), + [sym_continue_statement] = STATE(3531), + [sym_defer_statement] = STATE(3531), + [sym_labeled_block] = STATE(3531), + [sym_if_statement] = STATE(3531), + [sym_while_statement] = STATE(3531), + [sym_for_statement] = STATE(3531), + [sym_match_statement] = STATE(3531), + [sym_expression] = STATE(3430), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(767), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(781), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(789), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2444)] = { + [ts_builtin_sym_end] = ACTIONS(5458), + [sym_identifier] = ACTIONS(5460), + [anon_sym_import] = ACTIONS(5460), + [anon_sym_test] = ACTIONS(5460), + [anon_sym_hide] = ACTIONS(5460), + [anon_sym_func] = ACTIONS(5460), + [anon_sym_BANG] = ACTIONS(5460), + [anon_sym_EQ] = ACTIONS(5460), + [anon_sym_struct] = ACTIONS(5460), + [anon_sym_LPAREN] = ACTIONS(5458), + [anon_sym_RPAREN] = ACTIONS(5458), + [anon_sym_LBRACE] = ACTIONS(5458), + [anon_sym_COMMA] = ACTIONS(5458), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_DASH] = ACTIONS(5460), + [anon_sym_DOLLAR] = ACTIONS(5458), + [anon_sym_PIPE] = ACTIONS(5460), + [anon_sym_QMARK] = ACTIONS(5458), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5458), + [anon_sym_RBRACK] = ACTIONS(5458), + [anon_sym_void] = ACTIONS(5460), + [anon_sym_noreturn] = ACTIONS(5460), + [anon_sym_type] = ACTIONS(5460), + [anon_sym_anyopaque] = ACTIONS(5460), + [anon_sym_bool] = ACTIONS(5460), + [anon_sym_int] = ACTIONS(5460), + [anon_sym_uint] = ACTIONS(5460), + [anon_sym_float] = ACTIONS(5460), + [anon_sym_range] = ACTIONS(5460), + [anon_sym_i8] = ACTIONS(5460), + [anon_sym_i16] = ACTIONS(5460), + [anon_sym_i32] = ACTIONS(5460), + [anon_sym_i64] = ACTIONS(5460), + [anon_sym_u8] = ACTIONS(5460), + [anon_sym_u16] = ACTIONS(5460), + [anon_sym_u32] = ACTIONS(5460), + [anon_sym_u64] = ACTIONS(5460), + [anon_sym_isize] = ACTIONS(5460), + [anon_sym_usize] = ACTIONS(5460), + [anon_sym_f32] = ACTIONS(5460), + [anon_sym_f64] = ACTIONS(5460), + [anon_sym_c_char] = ACTIONS(5460), + [anon_sym_c_schar] = ACTIONS(5460), + [anon_sym_c_uchar] = ACTIONS(5460), + [anon_sym_c_short] = ACTIONS(5460), + [anon_sym_c_ushort] = ACTIONS(5460), + [anon_sym_c_int] = ACTIONS(5460), + [anon_sym_c_uint] = ACTIONS(5460), + [anon_sym_c_long] = ACTIONS(5460), + [anon_sym_c_ulong] = ACTIONS(5460), + [anon_sym_c_longlong] = ACTIONS(5460), + [anon_sym_c_ulonglong] = ACTIONS(5460), + [anon_sym_c_float] = ACTIONS(5460), + [anon_sym_c_double] = ACTIONS(5460), + [anon_sym_c_longdouble] = ACTIONS(5460), + [anon_sym_PLUS_EQ] = ACTIONS(5458), + [anon_sym_DASH_EQ] = ACTIONS(5458), + [anon_sym_STAR_EQ] = ACTIONS(5458), + [anon_sym_SLASH_EQ] = ACTIONS(5458), + [anon_sym_AMP_EQ] = ACTIONS(5458), + [anon_sym_PIPE_EQ] = ACTIONS(5458), + [anon_sym_xor_EQ] = ACTIONS(5458), + [anon_sym_LT_LT_EQ] = ACTIONS(5458), + [anon_sym_GT_GT_EQ] = ACTIONS(5458), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5458), + [anon_sym_return] = ACTIONS(5460), + [anon_sym_yield] = ACTIONS(5460), + [anon_sym_COLON] = ACTIONS(5458), + [anon_sym_break] = ACTIONS(5460), + [anon_sym_continue] = ACTIONS(5460), + [anon_sym_defer] = ACTIONS(5460), + [anon_sym_errdefer] = ACTIONS(5460), + [anon_sym_if] = ACTIONS(5460), + [anon_sym_else] = ACTIONS(5460), + [anon_sym_while] = ACTIONS(5460), + [anon_sym_expand] = ACTIONS(5460), + [anon_sym_for] = ACTIONS(5460), + [anon_sym_match] = ACTIONS(5460), + [anon_sym_DOT_DOT] = ACTIONS(5460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5458), + [anon_sym_orelse] = ACTIONS(5460), + [anon_sym_or] = ACTIONS(5460), + [anon_sym_and] = ACTIONS(5460), + [anon_sym_EQ_EQ] = ACTIONS(5458), + [anon_sym_BANG_EQ] = ACTIONS(5458), + [anon_sym_LT] = ACTIONS(5460), + [anon_sym_LT_EQ] = ACTIONS(5458), + [anon_sym_GT] = ACTIONS(5460), + [anon_sym_GT_EQ] = ACTIONS(5458), + [anon_sym_AMP] = ACTIONS(5460), + [anon_sym_xor] = ACTIONS(5460), + [anon_sym_LT_LT] = ACTIONS(5460), + [anon_sym_GT_GT] = ACTIONS(5460), + [anon_sym_LT_LT_PIPE] = ACTIONS(5460), + [anon_sym_PLUS] = ACTIONS(5460), + [anon_sym_SLASH] = ACTIONS(5460), + [anon_sym_catch] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5458), + [anon_sym_try] = ACTIONS(5460), + [anon_sym_DOT] = ACTIONS(5460), + [anon_sym_CARET] = ACTIONS(5458), + [anon_sym_true] = ACTIONS(5460), + [anon_sym_false] = ACTIONS(5460), + [anon_sym_null] = ACTIONS(5460), + [anon_sym_unreachable] = ACTIONS(5460), + [anon_sym_undefined] = ACTIONS(5460), + [sym_sink] = ACTIONS(5460), + [sym_integer] = ACTIONS(5460), + [sym_float] = ACTIONS(5458), + [anon_sym_DQUOTE] = ACTIONS(5458), + [sym_multiline_string] = ACTIONS(5458), + [sym_character] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5458), + }, + [STATE(2445)] = { + [ts_builtin_sym_end] = ACTIONS(5462), + [sym_identifier] = ACTIONS(5464), + [anon_sym_import] = ACTIONS(5464), + [anon_sym_test] = ACTIONS(5464), + [anon_sym_hide] = ACTIONS(5464), + [anon_sym_func] = ACTIONS(5464), + [anon_sym_BANG] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(5464), + [anon_sym_struct] = ACTIONS(5464), + [anon_sym_LPAREN] = ACTIONS(5462), + [anon_sym_RPAREN] = ACTIONS(5462), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_COMMA] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_DASH] = ACTIONS(5464), + [anon_sym_DOLLAR] = ACTIONS(5462), + [anon_sym_PIPE] = ACTIONS(5464), + [anon_sym_QMARK] = ACTIONS(5462), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_SEMI] = ACTIONS(5462), + [anon_sym_RBRACK] = ACTIONS(5462), + [anon_sym_void] = ACTIONS(5464), + [anon_sym_noreturn] = ACTIONS(5464), + [anon_sym_type] = ACTIONS(5464), + [anon_sym_anyopaque] = ACTIONS(5464), + [anon_sym_bool] = ACTIONS(5464), + [anon_sym_int] = ACTIONS(5464), + [anon_sym_uint] = ACTIONS(5464), + [anon_sym_float] = ACTIONS(5464), + [anon_sym_range] = ACTIONS(5464), + [anon_sym_i8] = ACTIONS(5464), + [anon_sym_i16] = ACTIONS(5464), + [anon_sym_i32] = ACTIONS(5464), + [anon_sym_i64] = ACTIONS(5464), + [anon_sym_u8] = ACTIONS(5464), + [anon_sym_u16] = ACTIONS(5464), + [anon_sym_u32] = ACTIONS(5464), + [anon_sym_u64] = ACTIONS(5464), + [anon_sym_isize] = ACTIONS(5464), + [anon_sym_usize] = ACTIONS(5464), + [anon_sym_f32] = ACTIONS(5464), + [anon_sym_f64] = ACTIONS(5464), + [anon_sym_c_char] = ACTIONS(5464), + [anon_sym_c_schar] = ACTIONS(5464), + [anon_sym_c_uchar] = ACTIONS(5464), + [anon_sym_c_short] = ACTIONS(5464), + [anon_sym_c_ushort] = ACTIONS(5464), + [anon_sym_c_int] = ACTIONS(5464), + [anon_sym_c_uint] = ACTIONS(5464), + [anon_sym_c_long] = ACTIONS(5464), + [anon_sym_c_ulong] = ACTIONS(5464), + [anon_sym_c_longlong] = ACTIONS(5464), + [anon_sym_c_ulonglong] = ACTIONS(5464), + [anon_sym_c_float] = ACTIONS(5464), + [anon_sym_c_double] = ACTIONS(5464), + [anon_sym_c_longdouble] = ACTIONS(5464), + [anon_sym_PLUS_EQ] = ACTIONS(5462), + [anon_sym_DASH_EQ] = ACTIONS(5462), + [anon_sym_STAR_EQ] = ACTIONS(5462), + [anon_sym_SLASH_EQ] = ACTIONS(5462), + [anon_sym_AMP_EQ] = ACTIONS(5462), + [anon_sym_PIPE_EQ] = ACTIONS(5462), + [anon_sym_xor_EQ] = ACTIONS(5462), + [anon_sym_LT_LT_EQ] = ACTIONS(5462), + [anon_sym_GT_GT_EQ] = ACTIONS(5462), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5462), + [anon_sym_return] = ACTIONS(5464), + [anon_sym_yield] = ACTIONS(5464), + [anon_sym_COLON] = ACTIONS(5462), + [anon_sym_break] = ACTIONS(5464), + [anon_sym_continue] = ACTIONS(5464), + [anon_sym_defer] = ACTIONS(5464), + [anon_sym_errdefer] = ACTIONS(5464), + [anon_sym_if] = ACTIONS(5464), + [anon_sym_else] = ACTIONS(5464), + [anon_sym_while] = ACTIONS(5464), + [anon_sym_expand] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(5464), + [anon_sym_match] = ACTIONS(5464), + [anon_sym_DOT_DOT] = ACTIONS(5464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5462), + [anon_sym_orelse] = ACTIONS(5464), + [anon_sym_or] = ACTIONS(5464), + [anon_sym_and] = ACTIONS(5464), + [anon_sym_EQ_EQ] = ACTIONS(5462), + [anon_sym_BANG_EQ] = ACTIONS(5462), + [anon_sym_LT] = ACTIONS(5464), + [anon_sym_LT_EQ] = ACTIONS(5462), + [anon_sym_GT] = ACTIONS(5464), + [anon_sym_GT_EQ] = ACTIONS(5462), + [anon_sym_AMP] = ACTIONS(5464), + [anon_sym_xor] = ACTIONS(5464), + [anon_sym_LT_LT] = ACTIONS(5464), + [anon_sym_GT_GT] = ACTIONS(5464), + [anon_sym_LT_LT_PIPE] = ACTIONS(5464), + [anon_sym_PLUS] = ACTIONS(5464), + [anon_sym_SLASH] = ACTIONS(5464), + [anon_sym_catch] = ACTIONS(5464), + [anon_sym_TILDE] = ACTIONS(5462), + [anon_sym_try] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5464), + [anon_sym_CARET] = ACTIONS(5462), + [anon_sym_true] = ACTIONS(5464), + [anon_sym_false] = ACTIONS(5464), + [anon_sym_null] = ACTIONS(5464), + [anon_sym_unreachable] = ACTIONS(5464), + [anon_sym_undefined] = ACTIONS(5464), + [sym_sink] = ACTIONS(5464), + [sym_integer] = ACTIONS(5464), + [sym_float] = ACTIONS(5462), + [anon_sym_DQUOTE] = ACTIONS(5462), + [sym_multiline_string] = ACTIONS(5462), + [sym_character] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5462), + }, + [STATE(2446)] = { + [ts_builtin_sym_end] = ACTIONS(5466), + [sym_identifier] = ACTIONS(5468), + [anon_sym_import] = ACTIONS(5468), + [anon_sym_test] = ACTIONS(5468), + [anon_sym_hide] = ACTIONS(5468), + [anon_sym_func] = ACTIONS(5468), + [anon_sym_BANG] = ACTIONS(5468), + [anon_sym_EQ] = ACTIONS(5468), + [anon_sym_struct] = ACTIONS(5468), + [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_RPAREN] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5466), + [anon_sym_COMMA] = ACTIONS(5466), + [anon_sym_RBRACE] = ACTIONS(5466), + [anon_sym_DASH] = ACTIONS(5468), + [anon_sym_DOLLAR] = ACTIONS(5466), + [anon_sym_PIPE] = ACTIONS(5468), + [anon_sym_QMARK] = ACTIONS(5466), + [anon_sym_STAR] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_SEMI] = ACTIONS(5466), + [anon_sym_RBRACK] = ACTIONS(5466), + [anon_sym_void] = ACTIONS(5468), + [anon_sym_noreturn] = ACTIONS(5468), + [anon_sym_type] = ACTIONS(5468), + [anon_sym_anyopaque] = ACTIONS(5468), + [anon_sym_bool] = ACTIONS(5468), + [anon_sym_int] = ACTIONS(5468), + [anon_sym_uint] = ACTIONS(5468), + [anon_sym_float] = ACTIONS(5468), + [anon_sym_range] = ACTIONS(5468), + [anon_sym_i8] = ACTIONS(5468), + [anon_sym_i16] = ACTIONS(5468), + [anon_sym_i32] = ACTIONS(5468), + [anon_sym_i64] = ACTIONS(5468), + [anon_sym_u8] = ACTIONS(5468), + [anon_sym_u16] = ACTIONS(5468), + [anon_sym_u32] = ACTIONS(5468), + [anon_sym_u64] = ACTIONS(5468), + [anon_sym_isize] = ACTIONS(5468), + [anon_sym_usize] = ACTIONS(5468), + [anon_sym_f32] = ACTIONS(5468), + [anon_sym_f64] = ACTIONS(5468), + [anon_sym_c_char] = ACTIONS(5468), + [anon_sym_c_schar] = ACTIONS(5468), + [anon_sym_c_uchar] = ACTIONS(5468), + [anon_sym_c_short] = ACTIONS(5468), + [anon_sym_c_ushort] = ACTIONS(5468), + [anon_sym_c_int] = ACTIONS(5468), + [anon_sym_c_uint] = ACTIONS(5468), + [anon_sym_c_long] = ACTIONS(5468), + [anon_sym_c_ulong] = ACTIONS(5468), + [anon_sym_c_longlong] = ACTIONS(5468), + [anon_sym_c_ulonglong] = ACTIONS(5468), + [anon_sym_c_float] = ACTIONS(5468), + [anon_sym_c_double] = ACTIONS(5468), + [anon_sym_c_longdouble] = ACTIONS(5468), + [anon_sym_PLUS_EQ] = ACTIONS(5466), + [anon_sym_DASH_EQ] = ACTIONS(5466), + [anon_sym_STAR_EQ] = ACTIONS(5466), + [anon_sym_SLASH_EQ] = ACTIONS(5466), + [anon_sym_AMP_EQ] = ACTIONS(5466), + [anon_sym_PIPE_EQ] = ACTIONS(5466), + [anon_sym_xor_EQ] = ACTIONS(5466), + [anon_sym_LT_LT_EQ] = ACTIONS(5466), + [anon_sym_GT_GT_EQ] = ACTIONS(5466), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5466), + [anon_sym_return] = ACTIONS(5468), + [anon_sym_yield] = ACTIONS(5468), + [anon_sym_COLON] = ACTIONS(5466), + [anon_sym_break] = ACTIONS(5468), + [anon_sym_continue] = ACTIONS(5468), + [anon_sym_defer] = ACTIONS(5468), + [anon_sym_errdefer] = ACTIONS(5468), + [anon_sym_if] = ACTIONS(5468), + [anon_sym_else] = ACTIONS(5468), + [anon_sym_while] = ACTIONS(5468), + [anon_sym_expand] = ACTIONS(5468), + [anon_sym_for] = ACTIONS(5468), + [anon_sym_match] = ACTIONS(5468), + [anon_sym_DOT_DOT] = ACTIONS(5468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5466), + [anon_sym_orelse] = ACTIONS(5468), + [anon_sym_or] = ACTIONS(5468), + [anon_sym_and] = ACTIONS(5468), + [anon_sym_EQ_EQ] = ACTIONS(5466), + [anon_sym_BANG_EQ] = ACTIONS(5466), + [anon_sym_LT] = ACTIONS(5468), + [anon_sym_LT_EQ] = ACTIONS(5466), + [anon_sym_GT] = ACTIONS(5468), + [anon_sym_GT_EQ] = ACTIONS(5466), + [anon_sym_AMP] = ACTIONS(5468), + [anon_sym_xor] = ACTIONS(5468), + [anon_sym_LT_LT] = ACTIONS(5468), + [anon_sym_GT_GT] = ACTIONS(5468), + [anon_sym_LT_LT_PIPE] = ACTIONS(5468), + [anon_sym_PLUS] = ACTIONS(5468), + [anon_sym_SLASH] = ACTIONS(5468), + [anon_sym_catch] = ACTIONS(5468), + [anon_sym_TILDE] = ACTIONS(5466), + [anon_sym_try] = ACTIONS(5468), + [anon_sym_DOT] = ACTIONS(5468), + [anon_sym_CARET] = ACTIONS(5466), + [anon_sym_true] = ACTIONS(5468), + [anon_sym_false] = ACTIONS(5468), + [anon_sym_null] = ACTIONS(5468), + [anon_sym_unreachable] = ACTIONS(5468), + [anon_sym_undefined] = ACTIONS(5468), + [sym_sink] = ACTIONS(5468), + [sym_integer] = ACTIONS(5468), + [sym_float] = ACTIONS(5466), + [anon_sym_DQUOTE] = ACTIONS(5466), + [sym_multiline_string] = ACTIONS(5466), + [sym_character] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5466), + }, + [STATE(2447)] = { + [ts_builtin_sym_end] = ACTIONS(5470), + [sym_identifier] = ACTIONS(5472), + [anon_sym_import] = ACTIONS(5472), + [anon_sym_test] = ACTIONS(5472), + [anon_sym_hide] = ACTIONS(5472), + [anon_sym_func] = ACTIONS(5472), + [anon_sym_BANG] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5472), + [anon_sym_struct] = ACTIONS(5472), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_DASH] = ACTIONS(5472), + [anon_sym_DOLLAR] = ACTIONS(5470), + [anon_sym_PIPE] = ACTIONS(5472), + [anon_sym_QMARK] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_SEMI] = ACTIONS(5470), + [anon_sym_RBRACK] = ACTIONS(5470), + [anon_sym_void] = ACTIONS(5472), + [anon_sym_noreturn] = ACTIONS(5472), + [anon_sym_type] = ACTIONS(5472), + [anon_sym_anyopaque] = ACTIONS(5472), + [anon_sym_bool] = ACTIONS(5472), + [anon_sym_int] = ACTIONS(5472), + [anon_sym_uint] = ACTIONS(5472), + [anon_sym_float] = ACTIONS(5472), + [anon_sym_range] = ACTIONS(5472), + [anon_sym_i8] = ACTIONS(5472), + [anon_sym_i16] = ACTIONS(5472), + [anon_sym_i32] = ACTIONS(5472), + [anon_sym_i64] = ACTIONS(5472), + [anon_sym_u8] = ACTIONS(5472), + [anon_sym_u16] = ACTIONS(5472), + [anon_sym_u32] = ACTIONS(5472), + [anon_sym_u64] = ACTIONS(5472), + [anon_sym_isize] = ACTIONS(5472), + [anon_sym_usize] = ACTIONS(5472), + [anon_sym_f32] = ACTIONS(5472), + [anon_sym_f64] = ACTIONS(5472), + [anon_sym_c_char] = ACTIONS(5472), + [anon_sym_c_schar] = ACTIONS(5472), + [anon_sym_c_uchar] = ACTIONS(5472), + [anon_sym_c_short] = ACTIONS(5472), + [anon_sym_c_ushort] = ACTIONS(5472), + [anon_sym_c_int] = ACTIONS(5472), + [anon_sym_c_uint] = ACTIONS(5472), + [anon_sym_c_long] = ACTIONS(5472), + [anon_sym_c_ulong] = ACTIONS(5472), + [anon_sym_c_longlong] = ACTIONS(5472), + [anon_sym_c_ulonglong] = ACTIONS(5472), + [anon_sym_c_float] = ACTIONS(5472), + [anon_sym_c_double] = ACTIONS(5472), + [anon_sym_c_longdouble] = ACTIONS(5472), + [anon_sym_PLUS_EQ] = ACTIONS(5470), + [anon_sym_DASH_EQ] = ACTIONS(5470), + [anon_sym_STAR_EQ] = ACTIONS(5470), + [anon_sym_SLASH_EQ] = ACTIONS(5470), + [anon_sym_AMP_EQ] = ACTIONS(5470), + [anon_sym_PIPE_EQ] = ACTIONS(5470), + [anon_sym_xor_EQ] = ACTIONS(5470), + [anon_sym_LT_LT_EQ] = ACTIONS(5470), + [anon_sym_GT_GT_EQ] = ACTIONS(5470), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5470), + [anon_sym_return] = ACTIONS(5472), + [anon_sym_yield] = ACTIONS(5472), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_break] = ACTIONS(5472), + [anon_sym_continue] = ACTIONS(5472), + [anon_sym_defer] = ACTIONS(5472), + [anon_sym_errdefer] = ACTIONS(5472), + [anon_sym_if] = ACTIONS(5472), + [anon_sym_else] = ACTIONS(5472), + [anon_sym_while] = ACTIONS(5472), + [anon_sym_expand] = ACTIONS(5472), + [anon_sym_for] = ACTIONS(5472), + [anon_sym_match] = ACTIONS(5472), + [anon_sym_DOT_DOT] = ACTIONS(5472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5470), + [anon_sym_orelse] = ACTIONS(5472), + [anon_sym_or] = ACTIONS(5472), + [anon_sym_and] = ACTIONS(5472), + [anon_sym_EQ_EQ] = ACTIONS(5470), + [anon_sym_BANG_EQ] = ACTIONS(5470), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_LT_EQ] = ACTIONS(5470), + [anon_sym_GT] = ACTIONS(5472), + [anon_sym_GT_EQ] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(5472), + [anon_sym_xor] = ACTIONS(5472), + [anon_sym_LT_LT] = ACTIONS(5472), + [anon_sym_GT_GT] = ACTIONS(5472), + [anon_sym_LT_LT_PIPE] = ACTIONS(5472), + [anon_sym_PLUS] = ACTIONS(5472), + [anon_sym_SLASH] = ACTIONS(5472), + [anon_sym_catch] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5470), + [anon_sym_try] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5472), + [anon_sym_CARET] = ACTIONS(5470), + [anon_sym_true] = ACTIONS(5472), + [anon_sym_false] = ACTIONS(5472), + [anon_sym_null] = ACTIONS(5472), + [anon_sym_unreachable] = ACTIONS(5472), + [anon_sym_undefined] = ACTIONS(5472), + [sym_sink] = ACTIONS(5472), + [sym_integer] = ACTIONS(5472), + [sym_float] = ACTIONS(5470), + [anon_sym_DQUOTE] = ACTIONS(5470), + [sym_multiline_string] = ACTIONS(5470), + [sym_character] = ACTIONS(5470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5470), + }, + [STATE(2448)] = { + [ts_builtin_sym_end] = ACTIONS(5474), + [sym_identifier] = ACTIONS(5476), + [anon_sym_import] = ACTIONS(5476), + [anon_sym_test] = ACTIONS(5476), + [anon_sym_hide] = ACTIONS(5476), + [anon_sym_func] = ACTIONS(5476), + [anon_sym_BANG] = ACTIONS(5476), + [anon_sym_EQ] = ACTIONS(5476), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_LPAREN] = ACTIONS(5474), + [anon_sym_RPAREN] = ACTIONS(5474), + [anon_sym_LBRACE] = ACTIONS(5474), + [anon_sym_COMMA] = ACTIONS(5474), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5476), + [anon_sym_DOLLAR] = ACTIONS(5474), + [anon_sym_PIPE] = ACTIONS(5476), + [anon_sym_QMARK] = ACTIONS(5474), + [anon_sym_STAR] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(5474), + [anon_sym_RBRACK] = ACTIONS(5474), + [anon_sym_void] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym_type] = ACTIONS(5476), + [anon_sym_anyopaque] = ACTIONS(5476), + [anon_sym_bool] = ACTIONS(5476), + [anon_sym_int] = ACTIONS(5476), + [anon_sym_uint] = ACTIONS(5476), + [anon_sym_float] = ACTIONS(5476), + [anon_sym_range] = ACTIONS(5476), + [anon_sym_i8] = ACTIONS(5476), + [anon_sym_i16] = ACTIONS(5476), + [anon_sym_i32] = ACTIONS(5476), + [anon_sym_i64] = ACTIONS(5476), + [anon_sym_u8] = ACTIONS(5476), + [anon_sym_u16] = ACTIONS(5476), + [anon_sym_u32] = ACTIONS(5476), + [anon_sym_u64] = ACTIONS(5476), + [anon_sym_isize] = ACTIONS(5476), + [anon_sym_usize] = ACTIONS(5476), + [anon_sym_f32] = ACTIONS(5476), + [anon_sym_f64] = ACTIONS(5476), + [anon_sym_c_char] = ACTIONS(5476), + [anon_sym_c_schar] = ACTIONS(5476), + [anon_sym_c_uchar] = ACTIONS(5476), + [anon_sym_c_short] = ACTIONS(5476), + [anon_sym_c_ushort] = ACTIONS(5476), + [anon_sym_c_int] = ACTIONS(5476), + [anon_sym_c_uint] = ACTIONS(5476), + [anon_sym_c_long] = ACTIONS(5476), + [anon_sym_c_ulong] = ACTIONS(5476), + [anon_sym_c_longlong] = ACTIONS(5476), + [anon_sym_c_ulonglong] = ACTIONS(5476), + [anon_sym_c_float] = ACTIONS(5476), + [anon_sym_c_double] = ACTIONS(5476), + [anon_sym_c_longdouble] = ACTIONS(5476), + [anon_sym_PLUS_EQ] = ACTIONS(5474), + [anon_sym_DASH_EQ] = ACTIONS(5474), + [anon_sym_STAR_EQ] = ACTIONS(5474), + [anon_sym_SLASH_EQ] = ACTIONS(5474), + [anon_sym_AMP_EQ] = ACTIONS(5474), + [anon_sym_PIPE_EQ] = ACTIONS(5474), + [anon_sym_xor_EQ] = ACTIONS(5474), + [anon_sym_LT_LT_EQ] = ACTIONS(5474), + [anon_sym_GT_GT_EQ] = ACTIONS(5474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5474), + [anon_sym_return] = ACTIONS(5476), + [anon_sym_yield] = ACTIONS(5476), + [anon_sym_COLON] = ACTIONS(5474), + [anon_sym_break] = ACTIONS(5476), + [anon_sym_continue] = ACTIONS(5476), + [anon_sym_defer] = ACTIONS(5476), + [anon_sym_errdefer] = ACTIONS(5476), + [anon_sym_if] = ACTIONS(5476), + [anon_sym_else] = ACTIONS(5476), + [anon_sym_while] = ACTIONS(5476), + [anon_sym_expand] = ACTIONS(5476), + [anon_sym_for] = ACTIONS(5476), + [anon_sym_match] = ACTIONS(5476), + [anon_sym_DOT_DOT] = ACTIONS(5476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5474), + [anon_sym_orelse] = ACTIONS(5476), + [anon_sym_or] = ACTIONS(5476), + [anon_sym_and] = ACTIONS(5476), + [anon_sym_EQ_EQ] = ACTIONS(5474), + [anon_sym_BANG_EQ] = ACTIONS(5474), + [anon_sym_LT] = ACTIONS(5476), + [anon_sym_LT_EQ] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_xor] = ACTIONS(5476), + [anon_sym_LT_LT] = ACTIONS(5476), + [anon_sym_GT_GT] = ACTIONS(5476), + [anon_sym_LT_LT_PIPE] = ACTIONS(5476), + [anon_sym_PLUS] = ACTIONS(5476), + [anon_sym_SLASH] = ACTIONS(5476), + [anon_sym_catch] = ACTIONS(5476), + [anon_sym_TILDE] = ACTIONS(5474), + [anon_sym_try] = ACTIONS(5476), + [anon_sym_DOT] = ACTIONS(5476), + [anon_sym_CARET] = ACTIONS(5474), + [anon_sym_true] = ACTIONS(5476), + [anon_sym_false] = ACTIONS(5476), + [anon_sym_null] = ACTIONS(5476), + [anon_sym_unreachable] = ACTIONS(5476), + [anon_sym_undefined] = ACTIONS(5476), + [sym_sink] = ACTIONS(5476), + [sym_integer] = ACTIONS(5476), + [sym_float] = ACTIONS(5474), + [anon_sym_DQUOTE] = ACTIONS(5474), + [sym_multiline_string] = ACTIONS(5474), + [sym_character] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5474), + }, + [STATE(2449)] = { + [ts_builtin_sym_end] = ACTIONS(5478), + [sym_identifier] = ACTIONS(5480), + [anon_sym_import] = ACTIONS(5480), + [anon_sym_test] = ACTIONS(5480), + [anon_sym_hide] = ACTIONS(5480), + [anon_sym_func] = ACTIONS(5480), + [anon_sym_BANG] = ACTIONS(5480), + [anon_sym_EQ] = ACTIONS(5480), + [anon_sym_struct] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5478), + [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_LBRACE] = ACTIONS(5478), + [anon_sym_COMMA] = ACTIONS(5478), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_DOLLAR] = ACTIONS(5478), + [anon_sym_PIPE] = ACTIONS(5480), + [anon_sym_QMARK] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(5478), + [anon_sym_SEMI] = ACTIONS(5478), + [anon_sym_RBRACK] = ACTIONS(5478), + [anon_sym_void] = ACTIONS(5480), + [anon_sym_noreturn] = ACTIONS(5480), + [anon_sym_type] = ACTIONS(5480), + [anon_sym_anyopaque] = ACTIONS(5480), + [anon_sym_bool] = ACTIONS(5480), + [anon_sym_int] = ACTIONS(5480), + [anon_sym_uint] = ACTIONS(5480), + [anon_sym_float] = ACTIONS(5480), + [anon_sym_range] = ACTIONS(5480), + [anon_sym_i8] = ACTIONS(5480), + [anon_sym_i16] = ACTIONS(5480), + [anon_sym_i32] = ACTIONS(5480), + [anon_sym_i64] = ACTIONS(5480), + [anon_sym_u8] = ACTIONS(5480), + [anon_sym_u16] = ACTIONS(5480), + [anon_sym_u32] = ACTIONS(5480), + [anon_sym_u64] = ACTIONS(5480), + [anon_sym_isize] = ACTIONS(5480), + [anon_sym_usize] = ACTIONS(5480), + [anon_sym_f32] = ACTIONS(5480), + [anon_sym_f64] = ACTIONS(5480), + [anon_sym_c_char] = ACTIONS(5480), + [anon_sym_c_schar] = ACTIONS(5480), + [anon_sym_c_uchar] = ACTIONS(5480), + [anon_sym_c_short] = ACTIONS(5480), + [anon_sym_c_ushort] = ACTIONS(5480), + [anon_sym_c_int] = ACTIONS(5480), + [anon_sym_c_uint] = ACTIONS(5480), + [anon_sym_c_long] = ACTIONS(5480), + [anon_sym_c_ulong] = ACTIONS(5480), + [anon_sym_c_longlong] = ACTIONS(5480), + [anon_sym_c_ulonglong] = ACTIONS(5480), + [anon_sym_c_float] = ACTIONS(5480), + [anon_sym_c_double] = ACTIONS(5480), + [anon_sym_c_longdouble] = ACTIONS(5480), + [anon_sym_PLUS_EQ] = ACTIONS(5478), + [anon_sym_DASH_EQ] = ACTIONS(5478), + [anon_sym_STAR_EQ] = ACTIONS(5478), + [anon_sym_SLASH_EQ] = ACTIONS(5478), + [anon_sym_AMP_EQ] = ACTIONS(5478), + [anon_sym_PIPE_EQ] = ACTIONS(5478), + [anon_sym_xor_EQ] = ACTIONS(5478), + [anon_sym_LT_LT_EQ] = ACTIONS(5478), + [anon_sym_GT_GT_EQ] = ACTIONS(5478), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5478), + [anon_sym_return] = ACTIONS(5480), + [anon_sym_yield] = ACTIONS(5480), + [anon_sym_COLON] = ACTIONS(5478), + [anon_sym_break] = ACTIONS(5480), + [anon_sym_continue] = ACTIONS(5480), + [anon_sym_defer] = ACTIONS(5480), + [anon_sym_errdefer] = ACTIONS(5480), + [anon_sym_if] = ACTIONS(5480), + [anon_sym_else] = ACTIONS(5480), + [anon_sym_while] = ACTIONS(5480), + [anon_sym_expand] = ACTIONS(5480), + [anon_sym_for] = ACTIONS(5480), + [anon_sym_match] = ACTIONS(5480), + [anon_sym_DOT_DOT] = ACTIONS(5480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5478), + [anon_sym_orelse] = ACTIONS(5480), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_BANG_EQ] = ACTIONS(5478), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_xor] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5480), + [anon_sym_LT_LT_PIPE] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_SLASH] = ACTIONS(5480), + [anon_sym_catch] = ACTIONS(5480), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_try] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5478), + [anon_sym_true] = ACTIONS(5480), + [anon_sym_false] = ACTIONS(5480), + [anon_sym_null] = ACTIONS(5480), + [anon_sym_unreachable] = ACTIONS(5480), + [anon_sym_undefined] = ACTIONS(5480), + [sym_sink] = ACTIONS(5480), + [sym_integer] = ACTIONS(5480), + [sym_float] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(5478), + [sym_multiline_string] = ACTIONS(5478), + [sym_character] = ACTIONS(5478), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5478), + }, + [STATE(2450)] = { + [ts_builtin_sym_end] = ACTIONS(5482), + [sym_identifier] = ACTIONS(5484), + [anon_sym_import] = ACTIONS(5484), + [anon_sym_test] = ACTIONS(5484), + [anon_sym_hide] = ACTIONS(5484), + [anon_sym_func] = ACTIONS(5484), + [anon_sym_BANG] = ACTIONS(5484), + [anon_sym_EQ] = ACTIONS(5484), + [anon_sym_struct] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5482), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5484), + [anon_sym_DOLLAR] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5484), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_SEMI] = ACTIONS(5482), + [anon_sym_RBRACK] = ACTIONS(5482), + [anon_sym_void] = ACTIONS(5484), + [anon_sym_noreturn] = ACTIONS(5484), + [anon_sym_type] = ACTIONS(5484), + [anon_sym_anyopaque] = ACTIONS(5484), + [anon_sym_bool] = ACTIONS(5484), + [anon_sym_int] = ACTIONS(5484), + [anon_sym_uint] = ACTIONS(5484), + [anon_sym_float] = ACTIONS(5484), + [anon_sym_range] = ACTIONS(5484), + [anon_sym_i8] = ACTIONS(5484), + [anon_sym_i16] = ACTIONS(5484), + [anon_sym_i32] = ACTIONS(5484), + [anon_sym_i64] = ACTIONS(5484), + [anon_sym_u8] = ACTIONS(5484), + [anon_sym_u16] = ACTIONS(5484), + [anon_sym_u32] = ACTIONS(5484), + [anon_sym_u64] = ACTIONS(5484), + [anon_sym_isize] = ACTIONS(5484), + [anon_sym_usize] = ACTIONS(5484), + [anon_sym_f32] = ACTIONS(5484), + [anon_sym_f64] = ACTIONS(5484), + [anon_sym_c_char] = ACTIONS(5484), + [anon_sym_c_schar] = ACTIONS(5484), + [anon_sym_c_uchar] = ACTIONS(5484), + [anon_sym_c_short] = ACTIONS(5484), + [anon_sym_c_ushort] = ACTIONS(5484), + [anon_sym_c_int] = ACTIONS(5484), + [anon_sym_c_uint] = ACTIONS(5484), + [anon_sym_c_long] = ACTIONS(5484), + [anon_sym_c_ulong] = ACTIONS(5484), + [anon_sym_c_longlong] = ACTIONS(5484), + [anon_sym_c_ulonglong] = ACTIONS(5484), + [anon_sym_c_float] = ACTIONS(5484), + [anon_sym_c_double] = ACTIONS(5484), + [anon_sym_c_longdouble] = ACTIONS(5484), + [anon_sym_PLUS_EQ] = ACTIONS(5482), + [anon_sym_DASH_EQ] = ACTIONS(5482), + [anon_sym_STAR_EQ] = ACTIONS(5482), + [anon_sym_SLASH_EQ] = ACTIONS(5482), + [anon_sym_AMP_EQ] = ACTIONS(5482), + [anon_sym_PIPE_EQ] = ACTIONS(5482), + [anon_sym_xor_EQ] = ACTIONS(5482), + [anon_sym_LT_LT_EQ] = ACTIONS(5482), + [anon_sym_GT_GT_EQ] = ACTIONS(5482), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5482), + [anon_sym_return] = ACTIONS(5484), + [anon_sym_yield] = ACTIONS(5484), + [anon_sym_COLON] = ACTIONS(5482), + [anon_sym_break] = ACTIONS(5484), + [anon_sym_continue] = ACTIONS(5484), + [anon_sym_defer] = ACTIONS(5484), + [anon_sym_errdefer] = ACTIONS(5484), + [anon_sym_if] = ACTIONS(5484), + [anon_sym_else] = ACTIONS(5484), + [anon_sym_while] = ACTIONS(5484), + [anon_sym_expand] = ACTIONS(5484), + [anon_sym_for] = ACTIONS(5484), + [anon_sym_match] = ACTIONS(5484), + [anon_sym_DOT_DOT] = ACTIONS(5484), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5482), + [anon_sym_orelse] = ACTIONS(5484), + [anon_sym_or] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_LT] = ACTIONS(5484), + [anon_sym_LT_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_xor] = ACTIONS(5484), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5484), + [anon_sym_LT_LT_PIPE] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5484), + [anon_sym_SLASH] = ACTIONS(5484), + [anon_sym_catch] = ACTIONS(5484), + [anon_sym_TILDE] = ACTIONS(5482), + [anon_sym_try] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5482), + [anon_sym_true] = ACTIONS(5484), + [anon_sym_false] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), + [anon_sym_unreachable] = ACTIONS(5484), + [anon_sym_undefined] = ACTIONS(5484), + [sym_sink] = ACTIONS(5484), + [sym_integer] = ACTIONS(5484), + [sym_float] = ACTIONS(5482), + [anon_sym_DQUOTE] = ACTIONS(5482), + [sym_multiline_string] = ACTIONS(5482), + [sym_character] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5482), + }, + [STATE(2451)] = { + [ts_builtin_sym_end] = ACTIONS(5486), + [sym_identifier] = ACTIONS(5488), + [anon_sym_import] = ACTIONS(5488), + [anon_sym_test] = ACTIONS(5488), + [anon_sym_hide] = ACTIONS(5488), + [anon_sym_func] = ACTIONS(5488), + [anon_sym_BANG] = ACTIONS(5488), + [anon_sym_EQ] = ACTIONS(5488), + [anon_sym_struct] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5486), + [anon_sym_RPAREN] = ACTIONS(5486), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_COMMA] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5488), + [anon_sym_DOLLAR] = ACTIONS(5486), + [anon_sym_PIPE] = ACTIONS(5488), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5486), + [anon_sym_SEMI] = ACTIONS(5486), + [anon_sym_RBRACK] = ACTIONS(5486), + [anon_sym_void] = ACTIONS(5488), + [anon_sym_noreturn] = ACTIONS(5488), + [anon_sym_type] = ACTIONS(5488), + [anon_sym_anyopaque] = ACTIONS(5488), + [anon_sym_bool] = ACTIONS(5488), + [anon_sym_int] = ACTIONS(5488), + [anon_sym_uint] = ACTIONS(5488), + [anon_sym_float] = ACTIONS(5488), + [anon_sym_range] = ACTIONS(5488), + [anon_sym_i8] = ACTIONS(5488), + [anon_sym_i16] = ACTIONS(5488), + [anon_sym_i32] = ACTIONS(5488), + [anon_sym_i64] = ACTIONS(5488), + [anon_sym_u8] = ACTIONS(5488), + [anon_sym_u16] = ACTIONS(5488), + [anon_sym_u32] = ACTIONS(5488), + [anon_sym_u64] = ACTIONS(5488), + [anon_sym_isize] = ACTIONS(5488), + [anon_sym_usize] = ACTIONS(5488), + [anon_sym_f32] = ACTIONS(5488), + [anon_sym_f64] = ACTIONS(5488), + [anon_sym_c_char] = ACTIONS(5488), + [anon_sym_c_schar] = ACTIONS(5488), + [anon_sym_c_uchar] = ACTIONS(5488), + [anon_sym_c_short] = ACTIONS(5488), + [anon_sym_c_ushort] = ACTIONS(5488), + [anon_sym_c_int] = ACTIONS(5488), + [anon_sym_c_uint] = ACTIONS(5488), + [anon_sym_c_long] = ACTIONS(5488), + [anon_sym_c_ulong] = ACTIONS(5488), + [anon_sym_c_longlong] = ACTIONS(5488), + [anon_sym_c_ulonglong] = ACTIONS(5488), + [anon_sym_c_float] = ACTIONS(5488), + [anon_sym_c_double] = ACTIONS(5488), + [anon_sym_c_longdouble] = ACTIONS(5488), + [anon_sym_PLUS_EQ] = ACTIONS(5486), + [anon_sym_DASH_EQ] = ACTIONS(5486), + [anon_sym_STAR_EQ] = ACTIONS(5486), + [anon_sym_SLASH_EQ] = ACTIONS(5486), + [anon_sym_AMP_EQ] = ACTIONS(5486), + [anon_sym_PIPE_EQ] = ACTIONS(5486), + [anon_sym_xor_EQ] = ACTIONS(5486), + [anon_sym_LT_LT_EQ] = ACTIONS(5486), + [anon_sym_GT_GT_EQ] = ACTIONS(5486), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5486), + [anon_sym_return] = ACTIONS(5488), + [anon_sym_yield] = ACTIONS(5488), + [anon_sym_COLON] = ACTIONS(5486), + [anon_sym_break] = ACTIONS(5488), + [anon_sym_continue] = ACTIONS(5488), + [anon_sym_defer] = ACTIONS(5488), + [anon_sym_errdefer] = ACTIONS(5488), + [anon_sym_if] = ACTIONS(5488), + [anon_sym_else] = ACTIONS(5488), + [anon_sym_while] = ACTIONS(5488), + [anon_sym_expand] = ACTIONS(5488), + [anon_sym_for] = ACTIONS(5488), + [anon_sym_match] = ACTIONS(5488), + [anon_sym_DOT_DOT] = ACTIONS(5488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5486), + [anon_sym_orelse] = ACTIONS(5488), + [anon_sym_or] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5486), + [anon_sym_BANG_EQ] = ACTIONS(5486), + [anon_sym_LT] = ACTIONS(5488), + [anon_sym_LT_EQ] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_xor] = ACTIONS(5488), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5488), + [anon_sym_LT_LT_PIPE] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5488), + [anon_sym_SLASH] = ACTIONS(5488), + [anon_sym_catch] = ACTIONS(5488), + [anon_sym_TILDE] = ACTIONS(5486), + [anon_sym_try] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5486), + [anon_sym_true] = ACTIONS(5488), + [anon_sym_false] = ACTIONS(5488), + [anon_sym_null] = ACTIONS(5488), + [anon_sym_unreachable] = ACTIONS(5488), + [anon_sym_undefined] = ACTIONS(5488), + [sym_sink] = ACTIONS(5488), + [sym_integer] = ACTIONS(5488), + [sym_float] = ACTIONS(5486), + [anon_sym_DQUOTE] = ACTIONS(5486), + [sym_multiline_string] = ACTIONS(5486), + [sym_character] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5486), + }, + [STATE(2452)] = { + [ts_builtin_sym_end] = ACTIONS(5490), + [sym_identifier] = ACTIONS(5492), + [anon_sym_import] = ACTIONS(5492), + [anon_sym_test] = ACTIONS(5492), + [anon_sym_hide] = ACTIONS(5492), + [anon_sym_func] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(5492), + [anon_sym_EQ] = ACTIONS(5492), + [anon_sym_struct] = ACTIONS(5492), + [anon_sym_LPAREN] = ACTIONS(5490), + [anon_sym_RPAREN] = ACTIONS(5490), + [anon_sym_LBRACE] = ACTIONS(5490), + [anon_sym_COMMA] = ACTIONS(5490), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5492), + [anon_sym_DOLLAR] = ACTIONS(5490), + [anon_sym_PIPE] = ACTIONS(5492), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(5490), + [anon_sym_SEMI] = ACTIONS(5490), + [anon_sym_RBRACK] = ACTIONS(5490), + [anon_sym_void] = ACTIONS(5492), + [anon_sym_noreturn] = ACTIONS(5492), + [anon_sym_type] = ACTIONS(5492), + [anon_sym_anyopaque] = ACTIONS(5492), + [anon_sym_bool] = ACTIONS(5492), + [anon_sym_int] = ACTIONS(5492), + [anon_sym_uint] = ACTIONS(5492), + [anon_sym_float] = ACTIONS(5492), + [anon_sym_range] = ACTIONS(5492), + [anon_sym_i8] = ACTIONS(5492), + [anon_sym_i16] = ACTIONS(5492), + [anon_sym_i32] = ACTIONS(5492), + [anon_sym_i64] = ACTIONS(5492), + [anon_sym_u8] = ACTIONS(5492), + [anon_sym_u16] = ACTIONS(5492), + [anon_sym_u32] = ACTIONS(5492), + [anon_sym_u64] = ACTIONS(5492), + [anon_sym_isize] = ACTIONS(5492), + [anon_sym_usize] = ACTIONS(5492), + [anon_sym_f32] = ACTIONS(5492), + [anon_sym_f64] = ACTIONS(5492), + [anon_sym_c_char] = ACTIONS(5492), + [anon_sym_c_schar] = ACTIONS(5492), + [anon_sym_c_uchar] = ACTIONS(5492), + [anon_sym_c_short] = ACTIONS(5492), + [anon_sym_c_ushort] = ACTIONS(5492), + [anon_sym_c_int] = ACTIONS(5492), + [anon_sym_c_uint] = ACTIONS(5492), + [anon_sym_c_long] = ACTIONS(5492), + [anon_sym_c_ulong] = ACTIONS(5492), + [anon_sym_c_longlong] = ACTIONS(5492), + [anon_sym_c_ulonglong] = ACTIONS(5492), + [anon_sym_c_float] = ACTIONS(5492), + [anon_sym_c_double] = ACTIONS(5492), + [anon_sym_c_longdouble] = ACTIONS(5492), + [anon_sym_PLUS_EQ] = ACTIONS(5490), + [anon_sym_DASH_EQ] = ACTIONS(5490), + [anon_sym_STAR_EQ] = ACTIONS(5490), + [anon_sym_SLASH_EQ] = ACTIONS(5490), + [anon_sym_AMP_EQ] = ACTIONS(5490), + [anon_sym_PIPE_EQ] = ACTIONS(5490), + [anon_sym_xor_EQ] = ACTIONS(5490), + [anon_sym_LT_LT_EQ] = ACTIONS(5490), + [anon_sym_GT_GT_EQ] = ACTIONS(5490), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5490), + [anon_sym_return] = ACTIONS(5492), + [anon_sym_yield] = ACTIONS(5492), + [anon_sym_COLON] = ACTIONS(5490), + [anon_sym_break] = ACTIONS(5492), + [anon_sym_continue] = ACTIONS(5492), + [anon_sym_defer] = ACTIONS(5492), + [anon_sym_errdefer] = ACTIONS(5492), + [anon_sym_if] = ACTIONS(5492), + [anon_sym_else] = ACTIONS(5492), + [anon_sym_while] = ACTIONS(5492), + [anon_sym_expand] = ACTIONS(5492), + [anon_sym_for] = ACTIONS(5492), + [anon_sym_match] = ACTIONS(5492), + [anon_sym_DOT_DOT] = ACTIONS(5492), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5490), + [anon_sym_orelse] = ACTIONS(5492), + [anon_sym_or] = ACTIONS(5492), + [anon_sym_and] = ACTIONS(5492), + [anon_sym_EQ_EQ] = ACTIONS(5490), + [anon_sym_BANG_EQ] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5492), + [anon_sym_LT_EQ] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5492), + [anon_sym_GT_EQ] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5492), + [anon_sym_xor] = ACTIONS(5492), + [anon_sym_LT_LT] = ACTIONS(5492), + [anon_sym_GT_GT] = ACTIONS(5492), + [anon_sym_LT_LT_PIPE] = ACTIONS(5492), + [anon_sym_PLUS] = ACTIONS(5492), + [anon_sym_SLASH] = ACTIONS(5492), + [anon_sym_catch] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5490), + [anon_sym_try] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(5492), + [anon_sym_CARET] = ACTIONS(5490), + [anon_sym_true] = ACTIONS(5492), + [anon_sym_false] = ACTIONS(5492), + [anon_sym_null] = ACTIONS(5492), + [anon_sym_unreachable] = ACTIONS(5492), + [anon_sym_undefined] = ACTIONS(5492), + [sym_sink] = ACTIONS(5492), + [sym_integer] = ACTIONS(5492), + [sym_float] = ACTIONS(5490), + [anon_sym_DQUOTE] = ACTIONS(5490), + [sym_multiline_string] = ACTIONS(5490), + [sym_character] = ACTIONS(5490), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5490), + }, + [STATE(2453)] = { + [ts_builtin_sym_end] = ACTIONS(5494), + [sym_identifier] = ACTIONS(5496), + [anon_sym_import] = ACTIONS(5496), + [anon_sym_test] = ACTIONS(5496), + [anon_sym_hide] = ACTIONS(5496), + [anon_sym_func] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5496), + [anon_sym_EQ] = ACTIONS(5496), + [anon_sym_struct] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_RPAREN] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5494), + [anon_sym_COMMA] = ACTIONS(5494), + [anon_sym_RBRACE] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5496), + [anon_sym_DOLLAR] = ACTIONS(5494), + [anon_sym_PIPE] = ACTIONS(5496), + [anon_sym_QMARK] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_SEMI] = ACTIONS(5494), + [anon_sym_RBRACK] = ACTIONS(5494), + [anon_sym_void] = ACTIONS(5496), + [anon_sym_noreturn] = ACTIONS(5496), + [anon_sym_type] = ACTIONS(5496), + [anon_sym_anyopaque] = ACTIONS(5496), + [anon_sym_bool] = ACTIONS(5496), + [anon_sym_int] = ACTIONS(5496), + [anon_sym_uint] = ACTIONS(5496), + [anon_sym_float] = ACTIONS(5496), + [anon_sym_range] = ACTIONS(5496), + [anon_sym_i8] = ACTIONS(5496), + [anon_sym_i16] = ACTIONS(5496), + [anon_sym_i32] = ACTIONS(5496), + [anon_sym_i64] = ACTIONS(5496), + [anon_sym_u8] = ACTIONS(5496), + [anon_sym_u16] = ACTIONS(5496), + [anon_sym_u32] = ACTIONS(5496), + [anon_sym_u64] = ACTIONS(5496), + [anon_sym_isize] = ACTIONS(5496), + [anon_sym_usize] = ACTIONS(5496), + [anon_sym_f32] = ACTIONS(5496), + [anon_sym_f64] = ACTIONS(5496), + [anon_sym_c_char] = ACTIONS(5496), + [anon_sym_c_schar] = ACTIONS(5496), + [anon_sym_c_uchar] = ACTIONS(5496), + [anon_sym_c_short] = ACTIONS(5496), + [anon_sym_c_ushort] = ACTIONS(5496), + [anon_sym_c_int] = ACTIONS(5496), + [anon_sym_c_uint] = ACTIONS(5496), + [anon_sym_c_long] = ACTIONS(5496), + [anon_sym_c_ulong] = ACTIONS(5496), + [anon_sym_c_longlong] = ACTIONS(5496), + [anon_sym_c_ulonglong] = ACTIONS(5496), + [anon_sym_c_float] = ACTIONS(5496), + [anon_sym_c_double] = ACTIONS(5496), + [anon_sym_c_longdouble] = ACTIONS(5496), + [anon_sym_PLUS_EQ] = ACTIONS(5494), + [anon_sym_DASH_EQ] = ACTIONS(5494), + [anon_sym_STAR_EQ] = ACTIONS(5494), + [anon_sym_SLASH_EQ] = ACTIONS(5494), + [anon_sym_AMP_EQ] = ACTIONS(5494), + [anon_sym_PIPE_EQ] = ACTIONS(5494), + [anon_sym_xor_EQ] = ACTIONS(5494), + [anon_sym_LT_LT_EQ] = ACTIONS(5494), + [anon_sym_GT_GT_EQ] = ACTIONS(5494), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5494), + [anon_sym_return] = ACTIONS(5496), + [anon_sym_yield] = ACTIONS(5496), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_break] = ACTIONS(5496), + [anon_sym_continue] = ACTIONS(5496), + [anon_sym_defer] = ACTIONS(5496), + [anon_sym_errdefer] = ACTIONS(5496), + [anon_sym_if] = ACTIONS(5496), + [anon_sym_else] = ACTIONS(5496), + [anon_sym_while] = ACTIONS(5496), + [anon_sym_expand] = ACTIONS(5496), + [anon_sym_for] = ACTIONS(5496), + [anon_sym_match] = ACTIONS(5496), + [anon_sym_DOT_DOT] = ACTIONS(5496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5494), + [anon_sym_orelse] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5496), + [anon_sym_and] = ACTIONS(5496), + [anon_sym_EQ_EQ] = ACTIONS(5494), + [anon_sym_BANG_EQ] = ACTIONS(5494), + [anon_sym_LT] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5494), + [anon_sym_GT] = ACTIONS(5496), + [anon_sym_GT_EQ] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5496), + [anon_sym_xor] = ACTIONS(5496), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5496), + [anon_sym_LT_LT_PIPE] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5496), + [anon_sym_SLASH] = ACTIONS(5496), + [anon_sym_catch] = ACTIONS(5496), + [anon_sym_TILDE] = ACTIONS(5494), + [anon_sym_try] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5496), + [anon_sym_CARET] = ACTIONS(5494), + [anon_sym_true] = ACTIONS(5496), + [anon_sym_false] = ACTIONS(5496), + [anon_sym_null] = ACTIONS(5496), + [anon_sym_unreachable] = ACTIONS(5496), + [anon_sym_undefined] = ACTIONS(5496), + [sym_sink] = ACTIONS(5496), + [sym_integer] = ACTIONS(5496), + [sym_float] = ACTIONS(5494), + [anon_sym_DQUOTE] = ACTIONS(5494), + [sym_multiline_string] = ACTIONS(5494), + [sym_character] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5494), + }, + [STATE(2454)] = { + [ts_builtin_sym_end] = ACTIONS(5498), + [sym_identifier] = ACTIONS(5500), + [anon_sym_import] = ACTIONS(5500), + [anon_sym_test] = ACTIONS(5500), + [anon_sym_hide] = ACTIONS(5500), + [anon_sym_func] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5500), + [anon_sym_EQ] = ACTIONS(5500), + [anon_sym_struct] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(5498), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5500), + [anon_sym_DOLLAR] = ACTIONS(5498), + [anon_sym_PIPE] = ACTIONS(5500), + [anon_sym_QMARK] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5498), + [anon_sym_SEMI] = ACTIONS(5498), + [anon_sym_RBRACK] = ACTIONS(5498), + [anon_sym_void] = ACTIONS(5500), + [anon_sym_noreturn] = ACTIONS(5500), + [anon_sym_type] = ACTIONS(5500), + [anon_sym_anyopaque] = ACTIONS(5500), + [anon_sym_bool] = ACTIONS(5500), + [anon_sym_int] = ACTIONS(5500), + [anon_sym_uint] = ACTIONS(5500), + [anon_sym_float] = ACTIONS(5500), + [anon_sym_range] = ACTIONS(5500), + [anon_sym_i8] = ACTIONS(5500), + [anon_sym_i16] = ACTIONS(5500), + [anon_sym_i32] = ACTIONS(5500), + [anon_sym_i64] = ACTIONS(5500), + [anon_sym_u8] = ACTIONS(5500), + [anon_sym_u16] = ACTIONS(5500), + [anon_sym_u32] = ACTIONS(5500), + [anon_sym_u64] = ACTIONS(5500), + [anon_sym_isize] = ACTIONS(5500), + [anon_sym_usize] = ACTIONS(5500), + [anon_sym_f32] = ACTIONS(5500), + [anon_sym_f64] = ACTIONS(5500), + [anon_sym_c_char] = ACTIONS(5500), + [anon_sym_c_schar] = ACTIONS(5500), + [anon_sym_c_uchar] = ACTIONS(5500), + [anon_sym_c_short] = ACTIONS(5500), + [anon_sym_c_ushort] = ACTIONS(5500), + [anon_sym_c_int] = ACTIONS(5500), + [anon_sym_c_uint] = ACTIONS(5500), + [anon_sym_c_long] = ACTIONS(5500), + [anon_sym_c_ulong] = ACTIONS(5500), + [anon_sym_c_longlong] = ACTIONS(5500), + [anon_sym_c_ulonglong] = ACTIONS(5500), + [anon_sym_c_float] = ACTIONS(5500), + [anon_sym_c_double] = ACTIONS(5500), + [anon_sym_c_longdouble] = ACTIONS(5500), + [anon_sym_PLUS_EQ] = ACTIONS(5498), + [anon_sym_DASH_EQ] = ACTIONS(5498), + [anon_sym_STAR_EQ] = ACTIONS(5498), + [anon_sym_SLASH_EQ] = ACTIONS(5498), + [anon_sym_AMP_EQ] = ACTIONS(5498), + [anon_sym_PIPE_EQ] = ACTIONS(5498), + [anon_sym_xor_EQ] = ACTIONS(5498), + [anon_sym_LT_LT_EQ] = ACTIONS(5498), + [anon_sym_GT_GT_EQ] = ACTIONS(5498), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5498), + [anon_sym_return] = ACTIONS(5500), + [anon_sym_yield] = ACTIONS(5500), + [anon_sym_COLON] = ACTIONS(5498), + [anon_sym_break] = ACTIONS(5500), + [anon_sym_continue] = ACTIONS(5500), + [anon_sym_defer] = ACTIONS(5500), + [anon_sym_errdefer] = ACTIONS(5500), + [anon_sym_if] = ACTIONS(5500), + [anon_sym_else] = ACTIONS(5500), + [anon_sym_while] = ACTIONS(5500), + [anon_sym_expand] = ACTIONS(5500), + [anon_sym_for] = ACTIONS(5500), + [anon_sym_match] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5498), + [anon_sym_orelse] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5498), + [anon_sym_BANG_EQ] = ACTIONS(5498), + [anon_sym_LT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5498), + [anon_sym_GT] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5500), + [anon_sym_xor] = ACTIONS(5500), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5500), + [anon_sym_LT_LT_PIPE] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5500), + [anon_sym_SLASH] = ACTIONS(5500), + [anon_sym_catch] = ACTIONS(5500), + [anon_sym_TILDE] = ACTIONS(5498), + [anon_sym_try] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5500), + [anon_sym_CARET] = ACTIONS(5498), + [anon_sym_true] = ACTIONS(5500), + [anon_sym_false] = ACTIONS(5500), + [anon_sym_null] = ACTIONS(5500), + [anon_sym_unreachable] = ACTIONS(5500), + [anon_sym_undefined] = ACTIONS(5500), + [sym_sink] = ACTIONS(5500), + [sym_integer] = ACTIONS(5500), + [sym_float] = ACTIONS(5498), + [anon_sym_DQUOTE] = ACTIONS(5498), + [sym_multiline_string] = ACTIONS(5498), + [sym_character] = ACTIONS(5498), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5498), + }, + [STATE(2455)] = { + [ts_builtin_sym_end] = ACTIONS(5502), + [sym_identifier] = ACTIONS(5504), + [anon_sym_import] = ACTIONS(5504), + [anon_sym_test] = ACTIONS(5504), + [anon_sym_hide] = ACTIONS(5504), + [anon_sym_func] = ACTIONS(5504), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(5504), + [anon_sym_struct] = ACTIONS(5504), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5502), + [anon_sym_COMMA] = ACTIONS(5502), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5504), + [anon_sym_DOLLAR] = ACTIONS(5502), + [anon_sym_PIPE] = ACTIONS(5504), + [anon_sym_QMARK] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(5502), + [anon_sym_RBRACK] = ACTIONS(5502), + [anon_sym_void] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym_type] = ACTIONS(5504), + [anon_sym_anyopaque] = ACTIONS(5504), + [anon_sym_bool] = ACTIONS(5504), + [anon_sym_int] = ACTIONS(5504), + [anon_sym_uint] = ACTIONS(5504), + [anon_sym_float] = ACTIONS(5504), + [anon_sym_range] = ACTIONS(5504), + [anon_sym_i8] = ACTIONS(5504), + [anon_sym_i16] = ACTIONS(5504), + [anon_sym_i32] = ACTIONS(5504), + [anon_sym_i64] = ACTIONS(5504), + [anon_sym_u8] = ACTIONS(5504), + [anon_sym_u16] = ACTIONS(5504), + [anon_sym_u32] = ACTIONS(5504), + [anon_sym_u64] = ACTIONS(5504), + [anon_sym_isize] = ACTIONS(5504), + [anon_sym_usize] = ACTIONS(5504), + [anon_sym_f32] = ACTIONS(5504), + [anon_sym_f64] = ACTIONS(5504), + [anon_sym_c_char] = ACTIONS(5504), + [anon_sym_c_schar] = ACTIONS(5504), + [anon_sym_c_uchar] = ACTIONS(5504), + [anon_sym_c_short] = ACTIONS(5504), + [anon_sym_c_ushort] = ACTIONS(5504), + [anon_sym_c_int] = ACTIONS(5504), + [anon_sym_c_uint] = ACTIONS(5504), + [anon_sym_c_long] = ACTIONS(5504), + [anon_sym_c_ulong] = ACTIONS(5504), + [anon_sym_c_longlong] = ACTIONS(5504), + [anon_sym_c_ulonglong] = ACTIONS(5504), + [anon_sym_c_float] = ACTIONS(5504), + [anon_sym_c_double] = ACTIONS(5504), + [anon_sym_c_longdouble] = ACTIONS(5504), + [anon_sym_PLUS_EQ] = ACTIONS(5502), + [anon_sym_DASH_EQ] = ACTIONS(5502), + [anon_sym_STAR_EQ] = ACTIONS(5502), + [anon_sym_SLASH_EQ] = ACTIONS(5502), + [anon_sym_AMP_EQ] = ACTIONS(5502), + [anon_sym_PIPE_EQ] = ACTIONS(5502), + [anon_sym_xor_EQ] = ACTIONS(5502), + [anon_sym_LT_LT_EQ] = ACTIONS(5502), + [anon_sym_GT_GT_EQ] = ACTIONS(5502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5502), + [anon_sym_return] = ACTIONS(5504), + [anon_sym_yield] = ACTIONS(5504), + [anon_sym_COLON] = ACTIONS(5502), + [anon_sym_break] = ACTIONS(5504), + [anon_sym_continue] = ACTIONS(5504), + [anon_sym_defer] = ACTIONS(5504), + [anon_sym_errdefer] = ACTIONS(5504), + [anon_sym_if] = ACTIONS(5504), + [anon_sym_else] = ACTIONS(5504), + [anon_sym_while] = ACTIONS(5504), + [anon_sym_expand] = ACTIONS(5504), + [anon_sym_for] = ACTIONS(5504), + [anon_sym_match] = ACTIONS(5504), + [anon_sym_DOT_DOT] = ACTIONS(5504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5502), + [anon_sym_orelse] = ACTIONS(5504), + [anon_sym_or] = ACTIONS(5504), + [anon_sym_and] = ACTIONS(5504), + [anon_sym_EQ_EQ] = ACTIONS(5502), + [anon_sym_BANG_EQ] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_LT_EQ] = ACTIONS(5502), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_GT_EQ] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_xor] = ACTIONS(5504), + [anon_sym_LT_LT] = ACTIONS(5504), + [anon_sym_GT_GT] = ACTIONS(5504), + [anon_sym_LT_LT_PIPE] = ACTIONS(5504), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_SLASH] = ACTIONS(5504), + [anon_sym_catch] = ACTIONS(5504), + [anon_sym_TILDE] = ACTIONS(5502), + [anon_sym_try] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5502), + [anon_sym_true] = ACTIONS(5504), + [anon_sym_false] = ACTIONS(5504), + [anon_sym_null] = ACTIONS(5504), + [anon_sym_unreachable] = ACTIONS(5504), + [anon_sym_undefined] = ACTIONS(5504), + [sym_sink] = ACTIONS(5504), + [sym_integer] = ACTIONS(5504), + [sym_float] = ACTIONS(5502), + [anon_sym_DQUOTE] = ACTIONS(5502), + [sym_multiline_string] = ACTIONS(5502), + [sym_character] = ACTIONS(5502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5502), + }, + [STATE(2456)] = { + [ts_builtin_sym_end] = ACTIONS(5506), + [sym_identifier] = ACTIONS(5508), + [anon_sym_import] = ACTIONS(5508), + [anon_sym_test] = ACTIONS(5508), + [anon_sym_hide] = ACTIONS(5508), + [anon_sym_func] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(5508), + [anon_sym_struct] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_LBRACE] = ACTIONS(5506), + [anon_sym_COMMA] = ACTIONS(5506), + [anon_sym_RBRACE] = ACTIONS(5506), + [anon_sym_DASH] = ACTIONS(5508), + [anon_sym_DOLLAR] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(5506), + [anon_sym_RBRACK] = ACTIONS(5506), + [anon_sym_void] = ACTIONS(5508), + [anon_sym_noreturn] = ACTIONS(5508), + [anon_sym_type] = ACTIONS(5508), + [anon_sym_anyopaque] = ACTIONS(5508), + [anon_sym_bool] = ACTIONS(5508), + [anon_sym_int] = ACTIONS(5508), + [anon_sym_uint] = ACTIONS(5508), + [anon_sym_float] = ACTIONS(5508), + [anon_sym_range] = ACTIONS(5508), + [anon_sym_i8] = ACTIONS(5508), + [anon_sym_i16] = ACTIONS(5508), + [anon_sym_i32] = ACTIONS(5508), + [anon_sym_i64] = ACTIONS(5508), + [anon_sym_u8] = ACTIONS(5508), + [anon_sym_u16] = ACTIONS(5508), + [anon_sym_u32] = ACTIONS(5508), + [anon_sym_u64] = ACTIONS(5508), + [anon_sym_isize] = ACTIONS(5508), + [anon_sym_usize] = ACTIONS(5508), + [anon_sym_f32] = ACTIONS(5508), + [anon_sym_f64] = ACTIONS(5508), + [anon_sym_c_char] = ACTIONS(5508), + [anon_sym_c_schar] = ACTIONS(5508), + [anon_sym_c_uchar] = ACTIONS(5508), + [anon_sym_c_short] = ACTIONS(5508), + [anon_sym_c_ushort] = ACTIONS(5508), + [anon_sym_c_int] = ACTIONS(5508), + [anon_sym_c_uint] = ACTIONS(5508), + [anon_sym_c_long] = ACTIONS(5508), + [anon_sym_c_ulong] = ACTIONS(5508), + [anon_sym_c_longlong] = ACTIONS(5508), + [anon_sym_c_ulonglong] = ACTIONS(5508), + [anon_sym_c_float] = ACTIONS(5508), + [anon_sym_c_double] = ACTIONS(5508), + [anon_sym_c_longdouble] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(5506), + [anon_sym_DASH_EQ] = ACTIONS(5506), + [anon_sym_STAR_EQ] = ACTIONS(5506), + [anon_sym_SLASH_EQ] = ACTIONS(5506), + [anon_sym_AMP_EQ] = ACTIONS(5506), + [anon_sym_PIPE_EQ] = ACTIONS(5506), + [anon_sym_xor_EQ] = ACTIONS(5506), + [anon_sym_LT_LT_EQ] = ACTIONS(5506), + [anon_sym_GT_GT_EQ] = ACTIONS(5506), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5506), + [anon_sym_return] = ACTIONS(5508), + [anon_sym_yield] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5506), + [anon_sym_break] = ACTIONS(5508), + [anon_sym_continue] = ACTIONS(5508), + [anon_sym_defer] = ACTIONS(5508), + [anon_sym_errdefer] = ACTIONS(5508), + [anon_sym_if] = ACTIONS(5508), + [anon_sym_else] = ACTIONS(5508), + [anon_sym_while] = ACTIONS(5508), + [anon_sym_expand] = ACTIONS(5508), + [anon_sym_for] = ACTIONS(5508), + [anon_sym_match] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5506), + [anon_sym_orelse] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_LT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5506), + [anon_sym_GT] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_xor] = ACTIONS(5508), + [anon_sym_LT_LT] = ACTIONS(5508), + [anon_sym_GT_GT] = ACTIONS(5508), + [anon_sym_LT_LT_PIPE] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5508), + [anon_sym_catch] = ACTIONS(5508), + [anon_sym_TILDE] = ACTIONS(5506), + [anon_sym_try] = ACTIONS(5508), + [anon_sym_DOT] = ACTIONS(5508), + [anon_sym_CARET] = ACTIONS(5506), + [anon_sym_true] = ACTIONS(5508), + [anon_sym_false] = ACTIONS(5508), + [anon_sym_null] = ACTIONS(5508), + [anon_sym_unreachable] = ACTIONS(5508), + [anon_sym_undefined] = ACTIONS(5508), + [sym_sink] = ACTIONS(5508), + [sym_integer] = ACTIONS(5508), + [sym_float] = ACTIONS(5506), + [anon_sym_DQUOTE] = ACTIONS(5506), + [sym_multiline_string] = ACTIONS(5506), + [sym_character] = ACTIONS(5506), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5506), + }, + [STATE(2457)] = { + [ts_builtin_sym_end] = ACTIONS(5510), + [sym_identifier] = ACTIONS(5512), + [anon_sym_import] = ACTIONS(5512), + [anon_sym_test] = ACTIONS(5512), + [anon_sym_hide] = ACTIONS(5512), + [anon_sym_func] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(5512), + [anon_sym_EQ] = ACTIONS(5512), + [anon_sym_struct] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5510), + [anon_sym_RPAREN] = ACTIONS(5510), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_COMMA] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_DOLLAR] = ACTIONS(5510), + [anon_sym_PIPE] = ACTIONS(5512), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5510), + [anon_sym_SEMI] = ACTIONS(5510), + [anon_sym_RBRACK] = ACTIONS(5510), + [anon_sym_void] = ACTIONS(5512), + [anon_sym_noreturn] = ACTIONS(5512), + [anon_sym_type] = ACTIONS(5512), + [anon_sym_anyopaque] = ACTIONS(5512), + [anon_sym_bool] = ACTIONS(5512), + [anon_sym_int] = ACTIONS(5512), + [anon_sym_uint] = ACTIONS(5512), + [anon_sym_float] = ACTIONS(5512), + [anon_sym_range] = ACTIONS(5512), + [anon_sym_i8] = ACTIONS(5512), + [anon_sym_i16] = ACTIONS(5512), + [anon_sym_i32] = ACTIONS(5512), + [anon_sym_i64] = ACTIONS(5512), + [anon_sym_u8] = ACTIONS(5512), + [anon_sym_u16] = ACTIONS(5512), + [anon_sym_u32] = ACTIONS(5512), + [anon_sym_u64] = ACTIONS(5512), + [anon_sym_isize] = ACTIONS(5512), + [anon_sym_usize] = ACTIONS(5512), + [anon_sym_f32] = ACTIONS(5512), + [anon_sym_f64] = ACTIONS(5512), + [anon_sym_c_char] = ACTIONS(5512), + [anon_sym_c_schar] = ACTIONS(5512), + [anon_sym_c_uchar] = ACTIONS(5512), + [anon_sym_c_short] = ACTIONS(5512), + [anon_sym_c_ushort] = ACTIONS(5512), + [anon_sym_c_int] = ACTIONS(5512), + [anon_sym_c_uint] = ACTIONS(5512), + [anon_sym_c_long] = ACTIONS(5512), + [anon_sym_c_ulong] = ACTIONS(5512), + [anon_sym_c_longlong] = ACTIONS(5512), + [anon_sym_c_ulonglong] = ACTIONS(5512), + [anon_sym_c_float] = ACTIONS(5512), + [anon_sym_c_double] = ACTIONS(5512), + [anon_sym_c_longdouble] = ACTIONS(5512), + [anon_sym_PLUS_EQ] = ACTIONS(5510), + [anon_sym_DASH_EQ] = ACTIONS(5510), + [anon_sym_STAR_EQ] = ACTIONS(5510), + [anon_sym_SLASH_EQ] = ACTIONS(5510), + [anon_sym_AMP_EQ] = ACTIONS(5510), + [anon_sym_PIPE_EQ] = ACTIONS(5510), + [anon_sym_xor_EQ] = ACTIONS(5510), + [anon_sym_LT_LT_EQ] = ACTIONS(5510), + [anon_sym_GT_GT_EQ] = ACTIONS(5510), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5510), + [anon_sym_return] = ACTIONS(5512), + [anon_sym_yield] = ACTIONS(5512), + [anon_sym_COLON] = ACTIONS(5510), + [anon_sym_break] = ACTIONS(5512), + [anon_sym_continue] = ACTIONS(5512), + [anon_sym_defer] = ACTIONS(5512), + [anon_sym_errdefer] = ACTIONS(5512), + [anon_sym_if] = ACTIONS(5512), + [anon_sym_else] = ACTIONS(5512), + [anon_sym_while] = ACTIONS(5512), + [anon_sym_expand] = ACTIONS(5512), + [anon_sym_for] = ACTIONS(5512), + [anon_sym_match] = ACTIONS(5512), + [anon_sym_DOT_DOT] = ACTIONS(5512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5510), + [anon_sym_orelse] = ACTIONS(5512), + [anon_sym_or] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5510), + [anon_sym_BANG_EQ] = ACTIONS(5510), + [anon_sym_LT] = ACTIONS(5512), + [anon_sym_LT_EQ] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_xor] = ACTIONS(5512), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5512), + [anon_sym_LT_LT_PIPE] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5512), + [anon_sym_catch] = ACTIONS(5512), + [anon_sym_TILDE] = ACTIONS(5510), + [anon_sym_try] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5510), + [anon_sym_true] = ACTIONS(5512), + [anon_sym_false] = ACTIONS(5512), + [anon_sym_null] = ACTIONS(5512), + [anon_sym_unreachable] = ACTIONS(5512), + [anon_sym_undefined] = ACTIONS(5512), + [sym_sink] = ACTIONS(5512), + [sym_integer] = ACTIONS(5512), + [sym_float] = ACTIONS(5510), + [anon_sym_DQUOTE] = ACTIONS(5510), + [sym_multiline_string] = ACTIONS(5510), + [sym_character] = ACTIONS(5510), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5510), + }, + [STATE(2458)] = { + [ts_builtin_sym_end] = ACTIONS(5514), + [sym_identifier] = ACTIONS(5516), + [anon_sym_import] = ACTIONS(5516), + [anon_sym_test] = ACTIONS(5516), + [anon_sym_hide] = ACTIONS(5516), + [anon_sym_func] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5516), + [anon_sym_EQ] = ACTIONS(5516), + [anon_sym_struct] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5514), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_COMMA] = ACTIONS(5514), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_DOLLAR] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5516), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_SEMI] = ACTIONS(5514), + [anon_sym_RBRACK] = ACTIONS(5514), + [anon_sym_void] = ACTIONS(5516), + [anon_sym_noreturn] = ACTIONS(5516), + [anon_sym_type] = ACTIONS(5516), + [anon_sym_anyopaque] = ACTIONS(5516), + [anon_sym_bool] = ACTIONS(5516), + [anon_sym_int] = ACTIONS(5516), + [anon_sym_uint] = ACTIONS(5516), + [anon_sym_float] = ACTIONS(5516), + [anon_sym_range] = ACTIONS(5516), + [anon_sym_i8] = ACTIONS(5516), + [anon_sym_i16] = ACTIONS(5516), + [anon_sym_i32] = ACTIONS(5516), + [anon_sym_i64] = ACTIONS(5516), + [anon_sym_u8] = ACTIONS(5516), + [anon_sym_u16] = ACTIONS(5516), + [anon_sym_u32] = ACTIONS(5516), + [anon_sym_u64] = ACTIONS(5516), + [anon_sym_isize] = ACTIONS(5516), + [anon_sym_usize] = ACTIONS(5516), + [anon_sym_f32] = ACTIONS(5516), + [anon_sym_f64] = ACTIONS(5516), + [anon_sym_c_char] = ACTIONS(5516), + [anon_sym_c_schar] = ACTIONS(5516), + [anon_sym_c_uchar] = ACTIONS(5516), + [anon_sym_c_short] = ACTIONS(5516), + [anon_sym_c_ushort] = ACTIONS(5516), + [anon_sym_c_int] = ACTIONS(5516), + [anon_sym_c_uint] = ACTIONS(5516), + [anon_sym_c_long] = ACTIONS(5516), + [anon_sym_c_ulong] = ACTIONS(5516), + [anon_sym_c_longlong] = ACTIONS(5516), + [anon_sym_c_ulonglong] = ACTIONS(5516), + [anon_sym_c_float] = ACTIONS(5516), + [anon_sym_c_double] = ACTIONS(5516), + [anon_sym_c_longdouble] = ACTIONS(5516), + [anon_sym_PLUS_EQ] = ACTIONS(5514), + [anon_sym_DASH_EQ] = ACTIONS(5514), + [anon_sym_STAR_EQ] = ACTIONS(5514), + [anon_sym_SLASH_EQ] = ACTIONS(5514), + [anon_sym_AMP_EQ] = ACTIONS(5514), + [anon_sym_PIPE_EQ] = ACTIONS(5514), + [anon_sym_xor_EQ] = ACTIONS(5514), + [anon_sym_LT_LT_EQ] = ACTIONS(5514), + [anon_sym_GT_GT_EQ] = ACTIONS(5514), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5514), + [anon_sym_return] = ACTIONS(5516), + [anon_sym_yield] = ACTIONS(5516), + [anon_sym_COLON] = ACTIONS(5514), + [anon_sym_break] = ACTIONS(5516), + [anon_sym_continue] = ACTIONS(5516), + [anon_sym_defer] = ACTIONS(5516), + [anon_sym_errdefer] = ACTIONS(5516), + [anon_sym_if] = ACTIONS(5516), + [anon_sym_else] = ACTIONS(5516), + [anon_sym_while] = ACTIONS(5516), + [anon_sym_expand] = ACTIONS(5516), + [anon_sym_for] = ACTIONS(5516), + [anon_sym_match] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5514), + [anon_sym_orelse] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5514), + [anon_sym_BANG_EQ] = ACTIONS(5514), + [anon_sym_LT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_xor] = ACTIONS(5516), + [anon_sym_LT_LT] = ACTIONS(5516), + [anon_sym_GT_GT] = ACTIONS(5516), + [anon_sym_LT_LT_PIPE] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_SLASH] = ACTIONS(5516), + [anon_sym_catch] = ACTIONS(5516), + [anon_sym_TILDE] = ACTIONS(5514), + [anon_sym_try] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5516), + [anon_sym_CARET] = ACTIONS(5514), + [anon_sym_true] = ACTIONS(5516), + [anon_sym_false] = ACTIONS(5516), + [anon_sym_null] = ACTIONS(5516), + [anon_sym_unreachable] = ACTIONS(5516), + [anon_sym_undefined] = ACTIONS(5516), + [sym_sink] = ACTIONS(5516), + [sym_integer] = ACTIONS(5516), + [sym_float] = ACTIONS(5514), + [anon_sym_DQUOTE] = ACTIONS(5514), + [sym_multiline_string] = ACTIONS(5514), + [sym_character] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5514), + }, + [STATE(2459)] = { + [ts_builtin_sym_end] = ACTIONS(5518), + [sym_identifier] = ACTIONS(5520), + [anon_sym_import] = ACTIONS(5520), + [anon_sym_test] = ACTIONS(5520), + [anon_sym_hide] = ACTIONS(5520), + [anon_sym_func] = ACTIONS(5520), + [anon_sym_BANG] = ACTIONS(5520), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_struct] = ACTIONS(5520), + [anon_sym_LPAREN] = ACTIONS(5518), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_RBRACE] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_DOLLAR] = ACTIONS(5518), + [anon_sym_PIPE] = ACTIONS(5520), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_SEMI] = ACTIONS(5518), + [anon_sym_RBRACK] = ACTIONS(5518), + [anon_sym_void] = ACTIONS(5520), + [anon_sym_noreturn] = ACTIONS(5520), + [anon_sym_type] = ACTIONS(5520), + [anon_sym_anyopaque] = ACTIONS(5520), + [anon_sym_bool] = ACTIONS(5520), + [anon_sym_int] = ACTIONS(5520), + [anon_sym_uint] = ACTIONS(5520), + [anon_sym_float] = ACTIONS(5520), + [anon_sym_range] = ACTIONS(5520), + [anon_sym_i8] = ACTIONS(5520), + [anon_sym_i16] = ACTIONS(5520), + [anon_sym_i32] = ACTIONS(5520), + [anon_sym_i64] = ACTIONS(5520), + [anon_sym_u8] = ACTIONS(5520), + [anon_sym_u16] = ACTIONS(5520), + [anon_sym_u32] = ACTIONS(5520), + [anon_sym_u64] = ACTIONS(5520), + [anon_sym_isize] = ACTIONS(5520), + [anon_sym_usize] = ACTIONS(5520), + [anon_sym_f32] = ACTIONS(5520), + [anon_sym_f64] = ACTIONS(5520), + [anon_sym_c_char] = ACTIONS(5520), + [anon_sym_c_schar] = ACTIONS(5520), + [anon_sym_c_uchar] = ACTIONS(5520), + [anon_sym_c_short] = ACTIONS(5520), + [anon_sym_c_ushort] = ACTIONS(5520), + [anon_sym_c_int] = ACTIONS(5520), + [anon_sym_c_uint] = ACTIONS(5520), + [anon_sym_c_long] = ACTIONS(5520), + [anon_sym_c_ulong] = ACTIONS(5520), + [anon_sym_c_longlong] = ACTIONS(5520), + [anon_sym_c_ulonglong] = ACTIONS(5520), + [anon_sym_c_float] = ACTIONS(5520), + [anon_sym_c_double] = ACTIONS(5520), + [anon_sym_c_longdouble] = ACTIONS(5520), + [anon_sym_PLUS_EQ] = ACTIONS(5518), + [anon_sym_DASH_EQ] = ACTIONS(5518), + [anon_sym_STAR_EQ] = ACTIONS(5518), + [anon_sym_SLASH_EQ] = ACTIONS(5518), + [anon_sym_AMP_EQ] = ACTIONS(5518), + [anon_sym_PIPE_EQ] = ACTIONS(5518), + [anon_sym_xor_EQ] = ACTIONS(5518), + [anon_sym_LT_LT_EQ] = ACTIONS(5518), + [anon_sym_GT_GT_EQ] = ACTIONS(5518), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5518), + [anon_sym_return] = ACTIONS(5520), + [anon_sym_yield] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(5518), + [anon_sym_break] = ACTIONS(5520), + [anon_sym_continue] = ACTIONS(5520), + [anon_sym_defer] = ACTIONS(5520), + [anon_sym_errdefer] = ACTIONS(5520), + [anon_sym_if] = ACTIONS(5520), + [anon_sym_else] = ACTIONS(5520), + [anon_sym_while] = ACTIONS(5520), + [anon_sym_expand] = ACTIONS(5520), + [anon_sym_for] = ACTIONS(5520), + [anon_sym_match] = ACTIONS(5520), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5518), + [anon_sym_orelse] = ACTIONS(5520), + [anon_sym_or] = ACTIONS(5520), + [anon_sym_and] = ACTIONS(5520), + [anon_sym_EQ_EQ] = ACTIONS(5518), + [anon_sym_BANG_EQ] = ACTIONS(5518), + [anon_sym_LT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5520), + [anon_sym_GT_EQ] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5520), + [anon_sym_xor] = ACTIONS(5520), + [anon_sym_LT_LT] = ACTIONS(5520), + [anon_sym_GT_GT] = ACTIONS(5520), + [anon_sym_LT_LT_PIPE] = ACTIONS(5520), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_SLASH] = ACTIONS(5520), + [anon_sym_catch] = ACTIONS(5520), + [anon_sym_TILDE] = ACTIONS(5518), + [anon_sym_try] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(5520), + [anon_sym_CARET] = ACTIONS(5518), + [anon_sym_true] = ACTIONS(5520), + [anon_sym_false] = ACTIONS(5520), + [anon_sym_null] = ACTIONS(5520), + [anon_sym_unreachable] = ACTIONS(5520), + [anon_sym_undefined] = ACTIONS(5520), + [sym_sink] = ACTIONS(5520), + [sym_integer] = ACTIONS(5520), + [sym_float] = ACTIONS(5518), + [anon_sym_DQUOTE] = ACTIONS(5518), + [sym_multiline_string] = ACTIONS(5518), + [sym_character] = ACTIONS(5518), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5518), + }, + [STATE(2460)] = { + [ts_builtin_sym_end] = ACTIONS(5522), + [sym_identifier] = ACTIONS(5524), + [anon_sym_import] = ACTIONS(5524), + [anon_sym_test] = ACTIONS(5524), + [anon_sym_hide] = ACTIONS(5524), + [anon_sym_func] = ACTIONS(5524), + [anon_sym_BANG] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5524), + [anon_sym_struct] = ACTIONS(5524), + [anon_sym_LPAREN] = ACTIONS(5522), + [anon_sym_RPAREN] = ACTIONS(5522), + [anon_sym_LBRACE] = ACTIONS(5522), + [anon_sym_COMMA] = ACTIONS(5522), + [anon_sym_RBRACE] = ACTIONS(5522), + [anon_sym_DASH] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5522), + [anon_sym_PIPE] = ACTIONS(5524), + [anon_sym_QMARK] = ACTIONS(5522), + [anon_sym_STAR] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(5522), + [anon_sym_void] = ACTIONS(5524), + [anon_sym_noreturn] = ACTIONS(5524), + [anon_sym_type] = ACTIONS(5524), + [anon_sym_anyopaque] = ACTIONS(5524), + [anon_sym_bool] = ACTIONS(5524), + [anon_sym_int] = ACTIONS(5524), + [anon_sym_uint] = ACTIONS(5524), + [anon_sym_float] = ACTIONS(5524), + [anon_sym_range] = ACTIONS(5524), + [anon_sym_i8] = ACTIONS(5524), + [anon_sym_i16] = ACTIONS(5524), + [anon_sym_i32] = ACTIONS(5524), + [anon_sym_i64] = ACTIONS(5524), + [anon_sym_u8] = ACTIONS(5524), + [anon_sym_u16] = ACTIONS(5524), + [anon_sym_u32] = ACTIONS(5524), + [anon_sym_u64] = ACTIONS(5524), + [anon_sym_isize] = ACTIONS(5524), + [anon_sym_usize] = ACTIONS(5524), + [anon_sym_f32] = ACTIONS(5524), + [anon_sym_f64] = ACTIONS(5524), + [anon_sym_c_char] = ACTIONS(5524), + [anon_sym_c_schar] = ACTIONS(5524), + [anon_sym_c_uchar] = ACTIONS(5524), + [anon_sym_c_short] = ACTIONS(5524), + [anon_sym_c_ushort] = ACTIONS(5524), + [anon_sym_c_int] = ACTIONS(5524), + [anon_sym_c_uint] = ACTIONS(5524), + [anon_sym_c_long] = ACTIONS(5524), + [anon_sym_c_ulong] = ACTIONS(5524), + [anon_sym_c_longlong] = ACTIONS(5524), + [anon_sym_c_ulonglong] = ACTIONS(5524), + [anon_sym_c_float] = ACTIONS(5524), + [anon_sym_c_double] = ACTIONS(5524), + [anon_sym_c_longdouble] = ACTIONS(5524), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_xor_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5522), + [anon_sym_return] = ACTIONS(5524), + [anon_sym_yield] = ACTIONS(5524), + [anon_sym_COLON] = ACTIONS(5522), + [anon_sym_break] = ACTIONS(5524), + [anon_sym_continue] = ACTIONS(5524), + [anon_sym_defer] = ACTIONS(5524), + [anon_sym_errdefer] = ACTIONS(5524), + [anon_sym_if] = ACTIONS(5524), + [anon_sym_else] = ACTIONS(5524), + [anon_sym_while] = ACTIONS(5524), + [anon_sym_expand] = ACTIONS(5524), + [anon_sym_for] = ACTIONS(5524), + [anon_sym_match] = ACTIONS(5524), + [anon_sym_DOT_DOT] = ACTIONS(5524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5522), + [anon_sym_orelse] = ACTIONS(5524), + [anon_sym_or] = ACTIONS(5524), + [anon_sym_and] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5522), + [anon_sym_BANG_EQ] = ACTIONS(5522), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_LT_EQ] = ACTIONS(5522), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5522), + [anon_sym_AMP] = ACTIONS(5524), + [anon_sym_xor] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5524), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_LT_LT_PIPE] = ACTIONS(5524), + [anon_sym_PLUS] = ACTIONS(5524), + [anon_sym_SLASH] = ACTIONS(5524), + [anon_sym_catch] = ACTIONS(5524), + [anon_sym_TILDE] = ACTIONS(5522), + [anon_sym_try] = ACTIONS(5524), + [anon_sym_DOT] = ACTIONS(5524), + [anon_sym_CARET] = ACTIONS(5522), + [anon_sym_true] = ACTIONS(5524), + [anon_sym_false] = ACTIONS(5524), + [anon_sym_null] = ACTIONS(5524), + [anon_sym_unreachable] = ACTIONS(5524), + [anon_sym_undefined] = ACTIONS(5524), + [sym_sink] = ACTIONS(5524), + [sym_integer] = ACTIONS(5524), + [sym_float] = ACTIONS(5522), + [anon_sym_DQUOTE] = ACTIONS(5522), + [sym_multiline_string] = ACTIONS(5522), + [sym_character] = ACTIONS(5522), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5522), + }, + [STATE(2461)] = { + [ts_builtin_sym_end] = ACTIONS(5526), + [sym_identifier] = ACTIONS(5528), + [anon_sym_import] = ACTIONS(5528), + [anon_sym_test] = ACTIONS(5528), + [anon_sym_hide] = ACTIONS(5528), + [anon_sym_func] = ACTIONS(5528), + [anon_sym_BANG] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(5528), + [anon_sym_struct] = ACTIONS(5528), + [anon_sym_LPAREN] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5526), + [anon_sym_COMMA] = ACTIONS(5526), + [anon_sym_RBRACE] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5528), + [anon_sym_QMARK] = ACTIONS(5526), + [anon_sym_STAR] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_RBRACK] = ACTIONS(5526), + [anon_sym_void] = ACTIONS(5528), + [anon_sym_noreturn] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_anyopaque] = ACTIONS(5528), + [anon_sym_bool] = ACTIONS(5528), + [anon_sym_int] = ACTIONS(5528), + [anon_sym_uint] = ACTIONS(5528), + [anon_sym_float] = ACTIONS(5528), + [anon_sym_range] = ACTIONS(5528), + [anon_sym_i8] = ACTIONS(5528), + [anon_sym_i16] = ACTIONS(5528), + [anon_sym_i32] = ACTIONS(5528), + [anon_sym_i64] = ACTIONS(5528), + [anon_sym_u8] = ACTIONS(5528), + [anon_sym_u16] = ACTIONS(5528), + [anon_sym_u32] = ACTIONS(5528), + [anon_sym_u64] = ACTIONS(5528), + [anon_sym_isize] = ACTIONS(5528), + [anon_sym_usize] = ACTIONS(5528), + [anon_sym_f32] = ACTIONS(5528), + [anon_sym_f64] = ACTIONS(5528), + [anon_sym_c_char] = ACTIONS(5528), + [anon_sym_c_schar] = ACTIONS(5528), + [anon_sym_c_uchar] = ACTIONS(5528), + [anon_sym_c_short] = ACTIONS(5528), + [anon_sym_c_ushort] = ACTIONS(5528), + [anon_sym_c_int] = ACTIONS(5528), + [anon_sym_c_uint] = ACTIONS(5528), + [anon_sym_c_long] = ACTIONS(5528), + [anon_sym_c_ulong] = ACTIONS(5528), + [anon_sym_c_longlong] = ACTIONS(5528), + [anon_sym_c_ulonglong] = ACTIONS(5528), + [anon_sym_c_float] = ACTIONS(5528), + [anon_sym_c_double] = ACTIONS(5528), + [anon_sym_c_longdouble] = ACTIONS(5528), + [anon_sym_PLUS_EQ] = ACTIONS(5526), + [anon_sym_DASH_EQ] = ACTIONS(5526), + [anon_sym_STAR_EQ] = ACTIONS(5526), + [anon_sym_SLASH_EQ] = ACTIONS(5526), + [anon_sym_AMP_EQ] = ACTIONS(5526), + [anon_sym_PIPE_EQ] = ACTIONS(5526), + [anon_sym_xor_EQ] = ACTIONS(5526), + [anon_sym_LT_LT_EQ] = ACTIONS(5526), + [anon_sym_GT_GT_EQ] = ACTIONS(5526), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5526), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_COLON] = ACTIONS(5526), + [anon_sym_break] = ACTIONS(5528), + [anon_sym_continue] = ACTIONS(5528), + [anon_sym_defer] = ACTIONS(5528), + [anon_sym_errdefer] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_else] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_expand] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_DOT_DOT] = ACTIONS(5528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5526), + [anon_sym_orelse] = ACTIONS(5528), + [anon_sym_or] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5526), + [anon_sym_BANG_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_LT_EQ] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_GT_EQ] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(5528), + [anon_sym_xor] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5528), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_LT_LT_PIPE] = ACTIONS(5528), + [anon_sym_PLUS] = ACTIONS(5528), + [anon_sym_SLASH] = ACTIONS(5528), + [anon_sym_catch] = ACTIONS(5528), + [anon_sym_TILDE] = ACTIONS(5526), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_CARET] = ACTIONS(5526), + [anon_sym_true] = ACTIONS(5528), + [anon_sym_false] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_unreachable] = ACTIONS(5528), + [anon_sym_undefined] = ACTIONS(5528), + [sym_sink] = ACTIONS(5528), + [sym_integer] = ACTIONS(5528), + [sym_float] = ACTIONS(5526), + [anon_sym_DQUOTE] = ACTIONS(5526), + [sym_multiline_string] = ACTIONS(5526), + [sym_character] = ACTIONS(5526), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5526), + }, + [STATE(2462)] = { + [ts_builtin_sym_end] = ACTIONS(5530), + [sym_identifier] = ACTIONS(5532), + [anon_sym_import] = ACTIONS(5532), + [anon_sym_test] = ACTIONS(5532), + [anon_sym_hide] = ACTIONS(5532), + [anon_sym_func] = ACTIONS(5532), + [anon_sym_BANG] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_struct] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_LBRACE] = ACTIONS(5530), + [anon_sym_COMMA] = ACTIONS(5530), + [anon_sym_RBRACE] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5532), + [anon_sym_QMARK] = ACTIONS(5530), + [anon_sym_STAR] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_RBRACK] = ACTIONS(5530), + [anon_sym_void] = ACTIONS(5532), + [anon_sym_noreturn] = ACTIONS(5532), + [anon_sym_type] = ACTIONS(5532), + [anon_sym_anyopaque] = ACTIONS(5532), + [anon_sym_bool] = ACTIONS(5532), + [anon_sym_int] = ACTIONS(5532), + [anon_sym_uint] = ACTIONS(5532), + [anon_sym_float] = ACTIONS(5532), + [anon_sym_range] = ACTIONS(5532), + [anon_sym_i8] = ACTIONS(5532), + [anon_sym_i16] = ACTIONS(5532), + [anon_sym_i32] = ACTIONS(5532), + [anon_sym_i64] = ACTIONS(5532), + [anon_sym_u8] = ACTIONS(5532), + [anon_sym_u16] = ACTIONS(5532), + [anon_sym_u32] = ACTIONS(5532), + [anon_sym_u64] = ACTIONS(5532), + [anon_sym_isize] = ACTIONS(5532), + [anon_sym_usize] = ACTIONS(5532), + [anon_sym_f32] = ACTIONS(5532), + [anon_sym_f64] = ACTIONS(5532), + [anon_sym_c_char] = ACTIONS(5532), + [anon_sym_c_schar] = ACTIONS(5532), + [anon_sym_c_uchar] = ACTIONS(5532), + [anon_sym_c_short] = ACTIONS(5532), + [anon_sym_c_ushort] = ACTIONS(5532), + [anon_sym_c_int] = ACTIONS(5532), + [anon_sym_c_uint] = ACTIONS(5532), + [anon_sym_c_long] = ACTIONS(5532), + [anon_sym_c_ulong] = ACTIONS(5532), + [anon_sym_c_longlong] = ACTIONS(5532), + [anon_sym_c_ulonglong] = ACTIONS(5532), + [anon_sym_c_float] = ACTIONS(5532), + [anon_sym_c_double] = ACTIONS(5532), + [anon_sym_c_longdouble] = ACTIONS(5532), + [anon_sym_PLUS_EQ] = ACTIONS(5530), + [anon_sym_DASH_EQ] = ACTIONS(5530), + [anon_sym_STAR_EQ] = ACTIONS(5530), + [anon_sym_SLASH_EQ] = ACTIONS(5530), + [anon_sym_AMP_EQ] = ACTIONS(5530), + [anon_sym_PIPE_EQ] = ACTIONS(5530), + [anon_sym_xor_EQ] = ACTIONS(5530), + [anon_sym_LT_LT_EQ] = ACTIONS(5530), + [anon_sym_GT_GT_EQ] = ACTIONS(5530), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5530), + [anon_sym_return] = ACTIONS(5532), + [anon_sym_yield] = ACTIONS(5532), + [anon_sym_COLON] = ACTIONS(5530), + [anon_sym_break] = ACTIONS(5532), + [anon_sym_continue] = ACTIONS(5532), + [anon_sym_defer] = ACTIONS(5532), + [anon_sym_errdefer] = ACTIONS(5532), + [anon_sym_if] = ACTIONS(5532), + [anon_sym_else] = ACTIONS(5532), + [anon_sym_while] = ACTIONS(5532), + [anon_sym_expand] = ACTIONS(5532), + [anon_sym_for] = ACTIONS(5532), + [anon_sym_match] = ACTIONS(5532), + [anon_sym_DOT_DOT] = ACTIONS(5532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5530), + [anon_sym_orelse] = ACTIONS(5532), + [anon_sym_or] = ACTIONS(5532), + [anon_sym_and] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5530), + [anon_sym_BANG_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_LT_EQ] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_GT_EQ] = ACTIONS(5530), + [anon_sym_AMP] = ACTIONS(5532), + [anon_sym_xor] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5532), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_LT_LT_PIPE] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_SLASH] = ACTIONS(5532), + [anon_sym_catch] = ACTIONS(5532), + [anon_sym_TILDE] = ACTIONS(5530), + [anon_sym_try] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5530), + [anon_sym_true] = ACTIONS(5532), + [anon_sym_false] = ACTIONS(5532), + [anon_sym_null] = ACTIONS(5532), + [anon_sym_unreachable] = ACTIONS(5532), + [anon_sym_undefined] = ACTIONS(5532), + [sym_sink] = ACTIONS(5532), + [sym_integer] = ACTIONS(5532), + [sym_float] = ACTIONS(5530), + [anon_sym_DQUOTE] = ACTIONS(5530), + [sym_multiline_string] = ACTIONS(5530), + [sym_character] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5530), + }, + [STATE(2463)] = { + [ts_builtin_sym_end] = ACTIONS(5534), + [sym_identifier] = ACTIONS(5536), + [anon_sym_import] = ACTIONS(5536), + [anon_sym_test] = ACTIONS(5536), + [anon_sym_hide] = ACTIONS(5536), + [anon_sym_func] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5536), + [anon_sym_EQ] = ACTIONS(5536), + [anon_sym_struct] = ACTIONS(5536), + [anon_sym_LPAREN] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_LBRACE] = ACTIONS(5534), + [anon_sym_COMMA] = ACTIONS(5534), + [anon_sym_RBRACE] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_DOLLAR] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5536), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_STAR] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_RBRACK] = ACTIONS(5534), + [anon_sym_void] = ACTIONS(5536), + [anon_sym_noreturn] = ACTIONS(5536), + [anon_sym_type] = ACTIONS(5536), + [anon_sym_anyopaque] = ACTIONS(5536), + [anon_sym_bool] = ACTIONS(5536), + [anon_sym_int] = ACTIONS(5536), + [anon_sym_uint] = ACTIONS(5536), + [anon_sym_float] = ACTIONS(5536), + [anon_sym_range] = ACTIONS(5536), + [anon_sym_i8] = ACTIONS(5536), + [anon_sym_i16] = ACTIONS(5536), + [anon_sym_i32] = ACTIONS(5536), + [anon_sym_i64] = ACTIONS(5536), + [anon_sym_u8] = ACTIONS(5536), + [anon_sym_u16] = ACTIONS(5536), + [anon_sym_u32] = ACTIONS(5536), + [anon_sym_u64] = ACTIONS(5536), + [anon_sym_isize] = ACTIONS(5536), + [anon_sym_usize] = ACTIONS(5536), + [anon_sym_f32] = ACTIONS(5536), + [anon_sym_f64] = ACTIONS(5536), + [anon_sym_c_char] = ACTIONS(5536), + [anon_sym_c_schar] = ACTIONS(5536), + [anon_sym_c_uchar] = ACTIONS(5536), + [anon_sym_c_short] = ACTIONS(5536), + [anon_sym_c_ushort] = ACTIONS(5536), + [anon_sym_c_int] = ACTIONS(5536), + [anon_sym_c_uint] = ACTIONS(5536), + [anon_sym_c_long] = ACTIONS(5536), + [anon_sym_c_ulong] = ACTIONS(5536), + [anon_sym_c_longlong] = ACTIONS(5536), + [anon_sym_c_ulonglong] = ACTIONS(5536), + [anon_sym_c_float] = ACTIONS(5536), + [anon_sym_c_double] = ACTIONS(5536), + [anon_sym_c_longdouble] = ACTIONS(5536), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_xor_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5534), + [anon_sym_return] = ACTIONS(5536), + [anon_sym_yield] = ACTIONS(5536), + [anon_sym_COLON] = ACTIONS(5534), + [anon_sym_break] = ACTIONS(5536), + [anon_sym_continue] = ACTIONS(5536), + [anon_sym_defer] = ACTIONS(5536), + [anon_sym_errdefer] = ACTIONS(5536), + [anon_sym_if] = ACTIONS(5536), + [anon_sym_else] = ACTIONS(5536), + [anon_sym_while] = ACTIONS(5536), + [anon_sym_expand] = ACTIONS(5536), + [anon_sym_for] = ACTIONS(5536), + [anon_sym_match] = ACTIONS(5536), + [anon_sym_DOT_DOT] = ACTIONS(5536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5534), + [anon_sym_orelse] = ACTIONS(5536), + [anon_sym_or] = ACTIONS(5536), + [anon_sym_and] = ACTIONS(5536), + [anon_sym_EQ_EQ] = ACTIONS(5534), + [anon_sym_BANG_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5536), + [anon_sym_LT_EQ] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5536), + [anon_sym_GT_EQ] = ACTIONS(5534), + [anon_sym_AMP] = ACTIONS(5536), + [anon_sym_xor] = ACTIONS(5536), + [anon_sym_LT_LT] = ACTIONS(5536), + [anon_sym_GT_GT] = ACTIONS(5536), + [anon_sym_LT_LT_PIPE] = ACTIONS(5536), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_SLASH] = ACTIONS(5536), + [anon_sym_catch] = ACTIONS(5536), + [anon_sym_TILDE] = ACTIONS(5534), + [anon_sym_try] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(5536), + [anon_sym_CARET] = ACTIONS(5534), + [anon_sym_true] = ACTIONS(5536), + [anon_sym_false] = ACTIONS(5536), + [anon_sym_null] = ACTIONS(5536), + [anon_sym_unreachable] = ACTIONS(5536), + [anon_sym_undefined] = ACTIONS(5536), + [sym_sink] = ACTIONS(5536), + [sym_integer] = ACTIONS(5536), + [sym_float] = ACTIONS(5534), + [anon_sym_DQUOTE] = ACTIONS(5534), + [sym_multiline_string] = ACTIONS(5534), + [sym_character] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5534), + }, + [STATE(2464)] = { + [ts_builtin_sym_end] = ACTIONS(5538), + [sym_identifier] = ACTIONS(5540), + [anon_sym_import] = ACTIONS(5540), + [anon_sym_test] = ACTIONS(5540), + [anon_sym_hide] = ACTIONS(5540), + [anon_sym_func] = ACTIONS(5540), + [anon_sym_BANG] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(5540), + [anon_sym_struct] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(5538), + [anon_sym_COMMA] = ACTIONS(5538), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5540), + [anon_sym_DOLLAR] = ACTIONS(5538), + [anon_sym_PIPE] = ACTIONS(5540), + [anon_sym_QMARK] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5540), + [anon_sym_LBRACK] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5538), + [anon_sym_RBRACK] = ACTIONS(5538), + [anon_sym_void] = ACTIONS(5540), + [anon_sym_noreturn] = ACTIONS(5540), + [anon_sym_type] = ACTIONS(5540), + [anon_sym_anyopaque] = ACTIONS(5540), + [anon_sym_bool] = ACTIONS(5540), + [anon_sym_int] = ACTIONS(5540), + [anon_sym_uint] = ACTIONS(5540), + [anon_sym_float] = ACTIONS(5540), + [anon_sym_range] = ACTIONS(5540), + [anon_sym_i8] = ACTIONS(5540), + [anon_sym_i16] = ACTIONS(5540), + [anon_sym_i32] = ACTIONS(5540), + [anon_sym_i64] = ACTIONS(5540), + [anon_sym_u8] = ACTIONS(5540), + [anon_sym_u16] = ACTIONS(5540), + [anon_sym_u32] = ACTIONS(5540), + [anon_sym_u64] = ACTIONS(5540), + [anon_sym_isize] = ACTIONS(5540), + [anon_sym_usize] = ACTIONS(5540), + [anon_sym_f32] = ACTIONS(5540), + [anon_sym_f64] = ACTIONS(5540), + [anon_sym_c_char] = ACTIONS(5540), + [anon_sym_c_schar] = ACTIONS(5540), + [anon_sym_c_uchar] = ACTIONS(5540), + [anon_sym_c_short] = ACTIONS(5540), + [anon_sym_c_ushort] = ACTIONS(5540), + [anon_sym_c_int] = ACTIONS(5540), + [anon_sym_c_uint] = ACTIONS(5540), + [anon_sym_c_long] = ACTIONS(5540), + [anon_sym_c_ulong] = ACTIONS(5540), + [anon_sym_c_longlong] = ACTIONS(5540), + [anon_sym_c_ulonglong] = ACTIONS(5540), + [anon_sym_c_float] = ACTIONS(5540), + [anon_sym_c_double] = ACTIONS(5540), + [anon_sym_c_longdouble] = ACTIONS(5540), + [anon_sym_PLUS_EQ] = ACTIONS(5538), + [anon_sym_DASH_EQ] = ACTIONS(5538), + [anon_sym_STAR_EQ] = ACTIONS(5538), + [anon_sym_SLASH_EQ] = ACTIONS(5538), + [anon_sym_AMP_EQ] = ACTIONS(5538), + [anon_sym_PIPE_EQ] = ACTIONS(5538), + [anon_sym_xor_EQ] = ACTIONS(5538), + [anon_sym_LT_LT_EQ] = ACTIONS(5538), + [anon_sym_GT_GT_EQ] = ACTIONS(5538), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5538), + [anon_sym_return] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5540), + [anon_sym_COLON] = ACTIONS(5538), + [anon_sym_break] = ACTIONS(5540), + [anon_sym_continue] = ACTIONS(5540), + [anon_sym_defer] = ACTIONS(5540), + [anon_sym_errdefer] = ACTIONS(5540), + [anon_sym_if] = ACTIONS(5540), + [anon_sym_else] = ACTIONS(5540), + [anon_sym_while] = ACTIONS(5540), + [anon_sym_expand] = ACTIONS(5540), + [anon_sym_for] = ACTIONS(5540), + [anon_sym_match] = ACTIONS(5540), + [anon_sym_DOT_DOT] = ACTIONS(5540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5538), + [anon_sym_orelse] = ACTIONS(5540), + [anon_sym_or] = ACTIONS(5540), + [anon_sym_and] = ACTIONS(5540), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5540), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT] = ACTIONS(5540), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5540), + [anon_sym_xor] = ACTIONS(5540), + [anon_sym_LT_LT] = ACTIONS(5540), + [anon_sym_GT_GT] = ACTIONS(5540), + [anon_sym_LT_LT_PIPE] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5540), + [anon_sym_SLASH] = ACTIONS(5540), + [anon_sym_catch] = ACTIONS(5540), + [anon_sym_TILDE] = ACTIONS(5538), + [anon_sym_try] = ACTIONS(5540), + [anon_sym_DOT] = ACTIONS(5540), + [anon_sym_CARET] = ACTIONS(5538), + [anon_sym_true] = ACTIONS(5540), + [anon_sym_false] = ACTIONS(5540), + [anon_sym_null] = ACTIONS(5540), + [anon_sym_unreachable] = ACTIONS(5540), + [anon_sym_undefined] = ACTIONS(5540), + [sym_sink] = ACTIONS(5540), + [sym_integer] = ACTIONS(5540), + [sym_float] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(5538), + [sym_multiline_string] = ACTIONS(5538), + [sym_character] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5538), + }, + [STATE(2465)] = { + [ts_builtin_sym_end] = ACTIONS(5542), + [sym_identifier] = ACTIONS(5544), + [anon_sym_import] = ACTIONS(5544), + [anon_sym_test] = ACTIONS(5544), + [anon_sym_hide] = ACTIONS(5544), + [anon_sym_func] = ACTIONS(5544), + [anon_sym_BANG] = ACTIONS(5544), + [anon_sym_EQ] = ACTIONS(5544), + [anon_sym_struct] = ACTIONS(5544), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_COMMA] = ACTIONS(5542), + [anon_sym_RBRACE] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5544), + [anon_sym_DOLLAR] = ACTIONS(5542), + [anon_sym_PIPE] = ACTIONS(5544), + [anon_sym_QMARK] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(5544), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_SEMI] = ACTIONS(5542), + [anon_sym_RBRACK] = ACTIONS(5542), + [anon_sym_void] = ACTIONS(5544), + [anon_sym_noreturn] = ACTIONS(5544), + [anon_sym_type] = ACTIONS(5544), + [anon_sym_anyopaque] = ACTIONS(5544), + [anon_sym_bool] = ACTIONS(5544), + [anon_sym_int] = ACTIONS(5544), + [anon_sym_uint] = ACTIONS(5544), + [anon_sym_float] = ACTIONS(5544), + [anon_sym_range] = ACTIONS(5544), + [anon_sym_i8] = ACTIONS(5544), + [anon_sym_i16] = ACTIONS(5544), + [anon_sym_i32] = ACTIONS(5544), + [anon_sym_i64] = ACTIONS(5544), + [anon_sym_u8] = ACTIONS(5544), + [anon_sym_u16] = ACTIONS(5544), + [anon_sym_u32] = ACTIONS(5544), + [anon_sym_u64] = ACTIONS(5544), + [anon_sym_isize] = ACTIONS(5544), + [anon_sym_usize] = ACTIONS(5544), + [anon_sym_f32] = ACTIONS(5544), + [anon_sym_f64] = ACTIONS(5544), + [anon_sym_c_char] = ACTIONS(5544), + [anon_sym_c_schar] = ACTIONS(5544), + [anon_sym_c_uchar] = ACTIONS(5544), + [anon_sym_c_short] = ACTIONS(5544), + [anon_sym_c_ushort] = ACTIONS(5544), + [anon_sym_c_int] = ACTIONS(5544), + [anon_sym_c_uint] = ACTIONS(5544), + [anon_sym_c_long] = ACTIONS(5544), + [anon_sym_c_ulong] = ACTIONS(5544), + [anon_sym_c_longlong] = ACTIONS(5544), + [anon_sym_c_ulonglong] = ACTIONS(5544), + [anon_sym_c_float] = ACTIONS(5544), + [anon_sym_c_double] = ACTIONS(5544), + [anon_sym_c_longdouble] = ACTIONS(5544), + [anon_sym_PLUS_EQ] = ACTIONS(5542), + [anon_sym_DASH_EQ] = ACTIONS(5542), + [anon_sym_STAR_EQ] = ACTIONS(5542), + [anon_sym_SLASH_EQ] = ACTIONS(5542), + [anon_sym_AMP_EQ] = ACTIONS(5542), + [anon_sym_PIPE_EQ] = ACTIONS(5542), + [anon_sym_xor_EQ] = ACTIONS(5542), + [anon_sym_LT_LT_EQ] = ACTIONS(5542), + [anon_sym_GT_GT_EQ] = ACTIONS(5542), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5542), + [anon_sym_return] = ACTIONS(5544), + [anon_sym_yield] = ACTIONS(5544), + [anon_sym_COLON] = ACTIONS(5542), + [anon_sym_break] = ACTIONS(5544), + [anon_sym_continue] = ACTIONS(5544), + [anon_sym_defer] = ACTIONS(5544), + [anon_sym_errdefer] = ACTIONS(5544), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_else] = ACTIONS(5544), + [anon_sym_while] = ACTIONS(5544), + [anon_sym_expand] = ACTIONS(5544), + [anon_sym_for] = ACTIONS(5544), + [anon_sym_match] = ACTIONS(5544), + [anon_sym_DOT_DOT] = ACTIONS(5544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5542), + [anon_sym_orelse] = ACTIONS(5544), + [anon_sym_or] = ACTIONS(5544), + [anon_sym_and] = ACTIONS(5544), + [anon_sym_EQ_EQ] = ACTIONS(5542), + [anon_sym_BANG_EQ] = ACTIONS(5542), + [anon_sym_LT] = ACTIONS(5544), + [anon_sym_LT_EQ] = ACTIONS(5542), + [anon_sym_GT] = ACTIONS(5544), + [anon_sym_GT_EQ] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5544), + [anon_sym_xor] = ACTIONS(5544), + [anon_sym_LT_LT] = ACTIONS(5544), + [anon_sym_GT_GT] = ACTIONS(5544), + [anon_sym_LT_LT_PIPE] = ACTIONS(5544), + [anon_sym_PLUS] = ACTIONS(5544), + [anon_sym_SLASH] = ACTIONS(5544), + [anon_sym_catch] = ACTIONS(5544), + [anon_sym_TILDE] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5544), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_CARET] = ACTIONS(5542), + [anon_sym_true] = ACTIONS(5544), + [anon_sym_false] = ACTIONS(5544), + [anon_sym_null] = ACTIONS(5544), + [anon_sym_unreachable] = ACTIONS(5544), + [anon_sym_undefined] = ACTIONS(5544), + [sym_sink] = ACTIONS(5544), + [sym_integer] = ACTIONS(5544), + [sym_float] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [sym_multiline_string] = ACTIONS(5542), + [sym_character] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5542), + }, + [STATE(2466)] = { + [ts_builtin_sym_end] = ACTIONS(5546), + [sym_identifier] = ACTIONS(5548), + [anon_sym_import] = ACTIONS(5548), + [anon_sym_test] = ACTIONS(5548), + [anon_sym_hide] = ACTIONS(5548), + [anon_sym_func] = ACTIONS(5548), + [anon_sym_BANG] = ACTIONS(5548), + [anon_sym_EQ] = ACTIONS(5548), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_LPAREN] = ACTIONS(5546), + [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_LBRACE] = ACTIONS(5546), + [anon_sym_COMMA] = ACTIONS(5546), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_DOLLAR] = ACTIONS(5546), + [anon_sym_PIPE] = ACTIONS(5548), + [anon_sym_QMARK] = ACTIONS(5546), + [anon_sym_STAR] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_SEMI] = ACTIONS(5546), + [anon_sym_RBRACK] = ACTIONS(5546), + [anon_sym_void] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_type] = ACTIONS(5548), + [anon_sym_anyopaque] = ACTIONS(5548), + [anon_sym_bool] = ACTIONS(5548), + [anon_sym_int] = ACTIONS(5548), + [anon_sym_uint] = ACTIONS(5548), + [anon_sym_float] = ACTIONS(5548), + [anon_sym_range] = ACTIONS(5548), + [anon_sym_i8] = ACTIONS(5548), + [anon_sym_i16] = ACTIONS(5548), + [anon_sym_i32] = ACTIONS(5548), + [anon_sym_i64] = ACTIONS(5548), + [anon_sym_u8] = ACTIONS(5548), + [anon_sym_u16] = ACTIONS(5548), + [anon_sym_u32] = ACTIONS(5548), + [anon_sym_u64] = ACTIONS(5548), + [anon_sym_isize] = ACTIONS(5548), + [anon_sym_usize] = ACTIONS(5548), + [anon_sym_f32] = ACTIONS(5548), + [anon_sym_f64] = ACTIONS(5548), + [anon_sym_c_char] = ACTIONS(5548), + [anon_sym_c_schar] = ACTIONS(5548), + [anon_sym_c_uchar] = ACTIONS(5548), + [anon_sym_c_short] = ACTIONS(5548), + [anon_sym_c_ushort] = ACTIONS(5548), + [anon_sym_c_int] = ACTIONS(5548), + [anon_sym_c_uint] = ACTIONS(5548), + [anon_sym_c_long] = ACTIONS(5548), + [anon_sym_c_ulong] = ACTIONS(5548), + [anon_sym_c_longlong] = ACTIONS(5548), + [anon_sym_c_ulonglong] = ACTIONS(5548), + [anon_sym_c_float] = ACTIONS(5548), + [anon_sym_c_double] = ACTIONS(5548), + [anon_sym_c_longdouble] = ACTIONS(5548), + [anon_sym_PLUS_EQ] = ACTIONS(5546), + [anon_sym_DASH_EQ] = ACTIONS(5546), + [anon_sym_STAR_EQ] = ACTIONS(5546), + [anon_sym_SLASH_EQ] = ACTIONS(5546), + [anon_sym_AMP_EQ] = ACTIONS(5546), + [anon_sym_PIPE_EQ] = ACTIONS(5546), + [anon_sym_xor_EQ] = ACTIONS(5546), + [anon_sym_LT_LT_EQ] = ACTIONS(5546), + [anon_sym_GT_GT_EQ] = ACTIONS(5546), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5546), + [anon_sym_return] = ACTIONS(5548), + [anon_sym_yield] = ACTIONS(5548), + [anon_sym_COLON] = ACTIONS(5546), + [anon_sym_break] = ACTIONS(5548), + [anon_sym_continue] = ACTIONS(5548), + [anon_sym_defer] = ACTIONS(5548), + [anon_sym_errdefer] = ACTIONS(5548), + [anon_sym_if] = ACTIONS(5548), + [anon_sym_else] = ACTIONS(5548), + [anon_sym_while] = ACTIONS(5548), + [anon_sym_expand] = ACTIONS(5548), + [anon_sym_for] = ACTIONS(5548), + [anon_sym_match] = ACTIONS(5548), + [anon_sym_DOT_DOT] = ACTIONS(5548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5546), + [anon_sym_orelse] = ACTIONS(5548), + [anon_sym_or] = ACTIONS(5548), + [anon_sym_and] = ACTIONS(5548), + [anon_sym_EQ_EQ] = ACTIONS(5546), + [anon_sym_BANG_EQ] = ACTIONS(5546), + [anon_sym_LT] = ACTIONS(5548), + [anon_sym_LT_EQ] = ACTIONS(5546), + [anon_sym_GT] = ACTIONS(5548), + [anon_sym_GT_EQ] = ACTIONS(5546), + [anon_sym_AMP] = ACTIONS(5548), + [anon_sym_xor] = ACTIONS(5548), + [anon_sym_LT_LT] = ACTIONS(5548), + [anon_sym_GT_GT] = ACTIONS(5548), + [anon_sym_LT_LT_PIPE] = ACTIONS(5548), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_SLASH] = ACTIONS(5548), + [anon_sym_catch] = ACTIONS(5548), + [anon_sym_TILDE] = ACTIONS(5546), + [anon_sym_try] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5548), + [anon_sym_CARET] = ACTIONS(5546), + [anon_sym_true] = ACTIONS(5548), + [anon_sym_false] = ACTIONS(5548), + [anon_sym_null] = ACTIONS(5548), + [anon_sym_unreachable] = ACTIONS(5548), + [anon_sym_undefined] = ACTIONS(5548), + [sym_sink] = ACTIONS(5548), + [sym_integer] = ACTIONS(5548), + [sym_float] = ACTIONS(5546), + [anon_sym_DQUOTE] = ACTIONS(5546), + [sym_multiline_string] = ACTIONS(5546), + [sym_character] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5546), + }, + [STATE(2467)] = { + [ts_builtin_sym_end] = ACTIONS(5550), + [sym_identifier] = ACTIONS(5552), + [anon_sym_import] = ACTIONS(5552), + [anon_sym_test] = ACTIONS(5552), + [anon_sym_hide] = ACTIONS(5552), + [anon_sym_func] = ACTIONS(5552), + [anon_sym_BANG] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(5552), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_LPAREN] = ACTIONS(5550), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_LBRACE] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5552), + [anon_sym_DOLLAR] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5552), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5550), + [anon_sym_RBRACK] = ACTIONS(5550), + [anon_sym_void] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_type] = ACTIONS(5552), + [anon_sym_anyopaque] = ACTIONS(5552), + [anon_sym_bool] = ACTIONS(5552), + [anon_sym_int] = ACTIONS(5552), + [anon_sym_uint] = ACTIONS(5552), + [anon_sym_float] = ACTIONS(5552), + [anon_sym_range] = ACTIONS(5552), + [anon_sym_i8] = ACTIONS(5552), + [anon_sym_i16] = ACTIONS(5552), + [anon_sym_i32] = ACTIONS(5552), + [anon_sym_i64] = ACTIONS(5552), + [anon_sym_u8] = ACTIONS(5552), + [anon_sym_u16] = ACTIONS(5552), + [anon_sym_u32] = ACTIONS(5552), + [anon_sym_u64] = ACTIONS(5552), + [anon_sym_isize] = ACTIONS(5552), + [anon_sym_usize] = ACTIONS(5552), + [anon_sym_f32] = ACTIONS(5552), + [anon_sym_f64] = ACTIONS(5552), + [anon_sym_c_char] = ACTIONS(5552), + [anon_sym_c_schar] = ACTIONS(5552), + [anon_sym_c_uchar] = ACTIONS(5552), + [anon_sym_c_short] = ACTIONS(5552), + [anon_sym_c_ushort] = ACTIONS(5552), + [anon_sym_c_int] = ACTIONS(5552), + [anon_sym_c_uint] = ACTIONS(5552), + [anon_sym_c_long] = ACTIONS(5552), + [anon_sym_c_ulong] = ACTIONS(5552), + [anon_sym_c_longlong] = ACTIONS(5552), + [anon_sym_c_ulonglong] = ACTIONS(5552), + [anon_sym_c_float] = ACTIONS(5552), + [anon_sym_c_double] = ACTIONS(5552), + [anon_sym_c_longdouble] = ACTIONS(5552), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_xor_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5550), + [anon_sym_return] = ACTIONS(5552), + [anon_sym_yield] = ACTIONS(5552), + [anon_sym_COLON] = ACTIONS(5550), + [anon_sym_break] = ACTIONS(5552), + [anon_sym_continue] = ACTIONS(5552), + [anon_sym_defer] = ACTIONS(5552), + [anon_sym_errdefer] = ACTIONS(5552), + [anon_sym_if] = ACTIONS(5552), + [anon_sym_else] = ACTIONS(5552), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_expand] = ACTIONS(5552), + [anon_sym_for] = ACTIONS(5552), + [anon_sym_match] = ACTIONS(5552), + [anon_sym_DOT_DOT] = ACTIONS(5552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5550), + [anon_sym_orelse] = ACTIONS(5552), + [anon_sym_or] = ACTIONS(5552), + [anon_sym_and] = ACTIONS(5552), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_LT] = ACTIONS(5552), + [anon_sym_LT_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5552), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP] = ACTIONS(5552), + [anon_sym_xor] = ACTIONS(5552), + [anon_sym_LT_LT] = ACTIONS(5552), + [anon_sym_GT_GT] = ACTIONS(5552), + [anon_sym_LT_LT_PIPE] = ACTIONS(5552), + [anon_sym_PLUS] = ACTIONS(5552), + [anon_sym_SLASH] = ACTIONS(5552), + [anon_sym_catch] = ACTIONS(5552), + [anon_sym_TILDE] = ACTIONS(5550), + [anon_sym_try] = ACTIONS(5552), + [anon_sym_DOT] = ACTIONS(5552), + [anon_sym_CARET] = ACTIONS(5550), + [anon_sym_true] = ACTIONS(5552), + [anon_sym_false] = ACTIONS(5552), + [anon_sym_null] = ACTIONS(5552), + [anon_sym_unreachable] = ACTIONS(5552), + [anon_sym_undefined] = ACTIONS(5552), + [sym_sink] = ACTIONS(5552), + [sym_integer] = ACTIONS(5552), + [sym_float] = ACTIONS(5550), + [anon_sym_DQUOTE] = ACTIONS(5550), + [sym_multiline_string] = ACTIONS(5550), + [sym_character] = ACTIONS(5550), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5550), + }, + [STATE(2468)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5554), + }, + [STATE(2469)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2470)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8610), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5556), + }, + [STATE(2471)] = { + [ts_builtin_sym_end] = ACTIONS(5558), + [sym_identifier] = ACTIONS(5560), + [anon_sym_import] = ACTIONS(5560), + [anon_sym_test] = ACTIONS(5560), + [anon_sym_hide] = ACTIONS(5560), + [anon_sym_func] = ACTIONS(5560), + [anon_sym_BANG] = ACTIONS(5560), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_struct] = ACTIONS(5560), + [anon_sym_LPAREN] = ACTIONS(5558), + [anon_sym_RPAREN] = ACTIONS(5558), + [anon_sym_LBRACE] = ACTIONS(5558), + [anon_sym_COMMA] = ACTIONS(5558), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_DOLLAR] = ACTIONS(5558), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5558), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_SEMI] = ACTIONS(5558), + [anon_sym_RBRACK] = ACTIONS(5558), + [anon_sym_void] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_type] = ACTIONS(5560), + [anon_sym_anyopaque] = ACTIONS(5560), + [anon_sym_bool] = ACTIONS(5560), + [anon_sym_int] = ACTIONS(5560), + [anon_sym_uint] = ACTIONS(5560), + [anon_sym_float] = ACTIONS(5560), + [anon_sym_range] = ACTIONS(5560), + [anon_sym_i8] = ACTIONS(5560), + [anon_sym_i16] = ACTIONS(5560), + [anon_sym_i32] = ACTIONS(5560), + [anon_sym_i64] = ACTIONS(5560), + [anon_sym_u8] = ACTIONS(5560), + [anon_sym_u16] = ACTIONS(5560), + [anon_sym_u32] = ACTIONS(5560), + [anon_sym_u64] = ACTIONS(5560), + [anon_sym_isize] = ACTIONS(5560), + [anon_sym_usize] = ACTIONS(5560), + [anon_sym_f32] = ACTIONS(5560), + [anon_sym_f64] = ACTIONS(5560), + [anon_sym_c_char] = ACTIONS(5560), + [anon_sym_c_schar] = ACTIONS(5560), + [anon_sym_c_uchar] = ACTIONS(5560), + [anon_sym_c_short] = ACTIONS(5560), + [anon_sym_c_ushort] = ACTIONS(5560), + [anon_sym_c_int] = ACTIONS(5560), + [anon_sym_c_uint] = ACTIONS(5560), + [anon_sym_c_long] = ACTIONS(5560), + [anon_sym_c_ulong] = ACTIONS(5560), + [anon_sym_c_longlong] = ACTIONS(5560), + [anon_sym_c_ulonglong] = ACTIONS(5560), + [anon_sym_c_float] = ACTIONS(5560), + [anon_sym_c_double] = ACTIONS(5560), + [anon_sym_c_longdouble] = ACTIONS(5560), + [anon_sym_PLUS_EQ] = ACTIONS(5558), + [anon_sym_DASH_EQ] = ACTIONS(5558), + [anon_sym_STAR_EQ] = ACTIONS(5558), + [anon_sym_SLASH_EQ] = ACTIONS(5558), + [anon_sym_AMP_EQ] = ACTIONS(5558), + [anon_sym_PIPE_EQ] = ACTIONS(5558), + [anon_sym_xor_EQ] = ACTIONS(5558), + [anon_sym_LT_LT_EQ] = ACTIONS(5558), + [anon_sym_GT_GT_EQ] = ACTIONS(5558), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5558), + [anon_sym_return] = ACTIONS(5560), + [anon_sym_yield] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5560), + [anon_sym_defer] = ACTIONS(5560), + [anon_sym_errdefer] = ACTIONS(5560), + [anon_sym_if] = ACTIONS(5560), + [anon_sym_else] = ACTIONS(5560), + [anon_sym_while] = ACTIONS(5560), + [anon_sym_expand] = ACTIONS(5560), + [anon_sym_for] = ACTIONS(5560), + [anon_sym_match] = ACTIONS(5560), + [anon_sym_DOT_DOT] = ACTIONS(5560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5558), + [anon_sym_orelse] = ACTIONS(5560), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5558), + [anon_sym_BANG_EQ] = ACTIONS(5558), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_EQ] = ACTIONS(5558), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_LT_LT_PIPE] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_catch] = ACTIONS(5560), + [anon_sym_TILDE] = ACTIONS(5558), + [anon_sym_try] = ACTIONS(5560), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5558), + [anon_sym_true] = ACTIONS(5560), + [anon_sym_false] = ACTIONS(5560), + [anon_sym_null] = ACTIONS(5560), + [anon_sym_unreachable] = ACTIONS(5560), + [anon_sym_undefined] = ACTIONS(5560), + [sym_sink] = ACTIONS(5560), + [sym_integer] = ACTIONS(5560), + [sym_float] = ACTIONS(5558), + [anon_sym_DQUOTE] = ACTIONS(5558), + [sym_multiline_string] = ACTIONS(5558), + [sym_character] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5558), + }, + [STATE(2472)] = { + [ts_builtin_sym_end] = ACTIONS(5562), + [sym_identifier] = ACTIONS(5564), + [anon_sym_import] = ACTIONS(5564), + [anon_sym_test] = ACTIONS(5564), + [anon_sym_hide] = ACTIONS(5564), + [anon_sym_func] = ACTIONS(5564), + [anon_sym_BANG] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(5564), + [anon_sym_struct] = ACTIONS(5564), + [anon_sym_LPAREN] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_DOLLAR] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5564), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym_RBRACK] = ACTIONS(5562), + [anon_sym_void] = ACTIONS(5564), + [anon_sym_noreturn] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_anyopaque] = ACTIONS(5564), + [anon_sym_bool] = ACTIONS(5564), + [anon_sym_int] = ACTIONS(5564), + [anon_sym_uint] = ACTIONS(5564), + [anon_sym_float] = ACTIONS(5564), + [anon_sym_range] = ACTIONS(5564), + [anon_sym_i8] = ACTIONS(5564), + [anon_sym_i16] = ACTIONS(5564), + [anon_sym_i32] = ACTIONS(5564), + [anon_sym_i64] = ACTIONS(5564), + [anon_sym_u8] = ACTIONS(5564), + [anon_sym_u16] = ACTIONS(5564), + [anon_sym_u32] = ACTIONS(5564), + [anon_sym_u64] = ACTIONS(5564), + [anon_sym_isize] = ACTIONS(5564), + [anon_sym_usize] = ACTIONS(5564), + [anon_sym_f32] = ACTIONS(5564), + [anon_sym_f64] = ACTIONS(5564), + [anon_sym_c_char] = ACTIONS(5564), + [anon_sym_c_schar] = ACTIONS(5564), + [anon_sym_c_uchar] = ACTIONS(5564), + [anon_sym_c_short] = ACTIONS(5564), + [anon_sym_c_ushort] = ACTIONS(5564), + [anon_sym_c_int] = ACTIONS(5564), + [anon_sym_c_uint] = ACTIONS(5564), + [anon_sym_c_long] = ACTIONS(5564), + [anon_sym_c_ulong] = ACTIONS(5564), + [anon_sym_c_longlong] = ACTIONS(5564), + [anon_sym_c_ulonglong] = ACTIONS(5564), + [anon_sym_c_float] = ACTIONS(5564), + [anon_sym_c_double] = ACTIONS(5564), + [anon_sym_c_longdouble] = ACTIONS(5564), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_xor_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5562), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_COLON] = ACTIONS(5562), + [anon_sym_break] = ACTIONS(5564), + [anon_sym_continue] = ACTIONS(5564), + [anon_sym_defer] = ACTIONS(5564), + [anon_sym_errdefer] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_else] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_expand] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_DOT_DOT] = ACTIONS(5564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5562), + [anon_sym_orelse] = ACTIONS(5564), + [anon_sym_or] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_LT] = ACTIONS(5564), + [anon_sym_LT_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5564), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym_xor] = ACTIONS(5564), + [anon_sym_LT_LT] = ACTIONS(5564), + [anon_sym_GT_GT] = ACTIONS(5564), + [anon_sym_LT_LT_PIPE] = ACTIONS(5564), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_SLASH] = ACTIONS(5564), + [anon_sym_catch] = ACTIONS(5564), + [anon_sym_TILDE] = ACTIONS(5562), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5562), + [anon_sym_true] = ACTIONS(5564), + [anon_sym_false] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_unreachable] = ACTIONS(5564), + [anon_sym_undefined] = ACTIONS(5564), + [sym_sink] = ACTIONS(5564), + [sym_integer] = ACTIONS(5564), + [sym_float] = ACTIONS(5562), + [anon_sym_DQUOTE] = ACTIONS(5562), + [sym_multiline_string] = ACTIONS(5562), + [sym_character] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5562), + }, + [STATE(2473)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8736), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2474)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8533), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5566), + }, + [STATE(2475)] = { + [ts_builtin_sym_end] = ACTIONS(5568), + [sym_identifier] = ACTIONS(5570), + [anon_sym_import] = ACTIONS(5570), + [anon_sym_test] = ACTIONS(5570), + [anon_sym_hide] = ACTIONS(5570), + [anon_sym_func] = ACTIONS(5570), + [anon_sym_BANG] = ACTIONS(5570), + [anon_sym_EQ] = ACTIONS(5570), + [anon_sym_struct] = ACTIONS(5570), + [anon_sym_LPAREN] = ACTIONS(5568), + [anon_sym_RPAREN] = ACTIONS(5568), + [anon_sym_LBRACE] = ACTIONS(5568), + [anon_sym_COMMA] = ACTIONS(5568), + [anon_sym_RBRACE] = ACTIONS(5568), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_DOLLAR] = ACTIONS(5568), + [anon_sym_PIPE] = ACTIONS(5570), + [anon_sym_QMARK] = ACTIONS(5568), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_SEMI] = ACTIONS(5568), + [anon_sym_RBRACK] = ACTIONS(5568), + [anon_sym_void] = ACTIONS(5570), + [anon_sym_noreturn] = ACTIONS(5570), + [anon_sym_type] = ACTIONS(5570), + [anon_sym_anyopaque] = ACTIONS(5570), + [anon_sym_bool] = ACTIONS(5570), + [anon_sym_int] = ACTIONS(5570), + [anon_sym_uint] = ACTIONS(5570), + [anon_sym_float] = ACTIONS(5570), + [anon_sym_range] = ACTIONS(5570), + [anon_sym_i8] = ACTIONS(5570), + [anon_sym_i16] = ACTIONS(5570), + [anon_sym_i32] = ACTIONS(5570), + [anon_sym_i64] = ACTIONS(5570), + [anon_sym_u8] = ACTIONS(5570), + [anon_sym_u16] = ACTIONS(5570), + [anon_sym_u32] = ACTIONS(5570), + [anon_sym_u64] = ACTIONS(5570), + [anon_sym_isize] = ACTIONS(5570), + [anon_sym_usize] = ACTIONS(5570), + [anon_sym_f32] = ACTIONS(5570), + [anon_sym_f64] = ACTIONS(5570), + [anon_sym_c_char] = ACTIONS(5570), + [anon_sym_c_schar] = ACTIONS(5570), + [anon_sym_c_uchar] = ACTIONS(5570), + [anon_sym_c_short] = ACTIONS(5570), + [anon_sym_c_ushort] = ACTIONS(5570), + [anon_sym_c_int] = ACTIONS(5570), + [anon_sym_c_uint] = ACTIONS(5570), + [anon_sym_c_long] = ACTIONS(5570), + [anon_sym_c_ulong] = ACTIONS(5570), + [anon_sym_c_longlong] = ACTIONS(5570), + [anon_sym_c_ulonglong] = ACTIONS(5570), + [anon_sym_c_float] = ACTIONS(5570), + [anon_sym_c_double] = ACTIONS(5570), + [anon_sym_c_longdouble] = ACTIONS(5570), + [anon_sym_PLUS_EQ] = ACTIONS(5568), + [anon_sym_DASH_EQ] = ACTIONS(5568), + [anon_sym_STAR_EQ] = ACTIONS(5568), + [anon_sym_SLASH_EQ] = ACTIONS(5568), + [anon_sym_AMP_EQ] = ACTIONS(5568), + [anon_sym_PIPE_EQ] = ACTIONS(5568), + [anon_sym_xor_EQ] = ACTIONS(5568), + [anon_sym_LT_LT_EQ] = ACTIONS(5568), + [anon_sym_GT_GT_EQ] = ACTIONS(5568), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5568), + [anon_sym_return] = ACTIONS(5570), + [anon_sym_yield] = ACTIONS(5570), + [anon_sym_COLON] = ACTIONS(5568), + [anon_sym_break] = ACTIONS(5570), + [anon_sym_continue] = ACTIONS(5570), + [anon_sym_defer] = ACTIONS(5570), + [anon_sym_errdefer] = ACTIONS(5570), + [anon_sym_if] = ACTIONS(5570), + [anon_sym_else] = ACTIONS(5570), + [anon_sym_while] = ACTIONS(5570), + [anon_sym_expand] = ACTIONS(5570), + [anon_sym_for] = ACTIONS(5570), + [anon_sym_match] = ACTIONS(5570), + [anon_sym_DOT_DOT] = ACTIONS(5570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5568), + [anon_sym_orelse] = ACTIONS(5570), + [anon_sym_or] = ACTIONS(5570), + [anon_sym_and] = ACTIONS(5570), + [anon_sym_EQ_EQ] = ACTIONS(5568), + [anon_sym_BANG_EQ] = ACTIONS(5568), + [anon_sym_LT] = ACTIONS(5570), + [anon_sym_LT_EQ] = ACTIONS(5568), + [anon_sym_GT] = ACTIONS(5570), + [anon_sym_GT_EQ] = ACTIONS(5568), + [anon_sym_AMP] = ACTIONS(5570), + [anon_sym_xor] = ACTIONS(5570), + [anon_sym_LT_LT] = ACTIONS(5570), + [anon_sym_GT_GT] = ACTIONS(5570), + [anon_sym_LT_LT_PIPE] = ACTIONS(5570), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_SLASH] = ACTIONS(5570), + [anon_sym_catch] = ACTIONS(5570), + [anon_sym_TILDE] = ACTIONS(5568), + [anon_sym_try] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5570), + [anon_sym_CARET] = ACTIONS(5568), + [anon_sym_true] = ACTIONS(5570), + [anon_sym_false] = ACTIONS(5570), + [anon_sym_null] = ACTIONS(5570), + [anon_sym_unreachable] = ACTIONS(5570), + [anon_sym_undefined] = ACTIONS(5570), + [sym_sink] = ACTIONS(5570), + [sym_integer] = ACTIONS(5570), + [sym_float] = ACTIONS(5568), + [anon_sym_DQUOTE] = ACTIONS(5568), + [sym_multiline_string] = ACTIONS(5568), + [sym_character] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5568), + }, + [STATE(2476)] = { + [ts_builtin_sym_end] = ACTIONS(5572), + [sym_identifier] = ACTIONS(5574), + [anon_sym_import] = ACTIONS(5574), + [anon_sym_test] = ACTIONS(5574), + [anon_sym_hide] = ACTIONS(5574), + [anon_sym_func] = ACTIONS(5574), + [anon_sym_BANG] = ACTIONS(5574), + [anon_sym_EQ] = ACTIONS(5574), + [anon_sym_struct] = ACTIONS(5574), + [anon_sym_LPAREN] = ACTIONS(5572), + [anon_sym_RPAREN] = ACTIONS(5572), + [anon_sym_LBRACE] = ACTIONS(5572), + [anon_sym_COMMA] = ACTIONS(5572), + [anon_sym_RBRACE] = ACTIONS(5572), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_DOLLAR] = ACTIONS(5572), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_QMARK] = ACTIONS(5572), + [anon_sym_STAR] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5572), + [anon_sym_SEMI] = ACTIONS(5572), + [anon_sym_RBRACK] = ACTIONS(5572), + [anon_sym_void] = ACTIONS(5574), + [anon_sym_noreturn] = ACTIONS(5574), + [anon_sym_type] = ACTIONS(5574), + [anon_sym_anyopaque] = ACTIONS(5574), + [anon_sym_bool] = ACTIONS(5574), + [anon_sym_int] = ACTIONS(5574), + [anon_sym_uint] = ACTIONS(5574), + [anon_sym_float] = ACTIONS(5574), + [anon_sym_range] = ACTIONS(5574), + [anon_sym_i8] = ACTIONS(5574), + [anon_sym_i16] = ACTIONS(5574), + [anon_sym_i32] = ACTIONS(5574), + [anon_sym_i64] = ACTIONS(5574), + [anon_sym_u8] = ACTIONS(5574), + [anon_sym_u16] = ACTIONS(5574), + [anon_sym_u32] = ACTIONS(5574), + [anon_sym_u64] = ACTIONS(5574), + [anon_sym_isize] = ACTIONS(5574), + [anon_sym_usize] = ACTIONS(5574), + [anon_sym_f32] = ACTIONS(5574), + [anon_sym_f64] = ACTIONS(5574), + [anon_sym_c_char] = ACTIONS(5574), + [anon_sym_c_schar] = ACTIONS(5574), + [anon_sym_c_uchar] = ACTIONS(5574), + [anon_sym_c_short] = ACTIONS(5574), + [anon_sym_c_ushort] = ACTIONS(5574), + [anon_sym_c_int] = ACTIONS(5574), + [anon_sym_c_uint] = ACTIONS(5574), + [anon_sym_c_long] = ACTIONS(5574), + [anon_sym_c_ulong] = ACTIONS(5574), + [anon_sym_c_longlong] = ACTIONS(5574), + [anon_sym_c_ulonglong] = ACTIONS(5574), + [anon_sym_c_float] = ACTIONS(5574), + [anon_sym_c_double] = ACTIONS(5574), + [anon_sym_c_longdouble] = ACTIONS(5574), + [anon_sym_PLUS_EQ] = ACTIONS(5572), + [anon_sym_DASH_EQ] = ACTIONS(5572), + [anon_sym_STAR_EQ] = ACTIONS(5572), + [anon_sym_SLASH_EQ] = ACTIONS(5572), + [anon_sym_AMP_EQ] = ACTIONS(5572), + [anon_sym_PIPE_EQ] = ACTIONS(5572), + [anon_sym_xor_EQ] = ACTIONS(5572), + [anon_sym_LT_LT_EQ] = ACTIONS(5572), + [anon_sym_GT_GT_EQ] = ACTIONS(5572), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5572), + [anon_sym_return] = ACTIONS(5574), + [anon_sym_yield] = ACTIONS(5574), + [anon_sym_COLON] = ACTIONS(5572), + [anon_sym_break] = ACTIONS(5574), + [anon_sym_continue] = ACTIONS(5574), + [anon_sym_defer] = ACTIONS(5574), + [anon_sym_errdefer] = ACTIONS(5574), + [anon_sym_if] = ACTIONS(5574), + [anon_sym_else] = ACTIONS(5574), + [anon_sym_while] = ACTIONS(5574), + [anon_sym_expand] = ACTIONS(5574), + [anon_sym_for] = ACTIONS(5574), + [anon_sym_match] = ACTIONS(5574), + [anon_sym_DOT_DOT] = ACTIONS(5574), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5572), + [anon_sym_orelse] = ACTIONS(5574), + [anon_sym_or] = ACTIONS(5574), + [anon_sym_and] = ACTIONS(5574), + [anon_sym_EQ_EQ] = ACTIONS(5572), + [anon_sym_BANG_EQ] = ACTIONS(5572), + [anon_sym_LT] = ACTIONS(5574), + [anon_sym_LT_EQ] = ACTIONS(5572), + [anon_sym_GT] = ACTIONS(5574), + [anon_sym_GT_EQ] = ACTIONS(5572), + [anon_sym_AMP] = ACTIONS(5574), + [anon_sym_xor] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [anon_sym_LT_LT_PIPE] = ACTIONS(5574), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5574), + [anon_sym_catch] = ACTIONS(5574), + [anon_sym_TILDE] = ACTIONS(5572), + [anon_sym_try] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5572), + [anon_sym_true] = ACTIONS(5574), + [anon_sym_false] = ACTIONS(5574), + [anon_sym_null] = ACTIONS(5574), + [anon_sym_unreachable] = ACTIONS(5574), + [anon_sym_undefined] = ACTIONS(5574), + [sym_sink] = ACTIONS(5574), + [sym_integer] = ACTIONS(5574), + [sym_float] = ACTIONS(5572), + [anon_sym_DQUOTE] = ACTIONS(5572), + [sym_multiline_string] = ACTIONS(5572), + [sym_character] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5572), + }, + [STATE(2477)] = { + [ts_builtin_sym_end] = ACTIONS(5576), + [sym_identifier] = ACTIONS(5578), + [anon_sym_import] = ACTIONS(5578), + [anon_sym_test] = ACTIONS(5578), + [anon_sym_hide] = ACTIONS(5578), + [anon_sym_func] = ACTIONS(5578), + [anon_sym_BANG] = ACTIONS(5578), + [anon_sym_EQ] = ACTIONS(5578), + [anon_sym_struct] = ACTIONS(5578), + [anon_sym_LPAREN] = ACTIONS(5576), + [anon_sym_RPAREN] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5576), + [anon_sym_COMMA] = ACTIONS(5576), + [anon_sym_RBRACE] = ACTIONS(5576), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_DOLLAR] = ACTIONS(5576), + [anon_sym_PIPE] = ACTIONS(5578), + [anon_sym_QMARK] = ACTIONS(5576), + [anon_sym_STAR] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym_SEMI] = ACTIONS(5576), + [anon_sym_RBRACK] = ACTIONS(5576), + [anon_sym_void] = ACTIONS(5578), + [anon_sym_noreturn] = ACTIONS(5578), + [anon_sym_type] = ACTIONS(5578), + [anon_sym_anyopaque] = ACTIONS(5578), + [anon_sym_bool] = ACTIONS(5578), + [anon_sym_int] = ACTIONS(5578), + [anon_sym_uint] = ACTIONS(5578), + [anon_sym_float] = ACTIONS(5578), + [anon_sym_range] = ACTIONS(5578), + [anon_sym_i8] = ACTIONS(5578), + [anon_sym_i16] = ACTIONS(5578), + [anon_sym_i32] = ACTIONS(5578), + [anon_sym_i64] = ACTIONS(5578), + [anon_sym_u8] = ACTIONS(5578), + [anon_sym_u16] = ACTIONS(5578), + [anon_sym_u32] = ACTIONS(5578), + [anon_sym_u64] = ACTIONS(5578), + [anon_sym_isize] = ACTIONS(5578), + [anon_sym_usize] = ACTIONS(5578), + [anon_sym_f32] = ACTIONS(5578), + [anon_sym_f64] = ACTIONS(5578), + [anon_sym_c_char] = ACTIONS(5578), + [anon_sym_c_schar] = ACTIONS(5578), + [anon_sym_c_uchar] = ACTIONS(5578), + [anon_sym_c_short] = ACTIONS(5578), + [anon_sym_c_ushort] = ACTIONS(5578), + [anon_sym_c_int] = ACTIONS(5578), + [anon_sym_c_uint] = ACTIONS(5578), + [anon_sym_c_long] = ACTIONS(5578), + [anon_sym_c_ulong] = ACTIONS(5578), + [anon_sym_c_longlong] = ACTIONS(5578), + [anon_sym_c_ulonglong] = ACTIONS(5578), + [anon_sym_c_float] = ACTIONS(5578), + [anon_sym_c_double] = ACTIONS(5578), + [anon_sym_c_longdouble] = ACTIONS(5578), + [anon_sym_PLUS_EQ] = ACTIONS(5576), + [anon_sym_DASH_EQ] = ACTIONS(5576), + [anon_sym_STAR_EQ] = ACTIONS(5576), + [anon_sym_SLASH_EQ] = ACTIONS(5576), + [anon_sym_AMP_EQ] = ACTIONS(5576), + [anon_sym_PIPE_EQ] = ACTIONS(5576), + [anon_sym_xor_EQ] = ACTIONS(5576), + [anon_sym_LT_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_GT_EQ] = ACTIONS(5576), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5576), + [anon_sym_return] = ACTIONS(5578), + [anon_sym_yield] = ACTIONS(5578), + [anon_sym_COLON] = ACTIONS(5576), + [anon_sym_break] = ACTIONS(5578), + [anon_sym_continue] = ACTIONS(5578), + [anon_sym_defer] = ACTIONS(5578), + [anon_sym_errdefer] = ACTIONS(5578), + [anon_sym_if] = ACTIONS(5578), + [anon_sym_else] = ACTIONS(5578), + [anon_sym_while] = ACTIONS(5578), + [anon_sym_expand] = ACTIONS(5578), + [anon_sym_for] = ACTIONS(5578), + [anon_sym_match] = ACTIONS(5578), + [anon_sym_DOT_DOT] = ACTIONS(5578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5576), + [anon_sym_orelse] = ACTIONS(5578), + [anon_sym_or] = ACTIONS(5578), + [anon_sym_and] = ACTIONS(5578), + [anon_sym_EQ_EQ] = ACTIONS(5576), + [anon_sym_BANG_EQ] = ACTIONS(5576), + [anon_sym_LT] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5578), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_AMP] = ACTIONS(5578), + [anon_sym_xor] = ACTIONS(5578), + [anon_sym_LT_LT] = ACTIONS(5578), + [anon_sym_GT_GT] = ACTIONS(5578), + [anon_sym_LT_LT_PIPE] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_SLASH] = ACTIONS(5578), + [anon_sym_catch] = ACTIONS(5578), + [anon_sym_TILDE] = ACTIONS(5576), + [anon_sym_try] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_CARET] = ACTIONS(5576), + [anon_sym_true] = ACTIONS(5578), + [anon_sym_false] = ACTIONS(5578), + [anon_sym_null] = ACTIONS(5578), + [anon_sym_unreachable] = ACTIONS(5578), + [anon_sym_undefined] = ACTIONS(5578), + [sym_sink] = ACTIONS(5578), + [sym_integer] = ACTIONS(5578), + [sym_float] = ACTIONS(5576), + [anon_sym_DQUOTE] = ACTIONS(5576), + [sym_multiline_string] = ACTIONS(5576), + [sym_character] = ACTIONS(5576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5576), + }, + [STATE(2478)] = { + [ts_builtin_sym_end] = ACTIONS(5580), + [sym_identifier] = ACTIONS(5582), + [anon_sym_import] = ACTIONS(5582), + [anon_sym_test] = ACTIONS(5582), + [anon_sym_hide] = ACTIONS(5582), + [anon_sym_func] = ACTIONS(5582), + [anon_sym_BANG] = ACTIONS(5582), + [anon_sym_EQ] = ACTIONS(5582), + [anon_sym_struct] = ACTIONS(5582), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(5580), + [anon_sym_LBRACE] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(5580), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_DOLLAR] = ACTIONS(5580), + [anon_sym_PIPE] = ACTIONS(5582), + [anon_sym_QMARK] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5580), + [anon_sym_SEMI] = ACTIONS(5580), + [anon_sym_RBRACK] = ACTIONS(5580), + [anon_sym_void] = ACTIONS(5582), + [anon_sym_noreturn] = ACTIONS(5582), + [anon_sym_type] = ACTIONS(5582), + [anon_sym_anyopaque] = ACTIONS(5582), + [anon_sym_bool] = ACTIONS(5582), + [anon_sym_int] = ACTIONS(5582), + [anon_sym_uint] = ACTIONS(5582), + [anon_sym_float] = ACTIONS(5582), + [anon_sym_range] = ACTIONS(5582), + [anon_sym_i8] = ACTIONS(5582), + [anon_sym_i16] = ACTIONS(5582), + [anon_sym_i32] = ACTIONS(5582), + [anon_sym_i64] = ACTIONS(5582), + [anon_sym_u8] = ACTIONS(5582), + [anon_sym_u16] = ACTIONS(5582), + [anon_sym_u32] = ACTIONS(5582), + [anon_sym_u64] = ACTIONS(5582), + [anon_sym_isize] = ACTIONS(5582), + [anon_sym_usize] = ACTIONS(5582), + [anon_sym_f32] = ACTIONS(5582), + [anon_sym_f64] = ACTIONS(5582), + [anon_sym_c_char] = ACTIONS(5582), + [anon_sym_c_schar] = ACTIONS(5582), + [anon_sym_c_uchar] = ACTIONS(5582), + [anon_sym_c_short] = ACTIONS(5582), + [anon_sym_c_ushort] = ACTIONS(5582), + [anon_sym_c_int] = ACTIONS(5582), + [anon_sym_c_uint] = ACTIONS(5582), + [anon_sym_c_long] = ACTIONS(5582), + [anon_sym_c_ulong] = ACTIONS(5582), + [anon_sym_c_longlong] = ACTIONS(5582), + [anon_sym_c_ulonglong] = ACTIONS(5582), + [anon_sym_c_float] = ACTIONS(5582), + [anon_sym_c_double] = ACTIONS(5582), + [anon_sym_c_longdouble] = ACTIONS(5582), + [anon_sym_PLUS_EQ] = ACTIONS(5580), + [anon_sym_DASH_EQ] = ACTIONS(5580), + [anon_sym_STAR_EQ] = ACTIONS(5580), + [anon_sym_SLASH_EQ] = ACTIONS(5580), + [anon_sym_AMP_EQ] = ACTIONS(5580), + [anon_sym_PIPE_EQ] = ACTIONS(5580), + [anon_sym_xor_EQ] = ACTIONS(5580), + [anon_sym_LT_LT_EQ] = ACTIONS(5580), + [anon_sym_GT_GT_EQ] = ACTIONS(5580), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5580), + [anon_sym_return] = ACTIONS(5582), + [anon_sym_yield] = ACTIONS(5582), + [anon_sym_COLON] = ACTIONS(5580), + [anon_sym_break] = ACTIONS(5582), + [anon_sym_continue] = ACTIONS(5582), + [anon_sym_defer] = ACTIONS(5582), + [anon_sym_errdefer] = ACTIONS(5582), + [anon_sym_if] = ACTIONS(5582), + [anon_sym_else] = ACTIONS(5582), + [anon_sym_while] = ACTIONS(5582), + [anon_sym_expand] = ACTIONS(5582), + [anon_sym_for] = ACTIONS(5582), + [anon_sym_match] = ACTIONS(5582), + [anon_sym_DOT_DOT] = ACTIONS(5582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5580), + [anon_sym_orelse] = ACTIONS(5582), + [anon_sym_or] = ACTIONS(5582), + [anon_sym_and] = ACTIONS(5582), + [anon_sym_EQ_EQ] = ACTIONS(5580), + [anon_sym_BANG_EQ] = ACTIONS(5580), + [anon_sym_LT] = ACTIONS(5582), + [anon_sym_LT_EQ] = ACTIONS(5580), + [anon_sym_GT] = ACTIONS(5582), + [anon_sym_GT_EQ] = ACTIONS(5580), + [anon_sym_AMP] = ACTIONS(5582), + [anon_sym_xor] = ACTIONS(5582), + [anon_sym_LT_LT] = ACTIONS(5582), + [anon_sym_GT_GT] = ACTIONS(5582), + [anon_sym_LT_LT_PIPE] = ACTIONS(5582), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_catch] = ACTIONS(5582), + [anon_sym_TILDE] = ACTIONS(5580), + [anon_sym_try] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(5582), + [anon_sym_CARET] = ACTIONS(5580), + [anon_sym_true] = ACTIONS(5582), + [anon_sym_false] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(5582), + [anon_sym_unreachable] = ACTIONS(5582), + [anon_sym_undefined] = ACTIONS(5582), + [sym_sink] = ACTIONS(5582), + [sym_integer] = ACTIONS(5582), + [sym_float] = ACTIONS(5580), + [anon_sym_DQUOTE] = ACTIONS(5580), + [sym_multiline_string] = ACTIONS(5580), + [sym_character] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5580), + }, + [STATE(2479)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8486), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8860), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(793), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(797), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(799), + [anon_sym_errdefer] = ACTIONS(801), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(805), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2480)] = { + [ts_builtin_sym_end] = ACTIONS(5584), + [sym_identifier] = ACTIONS(5586), + [anon_sym_import] = ACTIONS(5586), + [anon_sym_test] = ACTIONS(5586), + [anon_sym_hide] = ACTIONS(5586), + [anon_sym_func] = ACTIONS(5586), + [anon_sym_BANG] = ACTIONS(5586), + [anon_sym_EQ] = ACTIONS(5586), + [anon_sym_struct] = ACTIONS(5586), + [anon_sym_LPAREN] = ACTIONS(5584), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_LBRACE] = ACTIONS(5584), + [anon_sym_COMMA] = ACTIONS(5584), + [anon_sym_RBRACE] = ACTIONS(5584), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_DOLLAR] = ACTIONS(5584), + [anon_sym_PIPE] = ACTIONS(5586), + [anon_sym_QMARK] = ACTIONS(5584), + [anon_sym_STAR] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5584), + [anon_sym_SEMI] = ACTIONS(5584), + [anon_sym_RBRACK] = ACTIONS(5584), + [anon_sym_void] = ACTIONS(5586), + [anon_sym_noreturn] = ACTIONS(5586), + [anon_sym_type] = ACTIONS(5586), + [anon_sym_anyopaque] = ACTIONS(5586), + [anon_sym_bool] = ACTIONS(5586), + [anon_sym_int] = ACTIONS(5586), + [anon_sym_uint] = ACTIONS(5586), + [anon_sym_float] = ACTIONS(5586), + [anon_sym_range] = ACTIONS(5586), + [anon_sym_i8] = ACTIONS(5586), + [anon_sym_i16] = ACTIONS(5586), + [anon_sym_i32] = ACTIONS(5586), + [anon_sym_i64] = ACTIONS(5586), + [anon_sym_u8] = ACTIONS(5586), + [anon_sym_u16] = ACTIONS(5586), + [anon_sym_u32] = ACTIONS(5586), + [anon_sym_u64] = ACTIONS(5586), + [anon_sym_isize] = ACTIONS(5586), + [anon_sym_usize] = ACTIONS(5586), + [anon_sym_f32] = ACTIONS(5586), + [anon_sym_f64] = ACTIONS(5586), + [anon_sym_c_char] = ACTIONS(5586), + [anon_sym_c_schar] = ACTIONS(5586), + [anon_sym_c_uchar] = ACTIONS(5586), + [anon_sym_c_short] = ACTIONS(5586), + [anon_sym_c_ushort] = ACTIONS(5586), + [anon_sym_c_int] = ACTIONS(5586), + [anon_sym_c_uint] = ACTIONS(5586), + [anon_sym_c_long] = ACTIONS(5586), + [anon_sym_c_ulong] = ACTIONS(5586), + [anon_sym_c_longlong] = ACTIONS(5586), + [anon_sym_c_ulonglong] = ACTIONS(5586), + [anon_sym_c_float] = ACTIONS(5586), + [anon_sym_c_double] = ACTIONS(5586), + [anon_sym_c_longdouble] = ACTIONS(5586), + [anon_sym_PLUS_EQ] = ACTIONS(5584), + [anon_sym_DASH_EQ] = ACTIONS(5584), + [anon_sym_STAR_EQ] = ACTIONS(5584), + [anon_sym_SLASH_EQ] = ACTIONS(5584), + [anon_sym_AMP_EQ] = ACTIONS(5584), + [anon_sym_PIPE_EQ] = ACTIONS(5584), + [anon_sym_xor_EQ] = ACTIONS(5584), + [anon_sym_LT_LT_EQ] = ACTIONS(5584), + [anon_sym_GT_GT_EQ] = ACTIONS(5584), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5584), + [anon_sym_return] = ACTIONS(5586), + [anon_sym_yield] = ACTIONS(5586), + [anon_sym_COLON] = ACTIONS(5584), + [anon_sym_break] = ACTIONS(5586), + [anon_sym_continue] = ACTIONS(5586), + [anon_sym_defer] = ACTIONS(5586), + [anon_sym_errdefer] = ACTIONS(5586), + [anon_sym_if] = ACTIONS(5586), + [anon_sym_else] = ACTIONS(5586), + [anon_sym_while] = ACTIONS(5586), + [anon_sym_expand] = ACTIONS(5586), + [anon_sym_for] = ACTIONS(5586), + [anon_sym_match] = ACTIONS(5586), + [anon_sym_DOT_DOT] = ACTIONS(5586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5584), + [anon_sym_orelse] = ACTIONS(5586), + [anon_sym_or] = ACTIONS(5586), + [anon_sym_and] = ACTIONS(5586), + [anon_sym_EQ_EQ] = ACTIONS(5584), + [anon_sym_BANG_EQ] = ACTIONS(5584), + [anon_sym_LT] = ACTIONS(5586), + [anon_sym_LT_EQ] = ACTIONS(5584), + [anon_sym_GT] = ACTIONS(5586), + [anon_sym_GT_EQ] = ACTIONS(5584), + [anon_sym_AMP] = ACTIONS(5586), + [anon_sym_xor] = ACTIONS(5586), + [anon_sym_LT_LT] = ACTIONS(5586), + [anon_sym_GT_GT] = ACTIONS(5586), + [anon_sym_LT_LT_PIPE] = ACTIONS(5586), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_SLASH] = ACTIONS(5586), + [anon_sym_catch] = ACTIONS(5586), + [anon_sym_TILDE] = ACTIONS(5584), + [anon_sym_try] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(5586), + [anon_sym_CARET] = ACTIONS(5584), + [anon_sym_true] = ACTIONS(5586), + [anon_sym_false] = ACTIONS(5586), + [anon_sym_null] = ACTIONS(5586), + [anon_sym_unreachable] = ACTIONS(5586), + [anon_sym_undefined] = ACTIONS(5586), + [sym_sink] = ACTIONS(5586), + [sym_integer] = ACTIONS(5586), + [sym_float] = ACTIONS(5584), + [anon_sym_DQUOTE] = ACTIONS(5584), + [sym_multiline_string] = ACTIONS(5584), + [sym_character] = ACTIONS(5584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5584), + }, + [STATE(2481)] = { + [ts_builtin_sym_end] = ACTIONS(5588), + [sym_identifier] = ACTIONS(5590), + [anon_sym_import] = ACTIONS(5590), + [anon_sym_test] = ACTIONS(5590), + [anon_sym_hide] = ACTIONS(5590), + [anon_sym_func] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(5590), + [anon_sym_struct] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5588), + [anon_sym_RPAREN] = ACTIONS(5588), + [anon_sym_LBRACE] = ACTIONS(5588), + [anon_sym_COMMA] = ACTIONS(5588), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_DASH] = ACTIONS(5590), + [anon_sym_DOLLAR] = ACTIONS(5588), + [anon_sym_PIPE] = ACTIONS(5590), + [anon_sym_QMARK] = ACTIONS(5588), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(5588), + [anon_sym_SEMI] = ACTIONS(5588), + [anon_sym_RBRACK] = ACTIONS(5588), + [anon_sym_void] = ACTIONS(5590), + [anon_sym_noreturn] = ACTIONS(5590), + [anon_sym_type] = ACTIONS(5590), + [anon_sym_anyopaque] = ACTIONS(5590), + [anon_sym_bool] = ACTIONS(5590), + [anon_sym_int] = ACTIONS(5590), + [anon_sym_uint] = ACTIONS(5590), + [anon_sym_float] = ACTIONS(5590), + [anon_sym_range] = ACTIONS(5590), + [anon_sym_i8] = ACTIONS(5590), + [anon_sym_i16] = ACTIONS(5590), + [anon_sym_i32] = ACTIONS(5590), + [anon_sym_i64] = ACTIONS(5590), + [anon_sym_u8] = ACTIONS(5590), + [anon_sym_u16] = ACTIONS(5590), + [anon_sym_u32] = ACTIONS(5590), + [anon_sym_u64] = ACTIONS(5590), + [anon_sym_isize] = ACTIONS(5590), + [anon_sym_usize] = ACTIONS(5590), + [anon_sym_f32] = ACTIONS(5590), + [anon_sym_f64] = ACTIONS(5590), + [anon_sym_c_char] = ACTIONS(5590), + [anon_sym_c_schar] = ACTIONS(5590), + [anon_sym_c_uchar] = ACTIONS(5590), + [anon_sym_c_short] = ACTIONS(5590), + [anon_sym_c_ushort] = ACTIONS(5590), + [anon_sym_c_int] = ACTIONS(5590), + [anon_sym_c_uint] = ACTIONS(5590), + [anon_sym_c_long] = ACTIONS(5590), + [anon_sym_c_ulong] = ACTIONS(5590), + [anon_sym_c_longlong] = ACTIONS(5590), + [anon_sym_c_ulonglong] = ACTIONS(5590), + [anon_sym_c_float] = ACTIONS(5590), + [anon_sym_c_double] = ACTIONS(5590), + [anon_sym_c_longdouble] = ACTIONS(5590), + [anon_sym_PLUS_EQ] = ACTIONS(5588), + [anon_sym_DASH_EQ] = ACTIONS(5588), + [anon_sym_STAR_EQ] = ACTIONS(5588), + [anon_sym_SLASH_EQ] = ACTIONS(5588), + [anon_sym_AMP_EQ] = ACTIONS(5588), + [anon_sym_PIPE_EQ] = ACTIONS(5588), + [anon_sym_xor_EQ] = ACTIONS(5588), + [anon_sym_LT_LT_EQ] = ACTIONS(5588), + [anon_sym_GT_GT_EQ] = ACTIONS(5588), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5588), + [anon_sym_return] = ACTIONS(5590), + [anon_sym_yield] = ACTIONS(5590), + [anon_sym_COLON] = ACTIONS(5588), + [anon_sym_break] = ACTIONS(5590), + [anon_sym_continue] = ACTIONS(5590), + [anon_sym_defer] = ACTIONS(5590), + [anon_sym_errdefer] = ACTIONS(5590), + [anon_sym_if] = ACTIONS(5590), + [anon_sym_else] = ACTIONS(5590), + [anon_sym_while] = ACTIONS(5590), + [anon_sym_expand] = ACTIONS(5590), + [anon_sym_for] = ACTIONS(5590), + [anon_sym_match] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5588), + [anon_sym_orelse] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_EQ_EQ] = ACTIONS(5588), + [anon_sym_BANG_EQ] = ACTIONS(5588), + [anon_sym_LT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5588), + [anon_sym_GT] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5588), + [anon_sym_AMP] = ACTIONS(5590), + [anon_sym_xor] = ACTIONS(5590), + [anon_sym_LT_LT] = ACTIONS(5590), + [anon_sym_GT_GT] = ACTIONS(5590), + [anon_sym_LT_LT_PIPE] = ACTIONS(5590), + [anon_sym_PLUS] = ACTIONS(5590), + [anon_sym_SLASH] = ACTIONS(5590), + [anon_sym_catch] = ACTIONS(5590), + [anon_sym_TILDE] = ACTIONS(5588), + [anon_sym_try] = ACTIONS(5590), + [anon_sym_DOT] = ACTIONS(5590), + [anon_sym_CARET] = ACTIONS(5588), + [anon_sym_true] = ACTIONS(5590), + [anon_sym_false] = ACTIONS(5590), + [anon_sym_null] = ACTIONS(5590), + [anon_sym_unreachable] = ACTIONS(5590), + [anon_sym_undefined] = ACTIONS(5590), + [sym_sink] = ACTIONS(5590), + [sym_integer] = ACTIONS(5590), + [sym_float] = ACTIONS(5588), + [anon_sym_DQUOTE] = ACTIONS(5588), + [sym_multiline_string] = ACTIONS(5588), + [sym_character] = ACTIONS(5588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5588), + }, + [STATE(2482)] = { + [ts_builtin_sym_end] = ACTIONS(5592), + [sym_identifier] = ACTIONS(5594), + [anon_sym_import] = ACTIONS(5594), + [anon_sym_test] = ACTIONS(5594), + [anon_sym_hide] = ACTIONS(5594), + [anon_sym_func] = ACTIONS(5594), + [anon_sym_BANG] = ACTIONS(5594), + [anon_sym_EQ] = ACTIONS(5594), + [anon_sym_struct] = ACTIONS(5594), + [anon_sym_LPAREN] = ACTIONS(5592), + [anon_sym_RPAREN] = ACTIONS(5592), + [anon_sym_LBRACE] = ACTIONS(5592), + [anon_sym_COMMA] = ACTIONS(5592), + [anon_sym_RBRACE] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5594), + [anon_sym_DOLLAR] = ACTIONS(5592), + [anon_sym_PIPE] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_STAR] = ACTIONS(5594), + [anon_sym_LBRACK] = ACTIONS(5592), + [anon_sym_SEMI] = ACTIONS(5592), + [anon_sym_RBRACK] = ACTIONS(5592), + [anon_sym_void] = ACTIONS(5594), + [anon_sym_noreturn] = ACTIONS(5594), + [anon_sym_type] = ACTIONS(5594), + [anon_sym_anyopaque] = ACTIONS(5594), + [anon_sym_bool] = ACTIONS(5594), + [anon_sym_int] = ACTIONS(5594), + [anon_sym_uint] = ACTIONS(5594), + [anon_sym_float] = ACTIONS(5594), + [anon_sym_range] = ACTIONS(5594), + [anon_sym_i8] = ACTIONS(5594), + [anon_sym_i16] = ACTIONS(5594), + [anon_sym_i32] = ACTIONS(5594), + [anon_sym_i64] = ACTIONS(5594), + [anon_sym_u8] = ACTIONS(5594), + [anon_sym_u16] = ACTIONS(5594), + [anon_sym_u32] = ACTIONS(5594), + [anon_sym_u64] = ACTIONS(5594), + [anon_sym_isize] = ACTIONS(5594), + [anon_sym_usize] = ACTIONS(5594), + [anon_sym_f32] = ACTIONS(5594), + [anon_sym_f64] = ACTIONS(5594), + [anon_sym_c_char] = ACTIONS(5594), + [anon_sym_c_schar] = ACTIONS(5594), + [anon_sym_c_uchar] = ACTIONS(5594), + [anon_sym_c_short] = ACTIONS(5594), + [anon_sym_c_ushort] = ACTIONS(5594), + [anon_sym_c_int] = ACTIONS(5594), + [anon_sym_c_uint] = ACTIONS(5594), + [anon_sym_c_long] = ACTIONS(5594), + [anon_sym_c_ulong] = ACTIONS(5594), + [anon_sym_c_longlong] = ACTIONS(5594), + [anon_sym_c_ulonglong] = ACTIONS(5594), + [anon_sym_c_float] = ACTIONS(5594), + [anon_sym_c_double] = ACTIONS(5594), + [anon_sym_c_longdouble] = ACTIONS(5594), + [anon_sym_PLUS_EQ] = ACTIONS(5592), + [anon_sym_DASH_EQ] = ACTIONS(5592), + [anon_sym_STAR_EQ] = ACTIONS(5592), + [anon_sym_SLASH_EQ] = ACTIONS(5592), + [anon_sym_AMP_EQ] = ACTIONS(5592), + [anon_sym_PIPE_EQ] = ACTIONS(5592), + [anon_sym_xor_EQ] = ACTIONS(5592), + [anon_sym_LT_LT_EQ] = ACTIONS(5592), + [anon_sym_GT_GT_EQ] = ACTIONS(5592), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5592), + [anon_sym_return] = ACTIONS(5594), + [anon_sym_yield] = ACTIONS(5594), + [anon_sym_COLON] = ACTIONS(5592), + [anon_sym_break] = ACTIONS(5594), + [anon_sym_continue] = ACTIONS(5594), + [anon_sym_defer] = ACTIONS(5594), + [anon_sym_errdefer] = ACTIONS(5594), + [anon_sym_if] = ACTIONS(5594), + [anon_sym_else] = ACTIONS(5594), + [anon_sym_while] = ACTIONS(5594), + [anon_sym_expand] = ACTIONS(5594), + [anon_sym_for] = ACTIONS(5594), + [anon_sym_match] = ACTIONS(5594), + [anon_sym_DOT_DOT] = ACTIONS(5594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5592), + [anon_sym_orelse] = ACTIONS(5594), + [anon_sym_or] = ACTIONS(5594), + [anon_sym_and] = ACTIONS(5594), + [anon_sym_EQ_EQ] = ACTIONS(5592), + [anon_sym_BANG_EQ] = ACTIONS(5592), + [anon_sym_LT] = ACTIONS(5594), + [anon_sym_LT_EQ] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5594), + [anon_sym_GT_EQ] = ACTIONS(5592), + [anon_sym_AMP] = ACTIONS(5594), + [anon_sym_xor] = ACTIONS(5594), + [anon_sym_LT_LT] = ACTIONS(5594), + [anon_sym_GT_GT] = ACTIONS(5594), + [anon_sym_LT_LT_PIPE] = ACTIONS(5594), + [anon_sym_PLUS] = ACTIONS(5594), + [anon_sym_SLASH] = ACTIONS(5594), + [anon_sym_catch] = ACTIONS(5594), + [anon_sym_TILDE] = ACTIONS(5592), + [anon_sym_try] = ACTIONS(5594), + [anon_sym_DOT] = ACTIONS(5594), + [anon_sym_CARET] = ACTIONS(5592), + [anon_sym_true] = ACTIONS(5594), + [anon_sym_false] = ACTIONS(5594), + [anon_sym_null] = ACTIONS(5594), + [anon_sym_unreachable] = ACTIONS(5594), + [anon_sym_undefined] = ACTIONS(5594), + [sym_sink] = ACTIONS(5594), + [sym_integer] = ACTIONS(5594), + [sym_float] = ACTIONS(5592), + [anon_sym_DQUOTE] = ACTIONS(5592), + [sym_multiline_string] = ACTIONS(5592), + [sym_character] = ACTIONS(5592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5592), + }, + [STATE(2483)] = { + [ts_builtin_sym_end] = ACTIONS(5596), + [sym_identifier] = ACTIONS(5598), + [anon_sym_import] = ACTIONS(5598), + [anon_sym_test] = ACTIONS(5598), + [anon_sym_hide] = ACTIONS(5598), + [anon_sym_func] = ACTIONS(5598), + [anon_sym_BANG] = ACTIONS(5598), + [anon_sym_EQ] = ACTIONS(5598), + [anon_sym_struct] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5596), + [anon_sym_RPAREN] = ACTIONS(5596), + [anon_sym_LBRACE] = ACTIONS(5596), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_RBRACE] = ACTIONS(5596), + [anon_sym_DASH] = ACTIONS(5598), + [anon_sym_DOLLAR] = ACTIONS(5596), + [anon_sym_PIPE] = ACTIONS(5598), + [anon_sym_QMARK] = ACTIONS(5596), + [anon_sym_STAR] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5596), + [anon_sym_SEMI] = ACTIONS(5596), + [anon_sym_RBRACK] = ACTIONS(5596), + [anon_sym_void] = ACTIONS(5598), + [anon_sym_noreturn] = ACTIONS(5598), + [anon_sym_type] = ACTIONS(5598), + [anon_sym_anyopaque] = ACTIONS(5598), + [anon_sym_bool] = ACTIONS(5598), + [anon_sym_int] = ACTIONS(5598), + [anon_sym_uint] = ACTIONS(5598), + [anon_sym_float] = ACTIONS(5598), + [anon_sym_range] = ACTIONS(5598), + [anon_sym_i8] = ACTIONS(5598), + [anon_sym_i16] = ACTIONS(5598), + [anon_sym_i32] = ACTIONS(5598), + [anon_sym_i64] = ACTIONS(5598), + [anon_sym_u8] = ACTIONS(5598), + [anon_sym_u16] = ACTIONS(5598), + [anon_sym_u32] = ACTIONS(5598), + [anon_sym_u64] = ACTIONS(5598), + [anon_sym_isize] = ACTIONS(5598), + [anon_sym_usize] = ACTIONS(5598), + [anon_sym_f32] = ACTIONS(5598), + [anon_sym_f64] = ACTIONS(5598), + [anon_sym_c_char] = ACTIONS(5598), + [anon_sym_c_schar] = ACTIONS(5598), + [anon_sym_c_uchar] = ACTIONS(5598), + [anon_sym_c_short] = ACTIONS(5598), + [anon_sym_c_ushort] = ACTIONS(5598), + [anon_sym_c_int] = ACTIONS(5598), + [anon_sym_c_uint] = ACTIONS(5598), + [anon_sym_c_long] = ACTIONS(5598), + [anon_sym_c_ulong] = ACTIONS(5598), + [anon_sym_c_longlong] = ACTIONS(5598), + [anon_sym_c_ulonglong] = ACTIONS(5598), + [anon_sym_c_float] = ACTIONS(5598), + [anon_sym_c_double] = ACTIONS(5598), + [anon_sym_c_longdouble] = ACTIONS(5598), + [anon_sym_PLUS_EQ] = ACTIONS(5596), + [anon_sym_DASH_EQ] = ACTIONS(5596), + [anon_sym_STAR_EQ] = ACTIONS(5596), + [anon_sym_SLASH_EQ] = ACTIONS(5596), + [anon_sym_AMP_EQ] = ACTIONS(5596), + [anon_sym_PIPE_EQ] = ACTIONS(5596), + [anon_sym_xor_EQ] = ACTIONS(5596), + [anon_sym_LT_LT_EQ] = ACTIONS(5596), + [anon_sym_GT_GT_EQ] = ACTIONS(5596), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5596), + [anon_sym_return] = ACTIONS(5598), + [anon_sym_yield] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5596), + [anon_sym_break] = ACTIONS(5598), + [anon_sym_continue] = ACTIONS(5598), + [anon_sym_defer] = ACTIONS(5598), + [anon_sym_errdefer] = ACTIONS(5598), + [anon_sym_if] = ACTIONS(5598), + [anon_sym_else] = ACTIONS(5598), + [anon_sym_while] = ACTIONS(5598), + [anon_sym_expand] = ACTIONS(5598), + [anon_sym_for] = ACTIONS(5598), + [anon_sym_match] = ACTIONS(5598), + [anon_sym_DOT_DOT] = ACTIONS(5598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5596), + [anon_sym_orelse] = ACTIONS(5598), + [anon_sym_or] = ACTIONS(5598), + [anon_sym_and] = ACTIONS(5598), + [anon_sym_EQ_EQ] = ACTIONS(5596), + [anon_sym_BANG_EQ] = ACTIONS(5596), + [anon_sym_LT] = ACTIONS(5598), + [anon_sym_LT_EQ] = ACTIONS(5596), + [anon_sym_GT] = ACTIONS(5598), + [anon_sym_GT_EQ] = ACTIONS(5596), + [anon_sym_AMP] = ACTIONS(5598), + [anon_sym_xor] = ACTIONS(5598), + [anon_sym_LT_LT] = ACTIONS(5598), + [anon_sym_GT_GT] = ACTIONS(5598), + [anon_sym_LT_LT_PIPE] = ACTIONS(5598), + [anon_sym_PLUS] = ACTIONS(5598), + [anon_sym_SLASH] = ACTIONS(5598), + [anon_sym_catch] = ACTIONS(5598), + [anon_sym_TILDE] = ACTIONS(5596), + [anon_sym_try] = ACTIONS(5598), + [anon_sym_DOT] = ACTIONS(5598), + [anon_sym_CARET] = ACTIONS(5596), + [anon_sym_true] = ACTIONS(5598), + [anon_sym_false] = ACTIONS(5598), + [anon_sym_null] = ACTIONS(5598), + [anon_sym_unreachable] = ACTIONS(5598), + [anon_sym_undefined] = ACTIONS(5598), + [sym_sink] = ACTIONS(5598), + [sym_integer] = ACTIONS(5598), + [sym_float] = ACTIONS(5596), + [anon_sym_DQUOTE] = ACTIONS(5596), + [sym_multiline_string] = ACTIONS(5596), + [sym_character] = ACTIONS(5596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5596), + }, + [STATE(2484)] = { + [ts_builtin_sym_end] = ACTIONS(5600), + [sym_identifier] = ACTIONS(5602), + [anon_sym_import] = ACTIONS(5602), + [anon_sym_test] = ACTIONS(5602), + [anon_sym_hide] = ACTIONS(5602), + [anon_sym_func] = ACTIONS(5602), + [anon_sym_BANG] = ACTIONS(5602), + [anon_sym_EQ] = ACTIONS(5602), + [anon_sym_struct] = ACTIONS(5602), + [anon_sym_LPAREN] = ACTIONS(5600), + [anon_sym_RPAREN] = ACTIONS(5600), + [anon_sym_LBRACE] = ACTIONS(5600), + [anon_sym_COMMA] = ACTIONS(5600), + [anon_sym_RBRACE] = ACTIONS(5600), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_DOLLAR] = ACTIONS(5600), + [anon_sym_PIPE] = ACTIONS(5602), + [anon_sym_QMARK] = ACTIONS(5600), + [anon_sym_STAR] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5600), + [anon_sym_RBRACK] = ACTIONS(5600), + [anon_sym_void] = ACTIONS(5602), + [anon_sym_noreturn] = ACTIONS(5602), + [anon_sym_type] = ACTIONS(5602), + [anon_sym_anyopaque] = ACTIONS(5602), + [anon_sym_bool] = ACTIONS(5602), + [anon_sym_int] = ACTIONS(5602), + [anon_sym_uint] = ACTIONS(5602), + [anon_sym_float] = ACTIONS(5602), + [anon_sym_range] = ACTIONS(5602), + [anon_sym_i8] = ACTIONS(5602), + [anon_sym_i16] = ACTIONS(5602), + [anon_sym_i32] = ACTIONS(5602), + [anon_sym_i64] = ACTIONS(5602), + [anon_sym_u8] = ACTIONS(5602), + [anon_sym_u16] = ACTIONS(5602), + [anon_sym_u32] = ACTIONS(5602), + [anon_sym_u64] = ACTIONS(5602), + [anon_sym_isize] = ACTIONS(5602), + [anon_sym_usize] = ACTIONS(5602), + [anon_sym_f32] = ACTIONS(5602), + [anon_sym_f64] = ACTIONS(5602), + [anon_sym_c_char] = ACTIONS(5602), + [anon_sym_c_schar] = ACTIONS(5602), + [anon_sym_c_uchar] = ACTIONS(5602), + [anon_sym_c_short] = ACTIONS(5602), + [anon_sym_c_ushort] = ACTIONS(5602), + [anon_sym_c_int] = ACTIONS(5602), + [anon_sym_c_uint] = ACTIONS(5602), + [anon_sym_c_long] = ACTIONS(5602), + [anon_sym_c_ulong] = ACTIONS(5602), + [anon_sym_c_longlong] = ACTIONS(5602), + [anon_sym_c_ulonglong] = ACTIONS(5602), + [anon_sym_c_float] = ACTIONS(5602), + [anon_sym_c_double] = ACTIONS(5602), + [anon_sym_c_longdouble] = ACTIONS(5602), + [anon_sym_PLUS_EQ] = ACTIONS(5600), + [anon_sym_DASH_EQ] = ACTIONS(5600), + [anon_sym_STAR_EQ] = ACTIONS(5600), + [anon_sym_SLASH_EQ] = ACTIONS(5600), + [anon_sym_AMP_EQ] = ACTIONS(5600), + [anon_sym_PIPE_EQ] = ACTIONS(5600), + [anon_sym_xor_EQ] = ACTIONS(5600), + [anon_sym_LT_LT_EQ] = ACTIONS(5600), + [anon_sym_GT_GT_EQ] = ACTIONS(5600), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5600), + [anon_sym_return] = ACTIONS(5602), + [anon_sym_yield] = ACTIONS(5602), + [anon_sym_COLON] = ACTIONS(5600), + [anon_sym_break] = ACTIONS(5602), + [anon_sym_continue] = ACTIONS(5602), + [anon_sym_defer] = ACTIONS(5602), + [anon_sym_errdefer] = ACTIONS(5602), + [anon_sym_if] = ACTIONS(5602), + [anon_sym_else] = ACTIONS(5602), + [anon_sym_while] = ACTIONS(5602), + [anon_sym_expand] = ACTIONS(5602), + [anon_sym_for] = ACTIONS(5602), + [anon_sym_match] = ACTIONS(5602), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5600), + [anon_sym_orelse] = ACTIONS(5602), + [anon_sym_or] = ACTIONS(5602), + [anon_sym_and] = ACTIONS(5602), + [anon_sym_EQ_EQ] = ACTIONS(5600), + [anon_sym_BANG_EQ] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5600), + [anon_sym_GT] = ACTIONS(5602), + [anon_sym_GT_EQ] = ACTIONS(5600), + [anon_sym_AMP] = ACTIONS(5602), + [anon_sym_xor] = ACTIONS(5602), + [anon_sym_LT_LT] = ACTIONS(5602), + [anon_sym_GT_GT] = ACTIONS(5602), + [anon_sym_LT_LT_PIPE] = ACTIONS(5602), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_SLASH] = ACTIONS(5602), + [anon_sym_catch] = ACTIONS(5602), + [anon_sym_TILDE] = ACTIONS(5600), + [anon_sym_try] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5602), + [anon_sym_CARET] = ACTIONS(5600), + [anon_sym_true] = ACTIONS(5602), + [anon_sym_false] = ACTIONS(5602), + [anon_sym_null] = ACTIONS(5602), + [anon_sym_unreachable] = ACTIONS(5602), + [anon_sym_undefined] = ACTIONS(5602), + [sym_sink] = ACTIONS(5602), + [sym_integer] = ACTIONS(5602), + [sym_float] = ACTIONS(5600), + [anon_sym_DQUOTE] = ACTIONS(5600), + [sym_multiline_string] = ACTIONS(5600), + [sym_character] = ACTIONS(5600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5600), + }, + [STATE(2485)] = { + [ts_builtin_sym_end] = ACTIONS(5604), + [sym_identifier] = ACTIONS(5606), + [anon_sym_import] = ACTIONS(5606), + [anon_sym_test] = ACTIONS(5606), + [anon_sym_hide] = ACTIONS(5606), + [anon_sym_func] = ACTIONS(5606), + [anon_sym_BANG] = ACTIONS(5606), + [anon_sym_EQ] = ACTIONS(5606), + [anon_sym_struct] = ACTIONS(5606), + [anon_sym_LPAREN] = ACTIONS(5604), + [anon_sym_RPAREN] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(5604), + [anon_sym_COMMA] = ACTIONS(5604), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_DASH] = ACTIONS(5606), + [anon_sym_DOLLAR] = ACTIONS(5604), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_QMARK] = ACTIONS(5604), + [anon_sym_STAR] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(5604), + [anon_sym_SEMI] = ACTIONS(5604), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_void] = ACTIONS(5606), + [anon_sym_noreturn] = ACTIONS(5606), + [anon_sym_type] = ACTIONS(5606), + [anon_sym_anyopaque] = ACTIONS(5606), + [anon_sym_bool] = ACTIONS(5606), + [anon_sym_int] = ACTIONS(5606), + [anon_sym_uint] = ACTIONS(5606), + [anon_sym_float] = ACTIONS(5606), + [anon_sym_range] = ACTIONS(5606), + [anon_sym_i8] = ACTIONS(5606), + [anon_sym_i16] = ACTIONS(5606), + [anon_sym_i32] = ACTIONS(5606), + [anon_sym_i64] = ACTIONS(5606), + [anon_sym_u8] = ACTIONS(5606), + [anon_sym_u16] = ACTIONS(5606), + [anon_sym_u32] = ACTIONS(5606), + [anon_sym_u64] = ACTIONS(5606), + [anon_sym_isize] = ACTIONS(5606), + [anon_sym_usize] = ACTIONS(5606), + [anon_sym_f32] = ACTIONS(5606), + [anon_sym_f64] = ACTIONS(5606), + [anon_sym_c_char] = ACTIONS(5606), + [anon_sym_c_schar] = ACTIONS(5606), + [anon_sym_c_uchar] = ACTIONS(5606), + [anon_sym_c_short] = ACTIONS(5606), + [anon_sym_c_ushort] = ACTIONS(5606), + [anon_sym_c_int] = ACTIONS(5606), + [anon_sym_c_uint] = ACTIONS(5606), + [anon_sym_c_long] = ACTIONS(5606), + [anon_sym_c_ulong] = ACTIONS(5606), + [anon_sym_c_longlong] = ACTIONS(5606), + [anon_sym_c_ulonglong] = ACTIONS(5606), + [anon_sym_c_float] = ACTIONS(5606), + [anon_sym_c_double] = ACTIONS(5606), + [anon_sym_c_longdouble] = ACTIONS(5606), + [anon_sym_PLUS_EQ] = ACTIONS(5604), + [anon_sym_DASH_EQ] = ACTIONS(5604), + [anon_sym_STAR_EQ] = ACTIONS(5604), + [anon_sym_SLASH_EQ] = ACTIONS(5604), + [anon_sym_AMP_EQ] = ACTIONS(5604), + [anon_sym_PIPE_EQ] = ACTIONS(5604), + [anon_sym_xor_EQ] = ACTIONS(5604), + [anon_sym_LT_LT_EQ] = ACTIONS(5604), + [anon_sym_GT_GT_EQ] = ACTIONS(5604), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5604), + [anon_sym_return] = ACTIONS(5606), + [anon_sym_yield] = ACTIONS(5606), + [anon_sym_COLON] = ACTIONS(5604), + [anon_sym_break] = ACTIONS(5606), + [anon_sym_continue] = ACTIONS(5606), + [anon_sym_defer] = ACTIONS(5606), + [anon_sym_errdefer] = ACTIONS(5606), + [anon_sym_if] = ACTIONS(5606), + [anon_sym_else] = ACTIONS(5606), + [anon_sym_while] = ACTIONS(5606), + [anon_sym_expand] = ACTIONS(5606), + [anon_sym_for] = ACTIONS(5606), + [anon_sym_match] = ACTIONS(5606), + [anon_sym_DOT_DOT] = ACTIONS(5606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5604), + [anon_sym_orelse] = ACTIONS(5606), + [anon_sym_or] = ACTIONS(5606), + [anon_sym_and] = ACTIONS(5606), + [anon_sym_EQ_EQ] = ACTIONS(5604), + [anon_sym_BANG_EQ] = ACTIONS(5604), + [anon_sym_LT] = ACTIONS(5606), + [anon_sym_LT_EQ] = ACTIONS(5604), + [anon_sym_GT] = ACTIONS(5606), + [anon_sym_GT_EQ] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [anon_sym_xor] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [anon_sym_LT_LT_PIPE] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5606), + [anon_sym_SLASH] = ACTIONS(5606), + [anon_sym_catch] = ACTIONS(5606), + [anon_sym_TILDE] = ACTIONS(5604), + [anon_sym_try] = ACTIONS(5606), + [anon_sym_DOT] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5604), + [anon_sym_true] = ACTIONS(5606), + [anon_sym_false] = ACTIONS(5606), + [anon_sym_null] = ACTIONS(5606), + [anon_sym_unreachable] = ACTIONS(5606), + [anon_sym_undefined] = ACTIONS(5606), + [sym_sink] = ACTIONS(5606), + [sym_integer] = ACTIONS(5606), + [sym_float] = ACTIONS(5604), + [anon_sym_DQUOTE] = ACTIONS(5604), + [sym_multiline_string] = ACTIONS(5604), + [sym_character] = ACTIONS(5604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5604), + }, + [STATE(2486)] = { + [ts_builtin_sym_end] = ACTIONS(5608), + [sym_identifier] = ACTIONS(5610), + [anon_sym_import] = ACTIONS(5610), + [anon_sym_test] = ACTIONS(5610), + [anon_sym_hide] = ACTIONS(5610), + [anon_sym_func] = ACTIONS(5610), + [anon_sym_BANG] = ACTIONS(5610), + [anon_sym_EQ] = ACTIONS(5610), + [anon_sym_struct] = ACTIONS(5610), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_RPAREN] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_COMMA] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_DASH] = ACTIONS(5610), + [anon_sym_DOLLAR] = ACTIONS(5608), + [anon_sym_PIPE] = ACTIONS(5610), + [anon_sym_QMARK] = ACTIONS(5608), + [anon_sym_STAR] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(5608), + [anon_sym_SEMI] = ACTIONS(5608), + [anon_sym_RBRACK] = ACTIONS(5608), + [anon_sym_void] = ACTIONS(5610), + [anon_sym_noreturn] = ACTIONS(5610), + [anon_sym_type] = ACTIONS(5610), + [anon_sym_anyopaque] = ACTIONS(5610), + [anon_sym_bool] = ACTIONS(5610), + [anon_sym_int] = ACTIONS(5610), + [anon_sym_uint] = ACTIONS(5610), + [anon_sym_float] = ACTIONS(5610), + [anon_sym_range] = ACTIONS(5610), + [anon_sym_i8] = ACTIONS(5610), + [anon_sym_i16] = ACTIONS(5610), + [anon_sym_i32] = ACTIONS(5610), + [anon_sym_i64] = ACTIONS(5610), + [anon_sym_u8] = ACTIONS(5610), + [anon_sym_u16] = ACTIONS(5610), + [anon_sym_u32] = ACTIONS(5610), + [anon_sym_u64] = ACTIONS(5610), + [anon_sym_isize] = ACTIONS(5610), + [anon_sym_usize] = ACTIONS(5610), + [anon_sym_f32] = ACTIONS(5610), + [anon_sym_f64] = ACTIONS(5610), + [anon_sym_c_char] = ACTIONS(5610), + [anon_sym_c_schar] = ACTIONS(5610), + [anon_sym_c_uchar] = ACTIONS(5610), + [anon_sym_c_short] = ACTIONS(5610), + [anon_sym_c_ushort] = ACTIONS(5610), + [anon_sym_c_int] = ACTIONS(5610), + [anon_sym_c_uint] = ACTIONS(5610), + [anon_sym_c_long] = ACTIONS(5610), + [anon_sym_c_ulong] = ACTIONS(5610), + [anon_sym_c_longlong] = ACTIONS(5610), + [anon_sym_c_ulonglong] = ACTIONS(5610), + [anon_sym_c_float] = ACTIONS(5610), + [anon_sym_c_double] = ACTIONS(5610), + [anon_sym_c_longdouble] = ACTIONS(5610), + [anon_sym_PLUS_EQ] = ACTIONS(5608), + [anon_sym_DASH_EQ] = ACTIONS(5608), + [anon_sym_STAR_EQ] = ACTIONS(5608), + [anon_sym_SLASH_EQ] = ACTIONS(5608), + [anon_sym_AMP_EQ] = ACTIONS(5608), + [anon_sym_PIPE_EQ] = ACTIONS(5608), + [anon_sym_xor_EQ] = ACTIONS(5608), + [anon_sym_LT_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_GT_EQ] = ACTIONS(5608), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5608), + [anon_sym_return] = ACTIONS(5610), + [anon_sym_yield] = ACTIONS(5610), + [anon_sym_COLON] = ACTIONS(5608), + [anon_sym_break] = ACTIONS(5610), + [anon_sym_continue] = ACTIONS(5610), + [anon_sym_defer] = ACTIONS(5610), + [anon_sym_errdefer] = ACTIONS(5610), + [anon_sym_if] = ACTIONS(5610), + [anon_sym_else] = ACTIONS(5610), + [anon_sym_while] = ACTIONS(5610), + [anon_sym_expand] = ACTIONS(5610), + [anon_sym_for] = ACTIONS(5610), + [anon_sym_match] = ACTIONS(5610), + [anon_sym_DOT_DOT] = ACTIONS(5610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5608), + [anon_sym_orelse] = ACTIONS(5610), + [anon_sym_or] = ACTIONS(5610), + [anon_sym_and] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5608), + [anon_sym_BANG_EQ] = ACTIONS(5608), + [anon_sym_LT] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5610), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_AMP] = ACTIONS(5610), + [anon_sym_xor] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5610), + [anon_sym_LT_LT_PIPE] = ACTIONS(5610), + [anon_sym_PLUS] = ACTIONS(5610), + [anon_sym_SLASH] = ACTIONS(5610), + [anon_sym_catch] = ACTIONS(5610), + [anon_sym_TILDE] = ACTIONS(5608), + [anon_sym_try] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5608), + [anon_sym_true] = ACTIONS(5610), + [anon_sym_false] = ACTIONS(5610), + [anon_sym_null] = ACTIONS(5610), + [anon_sym_unreachable] = ACTIONS(5610), + [anon_sym_undefined] = ACTIONS(5610), + [sym_sink] = ACTIONS(5610), + [sym_integer] = ACTIONS(5610), + [sym_float] = ACTIONS(5608), + [anon_sym_DQUOTE] = ACTIONS(5608), + [sym_multiline_string] = ACTIONS(5608), + [sym_character] = ACTIONS(5608), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5608), + }, + [STATE(2487)] = { + [ts_builtin_sym_end] = ACTIONS(5612), + [sym_identifier] = ACTIONS(5614), + [anon_sym_import] = ACTIONS(5614), + [anon_sym_test] = ACTIONS(5614), + [anon_sym_hide] = ACTIONS(5614), + [anon_sym_func] = ACTIONS(5614), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5614), + [anon_sym_struct] = ACTIONS(5614), + [anon_sym_LPAREN] = ACTIONS(5612), + [anon_sym_RPAREN] = ACTIONS(5612), + [anon_sym_LBRACE] = ACTIONS(5612), + [anon_sym_COMMA] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5612), + [anon_sym_DASH] = ACTIONS(5614), + [anon_sym_DOLLAR] = ACTIONS(5612), + [anon_sym_PIPE] = ACTIONS(5614), + [anon_sym_QMARK] = ACTIONS(5612), + [anon_sym_STAR] = ACTIONS(5614), + [anon_sym_LBRACK] = ACTIONS(5612), + [anon_sym_SEMI] = ACTIONS(5612), + [anon_sym_RBRACK] = ACTIONS(5612), + [anon_sym_void] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_type] = ACTIONS(5614), + [anon_sym_anyopaque] = ACTIONS(5614), + [anon_sym_bool] = ACTIONS(5614), + [anon_sym_int] = ACTIONS(5614), + [anon_sym_uint] = ACTIONS(5614), + [anon_sym_float] = ACTIONS(5614), + [anon_sym_range] = ACTIONS(5614), + [anon_sym_i8] = ACTIONS(5614), + [anon_sym_i16] = ACTIONS(5614), + [anon_sym_i32] = ACTIONS(5614), + [anon_sym_i64] = ACTIONS(5614), + [anon_sym_u8] = ACTIONS(5614), + [anon_sym_u16] = ACTIONS(5614), + [anon_sym_u32] = ACTIONS(5614), + [anon_sym_u64] = ACTIONS(5614), + [anon_sym_isize] = ACTIONS(5614), + [anon_sym_usize] = ACTIONS(5614), + [anon_sym_f32] = ACTIONS(5614), + [anon_sym_f64] = ACTIONS(5614), + [anon_sym_c_char] = ACTIONS(5614), + [anon_sym_c_schar] = ACTIONS(5614), + [anon_sym_c_uchar] = ACTIONS(5614), + [anon_sym_c_short] = ACTIONS(5614), + [anon_sym_c_ushort] = ACTIONS(5614), + [anon_sym_c_int] = ACTIONS(5614), + [anon_sym_c_uint] = ACTIONS(5614), + [anon_sym_c_long] = ACTIONS(5614), + [anon_sym_c_ulong] = ACTIONS(5614), + [anon_sym_c_longlong] = ACTIONS(5614), + [anon_sym_c_ulonglong] = ACTIONS(5614), + [anon_sym_c_float] = ACTIONS(5614), + [anon_sym_c_double] = ACTIONS(5614), + [anon_sym_c_longdouble] = ACTIONS(5614), + [anon_sym_PLUS_EQ] = ACTIONS(5612), + [anon_sym_DASH_EQ] = ACTIONS(5612), + [anon_sym_STAR_EQ] = ACTIONS(5612), + [anon_sym_SLASH_EQ] = ACTIONS(5612), + [anon_sym_AMP_EQ] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5612), + [anon_sym_xor_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_EQ] = ACTIONS(5612), + [anon_sym_GT_GT_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5612), + [anon_sym_return] = ACTIONS(5614), + [anon_sym_yield] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5612), + [anon_sym_break] = ACTIONS(5614), + [anon_sym_continue] = ACTIONS(5614), + [anon_sym_defer] = ACTIONS(5614), + [anon_sym_errdefer] = ACTIONS(5614), + [anon_sym_if] = ACTIONS(5614), + [anon_sym_else] = ACTIONS(5614), + [anon_sym_while] = ACTIONS(5614), + [anon_sym_expand] = ACTIONS(5614), + [anon_sym_for] = ACTIONS(5614), + [anon_sym_match] = ACTIONS(5614), + [anon_sym_DOT_DOT] = ACTIONS(5614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5612), + [anon_sym_orelse] = ACTIONS(5614), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5612), + [anon_sym_AMP] = ACTIONS(5614), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_LT_LT_PIPE] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5614), + [anon_sym_SLASH] = ACTIONS(5614), + [anon_sym_catch] = ACTIONS(5614), + [anon_sym_TILDE] = ACTIONS(5612), + [anon_sym_try] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5612), + [anon_sym_true] = ACTIONS(5614), + [anon_sym_false] = ACTIONS(5614), + [anon_sym_null] = ACTIONS(5614), + [anon_sym_unreachable] = ACTIONS(5614), + [anon_sym_undefined] = ACTIONS(5614), + [sym_sink] = ACTIONS(5614), + [sym_integer] = ACTIONS(5614), + [sym_float] = ACTIONS(5612), + [anon_sym_DQUOTE] = ACTIONS(5612), + [sym_multiline_string] = ACTIONS(5612), + [sym_character] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5612), + }, + [STATE(2488)] = { + [ts_builtin_sym_end] = ACTIONS(5616), + [sym_identifier] = ACTIONS(5618), + [anon_sym_import] = ACTIONS(5618), + [anon_sym_test] = ACTIONS(5618), + [anon_sym_hide] = ACTIONS(5618), + [anon_sym_func] = ACTIONS(5618), + [anon_sym_BANG] = ACTIONS(5618), + [anon_sym_EQ] = ACTIONS(5618), + [anon_sym_struct] = ACTIONS(5618), + [anon_sym_LPAREN] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5616), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5618), + [anon_sym_DOLLAR] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5618), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_SEMI] = ACTIONS(5616), + [anon_sym_RBRACK] = ACTIONS(5616), + [anon_sym_void] = ACTIONS(5618), + [anon_sym_noreturn] = ACTIONS(5618), + [anon_sym_type] = ACTIONS(5618), + [anon_sym_anyopaque] = ACTIONS(5618), + [anon_sym_bool] = ACTIONS(5618), + [anon_sym_int] = ACTIONS(5618), + [anon_sym_uint] = ACTIONS(5618), + [anon_sym_float] = ACTIONS(5618), + [anon_sym_range] = ACTIONS(5618), + [anon_sym_i8] = ACTIONS(5618), + [anon_sym_i16] = ACTIONS(5618), + [anon_sym_i32] = ACTIONS(5618), + [anon_sym_i64] = ACTIONS(5618), + [anon_sym_u8] = ACTIONS(5618), + [anon_sym_u16] = ACTIONS(5618), + [anon_sym_u32] = ACTIONS(5618), + [anon_sym_u64] = ACTIONS(5618), + [anon_sym_isize] = ACTIONS(5618), + [anon_sym_usize] = ACTIONS(5618), + [anon_sym_f32] = ACTIONS(5618), + [anon_sym_f64] = ACTIONS(5618), + [anon_sym_c_char] = ACTIONS(5618), + [anon_sym_c_schar] = ACTIONS(5618), + [anon_sym_c_uchar] = ACTIONS(5618), + [anon_sym_c_short] = ACTIONS(5618), + [anon_sym_c_ushort] = ACTIONS(5618), + [anon_sym_c_int] = ACTIONS(5618), + [anon_sym_c_uint] = ACTIONS(5618), + [anon_sym_c_long] = ACTIONS(5618), + [anon_sym_c_ulong] = ACTIONS(5618), + [anon_sym_c_longlong] = ACTIONS(5618), + [anon_sym_c_ulonglong] = ACTIONS(5618), + [anon_sym_c_float] = ACTIONS(5618), + [anon_sym_c_double] = ACTIONS(5618), + [anon_sym_c_longdouble] = ACTIONS(5618), + [anon_sym_PLUS_EQ] = ACTIONS(5616), + [anon_sym_DASH_EQ] = ACTIONS(5616), + [anon_sym_STAR_EQ] = ACTIONS(5616), + [anon_sym_SLASH_EQ] = ACTIONS(5616), + [anon_sym_AMP_EQ] = ACTIONS(5616), + [anon_sym_PIPE_EQ] = ACTIONS(5616), + [anon_sym_xor_EQ] = ACTIONS(5616), + [anon_sym_LT_LT_EQ] = ACTIONS(5616), + [anon_sym_GT_GT_EQ] = ACTIONS(5616), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5616), + [anon_sym_return] = ACTIONS(5618), + [anon_sym_yield] = ACTIONS(5618), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_break] = ACTIONS(5618), + [anon_sym_continue] = ACTIONS(5618), + [anon_sym_defer] = ACTIONS(5618), + [anon_sym_errdefer] = ACTIONS(5618), + [anon_sym_if] = ACTIONS(5618), + [anon_sym_else] = ACTIONS(5618), + [anon_sym_while] = ACTIONS(5618), + [anon_sym_expand] = ACTIONS(5618), + [anon_sym_for] = ACTIONS(5618), + [anon_sym_match] = ACTIONS(5618), + [anon_sym_DOT_DOT] = ACTIONS(5618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5616), + [anon_sym_orelse] = ACTIONS(5618), + [anon_sym_or] = ACTIONS(5618), + [anon_sym_and] = ACTIONS(5618), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5618), + [anon_sym_LT_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5618), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5618), + [anon_sym_xor] = ACTIONS(5618), + [anon_sym_LT_LT] = ACTIONS(5618), + [anon_sym_GT_GT] = ACTIONS(5618), + [anon_sym_LT_LT_PIPE] = ACTIONS(5618), + [anon_sym_PLUS] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_catch] = ACTIONS(5618), + [anon_sym_TILDE] = ACTIONS(5616), + [anon_sym_try] = ACTIONS(5618), + [anon_sym_DOT] = ACTIONS(5618), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_true] = ACTIONS(5618), + [anon_sym_false] = ACTIONS(5618), + [anon_sym_null] = ACTIONS(5618), + [anon_sym_unreachable] = ACTIONS(5618), + [anon_sym_undefined] = ACTIONS(5618), + [sym_sink] = ACTIONS(5618), + [sym_integer] = ACTIONS(5618), + [sym_float] = ACTIONS(5616), + [anon_sym_DQUOTE] = ACTIONS(5616), + [sym_multiline_string] = ACTIONS(5616), + [sym_character] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5616), + }, + [STATE(2489)] = { + [ts_builtin_sym_end] = ACTIONS(5620), + [sym_identifier] = ACTIONS(5622), + [anon_sym_import] = ACTIONS(5622), + [anon_sym_test] = ACTIONS(5622), + [anon_sym_hide] = ACTIONS(5622), + [anon_sym_func] = ACTIONS(5622), + [anon_sym_BANG] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(5622), + [anon_sym_struct] = ACTIONS(5622), + [anon_sym_LPAREN] = ACTIONS(5620), + [anon_sym_RPAREN] = ACTIONS(5620), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5622), + [anon_sym_QMARK] = ACTIONS(5620), + [anon_sym_STAR] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5620), + [anon_sym_RBRACK] = ACTIONS(5620), + [anon_sym_void] = ACTIONS(5622), + [anon_sym_noreturn] = ACTIONS(5622), + [anon_sym_type] = ACTIONS(5622), + [anon_sym_anyopaque] = ACTIONS(5622), + [anon_sym_bool] = ACTIONS(5622), + [anon_sym_int] = ACTIONS(5622), + [anon_sym_uint] = ACTIONS(5622), + [anon_sym_float] = ACTIONS(5622), + [anon_sym_range] = ACTIONS(5622), + [anon_sym_i8] = ACTIONS(5622), + [anon_sym_i16] = ACTIONS(5622), + [anon_sym_i32] = ACTIONS(5622), + [anon_sym_i64] = ACTIONS(5622), + [anon_sym_u8] = ACTIONS(5622), + [anon_sym_u16] = ACTIONS(5622), + [anon_sym_u32] = ACTIONS(5622), + [anon_sym_u64] = ACTIONS(5622), + [anon_sym_isize] = ACTIONS(5622), + [anon_sym_usize] = ACTIONS(5622), + [anon_sym_f32] = ACTIONS(5622), + [anon_sym_f64] = ACTIONS(5622), + [anon_sym_c_char] = ACTIONS(5622), + [anon_sym_c_schar] = ACTIONS(5622), + [anon_sym_c_uchar] = ACTIONS(5622), + [anon_sym_c_short] = ACTIONS(5622), + [anon_sym_c_ushort] = ACTIONS(5622), + [anon_sym_c_int] = ACTIONS(5622), + [anon_sym_c_uint] = ACTIONS(5622), + [anon_sym_c_long] = ACTIONS(5622), + [anon_sym_c_ulong] = ACTIONS(5622), + [anon_sym_c_longlong] = ACTIONS(5622), + [anon_sym_c_ulonglong] = ACTIONS(5622), + [anon_sym_c_float] = ACTIONS(5622), + [anon_sym_c_double] = ACTIONS(5622), + [anon_sym_c_longdouble] = ACTIONS(5622), + [anon_sym_PLUS_EQ] = ACTIONS(5620), + [anon_sym_DASH_EQ] = ACTIONS(5620), + [anon_sym_STAR_EQ] = ACTIONS(5620), + [anon_sym_SLASH_EQ] = ACTIONS(5620), + [anon_sym_AMP_EQ] = ACTIONS(5620), + [anon_sym_PIPE_EQ] = ACTIONS(5620), + [anon_sym_xor_EQ] = ACTIONS(5620), + [anon_sym_LT_LT_EQ] = ACTIONS(5620), + [anon_sym_GT_GT_EQ] = ACTIONS(5620), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5620), + [anon_sym_return] = ACTIONS(5622), + [anon_sym_yield] = ACTIONS(5622), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_break] = ACTIONS(5622), + [anon_sym_continue] = ACTIONS(5622), + [anon_sym_defer] = ACTIONS(5622), + [anon_sym_errdefer] = ACTIONS(5622), + [anon_sym_if] = ACTIONS(5622), + [anon_sym_else] = ACTIONS(5622), + [anon_sym_while] = ACTIONS(5622), + [anon_sym_expand] = ACTIONS(5622), + [anon_sym_for] = ACTIONS(5622), + [anon_sym_match] = ACTIONS(5622), + [anon_sym_DOT_DOT] = ACTIONS(5622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5620), + [anon_sym_orelse] = ACTIONS(5622), + [anon_sym_or] = ACTIONS(5622), + [anon_sym_and] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5620), + [anon_sym_BANG_EQ] = ACTIONS(5620), + [anon_sym_LT] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5620), + [anon_sym_AMP] = ACTIONS(5622), + [anon_sym_xor] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5622), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_LT_LT_PIPE] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_SLASH] = ACTIONS(5622), + [anon_sym_catch] = ACTIONS(5622), + [anon_sym_TILDE] = ACTIONS(5620), + [anon_sym_try] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5622), + [anon_sym_CARET] = ACTIONS(5620), + [anon_sym_true] = ACTIONS(5622), + [anon_sym_false] = ACTIONS(5622), + [anon_sym_null] = ACTIONS(5622), + [anon_sym_unreachable] = ACTIONS(5622), + [anon_sym_undefined] = ACTIONS(5622), + [sym_sink] = ACTIONS(5622), + [sym_integer] = ACTIONS(5622), + [sym_float] = ACTIONS(5620), + [anon_sym_DQUOTE] = ACTIONS(5620), + [sym_multiline_string] = ACTIONS(5620), + [sym_character] = ACTIONS(5620), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5620), + }, + [STATE(2490)] = { + [ts_builtin_sym_end] = ACTIONS(5624), + [sym_identifier] = ACTIONS(5626), + [anon_sym_import] = ACTIONS(5626), + [anon_sym_test] = ACTIONS(5626), + [anon_sym_hide] = ACTIONS(5626), + [anon_sym_func] = ACTIONS(5626), + [anon_sym_BANG] = ACTIONS(5626), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_struct] = ACTIONS(5626), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LBRACE] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_DOLLAR] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5626), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym_RBRACK] = ACTIONS(5624), + [anon_sym_void] = ACTIONS(5626), + [anon_sym_noreturn] = ACTIONS(5626), + [anon_sym_type] = ACTIONS(5626), + [anon_sym_anyopaque] = ACTIONS(5626), + [anon_sym_bool] = ACTIONS(5626), + [anon_sym_int] = ACTIONS(5626), + [anon_sym_uint] = ACTIONS(5626), + [anon_sym_float] = ACTIONS(5626), + [anon_sym_range] = ACTIONS(5626), + [anon_sym_i8] = ACTIONS(5626), + [anon_sym_i16] = ACTIONS(5626), + [anon_sym_i32] = ACTIONS(5626), + [anon_sym_i64] = ACTIONS(5626), + [anon_sym_u8] = ACTIONS(5626), + [anon_sym_u16] = ACTIONS(5626), + [anon_sym_u32] = ACTIONS(5626), + [anon_sym_u64] = ACTIONS(5626), + [anon_sym_isize] = ACTIONS(5626), + [anon_sym_usize] = ACTIONS(5626), + [anon_sym_f32] = ACTIONS(5626), + [anon_sym_f64] = ACTIONS(5626), + [anon_sym_c_char] = ACTIONS(5626), + [anon_sym_c_schar] = ACTIONS(5626), + [anon_sym_c_uchar] = ACTIONS(5626), + [anon_sym_c_short] = ACTIONS(5626), + [anon_sym_c_ushort] = ACTIONS(5626), + [anon_sym_c_int] = ACTIONS(5626), + [anon_sym_c_uint] = ACTIONS(5626), + [anon_sym_c_long] = ACTIONS(5626), + [anon_sym_c_ulong] = ACTIONS(5626), + [anon_sym_c_longlong] = ACTIONS(5626), + [anon_sym_c_ulonglong] = ACTIONS(5626), + [anon_sym_c_float] = ACTIONS(5626), + [anon_sym_c_double] = ACTIONS(5626), + [anon_sym_c_longdouble] = ACTIONS(5626), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_xor_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5624), + [anon_sym_return] = ACTIONS(5626), + [anon_sym_yield] = ACTIONS(5626), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_break] = ACTIONS(5626), + [anon_sym_continue] = ACTIONS(5626), + [anon_sym_defer] = ACTIONS(5626), + [anon_sym_errdefer] = ACTIONS(5626), + [anon_sym_if] = ACTIONS(5626), + [anon_sym_else] = ACTIONS(5626), + [anon_sym_while] = ACTIONS(5626), + [anon_sym_expand] = ACTIONS(5626), + [anon_sym_for] = ACTIONS(5626), + [anon_sym_match] = ACTIONS(5626), + [anon_sym_DOT_DOT] = ACTIONS(5626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5624), + [anon_sym_orelse] = ACTIONS(5626), + [anon_sym_or] = ACTIONS(5626), + [anon_sym_and] = ACTIONS(5626), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5626), + [anon_sym_LT_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5626), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP] = ACTIONS(5626), + [anon_sym_xor] = ACTIONS(5626), + [anon_sym_LT_LT] = ACTIONS(5626), + [anon_sym_GT_GT] = ACTIONS(5626), + [anon_sym_LT_LT_PIPE] = ACTIONS(5626), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_SLASH] = ACTIONS(5626), + [anon_sym_catch] = ACTIONS(5626), + [anon_sym_TILDE] = ACTIONS(5624), + [anon_sym_try] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5626), + [anon_sym_CARET] = ACTIONS(5624), + [anon_sym_true] = ACTIONS(5626), + [anon_sym_false] = ACTIONS(5626), + [anon_sym_null] = ACTIONS(5626), + [anon_sym_unreachable] = ACTIONS(5626), + [anon_sym_undefined] = ACTIONS(5626), + [sym_sink] = ACTIONS(5626), + [sym_integer] = ACTIONS(5626), + [sym_float] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5624), + [sym_multiline_string] = ACTIONS(5624), + [sym_character] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5624), + }, + [STATE(2491)] = { + [ts_builtin_sym_end] = ACTIONS(5628), + [sym_identifier] = ACTIONS(5630), + [anon_sym_import] = ACTIONS(5630), + [anon_sym_test] = ACTIONS(5630), + [anon_sym_hide] = ACTIONS(5630), + [anon_sym_func] = ACTIONS(5630), + [anon_sym_BANG] = ACTIONS(5630), + [anon_sym_EQ] = ACTIONS(5630), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(5628), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_DOLLAR] = ACTIONS(5628), + [anon_sym_PIPE] = ACTIONS(5630), + [anon_sym_QMARK] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5628), + [anon_sym_SEMI] = ACTIONS(5628), + [anon_sym_RBRACK] = ACTIONS(5628), + [anon_sym_void] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_type] = ACTIONS(5630), + [anon_sym_anyopaque] = ACTIONS(5630), + [anon_sym_bool] = ACTIONS(5630), + [anon_sym_int] = ACTIONS(5630), + [anon_sym_uint] = ACTIONS(5630), + [anon_sym_float] = ACTIONS(5630), + [anon_sym_range] = ACTIONS(5630), + [anon_sym_i8] = ACTIONS(5630), + [anon_sym_i16] = ACTIONS(5630), + [anon_sym_i32] = ACTIONS(5630), + [anon_sym_i64] = ACTIONS(5630), + [anon_sym_u8] = ACTIONS(5630), + [anon_sym_u16] = ACTIONS(5630), + [anon_sym_u32] = ACTIONS(5630), + [anon_sym_u64] = ACTIONS(5630), + [anon_sym_isize] = ACTIONS(5630), + [anon_sym_usize] = ACTIONS(5630), + [anon_sym_f32] = ACTIONS(5630), + [anon_sym_f64] = ACTIONS(5630), + [anon_sym_c_char] = ACTIONS(5630), + [anon_sym_c_schar] = ACTIONS(5630), + [anon_sym_c_uchar] = ACTIONS(5630), + [anon_sym_c_short] = ACTIONS(5630), + [anon_sym_c_ushort] = ACTIONS(5630), + [anon_sym_c_int] = ACTIONS(5630), + [anon_sym_c_uint] = ACTIONS(5630), + [anon_sym_c_long] = ACTIONS(5630), + [anon_sym_c_ulong] = ACTIONS(5630), + [anon_sym_c_longlong] = ACTIONS(5630), + [anon_sym_c_ulonglong] = ACTIONS(5630), + [anon_sym_c_float] = ACTIONS(5630), + [anon_sym_c_double] = ACTIONS(5630), + [anon_sym_c_longdouble] = ACTIONS(5630), + [anon_sym_PLUS_EQ] = ACTIONS(5628), + [anon_sym_DASH_EQ] = ACTIONS(5628), + [anon_sym_STAR_EQ] = ACTIONS(5628), + [anon_sym_SLASH_EQ] = ACTIONS(5628), + [anon_sym_AMP_EQ] = ACTIONS(5628), + [anon_sym_PIPE_EQ] = ACTIONS(5628), + [anon_sym_xor_EQ] = ACTIONS(5628), + [anon_sym_LT_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_GT_EQ] = ACTIONS(5628), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5628), + [anon_sym_return] = ACTIONS(5630), + [anon_sym_yield] = ACTIONS(5630), + [anon_sym_COLON] = ACTIONS(5628), + [anon_sym_break] = ACTIONS(5630), + [anon_sym_continue] = ACTIONS(5630), + [anon_sym_defer] = ACTIONS(5630), + [anon_sym_errdefer] = ACTIONS(5630), + [anon_sym_if] = ACTIONS(5630), + [anon_sym_else] = ACTIONS(5630), + [anon_sym_while] = ACTIONS(5630), + [anon_sym_expand] = ACTIONS(5630), + [anon_sym_for] = ACTIONS(5630), + [anon_sym_match] = ACTIONS(5630), + [anon_sym_DOT_DOT] = ACTIONS(5630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5628), + [anon_sym_orelse] = ACTIONS(5630), + [anon_sym_or] = ACTIONS(5630), + [anon_sym_and] = ACTIONS(5630), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5630), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT] = ACTIONS(5630), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5630), + [anon_sym_xor] = ACTIONS(5630), + [anon_sym_LT_LT] = ACTIONS(5630), + [anon_sym_GT_GT] = ACTIONS(5630), + [anon_sym_LT_LT_PIPE] = ACTIONS(5630), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_SLASH] = ACTIONS(5630), + [anon_sym_catch] = ACTIONS(5630), + [anon_sym_TILDE] = ACTIONS(5628), + [anon_sym_try] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5630), + [anon_sym_CARET] = ACTIONS(5628), + [anon_sym_true] = ACTIONS(5630), + [anon_sym_false] = ACTIONS(5630), + [anon_sym_null] = ACTIONS(5630), + [anon_sym_unreachable] = ACTIONS(5630), + [anon_sym_undefined] = ACTIONS(5630), + [sym_sink] = ACTIONS(5630), + [sym_integer] = ACTIONS(5630), + [sym_float] = ACTIONS(5628), + [anon_sym_DQUOTE] = ACTIONS(5628), + [sym_multiline_string] = ACTIONS(5628), + [sym_character] = ACTIONS(5628), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5628), + }, + [STATE(2492)] = { + [ts_builtin_sym_end] = ACTIONS(5632), + [sym_identifier] = ACTIONS(5634), + [anon_sym_import] = ACTIONS(5634), + [anon_sym_test] = ACTIONS(5634), + [anon_sym_hide] = ACTIONS(5634), + [anon_sym_func] = ACTIONS(5634), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_EQ] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_LPAREN] = ACTIONS(5632), + [anon_sym_RPAREN] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5632), + [anon_sym_COMMA] = ACTIONS(5632), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_DOLLAR] = ACTIONS(5632), + [anon_sym_PIPE] = ACTIONS(5634), + [anon_sym_QMARK] = ACTIONS(5632), + [anon_sym_STAR] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5632), + [anon_sym_RBRACK] = ACTIONS(5632), + [anon_sym_void] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_type] = ACTIONS(5634), + [anon_sym_anyopaque] = ACTIONS(5634), + [anon_sym_bool] = ACTIONS(5634), + [anon_sym_int] = ACTIONS(5634), + [anon_sym_uint] = ACTIONS(5634), + [anon_sym_float] = ACTIONS(5634), + [anon_sym_range] = ACTIONS(5634), + [anon_sym_i8] = ACTIONS(5634), + [anon_sym_i16] = ACTIONS(5634), + [anon_sym_i32] = ACTIONS(5634), + [anon_sym_i64] = ACTIONS(5634), + [anon_sym_u8] = ACTIONS(5634), + [anon_sym_u16] = ACTIONS(5634), + [anon_sym_u32] = ACTIONS(5634), + [anon_sym_u64] = ACTIONS(5634), + [anon_sym_isize] = ACTIONS(5634), + [anon_sym_usize] = ACTIONS(5634), + [anon_sym_f32] = ACTIONS(5634), + [anon_sym_f64] = ACTIONS(5634), + [anon_sym_c_char] = ACTIONS(5634), + [anon_sym_c_schar] = ACTIONS(5634), + [anon_sym_c_uchar] = ACTIONS(5634), + [anon_sym_c_short] = ACTIONS(5634), + [anon_sym_c_ushort] = ACTIONS(5634), + [anon_sym_c_int] = ACTIONS(5634), + [anon_sym_c_uint] = ACTIONS(5634), + [anon_sym_c_long] = ACTIONS(5634), + [anon_sym_c_ulong] = ACTIONS(5634), + [anon_sym_c_longlong] = ACTIONS(5634), + [anon_sym_c_ulonglong] = ACTIONS(5634), + [anon_sym_c_float] = ACTIONS(5634), + [anon_sym_c_double] = ACTIONS(5634), + [anon_sym_c_longdouble] = ACTIONS(5634), + [anon_sym_PLUS_EQ] = ACTIONS(5632), + [anon_sym_DASH_EQ] = ACTIONS(5632), + [anon_sym_STAR_EQ] = ACTIONS(5632), + [anon_sym_SLASH_EQ] = ACTIONS(5632), + [anon_sym_AMP_EQ] = ACTIONS(5632), + [anon_sym_PIPE_EQ] = ACTIONS(5632), + [anon_sym_xor_EQ] = ACTIONS(5632), + [anon_sym_LT_LT_EQ] = ACTIONS(5632), + [anon_sym_GT_GT_EQ] = ACTIONS(5632), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5632), + [anon_sym_return] = ACTIONS(5634), + [anon_sym_yield] = ACTIONS(5634), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_break] = ACTIONS(5634), + [anon_sym_continue] = ACTIONS(5634), + [anon_sym_defer] = ACTIONS(5634), + [anon_sym_errdefer] = ACTIONS(5634), + [anon_sym_if] = ACTIONS(5634), + [anon_sym_else] = ACTIONS(5634), + [anon_sym_while] = ACTIONS(5634), + [anon_sym_expand] = ACTIONS(5634), + [anon_sym_for] = ACTIONS(5634), + [anon_sym_match] = ACTIONS(5634), + [anon_sym_DOT_DOT] = ACTIONS(5634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5632), + [anon_sym_orelse] = ACTIONS(5634), + [anon_sym_or] = ACTIONS(5634), + [anon_sym_and] = ACTIONS(5634), + [anon_sym_EQ_EQ] = ACTIONS(5632), + [anon_sym_BANG_EQ] = ACTIONS(5632), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_LT_EQ] = ACTIONS(5632), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_GT_EQ] = ACTIONS(5632), + [anon_sym_AMP] = ACTIONS(5634), + [anon_sym_xor] = ACTIONS(5634), + [anon_sym_LT_LT] = ACTIONS(5634), + [anon_sym_GT_GT] = ACTIONS(5634), + [anon_sym_LT_LT_PIPE] = ACTIONS(5634), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_SLASH] = ACTIONS(5634), + [anon_sym_catch] = ACTIONS(5634), + [anon_sym_TILDE] = ACTIONS(5632), + [anon_sym_try] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5632), + [anon_sym_true] = ACTIONS(5634), + [anon_sym_false] = ACTIONS(5634), + [anon_sym_null] = ACTIONS(5634), + [anon_sym_unreachable] = ACTIONS(5634), + [anon_sym_undefined] = ACTIONS(5634), + [sym_sink] = ACTIONS(5634), + [sym_integer] = ACTIONS(5634), + [sym_float] = ACTIONS(5632), + [anon_sym_DQUOTE] = ACTIONS(5632), + [sym_multiline_string] = ACTIONS(5632), + [sym_character] = ACTIONS(5632), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5632), + }, + [STATE(2493)] = { + [ts_builtin_sym_end] = ACTIONS(5636), + [sym_identifier] = ACTIONS(5638), + [anon_sym_import] = ACTIONS(5638), + [anon_sym_test] = ACTIONS(5638), + [anon_sym_hide] = ACTIONS(5638), + [anon_sym_func] = ACTIONS(5638), + [anon_sym_BANG] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5638), + [anon_sym_struct] = ACTIONS(5638), + [anon_sym_LPAREN] = ACTIONS(5636), + [anon_sym_RPAREN] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_COMMA] = ACTIONS(5636), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_DOLLAR] = ACTIONS(5636), + [anon_sym_PIPE] = ACTIONS(5638), + [anon_sym_QMARK] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_SEMI] = ACTIONS(5636), + [anon_sym_RBRACK] = ACTIONS(5636), + [anon_sym_void] = ACTIONS(5638), + [anon_sym_noreturn] = ACTIONS(5638), + [anon_sym_type] = ACTIONS(5638), + [anon_sym_anyopaque] = ACTIONS(5638), + [anon_sym_bool] = ACTIONS(5638), + [anon_sym_int] = ACTIONS(5638), + [anon_sym_uint] = ACTIONS(5638), + [anon_sym_float] = ACTIONS(5638), + [anon_sym_range] = ACTIONS(5638), + [anon_sym_i8] = ACTIONS(5638), + [anon_sym_i16] = ACTIONS(5638), + [anon_sym_i32] = ACTIONS(5638), + [anon_sym_i64] = ACTIONS(5638), + [anon_sym_u8] = ACTIONS(5638), + [anon_sym_u16] = ACTIONS(5638), + [anon_sym_u32] = ACTIONS(5638), + [anon_sym_u64] = ACTIONS(5638), + [anon_sym_isize] = ACTIONS(5638), + [anon_sym_usize] = ACTIONS(5638), + [anon_sym_f32] = ACTIONS(5638), + [anon_sym_f64] = ACTIONS(5638), + [anon_sym_c_char] = ACTIONS(5638), + [anon_sym_c_schar] = ACTIONS(5638), + [anon_sym_c_uchar] = ACTIONS(5638), + [anon_sym_c_short] = ACTIONS(5638), + [anon_sym_c_ushort] = ACTIONS(5638), + [anon_sym_c_int] = ACTIONS(5638), + [anon_sym_c_uint] = ACTIONS(5638), + [anon_sym_c_long] = ACTIONS(5638), + [anon_sym_c_ulong] = ACTIONS(5638), + [anon_sym_c_longlong] = ACTIONS(5638), + [anon_sym_c_ulonglong] = ACTIONS(5638), + [anon_sym_c_float] = ACTIONS(5638), + [anon_sym_c_double] = ACTIONS(5638), + [anon_sym_c_longdouble] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5636), + [anon_sym_DASH_EQ] = ACTIONS(5636), + [anon_sym_STAR_EQ] = ACTIONS(5636), + [anon_sym_SLASH_EQ] = ACTIONS(5636), + [anon_sym_AMP_EQ] = ACTIONS(5636), + [anon_sym_PIPE_EQ] = ACTIONS(5636), + [anon_sym_xor_EQ] = ACTIONS(5636), + [anon_sym_LT_LT_EQ] = ACTIONS(5636), + [anon_sym_GT_GT_EQ] = ACTIONS(5636), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5636), + [anon_sym_return] = ACTIONS(5638), + [anon_sym_yield] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_break] = ACTIONS(5638), + [anon_sym_continue] = ACTIONS(5638), + [anon_sym_defer] = ACTIONS(5638), + [anon_sym_errdefer] = ACTIONS(5638), + [anon_sym_if] = ACTIONS(5638), + [anon_sym_else] = ACTIONS(5638), + [anon_sym_while] = ACTIONS(5638), + [anon_sym_expand] = ACTIONS(5638), + [anon_sym_for] = ACTIONS(5638), + [anon_sym_match] = ACTIONS(5638), + [anon_sym_DOT_DOT] = ACTIONS(5638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5636), + [anon_sym_orelse] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5638), + [anon_sym_and] = ACTIONS(5638), + [anon_sym_EQ_EQ] = ACTIONS(5636), + [anon_sym_BANG_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_GT] = ACTIONS(5638), + [anon_sym_GT_EQ] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5638), + [anon_sym_LT_LT] = ACTIONS(5638), + [anon_sym_GT_GT] = ACTIONS(5638), + [anon_sym_LT_LT_PIPE] = ACTIONS(5638), + [anon_sym_PLUS] = ACTIONS(5638), + [anon_sym_SLASH] = ACTIONS(5638), + [anon_sym_catch] = ACTIONS(5638), + [anon_sym_TILDE] = ACTIONS(5636), + [anon_sym_try] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5638), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_true] = ACTIONS(5638), + [anon_sym_false] = ACTIONS(5638), + [anon_sym_null] = ACTIONS(5638), + [anon_sym_unreachable] = ACTIONS(5638), + [anon_sym_undefined] = ACTIONS(5638), + [sym_sink] = ACTIONS(5638), + [sym_integer] = ACTIONS(5638), + [sym_float] = ACTIONS(5636), + [anon_sym_DQUOTE] = ACTIONS(5636), + [sym_multiline_string] = ACTIONS(5636), + [sym_character] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5636), + }, + [STATE(2494)] = { + [ts_builtin_sym_end] = ACTIONS(5640), + [sym_identifier] = ACTIONS(5642), + [anon_sym_import] = ACTIONS(5642), + [anon_sym_test] = ACTIONS(5642), + [anon_sym_hide] = ACTIONS(5642), + [anon_sym_func] = ACTIONS(5642), + [anon_sym_BANG] = ACTIONS(5642), + [anon_sym_EQ] = ACTIONS(5642), + [anon_sym_struct] = ACTIONS(5642), + [anon_sym_LPAREN] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LBRACE] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_DOLLAR] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5642), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym_RBRACK] = ACTIONS(5640), + [anon_sym_void] = ACTIONS(5642), + [anon_sym_noreturn] = ACTIONS(5642), + [anon_sym_type] = ACTIONS(5642), + [anon_sym_anyopaque] = ACTIONS(5642), + [anon_sym_bool] = ACTIONS(5642), + [anon_sym_int] = ACTIONS(5642), + [anon_sym_uint] = ACTIONS(5642), + [anon_sym_float] = ACTIONS(5642), + [anon_sym_range] = ACTIONS(5642), + [anon_sym_i8] = ACTIONS(5642), + [anon_sym_i16] = ACTIONS(5642), + [anon_sym_i32] = ACTIONS(5642), + [anon_sym_i64] = ACTIONS(5642), + [anon_sym_u8] = ACTIONS(5642), + [anon_sym_u16] = ACTIONS(5642), + [anon_sym_u32] = ACTIONS(5642), + [anon_sym_u64] = ACTIONS(5642), + [anon_sym_isize] = ACTIONS(5642), + [anon_sym_usize] = ACTIONS(5642), + [anon_sym_f32] = ACTIONS(5642), + [anon_sym_f64] = ACTIONS(5642), + [anon_sym_c_char] = ACTIONS(5642), + [anon_sym_c_schar] = ACTIONS(5642), + [anon_sym_c_uchar] = ACTIONS(5642), + [anon_sym_c_short] = ACTIONS(5642), + [anon_sym_c_ushort] = ACTIONS(5642), + [anon_sym_c_int] = ACTIONS(5642), + [anon_sym_c_uint] = ACTIONS(5642), + [anon_sym_c_long] = ACTIONS(5642), + [anon_sym_c_ulong] = ACTIONS(5642), + [anon_sym_c_longlong] = ACTIONS(5642), + [anon_sym_c_ulonglong] = ACTIONS(5642), + [anon_sym_c_float] = ACTIONS(5642), + [anon_sym_c_double] = ACTIONS(5642), + [anon_sym_c_longdouble] = ACTIONS(5642), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_xor_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5640), + [anon_sym_return] = ACTIONS(5642), + [anon_sym_yield] = ACTIONS(5642), + [anon_sym_COLON] = ACTIONS(5640), + [anon_sym_break] = ACTIONS(5642), + [anon_sym_continue] = ACTIONS(5642), + [anon_sym_defer] = ACTIONS(5642), + [anon_sym_errdefer] = ACTIONS(5642), + [anon_sym_if] = ACTIONS(5642), + [anon_sym_else] = ACTIONS(5642), + [anon_sym_while] = ACTIONS(5642), + [anon_sym_expand] = ACTIONS(5642), + [anon_sym_for] = ACTIONS(5642), + [anon_sym_match] = ACTIONS(5642), + [anon_sym_DOT_DOT] = ACTIONS(5642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5640), + [anon_sym_orelse] = ACTIONS(5642), + [anon_sym_or] = ACTIONS(5642), + [anon_sym_and] = ACTIONS(5642), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_LT] = ACTIONS(5642), + [anon_sym_LT_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5642), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP] = ACTIONS(5642), + [anon_sym_xor] = ACTIONS(5642), + [anon_sym_LT_LT] = ACTIONS(5642), + [anon_sym_GT_GT] = ACTIONS(5642), + [anon_sym_LT_LT_PIPE] = ACTIONS(5642), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_SLASH] = ACTIONS(5642), + [anon_sym_catch] = ACTIONS(5642), + [anon_sym_TILDE] = ACTIONS(5640), + [anon_sym_try] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5640), + [anon_sym_true] = ACTIONS(5642), + [anon_sym_false] = ACTIONS(5642), + [anon_sym_null] = ACTIONS(5642), + [anon_sym_unreachable] = ACTIONS(5642), + [anon_sym_undefined] = ACTIONS(5642), + [sym_sink] = ACTIONS(5642), + [sym_integer] = ACTIONS(5642), + [sym_float] = ACTIONS(5640), + [anon_sym_DQUOTE] = ACTIONS(5640), + [sym_multiline_string] = ACTIONS(5640), + [sym_character] = ACTIONS(5640), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5640), + }, + [STATE(2495)] = { + [ts_builtin_sym_end] = ACTIONS(5644), + [sym_identifier] = ACTIONS(5646), + [anon_sym_import] = ACTIONS(5646), + [anon_sym_test] = ACTIONS(5646), + [anon_sym_hide] = ACTIONS(5646), + [anon_sym_func] = ACTIONS(5646), + [anon_sym_BANG] = ACTIONS(5646), + [anon_sym_EQ] = ACTIONS(5646), + [anon_sym_struct] = ACTIONS(5646), + [anon_sym_LPAREN] = ACTIONS(5644), + [anon_sym_RPAREN] = ACTIONS(5644), + [anon_sym_LBRACE] = ACTIONS(5644), + [anon_sym_COMMA] = ACTIONS(5644), + [anon_sym_RBRACE] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5646), + [anon_sym_DOLLAR] = ACTIONS(5644), + [anon_sym_PIPE] = ACTIONS(5646), + [anon_sym_QMARK] = ACTIONS(5644), + [anon_sym_STAR] = ACTIONS(5646), + [anon_sym_LBRACK] = ACTIONS(5644), + [anon_sym_SEMI] = ACTIONS(5644), + [anon_sym_RBRACK] = ACTIONS(5644), + [anon_sym_void] = ACTIONS(5646), + [anon_sym_noreturn] = ACTIONS(5646), + [anon_sym_type] = ACTIONS(5646), + [anon_sym_anyopaque] = ACTIONS(5646), + [anon_sym_bool] = ACTIONS(5646), + [anon_sym_int] = ACTIONS(5646), + [anon_sym_uint] = ACTIONS(5646), + [anon_sym_float] = ACTIONS(5646), + [anon_sym_range] = ACTIONS(5646), + [anon_sym_i8] = ACTIONS(5646), + [anon_sym_i16] = ACTIONS(5646), + [anon_sym_i32] = ACTIONS(5646), + [anon_sym_i64] = ACTIONS(5646), + [anon_sym_u8] = ACTIONS(5646), + [anon_sym_u16] = ACTIONS(5646), + [anon_sym_u32] = ACTIONS(5646), + [anon_sym_u64] = ACTIONS(5646), + [anon_sym_isize] = ACTIONS(5646), + [anon_sym_usize] = ACTIONS(5646), + [anon_sym_f32] = ACTIONS(5646), + [anon_sym_f64] = ACTIONS(5646), + [anon_sym_c_char] = ACTIONS(5646), + [anon_sym_c_schar] = ACTIONS(5646), + [anon_sym_c_uchar] = ACTIONS(5646), + [anon_sym_c_short] = ACTIONS(5646), + [anon_sym_c_ushort] = ACTIONS(5646), + [anon_sym_c_int] = ACTIONS(5646), + [anon_sym_c_uint] = ACTIONS(5646), + [anon_sym_c_long] = ACTIONS(5646), + [anon_sym_c_ulong] = ACTIONS(5646), + [anon_sym_c_longlong] = ACTIONS(5646), + [anon_sym_c_ulonglong] = ACTIONS(5646), + [anon_sym_c_float] = ACTIONS(5646), + [anon_sym_c_double] = ACTIONS(5646), + [anon_sym_c_longdouble] = ACTIONS(5646), + [anon_sym_PLUS_EQ] = ACTIONS(5644), + [anon_sym_DASH_EQ] = ACTIONS(5644), + [anon_sym_STAR_EQ] = ACTIONS(5644), + [anon_sym_SLASH_EQ] = ACTIONS(5644), + [anon_sym_AMP_EQ] = ACTIONS(5644), + [anon_sym_PIPE_EQ] = ACTIONS(5644), + [anon_sym_xor_EQ] = ACTIONS(5644), + [anon_sym_LT_LT_EQ] = ACTIONS(5644), + [anon_sym_GT_GT_EQ] = ACTIONS(5644), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5644), + [anon_sym_return] = ACTIONS(5646), + [anon_sym_yield] = ACTIONS(5646), + [anon_sym_COLON] = ACTIONS(5644), + [anon_sym_break] = ACTIONS(5646), + [anon_sym_continue] = ACTIONS(5646), + [anon_sym_defer] = ACTIONS(5646), + [anon_sym_errdefer] = ACTIONS(5646), + [anon_sym_if] = ACTIONS(5646), + [anon_sym_else] = ACTIONS(5646), + [anon_sym_while] = ACTIONS(5646), + [anon_sym_expand] = ACTIONS(5646), + [anon_sym_for] = ACTIONS(5646), + [anon_sym_match] = ACTIONS(5646), + [anon_sym_DOT_DOT] = ACTIONS(5646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5644), + [anon_sym_orelse] = ACTIONS(5646), + [anon_sym_or] = ACTIONS(5646), + [anon_sym_and] = ACTIONS(5646), + [anon_sym_EQ_EQ] = ACTIONS(5644), + [anon_sym_BANG_EQ] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_LT_EQ] = ACTIONS(5644), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5644), + [anon_sym_AMP] = ACTIONS(5646), + [anon_sym_xor] = ACTIONS(5646), + [anon_sym_LT_LT] = ACTIONS(5646), + [anon_sym_GT_GT] = ACTIONS(5646), + [anon_sym_LT_LT_PIPE] = ACTIONS(5646), + [anon_sym_PLUS] = ACTIONS(5646), + [anon_sym_SLASH] = ACTIONS(5646), + [anon_sym_catch] = ACTIONS(5646), + [anon_sym_TILDE] = ACTIONS(5644), + [anon_sym_try] = ACTIONS(5646), + [anon_sym_DOT] = ACTIONS(5646), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_true] = ACTIONS(5646), + [anon_sym_false] = ACTIONS(5646), + [anon_sym_null] = ACTIONS(5646), + [anon_sym_unreachable] = ACTIONS(5646), + [anon_sym_undefined] = ACTIONS(5646), + [sym_sink] = ACTIONS(5646), + [sym_integer] = ACTIONS(5646), + [sym_float] = ACTIONS(5644), + [anon_sym_DQUOTE] = ACTIONS(5644), + [sym_multiline_string] = ACTIONS(5644), + [sym_character] = ACTIONS(5644), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5644), + }, + [STATE(2496)] = { + [ts_builtin_sym_end] = ACTIONS(5648), + [sym_identifier] = ACTIONS(5650), + [anon_sym_import] = ACTIONS(5650), + [anon_sym_test] = ACTIONS(5650), + [anon_sym_hide] = ACTIONS(5650), + [anon_sym_func] = ACTIONS(5650), + [anon_sym_BANG] = ACTIONS(5650), + [anon_sym_EQ] = ACTIONS(5650), + [anon_sym_struct] = ACTIONS(5650), + [anon_sym_LPAREN] = ACTIONS(5648), + [anon_sym_RPAREN] = ACTIONS(5648), + [anon_sym_LBRACE] = ACTIONS(5648), + [anon_sym_COMMA] = ACTIONS(5648), + [anon_sym_RBRACE] = ACTIONS(5648), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_DOLLAR] = ACTIONS(5648), + [anon_sym_PIPE] = ACTIONS(5650), + [anon_sym_QMARK] = ACTIONS(5648), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5648), + [anon_sym_RBRACK] = ACTIONS(5648), + [anon_sym_void] = ACTIONS(5650), + [anon_sym_noreturn] = ACTIONS(5650), + [anon_sym_type] = ACTIONS(5650), + [anon_sym_anyopaque] = ACTIONS(5650), + [anon_sym_bool] = ACTIONS(5650), + [anon_sym_int] = ACTIONS(5650), + [anon_sym_uint] = ACTIONS(5650), + [anon_sym_float] = ACTIONS(5650), + [anon_sym_range] = ACTIONS(5650), + [anon_sym_i8] = ACTIONS(5650), + [anon_sym_i16] = ACTIONS(5650), + [anon_sym_i32] = ACTIONS(5650), + [anon_sym_i64] = ACTIONS(5650), + [anon_sym_u8] = ACTIONS(5650), + [anon_sym_u16] = ACTIONS(5650), + [anon_sym_u32] = ACTIONS(5650), + [anon_sym_u64] = ACTIONS(5650), + [anon_sym_isize] = ACTIONS(5650), + [anon_sym_usize] = ACTIONS(5650), + [anon_sym_f32] = ACTIONS(5650), + [anon_sym_f64] = ACTIONS(5650), + [anon_sym_c_char] = ACTIONS(5650), + [anon_sym_c_schar] = ACTIONS(5650), + [anon_sym_c_uchar] = ACTIONS(5650), + [anon_sym_c_short] = ACTIONS(5650), + [anon_sym_c_ushort] = ACTIONS(5650), + [anon_sym_c_int] = ACTIONS(5650), + [anon_sym_c_uint] = ACTIONS(5650), + [anon_sym_c_long] = ACTIONS(5650), + [anon_sym_c_ulong] = ACTIONS(5650), + [anon_sym_c_longlong] = ACTIONS(5650), + [anon_sym_c_ulonglong] = ACTIONS(5650), + [anon_sym_c_float] = ACTIONS(5650), + [anon_sym_c_double] = ACTIONS(5650), + [anon_sym_c_longdouble] = ACTIONS(5650), + [anon_sym_PLUS_EQ] = ACTIONS(5648), + [anon_sym_DASH_EQ] = ACTIONS(5648), + [anon_sym_STAR_EQ] = ACTIONS(5648), + [anon_sym_SLASH_EQ] = ACTIONS(5648), + [anon_sym_AMP_EQ] = ACTIONS(5648), + [anon_sym_PIPE_EQ] = ACTIONS(5648), + [anon_sym_xor_EQ] = ACTIONS(5648), + [anon_sym_LT_LT_EQ] = ACTIONS(5648), + [anon_sym_GT_GT_EQ] = ACTIONS(5648), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5648), + [anon_sym_return] = ACTIONS(5650), + [anon_sym_yield] = ACTIONS(5650), + [anon_sym_COLON] = ACTIONS(5648), + [anon_sym_break] = ACTIONS(5650), + [anon_sym_continue] = ACTIONS(5650), + [anon_sym_defer] = ACTIONS(5650), + [anon_sym_errdefer] = ACTIONS(5650), + [anon_sym_if] = ACTIONS(5650), + [anon_sym_else] = ACTIONS(5650), + [anon_sym_while] = ACTIONS(5650), + [anon_sym_expand] = ACTIONS(5650), + [anon_sym_for] = ACTIONS(5650), + [anon_sym_match] = ACTIONS(5650), + [anon_sym_DOT_DOT] = ACTIONS(5650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5648), + [anon_sym_orelse] = ACTIONS(5650), + [anon_sym_or] = ACTIONS(5650), + [anon_sym_and] = ACTIONS(5650), + [anon_sym_EQ_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_EQ] = ACTIONS(5648), + [anon_sym_GT] = ACTIONS(5650), + [anon_sym_GT_EQ] = ACTIONS(5648), + [anon_sym_AMP] = ACTIONS(5650), + [anon_sym_xor] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5650), + [anon_sym_GT_GT] = ACTIONS(5650), + [anon_sym_LT_LT_PIPE] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_SLASH] = ACTIONS(5650), + [anon_sym_catch] = ACTIONS(5650), + [anon_sym_TILDE] = ACTIONS(5648), + [anon_sym_try] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5648), + [anon_sym_true] = ACTIONS(5650), + [anon_sym_false] = ACTIONS(5650), + [anon_sym_null] = ACTIONS(5650), + [anon_sym_unreachable] = ACTIONS(5650), + [anon_sym_undefined] = ACTIONS(5650), + [sym_sink] = ACTIONS(5650), + [sym_integer] = ACTIONS(5650), + [sym_float] = ACTIONS(5648), + [anon_sym_DQUOTE] = ACTIONS(5648), + [sym_multiline_string] = ACTIONS(5648), + [sym_character] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5648), + }, + [STATE(2497)] = { + [ts_builtin_sym_end] = ACTIONS(5652), + [sym_identifier] = ACTIONS(5654), + [anon_sym_import] = ACTIONS(5654), + [anon_sym_test] = ACTIONS(5654), + [anon_sym_hide] = ACTIONS(5654), + [anon_sym_func] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5654), + [anon_sym_EQ] = ACTIONS(5654), + [anon_sym_struct] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5652), + [anon_sym_RPAREN] = ACTIONS(5652), + [anon_sym_LBRACE] = ACTIONS(5652), + [anon_sym_COMMA] = ACTIONS(5652), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5654), + [anon_sym_DOLLAR] = ACTIONS(5652), + [anon_sym_PIPE] = ACTIONS(5654), + [anon_sym_QMARK] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_SEMI] = ACTIONS(5652), + [anon_sym_RBRACK] = ACTIONS(5652), + [anon_sym_void] = ACTIONS(5654), + [anon_sym_noreturn] = ACTIONS(5654), + [anon_sym_type] = ACTIONS(5654), + [anon_sym_anyopaque] = ACTIONS(5654), + [anon_sym_bool] = ACTIONS(5654), + [anon_sym_int] = ACTIONS(5654), + [anon_sym_uint] = ACTIONS(5654), + [anon_sym_float] = ACTIONS(5654), + [anon_sym_range] = ACTIONS(5654), + [anon_sym_i8] = ACTIONS(5654), + [anon_sym_i16] = ACTIONS(5654), + [anon_sym_i32] = ACTIONS(5654), + [anon_sym_i64] = ACTIONS(5654), + [anon_sym_u8] = ACTIONS(5654), + [anon_sym_u16] = ACTIONS(5654), + [anon_sym_u32] = ACTIONS(5654), + [anon_sym_u64] = ACTIONS(5654), + [anon_sym_isize] = ACTIONS(5654), + [anon_sym_usize] = ACTIONS(5654), + [anon_sym_f32] = ACTIONS(5654), + [anon_sym_f64] = ACTIONS(5654), + [anon_sym_c_char] = ACTIONS(5654), + [anon_sym_c_schar] = ACTIONS(5654), + [anon_sym_c_uchar] = ACTIONS(5654), + [anon_sym_c_short] = ACTIONS(5654), + [anon_sym_c_ushort] = ACTIONS(5654), + [anon_sym_c_int] = ACTIONS(5654), + [anon_sym_c_uint] = ACTIONS(5654), + [anon_sym_c_long] = ACTIONS(5654), + [anon_sym_c_ulong] = ACTIONS(5654), + [anon_sym_c_longlong] = ACTIONS(5654), + [anon_sym_c_ulonglong] = ACTIONS(5654), + [anon_sym_c_float] = ACTIONS(5654), + [anon_sym_c_double] = ACTIONS(5654), + [anon_sym_c_longdouble] = ACTIONS(5654), + [anon_sym_PLUS_EQ] = ACTIONS(5652), + [anon_sym_DASH_EQ] = ACTIONS(5652), + [anon_sym_STAR_EQ] = ACTIONS(5652), + [anon_sym_SLASH_EQ] = ACTIONS(5652), + [anon_sym_AMP_EQ] = ACTIONS(5652), + [anon_sym_PIPE_EQ] = ACTIONS(5652), + [anon_sym_xor_EQ] = ACTIONS(5652), + [anon_sym_LT_LT_EQ] = ACTIONS(5652), + [anon_sym_GT_GT_EQ] = ACTIONS(5652), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5652), + [anon_sym_return] = ACTIONS(5654), + [anon_sym_yield] = ACTIONS(5654), + [anon_sym_COLON] = ACTIONS(5652), + [anon_sym_break] = ACTIONS(5654), + [anon_sym_continue] = ACTIONS(5654), + [anon_sym_defer] = ACTIONS(5654), + [anon_sym_errdefer] = ACTIONS(5654), + [anon_sym_if] = ACTIONS(5654), + [anon_sym_else] = ACTIONS(5654), + [anon_sym_while] = ACTIONS(5654), + [anon_sym_expand] = ACTIONS(5654), + [anon_sym_for] = ACTIONS(5654), + [anon_sym_match] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5652), + [anon_sym_orelse] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_EQ_EQ] = ACTIONS(5652), + [anon_sym_BANG_EQ] = ACTIONS(5652), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5652), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5652), + [anon_sym_AMP] = ACTIONS(5654), + [anon_sym_xor] = ACTIONS(5654), + [anon_sym_LT_LT] = ACTIONS(5654), + [anon_sym_GT_GT] = ACTIONS(5654), + [anon_sym_LT_LT_PIPE] = ACTIONS(5654), + [anon_sym_PLUS] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_catch] = ACTIONS(5654), + [anon_sym_TILDE] = ACTIONS(5652), + [anon_sym_try] = ACTIONS(5654), + [anon_sym_DOT] = ACTIONS(5654), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym_true] = ACTIONS(5654), + [anon_sym_false] = ACTIONS(5654), + [anon_sym_null] = ACTIONS(5654), + [anon_sym_unreachable] = ACTIONS(5654), + [anon_sym_undefined] = ACTIONS(5654), + [sym_sink] = ACTIONS(5654), + [sym_integer] = ACTIONS(5654), + [sym_float] = ACTIONS(5652), + [anon_sym_DQUOTE] = ACTIONS(5652), + [sym_multiline_string] = ACTIONS(5652), + [sym_character] = ACTIONS(5652), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5652), + }, + [STATE(2498)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3252), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2499), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5656), + }, + [STATE(2499)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3263), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2500)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3264), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5658), + }, + [STATE(2501)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2507), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5660), + }, + [STATE(2502)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3281), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2503)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3282), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5662), + }, + [STATE(2504)] = { + [ts_builtin_sym_end] = ACTIONS(5664), + [sym_identifier] = ACTIONS(5666), + [anon_sym_import] = ACTIONS(5666), + [anon_sym_test] = ACTIONS(5666), + [anon_sym_hide] = ACTIONS(5666), + [anon_sym_func] = ACTIONS(5666), + [anon_sym_BANG] = ACTIONS(5666), + [anon_sym_EQ] = ACTIONS(5666), + [anon_sym_struct] = ACTIONS(5666), + [anon_sym_LPAREN] = ACTIONS(5664), + [anon_sym_RPAREN] = ACTIONS(5664), + [anon_sym_LBRACE] = ACTIONS(5664), + [anon_sym_COMMA] = ACTIONS(5664), + [anon_sym_RBRACE] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5666), + [anon_sym_DOLLAR] = ACTIONS(5664), + [anon_sym_PIPE] = ACTIONS(5666), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_LBRACK] = ACTIONS(5664), + [anon_sym_SEMI] = ACTIONS(5664), + [anon_sym_RBRACK] = ACTIONS(5664), + [anon_sym_void] = ACTIONS(5666), + [anon_sym_noreturn] = ACTIONS(5666), + [anon_sym_type] = ACTIONS(5666), + [anon_sym_anyopaque] = ACTIONS(5666), + [anon_sym_bool] = ACTIONS(5666), + [anon_sym_int] = ACTIONS(5666), + [anon_sym_uint] = ACTIONS(5666), + [anon_sym_float] = ACTIONS(5666), + [anon_sym_range] = ACTIONS(5666), + [anon_sym_i8] = ACTIONS(5666), + [anon_sym_i16] = ACTIONS(5666), + [anon_sym_i32] = ACTIONS(5666), + [anon_sym_i64] = ACTIONS(5666), + [anon_sym_u8] = ACTIONS(5666), + [anon_sym_u16] = ACTIONS(5666), + [anon_sym_u32] = ACTIONS(5666), + [anon_sym_u64] = ACTIONS(5666), + [anon_sym_isize] = ACTIONS(5666), + [anon_sym_usize] = ACTIONS(5666), + [anon_sym_f32] = ACTIONS(5666), + [anon_sym_f64] = ACTIONS(5666), + [anon_sym_c_char] = ACTIONS(5666), + [anon_sym_c_schar] = ACTIONS(5666), + [anon_sym_c_uchar] = ACTIONS(5666), + [anon_sym_c_short] = ACTIONS(5666), + [anon_sym_c_ushort] = ACTIONS(5666), + [anon_sym_c_int] = ACTIONS(5666), + [anon_sym_c_uint] = ACTIONS(5666), + [anon_sym_c_long] = ACTIONS(5666), + [anon_sym_c_ulong] = ACTIONS(5666), + [anon_sym_c_longlong] = ACTIONS(5666), + [anon_sym_c_ulonglong] = ACTIONS(5666), + [anon_sym_c_float] = ACTIONS(5666), + [anon_sym_c_double] = ACTIONS(5666), + [anon_sym_c_longdouble] = ACTIONS(5666), + [anon_sym_PLUS_EQ] = ACTIONS(5664), + [anon_sym_DASH_EQ] = ACTIONS(5664), + [anon_sym_STAR_EQ] = ACTIONS(5664), + [anon_sym_SLASH_EQ] = ACTIONS(5664), + [anon_sym_AMP_EQ] = ACTIONS(5664), + [anon_sym_PIPE_EQ] = ACTIONS(5664), + [anon_sym_xor_EQ] = ACTIONS(5664), + [anon_sym_LT_LT_EQ] = ACTIONS(5664), + [anon_sym_GT_GT_EQ] = ACTIONS(5664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5664), + [anon_sym_return] = ACTIONS(5666), + [anon_sym_yield] = ACTIONS(5666), + [anon_sym_COLON] = ACTIONS(5664), + [anon_sym_break] = ACTIONS(5666), + [anon_sym_continue] = ACTIONS(5666), + [anon_sym_defer] = ACTIONS(5666), + [anon_sym_errdefer] = ACTIONS(5666), + [anon_sym_if] = ACTIONS(5666), + [anon_sym_else] = ACTIONS(5666), + [anon_sym_while] = ACTIONS(5666), + [anon_sym_expand] = ACTIONS(5666), + [anon_sym_for] = ACTIONS(5666), + [anon_sym_match] = ACTIONS(5666), + [anon_sym_DOT_DOT] = ACTIONS(5666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5664), + [anon_sym_orelse] = ACTIONS(5666), + [anon_sym_or] = ACTIONS(5666), + [anon_sym_and] = ACTIONS(5666), + [anon_sym_EQ_EQ] = ACTIONS(5664), + [anon_sym_BANG_EQ] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(5666), + [anon_sym_LT_EQ] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5666), + [anon_sym_GT_EQ] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_xor] = ACTIONS(5666), + [anon_sym_LT_LT] = ACTIONS(5666), + [anon_sym_GT_GT] = ACTIONS(5666), + [anon_sym_LT_LT_PIPE] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5666), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_catch] = ACTIONS(5666), + [anon_sym_TILDE] = ACTIONS(5664), + [anon_sym_try] = ACTIONS(5666), + [anon_sym_DOT] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5664), + [anon_sym_true] = ACTIONS(5666), + [anon_sym_false] = ACTIONS(5666), + [anon_sym_null] = ACTIONS(5666), + [anon_sym_unreachable] = ACTIONS(5666), + [anon_sym_undefined] = ACTIONS(5666), + [sym_sink] = ACTIONS(5666), + [sym_integer] = ACTIONS(5666), + [sym_float] = ACTIONS(5664), + [anon_sym_DQUOTE] = ACTIONS(5664), + [sym_multiline_string] = ACTIONS(5664), + [sym_character] = ACTIONS(5664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5664), + }, + [STATE(2505)] = { + [ts_builtin_sym_end] = ACTIONS(5668), + [sym_identifier] = ACTIONS(5670), + [anon_sym_import] = ACTIONS(5670), + [anon_sym_test] = ACTIONS(5670), + [anon_sym_hide] = ACTIONS(5670), + [anon_sym_func] = ACTIONS(5670), + [anon_sym_BANG] = ACTIONS(5670), + [anon_sym_EQ] = ACTIONS(5670), + [anon_sym_struct] = ACTIONS(5670), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_RPAREN] = ACTIONS(5668), + [anon_sym_LBRACE] = ACTIONS(5668), + [anon_sym_COMMA] = ACTIONS(5668), + [anon_sym_RBRACE] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_DOLLAR] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_QMARK] = ACTIONS(5668), + [anon_sym_STAR] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5668), + [anon_sym_RBRACK] = ACTIONS(5668), + [anon_sym_void] = ACTIONS(5670), + [anon_sym_noreturn] = ACTIONS(5670), + [anon_sym_type] = ACTIONS(5670), + [anon_sym_anyopaque] = ACTIONS(5670), + [anon_sym_bool] = ACTIONS(5670), + [anon_sym_int] = ACTIONS(5670), + [anon_sym_uint] = ACTIONS(5670), + [anon_sym_float] = ACTIONS(5670), + [anon_sym_range] = ACTIONS(5670), + [anon_sym_i8] = ACTIONS(5670), + [anon_sym_i16] = ACTIONS(5670), + [anon_sym_i32] = ACTIONS(5670), + [anon_sym_i64] = ACTIONS(5670), + [anon_sym_u8] = ACTIONS(5670), + [anon_sym_u16] = ACTIONS(5670), + [anon_sym_u32] = ACTIONS(5670), + [anon_sym_u64] = ACTIONS(5670), + [anon_sym_isize] = ACTIONS(5670), + [anon_sym_usize] = ACTIONS(5670), + [anon_sym_f32] = ACTIONS(5670), + [anon_sym_f64] = ACTIONS(5670), + [anon_sym_c_char] = ACTIONS(5670), + [anon_sym_c_schar] = ACTIONS(5670), + [anon_sym_c_uchar] = ACTIONS(5670), + [anon_sym_c_short] = ACTIONS(5670), + [anon_sym_c_ushort] = ACTIONS(5670), + [anon_sym_c_int] = ACTIONS(5670), + [anon_sym_c_uint] = ACTIONS(5670), + [anon_sym_c_long] = ACTIONS(5670), + [anon_sym_c_ulong] = ACTIONS(5670), + [anon_sym_c_longlong] = ACTIONS(5670), + [anon_sym_c_ulonglong] = ACTIONS(5670), + [anon_sym_c_float] = ACTIONS(5670), + [anon_sym_c_double] = ACTIONS(5670), + [anon_sym_c_longdouble] = ACTIONS(5670), + [anon_sym_PLUS_EQ] = ACTIONS(5668), + [anon_sym_DASH_EQ] = ACTIONS(5668), + [anon_sym_STAR_EQ] = ACTIONS(5668), + [anon_sym_SLASH_EQ] = ACTIONS(5668), + [anon_sym_AMP_EQ] = ACTIONS(5668), + [anon_sym_PIPE_EQ] = ACTIONS(5668), + [anon_sym_xor_EQ] = ACTIONS(5668), + [anon_sym_LT_LT_EQ] = ACTIONS(5668), + [anon_sym_GT_GT_EQ] = ACTIONS(5668), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5668), + [anon_sym_return] = ACTIONS(5670), + [anon_sym_yield] = ACTIONS(5670), + [anon_sym_COLON] = ACTIONS(5668), + [anon_sym_break] = ACTIONS(5670), + [anon_sym_continue] = ACTIONS(5670), + [anon_sym_defer] = ACTIONS(5670), + [anon_sym_errdefer] = ACTIONS(5670), + [anon_sym_if] = ACTIONS(5670), + [anon_sym_else] = ACTIONS(5670), + [anon_sym_while] = ACTIONS(5670), + [anon_sym_expand] = ACTIONS(5670), + [anon_sym_for] = ACTIONS(5670), + [anon_sym_match] = ACTIONS(5670), + [anon_sym_DOT_DOT] = ACTIONS(5670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5668), + [anon_sym_orelse] = ACTIONS(5670), + [anon_sym_or] = ACTIONS(5670), + [anon_sym_and] = ACTIONS(5670), + [anon_sym_EQ_EQ] = ACTIONS(5668), + [anon_sym_BANG_EQ] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5670), + [anon_sym_LT_EQ] = ACTIONS(5668), + [anon_sym_GT] = ACTIONS(5670), + [anon_sym_GT_EQ] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5670), + [anon_sym_xor] = ACTIONS(5670), + [anon_sym_LT_LT] = ACTIONS(5670), + [anon_sym_GT_GT] = ACTIONS(5670), + [anon_sym_LT_LT_PIPE] = ACTIONS(5670), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_SLASH] = ACTIONS(5670), + [anon_sym_catch] = ACTIONS(5670), + [anon_sym_TILDE] = ACTIONS(5668), + [anon_sym_try] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5670), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_true] = ACTIONS(5670), + [anon_sym_false] = ACTIONS(5670), + [anon_sym_null] = ACTIONS(5670), + [anon_sym_unreachable] = ACTIONS(5670), + [anon_sym_undefined] = ACTIONS(5670), + [sym_sink] = ACTIONS(5670), + [sym_integer] = ACTIONS(5670), + [sym_float] = ACTIONS(5668), + [anon_sym_DQUOTE] = ACTIONS(5668), + [sym_multiline_string] = ACTIONS(5668), + [sym_character] = ACTIONS(5668), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5668), + }, + [STATE(2506)] = { + [ts_builtin_sym_end] = ACTIONS(5672), + [sym_identifier] = ACTIONS(5674), + [anon_sym_import] = ACTIONS(5674), + [anon_sym_test] = ACTIONS(5674), + [anon_sym_hide] = ACTIONS(5674), + [anon_sym_func] = ACTIONS(5674), + [anon_sym_BANG] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(5674), + [anon_sym_struct] = ACTIONS(5674), + [anon_sym_LPAREN] = ACTIONS(5672), + [anon_sym_RPAREN] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5672), + [anon_sym_COMMA] = ACTIONS(5672), + [anon_sym_RBRACE] = ACTIONS(5672), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_DOLLAR] = ACTIONS(5672), + [anon_sym_PIPE] = ACTIONS(5674), + [anon_sym_QMARK] = ACTIONS(5672), + [anon_sym_STAR] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5672), + [anon_sym_RBRACK] = ACTIONS(5672), + [anon_sym_void] = ACTIONS(5674), + [anon_sym_noreturn] = ACTIONS(5674), + [anon_sym_type] = ACTIONS(5674), + [anon_sym_anyopaque] = ACTIONS(5674), + [anon_sym_bool] = ACTIONS(5674), + [anon_sym_int] = ACTIONS(5674), + [anon_sym_uint] = ACTIONS(5674), + [anon_sym_float] = ACTIONS(5674), + [anon_sym_range] = ACTIONS(5674), + [anon_sym_i8] = ACTIONS(5674), + [anon_sym_i16] = ACTIONS(5674), + [anon_sym_i32] = ACTIONS(5674), + [anon_sym_i64] = ACTIONS(5674), + [anon_sym_u8] = ACTIONS(5674), + [anon_sym_u16] = ACTIONS(5674), + [anon_sym_u32] = ACTIONS(5674), + [anon_sym_u64] = ACTIONS(5674), + [anon_sym_isize] = ACTIONS(5674), + [anon_sym_usize] = ACTIONS(5674), + [anon_sym_f32] = ACTIONS(5674), + [anon_sym_f64] = ACTIONS(5674), + [anon_sym_c_char] = ACTIONS(5674), + [anon_sym_c_schar] = ACTIONS(5674), + [anon_sym_c_uchar] = ACTIONS(5674), + [anon_sym_c_short] = ACTIONS(5674), + [anon_sym_c_ushort] = ACTIONS(5674), + [anon_sym_c_int] = ACTIONS(5674), + [anon_sym_c_uint] = ACTIONS(5674), + [anon_sym_c_long] = ACTIONS(5674), + [anon_sym_c_ulong] = ACTIONS(5674), + [anon_sym_c_longlong] = ACTIONS(5674), + [anon_sym_c_ulonglong] = ACTIONS(5674), + [anon_sym_c_float] = ACTIONS(5674), + [anon_sym_c_double] = ACTIONS(5674), + [anon_sym_c_longdouble] = ACTIONS(5674), + [anon_sym_PLUS_EQ] = ACTIONS(5672), + [anon_sym_DASH_EQ] = ACTIONS(5672), + [anon_sym_STAR_EQ] = ACTIONS(5672), + [anon_sym_SLASH_EQ] = ACTIONS(5672), + [anon_sym_AMP_EQ] = ACTIONS(5672), + [anon_sym_PIPE_EQ] = ACTIONS(5672), + [anon_sym_xor_EQ] = ACTIONS(5672), + [anon_sym_LT_LT_EQ] = ACTIONS(5672), + [anon_sym_GT_GT_EQ] = ACTIONS(5672), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5672), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_COLON] = ACTIONS(5672), + [anon_sym_break] = ACTIONS(5674), + [anon_sym_continue] = ACTIONS(5674), + [anon_sym_defer] = ACTIONS(5674), + [anon_sym_errdefer] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_else] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_expand] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_DOT_DOT] = ACTIONS(5674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5672), + [anon_sym_orelse] = ACTIONS(5674), + [anon_sym_or] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5672), + [anon_sym_BANG_EQ] = ACTIONS(5672), + [anon_sym_LT] = ACTIONS(5674), + [anon_sym_LT_EQ] = ACTIONS(5672), + [anon_sym_GT] = ACTIONS(5674), + [anon_sym_GT_EQ] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_xor] = ACTIONS(5674), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5674), + [anon_sym_LT_LT_PIPE] = ACTIONS(5674), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_SLASH] = ACTIONS(5674), + [anon_sym_catch] = ACTIONS(5674), + [anon_sym_TILDE] = ACTIONS(5672), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5674), + [anon_sym_CARET] = ACTIONS(5672), + [anon_sym_true] = ACTIONS(5674), + [anon_sym_false] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_unreachable] = ACTIONS(5674), + [anon_sym_undefined] = ACTIONS(5674), + [sym_sink] = ACTIONS(5674), + [sym_integer] = ACTIONS(5674), + [sym_float] = ACTIONS(5672), + [anon_sym_DQUOTE] = ACTIONS(5672), + [sym_multiline_string] = ACTIONS(5672), + [sym_character] = ACTIONS(5672), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5672), + }, + [STATE(2507)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2508)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3302), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6571), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(809), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(813), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(819), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2509)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2511), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5676), + }, + [STATE(2510)] = { + [ts_builtin_sym_end] = ACTIONS(5678), + [sym_identifier] = ACTIONS(5680), + [anon_sym_import] = ACTIONS(5680), + [anon_sym_test] = ACTIONS(5680), + [anon_sym_hide] = ACTIONS(5680), + [anon_sym_func] = ACTIONS(5680), + [anon_sym_BANG] = ACTIONS(5680), + [anon_sym_EQ] = ACTIONS(5680), + [anon_sym_struct] = ACTIONS(5680), + [anon_sym_LPAREN] = ACTIONS(5678), + [anon_sym_RPAREN] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5680), + [anon_sym_DOLLAR] = ACTIONS(5678), + [anon_sym_PIPE] = ACTIONS(5680), + [anon_sym_QMARK] = ACTIONS(5678), + [anon_sym_STAR] = ACTIONS(5680), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_SEMI] = ACTIONS(5678), + [anon_sym_RBRACK] = ACTIONS(5678), + [anon_sym_void] = ACTIONS(5680), + [anon_sym_noreturn] = ACTIONS(5680), + [anon_sym_type] = ACTIONS(5680), + [anon_sym_anyopaque] = ACTIONS(5680), + [anon_sym_bool] = ACTIONS(5680), + [anon_sym_int] = ACTIONS(5680), + [anon_sym_uint] = ACTIONS(5680), + [anon_sym_float] = ACTIONS(5680), + [anon_sym_range] = ACTIONS(5680), + [anon_sym_i8] = ACTIONS(5680), + [anon_sym_i16] = ACTIONS(5680), + [anon_sym_i32] = ACTIONS(5680), + [anon_sym_i64] = ACTIONS(5680), + [anon_sym_u8] = ACTIONS(5680), + [anon_sym_u16] = ACTIONS(5680), + [anon_sym_u32] = ACTIONS(5680), + [anon_sym_u64] = ACTIONS(5680), + [anon_sym_isize] = ACTIONS(5680), + [anon_sym_usize] = ACTIONS(5680), + [anon_sym_f32] = ACTIONS(5680), + [anon_sym_f64] = ACTIONS(5680), + [anon_sym_c_char] = ACTIONS(5680), + [anon_sym_c_schar] = ACTIONS(5680), + [anon_sym_c_uchar] = ACTIONS(5680), + [anon_sym_c_short] = ACTIONS(5680), + [anon_sym_c_ushort] = ACTIONS(5680), + [anon_sym_c_int] = ACTIONS(5680), + [anon_sym_c_uint] = ACTIONS(5680), + [anon_sym_c_long] = ACTIONS(5680), + [anon_sym_c_ulong] = ACTIONS(5680), + [anon_sym_c_longlong] = ACTIONS(5680), + [anon_sym_c_ulonglong] = ACTIONS(5680), + [anon_sym_c_float] = ACTIONS(5680), + [anon_sym_c_double] = ACTIONS(5680), + [anon_sym_c_longdouble] = ACTIONS(5680), + [anon_sym_PLUS_EQ] = ACTIONS(5678), + [anon_sym_DASH_EQ] = ACTIONS(5678), + [anon_sym_STAR_EQ] = ACTIONS(5678), + [anon_sym_SLASH_EQ] = ACTIONS(5678), + [anon_sym_AMP_EQ] = ACTIONS(5678), + [anon_sym_PIPE_EQ] = ACTIONS(5678), + [anon_sym_xor_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_EQ] = ACTIONS(5678), + [anon_sym_GT_GT_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5678), + [anon_sym_return] = ACTIONS(5680), + [anon_sym_yield] = ACTIONS(5680), + [anon_sym_COLON] = ACTIONS(5678), + [anon_sym_break] = ACTIONS(5680), + [anon_sym_continue] = ACTIONS(5680), + [anon_sym_defer] = ACTIONS(5680), + [anon_sym_errdefer] = ACTIONS(5680), + [anon_sym_if] = ACTIONS(5680), + [anon_sym_else] = ACTIONS(5680), + [anon_sym_while] = ACTIONS(5680), + [anon_sym_expand] = ACTIONS(5680), + [anon_sym_for] = ACTIONS(5680), + [anon_sym_match] = ACTIONS(5680), + [anon_sym_DOT_DOT] = ACTIONS(5680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5678), + [anon_sym_orelse] = ACTIONS(5680), + [anon_sym_or] = ACTIONS(5680), + [anon_sym_and] = ACTIONS(5680), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_LT] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5678), + [anon_sym_GT] = ACTIONS(5680), + [anon_sym_GT_EQ] = ACTIONS(5678), + [anon_sym_AMP] = ACTIONS(5680), + [anon_sym_xor] = ACTIONS(5680), + [anon_sym_LT_LT] = ACTIONS(5680), + [anon_sym_GT_GT] = ACTIONS(5680), + [anon_sym_LT_LT_PIPE] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5680), + [anon_sym_SLASH] = ACTIONS(5680), + [anon_sym_catch] = ACTIONS(5680), + [anon_sym_TILDE] = ACTIONS(5678), + [anon_sym_try] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_CARET] = ACTIONS(5678), + [anon_sym_true] = ACTIONS(5680), + [anon_sym_false] = ACTIONS(5680), + [anon_sym_null] = ACTIONS(5680), + [anon_sym_unreachable] = ACTIONS(5680), + [anon_sym_undefined] = ACTIONS(5680), + [sym_sink] = ACTIONS(5680), + [sym_integer] = ACTIONS(5680), + [sym_float] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [sym_multiline_string] = ACTIONS(5678), + [sym_character] = ACTIONS(5678), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5678), + }, + [STATE(2511)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2512)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2515), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5682), + }, + [STATE(2513)] = { + [ts_builtin_sym_end] = ACTIONS(5684), + [sym_identifier] = ACTIONS(5686), + [anon_sym_import] = ACTIONS(5686), + [anon_sym_test] = ACTIONS(5686), + [anon_sym_hide] = ACTIONS(5686), + [anon_sym_func] = ACTIONS(5686), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_EQ] = ACTIONS(5686), + [anon_sym_struct] = ACTIONS(5686), + [anon_sym_LPAREN] = ACTIONS(5684), + [anon_sym_RPAREN] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5684), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_RBRACE] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5686), + [anon_sym_DOLLAR] = ACTIONS(5684), + [anon_sym_PIPE] = ACTIONS(5686), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5686), + [anon_sym_LBRACK] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(5684), + [anon_sym_RBRACK] = ACTIONS(5684), + [anon_sym_void] = ACTIONS(5686), + [anon_sym_noreturn] = ACTIONS(5686), + [anon_sym_type] = ACTIONS(5686), + [anon_sym_anyopaque] = ACTIONS(5686), + [anon_sym_bool] = ACTIONS(5686), + [anon_sym_int] = ACTIONS(5686), + [anon_sym_uint] = ACTIONS(5686), + [anon_sym_float] = ACTIONS(5686), + [anon_sym_range] = ACTIONS(5686), + [anon_sym_i8] = ACTIONS(5686), + [anon_sym_i16] = ACTIONS(5686), + [anon_sym_i32] = ACTIONS(5686), + [anon_sym_i64] = ACTIONS(5686), + [anon_sym_u8] = ACTIONS(5686), + [anon_sym_u16] = ACTIONS(5686), + [anon_sym_u32] = ACTIONS(5686), + [anon_sym_u64] = ACTIONS(5686), + [anon_sym_isize] = ACTIONS(5686), + [anon_sym_usize] = ACTIONS(5686), + [anon_sym_f32] = ACTIONS(5686), + [anon_sym_f64] = ACTIONS(5686), + [anon_sym_c_char] = ACTIONS(5686), + [anon_sym_c_schar] = ACTIONS(5686), + [anon_sym_c_uchar] = ACTIONS(5686), + [anon_sym_c_short] = ACTIONS(5686), + [anon_sym_c_ushort] = ACTIONS(5686), + [anon_sym_c_int] = ACTIONS(5686), + [anon_sym_c_uint] = ACTIONS(5686), + [anon_sym_c_long] = ACTIONS(5686), + [anon_sym_c_ulong] = ACTIONS(5686), + [anon_sym_c_longlong] = ACTIONS(5686), + [anon_sym_c_ulonglong] = ACTIONS(5686), + [anon_sym_c_float] = ACTIONS(5686), + [anon_sym_c_double] = ACTIONS(5686), + [anon_sym_c_longdouble] = ACTIONS(5686), + [anon_sym_PLUS_EQ] = ACTIONS(5684), + [anon_sym_DASH_EQ] = ACTIONS(5684), + [anon_sym_STAR_EQ] = ACTIONS(5684), + [anon_sym_SLASH_EQ] = ACTIONS(5684), + [anon_sym_AMP_EQ] = ACTIONS(5684), + [anon_sym_PIPE_EQ] = ACTIONS(5684), + [anon_sym_xor_EQ] = ACTIONS(5684), + [anon_sym_LT_LT_EQ] = ACTIONS(5684), + [anon_sym_GT_GT_EQ] = ACTIONS(5684), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5684), + [anon_sym_return] = ACTIONS(5686), + [anon_sym_yield] = ACTIONS(5686), + [anon_sym_COLON] = ACTIONS(5684), + [anon_sym_break] = ACTIONS(5686), + [anon_sym_continue] = ACTIONS(5686), + [anon_sym_defer] = ACTIONS(5686), + [anon_sym_errdefer] = ACTIONS(5686), + [anon_sym_if] = ACTIONS(5686), + [anon_sym_else] = ACTIONS(5686), + [anon_sym_while] = ACTIONS(5686), + [anon_sym_expand] = ACTIONS(5686), + [anon_sym_for] = ACTIONS(5686), + [anon_sym_match] = ACTIONS(5686), + [anon_sym_DOT_DOT] = ACTIONS(5686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5684), + [anon_sym_orelse] = ACTIONS(5686), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_EQ_EQ] = ACTIONS(5684), + [anon_sym_BANG_EQ] = ACTIONS(5684), + [anon_sym_LT] = ACTIONS(5686), + [anon_sym_LT_EQ] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5686), + [anon_sym_GT_EQ] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5686), + [anon_sym_xor] = ACTIONS(5686), + [anon_sym_LT_LT] = ACTIONS(5686), + [anon_sym_GT_GT] = ACTIONS(5686), + [anon_sym_LT_LT_PIPE] = ACTIONS(5686), + [anon_sym_PLUS] = ACTIONS(5686), + [anon_sym_SLASH] = ACTIONS(5686), + [anon_sym_catch] = ACTIONS(5686), + [anon_sym_TILDE] = ACTIONS(5684), + [anon_sym_try] = ACTIONS(5686), + [anon_sym_DOT] = ACTIONS(5686), + [anon_sym_CARET] = ACTIONS(5684), + [anon_sym_true] = ACTIONS(5686), + [anon_sym_false] = ACTIONS(5686), + [anon_sym_null] = ACTIONS(5686), + [anon_sym_unreachable] = ACTIONS(5686), + [anon_sym_undefined] = ACTIONS(5686), + [sym_sink] = ACTIONS(5686), + [sym_integer] = ACTIONS(5686), + [sym_float] = ACTIONS(5684), + [anon_sym_DQUOTE] = ACTIONS(5684), + [sym_multiline_string] = ACTIONS(5684), + [sym_character] = ACTIONS(5684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5684), + }, + [STATE(2514)] = { + [ts_builtin_sym_end] = ACTIONS(5688), + [sym_identifier] = ACTIONS(5690), + [anon_sym_import] = ACTIONS(5690), + [anon_sym_test] = ACTIONS(5690), + [anon_sym_hide] = ACTIONS(5690), + [anon_sym_func] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(5690), + [anon_sym_EQ] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5690), + [anon_sym_LPAREN] = ACTIONS(5688), + [anon_sym_RPAREN] = ACTIONS(5688), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_DOLLAR] = ACTIONS(5688), + [anon_sym_PIPE] = ACTIONS(5690), + [anon_sym_QMARK] = ACTIONS(5688), + [anon_sym_STAR] = ACTIONS(5690), + [anon_sym_LBRACK] = ACTIONS(5688), + [anon_sym_SEMI] = ACTIONS(5688), + [anon_sym_RBRACK] = ACTIONS(5688), + [anon_sym_void] = ACTIONS(5690), + [anon_sym_noreturn] = ACTIONS(5690), + [anon_sym_type] = ACTIONS(5690), + [anon_sym_anyopaque] = ACTIONS(5690), + [anon_sym_bool] = ACTIONS(5690), + [anon_sym_int] = ACTIONS(5690), + [anon_sym_uint] = ACTIONS(5690), + [anon_sym_float] = ACTIONS(5690), + [anon_sym_range] = ACTIONS(5690), + [anon_sym_i8] = ACTIONS(5690), + [anon_sym_i16] = ACTIONS(5690), + [anon_sym_i32] = ACTIONS(5690), + [anon_sym_i64] = ACTIONS(5690), + [anon_sym_u8] = ACTIONS(5690), + [anon_sym_u16] = ACTIONS(5690), + [anon_sym_u32] = ACTIONS(5690), + [anon_sym_u64] = ACTIONS(5690), + [anon_sym_isize] = ACTIONS(5690), + [anon_sym_usize] = ACTIONS(5690), + [anon_sym_f32] = ACTIONS(5690), + [anon_sym_f64] = ACTIONS(5690), + [anon_sym_c_char] = ACTIONS(5690), + [anon_sym_c_schar] = ACTIONS(5690), + [anon_sym_c_uchar] = ACTIONS(5690), + [anon_sym_c_short] = ACTIONS(5690), + [anon_sym_c_ushort] = ACTIONS(5690), + [anon_sym_c_int] = ACTIONS(5690), + [anon_sym_c_uint] = ACTIONS(5690), + [anon_sym_c_long] = ACTIONS(5690), + [anon_sym_c_ulong] = ACTIONS(5690), + [anon_sym_c_longlong] = ACTIONS(5690), + [anon_sym_c_ulonglong] = ACTIONS(5690), + [anon_sym_c_float] = ACTIONS(5690), + [anon_sym_c_double] = ACTIONS(5690), + [anon_sym_c_longdouble] = ACTIONS(5690), + [anon_sym_PLUS_EQ] = ACTIONS(5688), + [anon_sym_DASH_EQ] = ACTIONS(5688), + [anon_sym_STAR_EQ] = ACTIONS(5688), + [anon_sym_SLASH_EQ] = ACTIONS(5688), + [anon_sym_AMP_EQ] = ACTIONS(5688), + [anon_sym_PIPE_EQ] = ACTIONS(5688), + [anon_sym_xor_EQ] = ACTIONS(5688), + [anon_sym_LT_LT_EQ] = ACTIONS(5688), + [anon_sym_GT_GT_EQ] = ACTIONS(5688), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5688), + [anon_sym_return] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(5690), + [anon_sym_COLON] = ACTIONS(5688), + [anon_sym_break] = ACTIONS(5690), + [anon_sym_continue] = ACTIONS(5690), + [anon_sym_defer] = ACTIONS(5690), + [anon_sym_errdefer] = ACTIONS(5690), + [anon_sym_if] = ACTIONS(5690), + [anon_sym_else] = ACTIONS(5690), + [anon_sym_while] = ACTIONS(5690), + [anon_sym_expand] = ACTIONS(5690), + [anon_sym_for] = ACTIONS(5690), + [anon_sym_match] = ACTIONS(5690), + [anon_sym_DOT_DOT] = ACTIONS(5690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5688), + [anon_sym_orelse] = ACTIONS(5690), + [anon_sym_or] = ACTIONS(5690), + [anon_sym_and] = ACTIONS(5690), + [anon_sym_EQ_EQ] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5688), + [anon_sym_LT] = ACTIONS(5690), + [anon_sym_LT_EQ] = ACTIONS(5688), + [anon_sym_GT] = ACTIONS(5690), + [anon_sym_GT_EQ] = ACTIONS(5688), + [anon_sym_AMP] = ACTIONS(5690), + [anon_sym_xor] = ACTIONS(5690), + [anon_sym_LT_LT] = ACTIONS(5690), + [anon_sym_GT_GT] = ACTIONS(5690), + [anon_sym_LT_LT_PIPE] = ACTIONS(5690), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_SLASH] = ACTIONS(5690), + [anon_sym_catch] = ACTIONS(5690), + [anon_sym_TILDE] = ACTIONS(5688), + [anon_sym_try] = ACTIONS(5690), + [anon_sym_DOT] = ACTIONS(5690), + [anon_sym_CARET] = ACTIONS(5688), + [anon_sym_true] = ACTIONS(5690), + [anon_sym_false] = ACTIONS(5690), + [anon_sym_null] = ACTIONS(5690), + [anon_sym_unreachable] = ACTIONS(5690), + [anon_sym_undefined] = ACTIONS(5690), + [sym_sink] = ACTIONS(5690), + [sym_integer] = ACTIONS(5690), + [sym_float] = ACTIONS(5688), + [anon_sym_DQUOTE] = ACTIONS(5688), + [sym_multiline_string] = ACTIONS(5688), + [sym_character] = ACTIONS(5688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5688), + }, + [STATE(2515)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(241), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(251), + [anon_sym_errdefer] = ACTIONS(253), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2516)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3252), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2517), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5692), + }, + [STATE(2517)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3263), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2518)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3264), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5694), + }, + [STATE(2519)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3281), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2520)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3282), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2521), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5696), + }, + [STATE(2521)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3302), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(2890), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(829), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(839), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(843), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2522)] = { + [ts_builtin_sym_end] = ACTIONS(5698), + [sym_identifier] = ACTIONS(5700), + [anon_sym_import] = ACTIONS(5702), + [anon_sym_test] = ACTIONS(5702), + [anon_sym_hide] = ACTIONS(5702), + [anon_sym_func] = ACTIONS(5700), + [anon_sym_BANG] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(5702), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_LPAREN] = ACTIONS(5704), + [anon_sym_RPAREN] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5704), + [anon_sym_COMMA] = ACTIONS(5698), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5700), + [anon_sym_DOLLAR] = ACTIONS(5704), + [anon_sym_PIPE] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5704), + [anon_sym_STAR] = ACTIONS(5700), + [anon_sym_LBRACK] = ACTIONS(5704), + [anon_sym_SEMI] = ACTIONS(5698), + [anon_sym_RBRACK] = ACTIONS(5698), + [anon_sym_void] = ACTIONS(5700), + [anon_sym_noreturn] = ACTIONS(5700), + [anon_sym_type] = ACTIONS(5700), + [anon_sym_anyopaque] = ACTIONS(5700), + [anon_sym_bool] = ACTIONS(5700), + [anon_sym_int] = ACTIONS(5700), + [anon_sym_uint] = ACTIONS(5700), + [anon_sym_float] = ACTIONS(5700), + [anon_sym_range] = ACTIONS(5700), + [anon_sym_i8] = ACTIONS(5700), + [anon_sym_i16] = ACTIONS(5700), + [anon_sym_i32] = ACTIONS(5700), + [anon_sym_i64] = ACTIONS(5700), + [anon_sym_u8] = ACTIONS(5700), + [anon_sym_u16] = ACTIONS(5700), + [anon_sym_u32] = ACTIONS(5700), + [anon_sym_u64] = ACTIONS(5700), + [anon_sym_isize] = ACTIONS(5700), + [anon_sym_usize] = ACTIONS(5700), + [anon_sym_f32] = ACTIONS(5700), + [anon_sym_f64] = ACTIONS(5700), + [anon_sym_c_char] = ACTIONS(5700), + [anon_sym_c_schar] = ACTIONS(5700), + [anon_sym_c_uchar] = ACTIONS(5700), + [anon_sym_c_short] = ACTIONS(5700), + [anon_sym_c_ushort] = ACTIONS(5700), + [anon_sym_c_int] = ACTIONS(5700), + [anon_sym_c_uint] = ACTIONS(5700), + [anon_sym_c_long] = ACTIONS(5700), + [anon_sym_c_ulong] = ACTIONS(5700), + [anon_sym_c_longlong] = ACTIONS(5700), + [anon_sym_c_ulonglong] = ACTIONS(5700), + [anon_sym_c_float] = ACTIONS(5700), + [anon_sym_c_double] = ACTIONS(5700), + [anon_sym_c_longdouble] = ACTIONS(5700), + [anon_sym_PLUS_EQ] = ACTIONS(5698), + [anon_sym_DASH_EQ] = ACTIONS(5698), + [anon_sym_STAR_EQ] = ACTIONS(5698), + [anon_sym_SLASH_EQ] = ACTIONS(5698), + [anon_sym_AMP_EQ] = ACTIONS(5698), + [anon_sym_PIPE_EQ] = ACTIONS(5698), + [anon_sym_xor_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_EQ] = ACTIONS(5698), + [anon_sym_GT_GT_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5698), + [anon_sym_return] = ACTIONS(5700), + [anon_sym_yield] = ACTIONS(5700), + [anon_sym_COLON] = ACTIONS(5698), + [anon_sym_break] = ACTIONS(5700), + [anon_sym_continue] = ACTIONS(5700), + [anon_sym_defer] = ACTIONS(5700), + [anon_sym_errdefer] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5700), + [anon_sym_else] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5700), + [anon_sym_expand] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5700), + [anon_sym_match] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5704), + [anon_sym_orelse] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5700), + [anon_sym_and] = ACTIONS(5700), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5704), + [anon_sym_GT] = ACTIONS(5700), + [anon_sym_GT_EQ] = ACTIONS(5704), + [anon_sym_AMP] = ACTIONS(5700), + [anon_sym_xor] = ACTIONS(5700), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5700), + [anon_sym_LT_LT_PIPE] = ACTIONS(5700), + [anon_sym_PLUS] = ACTIONS(5700), + [anon_sym_SLASH] = ACTIONS(5700), + [anon_sym_catch] = ACTIONS(5700), + [anon_sym_TILDE] = ACTIONS(5704), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5700), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_true] = ACTIONS(5700), + [anon_sym_false] = ACTIONS(5700), + [anon_sym_null] = ACTIONS(5700), + [anon_sym_unreachable] = ACTIONS(5700), + [anon_sym_undefined] = ACTIONS(5700), + [sym_sink] = ACTIONS(5700), + [sym_integer] = ACTIONS(5700), + [sym_float] = ACTIONS(5704), + [anon_sym_DQUOTE] = ACTIONS(5704), + [sym_multiline_string] = ACTIONS(5704), + [sym_character] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5704), + }, + [STATE(2523)] = { + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2524)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(5706), + [sym_identifier] = ACTIONS(5708), + [anon_sym_import] = ACTIONS(5708), + [anon_sym_test] = ACTIONS(5708), + [anon_sym_hide] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(5706), + [anon_sym_RBRACK] = ACTIONS(5706), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_PLUS_EQ] = ACTIONS(5706), + [anon_sym_DASH_EQ] = ACTIONS(5706), + [anon_sym_STAR_EQ] = ACTIONS(5706), + [anon_sym_SLASH_EQ] = ACTIONS(5706), + [anon_sym_AMP_EQ] = ACTIONS(5706), + [anon_sym_PIPE_EQ] = ACTIONS(5706), + [anon_sym_xor_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_GT_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5706), + [anon_sym_return] = ACTIONS(5708), + [anon_sym_yield] = ACTIONS(5708), + [anon_sym_break] = ACTIONS(5708), + [anon_sym_continue] = ACTIONS(5708), + [anon_sym_defer] = ACTIONS(5708), + [anon_sym_errdefer] = ACTIONS(5708), + [anon_sym_if] = ACTIONS(5708), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_while] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_for] = ACTIONS(5708), + [anon_sym_match] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(5710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5712), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(5716), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(2525)] = { + [ts_builtin_sym_end] = ACTIONS(5718), + [sym_identifier] = ACTIONS(5720), + [anon_sym_import] = ACTIONS(5720), + [anon_sym_test] = ACTIONS(5720), + [anon_sym_hide] = ACTIONS(5720), + [anon_sym_func] = ACTIONS(5720), + [anon_sym_BANG] = ACTIONS(5720), + [anon_sym_EQ] = ACTIONS(5720), + [anon_sym_struct] = ACTIONS(5720), + [anon_sym_LPAREN] = ACTIONS(5718), + [anon_sym_RPAREN] = ACTIONS(5718), + [anon_sym_LBRACE] = ACTIONS(5718), + [anon_sym_COMMA] = ACTIONS(5718), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_DOLLAR] = ACTIONS(5718), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_QMARK] = ACTIONS(5718), + [anon_sym_STAR] = ACTIONS(5720), + [anon_sym_LBRACK] = ACTIONS(5718), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_RBRACK] = ACTIONS(5718), + [anon_sym_void] = ACTIONS(5720), + [anon_sym_noreturn] = ACTIONS(5720), + [anon_sym_type] = ACTIONS(5720), + [anon_sym_anyopaque] = ACTIONS(5720), + [anon_sym_bool] = ACTIONS(5720), + [anon_sym_int] = ACTIONS(5720), + [anon_sym_uint] = ACTIONS(5720), + [anon_sym_float] = ACTIONS(5720), + [anon_sym_range] = ACTIONS(5720), + [anon_sym_i8] = ACTIONS(5720), + [anon_sym_i16] = ACTIONS(5720), + [anon_sym_i32] = ACTIONS(5720), + [anon_sym_i64] = ACTIONS(5720), + [anon_sym_u8] = ACTIONS(5720), + [anon_sym_u16] = ACTIONS(5720), + [anon_sym_u32] = ACTIONS(5720), + [anon_sym_u64] = ACTIONS(5720), + [anon_sym_isize] = ACTIONS(5720), + [anon_sym_usize] = ACTIONS(5720), + [anon_sym_f32] = ACTIONS(5720), + [anon_sym_f64] = ACTIONS(5720), + [anon_sym_c_char] = ACTIONS(5720), + [anon_sym_c_schar] = ACTIONS(5720), + [anon_sym_c_uchar] = ACTIONS(5720), + [anon_sym_c_short] = ACTIONS(5720), + [anon_sym_c_ushort] = ACTIONS(5720), + [anon_sym_c_int] = ACTIONS(5720), + [anon_sym_c_uint] = ACTIONS(5720), + [anon_sym_c_long] = ACTIONS(5720), + [anon_sym_c_ulong] = ACTIONS(5720), + [anon_sym_c_longlong] = ACTIONS(5720), + [anon_sym_c_ulonglong] = ACTIONS(5720), + [anon_sym_c_float] = ACTIONS(5720), + [anon_sym_c_double] = ACTIONS(5720), + [anon_sym_c_longdouble] = ACTIONS(5720), + [anon_sym_PLUS_EQ] = ACTIONS(5718), + [anon_sym_DASH_EQ] = ACTIONS(5718), + [anon_sym_STAR_EQ] = ACTIONS(5718), + [anon_sym_SLASH_EQ] = ACTIONS(5718), + [anon_sym_AMP_EQ] = ACTIONS(5718), + [anon_sym_PIPE_EQ] = ACTIONS(5718), + [anon_sym_xor_EQ] = ACTIONS(5718), + [anon_sym_LT_LT_EQ] = ACTIONS(5718), + [anon_sym_GT_GT_EQ] = ACTIONS(5718), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5718), + [anon_sym_return] = ACTIONS(5720), + [anon_sym_yield] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5718), + [anon_sym_break] = ACTIONS(5720), + [anon_sym_continue] = ACTIONS(5720), + [anon_sym_defer] = ACTIONS(5720), + [anon_sym_errdefer] = ACTIONS(5720), + [anon_sym_if] = ACTIONS(5720), + [anon_sym_else] = ACTIONS(5720), + [anon_sym_while] = ACTIONS(5720), + [anon_sym_expand] = ACTIONS(5720), + [anon_sym_for] = ACTIONS(5720), + [anon_sym_match] = ACTIONS(5720), + [anon_sym_DOT_DOT] = ACTIONS(5720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5718), + [anon_sym_orelse] = ACTIONS(5720), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5718), + [anon_sym_BANG_EQ] = ACTIONS(5718), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_EQ] = ACTIONS(5718), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5718), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5720), + [anon_sym_GT_GT] = ACTIONS(5720), + [anon_sym_LT_LT_PIPE] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_catch] = ACTIONS(5720), + [anon_sym_TILDE] = ACTIONS(5718), + [anon_sym_try] = ACTIONS(5720), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5718), + [anon_sym_true] = ACTIONS(5720), + [anon_sym_false] = ACTIONS(5720), + [anon_sym_null] = ACTIONS(5720), + [anon_sym_unreachable] = ACTIONS(5720), + [anon_sym_undefined] = ACTIONS(5720), + [sym_sink] = ACTIONS(5720), + [sym_integer] = ACTIONS(5720), + [sym_float] = ACTIONS(5718), + [anon_sym_DQUOTE] = ACTIONS(5718), + [sym_multiline_string] = ACTIONS(5718), + [sym_character] = ACTIONS(5718), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5718), + }, + [STATE(2526)] = { + [ts_builtin_sym_end] = ACTIONS(5722), + [sym_identifier] = ACTIONS(5724), + [anon_sym_import] = ACTIONS(5724), + [anon_sym_test] = ACTIONS(5724), + [anon_sym_hide] = ACTIONS(5724), + [anon_sym_func] = ACTIONS(5724), + [anon_sym_BANG] = ACTIONS(5724), + [anon_sym_EQ] = ACTIONS(5724), + [anon_sym_struct] = ACTIONS(5724), + [anon_sym_LPAREN] = ACTIONS(5722), + [anon_sym_RPAREN] = ACTIONS(5722), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5724), + [anon_sym_DOLLAR] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5724), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_STAR] = ACTIONS(5724), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_SEMI] = ACTIONS(5722), + [anon_sym_RBRACK] = ACTIONS(5722), + [anon_sym_void] = ACTIONS(5724), + [anon_sym_noreturn] = ACTIONS(5724), + [anon_sym_type] = ACTIONS(5724), + [anon_sym_anyopaque] = ACTIONS(5724), + [anon_sym_bool] = ACTIONS(5724), + [anon_sym_int] = ACTIONS(5724), + [anon_sym_uint] = ACTIONS(5724), + [anon_sym_float] = ACTIONS(5724), + [anon_sym_range] = ACTIONS(5724), + [anon_sym_i8] = ACTIONS(5724), + [anon_sym_i16] = ACTIONS(5724), + [anon_sym_i32] = ACTIONS(5724), + [anon_sym_i64] = ACTIONS(5724), + [anon_sym_u8] = ACTIONS(5724), + [anon_sym_u16] = ACTIONS(5724), + [anon_sym_u32] = ACTIONS(5724), + [anon_sym_u64] = ACTIONS(5724), + [anon_sym_isize] = ACTIONS(5724), + [anon_sym_usize] = ACTIONS(5724), + [anon_sym_f32] = ACTIONS(5724), + [anon_sym_f64] = ACTIONS(5724), + [anon_sym_c_char] = ACTIONS(5724), + [anon_sym_c_schar] = ACTIONS(5724), + [anon_sym_c_uchar] = ACTIONS(5724), + [anon_sym_c_short] = ACTIONS(5724), + [anon_sym_c_ushort] = ACTIONS(5724), + [anon_sym_c_int] = ACTIONS(5724), + [anon_sym_c_uint] = ACTIONS(5724), + [anon_sym_c_long] = ACTIONS(5724), + [anon_sym_c_ulong] = ACTIONS(5724), + [anon_sym_c_longlong] = ACTIONS(5724), + [anon_sym_c_ulonglong] = ACTIONS(5724), + [anon_sym_c_float] = ACTIONS(5724), + [anon_sym_c_double] = ACTIONS(5724), + [anon_sym_c_longdouble] = ACTIONS(5724), + [anon_sym_PLUS_EQ] = ACTIONS(5722), + [anon_sym_DASH_EQ] = ACTIONS(5722), + [anon_sym_STAR_EQ] = ACTIONS(5722), + [anon_sym_SLASH_EQ] = ACTIONS(5722), + [anon_sym_AMP_EQ] = ACTIONS(5722), + [anon_sym_PIPE_EQ] = ACTIONS(5722), + [anon_sym_xor_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_EQ] = ACTIONS(5722), + [anon_sym_GT_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5722), + [anon_sym_return] = ACTIONS(5724), + [anon_sym_yield] = ACTIONS(5724), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym_break] = ACTIONS(5724), + [anon_sym_continue] = ACTIONS(5724), + [anon_sym_defer] = ACTIONS(5724), + [anon_sym_errdefer] = ACTIONS(5724), + [anon_sym_if] = ACTIONS(5724), + [anon_sym_else] = ACTIONS(5724), + [anon_sym_while] = ACTIONS(5724), + [anon_sym_expand] = ACTIONS(5724), + [anon_sym_for] = ACTIONS(5724), + [anon_sym_match] = ACTIONS(5724), + [anon_sym_DOT_DOT] = ACTIONS(5724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5722), + [anon_sym_orelse] = ACTIONS(5724), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_AMP] = ACTIONS(5724), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5724), + [anon_sym_GT_GT] = ACTIONS(5724), + [anon_sym_LT_LT_PIPE] = ACTIONS(5724), + [anon_sym_PLUS] = ACTIONS(5724), + [anon_sym_SLASH] = ACTIONS(5724), + [anon_sym_catch] = ACTIONS(5724), + [anon_sym_TILDE] = ACTIONS(5722), + [anon_sym_try] = ACTIONS(5724), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5722), + [anon_sym_true] = ACTIONS(5724), + [anon_sym_false] = ACTIONS(5724), + [anon_sym_null] = ACTIONS(5724), + [anon_sym_unreachable] = ACTIONS(5724), + [anon_sym_undefined] = ACTIONS(5724), + [sym_sink] = ACTIONS(5724), + [sym_integer] = ACTIONS(5724), + [sym_float] = ACTIONS(5722), + [anon_sym_DQUOTE] = ACTIONS(5722), + [sym_multiline_string] = ACTIONS(5722), + [sym_character] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5722), + }, + [STATE(2527)] = { + [ts_builtin_sym_end] = ACTIONS(5726), + [sym_identifier] = ACTIONS(5728), + [anon_sym_import] = ACTIONS(5728), + [anon_sym_test] = ACTIONS(5728), + [anon_sym_hide] = ACTIONS(5728), + [anon_sym_func] = ACTIONS(5728), + [anon_sym_BANG] = ACTIONS(5728), + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_struct] = ACTIONS(5728), + [anon_sym_LPAREN] = ACTIONS(5726), + [anon_sym_RPAREN] = ACTIONS(5726), + [anon_sym_LBRACE] = ACTIONS(5726), + [anon_sym_COMMA] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5728), + [anon_sym_DOLLAR] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5728), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_STAR] = ACTIONS(5728), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_SEMI] = ACTIONS(5726), + [anon_sym_RBRACK] = ACTIONS(5726), + [anon_sym_void] = ACTIONS(5728), + [anon_sym_noreturn] = ACTIONS(5728), + [anon_sym_type] = ACTIONS(5728), + [anon_sym_anyopaque] = ACTIONS(5728), + [anon_sym_bool] = ACTIONS(5728), + [anon_sym_int] = ACTIONS(5728), + [anon_sym_uint] = ACTIONS(5728), + [anon_sym_float] = ACTIONS(5728), + [anon_sym_range] = ACTIONS(5728), + [anon_sym_i8] = ACTIONS(5728), + [anon_sym_i16] = ACTIONS(5728), + [anon_sym_i32] = ACTIONS(5728), + [anon_sym_i64] = ACTIONS(5728), + [anon_sym_u8] = ACTIONS(5728), + [anon_sym_u16] = ACTIONS(5728), + [anon_sym_u32] = ACTIONS(5728), + [anon_sym_u64] = ACTIONS(5728), + [anon_sym_isize] = ACTIONS(5728), + [anon_sym_usize] = ACTIONS(5728), + [anon_sym_f32] = ACTIONS(5728), + [anon_sym_f64] = ACTIONS(5728), + [anon_sym_c_char] = ACTIONS(5728), + [anon_sym_c_schar] = ACTIONS(5728), + [anon_sym_c_uchar] = ACTIONS(5728), + [anon_sym_c_short] = ACTIONS(5728), + [anon_sym_c_ushort] = ACTIONS(5728), + [anon_sym_c_int] = ACTIONS(5728), + [anon_sym_c_uint] = ACTIONS(5728), + [anon_sym_c_long] = ACTIONS(5728), + [anon_sym_c_ulong] = ACTIONS(5728), + [anon_sym_c_longlong] = ACTIONS(5728), + [anon_sym_c_ulonglong] = ACTIONS(5728), + [anon_sym_c_float] = ACTIONS(5728), + [anon_sym_c_double] = ACTIONS(5728), + [anon_sym_c_longdouble] = ACTIONS(5728), + [anon_sym_PLUS_EQ] = ACTIONS(5726), + [anon_sym_DASH_EQ] = ACTIONS(5726), + [anon_sym_STAR_EQ] = ACTIONS(5726), + [anon_sym_SLASH_EQ] = ACTIONS(5726), + [anon_sym_AMP_EQ] = ACTIONS(5726), + [anon_sym_PIPE_EQ] = ACTIONS(5726), + [anon_sym_xor_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_EQ] = ACTIONS(5726), + [anon_sym_GT_GT_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5726), + [anon_sym_return] = ACTIONS(5728), + [anon_sym_yield] = ACTIONS(5728), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_break] = ACTIONS(5728), + [anon_sym_continue] = ACTIONS(5728), + [anon_sym_defer] = ACTIONS(5728), + [anon_sym_errdefer] = ACTIONS(5728), + [anon_sym_if] = ACTIONS(5728), + [anon_sym_else] = ACTIONS(5728), + [anon_sym_while] = ACTIONS(5728), + [anon_sym_expand] = ACTIONS(5728), + [anon_sym_for] = ACTIONS(5728), + [anon_sym_match] = ACTIONS(5728), + [anon_sym_DOT_DOT] = ACTIONS(5728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5726), + [anon_sym_orelse] = ACTIONS(5728), + [anon_sym_or] = ACTIONS(5728), + [anon_sym_and] = ACTIONS(5728), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_LT] = ACTIONS(5728), + [anon_sym_LT_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5728), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(5728), + [anon_sym_xor] = ACTIONS(5728), + [anon_sym_LT_LT] = ACTIONS(5728), + [anon_sym_GT_GT] = ACTIONS(5728), + [anon_sym_LT_LT_PIPE] = ACTIONS(5728), + [anon_sym_PLUS] = ACTIONS(5728), + [anon_sym_SLASH] = ACTIONS(5728), + [anon_sym_catch] = ACTIONS(5728), + [anon_sym_TILDE] = ACTIONS(5726), + [anon_sym_try] = ACTIONS(5728), + [anon_sym_DOT] = ACTIONS(5728), + [anon_sym_CARET] = ACTIONS(5726), + [anon_sym_true] = ACTIONS(5728), + [anon_sym_false] = ACTIONS(5728), + [anon_sym_null] = ACTIONS(5728), + [anon_sym_unreachable] = ACTIONS(5728), + [anon_sym_undefined] = ACTIONS(5728), + [sym_sink] = ACTIONS(5728), + [sym_integer] = ACTIONS(5728), + [sym_float] = ACTIONS(5726), + [anon_sym_DQUOTE] = ACTIONS(5726), + [sym_multiline_string] = ACTIONS(5726), + [sym_character] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5726), + }, + [STATE(2528)] = { + [ts_builtin_sym_end] = ACTIONS(5730), + [sym_identifier] = ACTIONS(5732), + [anon_sym_import] = ACTIONS(5732), + [anon_sym_test] = ACTIONS(5732), + [anon_sym_hide] = ACTIONS(5732), + [anon_sym_func] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5732), + [anon_sym_EQ] = ACTIONS(5732), + [anon_sym_struct] = ACTIONS(5732), + [anon_sym_LPAREN] = ACTIONS(5730), + [anon_sym_RPAREN] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_COMMA] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5730), + [anon_sym_DASH] = ACTIONS(5732), + [anon_sym_DOLLAR] = ACTIONS(5730), + [anon_sym_PIPE] = ACTIONS(5732), + [anon_sym_QMARK] = ACTIONS(5730), + [anon_sym_STAR] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5730), + [anon_sym_SEMI] = ACTIONS(5730), + [anon_sym_RBRACK] = ACTIONS(5730), + [anon_sym_void] = ACTIONS(5732), + [anon_sym_noreturn] = ACTIONS(5732), + [anon_sym_type] = ACTIONS(5732), + [anon_sym_anyopaque] = ACTIONS(5732), + [anon_sym_bool] = ACTIONS(5732), + [anon_sym_int] = ACTIONS(5732), + [anon_sym_uint] = ACTIONS(5732), + [anon_sym_float] = ACTIONS(5732), + [anon_sym_range] = ACTIONS(5732), + [anon_sym_i8] = ACTIONS(5732), + [anon_sym_i16] = ACTIONS(5732), + [anon_sym_i32] = ACTIONS(5732), + [anon_sym_i64] = ACTIONS(5732), + [anon_sym_u8] = ACTIONS(5732), + [anon_sym_u16] = ACTIONS(5732), + [anon_sym_u32] = ACTIONS(5732), + [anon_sym_u64] = ACTIONS(5732), + [anon_sym_isize] = ACTIONS(5732), + [anon_sym_usize] = ACTIONS(5732), + [anon_sym_f32] = ACTIONS(5732), + [anon_sym_f64] = ACTIONS(5732), + [anon_sym_c_char] = ACTIONS(5732), + [anon_sym_c_schar] = ACTIONS(5732), + [anon_sym_c_uchar] = ACTIONS(5732), + [anon_sym_c_short] = ACTIONS(5732), + [anon_sym_c_ushort] = ACTIONS(5732), + [anon_sym_c_int] = ACTIONS(5732), + [anon_sym_c_uint] = ACTIONS(5732), + [anon_sym_c_long] = ACTIONS(5732), + [anon_sym_c_ulong] = ACTIONS(5732), + [anon_sym_c_longlong] = ACTIONS(5732), + [anon_sym_c_ulonglong] = ACTIONS(5732), + [anon_sym_c_float] = ACTIONS(5732), + [anon_sym_c_double] = ACTIONS(5732), + [anon_sym_c_longdouble] = ACTIONS(5732), + [anon_sym_PLUS_EQ] = ACTIONS(5730), + [anon_sym_DASH_EQ] = ACTIONS(5730), + [anon_sym_STAR_EQ] = ACTIONS(5730), + [anon_sym_SLASH_EQ] = ACTIONS(5730), + [anon_sym_AMP_EQ] = ACTIONS(5730), + [anon_sym_PIPE_EQ] = ACTIONS(5730), + [anon_sym_xor_EQ] = ACTIONS(5730), + [anon_sym_LT_LT_EQ] = ACTIONS(5730), + [anon_sym_GT_GT_EQ] = ACTIONS(5730), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5730), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_yield] = ACTIONS(5732), + [anon_sym_COLON] = ACTIONS(5730), + [anon_sym_break] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [anon_sym_defer] = ACTIONS(5732), + [anon_sym_errdefer] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [anon_sym_else] = ACTIONS(5732), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_expand] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [anon_sym_match] = ACTIONS(5732), + [anon_sym_DOT_DOT] = ACTIONS(5732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5730), + [anon_sym_orelse] = ACTIONS(5732), + [anon_sym_or] = ACTIONS(5732), + [anon_sym_and] = ACTIONS(5732), + [anon_sym_EQ_EQ] = ACTIONS(5730), + [anon_sym_BANG_EQ] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(5732), + [anon_sym_LT_EQ] = ACTIONS(5730), + [anon_sym_GT] = ACTIONS(5732), + [anon_sym_GT_EQ] = ACTIONS(5730), + [anon_sym_AMP] = ACTIONS(5732), + [anon_sym_xor] = ACTIONS(5732), + [anon_sym_LT_LT] = ACTIONS(5732), + [anon_sym_GT_GT] = ACTIONS(5732), + [anon_sym_LT_LT_PIPE] = ACTIONS(5732), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_SLASH] = ACTIONS(5732), + [anon_sym_catch] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5730), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_DOT] = ACTIONS(5732), + [anon_sym_CARET] = ACTIONS(5730), + [anon_sym_true] = ACTIONS(5732), + [anon_sym_false] = ACTIONS(5732), + [anon_sym_null] = ACTIONS(5732), + [anon_sym_unreachable] = ACTIONS(5732), + [anon_sym_undefined] = ACTIONS(5732), + [sym_sink] = ACTIONS(5732), + [sym_integer] = ACTIONS(5732), + [sym_float] = ACTIONS(5730), + [anon_sym_DQUOTE] = ACTIONS(5730), + [sym_multiline_string] = ACTIONS(5730), + [sym_character] = ACTIONS(5730), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5730), + }, + [STATE(2529)] = { + [ts_builtin_sym_end] = ACTIONS(5734), + [sym_identifier] = ACTIONS(5736), + [anon_sym_import] = ACTIONS(5736), + [anon_sym_test] = ACTIONS(5736), + [anon_sym_hide] = ACTIONS(5736), + [anon_sym_func] = ACTIONS(5736), + [anon_sym_BANG] = ACTIONS(5736), + [anon_sym_EQ] = ACTIONS(5736), + [anon_sym_struct] = ACTIONS(5736), + [anon_sym_LPAREN] = ACTIONS(5734), + [anon_sym_RPAREN] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_COMMA] = ACTIONS(5734), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_DASH] = ACTIONS(5736), + [anon_sym_DOLLAR] = ACTIONS(5734), + [anon_sym_PIPE] = ACTIONS(5736), + [anon_sym_QMARK] = ACTIONS(5734), + [anon_sym_STAR] = ACTIONS(5736), + [anon_sym_LBRACK] = ACTIONS(5734), + [anon_sym_SEMI] = ACTIONS(5734), + [anon_sym_RBRACK] = ACTIONS(5734), + [anon_sym_void] = ACTIONS(5736), + [anon_sym_noreturn] = ACTIONS(5736), + [anon_sym_type] = ACTIONS(5736), + [anon_sym_anyopaque] = ACTIONS(5736), + [anon_sym_bool] = ACTIONS(5736), + [anon_sym_int] = ACTIONS(5736), + [anon_sym_uint] = ACTIONS(5736), + [anon_sym_float] = ACTIONS(5736), + [anon_sym_range] = ACTIONS(5736), + [anon_sym_i8] = ACTIONS(5736), + [anon_sym_i16] = ACTIONS(5736), + [anon_sym_i32] = ACTIONS(5736), + [anon_sym_i64] = ACTIONS(5736), + [anon_sym_u8] = ACTIONS(5736), + [anon_sym_u16] = ACTIONS(5736), + [anon_sym_u32] = ACTIONS(5736), + [anon_sym_u64] = ACTIONS(5736), + [anon_sym_isize] = ACTIONS(5736), + [anon_sym_usize] = ACTIONS(5736), + [anon_sym_f32] = ACTIONS(5736), + [anon_sym_f64] = ACTIONS(5736), + [anon_sym_c_char] = ACTIONS(5736), + [anon_sym_c_schar] = ACTIONS(5736), + [anon_sym_c_uchar] = ACTIONS(5736), + [anon_sym_c_short] = ACTIONS(5736), + [anon_sym_c_ushort] = ACTIONS(5736), + [anon_sym_c_int] = ACTIONS(5736), + [anon_sym_c_uint] = ACTIONS(5736), + [anon_sym_c_long] = ACTIONS(5736), + [anon_sym_c_ulong] = ACTIONS(5736), + [anon_sym_c_longlong] = ACTIONS(5736), + [anon_sym_c_ulonglong] = ACTIONS(5736), + [anon_sym_c_float] = ACTIONS(5736), + [anon_sym_c_double] = ACTIONS(5736), + [anon_sym_c_longdouble] = ACTIONS(5736), + [anon_sym_PLUS_EQ] = ACTIONS(5734), + [anon_sym_DASH_EQ] = ACTIONS(5734), + [anon_sym_STAR_EQ] = ACTIONS(5734), + [anon_sym_SLASH_EQ] = ACTIONS(5734), + [anon_sym_AMP_EQ] = ACTIONS(5734), + [anon_sym_PIPE_EQ] = ACTIONS(5734), + [anon_sym_xor_EQ] = ACTIONS(5734), + [anon_sym_LT_LT_EQ] = ACTIONS(5734), + [anon_sym_GT_GT_EQ] = ACTIONS(5734), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5734), + [anon_sym_return] = ACTIONS(5736), + [anon_sym_yield] = ACTIONS(5736), + [anon_sym_COLON] = ACTIONS(5734), + [anon_sym_break] = ACTIONS(5736), + [anon_sym_continue] = ACTIONS(5736), + [anon_sym_defer] = ACTIONS(5736), + [anon_sym_errdefer] = ACTIONS(5736), + [anon_sym_if] = ACTIONS(5736), + [anon_sym_else] = ACTIONS(5736), + [anon_sym_while] = ACTIONS(5736), + [anon_sym_expand] = ACTIONS(5736), + [anon_sym_for] = ACTIONS(5736), + [anon_sym_match] = ACTIONS(5736), + [anon_sym_DOT_DOT] = ACTIONS(5736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5734), + [anon_sym_orelse] = ACTIONS(5736), + [anon_sym_or] = ACTIONS(5736), + [anon_sym_and] = ACTIONS(5736), + [anon_sym_EQ_EQ] = ACTIONS(5734), + [anon_sym_BANG_EQ] = ACTIONS(5734), + [anon_sym_LT] = ACTIONS(5736), + [anon_sym_LT_EQ] = ACTIONS(5734), + [anon_sym_GT] = ACTIONS(5736), + [anon_sym_GT_EQ] = ACTIONS(5734), + [anon_sym_AMP] = ACTIONS(5736), + [anon_sym_xor] = ACTIONS(5736), + [anon_sym_LT_LT] = ACTIONS(5736), + [anon_sym_GT_GT] = ACTIONS(5736), + [anon_sym_LT_LT_PIPE] = ACTIONS(5736), + [anon_sym_PLUS] = ACTIONS(5736), + [anon_sym_SLASH] = ACTIONS(5736), + [anon_sym_catch] = ACTIONS(5736), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_try] = ACTIONS(5736), + [anon_sym_DOT] = ACTIONS(5736), + [anon_sym_CARET] = ACTIONS(5734), + [anon_sym_true] = ACTIONS(5736), + [anon_sym_false] = ACTIONS(5736), + [anon_sym_null] = ACTIONS(5736), + [anon_sym_unreachable] = ACTIONS(5736), + [anon_sym_undefined] = ACTIONS(5736), + [sym_sink] = ACTIONS(5736), + [sym_integer] = ACTIONS(5736), + [sym_float] = ACTIONS(5734), + [anon_sym_DQUOTE] = ACTIONS(5734), + [sym_multiline_string] = ACTIONS(5734), + [sym_character] = ACTIONS(5734), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5734), + }, + [STATE(2530)] = { + [ts_builtin_sym_end] = ACTIONS(5738), + [sym_identifier] = ACTIONS(5740), + [anon_sym_import] = ACTIONS(5740), + [anon_sym_test] = ACTIONS(5740), + [anon_sym_hide] = ACTIONS(5740), + [anon_sym_func] = ACTIONS(5740), + [anon_sym_BANG] = ACTIONS(5740), + [anon_sym_EQ] = ACTIONS(5740), + [anon_sym_struct] = ACTIONS(5740), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_RPAREN] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(5738), + [anon_sym_RBRACE] = ACTIONS(5738), + [anon_sym_DASH] = ACTIONS(5740), + [anon_sym_DOLLAR] = ACTIONS(5738), + [anon_sym_PIPE] = ACTIONS(5740), + [anon_sym_QMARK] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5740), + [anon_sym_LBRACK] = ACTIONS(5738), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym_RBRACK] = ACTIONS(5738), + [anon_sym_void] = ACTIONS(5740), + [anon_sym_noreturn] = ACTIONS(5740), + [anon_sym_type] = ACTIONS(5740), + [anon_sym_anyopaque] = ACTIONS(5740), + [anon_sym_bool] = ACTIONS(5740), + [anon_sym_int] = ACTIONS(5740), + [anon_sym_uint] = ACTIONS(5740), + [anon_sym_float] = ACTIONS(5740), + [anon_sym_range] = ACTIONS(5740), + [anon_sym_i8] = ACTIONS(5740), + [anon_sym_i16] = ACTIONS(5740), + [anon_sym_i32] = ACTIONS(5740), + [anon_sym_i64] = ACTIONS(5740), + [anon_sym_u8] = ACTIONS(5740), + [anon_sym_u16] = ACTIONS(5740), + [anon_sym_u32] = ACTIONS(5740), + [anon_sym_u64] = ACTIONS(5740), + [anon_sym_isize] = ACTIONS(5740), + [anon_sym_usize] = ACTIONS(5740), + [anon_sym_f32] = ACTIONS(5740), + [anon_sym_f64] = ACTIONS(5740), + [anon_sym_c_char] = ACTIONS(5740), + [anon_sym_c_schar] = ACTIONS(5740), + [anon_sym_c_uchar] = ACTIONS(5740), + [anon_sym_c_short] = ACTIONS(5740), + [anon_sym_c_ushort] = ACTIONS(5740), + [anon_sym_c_int] = ACTIONS(5740), + [anon_sym_c_uint] = ACTIONS(5740), + [anon_sym_c_long] = ACTIONS(5740), + [anon_sym_c_ulong] = ACTIONS(5740), + [anon_sym_c_longlong] = ACTIONS(5740), + [anon_sym_c_ulonglong] = ACTIONS(5740), + [anon_sym_c_float] = ACTIONS(5740), + [anon_sym_c_double] = ACTIONS(5740), + [anon_sym_c_longdouble] = ACTIONS(5740), + [anon_sym_PLUS_EQ] = ACTIONS(5738), + [anon_sym_DASH_EQ] = ACTIONS(5738), + [anon_sym_STAR_EQ] = ACTIONS(5738), + [anon_sym_SLASH_EQ] = ACTIONS(5738), + [anon_sym_AMP_EQ] = ACTIONS(5738), + [anon_sym_PIPE_EQ] = ACTIONS(5738), + [anon_sym_xor_EQ] = ACTIONS(5738), + [anon_sym_LT_LT_EQ] = ACTIONS(5738), + [anon_sym_GT_GT_EQ] = ACTIONS(5738), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5738), + [anon_sym_return] = ACTIONS(5740), + [anon_sym_yield] = ACTIONS(5740), + [anon_sym_COLON] = ACTIONS(5738), + [anon_sym_break] = ACTIONS(5740), + [anon_sym_continue] = ACTIONS(5740), + [anon_sym_defer] = ACTIONS(5740), + [anon_sym_errdefer] = ACTIONS(5740), + [anon_sym_if] = ACTIONS(5740), + [anon_sym_else] = ACTIONS(5740), + [anon_sym_while] = ACTIONS(5740), + [anon_sym_expand] = ACTIONS(5740), + [anon_sym_for] = ACTIONS(5740), + [anon_sym_match] = ACTIONS(5740), + [anon_sym_DOT_DOT] = ACTIONS(5740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5738), + [anon_sym_orelse] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5740), + [anon_sym_and] = ACTIONS(5740), + [anon_sym_EQ_EQ] = ACTIONS(5738), + [anon_sym_BANG_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_GT] = ACTIONS(5740), + [anon_sym_GT_EQ] = ACTIONS(5738), + [anon_sym_AMP] = ACTIONS(5740), + [anon_sym_xor] = ACTIONS(5740), + [anon_sym_LT_LT] = ACTIONS(5740), + [anon_sym_GT_GT] = ACTIONS(5740), + [anon_sym_LT_LT_PIPE] = ACTIONS(5740), + [anon_sym_PLUS] = ACTIONS(5740), + [anon_sym_SLASH] = ACTIONS(5740), + [anon_sym_catch] = ACTIONS(5740), + [anon_sym_TILDE] = ACTIONS(5738), + [anon_sym_try] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5740), + [anon_sym_CARET] = ACTIONS(5738), + [anon_sym_true] = ACTIONS(5740), + [anon_sym_false] = ACTIONS(5740), + [anon_sym_null] = ACTIONS(5740), + [anon_sym_unreachable] = ACTIONS(5740), + [anon_sym_undefined] = ACTIONS(5740), + [sym_sink] = ACTIONS(5740), + [sym_integer] = ACTIONS(5740), + [sym_float] = ACTIONS(5738), + [anon_sym_DQUOTE] = ACTIONS(5738), + [sym_multiline_string] = ACTIONS(5738), + [sym_character] = ACTIONS(5738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5738), + }, + [STATE(2531)] = { + [ts_builtin_sym_end] = ACTIONS(5742), + [sym_identifier] = ACTIONS(5744), + [anon_sym_import] = ACTIONS(5744), + [anon_sym_test] = ACTIONS(5744), + [anon_sym_hide] = ACTIONS(5744), + [anon_sym_func] = ACTIONS(5744), + [anon_sym_BANG] = ACTIONS(5744), + [anon_sym_EQ] = ACTIONS(5744), + [anon_sym_struct] = ACTIONS(5744), + [anon_sym_LPAREN] = ACTIONS(5742), + [anon_sym_RPAREN] = ACTIONS(5742), + [anon_sym_LBRACE] = ACTIONS(5742), + [anon_sym_COMMA] = ACTIONS(5742), + [anon_sym_RBRACE] = ACTIONS(5742), + [anon_sym_DASH] = ACTIONS(5744), + [anon_sym_DOLLAR] = ACTIONS(5742), + [anon_sym_PIPE] = ACTIONS(5744), + [anon_sym_QMARK] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_RBRACK] = ACTIONS(5742), + [anon_sym_void] = ACTIONS(5744), + [anon_sym_noreturn] = ACTIONS(5744), + [anon_sym_type] = ACTIONS(5744), + [anon_sym_anyopaque] = ACTIONS(5744), + [anon_sym_bool] = ACTIONS(5744), + [anon_sym_int] = ACTIONS(5744), + [anon_sym_uint] = ACTIONS(5744), + [anon_sym_float] = ACTIONS(5744), + [anon_sym_range] = ACTIONS(5744), + [anon_sym_i8] = ACTIONS(5744), + [anon_sym_i16] = ACTIONS(5744), + [anon_sym_i32] = ACTIONS(5744), + [anon_sym_i64] = ACTIONS(5744), + [anon_sym_u8] = ACTIONS(5744), + [anon_sym_u16] = ACTIONS(5744), + [anon_sym_u32] = ACTIONS(5744), + [anon_sym_u64] = ACTIONS(5744), + [anon_sym_isize] = ACTIONS(5744), + [anon_sym_usize] = ACTIONS(5744), + [anon_sym_f32] = ACTIONS(5744), + [anon_sym_f64] = ACTIONS(5744), + [anon_sym_c_char] = ACTIONS(5744), + [anon_sym_c_schar] = ACTIONS(5744), + [anon_sym_c_uchar] = ACTIONS(5744), + [anon_sym_c_short] = ACTIONS(5744), + [anon_sym_c_ushort] = ACTIONS(5744), + [anon_sym_c_int] = ACTIONS(5744), + [anon_sym_c_uint] = ACTIONS(5744), + [anon_sym_c_long] = ACTIONS(5744), + [anon_sym_c_ulong] = ACTIONS(5744), + [anon_sym_c_longlong] = ACTIONS(5744), + [anon_sym_c_ulonglong] = ACTIONS(5744), + [anon_sym_c_float] = ACTIONS(5744), + [anon_sym_c_double] = ACTIONS(5744), + [anon_sym_c_longdouble] = ACTIONS(5744), + [anon_sym_PLUS_EQ] = ACTIONS(5742), + [anon_sym_DASH_EQ] = ACTIONS(5742), + [anon_sym_STAR_EQ] = ACTIONS(5742), + [anon_sym_SLASH_EQ] = ACTIONS(5742), + [anon_sym_AMP_EQ] = ACTIONS(5742), + [anon_sym_PIPE_EQ] = ACTIONS(5742), + [anon_sym_xor_EQ] = ACTIONS(5742), + [anon_sym_LT_LT_EQ] = ACTIONS(5742), + [anon_sym_GT_GT_EQ] = ACTIONS(5742), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5742), + [anon_sym_return] = ACTIONS(5744), + [anon_sym_yield] = ACTIONS(5744), + [anon_sym_COLON] = ACTIONS(5742), + [anon_sym_break] = ACTIONS(5744), + [anon_sym_continue] = ACTIONS(5744), + [anon_sym_defer] = ACTIONS(5744), + [anon_sym_errdefer] = ACTIONS(5744), + [anon_sym_if] = ACTIONS(5744), + [anon_sym_else] = ACTIONS(5744), + [anon_sym_while] = ACTIONS(5744), + [anon_sym_expand] = ACTIONS(5744), + [anon_sym_for] = ACTIONS(5744), + [anon_sym_match] = ACTIONS(5744), + [anon_sym_DOT_DOT] = ACTIONS(5744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5742), + [anon_sym_orelse] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5744), + [anon_sym_and] = ACTIONS(5744), + [anon_sym_EQ_EQ] = ACTIONS(5742), + [anon_sym_BANG_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_GT] = ACTIONS(5744), + [anon_sym_GT_EQ] = ACTIONS(5742), + [anon_sym_AMP] = ACTIONS(5744), + [anon_sym_xor] = ACTIONS(5744), + [anon_sym_LT_LT] = ACTIONS(5744), + [anon_sym_GT_GT] = ACTIONS(5744), + [anon_sym_LT_LT_PIPE] = ACTIONS(5744), + [anon_sym_PLUS] = ACTIONS(5744), + [anon_sym_SLASH] = ACTIONS(5744), + [anon_sym_catch] = ACTIONS(5744), + [anon_sym_TILDE] = ACTIONS(5742), + [anon_sym_try] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5744), + [anon_sym_CARET] = ACTIONS(5742), + [anon_sym_true] = ACTIONS(5744), + [anon_sym_false] = ACTIONS(5744), + [anon_sym_null] = ACTIONS(5744), + [anon_sym_unreachable] = ACTIONS(5744), + [anon_sym_undefined] = ACTIONS(5744), + [sym_sink] = ACTIONS(5744), + [sym_integer] = ACTIONS(5744), + [sym_float] = ACTIONS(5742), + [anon_sym_DQUOTE] = ACTIONS(5742), + [sym_multiline_string] = ACTIONS(5742), + [sym_character] = ACTIONS(5742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5742), + }, + [STATE(2532)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2118), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5746), + }, + [STATE(2533)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2150), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3518), + }, + [STATE(2534)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(5748), + [sym_identifier] = ACTIONS(5750), + [anon_sym_import] = ACTIONS(5750), + [anon_sym_test] = ACTIONS(5750), + [anon_sym_hide] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(5752), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(5748), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(5748), + [anon_sym_RBRACK] = ACTIONS(5748), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(5755), + [anon_sym_DASH_EQ] = ACTIONS(5755), + [anon_sym_STAR_EQ] = ACTIONS(5755), + [anon_sym_SLASH_EQ] = ACTIONS(5755), + [anon_sym_AMP_EQ] = ACTIONS(5755), + [anon_sym_PIPE_EQ] = ACTIONS(5755), + [anon_sym_xor_EQ] = ACTIONS(5755), + [anon_sym_LT_LT_EQ] = ACTIONS(5755), + [anon_sym_GT_GT_EQ] = ACTIONS(5755), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5755), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(5710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5712), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(5716), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(2535)] = { + [ts_builtin_sym_end] = ACTIONS(5758), + [sym_identifier] = ACTIONS(5760), + [anon_sym_import] = ACTIONS(5760), + [anon_sym_test] = ACTIONS(5760), + [anon_sym_hide] = ACTIONS(5760), + [anon_sym_func] = ACTIONS(5760), + [anon_sym_BANG] = ACTIONS(5760), + [anon_sym_EQ] = ACTIONS(5760), + [anon_sym_struct] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_RPAREN] = ACTIONS(5758), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(5758), + [anon_sym_DASH] = ACTIONS(5760), + [anon_sym_DOLLAR] = ACTIONS(5758), + [anon_sym_PIPE] = ACTIONS(5760), + [anon_sym_QMARK] = ACTIONS(5758), + [anon_sym_STAR] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(5758), + [anon_sym_SEMI] = ACTIONS(5758), + [anon_sym_RBRACK] = ACTIONS(5758), + [anon_sym_void] = ACTIONS(5760), + [anon_sym_noreturn] = ACTIONS(5760), + [anon_sym_type] = ACTIONS(5760), + [anon_sym_anyopaque] = ACTIONS(5760), + [anon_sym_bool] = ACTIONS(5760), + [anon_sym_int] = ACTIONS(5760), + [anon_sym_uint] = ACTIONS(5760), + [anon_sym_float] = ACTIONS(5760), + [anon_sym_range] = ACTIONS(5760), + [anon_sym_i8] = ACTIONS(5760), + [anon_sym_i16] = ACTIONS(5760), + [anon_sym_i32] = ACTIONS(5760), + [anon_sym_i64] = ACTIONS(5760), + [anon_sym_u8] = ACTIONS(5760), + [anon_sym_u16] = ACTIONS(5760), + [anon_sym_u32] = ACTIONS(5760), + [anon_sym_u64] = ACTIONS(5760), + [anon_sym_isize] = ACTIONS(5760), + [anon_sym_usize] = ACTIONS(5760), + [anon_sym_f32] = ACTIONS(5760), + [anon_sym_f64] = ACTIONS(5760), + [anon_sym_c_char] = ACTIONS(5760), + [anon_sym_c_schar] = ACTIONS(5760), + [anon_sym_c_uchar] = ACTIONS(5760), + [anon_sym_c_short] = ACTIONS(5760), + [anon_sym_c_ushort] = ACTIONS(5760), + [anon_sym_c_int] = ACTIONS(5760), + [anon_sym_c_uint] = ACTIONS(5760), + [anon_sym_c_long] = ACTIONS(5760), + [anon_sym_c_ulong] = ACTIONS(5760), + [anon_sym_c_longlong] = ACTIONS(5760), + [anon_sym_c_ulonglong] = ACTIONS(5760), + [anon_sym_c_float] = ACTIONS(5760), + [anon_sym_c_double] = ACTIONS(5760), + [anon_sym_c_longdouble] = ACTIONS(5760), + [anon_sym_PLUS_EQ] = ACTIONS(5758), + [anon_sym_DASH_EQ] = ACTIONS(5758), + [anon_sym_STAR_EQ] = ACTIONS(5758), + [anon_sym_SLASH_EQ] = ACTIONS(5758), + [anon_sym_AMP_EQ] = ACTIONS(5758), + [anon_sym_PIPE_EQ] = ACTIONS(5758), + [anon_sym_xor_EQ] = ACTIONS(5758), + [anon_sym_LT_LT_EQ] = ACTIONS(5758), + [anon_sym_GT_GT_EQ] = ACTIONS(5758), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5758), + [anon_sym_return] = ACTIONS(5760), + [anon_sym_yield] = ACTIONS(5760), + [anon_sym_COLON] = ACTIONS(5758), + [anon_sym_break] = ACTIONS(5760), + [anon_sym_continue] = ACTIONS(5760), + [anon_sym_defer] = ACTIONS(5760), + [anon_sym_errdefer] = ACTIONS(5760), + [anon_sym_if] = ACTIONS(5760), + [anon_sym_else] = ACTIONS(5760), + [anon_sym_while] = ACTIONS(5760), + [anon_sym_expand] = ACTIONS(5760), + [anon_sym_for] = ACTIONS(5760), + [anon_sym_match] = ACTIONS(5760), + [anon_sym_DOT_DOT] = ACTIONS(5760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5758), + [anon_sym_orelse] = ACTIONS(5760), + [anon_sym_or] = ACTIONS(5760), + [anon_sym_and] = ACTIONS(5760), + [anon_sym_EQ_EQ] = ACTIONS(5758), + [anon_sym_BANG_EQ] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_LT_EQ] = ACTIONS(5758), + [anon_sym_GT] = ACTIONS(5760), + [anon_sym_GT_EQ] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(5760), + [anon_sym_xor] = ACTIONS(5760), + [anon_sym_LT_LT] = ACTIONS(5760), + [anon_sym_GT_GT] = ACTIONS(5760), + [anon_sym_LT_LT_PIPE] = ACTIONS(5760), + [anon_sym_PLUS] = ACTIONS(5760), + [anon_sym_SLASH] = ACTIONS(5760), + [anon_sym_catch] = ACTIONS(5760), + [anon_sym_TILDE] = ACTIONS(5758), + [anon_sym_try] = ACTIONS(5760), + [anon_sym_DOT] = ACTIONS(5760), + [anon_sym_CARET] = ACTIONS(5758), + [anon_sym_true] = ACTIONS(5760), + [anon_sym_false] = ACTIONS(5760), + [anon_sym_null] = ACTIONS(5760), + [anon_sym_unreachable] = ACTIONS(5760), + [anon_sym_undefined] = ACTIONS(5760), + [sym_sink] = ACTIONS(5760), + [sym_integer] = ACTIONS(5760), + [sym_float] = ACTIONS(5758), + [anon_sym_DQUOTE] = ACTIONS(5758), + [sym_multiline_string] = ACTIONS(5758), + [sym_character] = ACTIONS(5758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5758), + }, + [STATE(2536)] = { + [ts_builtin_sym_end] = ACTIONS(4732), + [sym_identifier] = ACTIONS(4736), + [anon_sym_import] = ACTIONS(4736), + [anon_sym_test] = ACTIONS(4736), + [anon_sym_hide] = ACTIONS(4736), + [anon_sym_func] = ACTIONS(4736), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_struct] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_RPAREN] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4732), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4732), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_QMARK] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4732), + [anon_sym_RBRACK] = ACTIONS(4732), + [anon_sym_void] = ACTIONS(4736), + [anon_sym_noreturn] = ACTIONS(4736), + [anon_sym_type] = ACTIONS(4736), + [anon_sym_anyopaque] = ACTIONS(4736), + [anon_sym_bool] = ACTIONS(4736), + [anon_sym_int] = ACTIONS(4736), + [anon_sym_uint] = ACTIONS(4736), + [anon_sym_float] = ACTIONS(4736), + [anon_sym_range] = ACTIONS(4736), + [anon_sym_i8] = ACTIONS(4736), + [anon_sym_i16] = ACTIONS(4736), + [anon_sym_i32] = ACTIONS(4736), + [anon_sym_i64] = ACTIONS(4736), + [anon_sym_u8] = ACTIONS(4736), + [anon_sym_u16] = ACTIONS(4736), + [anon_sym_u32] = ACTIONS(4736), + [anon_sym_u64] = ACTIONS(4736), + [anon_sym_isize] = ACTIONS(4736), + [anon_sym_usize] = ACTIONS(4736), + [anon_sym_f32] = ACTIONS(4736), + [anon_sym_f64] = ACTIONS(4736), + [anon_sym_c_char] = ACTIONS(4736), + [anon_sym_c_schar] = ACTIONS(4736), + [anon_sym_c_uchar] = ACTIONS(4736), + [anon_sym_c_short] = ACTIONS(4736), + [anon_sym_c_ushort] = ACTIONS(4736), + [anon_sym_c_int] = ACTIONS(4736), + [anon_sym_c_uint] = ACTIONS(4736), + [anon_sym_c_long] = ACTIONS(4736), + [anon_sym_c_ulong] = ACTIONS(4736), + [anon_sym_c_longlong] = ACTIONS(4736), + [anon_sym_c_ulonglong] = ACTIONS(4736), + [anon_sym_c_float] = ACTIONS(4736), + [anon_sym_c_double] = ACTIONS(4736), + [anon_sym_c_longdouble] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_AMP_EQ] = ACTIONS(4732), + [anon_sym_PIPE_EQ] = ACTIONS(4732), + [anon_sym_xor_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_GT_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_yield] = ACTIONS(4736), + [anon_sym_COLON] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_defer] = ACTIONS(4736), + [anon_sym_errdefer] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_expand] = ACTIONS(4736), + [anon_sym_for] = ACTIONS(4736), + [anon_sym_match] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4732), + [anon_sym_orelse] = ACTIONS(4736), + [anon_sym_or] = ACTIONS(4736), + [anon_sym_and] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4732), + [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_xor] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_LT_LT_PIPE] = ACTIONS(4736), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_catch] = ACTIONS(4736), + [anon_sym_TILDE] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4732), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_unreachable] = ACTIONS(4736), + [anon_sym_undefined] = ACTIONS(4736), + [sym_sink] = ACTIONS(4736), + [sym_integer] = ACTIONS(4736), + [sym_float] = ACTIONS(4732), + [anon_sym_DQUOTE] = ACTIONS(4732), + [sym_multiline_string] = ACTIONS(4732), + [sym_character] = ACTIONS(4732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4732), + }, + [STATE(2537)] = { + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2538)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2539), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5762), + }, + [STATE(2539)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2540)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5764), + }, + [STATE(2541)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5766), + }, + [STATE(2542)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2543)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2855), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5768), + }, + [STATE(2544)] = { + [ts_builtin_sym_end] = ACTIONS(5770), + [sym_identifier] = ACTIONS(5772), + [anon_sym_import] = ACTIONS(5772), + [anon_sym_test] = ACTIONS(5772), + [anon_sym_hide] = ACTIONS(5772), + [anon_sym_func] = ACTIONS(5772), + [anon_sym_BANG] = ACTIONS(5772), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_struct] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(5770), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_COMMA] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5772), + [anon_sym_DOLLAR] = ACTIONS(5770), + [anon_sym_PIPE] = ACTIONS(5772), + [anon_sym_QMARK] = ACTIONS(5770), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_SEMI] = ACTIONS(5770), + [anon_sym_RBRACK] = ACTIONS(5770), + [anon_sym_void] = ACTIONS(5772), + [anon_sym_noreturn] = ACTIONS(5772), + [anon_sym_type] = ACTIONS(5772), + [anon_sym_anyopaque] = ACTIONS(5772), + [anon_sym_bool] = ACTIONS(5772), + [anon_sym_int] = ACTIONS(5772), + [anon_sym_uint] = ACTIONS(5772), + [anon_sym_float] = ACTIONS(5772), + [anon_sym_range] = ACTIONS(5772), + [anon_sym_i8] = ACTIONS(5772), + [anon_sym_i16] = ACTIONS(5772), + [anon_sym_i32] = ACTIONS(5772), + [anon_sym_i64] = ACTIONS(5772), + [anon_sym_u8] = ACTIONS(5772), + [anon_sym_u16] = ACTIONS(5772), + [anon_sym_u32] = ACTIONS(5772), + [anon_sym_u64] = ACTIONS(5772), + [anon_sym_isize] = ACTIONS(5772), + [anon_sym_usize] = ACTIONS(5772), + [anon_sym_f32] = ACTIONS(5772), + [anon_sym_f64] = ACTIONS(5772), + [anon_sym_c_char] = ACTIONS(5772), + [anon_sym_c_schar] = ACTIONS(5772), + [anon_sym_c_uchar] = ACTIONS(5772), + [anon_sym_c_short] = ACTIONS(5772), + [anon_sym_c_ushort] = ACTIONS(5772), + [anon_sym_c_int] = ACTIONS(5772), + [anon_sym_c_uint] = ACTIONS(5772), + [anon_sym_c_long] = ACTIONS(5772), + [anon_sym_c_ulong] = ACTIONS(5772), + [anon_sym_c_longlong] = ACTIONS(5772), + [anon_sym_c_ulonglong] = ACTIONS(5772), + [anon_sym_c_float] = ACTIONS(5772), + [anon_sym_c_double] = ACTIONS(5772), + [anon_sym_c_longdouble] = ACTIONS(5772), + [anon_sym_PLUS_EQ] = ACTIONS(5770), + [anon_sym_DASH_EQ] = ACTIONS(5770), + [anon_sym_STAR_EQ] = ACTIONS(5770), + [anon_sym_SLASH_EQ] = ACTIONS(5770), + [anon_sym_AMP_EQ] = ACTIONS(5770), + [anon_sym_PIPE_EQ] = ACTIONS(5770), + [anon_sym_xor_EQ] = ACTIONS(5770), + [anon_sym_LT_LT_EQ] = ACTIONS(5770), + [anon_sym_GT_GT_EQ] = ACTIONS(5770), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5770), + [anon_sym_return] = ACTIONS(5772), + [anon_sym_yield] = ACTIONS(5772), + [anon_sym_COLON] = ACTIONS(5770), + [anon_sym_break] = ACTIONS(5772), + [anon_sym_continue] = ACTIONS(5772), + [anon_sym_defer] = ACTIONS(5772), + [anon_sym_errdefer] = ACTIONS(5772), + [anon_sym_if] = ACTIONS(5772), + [anon_sym_else] = ACTIONS(5772), + [anon_sym_while] = ACTIONS(5772), + [anon_sym_expand] = ACTIONS(5772), + [anon_sym_for] = ACTIONS(5772), + [anon_sym_match] = ACTIONS(5772), + [anon_sym_DOT_DOT] = ACTIONS(5772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5770), + [anon_sym_orelse] = ACTIONS(5772), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5770), + [anon_sym_BANG_EQ] = ACTIONS(5770), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_EQ] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5770), + [anon_sym_AMP] = ACTIONS(5772), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5772), + [anon_sym_GT_GT] = ACTIONS(5772), + [anon_sym_LT_LT_PIPE] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5772), + [anon_sym_SLASH] = ACTIONS(5772), + [anon_sym_catch] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(5770), + [anon_sym_try] = ACTIONS(5772), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5770), + [anon_sym_true] = ACTIONS(5772), + [anon_sym_false] = ACTIONS(5772), + [anon_sym_null] = ACTIONS(5772), + [anon_sym_unreachable] = ACTIONS(5772), + [anon_sym_undefined] = ACTIONS(5772), + [sym_sink] = ACTIONS(5772), + [sym_integer] = ACTIONS(5772), + [sym_float] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(5770), + [sym_multiline_string] = ACTIONS(5770), + [sym_character] = ACTIONS(5770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5770), + }, + [STATE(2545)] = { + [ts_builtin_sym_end] = ACTIONS(5774), + [sym_identifier] = ACTIONS(5776), + [anon_sym_import] = ACTIONS(5776), + [anon_sym_test] = ACTIONS(5776), + [anon_sym_hide] = ACTIONS(5776), + [anon_sym_func] = ACTIONS(5776), + [anon_sym_BANG] = ACTIONS(5776), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_struct] = ACTIONS(5776), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(5774), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_COMMA] = ACTIONS(5774), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_DOLLAR] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_STAR] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_SEMI] = ACTIONS(5774), + [anon_sym_RBRACK] = ACTIONS(5774), + [anon_sym_void] = ACTIONS(5776), + [anon_sym_noreturn] = ACTIONS(5776), + [anon_sym_type] = ACTIONS(5776), + [anon_sym_anyopaque] = ACTIONS(5776), + [anon_sym_bool] = ACTIONS(5776), + [anon_sym_int] = ACTIONS(5776), + [anon_sym_uint] = ACTIONS(5776), + [anon_sym_float] = ACTIONS(5776), + [anon_sym_range] = ACTIONS(5776), + [anon_sym_i8] = ACTIONS(5776), + [anon_sym_i16] = ACTIONS(5776), + [anon_sym_i32] = ACTIONS(5776), + [anon_sym_i64] = ACTIONS(5776), + [anon_sym_u8] = ACTIONS(5776), + [anon_sym_u16] = ACTIONS(5776), + [anon_sym_u32] = ACTIONS(5776), + [anon_sym_u64] = ACTIONS(5776), + [anon_sym_isize] = ACTIONS(5776), + [anon_sym_usize] = ACTIONS(5776), + [anon_sym_f32] = ACTIONS(5776), + [anon_sym_f64] = ACTIONS(5776), + [anon_sym_c_char] = ACTIONS(5776), + [anon_sym_c_schar] = ACTIONS(5776), + [anon_sym_c_uchar] = ACTIONS(5776), + [anon_sym_c_short] = ACTIONS(5776), + [anon_sym_c_ushort] = ACTIONS(5776), + [anon_sym_c_int] = ACTIONS(5776), + [anon_sym_c_uint] = ACTIONS(5776), + [anon_sym_c_long] = ACTIONS(5776), + [anon_sym_c_ulong] = ACTIONS(5776), + [anon_sym_c_longlong] = ACTIONS(5776), + [anon_sym_c_ulonglong] = ACTIONS(5776), + [anon_sym_c_float] = ACTIONS(5776), + [anon_sym_c_double] = ACTIONS(5776), + [anon_sym_c_longdouble] = ACTIONS(5776), + [anon_sym_PLUS_EQ] = ACTIONS(5774), + [anon_sym_DASH_EQ] = ACTIONS(5774), + [anon_sym_STAR_EQ] = ACTIONS(5774), + [anon_sym_SLASH_EQ] = ACTIONS(5774), + [anon_sym_AMP_EQ] = ACTIONS(5774), + [anon_sym_PIPE_EQ] = ACTIONS(5774), + [anon_sym_xor_EQ] = ACTIONS(5774), + [anon_sym_LT_LT_EQ] = ACTIONS(5774), + [anon_sym_GT_GT_EQ] = ACTIONS(5774), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5774), + [anon_sym_return] = ACTIONS(5776), + [anon_sym_yield] = ACTIONS(5776), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_break] = ACTIONS(5776), + [anon_sym_continue] = ACTIONS(5776), + [anon_sym_defer] = ACTIONS(5776), + [anon_sym_errdefer] = ACTIONS(5776), + [anon_sym_if] = ACTIONS(5776), + [anon_sym_else] = ACTIONS(5776), + [anon_sym_while] = ACTIONS(5776), + [anon_sym_expand] = ACTIONS(5776), + [anon_sym_for] = ACTIONS(5776), + [anon_sym_match] = ACTIONS(5776), + [anon_sym_DOT_DOT] = ACTIONS(5776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5774), + [anon_sym_orelse] = ACTIONS(5776), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5776), + [anon_sym_LT_LT_PIPE] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_catch] = ACTIONS(5776), + [anon_sym_TILDE] = ACTIONS(5774), + [anon_sym_try] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5774), + [anon_sym_true] = ACTIONS(5776), + [anon_sym_false] = ACTIONS(5776), + [anon_sym_null] = ACTIONS(5776), + [anon_sym_unreachable] = ACTIONS(5776), + [anon_sym_undefined] = ACTIONS(5776), + [sym_sink] = ACTIONS(5776), + [sym_integer] = ACTIONS(5776), + [sym_float] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(5774), + [sym_multiline_string] = ACTIONS(5774), + [sym_character] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5774), + }, + [STATE(2546)] = { + [ts_builtin_sym_end] = ACTIONS(5778), + [sym_identifier] = ACTIONS(5780), + [anon_sym_import] = ACTIONS(5782), + [anon_sym_test] = ACTIONS(5782), + [anon_sym_hide] = ACTIONS(5782), + [anon_sym_func] = ACTIONS(5780), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_EQ] = ACTIONS(5782), + [anon_sym_struct] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_RPAREN] = ACTIONS(5778), + [anon_sym_LBRACE] = ACTIONS(5784), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5784), + [anon_sym_PIPE] = ACTIONS(5780), + [anon_sym_QMARK] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5784), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym_RBRACK] = ACTIONS(5778), + [anon_sym_void] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym_type] = ACTIONS(5780), + [anon_sym_anyopaque] = ACTIONS(5780), + [anon_sym_bool] = ACTIONS(5780), + [anon_sym_int] = ACTIONS(5780), + [anon_sym_uint] = ACTIONS(5780), + [anon_sym_float] = ACTIONS(5780), + [anon_sym_range] = ACTIONS(5780), + [anon_sym_i8] = ACTIONS(5780), + [anon_sym_i16] = ACTIONS(5780), + [anon_sym_i32] = ACTIONS(5780), + [anon_sym_i64] = ACTIONS(5780), + [anon_sym_u8] = ACTIONS(5780), + [anon_sym_u16] = ACTIONS(5780), + [anon_sym_u32] = ACTIONS(5780), + [anon_sym_u64] = ACTIONS(5780), + [anon_sym_isize] = ACTIONS(5780), + [anon_sym_usize] = ACTIONS(5780), + [anon_sym_f32] = ACTIONS(5780), + [anon_sym_f64] = ACTIONS(5780), + [anon_sym_c_char] = ACTIONS(5780), + [anon_sym_c_schar] = ACTIONS(5780), + [anon_sym_c_uchar] = ACTIONS(5780), + [anon_sym_c_short] = ACTIONS(5780), + [anon_sym_c_ushort] = ACTIONS(5780), + [anon_sym_c_int] = ACTIONS(5780), + [anon_sym_c_uint] = ACTIONS(5780), + [anon_sym_c_long] = ACTIONS(5780), + [anon_sym_c_ulong] = ACTIONS(5780), + [anon_sym_c_longlong] = ACTIONS(5780), + [anon_sym_c_ulonglong] = ACTIONS(5780), + [anon_sym_c_float] = ACTIONS(5780), + [anon_sym_c_double] = ACTIONS(5780), + [anon_sym_c_longdouble] = ACTIONS(5780), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5778), + [anon_sym_xor_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5778), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_defer] = ACTIONS(5780), + [anon_sym_errdefer] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_else] = ACTIONS(5782), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_expand] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5784), + [anon_sym_orelse] = ACTIONS(5780), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5784), + [anon_sym_BANG_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5780), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5780), + [anon_sym_LT_LT_PIPE] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5780), + [anon_sym_SLASH] = ACTIONS(5780), + [anon_sym_catch] = ACTIONS(5780), + [anon_sym_TILDE] = ACTIONS(5784), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5784), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_unreachable] = ACTIONS(5780), + [anon_sym_undefined] = ACTIONS(5780), + [sym_sink] = ACTIONS(5780), + [sym_integer] = ACTIONS(5780), + [sym_float] = ACTIONS(5784), + [anon_sym_DQUOTE] = ACTIONS(5784), + [sym_multiline_string] = ACTIONS(5784), + [sym_character] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5784), + }, + [STATE(2547)] = { + [ts_builtin_sym_end] = ACTIONS(5786), + [sym_identifier] = ACTIONS(5788), + [anon_sym_import] = ACTIONS(5788), + [anon_sym_test] = ACTIONS(5788), + [anon_sym_hide] = ACTIONS(5788), + [anon_sym_func] = ACTIONS(5788), + [anon_sym_BANG] = ACTIONS(5788), + [anon_sym_EQ] = ACTIONS(5788), + [anon_sym_struct] = ACTIONS(5788), + [anon_sym_LPAREN] = ACTIONS(5786), + [anon_sym_RPAREN] = ACTIONS(5786), + [anon_sym_LBRACE] = ACTIONS(5786), + [anon_sym_COMMA] = ACTIONS(5786), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5788), + [anon_sym_DOLLAR] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5788), + [anon_sym_QMARK] = ACTIONS(5786), + [anon_sym_STAR] = ACTIONS(5788), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_SEMI] = ACTIONS(5786), + [anon_sym_RBRACK] = ACTIONS(5786), + [anon_sym_void] = ACTIONS(5788), + [anon_sym_noreturn] = ACTIONS(5788), + [anon_sym_type] = ACTIONS(5788), + [anon_sym_anyopaque] = ACTIONS(5788), + [anon_sym_bool] = ACTIONS(5788), + [anon_sym_int] = ACTIONS(5788), + [anon_sym_uint] = ACTIONS(5788), + [anon_sym_float] = ACTIONS(5788), + [anon_sym_range] = ACTIONS(5788), + [anon_sym_i8] = ACTIONS(5788), + [anon_sym_i16] = ACTIONS(5788), + [anon_sym_i32] = ACTIONS(5788), + [anon_sym_i64] = ACTIONS(5788), + [anon_sym_u8] = ACTIONS(5788), + [anon_sym_u16] = ACTIONS(5788), + [anon_sym_u32] = ACTIONS(5788), + [anon_sym_u64] = ACTIONS(5788), + [anon_sym_isize] = ACTIONS(5788), + [anon_sym_usize] = ACTIONS(5788), + [anon_sym_f32] = ACTIONS(5788), + [anon_sym_f64] = ACTIONS(5788), + [anon_sym_c_char] = ACTIONS(5788), + [anon_sym_c_schar] = ACTIONS(5788), + [anon_sym_c_uchar] = ACTIONS(5788), + [anon_sym_c_short] = ACTIONS(5788), + [anon_sym_c_ushort] = ACTIONS(5788), + [anon_sym_c_int] = ACTIONS(5788), + [anon_sym_c_uint] = ACTIONS(5788), + [anon_sym_c_long] = ACTIONS(5788), + [anon_sym_c_ulong] = ACTIONS(5788), + [anon_sym_c_longlong] = ACTIONS(5788), + [anon_sym_c_ulonglong] = ACTIONS(5788), + [anon_sym_c_float] = ACTIONS(5788), + [anon_sym_c_double] = ACTIONS(5788), + [anon_sym_c_longdouble] = ACTIONS(5788), + [anon_sym_PLUS_EQ] = ACTIONS(5786), + [anon_sym_DASH_EQ] = ACTIONS(5786), + [anon_sym_STAR_EQ] = ACTIONS(5786), + [anon_sym_SLASH_EQ] = ACTIONS(5786), + [anon_sym_AMP_EQ] = ACTIONS(5786), + [anon_sym_PIPE_EQ] = ACTIONS(5786), + [anon_sym_xor_EQ] = ACTIONS(5786), + [anon_sym_LT_LT_EQ] = ACTIONS(5786), + [anon_sym_GT_GT_EQ] = ACTIONS(5786), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5786), + [anon_sym_return] = ACTIONS(5788), + [anon_sym_yield] = ACTIONS(5788), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym_break] = ACTIONS(5788), + [anon_sym_continue] = ACTIONS(5788), + [anon_sym_defer] = ACTIONS(5788), + [anon_sym_errdefer] = ACTIONS(5788), + [anon_sym_if] = ACTIONS(5788), + [anon_sym_else] = ACTIONS(5788), + [anon_sym_while] = ACTIONS(5788), + [anon_sym_expand] = ACTIONS(5788), + [anon_sym_for] = ACTIONS(5788), + [anon_sym_match] = ACTIONS(5788), + [anon_sym_DOT_DOT] = ACTIONS(5788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5786), + [anon_sym_orelse] = ACTIONS(5788), + [anon_sym_or] = ACTIONS(5788), + [anon_sym_and] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5786), + [anon_sym_BANG_EQ] = ACTIONS(5786), + [anon_sym_LT] = ACTIONS(5788), + [anon_sym_LT_EQ] = ACTIONS(5786), + [anon_sym_GT] = ACTIONS(5788), + [anon_sym_GT_EQ] = ACTIONS(5786), + [anon_sym_AMP] = ACTIONS(5788), + [anon_sym_xor] = ACTIONS(5788), + [anon_sym_LT_LT] = ACTIONS(5788), + [anon_sym_GT_GT] = ACTIONS(5788), + [anon_sym_LT_LT_PIPE] = ACTIONS(5788), + [anon_sym_PLUS] = ACTIONS(5788), + [anon_sym_SLASH] = ACTIONS(5788), + [anon_sym_catch] = ACTIONS(5788), + [anon_sym_TILDE] = ACTIONS(5786), + [anon_sym_try] = ACTIONS(5788), + [anon_sym_DOT] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5786), + [anon_sym_true] = ACTIONS(5788), + [anon_sym_false] = ACTIONS(5788), + [anon_sym_null] = ACTIONS(5788), + [anon_sym_unreachable] = ACTIONS(5788), + [anon_sym_undefined] = ACTIONS(5788), + [sym_sink] = ACTIONS(5788), + [sym_integer] = ACTIONS(5788), + [sym_float] = ACTIONS(5786), + [anon_sym_DQUOTE] = ACTIONS(5786), + [sym_multiline_string] = ACTIONS(5786), + [sym_character] = ACTIONS(5786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5786), + }, + [STATE(2548)] = { + [ts_builtin_sym_end] = ACTIONS(5790), + [sym_identifier] = ACTIONS(5792), + [anon_sym_import] = ACTIONS(5792), + [anon_sym_test] = ACTIONS(5792), + [anon_sym_hide] = ACTIONS(5792), + [anon_sym_func] = ACTIONS(5792), + [anon_sym_BANG] = ACTIONS(5792), + [anon_sym_EQ] = ACTIONS(5792), + [anon_sym_struct] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_RPAREN] = ACTIONS(5790), + [anon_sym_LBRACE] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(5790), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_DASH] = ACTIONS(5792), + [anon_sym_DOLLAR] = ACTIONS(5790), + [anon_sym_PIPE] = ACTIONS(5792), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_STAR] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(5790), + [anon_sym_SEMI] = ACTIONS(5790), + [anon_sym_RBRACK] = ACTIONS(5790), + [anon_sym_void] = ACTIONS(5792), + [anon_sym_noreturn] = ACTIONS(5792), + [anon_sym_type] = ACTIONS(5792), + [anon_sym_anyopaque] = ACTIONS(5792), + [anon_sym_bool] = ACTIONS(5792), + [anon_sym_int] = ACTIONS(5792), + [anon_sym_uint] = ACTIONS(5792), + [anon_sym_float] = ACTIONS(5792), + [anon_sym_range] = ACTIONS(5792), + [anon_sym_i8] = ACTIONS(5792), + [anon_sym_i16] = ACTIONS(5792), + [anon_sym_i32] = ACTIONS(5792), + [anon_sym_i64] = ACTIONS(5792), + [anon_sym_u8] = ACTIONS(5792), + [anon_sym_u16] = ACTIONS(5792), + [anon_sym_u32] = ACTIONS(5792), + [anon_sym_u64] = ACTIONS(5792), + [anon_sym_isize] = ACTIONS(5792), + [anon_sym_usize] = ACTIONS(5792), + [anon_sym_f32] = ACTIONS(5792), + [anon_sym_f64] = ACTIONS(5792), + [anon_sym_c_char] = ACTIONS(5792), + [anon_sym_c_schar] = ACTIONS(5792), + [anon_sym_c_uchar] = ACTIONS(5792), + [anon_sym_c_short] = ACTIONS(5792), + [anon_sym_c_ushort] = ACTIONS(5792), + [anon_sym_c_int] = ACTIONS(5792), + [anon_sym_c_uint] = ACTIONS(5792), + [anon_sym_c_long] = ACTIONS(5792), + [anon_sym_c_ulong] = ACTIONS(5792), + [anon_sym_c_longlong] = ACTIONS(5792), + [anon_sym_c_ulonglong] = ACTIONS(5792), + [anon_sym_c_float] = ACTIONS(5792), + [anon_sym_c_double] = ACTIONS(5792), + [anon_sym_c_longdouble] = ACTIONS(5792), + [anon_sym_PLUS_EQ] = ACTIONS(5790), + [anon_sym_DASH_EQ] = ACTIONS(5790), + [anon_sym_STAR_EQ] = ACTIONS(5790), + [anon_sym_SLASH_EQ] = ACTIONS(5790), + [anon_sym_AMP_EQ] = ACTIONS(5790), + [anon_sym_PIPE_EQ] = ACTIONS(5790), + [anon_sym_xor_EQ] = ACTIONS(5790), + [anon_sym_LT_LT_EQ] = ACTIONS(5790), + [anon_sym_GT_GT_EQ] = ACTIONS(5790), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5790), + [anon_sym_return] = ACTIONS(5792), + [anon_sym_yield] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(5790), + [anon_sym_break] = ACTIONS(5792), + [anon_sym_continue] = ACTIONS(5792), + [anon_sym_defer] = ACTIONS(5792), + [anon_sym_errdefer] = ACTIONS(5792), + [anon_sym_if] = ACTIONS(5792), + [anon_sym_else] = ACTIONS(5792), + [anon_sym_while] = ACTIONS(5792), + [anon_sym_expand] = ACTIONS(5792), + [anon_sym_for] = ACTIONS(5792), + [anon_sym_match] = ACTIONS(5792), + [anon_sym_DOT_DOT] = ACTIONS(5792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5790), + [anon_sym_orelse] = ACTIONS(5792), + [anon_sym_or] = ACTIONS(5792), + [anon_sym_and] = ACTIONS(5792), + [anon_sym_EQ_EQ] = ACTIONS(5790), + [anon_sym_BANG_EQ] = ACTIONS(5790), + [anon_sym_LT] = ACTIONS(5792), + [anon_sym_LT_EQ] = ACTIONS(5790), + [anon_sym_GT] = ACTIONS(5792), + [anon_sym_GT_EQ] = ACTIONS(5790), + [anon_sym_AMP] = ACTIONS(5792), + [anon_sym_xor] = ACTIONS(5792), + [anon_sym_LT_LT] = ACTIONS(5792), + [anon_sym_GT_GT] = ACTIONS(5792), + [anon_sym_LT_LT_PIPE] = ACTIONS(5792), + [anon_sym_PLUS] = ACTIONS(5792), + [anon_sym_SLASH] = ACTIONS(5792), + [anon_sym_catch] = ACTIONS(5792), + [anon_sym_TILDE] = ACTIONS(5790), + [anon_sym_try] = ACTIONS(5792), + [anon_sym_DOT] = ACTIONS(5792), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_true] = ACTIONS(5792), + [anon_sym_false] = ACTIONS(5792), + [anon_sym_null] = ACTIONS(5792), + [anon_sym_unreachable] = ACTIONS(5792), + [anon_sym_undefined] = ACTIONS(5792), + [sym_sink] = ACTIONS(5792), + [sym_integer] = ACTIONS(5792), + [sym_float] = ACTIONS(5790), + [anon_sym_DQUOTE] = ACTIONS(5790), + [sym_multiline_string] = ACTIONS(5790), + [sym_character] = ACTIONS(5790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5790), + }, + [STATE(2549)] = { + [ts_builtin_sym_end] = ACTIONS(5794), + [sym_identifier] = ACTIONS(5796), + [anon_sym_import] = ACTIONS(5796), + [anon_sym_test] = ACTIONS(5796), + [anon_sym_hide] = ACTIONS(5796), + [anon_sym_func] = ACTIONS(5796), + [anon_sym_BANG] = ACTIONS(5796), + [anon_sym_EQ] = ACTIONS(5796), + [anon_sym_struct] = ACTIONS(5796), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_RPAREN] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(5794), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_DASH] = ACTIONS(5796), + [anon_sym_DOLLAR] = ACTIONS(5794), + [anon_sym_PIPE] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5794), + [anon_sym_STAR] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_SEMI] = ACTIONS(5794), + [anon_sym_RBRACK] = ACTIONS(5794), + [anon_sym_void] = ACTIONS(5796), + [anon_sym_noreturn] = ACTIONS(5796), + [anon_sym_type] = ACTIONS(5796), + [anon_sym_anyopaque] = ACTIONS(5796), + [anon_sym_bool] = ACTIONS(5796), + [anon_sym_int] = ACTIONS(5796), + [anon_sym_uint] = ACTIONS(5796), + [anon_sym_float] = ACTIONS(5796), + [anon_sym_range] = ACTIONS(5796), + [anon_sym_i8] = ACTIONS(5796), + [anon_sym_i16] = ACTIONS(5796), + [anon_sym_i32] = ACTIONS(5796), + [anon_sym_i64] = ACTIONS(5796), + [anon_sym_u8] = ACTIONS(5796), + [anon_sym_u16] = ACTIONS(5796), + [anon_sym_u32] = ACTIONS(5796), + [anon_sym_u64] = ACTIONS(5796), + [anon_sym_isize] = ACTIONS(5796), + [anon_sym_usize] = ACTIONS(5796), + [anon_sym_f32] = ACTIONS(5796), + [anon_sym_f64] = ACTIONS(5796), + [anon_sym_c_char] = ACTIONS(5796), + [anon_sym_c_schar] = ACTIONS(5796), + [anon_sym_c_uchar] = ACTIONS(5796), + [anon_sym_c_short] = ACTIONS(5796), + [anon_sym_c_ushort] = ACTIONS(5796), + [anon_sym_c_int] = ACTIONS(5796), + [anon_sym_c_uint] = ACTIONS(5796), + [anon_sym_c_long] = ACTIONS(5796), + [anon_sym_c_ulong] = ACTIONS(5796), + [anon_sym_c_longlong] = ACTIONS(5796), + [anon_sym_c_ulonglong] = ACTIONS(5796), + [anon_sym_c_float] = ACTIONS(5796), + [anon_sym_c_double] = ACTIONS(5796), + [anon_sym_c_longdouble] = ACTIONS(5796), + [anon_sym_PLUS_EQ] = ACTIONS(5794), + [anon_sym_DASH_EQ] = ACTIONS(5794), + [anon_sym_STAR_EQ] = ACTIONS(5794), + [anon_sym_SLASH_EQ] = ACTIONS(5794), + [anon_sym_AMP_EQ] = ACTIONS(5794), + [anon_sym_PIPE_EQ] = ACTIONS(5794), + [anon_sym_xor_EQ] = ACTIONS(5794), + [anon_sym_LT_LT_EQ] = ACTIONS(5794), + [anon_sym_GT_GT_EQ] = ACTIONS(5794), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5794), + [anon_sym_return] = ACTIONS(5796), + [anon_sym_yield] = ACTIONS(5796), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_break] = ACTIONS(5796), + [anon_sym_continue] = ACTIONS(5796), + [anon_sym_defer] = ACTIONS(5796), + [anon_sym_errdefer] = ACTIONS(5796), + [anon_sym_if] = ACTIONS(5796), + [anon_sym_else] = ACTIONS(5796), + [anon_sym_while] = ACTIONS(5796), + [anon_sym_expand] = ACTIONS(5796), + [anon_sym_for] = ACTIONS(5796), + [anon_sym_match] = ACTIONS(5796), + [anon_sym_DOT_DOT] = ACTIONS(5796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5794), + [anon_sym_orelse] = ACTIONS(5796), + [anon_sym_or] = ACTIONS(5796), + [anon_sym_and] = ACTIONS(5796), + [anon_sym_EQ_EQ] = ACTIONS(5794), + [anon_sym_BANG_EQ] = ACTIONS(5794), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_LT_EQ] = ACTIONS(5794), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_GT_EQ] = ACTIONS(5794), + [anon_sym_AMP] = ACTIONS(5796), + [anon_sym_xor] = ACTIONS(5796), + [anon_sym_LT_LT] = ACTIONS(5796), + [anon_sym_GT_GT] = ACTIONS(5796), + [anon_sym_LT_LT_PIPE] = ACTIONS(5796), + [anon_sym_PLUS] = ACTIONS(5796), + [anon_sym_SLASH] = ACTIONS(5796), + [anon_sym_catch] = ACTIONS(5796), + [anon_sym_TILDE] = ACTIONS(5794), + [anon_sym_try] = ACTIONS(5796), + [anon_sym_DOT] = ACTIONS(5796), + [anon_sym_CARET] = ACTIONS(5794), + [anon_sym_true] = ACTIONS(5796), + [anon_sym_false] = ACTIONS(5796), + [anon_sym_null] = ACTIONS(5796), + [anon_sym_unreachable] = ACTIONS(5796), + [anon_sym_undefined] = ACTIONS(5796), + [sym_sink] = ACTIONS(5796), + [sym_integer] = ACTIONS(5796), + [sym_float] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5794), + [sym_multiline_string] = ACTIONS(5794), + [sym_character] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5794), + }, + [STATE(2550)] = { + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_import] = ACTIONS(2696), + [anon_sym_test] = ACTIONS(2696), + [anon_sym_hide] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_RPAREN] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_RBRACK] = ACTIONS(2694), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_xor_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_errdefer] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_expand] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2696), + [anon_sym_and] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_xor] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_LT_LT_PIPE] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_unreachable] = ACTIONS(2696), + [anon_sym_undefined] = ACTIONS(2696), + [sym_sink] = ACTIONS(2696), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [sym_multiline_string] = ACTIONS(2694), + [sym_character] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(2551)] = { + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_test] = ACTIONS(3060), + [anon_sym_hide] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_RPAREN] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_RBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(3062), + [anon_sym_DASH_EQ] = ACTIONS(3062), + [anon_sym_STAR_EQ] = ACTIONS(3062), + [anon_sym_SLASH_EQ] = ACTIONS(3062), + [anon_sym_AMP_EQ] = ACTIONS(3062), + [anon_sym_PIPE_EQ] = ACTIONS(3062), + [anon_sym_xor_EQ] = ACTIONS(3062), + [anon_sym_LT_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_GT_EQ] = ACTIONS(3062), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_LT_LT_PIPE] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(2552)] = { + [ts_builtin_sym_end] = ACTIONS(5798), + [sym_identifier] = ACTIONS(5800), + [anon_sym_import] = ACTIONS(5800), + [anon_sym_test] = ACTIONS(5800), + [anon_sym_hide] = ACTIONS(5800), + [anon_sym_func] = ACTIONS(5800), + [anon_sym_BANG] = ACTIONS(5800), + [anon_sym_EQ] = ACTIONS(5800), + [anon_sym_struct] = ACTIONS(5800), + [anon_sym_LPAREN] = ACTIONS(5798), + [anon_sym_RPAREN] = ACTIONS(5798), + [anon_sym_LBRACE] = ACTIONS(5798), + [anon_sym_COMMA] = ACTIONS(5798), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5800), + [anon_sym_DOLLAR] = ACTIONS(5798), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_STAR] = ACTIONS(5800), + [anon_sym_LBRACK] = ACTIONS(5798), + [anon_sym_SEMI] = ACTIONS(5798), + [anon_sym_RBRACK] = ACTIONS(5798), + [anon_sym_void] = ACTIONS(5800), + [anon_sym_noreturn] = ACTIONS(5800), + [anon_sym_type] = ACTIONS(5800), + [anon_sym_anyopaque] = ACTIONS(5800), + [anon_sym_bool] = ACTIONS(5800), + [anon_sym_int] = ACTIONS(5800), + [anon_sym_uint] = ACTIONS(5800), + [anon_sym_float] = ACTIONS(5800), + [anon_sym_range] = ACTIONS(5800), + [anon_sym_i8] = ACTIONS(5800), + [anon_sym_i16] = ACTIONS(5800), + [anon_sym_i32] = ACTIONS(5800), + [anon_sym_i64] = ACTIONS(5800), + [anon_sym_u8] = ACTIONS(5800), + [anon_sym_u16] = ACTIONS(5800), + [anon_sym_u32] = ACTIONS(5800), + [anon_sym_u64] = ACTIONS(5800), + [anon_sym_isize] = ACTIONS(5800), + [anon_sym_usize] = ACTIONS(5800), + [anon_sym_f32] = ACTIONS(5800), + [anon_sym_f64] = ACTIONS(5800), + [anon_sym_c_char] = ACTIONS(5800), + [anon_sym_c_schar] = ACTIONS(5800), + [anon_sym_c_uchar] = ACTIONS(5800), + [anon_sym_c_short] = ACTIONS(5800), + [anon_sym_c_ushort] = ACTIONS(5800), + [anon_sym_c_int] = ACTIONS(5800), + [anon_sym_c_uint] = ACTIONS(5800), + [anon_sym_c_long] = ACTIONS(5800), + [anon_sym_c_ulong] = ACTIONS(5800), + [anon_sym_c_longlong] = ACTIONS(5800), + [anon_sym_c_ulonglong] = ACTIONS(5800), + [anon_sym_c_float] = ACTIONS(5800), + [anon_sym_c_double] = ACTIONS(5800), + [anon_sym_c_longdouble] = ACTIONS(5800), + [anon_sym_PLUS_EQ] = ACTIONS(5798), + [anon_sym_DASH_EQ] = ACTIONS(5798), + [anon_sym_STAR_EQ] = ACTIONS(5798), + [anon_sym_SLASH_EQ] = ACTIONS(5798), + [anon_sym_AMP_EQ] = ACTIONS(5798), + [anon_sym_PIPE_EQ] = ACTIONS(5798), + [anon_sym_xor_EQ] = ACTIONS(5798), + [anon_sym_LT_LT_EQ] = ACTIONS(5798), + [anon_sym_GT_GT_EQ] = ACTIONS(5798), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5798), + [anon_sym_return] = ACTIONS(5800), + [anon_sym_yield] = ACTIONS(5800), + [anon_sym_COLON] = ACTIONS(5798), + [anon_sym_break] = ACTIONS(5800), + [anon_sym_continue] = ACTIONS(5800), + [anon_sym_defer] = ACTIONS(5800), + [anon_sym_errdefer] = ACTIONS(5800), + [anon_sym_if] = ACTIONS(5800), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_while] = ACTIONS(5800), + [anon_sym_expand] = ACTIONS(5800), + [anon_sym_for] = ACTIONS(5800), + [anon_sym_match] = ACTIONS(5800), + [anon_sym_DOT_DOT] = ACTIONS(5800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5798), + [anon_sym_orelse] = ACTIONS(5800), + [anon_sym_or] = ACTIONS(5800), + [anon_sym_and] = ACTIONS(5800), + [anon_sym_EQ_EQ] = ACTIONS(5798), + [anon_sym_BANG_EQ] = ACTIONS(5798), + [anon_sym_LT] = ACTIONS(5800), + [anon_sym_LT_EQ] = ACTIONS(5798), + [anon_sym_GT] = ACTIONS(5800), + [anon_sym_GT_EQ] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [anon_sym_xor] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [anon_sym_LT_LT_PIPE] = ACTIONS(5800), + [anon_sym_PLUS] = ACTIONS(5800), + [anon_sym_SLASH] = ACTIONS(5800), + [anon_sym_catch] = ACTIONS(5800), + [anon_sym_TILDE] = ACTIONS(5798), + [anon_sym_try] = ACTIONS(5800), + [anon_sym_DOT] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5798), + [anon_sym_true] = ACTIONS(5800), + [anon_sym_false] = ACTIONS(5800), + [anon_sym_null] = ACTIONS(5800), + [anon_sym_unreachable] = ACTIONS(5800), + [anon_sym_undefined] = ACTIONS(5800), + [sym_sink] = ACTIONS(5800), + [sym_integer] = ACTIONS(5800), + [sym_float] = ACTIONS(5798), + [anon_sym_DQUOTE] = ACTIONS(5798), + [sym_multiline_string] = ACTIONS(5798), + [sym_character] = ACTIONS(5798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5798), + }, + [STATE(2553)] = { + [ts_builtin_sym_end] = ACTIONS(5802), + [sym_identifier] = ACTIONS(5804), + [anon_sym_import] = ACTIONS(5804), + [anon_sym_test] = ACTIONS(5804), + [anon_sym_hide] = ACTIONS(5804), + [anon_sym_func] = ACTIONS(5804), + [anon_sym_BANG] = ACTIONS(5804), + [anon_sym_EQ] = ACTIONS(5804), + [anon_sym_struct] = ACTIONS(5804), + [anon_sym_LPAREN] = ACTIONS(5802), + [anon_sym_RPAREN] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5802), + [anon_sym_COMMA] = ACTIONS(5802), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5804), + [anon_sym_DOLLAR] = ACTIONS(5802), + [anon_sym_PIPE] = ACTIONS(5804), + [anon_sym_QMARK] = ACTIONS(5802), + [anon_sym_STAR] = ACTIONS(5804), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_SEMI] = ACTIONS(5802), + [anon_sym_RBRACK] = ACTIONS(5802), + [anon_sym_void] = ACTIONS(5804), + [anon_sym_noreturn] = ACTIONS(5804), + [anon_sym_type] = ACTIONS(5804), + [anon_sym_anyopaque] = ACTIONS(5804), + [anon_sym_bool] = ACTIONS(5804), + [anon_sym_int] = ACTIONS(5804), + [anon_sym_uint] = ACTIONS(5804), + [anon_sym_float] = ACTIONS(5804), + [anon_sym_range] = ACTIONS(5804), + [anon_sym_i8] = ACTIONS(5804), + [anon_sym_i16] = ACTIONS(5804), + [anon_sym_i32] = ACTIONS(5804), + [anon_sym_i64] = ACTIONS(5804), + [anon_sym_u8] = ACTIONS(5804), + [anon_sym_u16] = ACTIONS(5804), + [anon_sym_u32] = ACTIONS(5804), + [anon_sym_u64] = ACTIONS(5804), + [anon_sym_isize] = ACTIONS(5804), + [anon_sym_usize] = ACTIONS(5804), + [anon_sym_f32] = ACTIONS(5804), + [anon_sym_f64] = ACTIONS(5804), + [anon_sym_c_char] = ACTIONS(5804), + [anon_sym_c_schar] = ACTIONS(5804), + [anon_sym_c_uchar] = ACTIONS(5804), + [anon_sym_c_short] = ACTIONS(5804), + [anon_sym_c_ushort] = ACTIONS(5804), + [anon_sym_c_int] = ACTIONS(5804), + [anon_sym_c_uint] = ACTIONS(5804), + [anon_sym_c_long] = ACTIONS(5804), + [anon_sym_c_ulong] = ACTIONS(5804), + [anon_sym_c_longlong] = ACTIONS(5804), + [anon_sym_c_ulonglong] = ACTIONS(5804), + [anon_sym_c_float] = ACTIONS(5804), + [anon_sym_c_double] = ACTIONS(5804), + [anon_sym_c_longdouble] = ACTIONS(5804), + [anon_sym_PLUS_EQ] = ACTIONS(5802), + [anon_sym_DASH_EQ] = ACTIONS(5802), + [anon_sym_STAR_EQ] = ACTIONS(5802), + [anon_sym_SLASH_EQ] = ACTIONS(5802), + [anon_sym_AMP_EQ] = ACTIONS(5802), + [anon_sym_PIPE_EQ] = ACTIONS(5802), + [anon_sym_xor_EQ] = ACTIONS(5802), + [anon_sym_LT_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_GT_EQ] = ACTIONS(5802), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5802), + [anon_sym_return] = ACTIONS(5804), + [anon_sym_yield] = ACTIONS(5804), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym_break] = ACTIONS(5804), + [anon_sym_continue] = ACTIONS(5804), + [anon_sym_defer] = ACTIONS(5804), + [anon_sym_errdefer] = ACTIONS(5804), + [anon_sym_if] = ACTIONS(5804), + [anon_sym_else] = ACTIONS(5804), + [anon_sym_while] = ACTIONS(5804), + [anon_sym_expand] = ACTIONS(5804), + [anon_sym_for] = ACTIONS(5804), + [anon_sym_match] = ACTIONS(5804), + [anon_sym_DOT_DOT] = ACTIONS(5804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5802), + [anon_sym_orelse] = ACTIONS(5804), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5802), + [anon_sym_BANG_EQ] = ACTIONS(5802), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5804), + [anon_sym_GT_GT] = ACTIONS(5804), + [anon_sym_LT_LT_PIPE] = ACTIONS(5804), + [anon_sym_PLUS] = ACTIONS(5804), + [anon_sym_SLASH] = ACTIONS(5804), + [anon_sym_catch] = ACTIONS(5804), + [anon_sym_TILDE] = ACTIONS(5802), + [anon_sym_try] = ACTIONS(5804), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5802), + [anon_sym_true] = ACTIONS(5804), + [anon_sym_false] = ACTIONS(5804), + [anon_sym_null] = ACTIONS(5804), + [anon_sym_unreachable] = ACTIONS(5804), + [anon_sym_undefined] = ACTIONS(5804), + [sym_sink] = ACTIONS(5804), + [sym_integer] = ACTIONS(5804), + [sym_float] = ACTIONS(5802), + [anon_sym_DQUOTE] = ACTIONS(5802), + [sym_multiline_string] = ACTIONS(5802), + [sym_character] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5802), + }, + [STATE(2554)] = { + [ts_builtin_sym_end] = ACTIONS(5806), + [sym_identifier] = ACTIONS(5808), + [anon_sym_import] = ACTIONS(5808), + [anon_sym_test] = ACTIONS(5808), + [anon_sym_hide] = ACTIONS(5808), + [anon_sym_func] = ACTIONS(5808), + [anon_sym_BANG] = ACTIONS(5808), + [anon_sym_EQ] = ACTIONS(5808), + [anon_sym_struct] = ACTIONS(5808), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_RPAREN] = ACTIONS(5806), + [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(5806), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_DOLLAR] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5808), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_STAR] = ACTIONS(5808), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_SEMI] = ACTIONS(5806), + [anon_sym_RBRACK] = ACTIONS(5806), + [anon_sym_void] = ACTIONS(5808), + [anon_sym_noreturn] = ACTIONS(5808), + [anon_sym_type] = ACTIONS(5808), + [anon_sym_anyopaque] = ACTIONS(5808), + [anon_sym_bool] = ACTIONS(5808), + [anon_sym_int] = ACTIONS(5808), + [anon_sym_uint] = ACTIONS(5808), + [anon_sym_float] = ACTIONS(5808), + [anon_sym_range] = ACTIONS(5808), + [anon_sym_i8] = ACTIONS(5808), + [anon_sym_i16] = ACTIONS(5808), + [anon_sym_i32] = ACTIONS(5808), + [anon_sym_i64] = ACTIONS(5808), + [anon_sym_u8] = ACTIONS(5808), + [anon_sym_u16] = ACTIONS(5808), + [anon_sym_u32] = ACTIONS(5808), + [anon_sym_u64] = ACTIONS(5808), + [anon_sym_isize] = ACTIONS(5808), + [anon_sym_usize] = ACTIONS(5808), + [anon_sym_f32] = ACTIONS(5808), + [anon_sym_f64] = ACTIONS(5808), + [anon_sym_c_char] = ACTIONS(5808), + [anon_sym_c_schar] = ACTIONS(5808), + [anon_sym_c_uchar] = ACTIONS(5808), + [anon_sym_c_short] = ACTIONS(5808), + [anon_sym_c_ushort] = ACTIONS(5808), + [anon_sym_c_int] = ACTIONS(5808), + [anon_sym_c_uint] = ACTIONS(5808), + [anon_sym_c_long] = ACTIONS(5808), + [anon_sym_c_ulong] = ACTIONS(5808), + [anon_sym_c_longlong] = ACTIONS(5808), + [anon_sym_c_ulonglong] = ACTIONS(5808), + [anon_sym_c_float] = ACTIONS(5808), + [anon_sym_c_double] = ACTIONS(5808), + [anon_sym_c_longdouble] = ACTIONS(5808), + [anon_sym_PLUS_EQ] = ACTIONS(5806), + [anon_sym_DASH_EQ] = ACTIONS(5806), + [anon_sym_STAR_EQ] = ACTIONS(5806), + [anon_sym_SLASH_EQ] = ACTIONS(5806), + [anon_sym_AMP_EQ] = ACTIONS(5806), + [anon_sym_PIPE_EQ] = ACTIONS(5806), + [anon_sym_xor_EQ] = ACTIONS(5806), + [anon_sym_LT_LT_EQ] = ACTIONS(5806), + [anon_sym_GT_GT_EQ] = ACTIONS(5806), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5806), + [anon_sym_return] = ACTIONS(5808), + [anon_sym_yield] = ACTIONS(5808), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym_break] = ACTIONS(5808), + [anon_sym_continue] = ACTIONS(5808), + [anon_sym_defer] = ACTIONS(5808), + [anon_sym_errdefer] = ACTIONS(5808), + [anon_sym_if] = ACTIONS(5808), + [anon_sym_else] = ACTIONS(5808), + [anon_sym_while] = ACTIONS(5808), + [anon_sym_expand] = ACTIONS(5808), + [anon_sym_for] = ACTIONS(5808), + [anon_sym_match] = ACTIONS(5808), + [anon_sym_DOT_DOT] = ACTIONS(5808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5806), + [anon_sym_orelse] = ACTIONS(5808), + [anon_sym_or] = ACTIONS(5808), + [anon_sym_and] = ACTIONS(5808), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5808), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_AMP] = ACTIONS(5808), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_LT_LT] = ACTIONS(5808), + [anon_sym_GT_GT] = ACTIONS(5808), + [anon_sym_LT_LT_PIPE] = ACTIONS(5808), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_SLASH] = ACTIONS(5808), + [anon_sym_catch] = ACTIONS(5808), + [anon_sym_TILDE] = ACTIONS(5806), + [anon_sym_try] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(5808), + [anon_sym_CARET] = ACTIONS(5806), + [anon_sym_true] = ACTIONS(5808), + [anon_sym_false] = ACTIONS(5808), + [anon_sym_null] = ACTIONS(5808), + [anon_sym_unreachable] = ACTIONS(5808), + [anon_sym_undefined] = ACTIONS(5808), + [sym_sink] = ACTIONS(5808), + [sym_integer] = ACTIONS(5808), + [sym_float] = ACTIONS(5806), + [anon_sym_DQUOTE] = ACTIONS(5806), + [sym_multiline_string] = ACTIONS(5806), + [sym_character] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5806), + }, + [STATE(2555)] = { + [ts_builtin_sym_end] = ACTIONS(5698), + [sym_identifier] = ACTIONS(5702), + [anon_sym_import] = ACTIONS(5702), + [anon_sym_test] = ACTIONS(5702), + [anon_sym_hide] = ACTIONS(5702), + [anon_sym_func] = ACTIONS(5702), + [anon_sym_BANG] = ACTIONS(5702), + [anon_sym_EQ] = ACTIONS(5702), + [anon_sym_struct] = ACTIONS(5702), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_RPAREN] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5698), + [anon_sym_COMMA] = ACTIONS(5698), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5702), + [anon_sym_DOLLAR] = ACTIONS(5698), + [anon_sym_PIPE] = ACTIONS(5702), + [anon_sym_QMARK] = ACTIONS(5698), + [anon_sym_STAR] = ACTIONS(5702), + [anon_sym_LBRACK] = ACTIONS(5698), + [anon_sym_SEMI] = ACTIONS(5698), + [anon_sym_RBRACK] = ACTIONS(5698), + [anon_sym_void] = ACTIONS(5702), + [anon_sym_noreturn] = ACTIONS(5702), + [anon_sym_type] = ACTIONS(5702), + [anon_sym_anyopaque] = ACTIONS(5702), + [anon_sym_bool] = ACTIONS(5702), + [anon_sym_int] = ACTIONS(5702), + [anon_sym_uint] = ACTIONS(5702), + [anon_sym_float] = ACTIONS(5702), + [anon_sym_range] = ACTIONS(5702), + [anon_sym_i8] = ACTIONS(5702), + [anon_sym_i16] = ACTIONS(5702), + [anon_sym_i32] = ACTIONS(5702), + [anon_sym_i64] = ACTIONS(5702), + [anon_sym_u8] = ACTIONS(5702), + [anon_sym_u16] = ACTIONS(5702), + [anon_sym_u32] = ACTIONS(5702), + [anon_sym_u64] = ACTIONS(5702), + [anon_sym_isize] = ACTIONS(5702), + [anon_sym_usize] = ACTIONS(5702), + [anon_sym_f32] = ACTIONS(5702), + [anon_sym_f64] = ACTIONS(5702), + [anon_sym_c_char] = ACTIONS(5702), + [anon_sym_c_schar] = ACTIONS(5702), + [anon_sym_c_uchar] = ACTIONS(5702), + [anon_sym_c_short] = ACTIONS(5702), + [anon_sym_c_ushort] = ACTIONS(5702), + [anon_sym_c_int] = ACTIONS(5702), + [anon_sym_c_uint] = ACTIONS(5702), + [anon_sym_c_long] = ACTIONS(5702), + [anon_sym_c_ulong] = ACTIONS(5702), + [anon_sym_c_longlong] = ACTIONS(5702), + [anon_sym_c_ulonglong] = ACTIONS(5702), + [anon_sym_c_float] = ACTIONS(5702), + [anon_sym_c_double] = ACTIONS(5702), + [anon_sym_c_longdouble] = ACTIONS(5702), + [anon_sym_PLUS_EQ] = ACTIONS(5698), + [anon_sym_DASH_EQ] = ACTIONS(5698), + [anon_sym_STAR_EQ] = ACTIONS(5698), + [anon_sym_SLASH_EQ] = ACTIONS(5698), + [anon_sym_AMP_EQ] = ACTIONS(5698), + [anon_sym_PIPE_EQ] = ACTIONS(5698), + [anon_sym_xor_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_EQ] = ACTIONS(5698), + [anon_sym_GT_GT_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5698), + [anon_sym_return] = ACTIONS(5702), + [anon_sym_yield] = ACTIONS(5702), + [anon_sym_COLON] = ACTIONS(5698), + [anon_sym_break] = ACTIONS(5702), + [anon_sym_continue] = ACTIONS(5702), + [anon_sym_defer] = ACTIONS(5702), + [anon_sym_errdefer] = ACTIONS(5702), + [anon_sym_if] = ACTIONS(5702), + [anon_sym_else] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5702), + [anon_sym_expand] = ACTIONS(5702), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_match] = ACTIONS(5702), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5698), + [anon_sym_orelse] = ACTIONS(5702), + [anon_sym_or] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5702), + [anon_sym_EQ_EQ] = ACTIONS(5698), + [anon_sym_BANG_EQ] = ACTIONS(5698), + [anon_sym_LT] = ACTIONS(5702), + [anon_sym_LT_EQ] = ACTIONS(5698), + [anon_sym_GT] = ACTIONS(5702), + [anon_sym_GT_EQ] = ACTIONS(5698), + [anon_sym_AMP] = ACTIONS(5702), + [anon_sym_xor] = ACTIONS(5702), + [anon_sym_LT_LT] = ACTIONS(5702), + [anon_sym_GT_GT] = ACTIONS(5702), + [anon_sym_LT_LT_PIPE] = ACTIONS(5702), + [anon_sym_PLUS] = ACTIONS(5702), + [anon_sym_SLASH] = ACTIONS(5702), + [anon_sym_catch] = ACTIONS(5702), + [anon_sym_TILDE] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5702), + [anon_sym_DOT] = ACTIONS(5702), + [anon_sym_CARET] = ACTIONS(5698), + [anon_sym_true] = ACTIONS(5702), + [anon_sym_false] = ACTIONS(5702), + [anon_sym_null] = ACTIONS(5702), + [anon_sym_unreachable] = ACTIONS(5702), + [anon_sym_undefined] = ACTIONS(5702), + [sym_sink] = ACTIONS(5702), + [sym_integer] = ACTIONS(5702), + [sym_float] = ACTIONS(5698), + [anon_sym_DQUOTE] = ACTIONS(5698), + [sym_multiline_string] = ACTIONS(5698), + [sym_character] = ACTIONS(5698), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5698), + }, + [STATE(2556)] = { + [ts_builtin_sym_end] = ACTIONS(5810), + [sym_identifier] = ACTIONS(5812), + [anon_sym_import] = ACTIONS(5812), + [anon_sym_test] = ACTIONS(5812), + [anon_sym_hide] = ACTIONS(5812), + [anon_sym_func] = ACTIONS(5812), + [anon_sym_BANG] = ACTIONS(5812), + [anon_sym_EQ] = ACTIONS(5812), + [anon_sym_struct] = ACTIONS(5812), + [anon_sym_LPAREN] = ACTIONS(5810), + [anon_sym_RPAREN] = ACTIONS(5810), + [anon_sym_LBRACE] = ACTIONS(5810), + [anon_sym_COMMA] = ACTIONS(5810), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5812), + [anon_sym_DOLLAR] = ACTIONS(5810), + [anon_sym_PIPE] = ACTIONS(5812), + [anon_sym_QMARK] = ACTIONS(5810), + [anon_sym_STAR] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(5810), + [anon_sym_SEMI] = ACTIONS(5810), + [anon_sym_RBRACK] = ACTIONS(5810), + [anon_sym_void] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym_type] = ACTIONS(5812), + [anon_sym_anyopaque] = ACTIONS(5812), + [anon_sym_bool] = ACTIONS(5812), + [anon_sym_int] = ACTIONS(5812), + [anon_sym_uint] = ACTIONS(5812), + [anon_sym_float] = ACTIONS(5812), + [anon_sym_range] = ACTIONS(5812), + [anon_sym_i8] = ACTIONS(5812), + [anon_sym_i16] = ACTIONS(5812), + [anon_sym_i32] = ACTIONS(5812), + [anon_sym_i64] = ACTIONS(5812), + [anon_sym_u8] = ACTIONS(5812), + [anon_sym_u16] = ACTIONS(5812), + [anon_sym_u32] = ACTIONS(5812), + [anon_sym_u64] = ACTIONS(5812), + [anon_sym_isize] = ACTIONS(5812), + [anon_sym_usize] = ACTIONS(5812), + [anon_sym_f32] = ACTIONS(5812), + [anon_sym_f64] = ACTIONS(5812), + [anon_sym_c_char] = ACTIONS(5812), + [anon_sym_c_schar] = ACTIONS(5812), + [anon_sym_c_uchar] = ACTIONS(5812), + [anon_sym_c_short] = ACTIONS(5812), + [anon_sym_c_ushort] = ACTIONS(5812), + [anon_sym_c_int] = ACTIONS(5812), + [anon_sym_c_uint] = ACTIONS(5812), + [anon_sym_c_long] = ACTIONS(5812), + [anon_sym_c_ulong] = ACTIONS(5812), + [anon_sym_c_longlong] = ACTIONS(5812), + [anon_sym_c_ulonglong] = ACTIONS(5812), + [anon_sym_c_float] = ACTIONS(5812), + [anon_sym_c_double] = ACTIONS(5812), + [anon_sym_c_longdouble] = ACTIONS(5812), + [anon_sym_PLUS_EQ] = ACTIONS(5810), + [anon_sym_DASH_EQ] = ACTIONS(5810), + [anon_sym_STAR_EQ] = ACTIONS(5810), + [anon_sym_SLASH_EQ] = ACTIONS(5810), + [anon_sym_AMP_EQ] = ACTIONS(5810), + [anon_sym_PIPE_EQ] = ACTIONS(5810), + [anon_sym_xor_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_EQ] = ACTIONS(5810), + [anon_sym_GT_GT_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5810), + [anon_sym_return] = ACTIONS(5812), + [anon_sym_yield] = ACTIONS(5812), + [anon_sym_COLON] = ACTIONS(5810), + [anon_sym_break] = ACTIONS(5812), + [anon_sym_continue] = ACTIONS(5812), + [anon_sym_defer] = ACTIONS(5812), + [anon_sym_errdefer] = ACTIONS(5812), + [anon_sym_if] = ACTIONS(5812), + [anon_sym_else] = ACTIONS(5812), + [anon_sym_while] = ACTIONS(5812), + [anon_sym_expand] = ACTIONS(5812), + [anon_sym_for] = ACTIONS(5812), + [anon_sym_match] = ACTIONS(5812), + [anon_sym_DOT_DOT] = ACTIONS(5812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5810), + [anon_sym_orelse] = ACTIONS(5812), + [anon_sym_or] = ACTIONS(5812), + [anon_sym_and] = ACTIONS(5812), + [anon_sym_EQ_EQ] = ACTIONS(5810), + [anon_sym_BANG_EQ] = ACTIONS(5810), + [anon_sym_LT] = ACTIONS(5812), + [anon_sym_LT_EQ] = ACTIONS(5810), + [anon_sym_GT] = ACTIONS(5812), + [anon_sym_GT_EQ] = ACTIONS(5810), + [anon_sym_AMP] = ACTIONS(5812), + [anon_sym_xor] = ACTIONS(5812), + [anon_sym_LT_LT] = ACTIONS(5812), + [anon_sym_GT_GT] = ACTIONS(5812), + [anon_sym_LT_LT_PIPE] = ACTIONS(5812), + [anon_sym_PLUS] = ACTIONS(5812), + [anon_sym_SLASH] = ACTIONS(5812), + [anon_sym_catch] = ACTIONS(5812), + [anon_sym_TILDE] = ACTIONS(5810), + [anon_sym_try] = ACTIONS(5812), + [anon_sym_DOT] = ACTIONS(5812), + [anon_sym_CARET] = ACTIONS(5810), + [anon_sym_true] = ACTIONS(5812), + [anon_sym_false] = ACTIONS(5812), + [anon_sym_null] = ACTIONS(5812), + [anon_sym_unreachable] = ACTIONS(5812), + [anon_sym_undefined] = ACTIONS(5812), + [sym_sink] = ACTIONS(5812), + [sym_integer] = ACTIONS(5812), + [sym_float] = ACTIONS(5810), + [anon_sym_DQUOTE] = ACTIONS(5810), + [sym_multiline_string] = ACTIONS(5810), + [sym_character] = ACTIONS(5810), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5810), + }, + [STATE(2557)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2560), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5814), + }, + [STATE(2558)] = { + [ts_builtin_sym_end] = ACTIONS(5816), + [sym_identifier] = ACTIONS(5818), + [anon_sym_import] = ACTIONS(5818), + [anon_sym_test] = ACTIONS(5818), + [anon_sym_hide] = ACTIONS(5818), + [anon_sym_func] = ACTIONS(5818), + [anon_sym_BANG] = ACTIONS(5818), + [anon_sym_EQ] = ACTIONS(5818), + [anon_sym_struct] = ACTIONS(5818), + [anon_sym_LPAREN] = ACTIONS(5816), + [anon_sym_RPAREN] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5816), + [anon_sym_COMMA] = ACTIONS(5816), + [anon_sym_RBRACE] = ACTIONS(5816), + [anon_sym_DASH] = ACTIONS(5818), + [anon_sym_DOLLAR] = ACTIONS(5816), + [anon_sym_PIPE] = ACTIONS(5818), + [anon_sym_QMARK] = ACTIONS(5816), + [anon_sym_STAR] = ACTIONS(5818), + [anon_sym_LBRACK] = ACTIONS(5816), + [anon_sym_SEMI] = ACTIONS(5816), + [anon_sym_RBRACK] = ACTIONS(5816), + [anon_sym_void] = ACTIONS(5818), + [anon_sym_noreturn] = ACTIONS(5818), + [anon_sym_type] = ACTIONS(5818), + [anon_sym_anyopaque] = ACTIONS(5818), + [anon_sym_bool] = ACTIONS(5818), + [anon_sym_int] = ACTIONS(5818), + [anon_sym_uint] = ACTIONS(5818), + [anon_sym_float] = ACTIONS(5818), + [anon_sym_range] = ACTIONS(5818), + [anon_sym_i8] = ACTIONS(5818), + [anon_sym_i16] = ACTIONS(5818), + [anon_sym_i32] = ACTIONS(5818), + [anon_sym_i64] = ACTIONS(5818), + [anon_sym_u8] = ACTIONS(5818), + [anon_sym_u16] = ACTIONS(5818), + [anon_sym_u32] = ACTIONS(5818), + [anon_sym_u64] = ACTIONS(5818), + [anon_sym_isize] = ACTIONS(5818), + [anon_sym_usize] = ACTIONS(5818), + [anon_sym_f32] = ACTIONS(5818), + [anon_sym_f64] = ACTIONS(5818), + [anon_sym_c_char] = ACTIONS(5818), + [anon_sym_c_schar] = ACTIONS(5818), + [anon_sym_c_uchar] = ACTIONS(5818), + [anon_sym_c_short] = ACTIONS(5818), + [anon_sym_c_ushort] = ACTIONS(5818), + [anon_sym_c_int] = ACTIONS(5818), + [anon_sym_c_uint] = ACTIONS(5818), + [anon_sym_c_long] = ACTIONS(5818), + [anon_sym_c_ulong] = ACTIONS(5818), + [anon_sym_c_longlong] = ACTIONS(5818), + [anon_sym_c_ulonglong] = ACTIONS(5818), + [anon_sym_c_float] = ACTIONS(5818), + [anon_sym_c_double] = ACTIONS(5818), + [anon_sym_c_longdouble] = ACTIONS(5818), + [anon_sym_PLUS_EQ] = ACTIONS(5816), + [anon_sym_DASH_EQ] = ACTIONS(5816), + [anon_sym_STAR_EQ] = ACTIONS(5816), + [anon_sym_SLASH_EQ] = ACTIONS(5816), + [anon_sym_AMP_EQ] = ACTIONS(5816), + [anon_sym_PIPE_EQ] = ACTIONS(5816), + [anon_sym_xor_EQ] = ACTIONS(5816), + [anon_sym_LT_LT_EQ] = ACTIONS(5816), + [anon_sym_GT_GT_EQ] = ACTIONS(5816), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5816), + [anon_sym_return] = ACTIONS(5818), + [anon_sym_yield] = ACTIONS(5818), + [anon_sym_COLON] = ACTIONS(5816), + [anon_sym_break] = ACTIONS(5818), + [anon_sym_continue] = ACTIONS(5818), + [anon_sym_defer] = ACTIONS(5818), + [anon_sym_errdefer] = ACTIONS(5818), + [anon_sym_if] = ACTIONS(5818), + [anon_sym_else] = ACTIONS(5818), + [anon_sym_while] = ACTIONS(5818), + [anon_sym_expand] = ACTIONS(5818), + [anon_sym_for] = ACTIONS(5818), + [anon_sym_match] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5816), + [anon_sym_orelse] = ACTIONS(5818), + [anon_sym_or] = ACTIONS(5818), + [anon_sym_and] = ACTIONS(5818), + [anon_sym_EQ_EQ] = ACTIONS(5816), + [anon_sym_BANG_EQ] = ACTIONS(5816), + [anon_sym_LT] = ACTIONS(5818), + [anon_sym_LT_EQ] = ACTIONS(5816), + [anon_sym_GT] = ACTIONS(5818), + [anon_sym_GT_EQ] = ACTIONS(5816), + [anon_sym_AMP] = ACTIONS(5818), + [anon_sym_xor] = ACTIONS(5818), + [anon_sym_LT_LT] = ACTIONS(5818), + [anon_sym_GT_GT] = ACTIONS(5818), + [anon_sym_LT_LT_PIPE] = ACTIONS(5818), + [anon_sym_PLUS] = ACTIONS(5818), + [anon_sym_SLASH] = ACTIONS(5818), + [anon_sym_catch] = ACTIONS(5818), + [anon_sym_TILDE] = ACTIONS(5816), + [anon_sym_try] = ACTIONS(5818), + [anon_sym_DOT] = ACTIONS(5818), + [anon_sym_CARET] = ACTIONS(5816), + [anon_sym_true] = ACTIONS(5818), + [anon_sym_false] = ACTIONS(5818), + [anon_sym_null] = ACTIONS(5818), + [anon_sym_unreachable] = ACTIONS(5818), + [anon_sym_undefined] = ACTIONS(5818), + [sym_sink] = ACTIONS(5818), + [sym_integer] = ACTIONS(5818), + [sym_float] = ACTIONS(5816), + [anon_sym_DQUOTE] = ACTIONS(5816), + [sym_multiline_string] = ACTIONS(5816), + [sym_character] = ACTIONS(5816), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5816), + }, + [STATE(2559)] = { + [ts_builtin_sym_end] = ACTIONS(5820), + [sym_identifier] = ACTIONS(5822), + [anon_sym_import] = ACTIONS(5822), + [anon_sym_test] = ACTIONS(5822), + [anon_sym_hide] = ACTIONS(5822), + [anon_sym_func] = ACTIONS(5822), + [anon_sym_BANG] = ACTIONS(5822), + [anon_sym_EQ] = ACTIONS(5822), + [anon_sym_struct] = ACTIONS(5822), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_RPAREN] = ACTIONS(5820), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(5820), + [anon_sym_DASH] = ACTIONS(5822), + [anon_sym_DOLLAR] = ACTIONS(5820), + [anon_sym_PIPE] = ACTIONS(5822), + [anon_sym_QMARK] = ACTIONS(5820), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_LBRACK] = ACTIONS(5820), + [anon_sym_SEMI] = ACTIONS(5820), + [anon_sym_RBRACK] = ACTIONS(5820), + [anon_sym_void] = ACTIONS(5822), + [anon_sym_noreturn] = ACTIONS(5822), + [anon_sym_type] = ACTIONS(5822), + [anon_sym_anyopaque] = ACTIONS(5822), + [anon_sym_bool] = ACTIONS(5822), + [anon_sym_int] = ACTIONS(5822), + [anon_sym_uint] = ACTIONS(5822), + [anon_sym_float] = ACTIONS(5822), + [anon_sym_range] = ACTIONS(5822), + [anon_sym_i8] = ACTIONS(5822), + [anon_sym_i16] = ACTIONS(5822), + [anon_sym_i32] = ACTIONS(5822), + [anon_sym_i64] = ACTIONS(5822), + [anon_sym_u8] = ACTIONS(5822), + [anon_sym_u16] = ACTIONS(5822), + [anon_sym_u32] = ACTIONS(5822), + [anon_sym_u64] = ACTIONS(5822), + [anon_sym_isize] = ACTIONS(5822), + [anon_sym_usize] = ACTIONS(5822), + [anon_sym_f32] = ACTIONS(5822), + [anon_sym_f64] = ACTIONS(5822), + [anon_sym_c_char] = ACTIONS(5822), + [anon_sym_c_schar] = ACTIONS(5822), + [anon_sym_c_uchar] = ACTIONS(5822), + [anon_sym_c_short] = ACTIONS(5822), + [anon_sym_c_ushort] = ACTIONS(5822), + [anon_sym_c_int] = ACTIONS(5822), + [anon_sym_c_uint] = ACTIONS(5822), + [anon_sym_c_long] = ACTIONS(5822), + [anon_sym_c_ulong] = ACTIONS(5822), + [anon_sym_c_longlong] = ACTIONS(5822), + [anon_sym_c_ulonglong] = ACTIONS(5822), + [anon_sym_c_float] = ACTIONS(5822), + [anon_sym_c_double] = ACTIONS(5822), + [anon_sym_c_longdouble] = ACTIONS(5822), + [anon_sym_PLUS_EQ] = ACTIONS(5820), + [anon_sym_DASH_EQ] = ACTIONS(5820), + [anon_sym_STAR_EQ] = ACTIONS(5820), + [anon_sym_SLASH_EQ] = ACTIONS(5820), + [anon_sym_AMP_EQ] = ACTIONS(5820), + [anon_sym_PIPE_EQ] = ACTIONS(5820), + [anon_sym_xor_EQ] = ACTIONS(5820), + [anon_sym_LT_LT_EQ] = ACTIONS(5820), + [anon_sym_GT_GT_EQ] = ACTIONS(5820), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5820), + [anon_sym_return] = ACTIONS(5822), + [anon_sym_yield] = ACTIONS(5822), + [anon_sym_COLON] = ACTIONS(5820), + [anon_sym_break] = ACTIONS(5822), + [anon_sym_continue] = ACTIONS(5822), + [anon_sym_defer] = ACTIONS(5822), + [anon_sym_errdefer] = ACTIONS(5822), + [anon_sym_if] = ACTIONS(5822), + [anon_sym_else] = ACTIONS(5822), + [anon_sym_while] = ACTIONS(5822), + [anon_sym_expand] = ACTIONS(5822), + [anon_sym_for] = ACTIONS(5822), + [anon_sym_match] = ACTIONS(5822), + [anon_sym_DOT_DOT] = ACTIONS(5822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5820), + [anon_sym_orelse] = ACTIONS(5822), + [anon_sym_or] = ACTIONS(5822), + [anon_sym_and] = ACTIONS(5822), + [anon_sym_EQ_EQ] = ACTIONS(5820), + [anon_sym_BANG_EQ] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5822), + [anon_sym_LT_EQ] = ACTIONS(5820), + [anon_sym_GT] = ACTIONS(5822), + [anon_sym_GT_EQ] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5822), + [anon_sym_xor] = ACTIONS(5822), + [anon_sym_LT_LT] = ACTIONS(5822), + [anon_sym_GT_GT] = ACTIONS(5822), + [anon_sym_LT_LT_PIPE] = ACTIONS(5822), + [anon_sym_PLUS] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_catch] = ACTIONS(5822), + [anon_sym_TILDE] = ACTIONS(5820), + [anon_sym_try] = ACTIONS(5822), + [anon_sym_DOT] = ACTIONS(5822), + [anon_sym_CARET] = ACTIONS(5820), + [anon_sym_true] = ACTIONS(5822), + [anon_sym_false] = ACTIONS(5822), + [anon_sym_null] = ACTIONS(5822), + [anon_sym_unreachable] = ACTIONS(5822), + [anon_sym_undefined] = ACTIONS(5822), + [sym_sink] = ACTIONS(5822), + [sym_integer] = ACTIONS(5822), + [sym_float] = ACTIONS(5820), + [anon_sym_DQUOTE] = ACTIONS(5820), + [sym_multiline_string] = ACTIONS(5820), + [sym_character] = ACTIONS(5820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5820), + }, + [STATE(2560)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2561)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2566), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5824), + }, + [STATE(2562)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2563)] = { + [ts_builtin_sym_end] = ACTIONS(4738), + [sym_identifier] = ACTIONS(4734), + [anon_sym_import] = ACTIONS(4734), + [anon_sym_test] = ACTIONS(4734), + [anon_sym_hide] = ACTIONS(4734), + [anon_sym_func] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4738), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_RBRACK] = ACTIONS(4738), + [anon_sym_void] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_type] = ACTIONS(4734), + [anon_sym_anyopaque] = ACTIONS(4734), + [anon_sym_bool] = ACTIONS(4734), + [anon_sym_int] = ACTIONS(4734), + [anon_sym_uint] = ACTIONS(4734), + [anon_sym_float] = ACTIONS(4734), + [anon_sym_range] = ACTIONS(4734), + [anon_sym_i8] = ACTIONS(4734), + [anon_sym_i16] = ACTIONS(4734), + [anon_sym_i32] = ACTIONS(4734), + [anon_sym_i64] = ACTIONS(4734), + [anon_sym_u8] = ACTIONS(4734), + [anon_sym_u16] = ACTIONS(4734), + [anon_sym_u32] = ACTIONS(4734), + [anon_sym_u64] = ACTIONS(4734), + [anon_sym_isize] = ACTIONS(4734), + [anon_sym_usize] = ACTIONS(4734), + [anon_sym_f32] = ACTIONS(4734), + [anon_sym_f64] = ACTIONS(4734), + [anon_sym_c_char] = ACTIONS(4734), + [anon_sym_c_schar] = ACTIONS(4734), + [anon_sym_c_uchar] = ACTIONS(4734), + [anon_sym_c_short] = ACTIONS(4734), + [anon_sym_c_ushort] = ACTIONS(4734), + [anon_sym_c_int] = ACTIONS(4734), + [anon_sym_c_uint] = ACTIONS(4734), + [anon_sym_c_long] = ACTIONS(4734), + [anon_sym_c_ulong] = ACTIONS(4734), + [anon_sym_c_longlong] = ACTIONS(4734), + [anon_sym_c_ulonglong] = ACTIONS(4734), + [anon_sym_c_float] = ACTIONS(4734), + [anon_sym_c_double] = ACTIONS(4734), + [anon_sym_c_longdouble] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_AMP_EQ] = ACTIONS(4738), + [anon_sym_PIPE_EQ] = ACTIONS(4738), + [anon_sym_xor_EQ] = ACTIONS(4738), + [anon_sym_LT_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_GT_EQ] = ACTIONS(4738), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4738), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_COLON] = ACTIONS(4738), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_defer] = ACTIONS(4734), + [anon_sym_errdefer] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_expand] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4738), + [anon_sym_orelse] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4734), + [anon_sym_xor] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_LT_LT_PIPE] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_catch] = ACTIONS(4734), + [anon_sym_TILDE] = ACTIONS(4738), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_unreachable] = ACTIONS(4734), + [anon_sym_undefined] = ACTIONS(4734), + [sym_sink] = ACTIONS(4734), + [sym_integer] = ACTIONS(4734), + [sym_float] = ACTIONS(4738), + [anon_sym_DQUOTE] = ACTIONS(4738), + [sym_multiline_string] = ACTIONS(4738), + [sym_character] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4738), + }, + [STATE(2564)] = { + [ts_builtin_sym_end] = ACTIONS(5826), + [sym_identifier] = ACTIONS(5828), + [anon_sym_import] = ACTIONS(5828), + [anon_sym_test] = ACTIONS(5828), + [anon_sym_hide] = ACTIONS(5828), + [anon_sym_func] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(5828), + [anon_sym_struct] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_RPAREN] = ACTIONS(5826), + [anon_sym_LBRACE] = ACTIONS(5826), + [anon_sym_COMMA] = ACTIONS(5826), + [anon_sym_RBRACE] = ACTIONS(5826), + [anon_sym_DASH] = ACTIONS(5828), + [anon_sym_DOLLAR] = ACTIONS(5826), + [anon_sym_PIPE] = ACTIONS(5828), + [anon_sym_QMARK] = ACTIONS(5826), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(5826), + [anon_sym_SEMI] = ACTIONS(5826), + [anon_sym_RBRACK] = ACTIONS(5826), + [anon_sym_void] = ACTIONS(5828), + [anon_sym_noreturn] = ACTIONS(5828), + [anon_sym_type] = ACTIONS(5828), + [anon_sym_anyopaque] = ACTIONS(5828), + [anon_sym_bool] = ACTIONS(5828), + [anon_sym_int] = ACTIONS(5828), + [anon_sym_uint] = ACTIONS(5828), + [anon_sym_float] = ACTIONS(5828), + [anon_sym_range] = ACTIONS(5828), + [anon_sym_i8] = ACTIONS(5828), + [anon_sym_i16] = ACTIONS(5828), + [anon_sym_i32] = ACTIONS(5828), + [anon_sym_i64] = ACTIONS(5828), + [anon_sym_u8] = ACTIONS(5828), + [anon_sym_u16] = ACTIONS(5828), + [anon_sym_u32] = ACTIONS(5828), + [anon_sym_u64] = ACTIONS(5828), + [anon_sym_isize] = ACTIONS(5828), + [anon_sym_usize] = ACTIONS(5828), + [anon_sym_f32] = ACTIONS(5828), + [anon_sym_f64] = ACTIONS(5828), + [anon_sym_c_char] = ACTIONS(5828), + [anon_sym_c_schar] = ACTIONS(5828), + [anon_sym_c_uchar] = ACTIONS(5828), + [anon_sym_c_short] = ACTIONS(5828), + [anon_sym_c_ushort] = ACTIONS(5828), + [anon_sym_c_int] = ACTIONS(5828), + [anon_sym_c_uint] = ACTIONS(5828), + [anon_sym_c_long] = ACTIONS(5828), + [anon_sym_c_ulong] = ACTIONS(5828), + [anon_sym_c_longlong] = ACTIONS(5828), + [anon_sym_c_ulonglong] = ACTIONS(5828), + [anon_sym_c_float] = ACTIONS(5828), + [anon_sym_c_double] = ACTIONS(5828), + [anon_sym_c_longdouble] = ACTIONS(5828), + [anon_sym_PLUS_EQ] = ACTIONS(5826), + [anon_sym_DASH_EQ] = ACTIONS(5826), + [anon_sym_STAR_EQ] = ACTIONS(5826), + [anon_sym_SLASH_EQ] = ACTIONS(5826), + [anon_sym_AMP_EQ] = ACTIONS(5826), + [anon_sym_PIPE_EQ] = ACTIONS(5826), + [anon_sym_xor_EQ] = ACTIONS(5826), + [anon_sym_LT_LT_EQ] = ACTIONS(5826), + [anon_sym_GT_GT_EQ] = ACTIONS(5826), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5826), + [anon_sym_return] = ACTIONS(5828), + [anon_sym_yield] = ACTIONS(5828), + [anon_sym_COLON] = ACTIONS(5826), + [anon_sym_break] = ACTIONS(5828), + [anon_sym_continue] = ACTIONS(5828), + [anon_sym_defer] = ACTIONS(5828), + [anon_sym_errdefer] = ACTIONS(5828), + [anon_sym_if] = ACTIONS(5828), + [anon_sym_else] = ACTIONS(5828), + [anon_sym_while] = ACTIONS(5828), + [anon_sym_expand] = ACTIONS(5828), + [anon_sym_for] = ACTIONS(5828), + [anon_sym_match] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5826), + [anon_sym_orelse] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_EQ_EQ] = ACTIONS(5826), + [anon_sym_BANG_EQ] = ACTIONS(5826), + [anon_sym_LT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5826), + [anon_sym_GT] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5828), + [anon_sym_xor] = ACTIONS(5828), + [anon_sym_LT_LT] = ACTIONS(5828), + [anon_sym_GT_GT] = ACTIONS(5828), + [anon_sym_LT_LT_PIPE] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5828), + [anon_sym_SLASH] = ACTIONS(5828), + [anon_sym_catch] = ACTIONS(5828), + [anon_sym_TILDE] = ACTIONS(5826), + [anon_sym_try] = ACTIONS(5828), + [anon_sym_DOT] = ACTIONS(5828), + [anon_sym_CARET] = ACTIONS(5826), + [anon_sym_true] = ACTIONS(5828), + [anon_sym_false] = ACTIONS(5828), + [anon_sym_null] = ACTIONS(5828), + [anon_sym_unreachable] = ACTIONS(5828), + [anon_sym_undefined] = ACTIONS(5828), + [sym_sink] = ACTIONS(5828), + [sym_integer] = ACTIONS(5828), + [sym_float] = ACTIONS(5826), + [anon_sym_DQUOTE] = ACTIONS(5826), + [sym_multiline_string] = ACTIONS(5826), + [sym_character] = ACTIONS(5826), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5826), + }, + [STATE(2565)] = { + [ts_builtin_sym_end] = ACTIONS(5830), + [sym_identifier] = ACTIONS(5832), + [anon_sym_import] = ACTIONS(5832), + [anon_sym_test] = ACTIONS(5832), + [anon_sym_hide] = ACTIONS(5832), + [anon_sym_func] = ACTIONS(5832), + [anon_sym_BANG] = ACTIONS(5832), + [anon_sym_EQ] = ACTIONS(5832), + [anon_sym_struct] = ACTIONS(5832), + [anon_sym_LPAREN] = ACTIONS(5830), + [anon_sym_RPAREN] = ACTIONS(5830), + [anon_sym_LBRACE] = ACTIONS(5830), + [anon_sym_COMMA] = ACTIONS(5830), + [anon_sym_RBRACE] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5832), + [anon_sym_DOLLAR] = ACTIONS(5830), + [anon_sym_PIPE] = ACTIONS(5832), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_STAR] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(5830), + [anon_sym_SEMI] = ACTIONS(5830), + [anon_sym_RBRACK] = ACTIONS(5830), + [anon_sym_void] = ACTIONS(5832), + [anon_sym_noreturn] = ACTIONS(5832), + [anon_sym_type] = ACTIONS(5832), + [anon_sym_anyopaque] = ACTIONS(5832), + [anon_sym_bool] = ACTIONS(5832), + [anon_sym_int] = ACTIONS(5832), + [anon_sym_uint] = ACTIONS(5832), + [anon_sym_float] = ACTIONS(5832), + [anon_sym_range] = ACTIONS(5832), + [anon_sym_i8] = ACTIONS(5832), + [anon_sym_i16] = ACTIONS(5832), + [anon_sym_i32] = ACTIONS(5832), + [anon_sym_i64] = ACTIONS(5832), + [anon_sym_u8] = ACTIONS(5832), + [anon_sym_u16] = ACTIONS(5832), + [anon_sym_u32] = ACTIONS(5832), + [anon_sym_u64] = ACTIONS(5832), + [anon_sym_isize] = ACTIONS(5832), + [anon_sym_usize] = ACTIONS(5832), + [anon_sym_f32] = ACTIONS(5832), + [anon_sym_f64] = ACTIONS(5832), + [anon_sym_c_char] = ACTIONS(5832), + [anon_sym_c_schar] = ACTIONS(5832), + [anon_sym_c_uchar] = ACTIONS(5832), + [anon_sym_c_short] = ACTIONS(5832), + [anon_sym_c_ushort] = ACTIONS(5832), + [anon_sym_c_int] = ACTIONS(5832), + [anon_sym_c_uint] = ACTIONS(5832), + [anon_sym_c_long] = ACTIONS(5832), + [anon_sym_c_ulong] = ACTIONS(5832), + [anon_sym_c_longlong] = ACTIONS(5832), + [anon_sym_c_ulonglong] = ACTIONS(5832), + [anon_sym_c_float] = ACTIONS(5832), + [anon_sym_c_double] = ACTIONS(5832), + [anon_sym_c_longdouble] = ACTIONS(5832), + [anon_sym_PLUS_EQ] = ACTIONS(5830), + [anon_sym_DASH_EQ] = ACTIONS(5830), + [anon_sym_STAR_EQ] = ACTIONS(5830), + [anon_sym_SLASH_EQ] = ACTIONS(5830), + [anon_sym_AMP_EQ] = ACTIONS(5830), + [anon_sym_PIPE_EQ] = ACTIONS(5830), + [anon_sym_xor_EQ] = ACTIONS(5830), + [anon_sym_LT_LT_EQ] = ACTIONS(5830), + [anon_sym_GT_GT_EQ] = ACTIONS(5830), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5830), + [anon_sym_return] = ACTIONS(5832), + [anon_sym_yield] = ACTIONS(5832), + [anon_sym_COLON] = ACTIONS(5830), + [anon_sym_break] = ACTIONS(5832), + [anon_sym_continue] = ACTIONS(5832), + [anon_sym_defer] = ACTIONS(5832), + [anon_sym_errdefer] = ACTIONS(5832), + [anon_sym_if] = ACTIONS(5832), + [anon_sym_else] = ACTIONS(5832), + [anon_sym_while] = ACTIONS(5832), + [anon_sym_expand] = ACTIONS(5832), + [anon_sym_for] = ACTIONS(5832), + [anon_sym_match] = ACTIONS(5832), + [anon_sym_DOT_DOT] = ACTIONS(5832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5830), + [anon_sym_orelse] = ACTIONS(5832), + [anon_sym_or] = ACTIONS(5832), + [anon_sym_and] = ACTIONS(5832), + [anon_sym_EQ_EQ] = ACTIONS(5830), + [anon_sym_BANG_EQ] = ACTIONS(5830), + [anon_sym_LT] = ACTIONS(5832), + [anon_sym_LT_EQ] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5832), + [anon_sym_xor] = ACTIONS(5832), + [anon_sym_LT_LT] = ACTIONS(5832), + [anon_sym_GT_GT] = ACTIONS(5832), + [anon_sym_LT_LT_PIPE] = ACTIONS(5832), + [anon_sym_PLUS] = ACTIONS(5832), + [anon_sym_SLASH] = ACTIONS(5832), + [anon_sym_catch] = ACTIONS(5832), + [anon_sym_TILDE] = ACTIONS(5830), + [anon_sym_try] = ACTIONS(5832), + [anon_sym_DOT] = ACTIONS(5832), + [anon_sym_CARET] = ACTIONS(5830), + [anon_sym_true] = ACTIONS(5832), + [anon_sym_false] = ACTIONS(5832), + [anon_sym_null] = ACTIONS(5832), + [anon_sym_unreachable] = ACTIONS(5832), + [anon_sym_undefined] = ACTIONS(5832), + [sym_sink] = ACTIONS(5832), + [sym_integer] = ACTIONS(5832), + [sym_float] = ACTIONS(5830), + [anon_sym_DQUOTE] = ACTIONS(5830), + [sym_multiline_string] = ACTIONS(5830), + [sym_character] = ACTIONS(5830), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5830), + }, + [STATE(2566)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2567)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2574), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5834), + }, + [STATE(2568)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2647), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5836), + }, + [STATE(2569)] = { + [ts_builtin_sym_end] = ACTIONS(5704), + [sym_identifier] = ACTIONS(5700), + [anon_sym_import] = ACTIONS(5700), + [anon_sym_test] = ACTIONS(5700), + [anon_sym_hide] = ACTIONS(5700), + [anon_sym_func] = ACTIONS(5700), + [anon_sym_BANG] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(5700), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_LPAREN] = ACTIONS(5704), + [anon_sym_RPAREN] = ACTIONS(5704), + [anon_sym_LBRACE] = ACTIONS(5704), + [anon_sym_COMMA] = ACTIONS(5704), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_DASH] = ACTIONS(5700), + [anon_sym_DOLLAR] = ACTIONS(5704), + [anon_sym_PIPE] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5704), + [anon_sym_STAR] = ACTIONS(5700), + [anon_sym_LBRACK] = ACTIONS(5704), + [anon_sym_SEMI] = ACTIONS(5704), + [anon_sym_RBRACK] = ACTIONS(5704), + [anon_sym_void] = ACTIONS(5700), + [anon_sym_noreturn] = ACTIONS(5700), + [anon_sym_type] = ACTIONS(5700), + [anon_sym_anyopaque] = ACTIONS(5700), + [anon_sym_bool] = ACTIONS(5700), + [anon_sym_int] = ACTIONS(5700), + [anon_sym_uint] = ACTIONS(5700), + [anon_sym_float] = ACTIONS(5700), + [anon_sym_range] = ACTIONS(5700), + [anon_sym_i8] = ACTIONS(5700), + [anon_sym_i16] = ACTIONS(5700), + [anon_sym_i32] = ACTIONS(5700), + [anon_sym_i64] = ACTIONS(5700), + [anon_sym_u8] = ACTIONS(5700), + [anon_sym_u16] = ACTIONS(5700), + [anon_sym_u32] = ACTIONS(5700), + [anon_sym_u64] = ACTIONS(5700), + [anon_sym_isize] = ACTIONS(5700), + [anon_sym_usize] = ACTIONS(5700), + [anon_sym_f32] = ACTIONS(5700), + [anon_sym_f64] = ACTIONS(5700), + [anon_sym_c_char] = ACTIONS(5700), + [anon_sym_c_schar] = ACTIONS(5700), + [anon_sym_c_uchar] = ACTIONS(5700), + [anon_sym_c_short] = ACTIONS(5700), + [anon_sym_c_ushort] = ACTIONS(5700), + [anon_sym_c_int] = ACTIONS(5700), + [anon_sym_c_uint] = ACTIONS(5700), + [anon_sym_c_long] = ACTIONS(5700), + [anon_sym_c_ulong] = ACTIONS(5700), + [anon_sym_c_longlong] = ACTIONS(5700), + [anon_sym_c_ulonglong] = ACTIONS(5700), + [anon_sym_c_float] = ACTIONS(5700), + [anon_sym_c_double] = ACTIONS(5700), + [anon_sym_c_longdouble] = ACTIONS(5700), + [anon_sym_PLUS_EQ] = ACTIONS(5704), + [anon_sym_DASH_EQ] = ACTIONS(5704), + [anon_sym_STAR_EQ] = ACTIONS(5704), + [anon_sym_SLASH_EQ] = ACTIONS(5704), + [anon_sym_AMP_EQ] = ACTIONS(5704), + [anon_sym_PIPE_EQ] = ACTIONS(5704), + [anon_sym_xor_EQ] = ACTIONS(5704), + [anon_sym_LT_LT_EQ] = ACTIONS(5704), + [anon_sym_GT_GT_EQ] = ACTIONS(5704), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5704), + [anon_sym_return] = ACTIONS(5700), + [anon_sym_yield] = ACTIONS(5700), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_break] = ACTIONS(5700), + [anon_sym_continue] = ACTIONS(5700), + [anon_sym_defer] = ACTIONS(5700), + [anon_sym_errdefer] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5700), + [anon_sym_else] = ACTIONS(5700), + [anon_sym_while] = ACTIONS(5700), + [anon_sym_expand] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5700), + [anon_sym_match] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5704), + [anon_sym_orelse] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5700), + [anon_sym_and] = ACTIONS(5700), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5704), + [anon_sym_GT] = ACTIONS(5700), + [anon_sym_GT_EQ] = ACTIONS(5704), + [anon_sym_AMP] = ACTIONS(5700), + [anon_sym_xor] = ACTIONS(5700), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5700), + [anon_sym_LT_LT_PIPE] = ACTIONS(5700), + [anon_sym_PLUS] = ACTIONS(5700), + [anon_sym_SLASH] = ACTIONS(5700), + [anon_sym_catch] = ACTIONS(5700), + [anon_sym_TILDE] = ACTIONS(5704), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5700), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_true] = ACTIONS(5700), + [anon_sym_false] = ACTIONS(5700), + [anon_sym_null] = ACTIONS(5700), + [anon_sym_unreachable] = ACTIONS(5700), + [anon_sym_undefined] = ACTIONS(5700), + [sym_sink] = ACTIONS(5700), + [sym_integer] = ACTIONS(5700), + [sym_float] = ACTIONS(5704), + [anon_sym_DQUOTE] = ACTIONS(5704), + [sym_multiline_string] = ACTIONS(5704), + [sym_character] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5704), + }, + [STATE(2570)] = { + [ts_builtin_sym_end] = ACTIONS(5838), + [sym_identifier] = ACTIONS(5840), + [anon_sym_import] = ACTIONS(5840), + [anon_sym_test] = ACTIONS(5840), + [anon_sym_hide] = ACTIONS(5840), + [anon_sym_func] = ACTIONS(5840), + [anon_sym_BANG] = ACTIONS(5840), + [anon_sym_EQ] = ACTIONS(5840), + [anon_sym_struct] = ACTIONS(5840), + [anon_sym_LPAREN] = ACTIONS(5838), + [anon_sym_RPAREN] = ACTIONS(5838), + [anon_sym_LBRACE] = ACTIONS(5838), + [anon_sym_COMMA] = ACTIONS(5838), + [anon_sym_RBRACE] = ACTIONS(5838), + [anon_sym_DASH] = ACTIONS(5840), + [anon_sym_DOLLAR] = ACTIONS(5838), + [anon_sym_PIPE] = ACTIONS(5840), + [anon_sym_QMARK] = ACTIONS(5838), + [anon_sym_STAR] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(5838), + [anon_sym_SEMI] = ACTIONS(5838), + [anon_sym_RBRACK] = ACTIONS(5838), + [anon_sym_void] = ACTIONS(5840), + [anon_sym_noreturn] = ACTIONS(5840), + [anon_sym_type] = ACTIONS(5840), + [anon_sym_anyopaque] = ACTIONS(5840), + [anon_sym_bool] = ACTIONS(5840), + [anon_sym_int] = ACTIONS(5840), + [anon_sym_uint] = ACTIONS(5840), + [anon_sym_float] = ACTIONS(5840), + [anon_sym_range] = ACTIONS(5840), + [anon_sym_i8] = ACTIONS(5840), + [anon_sym_i16] = ACTIONS(5840), + [anon_sym_i32] = ACTIONS(5840), + [anon_sym_i64] = ACTIONS(5840), + [anon_sym_u8] = ACTIONS(5840), + [anon_sym_u16] = ACTIONS(5840), + [anon_sym_u32] = ACTIONS(5840), + [anon_sym_u64] = ACTIONS(5840), + [anon_sym_isize] = ACTIONS(5840), + [anon_sym_usize] = ACTIONS(5840), + [anon_sym_f32] = ACTIONS(5840), + [anon_sym_f64] = ACTIONS(5840), + [anon_sym_c_char] = ACTIONS(5840), + [anon_sym_c_schar] = ACTIONS(5840), + [anon_sym_c_uchar] = ACTIONS(5840), + [anon_sym_c_short] = ACTIONS(5840), + [anon_sym_c_ushort] = ACTIONS(5840), + [anon_sym_c_int] = ACTIONS(5840), + [anon_sym_c_uint] = ACTIONS(5840), + [anon_sym_c_long] = ACTIONS(5840), + [anon_sym_c_ulong] = ACTIONS(5840), + [anon_sym_c_longlong] = ACTIONS(5840), + [anon_sym_c_ulonglong] = ACTIONS(5840), + [anon_sym_c_float] = ACTIONS(5840), + [anon_sym_c_double] = ACTIONS(5840), + [anon_sym_c_longdouble] = ACTIONS(5840), + [anon_sym_PLUS_EQ] = ACTIONS(5838), + [anon_sym_DASH_EQ] = ACTIONS(5838), + [anon_sym_STAR_EQ] = ACTIONS(5838), + [anon_sym_SLASH_EQ] = ACTIONS(5838), + [anon_sym_AMP_EQ] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(5838), + [anon_sym_xor_EQ] = ACTIONS(5838), + [anon_sym_LT_LT_EQ] = ACTIONS(5838), + [anon_sym_GT_GT_EQ] = ACTIONS(5838), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5838), + [anon_sym_return] = ACTIONS(5840), + [anon_sym_yield] = ACTIONS(5840), + [anon_sym_COLON] = ACTIONS(5838), + [anon_sym_break] = ACTIONS(5840), + [anon_sym_continue] = ACTIONS(5840), + [anon_sym_defer] = ACTIONS(5840), + [anon_sym_errdefer] = ACTIONS(5840), + [anon_sym_if] = ACTIONS(5840), + [anon_sym_else] = ACTIONS(5840), + [anon_sym_while] = ACTIONS(5840), + [anon_sym_expand] = ACTIONS(5840), + [anon_sym_for] = ACTIONS(5840), + [anon_sym_match] = ACTIONS(5840), + [anon_sym_DOT_DOT] = ACTIONS(5840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5838), + [anon_sym_orelse] = ACTIONS(5840), + [anon_sym_or] = ACTIONS(5840), + [anon_sym_and] = ACTIONS(5840), + [anon_sym_EQ_EQ] = ACTIONS(5838), + [anon_sym_BANG_EQ] = ACTIONS(5838), + [anon_sym_LT] = ACTIONS(5840), + [anon_sym_LT_EQ] = ACTIONS(5838), + [anon_sym_GT] = ACTIONS(5840), + [anon_sym_GT_EQ] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_xor] = ACTIONS(5840), + [anon_sym_LT_LT] = ACTIONS(5840), + [anon_sym_GT_GT] = ACTIONS(5840), + [anon_sym_LT_LT_PIPE] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5840), + [anon_sym_SLASH] = ACTIONS(5840), + [anon_sym_catch] = ACTIONS(5840), + [anon_sym_TILDE] = ACTIONS(5838), + [anon_sym_try] = ACTIONS(5840), + [anon_sym_DOT] = ACTIONS(5840), + [anon_sym_CARET] = ACTIONS(5838), + [anon_sym_true] = ACTIONS(5840), + [anon_sym_false] = ACTIONS(5840), + [anon_sym_null] = ACTIONS(5840), + [anon_sym_unreachable] = ACTIONS(5840), + [anon_sym_undefined] = ACTIONS(5840), + [sym_sink] = ACTIONS(5840), + [sym_integer] = ACTIONS(5840), + [sym_float] = ACTIONS(5838), + [anon_sym_DQUOTE] = ACTIONS(5838), + [sym_multiline_string] = ACTIONS(5838), + [sym_character] = ACTIONS(5838), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5838), + }, + [STATE(2571)] = { + [ts_builtin_sym_end] = ACTIONS(5842), + [sym_identifier] = ACTIONS(5844), + [anon_sym_import] = ACTIONS(5844), + [anon_sym_test] = ACTIONS(5844), + [anon_sym_hide] = ACTIONS(5844), + [anon_sym_func] = ACTIONS(5844), + [anon_sym_BANG] = ACTIONS(5844), + [anon_sym_EQ] = ACTIONS(5844), + [anon_sym_struct] = ACTIONS(5844), + [anon_sym_LPAREN] = ACTIONS(5842), + [anon_sym_RPAREN] = ACTIONS(5842), + [anon_sym_LBRACE] = ACTIONS(5842), + [anon_sym_COMMA] = ACTIONS(5842), + [anon_sym_RBRACE] = ACTIONS(5842), + [anon_sym_DASH] = ACTIONS(5844), + [anon_sym_DOLLAR] = ACTIONS(5842), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_QMARK] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(5842), + [anon_sym_SEMI] = ACTIONS(5842), + [anon_sym_RBRACK] = ACTIONS(5842), + [anon_sym_void] = ACTIONS(5844), + [anon_sym_noreturn] = ACTIONS(5844), + [anon_sym_type] = ACTIONS(5844), + [anon_sym_anyopaque] = ACTIONS(5844), + [anon_sym_bool] = ACTIONS(5844), + [anon_sym_int] = ACTIONS(5844), + [anon_sym_uint] = ACTIONS(5844), + [anon_sym_float] = ACTIONS(5844), + [anon_sym_range] = ACTIONS(5844), + [anon_sym_i8] = ACTIONS(5844), + [anon_sym_i16] = ACTIONS(5844), + [anon_sym_i32] = ACTIONS(5844), + [anon_sym_i64] = ACTIONS(5844), + [anon_sym_u8] = ACTIONS(5844), + [anon_sym_u16] = ACTIONS(5844), + [anon_sym_u32] = ACTIONS(5844), + [anon_sym_u64] = ACTIONS(5844), + [anon_sym_isize] = ACTIONS(5844), + [anon_sym_usize] = ACTIONS(5844), + [anon_sym_f32] = ACTIONS(5844), + [anon_sym_f64] = ACTIONS(5844), + [anon_sym_c_char] = ACTIONS(5844), + [anon_sym_c_schar] = ACTIONS(5844), + [anon_sym_c_uchar] = ACTIONS(5844), + [anon_sym_c_short] = ACTIONS(5844), + [anon_sym_c_ushort] = ACTIONS(5844), + [anon_sym_c_int] = ACTIONS(5844), + [anon_sym_c_uint] = ACTIONS(5844), + [anon_sym_c_long] = ACTIONS(5844), + [anon_sym_c_ulong] = ACTIONS(5844), + [anon_sym_c_longlong] = ACTIONS(5844), + [anon_sym_c_ulonglong] = ACTIONS(5844), + [anon_sym_c_float] = ACTIONS(5844), + [anon_sym_c_double] = ACTIONS(5844), + [anon_sym_c_longdouble] = ACTIONS(5844), + [anon_sym_PLUS_EQ] = ACTIONS(5842), + [anon_sym_DASH_EQ] = ACTIONS(5842), + [anon_sym_STAR_EQ] = ACTIONS(5842), + [anon_sym_SLASH_EQ] = ACTIONS(5842), + [anon_sym_AMP_EQ] = ACTIONS(5842), + [anon_sym_PIPE_EQ] = ACTIONS(5842), + [anon_sym_xor_EQ] = ACTIONS(5842), + [anon_sym_LT_LT_EQ] = ACTIONS(5842), + [anon_sym_GT_GT_EQ] = ACTIONS(5842), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5842), + [anon_sym_return] = ACTIONS(5844), + [anon_sym_yield] = ACTIONS(5844), + [anon_sym_COLON] = ACTIONS(5842), + [anon_sym_break] = ACTIONS(5844), + [anon_sym_continue] = ACTIONS(5844), + [anon_sym_defer] = ACTIONS(5844), + [anon_sym_errdefer] = ACTIONS(5844), + [anon_sym_if] = ACTIONS(5844), + [anon_sym_else] = ACTIONS(5844), + [anon_sym_while] = ACTIONS(5844), + [anon_sym_expand] = ACTIONS(5844), + [anon_sym_for] = ACTIONS(5844), + [anon_sym_match] = ACTIONS(5844), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5842), + [anon_sym_orelse] = ACTIONS(5844), + [anon_sym_or] = ACTIONS(5844), + [anon_sym_and] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5842), + [anon_sym_BANG_EQ] = ACTIONS(5842), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym_xor] = ACTIONS(5844), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(5844), + [anon_sym_LT_LT_PIPE] = ACTIONS(5844), + [anon_sym_PLUS] = ACTIONS(5844), + [anon_sym_SLASH] = ACTIONS(5844), + [anon_sym_catch] = ACTIONS(5844), + [anon_sym_TILDE] = ACTIONS(5842), + [anon_sym_try] = ACTIONS(5844), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_CARET] = ACTIONS(5842), + [anon_sym_true] = ACTIONS(5844), + [anon_sym_false] = ACTIONS(5844), + [anon_sym_null] = ACTIONS(5844), + [anon_sym_unreachable] = ACTIONS(5844), + [anon_sym_undefined] = ACTIONS(5844), + [sym_sink] = ACTIONS(5844), + [sym_integer] = ACTIONS(5844), + [sym_float] = ACTIONS(5842), + [anon_sym_DQUOTE] = ACTIONS(5842), + [sym_multiline_string] = ACTIONS(5842), + [sym_character] = ACTIONS(5842), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5842), + }, + [STATE(2572)] = { + [ts_builtin_sym_end] = ACTIONS(5846), + [sym_identifier] = ACTIONS(5848), + [anon_sym_import] = ACTIONS(5848), + [anon_sym_test] = ACTIONS(5848), + [anon_sym_hide] = ACTIONS(5848), + [anon_sym_func] = ACTIONS(5848), + [anon_sym_BANG] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(5848), + [anon_sym_struct] = ACTIONS(5848), + [anon_sym_LPAREN] = ACTIONS(5846), + [anon_sym_RPAREN] = ACTIONS(5846), + [anon_sym_LBRACE] = ACTIONS(5846), + [anon_sym_COMMA] = ACTIONS(5846), + [anon_sym_RBRACE] = ACTIONS(5846), + [anon_sym_DASH] = ACTIONS(5848), + [anon_sym_DOLLAR] = ACTIONS(5846), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_QMARK] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(5846), + [anon_sym_SEMI] = ACTIONS(5846), + [anon_sym_RBRACK] = ACTIONS(5846), + [anon_sym_void] = ACTIONS(5848), + [anon_sym_noreturn] = ACTIONS(5848), + [anon_sym_type] = ACTIONS(5848), + [anon_sym_anyopaque] = ACTIONS(5848), + [anon_sym_bool] = ACTIONS(5848), + [anon_sym_int] = ACTIONS(5848), + [anon_sym_uint] = ACTIONS(5848), + [anon_sym_float] = ACTIONS(5848), + [anon_sym_range] = ACTIONS(5848), + [anon_sym_i8] = ACTIONS(5848), + [anon_sym_i16] = ACTIONS(5848), + [anon_sym_i32] = ACTIONS(5848), + [anon_sym_i64] = ACTIONS(5848), + [anon_sym_u8] = ACTIONS(5848), + [anon_sym_u16] = ACTIONS(5848), + [anon_sym_u32] = ACTIONS(5848), + [anon_sym_u64] = ACTIONS(5848), + [anon_sym_isize] = ACTIONS(5848), + [anon_sym_usize] = ACTIONS(5848), + [anon_sym_f32] = ACTIONS(5848), + [anon_sym_f64] = ACTIONS(5848), + [anon_sym_c_char] = ACTIONS(5848), + [anon_sym_c_schar] = ACTIONS(5848), + [anon_sym_c_uchar] = ACTIONS(5848), + [anon_sym_c_short] = ACTIONS(5848), + [anon_sym_c_ushort] = ACTIONS(5848), + [anon_sym_c_int] = ACTIONS(5848), + [anon_sym_c_uint] = ACTIONS(5848), + [anon_sym_c_long] = ACTIONS(5848), + [anon_sym_c_ulong] = ACTIONS(5848), + [anon_sym_c_longlong] = ACTIONS(5848), + [anon_sym_c_ulonglong] = ACTIONS(5848), + [anon_sym_c_float] = ACTIONS(5848), + [anon_sym_c_double] = ACTIONS(5848), + [anon_sym_c_longdouble] = ACTIONS(5848), + [anon_sym_PLUS_EQ] = ACTIONS(5846), + [anon_sym_DASH_EQ] = ACTIONS(5846), + [anon_sym_STAR_EQ] = ACTIONS(5846), + [anon_sym_SLASH_EQ] = ACTIONS(5846), + [anon_sym_AMP_EQ] = ACTIONS(5846), + [anon_sym_PIPE_EQ] = ACTIONS(5846), + [anon_sym_xor_EQ] = ACTIONS(5846), + [anon_sym_LT_LT_EQ] = ACTIONS(5846), + [anon_sym_GT_GT_EQ] = ACTIONS(5846), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5846), + [anon_sym_return] = ACTIONS(5848), + [anon_sym_yield] = ACTIONS(5848), + [anon_sym_COLON] = ACTIONS(5846), + [anon_sym_break] = ACTIONS(5848), + [anon_sym_continue] = ACTIONS(5848), + [anon_sym_defer] = ACTIONS(5848), + [anon_sym_errdefer] = ACTIONS(5848), + [anon_sym_if] = ACTIONS(5848), + [anon_sym_else] = ACTIONS(5848), + [anon_sym_while] = ACTIONS(5848), + [anon_sym_expand] = ACTIONS(5848), + [anon_sym_for] = ACTIONS(5848), + [anon_sym_match] = ACTIONS(5848), + [anon_sym_DOT_DOT] = ACTIONS(5848), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5846), + [anon_sym_orelse] = ACTIONS(5848), + [anon_sym_or] = ACTIONS(5848), + [anon_sym_and] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_BANG_EQ] = ACTIONS(5846), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_EQ] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5848), + [anon_sym_xor] = ACTIONS(5848), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(5848), + [anon_sym_LT_LT_PIPE] = ACTIONS(5848), + [anon_sym_PLUS] = ACTIONS(5848), + [anon_sym_SLASH] = ACTIONS(5848), + [anon_sym_catch] = ACTIONS(5848), + [anon_sym_TILDE] = ACTIONS(5846), + [anon_sym_try] = ACTIONS(5848), + [anon_sym_DOT] = ACTIONS(5848), + [anon_sym_CARET] = ACTIONS(5846), + [anon_sym_true] = ACTIONS(5848), + [anon_sym_false] = ACTIONS(5848), + [anon_sym_null] = ACTIONS(5848), + [anon_sym_unreachable] = ACTIONS(5848), + [anon_sym_undefined] = ACTIONS(5848), + [sym_sink] = ACTIONS(5848), + [sym_integer] = ACTIONS(5848), + [sym_float] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(5846), + [sym_multiline_string] = ACTIONS(5846), + [sym_character] = ACTIONS(5846), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5846), + }, + [STATE(2573)] = { + [ts_builtin_sym_end] = ACTIONS(5850), + [sym_identifier] = ACTIONS(5852), + [anon_sym_import] = ACTIONS(5852), + [anon_sym_test] = ACTIONS(5852), + [anon_sym_hide] = ACTIONS(5852), + [anon_sym_func] = ACTIONS(5852), + [anon_sym_BANG] = ACTIONS(5852), + [anon_sym_EQ] = ACTIONS(5852), + [anon_sym_struct] = ACTIONS(5852), + [anon_sym_LPAREN] = ACTIONS(5850), + [anon_sym_RPAREN] = ACTIONS(5850), + [anon_sym_LBRACE] = ACTIONS(5850), + [anon_sym_COMMA] = ACTIONS(5850), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5852), + [anon_sym_DOLLAR] = ACTIONS(5850), + [anon_sym_PIPE] = ACTIONS(5852), + [anon_sym_QMARK] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5852), + [anon_sym_LBRACK] = ACTIONS(5850), + [anon_sym_SEMI] = ACTIONS(5850), + [anon_sym_RBRACK] = ACTIONS(5850), + [anon_sym_void] = ACTIONS(5852), + [anon_sym_noreturn] = ACTIONS(5852), + [anon_sym_type] = ACTIONS(5852), + [anon_sym_anyopaque] = ACTIONS(5852), + [anon_sym_bool] = ACTIONS(5852), + [anon_sym_int] = ACTIONS(5852), + [anon_sym_uint] = ACTIONS(5852), + [anon_sym_float] = ACTIONS(5852), + [anon_sym_range] = ACTIONS(5852), + [anon_sym_i8] = ACTIONS(5852), + [anon_sym_i16] = ACTIONS(5852), + [anon_sym_i32] = ACTIONS(5852), + [anon_sym_i64] = ACTIONS(5852), + [anon_sym_u8] = ACTIONS(5852), + [anon_sym_u16] = ACTIONS(5852), + [anon_sym_u32] = ACTIONS(5852), + [anon_sym_u64] = ACTIONS(5852), + [anon_sym_isize] = ACTIONS(5852), + [anon_sym_usize] = ACTIONS(5852), + [anon_sym_f32] = ACTIONS(5852), + [anon_sym_f64] = ACTIONS(5852), + [anon_sym_c_char] = ACTIONS(5852), + [anon_sym_c_schar] = ACTIONS(5852), + [anon_sym_c_uchar] = ACTIONS(5852), + [anon_sym_c_short] = ACTIONS(5852), + [anon_sym_c_ushort] = ACTIONS(5852), + [anon_sym_c_int] = ACTIONS(5852), + [anon_sym_c_uint] = ACTIONS(5852), + [anon_sym_c_long] = ACTIONS(5852), + [anon_sym_c_ulong] = ACTIONS(5852), + [anon_sym_c_longlong] = ACTIONS(5852), + [anon_sym_c_ulonglong] = ACTIONS(5852), + [anon_sym_c_float] = ACTIONS(5852), + [anon_sym_c_double] = ACTIONS(5852), + [anon_sym_c_longdouble] = ACTIONS(5852), + [anon_sym_PLUS_EQ] = ACTIONS(5850), + [anon_sym_DASH_EQ] = ACTIONS(5850), + [anon_sym_STAR_EQ] = ACTIONS(5850), + [anon_sym_SLASH_EQ] = ACTIONS(5850), + [anon_sym_AMP_EQ] = ACTIONS(5850), + [anon_sym_PIPE_EQ] = ACTIONS(5850), + [anon_sym_xor_EQ] = ACTIONS(5850), + [anon_sym_LT_LT_EQ] = ACTIONS(5850), + [anon_sym_GT_GT_EQ] = ACTIONS(5850), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5850), + [anon_sym_return] = ACTIONS(5852), + [anon_sym_yield] = ACTIONS(5852), + [anon_sym_COLON] = ACTIONS(5850), + [anon_sym_break] = ACTIONS(5852), + [anon_sym_continue] = ACTIONS(5852), + [anon_sym_defer] = ACTIONS(5852), + [anon_sym_errdefer] = ACTIONS(5852), + [anon_sym_if] = ACTIONS(5852), + [anon_sym_else] = ACTIONS(5852), + [anon_sym_while] = ACTIONS(5852), + [anon_sym_expand] = ACTIONS(5852), + [anon_sym_for] = ACTIONS(5852), + [anon_sym_match] = ACTIONS(5852), + [anon_sym_DOT_DOT] = ACTIONS(5852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5850), + [anon_sym_orelse] = ACTIONS(5852), + [anon_sym_or] = ACTIONS(5852), + [anon_sym_and] = ACTIONS(5852), + [anon_sym_EQ_EQ] = ACTIONS(5850), + [anon_sym_BANG_EQ] = ACTIONS(5850), + [anon_sym_LT] = ACTIONS(5852), + [anon_sym_LT_EQ] = ACTIONS(5850), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_GT_EQ] = ACTIONS(5850), + [anon_sym_AMP] = ACTIONS(5852), + [anon_sym_xor] = ACTIONS(5852), + [anon_sym_LT_LT] = ACTIONS(5852), + [anon_sym_GT_GT] = ACTIONS(5852), + [anon_sym_LT_LT_PIPE] = ACTIONS(5852), + [anon_sym_PLUS] = ACTIONS(5852), + [anon_sym_SLASH] = ACTIONS(5852), + [anon_sym_catch] = ACTIONS(5852), + [anon_sym_TILDE] = ACTIONS(5850), + [anon_sym_try] = ACTIONS(5852), + [anon_sym_DOT] = ACTIONS(5852), + [anon_sym_CARET] = ACTIONS(5850), + [anon_sym_true] = ACTIONS(5852), + [anon_sym_false] = ACTIONS(5852), + [anon_sym_null] = ACTIONS(5852), + [anon_sym_unreachable] = ACTIONS(5852), + [anon_sym_undefined] = ACTIONS(5852), + [sym_sink] = ACTIONS(5852), + [sym_integer] = ACTIONS(5852), + [sym_float] = ACTIONS(5850), + [anon_sym_DQUOTE] = ACTIONS(5850), + [sym_multiline_string] = ACTIONS(5850), + [sym_character] = ACTIONS(5850), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5850), + }, + [STATE(2574)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8842), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(403), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2575)] = { + [ts_builtin_sym_end] = ACTIONS(5854), + [sym_identifier] = ACTIONS(5856), + [anon_sym_import] = ACTIONS(5856), + [anon_sym_test] = ACTIONS(5856), + [anon_sym_hide] = ACTIONS(5856), + [anon_sym_func] = ACTIONS(5856), + [anon_sym_BANG] = ACTIONS(5856), + [anon_sym_EQ] = ACTIONS(5856), + [anon_sym_struct] = ACTIONS(5856), + [anon_sym_LPAREN] = ACTIONS(5854), + [anon_sym_RPAREN] = ACTIONS(5854), + [anon_sym_LBRACE] = ACTIONS(5854), + [anon_sym_COMMA] = ACTIONS(5854), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_DASH] = ACTIONS(5856), + [anon_sym_DOLLAR] = ACTIONS(5854), + [anon_sym_PIPE] = ACTIONS(5856), + [anon_sym_QMARK] = ACTIONS(5854), + [anon_sym_STAR] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(5854), + [anon_sym_SEMI] = ACTIONS(5854), + [anon_sym_RBRACK] = ACTIONS(5854), + [anon_sym_void] = ACTIONS(5856), + [anon_sym_noreturn] = ACTIONS(5856), + [anon_sym_type] = ACTIONS(5856), + [anon_sym_anyopaque] = ACTIONS(5856), + [anon_sym_bool] = ACTIONS(5856), + [anon_sym_int] = ACTIONS(5856), + [anon_sym_uint] = ACTIONS(5856), + [anon_sym_float] = ACTIONS(5856), + [anon_sym_range] = ACTIONS(5856), + [anon_sym_i8] = ACTIONS(5856), + [anon_sym_i16] = ACTIONS(5856), + [anon_sym_i32] = ACTIONS(5856), + [anon_sym_i64] = ACTIONS(5856), + [anon_sym_u8] = ACTIONS(5856), + [anon_sym_u16] = ACTIONS(5856), + [anon_sym_u32] = ACTIONS(5856), + [anon_sym_u64] = ACTIONS(5856), + [anon_sym_isize] = ACTIONS(5856), + [anon_sym_usize] = ACTIONS(5856), + [anon_sym_f32] = ACTIONS(5856), + [anon_sym_f64] = ACTIONS(5856), + [anon_sym_c_char] = ACTIONS(5856), + [anon_sym_c_schar] = ACTIONS(5856), + [anon_sym_c_uchar] = ACTIONS(5856), + [anon_sym_c_short] = ACTIONS(5856), + [anon_sym_c_ushort] = ACTIONS(5856), + [anon_sym_c_int] = ACTIONS(5856), + [anon_sym_c_uint] = ACTIONS(5856), + [anon_sym_c_long] = ACTIONS(5856), + [anon_sym_c_ulong] = ACTIONS(5856), + [anon_sym_c_longlong] = ACTIONS(5856), + [anon_sym_c_ulonglong] = ACTIONS(5856), + [anon_sym_c_float] = ACTIONS(5856), + [anon_sym_c_double] = ACTIONS(5856), + [anon_sym_c_longdouble] = ACTIONS(5856), + [anon_sym_PLUS_EQ] = ACTIONS(5854), + [anon_sym_DASH_EQ] = ACTIONS(5854), + [anon_sym_STAR_EQ] = ACTIONS(5854), + [anon_sym_SLASH_EQ] = ACTIONS(5854), + [anon_sym_AMP_EQ] = ACTIONS(5854), + [anon_sym_PIPE_EQ] = ACTIONS(5854), + [anon_sym_xor_EQ] = ACTIONS(5854), + [anon_sym_LT_LT_EQ] = ACTIONS(5854), + [anon_sym_GT_GT_EQ] = ACTIONS(5854), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5854), + [anon_sym_return] = ACTIONS(5856), + [anon_sym_yield] = ACTIONS(5856), + [anon_sym_COLON] = ACTIONS(5854), + [anon_sym_break] = ACTIONS(5856), + [anon_sym_continue] = ACTIONS(5856), + [anon_sym_defer] = ACTIONS(5856), + [anon_sym_errdefer] = ACTIONS(5856), + [anon_sym_if] = ACTIONS(5856), + [anon_sym_else] = ACTIONS(5856), + [anon_sym_while] = ACTIONS(5856), + [anon_sym_expand] = ACTIONS(5856), + [anon_sym_for] = ACTIONS(5856), + [anon_sym_match] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5854), + [anon_sym_orelse] = ACTIONS(5856), + [anon_sym_or] = ACTIONS(5856), + [anon_sym_and] = ACTIONS(5856), + [anon_sym_EQ_EQ] = ACTIONS(5854), + [anon_sym_BANG_EQ] = ACTIONS(5854), + [anon_sym_LT] = ACTIONS(5856), + [anon_sym_LT_EQ] = ACTIONS(5854), + [anon_sym_GT] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5854), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym_xor] = ACTIONS(5856), + [anon_sym_LT_LT] = ACTIONS(5856), + [anon_sym_GT_GT] = ACTIONS(5856), + [anon_sym_LT_LT_PIPE] = ACTIONS(5856), + [anon_sym_PLUS] = ACTIONS(5856), + [anon_sym_SLASH] = ACTIONS(5856), + [anon_sym_catch] = ACTIONS(5856), + [anon_sym_TILDE] = ACTIONS(5854), + [anon_sym_try] = ACTIONS(5856), + [anon_sym_DOT] = ACTIONS(5856), + [anon_sym_CARET] = ACTIONS(5854), + [anon_sym_true] = ACTIONS(5856), + [anon_sym_false] = ACTIONS(5856), + [anon_sym_null] = ACTIONS(5856), + [anon_sym_unreachable] = ACTIONS(5856), + [anon_sym_undefined] = ACTIONS(5856), + [sym_sink] = ACTIONS(5856), + [sym_integer] = ACTIONS(5856), + [sym_float] = ACTIONS(5854), + [anon_sym_DQUOTE] = ACTIONS(5854), + [sym_multiline_string] = ACTIONS(5854), + [sym_character] = ACTIONS(5854), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5854), + }, + [STATE(2576)] = { + [ts_builtin_sym_end] = ACTIONS(5858), + [sym_identifier] = ACTIONS(5860), + [anon_sym_import] = ACTIONS(5860), + [anon_sym_test] = ACTIONS(5860), + [anon_sym_hide] = ACTIONS(5860), + [anon_sym_func] = ACTIONS(5860), + [anon_sym_BANG] = ACTIONS(5860), + [anon_sym_EQ] = ACTIONS(5860), + [anon_sym_struct] = ACTIONS(5860), + [anon_sym_LPAREN] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5858), + [anon_sym_RBRACE] = ACTIONS(5858), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_QMARK] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5858), + [anon_sym_SEMI] = ACTIONS(5858), + [anon_sym_RBRACK] = ACTIONS(5858), + [anon_sym_void] = ACTIONS(5860), + [anon_sym_noreturn] = ACTIONS(5860), + [anon_sym_type] = ACTIONS(5860), + [anon_sym_anyopaque] = ACTIONS(5860), + [anon_sym_bool] = ACTIONS(5860), + [anon_sym_int] = ACTIONS(5860), + [anon_sym_uint] = ACTIONS(5860), + [anon_sym_float] = ACTIONS(5860), + [anon_sym_range] = ACTIONS(5860), + [anon_sym_i8] = ACTIONS(5860), + [anon_sym_i16] = ACTIONS(5860), + [anon_sym_i32] = ACTIONS(5860), + [anon_sym_i64] = ACTIONS(5860), + [anon_sym_u8] = ACTIONS(5860), + [anon_sym_u16] = ACTIONS(5860), + [anon_sym_u32] = ACTIONS(5860), + [anon_sym_u64] = ACTIONS(5860), + [anon_sym_isize] = ACTIONS(5860), + [anon_sym_usize] = ACTIONS(5860), + [anon_sym_f32] = ACTIONS(5860), + [anon_sym_f64] = ACTIONS(5860), + [anon_sym_c_char] = ACTIONS(5860), + [anon_sym_c_schar] = ACTIONS(5860), + [anon_sym_c_uchar] = ACTIONS(5860), + [anon_sym_c_short] = ACTIONS(5860), + [anon_sym_c_ushort] = ACTIONS(5860), + [anon_sym_c_int] = ACTIONS(5860), + [anon_sym_c_uint] = ACTIONS(5860), + [anon_sym_c_long] = ACTIONS(5860), + [anon_sym_c_ulong] = ACTIONS(5860), + [anon_sym_c_longlong] = ACTIONS(5860), + [anon_sym_c_ulonglong] = ACTIONS(5860), + [anon_sym_c_float] = ACTIONS(5860), + [anon_sym_c_double] = ACTIONS(5860), + [anon_sym_c_longdouble] = ACTIONS(5860), + [anon_sym_PLUS_EQ] = ACTIONS(5858), + [anon_sym_DASH_EQ] = ACTIONS(5858), + [anon_sym_STAR_EQ] = ACTIONS(5858), + [anon_sym_SLASH_EQ] = ACTIONS(5858), + [anon_sym_AMP_EQ] = ACTIONS(5858), + [anon_sym_PIPE_EQ] = ACTIONS(5858), + [anon_sym_xor_EQ] = ACTIONS(5858), + [anon_sym_LT_LT_EQ] = ACTIONS(5858), + [anon_sym_GT_GT_EQ] = ACTIONS(5858), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5858), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_COLON] = ACTIONS(5858), + [anon_sym_break] = ACTIONS(5860), + [anon_sym_continue] = ACTIONS(5860), + [anon_sym_defer] = ACTIONS(5860), + [anon_sym_errdefer] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_else] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_expand] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_DOT_DOT] = ACTIONS(5860), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5858), + [anon_sym_orelse] = ACTIONS(5860), + [anon_sym_or] = ACTIONS(5860), + [anon_sym_and] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_BANG_EQ] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_LT_EQ] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_EQ] = ACTIONS(5858), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym_xor] = ACTIONS(5860), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(5860), + [anon_sym_LT_LT_PIPE] = ACTIONS(5860), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5860), + [anon_sym_catch] = ACTIONS(5860), + [anon_sym_TILDE] = ACTIONS(5858), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_DOT] = ACTIONS(5860), + [anon_sym_CARET] = ACTIONS(5858), + [anon_sym_true] = ACTIONS(5860), + [anon_sym_false] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_unreachable] = ACTIONS(5860), + [anon_sym_undefined] = ACTIONS(5860), + [sym_sink] = ACTIONS(5860), + [sym_integer] = ACTIONS(5860), + [sym_float] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(5858), + [sym_multiline_string] = ACTIONS(5858), + [sym_character] = ACTIONS(5858), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5858), + }, + [STATE(2577)] = { + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_anyopaque] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_int] = ACTIONS(1256), + [anon_sym_uint] = ACTIONS(1256), + [anon_sym_float] = ACTIONS(1256), + [anon_sym_range] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_c_char] = ACTIONS(1256), + [anon_sym_c_schar] = ACTIONS(1256), + [anon_sym_c_uchar] = ACTIONS(1256), + [anon_sym_c_short] = ACTIONS(1256), + [anon_sym_c_ushort] = ACTIONS(1256), + [anon_sym_c_int] = ACTIONS(1256), + [anon_sym_c_uint] = ACTIONS(1256), + [anon_sym_c_long] = ACTIONS(1256), + [anon_sym_c_ulong] = ACTIONS(1256), + [anon_sym_c_longlong] = ACTIONS(1256), + [anon_sym_c_ulonglong] = ACTIONS(1256), + [anon_sym_c_float] = ACTIONS(1256), + [anon_sym_c_double] = ACTIONS(1256), + [anon_sym_c_longdouble] = ACTIONS(1256), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(2578)] = { + [ts_builtin_sym_end] = ACTIONS(5784), + [sym_identifier] = ACTIONS(5780), + [anon_sym_import] = ACTIONS(5780), + [anon_sym_test] = ACTIONS(5780), + [anon_sym_hide] = ACTIONS(5780), + [anon_sym_func] = ACTIONS(5780), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_EQ] = ACTIONS(5780), + [anon_sym_struct] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_RPAREN] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(5784), + [anon_sym_COMMA] = ACTIONS(5784), + [anon_sym_RBRACE] = ACTIONS(5784), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5784), + [anon_sym_PIPE] = ACTIONS(5780), + [anon_sym_QMARK] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5784), + [anon_sym_SEMI] = ACTIONS(5784), + [anon_sym_RBRACK] = ACTIONS(5784), + [anon_sym_void] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym_type] = ACTIONS(5780), + [anon_sym_anyopaque] = ACTIONS(5780), + [anon_sym_bool] = ACTIONS(5780), + [anon_sym_int] = ACTIONS(5780), + [anon_sym_uint] = ACTIONS(5780), + [anon_sym_float] = ACTIONS(5780), + [anon_sym_range] = ACTIONS(5780), + [anon_sym_i8] = ACTIONS(5780), + [anon_sym_i16] = ACTIONS(5780), + [anon_sym_i32] = ACTIONS(5780), + [anon_sym_i64] = ACTIONS(5780), + [anon_sym_u8] = ACTIONS(5780), + [anon_sym_u16] = ACTIONS(5780), + [anon_sym_u32] = ACTIONS(5780), + [anon_sym_u64] = ACTIONS(5780), + [anon_sym_isize] = ACTIONS(5780), + [anon_sym_usize] = ACTIONS(5780), + [anon_sym_f32] = ACTIONS(5780), + [anon_sym_f64] = ACTIONS(5780), + [anon_sym_c_char] = ACTIONS(5780), + [anon_sym_c_schar] = ACTIONS(5780), + [anon_sym_c_uchar] = ACTIONS(5780), + [anon_sym_c_short] = ACTIONS(5780), + [anon_sym_c_ushort] = ACTIONS(5780), + [anon_sym_c_int] = ACTIONS(5780), + [anon_sym_c_uint] = ACTIONS(5780), + [anon_sym_c_long] = ACTIONS(5780), + [anon_sym_c_ulong] = ACTIONS(5780), + [anon_sym_c_longlong] = ACTIONS(5780), + [anon_sym_c_ulonglong] = ACTIONS(5780), + [anon_sym_c_float] = ACTIONS(5780), + [anon_sym_c_double] = ACTIONS(5780), + [anon_sym_c_longdouble] = ACTIONS(5780), + [anon_sym_PLUS_EQ] = ACTIONS(5784), + [anon_sym_DASH_EQ] = ACTIONS(5784), + [anon_sym_STAR_EQ] = ACTIONS(5784), + [anon_sym_SLASH_EQ] = ACTIONS(5784), + [anon_sym_AMP_EQ] = ACTIONS(5784), + [anon_sym_PIPE_EQ] = ACTIONS(5784), + [anon_sym_xor_EQ] = ACTIONS(5784), + [anon_sym_LT_LT_EQ] = ACTIONS(5784), + [anon_sym_GT_GT_EQ] = ACTIONS(5784), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5784), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_COLON] = ACTIONS(5784), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_defer] = ACTIONS(5780), + [anon_sym_errdefer] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_else] = ACTIONS(5780), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_expand] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5784), + [anon_sym_orelse] = ACTIONS(5780), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5784), + [anon_sym_BANG_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5780), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5780), + [anon_sym_LT_LT_PIPE] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5780), + [anon_sym_SLASH] = ACTIONS(5780), + [anon_sym_catch] = ACTIONS(5780), + [anon_sym_TILDE] = ACTIONS(5784), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5784), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_unreachable] = ACTIONS(5780), + [anon_sym_undefined] = ACTIONS(5780), + [sym_sink] = ACTIONS(5780), + [sym_integer] = ACTIONS(5780), + [sym_float] = ACTIONS(5784), + [anon_sym_DQUOTE] = ACTIONS(5784), + [sym_multiline_string] = ACTIONS(5784), + [sym_character] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5784), + }, + [STATE(2579)] = { + [ts_builtin_sym_end] = ACTIONS(5862), + [sym_identifier] = ACTIONS(5864), + [anon_sym_import] = ACTIONS(5864), + [anon_sym_test] = ACTIONS(5864), + [anon_sym_hide] = ACTIONS(5864), + [anon_sym_func] = ACTIONS(5864), + [anon_sym_BANG] = ACTIONS(5864), + [anon_sym_EQ] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_LPAREN] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(5862), + [anon_sym_LBRACE] = ACTIONS(5862), + [anon_sym_COMMA] = ACTIONS(5862), + [anon_sym_RBRACE] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5864), + [anon_sym_DOLLAR] = ACTIONS(5862), + [anon_sym_PIPE] = ACTIONS(5864), + [anon_sym_QMARK] = ACTIONS(5862), + [anon_sym_STAR] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5862), + [anon_sym_SEMI] = ACTIONS(5862), + [anon_sym_RBRACK] = ACTIONS(5862), + [anon_sym_void] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_type] = ACTIONS(5864), + [anon_sym_anyopaque] = ACTIONS(5864), + [anon_sym_bool] = ACTIONS(5864), + [anon_sym_int] = ACTIONS(5864), + [anon_sym_uint] = ACTIONS(5864), + [anon_sym_float] = ACTIONS(5864), + [anon_sym_range] = ACTIONS(5864), + [anon_sym_i8] = ACTIONS(5864), + [anon_sym_i16] = ACTIONS(5864), + [anon_sym_i32] = ACTIONS(5864), + [anon_sym_i64] = ACTIONS(5864), + [anon_sym_u8] = ACTIONS(5864), + [anon_sym_u16] = ACTIONS(5864), + [anon_sym_u32] = ACTIONS(5864), + [anon_sym_u64] = ACTIONS(5864), + [anon_sym_isize] = ACTIONS(5864), + [anon_sym_usize] = ACTIONS(5864), + [anon_sym_f32] = ACTIONS(5864), + [anon_sym_f64] = ACTIONS(5864), + [anon_sym_c_char] = ACTIONS(5864), + [anon_sym_c_schar] = ACTIONS(5864), + [anon_sym_c_uchar] = ACTIONS(5864), + [anon_sym_c_short] = ACTIONS(5864), + [anon_sym_c_ushort] = ACTIONS(5864), + [anon_sym_c_int] = ACTIONS(5864), + [anon_sym_c_uint] = ACTIONS(5864), + [anon_sym_c_long] = ACTIONS(5864), + [anon_sym_c_ulong] = ACTIONS(5864), + [anon_sym_c_longlong] = ACTIONS(5864), + [anon_sym_c_ulonglong] = ACTIONS(5864), + [anon_sym_c_float] = ACTIONS(5864), + [anon_sym_c_double] = ACTIONS(5864), + [anon_sym_c_longdouble] = ACTIONS(5864), + [anon_sym_PLUS_EQ] = ACTIONS(5862), + [anon_sym_DASH_EQ] = ACTIONS(5862), + [anon_sym_STAR_EQ] = ACTIONS(5862), + [anon_sym_SLASH_EQ] = ACTIONS(5862), + [anon_sym_AMP_EQ] = ACTIONS(5862), + [anon_sym_PIPE_EQ] = ACTIONS(5862), + [anon_sym_xor_EQ] = ACTIONS(5862), + [anon_sym_LT_LT_EQ] = ACTIONS(5862), + [anon_sym_GT_GT_EQ] = ACTIONS(5862), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5862), + [anon_sym_return] = ACTIONS(5864), + [anon_sym_yield] = ACTIONS(5864), + [anon_sym_COLON] = ACTIONS(5862), + [anon_sym_break] = ACTIONS(5864), + [anon_sym_continue] = ACTIONS(5864), + [anon_sym_defer] = ACTIONS(5864), + [anon_sym_errdefer] = ACTIONS(5864), + [anon_sym_if] = ACTIONS(5864), + [anon_sym_else] = ACTIONS(5864), + [anon_sym_while] = ACTIONS(5864), + [anon_sym_expand] = ACTIONS(5864), + [anon_sym_for] = ACTIONS(5864), + [anon_sym_match] = ACTIONS(5864), + [anon_sym_DOT_DOT] = ACTIONS(5864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5862), + [anon_sym_orelse] = ACTIONS(5864), + [anon_sym_or] = ACTIONS(5864), + [anon_sym_and] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_BANG_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_LT_EQ] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5864), + [anon_sym_GT_EQ] = ACTIONS(5862), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym_xor] = ACTIONS(5864), + [anon_sym_LT_LT] = ACTIONS(5864), + [anon_sym_GT_GT] = ACTIONS(5864), + [anon_sym_LT_LT_PIPE] = ACTIONS(5864), + [anon_sym_PLUS] = ACTIONS(5864), + [anon_sym_SLASH] = ACTIONS(5864), + [anon_sym_catch] = ACTIONS(5864), + [anon_sym_TILDE] = ACTIONS(5862), + [anon_sym_try] = ACTIONS(5864), + [anon_sym_DOT] = ACTIONS(5864), + [anon_sym_CARET] = ACTIONS(5862), + [anon_sym_true] = ACTIONS(5864), + [anon_sym_false] = ACTIONS(5864), + [anon_sym_null] = ACTIONS(5864), + [anon_sym_unreachable] = ACTIONS(5864), + [anon_sym_undefined] = ACTIONS(5864), + [sym_sink] = ACTIONS(5864), + [sym_integer] = ACTIONS(5864), + [sym_float] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(5862), + [sym_multiline_string] = ACTIONS(5862), + [sym_character] = ACTIONS(5862), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5862), + }, + [STATE(2580)] = { + [ts_builtin_sym_end] = ACTIONS(5866), + [sym_identifier] = ACTIONS(5868), + [anon_sym_import] = ACTIONS(5868), + [anon_sym_test] = ACTIONS(5868), + [anon_sym_hide] = ACTIONS(5868), + [anon_sym_func] = ACTIONS(5868), + [anon_sym_BANG] = ACTIONS(5868), + [anon_sym_EQ] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5868), + [anon_sym_LPAREN] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5866), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5868), + [anon_sym_QMARK] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5866), + [anon_sym_SEMI] = ACTIONS(5866), + [anon_sym_RBRACK] = ACTIONS(5866), + [anon_sym_void] = ACTIONS(5868), + [anon_sym_noreturn] = ACTIONS(5868), + [anon_sym_type] = ACTIONS(5868), + [anon_sym_anyopaque] = ACTIONS(5868), + [anon_sym_bool] = ACTIONS(5868), + [anon_sym_int] = ACTIONS(5868), + [anon_sym_uint] = ACTIONS(5868), + [anon_sym_float] = ACTIONS(5868), + [anon_sym_range] = ACTIONS(5868), + [anon_sym_i8] = ACTIONS(5868), + [anon_sym_i16] = ACTIONS(5868), + [anon_sym_i32] = ACTIONS(5868), + [anon_sym_i64] = ACTIONS(5868), + [anon_sym_u8] = ACTIONS(5868), + [anon_sym_u16] = ACTIONS(5868), + [anon_sym_u32] = ACTIONS(5868), + [anon_sym_u64] = ACTIONS(5868), + [anon_sym_isize] = ACTIONS(5868), + [anon_sym_usize] = ACTIONS(5868), + [anon_sym_f32] = ACTIONS(5868), + [anon_sym_f64] = ACTIONS(5868), + [anon_sym_c_char] = ACTIONS(5868), + [anon_sym_c_schar] = ACTIONS(5868), + [anon_sym_c_uchar] = ACTIONS(5868), + [anon_sym_c_short] = ACTIONS(5868), + [anon_sym_c_ushort] = ACTIONS(5868), + [anon_sym_c_int] = ACTIONS(5868), + [anon_sym_c_uint] = ACTIONS(5868), + [anon_sym_c_long] = ACTIONS(5868), + [anon_sym_c_ulong] = ACTIONS(5868), + [anon_sym_c_longlong] = ACTIONS(5868), + [anon_sym_c_ulonglong] = ACTIONS(5868), + [anon_sym_c_float] = ACTIONS(5868), + [anon_sym_c_double] = ACTIONS(5868), + [anon_sym_c_longdouble] = ACTIONS(5868), + [anon_sym_PLUS_EQ] = ACTIONS(5866), + [anon_sym_DASH_EQ] = ACTIONS(5866), + [anon_sym_STAR_EQ] = ACTIONS(5866), + [anon_sym_SLASH_EQ] = ACTIONS(5866), + [anon_sym_AMP_EQ] = ACTIONS(5866), + [anon_sym_PIPE_EQ] = ACTIONS(5866), + [anon_sym_xor_EQ] = ACTIONS(5866), + [anon_sym_LT_LT_EQ] = ACTIONS(5866), + [anon_sym_GT_GT_EQ] = ACTIONS(5866), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5866), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_break] = ACTIONS(5868), + [anon_sym_continue] = ACTIONS(5868), + [anon_sym_defer] = ACTIONS(5868), + [anon_sym_errdefer] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_else] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_expand] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_DOT_DOT] = ACTIONS(5868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5866), + [anon_sym_orelse] = ACTIONS(5868), + [anon_sym_or] = ACTIONS(5868), + [anon_sym_and] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_EQ] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_xor] = ACTIONS(5868), + [anon_sym_LT_LT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5868), + [anon_sym_LT_LT_PIPE] = ACTIONS(5868), + [anon_sym_PLUS] = ACTIONS(5868), + [anon_sym_SLASH] = ACTIONS(5868), + [anon_sym_catch] = ACTIONS(5868), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_DOT] = ACTIONS(5868), + [anon_sym_CARET] = ACTIONS(5866), + [anon_sym_true] = ACTIONS(5868), + [anon_sym_false] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_unreachable] = ACTIONS(5868), + [anon_sym_undefined] = ACTIONS(5868), + [sym_sink] = ACTIONS(5868), + [sym_integer] = ACTIONS(5868), + [sym_float] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(5866), + [sym_multiline_string] = ACTIONS(5866), + [sym_character] = ACTIONS(5866), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5866), + }, + [STATE(2581)] = { + [ts_builtin_sym_end] = ACTIONS(5870), + [sym_identifier] = ACTIONS(5872), + [anon_sym_import] = ACTIONS(5872), + [anon_sym_test] = ACTIONS(5872), + [anon_sym_hide] = ACTIONS(5872), + [anon_sym_func] = ACTIONS(5872), + [anon_sym_BANG] = ACTIONS(5872), + [anon_sym_EQ] = ACTIONS(5872), + [anon_sym_struct] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5870), + [anon_sym_RPAREN] = ACTIONS(5870), + [anon_sym_LBRACE] = ACTIONS(5870), + [anon_sym_COMMA] = ACTIONS(5870), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(5872), + [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5872), + [anon_sym_QMARK] = ACTIONS(5870), + [anon_sym_STAR] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5870), + [anon_sym_SEMI] = ACTIONS(5870), + [anon_sym_RBRACK] = ACTIONS(5870), + [anon_sym_void] = ACTIONS(5872), + [anon_sym_noreturn] = ACTIONS(5872), + [anon_sym_type] = ACTIONS(5872), + [anon_sym_anyopaque] = ACTIONS(5872), + [anon_sym_bool] = ACTIONS(5872), + [anon_sym_int] = ACTIONS(5872), + [anon_sym_uint] = ACTIONS(5872), + [anon_sym_float] = ACTIONS(5872), + [anon_sym_range] = ACTIONS(5872), + [anon_sym_i8] = ACTIONS(5872), + [anon_sym_i16] = ACTIONS(5872), + [anon_sym_i32] = ACTIONS(5872), + [anon_sym_i64] = ACTIONS(5872), + [anon_sym_u8] = ACTIONS(5872), + [anon_sym_u16] = ACTIONS(5872), + [anon_sym_u32] = ACTIONS(5872), + [anon_sym_u64] = ACTIONS(5872), + [anon_sym_isize] = ACTIONS(5872), + [anon_sym_usize] = ACTIONS(5872), + [anon_sym_f32] = ACTIONS(5872), + [anon_sym_f64] = ACTIONS(5872), + [anon_sym_c_char] = ACTIONS(5872), + [anon_sym_c_schar] = ACTIONS(5872), + [anon_sym_c_uchar] = ACTIONS(5872), + [anon_sym_c_short] = ACTIONS(5872), + [anon_sym_c_ushort] = ACTIONS(5872), + [anon_sym_c_int] = ACTIONS(5872), + [anon_sym_c_uint] = ACTIONS(5872), + [anon_sym_c_long] = ACTIONS(5872), + [anon_sym_c_ulong] = ACTIONS(5872), + [anon_sym_c_longlong] = ACTIONS(5872), + [anon_sym_c_ulonglong] = ACTIONS(5872), + [anon_sym_c_float] = ACTIONS(5872), + [anon_sym_c_double] = ACTIONS(5872), + [anon_sym_c_longdouble] = ACTIONS(5872), + [anon_sym_PLUS_EQ] = ACTIONS(5870), + [anon_sym_DASH_EQ] = ACTIONS(5870), + [anon_sym_STAR_EQ] = ACTIONS(5870), + [anon_sym_SLASH_EQ] = ACTIONS(5870), + [anon_sym_AMP_EQ] = ACTIONS(5870), + [anon_sym_PIPE_EQ] = ACTIONS(5870), + [anon_sym_xor_EQ] = ACTIONS(5870), + [anon_sym_LT_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_GT_EQ] = ACTIONS(5870), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5870), + [anon_sym_return] = ACTIONS(5872), + [anon_sym_yield] = ACTIONS(5872), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_break] = ACTIONS(5872), + [anon_sym_continue] = ACTIONS(5872), + [anon_sym_defer] = ACTIONS(5872), + [anon_sym_errdefer] = ACTIONS(5872), + [anon_sym_if] = ACTIONS(5872), + [anon_sym_else] = ACTIONS(5872), + [anon_sym_while] = ACTIONS(5872), + [anon_sym_expand] = ACTIONS(5872), + [anon_sym_for] = ACTIONS(5872), + [anon_sym_match] = ACTIONS(5872), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5870), + [anon_sym_orelse] = ACTIONS(5872), + [anon_sym_or] = ACTIONS(5872), + [anon_sym_and] = ACTIONS(5872), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_BANG_EQ] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5872), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5872), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_AMP] = ACTIONS(5872), + [anon_sym_xor] = ACTIONS(5872), + [anon_sym_LT_LT] = ACTIONS(5872), + [anon_sym_GT_GT] = ACTIONS(5872), + [anon_sym_LT_LT_PIPE] = ACTIONS(5872), + [anon_sym_PLUS] = ACTIONS(5872), + [anon_sym_SLASH] = ACTIONS(5872), + [anon_sym_catch] = ACTIONS(5872), + [anon_sym_TILDE] = ACTIONS(5870), + [anon_sym_try] = ACTIONS(5872), + [anon_sym_DOT] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5870), + [anon_sym_true] = ACTIONS(5872), + [anon_sym_false] = ACTIONS(5872), + [anon_sym_null] = ACTIONS(5872), + [anon_sym_unreachable] = ACTIONS(5872), + [anon_sym_undefined] = ACTIONS(5872), + [sym_sink] = ACTIONS(5872), + [sym_integer] = ACTIONS(5872), + [sym_float] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(5870), + [sym_multiline_string] = ACTIONS(5870), + [sym_character] = ACTIONS(5870), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5870), + }, + [STATE(2582)] = { + [ts_builtin_sym_end] = ACTIONS(5874), + [sym_identifier] = ACTIONS(5876), + [anon_sym_import] = ACTIONS(5876), + [anon_sym_test] = ACTIONS(5876), + [anon_sym_hide] = ACTIONS(5876), + [anon_sym_func] = ACTIONS(5876), + [anon_sym_BANG] = ACTIONS(5876), + [anon_sym_EQ] = ACTIONS(5876), + [anon_sym_struct] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(5874), + [anon_sym_RPAREN] = ACTIONS(5874), + [anon_sym_LBRACE] = ACTIONS(5874), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5876), + [anon_sym_DOLLAR] = ACTIONS(5874), + [anon_sym_PIPE] = ACTIONS(5876), + [anon_sym_QMARK] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(5874), + [anon_sym_SEMI] = ACTIONS(5874), + [anon_sym_RBRACK] = ACTIONS(5874), + [anon_sym_void] = ACTIONS(5876), + [anon_sym_noreturn] = ACTIONS(5876), + [anon_sym_type] = ACTIONS(5876), + [anon_sym_anyopaque] = ACTIONS(5876), + [anon_sym_bool] = ACTIONS(5876), + [anon_sym_int] = ACTIONS(5876), + [anon_sym_uint] = ACTIONS(5876), + [anon_sym_float] = ACTIONS(5876), + [anon_sym_range] = ACTIONS(5876), + [anon_sym_i8] = ACTIONS(5876), + [anon_sym_i16] = ACTIONS(5876), + [anon_sym_i32] = ACTIONS(5876), + [anon_sym_i64] = ACTIONS(5876), + [anon_sym_u8] = ACTIONS(5876), + [anon_sym_u16] = ACTIONS(5876), + [anon_sym_u32] = ACTIONS(5876), + [anon_sym_u64] = ACTIONS(5876), + [anon_sym_isize] = ACTIONS(5876), + [anon_sym_usize] = ACTIONS(5876), + [anon_sym_f32] = ACTIONS(5876), + [anon_sym_f64] = ACTIONS(5876), + [anon_sym_c_char] = ACTIONS(5876), + [anon_sym_c_schar] = ACTIONS(5876), + [anon_sym_c_uchar] = ACTIONS(5876), + [anon_sym_c_short] = ACTIONS(5876), + [anon_sym_c_ushort] = ACTIONS(5876), + [anon_sym_c_int] = ACTIONS(5876), + [anon_sym_c_uint] = ACTIONS(5876), + [anon_sym_c_long] = ACTIONS(5876), + [anon_sym_c_ulong] = ACTIONS(5876), + [anon_sym_c_longlong] = ACTIONS(5876), + [anon_sym_c_ulonglong] = ACTIONS(5876), + [anon_sym_c_float] = ACTIONS(5876), + [anon_sym_c_double] = ACTIONS(5876), + [anon_sym_c_longdouble] = ACTIONS(5876), + [anon_sym_PLUS_EQ] = ACTIONS(5874), + [anon_sym_DASH_EQ] = ACTIONS(5874), + [anon_sym_STAR_EQ] = ACTIONS(5874), + [anon_sym_SLASH_EQ] = ACTIONS(5874), + [anon_sym_AMP_EQ] = ACTIONS(5874), + [anon_sym_PIPE_EQ] = ACTIONS(5874), + [anon_sym_xor_EQ] = ACTIONS(5874), + [anon_sym_LT_LT_EQ] = ACTIONS(5874), + [anon_sym_GT_GT_EQ] = ACTIONS(5874), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5874), + [anon_sym_return] = ACTIONS(5876), + [anon_sym_yield] = ACTIONS(5876), + [anon_sym_COLON] = ACTIONS(5874), + [anon_sym_break] = ACTIONS(5876), + [anon_sym_continue] = ACTIONS(5876), + [anon_sym_defer] = ACTIONS(5876), + [anon_sym_errdefer] = ACTIONS(5876), + [anon_sym_if] = ACTIONS(5876), + [anon_sym_else] = ACTIONS(5876), + [anon_sym_while] = ACTIONS(5876), + [anon_sym_expand] = ACTIONS(5876), + [anon_sym_for] = ACTIONS(5876), + [anon_sym_match] = ACTIONS(5876), + [anon_sym_DOT_DOT] = ACTIONS(5876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5874), + [anon_sym_orelse] = ACTIONS(5876), + [anon_sym_or] = ACTIONS(5876), + [anon_sym_and] = ACTIONS(5876), + [anon_sym_EQ_EQ] = ACTIONS(5874), + [anon_sym_BANG_EQ] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(5876), + [anon_sym_LT_EQ] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5876), + [anon_sym_GT_EQ] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5876), + [anon_sym_xor] = ACTIONS(5876), + [anon_sym_LT_LT] = ACTIONS(5876), + [anon_sym_GT_GT] = ACTIONS(5876), + [anon_sym_LT_LT_PIPE] = ACTIONS(5876), + [anon_sym_PLUS] = ACTIONS(5876), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_catch] = ACTIONS(5876), + [anon_sym_TILDE] = ACTIONS(5874), + [anon_sym_try] = ACTIONS(5876), + [anon_sym_DOT] = ACTIONS(5876), + [anon_sym_CARET] = ACTIONS(5874), + [anon_sym_true] = ACTIONS(5876), + [anon_sym_false] = ACTIONS(5876), + [anon_sym_null] = ACTIONS(5876), + [anon_sym_unreachable] = ACTIONS(5876), + [anon_sym_undefined] = ACTIONS(5876), + [sym_sink] = ACTIONS(5876), + [sym_integer] = ACTIONS(5876), + [sym_float] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(5874), + [sym_multiline_string] = ACTIONS(5874), + [sym_character] = ACTIONS(5874), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5874), + }, + [STATE(2583)] = { + [ts_builtin_sym_end] = ACTIONS(5878), + [sym_identifier] = ACTIONS(5880), + [anon_sym_import] = ACTIONS(5880), + [anon_sym_test] = ACTIONS(5880), + [anon_sym_hide] = ACTIONS(5880), + [anon_sym_func] = ACTIONS(5880), + [anon_sym_BANG] = ACTIONS(5880), + [anon_sym_EQ] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_LPAREN] = ACTIONS(5878), + [anon_sym_RPAREN] = ACTIONS(5878), + [anon_sym_LBRACE] = ACTIONS(5878), + [anon_sym_COMMA] = ACTIONS(5878), + [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(5880), + [anon_sym_DOLLAR] = ACTIONS(5878), + [anon_sym_PIPE] = ACTIONS(5880), + [anon_sym_QMARK] = ACTIONS(5878), + [anon_sym_STAR] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5878), + [anon_sym_SEMI] = ACTIONS(5878), + [anon_sym_RBRACK] = ACTIONS(5878), + [anon_sym_void] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_type] = ACTIONS(5880), + [anon_sym_anyopaque] = ACTIONS(5880), + [anon_sym_bool] = ACTIONS(5880), + [anon_sym_int] = ACTIONS(5880), + [anon_sym_uint] = ACTIONS(5880), + [anon_sym_float] = ACTIONS(5880), + [anon_sym_range] = ACTIONS(5880), + [anon_sym_i8] = ACTIONS(5880), + [anon_sym_i16] = ACTIONS(5880), + [anon_sym_i32] = ACTIONS(5880), + [anon_sym_i64] = ACTIONS(5880), + [anon_sym_u8] = ACTIONS(5880), + [anon_sym_u16] = ACTIONS(5880), + [anon_sym_u32] = ACTIONS(5880), + [anon_sym_u64] = ACTIONS(5880), + [anon_sym_isize] = ACTIONS(5880), + [anon_sym_usize] = ACTIONS(5880), + [anon_sym_f32] = ACTIONS(5880), + [anon_sym_f64] = ACTIONS(5880), + [anon_sym_c_char] = ACTIONS(5880), + [anon_sym_c_schar] = ACTIONS(5880), + [anon_sym_c_uchar] = ACTIONS(5880), + [anon_sym_c_short] = ACTIONS(5880), + [anon_sym_c_ushort] = ACTIONS(5880), + [anon_sym_c_int] = ACTIONS(5880), + [anon_sym_c_uint] = ACTIONS(5880), + [anon_sym_c_long] = ACTIONS(5880), + [anon_sym_c_ulong] = ACTIONS(5880), + [anon_sym_c_longlong] = ACTIONS(5880), + [anon_sym_c_ulonglong] = ACTIONS(5880), + [anon_sym_c_float] = ACTIONS(5880), + [anon_sym_c_double] = ACTIONS(5880), + [anon_sym_c_longdouble] = ACTIONS(5880), + [anon_sym_PLUS_EQ] = ACTIONS(5878), + [anon_sym_DASH_EQ] = ACTIONS(5878), + [anon_sym_STAR_EQ] = ACTIONS(5878), + [anon_sym_SLASH_EQ] = ACTIONS(5878), + [anon_sym_AMP_EQ] = ACTIONS(5878), + [anon_sym_PIPE_EQ] = ACTIONS(5878), + [anon_sym_xor_EQ] = ACTIONS(5878), + [anon_sym_LT_LT_EQ] = ACTIONS(5878), + [anon_sym_GT_GT_EQ] = ACTIONS(5878), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5878), + [anon_sym_return] = ACTIONS(5880), + [anon_sym_yield] = ACTIONS(5880), + [anon_sym_COLON] = ACTIONS(5878), + [anon_sym_break] = ACTIONS(5880), + [anon_sym_continue] = ACTIONS(5880), + [anon_sym_defer] = ACTIONS(5880), + [anon_sym_errdefer] = ACTIONS(5880), + [anon_sym_if] = ACTIONS(5880), + [anon_sym_else] = ACTIONS(5880), + [anon_sym_while] = ACTIONS(5880), + [anon_sym_expand] = ACTIONS(5880), + [anon_sym_for] = ACTIONS(5880), + [anon_sym_match] = ACTIONS(5880), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5878), + [anon_sym_orelse] = ACTIONS(5880), + [anon_sym_or] = ACTIONS(5880), + [anon_sym_and] = ACTIONS(5880), + [anon_sym_EQ_EQ] = ACTIONS(5878), + [anon_sym_BANG_EQ] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(5880), + [anon_sym_LT_EQ] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5880), + [anon_sym_GT_EQ] = ACTIONS(5878), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym_xor] = ACTIONS(5880), + [anon_sym_LT_LT] = ACTIONS(5880), + [anon_sym_GT_GT] = ACTIONS(5880), + [anon_sym_LT_LT_PIPE] = ACTIONS(5880), + [anon_sym_PLUS] = ACTIONS(5880), + [anon_sym_SLASH] = ACTIONS(5880), + [anon_sym_catch] = ACTIONS(5880), + [anon_sym_TILDE] = ACTIONS(5878), + [anon_sym_try] = ACTIONS(5880), + [anon_sym_DOT] = ACTIONS(5880), + [anon_sym_CARET] = ACTIONS(5878), + [anon_sym_true] = ACTIONS(5880), + [anon_sym_false] = ACTIONS(5880), + [anon_sym_null] = ACTIONS(5880), + [anon_sym_unreachable] = ACTIONS(5880), + [anon_sym_undefined] = ACTIONS(5880), + [sym_sink] = ACTIONS(5880), + [sym_integer] = ACTIONS(5880), + [sym_float] = ACTIONS(5878), + [anon_sym_DQUOTE] = ACTIONS(5878), + [sym_multiline_string] = ACTIONS(5878), + [sym_character] = ACTIONS(5878), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5878), + }, + [STATE(2584)] = { + [ts_builtin_sym_end] = ACTIONS(5882), + [sym_identifier] = ACTIONS(5884), + [anon_sym_import] = ACTIONS(5884), + [anon_sym_test] = ACTIONS(5884), + [anon_sym_hide] = ACTIONS(5884), + [anon_sym_func] = ACTIONS(5884), + [anon_sym_BANG] = ACTIONS(5884), + [anon_sym_EQ] = ACTIONS(5884), + [anon_sym_struct] = ACTIONS(5884), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_RPAREN] = ACTIONS(5882), + [anon_sym_LBRACE] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(5882), + [anon_sym_RBRACE] = ACTIONS(5882), + [anon_sym_DASH] = ACTIONS(5884), + [anon_sym_DOLLAR] = ACTIONS(5882), + [anon_sym_PIPE] = ACTIONS(5884), + [anon_sym_QMARK] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(5882), + [anon_sym_SEMI] = ACTIONS(5882), + [anon_sym_RBRACK] = ACTIONS(5882), + [anon_sym_void] = ACTIONS(5884), + [anon_sym_noreturn] = ACTIONS(5884), + [anon_sym_type] = ACTIONS(5884), + [anon_sym_anyopaque] = ACTIONS(5884), + [anon_sym_bool] = ACTIONS(5884), + [anon_sym_int] = ACTIONS(5884), + [anon_sym_uint] = ACTIONS(5884), + [anon_sym_float] = ACTIONS(5884), + [anon_sym_range] = ACTIONS(5884), + [anon_sym_i8] = ACTIONS(5884), + [anon_sym_i16] = ACTIONS(5884), + [anon_sym_i32] = ACTIONS(5884), + [anon_sym_i64] = ACTIONS(5884), + [anon_sym_u8] = ACTIONS(5884), + [anon_sym_u16] = ACTIONS(5884), + [anon_sym_u32] = ACTIONS(5884), + [anon_sym_u64] = ACTIONS(5884), + [anon_sym_isize] = ACTIONS(5884), + [anon_sym_usize] = ACTIONS(5884), + [anon_sym_f32] = ACTIONS(5884), + [anon_sym_f64] = ACTIONS(5884), + [anon_sym_c_char] = ACTIONS(5884), + [anon_sym_c_schar] = ACTIONS(5884), + [anon_sym_c_uchar] = ACTIONS(5884), + [anon_sym_c_short] = ACTIONS(5884), + [anon_sym_c_ushort] = ACTIONS(5884), + [anon_sym_c_int] = ACTIONS(5884), + [anon_sym_c_uint] = ACTIONS(5884), + [anon_sym_c_long] = ACTIONS(5884), + [anon_sym_c_ulong] = ACTIONS(5884), + [anon_sym_c_longlong] = ACTIONS(5884), + [anon_sym_c_ulonglong] = ACTIONS(5884), + [anon_sym_c_float] = ACTIONS(5884), + [anon_sym_c_double] = ACTIONS(5884), + [anon_sym_c_longdouble] = ACTIONS(5884), + [anon_sym_PLUS_EQ] = ACTIONS(5882), + [anon_sym_DASH_EQ] = ACTIONS(5882), + [anon_sym_STAR_EQ] = ACTIONS(5882), + [anon_sym_SLASH_EQ] = ACTIONS(5882), + [anon_sym_AMP_EQ] = ACTIONS(5882), + [anon_sym_PIPE_EQ] = ACTIONS(5882), + [anon_sym_xor_EQ] = ACTIONS(5882), + [anon_sym_LT_LT_EQ] = ACTIONS(5882), + [anon_sym_GT_GT_EQ] = ACTIONS(5882), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5882), + [anon_sym_return] = ACTIONS(5884), + [anon_sym_yield] = ACTIONS(5884), + [anon_sym_COLON] = ACTIONS(5882), + [anon_sym_break] = ACTIONS(5884), + [anon_sym_continue] = ACTIONS(5884), + [anon_sym_defer] = ACTIONS(5884), + [anon_sym_errdefer] = ACTIONS(5884), + [anon_sym_if] = ACTIONS(5884), + [anon_sym_else] = ACTIONS(5884), + [anon_sym_while] = ACTIONS(5884), + [anon_sym_expand] = ACTIONS(5884), + [anon_sym_for] = ACTIONS(5884), + [anon_sym_match] = ACTIONS(5884), + [anon_sym_DOT_DOT] = ACTIONS(5884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5882), + [anon_sym_orelse] = ACTIONS(5884), + [anon_sym_or] = ACTIONS(5884), + [anon_sym_and] = ACTIONS(5884), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_BANG_EQ] = ACTIONS(5882), + [anon_sym_LT] = ACTIONS(5884), + [anon_sym_LT_EQ] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5884), + [anon_sym_GT_EQ] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5884), + [anon_sym_xor] = ACTIONS(5884), + [anon_sym_LT_LT] = ACTIONS(5884), + [anon_sym_GT_GT] = ACTIONS(5884), + [anon_sym_LT_LT_PIPE] = ACTIONS(5884), + [anon_sym_PLUS] = ACTIONS(5884), + [anon_sym_SLASH] = ACTIONS(5884), + [anon_sym_catch] = ACTIONS(5884), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_try] = ACTIONS(5884), + [anon_sym_DOT] = ACTIONS(5884), + [anon_sym_CARET] = ACTIONS(5882), + [anon_sym_true] = ACTIONS(5884), + [anon_sym_false] = ACTIONS(5884), + [anon_sym_null] = ACTIONS(5884), + [anon_sym_unreachable] = ACTIONS(5884), + [anon_sym_undefined] = ACTIONS(5884), + [sym_sink] = ACTIONS(5884), + [sym_integer] = ACTIONS(5884), + [sym_float] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(5882), + [sym_multiline_string] = ACTIONS(5882), + [sym_character] = ACTIONS(5882), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5882), + }, + [STATE(2585)] = { + [ts_builtin_sym_end] = ACTIONS(5886), + [sym_identifier] = ACTIONS(5888), + [anon_sym_import] = ACTIONS(5888), + [anon_sym_test] = ACTIONS(5888), + [anon_sym_hide] = ACTIONS(5888), + [anon_sym_func] = ACTIONS(5888), + [anon_sym_BANG] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_LPAREN] = ACTIONS(5886), + [anon_sym_RPAREN] = ACTIONS(5886), + [anon_sym_LBRACE] = ACTIONS(5886), + [anon_sym_COMMA] = ACTIONS(5886), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_DASH] = ACTIONS(5888), + [anon_sym_DOLLAR] = ACTIONS(5886), + [anon_sym_PIPE] = ACTIONS(5888), + [anon_sym_QMARK] = ACTIONS(5886), + [anon_sym_STAR] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5886), + [anon_sym_SEMI] = ACTIONS(5886), + [anon_sym_RBRACK] = ACTIONS(5886), + [anon_sym_void] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_type] = ACTIONS(5888), + [anon_sym_anyopaque] = ACTIONS(5888), + [anon_sym_bool] = ACTIONS(5888), + [anon_sym_int] = ACTIONS(5888), + [anon_sym_uint] = ACTIONS(5888), + [anon_sym_float] = ACTIONS(5888), + [anon_sym_range] = ACTIONS(5888), + [anon_sym_i8] = ACTIONS(5888), + [anon_sym_i16] = ACTIONS(5888), + [anon_sym_i32] = ACTIONS(5888), + [anon_sym_i64] = ACTIONS(5888), + [anon_sym_u8] = ACTIONS(5888), + [anon_sym_u16] = ACTIONS(5888), + [anon_sym_u32] = ACTIONS(5888), + [anon_sym_u64] = ACTIONS(5888), + [anon_sym_isize] = ACTIONS(5888), + [anon_sym_usize] = ACTIONS(5888), + [anon_sym_f32] = ACTIONS(5888), + [anon_sym_f64] = ACTIONS(5888), + [anon_sym_c_char] = ACTIONS(5888), + [anon_sym_c_schar] = ACTIONS(5888), + [anon_sym_c_uchar] = ACTIONS(5888), + [anon_sym_c_short] = ACTIONS(5888), + [anon_sym_c_ushort] = ACTIONS(5888), + [anon_sym_c_int] = ACTIONS(5888), + [anon_sym_c_uint] = ACTIONS(5888), + [anon_sym_c_long] = ACTIONS(5888), + [anon_sym_c_ulong] = ACTIONS(5888), + [anon_sym_c_longlong] = ACTIONS(5888), + [anon_sym_c_ulonglong] = ACTIONS(5888), + [anon_sym_c_float] = ACTIONS(5888), + [anon_sym_c_double] = ACTIONS(5888), + [anon_sym_c_longdouble] = ACTIONS(5888), + [anon_sym_PLUS_EQ] = ACTIONS(5886), + [anon_sym_DASH_EQ] = ACTIONS(5886), + [anon_sym_STAR_EQ] = ACTIONS(5886), + [anon_sym_SLASH_EQ] = ACTIONS(5886), + [anon_sym_AMP_EQ] = ACTIONS(5886), + [anon_sym_PIPE_EQ] = ACTIONS(5886), + [anon_sym_xor_EQ] = ACTIONS(5886), + [anon_sym_LT_LT_EQ] = ACTIONS(5886), + [anon_sym_GT_GT_EQ] = ACTIONS(5886), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5886), + [anon_sym_return] = ACTIONS(5888), + [anon_sym_yield] = ACTIONS(5888), + [anon_sym_COLON] = ACTIONS(5886), + [anon_sym_break] = ACTIONS(5888), + [anon_sym_continue] = ACTIONS(5888), + [anon_sym_defer] = ACTIONS(5888), + [anon_sym_errdefer] = ACTIONS(5888), + [anon_sym_if] = ACTIONS(5888), + [anon_sym_else] = ACTIONS(5888), + [anon_sym_while] = ACTIONS(5888), + [anon_sym_expand] = ACTIONS(5888), + [anon_sym_for] = ACTIONS(5888), + [anon_sym_match] = ACTIONS(5888), + [anon_sym_DOT_DOT] = ACTIONS(5888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5886), + [anon_sym_orelse] = ACTIONS(5888), + [anon_sym_or] = ACTIONS(5888), + [anon_sym_and] = ACTIONS(5888), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_BANG_EQ] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(5888), + [anon_sym_LT_EQ] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5888), + [anon_sym_GT_EQ] = ACTIONS(5886), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym_xor] = ACTIONS(5888), + [anon_sym_LT_LT] = ACTIONS(5888), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_LT_LT_PIPE] = ACTIONS(5888), + [anon_sym_PLUS] = ACTIONS(5888), + [anon_sym_SLASH] = ACTIONS(5888), + [anon_sym_catch] = ACTIONS(5888), + [anon_sym_TILDE] = ACTIONS(5886), + [anon_sym_try] = ACTIONS(5888), + [anon_sym_DOT] = ACTIONS(5888), + [anon_sym_CARET] = ACTIONS(5886), + [anon_sym_true] = ACTIONS(5888), + [anon_sym_false] = ACTIONS(5888), + [anon_sym_null] = ACTIONS(5888), + [anon_sym_unreachable] = ACTIONS(5888), + [anon_sym_undefined] = ACTIONS(5888), + [sym_sink] = ACTIONS(5888), + [sym_integer] = ACTIONS(5888), + [sym_float] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(5886), + [sym_multiline_string] = ACTIONS(5886), + [sym_character] = ACTIONS(5886), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5886), + }, + [STATE(2586)] = { + [ts_builtin_sym_end] = ACTIONS(5890), + [sym_identifier] = ACTIONS(5892), + [anon_sym_import] = ACTIONS(5892), + [anon_sym_test] = ACTIONS(5892), + [anon_sym_hide] = ACTIONS(5892), + [anon_sym_func] = ACTIONS(5892), + [anon_sym_BANG] = ACTIONS(5892), + [anon_sym_EQ] = ACTIONS(5892), + [anon_sym_struct] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5890), + [anon_sym_RPAREN] = ACTIONS(5890), + [anon_sym_LBRACE] = ACTIONS(5890), + [anon_sym_COMMA] = ACTIONS(5890), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym_DASH] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5890), + [anon_sym_PIPE] = ACTIONS(5892), + [anon_sym_QMARK] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(5890), + [anon_sym_SEMI] = ACTIONS(5890), + [anon_sym_RBRACK] = ACTIONS(5890), + [anon_sym_void] = ACTIONS(5892), + [anon_sym_noreturn] = ACTIONS(5892), + [anon_sym_type] = ACTIONS(5892), + [anon_sym_anyopaque] = ACTIONS(5892), + [anon_sym_bool] = ACTIONS(5892), + [anon_sym_int] = ACTIONS(5892), + [anon_sym_uint] = ACTIONS(5892), + [anon_sym_float] = ACTIONS(5892), + [anon_sym_range] = ACTIONS(5892), + [anon_sym_i8] = ACTIONS(5892), + [anon_sym_i16] = ACTIONS(5892), + [anon_sym_i32] = ACTIONS(5892), + [anon_sym_i64] = ACTIONS(5892), + [anon_sym_u8] = ACTIONS(5892), + [anon_sym_u16] = ACTIONS(5892), + [anon_sym_u32] = ACTIONS(5892), + [anon_sym_u64] = ACTIONS(5892), + [anon_sym_isize] = ACTIONS(5892), + [anon_sym_usize] = ACTIONS(5892), + [anon_sym_f32] = ACTIONS(5892), + [anon_sym_f64] = ACTIONS(5892), + [anon_sym_c_char] = ACTIONS(5892), + [anon_sym_c_schar] = ACTIONS(5892), + [anon_sym_c_uchar] = ACTIONS(5892), + [anon_sym_c_short] = ACTIONS(5892), + [anon_sym_c_ushort] = ACTIONS(5892), + [anon_sym_c_int] = ACTIONS(5892), + [anon_sym_c_uint] = ACTIONS(5892), + [anon_sym_c_long] = ACTIONS(5892), + [anon_sym_c_ulong] = ACTIONS(5892), + [anon_sym_c_longlong] = ACTIONS(5892), + [anon_sym_c_ulonglong] = ACTIONS(5892), + [anon_sym_c_float] = ACTIONS(5892), + [anon_sym_c_double] = ACTIONS(5892), + [anon_sym_c_longdouble] = ACTIONS(5892), + [anon_sym_PLUS_EQ] = ACTIONS(5890), + [anon_sym_DASH_EQ] = ACTIONS(5890), + [anon_sym_STAR_EQ] = ACTIONS(5890), + [anon_sym_SLASH_EQ] = ACTIONS(5890), + [anon_sym_AMP_EQ] = ACTIONS(5890), + [anon_sym_PIPE_EQ] = ACTIONS(5890), + [anon_sym_xor_EQ] = ACTIONS(5890), + [anon_sym_LT_LT_EQ] = ACTIONS(5890), + [anon_sym_GT_GT_EQ] = ACTIONS(5890), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5890), + [anon_sym_return] = ACTIONS(5892), + [anon_sym_yield] = ACTIONS(5892), + [anon_sym_COLON] = ACTIONS(5890), + [anon_sym_break] = ACTIONS(5892), + [anon_sym_continue] = ACTIONS(5892), + [anon_sym_defer] = ACTIONS(5892), + [anon_sym_errdefer] = ACTIONS(5892), + [anon_sym_if] = ACTIONS(5892), + [anon_sym_else] = ACTIONS(5892), + [anon_sym_while] = ACTIONS(5892), + [anon_sym_expand] = ACTIONS(5892), + [anon_sym_for] = ACTIONS(5892), + [anon_sym_match] = ACTIONS(5892), + [anon_sym_DOT_DOT] = ACTIONS(5892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5890), + [anon_sym_orelse] = ACTIONS(5892), + [anon_sym_or] = ACTIONS(5892), + [anon_sym_and] = ACTIONS(5892), + [anon_sym_EQ_EQ] = ACTIONS(5890), + [anon_sym_BANG_EQ] = ACTIONS(5890), + [anon_sym_LT] = ACTIONS(5892), + [anon_sym_LT_EQ] = ACTIONS(5890), + [anon_sym_GT] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_xor] = ACTIONS(5892), + [anon_sym_LT_LT] = ACTIONS(5892), + [anon_sym_GT_GT] = ACTIONS(5892), + [anon_sym_LT_LT_PIPE] = ACTIONS(5892), + [anon_sym_PLUS] = ACTIONS(5892), + [anon_sym_SLASH] = ACTIONS(5892), + [anon_sym_catch] = ACTIONS(5892), + [anon_sym_TILDE] = ACTIONS(5890), + [anon_sym_try] = ACTIONS(5892), + [anon_sym_DOT] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5890), + [anon_sym_true] = ACTIONS(5892), + [anon_sym_false] = ACTIONS(5892), + [anon_sym_null] = ACTIONS(5892), + [anon_sym_unreachable] = ACTIONS(5892), + [anon_sym_undefined] = ACTIONS(5892), + [sym_sink] = ACTIONS(5892), + [sym_integer] = ACTIONS(5892), + [sym_float] = ACTIONS(5890), + [anon_sym_DQUOTE] = ACTIONS(5890), + [sym_multiline_string] = ACTIONS(5890), + [sym_character] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5890), + }, + [STATE(2587)] = { + [ts_builtin_sym_end] = ACTIONS(5894), + [sym_identifier] = ACTIONS(5896), + [anon_sym_import] = ACTIONS(5896), + [anon_sym_test] = ACTIONS(5896), + [anon_sym_hide] = ACTIONS(5896), + [anon_sym_func] = ACTIONS(5896), + [anon_sym_BANG] = ACTIONS(5896), + [anon_sym_EQ] = ACTIONS(5896), + [anon_sym_struct] = ACTIONS(5896), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_RPAREN] = ACTIONS(5894), + [anon_sym_LBRACE] = ACTIONS(5894), + [anon_sym_COMMA] = ACTIONS(5894), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_DOLLAR] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_QMARK] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5896), + [anon_sym_LBRACK] = ACTIONS(5894), + [anon_sym_SEMI] = ACTIONS(5894), + [anon_sym_RBRACK] = ACTIONS(5894), + [anon_sym_void] = ACTIONS(5896), + [anon_sym_noreturn] = ACTIONS(5896), + [anon_sym_type] = ACTIONS(5896), + [anon_sym_anyopaque] = ACTIONS(5896), + [anon_sym_bool] = ACTIONS(5896), + [anon_sym_int] = ACTIONS(5896), + [anon_sym_uint] = ACTIONS(5896), + [anon_sym_float] = ACTIONS(5896), + [anon_sym_range] = ACTIONS(5896), + [anon_sym_i8] = ACTIONS(5896), + [anon_sym_i16] = ACTIONS(5896), + [anon_sym_i32] = ACTIONS(5896), + [anon_sym_i64] = ACTIONS(5896), + [anon_sym_u8] = ACTIONS(5896), + [anon_sym_u16] = ACTIONS(5896), + [anon_sym_u32] = ACTIONS(5896), + [anon_sym_u64] = ACTIONS(5896), + [anon_sym_isize] = ACTIONS(5896), + [anon_sym_usize] = ACTIONS(5896), + [anon_sym_f32] = ACTIONS(5896), + [anon_sym_f64] = ACTIONS(5896), + [anon_sym_c_char] = ACTIONS(5896), + [anon_sym_c_schar] = ACTIONS(5896), + [anon_sym_c_uchar] = ACTIONS(5896), + [anon_sym_c_short] = ACTIONS(5896), + [anon_sym_c_ushort] = ACTIONS(5896), + [anon_sym_c_int] = ACTIONS(5896), + [anon_sym_c_uint] = ACTIONS(5896), + [anon_sym_c_long] = ACTIONS(5896), + [anon_sym_c_ulong] = ACTIONS(5896), + [anon_sym_c_longlong] = ACTIONS(5896), + [anon_sym_c_ulonglong] = ACTIONS(5896), + [anon_sym_c_float] = ACTIONS(5896), + [anon_sym_c_double] = ACTIONS(5896), + [anon_sym_c_longdouble] = ACTIONS(5896), + [anon_sym_PLUS_EQ] = ACTIONS(5894), + [anon_sym_DASH_EQ] = ACTIONS(5894), + [anon_sym_STAR_EQ] = ACTIONS(5894), + [anon_sym_SLASH_EQ] = ACTIONS(5894), + [anon_sym_AMP_EQ] = ACTIONS(5894), + [anon_sym_PIPE_EQ] = ACTIONS(5894), + [anon_sym_xor_EQ] = ACTIONS(5894), + [anon_sym_LT_LT_EQ] = ACTIONS(5894), + [anon_sym_GT_GT_EQ] = ACTIONS(5894), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5894), + [anon_sym_return] = ACTIONS(5896), + [anon_sym_yield] = ACTIONS(5896), + [anon_sym_COLON] = ACTIONS(5894), + [anon_sym_break] = ACTIONS(5896), + [anon_sym_continue] = ACTIONS(5896), + [anon_sym_defer] = ACTIONS(5896), + [anon_sym_errdefer] = ACTIONS(5896), + [anon_sym_if] = ACTIONS(5896), + [anon_sym_else] = ACTIONS(5896), + [anon_sym_while] = ACTIONS(5896), + [anon_sym_expand] = ACTIONS(5896), + [anon_sym_for] = ACTIONS(5896), + [anon_sym_match] = ACTIONS(5896), + [anon_sym_DOT_DOT] = ACTIONS(5896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5894), + [anon_sym_orelse] = ACTIONS(5896), + [anon_sym_or] = ACTIONS(5896), + [anon_sym_and] = ACTIONS(5896), + [anon_sym_EQ_EQ] = ACTIONS(5894), + [anon_sym_BANG_EQ] = ACTIONS(5894), + [anon_sym_LT] = ACTIONS(5896), + [anon_sym_LT_EQ] = ACTIONS(5894), + [anon_sym_GT] = ACTIONS(5896), + [anon_sym_GT_EQ] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(5896), + [anon_sym_xor] = ACTIONS(5896), + [anon_sym_LT_LT] = ACTIONS(5896), + [anon_sym_GT_GT] = ACTIONS(5896), + [anon_sym_LT_LT_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5896), + [anon_sym_catch] = ACTIONS(5896), + [anon_sym_TILDE] = ACTIONS(5894), + [anon_sym_try] = ACTIONS(5896), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_true] = ACTIONS(5896), + [anon_sym_false] = ACTIONS(5896), + [anon_sym_null] = ACTIONS(5896), + [anon_sym_unreachable] = ACTIONS(5896), + [anon_sym_undefined] = ACTIONS(5896), + [sym_sink] = ACTIONS(5896), + [sym_integer] = ACTIONS(5896), + [sym_float] = ACTIONS(5894), + [anon_sym_DQUOTE] = ACTIONS(5894), + [sym_multiline_string] = ACTIONS(5894), + [sym_character] = ACTIONS(5894), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5894), + }, + [STATE(2588)] = { + [ts_builtin_sym_end] = ACTIONS(5898), + [sym_identifier] = ACTIONS(5900), + [anon_sym_import] = ACTIONS(5900), + [anon_sym_test] = ACTIONS(5900), + [anon_sym_hide] = ACTIONS(5900), + [anon_sym_func] = ACTIONS(5900), + [anon_sym_BANG] = ACTIONS(5900), + [anon_sym_EQ] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_LPAREN] = ACTIONS(5898), + [anon_sym_RPAREN] = ACTIONS(5898), + [anon_sym_LBRACE] = ACTIONS(5898), + [anon_sym_COMMA] = ACTIONS(5898), + [anon_sym_RBRACE] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_DOLLAR] = ACTIONS(5898), + [anon_sym_PIPE] = ACTIONS(5900), + [anon_sym_QMARK] = ACTIONS(5898), + [anon_sym_STAR] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5898), + [anon_sym_SEMI] = ACTIONS(5898), + [anon_sym_RBRACK] = ACTIONS(5898), + [anon_sym_void] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_type] = ACTIONS(5900), + [anon_sym_anyopaque] = ACTIONS(5900), + [anon_sym_bool] = ACTIONS(5900), + [anon_sym_int] = ACTIONS(5900), + [anon_sym_uint] = ACTIONS(5900), + [anon_sym_float] = ACTIONS(5900), + [anon_sym_range] = ACTIONS(5900), + [anon_sym_i8] = ACTIONS(5900), + [anon_sym_i16] = ACTIONS(5900), + [anon_sym_i32] = ACTIONS(5900), + [anon_sym_i64] = ACTIONS(5900), + [anon_sym_u8] = ACTIONS(5900), + [anon_sym_u16] = ACTIONS(5900), + [anon_sym_u32] = ACTIONS(5900), + [anon_sym_u64] = ACTIONS(5900), + [anon_sym_isize] = ACTIONS(5900), + [anon_sym_usize] = ACTIONS(5900), + [anon_sym_f32] = ACTIONS(5900), + [anon_sym_f64] = ACTIONS(5900), + [anon_sym_c_char] = ACTIONS(5900), + [anon_sym_c_schar] = ACTIONS(5900), + [anon_sym_c_uchar] = ACTIONS(5900), + [anon_sym_c_short] = ACTIONS(5900), + [anon_sym_c_ushort] = ACTIONS(5900), + [anon_sym_c_int] = ACTIONS(5900), + [anon_sym_c_uint] = ACTIONS(5900), + [anon_sym_c_long] = ACTIONS(5900), + [anon_sym_c_ulong] = ACTIONS(5900), + [anon_sym_c_longlong] = ACTIONS(5900), + [anon_sym_c_ulonglong] = ACTIONS(5900), + [anon_sym_c_float] = ACTIONS(5900), + [anon_sym_c_double] = ACTIONS(5900), + [anon_sym_c_longdouble] = ACTIONS(5900), + [anon_sym_PLUS_EQ] = ACTIONS(5898), + [anon_sym_DASH_EQ] = ACTIONS(5898), + [anon_sym_STAR_EQ] = ACTIONS(5898), + [anon_sym_SLASH_EQ] = ACTIONS(5898), + [anon_sym_AMP_EQ] = ACTIONS(5898), + [anon_sym_PIPE_EQ] = ACTIONS(5898), + [anon_sym_xor_EQ] = ACTIONS(5898), + [anon_sym_LT_LT_EQ] = ACTIONS(5898), + [anon_sym_GT_GT_EQ] = ACTIONS(5898), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5898), + [anon_sym_return] = ACTIONS(5900), + [anon_sym_yield] = ACTIONS(5900), + [anon_sym_COLON] = ACTIONS(5898), + [anon_sym_break] = ACTIONS(5900), + [anon_sym_continue] = ACTIONS(5900), + [anon_sym_defer] = ACTIONS(5900), + [anon_sym_errdefer] = ACTIONS(5900), + [anon_sym_if] = ACTIONS(5900), + [anon_sym_else] = ACTIONS(5900), + [anon_sym_while] = ACTIONS(5900), + [anon_sym_expand] = ACTIONS(5900), + [anon_sym_for] = ACTIONS(5900), + [anon_sym_match] = ACTIONS(5900), + [anon_sym_DOT_DOT] = ACTIONS(5900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5898), + [anon_sym_orelse] = ACTIONS(5900), + [anon_sym_or] = ACTIONS(5900), + [anon_sym_and] = ACTIONS(5900), + [anon_sym_EQ_EQ] = ACTIONS(5898), + [anon_sym_BANG_EQ] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(5900), + [anon_sym_LT_EQ] = ACTIONS(5898), + [anon_sym_GT] = ACTIONS(5900), + [anon_sym_GT_EQ] = ACTIONS(5898), + [anon_sym_AMP] = ACTIONS(5900), + [anon_sym_xor] = ACTIONS(5900), + [anon_sym_LT_LT] = ACTIONS(5900), + [anon_sym_GT_GT] = ACTIONS(5900), + [anon_sym_LT_LT_PIPE] = ACTIONS(5900), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_SLASH] = ACTIONS(5900), + [anon_sym_catch] = ACTIONS(5900), + [anon_sym_TILDE] = ACTIONS(5898), + [anon_sym_try] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5900), + [anon_sym_CARET] = ACTIONS(5898), + [anon_sym_true] = ACTIONS(5900), + [anon_sym_false] = ACTIONS(5900), + [anon_sym_null] = ACTIONS(5900), + [anon_sym_unreachable] = ACTIONS(5900), + [anon_sym_undefined] = ACTIONS(5900), + [sym_sink] = ACTIONS(5900), + [sym_integer] = ACTIONS(5900), + [sym_float] = ACTIONS(5898), + [anon_sym_DQUOTE] = ACTIONS(5898), + [sym_multiline_string] = ACTIONS(5898), + [sym_character] = ACTIONS(5898), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5898), + }, + [STATE(2589)] = { + [ts_builtin_sym_end] = ACTIONS(5902), + [sym_identifier] = ACTIONS(5904), + [anon_sym_import] = ACTIONS(5904), + [anon_sym_test] = ACTIONS(5904), + [anon_sym_hide] = ACTIONS(5904), + [anon_sym_func] = ACTIONS(5904), + [anon_sym_BANG] = ACTIONS(5904), + [anon_sym_EQ] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_LPAREN] = ACTIONS(5902), + [anon_sym_RPAREN] = ACTIONS(5902), + [anon_sym_LBRACE] = ACTIONS(5902), + [anon_sym_COMMA] = ACTIONS(5902), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_DASH] = ACTIONS(5904), + [anon_sym_DOLLAR] = ACTIONS(5902), + [anon_sym_PIPE] = ACTIONS(5904), + [anon_sym_QMARK] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(5902), + [anon_sym_SEMI] = ACTIONS(5902), + [anon_sym_RBRACK] = ACTIONS(5902), + [anon_sym_void] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_type] = ACTIONS(5904), + [anon_sym_anyopaque] = ACTIONS(5904), + [anon_sym_bool] = ACTIONS(5904), + [anon_sym_int] = ACTIONS(5904), + [anon_sym_uint] = ACTIONS(5904), + [anon_sym_float] = ACTIONS(5904), + [anon_sym_range] = ACTIONS(5904), + [anon_sym_i8] = ACTIONS(5904), + [anon_sym_i16] = ACTIONS(5904), + [anon_sym_i32] = ACTIONS(5904), + [anon_sym_i64] = ACTIONS(5904), + [anon_sym_u8] = ACTIONS(5904), + [anon_sym_u16] = ACTIONS(5904), + [anon_sym_u32] = ACTIONS(5904), + [anon_sym_u64] = ACTIONS(5904), + [anon_sym_isize] = ACTIONS(5904), + [anon_sym_usize] = ACTIONS(5904), + [anon_sym_f32] = ACTIONS(5904), + [anon_sym_f64] = ACTIONS(5904), + [anon_sym_c_char] = ACTIONS(5904), + [anon_sym_c_schar] = ACTIONS(5904), + [anon_sym_c_uchar] = ACTIONS(5904), + [anon_sym_c_short] = ACTIONS(5904), + [anon_sym_c_ushort] = ACTIONS(5904), + [anon_sym_c_int] = ACTIONS(5904), + [anon_sym_c_uint] = ACTIONS(5904), + [anon_sym_c_long] = ACTIONS(5904), + [anon_sym_c_ulong] = ACTIONS(5904), + [anon_sym_c_longlong] = ACTIONS(5904), + [anon_sym_c_ulonglong] = ACTIONS(5904), + [anon_sym_c_float] = ACTIONS(5904), + [anon_sym_c_double] = ACTIONS(5904), + [anon_sym_c_longdouble] = ACTIONS(5904), + [anon_sym_PLUS_EQ] = ACTIONS(5902), + [anon_sym_DASH_EQ] = ACTIONS(5902), + [anon_sym_STAR_EQ] = ACTIONS(5902), + [anon_sym_SLASH_EQ] = ACTIONS(5902), + [anon_sym_AMP_EQ] = ACTIONS(5902), + [anon_sym_PIPE_EQ] = ACTIONS(5902), + [anon_sym_xor_EQ] = ACTIONS(5902), + [anon_sym_LT_LT_EQ] = ACTIONS(5902), + [anon_sym_GT_GT_EQ] = ACTIONS(5902), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5902), + [anon_sym_return] = ACTIONS(5904), + [anon_sym_yield] = ACTIONS(5904), + [anon_sym_COLON] = ACTIONS(5902), + [anon_sym_break] = ACTIONS(5904), + [anon_sym_continue] = ACTIONS(5904), + [anon_sym_defer] = ACTIONS(5904), + [anon_sym_errdefer] = ACTIONS(5904), + [anon_sym_if] = ACTIONS(5904), + [anon_sym_else] = ACTIONS(5904), + [anon_sym_while] = ACTIONS(5904), + [anon_sym_expand] = ACTIONS(5904), + [anon_sym_for] = ACTIONS(5904), + [anon_sym_match] = ACTIONS(5904), + [anon_sym_DOT_DOT] = ACTIONS(5904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5902), + [anon_sym_orelse] = ACTIONS(5904), + [anon_sym_or] = ACTIONS(5904), + [anon_sym_and] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5902), + [anon_sym_BANG_EQ] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5904), + [anon_sym_LT_EQ] = ACTIONS(5902), + [anon_sym_GT] = ACTIONS(5904), + [anon_sym_GT_EQ] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5904), + [anon_sym_xor] = ACTIONS(5904), + [anon_sym_LT_LT] = ACTIONS(5904), + [anon_sym_GT_GT] = ACTIONS(5904), + [anon_sym_LT_LT_PIPE] = ACTIONS(5904), + [anon_sym_PLUS] = ACTIONS(5904), + [anon_sym_SLASH] = ACTIONS(5904), + [anon_sym_catch] = ACTIONS(5904), + [anon_sym_TILDE] = ACTIONS(5902), + [anon_sym_try] = ACTIONS(5904), + [anon_sym_DOT] = ACTIONS(5904), + [anon_sym_CARET] = ACTIONS(5902), + [anon_sym_true] = ACTIONS(5904), + [anon_sym_false] = ACTIONS(5904), + [anon_sym_null] = ACTIONS(5904), + [anon_sym_unreachable] = ACTIONS(5904), + [anon_sym_undefined] = ACTIONS(5904), + [sym_sink] = ACTIONS(5904), + [sym_integer] = ACTIONS(5904), + [sym_float] = ACTIONS(5902), + [anon_sym_DQUOTE] = ACTIONS(5902), + [sym_multiline_string] = ACTIONS(5902), + [sym_character] = ACTIONS(5902), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5902), + }, + [STATE(2590)] = { + [ts_builtin_sym_end] = ACTIONS(5906), + [sym_identifier] = ACTIONS(5908), + [anon_sym_import] = ACTIONS(5908), + [anon_sym_test] = ACTIONS(5908), + [anon_sym_hide] = ACTIONS(5908), + [anon_sym_func] = ACTIONS(5908), + [anon_sym_BANG] = ACTIONS(5908), + [anon_sym_EQ] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_LPAREN] = ACTIONS(5906), + [anon_sym_RPAREN] = ACTIONS(5906), + [anon_sym_LBRACE] = ACTIONS(5906), + [anon_sym_COMMA] = ACTIONS(5906), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(5908), + [anon_sym_DOLLAR] = ACTIONS(5906), + [anon_sym_PIPE] = ACTIONS(5908), + [anon_sym_QMARK] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5906), + [anon_sym_SEMI] = ACTIONS(5906), + [anon_sym_RBRACK] = ACTIONS(5906), + [anon_sym_void] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_type] = ACTIONS(5908), + [anon_sym_anyopaque] = ACTIONS(5908), + [anon_sym_bool] = ACTIONS(5908), + [anon_sym_int] = ACTIONS(5908), + [anon_sym_uint] = ACTIONS(5908), + [anon_sym_float] = ACTIONS(5908), + [anon_sym_range] = ACTIONS(5908), + [anon_sym_i8] = ACTIONS(5908), + [anon_sym_i16] = ACTIONS(5908), + [anon_sym_i32] = ACTIONS(5908), + [anon_sym_i64] = ACTIONS(5908), + [anon_sym_u8] = ACTIONS(5908), + [anon_sym_u16] = ACTIONS(5908), + [anon_sym_u32] = ACTIONS(5908), + [anon_sym_u64] = ACTIONS(5908), + [anon_sym_isize] = ACTIONS(5908), + [anon_sym_usize] = ACTIONS(5908), + [anon_sym_f32] = ACTIONS(5908), + [anon_sym_f64] = ACTIONS(5908), + [anon_sym_c_char] = ACTIONS(5908), + [anon_sym_c_schar] = ACTIONS(5908), + [anon_sym_c_uchar] = ACTIONS(5908), + [anon_sym_c_short] = ACTIONS(5908), + [anon_sym_c_ushort] = ACTIONS(5908), + [anon_sym_c_int] = ACTIONS(5908), + [anon_sym_c_uint] = ACTIONS(5908), + [anon_sym_c_long] = ACTIONS(5908), + [anon_sym_c_ulong] = ACTIONS(5908), + [anon_sym_c_longlong] = ACTIONS(5908), + [anon_sym_c_ulonglong] = ACTIONS(5908), + [anon_sym_c_float] = ACTIONS(5908), + [anon_sym_c_double] = ACTIONS(5908), + [anon_sym_c_longdouble] = ACTIONS(5908), + [anon_sym_PLUS_EQ] = ACTIONS(5906), + [anon_sym_DASH_EQ] = ACTIONS(5906), + [anon_sym_STAR_EQ] = ACTIONS(5906), + [anon_sym_SLASH_EQ] = ACTIONS(5906), + [anon_sym_AMP_EQ] = ACTIONS(5906), + [anon_sym_PIPE_EQ] = ACTIONS(5906), + [anon_sym_xor_EQ] = ACTIONS(5906), + [anon_sym_LT_LT_EQ] = ACTIONS(5906), + [anon_sym_GT_GT_EQ] = ACTIONS(5906), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5906), + [anon_sym_return] = ACTIONS(5908), + [anon_sym_yield] = ACTIONS(5908), + [anon_sym_COLON] = ACTIONS(5906), + [anon_sym_break] = ACTIONS(5908), + [anon_sym_continue] = ACTIONS(5908), + [anon_sym_defer] = ACTIONS(5908), + [anon_sym_errdefer] = ACTIONS(5908), + [anon_sym_if] = ACTIONS(5908), + [anon_sym_else] = ACTIONS(5908), + [anon_sym_while] = ACTIONS(5908), + [anon_sym_expand] = ACTIONS(5908), + [anon_sym_for] = ACTIONS(5908), + [anon_sym_match] = ACTIONS(5908), + [anon_sym_DOT_DOT] = ACTIONS(5908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5906), + [anon_sym_orelse] = ACTIONS(5908), + [anon_sym_or] = ACTIONS(5908), + [anon_sym_and] = ACTIONS(5908), + [anon_sym_EQ_EQ] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(5908), + [anon_sym_LT_EQ] = ACTIONS(5906), + [anon_sym_GT] = ACTIONS(5908), + [anon_sym_GT_EQ] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5908), + [anon_sym_xor] = ACTIONS(5908), + [anon_sym_LT_LT] = ACTIONS(5908), + [anon_sym_GT_GT] = ACTIONS(5908), + [anon_sym_LT_LT_PIPE] = ACTIONS(5908), + [anon_sym_PLUS] = ACTIONS(5908), + [anon_sym_SLASH] = ACTIONS(5908), + [anon_sym_catch] = ACTIONS(5908), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_try] = ACTIONS(5908), + [anon_sym_DOT] = ACTIONS(5908), + [anon_sym_CARET] = ACTIONS(5906), + [anon_sym_true] = ACTIONS(5908), + [anon_sym_false] = ACTIONS(5908), + [anon_sym_null] = ACTIONS(5908), + [anon_sym_unreachable] = ACTIONS(5908), + [anon_sym_undefined] = ACTIONS(5908), + [sym_sink] = ACTIONS(5908), + [sym_integer] = ACTIONS(5908), + [sym_float] = ACTIONS(5906), + [anon_sym_DQUOTE] = ACTIONS(5906), + [sym_multiline_string] = ACTIONS(5906), + [sym_character] = ACTIONS(5906), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5906), + }, + [STATE(2591)] = { + [ts_builtin_sym_end] = ACTIONS(5910), + [sym_identifier] = ACTIONS(5912), + [anon_sym_import] = ACTIONS(5912), + [anon_sym_test] = ACTIONS(5912), + [anon_sym_hide] = ACTIONS(5912), + [anon_sym_func] = ACTIONS(5912), + [anon_sym_BANG] = ACTIONS(5912), + [anon_sym_EQ] = ACTIONS(5912), + [anon_sym_struct] = ACTIONS(5912), + [anon_sym_LPAREN] = ACTIONS(5910), + [anon_sym_RPAREN] = ACTIONS(5910), + [anon_sym_LBRACE] = ACTIONS(5910), + [anon_sym_COMMA] = ACTIONS(5910), + [anon_sym_RBRACE] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5912), + [anon_sym_DOLLAR] = ACTIONS(5910), + [anon_sym_PIPE] = ACTIONS(5912), + [anon_sym_QMARK] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(5910), + [anon_sym_SEMI] = ACTIONS(5910), + [anon_sym_RBRACK] = ACTIONS(5910), + [anon_sym_void] = ACTIONS(5912), + [anon_sym_noreturn] = ACTIONS(5912), + [anon_sym_type] = ACTIONS(5912), + [anon_sym_anyopaque] = ACTIONS(5912), + [anon_sym_bool] = ACTIONS(5912), + [anon_sym_int] = ACTIONS(5912), + [anon_sym_uint] = ACTIONS(5912), + [anon_sym_float] = ACTIONS(5912), + [anon_sym_range] = ACTIONS(5912), + [anon_sym_i8] = ACTIONS(5912), + [anon_sym_i16] = ACTIONS(5912), + [anon_sym_i32] = ACTIONS(5912), + [anon_sym_i64] = ACTIONS(5912), + [anon_sym_u8] = ACTIONS(5912), + [anon_sym_u16] = ACTIONS(5912), + [anon_sym_u32] = ACTIONS(5912), + [anon_sym_u64] = ACTIONS(5912), + [anon_sym_isize] = ACTIONS(5912), + [anon_sym_usize] = ACTIONS(5912), + [anon_sym_f32] = ACTIONS(5912), + [anon_sym_f64] = ACTIONS(5912), + [anon_sym_c_char] = ACTIONS(5912), + [anon_sym_c_schar] = ACTIONS(5912), + [anon_sym_c_uchar] = ACTIONS(5912), + [anon_sym_c_short] = ACTIONS(5912), + [anon_sym_c_ushort] = ACTIONS(5912), + [anon_sym_c_int] = ACTIONS(5912), + [anon_sym_c_uint] = ACTIONS(5912), + [anon_sym_c_long] = ACTIONS(5912), + [anon_sym_c_ulong] = ACTIONS(5912), + [anon_sym_c_longlong] = ACTIONS(5912), + [anon_sym_c_ulonglong] = ACTIONS(5912), + [anon_sym_c_float] = ACTIONS(5912), + [anon_sym_c_double] = ACTIONS(5912), + [anon_sym_c_longdouble] = ACTIONS(5912), + [anon_sym_PLUS_EQ] = ACTIONS(5910), + [anon_sym_DASH_EQ] = ACTIONS(5910), + [anon_sym_STAR_EQ] = ACTIONS(5910), + [anon_sym_SLASH_EQ] = ACTIONS(5910), + [anon_sym_AMP_EQ] = ACTIONS(5910), + [anon_sym_PIPE_EQ] = ACTIONS(5910), + [anon_sym_xor_EQ] = ACTIONS(5910), + [anon_sym_LT_LT_EQ] = ACTIONS(5910), + [anon_sym_GT_GT_EQ] = ACTIONS(5910), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5910), + [anon_sym_return] = ACTIONS(5912), + [anon_sym_yield] = ACTIONS(5912), + [anon_sym_COLON] = ACTIONS(5910), + [anon_sym_break] = ACTIONS(5912), + [anon_sym_continue] = ACTIONS(5912), + [anon_sym_defer] = ACTIONS(5912), + [anon_sym_errdefer] = ACTIONS(5912), + [anon_sym_if] = ACTIONS(5912), + [anon_sym_else] = ACTIONS(5912), + [anon_sym_while] = ACTIONS(5912), + [anon_sym_expand] = ACTIONS(5912), + [anon_sym_for] = ACTIONS(5912), + [anon_sym_match] = ACTIONS(5912), + [anon_sym_DOT_DOT] = ACTIONS(5912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5910), + [anon_sym_orelse] = ACTIONS(5912), + [anon_sym_or] = ACTIONS(5912), + [anon_sym_and] = ACTIONS(5912), + [anon_sym_EQ_EQ] = ACTIONS(5910), + [anon_sym_BANG_EQ] = ACTIONS(5910), + [anon_sym_LT] = ACTIONS(5912), + [anon_sym_LT_EQ] = ACTIONS(5910), + [anon_sym_GT] = ACTIONS(5912), + [anon_sym_GT_EQ] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5912), + [anon_sym_xor] = ACTIONS(5912), + [anon_sym_LT_LT] = ACTIONS(5912), + [anon_sym_GT_GT] = ACTIONS(5912), + [anon_sym_LT_LT_PIPE] = ACTIONS(5912), + [anon_sym_PLUS] = ACTIONS(5912), + [anon_sym_SLASH] = ACTIONS(5912), + [anon_sym_catch] = ACTIONS(5912), + [anon_sym_TILDE] = ACTIONS(5910), + [anon_sym_try] = ACTIONS(5912), + [anon_sym_DOT] = ACTIONS(5912), + [anon_sym_CARET] = ACTIONS(5910), + [anon_sym_true] = ACTIONS(5912), + [anon_sym_false] = ACTIONS(5912), + [anon_sym_null] = ACTIONS(5912), + [anon_sym_unreachable] = ACTIONS(5912), + [anon_sym_undefined] = ACTIONS(5912), + [sym_sink] = ACTIONS(5912), + [sym_integer] = ACTIONS(5912), + [sym_float] = ACTIONS(5910), + [anon_sym_DQUOTE] = ACTIONS(5910), + [sym_multiline_string] = ACTIONS(5910), + [sym_character] = ACTIONS(5910), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5910), + }, + [STATE(2592)] = { + [ts_builtin_sym_end] = ACTIONS(5914), + [sym_identifier] = ACTIONS(5916), + [anon_sym_import] = ACTIONS(5916), + [anon_sym_test] = ACTIONS(5916), + [anon_sym_hide] = ACTIONS(5916), + [anon_sym_func] = ACTIONS(5916), + [anon_sym_BANG] = ACTIONS(5916), + [anon_sym_EQ] = ACTIONS(5916), + [anon_sym_struct] = ACTIONS(5916), + [anon_sym_LPAREN] = ACTIONS(5914), + [anon_sym_RPAREN] = ACTIONS(5914), + [anon_sym_LBRACE] = ACTIONS(5914), + [anon_sym_COMMA] = ACTIONS(5914), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_DASH] = ACTIONS(5916), + [anon_sym_DOLLAR] = ACTIONS(5914), + [anon_sym_PIPE] = ACTIONS(5916), + [anon_sym_QMARK] = ACTIONS(5914), + [anon_sym_STAR] = ACTIONS(5916), + [anon_sym_LBRACK] = ACTIONS(5914), + [anon_sym_SEMI] = ACTIONS(5914), + [anon_sym_RBRACK] = ACTIONS(5914), + [anon_sym_void] = ACTIONS(5916), + [anon_sym_noreturn] = ACTIONS(5916), + [anon_sym_type] = ACTIONS(5916), + [anon_sym_anyopaque] = ACTIONS(5916), + [anon_sym_bool] = ACTIONS(5916), + [anon_sym_int] = ACTIONS(5916), + [anon_sym_uint] = ACTIONS(5916), + [anon_sym_float] = ACTIONS(5916), + [anon_sym_range] = ACTIONS(5916), + [anon_sym_i8] = ACTIONS(5916), + [anon_sym_i16] = ACTIONS(5916), + [anon_sym_i32] = ACTIONS(5916), + [anon_sym_i64] = ACTIONS(5916), + [anon_sym_u8] = ACTIONS(5916), + [anon_sym_u16] = ACTIONS(5916), + [anon_sym_u32] = ACTIONS(5916), + [anon_sym_u64] = ACTIONS(5916), + [anon_sym_isize] = ACTIONS(5916), + [anon_sym_usize] = ACTIONS(5916), + [anon_sym_f32] = ACTIONS(5916), + [anon_sym_f64] = ACTIONS(5916), + [anon_sym_c_char] = ACTIONS(5916), + [anon_sym_c_schar] = ACTIONS(5916), + [anon_sym_c_uchar] = ACTIONS(5916), + [anon_sym_c_short] = ACTIONS(5916), + [anon_sym_c_ushort] = ACTIONS(5916), + [anon_sym_c_int] = ACTIONS(5916), + [anon_sym_c_uint] = ACTIONS(5916), + [anon_sym_c_long] = ACTIONS(5916), + [anon_sym_c_ulong] = ACTIONS(5916), + [anon_sym_c_longlong] = ACTIONS(5916), + [anon_sym_c_ulonglong] = ACTIONS(5916), + [anon_sym_c_float] = ACTIONS(5916), + [anon_sym_c_double] = ACTIONS(5916), + [anon_sym_c_longdouble] = ACTIONS(5916), + [anon_sym_PLUS_EQ] = ACTIONS(5914), + [anon_sym_DASH_EQ] = ACTIONS(5914), + [anon_sym_STAR_EQ] = ACTIONS(5914), + [anon_sym_SLASH_EQ] = ACTIONS(5914), + [anon_sym_AMP_EQ] = ACTIONS(5914), + [anon_sym_PIPE_EQ] = ACTIONS(5914), + [anon_sym_xor_EQ] = ACTIONS(5914), + [anon_sym_LT_LT_EQ] = ACTIONS(5914), + [anon_sym_GT_GT_EQ] = ACTIONS(5914), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5914), + [anon_sym_return] = ACTIONS(5916), + [anon_sym_yield] = ACTIONS(5916), + [anon_sym_COLON] = ACTIONS(5914), + [anon_sym_break] = ACTIONS(5916), + [anon_sym_continue] = ACTIONS(5916), + [anon_sym_defer] = ACTIONS(5916), + [anon_sym_errdefer] = ACTIONS(5916), + [anon_sym_if] = ACTIONS(5916), + [anon_sym_else] = ACTIONS(5916), + [anon_sym_while] = ACTIONS(5916), + [anon_sym_expand] = ACTIONS(5916), + [anon_sym_for] = ACTIONS(5916), + [anon_sym_match] = ACTIONS(5916), + [anon_sym_DOT_DOT] = ACTIONS(5916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5914), + [anon_sym_orelse] = ACTIONS(5916), + [anon_sym_or] = ACTIONS(5916), + [anon_sym_and] = ACTIONS(5916), + [anon_sym_EQ_EQ] = ACTIONS(5914), + [anon_sym_BANG_EQ] = ACTIONS(5914), + [anon_sym_LT] = ACTIONS(5916), + [anon_sym_LT_EQ] = ACTIONS(5914), + [anon_sym_GT] = ACTIONS(5916), + [anon_sym_GT_EQ] = ACTIONS(5914), + [anon_sym_AMP] = ACTIONS(5916), + [anon_sym_xor] = ACTIONS(5916), + [anon_sym_LT_LT] = ACTIONS(5916), + [anon_sym_GT_GT] = ACTIONS(5916), + [anon_sym_LT_LT_PIPE] = ACTIONS(5916), + [anon_sym_PLUS] = ACTIONS(5916), + [anon_sym_SLASH] = ACTIONS(5916), + [anon_sym_catch] = ACTIONS(5916), + [anon_sym_TILDE] = ACTIONS(5914), + [anon_sym_try] = ACTIONS(5916), + [anon_sym_DOT] = ACTIONS(5916), + [anon_sym_CARET] = ACTIONS(5914), + [anon_sym_true] = ACTIONS(5916), + [anon_sym_false] = ACTIONS(5916), + [anon_sym_null] = ACTIONS(5916), + [anon_sym_unreachable] = ACTIONS(5916), + [anon_sym_undefined] = ACTIONS(5916), + [sym_sink] = ACTIONS(5916), + [sym_integer] = ACTIONS(5916), + [sym_float] = ACTIONS(5914), + [anon_sym_DQUOTE] = ACTIONS(5914), + [sym_multiline_string] = ACTIONS(5914), + [sym_character] = ACTIONS(5914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5914), + }, + [STATE(2593)] = { + [ts_builtin_sym_end] = ACTIONS(5918), + [sym_identifier] = ACTIONS(5920), + [anon_sym_import] = ACTIONS(5920), + [anon_sym_test] = ACTIONS(5920), + [anon_sym_hide] = ACTIONS(5920), + [anon_sym_func] = ACTIONS(5920), + [anon_sym_BANG] = ACTIONS(5920), + [anon_sym_EQ] = ACTIONS(5920), + [anon_sym_struct] = ACTIONS(5920), + [anon_sym_LPAREN] = ACTIONS(5918), + [anon_sym_RPAREN] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(5918), + [anon_sym_COMMA] = ACTIONS(5918), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5920), + [anon_sym_DOLLAR] = ACTIONS(5918), + [anon_sym_PIPE] = ACTIONS(5920), + [anon_sym_QMARK] = ACTIONS(5918), + [anon_sym_STAR] = ACTIONS(5920), + [anon_sym_LBRACK] = ACTIONS(5918), + [anon_sym_SEMI] = ACTIONS(5918), + [anon_sym_RBRACK] = ACTIONS(5918), + [anon_sym_void] = ACTIONS(5920), + [anon_sym_noreturn] = ACTIONS(5920), + [anon_sym_type] = ACTIONS(5920), + [anon_sym_anyopaque] = ACTIONS(5920), + [anon_sym_bool] = ACTIONS(5920), + [anon_sym_int] = ACTIONS(5920), + [anon_sym_uint] = ACTIONS(5920), + [anon_sym_float] = ACTIONS(5920), + [anon_sym_range] = ACTIONS(5920), + [anon_sym_i8] = ACTIONS(5920), + [anon_sym_i16] = ACTIONS(5920), + [anon_sym_i32] = ACTIONS(5920), + [anon_sym_i64] = ACTIONS(5920), + [anon_sym_u8] = ACTIONS(5920), + [anon_sym_u16] = ACTIONS(5920), + [anon_sym_u32] = ACTIONS(5920), + [anon_sym_u64] = ACTIONS(5920), + [anon_sym_isize] = ACTIONS(5920), + [anon_sym_usize] = ACTIONS(5920), + [anon_sym_f32] = ACTIONS(5920), + [anon_sym_f64] = ACTIONS(5920), + [anon_sym_c_char] = ACTIONS(5920), + [anon_sym_c_schar] = ACTIONS(5920), + [anon_sym_c_uchar] = ACTIONS(5920), + [anon_sym_c_short] = ACTIONS(5920), + [anon_sym_c_ushort] = ACTIONS(5920), + [anon_sym_c_int] = ACTIONS(5920), + [anon_sym_c_uint] = ACTIONS(5920), + [anon_sym_c_long] = ACTIONS(5920), + [anon_sym_c_ulong] = ACTIONS(5920), + [anon_sym_c_longlong] = ACTIONS(5920), + [anon_sym_c_ulonglong] = ACTIONS(5920), + [anon_sym_c_float] = ACTIONS(5920), + [anon_sym_c_double] = ACTIONS(5920), + [anon_sym_c_longdouble] = ACTIONS(5920), + [anon_sym_PLUS_EQ] = ACTIONS(5918), + [anon_sym_DASH_EQ] = ACTIONS(5918), + [anon_sym_STAR_EQ] = ACTIONS(5918), + [anon_sym_SLASH_EQ] = ACTIONS(5918), + [anon_sym_AMP_EQ] = ACTIONS(5918), + [anon_sym_PIPE_EQ] = ACTIONS(5918), + [anon_sym_xor_EQ] = ACTIONS(5918), + [anon_sym_LT_LT_EQ] = ACTIONS(5918), + [anon_sym_GT_GT_EQ] = ACTIONS(5918), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5918), + [anon_sym_return] = ACTIONS(5920), + [anon_sym_yield] = ACTIONS(5920), + [anon_sym_COLON] = ACTIONS(5918), + [anon_sym_break] = ACTIONS(5920), + [anon_sym_continue] = ACTIONS(5920), + [anon_sym_defer] = ACTIONS(5920), + [anon_sym_errdefer] = ACTIONS(5920), + [anon_sym_if] = ACTIONS(5920), + [anon_sym_else] = ACTIONS(5920), + [anon_sym_while] = ACTIONS(5920), + [anon_sym_expand] = ACTIONS(5920), + [anon_sym_for] = ACTIONS(5920), + [anon_sym_match] = ACTIONS(5920), + [anon_sym_DOT_DOT] = ACTIONS(5920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5918), + [anon_sym_orelse] = ACTIONS(5920), + [anon_sym_or] = ACTIONS(5920), + [anon_sym_and] = ACTIONS(5920), + [anon_sym_EQ_EQ] = ACTIONS(5918), + [anon_sym_BANG_EQ] = ACTIONS(5918), + [anon_sym_LT] = ACTIONS(5920), + [anon_sym_LT_EQ] = ACTIONS(5918), + [anon_sym_GT] = ACTIONS(5920), + [anon_sym_GT_EQ] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5920), + [anon_sym_xor] = ACTIONS(5920), + [anon_sym_LT_LT] = ACTIONS(5920), + [anon_sym_GT_GT] = ACTIONS(5920), + [anon_sym_LT_LT_PIPE] = ACTIONS(5920), + [anon_sym_PLUS] = ACTIONS(5920), + [anon_sym_SLASH] = ACTIONS(5920), + [anon_sym_catch] = ACTIONS(5920), + [anon_sym_TILDE] = ACTIONS(5918), + [anon_sym_try] = ACTIONS(5920), + [anon_sym_DOT] = ACTIONS(5920), + [anon_sym_CARET] = ACTIONS(5918), + [anon_sym_true] = ACTIONS(5920), + [anon_sym_false] = ACTIONS(5920), + [anon_sym_null] = ACTIONS(5920), + [anon_sym_unreachable] = ACTIONS(5920), + [anon_sym_undefined] = ACTIONS(5920), + [sym_sink] = ACTIONS(5920), + [sym_integer] = ACTIONS(5920), + [sym_float] = ACTIONS(5918), + [anon_sym_DQUOTE] = ACTIONS(5918), + [sym_multiline_string] = ACTIONS(5918), + [sym_character] = ACTIONS(5918), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5918), + }, + [STATE(2594)] = { + [ts_builtin_sym_end] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1333), + [anon_sym_import] = ACTIONS(1333), + [anon_sym_test] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_RBRACK] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1335), + [anon_sym_DASH_EQ] = ACTIONS(1335), + [anon_sym_STAR_EQ] = ACTIONS(1335), + [anon_sym_SLASH_EQ] = ACTIONS(1335), + [anon_sym_AMP_EQ] = ACTIONS(1335), + [anon_sym_PIPE_EQ] = ACTIONS(1335), + [anon_sym_xor_EQ] = ACTIONS(1335), + [anon_sym_LT_LT_EQ] = ACTIONS(1335), + [anon_sym_GT_GT_EQ] = ACTIONS(1335), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT_PIPE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1335), + }, + [STATE(2595)] = { + [ts_builtin_sym_end] = ACTIONS(5922), + [sym_identifier] = ACTIONS(5924), + [anon_sym_import] = ACTIONS(5924), + [anon_sym_test] = ACTIONS(5924), + [anon_sym_hide] = ACTIONS(5924), + [anon_sym_func] = ACTIONS(5924), + [anon_sym_BANG] = ACTIONS(5924), + [anon_sym_EQ] = ACTIONS(5924), + [anon_sym_struct] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5922), + [anon_sym_RPAREN] = ACTIONS(5922), + [anon_sym_LBRACE] = ACTIONS(5922), + [anon_sym_COMMA] = ACTIONS(5922), + [anon_sym_RBRACE] = ACTIONS(5922), + [anon_sym_DASH] = ACTIONS(5924), + [anon_sym_DOLLAR] = ACTIONS(5922), + [anon_sym_PIPE] = ACTIONS(5924), + [anon_sym_QMARK] = ACTIONS(5922), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(5922), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_RBRACK] = ACTIONS(5922), + [anon_sym_void] = ACTIONS(5924), + [anon_sym_noreturn] = ACTIONS(5924), + [anon_sym_type] = ACTIONS(5924), + [anon_sym_anyopaque] = ACTIONS(5924), + [anon_sym_bool] = ACTIONS(5924), + [anon_sym_int] = ACTIONS(5924), + [anon_sym_uint] = ACTIONS(5924), + [anon_sym_float] = ACTIONS(5924), + [anon_sym_range] = ACTIONS(5924), + [anon_sym_i8] = ACTIONS(5924), + [anon_sym_i16] = ACTIONS(5924), + [anon_sym_i32] = ACTIONS(5924), + [anon_sym_i64] = ACTIONS(5924), + [anon_sym_u8] = ACTIONS(5924), + [anon_sym_u16] = ACTIONS(5924), + [anon_sym_u32] = ACTIONS(5924), + [anon_sym_u64] = ACTIONS(5924), + [anon_sym_isize] = ACTIONS(5924), + [anon_sym_usize] = ACTIONS(5924), + [anon_sym_f32] = ACTIONS(5924), + [anon_sym_f64] = ACTIONS(5924), + [anon_sym_c_char] = ACTIONS(5924), + [anon_sym_c_schar] = ACTIONS(5924), + [anon_sym_c_uchar] = ACTIONS(5924), + [anon_sym_c_short] = ACTIONS(5924), + [anon_sym_c_ushort] = ACTIONS(5924), + [anon_sym_c_int] = ACTIONS(5924), + [anon_sym_c_uint] = ACTIONS(5924), + [anon_sym_c_long] = ACTIONS(5924), + [anon_sym_c_ulong] = ACTIONS(5924), + [anon_sym_c_longlong] = ACTIONS(5924), + [anon_sym_c_ulonglong] = ACTIONS(5924), + [anon_sym_c_float] = ACTIONS(5924), + [anon_sym_c_double] = ACTIONS(5924), + [anon_sym_c_longdouble] = ACTIONS(5924), + [anon_sym_PLUS_EQ] = ACTIONS(5922), + [anon_sym_DASH_EQ] = ACTIONS(5922), + [anon_sym_STAR_EQ] = ACTIONS(5922), + [anon_sym_SLASH_EQ] = ACTIONS(5922), + [anon_sym_AMP_EQ] = ACTIONS(5922), + [anon_sym_PIPE_EQ] = ACTIONS(5922), + [anon_sym_xor_EQ] = ACTIONS(5922), + [anon_sym_LT_LT_EQ] = ACTIONS(5922), + [anon_sym_GT_GT_EQ] = ACTIONS(5922), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5922), + [anon_sym_return] = ACTIONS(5924), + [anon_sym_yield] = ACTIONS(5924), + [anon_sym_COLON] = ACTIONS(5922), + [anon_sym_break] = ACTIONS(5924), + [anon_sym_continue] = ACTIONS(5924), + [anon_sym_defer] = ACTIONS(5924), + [anon_sym_errdefer] = ACTIONS(5924), + [anon_sym_if] = ACTIONS(5924), + [anon_sym_else] = ACTIONS(5924), + [anon_sym_while] = ACTIONS(5924), + [anon_sym_expand] = ACTIONS(5924), + [anon_sym_for] = ACTIONS(5924), + [anon_sym_match] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(5924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5922), + [anon_sym_orelse] = ACTIONS(5924), + [anon_sym_or] = ACTIONS(5924), + [anon_sym_and] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5922), + [anon_sym_BANG_EQ] = ACTIONS(5922), + [anon_sym_LT] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5922), + [anon_sym_GT] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5922), + [anon_sym_AMP] = ACTIONS(5924), + [anon_sym_xor] = ACTIONS(5924), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5924), + [anon_sym_LT_LT_PIPE] = ACTIONS(5924), + [anon_sym_PLUS] = ACTIONS(5924), + [anon_sym_SLASH] = ACTIONS(5924), + [anon_sym_catch] = ACTIONS(5924), + [anon_sym_TILDE] = ACTIONS(5922), + [anon_sym_try] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5922), + [anon_sym_true] = ACTIONS(5924), + [anon_sym_false] = ACTIONS(5924), + [anon_sym_null] = ACTIONS(5924), + [anon_sym_unreachable] = ACTIONS(5924), + [anon_sym_undefined] = ACTIONS(5924), + [sym_sink] = ACTIONS(5924), + [sym_integer] = ACTIONS(5924), + [sym_float] = ACTIONS(5922), + [anon_sym_DQUOTE] = ACTIONS(5922), + [sym_multiline_string] = ACTIONS(5922), + [sym_character] = ACTIONS(5922), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5922), + }, + [STATE(2596)] = { + [ts_builtin_sym_end] = ACTIONS(5926), + [sym_identifier] = ACTIONS(5928), + [anon_sym_import] = ACTIONS(5928), + [anon_sym_test] = ACTIONS(5928), + [anon_sym_hide] = ACTIONS(5928), + [anon_sym_func] = ACTIONS(5928), + [anon_sym_BANG] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(5928), + [anon_sym_struct] = ACTIONS(5928), + [anon_sym_LPAREN] = ACTIONS(5926), + [anon_sym_RPAREN] = ACTIONS(5926), + [anon_sym_LBRACE] = ACTIONS(5926), + [anon_sym_COMMA] = ACTIONS(5926), + [anon_sym_RBRACE] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5928), + [anon_sym_DOLLAR] = ACTIONS(5926), + [anon_sym_PIPE] = ACTIONS(5928), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5926), + [anon_sym_SEMI] = ACTIONS(5926), + [anon_sym_RBRACK] = ACTIONS(5926), + [anon_sym_void] = ACTIONS(5928), + [anon_sym_noreturn] = ACTIONS(5928), + [anon_sym_type] = ACTIONS(5928), + [anon_sym_anyopaque] = ACTIONS(5928), + [anon_sym_bool] = ACTIONS(5928), + [anon_sym_int] = ACTIONS(5928), + [anon_sym_uint] = ACTIONS(5928), + [anon_sym_float] = ACTIONS(5928), + [anon_sym_range] = ACTIONS(5928), + [anon_sym_i8] = ACTIONS(5928), + [anon_sym_i16] = ACTIONS(5928), + [anon_sym_i32] = ACTIONS(5928), + [anon_sym_i64] = ACTIONS(5928), + [anon_sym_u8] = ACTIONS(5928), + [anon_sym_u16] = ACTIONS(5928), + [anon_sym_u32] = ACTIONS(5928), + [anon_sym_u64] = ACTIONS(5928), + [anon_sym_isize] = ACTIONS(5928), + [anon_sym_usize] = ACTIONS(5928), + [anon_sym_f32] = ACTIONS(5928), + [anon_sym_f64] = ACTIONS(5928), + [anon_sym_c_char] = ACTIONS(5928), + [anon_sym_c_schar] = ACTIONS(5928), + [anon_sym_c_uchar] = ACTIONS(5928), + [anon_sym_c_short] = ACTIONS(5928), + [anon_sym_c_ushort] = ACTIONS(5928), + [anon_sym_c_int] = ACTIONS(5928), + [anon_sym_c_uint] = ACTIONS(5928), + [anon_sym_c_long] = ACTIONS(5928), + [anon_sym_c_ulong] = ACTIONS(5928), + [anon_sym_c_longlong] = ACTIONS(5928), + [anon_sym_c_ulonglong] = ACTIONS(5928), + [anon_sym_c_float] = ACTIONS(5928), + [anon_sym_c_double] = ACTIONS(5928), + [anon_sym_c_longdouble] = ACTIONS(5928), + [anon_sym_PLUS_EQ] = ACTIONS(5926), + [anon_sym_DASH_EQ] = ACTIONS(5926), + [anon_sym_STAR_EQ] = ACTIONS(5926), + [anon_sym_SLASH_EQ] = ACTIONS(5926), + [anon_sym_AMP_EQ] = ACTIONS(5926), + [anon_sym_PIPE_EQ] = ACTIONS(5926), + [anon_sym_xor_EQ] = ACTIONS(5926), + [anon_sym_LT_LT_EQ] = ACTIONS(5926), + [anon_sym_GT_GT_EQ] = ACTIONS(5926), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5926), + [anon_sym_return] = ACTIONS(5928), + [anon_sym_yield] = ACTIONS(5928), + [anon_sym_COLON] = ACTIONS(5926), + [anon_sym_break] = ACTIONS(5928), + [anon_sym_continue] = ACTIONS(5928), + [anon_sym_defer] = ACTIONS(5928), + [anon_sym_errdefer] = ACTIONS(5928), + [anon_sym_if] = ACTIONS(5928), + [anon_sym_else] = ACTIONS(5928), + [anon_sym_while] = ACTIONS(5928), + [anon_sym_expand] = ACTIONS(5928), + [anon_sym_for] = ACTIONS(5928), + [anon_sym_match] = ACTIONS(5928), + [anon_sym_DOT_DOT] = ACTIONS(5928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5926), + [anon_sym_orelse] = ACTIONS(5928), + [anon_sym_or] = ACTIONS(5928), + [anon_sym_and] = ACTIONS(5928), + [anon_sym_EQ_EQ] = ACTIONS(5926), + [anon_sym_BANG_EQ] = ACTIONS(5926), + [anon_sym_LT] = ACTIONS(5928), + [anon_sym_LT_EQ] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5928), + [anon_sym_GT_EQ] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5928), + [anon_sym_xor] = ACTIONS(5928), + [anon_sym_LT_LT] = ACTIONS(5928), + [anon_sym_GT_GT] = ACTIONS(5928), + [anon_sym_LT_LT_PIPE] = ACTIONS(5928), + [anon_sym_PLUS] = ACTIONS(5928), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_catch] = ACTIONS(5928), + [anon_sym_TILDE] = ACTIONS(5926), + [anon_sym_try] = ACTIONS(5928), + [anon_sym_DOT] = ACTIONS(5928), + [anon_sym_CARET] = ACTIONS(5926), + [anon_sym_true] = ACTIONS(5928), + [anon_sym_false] = ACTIONS(5928), + [anon_sym_null] = ACTIONS(5928), + [anon_sym_unreachable] = ACTIONS(5928), + [anon_sym_undefined] = ACTIONS(5928), + [sym_sink] = ACTIONS(5928), + [sym_integer] = ACTIONS(5928), + [sym_float] = ACTIONS(5926), + [anon_sym_DQUOTE] = ACTIONS(5926), + [sym_multiline_string] = ACTIONS(5926), + [sym_character] = ACTIONS(5926), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5926), + }, + [STATE(2597)] = { + [ts_builtin_sym_end] = ACTIONS(5930), + [sym_identifier] = ACTIONS(5932), + [anon_sym_import] = ACTIONS(5932), + [anon_sym_test] = ACTIONS(5932), + [anon_sym_hide] = ACTIONS(5932), + [anon_sym_func] = ACTIONS(5932), + [anon_sym_BANG] = ACTIONS(5932), + [anon_sym_EQ] = ACTIONS(5932), + [anon_sym_struct] = ACTIONS(5932), + [anon_sym_LPAREN] = ACTIONS(5930), + [anon_sym_RPAREN] = ACTIONS(5930), + [anon_sym_LBRACE] = ACTIONS(5930), + [anon_sym_COMMA] = ACTIONS(5930), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_DASH] = ACTIONS(5932), + [anon_sym_DOLLAR] = ACTIONS(5930), + [anon_sym_PIPE] = ACTIONS(5932), + [anon_sym_QMARK] = ACTIONS(5930), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_LBRACK] = ACTIONS(5930), + [anon_sym_SEMI] = ACTIONS(5930), + [anon_sym_RBRACK] = ACTIONS(5930), + [anon_sym_void] = ACTIONS(5932), + [anon_sym_noreturn] = ACTIONS(5932), + [anon_sym_type] = ACTIONS(5932), + [anon_sym_anyopaque] = ACTIONS(5932), + [anon_sym_bool] = ACTIONS(5932), + [anon_sym_int] = ACTIONS(5932), + [anon_sym_uint] = ACTIONS(5932), + [anon_sym_float] = ACTIONS(5932), + [anon_sym_range] = ACTIONS(5932), + [anon_sym_i8] = ACTIONS(5932), + [anon_sym_i16] = ACTIONS(5932), + [anon_sym_i32] = ACTIONS(5932), + [anon_sym_i64] = ACTIONS(5932), + [anon_sym_u8] = ACTIONS(5932), + [anon_sym_u16] = ACTIONS(5932), + [anon_sym_u32] = ACTIONS(5932), + [anon_sym_u64] = ACTIONS(5932), + [anon_sym_isize] = ACTIONS(5932), + [anon_sym_usize] = ACTIONS(5932), + [anon_sym_f32] = ACTIONS(5932), + [anon_sym_f64] = ACTIONS(5932), + [anon_sym_c_char] = ACTIONS(5932), + [anon_sym_c_schar] = ACTIONS(5932), + [anon_sym_c_uchar] = ACTIONS(5932), + [anon_sym_c_short] = ACTIONS(5932), + [anon_sym_c_ushort] = ACTIONS(5932), + [anon_sym_c_int] = ACTIONS(5932), + [anon_sym_c_uint] = ACTIONS(5932), + [anon_sym_c_long] = ACTIONS(5932), + [anon_sym_c_ulong] = ACTIONS(5932), + [anon_sym_c_longlong] = ACTIONS(5932), + [anon_sym_c_ulonglong] = ACTIONS(5932), + [anon_sym_c_float] = ACTIONS(5932), + [anon_sym_c_double] = ACTIONS(5932), + [anon_sym_c_longdouble] = ACTIONS(5932), + [anon_sym_PLUS_EQ] = ACTIONS(5930), + [anon_sym_DASH_EQ] = ACTIONS(5930), + [anon_sym_STAR_EQ] = ACTIONS(5930), + [anon_sym_SLASH_EQ] = ACTIONS(5930), + [anon_sym_AMP_EQ] = ACTIONS(5930), + [anon_sym_PIPE_EQ] = ACTIONS(5930), + [anon_sym_xor_EQ] = ACTIONS(5930), + [anon_sym_LT_LT_EQ] = ACTIONS(5930), + [anon_sym_GT_GT_EQ] = ACTIONS(5930), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5930), + [anon_sym_return] = ACTIONS(5932), + [anon_sym_yield] = ACTIONS(5932), + [anon_sym_COLON] = ACTIONS(5930), + [anon_sym_break] = ACTIONS(5932), + [anon_sym_continue] = ACTIONS(5932), + [anon_sym_defer] = ACTIONS(5932), + [anon_sym_errdefer] = ACTIONS(5932), + [anon_sym_if] = ACTIONS(5932), + [anon_sym_else] = ACTIONS(5932), + [anon_sym_while] = ACTIONS(5932), + [anon_sym_expand] = ACTIONS(5932), + [anon_sym_for] = ACTIONS(5932), + [anon_sym_match] = ACTIONS(5932), + [anon_sym_DOT_DOT] = ACTIONS(5932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5930), + [anon_sym_orelse] = ACTIONS(5932), + [anon_sym_or] = ACTIONS(5932), + [anon_sym_and] = ACTIONS(5932), + [anon_sym_EQ_EQ] = ACTIONS(5930), + [anon_sym_BANG_EQ] = ACTIONS(5930), + [anon_sym_LT] = ACTIONS(5932), + [anon_sym_LT_EQ] = ACTIONS(5930), + [anon_sym_GT] = ACTIONS(5932), + [anon_sym_GT_EQ] = ACTIONS(5930), + [anon_sym_AMP] = ACTIONS(5932), + [anon_sym_xor] = ACTIONS(5932), + [anon_sym_LT_LT] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5932), + [anon_sym_LT_LT_PIPE] = ACTIONS(5932), + [anon_sym_PLUS] = ACTIONS(5932), + [anon_sym_SLASH] = ACTIONS(5932), + [anon_sym_catch] = ACTIONS(5932), + [anon_sym_TILDE] = ACTIONS(5930), + [anon_sym_try] = ACTIONS(5932), + [anon_sym_DOT] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5930), + [anon_sym_true] = ACTIONS(5932), + [anon_sym_false] = ACTIONS(5932), + [anon_sym_null] = ACTIONS(5932), + [anon_sym_unreachable] = ACTIONS(5932), + [anon_sym_undefined] = ACTIONS(5932), + [sym_sink] = ACTIONS(5932), + [sym_integer] = ACTIONS(5932), + [sym_float] = ACTIONS(5930), + [anon_sym_DQUOTE] = ACTIONS(5930), + [sym_multiline_string] = ACTIONS(5930), + [sym_character] = ACTIONS(5930), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5930), + }, + [STATE(2598)] = { + [ts_builtin_sym_end] = ACTIONS(5934), + [sym_identifier] = ACTIONS(5936), + [anon_sym_import] = ACTIONS(5936), + [anon_sym_test] = ACTIONS(5936), + [anon_sym_hide] = ACTIONS(5936), + [anon_sym_func] = ACTIONS(5936), + [anon_sym_BANG] = ACTIONS(5936), + [anon_sym_EQ] = ACTIONS(5936), + [anon_sym_struct] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5934), + [anon_sym_RPAREN] = ACTIONS(5934), + [anon_sym_LBRACE] = ACTIONS(5934), + [anon_sym_COMMA] = ACTIONS(5934), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_DASH] = ACTIONS(5936), + [anon_sym_DOLLAR] = ACTIONS(5934), + [anon_sym_PIPE] = ACTIONS(5936), + [anon_sym_QMARK] = ACTIONS(5934), + [anon_sym_STAR] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5934), + [anon_sym_SEMI] = ACTIONS(5934), + [anon_sym_RBRACK] = ACTIONS(5934), + [anon_sym_void] = ACTIONS(5936), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_type] = ACTIONS(5936), + [anon_sym_anyopaque] = ACTIONS(5936), + [anon_sym_bool] = ACTIONS(5936), + [anon_sym_int] = ACTIONS(5936), + [anon_sym_uint] = ACTIONS(5936), + [anon_sym_float] = ACTIONS(5936), + [anon_sym_range] = ACTIONS(5936), + [anon_sym_i8] = ACTIONS(5936), + [anon_sym_i16] = ACTIONS(5936), + [anon_sym_i32] = ACTIONS(5936), + [anon_sym_i64] = ACTIONS(5936), + [anon_sym_u8] = ACTIONS(5936), + [anon_sym_u16] = ACTIONS(5936), + [anon_sym_u32] = ACTIONS(5936), + [anon_sym_u64] = ACTIONS(5936), + [anon_sym_isize] = ACTIONS(5936), + [anon_sym_usize] = ACTIONS(5936), + [anon_sym_f32] = ACTIONS(5936), + [anon_sym_f64] = ACTIONS(5936), + [anon_sym_c_char] = ACTIONS(5936), + [anon_sym_c_schar] = ACTIONS(5936), + [anon_sym_c_uchar] = ACTIONS(5936), + [anon_sym_c_short] = ACTIONS(5936), + [anon_sym_c_ushort] = ACTIONS(5936), + [anon_sym_c_int] = ACTIONS(5936), + [anon_sym_c_uint] = ACTIONS(5936), + [anon_sym_c_long] = ACTIONS(5936), + [anon_sym_c_ulong] = ACTIONS(5936), + [anon_sym_c_longlong] = ACTIONS(5936), + [anon_sym_c_ulonglong] = ACTIONS(5936), + [anon_sym_c_float] = ACTIONS(5936), + [anon_sym_c_double] = ACTIONS(5936), + [anon_sym_c_longdouble] = ACTIONS(5936), + [anon_sym_PLUS_EQ] = ACTIONS(5934), + [anon_sym_DASH_EQ] = ACTIONS(5934), + [anon_sym_STAR_EQ] = ACTIONS(5934), + [anon_sym_SLASH_EQ] = ACTIONS(5934), + [anon_sym_AMP_EQ] = ACTIONS(5934), + [anon_sym_PIPE_EQ] = ACTIONS(5934), + [anon_sym_xor_EQ] = ACTIONS(5934), + [anon_sym_LT_LT_EQ] = ACTIONS(5934), + [anon_sym_GT_GT_EQ] = ACTIONS(5934), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5934), + [anon_sym_return] = ACTIONS(5936), + [anon_sym_yield] = ACTIONS(5936), + [anon_sym_COLON] = ACTIONS(5934), + [anon_sym_break] = ACTIONS(5936), + [anon_sym_continue] = ACTIONS(5936), + [anon_sym_defer] = ACTIONS(5936), + [anon_sym_errdefer] = ACTIONS(5936), + [anon_sym_if] = ACTIONS(5936), + [anon_sym_else] = ACTIONS(5936), + [anon_sym_while] = ACTIONS(5936), + [anon_sym_expand] = ACTIONS(5936), + [anon_sym_for] = ACTIONS(5936), + [anon_sym_match] = ACTIONS(5936), + [anon_sym_DOT_DOT] = ACTIONS(5936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5934), + [anon_sym_orelse] = ACTIONS(5936), + [anon_sym_or] = ACTIONS(5936), + [anon_sym_and] = ACTIONS(5936), + [anon_sym_EQ_EQ] = ACTIONS(5934), + [anon_sym_BANG_EQ] = ACTIONS(5934), + [anon_sym_LT] = ACTIONS(5936), + [anon_sym_LT_EQ] = ACTIONS(5934), + [anon_sym_GT] = ACTIONS(5936), + [anon_sym_GT_EQ] = ACTIONS(5934), + [anon_sym_AMP] = ACTIONS(5936), + [anon_sym_xor] = ACTIONS(5936), + [anon_sym_LT_LT] = ACTIONS(5936), + [anon_sym_GT_GT] = ACTIONS(5936), + [anon_sym_LT_LT_PIPE] = ACTIONS(5936), + [anon_sym_PLUS] = ACTIONS(5936), + [anon_sym_SLASH] = ACTIONS(5936), + [anon_sym_catch] = ACTIONS(5936), + [anon_sym_TILDE] = ACTIONS(5934), + [anon_sym_try] = ACTIONS(5936), + [anon_sym_DOT] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5934), + [anon_sym_true] = ACTIONS(5936), + [anon_sym_false] = ACTIONS(5936), + [anon_sym_null] = ACTIONS(5936), + [anon_sym_unreachable] = ACTIONS(5936), + [anon_sym_undefined] = ACTIONS(5936), + [sym_sink] = ACTIONS(5936), + [sym_integer] = ACTIONS(5936), + [sym_float] = ACTIONS(5934), + [anon_sym_DQUOTE] = ACTIONS(5934), + [sym_multiline_string] = ACTIONS(5934), + [sym_character] = ACTIONS(5934), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5934), + }, + [STATE(2599)] = { + [ts_builtin_sym_end] = ACTIONS(5938), + [sym_identifier] = ACTIONS(5940), + [anon_sym_import] = ACTIONS(5940), + [anon_sym_test] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_func] = ACTIONS(5940), + [anon_sym_BANG] = ACTIONS(5940), + [anon_sym_EQ] = ACTIONS(5940), + [anon_sym_struct] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5938), + [anon_sym_RPAREN] = ACTIONS(5938), + [anon_sym_LBRACE] = ACTIONS(5938), + [anon_sym_COMMA] = ACTIONS(5938), + [anon_sym_RBRACE] = ACTIONS(5938), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5938), + [anon_sym_PIPE] = ACTIONS(5940), + [anon_sym_QMARK] = ACTIONS(5938), + [anon_sym_STAR] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5938), + [anon_sym_SEMI] = ACTIONS(5938), + [anon_sym_RBRACK] = ACTIONS(5938), + [anon_sym_void] = ACTIONS(5940), + [anon_sym_noreturn] = ACTIONS(5940), + [anon_sym_type] = ACTIONS(5940), + [anon_sym_anyopaque] = ACTIONS(5940), + [anon_sym_bool] = ACTIONS(5940), + [anon_sym_int] = ACTIONS(5940), + [anon_sym_uint] = ACTIONS(5940), + [anon_sym_float] = ACTIONS(5940), + [anon_sym_range] = ACTIONS(5940), + [anon_sym_i8] = ACTIONS(5940), + [anon_sym_i16] = ACTIONS(5940), + [anon_sym_i32] = ACTIONS(5940), + [anon_sym_i64] = ACTIONS(5940), + [anon_sym_u8] = ACTIONS(5940), + [anon_sym_u16] = ACTIONS(5940), + [anon_sym_u32] = ACTIONS(5940), + [anon_sym_u64] = ACTIONS(5940), + [anon_sym_isize] = ACTIONS(5940), + [anon_sym_usize] = ACTIONS(5940), + [anon_sym_f32] = ACTIONS(5940), + [anon_sym_f64] = ACTIONS(5940), + [anon_sym_c_char] = ACTIONS(5940), + [anon_sym_c_schar] = ACTIONS(5940), + [anon_sym_c_uchar] = ACTIONS(5940), + [anon_sym_c_short] = ACTIONS(5940), + [anon_sym_c_ushort] = ACTIONS(5940), + [anon_sym_c_int] = ACTIONS(5940), + [anon_sym_c_uint] = ACTIONS(5940), + [anon_sym_c_long] = ACTIONS(5940), + [anon_sym_c_ulong] = ACTIONS(5940), + [anon_sym_c_longlong] = ACTIONS(5940), + [anon_sym_c_ulonglong] = ACTIONS(5940), + [anon_sym_c_float] = ACTIONS(5940), + [anon_sym_c_double] = ACTIONS(5940), + [anon_sym_c_longdouble] = ACTIONS(5940), + [anon_sym_PLUS_EQ] = ACTIONS(5938), + [anon_sym_DASH_EQ] = ACTIONS(5938), + [anon_sym_STAR_EQ] = ACTIONS(5938), + [anon_sym_SLASH_EQ] = ACTIONS(5938), + [anon_sym_AMP_EQ] = ACTIONS(5938), + [anon_sym_PIPE_EQ] = ACTIONS(5938), + [anon_sym_xor_EQ] = ACTIONS(5938), + [anon_sym_LT_LT_EQ] = ACTIONS(5938), + [anon_sym_GT_GT_EQ] = ACTIONS(5938), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5938), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_yield] = ACTIONS(5940), + [anon_sym_COLON] = ACTIONS(5938), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_defer] = ACTIONS(5940), + [anon_sym_errdefer] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_else] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_expand] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5938), + [anon_sym_orelse] = ACTIONS(5940), + [anon_sym_or] = ACTIONS(5940), + [anon_sym_and] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5938), + [anon_sym_BANG_EQ] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(5940), + [anon_sym_LT_EQ] = ACTIONS(5938), + [anon_sym_GT] = ACTIONS(5940), + [anon_sym_GT_EQ] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5940), + [anon_sym_xor] = ACTIONS(5940), + [anon_sym_LT_LT] = ACTIONS(5940), + [anon_sym_GT_GT] = ACTIONS(5940), + [anon_sym_LT_LT_PIPE] = ACTIONS(5940), + [anon_sym_PLUS] = ACTIONS(5940), + [anon_sym_SLASH] = ACTIONS(5940), + [anon_sym_catch] = ACTIONS(5940), + [anon_sym_TILDE] = ACTIONS(5938), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_DOT] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5938), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_unreachable] = ACTIONS(5940), + [anon_sym_undefined] = ACTIONS(5940), + [sym_sink] = ACTIONS(5940), + [sym_integer] = ACTIONS(5940), + [sym_float] = ACTIONS(5938), + [anon_sym_DQUOTE] = ACTIONS(5938), + [sym_multiline_string] = ACTIONS(5938), + [sym_character] = ACTIONS(5938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5938), + }, + [STATE(2600)] = { + [ts_builtin_sym_end] = ACTIONS(5942), + [sym_identifier] = ACTIONS(5944), + [anon_sym_import] = ACTIONS(5944), + [anon_sym_test] = ACTIONS(5944), + [anon_sym_hide] = ACTIONS(5944), + [anon_sym_func] = ACTIONS(5944), + [anon_sym_BANG] = ACTIONS(5944), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_struct] = ACTIONS(5944), + [anon_sym_LPAREN] = ACTIONS(5942), + [anon_sym_RPAREN] = ACTIONS(5942), + [anon_sym_LBRACE] = ACTIONS(5942), + [anon_sym_COMMA] = ACTIONS(5942), + [anon_sym_RBRACE] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5944), + [anon_sym_DOLLAR] = ACTIONS(5942), + [anon_sym_PIPE] = ACTIONS(5944), + [anon_sym_QMARK] = ACTIONS(5942), + [anon_sym_STAR] = ACTIONS(5944), + [anon_sym_LBRACK] = ACTIONS(5942), + [anon_sym_SEMI] = ACTIONS(5942), + [anon_sym_RBRACK] = ACTIONS(5942), + [anon_sym_void] = ACTIONS(5944), + [anon_sym_noreturn] = ACTIONS(5944), + [anon_sym_type] = ACTIONS(5944), + [anon_sym_anyopaque] = ACTIONS(5944), + [anon_sym_bool] = ACTIONS(5944), + [anon_sym_int] = ACTIONS(5944), + [anon_sym_uint] = ACTIONS(5944), + [anon_sym_float] = ACTIONS(5944), + [anon_sym_range] = ACTIONS(5944), + [anon_sym_i8] = ACTIONS(5944), + [anon_sym_i16] = ACTIONS(5944), + [anon_sym_i32] = ACTIONS(5944), + [anon_sym_i64] = ACTIONS(5944), + [anon_sym_u8] = ACTIONS(5944), + [anon_sym_u16] = ACTIONS(5944), + [anon_sym_u32] = ACTIONS(5944), + [anon_sym_u64] = ACTIONS(5944), + [anon_sym_isize] = ACTIONS(5944), + [anon_sym_usize] = ACTIONS(5944), + [anon_sym_f32] = ACTIONS(5944), + [anon_sym_f64] = ACTIONS(5944), + [anon_sym_c_char] = ACTIONS(5944), + [anon_sym_c_schar] = ACTIONS(5944), + [anon_sym_c_uchar] = ACTIONS(5944), + [anon_sym_c_short] = ACTIONS(5944), + [anon_sym_c_ushort] = ACTIONS(5944), + [anon_sym_c_int] = ACTIONS(5944), + [anon_sym_c_uint] = ACTIONS(5944), + [anon_sym_c_long] = ACTIONS(5944), + [anon_sym_c_ulong] = ACTIONS(5944), + [anon_sym_c_longlong] = ACTIONS(5944), + [anon_sym_c_ulonglong] = ACTIONS(5944), + [anon_sym_c_float] = ACTIONS(5944), + [anon_sym_c_double] = ACTIONS(5944), + [anon_sym_c_longdouble] = ACTIONS(5944), + [anon_sym_PLUS_EQ] = ACTIONS(5942), + [anon_sym_DASH_EQ] = ACTIONS(5942), + [anon_sym_STAR_EQ] = ACTIONS(5942), + [anon_sym_SLASH_EQ] = ACTIONS(5942), + [anon_sym_AMP_EQ] = ACTIONS(5942), + [anon_sym_PIPE_EQ] = ACTIONS(5942), + [anon_sym_xor_EQ] = ACTIONS(5942), + [anon_sym_LT_LT_EQ] = ACTIONS(5942), + [anon_sym_GT_GT_EQ] = ACTIONS(5942), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5942), + [anon_sym_return] = ACTIONS(5944), + [anon_sym_yield] = ACTIONS(5944), + [anon_sym_COLON] = ACTIONS(5942), + [anon_sym_break] = ACTIONS(5944), + [anon_sym_continue] = ACTIONS(5944), + [anon_sym_defer] = ACTIONS(5944), + [anon_sym_errdefer] = ACTIONS(5944), + [anon_sym_if] = ACTIONS(5944), + [anon_sym_else] = ACTIONS(5944), + [anon_sym_while] = ACTIONS(5944), + [anon_sym_expand] = ACTIONS(5944), + [anon_sym_for] = ACTIONS(5944), + [anon_sym_match] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5942), + [anon_sym_orelse] = ACTIONS(5944), + [anon_sym_or] = ACTIONS(5944), + [anon_sym_and] = ACTIONS(5944), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_LT] = ACTIONS(5944), + [anon_sym_LT_EQ] = ACTIONS(5942), + [anon_sym_GT] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5942), + [anon_sym_AMP] = ACTIONS(5944), + [anon_sym_xor] = ACTIONS(5944), + [anon_sym_LT_LT] = ACTIONS(5944), + [anon_sym_GT_GT] = ACTIONS(5944), + [anon_sym_LT_LT_PIPE] = ACTIONS(5944), + [anon_sym_PLUS] = ACTIONS(5944), + [anon_sym_SLASH] = ACTIONS(5944), + [anon_sym_catch] = ACTIONS(5944), + [anon_sym_TILDE] = ACTIONS(5942), + [anon_sym_try] = ACTIONS(5944), + [anon_sym_DOT] = ACTIONS(5944), + [anon_sym_CARET] = ACTIONS(5942), + [anon_sym_true] = ACTIONS(5944), + [anon_sym_false] = ACTIONS(5944), + [anon_sym_null] = ACTIONS(5944), + [anon_sym_unreachable] = ACTIONS(5944), + [anon_sym_undefined] = ACTIONS(5944), + [sym_sink] = ACTIONS(5944), + [sym_integer] = ACTIONS(5944), + [sym_float] = ACTIONS(5942), + [anon_sym_DQUOTE] = ACTIONS(5942), + [sym_multiline_string] = ACTIONS(5942), + [sym_character] = ACTIONS(5942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5942), + }, + [STATE(2601)] = { + [ts_builtin_sym_end] = ACTIONS(5946), + [sym_identifier] = ACTIONS(5948), + [anon_sym_import] = ACTIONS(5948), + [anon_sym_test] = ACTIONS(5948), + [anon_sym_hide] = ACTIONS(5948), + [anon_sym_func] = ACTIONS(5948), + [anon_sym_BANG] = ACTIONS(5948), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_struct] = ACTIONS(5948), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_RPAREN] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_COMMA] = ACTIONS(5946), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5948), + [anon_sym_DOLLAR] = ACTIONS(5946), + [anon_sym_PIPE] = ACTIONS(5948), + [anon_sym_QMARK] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_SEMI] = ACTIONS(5946), + [anon_sym_RBRACK] = ACTIONS(5946), + [anon_sym_void] = ACTIONS(5948), + [anon_sym_noreturn] = ACTIONS(5948), + [anon_sym_type] = ACTIONS(5948), + [anon_sym_anyopaque] = ACTIONS(5948), + [anon_sym_bool] = ACTIONS(5948), + [anon_sym_int] = ACTIONS(5948), + [anon_sym_uint] = ACTIONS(5948), + [anon_sym_float] = ACTIONS(5948), + [anon_sym_range] = ACTIONS(5948), + [anon_sym_i8] = ACTIONS(5948), + [anon_sym_i16] = ACTIONS(5948), + [anon_sym_i32] = ACTIONS(5948), + [anon_sym_i64] = ACTIONS(5948), + [anon_sym_u8] = ACTIONS(5948), + [anon_sym_u16] = ACTIONS(5948), + [anon_sym_u32] = ACTIONS(5948), + [anon_sym_u64] = ACTIONS(5948), + [anon_sym_isize] = ACTIONS(5948), + [anon_sym_usize] = ACTIONS(5948), + [anon_sym_f32] = ACTIONS(5948), + [anon_sym_f64] = ACTIONS(5948), + [anon_sym_c_char] = ACTIONS(5948), + [anon_sym_c_schar] = ACTIONS(5948), + [anon_sym_c_uchar] = ACTIONS(5948), + [anon_sym_c_short] = ACTIONS(5948), + [anon_sym_c_ushort] = ACTIONS(5948), + [anon_sym_c_int] = ACTIONS(5948), + [anon_sym_c_uint] = ACTIONS(5948), + [anon_sym_c_long] = ACTIONS(5948), + [anon_sym_c_ulong] = ACTIONS(5948), + [anon_sym_c_longlong] = ACTIONS(5948), + [anon_sym_c_ulonglong] = ACTIONS(5948), + [anon_sym_c_float] = ACTIONS(5948), + [anon_sym_c_double] = ACTIONS(5948), + [anon_sym_c_longdouble] = ACTIONS(5948), + [anon_sym_PLUS_EQ] = ACTIONS(5946), + [anon_sym_DASH_EQ] = ACTIONS(5946), + [anon_sym_STAR_EQ] = ACTIONS(5946), + [anon_sym_SLASH_EQ] = ACTIONS(5946), + [anon_sym_AMP_EQ] = ACTIONS(5946), + [anon_sym_PIPE_EQ] = ACTIONS(5946), + [anon_sym_xor_EQ] = ACTIONS(5946), + [anon_sym_LT_LT_EQ] = ACTIONS(5946), + [anon_sym_GT_GT_EQ] = ACTIONS(5946), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5946), + [anon_sym_return] = ACTIONS(5948), + [anon_sym_yield] = ACTIONS(5948), + [anon_sym_COLON] = ACTIONS(5946), + [anon_sym_break] = ACTIONS(5948), + [anon_sym_continue] = ACTIONS(5948), + [anon_sym_defer] = ACTIONS(5948), + [anon_sym_errdefer] = ACTIONS(5948), + [anon_sym_if] = ACTIONS(5948), + [anon_sym_else] = ACTIONS(5948), + [anon_sym_while] = ACTIONS(5948), + [anon_sym_expand] = ACTIONS(5948), + [anon_sym_for] = ACTIONS(5948), + [anon_sym_match] = ACTIONS(5948), + [anon_sym_DOT_DOT] = ACTIONS(5948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_orelse] = ACTIONS(5948), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5946), + [anon_sym_BANG_EQ] = ACTIONS(5946), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_EQ] = ACTIONS(5946), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5946), + [anon_sym_AMP] = ACTIONS(5948), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT_PIPE] = ACTIONS(5948), + [anon_sym_PLUS] = ACTIONS(5948), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_catch] = ACTIONS(5948), + [anon_sym_TILDE] = ACTIONS(5946), + [anon_sym_try] = ACTIONS(5948), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5946), + [anon_sym_true] = ACTIONS(5948), + [anon_sym_false] = ACTIONS(5948), + [anon_sym_null] = ACTIONS(5948), + [anon_sym_unreachable] = ACTIONS(5948), + [anon_sym_undefined] = ACTIONS(5948), + [sym_sink] = ACTIONS(5948), + [sym_integer] = ACTIONS(5948), + [sym_float] = ACTIONS(5946), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym_multiline_string] = ACTIONS(5946), + [sym_character] = ACTIONS(5946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5946), + }, + [STATE(2602)] = { + [ts_builtin_sym_end] = ACTIONS(5950), + [sym_identifier] = ACTIONS(5952), + [anon_sym_import] = ACTIONS(5952), + [anon_sym_test] = ACTIONS(5952), + [anon_sym_hide] = ACTIONS(5952), + [anon_sym_func] = ACTIONS(5952), + [anon_sym_BANG] = ACTIONS(5952), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_struct] = ACTIONS(5952), + [anon_sym_LPAREN] = ACTIONS(5950), + [anon_sym_RPAREN] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(5950), + [anon_sym_COMMA] = ACTIONS(5950), + [anon_sym_RBRACE] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5952), + [anon_sym_DOLLAR] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5952), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_STAR] = ACTIONS(5952), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_SEMI] = ACTIONS(5950), + [anon_sym_RBRACK] = ACTIONS(5950), + [anon_sym_void] = ACTIONS(5952), + [anon_sym_noreturn] = ACTIONS(5952), + [anon_sym_type] = ACTIONS(5952), + [anon_sym_anyopaque] = ACTIONS(5952), + [anon_sym_bool] = ACTIONS(5952), + [anon_sym_int] = ACTIONS(5952), + [anon_sym_uint] = ACTIONS(5952), + [anon_sym_float] = ACTIONS(5952), + [anon_sym_range] = ACTIONS(5952), + [anon_sym_i8] = ACTIONS(5952), + [anon_sym_i16] = ACTIONS(5952), + [anon_sym_i32] = ACTIONS(5952), + [anon_sym_i64] = ACTIONS(5952), + [anon_sym_u8] = ACTIONS(5952), + [anon_sym_u16] = ACTIONS(5952), + [anon_sym_u32] = ACTIONS(5952), + [anon_sym_u64] = ACTIONS(5952), + [anon_sym_isize] = ACTIONS(5952), + [anon_sym_usize] = ACTIONS(5952), + [anon_sym_f32] = ACTIONS(5952), + [anon_sym_f64] = ACTIONS(5952), + [anon_sym_c_char] = ACTIONS(5952), + [anon_sym_c_schar] = ACTIONS(5952), + [anon_sym_c_uchar] = ACTIONS(5952), + [anon_sym_c_short] = ACTIONS(5952), + [anon_sym_c_ushort] = ACTIONS(5952), + [anon_sym_c_int] = ACTIONS(5952), + [anon_sym_c_uint] = ACTIONS(5952), + [anon_sym_c_long] = ACTIONS(5952), + [anon_sym_c_ulong] = ACTIONS(5952), + [anon_sym_c_longlong] = ACTIONS(5952), + [anon_sym_c_ulonglong] = ACTIONS(5952), + [anon_sym_c_float] = ACTIONS(5952), + [anon_sym_c_double] = ACTIONS(5952), + [anon_sym_c_longdouble] = ACTIONS(5952), + [anon_sym_PLUS_EQ] = ACTIONS(5950), + [anon_sym_DASH_EQ] = ACTIONS(5950), + [anon_sym_STAR_EQ] = ACTIONS(5950), + [anon_sym_SLASH_EQ] = ACTIONS(5950), + [anon_sym_AMP_EQ] = ACTIONS(5950), + [anon_sym_PIPE_EQ] = ACTIONS(5950), + [anon_sym_xor_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_EQ] = ACTIONS(5950), + [anon_sym_GT_GT_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5950), + [anon_sym_return] = ACTIONS(5952), + [anon_sym_yield] = ACTIONS(5952), + [anon_sym_COLON] = ACTIONS(5950), + [anon_sym_break] = ACTIONS(5952), + [anon_sym_continue] = ACTIONS(5952), + [anon_sym_defer] = ACTIONS(5952), + [anon_sym_errdefer] = ACTIONS(5952), + [anon_sym_if] = ACTIONS(5952), + [anon_sym_else] = ACTIONS(5952), + [anon_sym_while] = ACTIONS(5952), + [anon_sym_expand] = ACTIONS(5952), + [anon_sym_for] = ACTIONS(5952), + [anon_sym_match] = ACTIONS(5952), + [anon_sym_DOT_DOT] = ACTIONS(5952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5950), + [anon_sym_orelse] = ACTIONS(5952), + [anon_sym_or] = ACTIONS(5952), + [anon_sym_and] = ACTIONS(5952), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_LT] = ACTIONS(5952), + [anon_sym_LT_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5952), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP] = ACTIONS(5952), + [anon_sym_xor] = ACTIONS(5952), + [anon_sym_LT_LT] = ACTIONS(5952), + [anon_sym_GT_GT] = ACTIONS(5952), + [anon_sym_LT_LT_PIPE] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5952), + [anon_sym_SLASH] = ACTIONS(5952), + [anon_sym_catch] = ACTIONS(5952), + [anon_sym_TILDE] = ACTIONS(5950), + [anon_sym_try] = ACTIONS(5952), + [anon_sym_DOT] = ACTIONS(5952), + [anon_sym_CARET] = ACTIONS(5950), + [anon_sym_true] = ACTIONS(5952), + [anon_sym_false] = ACTIONS(5952), + [anon_sym_null] = ACTIONS(5952), + [anon_sym_unreachable] = ACTIONS(5952), + [anon_sym_undefined] = ACTIONS(5952), + [sym_sink] = ACTIONS(5952), + [sym_integer] = ACTIONS(5952), + [sym_float] = ACTIONS(5950), + [anon_sym_DQUOTE] = ACTIONS(5950), + [sym_multiline_string] = ACTIONS(5950), + [sym_character] = ACTIONS(5950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5950), + }, + [STATE(2603)] = { + [ts_builtin_sym_end] = ACTIONS(5954), + [sym_identifier] = ACTIONS(5956), + [anon_sym_import] = ACTIONS(5956), + [anon_sym_test] = ACTIONS(5956), + [anon_sym_hide] = ACTIONS(5956), + [anon_sym_func] = ACTIONS(5956), + [anon_sym_BANG] = ACTIONS(5956), + [anon_sym_EQ] = ACTIONS(5956), + [anon_sym_struct] = ACTIONS(5956), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_RPAREN] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(5954), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_DOLLAR] = ACTIONS(5954), + [anon_sym_PIPE] = ACTIONS(5956), + [anon_sym_QMARK] = ACTIONS(5954), + [anon_sym_STAR] = ACTIONS(5956), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_SEMI] = ACTIONS(5954), + [anon_sym_RBRACK] = ACTIONS(5954), + [anon_sym_void] = ACTIONS(5956), + [anon_sym_noreturn] = ACTIONS(5956), + [anon_sym_type] = ACTIONS(5956), + [anon_sym_anyopaque] = ACTIONS(5956), + [anon_sym_bool] = ACTIONS(5956), + [anon_sym_int] = ACTIONS(5956), + [anon_sym_uint] = ACTIONS(5956), + [anon_sym_float] = ACTIONS(5956), + [anon_sym_range] = ACTIONS(5956), + [anon_sym_i8] = ACTIONS(5956), + [anon_sym_i16] = ACTIONS(5956), + [anon_sym_i32] = ACTIONS(5956), + [anon_sym_i64] = ACTIONS(5956), + [anon_sym_u8] = ACTIONS(5956), + [anon_sym_u16] = ACTIONS(5956), + [anon_sym_u32] = ACTIONS(5956), + [anon_sym_u64] = ACTIONS(5956), + [anon_sym_isize] = ACTIONS(5956), + [anon_sym_usize] = ACTIONS(5956), + [anon_sym_f32] = ACTIONS(5956), + [anon_sym_f64] = ACTIONS(5956), + [anon_sym_c_char] = ACTIONS(5956), + [anon_sym_c_schar] = ACTIONS(5956), + [anon_sym_c_uchar] = ACTIONS(5956), + [anon_sym_c_short] = ACTIONS(5956), + [anon_sym_c_ushort] = ACTIONS(5956), + [anon_sym_c_int] = ACTIONS(5956), + [anon_sym_c_uint] = ACTIONS(5956), + [anon_sym_c_long] = ACTIONS(5956), + [anon_sym_c_ulong] = ACTIONS(5956), + [anon_sym_c_longlong] = ACTIONS(5956), + [anon_sym_c_ulonglong] = ACTIONS(5956), + [anon_sym_c_float] = ACTIONS(5956), + [anon_sym_c_double] = ACTIONS(5956), + [anon_sym_c_longdouble] = ACTIONS(5956), + [anon_sym_PLUS_EQ] = ACTIONS(5954), + [anon_sym_DASH_EQ] = ACTIONS(5954), + [anon_sym_STAR_EQ] = ACTIONS(5954), + [anon_sym_SLASH_EQ] = ACTIONS(5954), + [anon_sym_AMP_EQ] = ACTIONS(5954), + [anon_sym_PIPE_EQ] = ACTIONS(5954), + [anon_sym_xor_EQ] = ACTIONS(5954), + [anon_sym_LT_LT_EQ] = ACTIONS(5954), + [anon_sym_GT_GT_EQ] = ACTIONS(5954), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5954), + [anon_sym_return] = ACTIONS(5956), + [anon_sym_yield] = ACTIONS(5956), + [anon_sym_COLON] = ACTIONS(5954), + [anon_sym_break] = ACTIONS(5956), + [anon_sym_continue] = ACTIONS(5956), + [anon_sym_defer] = ACTIONS(5956), + [anon_sym_errdefer] = ACTIONS(5956), + [anon_sym_if] = ACTIONS(5956), + [anon_sym_else] = ACTIONS(5956), + [anon_sym_while] = ACTIONS(5956), + [anon_sym_expand] = ACTIONS(5956), + [anon_sym_for] = ACTIONS(5956), + [anon_sym_match] = ACTIONS(5956), + [anon_sym_DOT_DOT] = ACTIONS(5956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_orelse] = ACTIONS(5956), + [anon_sym_or] = ACTIONS(5956), + [anon_sym_and] = ACTIONS(5956), + [anon_sym_EQ_EQ] = ACTIONS(5954), + [anon_sym_BANG_EQ] = ACTIONS(5954), + [anon_sym_LT] = ACTIONS(5956), + [anon_sym_LT_EQ] = ACTIONS(5954), + [anon_sym_GT] = ACTIONS(5956), + [anon_sym_GT_EQ] = ACTIONS(5954), + [anon_sym_AMP] = ACTIONS(5956), + [anon_sym_xor] = ACTIONS(5956), + [anon_sym_LT_LT] = ACTIONS(5956), + [anon_sym_GT_GT] = ACTIONS(5956), + [anon_sym_LT_LT_PIPE] = ACTIONS(5956), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5956), + [anon_sym_catch] = ACTIONS(5956), + [anon_sym_TILDE] = ACTIONS(5954), + [anon_sym_try] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5954), + [anon_sym_true] = ACTIONS(5956), + [anon_sym_false] = ACTIONS(5956), + [anon_sym_null] = ACTIONS(5956), + [anon_sym_unreachable] = ACTIONS(5956), + [anon_sym_undefined] = ACTIONS(5956), + [sym_sink] = ACTIONS(5956), + [sym_integer] = ACTIONS(5956), + [sym_float] = ACTIONS(5954), + [anon_sym_DQUOTE] = ACTIONS(5954), + [sym_multiline_string] = ACTIONS(5954), + [sym_character] = ACTIONS(5954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5954), + }, + [STATE(2604)] = { + [ts_builtin_sym_end] = ACTIONS(4502), + [sym_identifier] = ACTIONS(4504), + [anon_sym_import] = ACTIONS(4504), + [anon_sym_test] = ACTIONS(4504), + [anon_sym_hide] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_EQ] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_RPAREN] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(4502), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_DOLLAR] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4504), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4502), + [anon_sym_RBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4502), + [anon_sym_DASH_EQ] = ACTIONS(4502), + [anon_sym_STAR_EQ] = ACTIONS(4502), + [anon_sym_SLASH_EQ] = ACTIONS(4502), + [anon_sym_AMP_EQ] = ACTIONS(4502), + [anon_sym_PIPE_EQ] = ACTIONS(4502), + [anon_sym_xor_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_EQ] = ACTIONS(4502), + [anon_sym_GT_GT_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_COLON] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_errdefer] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_expand] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4504), + [anon_sym_LT_LT_PIPE] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_SLASH] = ACTIONS(4504), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [anon_sym_true] = ACTIONS(4504), + [anon_sym_false] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_unreachable] = ACTIONS(4504), + [anon_sym_undefined] = ACTIONS(4504), + [sym_sink] = ACTIONS(4504), + [sym_integer] = ACTIONS(4504), + [sym_float] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_multiline_string] = ACTIONS(4502), + [sym_character] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(2605)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2607), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5960), + }, + [STATE(2606)] = { + [ts_builtin_sym_end] = ACTIONS(5962), + [sym_identifier] = ACTIONS(5964), + [anon_sym_import] = ACTIONS(5964), + [anon_sym_test] = ACTIONS(5964), + [anon_sym_hide] = ACTIONS(5964), + [anon_sym_func] = ACTIONS(5964), + [anon_sym_BANG] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(5964), + [anon_sym_struct] = ACTIONS(5964), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_RPAREN] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_COMMA] = ACTIONS(5962), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_DOLLAR] = ACTIONS(5962), + [anon_sym_PIPE] = ACTIONS(5964), + [anon_sym_QMARK] = ACTIONS(5962), + [anon_sym_STAR] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_SEMI] = ACTIONS(5962), + [anon_sym_RBRACK] = ACTIONS(5962), + [anon_sym_void] = ACTIONS(5964), + [anon_sym_noreturn] = ACTIONS(5964), + [anon_sym_type] = ACTIONS(5964), + [anon_sym_anyopaque] = ACTIONS(5964), + [anon_sym_bool] = ACTIONS(5964), + [anon_sym_int] = ACTIONS(5964), + [anon_sym_uint] = ACTIONS(5964), + [anon_sym_float] = ACTIONS(5964), + [anon_sym_range] = ACTIONS(5964), + [anon_sym_i8] = ACTIONS(5964), + [anon_sym_i16] = ACTIONS(5964), + [anon_sym_i32] = ACTIONS(5964), + [anon_sym_i64] = ACTIONS(5964), + [anon_sym_u8] = ACTIONS(5964), + [anon_sym_u16] = ACTIONS(5964), + [anon_sym_u32] = ACTIONS(5964), + [anon_sym_u64] = ACTIONS(5964), + [anon_sym_isize] = ACTIONS(5964), + [anon_sym_usize] = ACTIONS(5964), + [anon_sym_f32] = ACTIONS(5964), + [anon_sym_f64] = ACTIONS(5964), + [anon_sym_c_char] = ACTIONS(5964), + [anon_sym_c_schar] = ACTIONS(5964), + [anon_sym_c_uchar] = ACTIONS(5964), + [anon_sym_c_short] = ACTIONS(5964), + [anon_sym_c_ushort] = ACTIONS(5964), + [anon_sym_c_int] = ACTIONS(5964), + [anon_sym_c_uint] = ACTIONS(5964), + [anon_sym_c_long] = ACTIONS(5964), + [anon_sym_c_ulong] = ACTIONS(5964), + [anon_sym_c_longlong] = ACTIONS(5964), + [anon_sym_c_ulonglong] = ACTIONS(5964), + [anon_sym_c_float] = ACTIONS(5964), + [anon_sym_c_double] = ACTIONS(5964), + [anon_sym_c_longdouble] = ACTIONS(5964), + [anon_sym_PLUS_EQ] = ACTIONS(5962), + [anon_sym_DASH_EQ] = ACTIONS(5962), + [anon_sym_STAR_EQ] = ACTIONS(5962), + [anon_sym_SLASH_EQ] = ACTIONS(5962), + [anon_sym_AMP_EQ] = ACTIONS(5962), + [anon_sym_PIPE_EQ] = ACTIONS(5962), + [anon_sym_xor_EQ] = ACTIONS(5962), + [anon_sym_LT_LT_EQ] = ACTIONS(5962), + [anon_sym_GT_GT_EQ] = ACTIONS(5962), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5962), + [anon_sym_return] = ACTIONS(5964), + [anon_sym_yield] = ACTIONS(5964), + [anon_sym_COLON] = ACTIONS(5962), + [anon_sym_break] = ACTIONS(5964), + [anon_sym_continue] = ACTIONS(5964), + [anon_sym_defer] = ACTIONS(5964), + [anon_sym_errdefer] = ACTIONS(5964), + [anon_sym_if] = ACTIONS(5964), + [anon_sym_else] = ACTIONS(5964), + [anon_sym_while] = ACTIONS(5964), + [anon_sym_expand] = ACTIONS(5964), + [anon_sym_for] = ACTIONS(5964), + [anon_sym_match] = ACTIONS(5964), + [anon_sym_DOT_DOT] = ACTIONS(5964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_orelse] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5964), + [anon_sym_and] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5962), + [anon_sym_BANG_EQ] = ACTIONS(5962), + [anon_sym_LT] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5962), + [anon_sym_GT] = ACTIONS(5964), + [anon_sym_GT_EQ] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5964), + [anon_sym_xor] = ACTIONS(5964), + [anon_sym_LT_LT] = ACTIONS(5964), + [anon_sym_GT_GT] = ACTIONS(5964), + [anon_sym_LT_LT_PIPE] = ACTIONS(5964), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_SLASH] = ACTIONS(5964), + [anon_sym_catch] = ACTIONS(5964), + [anon_sym_TILDE] = ACTIONS(5962), + [anon_sym_try] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_true] = ACTIONS(5964), + [anon_sym_false] = ACTIONS(5964), + [anon_sym_null] = ACTIONS(5964), + [anon_sym_unreachable] = ACTIONS(5964), + [anon_sym_undefined] = ACTIONS(5964), + [sym_sink] = ACTIONS(5964), + [sym_integer] = ACTIONS(5964), + [sym_float] = ACTIONS(5962), + [anon_sym_DQUOTE] = ACTIONS(5962), + [sym_multiline_string] = ACTIONS(5962), + [sym_character] = ACTIONS(5962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5962), + }, + [STATE(2607)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2608)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2611), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5966), + }, + [STATE(2609)] = { + [ts_builtin_sym_end] = ACTIONS(5968), + [sym_identifier] = ACTIONS(5970), + [anon_sym_import] = ACTIONS(5970), + [anon_sym_test] = ACTIONS(5970), + [anon_sym_hide] = ACTIONS(5970), + [anon_sym_func] = ACTIONS(5970), + [anon_sym_BANG] = ACTIONS(5970), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_struct] = ACTIONS(5970), + [anon_sym_LPAREN] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_DOLLAR] = ACTIONS(5968), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5970), + [anon_sym_LBRACK] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_void] = ACTIONS(5970), + [anon_sym_noreturn] = ACTIONS(5970), + [anon_sym_type] = ACTIONS(5970), + [anon_sym_anyopaque] = ACTIONS(5970), + [anon_sym_bool] = ACTIONS(5970), + [anon_sym_int] = ACTIONS(5970), + [anon_sym_uint] = ACTIONS(5970), + [anon_sym_float] = ACTIONS(5970), + [anon_sym_range] = ACTIONS(5970), + [anon_sym_i8] = ACTIONS(5970), + [anon_sym_i16] = ACTIONS(5970), + [anon_sym_i32] = ACTIONS(5970), + [anon_sym_i64] = ACTIONS(5970), + [anon_sym_u8] = ACTIONS(5970), + [anon_sym_u16] = ACTIONS(5970), + [anon_sym_u32] = ACTIONS(5970), + [anon_sym_u64] = ACTIONS(5970), + [anon_sym_isize] = ACTIONS(5970), + [anon_sym_usize] = ACTIONS(5970), + [anon_sym_f32] = ACTIONS(5970), + [anon_sym_f64] = ACTIONS(5970), + [anon_sym_c_char] = ACTIONS(5970), + [anon_sym_c_schar] = ACTIONS(5970), + [anon_sym_c_uchar] = ACTIONS(5970), + [anon_sym_c_short] = ACTIONS(5970), + [anon_sym_c_ushort] = ACTIONS(5970), + [anon_sym_c_int] = ACTIONS(5970), + [anon_sym_c_uint] = ACTIONS(5970), + [anon_sym_c_long] = ACTIONS(5970), + [anon_sym_c_ulong] = ACTIONS(5970), + [anon_sym_c_longlong] = ACTIONS(5970), + [anon_sym_c_ulonglong] = ACTIONS(5970), + [anon_sym_c_float] = ACTIONS(5970), + [anon_sym_c_double] = ACTIONS(5970), + [anon_sym_c_longdouble] = ACTIONS(5970), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_xor_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5968), + [anon_sym_return] = ACTIONS(5970), + [anon_sym_yield] = ACTIONS(5970), + [anon_sym_COLON] = ACTIONS(5968), + [anon_sym_break] = ACTIONS(5970), + [anon_sym_continue] = ACTIONS(5970), + [anon_sym_defer] = ACTIONS(5970), + [anon_sym_errdefer] = ACTIONS(5970), + [anon_sym_if] = ACTIONS(5970), + [anon_sym_else] = ACTIONS(5970), + [anon_sym_while] = ACTIONS(5970), + [anon_sym_expand] = ACTIONS(5970), + [anon_sym_for] = ACTIONS(5970), + [anon_sym_match] = ACTIONS(5970), + [anon_sym_DOT_DOT] = ACTIONS(5970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5968), + [anon_sym_orelse] = ACTIONS(5970), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_LT_LT_PIPE] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_catch] = ACTIONS(5970), + [anon_sym_TILDE] = ACTIONS(5968), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_true] = ACTIONS(5970), + [anon_sym_false] = ACTIONS(5970), + [anon_sym_null] = ACTIONS(5970), + [anon_sym_unreachable] = ACTIONS(5970), + [anon_sym_undefined] = ACTIONS(5970), + [sym_sink] = ACTIONS(5970), + [sym_integer] = ACTIONS(5970), + [sym_float] = ACTIONS(5968), + [anon_sym_DQUOTE] = ACTIONS(5968), + [sym_multiline_string] = ACTIONS(5968), + [sym_character] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5968), + }, + [STATE(2610)] = { + [ts_builtin_sym_end] = ACTIONS(5972), + [sym_identifier] = ACTIONS(5974), + [anon_sym_import] = ACTIONS(5974), + [anon_sym_test] = ACTIONS(5974), + [anon_sym_hide] = ACTIONS(5974), + [anon_sym_func] = ACTIONS(5974), + [anon_sym_BANG] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_struct] = ACTIONS(5974), + [anon_sym_LPAREN] = ACTIONS(5972), + [anon_sym_RPAREN] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_COMMA] = ACTIONS(5972), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_DOLLAR] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5974), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_SEMI] = ACTIONS(5972), + [anon_sym_RBRACK] = ACTIONS(5972), + [anon_sym_void] = ACTIONS(5974), + [anon_sym_noreturn] = ACTIONS(5974), + [anon_sym_type] = ACTIONS(5974), + [anon_sym_anyopaque] = ACTIONS(5974), + [anon_sym_bool] = ACTIONS(5974), + [anon_sym_int] = ACTIONS(5974), + [anon_sym_uint] = ACTIONS(5974), + [anon_sym_float] = ACTIONS(5974), + [anon_sym_range] = ACTIONS(5974), + [anon_sym_i8] = ACTIONS(5974), + [anon_sym_i16] = ACTIONS(5974), + [anon_sym_i32] = ACTIONS(5974), + [anon_sym_i64] = ACTIONS(5974), + [anon_sym_u8] = ACTIONS(5974), + [anon_sym_u16] = ACTIONS(5974), + [anon_sym_u32] = ACTIONS(5974), + [anon_sym_u64] = ACTIONS(5974), + [anon_sym_isize] = ACTIONS(5974), + [anon_sym_usize] = ACTIONS(5974), + [anon_sym_f32] = ACTIONS(5974), + [anon_sym_f64] = ACTIONS(5974), + [anon_sym_c_char] = ACTIONS(5974), + [anon_sym_c_schar] = ACTIONS(5974), + [anon_sym_c_uchar] = ACTIONS(5974), + [anon_sym_c_short] = ACTIONS(5974), + [anon_sym_c_ushort] = ACTIONS(5974), + [anon_sym_c_int] = ACTIONS(5974), + [anon_sym_c_uint] = ACTIONS(5974), + [anon_sym_c_long] = ACTIONS(5974), + [anon_sym_c_ulong] = ACTIONS(5974), + [anon_sym_c_longlong] = ACTIONS(5974), + [anon_sym_c_ulonglong] = ACTIONS(5974), + [anon_sym_c_float] = ACTIONS(5974), + [anon_sym_c_double] = ACTIONS(5974), + [anon_sym_c_longdouble] = ACTIONS(5974), + [anon_sym_PLUS_EQ] = ACTIONS(5972), + [anon_sym_DASH_EQ] = ACTIONS(5972), + [anon_sym_STAR_EQ] = ACTIONS(5972), + [anon_sym_SLASH_EQ] = ACTIONS(5972), + [anon_sym_AMP_EQ] = ACTIONS(5972), + [anon_sym_PIPE_EQ] = ACTIONS(5972), + [anon_sym_xor_EQ] = ACTIONS(5972), + [anon_sym_LT_LT_EQ] = ACTIONS(5972), + [anon_sym_GT_GT_EQ] = ACTIONS(5972), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5972), + [anon_sym_return] = ACTIONS(5974), + [anon_sym_yield] = ACTIONS(5974), + [anon_sym_COLON] = ACTIONS(5972), + [anon_sym_break] = ACTIONS(5974), + [anon_sym_continue] = ACTIONS(5974), + [anon_sym_defer] = ACTIONS(5974), + [anon_sym_errdefer] = ACTIONS(5974), + [anon_sym_if] = ACTIONS(5974), + [anon_sym_else] = ACTIONS(5974), + [anon_sym_while] = ACTIONS(5974), + [anon_sym_expand] = ACTIONS(5974), + [anon_sym_for] = ACTIONS(5974), + [anon_sym_match] = ACTIONS(5974), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5972), + [anon_sym_orelse] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5974), + [anon_sym_and] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_AMP] = ACTIONS(5974), + [anon_sym_xor] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym_LT_LT_PIPE] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5974), + [anon_sym_catch] = ACTIONS(5974), + [anon_sym_TILDE] = ACTIONS(5972), + [anon_sym_try] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5972), + [anon_sym_true] = ACTIONS(5974), + [anon_sym_false] = ACTIONS(5974), + [anon_sym_null] = ACTIONS(5974), + [anon_sym_unreachable] = ACTIONS(5974), + [anon_sym_undefined] = ACTIONS(5974), + [sym_sink] = ACTIONS(5974), + [sym_integer] = ACTIONS(5974), + [sym_float] = ACTIONS(5972), + [anon_sym_DQUOTE] = ACTIONS(5972), + [sym_multiline_string] = ACTIONS(5972), + [sym_character] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5972), + }, + [STATE(2611)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2612)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2614), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5976), + }, + [STATE(2613)] = { + [ts_builtin_sym_end] = ACTIONS(5978), + [sym_identifier] = ACTIONS(5980), + [anon_sym_import] = ACTIONS(5980), + [anon_sym_test] = ACTIONS(5980), + [anon_sym_hide] = ACTIONS(5980), + [anon_sym_func] = ACTIONS(5980), + [anon_sym_BANG] = ACTIONS(5980), + [anon_sym_EQ] = ACTIONS(5980), + [anon_sym_struct] = ACTIONS(5980), + [anon_sym_LPAREN] = ACTIONS(5978), + [anon_sym_RPAREN] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5978), + [anon_sym_COMMA] = ACTIONS(5978), + [anon_sym_RBRACE] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5980), + [anon_sym_DOLLAR] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5980), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_STAR] = ACTIONS(5980), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_SEMI] = ACTIONS(5978), + [anon_sym_RBRACK] = ACTIONS(5978), + [anon_sym_void] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym_type] = ACTIONS(5980), + [anon_sym_anyopaque] = ACTIONS(5980), + [anon_sym_bool] = ACTIONS(5980), + [anon_sym_int] = ACTIONS(5980), + [anon_sym_uint] = ACTIONS(5980), + [anon_sym_float] = ACTIONS(5980), + [anon_sym_range] = ACTIONS(5980), + [anon_sym_i8] = ACTIONS(5980), + [anon_sym_i16] = ACTIONS(5980), + [anon_sym_i32] = ACTIONS(5980), + [anon_sym_i64] = ACTIONS(5980), + [anon_sym_u8] = ACTIONS(5980), + [anon_sym_u16] = ACTIONS(5980), + [anon_sym_u32] = ACTIONS(5980), + [anon_sym_u64] = ACTIONS(5980), + [anon_sym_isize] = ACTIONS(5980), + [anon_sym_usize] = ACTIONS(5980), + [anon_sym_f32] = ACTIONS(5980), + [anon_sym_f64] = ACTIONS(5980), + [anon_sym_c_char] = ACTIONS(5980), + [anon_sym_c_schar] = ACTIONS(5980), + [anon_sym_c_uchar] = ACTIONS(5980), + [anon_sym_c_short] = ACTIONS(5980), + [anon_sym_c_ushort] = ACTIONS(5980), + [anon_sym_c_int] = ACTIONS(5980), + [anon_sym_c_uint] = ACTIONS(5980), + [anon_sym_c_long] = ACTIONS(5980), + [anon_sym_c_ulong] = ACTIONS(5980), + [anon_sym_c_longlong] = ACTIONS(5980), + [anon_sym_c_ulonglong] = ACTIONS(5980), + [anon_sym_c_float] = ACTIONS(5980), + [anon_sym_c_double] = ACTIONS(5980), + [anon_sym_c_longdouble] = ACTIONS(5980), + [anon_sym_PLUS_EQ] = ACTIONS(5978), + [anon_sym_DASH_EQ] = ACTIONS(5978), + [anon_sym_STAR_EQ] = ACTIONS(5978), + [anon_sym_SLASH_EQ] = ACTIONS(5978), + [anon_sym_AMP_EQ] = ACTIONS(5978), + [anon_sym_PIPE_EQ] = ACTIONS(5978), + [anon_sym_xor_EQ] = ACTIONS(5978), + [anon_sym_LT_LT_EQ] = ACTIONS(5978), + [anon_sym_GT_GT_EQ] = ACTIONS(5978), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5978), + [anon_sym_return] = ACTIONS(5980), + [anon_sym_yield] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_break] = ACTIONS(5980), + [anon_sym_continue] = ACTIONS(5980), + [anon_sym_defer] = ACTIONS(5980), + [anon_sym_errdefer] = ACTIONS(5980), + [anon_sym_if] = ACTIONS(5980), + [anon_sym_else] = ACTIONS(5980), + [anon_sym_while] = ACTIONS(5980), + [anon_sym_expand] = ACTIONS(5980), + [anon_sym_for] = ACTIONS(5980), + [anon_sym_match] = ACTIONS(5980), + [anon_sym_DOT_DOT] = ACTIONS(5980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5978), + [anon_sym_orelse] = ACTIONS(5980), + [anon_sym_or] = ACTIONS(5980), + [anon_sym_and] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5980), + [anon_sym_xor] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5980), + [anon_sym_LT_LT_PIPE] = ACTIONS(5980), + [anon_sym_PLUS] = ACTIONS(5980), + [anon_sym_SLASH] = ACTIONS(5980), + [anon_sym_catch] = ACTIONS(5980), + [anon_sym_TILDE] = ACTIONS(5978), + [anon_sym_try] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_true] = ACTIONS(5980), + [anon_sym_false] = ACTIONS(5980), + [anon_sym_null] = ACTIONS(5980), + [anon_sym_unreachable] = ACTIONS(5980), + [anon_sym_undefined] = ACTIONS(5980), + [sym_sink] = ACTIONS(5980), + [sym_integer] = ACTIONS(5980), + [sym_float] = ACTIONS(5978), + [anon_sym_DQUOTE] = ACTIONS(5978), + [sym_multiline_string] = ACTIONS(5978), + [sym_character] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5978), + }, + [STATE(2614)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8756), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(367), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2615)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10703), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2620), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5982), + }, + [STATE(2616)] = { + [ts_builtin_sym_end] = ACTIONS(5984), + [sym_identifier] = ACTIONS(5986), + [anon_sym_import] = ACTIONS(5986), + [anon_sym_test] = ACTIONS(5986), + [anon_sym_hide] = ACTIONS(5986), + [anon_sym_func] = ACTIONS(5986), + [anon_sym_BANG] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_struct] = ACTIONS(5986), + [anon_sym_LPAREN] = ACTIONS(5984), + [anon_sym_RPAREN] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_DOLLAR] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_SEMI] = ACTIONS(5984), + [anon_sym_RBRACK] = ACTIONS(5984), + [anon_sym_void] = ACTIONS(5986), + [anon_sym_noreturn] = ACTIONS(5986), + [anon_sym_type] = ACTIONS(5986), + [anon_sym_anyopaque] = ACTIONS(5986), + [anon_sym_bool] = ACTIONS(5986), + [anon_sym_int] = ACTIONS(5986), + [anon_sym_uint] = ACTIONS(5986), + [anon_sym_float] = ACTIONS(5986), + [anon_sym_range] = ACTIONS(5986), + [anon_sym_i8] = ACTIONS(5986), + [anon_sym_i16] = ACTIONS(5986), + [anon_sym_i32] = ACTIONS(5986), + [anon_sym_i64] = ACTIONS(5986), + [anon_sym_u8] = ACTIONS(5986), + [anon_sym_u16] = ACTIONS(5986), + [anon_sym_u32] = ACTIONS(5986), + [anon_sym_u64] = ACTIONS(5986), + [anon_sym_isize] = ACTIONS(5986), + [anon_sym_usize] = ACTIONS(5986), + [anon_sym_f32] = ACTIONS(5986), + [anon_sym_f64] = ACTIONS(5986), + [anon_sym_c_char] = ACTIONS(5986), + [anon_sym_c_schar] = ACTIONS(5986), + [anon_sym_c_uchar] = ACTIONS(5986), + [anon_sym_c_short] = ACTIONS(5986), + [anon_sym_c_ushort] = ACTIONS(5986), + [anon_sym_c_int] = ACTIONS(5986), + [anon_sym_c_uint] = ACTIONS(5986), + [anon_sym_c_long] = ACTIONS(5986), + [anon_sym_c_ulong] = ACTIONS(5986), + [anon_sym_c_longlong] = ACTIONS(5986), + [anon_sym_c_ulonglong] = ACTIONS(5986), + [anon_sym_c_float] = ACTIONS(5986), + [anon_sym_c_double] = ACTIONS(5986), + [anon_sym_c_longdouble] = ACTIONS(5986), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_xor_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5984), + [anon_sym_return] = ACTIONS(5986), + [anon_sym_yield] = ACTIONS(5986), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_break] = ACTIONS(5986), + [anon_sym_continue] = ACTIONS(5986), + [anon_sym_defer] = ACTIONS(5986), + [anon_sym_errdefer] = ACTIONS(5986), + [anon_sym_if] = ACTIONS(5986), + [anon_sym_else] = ACTIONS(5986), + [anon_sym_while] = ACTIONS(5986), + [anon_sym_expand] = ACTIONS(5986), + [anon_sym_for] = ACTIONS(5986), + [anon_sym_match] = ACTIONS(5986), + [anon_sym_DOT_DOT] = ACTIONS(5986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5984), + [anon_sym_orelse] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT_PIPE] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_catch] = ACTIONS(5986), + [anon_sym_TILDE] = ACTIONS(5984), + [anon_sym_try] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5984), + [anon_sym_true] = ACTIONS(5986), + [anon_sym_false] = ACTIONS(5986), + [anon_sym_null] = ACTIONS(5986), + [anon_sym_unreachable] = ACTIONS(5986), + [anon_sym_undefined] = ACTIONS(5986), + [sym_sink] = ACTIONS(5986), + [sym_integer] = ACTIONS(5986), + [sym_float] = ACTIONS(5984), + [anon_sym_DQUOTE] = ACTIONS(5984), + [sym_multiline_string] = ACTIONS(5984), + [sym_character] = ACTIONS(5984), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5984), + }, + [STATE(2617)] = { + [ts_builtin_sym_end] = ACTIONS(5988), + [sym_identifier] = ACTIONS(5990), + [anon_sym_import] = ACTIONS(5990), + [anon_sym_test] = ACTIONS(5990), + [anon_sym_hide] = ACTIONS(5990), + [anon_sym_func] = ACTIONS(5990), + [anon_sym_BANG] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(5990), + [anon_sym_struct] = ACTIONS(5990), + [anon_sym_LPAREN] = ACTIONS(5988), + [anon_sym_RPAREN] = ACTIONS(5988), + [anon_sym_LBRACE] = ACTIONS(5988), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5990), + [anon_sym_DOLLAR] = ACTIONS(5988), + [anon_sym_PIPE] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5990), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_SEMI] = ACTIONS(5988), + [anon_sym_RBRACK] = ACTIONS(5988), + [anon_sym_void] = ACTIONS(5990), + [anon_sym_noreturn] = ACTIONS(5990), + [anon_sym_type] = ACTIONS(5990), + [anon_sym_anyopaque] = ACTIONS(5990), + [anon_sym_bool] = ACTIONS(5990), + [anon_sym_int] = ACTIONS(5990), + [anon_sym_uint] = ACTIONS(5990), + [anon_sym_float] = ACTIONS(5990), + [anon_sym_range] = ACTIONS(5990), + [anon_sym_i8] = ACTIONS(5990), + [anon_sym_i16] = ACTIONS(5990), + [anon_sym_i32] = ACTIONS(5990), + [anon_sym_i64] = ACTIONS(5990), + [anon_sym_u8] = ACTIONS(5990), + [anon_sym_u16] = ACTIONS(5990), + [anon_sym_u32] = ACTIONS(5990), + [anon_sym_u64] = ACTIONS(5990), + [anon_sym_isize] = ACTIONS(5990), + [anon_sym_usize] = ACTIONS(5990), + [anon_sym_f32] = ACTIONS(5990), + [anon_sym_f64] = ACTIONS(5990), + [anon_sym_c_char] = ACTIONS(5990), + [anon_sym_c_schar] = ACTIONS(5990), + [anon_sym_c_uchar] = ACTIONS(5990), + [anon_sym_c_short] = ACTIONS(5990), + [anon_sym_c_ushort] = ACTIONS(5990), + [anon_sym_c_int] = ACTIONS(5990), + [anon_sym_c_uint] = ACTIONS(5990), + [anon_sym_c_long] = ACTIONS(5990), + [anon_sym_c_ulong] = ACTIONS(5990), + [anon_sym_c_longlong] = ACTIONS(5990), + [anon_sym_c_ulonglong] = ACTIONS(5990), + [anon_sym_c_float] = ACTIONS(5990), + [anon_sym_c_double] = ACTIONS(5990), + [anon_sym_c_longdouble] = ACTIONS(5990), + [anon_sym_PLUS_EQ] = ACTIONS(5988), + [anon_sym_DASH_EQ] = ACTIONS(5988), + [anon_sym_STAR_EQ] = ACTIONS(5988), + [anon_sym_SLASH_EQ] = ACTIONS(5988), + [anon_sym_AMP_EQ] = ACTIONS(5988), + [anon_sym_PIPE_EQ] = ACTIONS(5988), + [anon_sym_xor_EQ] = ACTIONS(5988), + [anon_sym_LT_LT_EQ] = ACTIONS(5988), + [anon_sym_GT_GT_EQ] = ACTIONS(5988), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5988), + [anon_sym_return] = ACTIONS(5990), + [anon_sym_yield] = ACTIONS(5990), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_break] = ACTIONS(5990), + [anon_sym_continue] = ACTIONS(5990), + [anon_sym_defer] = ACTIONS(5990), + [anon_sym_errdefer] = ACTIONS(5990), + [anon_sym_if] = ACTIONS(5990), + [anon_sym_else] = ACTIONS(5990), + [anon_sym_while] = ACTIONS(5990), + [anon_sym_expand] = ACTIONS(5990), + [anon_sym_for] = ACTIONS(5990), + [anon_sym_match] = ACTIONS(5990), + [anon_sym_DOT_DOT] = ACTIONS(5990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5988), + [anon_sym_orelse] = ACTIONS(5990), + [anon_sym_or] = ACTIONS(5990), + [anon_sym_and] = ACTIONS(5990), + [anon_sym_EQ_EQ] = ACTIONS(5988), + [anon_sym_BANG_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5990), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_GT] = ACTIONS(5990), + [anon_sym_GT_EQ] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5990), + [anon_sym_xor] = ACTIONS(5990), + [anon_sym_LT_LT] = ACTIONS(5990), + [anon_sym_GT_GT] = ACTIONS(5990), + [anon_sym_LT_LT_PIPE] = ACTIONS(5990), + [anon_sym_PLUS] = ACTIONS(5990), + [anon_sym_SLASH] = ACTIONS(5990), + [anon_sym_catch] = ACTIONS(5990), + [anon_sym_TILDE] = ACTIONS(5988), + [anon_sym_try] = ACTIONS(5990), + [anon_sym_DOT] = ACTIONS(5990), + [anon_sym_CARET] = ACTIONS(5988), + [anon_sym_true] = ACTIONS(5990), + [anon_sym_false] = ACTIONS(5990), + [anon_sym_null] = ACTIONS(5990), + [anon_sym_unreachable] = ACTIONS(5990), + [anon_sym_undefined] = ACTIONS(5990), + [sym_sink] = ACTIONS(5990), + [sym_integer] = ACTIONS(5990), + [sym_float] = ACTIONS(5988), + [anon_sym_DQUOTE] = ACTIONS(5988), + [sym_multiline_string] = ACTIONS(5988), + [sym_character] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5988), + }, + [STATE(2618)] = { + [ts_builtin_sym_end] = ACTIONS(5992), + [sym_identifier] = ACTIONS(5994), + [anon_sym_import] = ACTIONS(5994), + [anon_sym_test] = ACTIONS(5994), + [anon_sym_hide] = ACTIONS(5994), + [anon_sym_func] = ACTIONS(5994), + [anon_sym_BANG] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_struct] = ACTIONS(5994), + [anon_sym_LPAREN] = ACTIONS(5992), + [anon_sym_RPAREN] = ACTIONS(5992), + [anon_sym_LBRACE] = ACTIONS(5992), + [anon_sym_COMMA] = ACTIONS(5992), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_DOLLAR] = ACTIONS(5992), + [anon_sym_PIPE] = ACTIONS(5994), + [anon_sym_QMARK] = ACTIONS(5992), + [anon_sym_STAR] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(5992), + [anon_sym_SEMI] = ACTIONS(5992), + [anon_sym_RBRACK] = ACTIONS(5992), + [anon_sym_void] = ACTIONS(5994), + [anon_sym_noreturn] = ACTIONS(5994), + [anon_sym_type] = ACTIONS(5994), + [anon_sym_anyopaque] = ACTIONS(5994), + [anon_sym_bool] = ACTIONS(5994), + [anon_sym_int] = ACTIONS(5994), + [anon_sym_uint] = ACTIONS(5994), + [anon_sym_float] = ACTIONS(5994), + [anon_sym_range] = ACTIONS(5994), + [anon_sym_i8] = ACTIONS(5994), + [anon_sym_i16] = ACTIONS(5994), + [anon_sym_i32] = ACTIONS(5994), + [anon_sym_i64] = ACTIONS(5994), + [anon_sym_u8] = ACTIONS(5994), + [anon_sym_u16] = ACTIONS(5994), + [anon_sym_u32] = ACTIONS(5994), + [anon_sym_u64] = ACTIONS(5994), + [anon_sym_isize] = ACTIONS(5994), + [anon_sym_usize] = ACTIONS(5994), + [anon_sym_f32] = ACTIONS(5994), + [anon_sym_f64] = ACTIONS(5994), + [anon_sym_c_char] = ACTIONS(5994), + [anon_sym_c_schar] = ACTIONS(5994), + [anon_sym_c_uchar] = ACTIONS(5994), + [anon_sym_c_short] = ACTIONS(5994), + [anon_sym_c_ushort] = ACTIONS(5994), + [anon_sym_c_int] = ACTIONS(5994), + [anon_sym_c_uint] = ACTIONS(5994), + [anon_sym_c_long] = ACTIONS(5994), + [anon_sym_c_ulong] = ACTIONS(5994), + [anon_sym_c_longlong] = ACTIONS(5994), + [anon_sym_c_ulonglong] = ACTIONS(5994), + [anon_sym_c_float] = ACTIONS(5994), + [anon_sym_c_double] = ACTIONS(5994), + [anon_sym_c_longdouble] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5992), + [anon_sym_DASH_EQ] = ACTIONS(5992), + [anon_sym_STAR_EQ] = ACTIONS(5992), + [anon_sym_SLASH_EQ] = ACTIONS(5992), + [anon_sym_AMP_EQ] = ACTIONS(5992), + [anon_sym_PIPE_EQ] = ACTIONS(5992), + [anon_sym_xor_EQ] = ACTIONS(5992), + [anon_sym_LT_LT_EQ] = ACTIONS(5992), + [anon_sym_GT_GT_EQ] = ACTIONS(5992), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5992), + [anon_sym_return] = ACTIONS(5994), + [anon_sym_yield] = ACTIONS(5994), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_break] = ACTIONS(5994), + [anon_sym_continue] = ACTIONS(5994), + [anon_sym_defer] = ACTIONS(5994), + [anon_sym_errdefer] = ACTIONS(5994), + [anon_sym_if] = ACTIONS(5994), + [anon_sym_else] = ACTIONS(5994), + [anon_sym_while] = ACTIONS(5994), + [anon_sym_expand] = ACTIONS(5994), + [anon_sym_for] = ACTIONS(5994), + [anon_sym_match] = ACTIONS(5994), + [anon_sym_DOT_DOT] = ACTIONS(5994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5992), + [anon_sym_orelse] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5994), + [anon_sym_and] = ACTIONS(5994), + [anon_sym_EQ_EQ] = ACTIONS(5992), + [anon_sym_BANG_EQ] = ACTIONS(5992), + [anon_sym_LT] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5992), + [anon_sym_GT] = ACTIONS(5994), + [anon_sym_GT_EQ] = ACTIONS(5992), + [anon_sym_AMP] = ACTIONS(5994), + [anon_sym_xor] = ACTIONS(5994), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym_LT_LT_PIPE] = ACTIONS(5994), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5994), + [anon_sym_catch] = ACTIONS(5994), + [anon_sym_TILDE] = ACTIONS(5992), + [anon_sym_try] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_CARET] = ACTIONS(5992), + [anon_sym_true] = ACTIONS(5994), + [anon_sym_false] = ACTIONS(5994), + [anon_sym_null] = ACTIONS(5994), + [anon_sym_unreachable] = ACTIONS(5994), + [anon_sym_undefined] = ACTIONS(5994), + [sym_sink] = ACTIONS(5994), + [sym_integer] = ACTIONS(5994), + [sym_float] = ACTIONS(5992), + [anon_sym_DQUOTE] = ACTIONS(5992), + [sym_multiline_string] = ACTIONS(5992), + [sym_character] = ACTIONS(5992), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5992), + }, + [STATE(2619)] = { + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_import] = ACTIONS(2903), + [anon_sym_test] = ACTIONS(2903), + [anon_sym_hide] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_RPAREN] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2903), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym_RBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_PLUS_EQ] = ACTIONS(2901), + [anon_sym_DASH_EQ] = ACTIONS(2901), + [anon_sym_STAR_EQ] = ACTIONS(2901), + [anon_sym_SLASH_EQ] = ACTIONS(2901), + [anon_sym_AMP_EQ] = ACTIONS(2901), + [anon_sym_PIPE_EQ] = ACTIONS(2901), + [anon_sym_xor_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_GT_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_COLON] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_errdefer] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_expand] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_LT_LT_PIPE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2903), + [anon_sym_unreachable] = ACTIONS(2903), + [anon_sym_undefined] = ACTIONS(2903), + [sym_sink] = ACTIONS(2903), + [sym_integer] = ACTIONS(2903), + [sym_float] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_multiline_string] = ACTIONS(2901), + [sym_character] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(2620)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10491), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2621)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10495), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2630), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5996), + }, + [STATE(2622)] = { + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_test] = ACTIONS(2712), + [anon_sym_hide] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_RBRACK] = ACTIONS(2710), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_PLUS_EQ] = ACTIONS(2710), + [anon_sym_DASH_EQ] = ACTIONS(2710), + [anon_sym_STAR_EQ] = ACTIONS(2710), + [anon_sym_SLASH_EQ] = ACTIONS(2710), + [anon_sym_AMP_EQ] = ACTIONS(2710), + [anon_sym_PIPE_EQ] = ACTIONS(2710), + [anon_sym_xor_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_COLON] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_defer] = ACTIONS(2712), + [anon_sym_errdefer] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_expand] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(2712), + [anon_sym_and] = ACTIONS(2712), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), + [anon_sym_xor] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_LT_LT_PIPE] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_unreachable] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [sym_sink] = ACTIONS(2712), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [sym_multiline_string] = ACTIONS(2710), + [sym_character] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(2623)] = { + [ts_builtin_sym_end] = ACTIONS(5998), + [sym_identifier] = ACTIONS(6000), + [anon_sym_import] = ACTIONS(6000), + [anon_sym_test] = ACTIONS(6000), + [anon_sym_hide] = ACTIONS(6000), + [anon_sym_func] = ACTIONS(6000), + [anon_sym_BANG] = ACTIONS(6002), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_struct] = ACTIONS(6000), + [anon_sym_LPAREN] = ACTIONS(5998), + [anon_sym_RPAREN] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(5998), + [anon_sym_COMMA] = ACTIONS(5998), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_DASH] = ACTIONS(6000), + [anon_sym_DOLLAR] = ACTIONS(5998), + [anon_sym_PIPE] = ACTIONS(6000), + [anon_sym_QMARK] = ACTIONS(5998), + [anon_sym_STAR] = ACTIONS(6000), + [anon_sym_LBRACK] = ACTIONS(5998), + [anon_sym_SEMI] = ACTIONS(5998), + [anon_sym_RBRACK] = ACTIONS(5998), + [anon_sym_void] = ACTIONS(6000), + [anon_sym_noreturn] = ACTIONS(6000), + [anon_sym_type] = ACTIONS(6000), + [anon_sym_anyopaque] = ACTIONS(6000), + [anon_sym_bool] = ACTIONS(6000), + [anon_sym_int] = ACTIONS(6000), + [anon_sym_uint] = ACTIONS(6000), + [anon_sym_float] = ACTIONS(6000), + [anon_sym_range] = ACTIONS(6000), + [anon_sym_i8] = ACTIONS(6000), + [anon_sym_i16] = ACTIONS(6000), + [anon_sym_i32] = ACTIONS(6000), + [anon_sym_i64] = ACTIONS(6000), + [anon_sym_u8] = ACTIONS(6000), + [anon_sym_u16] = ACTIONS(6000), + [anon_sym_u32] = ACTIONS(6000), + [anon_sym_u64] = ACTIONS(6000), + [anon_sym_isize] = ACTIONS(6000), + [anon_sym_usize] = ACTIONS(6000), + [anon_sym_f32] = ACTIONS(6000), + [anon_sym_f64] = ACTIONS(6000), + [anon_sym_c_char] = ACTIONS(6000), + [anon_sym_c_schar] = ACTIONS(6000), + [anon_sym_c_uchar] = ACTIONS(6000), + [anon_sym_c_short] = ACTIONS(6000), + [anon_sym_c_ushort] = ACTIONS(6000), + [anon_sym_c_int] = ACTIONS(6000), + [anon_sym_c_uint] = ACTIONS(6000), + [anon_sym_c_long] = ACTIONS(6000), + [anon_sym_c_ulong] = ACTIONS(6000), + [anon_sym_c_longlong] = ACTIONS(6000), + [anon_sym_c_ulonglong] = ACTIONS(6000), + [anon_sym_c_float] = ACTIONS(6000), + [anon_sym_c_double] = ACTIONS(6000), + [anon_sym_c_longdouble] = ACTIONS(6000), + [anon_sym_PLUS_EQ] = ACTIONS(5998), + [anon_sym_DASH_EQ] = ACTIONS(5998), + [anon_sym_STAR_EQ] = ACTIONS(5998), + [anon_sym_SLASH_EQ] = ACTIONS(5998), + [anon_sym_AMP_EQ] = ACTIONS(5998), + [anon_sym_PIPE_EQ] = ACTIONS(5998), + [anon_sym_xor_EQ] = ACTIONS(5998), + [anon_sym_LT_LT_EQ] = ACTIONS(5998), + [anon_sym_GT_GT_EQ] = ACTIONS(5998), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5998), + [anon_sym_return] = ACTIONS(6000), + [anon_sym_yield] = ACTIONS(6000), + [anon_sym_COLON] = ACTIONS(5998), + [anon_sym_break] = ACTIONS(6000), + [anon_sym_continue] = ACTIONS(6000), + [anon_sym_defer] = ACTIONS(6000), + [anon_sym_errdefer] = ACTIONS(6000), + [anon_sym_if] = ACTIONS(6000), + [anon_sym_else] = ACTIONS(6000), + [anon_sym_while] = ACTIONS(6000), + [anon_sym_expand] = ACTIONS(6000), + [anon_sym_for] = ACTIONS(6000), + [anon_sym_match] = ACTIONS(6000), + [anon_sym_DOT_DOT] = ACTIONS(6000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5998), + [anon_sym_orelse] = ACTIONS(6000), + [anon_sym_or] = ACTIONS(6000), + [anon_sym_and] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5998), + [anon_sym_BANG_EQ] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(6000), + [anon_sym_LT_EQ] = ACTIONS(5998), + [anon_sym_GT] = ACTIONS(6000), + [anon_sym_GT_EQ] = ACTIONS(5998), + [anon_sym_AMP] = ACTIONS(6000), + [anon_sym_xor] = ACTIONS(6000), + [anon_sym_LT_LT] = ACTIONS(6000), + [anon_sym_GT_GT] = ACTIONS(6000), + [anon_sym_LT_LT_PIPE] = ACTIONS(6000), + [anon_sym_PLUS] = ACTIONS(6000), + [anon_sym_SLASH] = ACTIONS(6000), + [anon_sym_catch] = ACTIONS(6000), + [anon_sym_TILDE] = ACTIONS(5998), + [anon_sym_try] = ACTIONS(6000), + [anon_sym_DOT] = ACTIONS(6000), + [anon_sym_CARET] = ACTIONS(5998), + [anon_sym_true] = ACTIONS(6000), + [anon_sym_false] = ACTIONS(6000), + [anon_sym_null] = ACTIONS(6000), + [anon_sym_unreachable] = ACTIONS(6000), + [anon_sym_undefined] = ACTIONS(6000), + [sym_sink] = ACTIONS(6000), + [sym_integer] = ACTIONS(6000), + [sym_float] = ACTIONS(5998), + [anon_sym_DQUOTE] = ACTIONS(5998), + [sym_multiline_string] = ACTIONS(5998), + [sym_character] = ACTIONS(5998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5998), + }, + [STATE(2624)] = { + [ts_builtin_sym_end] = ACTIONS(6004), + [sym_identifier] = ACTIONS(6006), + [anon_sym_import] = ACTIONS(6006), + [anon_sym_test] = ACTIONS(6006), + [anon_sym_hide] = ACTIONS(6006), + [anon_sym_func] = ACTIONS(6006), + [anon_sym_BANG] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_struct] = ACTIONS(6006), + [anon_sym_LPAREN] = ACTIONS(6004), + [anon_sym_RPAREN] = ACTIONS(6004), + [anon_sym_LBRACE] = ACTIONS(6004), + [anon_sym_COMMA] = ACTIONS(6004), + [anon_sym_RBRACE] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(6006), + [anon_sym_DOLLAR] = ACTIONS(6004), + [anon_sym_PIPE] = ACTIONS(6006), + [anon_sym_QMARK] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(6004), + [anon_sym_SEMI] = ACTIONS(6004), + [anon_sym_RBRACK] = ACTIONS(6004), + [anon_sym_void] = ACTIONS(6006), + [anon_sym_noreturn] = ACTIONS(6006), + [anon_sym_type] = ACTIONS(6006), + [anon_sym_anyopaque] = ACTIONS(6006), + [anon_sym_bool] = ACTIONS(6006), + [anon_sym_int] = ACTIONS(6006), + [anon_sym_uint] = ACTIONS(6006), + [anon_sym_float] = ACTIONS(6006), + [anon_sym_range] = ACTIONS(6006), + [anon_sym_i8] = ACTIONS(6006), + [anon_sym_i16] = ACTIONS(6006), + [anon_sym_i32] = ACTIONS(6006), + [anon_sym_i64] = ACTIONS(6006), + [anon_sym_u8] = ACTIONS(6006), + [anon_sym_u16] = ACTIONS(6006), + [anon_sym_u32] = ACTIONS(6006), + [anon_sym_u64] = ACTIONS(6006), + [anon_sym_isize] = ACTIONS(6006), + [anon_sym_usize] = ACTIONS(6006), + [anon_sym_f32] = ACTIONS(6006), + [anon_sym_f64] = ACTIONS(6006), + [anon_sym_c_char] = ACTIONS(6006), + [anon_sym_c_schar] = ACTIONS(6006), + [anon_sym_c_uchar] = ACTIONS(6006), + [anon_sym_c_short] = ACTIONS(6006), + [anon_sym_c_ushort] = ACTIONS(6006), + [anon_sym_c_int] = ACTIONS(6006), + [anon_sym_c_uint] = ACTIONS(6006), + [anon_sym_c_long] = ACTIONS(6006), + [anon_sym_c_ulong] = ACTIONS(6006), + [anon_sym_c_longlong] = ACTIONS(6006), + [anon_sym_c_ulonglong] = ACTIONS(6006), + [anon_sym_c_float] = ACTIONS(6006), + [anon_sym_c_double] = ACTIONS(6006), + [anon_sym_c_longdouble] = ACTIONS(6006), + [anon_sym_PLUS_EQ] = ACTIONS(6004), + [anon_sym_DASH_EQ] = ACTIONS(6004), + [anon_sym_STAR_EQ] = ACTIONS(6004), + [anon_sym_SLASH_EQ] = ACTIONS(6004), + [anon_sym_AMP_EQ] = ACTIONS(6004), + [anon_sym_PIPE_EQ] = ACTIONS(6004), + [anon_sym_xor_EQ] = ACTIONS(6004), + [anon_sym_LT_LT_EQ] = ACTIONS(6004), + [anon_sym_GT_GT_EQ] = ACTIONS(6004), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6004), + [anon_sym_return] = ACTIONS(6006), + [anon_sym_yield] = ACTIONS(6006), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_break] = ACTIONS(6006), + [anon_sym_continue] = ACTIONS(6006), + [anon_sym_defer] = ACTIONS(6006), + [anon_sym_errdefer] = ACTIONS(6006), + [anon_sym_if] = ACTIONS(6006), + [anon_sym_else] = ACTIONS(6006), + [anon_sym_while] = ACTIONS(6006), + [anon_sym_expand] = ACTIONS(6006), + [anon_sym_for] = ACTIONS(6006), + [anon_sym_match] = ACTIONS(6006), + [anon_sym_DOT_DOT] = ACTIONS(6006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6004), + [anon_sym_orelse] = ACTIONS(6006), + [anon_sym_or] = ACTIONS(6006), + [anon_sym_and] = ACTIONS(6006), + [anon_sym_EQ_EQ] = ACTIONS(6004), + [anon_sym_BANG_EQ] = ACTIONS(6004), + [anon_sym_LT] = ACTIONS(6006), + [anon_sym_LT_EQ] = ACTIONS(6004), + [anon_sym_GT] = ACTIONS(6006), + [anon_sym_GT_EQ] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6006), + [anon_sym_xor] = ACTIONS(6006), + [anon_sym_LT_LT] = ACTIONS(6006), + [anon_sym_GT_GT] = ACTIONS(6006), + [anon_sym_LT_LT_PIPE] = ACTIONS(6006), + [anon_sym_PLUS] = ACTIONS(6006), + [anon_sym_SLASH] = ACTIONS(6006), + [anon_sym_catch] = ACTIONS(6006), + [anon_sym_TILDE] = ACTIONS(6004), + [anon_sym_try] = ACTIONS(6006), + [anon_sym_DOT] = ACTIONS(6006), + [anon_sym_CARET] = ACTIONS(6004), + [anon_sym_true] = ACTIONS(6006), + [anon_sym_false] = ACTIONS(6006), + [anon_sym_null] = ACTIONS(6006), + [anon_sym_unreachable] = ACTIONS(6006), + [anon_sym_undefined] = ACTIONS(6006), + [sym_sink] = ACTIONS(6006), + [sym_integer] = ACTIONS(6006), + [sym_float] = ACTIONS(6004), + [anon_sym_DQUOTE] = ACTIONS(6004), + [sym_multiline_string] = ACTIONS(6004), + [sym_character] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6004), + }, + [STATE(2625)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2626), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6008), + }, + [STATE(2626)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2627)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2628), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6010), + }, + [STATE(2628)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2629)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2631), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6012), + }, + [STATE(2630)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10757), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2631)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3432), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(213), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(221), + [anon_sym_yield] = ACTIONS(223), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(225), + [anon_sym_errdefer] = ACTIONS(227), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(235), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2632)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10758), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2644), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6014), + }, + [STATE(2633)] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2716), + [anon_sym_test] = ACTIONS(2716), + [anon_sym_hide] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_RBRACK] = ACTIONS(2714), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_PLUS_EQ] = ACTIONS(2714), + [anon_sym_DASH_EQ] = ACTIONS(2714), + [anon_sym_STAR_EQ] = ACTIONS(2714), + [anon_sym_SLASH_EQ] = ACTIONS(2714), + [anon_sym_AMP_EQ] = ACTIONS(2714), + [anon_sym_PIPE_EQ] = ACTIONS(2714), + [anon_sym_xor_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_COLON] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_defer] = ACTIONS(2716), + [anon_sym_errdefer] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_expand] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(2716), + [anon_sym_and] = ACTIONS(2716), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2716), + [anon_sym_xor] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2716), + [anon_sym_GT_GT] = ACTIONS(2716), + [anon_sym_LT_LT_PIPE] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_unreachable] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [sym_sink] = ACTIONS(2716), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [sym_multiline_string] = ACTIONS(2714), + [sym_character] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(2634)] = { + [ts_builtin_sym_end] = ACTIONS(6016), + [sym_identifier] = ACTIONS(6018), + [anon_sym_import] = ACTIONS(6018), + [anon_sym_test] = ACTIONS(6018), + [anon_sym_hide] = ACTIONS(6018), + [anon_sym_func] = ACTIONS(6018), + [anon_sym_BANG] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_struct] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_RPAREN] = ACTIONS(6016), + [anon_sym_LBRACE] = ACTIONS(6016), + [anon_sym_COMMA] = ACTIONS(6016), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6018), + [anon_sym_DOLLAR] = ACTIONS(6016), + [anon_sym_PIPE] = ACTIONS(6018), + [anon_sym_QMARK] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6018), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_SEMI] = ACTIONS(6016), + [anon_sym_RBRACK] = ACTIONS(6016), + [anon_sym_void] = ACTIONS(6018), + [anon_sym_noreturn] = ACTIONS(6018), + [anon_sym_type] = ACTIONS(6018), + [anon_sym_anyopaque] = ACTIONS(6018), + [anon_sym_bool] = ACTIONS(6018), + [anon_sym_int] = ACTIONS(6018), + [anon_sym_uint] = ACTIONS(6018), + [anon_sym_float] = ACTIONS(6018), + [anon_sym_range] = ACTIONS(6018), + [anon_sym_i8] = ACTIONS(6018), + [anon_sym_i16] = ACTIONS(6018), + [anon_sym_i32] = ACTIONS(6018), + [anon_sym_i64] = ACTIONS(6018), + [anon_sym_u8] = ACTIONS(6018), + [anon_sym_u16] = ACTIONS(6018), + [anon_sym_u32] = ACTIONS(6018), + [anon_sym_u64] = ACTIONS(6018), + [anon_sym_isize] = ACTIONS(6018), + [anon_sym_usize] = ACTIONS(6018), + [anon_sym_f32] = ACTIONS(6018), + [anon_sym_f64] = ACTIONS(6018), + [anon_sym_c_char] = ACTIONS(6018), + [anon_sym_c_schar] = ACTIONS(6018), + [anon_sym_c_uchar] = ACTIONS(6018), + [anon_sym_c_short] = ACTIONS(6018), + [anon_sym_c_ushort] = ACTIONS(6018), + [anon_sym_c_int] = ACTIONS(6018), + [anon_sym_c_uint] = ACTIONS(6018), + [anon_sym_c_long] = ACTIONS(6018), + [anon_sym_c_ulong] = ACTIONS(6018), + [anon_sym_c_longlong] = ACTIONS(6018), + [anon_sym_c_ulonglong] = ACTIONS(6018), + [anon_sym_c_float] = ACTIONS(6018), + [anon_sym_c_double] = ACTIONS(6018), + [anon_sym_c_longdouble] = ACTIONS(6018), + [anon_sym_PLUS_EQ] = ACTIONS(6016), + [anon_sym_DASH_EQ] = ACTIONS(6016), + [anon_sym_STAR_EQ] = ACTIONS(6016), + [anon_sym_SLASH_EQ] = ACTIONS(6016), + [anon_sym_AMP_EQ] = ACTIONS(6016), + [anon_sym_PIPE_EQ] = ACTIONS(6016), + [anon_sym_xor_EQ] = ACTIONS(6016), + [anon_sym_LT_LT_EQ] = ACTIONS(6016), + [anon_sym_GT_GT_EQ] = ACTIONS(6016), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6016), + [anon_sym_return] = ACTIONS(6018), + [anon_sym_yield] = ACTIONS(6018), + [anon_sym_COLON] = ACTIONS(6016), + [anon_sym_break] = ACTIONS(6018), + [anon_sym_continue] = ACTIONS(6018), + [anon_sym_defer] = ACTIONS(6018), + [anon_sym_errdefer] = ACTIONS(6018), + [anon_sym_if] = ACTIONS(6018), + [anon_sym_else] = ACTIONS(6018), + [anon_sym_while] = ACTIONS(6018), + [anon_sym_expand] = ACTIONS(6018), + [anon_sym_for] = ACTIONS(6018), + [anon_sym_match] = ACTIONS(6018), + [anon_sym_DOT_DOT] = ACTIONS(6018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6016), + [anon_sym_orelse] = ACTIONS(6018), + [anon_sym_or] = ACTIONS(6018), + [anon_sym_and] = ACTIONS(6018), + [anon_sym_EQ_EQ] = ACTIONS(6016), + [anon_sym_BANG_EQ] = ACTIONS(6016), + [anon_sym_LT] = ACTIONS(6018), + [anon_sym_LT_EQ] = ACTIONS(6016), + [anon_sym_GT] = ACTIONS(6018), + [anon_sym_GT_EQ] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6018), + [anon_sym_xor] = ACTIONS(6018), + [anon_sym_LT_LT] = ACTIONS(6018), + [anon_sym_GT_GT] = ACTIONS(6018), + [anon_sym_LT_LT_PIPE] = ACTIONS(6018), + [anon_sym_PLUS] = ACTIONS(6018), + [anon_sym_SLASH] = ACTIONS(6018), + [anon_sym_catch] = ACTIONS(6018), + [anon_sym_TILDE] = ACTIONS(6016), + [anon_sym_try] = ACTIONS(6018), + [anon_sym_DOT] = ACTIONS(6018), + [anon_sym_CARET] = ACTIONS(6016), + [anon_sym_true] = ACTIONS(6018), + [anon_sym_false] = ACTIONS(6018), + [anon_sym_null] = ACTIONS(6018), + [anon_sym_unreachable] = ACTIONS(6018), + [anon_sym_undefined] = ACTIONS(6018), + [sym_sink] = ACTIONS(6018), + [sym_integer] = ACTIONS(6018), + [sym_float] = ACTIONS(6016), + [anon_sym_DQUOTE] = ACTIONS(6016), + [sym_multiline_string] = ACTIONS(6016), + [sym_character] = ACTIONS(6016), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6016), + }, + [STATE(2635)] = { + [ts_builtin_sym_end] = ACTIONS(6020), + [sym_identifier] = ACTIONS(6022), + [anon_sym_import] = ACTIONS(6022), + [anon_sym_test] = ACTIONS(6022), + [anon_sym_hide] = ACTIONS(6022), + [anon_sym_func] = ACTIONS(6022), + [anon_sym_BANG] = ACTIONS(6022), + [anon_sym_EQ] = ACTIONS(6022), + [anon_sym_struct] = ACTIONS(6022), + [anon_sym_LPAREN] = ACTIONS(6020), + [anon_sym_RPAREN] = ACTIONS(6020), + [anon_sym_LBRACE] = ACTIONS(6020), + [anon_sym_COMMA] = ACTIONS(6020), + [anon_sym_RBRACE] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6022), + [anon_sym_DOLLAR] = ACTIONS(6020), + [anon_sym_PIPE] = ACTIONS(6022), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_STAR] = ACTIONS(6022), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_SEMI] = ACTIONS(6020), + [anon_sym_RBRACK] = ACTIONS(6020), + [anon_sym_void] = ACTIONS(6022), + [anon_sym_noreturn] = ACTIONS(6022), + [anon_sym_type] = ACTIONS(6022), + [anon_sym_anyopaque] = ACTIONS(6022), + [anon_sym_bool] = ACTIONS(6022), + [anon_sym_int] = ACTIONS(6022), + [anon_sym_uint] = ACTIONS(6022), + [anon_sym_float] = ACTIONS(6022), + [anon_sym_range] = ACTIONS(6022), + [anon_sym_i8] = ACTIONS(6022), + [anon_sym_i16] = ACTIONS(6022), + [anon_sym_i32] = ACTIONS(6022), + [anon_sym_i64] = ACTIONS(6022), + [anon_sym_u8] = ACTIONS(6022), + [anon_sym_u16] = ACTIONS(6022), + [anon_sym_u32] = ACTIONS(6022), + [anon_sym_u64] = ACTIONS(6022), + [anon_sym_isize] = ACTIONS(6022), + [anon_sym_usize] = ACTIONS(6022), + [anon_sym_f32] = ACTIONS(6022), + [anon_sym_f64] = ACTIONS(6022), + [anon_sym_c_char] = ACTIONS(6022), + [anon_sym_c_schar] = ACTIONS(6022), + [anon_sym_c_uchar] = ACTIONS(6022), + [anon_sym_c_short] = ACTIONS(6022), + [anon_sym_c_ushort] = ACTIONS(6022), + [anon_sym_c_int] = ACTIONS(6022), + [anon_sym_c_uint] = ACTIONS(6022), + [anon_sym_c_long] = ACTIONS(6022), + [anon_sym_c_ulong] = ACTIONS(6022), + [anon_sym_c_longlong] = ACTIONS(6022), + [anon_sym_c_ulonglong] = ACTIONS(6022), + [anon_sym_c_float] = ACTIONS(6022), + [anon_sym_c_double] = ACTIONS(6022), + [anon_sym_c_longdouble] = ACTIONS(6022), + [anon_sym_PLUS_EQ] = ACTIONS(6020), + [anon_sym_DASH_EQ] = ACTIONS(6020), + [anon_sym_STAR_EQ] = ACTIONS(6020), + [anon_sym_SLASH_EQ] = ACTIONS(6020), + [anon_sym_AMP_EQ] = ACTIONS(6020), + [anon_sym_PIPE_EQ] = ACTIONS(6020), + [anon_sym_xor_EQ] = ACTIONS(6020), + [anon_sym_LT_LT_EQ] = ACTIONS(6020), + [anon_sym_GT_GT_EQ] = ACTIONS(6020), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6020), + [anon_sym_return] = ACTIONS(6022), + [anon_sym_yield] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6020), + [anon_sym_break] = ACTIONS(6022), + [anon_sym_continue] = ACTIONS(6022), + [anon_sym_defer] = ACTIONS(6022), + [anon_sym_errdefer] = ACTIONS(6022), + [anon_sym_if] = ACTIONS(6022), + [anon_sym_else] = ACTIONS(6022), + [anon_sym_while] = ACTIONS(6022), + [anon_sym_expand] = ACTIONS(6022), + [anon_sym_for] = ACTIONS(6022), + [anon_sym_match] = ACTIONS(6022), + [anon_sym_DOT_DOT] = ACTIONS(6022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6020), + [anon_sym_orelse] = ACTIONS(6022), + [anon_sym_or] = ACTIONS(6022), + [anon_sym_and] = ACTIONS(6022), + [anon_sym_EQ_EQ] = ACTIONS(6020), + [anon_sym_BANG_EQ] = ACTIONS(6020), + [anon_sym_LT] = ACTIONS(6022), + [anon_sym_LT_EQ] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6022), + [anon_sym_GT_EQ] = ACTIONS(6020), + [anon_sym_AMP] = ACTIONS(6022), + [anon_sym_xor] = ACTIONS(6022), + [anon_sym_LT_LT] = ACTIONS(6022), + [anon_sym_GT_GT] = ACTIONS(6022), + [anon_sym_LT_LT_PIPE] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(6022), + [anon_sym_SLASH] = ACTIONS(6022), + [anon_sym_catch] = ACTIONS(6022), + [anon_sym_TILDE] = ACTIONS(6020), + [anon_sym_try] = ACTIONS(6022), + [anon_sym_DOT] = ACTIONS(6022), + [anon_sym_CARET] = ACTIONS(6020), + [anon_sym_true] = ACTIONS(6022), + [anon_sym_false] = ACTIONS(6022), + [anon_sym_null] = ACTIONS(6022), + [anon_sym_unreachable] = ACTIONS(6022), + [anon_sym_undefined] = ACTIONS(6022), + [sym_sink] = ACTIONS(6022), + [sym_integer] = ACTIONS(6022), + [sym_float] = ACTIONS(6020), + [anon_sym_DQUOTE] = ACTIONS(6020), + [sym_multiline_string] = ACTIONS(6020), + [sym_character] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6020), + }, + [STATE(2636)] = { + [ts_builtin_sym_end] = ACTIONS(6024), + [sym_identifier] = ACTIONS(6026), + [anon_sym_import] = ACTIONS(6026), + [anon_sym_test] = ACTIONS(6026), + [anon_sym_hide] = ACTIONS(6026), + [anon_sym_func] = ACTIONS(6026), + [anon_sym_BANG] = ACTIONS(6028), + [anon_sym_EQ] = ACTIONS(6026), + [anon_sym_struct] = ACTIONS(6026), + [anon_sym_LPAREN] = ACTIONS(6024), + [anon_sym_RPAREN] = ACTIONS(6024), + [anon_sym_LBRACE] = ACTIONS(6024), + [anon_sym_COMMA] = ACTIONS(6024), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_DASH] = ACTIONS(6026), + [anon_sym_DOLLAR] = ACTIONS(6024), + [anon_sym_PIPE] = ACTIONS(6026), + [anon_sym_QMARK] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(6026), + [anon_sym_LBRACK] = ACTIONS(6024), + [anon_sym_SEMI] = ACTIONS(6024), + [anon_sym_RBRACK] = ACTIONS(6024), + [anon_sym_void] = ACTIONS(6026), + [anon_sym_noreturn] = ACTIONS(6026), + [anon_sym_type] = ACTIONS(6026), + [anon_sym_anyopaque] = ACTIONS(6026), + [anon_sym_bool] = ACTIONS(6026), + [anon_sym_int] = ACTIONS(6026), + [anon_sym_uint] = ACTIONS(6026), + [anon_sym_float] = ACTIONS(6026), + [anon_sym_range] = ACTIONS(6026), + [anon_sym_i8] = ACTIONS(6026), + [anon_sym_i16] = ACTIONS(6026), + [anon_sym_i32] = ACTIONS(6026), + [anon_sym_i64] = ACTIONS(6026), + [anon_sym_u8] = ACTIONS(6026), + [anon_sym_u16] = ACTIONS(6026), + [anon_sym_u32] = ACTIONS(6026), + [anon_sym_u64] = ACTIONS(6026), + [anon_sym_isize] = ACTIONS(6026), + [anon_sym_usize] = ACTIONS(6026), + [anon_sym_f32] = ACTIONS(6026), + [anon_sym_f64] = ACTIONS(6026), + [anon_sym_c_char] = ACTIONS(6026), + [anon_sym_c_schar] = ACTIONS(6026), + [anon_sym_c_uchar] = ACTIONS(6026), + [anon_sym_c_short] = ACTIONS(6026), + [anon_sym_c_ushort] = ACTIONS(6026), + [anon_sym_c_int] = ACTIONS(6026), + [anon_sym_c_uint] = ACTIONS(6026), + [anon_sym_c_long] = ACTIONS(6026), + [anon_sym_c_ulong] = ACTIONS(6026), + [anon_sym_c_longlong] = ACTIONS(6026), + [anon_sym_c_ulonglong] = ACTIONS(6026), + [anon_sym_c_float] = ACTIONS(6026), + [anon_sym_c_double] = ACTIONS(6026), + [anon_sym_c_longdouble] = ACTIONS(6026), + [anon_sym_PLUS_EQ] = ACTIONS(6024), + [anon_sym_DASH_EQ] = ACTIONS(6024), + [anon_sym_STAR_EQ] = ACTIONS(6024), + [anon_sym_SLASH_EQ] = ACTIONS(6024), + [anon_sym_AMP_EQ] = ACTIONS(6024), + [anon_sym_PIPE_EQ] = ACTIONS(6024), + [anon_sym_xor_EQ] = ACTIONS(6024), + [anon_sym_LT_LT_EQ] = ACTIONS(6024), + [anon_sym_GT_GT_EQ] = ACTIONS(6024), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6024), + [anon_sym_return] = ACTIONS(6026), + [anon_sym_yield] = ACTIONS(6026), + [anon_sym_COLON] = ACTIONS(6024), + [anon_sym_break] = ACTIONS(6026), + [anon_sym_continue] = ACTIONS(6026), + [anon_sym_defer] = ACTIONS(6026), + [anon_sym_errdefer] = ACTIONS(6026), + [anon_sym_if] = ACTIONS(6026), + [anon_sym_else] = ACTIONS(6026), + [anon_sym_while] = ACTIONS(6026), + [anon_sym_expand] = ACTIONS(6026), + [anon_sym_for] = ACTIONS(6026), + [anon_sym_match] = ACTIONS(6026), + [anon_sym_DOT_DOT] = ACTIONS(6026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6024), + [anon_sym_orelse] = ACTIONS(6026), + [anon_sym_or] = ACTIONS(6026), + [anon_sym_and] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(6024), + [anon_sym_BANG_EQ] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(6026), + [anon_sym_LT_EQ] = ACTIONS(6024), + [anon_sym_GT] = ACTIONS(6026), + [anon_sym_GT_EQ] = ACTIONS(6024), + [anon_sym_AMP] = ACTIONS(6026), + [anon_sym_xor] = ACTIONS(6026), + [anon_sym_LT_LT] = ACTIONS(6026), + [anon_sym_GT_GT] = ACTIONS(6026), + [anon_sym_LT_LT_PIPE] = ACTIONS(6026), + [anon_sym_PLUS] = ACTIONS(6026), + [anon_sym_SLASH] = ACTIONS(6026), + [anon_sym_catch] = ACTIONS(6026), + [anon_sym_TILDE] = ACTIONS(6024), + [anon_sym_try] = ACTIONS(6026), + [anon_sym_DOT] = ACTIONS(6026), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_true] = ACTIONS(6026), + [anon_sym_false] = ACTIONS(6026), + [anon_sym_null] = ACTIONS(6026), + [anon_sym_unreachable] = ACTIONS(6026), + [anon_sym_undefined] = ACTIONS(6026), + [sym_sink] = ACTIONS(6026), + [sym_integer] = ACTIONS(6026), + [sym_float] = ACTIONS(6024), + [anon_sym_DQUOTE] = ACTIONS(6024), + [sym_multiline_string] = ACTIONS(6024), + [sym_character] = ACTIONS(6024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6024), + }, + [STATE(2637)] = { + [ts_builtin_sym_end] = ACTIONS(6030), + [sym_identifier] = ACTIONS(6032), + [anon_sym_import] = ACTIONS(6032), + [anon_sym_test] = ACTIONS(6032), + [anon_sym_hide] = ACTIONS(6032), + [anon_sym_func] = ACTIONS(6032), + [anon_sym_BANG] = ACTIONS(6032), + [anon_sym_EQ] = ACTIONS(6032), + [anon_sym_struct] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6030), + [anon_sym_RPAREN] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(6030), + [anon_sym_COMMA] = ACTIONS(6030), + [anon_sym_RBRACE] = ACTIONS(6030), + [anon_sym_DASH] = ACTIONS(6032), + [anon_sym_DOLLAR] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(6032), + [anon_sym_QMARK] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(6032), + [anon_sym_LBRACK] = ACTIONS(6030), + [anon_sym_SEMI] = ACTIONS(6030), + [anon_sym_RBRACK] = ACTIONS(6030), + [anon_sym_void] = ACTIONS(6032), + [anon_sym_noreturn] = ACTIONS(6032), + [anon_sym_type] = ACTIONS(6032), + [anon_sym_anyopaque] = ACTIONS(6032), + [anon_sym_bool] = ACTIONS(6032), + [anon_sym_int] = ACTIONS(6032), + [anon_sym_uint] = ACTIONS(6032), + [anon_sym_float] = ACTIONS(6032), + [anon_sym_range] = ACTIONS(6032), + [anon_sym_i8] = ACTIONS(6032), + [anon_sym_i16] = ACTIONS(6032), + [anon_sym_i32] = ACTIONS(6032), + [anon_sym_i64] = ACTIONS(6032), + [anon_sym_u8] = ACTIONS(6032), + [anon_sym_u16] = ACTIONS(6032), + [anon_sym_u32] = ACTIONS(6032), + [anon_sym_u64] = ACTIONS(6032), + [anon_sym_isize] = ACTIONS(6032), + [anon_sym_usize] = ACTIONS(6032), + [anon_sym_f32] = ACTIONS(6032), + [anon_sym_f64] = ACTIONS(6032), + [anon_sym_c_char] = ACTIONS(6032), + [anon_sym_c_schar] = ACTIONS(6032), + [anon_sym_c_uchar] = ACTIONS(6032), + [anon_sym_c_short] = ACTIONS(6032), + [anon_sym_c_ushort] = ACTIONS(6032), + [anon_sym_c_int] = ACTIONS(6032), + [anon_sym_c_uint] = ACTIONS(6032), + [anon_sym_c_long] = ACTIONS(6032), + [anon_sym_c_ulong] = ACTIONS(6032), + [anon_sym_c_longlong] = ACTIONS(6032), + [anon_sym_c_ulonglong] = ACTIONS(6032), + [anon_sym_c_float] = ACTIONS(6032), + [anon_sym_c_double] = ACTIONS(6032), + [anon_sym_c_longdouble] = ACTIONS(6032), + [anon_sym_PLUS_EQ] = ACTIONS(6030), + [anon_sym_DASH_EQ] = ACTIONS(6030), + [anon_sym_STAR_EQ] = ACTIONS(6030), + [anon_sym_SLASH_EQ] = ACTIONS(6030), + [anon_sym_AMP_EQ] = ACTIONS(6030), + [anon_sym_PIPE_EQ] = ACTIONS(6030), + [anon_sym_xor_EQ] = ACTIONS(6030), + [anon_sym_LT_LT_EQ] = ACTIONS(6030), + [anon_sym_GT_GT_EQ] = ACTIONS(6030), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6030), + [anon_sym_return] = ACTIONS(6032), + [anon_sym_yield] = ACTIONS(6032), + [anon_sym_COLON] = ACTIONS(6030), + [anon_sym_break] = ACTIONS(6032), + [anon_sym_continue] = ACTIONS(6032), + [anon_sym_defer] = ACTIONS(6032), + [anon_sym_errdefer] = ACTIONS(6032), + [anon_sym_if] = ACTIONS(6032), + [anon_sym_else] = ACTIONS(6032), + [anon_sym_while] = ACTIONS(6032), + [anon_sym_expand] = ACTIONS(6032), + [anon_sym_for] = ACTIONS(6032), + [anon_sym_match] = ACTIONS(6032), + [anon_sym_DOT_DOT] = ACTIONS(6032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6030), + [anon_sym_orelse] = ACTIONS(6032), + [anon_sym_or] = ACTIONS(6032), + [anon_sym_and] = ACTIONS(6032), + [anon_sym_EQ_EQ] = ACTIONS(6030), + [anon_sym_BANG_EQ] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(6032), + [anon_sym_LT_EQ] = ACTIONS(6030), + [anon_sym_GT] = ACTIONS(6032), + [anon_sym_GT_EQ] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6032), + [anon_sym_xor] = ACTIONS(6032), + [anon_sym_LT_LT] = ACTIONS(6032), + [anon_sym_GT_GT] = ACTIONS(6032), + [anon_sym_LT_LT_PIPE] = ACTIONS(6032), + [anon_sym_PLUS] = ACTIONS(6032), + [anon_sym_SLASH] = ACTIONS(6032), + [anon_sym_catch] = ACTIONS(6032), + [anon_sym_TILDE] = ACTIONS(6030), + [anon_sym_try] = ACTIONS(6032), + [anon_sym_DOT] = ACTIONS(6032), + [anon_sym_CARET] = ACTIONS(6030), + [anon_sym_true] = ACTIONS(6032), + [anon_sym_false] = ACTIONS(6032), + [anon_sym_null] = ACTIONS(6032), + [anon_sym_unreachable] = ACTIONS(6032), + [anon_sym_undefined] = ACTIONS(6032), + [sym_sink] = ACTIONS(6032), + [sym_integer] = ACTIONS(6032), + [sym_float] = ACTIONS(6030), + [anon_sym_DQUOTE] = ACTIONS(6030), + [sym_multiline_string] = ACTIONS(6030), + [sym_character] = ACTIONS(6030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6030), + }, + [STATE(2638)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2639), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6034), + }, + [STATE(2639)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2640)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2641), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6036), + }, + [STATE(2641)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2642)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2643), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6038), + }, + [STATE(2643)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8801), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2293), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2299), + [anon_sym_errdefer] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2305), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2644)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10706), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9044), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(435), + [anon_sym_errdefer] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(463), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2645)] = { + [ts_builtin_sym_end] = ACTIONS(6040), + [sym_identifier] = ACTIONS(6042), + [anon_sym_import] = ACTIONS(6042), + [anon_sym_test] = ACTIONS(6042), + [anon_sym_hide] = ACTIONS(6042), + [anon_sym_func] = ACTIONS(6042), + [anon_sym_BANG] = ACTIONS(6042), + [anon_sym_EQ] = ACTIONS(6042), + [anon_sym_struct] = ACTIONS(6042), + [anon_sym_LPAREN] = ACTIONS(6040), + [anon_sym_RPAREN] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(6040), + [anon_sym_COMMA] = ACTIONS(6040), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_DASH] = ACTIONS(6042), + [anon_sym_DOLLAR] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(6042), + [anon_sym_QMARK] = ACTIONS(6040), + [anon_sym_STAR] = ACTIONS(6042), + [anon_sym_LBRACK] = ACTIONS(6040), + [anon_sym_SEMI] = ACTIONS(6040), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_void] = ACTIONS(6042), + [anon_sym_noreturn] = ACTIONS(6042), + [anon_sym_type] = ACTIONS(6042), + [anon_sym_anyopaque] = ACTIONS(6042), + [anon_sym_bool] = ACTIONS(6042), + [anon_sym_int] = ACTIONS(6042), + [anon_sym_uint] = ACTIONS(6042), + [anon_sym_float] = ACTIONS(6042), + [anon_sym_range] = ACTIONS(6042), + [anon_sym_i8] = ACTIONS(6042), + [anon_sym_i16] = ACTIONS(6042), + [anon_sym_i32] = ACTIONS(6042), + [anon_sym_i64] = ACTIONS(6042), + [anon_sym_u8] = ACTIONS(6042), + [anon_sym_u16] = ACTIONS(6042), + [anon_sym_u32] = ACTIONS(6042), + [anon_sym_u64] = ACTIONS(6042), + [anon_sym_isize] = ACTIONS(6042), + [anon_sym_usize] = ACTIONS(6042), + [anon_sym_f32] = ACTIONS(6042), + [anon_sym_f64] = ACTIONS(6042), + [anon_sym_c_char] = ACTIONS(6042), + [anon_sym_c_schar] = ACTIONS(6042), + [anon_sym_c_uchar] = ACTIONS(6042), + [anon_sym_c_short] = ACTIONS(6042), + [anon_sym_c_ushort] = ACTIONS(6042), + [anon_sym_c_int] = ACTIONS(6042), + [anon_sym_c_uint] = ACTIONS(6042), + [anon_sym_c_long] = ACTIONS(6042), + [anon_sym_c_ulong] = ACTIONS(6042), + [anon_sym_c_longlong] = ACTIONS(6042), + [anon_sym_c_ulonglong] = ACTIONS(6042), + [anon_sym_c_float] = ACTIONS(6042), + [anon_sym_c_double] = ACTIONS(6042), + [anon_sym_c_longdouble] = ACTIONS(6042), + [anon_sym_PLUS_EQ] = ACTIONS(6040), + [anon_sym_DASH_EQ] = ACTIONS(6040), + [anon_sym_STAR_EQ] = ACTIONS(6040), + [anon_sym_SLASH_EQ] = ACTIONS(6040), + [anon_sym_AMP_EQ] = ACTIONS(6040), + [anon_sym_PIPE_EQ] = ACTIONS(6040), + [anon_sym_xor_EQ] = ACTIONS(6040), + [anon_sym_LT_LT_EQ] = ACTIONS(6040), + [anon_sym_GT_GT_EQ] = ACTIONS(6040), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6040), + [anon_sym_return] = ACTIONS(6042), + [anon_sym_yield] = ACTIONS(6042), + [anon_sym_COLON] = ACTIONS(6040), + [anon_sym_break] = ACTIONS(6042), + [anon_sym_continue] = ACTIONS(6042), + [anon_sym_defer] = ACTIONS(6042), + [anon_sym_errdefer] = ACTIONS(6042), + [anon_sym_if] = ACTIONS(6042), + [anon_sym_else] = ACTIONS(6042), + [anon_sym_while] = ACTIONS(6042), + [anon_sym_expand] = ACTIONS(6042), + [anon_sym_for] = ACTIONS(6042), + [anon_sym_match] = ACTIONS(6042), + [anon_sym_DOT_DOT] = ACTIONS(6042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6040), + [anon_sym_orelse] = ACTIONS(6042), + [anon_sym_or] = ACTIONS(6042), + [anon_sym_and] = ACTIONS(6042), + [anon_sym_EQ_EQ] = ACTIONS(6040), + [anon_sym_BANG_EQ] = ACTIONS(6040), + [anon_sym_LT] = ACTIONS(6042), + [anon_sym_LT_EQ] = ACTIONS(6040), + [anon_sym_GT] = ACTIONS(6042), + [anon_sym_GT_EQ] = ACTIONS(6040), + [anon_sym_AMP] = ACTIONS(6042), + [anon_sym_xor] = ACTIONS(6042), + [anon_sym_LT_LT] = ACTIONS(6042), + [anon_sym_GT_GT] = ACTIONS(6042), + [anon_sym_LT_LT_PIPE] = ACTIONS(6042), + [anon_sym_PLUS] = ACTIONS(6042), + [anon_sym_SLASH] = ACTIONS(6042), + [anon_sym_catch] = ACTIONS(6042), + [anon_sym_TILDE] = ACTIONS(6040), + [anon_sym_try] = ACTIONS(6042), + [anon_sym_DOT] = ACTIONS(6042), + [anon_sym_CARET] = ACTIONS(6040), + [anon_sym_true] = ACTIONS(6042), + [anon_sym_false] = ACTIONS(6042), + [anon_sym_null] = ACTIONS(6042), + [anon_sym_unreachable] = ACTIONS(6042), + [anon_sym_undefined] = ACTIONS(6042), + [sym_sink] = ACTIONS(6042), + [sym_integer] = ACTIONS(6042), + [sym_float] = ACTIONS(6040), + [anon_sym_DQUOTE] = ACTIONS(6040), + [sym_multiline_string] = ACTIONS(6040), + [sym_character] = ACTIONS(6040), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6040), + }, + [STATE(2646)] = { + [ts_builtin_sym_end] = ACTIONS(5778), + [sym_identifier] = ACTIONS(5782), + [anon_sym_import] = ACTIONS(5782), + [anon_sym_test] = ACTIONS(5782), + [anon_sym_hide] = ACTIONS(5782), + [anon_sym_func] = ACTIONS(5782), + [anon_sym_BANG] = ACTIONS(5782), + [anon_sym_EQ] = ACTIONS(5782), + [anon_sym_struct] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_RPAREN] = ACTIONS(5778), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5782), + [anon_sym_DOLLAR] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5782), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_STAR] = ACTIONS(5782), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym_RBRACK] = ACTIONS(5778), + [anon_sym_void] = ACTIONS(5782), + [anon_sym_noreturn] = ACTIONS(5782), + [anon_sym_type] = ACTIONS(5782), + [anon_sym_anyopaque] = ACTIONS(5782), + [anon_sym_bool] = ACTIONS(5782), + [anon_sym_int] = ACTIONS(5782), + [anon_sym_uint] = ACTIONS(5782), + [anon_sym_float] = ACTIONS(5782), + [anon_sym_range] = ACTIONS(5782), + [anon_sym_i8] = ACTIONS(5782), + [anon_sym_i16] = ACTIONS(5782), + [anon_sym_i32] = ACTIONS(5782), + [anon_sym_i64] = ACTIONS(5782), + [anon_sym_u8] = ACTIONS(5782), + [anon_sym_u16] = ACTIONS(5782), + [anon_sym_u32] = ACTIONS(5782), + [anon_sym_u64] = ACTIONS(5782), + [anon_sym_isize] = ACTIONS(5782), + [anon_sym_usize] = ACTIONS(5782), + [anon_sym_f32] = ACTIONS(5782), + [anon_sym_f64] = ACTIONS(5782), + [anon_sym_c_char] = ACTIONS(5782), + [anon_sym_c_schar] = ACTIONS(5782), + [anon_sym_c_uchar] = ACTIONS(5782), + [anon_sym_c_short] = ACTIONS(5782), + [anon_sym_c_ushort] = ACTIONS(5782), + [anon_sym_c_int] = ACTIONS(5782), + [anon_sym_c_uint] = ACTIONS(5782), + [anon_sym_c_long] = ACTIONS(5782), + [anon_sym_c_ulong] = ACTIONS(5782), + [anon_sym_c_longlong] = ACTIONS(5782), + [anon_sym_c_ulonglong] = ACTIONS(5782), + [anon_sym_c_float] = ACTIONS(5782), + [anon_sym_c_double] = ACTIONS(5782), + [anon_sym_c_longdouble] = ACTIONS(5782), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5778), + [anon_sym_xor_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5778), + [anon_sym_return] = ACTIONS(5782), + [anon_sym_yield] = ACTIONS(5782), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_break] = ACTIONS(5782), + [anon_sym_continue] = ACTIONS(5782), + [anon_sym_defer] = ACTIONS(5782), + [anon_sym_errdefer] = ACTIONS(5782), + [anon_sym_if] = ACTIONS(5782), + [anon_sym_else] = ACTIONS(5782), + [anon_sym_while] = ACTIONS(5782), + [anon_sym_expand] = ACTIONS(5782), + [anon_sym_for] = ACTIONS(5782), + [anon_sym_match] = ACTIONS(5782), + [anon_sym_DOT_DOT] = ACTIONS(5782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5778), + [anon_sym_orelse] = ACTIONS(5782), + [anon_sym_or] = ACTIONS(5782), + [anon_sym_and] = ACTIONS(5782), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_LT] = ACTIONS(5782), + [anon_sym_LT_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5782), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5782), + [anon_sym_xor] = ACTIONS(5782), + [anon_sym_LT_LT] = ACTIONS(5782), + [anon_sym_GT_GT] = ACTIONS(5782), + [anon_sym_LT_LT_PIPE] = ACTIONS(5782), + [anon_sym_PLUS] = ACTIONS(5782), + [anon_sym_SLASH] = ACTIONS(5782), + [anon_sym_catch] = ACTIONS(5782), + [anon_sym_TILDE] = ACTIONS(5778), + [anon_sym_try] = ACTIONS(5782), + [anon_sym_DOT] = ACTIONS(5782), + [anon_sym_CARET] = ACTIONS(5778), + [anon_sym_true] = ACTIONS(5782), + [anon_sym_false] = ACTIONS(5782), + [anon_sym_null] = ACTIONS(5782), + [anon_sym_unreachable] = ACTIONS(5782), + [anon_sym_undefined] = ACTIONS(5782), + [sym_sink] = ACTIONS(5782), + [sym_integer] = ACTIONS(5782), + [sym_float] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(5778), + [sym_multiline_string] = ACTIONS(5778), + [sym_character] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5778), + }, + [STATE(2647)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8745), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(259), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(271), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(297), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2648)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_test] = ACTIONS(2672), + [anon_sym_hide] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(5716), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(2649)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_test] = ACTIONS(2704), + [anon_sym_hide] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(5716), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(2650)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2651), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6044), + }, + [STATE(2651)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2652)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2653), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6046), + }, + [STATE(2653)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2654)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2656), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6048), + }, + [STATE(2655)] = { + [ts_builtin_sym_end] = ACTIONS(6050), + [sym_identifier] = ACTIONS(6052), + [anon_sym_import] = ACTIONS(6052), + [anon_sym_test] = ACTIONS(6052), + [anon_sym_hide] = ACTIONS(6052), + [anon_sym_func] = ACTIONS(6052), + [anon_sym_BANG] = ACTIONS(6052), + [anon_sym_EQ] = ACTIONS(6052), + [anon_sym_struct] = ACTIONS(6052), + [anon_sym_LPAREN] = ACTIONS(6050), + [anon_sym_RPAREN] = ACTIONS(6050), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_COMMA] = ACTIONS(6050), + [anon_sym_RBRACE] = ACTIONS(6050), + [anon_sym_DASH] = ACTIONS(6052), + [anon_sym_DOLLAR] = ACTIONS(6050), + [anon_sym_PIPE] = ACTIONS(6052), + [anon_sym_QMARK] = ACTIONS(6050), + [anon_sym_STAR] = ACTIONS(6052), + [anon_sym_LBRACK] = ACTIONS(6050), + [anon_sym_SEMI] = ACTIONS(6050), + [anon_sym_RBRACK] = ACTIONS(6050), + [anon_sym_void] = ACTIONS(6052), + [anon_sym_noreturn] = ACTIONS(6052), + [anon_sym_type] = ACTIONS(6052), + [anon_sym_anyopaque] = ACTIONS(6052), + [anon_sym_bool] = ACTIONS(6052), + [anon_sym_int] = ACTIONS(6052), + [anon_sym_uint] = ACTIONS(6052), + [anon_sym_float] = ACTIONS(6052), + [anon_sym_range] = ACTIONS(6052), + [anon_sym_i8] = ACTIONS(6052), + [anon_sym_i16] = ACTIONS(6052), + [anon_sym_i32] = ACTIONS(6052), + [anon_sym_i64] = ACTIONS(6052), + [anon_sym_u8] = ACTIONS(6052), + [anon_sym_u16] = ACTIONS(6052), + [anon_sym_u32] = ACTIONS(6052), + [anon_sym_u64] = ACTIONS(6052), + [anon_sym_isize] = ACTIONS(6052), + [anon_sym_usize] = ACTIONS(6052), + [anon_sym_f32] = ACTIONS(6052), + [anon_sym_f64] = ACTIONS(6052), + [anon_sym_c_char] = ACTIONS(6052), + [anon_sym_c_schar] = ACTIONS(6052), + [anon_sym_c_uchar] = ACTIONS(6052), + [anon_sym_c_short] = ACTIONS(6052), + [anon_sym_c_ushort] = ACTIONS(6052), + [anon_sym_c_int] = ACTIONS(6052), + [anon_sym_c_uint] = ACTIONS(6052), + [anon_sym_c_long] = ACTIONS(6052), + [anon_sym_c_ulong] = ACTIONS(6052), + [anon_sym_c_longlong] = ACTIONS(6052), + [anon_sym_c_ulonglong] = ACTIONS(6052), + [anon_sym_c_float] = ACTIONS(6052), + [anon_sym_c_double] = ACTIONS(6052), + [anon_sym_c_longdouble] = ACTIONS(6052), + [anon_sym_PLUS_EQ] = ACTIONS(6050), + [anon_sym_DASH_EQ] = ACTIONS(6050), + [anon_sym_STAR_EQ] = ACTIONS(6050), + [anon_sym_SLASH_EQ] = ACTIONS(6050), + [anon_sym_AMP_EQ] = ACTIONS(6050), + [anon_sym_PIPE_EQ] = ACTIONS(6050), + [anon_sym_xor_EQ] = ACTIONS(6050), + [anon_sym_LT_LT_EQ] = ACTIONS(6050), + [anon_sym_GT_GT_EQ] = ACTIONS(6050), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6050), + [anon_sym_return] = ACTIONS(6052), + [anon_sym_yield] = ACTIONS(6052), + [anon_sym_COLON] = ACTIONS(6050), + [anon_sym_break] = ACTIONS(6052), + [anon_sym_continue] = ACTIONS(6052), + [anon_sym_defer] = ACTIONS(6052), + [anon_sym_errdefer] = ACTIONS(6052), + [anon_sym_if] = ACTIONS(6052), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_while] = ACTIONS(6052), + [anon_sym_expand] = ACTIONS(6052), + [anon_sym_for] = ACTIONS(6052), + [anon_sym_match] = ACTIONS(6052), + [anon_sym_DOT_DOT] = ACTIONS(6052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6050), + [anon_sym_orelse] = ACTIONS(6052), + [anon_sym_or] = ACTIONS(6052), + [anon_sym_and] = ACTIONS(6052), + [anon_sym_EQ_EQ] = ACTIONS(6050), + [anon_sym_BANG_EQ] = ACTIONS(6050), + [anon_sym_LT] = ACTIONS(6052), + [anon_sym_LT_EQ] = ACTIONS(6050), + [anon_sym_GT] = ACTIONS(6052), + [anon_sym_GT_EQ] = ACTIONS(6050), + [anon_sym_AMP] = ACTIONS(6052), + [anon_sym_xor] = ACTIONS(6052), + [anon_sym_LT_LT] = ACTIONS(6052), + [anon_sym_GT_GT] = ACTIONS(6052), + [anon_sym_LT_LT_PIPE] = ACTIONS(6052), + [anon_sym_PLUS] = ACTIONS(6052), + [anon_sym_SLASH] = ACTIONS(6052), + [anon_sym_catch] = ACTIONS(6052), + [anon_sym_TILDE] = ACTIONS(6050), + [anon_sym_try] = ACTIONS(6052), + [anon_sym_DOT] = ACTIONS(6052), + [anon_sym_CARET] = ACTIONS(6050), + [anon_sym_true] = ACTIONS(6052), + [anon_sym_false] = ACTIONS(6052), + [anon_sym_null] = ACTIONS(6052), + [anon_sym_unreachable] = ACTIONS(6052), + [anon_sym_undefined] = ACTIONS(6052), + [sym_sink] = ACTIONS(6052), + [sym_integer] = ACTIONS(6052), + [sym_float] = ACTIONS(6050), + [anon_sym_DQUOTE] = ACTIONS(6050), + [sym_multiline_string] = ACTIONS(6050), + [sym_character] = ACTIONS(6050), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6050), + }, + [STATE(2656)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(3368), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2311), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2317), + [anon_sym_errdefer] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2657)] = { + [ts_builtin_sym_end] = ACTIONS(6054), + [sym_identifier] = ACTIONS(6056), + [anon_sym_import] = ACTIONS(6056), + [anon_sym_test] = ACTIONS(6056), + [anon_sym_hide] = ACTIONS(6056), + [anon_sym_func] = ACTIONS(6056), + [anon_sym_BANG] = ACTIONS(6056), + [anon_sym_EQ] = ACTIONS(6056), + [anon_sym_struct] = ACTIONS(6056), + [anon_sym_LPAREN] = ACTIONS(6054), + [anon_sym_RPAREN] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(6054), + [anon_sym_COMMA] = ACTIONS(6054), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6056), + [anon_sym_DOLLAR] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6056), + [anon_sym_QMARK] = ACTIONS(6054), + [anon_sym_STAR] = ACTIONS(6056), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_SEMI] = ACTIONS(6054), + [anon_sym_RBRACK] = ACTIONS(6054), + [anon_sym_void] = ACTIONS(6056), + [anon_sym_noreturn] = ACTIONS(6056), + [anon_sym_type] = ACTIONS(6056), + [anon_sym_anyopaque] = ACTIONS(6056), + [anon_sym_bool] = ACTIONS(6056), + [anon_sym_int] = ACTIONS(6056), + [anon_sym_uint] = ACTIONS(6056), + [anon_sym_float] = ACTIONS(6056), + [anon_sym_range] = ACTIONS(6056), + [anon_sym_i8] = ACTIONS(6056), + [anon_sym_i16] = ACTIONS(6056), + [anon_sym_i32] = ACTIONS(6056), + [anon_sym_i64] = ACTIONS(6056), + [anon_sym_u8] = ACTIONS(6056), + [anon_sym_u16] = ACTIONS(6056), + [anon_sym_u32] = ACTIONS(6056), + [anon_sym_u64] = ACTIONS(6056), + [anon_sym_isize] = ACTIONS(6056), + [anon_sym_usize] = ACTIONS(6056), + [anon_sym_f32] = ACTIONS(6056), + [anon_sym_f64] = ACTIONS(6056), + [anon_sym_c_char] = ACTIONS(6056), + [anon_sym_c_schar] = ACTIONS(6056), + [anon_sym_c_uchar] = ACTIONS(6056), + [anon_sym_c_short] = ACTIONS(6056), + [anon_sym_c_ushort] = ACTIONS(6056), + [anon_sym_c_int] = ACTIONS(6056), + [anon_sym_c_uint] = ACTIONS(6056), + [anon_sym_c_long] = ACTIONS(6056), + [anon_sym_c_ulong] = ACTIONS(6056), + [anon_sym_c_longlong] = ACTIONS(6056), + [anon_sym_c_ulonglong] = ACTIONS(6056), + [anon_sym_c_float] = ACTIONS(6056), + [anon_sym_c_double] = ACTIONS(6056), + [anon_sym_c_longdouble] = ACTIONS(6056), + [anon_sym_PLUS_EQ] = ACTIONS(6054), + [anon_sym_DASH_EQ] = ACTIONS(6054), + [anon_sym_STAR_EQ] = ACTIONS(6054), + [anon_sym_SLASH_EQ] = ACTIONS(6054), + [anon_sym_AMP_EQ] = ACTIONS(6054), + [anon_sym_PIPE_EQ] = ACTIONS(6054), + [anon_sym_xor_EQ] = ACTIONS(6054), + [anon_sym_LT_LT_EQ] = ACTIONS(6054), + [anon_sym_GT_GT_EQ] = ACTIONS(6054), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6054), + [anon_sym_return] = ACTIONS(6056), + [anon_sym_yield] = ACTIONS(6056), + [anon_sym_COLON] = ACTIONS(6054), + [anon_sym_break] = ACTIONS(6056), + [anon_sym_continue] = ACTIONS(6056), + [anon_sym_defer] = ACTIONS(6056), + [anon_sym_errdefer] = ACTIONS(6056), + [anon_sym_if] = ACTIONS(6056), + [anon_sym_else] = ACTIONS(6056), + [anon_sym_while] = ACTIONS(6056), + [anon_sym_expand] = ACTIONS(6056), + [anon_sym_for] = ACTIONS(6056), + [anon_sym_match] = ACTIONS(6056), + [anon_sym_DOT_DOT] = ACTIONS(6056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6054), + [anon_sym_orelse] = ACTIONS(6056), + [anon_sym_or] = ACTIONS(6056), + [anon_sym_and] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6054), + [anon_sym_BANG_EQ] = ACTIONS(6054), + [anon_sym_LT] = ACTIONS(6056), + [anon_sym_LT_EQ] = ACTIONS(6054), + [anon_sym_GT] = ACTIONS(6056), + [anon_sym_GT_EQ] = ACTIONS(6054), + [anon_sym_AMP] = ACTIONS(6056), + [anon_sym_xor] = ACTIONS(6056), + [anon_sym_LT_LT] = ACTIONS(6056), + [anon_sym_GT_GT] = ACTIONS(6056), + [anon_sym_LT_LT_PIPE] = ACTIONS(6056), + [anon_sym_PLUS] = ACTIONS(6056), + [anon_sym_SLASH] = ACTIONS(6056), + [anon_sym_catch] = ACTIONS(6056), + [anon_sym_TILDE] = ACTIONS(6054), + [anon_sym_try] = ACTIONS(6056), + [anon_sym_DOT] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6054), + [anon_sym_true] = ACTIONS(6056), + [anon_sym_false] = ACTIONS(6056), + [anon_sym_null] = ACTIONS(6056), + [anon_sym_unreachable] = ACTIONS(6056), + [anon_sym_undefined] = ACTIONS(6056), + [sym_sink] = ACTIONS(6056), + [sym_integer] = ACTIONS(6056), + [sym_float] = ACTIONS(6054), + [anon_sym_DQUOTE] = ACTIONS(6054), + [sym_multiline_string] = ACTIONS(6054), + [sym_character] = ACTIONS(6054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6054), + }, + [STATE(2658)] = { + [ts_builtin_sym_end] = ACTIONS(6058), + [sym_identifier] = ACTIONS(6060), + [anon_sym_import] = ACTIONS(6060), + [anon_sym_test] = ACTIONS(6060), + [anon_sym_hide] = ACTIONS(6060), + [anon_sym_func] = ACTIONS(6060), + [anon_sym_BANG] = ACTIONS(6060), + [anon_sym_EQ] = ACTIONS(6060), + [anon_sym_struct] = ACTIONS(6060), + [anon_sym_LPAREN] = ACTIONS(6058), + [anon_sym_RPAREN] = ACTIONS(6058), + [anon_sym_LBRACE] = ACTIONS(6058), + [anon_sym_COMMA] = ACTIONS(6058), + [anon_sym_RBRACE] = ACTIONS(6058), + [anon_sym_DASH] = ACTIONS(6060), + [anon_sym_DOLLAR] = ACTIONS(6058), + [anon_sym_PIPE] = ACTIONS(6060), + [anon_sym_QMARK] = ACTIONS(6058), + [anon_sym_STAR] = ACTIONS(6060), + [anon_sym_LBRACK] = ACTIONS(6058), + [anon_sym_SEMI] = ACTIONS(6058), + [anon_sym_RBRACK] = ACTIONS(6058), + [anon_sym_void] = ACTIONS(6060), + [anon_sym_noreturn] = ACTIONS(6060), + [anon_sym_type] = ACTIONS(6060), + [anon_sym_anyopaque] = ACTIONS(6060), + [anon_sym_bool] = ACTIONS(6060), + [anon_sym_int] = ACTIONS(6060), + [anon_sym_uint] = ACTIONS(6060), + [anon_sym_float] = ACTIONS(6060), + [anon_sym_range] = ACTIONS(6060), + [anon_sym_i8] = ACTIONS(6060), + [anon_sym_i16] = ACTIONS(6060), + [anon_sym_i32] = ACTIONS(6060), + [anon_sym_i64] = ACTIONS(6060), + [anon_sym_u8] = ACTIONS(6060), + [anon_sym_u16] = ACTIONS(6060), + [anon_sym_u32] = ACTIONS(6060), + [anon_sym_u64] = ACTIONS(6060), + [anon_sym_isize] = ACTIONS(6060), + [anon_sym_usize] = ACTIONS(6060), + [anon_sym_f32] = ACTIONS(6060), + [anon_sym_f64] = ACTIONS(6060), + [anon_sym_c_char] = ACTIONS(6060), + [anon_sym_c_schar] = ACTIONS(6060), + [anon_sym_c_uchar] = ACTIONS(6060), + [anon_sym_c_short] = ACTIONS(6060), + [anon_sym_c_ushort] = ACTIONS(6060), + [anon_sym_c_int] = ACTIONS(6060), + [anon_sym_c_uint] = ACTIONS(6060), + [anon_sym_c_long] = ACTIONS(6060), + [anon_sym_c_ulong] = ACTIONS(6060), + [anon_sym_c_longlong] = ACTIONS(6060), + [anon_sym_c_ulonglong] = ACTIONS(6060), + [anon_sym_c_float] = ACTIONS(6060), + [anon_sym_c_double] = ACTIONS(6060), + [anon_sym_c_longdouble] = ACTIONS(6060), + [anon_sym_PLUS_EQ] = ACTIONS(6058), + [anon_sym_DASH_EQ] = ACTIONS(6058), + [anon_sym_STAR_EQ] = ACTIONS(6058), + [anon_sym_SLASH_EQ] = ACTIONS(6058), + [anon_sym_AMP_EQ] = ACTIONS(6058), + [anon_sym_PIPE_EQ] = ACTIONS(6058), + [anon_sym_xor_EQ] = ACTIONS(6058), + [anon_sym_LT_LT_EQ] = ACTIONS(6058), + [anon_sym_GT_GT_EQ] = ACTIONS(6058), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6058), + [anon_sym_return] = ACTIONS(6060), + [anon_sym_yield] = ACTIONS(6060), + [anon_sym_COLON] = ACTIONS(6058), + [anon_sym_break] = ACTIONS(6060), + [anon_sym_continue] = ACTIONS(6060), + [anon_sym_defer] = ACTIONS(6060), + [anon_sym_errdefer] = ACTIONS(6060), + [anon_sym_if] = ACTIONS(6060), + [anon_sym_else] = ACTIONS(6060), + [anon_sym_while] = ACTIONS(6060), + [anon_sym_expand] = ACTIONS(6060), + [anon_sym_for] = ACTIONS(6060), + [anon_sym_match] = ACTIONS(6060), + [anon_sym_DOT_DOT] = ACTIONS(6060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6058), + [anon_sym_orelse] = ACTIONS(6060), + [anon_sym_or] = ACTIONS(6060), + [anon_sym_and] = ACTIONS(6060), + [anon_sym_EQ_EQ] = ACTIONS(6058), + [anon_sym_BANG_EQ] = ACTIONS(6058), + [anon_sym_LT] = ACTIONS(6060), + [anon_sym_LT_EQ] = ACTIONS(6058), + [anon_sym_GT] = ACTIONS(6060), + [anon_sym_GT_EQ] = ACTIONS(6058), + [anon_sym_AMP] = ACTIONS(6060), + [anon_sym_xor] = ACTIONS(6060), + [anon_sym_LT_LT] = ACTIONS(6060), + [anon_sym_GT_GT] = ACTIONS(6060), + [anon_sym_LT_LT_PIPE] = ACTIONS(6060), + [anon_sym_PLUS] = ACTIONS(6060), + [anon_sym_SLASH] = ACTIONS(6060), + [anon_sym_catch] = ACTIONS(6060), + [anon_sym_TILDE] = ACTIONS(6058), + [anon_sym_try] = ACTIONS(6060), + [anon_sym_DOT] = ACTIONS(6060), + [anon_sym_CARET] = ACTIONS(6058), + [anon_sym_true] = ACTIONS(6060), + [anon_sym_false] = ACTIONS(6060), + [anon_sym_null] = ACTIONS(6060), + [anon_sym_unreachable] = ACTIONS(6060), + [anon_sym_undefined] = ACTIONS(6060), + [sym_sink] = ACTIONS(6060), + [sym_integer] = ACTIONS(6060), + [sym_float] = ACTIONS(6058), + [anon_sym_DQUOTE] = ACTIONS(6058), + [sym_multiline_string] = ACTIONS(6058), + [sym_character] = ACTIONS(6058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6058), + }, + [STATE(2659)] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1196), + [anon_sym_import] = ACTIONS(1196), + [anon_sym_test] = ACTIONS(1196), + [anon_sym_hide] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [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(1196), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_RBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_anyopaque] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_int] = ACTIONS(1196), + [anon_sym_uint] = ACTIONS(1196), + [anon_sym_float] = ACTIONS(1196), + [anon_sym_range] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_c_char] = ACTIONS(1196), + [anon_sym_c_schar] = ACTIONS(1196), + [anon_sym_c_uchar] = ACTIONS(1196), + [anon_sym_c_short] = ACTIONS(1196), + [anon_sym_c_ushort] = ACTIONS(1196), + [anon_sym_c_int] = ACTIONS(1196), + [anon_sym_c_uint] = ACTIONS(1196), + [anon_sym_c_long] = ACTIONS(1196), + [anon_sym_c_ulong] = ACTIONS(1196), + [anon_sym_c_longlong] = ACTIONS(1196), + [anon_sym_c_ulonglong] = ACTIONS(1196), + [anon_sym_c_float] = ACTIONS(1196), + [anon_sym_c_double] = ACTIONS(1196), + [anon_sym_c_longdouble] = ACTIONS(1196), + [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(1196), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_defer] = ACTIONS(1196), + [anon_sym_errdefer] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_expand] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_unreachable] = ACTIONS(1196), + [anon_sym_undefined] = ACTIONS(1196), + [sym_sink] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [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(2660)] = { + [ts_builtin_sym_end] = ACTIONS(6062), + [sym_identifier] = ACTIONS(6064), + [anon_sym_import] = ACTIONS(6064), + [anon_sym_test] = ACTIONS(6064), + [anon_sym_hide] = ACTIONS(6064), + [anon_sym_func] = ACTIONS(6064), + [anon_sym_BANG] = ACTIONS(6064), + [anon_sym_EQ] = ACTIONS(6064), + [anon_sym_struct] = ACTIONS(6064), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_RPAREN] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6062), + [anon_sym_COMMA] = ACTIONS(6062), + [anon_sym_RBRACE] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6064), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_PIPE] = ACTIONS(6064), + [anon_sym_QMARK] = ACTIONS(6062), + [anon_sym_STAR] = ACTIONS(6064), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_SEMI] = ACTIONS(6062), + [anon_sym_RBRACK] = ACTIONS(6062), + [anon_sym_void] = ACTIONS(6064), + [anon_sym_noreturn] = ACTIONS(6064), + [anon_sym_type] = ACTIONS(6064), + [anon_sym_anyopaque] = ACTIONS(6064), + [anon_sym_bool] = ACTIONS(6064), + [anon_sym_int] = ACTIONS(6064), + [anon_sym_uint] = ACTIONS(6064), + [anon_sym_float] = ACTIONS(6064), + [anon_sym_range] = ACTIONS(6064), + [anon_sym_i8] = ACTIONS(6064), + [anon_sym_i16] = ACTIONS(6064), + [anon_sym_i32] = ACTIONS(6064), + [anon_sym_i64] = ACTIONS(6064), + [anon_sym_u8] = ACTIONS(6064), + [anon_sym_u16] = ACTIONS(6064), + [anon_sym_u32] = ACTIONS(6064), + [anon_sym_u64] = ACTIONS(6064), + [anon_sym_isize] = ACTIONS(6064), + [anon_sym_usize] = ACTIONS(6064), + [anon_sym_f32] = ACTIONS(6064), + [anon_sym_f64] = ACTIONS(6064), + [anon_sym_c_char] = ACTIONS(6064), + [anon_sym_c_schar] = ACTIONS(6064), + [anon_sym_c_uchar] = ACTIONS(6064), + [anon_sym_c_short] = ACTIONS(6064), + [anon_sym_c_ushort] = ACTIONS(6064), + [anon_sym_c_int] = ACTIONS(6064), + [anon_sym_c_uint] = ACTIONS(6064), + [anon_sym_c_long] = ACTIONS(6064), + [anon_sym_c_ulong] = ACTIONS(6064), + [anon_sym_c_longlong] = ACTIONS(6064), + [anon_sym_c_ulonglong] = ACTIONS(6064), + [anon_sym_c_float] = ACTIONS(6064), + [anon_sym_c_double] = ACTIONS(6064), + [anon_sym_c_longdouble] = ACTIONS(6064), + [anon_sym_PLUS_EQ] = ACTIONS(6062), + [anon_sym_DASH_EQ] = ACTIONS(6062), + [anon_sym_STAR_EQ] = ACTIONS(6062), + [anon_sym_SLASH_EQ] = ACTIONS(6062), + [anon_sym_AMP_EQ] = ACTIONS(6062), + [anon_sym_PIPE_EQ] = ACTIONS(6062), + [anon_sym_xor_EQ] = ACTIONS(6062), + [anon_sym_LT_LT_EQ] = ACTIONS(6062), + [anon_sym_GT_GT_EQ] = ACTIONS(6062), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6062), + [anon_sym_return] = ACTIONS(6064), + [anon_sym_yield] = ACTIONS(6064), + [anon_sym_COLON] = ACTIONS(6062), + [anon_sym_break] = ACTIONS(6064), + [anon_sym_continue] = ACTIONS(6064), + [anon_sym_defer] = ACTIONS(6064), + [anon_sym_errdefer] = ACTIONS(6064), + [anon_sym_if] = ACTIONS(6064), + [anon_sym_else] = ACTIONS(6064), + [anon_sym_while] = ACTIONS(6064), + [anon_sym_expand] = ACTIONS(6064), + [anon_sym_for] = ACTIONS(6064), + [anon_sym_match] = ACTIONS(6064), + [anon_sym_DOT_DOT] = ACTIONS(6064), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_orelse] = ACTIONS(6064), + [anon_sym_or] = ACTIONS(6064), + [anon_sym_and] = ACTIONS(6064), + [anon_sym_EQ_EQ] = ACTIONS(6062), + [anon_sym_BANG_EQ] = ACTIONS(6062), + [anon_sym_LT] = ACTIONS(6064), + [anon_sym_LT_EQ] = ACTIONS(6062), + [anon_sym_GT] = ACTIONS(6064), + [anon_sym_GT_EQ] = ACTIONS(6062), + [anon_sym_AMP] = ACTIONS(6064), + [anon_sym_xor] = ACTIONS(6064), + [anon_sym_LT_LT] = ACTIONS(6064), + [anon_sym_GT_GT] = ACTIONS(6064), + [anon_sym_LT_LT_PIPE] = ACTIONS(6064), + [anon_sym_PLUS] = ACTIONS(6064), + [anon_sym_SLASH] = ACTIONS(6064), + [anon_sym_catch] = ACTIONS(6064), + [anon_sym_TILDE] = ACTIONS(6062), + [anon_sym_try] = ACTIONS(6064), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_true] = ACTIONS(6064), + [anon_sym_false] = ACTIONS(6064), + [anon_sym_null] = ACTIONS(6064), + [anon_sym_unreachable] = ACTIONS(6064), + [anon_sym_undefined] = ACTIONS(6064), + [sym_sink] = ACTIONS(6064), + [sym_integer] = ACTIONS(6064), + [sym_float] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(6062), + [sym_multiline_string] = ACTIONS(6062), + [sym_character] = ACTIONS(6062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6062), + }, + [STATE(2661)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2662), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6066), + }, + [STATE(2662)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2663)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2664), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6068), + }, + [STATE(2664)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2665)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2666), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6070), + }, + [STATE(2666)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3552), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2327), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2333), + [anon_sym_errdefer] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2337), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2667)] = { + [ts_builtin_sym_end] = ACTIONS(6072), + [sym_identifier] = ACTIONS(6074), + [anon_sym_import] = ACTIONS(6074), + [anon_sym_test] = ACTIONS(6074), + [anon_sym_hide] = ACTIONS(6074), + [anon_sym_func] = ACTIONS(6074), + [anon_sym_BANG] = ACTIONS(6074), + [anon_sym_EQ] = ACTIONS(6074), + [anon_sym_struct] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6072), + [anon_sym_RPAREN] = ACTIONS(6072), + [anon_sym_LBRACE] = ACTIONS(6072), + [anon_sym_COMMA] = ACTIONS(6072), + [anon_sym_RBRACE] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_DOLLAR] = ACTIONS(6072), + [anon_sym_PIPE] = ACTIONS(6074), + [anon_sym_QMARK] = ACTIONS(6072), + [anon_sym_STAR] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6072), + [anon_sym_SEMI] = ACTIONS(6072), + [anon_sym_RBRACK] = ACTIONS(6072), + [anon_sym_void] = ACTIONS(6074), + [anon_sym_noreturn] = ACTIONS(6074), + [anon_sym_type] = ACTIONS(6074), + [anon_sym_anyopaque] = ACTIONS(6074), + [anon_sym_bool] = ACTIONS(6074), + [anon_sym_int] = ACTIONS(6074), + [anon_sym_uint] = ACTIONS(6074), + [anon_sym_float] = ACTIONS(6074), + [anon_sym_range] = ACTIONS(6074), + [anon_sym_i8] = ACTIONS(6074), + [anon_sym_i16] = ACTIONS(6074), + [anon_sym_i32] = ACTIONS(6074), + [anon_sym_i64] = ACTIONS(6074), + [anon_sym_u8] = ACTIONS(6074), + [anon_sym_u16] = ACTIONS(6074), + [anon_sym_u32] = ACTIONS(6074), + [anon_sym_u64] = ACTIONS(6074), + [anon_sym_isize] = ACTIONS(6074), + [anon_sym_usize] = ACTIONS(6074), + [anon_sym_f32] = ACTIONS(6074), + [anon_sym_f64] = ACTIONS(6074), + [anon_sym_c_char] = ACTIONS(6074), + [anon_sym_c_schar] = ACTIONS(6074), + [anon_sym_c_uchar] = ACTIONS(6074), + [anon_sym_c_short] = ACTIONS(6074), + [anon_sym_c_ushort] = ACTIONS(6074), + [anon_sym_c_int] = ACTIONS(6074), + [anon_sym_c_uint] = ACTIONS(6074), + [anon_sym_c_long] = ACTIONS(6074), + [anon_sym_c_ulong] = ACTIONS(6074), + [anon_sym_c_longlong] = ACTIONS(6074), + [anon_sym_c_ulonglong] = ACTIONS(6074), + [anon_sym_c_float] = ACTIONS(6074), + [anon_sym_c_double] = ACTIONS(6074), + [anon_sym_c_longdouble] = ACTIONS(6074), + [anon_sym_PLUS_EQ] = ACTIONS(6072), + [anon_sym_DASH_EQ] = ACTIONS(6072), + [anon_sym_STAR_EQ] = ACTIONS(6072), + [anon_sym_SLASH_EQ] = ACTIONS(6072), + [anon_sym_AMP_EQ] = ACTIONS(6072), + [anon_sym_PIPE_EQ] = ACTIONS(6072), + [anon_sym_xor_EQ] = ACTIONS(6072), + [anon_sym_LT_LT_EQ] = ACTIONS(6072), + [anon_sym_GT_GT_EQ] = ACTIONS(6072), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6072), + [anon_sym_return] = ACTIONS(6074), + [anon_sym_yield] = ACTIONS(6074), + [anon_sym_COLON] = ACTIONS(6072), + [anon_sym_break] = ACTIONS(6074), + [anon_sym_continue] = ACTIONS(6074), + [anon_sym_defer] = ACTIONS(6074), + [anon_sym_errdefer] = ACTIONS(6074), + [anon_sym_if] = ACTIONS(6074), + [anon_sym_else] = ACTIONS(6074), + [anon_sym_while] = ACTIONS(6074), + [anon_sym_expand] = ACTIONS(6074), + [anon_sym_for] = ACTIONS(6074), + [anon_sym_match] = ACTIONS(6074), + [anon_sym_DOT_DOT] = ACTIONS(6074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6072), + [anon_sym_orelse] = ACTIONS(6074), + [anon_sym_or] = ACTIONS(6074), + [anon_sym_and] = ACTIONS(6074), + [anon_sym_EQ_EQ] = ACTIONS(6072), + [anon_sym_BANG_EQ] = ACTIONS(6072), + [anon_sym_LT] = ACTIONS(6074), + [anon_sym_LT_EQ] = ACTIONS(6072), + [anon_sym_GT] = ACTIONS(6074), + [anon_sym_GT_EQ] = ACTIONS(6072), + [anon_sym_AMP] = ACTIONS(6074), + [anon_sym_xor] = ACTIONS(6074), + [anon_sym_LT_LT] = ACTIONS(6074), + [anon_sym_GT_GT] = ACTIONS(6074), + [anon_sym_LT_LT_PIPE] = ACTIONS(6074), + [anon_sym_PLUS] = ACTIONS(6074), + [anon_sym_SLASH] = ACTIONS(6074), + [anon_sym_catch] = ACTIONS(6074), + [anon_sym_TILDE] = ACTIONS(6072), + [anon_sym_try] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6074), + [anon_sym_CARET] = ACTIONS(6072), + [anon_sym_true] = ACTIONS(6074), + [anon_sym_false] = ACTIONS(6074), + [anon_sym_null] = ACTIONS(6074), + [anon_sym_unreachable] = ACTIONS(6074), + [anon_sym_undefined] = ACTIONS(6074), + [sym_sink] = ACTIONS(6074), + [sym_integer] = ACTIONS(6074), + [sym_float] = ACTIONS(6072), + [anon_sym_DQUOTE] = ACTIONS(6072), + [sym_multiline_string] = ACTIONS(6072), + [sym_character] = ACTIONS(6072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6072), + }, + [STATE(2668)] = { + [ts_builtin_sym_end] = ACTIONS(6076), + [sym_identifier] = ACTIONS(6078), + [anon_sym_import] = ACTIONS(6078), + [anon_sym_test] = ACTIONS(6078), + [anon_sym_hide] = ACTIONS(6078), + [anon_sym_func] = ACTIONS(6078), + [anon_sym_BANG] = ACTIONS(6078), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_struct] = ACTIONS(6078), + [anon_sym_LPAREN] = ACTIONS(6076), + [anon_sym_RPAREN] = ACTIONS(6076), + [anon_sym_LBRACE] = ACTIONS(6076), + [anon_sym_COMMA] = ACTIONS(6076), + [anon_sym_RBRACE] = ACTIONS(6076), + [anon_sym_DASH] = ACTIONS(6078), + [anon_sym_DOLLAR] = ACTIONS(6076), + [anon_sym_PIPE] = ACTIONS(6078), + [anon_sym_QMARK] = ACTIONS(6076), + [anon_sym_STAR] = ACTIONS(6078), + [anon_sym_LBRACK] = ACTIONS(6076), + [anon_sym_SEMI] = ACTIONS(6076), + [anon_sym_RBRACK] = ACTIONS(6076), + [anon_sym_void] = ACTIONS(6078), + [anon_sym_noreturn] = ACTIONS(6078), + [anon_sym_type] = ACTIONS(6078), + [anon_sym_anyopaque] = ACTIONS(6078), + [anon_sym_bool] = ACTIONS(6078), + [anon_sym_int] = ACTIONS(6078), + [anon_sym_uint] = ACTIONS(6078), + [anon_sym_float] = ACTIONS(6078), + [anon_sym_range] = ACTIONS(6078), + [anon_sym_i8] = ACTIONS(6078), + [anon_sym_i16] = ACTIONS(6078), + [anon_sym_i32] = ACTIONS(6078), + [anon_sym_i64] = ACTIONS(6078), + [anon_sym_u8] = ACTIONS(6078), + [anon_sym_u16] = ACTIONS(6078), + [anon_sym_u32] = ACTIONS(6078), + [anon_sym_u64] = ACTIONS(6078), + [anon_sym_isize] = ACTIONS(6078), + [anon_sym_usize] = ACTIONS(6078), + [anon_sym_f32] = ACTIONS(6078), + [anon_sym_f64] = ACTIONS(6078), + [anon_sym_c_char] = ACTIONS(6078), + [anon_sym_c_schar] = ACTIONS(6078), + [anon_sym_c_uchar] = ACTIONS(6078), + [anon_sym_c_short] = ACTIONS(6078), + [anon_sym_c_ushort] = ACTIONS(6078), + [anon_sym_c_int] = ACTIONS(6078), + [anon_sym_c_uint] = ACTIONS(6078), + [anon_sym_c_long] = ACTIONS(6078), + [anon_sym_c_ulong] = ACTIONS(6078), + [anon_sym_c_longlong] = ACTIONS(6078), + [anon_sym_c_ulonglong] = ACTIONS(6078), + [anon_sym_c_float] = ACTIONS(6078), + [anon_sym_c_double] = ACTIONS(6078), + [anon_sym_c_longdouble] = ACTIONS(6078), + [anon_sym_PLUS_EQ] = ACTIONS(6076), + [anon_sym_DASH_EQ] = ACTIONS(6076), + [anon_sym_STAR_EQ] = ACTIONS(6076), + [anon_sym_SLASH_EQ] = ACTIONS(6076), + [anon_sym_AMP_EQ] = ACTIONS(6076), + [anon_sym_PIPE_EQ] = ACTIONS(6076), + [anon_sym_xor_EQ] = ACTIONS(6076), + [anon_sym_LT_LT_EQ] = ACTIONS(6076), + [anon_sym_GT_GT_EQ] = ACTIONS(6076), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6076), + [anon_sym_return] = ACTIONS(6078), + [anon_sym_yield] = ACTIONS(6078), + [anon_sym_COLON] = ACTIONS(6076), + [anon_sym_break] = ACTIONS(6078), + [anon_sym_continue] = ACTIONS(6078), + [anon_sym_defer] = ACTIONS(6078), + [anon_sym_errdefer] = ACTIONS(6078), + [anon_sym_if] = ACTIONS(6078), + [anon_sym_else] = ACTIONS(6078), + [anon_sym_while] = ACTIONS(6078), + [anon_sym_expand] = ACTIONS(6078), + [anon_sym_for] = ACTIONS(6078), + [anon_sym_match] = ACTIONS(6078), + [anon_sym_DOT_DOT] = ACTIONS(6078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6076), + [anon_sym_orelse] = ACTIONS(6078), + [anon_sym_or] = ACTIONS(6078), + [anon_sym_and] = ACTIONS(6078), + [anon_sym_EQ_EQ] = ACTIONS(6076), + [anon_sym_BANG_EQ] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(6078), + [anon_sym_LT_EQ] = ACTIONS(6076), + [anon_sym_GT] = ACTIONS(6078), + [anon_sym_GT_EQ] = ACTIONS(6076), + [anon_sym_AMP] = ACTIONS(6078), + [anon_sym_xor] = ACTIONS(6078), + [anon_sym_LT_LT] = ACTIONS(6078), + [anon_sym_GT_GT] = ACTIONS(6078), + [anon_sym_LT_LT_PIPE] = ACTIONS(6078), + [anon_sym_PLUS] = ACTIONS(6078), + [anon_sym_SLASH] = ACTIONS(6078), + [anon_sym_catch] = ACTIONS(6078), + [anon_sym_TILDE] = ACTIONS(6076), + [anon_sym_try] = ACTIONS(6078), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_CARET] = ACTIONS(6076), + [anon_sym_true] = ACTIONS(6078), + [anon_sym_false] = ACTIONS(6078), + [anon_sym_null] = ACTIONS(6078), + [anon_sym_unreachable] = ACTIONS(6078), + [anon_sym_undefined] = ACTIONS(6078), + [sym_sink] = ACTIONS(6078), + [sym_integer] = ACTIONS(6078), + [sym_float] = ACTIONS(6076), + [anon_sym_DQUOTE] = ACTIONS(6076), + [sym_multiline_string] = ACTIONS(6076), + [sym_character] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6076), + }, + [STATE(2669)] = { + [ts_builtin_sym_end] = ACTIONS(6080), + [sym_identifier] = ACTIONS(6082), + [anon_sym_import] = ACTIONS(6082), + [anon_sym_test] = ACTIONS(6082), + [anon_sym_hide] = ACTIONS(6082), + [anon_sym_func] = ACTIONS(6082), + [anon_sym_BANG] = ACTIONS(6082), + [anon_sym_EQ] = ACTIONS(6082), + [anon_sym_struct] = ACTIONS(6082), + [anon_sym_LPAREN] = ACTIONS(6080), + [anon_sym_RPAREN] = ACTIONS(6080), + [anon_sym_LBRACE] = ACTIONS(6080), + [anon_sym_COMMA] = ACTIONS(6080), + [anon_sym_RBRACE] = ACTIONS(6080), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_DOLLAR] = ACTIONS(6080), + [anon_sym_PIPE] = ACTIONS(6082), + [anon_sym_QMARK] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6080), + [anon_sym_SEMI] = ACTIONS(6080), + [anon_sym_RBRACK] = ACTIONS(6080), + [anon_sym_void] = ACTIONS(6082), + [anon_sym_noreturn] = ACTIONS(6082), + [anon_sym_type] = ACTIONS(6082), + [anon_sym_anyopaque] = ACTIONS(6082), + [anon_sym_bool] = ACTIONS(6082), + [anon_sym_int] = ACTIONS(6082), + [anon_sym_uint] = ACTIONS(6082), + [anon_sym_float] = ACTIONS(6082), + [anon_sym_range] = ACTIONS(6082), + [anon_sym_i8] = ACTIONS(6082), + [anon_sym_i16] = ACTIONS(6082), + [anon_sym_i32] = ACTIONS(6082), + [anon_sym_i64] = ACTIONS(6082), + [anon_sym_u8] = ACTIONS(6082), + [anon_sym_u16] = ACTIONS(6082), + [anon_sym_u32] = ACTIONS(6082), + [anon_sym_u64] = ACTIONS(6082), + [anon_sym_isize] = ACTIONS(6082), + [anon_sym_usize] = ACTIONS(6082), + [anon_sym_f32] = ACTIONS(6082), + [anon_sym_f64] = ACTIONS(6082), + [anon_sym_c_char] = ACTIONS(6082), + [anon_sym_c_schar] = ACTIONS(6082), + [anon_sym_c_uchar] = ACTIONS(6082), + [anon_sym_c_short] = ACTIONS(6082), + [anon_sym_c_ushort] = ACTIONS(6082), + [anon_sym_c_int] = ACTIONS(6082), + [anon_sym_c_uint] = ACTIONS(6082), + [anon_sym_c_long] = ACTIONS(6082), + [anon_sym_c_ulong] = ACTIONS(6082), + [anon_sym_c_longlong] = ACTIONS(6082), + [anon_sym_c_ulonglong] = ACTIONS(6082), + [anon_sym_c_float] = ACTIONS(6082), + [anon_sym_c_double] = ACTIONS(6082), + [anon_sym_c_longdouble] = ACTIONS(6082), + [anon_sym_PLUS_EQ] = ACTIONS(6080), + [anon_sym_DASH_EQ] = ACTIONS(6080), + [anon_sym_STAR_EQ] = ACTIONS(6080), + [anon_sym_SLASH_EQ] = ACTIONS(6080), + [anon_sym_AMP_EQ] = ACTIONS(6080), + [anon_sym_PIPE_EQ] = ACTIONS(6080), + [anon_sym_xor_EQ] = ACTIONS(6080), + [anon_sym_LT_LT_EQ] = ACTIONS(6080), + [anon_sym_GT_GT_EQ] = ACTIONS(6080), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6080), + [anon_sym_return] = ACTIONS(6082), + [anon_sym_yield] = ACTIONS(6082), + [anon_sym_COLON] = ACTIONS(6080), + [anon_sym_break] = ACTIONS(6082), + [anon_sym_continue] = ACTIONS(6082), + [anon_sym_defer] = ACTIONS(6082), + [anon_sym_errdefer] = ACTIONS(6082), + [anon_sym_if] = ACTIONS(6082), + [anon_sym_else] = ACTIONS(6082), + [anon_sym_while] = ACTIONS(6082), + [anon_sym_expand] = ACTIONS(6082), + [anon_sym_for] = ACTIONS(6082), + [anon_sym_match] = ACTIONS(6082), + [anon_sym_DOT_DOT] = ACTIONS(6082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6080), + [anon_sym_orelse] = ACTIONS(6082), + [anon_sym_or] = ACTIONS(6082), + [anon_sym_and] = ACTIONS(6082), + [anon_sym_EQ_EQ] = ACTIONS(6080), + [anon_sym_BANG_EQ] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(6082), + [anon_sym_LT_EQ] = ACTIONS(6080), + [anon_sym_GT] = ACTIONS(6082), + [anon_sym_GT_EQ] = ACTIONS(6080), + [anon_sym_AMP] = ACTIONS(6082), + [anon_sym_xor] = ACTIONS(6082), + [anon_sym_LT_LT] = ACTIONS(6082), + [anon_sym_GT_GT] = ACTIONS(6082), + [anon_sym_LT_LT_PIPE] = ACTIONS(6082), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_SLASH] = ACTIONS(6082), + [anon_sym_catch] = ACTIONS(6082), + [anon_sym_TILDE] = ACTIONS(6080), + [anon_sym_try] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6082), + [anon_sym_CARET] = ACTIONS(6080), + [anon_sym_true] = ACTIONS(6082), + [anon_sym_false] = ACTIONS(6082), + [anon_sym_null] = ACTIONS(6082), + [anon_sym_unreachable] = ACTIONS(6082), + [anon_sym_undefined] = ACTIONS(6082), + [sym_sink] = ACTIONS(6082), + [sym_integer] = ACTIONS(6082), + [sym_float] = ACTIONS(6080), + [anon_sym_DQUOTE] = ACTIONS(6080), + [sym_multiline_string] = ACTIONS(6080), + [sym_character] = ACTIONS(6080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6080), + }, + [STATE(2670)] = { + [ts_builtin_sym_end] = ACTIONS(6084), + [sym_identifier] = ACTIONS(6086), + [anon_sym_import] = ACTIONS(6086), + [anon_sym_test] = ACTIONS(6086), + [anon_sym_hide] = ACTIONS(6086), + [anon_sym_func] = ACTIONS(6086), + [anon_sym_BANG] = ACTIONS(6086), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_struct] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6084), + [anon_sym_RPAREN] = ACTIONS(6084), + [anon_sym_LBRACE] = ACTIONS(6084), + [anon_sym_COMMA] = ACTIONS(6084), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_DASH] = ACTIONS(6086), + [anon_sym_DOLLAR] = ACTIONS(6084), + [anon_sym_PIPE] = ACTIONS(6086), + [anon_sym_QMARK] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(6086), + [anon_sym_LBRACK] = ACTIONS(6084), + [anon_sym_SEMI] = ACTIONS(6084), + [anon_sym_RBRACK] = ACTIONS(6084), + [anon_sym_void] = ACTIONS(6086), + [anon_sym_noreturn] = ACTIONS(6086), + [anon_sym_type] = ACTIONS(6086), + [anon_sym_anyopaque] = ACTIONS(6086), + [anon_sym_bool] = ACTIONS(6086), + [anon_sym_int] = ACTIONS(6086), + [anon_sym_uint] = ACTIONS(6086), + [anon_sym_float] = ACTIONS(6086), + [anon_sym_range] = ACTIONS(6086), + [anon_sym_i8] = ACTIONS(6086), + [anon_sym_i16] = ACTIONS(6086), + [anon_sym_i32] = ACTIONS(6086), + [anon_sym_i64] = ACTIONS(6086), + [anon_sym_u8] = ACTIONS(6086), + [anon_sym_u16] = ACTIONS(6086), + [anon_sym_u32] = ACTIONS(6086), + [anon_sym_u64] = ACTIONS(6086), + [anon_sym_isize] = ACTIONS(6086), + [anon_sym_usize] = ACTIONS(6086), + [anon_sym_f32] = ACTIONS(6086), + [anon_sym_f64] = ACTIONS(6086), + [anon_sym_c_char] = ACTIONS(6086), + [anon_sym_c_schar] = ACTIONS(6086), + [anon_sym_c_uchar] = ACTIONS(6086), + [anon_sym_c_short] = ACTIONS(6086), + [anon_sym_c_ushort] = ACTIONS(6086), + [anon_sym_c_int] = ACTIONS(6086), + [anon_sym_c_uint] = ACTIONS(6086), + [anon_sym_c_long] = ACTIONS(6086), + [anon_sym_c_ulong] = ACTIONS(6086), + [anon_sym_c_longlong] = ACTIONS(6086), + [anon_sym_c_ulonglong] = ACTIONS(6086), + [anon_sym_c_float] = ACTIONS(6086), + [anon_sym_c_double] = ACTIONS(6086), + [anon_sym_c_longdouble] = ACTIONS(6086), + [anon_sym_PLUS_EQ] = ACTIONS(6084), + [anon_sym_DASH_EQ] = ACTIONS(6084), + [anon_sym_STAR_EQ] = ACTIONS(6084), + [anon_sym_SLASH_EQ] = ACTIONS(6084), + [anon_sym_AMP_EQ] = ACTIONS(6084), + [anon_sym_PIPE_EQ] = ACTIONS(6084), + [anon_sym_xor_EQ] = ACTIONS(6084), + [anon_sym_LT_LT_EQ] = ACTIONS(6084), + [anon_sym_GT_GT_EQ] = ACTIONS(6084), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6084), + [anon_sym_return] = ACTIONS(6086), + [anon_sym_yield] = ACTIONS(6086), + [anon_sym_COLON] = ACTIONS(6084), + [anon_sym_break] = ACTIONS(6086), + [anon_sym_continue] = ACTIONS(6086), + [anon_sym_defer] = ACTIONS(6086), + [anon_sym_errdefer] = ACTIONS(6086), + [anon_sym_if] = ACTIONS(6086), + [anon_sym_else] = ACTIONS(6086), + [anon_sym_while] = ACTIONS(6086), + [anon_sym_expand] = ACTIONS(6086), + [anon_sym_for] = ACTIONS(6086), + [anon_sym_match] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6084), + [anon_sym_orelse] = ACTIONS(6086), + [anon_sym_or] = ACTIONS(6086), + [anon_sym_and] = ACTIONS(6086), + [anon_sym_EQ_EQ] = ACTIONS(6084), + [anon_sym_BANG_EQ] = ACTIONS(6084), + [anon_sym_LT] = ACTIONS(6086), + [anon_sym_LT_EQ] = ACTIONS(6084), + [anon_sym_GT] = ACTIONS(6086), + [anon_sym_GT_EQ] = ACTIONS(6084), + [anon_sym_AMP] = ACTIONS(6086), + [anon_sym_xor] = ACTIONS(6086), + [anon_sym_LT_LT] = ACTIONS(6086), + [anon_sym_GT_GT] = ACTIONS(6086), + [anon_sym_LT_LT_PIPE] = ACTIONS(6086), + [anon_sym_PLUS] = ACTIONS(6086), + [anon_sym_SLASH] = ACTIONS(6086), + [anon_sym_catch] = ACTIONS(6086), + [anon_sym_TILDE] = ACTIONS(6084), + [anon_sym_try] = ACTIONS(6086), + [anon_sym_DOT] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6084), + [anon_sym_true] = ACTIONS(6086), + [anon_sym_false] = ACTIONS(6086), + [anon_sym_null] = ACTIONS(6086), + [anon_sym_unreachable] = ACTIONS(6086), + [anon_sym_undefined] = ACTIONS(6086), + [sym_sink] = ACTIONS(6086), + [sym_integer] = ACTIONS(6086), + [sym_float] = ACTIONS(6084), + [anon_sym_DQUOTE] = ACTIONS(6084), + [sym_multiline_string] = ACTIONS(6084), + [sym_character] = ACTIONS(6084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6084), + }, + [STATE(2671)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2672), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6088), + }, + [STATE(2672)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2673)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6090), + }, + [STATE(2674)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2675)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2676), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6092), + }, + [STATE(2676)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(5032), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(897), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(905), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2677)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2678), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6094), + }, + [STATE(2678)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2679)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9850), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6096), + }, + [STATE(2680)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6098), + }, + [STATE(2681)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2682)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2683), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6100), + }, + [STATE(2683)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2684)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2685), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6102), + }, + [STATE(2685)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(5035), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(919), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2686)] = { + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1329), + [anon_sym_import] = ACTIONS(1329), + [anon_sym_test] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_COMMA] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1331), + [anon_sym_DASH_EQ] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1331), + [anon_sym_SLASH_EQ] = ACTIONS(1331), + [anon_sym_AMP_EQ] = ACTIONS(1331), + [anon_sym_PIPE_EQ] = ACTIONS(1331), + [anon_sym_xor_EQ] = ACTIONS(1331), + [anon_sym_LT_LT_EQ] = ACTIONS(1331), + [anon_sym_GT_GT_EQ] = ACTIONS(1331), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_LT_LT_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1331), + }, + [STATE(2687)] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1254), + [anon_sym_import] = ACTIONS(1254), + [anon_sym_test] = ACTIONS(1254), + [anon_sym_hide] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_COMMA] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_RBRACK] = ACTIONS(1258), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1258), + [anon_sym_DASH_EQ] = ACTIONS(1258), + [anon_sym_STAR_EQ] = ACTIONS(1258), + [anon_sym_SLASH_EQ] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_PIPE_EQ] = ACTIONS(1258), + [anon_sym_xor_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_COLON] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_LT_LT_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1258), + }, + [STATE(2688)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2689), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6104), + }, + [STATE(2689)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2690)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2691), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6106), + }, + [STATE(2691)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2692)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2693), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6108), + }, + [STATE(2693)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(5034), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(935), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(947), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2694)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9503), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2695)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9504), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2711), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6110), + }, + [STATE(2696)] = { + [ts_builtin_sym_end] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2726), + [anon_sym_import] = ACTIONS(2726), + [anon_sym_test] = ACTIONS(2726), + [anon_sym_hide] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_DOLLAR] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_RBRACK] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2724), + [anon_sym_xor_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_COLON] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_defer] = ACTIONS(2726), + [anon_sym_errdefer] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_expand] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(2726), + [anon_sym_and] = ACTIONS(2726), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2726), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_xor] = ACTIONS(2726), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2726), + [anon_sym_LT_LT_PIPE] = ACTIONS(2726), + [anon_sym_PLUS] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2726), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2726), + [anon_sym_unreachable] = ACTIONS(2726), + [anon_sym_undefined] = ACTIONS(2726), + [sym_sink] = ACTIONS(2726), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [sym_multiline_string] = ACTIONS(2724), + [sym_character] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(2697)] = { + [ts_builtin_sym_end] = ACTIONS(6112), + [sym_identifier] = ACTIONS(6114), + [anon_sym_import] = ACTIONS(6114), + [anon_sym_test] = ACTIONS(6114), + [anon_sym_hide] = ACTIONS(6114), + [anon_sym_func] = ACTIONS(6114), + [anon_sym_BANG] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(6114), + [anon_sym_struct] = ACTIONS(6114), + [anon_sym_LPAREN] = ACTIONS(6112), + [anon_sym_RPAREN] = ACTIONS(6112), + [anon_sym_LBRACE] = ACTIONS(6112), + [anon_sym_COMMA] = ACTIONS(6112), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_DASH] = ACTIONS(6114), + [anon_sym_DOLLAR] = ACTIONS(6112), + [anon_sym_PIPE] = ACTIONS(6114), + [anon_sym_QMARK] = ACTIONS(6112), + [anon_sym_STAR] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(6112), + [anon_sym_SEMI] = ACTIONS(6112), + [anon_sym_RBRACK] = ACTIONS(6112), + [anon_sym_void] = ACTIONS(6114), + [anon_sym_noreturn] = ACTIONS(6114), + [anon_sym_type] = ACTIONS(6114), + [anon_sym_anyopaque] = ACTIONS(6114), + [anon_sym_bool] = ACTIONS(6114), + [anon_sym_int] = ACTIONS(6114), + [anon_sym_uint] = ACTIONS(6114), + [anon_sym_float] = ACTIONS(6114), + [anon_sym_range] = ACTIONS(6114), + [anon_sym_i8] = ACTIONS(6114), + [anon_sym_i16] = ACTIONS(6114), + [anon_sym_i32] = ACTIONS(6114), + [anon_sym_i64] = ACTIONS(6114), + [anon_sym_u8] = ACTIONS(6114), + [anon_sym_u16] = ACTIONS(6114), + [anon_sym_u32] = ACTIONS(6114), + [anon_sym_u64] = ACTIONS(6114), + [anon_sym_isize] = ACTIONS(6114), + [anon_sym_usize] = ACTIONS(6114), + [anon_sym_f32] = ACTIONS(6114), + [anon_sym_f64] = ACTIONS(6114), + [anon_sym_c_char] = ACTIONS(6114), + [anon_sym_c_schar] = ACTIONS(6114), + [anon_sym_c_uchar] = ACTIONS(6114), + [anon_sym_c_short] = ACTIONS(6114), + [anon_sym_c_ushort] = ACTIONS(6114), + [anon_sym_c_int] = ACTIONS(6114), + [anon_sym_c_uint] = ACTIONS(6114), + [anon_sym_c_long] = ACTIONS(6114), + [anon_sym_c_ulong] = ACTIONS(6114), + [anon_sym_c_longlong] = ACTIONS(6114), + [anon_sym_c_ulonglong] = ACTIONS(6114), + [anon_sym_c_float] = ACTIONS(6114), + [anon_sym_c_double] = ACTIONS(6114), + [anon_sym_c_longdouble] = ACTIONS(6114), + [anon_sym_PLUS_EQ] = ACTIONS(6112), + [anon_sym_DASH_EQ] = ACTIONS(6112), + [anon_sym_STAR_EQ] = ACTIONS(6112), + [anon_sym_SLASH_EQ] = ACTIONS(6112), + [anon_sym_AMP_EQ] = ACTIONS(6112), + [anon_sym_PIPE_EQ] = ACTIONS(6112), + [anon_sym_xor_EQ] = ACTIONS(6112), + [anon_sym_LT_LT_EQ] = ACTIONS(6112), + [anon_sym_GT_GT_EQ] = ACTIONS(6112), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6112), + [anon_sym_return] = ACTIONS(6114), + [anon_sym_yield] = ACTIONS(6114), + [anon_sym_COLON] = ACTIONS(6112), + [anon_sym_break] = ACTIONS(6114), + [anon_sym_continue] = ACTIONS(6114), + [anon_sym_defer] = ACTIONS(6114), + [anon_sym_errdefer] = ACTIONS(6114), + [anon_sym_if] = ACTIONS(6114), + [anon_sym_else] = ACTIONS(6114), + [anon_sym_while] = ACTIONS(6114), + [anon_sym_expand] = ACTIONS(6114), + [anon_sym_for] = ACTIONS(6114), + [anon_sym_match] = ACTIONS(6114), + [anon_sym_DOT_DOT] = ACTIONS(6114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6112), + [anon_sym_orelse] = ACTIONS(6114), + [anon_sym_or] = ACTIONS(6114), + [anon_sym_and] = ACTIONS(6114), + [anon_sym_EQ_EQ] = ACTIONS(6112), + [anon_sym_BANG_EQ] = ACTIONS(6112), + [anon_sym_LT] = ACTIONS(6114), + [anon_sym_LT_EQ] = ACTIONS(6112), + [anon_sym_GT] = ACTIONS(6114), + [anon_sym_GT_EQ] = ACTIONS(6112), + [anon_sym_AMP] = ACTIONS(6114), + [anon_sym_xor] = ACTIONS(6114), + [anon_sym_LT_LT] = ACTIONS(6114), + [anon_sym_GT_GT] = ACTIONS(6114), + [anon_sym_LT_LT_PIPE] = ACTIONS(6114), + [anon_sym_PLUS] = ACTIONS(6114), + [anon_sym_SLASH] = ACTIONS(6114), + [anon_sym_catch] = ACTIONS(6114), + [anon_sym_TILDE] = ACTIONS(6112), + [anon_sym_try] = ACTIONS(6114), + [anon_sym_DOT] = ACTIONS(6114), + [anon_sym_CARET] = ACTIONS(6112), + [anon_sym_true] = ACTIONS(6114), + [anon_sym_false] = ACTIONS(6114), + [anon_sym_null] = ACTIONS(6114), + [anon_sym_unreachable] = ACTIONS(6114), + [anon_sym_undefined] = ACTIONS(6114), + [sym_sink] = ACTIONS(6114), + [sym_integer] = ACTIONS(6114), + [sym_float] = ACTIONS(6112), + [anon_sym_DQUOTE] = ACTIONS(6112), + [sym_multiline_string] = ACTIONS(6112), + [sym_character] = ACTIONS(6112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6112), + }, + [STATE(2698)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2699), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6116), + }, + [STATE(2699)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2700)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2701), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6118), + }, + [STATE(2701)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2702)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2704), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6120), + }, + [STATE(2703)] = { + [ts_builtin_sym_end] = ACTIONS(6122), + [sym_identifier] = ACTIONS(6124), + [anon_sym_import] = ACTIONS(6124), + [anon_sym_test] = ACTIONS(6124), + [anon_sym_hide] = ACTIONS(6124), + [anon_sym_func] = ACTIONS(6124), + [anon_sym_BANG] = ACTIONS(6124), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_struct] = ACTIONS(6124), + [anon_sym_LPAREN] = ACTIONS(6122), + [anon_sym_RPAREN] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(6122), + [anon_sym_COMMA] = ACTIONS(6122), + [anon_sym_RBRACE] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6124), + [anon_sym_DOLLAR] = ACTIONS(6122), + [anon_sym_PIPE] = ACTIONS(6124), + [anon_sym_QMARK] = ACTIONS(6122), + [anon_sym_STAR] = ACTIONS(6124), + [anon_sym_LBRACK] = ACTIONS(6122), + [anon_sym_SEMI] = ACTIONS(6122), + [anon_sym_RBRACK] = ACTIONS(6122), + [anon_sym_void] = ACTIONS(6124), + [anon_sym_noreturn] = ACTIONS(6124), + [anon_sym_type] = ACTIONS(6124), + [anon_sym_anyopaque] = ACTIONS(6124), + [anon_sym_bool] = ACTIONS(6124), + [anon_sym_int] = ACTIONS(6124), + [anon_sym_uint] = ACTIONS(6124), + [anon_sym_float] = ACTIONS(6124), + [anon_sym_range] = ACTIONS(6124), + [anon_sym_i8] = ACTIONS(6124), + [anon_sym_i16] = ACTIONS(6124), + [anon_sym_i32] = ACTIONS(6124), + [anon_sym_i64] = ACTIONS(6124), + [anon_sym_u8] = ACTIONS(6124), + [anon_sym_u16] = ACTIONS(6124), + [anon_sym_u32] = ACTIONS(6124), + [anon_sym_u64] = ACTIONS(6124), + [anon_sym_isize] = ACTIONS(6124), + [anon_sym_usize] = ACTIONS(6124), + [anon_sym_f32] = ACTIONS(6124), + [anon_sym_f64] = ACTIONS(6124), + [anon_sym_c_char] = ACTIONS(6124), + [anon_sym_c_schar] = ACTIONS(6124), + [anon_sym_c_uchar] = ACTIONS(6124), + [anon_sym_c_short] = ACTIONS(6124), + [anon_sym_c_ushort] = ACTIONS(6124), + [anon_sym_c_int] = ACTIONS(6124), + [anon_sym_c_uint] = ACTIONS(6124), + [anon_sym_c_long] = ACTIONS(6124), + [anon_sym_c_ulong] = ACTIONS(6124), + [anon_sym_c_longlong] = ACTIONS(6124), + [anon_sym_c_ulonglong] = ACTIONS(6124), + [anon_sym_c_float] = ACTIONS(6124), + [anon_sym_c_double] = ACTIONS(6124), + [anon_sym_c_longdouble] = ACTIONS(6124), + [anon_sym_PLUS_EQ] = ACTIONS(6122), + [anon_sym_DASH_EQ] = ACTIONS(6122), + [anon_sym_STAR_EQ] = ACTIONS(6122), + [anon_sym_SLASH_EQ] = ACTIONS(6122), + [anon_sym_AMP_EQ] = ACTIONS(6122), + [anon_sym_PIPE_EQ] = ACTIONS(6122), + [anon_sym_xor_EQ] = ACTIONS(6122), + [anon_sym_LT_LT_EQ] = ACTIONS(6122), + [anon_sym_GT_GT_EQ] = ACTIONS(6122), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6122), + [anon_sym_return] = ACTIONS(6124), + [anon_sym_yield] = ACTIONS(6124), + [anon_sym_COLON] = ACTIONS(6122), + [anon_sym_break] = ACTIONS(6124), + [anon_sym_continue] = ACTIONS(6124), + [anon_sym_defer] = ACTIONS(6124), + [anon_sym_errdefer] = ACTIONS(6124), + [anon_sym_if] = ACTIONS(6124), + [anon_sym_else] = ACTIONS(6124), + [anon_sym_while] = ACTIONS(6124), + [anon_sym_expand] = ACTIONS(6124), + [anon_sym_for] = ACTIONS(6124), + [anon_sym_match] = ACTIONS(6124), + [anon_sym_DOT_DOT] = ACTIONS(6124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6122), + [anon_sym_orelse] = ACTIONS(6124), + [anon_sym_or] = ACTIONS(6124), + [anon_sym_and] = ACTIONS(6124), + [anon_sym_EQ_EQ] = ACTIONS(6122), + [anon_sym_BANG_EQ] = ACTIONS(6122), + [anon_sym_LT] = ACTIONS(6124), + [anon_sym_LT_EQ] = ACTIONS(6122), + [anon_sym_GT] = ACTIONS(6124), + [anon_sym_GT_EQ] = ACTIONS(6122), + [anon_sym_AMP] = ACTIONS(6124), + [anon_sym_xor] = ACTIONS(6124), + [anon_sym_LT_LT] = ACTIONS(6124), + [anon_sym_GT_GT] = ACTIONS(6124), + [anon_sym_LT_LT_PIPE] = ACTIONS(6124), + [anon_sym_PLUS] = ACTIONS(6124), + [anon_sym_SLASH] = ACTIONS(6124), + [anon_sym_catch] = ACTIONS(6124), + [anon_sym_TILDE] = ACTIONS(6122), + [anon_sym_try] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6124), + [anon_sym_CARET] = ACTIONS(6122), + [anon_sym_true] = ACTIONS(6124), + [anon_sym_false] = ACTIONS(6124), + [anon_sym_null] = ACTIONS(6124), + [anon_sym_unreachable] = ACTIONS(6124), + [anon_sym_undefined] = ACTIONS(6124), + [sym_sink] = ACTIONS(6124), + [sym_integer] = ACTIONS(6124), + [sym_float] = ACTIONS(6122), + [anon_sym_DQUOTE] = ACTIONS(6122), + [sym_multiline_string] = ACTIONS(6122), + [sym_character] = ACTIONS(6122), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6122), + }, + [STATE(2704)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8800), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2355), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2361), + [anon_sym_errdefer] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2365), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2705)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2706), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6126), + }, + [STATE(2706)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2707)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9850), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2708), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6128), + }, + [STATE(2708)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9503), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2709)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9504), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2710), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6130), + }, + [STATE(2710)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9610), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8802), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2369), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2375), + [anon_sym_errdefer] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2379), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2711)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9610), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(8918), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(473), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(485), + [anon_sym_errdefer] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(495), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2712)] = { + [ts_builtin_sym_end] = ACTIONS(6132), + [sym_identifier] = ACTIONS(6134), + [anon_sym_import] = ACTIONS(6134), + [anon_sym_test] = ACTIONS(6134), + [anon_sym_hide] = ACTIONS(6134), + [anon_sym_func] = ACTIONS(6134), + [anon_sym_BANG] = ACTIONS(6134), + [anon_sym_EQ] = ACTIONS(6134), + [anon_sym_struct] = ACTIONS(6134), + [anon_sym_LPAREN] = ACTIONS(6132), + [anon_sym_RPAREN] = ACTIONS(6132), + [anon_sym_LBRACE] = ACTIONS(6132), + [anon_sym_COMMA] = ACTIONS(6132), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_DASH] = ACTIONS(6134), + [anon_sym_DOLLAR] = ACTIONS(6132), + [anon_sym_PIPE] = ACTIONS(6134), + [anon_sym_QMARK] = ACTIONS(6132), + [anon_sym_STAR] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6132), + [anon_sym_SEMI] = ACTIONS(6132), + [anon_sym_RBRACK] = ACTIONS(6132), + [anon_sym_void] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym_type] = ACTIONS(6134), + [anon_sym_anyopaque] = ACTIONS(6134), + [anon_sym_bool] = ACTIONS(6134), + [anon_sym_int] = ACTIONS(6134), + [anon_sym_uint] = ACTIONS(6134), + [anon_sym_float] = ACTIONS(6134), + [anon_sym_range] = ACTIONS(6134), + [anon_sym_i8] = ACTIONS(6134), + [anon_sym_i16] = ACTIONS(6134), + [anon_sym_i32] = ACTIONS(6134), + [anon_sym_i64] = ACTIONS(6134), + [anon_sym_u8] = ACTIONS(6134), + [anon_sym_u16] = ACTIONS(6134), + [anon_sym_u32] = ACTIONS(6134), + [anon_sym_u64] = ACTIONS(6134), + [anon_sym_isize] = ACTIONS(6134), + [anon_sym_usize] = ACTIONS(6134), + [anon_sym_f32] = ACTIONS(6134), + [anon_sym_f64] = ACTIONS(6134), + [anon_sym_c_char] = ACTIONS(6134), + [anon_sym_c_schar] = ACTIONS(6134), + [anon_sym_c_uchar] = ACTIONS(6134), + [anon_sym_c_short] = ACTIONS(6134), + [anon_sym_c_ushort] = ACTIONS(6134), + [anon_sym_c_int] = ACTIONS(6134), + [anon_sym_c_uint] = ACTIONS(6134), + [anon_sym_c_long] = ACTIONS(6134), + [anon_sym_c_ulong] = ACTIONS(6134), + [anon_sym_c_longlong] = ACTIONS(6134), + [anon_sym_c_ulonglong] = ACTIONS(6134), + [anon_sym_c_float] = ACTIONS(6134), + [anon_sym_c_double] = ACTIONS(6134), + [anon_sym_c_longdouble] = ACTIONS(6134), + [anon_sym_PLUS_EQ] = ACTIONS(6132), + [anon_sym_DASH_EQ] = ACTIONS(6132), + [anon_sym_STAR_EQ] = ACTIONS(6132), + [anon_sym_SLASH_EQ] = ACTIONS(6132), + [anon_sym_AMP_EQ] = ACTIONS(6132), + [anon_sym_PIPE_EQ] = ACTIONS(6132), + [anon_sym_xor_EQ] = ACTIONS(6132), + [anon_sym_LT_LT_EQ] = ACTIONS(6132), + [anon_sym_GT_GT_EQ] = ACTIONS(6132), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6132), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_yield] = ACTIONS(6134), + [anon_sym_COLON] = ACTIONS(6132), + [anon_sym_break] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [anon_sym_defer] = ACTIONS(6134), + [anon_sym_errdefer] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [anon_sym_else] = ACTIONS(6134), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_expand] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [anon_sym_match] = ACTIONS(6134), + [anon_sym_DOT_DOT] = ACTIONS(6134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6132), + [anon_sym_orelse] = ACTIONS(6134), + [anon_sym_or] = ACTIONS(6134), + [anon_sym_and] = ACTIONS(6134), + [anon_sym_EQ_EQ] = ACTIONS(6132), + [anon_sym_BANG_EQ] = ACTIONS(6132), + [anon_sym_LT] = ACTIONS(6134), + [anon_sym_LT_EQ] = ACTIONS(6132), + [anon_sym_GT] = ACTIONS(6134), + [anon_sym_GT_EQ] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_xor] = ACTIONS(6134), + [anon_sym_LT_LT] = ACTIONS(6134), + [anon_sym_GT_GT] = ACTIONS(6134), + [anon_sym_LT_LT_PIPE] = ACTIONS(6134), + [anon_sym_PLUS] = ACTIONS(6134), + [anon_sym_SLASH] = ACTIONS(6134), + [anon_sym_catch] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6132), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_DOT] = ACTIONS(6134), + [anon_sym_CARET] = ACTIONS(6132), + [anon_sym_true] = ACTIONS(6134), + [anon_sym_false] = ACTIONS(6134), + [anon_sym_null] = ACTIONS(6134), + [anon_sym_unreachable] = ACTIONS(6134), + [anon_sym_undefined] = ACTIONS(6134), + [sym_sink] = ACTIONS(6134), + [sym_integer] = ACTIONS(6134), + [sym_float] = ACTIONS(6132), + [anon_sym_DQUOTE] = ACTIONS(6132), + [sym_multiline_string] = ACTIONS(6132), + [sym_character] = ACTIONS(6132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6132), + }, + [STATE(2713)] = { + [ts_builtin_sym_end] = ACTIONS(6136), + [sym_identifier] = ACTIONS(6138), + [anon_sym_import] = ACTIONS(6138), + [anon_sym_test] = ACTIONS(6138), + [anon_sym_hide] = ACTIONS(6138), + [anon_sym_func] = ACTIONS(6138), + [anon_sym_BANG] = ACTIONS(6138), + [anon_sym_EQ] = ACTIONS(6138), + [anon_sym_struct] = ACTIONS(6138), + [anon_sym_LPAREN] = ACTIONS(6136), + [anon_sym_RPAREN] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(6136), + [anon_sym_COMMA] = ACTIONS(6136), + [anon_sym_RBRACE] = ACTIONS(6136), + [anon_sym_DASH] = ACTIONS(6138), + [anon_sym_DOLLAR] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(6138), + [anon_sym_QMARK] = ACTIONS(6136), + [anon_sym_STAR] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(6136), + [anon_sym_SEMI] = ACTIONS(6136), + [anon_sym_RBRACK] = ACTIONS(6136), + [anon_sym_void] = ACTIONS(6138), + [anon_sym_noreturn] = ACTIONS(6138), + [anon_sym_type] = ACTIONS(6138), + [anon_sym_anyopaque] = ACTIONS(6138), + [anon_sym_bool] = ACTIONS(6138), + [anon_sym_int] = ACTIONS(6138), + [anon_sym_uint] = ACTIONS(6138), + [anon_sym_float] = ACTIONS(6138), + [anon_sym_range] = ACTIONS(6138), + [anon_sym_i8] = ACTIONS(6138), + [anon_sym_i16] = ACTIONS(6138), + [anon_sym_i32] = ACTIONS(6138), + [anon_sym_i64] = ACTIONS(6138), + [anon_sym_u8] = ACTIONS(6138), + [anon_sym_u16] = ACTIONS(6138), + [anon_sym_u32] = ACTIONS(6138), + [anon_sym_u64] = ACTIONS(6138), + [anon_sym_isize] = ACTIONS(6138), + [anon_sym_usize] = ACTIONS(6138), + [anon_sym_f32] = ACTIONS(6138), + [anon_sym_f64] = ACTIONS(6138), + [anon_sym_c_char] = ACTIONS(6138), + [anon_sym_c_schar] = ACTIONS(6138), + [anon_sym_c_uchar] = ACTIONS(6138), + [anon_sym_c_short] = ACTIONS(6138), + [anon_sym_c_ushort] = ACTIONS(6138), + [anon_sym_c_int] = ACTIONS(6138), + [anon_sym_c_uint] = ACTIONS(6138), + [anon_sym_c_long] = ACTIONS(6138), + [anon_sym_c_ulong] = ACTIONS(6138), + [anon_sym_c_longlong] = ACTIONS(6138), + [anon_sym_c_ulonglong] = ACTIONS(6138), + [anon_sym_c_float] = ACTIONS(6138), + [anon_sym_c_double] = ACTIONS(6138), + [anon_sym_c_longdouble] = ACTIONS(6138), + [anon_sym_PLUS_EQ] = ACTIONS(6136), + [anon_sym_DASH_EQ] = ACTIONS(6136), + [anon_sym_STAR_EQ] = ACTIONS(6136), + [anon_sym_SLASH_EQ] = ACTIONS(6136), + [anon_sym_AMP_EQ] = ACTIONS(6136), + [anon_sym_PIPE_EQ] = ACTIONS(6136), + [anon_sym_xor_EQ] = ACTIONS(6136), + [anon_sym_LT_LT_EQ] = ACTIONS(6136), + [anon_sym_GT_GT_EQ] = ACTIONS(6136), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6136), + [anon_sym_return] = ACTIONS(6138), + [anon_sym_yield] = ACTIONS(6138), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_break] = ACTIONS(6138), + [anon_sym_continue] = ACTIONS(6138), + [anon_sym_defer] = ACTIONS(6138), + [anon_sym_errdefer] = ACTIONS(6138), + [anon_sym_if] = ACTIONS(6138), + [anon_sym_else] = ACTIONS(6138), + [anon_sym_while] = ACTIONS(6138), + [anon_sym_expand] = ACTIONS(6138), + [anon_sym_for] = ACTIONS(6138), + [anon_sym_match] = ACTIONS(6138), + [anon_sym_DOT_DOT] = ACTIONS(6138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6136), + [anon_sym_orelse] = ACTIONS(6138), + [anon_sym_or] = ACTIONS(6138), + [anon_sym_and] = ACTIONS(6138), + [anon_sym_EQ_EQ] = ACTIONS(6136), + [anon_sym_BANG_EQ] = ACTIONS(6136), + [anon_sym_LT] = ACTIONS(6138), + [anon_sym_LT_EQ] = ACTIONS(6136), + [anon_sym_GT] = ACTIONS(6138), + [anon_sym_GT_EQ] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6138), + [anon_sym_xor] = ACTIONS(6138), + [anon_sym_LT_LT] = ACTIONS(6138), + [anon_sym_GT_GT] = ACTIONS(6138), + [anon_sym_LT_LT_PIPE] = ACTIONS(6138), + [anon_sym_PLUS] = ACTIONS(6138), + [anon_sym_SLASH] = ACTIONS(6138), + [anon_sym_catch] = ACTIONS(6138), + [anon_sym_TILDE] = ACTIONS(6136), + [anon_sym_try] = ACTIONS(6138), + [anon_sym_DOT] = ACTIONS(6138), + [anon_sym_CARET] = ACTIONS(6136), + [anon_sym_true] = ACTIONS(6138), + [anon_sym_false] = ACTIONS(6138), + [anon_sym_null] = ACTIONS(6138), + [anon_sym_unreachable] = ACTIONS(6138), + [anon_sym_undefined] = ACTIONS(6138), + [sym_sink] = ACTIONS(6138), + [sym_integer] = ACTIONS(6138), + [sym_float] = ACTIONS(6136), + [anon_sym_DQUOTE] = ACTIONS(6136), + [sym_multiline_string] = ACTIONS(6136), + [sym_character] = ACTIONS(6136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6136), + }, + [STATE(2714)] = { + [ts_builtin_sym_end] = ACTIONS(6140), + [sym_identifier] = ACTIONS(6142), + [anon_sym_import] = ACTIONS(6142), + [anon_sym_test] = ACTIONS(6142), + [anon_sym_hide] = ACTIONS(6142), + [anon_sym_func] = ACTIONS(6142), + [anon_sym_BANG] = ACTIONS(6142), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_struct] = ACTIONS(6142), + [anon_sym_LPAREN] = ACTIONS(6140), + [anon_sym_RPAREN] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(6140), + [anon_sym_COMMA] = ACTIONS(6140), + [anon_sym_RBRACE] = ACTIONS(6140), + [anon_sym_DASH] = ACTIONS(6142), + [anon_sym_DOLLAR] = ACTIONS(6140), + [anon_sym_PIPE] = ACTIONS(6142), + [anon_sym_QMARK] = ACTIONS(6140), + [anon_sym_STAR] = ACTIONS(6142), + [anon_sym_LBRACK] = ACTIONS(6140), + [anon_sym_SEMI] = ACTIONS(6140), + [anon_sym_RBRACK] = ACTIONS(6140), + [anon_sym_void] = ACTIONS(6142), + [anon_sym_noreturn] = ACTIONS(6142), + [anon_sym_type] = ACTIONS(6142), + [anon_sym_anyopaque] = ACTIONS(6142), + [anon_sym_bool] = ACTIONS(6142), + [anon_sym_int] = ACTIONS(6142), + [anon_sym_uint] = ACTIONS(6142), + [anon_sym_float] = ACTIONS(6142), + [anon_sym_range] = ACTIONS(6142), + [anon_sym_i8] = ACTIONS(6142), + [anon_sym_i16] = ACTIONS(6142), + [anon_sym_i32] = ACTIONS(6142), + [anon_sym_i64] = ACTIONS(6142), + [anon_sym_u8] = ACTIONS(6142), + [anon_sym_u16] = ACTIONS(6142), + [anon_sym_u32] = ACTIONS(6142), + [anon_sym_u64] = ACTIONS(6142), + [anon_sym_isize] = ACTIONS(6142), + [anon_sym_usize] = ACTIONS(6142), + [anon_sym_f32] = ACTIONS(6142), + [anon_sym_f64] = ACTIONS(6142), + [anon_sym_c_char] = ACTIONS(6142), + [anon_sym_c_schar] = ACTIONS(6142), + [anon_sym_c_uchar] = ACTIONS(6142), + [anon_sym_c_short] = ACTIONS(6142), + [anon_sym_c_ushort] = ACTIONS(6142), + [anon_sym_c_int] = ACTIONS(6142), + [anon_sym_c_uint] = ACTIONS(6142), + [anon_sym_c_long] = ACTIONS(6142), + [anon_sym_c_ulong] = ACTIONS(6142), + [anon_sym_c_longlong] = ACTIONS(6142), + [anon_sym_c_ulonglong] = ACTIONS(6142), + [anon_sym_c_float] = ACTIONS(6142), + [anon_sym_c_double] = ACTIONS(6142), + [anon_sym_c_longdouble] = ACTIONS(6142), + [anon_sym_PLUS_EQ] = ACTIONS(6140), + [anon_sym_DASH_EQ] = ACTIONS(6140), + [anon_sym_STAR_EQ] = ACTIONS(6140), + [anon_sym_SLASH_EQ] = ACTIONS(6140), + [anon_sym_AMP_EQ] = ACTIONS(6140), + [anon_sym_PIPE_EQ] = ACTIONS(6140), + [anon_sym_xor_EQ] = ACTIONS(6140), + [anon_sym_LT_LT_EQ] = ACTIONS(6140), + [anon_sym_GT_GT_EQ] = ACTIONS(6140), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6140), + [anon_sym_return] = ACTIONS(6142), + [anon_sym_yield] = ACTIONS(6142), + [anon_sym_COLON] = ACTIONS(6140), + [anon_sym_break] = ACTIONS(6142), + [anon_sym_continue] = ACTIONS(6142), + [anon_sym_defer] = ACTIONS(6142), + [anon_sym_errdefer] = ACTIONS(6142), + [anon_sym_if] = ACTIONS(6142), + [anon_sym_else] = ACTIONS(6142), + [anon_sym_while] = ACTIONS(6142), + [anon_sym_expand] = ACTIONS(6142), + [anon_sym_for] = ACTIONS(6142), + [anon_sym_match] = ACTIONS(6142), + [anon_sym_DOT_DOT] = ACTIONS(6142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6140), + [anon_sym_orelse] = ACTIONS(6142), + [anon_sym_or] = ACTIONS(6142), + [anon_sym_and] = ACTIONS(6142), + [anon_sym_EQ_EQ] = ACTIONS(6140), + [anon_sym_BANG_EQ] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(6142), + [anon_sym_LT_EQ] = ACTIONS(6140), + [anon_sym_GT] = ACTIONS(6142), + [anon_sym_GT_EQ] = ACTIONS(6140), + [anon_sym_AMP] = ACTIONS(6142), + [anon_sym_xor] = ACTIONS(6142), + [anon_sym_LT_LT] = ACTIONS(6142), + [anon_sym_GT_GT] = ACTIONS(6142), + [anon_sym_LT_LT_PIPE] = ACTIONS(6142), + [anon_sym_PLUS] = ACTIONS(6142), + [anon_sym_SLASH] = ACTIONS(6142), + [anon_sym_catch] = ACTIONS(6142), + [anon_sym_TILDE] = ACTIONS(6140), + [anon_sym_try] = ACTIONS(6142), + [anon_sym_DOT] = ACTIONS(6142), + [anon_sym_CARET] = ACTIONS(6140), + [anon_sym_true] = ACTIONS(6142), + [anon_sym_false] = ACTIONS(6142), + [anon_sym_null] = ACTIONS(6142), + [anon_sym_unreachable] = ACTIONS(6142), + [anon_sym_undefined] = ACTIONS(6142), + [sym_sink] = ACTIONS(6142), + [sym_integer] = ACTIONS(6142), + [sym_float] = ACTIONS(6140), + [anon_sym_DQUOTE] = ACTIONS(6140), + [sym_multiline_string] = ACTIONS(6140), + [sym_character] = ACTIONS(6140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6140), + }, + [STATE(2715)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2716), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6144), + }, + [STATE(2716)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2717)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2718), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6146), + }, + [STATE(2718)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2719)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2720), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6148), + }, + [STATE(2720)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(8886), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2387), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2393), + [anon_sym_errdefer] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2397), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2721)] = { + [ts_builtin_sym_end] = ACTIONS(6150), + [sym_identifier] = ACTIONS(6152), + [anon_sym_import] = ACTIONS(6152), + [anon_sym_test] = ACTIONS(6152), + [anon_sym_hide] = ACTIONS(6152), + [anon_sym_func] = ACTIONS(6152), + [anon_sym_BANG] = ACTIONS(6152), + [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_struct] = ACTIONS(6152), + [anon_sym_LPAREN] = ACTIONS(6150), + [anon_sym_RPAREN] = ACTIONS(6150), + [anon_sym_LBRACE] = ACTIONS(6150), + [anon_sym_COMMA] = ACTIONS(6150), + [anon_sym_RBRACE] = ACTIONS(6150), + [anon_sym_DASH] = ACTIONS(6152), + [anon_sym_DOLLAR] = ACTIONS(6150), + [anon_sym_PIPE] = ACTIONS(6152), + [anon_sym_QMARK] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(6150), + [anon_sym_SEMI] = ACTIONS(6150), + [anon_sym_RBRACK] = ACTIONS(6150), + [anon_sym_void] = ACTIONS(6152), + [anon_sym_noreturn] = ACTIONS(6152), + [anon_sym_type] = ACTIONS(6152), + [anon_sym_anyopaque] = ACTIONS(6152), + [anon_sym_bool] = ACTIONS(6152), + [anon_sym_int] = ACTIONS(6152), + [anon_sym_uint] = ACTIONS(6152), + [anon_sym_float] = ACTIONS(6152), + [anon_sym_range] = ACTIONS(6152), + [anon_sym_i8] = ACTIONS(6152), + [anon_sym_i16] = ACTIONS(6152), + [anon_sym_i32] = ACTIONS(6152), + [anon_sym_i64] = ACTIONS(6152), + [anon_sym_u8] = ACTIONS(6152), + [anon_sym_u16] = ACTIONS(6152), + [anon_sym_u32] = ACTIONS(6152), + [anon_sym_u64] = ACTIONS(6152), + [anon_sym_isize] = ACTIONS(6152), + [anon_sym_usize] = ACTIONS(6152), + [anon_sym_f32] = ACTIONS(6152), + [anon_sym_f64] = ACTIONS(6152), + [anon_sym_c_char] = ACTIONS(6152), + [anon_sym_c_schar] = ACTIONS(6152), + [anon_sym_c_uchar] = ACTIONS(6152), + [anon_sym_c_short] = ACTIONS(6152), + [anon_sym_c_ushort] = ACTIONS(6152), + [anon_sym_c_int] = ACTIONS(6152), + [anon_sym_c_uint] = ACTIONS(6152), + [anon_sym_c_long] = ACTIONS(6152), + [anon_sym_c_ulong] = ACTIONS(6152), + [anon_sym_c_longlong] = ACTIONS(6152), + [anon_sym_c_ulonglong] = ACTIONS(6152), + [anon_sym_c_float] = ACTIONS(6152), + [anon_sym_c_double] = ACTIONS(6152), + [anon_sym_c_longdouble] = ACTIONS(6152), + [anon_sym_PLUS_EQ] = ACTIONS(6150), + [anon_sym_DASH_EQ] = ACTIONS(6150), + [anon_sym_STAR_EQ] = ACTIONS(6150), + [anon_sym_SLASH_EQ] = ACTIONS(6150), + [anon_sym_AMP_EQ] = ACTIONS(6150), + [anon_sym_PIPE_EQ] = ACTIONS(6150), + [anon_sym_xor_EQ] = ACTIONS(6150), + [anon_sym_LT_LT_EQ] = ACTIONS(6150), + [anon_sym_GT_GT_EQ] = ACTIONS(6150), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6150), + [anon_sym_return] = ACTIONS(6152), + [anon_sym_yield] = ACTIONS(6152), + [anon_sym_COLON] = ACTIONS(6150), + [anon_sym_break] = ACTIONS(6152), + [anon_sym_continue] = ACTIONS(6152), + [anon_sym_defer] = ACTIONS(6152), + [anon_sym_errdefer] = ACTIONS(6152), + [anon_sym_if] = ACTIONS(6152), + [anon_sym_else] = ACTIONS(6152), + [anon_sym_while] = ACTIONS(6152), + [anon_sym_expand] = ACTIONS(6152), + [anon_sym_for] = ACTIONS(6152), + [anon_sym_match] = ACTIONS(6152), + [anon_sym_DOT_DOT] = ACTIONS(6152), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6150), + [anon_sym_orelse] = ACTIONS(6152), + [anon_sym_or] = ACTIONS(6152), + [anon_sym_and] = ACTIONS(6152), + [anon_sym_EQ_EQ] = ACTIONS(6150), + [anon_sym_BANG_EQ] = ACTIONS(6150), + [anon_sym_LT] = ACTIONS(6152), + [anon_sym_LT_EQ] = ACTIONS(6150), + [anon_sym_GT] = ACTIONS(6152), + [anon_sym_GT_EQ] = ACTIONS(6150), + [anon_sym_AMP] = ACTIONS(6152), + [anon_sym_xor] = ACTIONS(6152), + [anon_sym_LT_LT] = ACTIONS(6152), + [anon_sym_GT_GT] = ACTIONS(6152), + [anon_sym_LT_LT_PIPE] = ACTIONS(6152), + [anon_sym_PLUS] = ACTIONS(6152), + [anon_sym_SLASH] = ACTIONS(6152), + [anon_sym_catch] = ACTIONS(6152), + [anon_sym_TILDE] = ACTIONS(6150), + [anon_sym_try] = ACTIONS(6152), + [anon_sym_DOT] = ACTIONS(6152), + [anon_sym_CARET] = ACTIONS(6150), + [anon_sym_true] = ACTIONS(6152), + [anon_sym_false] = ACTIONS(6152), + [anon_sym_null] = ACTIONS(6152), + [anon_sym_unreachable] = ACTIONS(6152), + [anon_sym_undefined] = ACTIONS(6152), + [sym_sink] = ACTIONS(6152), + [sym_integer] = ACTIONS(6152), + [sym_float] = ACTIONS(6150), + [anon_sym_DQUOTE] = ACTIONS(6150), + [sym_multiline_string] = ACTIONS(6150), + [sym_character] = ACTIONS(6150), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6150), + }, + [STATE(2722)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10703), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2723), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6154), + }, + [STATE(2723)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10491), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2724)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10495), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2725), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6156), + }, + [STATE(2725)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10757), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2726)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10758), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2727), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6158), + }, + [STATE(2727)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(10673), + [sym_statement] = STATE(10706), + [sym_constant_declaration] = STATE(10673), + [sym_variable_declaration] = STATE(10673), + [sym_assignment_statement] = STATE(10673), + [sym_expression_statement] = STATE(10673), + [sym_return_statement] = STATE(10673), + [sym_yield_statement] = STATE(10673), + [sym_break_statement] = STATE(10673), + [sym_continue_statement] = STATE(10673), + [sym_defer_statement] = STATE(10673), + [sym_labeled_block] = STATE(10673), + [sym_if_statement] = STATE(10673), + [sym_while_statement] = STATE(10673), + [sym_for_statement] = STATE(10673), + [sym_match_statement] = STATE(10673), + [sym_expression] = STATE(9405), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2403), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(2409), + [anon_sym_errdefer] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2413), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2728)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6160), + }, + [STATE(2729)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2730)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9850), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2731), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6162), + }, + [STATE(2731)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9503), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2732)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9504), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2733), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6164), + }, + [STATE(2733)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9610), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9187), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2417), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_errdefer] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2427), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2734)] = { + [ts_builtin_sym_end] = ACTIONS(6166), + [sym_identifier] = ACTIONS(6168), + [anon_sym_import] = ACTIONS(6168), + [anon_sym_test] = ACTIONS(6168), + [anon_sym_hide] = ACTIONS(6168), + [anon_sym_func] = ACTIONS(6168), + [anon_sym_BANG] = ACTIONS(6168), + [anon_sym_EQ] = ACTIONS(6168), + [anon_sym_struct] = ACTIONS(6168), + [anon_sym_LPAREN] = ACTIONS(6166), + [anon_sym_RPAREN] = ACTIONS(6166), + [anon_sym_LBRACE] = ACTIONS(6166), + [anon_sym_COMMA] = ACTIONS(6166), + [anon_sym_RBRACE] = ACTIONS(6166), + [anon_sym_DASH] = ACTIONS(6168), + [anon_sym_DOLLAR] = ACTIONS(6166), + [anon_sym_PIPE] = ACTIONS(6168), + [anon_sym_QMARK] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(6168), + [anon_sym_LBRACK] = ACTIONS(6166), + [anon_sym_SEMI] = ACTIONS(6166), + [anon_sym_RBRACK] = ACTIONS(6166), + [anon_sym_void] = ACTIONS(6168), + [anon_sym_noreturn] = ACTIONS(6168), + [anon_sym_type] = ACTIONS(6168), + [anon_sym_anyopaque] = ACTIONS(6168), + [anon_sym_bool] = ACTIONS(6168), + [anon_sym_int] = ACTIONS(6168), + [anon_sym_uint] = ACTIONS(6168), + [anon_sym_float] = ACTIONS(6168), + [anon_sym_range] = ACTIONS(6168), + [anon_sym_i8] = ACTIONS(6168), + [anon_sym_i16] = ACTIONS(6168), + [anon_sym_i32] = ACTIONS(6168), + [anon_sym_i64] = ACTIONS(6168), + [anon_sym_u8] = ACTIONS(6168), + [anon_sym_u16] = ACTIONS(6168), + [anon_sym_u32] = ACTIONS(6168), + [anon_sym_u64] = ACTIONS(6168), + [anon_sym_isize] = ACTIONS(6168), + [anon_sym_usize] = ACTIONS(6168), + [anon_sym_f32] = ACTIONS(6168), + [anon_sym_f64] = ACTIONS(6168), + [anon_sym_c_char] = ACTIONS(6168), + [anon_sym_c_schar] = ACTIONS(6168), + [anon_sym_c_uchar] = ACTIONS(6168), + [anon_sym_c_short] = ACTIONS(6168), + [anon_sym_c_ushort] = ACTIONS(6168), + [anon_sym_c_int] = ACTIONS(6168), + [anon_sym_c_uint] = ACTIONS(6168), + [anon_sym_c_long] = ACTIONS(6168), + [anon_sym_c_ulong] = ACTIONS(6168), + [anon_sym_c_longlong] = ACTIONS(6168), + [anon_sym_c_ulonglong] = ACTIONS(6168), + [anon_sym_c_float] = ACTIONS(6168), + [anon_sym_c_double] = ACTIONS(6168), + [anon_sym_c_longdouble] = ACTIONS(6168), + [anon_sym_PLUS_EQ] = ACTIONS(6166), + [anon_sym_DASH_EQ] = ACTIONS(6166), + [anon_sym_STAR_EQ] = ACTIONS(6166), + [anon_sym_SLASH_EQ] = ACTIONS(6166), + [anon_sym_AMP_EQ] = ACTIONS(6166), + [anon_sym_PIPE_EQ] = ACTIONS(6166), + [anon_sym_xor_EQ] = ACTIONS(6166), + [anon_sym_LT_LT_EQ] = ACTIONS(6166), + [anon_sym_GT_GT_EQ] = ACTIONS(6166), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6166), + [anon_sym_return] = ACTIONS(6168), + [anon_sym_yield] = ACTIONS(6168), + [anon_sym_COLON] = ACTIONS(6166), + [anon_sym_break] = ACTIONS(6168), + [anon_sym_continue] = ACTIONS(6168), + [anon_sym_defer] = ACTIONS(6168), + [anon_sym_errdefer] = ACTIONS(6168), + [anon_sym_if] = ACTIONS(6168), + [anon_sym_else] = ACTIONS(6168), + [anon_sym_while] = ACTIONS(6168), + [anon_sym_expand] = ACTIONS(6168), + [anon_sym_for] = ACTIONS(6168), + [anon_sym_match] = ACTIONS(6168), + [anon_sym_DOT_DOT] = ACTIONS(6168), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6166), + [anon_sym_orelse] = ACTIONS(6168), + [anon_sym_or] = ACTIONS(6168), + [anon_sym_and] = ACTIONS(6168), + [anon_sym_EQ_EQ] = ACTIONS(6166), + [anon_sym_BANG_EQ] = ACTIONS(6166), + [anon_sym_LT] = ACTIONS(6168), + [anon_sym_LT_EQ] = ACTIONS(6166), + [anon_sym_GT] = ACTIONS(6168), + [anon_sym_GT_EQ] = ACTIONS(6166), + [anon_sym_AMP] = ACTIONS(6168), + [anon_sym_xor] = ACTIONS(6168), + [anon_sym_LT_LT] = ACTIONS(6168), + [anon_sym_GT_GT] = ACTIONS(6168), + [anon_sym_LT_LT_PIPE] = ACTIONS(6168), + [anon_sym_PLUS] = ACTIONS(6168), + [anon_sym_SLASH] = ACTIONS(6168), + [anon_sym_catch] = ACTIONS(6168), + [anon_sym_TILDE] = ACTIONS(6166), + [anon_sym_try] = ACTIONS(6168), + [anon_sym_DOT] = ACTIONS(6168), + [anon_sym_CARET] = ACTIONS(6166), + [anon_sym_true] = ACTIONS(6168), + [anon_sym_false] = ACTIONS(6168), + [anon_sym_null] = ACTIONS(6168), + [anon_sym_unreachable] = ACTIONS(6168), + [anon_sym_undefined] = ACTIONS(6168), + [sym_sink] = ACTIONS(6168), + [sym_integer] = ACTIONS(6168), + [sym_float] = ACTIONS(6166), + [anon_sym_DQUOTE] = ACTIONS(6166), + [sym_multiline_string] = ACTIONS(6166), + [sym_character] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6166), + }, + [STATE(2735)] = { + [ts_builtin_sym_end] = ACTIONS(6170), + [sym_identifier] = ACTIONS(6172), + [anon_sym_import] = ACTIONS(6172), + [anon_sym_test] = ACTIONS(6172), + [anon_sym_hide] = ACTIONS(6172), + [anon_sym_func] = ACTIONS(6172), + [anon_sym_BANG] = ACTIONS(6172), + [anon_sym_EQ] = ACTIONS(6172), + [anon_sym_struct] = ACTIONS(6172), + [anon_sym_LPAREN] = ACTIONS(6170), + [anon_sym_RPAREN] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(6170), + [anon_sym_COMMA] = ACTIONS(6170), + [anon_sym_RBRACE] = ACTIONS(6170), + [anon_sym_DASH] = ACTIONS(6172), + [anon_sym_DOLLAR] = ACTIONS(6170), + [anon_sym_PIPE] = ACTIONS(6172), + [anon_sym_QMARK] = ACTIONS(6170), + [anon_sym_STAR] = ACTIONS(6172), + [anon_sym_LBRACK] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(6170), + [anon_sym_RBRACK] = ACTIONS(6170), + [anon_sym_void] = ACTIONS(6172), + [anon_sym_noreturn] = ACTIONS(6172), + [anon_sym_type] = ACTIONS(6172), + [anon_sym_anyopaque] = ACTIONS(6172), + [anon_sym_bool] = ACTIONS(6172), + [anon_sym_int] = ACTIONS(6172), + [anon_sym_uint] = ACTIONS(6172), + [anon_sym_float] = ACTIONS(6172), + [anon_sym_range] = ACTIONS(6172), + [anon_sym_i8] = ACTIONS(6172), + [anon_sym_i16] = ACTIONS(6172), + [anon_sym_i32] = ACTIONS(6172), + [anon_sym_i64] = ACTIONS(6172), + [anon_sym_u8] = ACTIONS(6172), + [anon_sym_u16] = ACTIONS(6172), + [anon_sym_u32] = ACTIONS(6172), + [anon_sym_u64] = ACTIONS(6172), + [anon_sym_isize] = ACTIONS(6172), + [anon_sym_usize] = ACTIONS(6172), + [anon_sym_f32] = ACTIONS(6172), + [anon_sym_f64] = ACTIONS(6172), + [anon_sym_c_char] = ACTIONS(6172), + [anon_sym_c_schar] = ACTIONS(6172), + [anon_sym_c_uchar] = ACTIONS(6172), + [anon_sym_c_short] = ACTIONS(6172), + [anon_sym_c_ushort] = ACTIONS(6172), + [anon_sym_c_int] = ACTIONS(6172), + [anon_sym_c_uint] = ACTIONS(6172), + [anon_sym_c_long] = ACTIONS(6172), + [anon_sym_c_ulong] = ACTIONS(6172), + [anon_sym_c_longlong] = ACTIONS(6172), + [anon_sym_c_ulonglong] = ACTIONS(6172), + [anon_sym_c_float] = ACTIONS(6172), + [anon_sym_c_double] = ACTIONS(6172), + [anon_sym_c_longdouble] = ACTIONS(6172), + [anon_sym_PLUS_EQ] = ACTIONS(6170), + [anon_sym_DASH_EQ] = ACTIONS(6170), + [anon_sym_STAR_EQ] = ACTIONS(6170), + [anon_sym_SLASH_EQ] = ACTIONS(6170), + [anon_sym_AMP_EQ] = ACTIONS(6170), + [anon_sym_PIPE_EQ] = ACTIONS(6170), + [anon_sym_xor_EQ] = ACTIONS(6170), + [anon_sym_LT_LT_EQ] = ACTIONS(6170), + [anon_sym_GT_GT_EQ] = ACTIONS(6170), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6170), + [anon_sym_return] = ACTIONS(6172), + [anon_sym_yield] = ACTIONS(6172), + [anon_sym_COLON] = ACTIONS(6170), + [anon_sym_break] = ACTIONS(6172), + [anon_sym_continue] = ACTIONS(6172), + [anon_sym_defer] = ACTIONS(6172), + [anon_sym_errdefer] = ACTIONS(6172), + [anon_sym_if] = ACTIONS(6172), + [anon_sym_else] = ACTIONS(6172), + [anon_sym_while] = ACTIONS(6172), + [anon_sym_expand] = ACTIONS(6172), + [anon_sym_for] = ACTIONS(6172), + [anon_sym_match] = ACTIONS(6172), + [anon_sym_DOT_DOT] = ACTIONS(6172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6170), + [anon_sym_orelse] = ACTIONS(6172), + [anon_sym_or] = ACTIONS(6172), + [anon_sym_and] = ACTIONS(6172), + [anon_sym_EQ_EQ] = ACTIONS(6170), + [anon_sym_BANG_EQ] = ACTIONS(6170), + [anon_sym_LT] = ACTIONS(6172), + [anon_sym_LT_EQ] = ACTIONS(6170), + [anon_sym_GT] = ACTIONS(6172), + [anon_sym_GT_EQ] = ACTIONS(6170), + [anon_sym_AMP] = ACTIONS(6172), + [anon_sym_xor] = ACTIONS(6172), + [anon_sym_LT_LT] = ACTIONS(6172), + [anon_sym_GT_GT] = ACTIONS(6172), + [anon_sym_LT_LT_PIPE] = ACTIONS(6172), + [anon_sym_PLUS] = ACTIONS(6172), + [anon_sym_SLASH] = ACTIONS(6172), + [anon_sym_catch] = ACTIONS(6172), + [anon_sym_TILDE] = ACTIONS(6170), + [anon_sym_try] = ACTIONS(6172), + [anon_sym_DOT] = ACTIONS(6172), + [anon_sym_CARET] = ACTIONS(6170), + [anon_sym_true] = ACTIONS(6172), + [anon_sym_false] = ACTIONS(6172), + [anon_sym_null] = ACTIONS(6172), + [anon_sym_unreachable] = ACTIONS(6172), + [anon_sym_undefined] = ACTIONS(6172), + [sym_sink] = ACTIONS(6172), + [sym_integer] = ACTIONS(6172), + [sym_float] = ACTIONS(6170), + [anon_sym_DQUOTE] = ACTIONS(6170), + [sym_multiline_string] = ACTIONS(6170), + [sym_character] = ACTIONS(6170), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6170), + }, + [STATE(2736)] = { + [ts_builtin_sym_end] = ACTIONS(6174), + [sym_identifier] = ACTIONS(6176), + [anon_sym_import] = ACTIONS(6176), + [anon_sym_test] = ACTIONS(6176), + [anon_sym_hide] = ACTIONS(6176), + [anon_sym_func] = ACTIONS(6176), + [anon_sym_BANG] = ACTIONS(6176), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_struct] = ACTIONS(6176), + [anon_sym_LPAREN] = ACTIONS(6174), + [anon_sym_RPAREN] = ACTIONS(6174), + [anon_sym_LBRACE] = ACTIONS(6174), + [anon_sym_COMMA] = ACTIONS(6174), + [anon_sym_RBRACE] = ACTIONS(6174), + [anon_sym_DASH] = ACTIONS(6176), + [anon_sym_DOLLAR] = ACTIONS(6174), + [anon_sym_PIPE] = ACTIONS(6176), + [anon_sym_QMARK] = ACTIONS(6174), + [anon_sym_STAR] = ACTIONS(6176), + [anon_sym_LBRACK] = ACTIONS(6174), + [anon_sym_SEMI] = ACTIONS(6174), + [anon_sym_RBRACK] = ACTIONS(6174), + [anon_sym_void] = ACTIONS(6176), + [anon_sym_noreturn] = ACTIONS(6176), + [anon_sym_type] = ACTIONS(6176), + [anon_sym_anyopaque] = ACTIONS(6176), + [anon_sym_bool] = ACTIONS(6176), + [anon_sym_int] = ACTIONS(6176), + [anon_sym_uint] = ACTIONS(6176), + [anon_sym_float] = ACTIONS(6176), + [anon_sym_range] = ACTIONS(6176), + [anon_sym_i8] = ACTIONS(6176), + [anon_sym_i16] = ACTIONS(6176), + [anon_sym_i32] = ACTIONS(6176), + [anon_sym_i64] = ACTIONS(6176), + [anon_sym_u8] = ACTIONS(6176), + [anon_sym_u16] = ACTIONS(6176), + [anon_sym_u32] = ACTIONS(6176), + [anon_sym_u64] = ACTIONS(6176), + [anon_sym_isize] = ACTIONS(6176), + [anon_sym_usize] = ACTIONS(6176), + [anon_sym_f32] = ACTIONS(6176), + [anon_sym_f64] = ACTIONS(6176), + [anon_sym_c_char] = ACTIONS(6176), + [anon_sym_c_schar] = ACTIONS(6176), + [anon_sym_c_uchar] = ACTIONS(6176), + [anon_sym_c_short] = ACTIONS(6176), + [anon_sym_c_ushort] = ACTIONS(6176), + [anon_sym_c_int] = ACTIONS(6176), + [anon_sym_c_uint] = ACTIONS(6176), + [anon_sym_c_long] = ACTIONS(6176), + [anon_sym_c_ulong] = ACTIONS(6176), + [anon_sym_c_longlong] = ACTIONS(6176), + [anon_sym_c_ulonglong] = ACTIONS(6176), + [anon_sym_c_float] = ACTIONS(6176), + [anon_sym_c_double] = ACTIONS(6176), + [anon_sym_c_longdouble] = ACTIONS(6176), + [anon_sym_PLUS_EQ] = ACTIONS(6174), + [anon_sym_DASH_EQ] = ACTIONS(6174), + [anon_sym_STAR_EQ] = ACTIONS(6174), + [anon_sym_SLASH_EQ] = ACTIONS(6174), + [anon_sym_AMP_EQ] = ACTIONS(6174), + [anon_sym_PIPE_EQ] = ACTIONS(6174), + [anon_sym_xor_EQ] = ACTIONS(6174), + [anon_sym_LT_LT_EQ] = ACTIONS(6174), + [anon_sym_GT_GT_EQ] = ACTIONS(6174), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6174), + [anon_sym_return] = ACTIONS(6176), + [anon_sym_yield] = ACTIONS(6176), + [anon_sym_COLON] = ACTIONS(6174), + [anon_sym_break] = ACTIONS(6176), + [anon_sym_continue] = ACTIONS(6176), + [anon_sym_defer] = ACTIONS(6176), + [anon_sym_errdefer] = ACTIONS(6176), + [anon_sym_if] = ACTIONS(6176), + [anon_sym_else] = ACTIONS(6176), + [anon_sym_while] = ACTIONS(6176), + [anon_sym_expand] = ACTIONS(6176), + [anon_sym_for] = ACTIONS(6176), + [anon_sym_match] = ACTIONS(6176), + [anon_sym_DOT_DOT] = ACTIONS(6176), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6174), + [anon_sym_orelse] = ACTIONS(6176), + [anon_sym_or] = ACTIONS(6176), + [anon_sym_and] = ACTIONS(6176), + [anon_sym_EQ_EQ] = ACTIONS(6174), + [anon_sym_BANG_EQ] = ACTIONS(6174), + [anon_sym_LT] = ACTIONS(6176), + [anon_sym_LT_EQ] = ACTIONS(6174), + [anon_sym_GT] = ACTIONS(6176), + [anon_sym_GT_EQ] = ACTIONS(6174), + [anon_sym_AMP] = ACTIONS(6176), + [anon_sym_xor] = ACTIONS(6176), + [anon_sym_LT_LT] = ACTIONS(6176), + [anon_sym_GT_GT] = ACTIONS(6176), + [anon_sym_LT_LT_PIPE] = ACTIONS(6176), + [anon_sym_PLUS] = ACTIONS(6176), + [anon_sym_SLASH] = ACTIONS(6176), + [anon_sym_catch] = ACTIONS(6176), + [anon_sym_TILDE] = ACTIONS(6174), + [anon_sym_try] = ACTIONS(6176), + [anon_sym_DOT] = ACTIONS(6176), + [anon_sym_CARET] = ACTIONS(6174), + [anon_sym_true] = ACTIONS(6176), + [anon_sym_false] = ACTIONS(6176), + [anon_sym_null] = ACTIONS(6176), + [anon_sym_unreachable] = ACTIONS(6176), + [anon_sym_undefined] = ACTIONS(6176), + [sym_sink] = ACTIONS(6176), + [sym_integer] = ACTIONS(6176), + [sym_float] = ACTIONS(6174), + [anon_sym_DQUOTE] = ACTIONS(6174), + [sym_multiline_string] = ACTIONS(6174), + [sym_character] = ACTIONS(6174), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6174), + }, + [STATE(2737)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2738), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6178), + }, + [STATE(2738)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2739)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2740), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6180), + }, + [STATE(2740)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2741)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2742), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6182), + }, + [STATE(2742)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8796), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2433), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_errdefer] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2743)] = { + [ts_builtin_sym_end] = ACTIONS(6184), + [sym_identifier] = ACTIONS(6186), + [anon_sym_import] = ACTIONS(6186), + [anon_sym_test] = ACTIONS(6186), + [anon_sym_hide] = ACTIONS(6186), + [anon_sym_func] = ACTIONS(6186), + [anon_sym_BANG] = ACTIONS(6186), + [anon_sym_EQ] = ACTIONS(6186), + [anon_sym_struct] = ACTIONS(6186), + [anon_sym_LPAREN] = ACTIONS(6184), + [anon_sym_RPAREN] = ACTIONS(6184), + [anon_sym_LBRACE] = ACTIONS(6184), + [anon_sym_COMMA] = ACTIONS(6184), + [anon_sym_RBRACE] = ACTIONS(6184), + [anon_sym_DASH] = ACTIONS(6186), + [anon_sym_DOLLAR] = ACTIONS(6184), + [anon_sym_PIPE] = ACTIONS(6186), + [anon_sym_QMARK] = ACTIONS(6184), + [anon_sym_STAR] = ACTIONS(6186), + [anon_sym_LBRACK] = ACTIONS(6184), + [anon_sym_SEMI] = ACTIONS(6184), + [anon_sym_RBRACK] = ACTIONS(6184), + [anon_sym_void] = ACTIONS(6186), + [anon_sym_noreturn] = ACTIONS(6186), + [anon_sym_type] = ACTIONS(6186), + [anon_sym_anyopaque] = ACTIONS(6186), + [anon_sym_bool] = ACTIONS(6186), + [anon_sym_int] = ACTIONS(6186), + [anon_sym_uint] = ACTIONS(6186), + [anon_sym_float] = ACTIONS(6186), + [anon_sym_range] = ACTIONS(6186), + [anon_sym_i8] = ACTIONS(6186), + [anon_sym_i16] = ACTIONS(6186), + [anon_sym_i32] = ACTIONS(6186), + [anon_sym_i64] = ACTIONS(6186), + [anon_sym_u8] = ACTIONS(6186), + [anon_sym_u16] = ACTIONS(6186), + [anon_sym_u32] = ACTIONS(6186), + [anon_sym_u64] = ACTIONS(6186), + [anon_sym_isize] = ACTIONS(6186), + [anon_sym_usize] = ACTIONS(6186), + [anon_sym_f32] = ACTIONS(6186), + [anon_sym_f64] = ACTIONS(6186), + [anon_sym_c_char] = ACTIONS(6186), + [anon_sym_c_schar] = ACTIONS(6186), + [anon_sym_c_uchar] = ACTIONS(6186), + [anon_sym_c_short] = ACTIONS(6186), + [anon_sym_c_ushort] = ACTIONS(6186), + [anon_sym_c_int] = ACTIONS(6186), + [anon_sym_c_uint] = ACTIONS(6186), + [anon_sym_c_long] = ACTIONS(6186), + [anon_sym_c_ulong] = ACTIONS(6186), + [anon_sym_c_longlong] = ACTIONS(6186), + [anon_sym_c_ulonglong] = ACTIONS(6186), + [anon_sym_c_float] = ACTIONS(6186), + [anon_sym_c_double] = ACTIONS(6186), + [anon_sym_c_longdouble] = ACTIONS(6186), + [anon_sym_PLUS_EQ] = ACTIONS(6184), + [anon_sym_DASH_EQ] = ACTIONS(6184), + [anon_sym_STAR_EQ] = ACTIONS(6184), + [anon_sym_SLASH_EQ] = ACTIONS(6184), + [anon_sym_AMP_EQ] = ACTIONS(6184), + [anon_sym_PIPE_EQ] = ACTIONS(6184), + [anon_sym_xor_EQ] = ACTIONS(6184), + [anon_sym_LT_LT_EQ] = ACTIONS(6184), + [anon_sym_GT_GT_EQ] = ACTIONS(6184), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6184), + [anon_sym_return] = ACTIONS(6186), + [anon_sym_yield] = ACTIONS(6186), + [anon_sym_COLON] = ACTIONS(6184), + [anon_sym_break] = ACTIONS(6186), + [anon_sym_continue] = ACTIONS(6186), + [anon_sym_defer] = ACTIONS(6186), + [anon_sym_errdefer] = ACTIONS(6186), + [anon_sym_if] = ACTIONS(6186), + [anon_sym_else] = ACTIONS(6186), + [anon_sym_while] = ACTIONS(6186), + [anon_sym_expand] = ACTIONS(6186), + [anon_sym_for] = ACTIONS(6186), + [anon_sym_match] = ACTIONS(6186), + [anon_sym_DOT_DOT] = ACTIONS(6186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6184), + [anon_sym_orelse] = ACTIONS(6186), + [anon_sym_or] = ACTIONS(6186), + [anon_sym_and] = ACTIONS(6186), + [anon_sym_EQ_EQ] = ACTIONS(6184), + [anon_sym_BANG_EQ] = ACTIONS(6184), + [anon_sym_LT] = ACTIONS(6186), + [anon_sym_LT_EQ] = ACTIONS(6184), + [anon_sym_GT] = ACTIONS(6186), + [anon_sym_GT_EQ] = ACTIONS(6184), + [anon_sym_AMP] = ACTIONS(6186), + [anon_sym_xor] = ACTIONS(6186), + [anon_sym_LT_LT] = ACTIONS(6186), + [anon_sym_GT_GT] = ACTIONS(6186), + [anon_sym_LT_LT_PIPE] = ACTIONS(6186), + [anon_sym_PLUS] = ACTIONS(6186), + [anon_sym_SLASH] = ACTIONS(6186), + [anon_sym_catch] = ACTIONS(6186), + [anon_sym_TILDE] = ACTIONS(6184), + [anon_sym_try] = ACTIONS(6186), + [anon_sym_DOT] = ACTIONS(6186), + [anon_sym_CARET] = ACTIONS(6184), + [anon_sym_true] = ACTIONS(6186), + [anon_sym_false] = ACTIONS(6186), + [anon_sym_null] = ACTIONS(6186), + [anon_sym_unreachable] = ACTIONS(6186), + [anon_sym_undefined] = ACTIONS(6186), + [sym_sink] = ACTIONS(6186), + [sym_integer] = ACTIONS(6186), + [sym_float] = ACTIONS(6184), + [anon_sym_DQUOTE] = ACTIONS(6184), + [sym_multiline_string] = ACTIONS(6184), + [sym_character] = ACTIONS(6184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6184), + }, + [STATE(2744)] = { + [ts_builtin_sym_end] = ACTIONS(6188), + [sym_identifier] = ACTIONS(6190), + [anon_sym_import] = ACTIONS(6190), + [anon_sym_test] = ACTIONS(6190), + [anon_sym_hide] = ACTIONS(6190), + [anon_sym_func] = ACTIONS(6190), + [anon_sym_BANG] = ACTIONS(6190), + [anon_sym_EQ] = ACTIONS(6190), + [anon_sym_struct] = ACTIONS(6190), + [anon_sym_LPAREN] = ACTIONS(6188), + [anon_sym_RPAREN] = ACTIONS(6188), + [anon_sym_LBRACE] = ACTIONS(6188), + [anon_sym_COMMA] = ACTIONS(6188), + [anon_sym_RBRACE] = ACTIONS(6188), + [anon_sym_DASH] = ACTIONS(6190), + [anon_sym_DOLLAR] = ACTIONS(6188), + [anon_sym_PIPE] = ACTIONS(6190), + [anon_sym_QMARK] = ACTIONS(6188), + [anon_sym_STAR] = ACTIONS(6190), + [anon_sym_LBRACK] = ACTIONS(6188), + [anon_sym_SEMI] = ACTIONS(6188), + [anon_sym_RBRACK] = ACTIONS(6188), + [anon_sym_void] = ACTIONS(6190), + [anon_sym_noreturn] = ACTIONS(6190), + [anon_sym_type] = ACTIONS(6190), + [anon_sym_anyopaque] = ACTIONS(6190), + [anon_sym_bool] = ACTIONS(6190), + [anon_sym_int] = ACTIONS(6190), + [anon_sym_uint] = ACTIONS(6190), + [anon_sym_float] = ACTIONS(6190), + [anon_sym_range] = ACTIONS(6190), + [anon_sym_i8] = ACTIONS(6190), + [anon_sym_i16] = ACTIONS(6190), + [anon_sym_i32] = ACTIONS(6190), + [anon_sym_i64] = ACTIONS(6190), + [anon_sym_u8] = ACTIONS(6190), + [anon_sym_u16] = ACTIONS(6190), + [anon_sym_u32] = ACTIONS(6190), + [anon_sym_u64] = ACTIONS(6190), + [anon_sym_isize] = ACTIONS(6190), + [anon_sym_usize] = ACTIONS(6190), + [anon_sym_f32] = ACTIONS(6190), + [anon_sym_f64] = ACTIONS(6190), + [anon_sym_c_char] = ACTIONS(6190), + [anon_sym_c_schar] = ACTIONS(6190), + [anon_sym_c_uchar] = ACTIONS(6190), + [anon_sym_c_short] = ACTIONS(6190), + [anon_sym_c_ushort] = ACTIONS(6190), + [anon_sym_c_int] = ACTIONS(6190), + [anon_sym_c_uint] = ACTIONS(6190), + [anon_sym_c_long] = ACTIONS(6190), + [anon_sym_c_ulong] = ACTIONS(6190), + [anon_sym_c_longlong] = ACTIONS(6190), + [anon_sym_c_ulonglong] = ACTIONS(6190), + [anon_sym_c_float] = ACTIONS(6190), + [anon_sym_c_double] = ACTIONS(6190), + [anon_sym_c_longdouble] = ACTIONS(6190), + [anon_sym_PLUS_EQ] = ACTIONS(6188), + [anon_sym_DASH_EQ] = ACTIONS(6188), + [anon_sym_STAR_EQ] = ACTIONS(6188), + [anon_sym_SLASH_EQ] = ACTIONS(6188), + [anon_sym_AMP_EQ] = ACTIONS(6188), + [anon_sym_PIPE_EQ] = ACTIONS(6188), + [anon_sym_xor_EQ] = ACTIONS(6188), + [anon_sym_LT_LT_EQ] = ACTIONS(6188), + [anon_sym_GT_GT_EQ] = ACTIONS(6188), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6188), + [anon_sym_return] = ACTIONS(6190), + [anon_sym_yield] = ACTIONS(6190), + [anon_sym_COLON] = ACTIONS(6188), + [anon_sym_break] = ACTIONS(6190), + [anon_sym_continue] = ACTIONS(6190), + [anon_sym_defer] = ACTIONS(6190), + [anon_sym_errdefer] = ACTIONS(6190), + [anon_sym_if] = ACTIONS(6190), + [anon_sym_else] = ACTIONS(6190), + [anon_sym_while] = ACTIONS(6190), + [anon_sym_expand] = ACTIONS(6190), + [anon_sym_for] = ACTIONS(6190), + [anon_sym_match] = ACTIONS(6190), + [anon_sym_DOT_DOT] = ACTIONS(6190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6188), + [anon_sym_orelse] = ACTIONS(6190), + [anon_sym_or] = ACTIONS(6190), + [anon_sym_and] = ACTIONS(6190), + [anon_sym_EQ_EQ] = ACTIONS(6188), + [anon_sym_BANG_EQ] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(6190), + [anon_sym_LT_EQ] = ACTIONS(6188), + [anon_sym_GT] = ACTIONS(6190), + [anon_sym_GT_EQ] = ACTIONS(6188), + [anon_sym_AMP] = ACTIONS(6190), + [anon_sym_xor] = ACTIONS(6190), + [anon_sym_LT_LT] = ACTIONS(6190), + [anon_sym_GT_GT] = ACTIONS(6190), + [anon_sym_LT_LT_PIPE] = ACTIONS(6190), + [anon_sym_PLUS] = ACTIONS(6190), + [anon_sym_SLASH] = ACTIONS(6190), + [anon_sym_catch] = ACTIONS(6190), + [anon_sym_TILDE] = ACTIONS(6188), + [anon_sym_try] = ACTIONS(6190), + [anon_sym_DOT] = ACTIONS(6190), + [anon_sym_CARET] = ACTIONS(6188), + [anon_sym_true] = ACTIONS(6190), + [anon_sym_false] = ACTIONS(6190), + [anon_sym_null] = ACTIONS(6190), + [anon_sym_unreachable] = ACTIONS(6190), + [anon_sym_undefined] = ACTIONS(6190), + [sym_sink] = ACTIONS(6190), + [sym_integer] = ACTIONS(6190), + [sym_float] = ACTIONS(6188), + [anon_sym_DQUOTE] = ACTIONS(6188), + [sym_multiline_string] = ACTIONS(6188), + [sym_character] = ACTIONS(6188), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6188), + }, + [STATE(2745)] = { + [ts_builtin_sym_end] = ACTIONS(6192), + [sym_identifier] = ACTIONS(6194), + [anon_sym_import] = ACTIONS(6194), + [anon_sym_test] = ACTIONS(6194), + [anon_sym_hide] = ACTIONS(6194), + [anon_sym_func] = ACTIONS(6194), + [anon_sym_BANG] = ACTIONS(6194), + [anon_sym_EQ] = ACTIONS(6194), + [anon_sym_struct] = ACTIONS(6194), + [anon_sym_LPAREN] = ACTIONS(6192), + [anon_sym_RPAREN] = ACTIONS(6192), + [anon_sym_LBRACE] = ACTIONS(6192), + [anon_sym_COMMA] = ACTIONS(6192), + [anon_sym_RBRACE] = ACTIONS(6192), + [anon_sym_DASH] = ACTIONS(6194), + [anon_sym_DOLLAR] = ACTIONS(6192), + [anon_sym_PIPE] = ACTIONS(6194), + [anon_sym_QMARK] = ACTIONS(6192), + [anon_sym_STAR] = ACTIONS(6194), + [anon_sym_LBRACK] = ACTIONS(6192), + [anon_sym_SEMI] = ACTIONS(6192), + [anon_sym_RBRACK] = ACTIONS(6192), + [anon_sym_void] = ACTIONS(6194), + [anon_sym_noreturn] = ACTIONS(6194), + [anon_sym_type] = ACTIONS(6194), + [anon_sym_anyopaque] = ACTIONS(6194), + [anon_sym_bool] = ACTIONS(6194), + [anon_sym_int] = ACTIONS(6194), + [anon_sym_uint] = ACTIONS(6194), + [anon_sym_float] = ACTIONS(6194), + [anon_sym_range] = ACTIONS(6194), + [anon_sym_i8] = ACTIONS(6194), + [anon_sym_i16] = ACTIONS(6194), + [anon_sym_i32] = ACTIONS(6194), + [anon_sym_i64] = ACTIONS(6194), + [anon_sym_u8] = ACTIONS(6194), + [anon_sym_u16] = ACTIONS(6194), + [anon_sym_u32] = ACTIONS(6194), + [anon_sym_u64] = ACTIONS(6194), + [anon_sym_isize] = ACTIONS(6194), + [anon_sym_usize] = ACTIONS(6194), + [anon_sym_f32] = ACTIONS(6194), + [anon_sym_f64] = ACTIONS(6194), + [anon_sym_c_char] = ACTIONS(6194), + [anon_sym_c_schar] = ACTIONS(6194), + [anon_sym_c_uchar] = ACTIONS(6194), + [anon_sym_c_short] = ACTIONS(6194), + [anon_sym_c_ushort] = ACTIONS(6194), + [anon_sym_c_int] = ACTIONS(6194), + [anon_sym_c_uint] = ACTIONS(6194), + [anon_sym_c_long] = ACTIONS(6194), + [anon_sym_c_ulong] = ACTIONS(6194), + [anon_sym_c_longlong] = ACTIONS(6194), + [anon_sym_c_ulonglong] = ACTIONS(6194), + [anon_sym_c_float] = ACTIONS(6194), + [anon_sym_c_double] = ACTIONS(6194), + [anon_sym_c_longdouble] = ACTIONS(6194), + [anon_sym_PLUS_EQ] = ACTIONS(6192), + [anon_sym_DASH_EQ] = ACTIONS(6192), + [anon_sym_STAR_EQ] = ACTIONS(6192), + [anon_sym_SLASH_EQ] = ACTIONS(6192), + [anon_sym_AMP_EQ] = ACTIONS(6192), + [anon_sym_PIPE_EQ] = ACTIONS(6192), + [anon_sym_xor_EQ] = ACTIONS(6192), + [anon_sym_LT_LT_EQ] = ACTIONS(6192), + [anon_sym_GT_GT_EQ] = ACTIONS(6192), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6192), + [anon_sym_return] = ACTIONS(6194), + [anon_sym_yield] = ACTIONS(6194), + [anon_sym_COLON] = ACTIONS(6192), + [anon_sym_break] = ACTIONS(6194), + [anon_sym_continue] = ACTIONS(6194), + [anon_sym_defer] = ACTIONS(6194), + [anon_sym_errdefer] = ACTIONS(6194), + [anon_sym_if] = ACTIONS(6194), + [anon_sym_else] = ACTIONS(6194), + [anon_sym_while] = ACTIONS(6194), + [anon_sym_expand] = ACTIONS(6194), + [anon_sym_for] = ACTIONS(6194), + [anon_sym_match] = ACTIONS(6194), + [anon_sym_DOT_DOT] = ACTIONS(6194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6192), + [anon_sym_orelse] = ACTIONS(6194), + [anon_sym_or] = ACTIONS(6194), + [anon_sym_and] = ACTIONS(6194), + [anon_sym_EQ_EQ] = ACTIONS(6192), + [anon_sym_BANG_EQ] = ACTIONS(6192), + [anon_sym_LT] = ACTIONS(6194), + [anon_sym_LT_EQ] = ACTIONS(6192), + [anon_sym_GT] = ACTIONS(6194), + [anon_sym_GT_EQ] = ACTIONS(6192), + [anon_sym_AMP] = ACTIONS(6194), + [anon_sym_xor] = ACTIONS(6194), + [anon_sym_LT_LT] = ACTIONS(6194), + [anon_sym_GT_GT] = ACTIONS(6194), + [anon_sym_LT_LT_PIPE] = ACTIONS(6194), + [anon_sym_PLUS] = ACTIONS(6194), + [anon_sym_SLASH] = ACTIONS(6194), + [anon_sym_catch] = ACTIONS(6194), + [anon_sym_TILDE] = ACTIONS(6192), + [anon_sym_try] = ACTIONS(6194), + [anon_sym_DOT] = ACTIONS(6194), + [anon_sym_CARET] = ACTIONS(6192), + [anon_sym_true] = ACTIONS(6194), + [anon_sym_false] = ACTIONS(6194), + [anon_sym_null] = ACTIONS(6194), + [anon_sym_unreachable] = ACTIONS(6194), + [anon_sym_undefined] = ACTIONS(6194), + [sym_sink] = ACTIONS(6194), + [sym_integer] = ACTIONS(6194), + [sym_float] = ACTIONS(6192), + [anon_sym_DQUOTE] = ACTIONS(6192), + [sym_multiline_string] = ACTIONS(6192), + [sym_character] = ACTIONS(6192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6192), + }, + [STATE(2746)] = { + [ts_builtin_sym_end] = ACTIONS(6196), + [sym_identifier] = ACTIONS(6198), + [anon_sym_import] = ACTIONS(6198), + [anon_sym_test] = ACTIONS(6198), + [anon_sym_hide] = ACTIONS(6198), + [anon_sym_func] = ACTIONS(6198), + [anon_sym_BANG] = ACTIONS(6198), + [anon_sym_EQ] = ACTIONS(6198), + [anon_sym_struct] = ACTIONS(6198), + [anon_sym_LPAREN] = ACTIONS(6196), + [anon_sym_RPAREN] = ACTIONS(6196), + [anon_sym_LBRACE] = ACTIONS(6196), + [anon_sym_COMMA] = ACTIONS(6196), + [anon_sym_RBRACE] = ACTIONS(6196), + [anon_sym_DASH] = ACTIONS(6198), + [anon_sym_DOLLAR] = ACTIONS(6196), + [anon_sym_PIPE] = ACTIONS(6198), + [anon_sym_QMARK] = ACTIONS(6196), + [anon_sym_STAR] = ACTIONS(6198), + [anon_sym_LBRACK] = ACTIONS(6196), + [anon_sym_SEMI] = ACTIONS(6196), + [anon_sym_RBRACK] = ACTIONS(6196), + [anon_sym_void] = ACTIONS(6198), + [anon_sym_noreturn] = ACTIONS(6198), + [anon_sym_type] = ACTIONS(6198), + [anon_sym_anyopaque] = ACTIONS(6198), + [anon_sym_bool] = ACTIONS(6198), + [anon_sym_int] = ACTIONS(6198), + [anon_sym_uint] = ACTIONS(6198), + [anon_sym_float] = ACTIONS(6198), + [anon_sym_range] = ACTIONS(6198), + [anon_sym_i8] = ACTIONS(6198), + [anon_sym_i16] = ACTIONS(6198), + [anon_sym_i32] = ACTIONS(6198), + [anon_sym_i64] = ACTIONS(6198), + [anon_sym_u8] = ACTIONS(6198), + [anon_sym_u16] = ACTIONS(6198), + [anon_sym_u32] = ACTIONS(6198), + [anon_sym_u64] = ACTIONS(6198), + [anon_sym_isize] = ACTIONS(6198), + [anon_sym_usize] = ACTIONS(6198), + [anon_sym_f32] = ACTIONS(6198), + [anon_sym_f64] = ACTIONS(6198), + [anon_sym_c_char] = ACTIONS(6198), + [anon_sym_c_schar] = ACTIONS(6198), + [anon_sym_c_uchar] = ACTIONS(6198), + [anon_sym_c_short] = ACTIONS(6198), + [anon_sym_c_ushort] = ACTIONS(6198), + [anon_sym_c_int] = ACTIONS(6198), + [anon_sym_c_uint] = ACTIONS(6198), + [anon_sym_c_long] = ACTIONS(6198), + [anon_sym_c_ulong] = ACTIONS(6198), + [anon_sym_c_longlong] = ACTIONS(6198), + [anon_sym_c_ulonglong] = ACTIONS(6198), + [anon_sym_c_float] = ACTIONS(6198), + [anon_sym_c_double] = ACTIONS(6198), + [anon_sym_c_longdouble] = ACTIONS(6198), + [anon_sym_PLUS_EQ] = ACTIONS(6196), + [anon_sym_DASH_EQ] = ACTIONS(6196), + [anon_sym_STAR_EQ] = ACTIONS(6196), + [anon_sym_SLASH_EQ] = ACTIONS(6196), + [anon_sym_AMP_EQ] = ACTIONS(6196), + [anon_sym_PIPE_EQ] = ACTIONS(6196), + [anon_sym_xor_EQ] = ACTIONS(6196), + [anon_sym_LT_LT_EQ] = ACTIONS(6196), + [anon_sym_GT_GT_EQ] = ACTIONS(6196), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6196), + [anon_sym_return] = ACTIONS(6198), + [anon_sym_yield] = ACTIONS(6198), + [anon_sym_COLON] = ACTIONS(6196), + [anon_sym_break] = ACTIONS(6198), + [anon_sym_continue] = ACTIONS(6198), + [anon_sym_defer] = ACTIONS(6198), + [anon_sym_errdefer] = ACTIONS(6198), + [anon_sym_if] = ACTIONS(6198), + [anon_sym_else] = ACTIONS(6198), + [anon_sym_while] = ACTIONS(6198), + [anon_sym_expand] = ACTIONS(6198), + [anon_sym_for] = ACTIONS(6198), + [anon_sym_match] = ACTIONS(6198), + [anon_sym_DOT_DOT] = ACTIONS(6198), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6196), + [anon_sym_orelse] = ACTIONS(6198), + [anon_sym_or] = ACTIONS(6198), + [anon_sym_and] = ACTIONS(6198), + [anon_sym_EQ_EQ] = ACTIONS(6196), + [anon_sym_BANG_EQ] = ACTIONS(6196), + [anon_sym_LT] = ACTIONS(6198), + [anon_sym_LT_EQ] = ACTIONS(6196), + [anon_sym_GT] = ACTIONS(6198), + [anon_sym_GT_EQ] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6198), + [anon_sym_xor] = ACTIONS(6198), + [anon_sym_LT_LT] = ACTIONS(6198), + [anon_sym_GT_GT] = ACTIONS(6198), + [anon_sym_LT_LT_PIPE] = ACTIONS(6198), + [anon_sym_PLUS] = ACTIONS(6198), + [anon_sym_SLASH] = ACTIONS(6198), + [anon_sym_catch] = ACTIONS(6198), + [anon_sym_TILDE] = ACTIONS(6196), + [anon_sym_try] = ACTIONS(6198), + [anon_sym_DOT] = ACTIONS(6198), + [anon_sym_CARET] = ACTIONS(6196), + [anon_sym_true] = ACTIONS(6198), + [anon_sym_false] = ACTIONS(6198), + [anon_sym_null] = ACTIONS(6198), + [anon_sym_unreachable] = ACTIONS(6198), + [anon_sym_undefined] = ACTIONS(6198), + [sym_sink] = ACTIONS(6198), + [sym_integer] = ACTIONS(6198), + [sym_float] = ACTIONS(6196), + [anon_sym_DQUOTE] = ACTIONS(6196), + [sym_multiline_string] = ACTIONS(6196), + [sym_character] = ACTIONS(6196), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6196), + }, + [STATE(2747)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2748), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6200), + }, + [STATE(2748)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2749)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6202), + }, + [STATE(2750)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2751)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2752), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6204), + }, + [STATE(2752)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2447), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_errdefer] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2459), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2753)] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [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(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_RBRACK] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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(1198), + [anon_sym_DASH_EQ] = ACTIONS(1198), + [anon_sym_STAR_EQ] = ACTIONS(1198), + [anon_sym_SLASH_EQ] = ACTIONS(1198), + [anon_sym_AMP_EQ] = ACTIONS(1198), + [anon_sym_PIPE_EQ] = ACTIONS(1198), + [anon_sym_xor_EQ] = ACTIONS(1198), + [anon_sym_LT_LT_EQ] = ACTIONS(1198), + [anon_sym_GT_GT_EQ] = ACTIONS(1198), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1198), + [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(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(2754)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2755), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6206), + }, + [STATE(2755)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2756)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2757), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6208), + }, + [STATE(2757)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2758)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2759), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6210), + }, + [STATE(2759)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(9011), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_errdefer] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2760)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2761), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6212), + }, + [STATE(2761)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2762)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9850), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2763), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6214), + }, + [STATE(2763)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9503), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2764)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9504), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2765), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6216), + }, + [STATE(2765)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9610), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9009), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2479), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2485), + [anon_sym_errdefer] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2489), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2766)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6775), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2767), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6218), + }, + [STATE(2767)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6645), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2768)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6646), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2769), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6220), + }, + [STATE(2769)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2770)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2771), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6222), + }, + [STATE(2771)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6732), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(9287), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2493), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_errdefer] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2505), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2772)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2773), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6224), + }, + [STATE(2773)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2774)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8610), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2775), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6226), + }, + [STATE(2775)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8736), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2776)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8533), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2777), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6228), + }, + [STATE(2777)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8486), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(8804), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2509), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2515), + [anon_sym_errdefer] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2519), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2778)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7220), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2779), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6230), + }, + [STATE(2779)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7235), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2780)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7236), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2781), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6232), + }, + [STATE(2781)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7252), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2782)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7253), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2783), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6234), + }, + [STATE(2783)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(7212), + [sym_statement] = STATE(7278), + [sym_constant_declaration] = STATE(7212), + [sym_variable_declaration] = STATE(7212), + [sym_assignment_statement] = STATE(7212), + [sym_expression_statement] = STATE(7212), + [sym_return_statement] = STATE(7212), + [sym_yield_statement] = STATE(7212), + [sym_break_statement] = STATE(7212), + [sym_continue_statement] = STATE(7212), + [sym_defer_statement] = STATE(7212), + [sym_labeled_block] = STATE(7212), + [sym_if_statement] = STATE(7212), + [sym_while_statement] = STATE(7212), + [sym_for_statement] = STATE(7212), + [sym_match_statement] = STATE(7212), + [sym_expression] = STATE(6592), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2525), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(2531), + [anon_sym_errdefer] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2535), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2784)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4385), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2785), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6236), + }, + [STATE(2785)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4250), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2786)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4258), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2787), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6238), + }, + [STATE(2787)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4337), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2788)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4338), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2789), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6240), + }, + [STATE(2789)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(9025), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2541), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_errdefer] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2551), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2790)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6242), + }, + [STATE(2791)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2792)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2793), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6244), + }, + [STATE(2793)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2794)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2795), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6246), + }, + [STATE(2795)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8878), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2245), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(2255), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2796)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9084), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6248), + }, + [STATE(2797)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9096), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2798)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9097), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2799), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6250), + }, + [STATE(2799)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9116), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2800)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9117), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(2801), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6252), + }, + [STATE(2801)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9076), + [sym_statement] = STATE(9129), + [sym_constant_declaration] = STATE(9076), + [sym_variable_declaration] = STATE(9076), + [sym_assignment_statement] = STATE(9076), + [sym_expression_statement] = STATE(9076), + [sym_return_statement] = STATE(9076), + [sym_yield_statement] = STATE(9076), + [sym_break_statement] = STATE(9076), + [sym_continue_statement] = STATE(9076), + [sym_defer_statement] = STATE(9076), + [sym_labeled_block] = STATE(9076), + [sym_if_statement] = STATE(9076), + [sym_while_statement] = STATE(9076), + [sym_for_statement] = STATE(9076), + [sym_match_statement] = STATE(9076), + [sym_expression] = STATE(9411), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2569), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(727), + [anon_sym_defer] = ACTIONS(2575), + [anon_sym_errdefer] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(2579), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2802)] = { + [ts_builtin_sym_end] = ACTIONS(6254), + [sym_identifier] = ACTIONS(6256), + [anon_sym_import] = ACTIONS(6256), + [anon_sym_test] = ACTIONS(6256), + [anon_sym_hide] = ACTIONS(6256), + [anon_sym_func] = ACTIONS(6256), + [anon_sym_BANG] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6256), + [anon_sym_struct] = ACTIONS(6256), + [anon_sym_LPAREN] = ACTIONS(6254), + [anon_sym_RPAREN] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6254), + [anon_sym_COMMA] = ACTIONS(6254), + [anon_sym_RBRACE] = ACTIONS(6254), + [anon_sym_DASH] = ACTIONS(6256), + [anon_sym_DOLLAR] = ACTIONS(6254), + [anon_sym_PIPE] = ACTIONS(6256), + [anon_sym_QMARK] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_SEMI] = ACTIONS(6254), + [anon_sym_RBRACK] = ACTIONS(6254), + [anon_sym_void] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym_type] = ACTIONS(6256), + [anon_sym_anyopaque] = ACTIONS(6256), + [anon_sym_bool] = ACTIONS(6256), + [anon_sym_int] = ACTIONS(6256), + [anon_sym_uint] = ACTIONS(6256), + [anon_sym_float] = ACTIONS(6256), + [anon_sym_range] = ACTIONS(6256), + [anon_sym_i8] = ACTIONS(6256), + [anon_sym_i16] = ACTIONS(6256), + [anon_sym_i32] = ACTIONS(6256), + [anon_sym_i64] = ACTIONS(6256), + [anon_sym_u8] = ACTIONS(6256), + [anon_sym_u16] = ACTIONS(6256), + [anon_sym_u32] = ACTIONS(6256), + [anon_sym_u64] = ACTIONS(6256), + [anon_sym_isize] = ACTIONS(6256), + [anon_sym_usize] = ACTIONS(6256), + [anon_sym_f32] = ACTIONS(6256), + [anon_sym_f64] = ACTIONS(6256), + [anon_sym_c_char] = ACTIONS(6256), + [anon_sym_c_schar] = ACTIONS(6256), + [anon_sym_c_uchar] = ACTIONS(6256), + [anon_sym_c_short] = ACTIONS(6256), + [anon_sym_c_ushort] = ACTIONS(6256), + [anon_sym_c_int] = ACTIONS(6256), + [anon_sym_c_uint] = ACTIONS(6256), + [anon_sym_c_long] = ACTIONS(6256), + [anon_sym_c_ulong] = ACTIONS(6256), + [anon_sym_c_longlong] = ACTIONS(6256), + [anon_sym_c_ulonglong] = ACTIONS(6256), + [anon_sym_c_float] = ACTIONS(6256), + [anon_sym_c_double] = ACTIONS(6256), + [anon_sym_c_longdouble] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6254), + [anon_sym_DASH_EQ] = ACTIONS(6254), + [anon_sym_STAR_EQ] = ACTIONS(6254), + [anon_sym_SLASH_EQ] = ACTIONS(6254), + [anon_sym_AMP_EQ] = ACTIONS(6254), + [anon_sym_PIPE_EQ] = ACTIONS(6254), + [anon_sym_xor_EQ] = ACTIONS(6254), + [anon_sym_LT_LT_EQ] = ACTIONS(6254), + [anon_sym_GT_GT_EQ] = ACTIONS(6254), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6254), + [anon_sym_return] = ACTIONS(6256), + [anon_sym_yield] = ACTIONS(6256), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_break] = ACTIONS(6256), + [anon_sym_continue] = ACTIONS(6256), + [anon_sym_defer] = ACTIONS(6256), + [anon_sym_errdefer] = ACTIONS(6256), + [anon_sym_if] = ACTIONS(6256), + [anon_sym_else] = ACTIONS(6256), + [anon_sym_while] = ACTIONS(6256), + [anon_sym_expand] = ACTIONS(6256), + [anon_sym_for] = ACTIONS(6256), + [anon_sym_match] = ACTIONS(6256), + [anon_sym_DOT_DOT] = ACTIONS(6256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6254), + [anon_sym_orelse] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6256), + [anon_sym_and] = ACTIONS(6256), + [anon_sym_EQ_EQ] = ACTIONS(6254), + [anon_sym_BANG_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_GT] = ACTIONS(6256), + [anon_sym_GT_EQ] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6256), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6256), + [anon_sym_LT_LT_PIPE] = ACTIONS(6256), + [anon_sym_PLUS] = ACTIONS(6256), + [anon_sym_SLASH] = ACTIONS(6256), + [anon_sym_catch] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6254), + [anon_sym_try] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6256), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_true] = ACTIONS(6256), + [anon_sym_false] = ACTIONS(6256), + [anon_sym_null] = ACTIONS(6256), + [anon_sym_unreachable] = ACTIONS(6256), + [anon_sym_undefined] = ACTIONS(6256), + [sym_sink] = ACTIONS(6256), + [sym_integer] = ACTIONS(6256), + [sym_float] = ACTIONS(6254), + [anon_sym_DQUOTE] = ACTIONS(6254), + [sym_multiline_string] = ACTIONS(6254), + [sym_character] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6254), + }, + [STATE(2803)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2804), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6258), + }, + [STATE(2804)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2805)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8610), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2806), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6260), + }, + [STATE(2806)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8736), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2807)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8533), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2808), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6262), + }, + [STATE(2808)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8486), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9292), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2583), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2589), + [anon_sym_errdefer] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2593), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2809)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2160), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2811), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6264), + }, + [STATE(2810)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6664), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2811)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2171), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2812)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2172), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2822), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6266), + }, + [STATE(2813)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(6737), + [sym_statement] = STATE(6665), + [sym_constant_declaration] = STATE(6737), + [sym_variable_declaration] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_expression_statement] = STATE(6737), + [sym_return_statement] = STATE(6737), + [sym_yield_statement] = STATE(6737), + [sym_break_statement] = STATE(6737), + [sym_continue_statement] = STATE(6737), + [sym_defer_statement] = STATE(6737), + [sym_labeled_block] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym_while_statement] = STATE(6737), + [sym_for_statement] = STATE(6737), + [sym_match_statement] = STATE(6737), + [sym_expression] = STATE(3576), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2210), + [sym_identifier] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(1111), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6268), + }, + [STATE(2814)] = { + [ts_builtin_sym_end] = ACTIONS(6270), + [sym_identifier] = ACTIONS(6272), + [anon_sym_import] = ACTIONS(6272), + [anon_sym_test] = ACTIONS(6272), + [anon_sym_hide] = ACTIONS(6272), + [anon_sym_func] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6272), + [anon_sym_struct] = ACTIONS(6272), + [anon_sym_LPAREN] = ACTIONS(6270), + [anon_sym_RPAREN] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6270), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_DASH] = ACTIONS(6272), + [anon_sym_DOLLAR] = ACTIONS(6270), + [anon_sym_PIPE] = ACTIONS(6272), + [anon_sym_QMARK] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_SEMI] = ACTIONS(6270), + [anon_sym_RBRACK] = ACTIONS(6270), + [anon_sym_void] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym_type] = ACTIONS(6272), + [anon_sym_anyopaque] = ACTIONS(6272), + [anon_sym_bool] = ACTIONS(6272), + [anon_sym_int] = ACTIONS(6272), + [anon_sym_uint] = ACTIONS(6272), + [anon_sym_float] = ACTIONS(6272), + [anon_sym_range] = ACTIONS(6272), + [anon_sym_i8] = ACTIONS(6272), + [anon_sym_i16] = ACTIONS(6272), + [anon_sym_i32] = ACTIONS(6272), + [anon_sym_i64] = ACTIONS(6272), + [anon_sym_u8] = ACTIONS(6272), + [anon_sym_u16] = ACTIONS(6272), + [anon_sym_u32] = ACTIONS(6272), + [anon_sym_u64] = ACTIONS(6272), + [anon_sym_isize] = ACTIONS(6272), + [anon_sym_usize] = ACTIONS(6272), + [anon_sym_f32] = ACTIONS(6272), + [anon_sym_f64] = ACTIONS(6272), + [anon_sym_c_char] = ACTIONS(6272), + [anon_sym_c_schar] = ACTIONS(6272), + [anon_sym_c_uchar] = ACTIONS(6272), + [anon_sym_c_short] = ACTIONS(6272), + [anon_sym_c_ushort] = ACTIONS(6272), + [anon_sym_c_int] = ACTIONS(6272), + [anon_sym_c_uint] = ACTIONS(6272), + [anon_sym_c_long] = ACTIONS(6272), + [anon_sym_c_ulong] = ACTIONS(6272), + [anon_sym_c_longlong] = ACTIONS(6272), + [anon_sym_c_ulonglong] = ACTIONS(6272), + [anon_sym_c_float] = ACTIONS(6272), + [anon_sym_c_double] = ACTIONS(6272), + [anon_sym_c_longdouble] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6270), + [anon_sym_DASH_EQ] = ACTIONS(6270), + [anon_sym_STAR_EQ] = ACTIONS(6270), + [anon_sym_SLASH_EQ] = ACTIONS(6270), + [anon_sym_AMP_EQ] = ACTIONS(6270), + [anon_sym_PIPE_EQ] = ACTIONS(6270), + [anon_sym_xor_EQ] = ACTIONS(6270), + [anon_sym_LT_LT_EQ] = ACTIONS(6270), + [anon_sym_GT_GT_EQ] = ACTIONS(6270), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6270), + [anon_sym_return] = ACTIONS(6272), + [anon_sym_yield] = ACTIONS(6272), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_break] = ACTIONS(6272), + [anon_sym_continue] = ACTIONS(6272), + [anon_sym_defer] = ACTIONS(6272), + [anon_sym_errdefer] = ACTIONS(6272), + [anon_sym_if] = ACTIONS(6272), + [anon_sym_else] = ACTIONS(6272), + [anon_sym_while] = ACTIONS(6272), + [anon_sym_expand] = ACTIONS(6272), + [anon_sym_for] = ACTIONS(6272), + [anon_sym_match] = ACTIONS(6272), + [anon_sym_DOT_DOT] = ACTIONS(6272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6270), + [anon_sym_orelse] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6272), + [anon_sym_and] = ACTIONS(6272), + [anon_sym_EQ_EQ] = ACTIONS(6270), + [anon_sym_BANG_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_GT] = ACTIONS(6272), + [anon_sym_GT_EQ] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6272), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6272), + [anon_sym_LT_LT_PIPE] = ACTIONS(6272), + [anon_sym_PLUS] = ACTIONS(6272), + [anon_sym_SLASH] = ACTIONS(6272), + [anon_sym_catch] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6270), + [anon_sym_try] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6272), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_true] = ACTIONS(6272), + [anon_sym_false] = ACTIONS(6272), + [anon_sym_null] = ACTIONS(6272), + [anon_sym_unreachable] = ACTIONS(6272), + [anon_sym_undefined] = ACTIONS(6272), + [sym_sink] = ACTIONS(6272), + [sym_integer] = ACTIONS(6272), + [sym_float] = ACTIONS(6270), + [anon_sym_DQUOTE] = ACTIONS(6270), + [sym_multiline_string] = ACTIONS(6270), + [sym_character] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6270), + }, + [STATE(2815)] = { + [ts_builtin_sym_end] = ACTIONS(6274), + [sym_identifier] = ACTIONS(6276), + [anon_sym_import] = ACTIONS(6276), + [anon_sym_test] = ACTIONS(6276), + [anon_sym_hide] = ACTIONS(6276), + [anon_sym_func] = ACTIONS(6276), + [anon_sym_BANG] = ACTIONS(6276), + [anon_sym_EQ] = ACTIONS(6276), + [anon_sym_struct] = ACTIONS(6276), + [anon_sym_LPAREN] = ACTIONS(6274), + [anon_sym_RPAREN] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(6274), + [anon_sym_COMMA] = ACTIONS(6274), + [anon_sym_RBRACE] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6276), + [anon_sym_DOLLAR] = ACTIONS(6274), + [anon_sym_PIPE] = ACTIONS(6276), + [anon_sym_QMARK] = ACTIONS(6274), + [anon_sym_STAR] = ACTIONS(6276), + [anon_sym_LBRACK] = ACTIONS(6274), + [anon_sym_SEMI] = ACTIONS(6274), + [anon_sym_RBRACK] = ACTIONS(6274), + [anon_sym_void] = ACTIONS(6276), + [anon_sym_noreturn] = ACTIONS(6276), + [anon_sym_type] = ACTIONS(6276), + [anon_sym_anyopaque] = ACTIONS(6276), + [anon_sym_bool] = ACTIONS(6276), + [anon_sym_int] = ACTIONS(6276), + [anon_sym_uint] = ACTIONS(6276), + [anon_sym_float] = ACTIONS(6276), + [anon_sym_range] = ACTIONS(6276), + [anon_sym_i8] = ACTIONS(6276), + [anon_sym_i16] = ACTIONS(6276), + [anon_sym_i32] = ACTIONS(6276), + [anon_sym_i64] = ACTIONS(6276), + [anon_sym_u8] = ACTIONS(6276), + [anon_sym_u16] = ACTIONS(6276), + [anon_sym_u32] = ACTIONS(6276), + [anon_sym_u64] = ACTIONS(6276), + [anon_sym_isize] = ACTIONS(6276), + [anon_sym_usize] = ACTIONS(6276), + [anon_sym_f32] = ACTIONS(6276), + [anon_sym_f64] = ACTIONS(6276), + [anon_sym_c_char] = ACTIONS(6276), + [anon_sym_c_schar] = ACTIONS(6276), + [anon_sym_c_uchar] = ACTIONS(6276), + [anon_sym_c_short] = ACTIONS(6276), + [anon_sym_c_ushort] = ACTIONS(6276), + [anon_sym_c_int] = ACTIONS(6276), + [anon_sym_c_uint] = ACTIONS(6276), + [anon_sym_c_long] = ACTIONS(6276), + [anon_sym_c_ulong] = ACTIONS(6276), + [anon_sym_c_longlong] = ACTIONS(6276), + [anon_sym_c_ulonglong] = ACTIONS(6276), + [anon_sym_c_float] = ACTIONS(6276), + [anon_sym_c_double] = ACTIONS(6276), + [anon_sym_c_longdouble] = ACTIONS(6276), + [anon_sym_PLUS_EQ] = ACTIONS(6274), + [anon_sym_DASH_EQ] = ACTIONS(6274), + [anon_sym_STAR_EQ] = ACTIONS(6274), + [anon_sym_SLASH_EQ] = ACTIONS(6274), + [anon_sym_AMP_EQ] = ACTIONS(6274), + [anon_sym_PIPE_EQ] = ACTIONS(6274), + [anon_sym_xor_EQ] = ACTIONS(6274), + [anon_sym_LT_LT_EQ] = ACTIONS(6274), + [anon_sym_GT_GT_EQ] = ACTIONS(6274), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6274), + [anon_sym_return] = ACTIONS(6276), + [anon_sym_yield] = ACTIONS(6276), + [anon_sym_COLON] = ACTIONS(6274), + [anon_sym_break] = ACTIONS(6276), + [anon_sym_continue] = ACTIONS(6276), + [anon_sym_defer] = ACTIONS(6276), + [anon_sym_errdefer] = ACTIONS(6276), + [anon_sym_if] = ACTIONS(6276), + [anon_sym_else] = ACTIONS(6276), + [anon_sym_while] = ACTIONS(6276), + [anon_sym_expand] = ACTIONS(6276), + [anon_sym_for] = ACTIONS(6276), + [anon_sym_match] = ACTIONS(6276), + [anon_sym_DOT_DOT] = ACTIONS(6276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6274), + [anon_sym_orelse] = ACTIONS(6276), + [anon_sym_or] = ACTIONS(6276), + [anon_sym_and] = ACTIONS(6276), + [anon_sym_EQ_EQ] = ACTIONS(6274), + [anon_sym_BANG_EQ] = ACTIONS(6274), + [anon_sym_LT] = ACTIONS(6276), + [anon_sym_LT_EQ] = ACTIONS(6274), + [anon_sym_GT] = ACTIONS(6276), + [anon_sym_GT_EQ] = ACTIONS(6274), + [anon_sym_AMP] = ACTIONS(6276), + [anon_sym_xor] = ACTIONS(6276), + [anon_sym_LT_LT] = ACTIONS(6276), + [anon_sym_GT_GT] = ACTIONS(6276), + [anon_sym_LT_LT_PIPE] = ACTIONS(6276), + [anon_sym_PLUS] = ACTIONS(6276), + [anon_sym_SLASH] = ACTIONS(6276), + [anon_sym_catch] = ACTIONS(6276), + [anon_sym_TILDE] = ACTIONS(6274), + [anon_sym_try] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(6276), + [anon_sym_CARET] = ACTIONS(6274), + [anon_sym_true] = ACTIONS(6276), + [anon_sym_false] = ACTIONS(6276), + [anon_sym_null] = ACTIONS(6276), + [anon_sym_unreachable] = ACTIONS(6276), + [anon_sym_undefined] = ACTIONS(6276), + [sym_sink] = ACTIONS(6276), + [sym_integer] = ACTIONS(6276), + [sym_float] = ACTIONS(6274), + [anon_sym_DQUOTE] = ACTIONS(6274), + [sym_multiline_string] = ACTIONS(6274), + [sym_character] = ACTIONS(6274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6274), + }, + [STATE(2816)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2817), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6278), + }, + [STATE(2817)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2818)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8610), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2819), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6280), + }, + [STATE(2819)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8736), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2820)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8533), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2821), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6282), + }, + [STATE(2821)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8486), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9023), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2603), + [anon_sym_errdefer] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2607), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2822)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2188), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2823)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2189), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(2833), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6284), + }, + [STATE(2824)] = { + [ts_builtin_sym_end] = ACTIONS(6286), + [sym_identifier] = ACTIONS(6288), + [anon_sym_import] = ACTIONS(6288), + [anon_sym_test] = ACTIONS(6288), + [anon_sym_hide] = ACTIONS(6288), + [anon_sym_func] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(6288), + [anon_sym_EQ] = ACTIONS(6288), + [anon_sym_struct] = ACTIONS(6288), + [anon_sym_LPAREN] = ACTIONS(6286), + [anon_sym_RPAREN] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(6286), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6288), + [anon_sym_DOLLAR] = ACTIONS(6286), + [anon_sym_PIPE] = ACTIONS(6288), + [anon_sym_QMARK] = ACTIONS(6286), + [anon_sym_STAR] = ACTIONS(6288), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_SEMI] = ACTIONS(6286), + [anon_sym_RBRACK] = ACTIONS(6286), + [anon_sym_void] = ACTIONS(6288), + [anon_sym_noreturn] = ACTIONS(6288), + [anon_sym_type] = ACTIONS(6288), + [anon_sym_anyopaque] = ACTIONS(6288), + [anon_sym_bool] = ACTIONS(6288), + [anon_sym_int] = ACTIONS(6288), + [anon_sym_uint] = ACTIONS(6288), + [anon_sym_float] = ACTIONS(6288), + [anon_sym_range] = ACTIONS(6288), + [anon_sym_i8] = ACTIONS(6288), + [anon_sym_i16] = ACTIONS(6288), + [anon_sym_i32] = ACTIONS(6288), + [anon_sym_i64] = ACTIONS(6288), + [anon_sym_u8] = ACTIONS(6288), + [anon_sym_u16] = ACTIONS(6288), + [anon_sym_u32] = ACTIONS(6288), + [anon_sym_u64] = ACTIONS(6288), + [anon_sym_isize] = ACTIONS(6288), + [anon_sym_usize] = ACTIONS(6288), + [anon_sym_f32] = ACTIONS(6288), + [anon_sym_f64] = ACTIONS(6288), + [anon_sym_c_char] = ACTIONS(6288), + [anon_sym_c_schar] = ACTIONS(6288), + [anon_sym_c_uchar] = ACTIONS(6288), + [anon_sym_c_short] = ACTIONS(6288), + [anon_sym_c_ushort] = ACTIONS(6288), + [anon_sym_c_int] = ACTIONS(6288), + [anon_sym_c_uint] = ACTIONS(6288), + [anon_sym_c_long] = ACTIONS(6288), + [anon_sym_c_ulong] = ACTIONS(6288), + [anon_sym_c_longlong] = ACTIONS(6288), + [anon_sym_c_ulonglong] = ACTIONS(6288), + [anon_sym_c_float] = ACTIONS(6288), + [anon_sym_c_double] = ACTIONS(6288), + [anon_sym_c_longdouble] = ACTIONS(6288), + [anon_sym_PLUS_EQ] = ACTIONS(6286), + [anon_sym_DASH_EQ] = ACTIONS(6286), + [anon_sym_STAR_EQ] = ACTIONS(6286), + [anon_sym_SLASH_EQ] = ACTIONS(6286), + [anon_sym_AMP_EQ] = ACTIONS(6286), + [anon_sym_PIPE_EQ] = ACTIONS(6286), + [anon_sym_xor_EQ] = ACTIONS(6286), + [anon_sym_LT_LT_EQ] = ACTIONS(6286), + [anon_sym_GT_GT_EQ] = ACTIONS(6286), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6286), + [anon_sym_return] = ACTIONS(6288), + [anon_sym_yield] = ACTIONS(6288), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_break] = ACTIONS(6288), + [anon_sym_continue] = ACTIONS(6288), + [anon_sym_defer] = ACTIONS(6288), + [anon_sym_errdefer] = ACTIONS(6288), + [anon_sym_if] = ACTIONS(6288), + [anon_sym_else] = ACTIONS(6288), + [anon_sym_while] = ACTIONS(6288), + [anon_sym_expand] = ACTIONS(6288), + [anon_sym_for] = ACTIONS(6288), + [anon_sym_match] = ACTIONS(6288), + [anon_sym_DOT_DOT] = ACTIONS(6288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6286), + [anon_sym_orelse] = ACTIONS(6288), + [anon_sym_or] = ACTIONS(6288), + [anon_sym_and] = ACTIONS(6288), + [anon_sym_EQ_EQ] = ACTIONS(6286), + [anon_sym_BANG_EQ] = ACTIONS(6286), + [anon_sym_LT] = ACTIONS(6288), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6288), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_AMP] = ACTIONS(6288), + [anon_sym_xor] = ACTIONS(6288), + [anon_sym_LT_LT] = ACTIONS(6288), + [anon_sym_GT_GT] = ACTIONS(6288), + [anon_sym_LT_LT_PIPE] = ACTIONS(6288), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_SLASH] = ACTIONS(6288), + [anon_sym_catch] = ACTIONS(6288), + [anon_sym_TILDE] = ACTIONS(6286), + [anon_sym_try] = ACTIONS(6288), + [anon_sym_DOT] = ACTIONS(6288), + [anon_sym_CARET] = ACTIONS(6286), + [anon_sym_true] = ACTIONS(6288), + [anon_sym_false] = ACTIONS(6288), + [anon_sym_null] = ACTIONS(6288), + [anon_sym_unreachable] = ACTIONS(6288), + [anon_sym_undefined] = ACTIONS(6288), + [sym_sink] = ACTIONS(6288), + [sym_integer] = ACTIONS(6288), + [sym_float] = ACTIONS(6286), + [anon_sym_DQUOTE] = ACTIONS(6286), + [sym_multiline_string] = ACTIONS(6286), + [sym_character] = ACTIONS(6286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6286), + }, + [STATE(2825)] = { + [ts_builtin_sym_end] = ACTIONS(6290), + [sym_identifier] = ACTIONS(6292), + [anon_sym_import] = ACTIONS(6292), + [anon_sym_test] = ACTIONS(6292), + [anon_sym_hide] = ACTIONS(6292), + [anon_sym_func] = ACTIONS(6292), + [anon_sym_BANG] = ACTIONS(6292), + [anon_sym_EQ] = ACTIONS(6292), + [anon_sym_struct] = ACTIONS(6292), + [anon_sym_LPAREN] = ACTIONS(6290), + [anon_sym_RPAREN] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(6290), + [anon_sym_COMMA] = ACTIONS(6290), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_DASH] = ACTIONS(6292), + [anon_sym_DOLLAR] = ACTIONS(6290), + [anon_sym_PIPE] = ACTIONS(6292), + [anon_sym_QMARK] = ACTIONS(6290), + [anon_sym_STAR] = ACTIONS(6292), + [anon_sym_LBRACK] = ACTIONS(6290), + [anon_sym_SEMI] = ACTIONS(6290), + [anon_sym_RBRACK] = ACTIONS(6290), + [anon_sym_void] = ACTIONS(6292), + [anon_sym_noreturn] = ACTIONS(6292), + [anon_sym_type] = ACTIONS(6292), + [anon_sym_anyopaque] = ACTIONS(6292), + [anon_sym_bool] = ACTIONS(6292), + [anon_sym_int] = ACTIONS(6292), + [anon_sym_uint] = ACTIONS(6292), + [anon_sym_float] = ACTIONS(6292), + [anon_sym_range] = ACTIONS(6292), + [anon_sym_i8] = ACTIONS(6292), + [anon_sym_i16] = ACTIONS(6292), + [anon_sym_i32] = ACTIONS(6292), + [anon_sym_i64] = ACTIONS(6292), + [anon_sym_u8] = ACTIONS(6292), + [anon_sym_u16] = ACTIONS(6292), + [anon_sym_u32] = ACTIONS(6292), + [anon_sym_u64] = ACTIONS(6292), + [anon_sym_isize] = ACTIONS(6292), + [anon_sym_usize] = ACTIONS(6292), + [anon_sym_f32] = ACTIONS(6292), + [anon_sym_f64] = ACTIONS(6292), + [anon_sym_c_char] = ACTIONS(6292), + [anon_sym_c_schar] = ACTIONS(6292), + [anon_sym_c_uchar] = ACTIONS(6292), + [anon_sym_c_short] = ACTIONS(6292), + [anon_sym_c_ushort] = ACTIONS(6292), + [anon_sym_c_int] = ACTIONS(6292), + [anon_sym_c_uint] = ACTIONS(6292), + [anon_sym_c_long] = ACTIONS(6292), + [anon_sym_c_ulong] = ACTIONS(6292), + [anon_sym_c_longlong] = ACTIONS(6292), + [anon_sym_c_ulonglong] = ACTIONS(6292), + [anon_sym_c_float] = ACTIONS(6292), + [anon_sym_c_double] = ACTIONS(6292), + [anon_sym_c_longdouble] = ACTIONS(6292), + [anon_sym_PLUS_EQ] = ACTIONS(6290), + [anon_sym_DASH_EQ] = ACTIONS(6290), + [anon_sym_STAR_EQ] = ACTIONS(6290), + [anon_sym_SLASH_EQ] = ACTIONS(6290), + [anon_sym_AMP_EQ] = ACTIONS(6290), + [anon_sym_PIPE_EQ] = ACTIONS(6290), + [anon_sym_xor_EQ] = ACTIONS(6290), + [anon_sym_LT_LT_EQ] = ACTIONS(6290), + [anon_sym_GT_GT_EQ] = ACTIONS(6290), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6290), + [anon_sym_return] = ACTIONS(6292), + [anon_sym_yield] = ACTIONS(6292), + [anon_sym_COLON] = ACTIONS(6290), + [anon_sym_break] = ACTIONS(6292), + [anon_sym_continue] = ACTIONS(6292), + [anon_sym_defer] = ACTIONS(6292), + [anon_sym_errdefer] = ACTIONS(6292), + [anon_sym_if] = ACTIONS(6292), + [anon_sym_else] = ACTIONS(6292), + [anon_sym_while] = ACTIONS(6292), + [anon_sym_expand] = ACTIONS(6292), + [anon_sym_for] = ACTIONS(6292), + [anon_sym_match] = ACTIONS(6292), + [anon_sym_DOT_DOT] = ACTIONS(6292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6290), + [anon_sym_orelse] = ACTIONS(6292), + [anon_sym_or] = ACTIONS(6292), + [anon_sym_and] = ACTIONS(6292), + [anon_sym_EQ_EQ] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6290), + [anon_sym_LT] = ACTIONS(6292), + [anon_sym_LT_EQ] = ACTIONS(6290), + [anon_sym_GT] = ACTIONS(6292), + [anon_sym_GT_EQ] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [anon_sym_xor] = ACTIONS(6292), + [anon_sym_LT_LT] = ACTIONS(6292), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_LT_LT_PIPE] = ACTIONS(6292), + [anon_sym_PLUS] = ACTIONS(6292), + [anon_sym_SLASH] = ACTIONS(6292), + [anon_sym_catch] = ACTIONS(6292), + [anon_sym_TILDE] = ACTIONS(6290), + [anon_sym_try] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_CARET] = ACTIONS(6290), + [anon_sym_true] = ACTIONS(6292), + [anon_sym_false] = ACTIONS(6292), + [anon_sym_null] = ACTIONS(6292), + [anon_sym_unreachable] = ACTIONS(6292), + [anon_sym_undefined] = ACTIONS(6292), + [sym_sink] = ACTIONS(6292), + [sym_integer] = ACTIONS(6292), + [sym_float] = ACTIONS(6290), + [anon_sym_DQUOTE] = ACTIONS(6290), + [sym_multiline_string] = ACTIONS(6290), + [sym_character] = ACTIONS(6290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6290), + }, + [STATE(2826)] = { + [ts_builtin_sym_end] = ACTIONS(6294), + [sym_identifier] = ACTIONS(6296), + [anon_sym_import] = ACTIONS(6296), + [anon_sym_test] = ACTIONS(6296), + [anon_sym_hide] = ACTIONS(6296), + [anon_sym_func] = ACTIONS(6296), + [anon_sym_BANG] = ACTIONS(6296), + [anon_sym_EQ] = ACTIONS(6296), + [anon_sym_struct] = ACTIONS(6296), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_RPAREN] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_COMMA] = ACTIONS(6294), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6296), + [anon_sym_DOLLAR] = ACTIONS(6294), + [anon_sym_PIPE] = ACTIONS(6296), + [anon_sym_QMARK] = ACTIONS(6294), + [anon_sym_STAR] = ACTIONS(6296), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_SEMI] = ACTIONS(6294), + [anon_sym_RBRACK] = ACTIONS(6294), + [anon_sym_void] = ACTIONS(6296), + [anon_sym_noreturn] = ACTIONS(6296), + [anon_sym_type] = ACTIONS(6296), + [anon_sym_anyopaque] = ACTIONS(6296), + [anon_sym_bool] = ACTIONS(6296), + [anon_sym_int] = ACTIONS(6296), + [anon_sym_uint] = ACTIONS(6296), + [anon_sym_float] = ACTIONS(6296), + [anon_sym_range] = ACTIONS(6296), + [anon_sym_i8] = ACTIONS(6296), + [anon_sym_i16] = ACTIONS(6296), + [anon_sym_i32] = ACTIONS(6296), + [anon_sym_i64] = ACTIONS(6296), + [anon_sym_u8] = ACTIONS(6296), + [anon_sym_u16] = ACTIONS(6296), + [anon_sym_u32] = ACTIONS(6296), + [anon_sym_u64] = ACTIONS(6296), + [anon_sym_isize] = ACTIONS(6296), + [anon_sym_usize] = ACTIONS(6296), + [anon_sym_f32] = ACTIONS(6296), + [anon_sym_f64] = ACTIONS(6296), + [anon_sym_c_char] = ACTIONS(6296), + [anon_sym_c_schar] = ACTIONS(6296), + [anon_sym_c_uchar] = ACTIONS(6296), + [anon_sym_c_short] = ACTIONS(6296), + [anon_sym_c_ushort] = ACTIONS(6296), + [anon_sym_c_int] = ACTIONS(6296), + [anon_sym_c_uint] = ACTIONS(6296), + [anon_sym_c_long] = ACTIONS(6296), + [anon_sym_c_ulong] = ACTIONS(6296), + [anon_sym_c_longlong] = ACTIONS(6296), + [anon_sym_c_ulonglong] = ACTIONS(6296), + [anon_sym_c_float] = ACTIONS(6296), + [anon_sym_c_double] = ACTIONS(6296), + [anon_sym_c_longdouble] = ACTIONS(6296), + [anon_sym_PLUS_EQ] = ACTIONS(6294), + [anon_sym_DASH_EQ] = ACTIONS(6294), + [anon_sym_STAR_EQ] = ACTIONS(6294), + [anon_sym_SLASH_EQ] = ACTIONS(6294), + [anon_sym_AMP_EQ] = ACTIONS(6294), + [anon_sym_PIPE_EQ] = ACTIONS(6294), + [anon_sym_xor_EQ] = ACTIONS(6294), + [anon_sym_LT_LT_EQ] = ACTIONS(6294), + [anon_sym_GT_GT_EQ] = ACTIONS(6294), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6294), + [anon_sym_return] = ACTIONS(6296), + [anon_sym_yield] = ACTIONS(6296), + [anon_sym_COLON] = ACTIONS(6294), + [anon_sym_break] = ACTIONS(6296), + [anon_sym_continue] = ACTIONS(6296), + [anon_sym_defer] = ACTIONS(6296), + [anon_sym_errdefer] = ACTIONS(6296), + [anon_sym_if] = ACTIONS(6296), + [anon_sym_else] = ACTIONS(6296), + [anon_sym_while] = ACTIONS(6296), + [anon_sym_expand] = ACTIONS(6296), + [anon_sym_for] = ACTIONS(6296), + [anon_sym_match] = ACTIONS(6296), + [anon_sym_DOT_DOT] = ACTIONS(6296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_orelse] = ACTIONS(6296), + [anon_sym_or] = ACTIONS(6296), + [anon_sym_and] = ACTIONS(6296), + [anon_sym_EQ_EQ] = ACTIONS(6294), + [anon_sym_BANG_EQ] = ACTIONS(6294), + [anon_sym_LT] = ACTIONS(6296), + [anon_sym_LT_EQ] = ACTIONS(6294), + [anon_sym_GT] = ACTIONS(6296), + [anon_sym_GT_EQ] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_xor] = ACTIONS(6296), + [anon_sym_LT_LT] = ACTIONS(6296), + [anon_sym_GT_GT] = ACTIONS(6296), + [anon_sym_LT_LT_PIPE] = ACTIONS(6296), + [anon_sym_PLUS] = ACTIONS(6296), + [anon_sym_SLASH] = ACTIONS(6296), + [anon_sym_catch] = ACTIONS(6296), + [anon_sym_TILDE] = ACTIONS(6294), + [anon_sym_try] = ACTIONS(6296), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6294), + [anon_sym_true] = ACTIONS(6296), + [anon_sym_false] = ACTIONS(6296), + [anon_sym_null] = ACTIONS(6296), + [anon_sym_unreachable] = ACTIONS(6296), + [anon_sym_undefined] = ACTIONS(6296), + [sym_sink] = ACTIONS(6296), + [sym_integer] = ACTIONS(6296), + [sym_float] = ACTIONS(6294), + [anon_sym_DQUOTE] = ACTIONS(6294), + [sym_multiline_string] = ACTIONS(6294), + [sym_character] = ACTIONS(6294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6294), + }, + [STATE(2827)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3252), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6298), + }, + [STATE(2828)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3263), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2829)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3264), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2830), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6300), + }, + [STATE(2830)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3281), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2831)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3282), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(2832), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6302), + }, + [STATE(2832)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3239), + [sym_statement] = STATE(3302), + [sym_constant_declaration] = STATE(3239), + [sym_variable_declaration] = STATE(3239), + [sym_assignment_statement] = STATE(3239), + [sym_expression_statement] = STATE(3239), + [sym_return_statement] = STATE(3239), + [sym_yield_statement] = STATE(3239), + [sym_break_statement] = STATE(3239), + [sym_continue_statement] = STATE(3239), + [sym_defer_statement] = STATE(3239), + [sym_labeled_block] = STATE(3239), + [sym_if_statement] = STATE(3239), + [sym_while_statement] = STATE(3239), + [sym_for_statement] = STATE(3239), + [sym_match_statement] = STATE(3239), + [sym_expression] = STATE(6594), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2611), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_defer] = ACTIONS(2617), + [anon_sym_errdefer] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(2621), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2833)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2144), + [sym_statement] = STATE(2207), + [sym_constant_declaration] = STATE(2144), + [sym_variable_declaration] = STATE(2144), + [sym_assignment_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_break_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_defer_statement] = STATE(2144), + [sym_labeled_block] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_match_statement] = STATE(2144), + [sym_expression] = STATE(8781), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(499), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(503), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(249), + [anon_sym_defer] = ACTIONS(505), + [anon_sym_errdefer] = ACTIONS(507), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(511), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2834)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9585), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2835), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6304), + }, + [STATE(2835)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9740), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2836)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9850), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2837), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6306), + }, + [STATE(2837)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9503), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2838)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9504), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2839), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6308), + }, + [STATE(2839)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(9528), + [sym_statement] = STATE(9610), + [sym_constant_declaration] = STATE(9528), + [sym_variable_declaration] = STATE(9528), + [sym_assignment_statement] = STATE(9528), + [sym_expression_statement] = STATE(9528), + [sym_return_statement] = STATE(9528), + [sym_yield_statement] = STATE(9528), + [sym_break_statement] = STATE(9528), + [sym_continue_statement] = STATE(9528), + [sym_defer_statement] = STATE(9528), + [sym_labeled_block] = STATE(9528), + [sym_if_statement] = STATE(9528), + [sym_while_statement] = STATE(9528), + [sym_for_statement] = STATE(9528), + [sym_match_statement] = STATE(9528), + [sym_expression] = STATE(9418), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2627), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_defer] = ACTIONS(2633), + [anon_sym_errdefer] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2637), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2840)] = { + [ts_builtin_sym_end] = ACTIONS(6310), + [sym_identifier] = ACTIONS(6312), + [anon_sym_import] = ACTIONS(6312), + [anon_sym_test] = ACTIONS(6312), + [anon_sym_hide] = ACTIONS(6312), + [anon_sym_func] = ACTIONS(6312), + [anon_sym_BANG] = ACTIONS(6312), + [anon_sym_EQ] = ACTIONS(6312), + [anon_sym_struct] = ACTIONS(6312), + [anon_sym_LPAREN] = ACTIONS(6310), + [anon_sym_RPAREN] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(6310), + [anon_sym_COMMA] = ACTIONS(6310), + [anon_sym_RBRACE] = ACTIONS(6310), + [anon_sym_DASH] = ACTIONS(6312), + [anon_sym_DOLLAR] = ACTIONS(6310), + [anon_sym_PIPE] = ACTIONS(6312), + [anon_sym_QMARK] = ACTIONS(6310), + [anon_sym_STAR] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(6310), + [anon_sym_SEMI] = ACTIONS(6310), + [anon_sym_RBRACK] = ACTIONS(6310), + [anon_sym_void] = ACTIONS(6312), + [anon_sym_noreturn] = ACTIONS(6312), + [anon_sym_type] = ACTIONS(6312), + [anon_sym_anyopaque] = ACTIONS(6312), + [anon_sym_bool] = ACTIONS(6312), + [anon_sym_int] = ACTIONS(6312), + [anon_sym_uint] = ACTIONS(6312), + [anon_sym_float] = ACTIONS(6312), + [anon_sym_range] = ACTIONS(6312), + [anon_sym_i8] = ACTIONS(6312), + [anon_sym_i16] = ACTIONS(6312), + [anon_sym_i32] = ACTIONS(6312), + [anon_sym_i64] = ACTIONS(6312), + [anon_sym_u8] = ACTIONS(6312), + [anon_sym_u16] = ACTIONS(6312), + [anon_sym_u32] = ACTIONS(6312), + [anon_sym_u64] = ACTIONS(6312), + [anon_sym_isize] = ACTIONS(6312), + [anon_sym_usize] = ACTIONS(6312), + [anon_sym_f32] = ACTIONS(6312), + [anon_sym_f64] = ACTIONS(6312), + [anon_sym_c_char] = ACTIONS(6312), + [anon_sym_c_schar] = ACTIONS(6312), + [anon_sym_c_uchar] = ACTIONS(6312), + [anon_sym_c_short] = ACTIONS(6312), + [anon_sym_c_ushort] = ACTIONS(6312), + [anon_sym_c_int] = ACTIONS(6312), + [anon_sym_c_uint] = ACTIONS(6312), + [anon_sym_c_long] = ACTIONS(6312), + [anon_sym_c_ulong] = ACTIONS(6312), + [anon_sym_c_longlong] = ACTIONS(6312), + [anon_sym_c_ulonglong] = ACTIONS(6312), + [anon_sym_c_float] = ACTIONS(6312), + [anon_sym_c_double] = ACTIONS(6312), + [anon_sym_c_longdouble] = ACTIONS(6312), + [anon_sym_PLUS_EQ] = ACTIONS(6310), + [anon_sym_DASH_EQ] = ACTIONS(6310), + [anon_sym_STAR_EQ] = ACTIONS(6310), + [anon_sym_SLASH_EQ] = ACTIONS(6310), + [anon_sym_AMP_EQ] = ACTIONS(6310), + [anon_sym_PIPE_EQ] = ACTIONS(6310), + [anon_sym_xor_EQ] = ACTIONS(6310), + [anon_sym_LT_LT_EQ] = ACTIONS(6310), + [anon_sym_GT_GT_EQ] = ACTIONS(6310), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6310), + [anon_sym_return] = ACTIONS(6312), + [anon_sym_yield] = ACTIONS(6312), + [anon_sym_COLON] = ACTIONS(6310), + [anon_sym_break] = ACTIONS(6312), + [anon_sym_continue] = ACTIONS(6312), + [anon_sym_defer] = ACTIONS(6312), + [anon_sym_errdefer] = ACTIONS(6312), + [anon_sym_if] = ACTIONS(6312), + [anon_sym_else] = ACTIONS(6312), + [anon_sym_while] = ACTIONS(6312), + [anon_sym_expand] = ACTIONS(6312), + [anon_sym_for] = ACTIONS(6312), + [anon_sym_match] = ACTIONS(6312), + [anon_sym_DOT_DOT] = ACTIONS(6312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6310), + [anon_sym_orelse] = ACTIONS(6312), + [anon_sym_or] = ACTIONS(6312), + [anon_sym_and] = ACTIONS(6312), + [anon_sym_EQ_EQ] = ACTIONS(6310), + [anon_sym_BANG_EQ] = ACTIONS(6310), + [anon_sym_LT] = ACTIONS(6312), + [anon_sym_LT_EQ] = ACTIONS(6310), + [anon_sym_GT] = ACTIONS(6312), + [anon_sym_GT_EQ] = ACTIONS(6310), + [anon_sym_AMP] = ACTIONS(6312), + [anon_sym_xor] = ACTIONS(6312), + [anon_sym_LT_LT] = ACTIONS(6312), + [anon_sym_GT_GT] = ACTIONS(6312), + [anon_sym_LT_LT_PIPE] = ACTIONS(6312), + [anon_sym_PLUS] = ACTIONS(6312), + [anon_sym_SLASH] = ACTIONS(6312), + [anon_sym_catch] = ACTIONS(6312), + [anon_sym_TILDE] = ACTIONS(6310), + [anon_sym_try] = ACTIONS(6312), + [anon_sym_DOT] = ACTIONS(6312), + [anon_sym_CARET] = ACTIONS(6310), + [anon_sym_true] = ACTIONS(6312), + [anon_sym_false] = ACTIONS(6312), + [anon_sym_null] = ACTIONS(6312), + [anon_sym_unreachable] = ACTIONS(6312), + [anon_sym_undefined] = ACTIONS(6312), + [sym_sink] = ACTIONS(6312), + [sym_integer] = ACTIONS(6312), + [sym_float] = ACTIONS(6310), + [anon_sym_DQUOTE] = ACTIONS(6310), + [sym_multiline_string] = ACTIONS(6310), + [sym_character] = ACTIONS(6310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6310), + }, + [STATE(2841)] = { + [ts_builtin_sym_end] = ACTIONS(6314), + [sym_identifier] = ACTIONS(6316), + [anon_sym_import] = ACTIONS(6316), + [anon_sym_test] = ACTIONS(6316), + [anon_sym_hide] = ACTIONS(6316), + [anon_sym_func] = ACTIONS(6316), + [anon_sym_BANG] = ACTIONS(6316), + [anon_sym_EQ] = ACTIONS(6316), + [anon_sym_struct] = ACTIONS(6316), + [anon_sym_LPAREN] = ACTIONS(6314), + [anon_sym_RPAREN] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(6314), + [anon_sym_COMMA] = ACTIONS(6314), + [anon_sym_RBRACE] = ACTIONS(6314), + [anon_sym_DASH] = ACTIONS(6316), + [anon_sym_DOLLAR] = ACTIONS(6314), + [anon_sym_PIPE] = ACTIONS(6316), + [anon_sym_QMARK] = ACTIONS(6314), + [anon_sym_STAR] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(6314), + [anon_sym_SEMI] = ACTIONS(6314), + [anon_sym_RBRACK] = ACTIONS(6314), + [anon_sym_void] = ACTIONS(6316), + [anon_sym_noreturn] = ACTIONS(6316), + [anon_sym_type] = ACTIONS(6316), + [anon_sym_anyopaque] = ACTIONS(6316), + [anon_sym_bool] = ACTIONS(6316), + [anon_sym_int] = ACTIONS(6316), + [anon_sym_uint] = ACTIONS(6316), + [anon_sym_float] = ACTIONS(6316), + [anon_sym_range] = ACTIONS(6316), + [anon_sym_i8] = ACTIONS(6316), + [anon_sym_i16] = ACTIONS(6316), + [anon_sym_i32] = ACTIONS(6316), + [anon_sym_i64] = ACTIONS(6316), + [anon_sym_u8] = ACTIONS(6316), + [anon_sym_u16] = ACTIONS(6316), + [anon_sym_u32] = ACTIONS(6316), + [anon_sym_u64] = ACTIONS(6316), + [anon_sym_isize] = ACTIONS(6316), + [anon_sym_usize] = ACTIONS(6316), + [anon_sym_f32] = ACTIONS(6316), + [anon_sym_f64] = ACTIONS(6316), + [anon_sym_c_char] = ACTIONS(6316), + [anon_sym_c_schar] = ACTIONS(6316), + [anon_sym_c_uchar] = ACTIONS(6316), + [anon_sym_c_short] = ACTIONS(6316), + [anon_sym_c_ushort] = ACTIONS(6316), + [anon_sym_c_int] = ACTIONS(6316), + [anon_sym_c_uint] = ACTIONS(6316), + [anon_sym_c_long] = ACTIONS(6316), + [anon_sym_c_ulong] = ACTIONS(6316), + [anon_sym_c_longlong] = ACTIONS(6316), + [anon_sym_c_ulonglong] = ACTIONS(6316), + [anon_sym_c_float] = ACTIONS(6316), + [anon_sym_c_double] = ACTIONS(6316), + [anon_sym_c_longdouble] = ACTIONS(6316), + [anon_sym_PLUS_EQ] = ACTIONS(6314), + [anon_sym_DASH_EQ] = ACTIONS(6314), + [anon_sym_STAR_EQ] = ACTIONS(6314), + [anon_sym_SLASH_EQ] = ACTIONS(6314), + [anon_sym_AMP_EQ] = ACTIONS(6314), + [anon_sym_PIPE_EQ] = ACTIONS(6314), + [anon_sym_xor_EQ] = ACTIONS(6314), + [anon_sym_LT_LT_EQ] = ACTIONS(6314), + [anon_sym_GT_GT_EQ] = ACTIONS(6314), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6314), + [anon_sym_return] = ACTIONS(6316), + [anon_sym_yield] = ACTIONS(6316), + [anon_sym_COLON] = ACTIONS(6314), + [anon_sym_break] = ACTIONS(6316), + [anon_sym_continue] = ACTIONS(6316), + [anon_sym_defer] = ACTIONS(6316), + [anon_sym_errdefer] = ACTIONS(6316), + [anon_sym_if] = ACTIONS(6316), + [anon_sym_else] = ACTIONS(6316), + [anon_sym_while] = ACTIONS(6316), + [anon_sym_expand] = ACTIONS(6316), + [anon_sym_for] = ACTIONS(6316), + [anon_sym_match] = ACTIONS(6316), + [anon_sym_DOT_DOT] = ACTIONS(6316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6314), + [anon_sym_orelse] = ACTIONS(6316), + [anon_sym_or] = ACTIONS(6316), + [anon_sym_and] = ACTIONS(6316), + [anon_sym_EQ_EQ] = ACTIONS(6314), + [anon_sym_BANG_EQ] = ACTIONS(6314), + [anon_sym_LT] = ACTIONS(6316), + [anon_sym_LT_EQ] = ACTIONS(6314), + [anon_sym_GT] = ACTIONS(6316), + [anon_sym_GT_EQ] = ACTIONS(6314), + [anon_sym_AMP] = ACTIONS(6316), + [anon_sym_xor] = ACTIONS(6316), + [anon_sym_LT_LT] = ACTIONS(6316), + [anon_sym_GT_GT] = ACTIONS(6316), + [anon_sym_LT_LT_PIPE] = ACTIONS(6316), + [anon_sym_PLUS] = ACTIONS(6316), + [anon_sym_SLASH] = ACTIONS(6316), + [anon_sym_catch] = ACTIONS(6316), + [anon_sym_TILDE] = ACTIONS(6314), + [anon_sym_try] = ACTIONS(6316), + [anon_sym_DOT] = ACTIONS(6316), + [anon_sym_CARET] = ACTIONS(6314), + [anon_sym_true] = ACTIONS(6316), + [anon_sym_false] = ACTIONS(6316), + [anon_sym_null] = ACTIONS(6316), + [anon_sym_unreachable] = ACTIONS(6316), + [anon_sym_undefined] = ACTIONS(6316), + [sym_sink] = ACTIONS(6316), + [sym_integer] = ACTIONS(6316), + [sym_float] = ACTIONS(6314), + [anon_sym_DQUOTE] = ACTIONS(6314), + [sym_multiline_string] = ACTIONS(6314), + [sym_character] = ACTIONS(6314), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6314), + }, + [STATE(2842)] = { + [ts_builtin_sym_end] = ACTIONS(6318), + [sym_identifier] = ACTIONS(6320), + [anon_sym_import] = ACTIONS(6320), + [anon_sym_test] = ACTIONS(6320), + [anon_sym_hide] = ACTIONS(6320), + [anon_sym_func] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6320), + [anon_sym_EQ] = ACTIONS(6320), + [anon_sym_struct] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6318), + [anon_sym_RPAREN] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(6318), + [anon_sym_COMMA] = ACTIONS(6318), + [anon_sym_RBRACE] = ACTIONS(6318), + [anon_sym_DASH] = ACTIONS(6320), + [anon_sym_DOLLAR] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(6320), + [anon_sym_QMARK] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(6318), + [anon_sym_SEMI] = ACTIONS(6318), + [anon_sym_RBRACK] = ACTIONS(6318), + [anon_sym_void] = ACTIONS(6320), + [anon_sym_noreturn] = ACTIONS(6320), + [anon_sym_type] = ACTIONS(6320), + [anon_sym_anyopaque] = ACTIONS(6320), + [anon_sym_bool] = ACTIONS(6320), + [anon_sym_int] = ACTIONS(6320), + [anon_sym_uint] = ACTIONS(6320), + [anon_sym_float] = ACTIONS(6320), + [anon_sym_range] = ACTIONS(6320), + [anon_sym_i8] = ACTIONS(6320), + [anon_sym_i16] = ACTIONS(6320), + [anon_sym_i32] = ACTIONS(6320), + [anon_sym_i64] = ACTIONS(6320), + [anon_sym_u8] = ACTIONS(6320), + [anon_sym_u16] = ACTIONS(6320), + [anon_sym_u32] = ACTIONS(6320), + [anon_sym_u64] = ACTIONS(6320), + [anon_sym_isize] = ACTIONS(6320), + [anon_sym_usize] = ACTIONS(6320), + [anon_sym_f32] = ACTIONS(6320), + [anon_sym_f64] = ACTIONS(6320), + [anon_sym_c_char] = ACTIONS(6320), + [anon_sym_c_schar] = ACTIONS(6320), + [anon_sym_c_uchar] = ACTIONS(6320), + [anon_sym_c_short] = ACTIONS(6320), + [anon_sym_c_ushort] = ACTIONS(6320), + [anon_sym_c_int] = ACTIONS(6320), + [anon_sym_c_uint] = ACTIONS(6320), + [anon_sym_c_long] = ACTIONS(6320), + [anon_sym_c_ulong] = ACTIONS(6320), + [anon_sym_c_longlong] = ACTIONS(6320), + [anon_sym_c_ulonglong] = ACTIONS(6320), + [anon_sym_c_float] = ACTIONS(6320), + [anon_sym_c_double] = ACTIONS(6320), + [anon_sym_c_longdouble] = ACTIONS(6320), + [anon_sym_PLUS_EQ] = ACTIONS(6318), + [anon_sym_DASH_EQ] = ACTIONS(6318), + [anon_sym_STAR_EQ] = ACTIONS(6318), + [anon_sym_SLASH_EQ] = ACTIONS(6318), + [anon_sym_AMP_EQ] = ACTIONS(6318), + [anon_sym_PIPE_EQ] = ACTIONS(6318), + [anon_sym_xor_EQ] = ACTIONS(6318), + [anon_sym_LT_LT_EQ] = ACTIONS(6318), + [anon_sym_GT_GT_EQ] = ACTIONS(6318), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6318), + [anon_sym_return] = ACTIONS(6320), + [anon_sym_yield] = ACTIONS(6320), + [anon_sym_COLON] = ACTIONS(6318), + [anon_sym_break] = ACTIONS(6320), + [anon_sym_continue] = ACTIONS(6320), + [anon_sym_defer] = ACTIONS(6320), + [anon_sym_errdefer] = ACTIONS(6320), + [anon_sym_if] = ACTIONS(6320), + [anon_sym_else] = ACTIONS(6320), + [anon_sym_while] = ACTIONS(6320), + [anon_sym_expand] = ACTIONS(6320), + [anon_sym_for] = ACTIONS(6320), + [anon_sym_match] = ACTIONS(6320), + [anon_sym_DOT_DOT] = ACTIONS(6320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6318), + [anon_sym_orelse] = ACTIONS(6320), + [anon_sym_or] = ACTIONS(6320), + [anon_sym_and] = ACTIONS(6320), + [anon_sym_EQ_EQ] = ACTIONS(6318), + [anon_sym_BANG_EQ] = ACTIONS(6318), + [anon_sym_LT] = ACTIONS(6320), + [anon_sym_LT_EQ] = ACTIONS(6318), + [anon_sym_GT] = ACTIONS(6320), + [anon_sym_GT_EQ] = ACTIONS(6318), + [anon_sym_AMP] = ACTIONS(6320), + [anon_sym_xor] = ACTIONS(6320), + [anon_sym_LT_LT] = ACTIONS(6320), + [anon_sym_GT_GT] = ACTIONS(6320), + [anon_sym_LT_LT_PIPE] = ACTIONS(6320), + [anon_sym_PLUS] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6320), + [anon_sym_catch] = ACTIONS(6320), + [anon_sym_TILDE] = ACTIONS(6318), + [anon_sym_try] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(6318), + [anon_sym_true] = ACTIONS(6320), + [anon_sym_false] = ACTIONS(6320), + [anon_sym_null] = ACTIONS(6320), + [anon_sym_unreachable] = ACTIONS(6320), + [anon_sym_undefined] = ACTIONS(6320), + [sym_sink] = ACTIONS(6320), + [sym_integer] = ACTIONS(6320), + [sym_float] = ACTIONS(6318), + [anon_sym_DQUOTE] = ACTIONS(6318), + [sym_multiline_string] = ACTIONS(6318), + [sym_character] = ACTIONS(6318), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6318), + }, + [STATE(2843)] = { + [ts_builtin_sym_end] = ACTIONS(6322), + [sym_identifier] = ACTIONS(6324), + [anon_sym_import] = ACTIONS(6324), + [anon_sym_test] = ACTIONS(6324), + [anon_sym_hide] = ACTIONS(6324), + [anon_sym_func] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6324), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_struct] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6322), + [anon_sym_RPAREN] = ACTIONS(6322), + [anon_sym_LBRACE] = ACTIONS(6322), + [anon_sym_COMMA] = ACTIONS(6322), + [anon_sym_RBRACE] = ACTIONS(6322), + [anon_sym_DASH] = ACTIONS(6324), + [anon_sym_DOLLAR] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(6324), + [anon_sym_QMARK] = ACTIONS(6322), + [anon_sym_STAR] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6322), + [anon_sym_SEMI] = ACTIONS(6322), + [anon_sym_RBRACK] = ACTIONS(6322), + [anon_sym_void] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym_type] = ACTIONS(6324), + [anon_sym_anyopaque] = ACTIONS(6324), + [anon_sym_bool] = ACTIONS(6324), + [anon_sym_int] = ACTIONS(6324), + [anon_sym_uint] = ACTIONS(6324), + [anon_sym_float] = ACTIONS(6324), + [anon_sym_range] = ACTIONS(6324), + [anon_sym_i8] = ACTIONS(6324), + [anon_sym_i16] = ACTIONS(6324), + [anon_sym_i32] = ACTIONS(6324), + [anon_sym_i64] = ACTIONS(6324), + [anon_sym_u8] = ACTIONS(6324), + [anon_sym_u16] = ACTIONS(6324), + [anon_sym_u32] = ACTIONS(6324), + [anon_sym_u64] = ACTIONS(6324), + [anon_sym_isize] = ACTIONS(6324), + [anon_sym_usize] = ACTIONS(6324), + [anon_sym_f32] = ACTIONS(6324), + [anon_sym_f64] = ACTIONS(6324), + [anon_sym_c_char] = ACTIONS(6324), + [anon_sym_c_schar] = ACTIONS(6324), + [anon_sym_c_uchar] = ACTIONS(6324), + [anon_sym_c_short] = ACTIONS(6324), + [anon_sym_c_ushort] = ACTIONS(6324), + [anon_sym_c_int] = ACTIONS(6324), + [anon_sym_c_uint] = ACTIONS(6324), + [anon_sym_c_long] = ACTIONS(6324), + [anon_sym_c_ulong] = ACTIONS(6324), + [anon_sym_c_longlong] = ACTIONS(6324), + [anon_sym_c_ulonglong] = ACTIONS(6324), + [anon_sym_c_float] = ACTIONS(6324), + [anon_sym_c_double] = ACTIONS(6324), + [anon_sym_c_longdouble] = ACTIONS(6324), + [anon_sym_PLUS_EQ] = ACTIONS(6322), + [anon_sym_DASH_EQ] = ACTIONS(6322), + [anon_sym_STAR_EQ] = ACTIONS(6322), + [anon_sym_SLASH_EQ] = ACTIONS(6322), + [anon_sym_AMP_EQ] = ACTIONS(6322), + [anon_sym_PIPE_EQ] = ACTIONS(6322), + [anon_sym_xor_EQ] = ACTIONS(6322), + [anon_sym_LT_LT_EQ] = ACTIONS(6322), + [anon_sym_GT_GT_EQ] = ACTIONS(6322), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6322), + [anon_sym_return] = ACTIONS(6324), + [anon_sym_yield] = ACTIONS(6324), + [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_break] = ACTIONS(6324), + [anon_sym_continue] = ACTIONS(6324), + [anon_sym_defer] = ACTIONS(6324), + [anon_sym_errdefer] = ACTIONS(6324), + [anon_sym_if] = ACTIONS(6324), + [anon_sym_else] = ACTIONS(6324), + [anon_sym_while] = ACTIONS(6324), + [anon_sym_expand] = ACTIONS(6324), + [anon_sym_for] = ACTIONS(6324), + [anon_sym_match] = ACTIONS(6324), + [anon_sym_DOT_DOT] = ACTIONS(6324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6322), + [anon_sym_orelse] = ACTIONS(6324), + [anon_sym_or] = ACTIONS(6324), + [anon_sym_and] = ACTIONS(6324), + [anon_sym_EQ_EQ] = ACTIONS(6322), + [anon_sym_BANG_EQ] = ACTIONS(6322), + [anon_sym_LT] = ACTIONS(6324), + [anon_sym_LT_EQ] = ACTIONS(6322), + [anon_sym_GT] = ACTIONS(6324), + [anon_sym_GT_EQ] = ACTIONS(6322), + [anon_sym_AMP] = ACTIONS(6324), + [anon_sym_xor] = ACTIONS(6324), + [anon_sym_LT_LT] = ACTIONS(6324), + [anon_sym_GT_GT] = ACTIONS(6324), + [anon_sym_LT_LT_PIPE] = ACTIONS(6324), + [anon_sym_PLUS] = ACTIONS(6324), + [anon_sym_SLASH] = ACTIONS(6324), + [anon_sym_catch] = ACTIONS(6324), + [anon_sym_TILDE] = ACTIONS(6322), + [anon_sym_try] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(6322), + [anon_sym_true] = ACTIONS(6324), + [anon_sym_false] = ACTIONS(6324), + [anon_sym_null] = ACTIONS(6324), + [anon_sym_unreachable] = ACTIONS(6324), + [anon_sym_undefined] = ACTIONS(6324), + [sym_sink] = ACTIONS(6324), + [sym_integer] = ACTIONS(6324), + [sym_float] = ACTIONS(6322), + [anon_sym_DQUOTE] = ACTIONS(6322), + [sym_multiline_string] = ACTIONS(6322), + [sym_character] = ACTIONS(6322), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6322), + }, + [STATE(2844)] = { + [ts_builtin_sym_end] = ACTIONS(6326), + [sym_identifier] = ACTIONS(6328), + [anon_sym_import] = ACTIONS(6328), + [anon_sym_test] = ACTIONS(6328), + [anon_sym_hide] = ACTIONS(6328), + [anon_sym_func] = ACTIONS(6328), + [anon_sym_BANG] = ACTIONS(6328), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_struct] = ACTIONS(6328), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_RPAREN] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6326), + [anon_sym_RBRACE] = ACTIONS(6326), + [anon_sym_DASH] = ACTIONS(6328), + [anon_sym_DOLLAR] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_QMARK] = ACTIONS(6326), + [anon_sym_STAR] = ACTIONS(6328), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_SEMI] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(6326), + [anon_sym_void] = ACTIONS(6328), + [anon_sym_noreturn] = ACTIONS(6328), + [anon_sym_type] = ACTIONS(6328), + [anon_sym_anyopaque] = ACTIONS(6328), + [anon_sym_bool] = ACTIONS(6328), + [anon_sym_int] = ACTIONS(6328), + [anon_sym_uint] = ACTIONS(6328), + [anon_sym_float] = ACTIONS(6328), + [anon_sym_range] = ACTIONS(6328), + [anon_sym_i8] = ACTIONS(6328), + [anon_sym_i16] = ACTIONS(6328), + [anon_sym_i32] = ACTIONS(6328), + [anon_sym_i64] = ACTIONS(6328), + [anon_sym_u8] = ACTIONS(6328), + [anon_sym_u16] = ACTIONS(6328), + [anon_sym_u32] = ACTIONS(6328), + [anon_sym_u64] = ACTIONS(6328), + [anon_sym_isize] = ACTIONS(6328), + [anon_sym_usize] = ACTIONS(6328), + [anon_sym_f32] = ACTIONS(6328), + [anon_sym_f64] = ACTIONS(6328), + [anon_sym_c_char] = ACTIONS(6328), + [anon_sym_c_schar] = ACTIONS(6328), + [anon_sym_c_uchar] = ACTIONS(6328), + [anon_sym_c_short] = ACTIONS(6328), + [anon_sym_c_ushort] = ACTIONS(6328), + [anon_sym_c_int] = ACTIONS(6328), + [anon_sym_c_uint] = ACTIONS(6328), + [anon_sym_c_long] = ACTIONS(6328), + [anon_sym_c_ulong] = ACTIONS(6328), + [anon_sym_c_longlong] = ACTIONS(6328), + [anon_sym_c_ulonglong] = ACTIONS(6328), + [anon_sym_c_float] = ACTIONS(6328), + [anon_sym_c_double] = ACTIONS(6328), + [anon_sym_c_longdouble] = ACTIONS(6328), + [anon_sym_PLUS_EQ] = ACTIONS(6326), + [anon_sym_DASH_EQ] = ACTIONS(6326), + [anon_sym_STAR_EQ] = ACTIONS(6326), + [anon_sym_SLASH_EQ] = ACTIONS(6326), + [anon_sym_AMP_EQ] = ACTIONS(6326), + [anon_sym_PIPE_EQ] = ACTIONS(6326), + [anon_sym_xor_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_EQ] = ACTIONS(6326), + [anon_sym_GT_GT_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6326), + [anon_sym_return] = ACTIONS(6328), + [anon_sym_yield] = ACTIONS(6328), + [anon_sym_COLON] = ACTIONS(6326), + [anon_sym_break] = ACTIONS(6328), + [anon_sym_continue] = ACTIONS(6328), + [anon_sym_defer] = ACTIONS(6328), + [anon_sym_errdefer] = ACTIONS(6328), + [anon_sym_if] = ACTIONS(6328), + [anon_sym_else] = ACTIONS(6328), + [anon_sym_while] = ACTIONS(6328), + [anon_sym_expand] = ACTIONS(6328), + [anon_sym_for] = ACTIONS(6328), + [anon_sym_match] = ACTIONS(6328), + [anon_sym_DOT_DOT] = ACTIONS(6328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6326), + [anon_sym_orelse] = ACTIONS(6328), + [anon_sym_or] = ACTIONS(6328), + [anon_sym_and] = ACTIONS(6328), + [anon_sym_EQ_EQ] = ACTIONS(6326), + [anon_sym_BANG_EQ] = ACTIONS(6326), + [anon_sym_LT] = ACTIONS(6328), + [anon_sym_LT_EQ] = ACTIONS(6326), + [anon_sym_GT] = ACTIONS(6328), + [anon_sym_GT_EQ] = ACTIONS(6326), + [anon_sym_AMP] = ACTIONS(6328), + [anon_sym_xor] = ACTIONS(6328), + [anon_sym_LT_LT] = ACTIONS(6328), + [anon_sym_GT_GT] = ACTIONS(6328), + [anon_sym_LT_LT_PIPE] = ACTIONS(6328), + [anon_sym_PLUS] = ACTIONS(6328), + [anon_sym_SLASH] = ACTIONS(6328), + [anon_sym_catch] = ACTIONS(6328), + [anon_sym_TILDE] = ACTIONS(6326), + [anon_sym_try] = ACTIONS(6328), + [anon_sym_DOT] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6326), + [anon_sym_true] = ACTIONS(6328), + [anon_sym_false] = ACTIONS(6328), + [anon_sym_null] = ACTIONS(6328), + [anon_sym_unreachable] = ACTIONS(6328), + [anon_sym_undefined] = ACTIONS(6328), + [sym_sink] = ACTIONS(6328), + [sym_integer] = ACTIONS(6328), + [sym_float] = ACTIONS(6326), + [anon_sym_DQUOTE] = ACTIONS(6326), + [sym_multiline_string] = ACTIONS(6326), + [sym_character] = ACTIONS(6326), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6326), + }, + [STATE(2845)] = { + [ts_builtin_sym_end] = ACTIONS(6330), + [sym_identifier] = ACTIONS(6332), + [anon_sym_import] = ACTIONS(6332), + [anon_sym_test] = ACTIONS(6332), + [anon_sym_hide] = ACTIONS(6332), + [anon_sym_func] = ACTIONS(6332), + [anon_sym_BANG] = ACTIONS(6332), + [anon_sym_EQ] = ACTIONS(6332), + [anon_sym_struct] = ACTIONS(6332), + [anon_sym_LPAREN] = ACTIONS(6330), + [anon_sym_RPAREN] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(6330), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_RBRACE] = ACTIONS(6330), + [anon_sym_DASH] = ACTIONS(6332), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_PIPE] = ACTIONS(6332), + [anon_sym_QMARK] = ACTIONS(6330), + [anon_sym_STAR] = ACTIONS(6332), + [anon_sym_LBRACK] = ACTIONS(6330), + [anon_sym_SEMI] = ACTIONS(6330), + [anon_sym_RBRACK] = ACTIONS(6330), + [anon_sym_void] = ACTIONS(6332), + [anon_sym_noreturn] = ACTIONS(6332), + [anon_sym_type] = ACTIONS(6332), + [anon_sym_anyopaque] = ACTIONS(6332), + [anon_sym_bool] = ACTIONS(6332), + [anon_sym_int] = ACTIONS(6332), + [anon_sym_uint] = ACTIONS(6332), + [anon_sym_float] = ACTIONS(6332), + [anon_sym_range] = ACTIONS(6332), + [anon_sym_i8] = ACTIONS(6332), + [anon_sym_i16] = ACTIONS(6332), + [anon_sym_i32] = ACTIONS(6332), + [anon_sym_i64] = ACTIONS(6332), + [anon_sym_u8] = ACTIONS(6332), + [anon_sym_u16] = ACTIONS(6332), + [anon_sym_u32] = ACTIONS(6332), + [anon_sym_u64] = ACTIONS(6332), + [anon_sym_isize] = ACTIONS(6332), + [anon_sym_usize] = ACTIONS(6332), + [anon_sym_f32] = ACTIONS(6332), + [anon_sym_f64] = ACTIONS(6332), + [anon_sym_c_char] = ACTIONS(6332), + [anon_sym_c_schar] = ACTIONS(6332), + [anon_sym_c_uchar] = ACTIONS(6332), + [anon_sym_c_short] = ACTIONS(6332), + [anon_sym_c_ushort] = ACTIONS(6332), + [anon_sym_c_int] = ACTIONS(6332), + [anon_sym_c_uint] = ACTIONS(6332), + [anon_sym_c_long] = ACTIONS(6332), + [anon_sym_c_ulong] = ACTIONS(6332), + [anon_sym_c_longlong] = ACTIONS(6332), + [anon_sym_c_ulonglong] = ACTIONS(6332), + [anon_sym_c_float] = ACTIONS(6332), + [anon_sym_c_double] = ACTIONS(6332), + [anon_sym_c_longdouble] = ACTIONS(6332), + [anon_sym_PLUS_EQ] = ACTIONS(6330), + [anon_sym_DASH_EQ] = ACTIONS(6330), + [anon_sym_STAR_EQ] = ACTIONS(6330), + [anon_sym_SLASH_EQ] = ACTIONS(6330), + [anon_sym_AMP_EQ] = ACTIONS(6330), + [anon_sym_PIPE_EQ] = ACTIONS(6330), + [anon_sym_xor_EQ] = ACTIONS(6330), + [anon_sym_LT_LT_EQ] = ACTIONS(6330), + [anon_sym_GT_GT_EQ] = ACTIONS(6330), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6330), + [anon_sym_return] = ACTIONS(6332), + [anon_sym_yield] = ACTIONS(6332), + [anon_sym_COLON] = ACTIONS(6330), + [anon_sym_break] = ACTIONS(6332), + [anon_sym_continue] = ACTIONS(6332), + [anon_sym_defer] = ACTIONS(6332), + [anon_sym_errdefer] = ACTIONS(6332), + [anon_sym_if] = ACTIONS(6332), + [anon_sym_else] = ACTIONS(6332), + [anon_sym_while] = ACTIONS(6332), + [anon_sym_expand] = ACTIONS(6332), + [anon_sym_for] = ACTIONS(6332), + [anon_sym_match] = ACTIONS(6332), + [anon_sym_DOT_DOT] = ACTIONS(6332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6330), + [anon_sym_orelse] = ACTIONS(6332), + [anon_sym_or] = ACTIONS(6332), + [anon_sym_and] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6330), + [anon_sym_BANG_EQ] = ACTIONS(6330), + [anon_sym_LT] = ACTIONS(6332), + [anon_sym_LT_EQ] = ACTIONS(6330), + [anon_sym_GT] = ACTIONS(6332), + [anon_sym_GT_EQ] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_xor] = ACTIONS(6332), + [anon_sym_LT_LT] = ACTIONS(6332), + [anon_sym_GT_GT] = ACTIONS(6332), + [anon_sym_LT_LT_PIPE] = ACTIONS(6332), + [anon_sym_PLUS] = ACTIONS(6332), + [anon_sym_SLASH] = ACTIONS(6332), + [anon_sym_catch] = ACTIONS(6332), + [anon_sym_TILDE] = ACTIONS(6330), + [anon_sym_try] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6332), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_true] = ACTIONS(6332), + [anon_sym_false] = ACTIONS(6332), + [anon_sym_null] = ACTIONS(6332), + [anon_sym_unreachable] = ACTIONS(6332), + [anon_sym_undefined] = ACTIONS(6332), + [sym_sink] = ACTIONS(6332), + [sym_integer] = ACTIONS(6332), + [sym_float] = ACTIONS(6330), + [anon_sym_DQUOTE] = ACTIONS(6330), + [sym_multiline_string] = ACTIONS(6330), + [sym_character] = ACTIONS(6330), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6330), + }, + [STATE(2846)] = { + [ts_builtin_sym_end] = ACTIONS(6334), + [sym_identifier] = ACTIONS(6336), + [anon_sym_import] = ACTIONS(6336), + [anon_sym_test] = ACTIONS(6336), + [anon_sym_hide] = ACTIONS(6336), + [anon_sym_func] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6336), + [anon_sym_EQ] = ACTIONS(6336), + [anon_sym_struct] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6334), + [anon_sym_RPAREN] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(6334), + [anon_sym_COMMA] = ACTIONS(6334), + [anon_sym_RBRACE] = ACTIONS(6334), + [anon_sym_DASH] = ACTIONS(6336), + [anon_sym_DOLLAR] = ACTIONS(6334), + [anon_sym_PIPE] = ACTIONS(6336), + [anon_sym_QMARK] = ACTIONS(6334), + [anon_sym_STAR] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(6334), + [anon_sym_SEMI] = ACTIONS(6334), + [anon_sym_RBRACK] = ACTIONS(6334), + [anon_sym_void] = ACTIONS(6336), + [anon_sym_noreturn] = ACTIONS(6336), + [anon_sym_type] = ACTIONS(6336), + [anon_sym_anyopaque] = ACTIONS(6336), + [anon_sym_bool] = ACTIONS(6336), + [anon_sym_int] = ACTIONS(6336), + [anon_sym_uint] = ACTIONS(6336), + [anon_sym_float] = ACTIONS(6336), + [anon_sym_range] = ACTIONS(6336), + [anon_sym_i8] = ACTIONS(6336), + [anon_sym_i16] = ACTIONS(6336), + [anon_sym_i32] = ACTIONS(6336), + [anon_sym_i64] = ACTIONS(6336), + [anon_sym_u8] = ACTIONS(6336), + [anon_sym_u16] = ACTIONS(6336), + [anon_sym_u32] = ACTIONS(6336), + [anon_sym_u64] = ACTIONS(6336), + [anon_sym_isize] = ACTIONS(6336), + [anon_sym_usize] = ACTIONS(6336), + [anon_sym_f32] = ACTIONS(6336), + [anon_sym_f64] = ACTIONS(6336), + [anon_sym_c_char] = ACTIONS(6336), + [anon_sym_c_schar] = ACTIONS(6336), + [anon_sym_c_uchar] = ACTIONS(6336), + [anon_sym_c_short] = ACTIONS(6336), + [anon_sym_c_ushort] = ACTIONS(6336), + [anon_sym_c_int] = ACTIONS(6336), + [anon_sym_c_uint] = ACTIONS(6336), + [anon_sym_c_long] = ACTIONS(6336), + [anon_sym_c_ulong] = ACTIONS(6336), + [anon_sym_c_longlong] = ACTIONS(6336), + [anon_sym_c_ulonglong] = ACTIONS(6336), + [anon_sym_c_float] = ACTIONS(6336), + [anon_sym_c_double] = ACTIONS(6336), + [anon_sym_c_longdouble] = ACTIONS(6336), + [anon_sym_PLUS_EQ] = ACTIONS(6334), + [anon_sym_DASH_EQ] = ACTIONS(6334), + [anon_sym_STAR_EQ] = ACTIONS(6334), + [anon_sym_SLASH_EQ] = ACTIONS(6334), + [anon_sym_AMP_EQ] = ACTIONS(6334), + [anon_sym_PIPE_EQ] = ACTIONS(6334), + [anon_sym_xor_EQ] = ACTIONS(6334), + [anon_sym_LT_LT_EQ] = ACTIONS(6334), + [anon_sym_GT_GT_EQ] = ACTIONS(6334), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6334), + [anon_sym_return] = ACTIONS(6336), + [anon_sym_yield] = ACTIONS(6336), + [anon_sym_COLON] = ACTIONS(6334), + [anon_sym_break] = ACTIONS(6336), + [anon_sym_continue] = ACTIONS(6336), + [anon_sym_defer] = ACTIONS(6336), + [anon_sym_errdefer] = ACTIONS(6336), + [anon_sym_if] = ACTIONS(6336), + [anon_sym_else] = ACTIONS(6336), + [anon_sym_while] = ACTIONS(6336), + [anon_sym_expand] = ACTIONS(6336), + [anon_sym_for] = ACTIONS(6336), + [anon_sym_match] = ACTIONS(6336), + [anon_sym_DOT_DOT] = ACTIONS(6336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6334), + [anon_sym_orelse] = ACTIONS(6336), + [anon_sym_or] = ACTIONS(6336), + [anon_sym_and] = ACTIONS(6336), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6334), + [anon_sym_AMP] = ACTIONS(6336), + [anon_sym_xor] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6336), + [anon_sym_GT_GT] = ACTIONS(6336), + [anon_sym_LT_LT_PIPE] = ACTIONS(6336), + [anon_sym_PLUS] = ACTIONS(6336), + [anon_sym_SLASH] = ACTIONS(6336), + [anon_sym_catch] = ACTIONS(6336), + [anon_sym_TILDE] = ACTIONS(6334), + [anon_sym_try] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(6334), + [anon_sym_true] = ACTIONS(6336), + [anon_sym_false] = ACTIONS(6336), + [anon_sym_null] = ACTIONS(6336), + [anon_sym_unreachable] = ACTIONS(6336), + [anon_sym_undefined] = ACTIONS(6336), + [sym_sink] = ACTIONS(6336), + [sym_integer] = ACTIONS(6336), + [sym_float] = ACTIONS(6334), + [anon_sym_DQUOTE] = ACTIONS(6334), + [sym_multiline_string] = ACTIONS(6334), + [sym_character] = ACTIONS(6334), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6334), + }, + [STATE(2847)] = { + [ts_builtin_sym_end] = ACTIONS(6338), + [sym_identifier] = ACTIONS(6340), + [anon_sym_import] = ACTIONS(6340), + [anon_sym_test] = ACTIONS(6340), + [anon_sym_hide] = ACTIONS(6340), + [anon_sym_func] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6340), + [anon_sym_EQ] = ACTIONS(6340), + [anon_sym_struct] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6338), + [anon_sym_RPAREN] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(6338), + [anon_sym_COMMA] = ACTIONS(6338), + [anon_sym_RBRACE] = ACTIONS(6338), + [anon_sym_DASH] = ACTIONS(6340), + [anon_sym_DOLLAR] = ACTIONS(6338), + [anon_sym_PIPE] = ACTIONS(6340), + [anon_sym_QMARK] = ACTIONS(6338), + [anon_sym_STAR] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(6338), + [anon_sym_SEMI] = ACTIONS(6338), + [anon_sym_RBRACK] = ACTIONS(6338), + [anon_sym_void] = ACTIONS(6340), + [anon_sym_noreturn] = ACTIONS(6340), + [anon_sym_type] = ACTIONS(6340), + [anon_sym_anyopaque] = ACTIONS(6340), + [anon_sym_bool] = ACTIONS(6340), + [anon_sym_int] = ACTIONS(6340), + [anon_sym_uint] = ACTIONS(6340), + [anon_sym_float] = ACTIONS(6340), + [anon_sym_range] = ACTIONS(6340), + [anon_sym_i8] = ACTIONS(6340), + [anon_sym_i16] = ACTIONS(6340), + [anon_sym_i32] = ACTIONS(6340), + [anon_sym_i64] = ACTIONS(6340), + [anon_sym_u8] = ACTIONS(6340), + [anon_sym_u16] = ACTIONS(6340), + [anon_sym_u32] = ACTIONS(6340), + [anon_sym_u64] = ACTIONS(6340), + [anon_sym_isize] = ACTIONS(6340), + [anon_sym_usize] = ACTIONS(6340), + [anon_sym_f32] = ACTIONS(6340), + [anon_sym_f64] = ACTIONS(6340), + [anon_sym_c_char] = ACTIONS(6340), + [anon_sym_c_schar] = ACTIONS(6340), + [anon_sym_c_uchar] = ACTIONS(6340), + [anon_sym_c_short] = ACTIONS(6340), + [anon_sym_c_ushort] = ACTIONS(6340), + [anon_sym_c_int] = ACTIONS(6340), + [anon_sym_c_uint] = ACTIONS(6340), + [anon_sym_c_long] = ACTIONS(6340), + [anon_sym_c_ulong] = ACTIONS(6340), + [anon_sym_c_longlong] = ACTIONS(6340), + [anon_sym_c_ulonglong] = ACTIONS(6340), + [anon_sym_c_float] = ACTIONS(6340), + [anon_sym_c_double] = ACTIONS(6340), + [anon_sym_c_longdouble] = ACTIONS(6340), + [anon_sym_PLUS_EQ] = ACTIONS(6338), + [anon_sym_DASH_EQ] = ACTIONS(6338), + [anon_sym_STAR_EQ] = ACTIONS(6338), + [anon_sym_SLASH_EQ] = ACTIONS(6338), + [anon_sym_AMP_EQ] = ACTIONS(6338), + [anon_sym_PIPE_EQ] = ACTIONS(6338), + [anon_sym_xor_EQ] = ACTIONS(6338), + [anon_sym_LT_LT_EQ] = ACTIONS(6338), + [anon_sym_GT_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6338), + [anon_sym_return] = ACTIONS(6340), + [anon_sym_yield] = ACTIONS(6340), + [anon_sym_COLON] = ACTIONS(6338), + [anon_sym_break] = ACTIONS(6340), + [anon_sym_continue] = ACTIONS(6340), + [anon_sym_defer] = ACTIONS(6340), + [anon_sym_errdefer] = ACTIONS(6340), + [anon_sym_if] = ACTIONS(6340), + [anon_sym_else] = ACTIONS(6340), + [anon_sym_while] = ACTIONS(6340), + [anon_sym_expand] = ACTIONS(6340), + [anon_sym_for] = ACTIONS(6340), + [anon_sym_match] = ACTIONS(6340), + [anon_sym_DOT_DOT] = ACTIONS(6340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6338), + [anon_sym_orelse] = ACTIONS(6340), + [anon_sym_or] = ACTIONS(6340), + [anon_sym_and] = ACTIONS(6340), + [anon_sym_EQ_EQ] = ACTIONS(6338), + [anon_sym_BANG_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6340), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_GT] = ACTIONS(6340), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_AMP] = ACTIONS(6340), + [anon_sym_xor] = ACTIONS(6340), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym_LT_LT_PIPE] = ACTIONS(6340), + [anon_sym_PLUS] = ACTIONS(6340), + [anon_sym_SLASH] = ACTIONS(6340), + [anon_sym_catch] = ACTIONS(6340), + [anon_sym_TILDE] = ACTIONS(6338), + [anon_sym_try] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6338), + [anon_sym_true] = ACTIONS(6340), + [anon_sym_false] = ACTIONS(6340), + [anon_sym_null] = ACTIONS(6340), + [anon_sym_unreachable] = ACTIONS(6340), + [anon_sym_undefined] = ACTIONS(6340), + [sym_sink] = ACTIONS(6340), + [sym_integer] = ACTIONS(6340), + [sym_float] = ACTIONS(6338), + [anon_sym_DQUOTE] = ACTIONS(6338), + [sym_multiline_string] = ACTIONS(6338), + [sym_character] = ACTIONS(6338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6338), + }, + [STATE(2848)] = { + [ts_builtin_sym_end] = ACTIONS(6342), + [sym_identifier] = ACTIONS(6344), + [anon_sym_import] = ACTIONS(6344), + [anon_sym_test] = ACTIONS(6344), + [anon_sym_hide] = ACTIONS(6344), + [anon_sym_func] = ACTIONS(6344), + [anon_sym_BANG] = ACTIONS(6344), + [anon_sym_EQ] = ACTIONS(6344), + [anon_sym_struct] = ACTIONS(6344), + [anon_sym_LPAREN] = ACTIONS(6342), + [anon_sym_RPAREN] = ACTIONS(6342), + [anon_sym_LBRACE] = ACTIONS(6342), + [anon_sym_COMMA] = ACTIONS(6342), + [anon_sym_RBRACE] = ACTIONS(6342), + [anon_sym_DASH] = ACTIONS(6344), + [anon_sym_DOLLAR] = ACTIONS(6342), + [anon_sym_PIPE] = ACTIONS(6344), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_STAR] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(6342), + [anon_sym_SEMI] = ACTIONS(6342), + [anon_sym_RBRACK] = ACTIONS(6342), + [anon_sym_void] = ACTIONS(6344), + [anon_sym_noreturn] = ACTIONS(6344), + [anon_sym_type] = ACTIONS(6344), + [anon_sym_anyopaque] = ACTIONS(6344), + [anon_sym_bool] = ACTIONS(6344), + [anon_sym_int] = ACTIONS(6344), + [anon_sym_uint] = ACTIONS(6344), + [anon_sym_float] = ACTIONS(6344), + [anon_sym_range] = ACTIONS(6344), + [anon_sym_i8] = ACTIONS(6344), + [anon_sym_i16] = ACTIONS(6344), + [anon_sym_i32] = ACTIONS(6344), + [anon_sym_i64] = ACTIONS(6344), + [anon_sym_u8] = ACTIONS(6344), + [anon_sym_u16] = ACTIONS(6344), + [anon_sym_u32] = ACTIONS(6344), + [anon_sym_u64] = ACTIONS(6344), + [anon_sym_isize] = ACTIONS(6344), + [anon_sym_usize] = ACTIONS(6344), + [anon_sym_f32] = ACTIONS(6344), + [anon_sym_f64] = ACTIONS(6344), + [anon_sym_c_char] = ACTIONS(6344), + [anon_sym_c_schar] = ACTIONS(6344), + [anon_sym_c_uchar] = ACTIONS(6344), + [anon_sym_c_short] = ACTIONS(6344), + [anon_sym_c_ushort] = ACTIONS(6344), + [anon_sym_c_int] = ACTIONS(6344), + [anon_sym_c_uint] = ACTIONS(6344), + [anon_sym_c_long] = ACTIONS(6344), + [anon_sym_c_ulong] = ACTIONS(6344), + [anon_sym_c_longlong] = ACTIONS(6344), + [anon_sym_c_ulonglong] = ACTIONS(6344), + [anon_sym_c_float] = ACTIONS(6344), + [anon_sym_c_double] = ACTIONS(6344), + [anon_sym_c_longdouble] = ACTIONS(6344), + [anon_sym_PLUS_EQ] = ACTIONS(6342), + [anon_sym_DASH_EQ] = ACTIONS(6342), + [anon_sym_STAR_EQ] = ACTIONS(6342), + [anon_sym_SLASH_EQ] = ACTIONS(6342), + [anon_sym_AMP_EQ] = ACTIONS(6342), + [anon_sym_PIPE_EQ] = ACTIONS(6342), + [anon_sym_xor_EQ] = ACTIONS(6342), + [anon_sym_LT_LT_EQ] = ACTIONS(6342), + [anon_sym_GT_GT_EQ] = ACTIONS(6342), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6342), + [anon_sym_return] = ACTIONS(6344), + [anon_sym_yield] = ACTIONS(6344), + [anon_sym_COLON] = ACTIONS(6342), + [anon_sym_break] = ACTIONS(6344), + [anon_sym_continue] = ACTIONS(6344), + [anon_sym_defer] = ACTIONS(6344), + [anon_sym_errdefer] = ACTIONS(6344), + [anon_sym_if] = ACTIONS(6344), + [anon_sym_else] = ACTIONS(6344), + [anon_sym_while] = ACTIONS(6344), + [anon_sym_expand] = ACTIONS(6344), + [anon_sym_for] = ACTIONS(6344), + [anon_sym_match] = ACTIONS(6344), + [anon_sym_DOT_DOT] = ACTIONS(6344), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6342), + [anon_sym_orelse] = ACTIONS(6344), + [anon_sym_or] = ACTIONS(6344), + [anon_sym_and] = ACTIONS(6344), + [anon_sym_EQ_EQ] = ACTIONS(6342), + [anon_sym_BANG_EQ] = ACTIONS(6342), + [anon_sym_LT] = ACTIONS(6344), + [anon_sym_LT_EQ] = ACTIONS(6342), + [anon_sym_GT] = ACTIONS(6344), + [anon_sym_GT_EQ] = ACTIONS(6342), + [anon_sym_AMP] = ACTIONS(6344), + [anon_sym_xor] = ACTIONS(6344), + [anon_sym_LT_LT] = ACTIONS(6344), + [anon_sym_GT_GT] = ACTIONS(6344), + [anon_sym_LT_LT_PIPE] = ACTIONS(6344), + [anon_sym_PLUS] = ACTIONS(6344), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_catch] = ACTIONS(6344), + [anon_sym_TILDE] = ACTIONS(6342), + [anon_sym_try] = ACTIONS(6344), + [anon_sym_DOT] = ACTIONS(6344), + [anon_sym_CARET] = ACTIONS(6342), + [anon_sym_true] = ACTIONS(6344), + [anon_sym_false] = ACTIONS(6344), + [anon_sym_null] = ACTIONS(6344), + [anon_sym_unreachable] = ACTIONS(6344), + [anon_sym_undefined] = ACTIONS(6344), + [sym_sink] = ACTIONS(6344), + [sym_integer] = ACTIONS(6344), + [sym_float] = ACTIONS(6342), + [anon_sym_DQUOTE] = ACTIONS(6342), + [sym_multiline_string] = ACTIONS(6342), + [sym_character] = ACTIONS(6342), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6342), + }, + [STATE(2849)] = { + [ts_builtin_sym_end] = ACTIONS(6346), + [sym_identifier] = ACTIONS(6348), + [anon_sym_import] = ACTIONS(6348), + [anon_sym_test] = ACTIONS(6348), + [anon_sym_hide] = ACTIONS(6348), + [anon_sym_func] = ACTIONS(6348), + [anon_sym_BANG] = ACTIONS(6348), + [anon_sym_EQ] = ACTIONS(6348), + [anon_sym_struct] = ACTIONS(6348), + [anon_sym_LPAREN] = ACTIONS(6346), + [anon_sym_RPAREN] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(6346), + [anon_sym_COMMA] = ACTIONS(6346), + [anon_sym_RBRACE] = ACTIONS(6346), + [anon_sym_DASH] = ACTIONS(6348), + [anon_sym_DOLLAR] = ACTIONS(6346), + [anon_sym_PIPE] = ACTIONS(6348), + [anon_sym_QMARK] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6348), + [anon_sym_LBRACK] = ACTIONS(6346), + [anon_sym_SEMI] = ACTIONS(6346), + [anon_sym_RBRACK] = ACTIONS(6346), + [anon_sym_void] = ACTIONS(6348), + [anon_sym_noreturn] = ACTIONS(6348), + [anon_sym_type] = ACTIONS(6348), + [anon_sym_anyopaque] = ACTIONS(6348), + [anon_sym_bool] = ACTIONS(6348), + [anon_sym_int] = ACTIONS(6348), + [anon_sym_uint] = ACTIONS(6348), + [anon_sym_float] = ACTIONS(6348), + [anon_sym_range] = ACTIONS(6348), + [anon_sym_i8] = ACTIONS(6348), + [anon_sym_i16] = ACTIONS(6348), + [anon_sym_i32] = ACTIONS(6348), + [anon_sym_i64] = ACTIONS(6348), + [anon_sym_u8] = ACTIONS(6348), + [anon_sym_u16] = ACTIONS(6348), + [anon_sym_u32] = ACTIONS(6348), + [anon_sym_u64] = ACTIONS(6348), + [anon_sym_isize] = ACTIONS(6348), + [anon_sym_usize] = ACTIONS(6348), + [anon_sym_f32] = ACTIONS(6348), + [anon_sym_f64] = ACTIONS(6348), + [anon_sym_c_char] = ACTIONS(6348), + [anon_sym_c_schar] = ACTIONS(6348), + [anon_sym_c_uchar] = ACTIONS(6348), + [anon_sym_c_short] = ACTIONS(6348), + [anon_sym_c_ushort] = ACTIONS(6348), + [anon_sym_c_int] = ACTIONS(6348), + [anon_sym_c_uint] = ACTIONS(6348), + [anon_sym_c_long] = ACTIONS(6348), + [anon_sym_c_ulong] = ACTIONS(6348), + [anon_sym_c_longlong] = ACTIONS(6348), + [anon_sym_c_ulonglong] = ACTIONS(6348), + [anon_sym_c_float] = ACTIONS(6348), + [anon_sym_c_double] = ACTIONS(6348), + [anon_sym_c_longdouble] = ACTIONS(6348), + [anon_sym_PLUS_EQ] = ACTIONS(6346), + [anon_sym_DASH_EQ] = ACTIONS(6346), + [anon_sym_STAR_EQ] = ACTIONS(6346), + [anon_sym_SLASH_EQ] = ACTIONS(6346), + [anon_sym_AMP_EQ] = ACTIONS(6346), + [anon_sym_PIPE_EQ] = ACTIONS(6346), + [anon_sym_xor_EQ] = ACTIONS(6346), + [anon_sym_LT_LT_EQ] = ACTIONS(6346), + [anon_sym_GT_GT_EQ] = ACTIONS(6346), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6346), + [anon_sym_return] = ACTIONS(6348), + [anon_sym_yield] = ACTIONS(6348), + [anon_sym_COLON] = ACTIONS(6346), + [anon_sym_break] = ACTIONS(6348), + [anon_sym_continue] = ACTIONS(6348), + [anon_sym_defer] = ACTIONS(6348), + [anon_sym_errdefer] = ACTIONS(6348), + [anon_sym_if] = ACTIONS(6348), + [anon_sym_else] = ACTIONS(6348), + [anon_sym_while] = ACTIONS(6348), + [anon_sym_expand] = ACTIONS(6348), + [anon_sym_for] = ACTIONS(6348), + [anon_sym_match] = ACTIONS(6348), + [anon_sym_DOT_DOT] = ACTIONS(6348), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6346), + [anon_sym_orelse] = ACTIONS(6348), + [anon_sym_or] = ACTIONS(6348), + [anon_sym_and] = ACTIONS(6348), + [anon_sym_EQ_EQ] = ACTIONS(6346), + [anon_sym_BANG_EQ] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6348), + [anon_sym_LT_EQ] = ACTIONS(6346), + [anon_sym_GT] = ACTIONS(6348), + [anon_sym_GT_EQ] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6348), + [anon_sym_xor] = ACTIONS(6348), + [anon_sym_LT_LT] = ACTIONS(6348), + [anon_sym_GT_GT] = ACTIONS(6348), + [anon_sym_LT_LT_PIPE] = ACTIONS(6348), + [anon_sym_PLUS] = ACTIONS(6348), + [anon_sym_SLASH] = ACTIONS(6348), + [anon_sym_catch] = ACTIONS(6348), + [anon_sym_TILDE] = ACTIONS(6346), + [anon_sym_try] = ACTIONS(6348), + [anon_sym_DOT] = ACTIONS(6348), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_true] = ACTIONS(6348), + [anon_sym_false] = ACTIONS(6348), + [anon_sym_null] = ACTIONS(6348), + [anon_sym_unreachable] = ACTIONS(6348), + [anon_sym_undefined] = ACTIONS(6348), + [sym_sink] = ACTIONS(6348), + [sym_integer] = ACTIONS(6348), + [sym_float] = ACTIONS(6346), + [anon_sym_DQUOTE] = ACTIONS(6346), + [sym_multiline_string] = ACTIONS(6346), + [sym_character] = ACTIONS(6346), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6346), + }, + [STATE(2850)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8403), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2851), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6350), + }, + [STATE(2851)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8675), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2852)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8610), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2853), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6352), + }, + [STATE(2853)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8736), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2854)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8725), + [sym_statement] = STATE(8533), + [sym_constant_declaration] = STATE(8725), + [sym_variable_declaration] = STATE(8725), + [sym_assignment_statement] = STATE(8725), + [sym_expression_statement] = STATE(8725), + [sym_return_statement] = STATE(8725), + [sym_yield_statement] = STATE(8725), + [sym_break_statement] = STATE(8725), + [sym_continue_statement] = STATE(8725), + [sym_defer_statement] = STATE(8725), + [sym_labeled_block] = STATE(8725), + [sym_if_statement] = STATE(8725), + [sym_while_statement] = STATE(8725), + [sym_for_statement] = STATE(8725), + [sym_match_statement] = STATE(8725), + [sym_expression] = STATE(9417), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(2119), + [sym_identifier] = ACTIONS(2557), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_defer] = ACTIONS(2563), + [anon_sym_errdefer] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(2567), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6354), + }, + [STATE(2855)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(4731), + [sym_statement] = STATE(4408), + [sym_constant_declaration] = STATE(4731), + [sym_variable_declaration] = STATE(4731), + [sym_assignment_statement] = STATE(4731), + [sym_expression_statement] = STATE(4731), + [sym_return_statement] = STATE(4731), + [sym_yield_statement] = STATE(4731), + [sym_break_statement] = STATE(4731), + [sym_continue_statement] = STATE(4731), + [sym_defer_statement] = STATE(4731), + [sym_labeled_block] = STATE(4731), + [sym_if_statement] = STATE(4731), + [sym_while_statement] = STATE(4731), + [sym_for_statement] = STATE(4731), + [sym_match_statement] = STATE(4731), + [sym_expression] = STATE(3398), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(301), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_defer] = ACTIONS(307), + [anon_sym_errdefer] = ACTIONS(309), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(313), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2856)] = { + [sym_struct_type] = STATE(10053), + [sym_c_struct_type] = STATE(10988), + [sym_opaque_type] = STATE(10988), + [sym_distinct_type] = STATE(10988), + [sym_alias_type] = STATE(10988), + [sym_union_type] = STATE(10988), + [sym_enum_type] = STATE(10988), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(11000), + [sym_labeled_block] = STATE(11000), + [sym_if_statement] = STATE(11000), + [sym_while_statement] = STATE(11000), + [sym_for_statement] = STATE(11000), + [sym_match_statement] = STATE(11000), + [sym__value] = STATE(11000), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(2857), + [sym_identifier] = ACTIONS(6356), + [anon_sym_import] = ACTIONS(6358), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_c_struct] = ACTIONS(6360), + [anon_sym_opaque] = ACTIONS(6362), + [anon_sym_distinct] = ACTIONS(6364), + [anon_sym_alias] = ACTIONS(6366), + [anon_sym_union] = ACTIONS(6368), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6376), + }, + [STATE(2857)] = { + [sym_struct_type] = STATE(10042), + [sym_c_struct_type] = STATE(10969), + [sym_opaque_type] = STATE(10969), + [sym_distinct_type] = STATE(10969), + [sym_alias_type] = STATE(10969), + [sym_union_type] = STATE(10969), + [sym_enum_type] = STATE(10969), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10972), + [sym_labeled_block] = STATE(10972), + [sym_if_statement] = STATE(10972), + [sym_while_statement] = STATE(10972), + [sym_for_statement] = STATE(10972), + [sym_match_statement] = STATE(10972), + [sym__value] = STATE(10972), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_import] = ACTIONS(6378), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_c_struct] = ACTIONS(6360), + [anon_sym_opaque] = ACTIONS(6362), + [anon_sym_distinct] = ACTIONS(6364), + [anon_sym_alias] = ACTIONS(6366), + [anon_sym_union] = ACTIONS(6368), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2858)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2859)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2860)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2861)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2862)] = { + [sym_variant_payload] = STATE(8692), + [sym_identifier] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_RBRACK] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2657), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_LT_LT_PIPE] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(2863)] = { + [sym_type] = STATE(14957), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(6380), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2864)] = { + [sym_type] = STATE(15056), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(6382), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2865)] = { + [sym_struct_type] = STATE(10082), + [sym_c_struct_type] = STATE(10971), + [sym_opaque_type] = STATE(10971), + [sym_distinct_type] = STATE(10971), + [sym_alias_type] = STATE(10971), + [sym_union_type] = STATE(10971), + [sym_enum_type] = STATE(10971), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10973), + [sym_labeled_block] = STATE(10973), + [sym_if_statement] = STATE(10973), + [sym_while_statement] = STATE(10973), + [sym_for_statement] = STATE(10973), + [sym_match_statement] = STATE(10973), + [sym__value] = STATE(10973), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_c_struct] = ACTIONS(6360), + [anon_sym_opaque] = ACTIONS(6362), + [anon_sym_distinct] = ACTIONS(6364), + [anon_sym_alias] = ACTIONS(6366), + [anon_sym_union] = ACTIONS(6368), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(2866)] = { + [sym_struct_type] = STATE(10083), + [sym_c_struct_type] = STATE(11001), + [sym_opaque_type] = STATE(11001), + [sym_distinct_type] = STATE(11001), + [sym_alias_type] = STATE(11001), + [sym_union_type] = STATE(11001), + [sym_enum_type] = STATE(11001), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(11004), + [sym_labeled_block] = STATE(11004), + [sym_if_statement] = STATE(11004), + [sym_while_statement] = STATE(11004), + [sym_for_statement] = STATE(11004), + [sym_match_statement] = STATE(11004), + [sym__value] = STATE(11004), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(2865), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_c_struct] = ACTIONS(6360), + [anon_sym_opaque] = ACTIONS(6362), + [anon_sym_distinct] = ACTIONS(6364), + [anon_sym_alias] = ACTIONS(6366), + [anon_sym_union] = ACTIONS(6368), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6384), + }, + [STATE(2867)] = { + [sym_type] = STATE(14855), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(6386), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2868)] = { + [sym_type] = STATE(14957), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(6380), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2869)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(6400), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(6412), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(2870)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(2871)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_c_func] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2706), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_xor_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_defer] = ACTIONS(2708), + [anon_sym_errdefer] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_expand] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_unreachable] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [sym_sink] = ACTIONS(2708), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [sym_multiline_string] = ACTIONS(2706), + [sym_character] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(2872)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_c_func] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2706), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_xor_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_defer] = ACTIONS(2708), + [anon_sym_errdefer] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_expand] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_unreachable] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [sym_sink] = ACTIONS(2708), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [sym_multiline_string] = ACTIONS(2706), + [sym_character] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(2873)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(2874)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(2875)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_c_func] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_PLUS_EQ] = ACTIONS(2710), + [anon_sym_DASH_EQ] = ACTIONS(2710), + [anon_sym_STAR_EQ] = ACTIONS(2710), + [anon_sym_SLASH_EQ] = ACTIONS(2710), + [anon_sym_AMP_EQ] = ACTIONS(2710), + [anon_sym_PIPE_EQ] = ACTIONS(2710), + [anon_sym_xor_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_defer] = ACTIONS(2712), + [anon_sym_errdefer] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_expand] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_unreachable] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [sym_sink] = ACTIONS(2712), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [sym_multiline_string] = ACTIONS(2710), + [sym_character] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(2876)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_c_func] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_PLUS_EQ] = ACTIONS(2714), + [anon_sym_DASH_EQ] = ACTIONS(2714), + [anon_sym_STAR_EQ] = ACTIONS(2714), + [anon_sym_SLASH_EQ] = ACTIONS(2714), + [anon_sym_AMP_EQ] = ACTIONS(2714), + [anon_sym_PIPE_EQ] = ACTIONS(2714), + [anon_sym_xor_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_defer] = ACTIONS(2716), + [anon_sym_errdefer] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_expand] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_unreachable] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [sym_sink] = ACTIONS(2716), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [sym_multiline_string] = ACTIONS(2714), + [sym_character] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(2877)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_c_func] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2724), + [anon_sym_xor_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_defer] = ACTIONS(2726), + [anon_sym_errdefer] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_expand] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2726), + [anon_sym_unreachable] = ACTIONS(2726), + [anon_sym_undefined] = ACTIONS(2726), + [sym_sink] = ACTIONS(2726), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [sym_multiline_string] = ACTIONS(2724), + [sym_character] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(2878)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_c_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(6416), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2879)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(2880)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(2881)] = { + [sym_variant_payload] = STATE(3056), + [sym_identifier] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_c_func] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_struct_type_BANG] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2657), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_LT_LT_PIPE] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(2882)] = { + [sym_argument_list] = STATE(2969), + [sym_identifier] = ACTIONS(2966), + [anon_sym_func] = ACTIONS(2966), + [anon_sym_c_func] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_struct_type_BANG] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_AT] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_anyopaque] = ACTIONS(2966), + [anon_sym_bool] = ACTIONS(2966), + [anon_sym_int] = ACTIONS(2966), + [anon_sym_uint] = ACTIONS(2966), + [anon_sym_float] = ACTIONS(2966), + [anon_sym_range] = ACTIONS(2966), + [anon_sym_i8] = ACTIONS(2966), + [anon_sym_i16] = ACTIONS(2966), + [anon_sym_i32] = ACTIONS(2966), + [anon_sym_i64] = ACTIONS(2966), + [anon_sym_u8] = ACTIONS(2966), + [anon_sym_u16] = ACTIONS(2966), + [anon_sym_u32] = ACTIONS(2966), + [anon_sym_u64] = ACTIONS(2966), + [anon_sym_isize] = ACTIONS(2966), + [anon_sym_usize] = ACTIONS(2966), + [anon_sym_f32] = ACTIONS(2966), + [anon_sym_f64] = ACTIONS(2966), + [anon_sym_c_char] = ACTIONS(2966), + [anon_sym_c_schar] = ACTIONS(2966), + [anon_sym_c_uchar] = ACTIONS(2966), + [anon_sym_c_short] = ACTIONS(2966), + [anon_sym_c_ushort] = ACTIONS(2966), + [anon_sym_c_int] = ACTIONS(2966), + [anon_sym_c_uint] = ACTIONS(2966), + [anon_sym_c_long] = ACTIONS(2966), + [anon_sym_c_ulong] = ACTIONS(2966), + [anon_sym_c_longlong] = ACTIONS(2966), + [anon_sym_c_ulonglong] = ACTIONS(2966), + [anon_sym_c_float] = ACTIONS(2966), + [anon_sym_c_double] = ACTIONS(2966), + [anon_sym_c_longdouble] = ACTIONS(2966), + [anon_sym_PLUS_EQ] = ACTIONS(2964), + [anon_sym_DASH_EQ] = ACTIONS(2964), + [anon_sym_STAR_EQ] = ACTIONS(2964), + [anon_sym_SLASH_EQ] = ACTIONS(2964), + [anon_sym_AMP_EQ] = ACTIONS(2964), + [anon_sym_PIPE_EQ] = ACTIONS(2964), + [anon_sym_xor_EQ] = ACTIONS(2964), + [anon_sym_LT_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_GT_EQ] = ACTIONS(2964), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_defer] = ACTIONS(2966), + [anon_sym_errdefer] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_expand] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2964), + [anon_sym_orelse] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_and] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_xor] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_LT_LT_PIPE] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_catch] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2966), + [anon_sym_false] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_unreachable] = ACTIONS(2966), + [anon_sym_undefined] = ACTIONS(2966), + [sym_sink] = ACTIONS(2966), + [sym_integer] = ACTIONS(2966), + [sym_float] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_multiline_string] = ACTIONS(2964), + [sym_character] = ACTIONS(2964), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2964), + }, + [STATE(2883)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_c_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_struct_type_BANG] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2884)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_c_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_struct_type_BANG] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2885)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_c_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_struct_type_BANG] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2886)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_c_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_struct_type_BANG] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2887)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(6400), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(6412), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(2888)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(2889)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_c_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(5706), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(5706), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_PLUS_EQ] = ACTIONS(5706), + [anon_sym_DASH_EQ] = ACTIONS(5706), + [anon_sym_STAR_EQ] = ACTIONS(5706), + [anon_sym_SLASH_EQ] = ACTIONS(5706), + [anon_sym_AMP_EQ] = ACTIONS(5706), + [anon_sym_PIPE_EQ] = ACTIONS(5706), + [anon_sym_xor_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_GT_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5706), + [anon_sym_return] = ACTIONS(5708), + [anon_sym_yield] = ACTIONS(5708), + [anon_sym_break] = ACTIONS(5708), + [anon_sym_continue] = ACTIONS(5708), + [anon_sym_defer] = ACTIONS(5708), + [anon_sym_errdefer] = ACTIONS(5708), + [anon_sym_if] = ACTIONS(5708), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_while] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_for] = ACTIONS(5708), + [anon_sym_match] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(6418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6420), + [anon_sym_orelse] = ACTIONS(6400), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(6412), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(2890)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_c_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6422), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(5748), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(5748), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6425), + [anon_sym_DASH_EQ] = ACTIONS(6425), + [anon_sym_STAR_EQ] = ACTIONS(6425), + [anon_sym_SLASH_EQ] = ACTIONS(6425), + [anon_sym_AMP_EQ] = ACTIONS(6425), + [anon_sym_PIPE_EQ] = ACTIONS(6425), + [anon_sym_xor_EQ] = ACTIONS(6425), + [anon_sym_LT_LT_EQ] = ACTIONS(6425), + [anon_sym_GT_GT_EQ] = ACTIONS(6425), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6425), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6420), + [anon_sym_orelse] = ACTIONS(6400), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(6412), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(2891)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_c_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_struct_type_BANG] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2892)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(2893)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(2894)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_c_func] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2690), + [anon_sym_xor_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_errdefer] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_expand] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_unreachable] = ACTIONS(2692), + [anon_sym_undefined] = ACTIONS(2692), + [sym_sink] = ACTIONS(2692), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [sym_multiline_string] = ACTIONS(2690), + [sym_character] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(2895)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_c_func] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2690), + [anon_sym_xor_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_errdefer] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_expand] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_unreachable] = ACTIONS(2692), + [anon_sym_undefined] = ACTIONS(2692), + [sym_sink] = ACTIONS(2692), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [sym_multiline_string] = ACTIONS(2690), + [sym_character] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(2896)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(2897)] = { + [sym_type] = STATE(15056), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(6382), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2898)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(2899)] = { + [aux_sym_type_repeat1] = STATE(2899), + [sym_identifier] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_c_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(6428), + [anon_sym_struct_type_BANG] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_PLUS_EQ] = ACTIONS(2901), + [anon_sym_DASH_EQ] = ACTIONS(2901), + [anon_sym_STAR_EQ] = ACTIONS(2901), + [anon_sym_SLASH_EQ] = ACTIONS(2901), + [anon_sym_AMP_EQ] = ACTIONS(2901), + [anon_sym_PIPE_EQ] = ACTIONS(2901), + [anon_sym_xor_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_GT_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_errdefer] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_expand] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_LT_LT_PIPE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2903), + [anon_sym_unreachable] = ACTIONS(2903), + [anon_sym_undefined] = ACTIONS(2903), + [sym_sink] = ACTIONS(2903), + [sym_integer] = ACTIONS(2903), + [sym_float] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_multiline_string] = ACTIONS(2901), + [sym_character] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(2900)] = { + [aux_sym_type_repeat1] = STATE(2902), + [sym_identifier] = ACTIONS(3026), + [anon_sym_func] = ACTIONS(3026), + [anon_sym_c_func] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_EQ] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_struct_type_BANG] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_void] = ACTIONS(3026), + [anon_sym_noreturn] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_anyopaque] = ACTIONS(3026), + [anon_sym_bool] = ACTIONS(3026), + [anon_sym_int] = ACTIONS(3026), + [anon_sym_uint] = ACTIONS(3026), + [anon_sym_float] = ACTIONS(3026), + [anon_sym_range] = ACTIONS(3026), + [anon_sym_i8] = ACTIONS(3026), + [anon_sym_i16] = ACTIONS(3026), + [anon_sym_i32] = ACTIONS(3026), + [anon_sym_i64] = ACTIONS(3026), + [anon_sym_u8] = ACTIONS(3026), + [anon_sym_u16] = ACTIONS(3026), + [anon_sym_u32] = ACTIONS(3026), + [anon_sym_u64] = ACTIONS(3026), + [anon_sym_isize] = ACTIONS(3026), + [anon_sym_usize] = ACTIONS(3026), + [anon_sym_f32] = ACTIONS(3026), + [anon_sym_f64] = ACTIONS(3026), + [anon_sym_c_char] = ACTIONS(3026), + [anon_sym_c_schar] = ACTIONS(3026), + [anon_sym_c_uchar] = ACTIONS(3026), + [anon_sym_c_short] = ACTIONS(3026), + [anon_sym_c_ushort] = ACTIONS(3026), + [anon_sym_c_int] = ACTIONS(3026), + [anon_sym_c_uint] = ACTIONS(3026), + [anon_sym_c_long] = ACTIONS(3026), + [anon_sym_c_ulong] = ACTIONS(3026), + [anon_sym_c_longlong] = ACTIONS(3026), + [anon_sym_c_ulonglong] = ACTIONS(3026), + [anon_sym_c_float] = ACTIONS(3026), + [anon_sym_c_double] = ACTIONS(3026), + [anon_sym_c_longdouble] = ACTIONS(3026), + [anon_sym_PLUS_EQ] = ACTIONS(3024), + [anon_sym_DASH_EQ] = ACTIONS(3024), + [anon_sym_STAR_EQ] = ACTIONS(3024), + [anon_sym_SLASH_EQ] = ACTIONS(3024), + [anon_sym_AMP_EQ] = ACTIONS(3024), + [anon_sym_PIPE_EQ] = ACTIONS(3024), + [anon_sym_xor_EQ] = ACTIONS(3024), + [anon_sym_LT_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_GT_EQ] = ACTIONS(3024), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_defer] = ACTIONS(3026), + [anon_sym_errdefer] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_expand] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(3026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3024), + [anon_sym_orelse] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3026), + [anon_sym_and] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_xor] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_LT_LT_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_catch] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3026), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3026), + [anon_sym_unreachable] = ACTIONS(3026), + [anon_sym_undefined] = ACTIONS(3026), + [sym_sink] = ACTIONS(3026), + [sym_integer] = ACTIONS(3026), + [sym_float] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [sym_multiline_string] = ACTIONS(3024), + [sym_character] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3024), + }, + [STATE(2901)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(2902)] = { + [aux_sym_type_repeat1] = STATE(2899), + [sym_identifier] = ACTIONS(3058), + [anon_sym_func] = ACTIONS(3058), + [anon_sym_c_func] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_struct_type_BANG] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_AT] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_void] = ACTIONS(3058), + [anon_sym_noreturn] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_anyopaque] = ACTIONS(3058), + [anon_sym_bool] = ACTIONS(3058), + [anon_sym_int] = ACTIONS(3058), + [anon_sym_uint] = ACTIONS(3058), + [anon_sym_float] = ACTIONS(3058), + [anon_sym_range] = ACTIONS(3058), + [anon_sym_i8] = ACTIONS(3058), + [anon_sym_i16] = ACTIONS(3058), + [anon_sym_i32] = ACTIONS(3058), + [anon_sym_i64] = ACTIONS(3058), + [anon_sym_u8] = ACTIONS(3058), + [anon_sym_u16] = ACTIONS(3058), + [anon_sym_u32] = ACTIONS(3058), + [anon_sym_u64] = ACTIONS(3058), + [anon_sym_isize] = ACTIONS(3058), + [anon_sym_usize] = ACTIONS(3058), + [anon_sym_f32] = ACTIONS(3058), + [anon_sym_f64] = ACTIONS(3058), + [anon_sym_c_char] = ACTIONS(3058), + [anon_sym_c_schar] = ACTIONS(3058), + [anon_sym_c_uchar] = ACTIONS(3058), + [anon_sym_c_short] = ACTIONS(3058), + [anon_sym_c_ushort] = ACTIONS(3058), + [anon_sym_c_int] = ACTIONS(3058), + [anon_sym_c_uint] = ACTIONS(3058), + [anon_sym_c_long] = ACTIONS(3058), + [anon_sym_c_ulong] = ACTIONS(3058), + [anon_sym_c_longlong] = ACTIONS(3058), + [anon_sym_c_ulonglong] = ACTIONS(3058), + [anon_sym_c_float] = ACTIONS(3058), + [anon_sym_c_double] = ACTIONS(3058), + [anon_sym_c_longdouble] = ACTIONS(3058), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_AMP_EQ] = ACTIONS(3056), + [anon_sym_PIPE_EQ] = ACTIONS(3056), + [anon_sym_xor_EQ] = ACTIONS(3056), + [anon_sym_LT_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_GT_EQ] = ACTIONS(3056), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_errdefer] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_expand] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3056), + [anon_sym_orelse] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_and] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_xor] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_LT_LT_PIPE] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_catch] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_unreachable] = ACTIONS(3058), + [anon_sym_undefined] = ACTIONS(3058), + [sym_sink] = ACTIONS(3058), + [sym_integer] = ACTIONS(3058), + [sym_float] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3056), + [sym_multiline_string] = ACTIONS(3056), + [sym_character] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3056), + }, + [STATE(2903)] = { + [sym_variant_payload] = STATE(3056), + [sym_identifier] = ACTIONS(2659), + [anon_sym_func] = ACTIONS(2659), + [anon_sym_c_func] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(6431), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_DOLLAR] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_struct_type_BANG] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_anyopaque] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_int] = ACTIONS(2659), + [anon_sym_uint] = ACTIONS(2659), + [anon_sym_float] = ACTIONS(2659), + [anon_sym_range] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_c_char] = ACTIONS(2659), + [anon_sym_c_schar] = ACTIONS(2659), + [anon_sym_c_uchar] = ACTIONS(2659), + [anon_sym_c_short] = ACTIONS(2659), + [anon_sym_c_ushort] = ACTIONS(2659), + [anon_sym_c_int] = ACTIONS(2659), + [anon_sym_c_uint] = ACTIONS(2659), + [anon_sym_c_long] = ACTIONS(2659), + [anon_sym_c_ulong] = ACTIONS(2659), + [anon_sym_c_longlong] = ACTIONS(2659), + [anon_sym_c_ulonglong] = ACTIONS(2659), + [anon_sym_c_float] = ACTIONS(2659), + [anon_sym_c_double] = ACTIONS(2659), + [anon_sym_c_longdouble] = ACTIONS(2659), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2657), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_defer] = ACTIONS(2659), + [anon_sym_errdefer] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_expand] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_match] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2657), + [anon_sym_orelse] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_xor] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_PIPE] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_null] = ACTIONS(2659), + [anon_sym_unreachable] = ACTIONS(2659), + [anon_sym_undefined] = ACTIONS(2659), + [sym_sink] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_multiline_string] = ACTIONS(2657), + [sym_character] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2657), + }, + [STATE(2904)] = { + [sym_identifier] = ACTIONS(4490), + [anon_sym_func] = ACTIONS(4490), + [anon_sym_c_func] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_struct_type_BANG] = ACTIONS(4488), + [anon_sym_QMARK] = ACTIONS(4488), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_void] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym_type] = ACTIONS(4490), + [anon_sym_anyopaque] = ACTIONS(4490), + [anon_sym_bool] = ACTIONS(4490), + [anon_sym_int] = ACTIONS(4490), + [anon_sym_uint] = ACTIONS(4490), + [anon_sym_float] = ACTIONS(4490), + [anon_sym_range] = ACTIONS(4490), + [anon_sym_i8] = ACTIONS(4490), + [anon_sym_i16] = ACTIONS(4490), + [anon_sym_i32] = ACTIONS(4490), + [anon_sym_i64] = ACTIONS(4490), + [anon_sym_u8] = ACTIONS(4490), + [anon_sym_u16] = ACTIONS(4490), + [anon_sym_u32] = ACTIONS(4490), + [anon_sym_u64] = ACTIONS(4490), + [anon_sym_isize] = ACTIONS(4490), + [anon_sym_usize] = ACTIONS(4490), + [anon_sym_f32] = ACTIONS(4490), + [anon_sym_f64] = ACTIONS(4490), + [anon_sym_c_char] = ACTIONS(4490), + [anon_sym_c_schar] = ACTIONS(4490), + [anon_sym_c_uchar] = ACTIONS(4490), + [anon_sym_c_short] = ACTIONS(4490), + [anon_sym_c_ushort] = ACTIONS(4490), + [anon_sym_c_int] = ACTIONS(4490), + [anon_sym_c_uint] = ACTIONS(4490), + [anon_sym_c_long] = ACTIONS(4490), + [anon_sym_c_ulong] = ACTIONS(4490), + [anon_sym_c_longlong] = ACTIONS(4490), + [anon_sym_c_ulonglong] = ACTIONS(4490), + [anon_sym_c_float] = ACTIONS(4490), + [anon_sym_c_double] = ACTIONS(4490), + [anon_sym_c_longdouble] = ACTIONS(4490), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_AMP_EQ] = ACTIONS(4488), + [anon_sym_PIPE_EQ] = ACTIONS(4488), + [anon_sym_xor_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_GT_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_yield] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(6434), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_defer] = ACTIONS(4490), + [anon_sym_errdefer] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_else] = ACTIONS(4490), + [anon_sym_while] = ACTIONS(4490), + [anon_sym_expand] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_DOT_DOT] = ACTIONS(4490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4488), + [anon_sym_orelse] = ACTIONS(4490), + [anon_sym_or] = ACTIONS(4490), + [anon_sym_and] = ACTIONS(4490), + [anon_sym_EQ_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4488), + [anon_sym_LT] = ACTIONS(4490), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT] = ACTIONS(4490), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_xor] = ACTIONS(4490), + [anon_sym_LT_LT] = ACTIONS(4490), + [anon_sym_GT_GT] = ACTIONS(4490), + [anon_sym_LT_LT_PIPE] = ACTIONS(4490), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_SLASH] = ACTIONS(4490), + [anon_sym_catch] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4490), + [anon_sym_false] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4490), + [anon_sym_unreachable] = ACTIONS(4490), + [anon_sym_undefined] = ACTIONS(4490), + [sym_sink] = ACTIONS(4490), + [sym_integer] = ACTIONS(4490), + [sym_float] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4488), + [sym_multiline_string] = ACTIONS(4488), + [sym_character] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4488), + }, + [STATE(2905)] = { + [sym_identifier] = ACTIONS(4496), + [anon_sym_func] = ACTIONS(4496), + [anon_sym_c_func] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_COMMA] = ACTIONS(4494), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_DOLLAR] = ACTIONS(4494), + [anon_sym_PIPE] = ACTIONS(4496), + [anon_sym_struct_type_BANG] = ACTIONS(4494), + [anon_sym_QMARK] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4494), + [anon_sym_void] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_anyopaque] = ACTIONS(4496), + [anon_sym_bool] = ACTIONS(4496), + [anon_sym_int] = ACTIONS(4496), + [anon_sym_uint] = ACTIONS(4496), + [anon_sym_float] = ACTIONS(4496), + [anon_sym_range] = ACTIONS(4496), + [anon_sym_i8] = ACTIONS(4496), + [anon_sym_i16] = ACTIONS(4496), + [anon_sym_i32] = ACTIONS(4496), + [anon_sym_i64] = ACTIONS(4496), + [anon_sym_u8] = ACTIONS(4496), + [anon_sym_u16] = ACTIONS(4496), + [anon_sym_u32] = ACTIONS(4496), + [anon_sym_u64] = ACTIONS(4496), + [anon_sym_isize] = ACTIONS(4496), + [anon_sym_usize] = ACTIONS(4496), + [anon_sym_f32] = ACTIONS(4496), + [anon_sym_f64] = ACTIONS(4496), + [anon_sym_c_char] = ACTIONS(4496), + [anon_sym_c_schar] = ACTIONS(4496), + [anon_sym_c_uchar] = ACTIONS(4496), + [anon_sym_c_short] = ACTIONS(4496), + [anon_sym_c_ushort] = ACTIONS(4496), + [anon_sym_c_int] = ACTIONS(4496), + [anon_sym_c_uint] = ACTIONS(4496), + [anon_sym_c_long] = ACTIONS(4496), + [anon_sym_c_ulong] = ACTIONS(4496), + [anon_sym_c_longlong] = ACTIONS(4496), + [anon_sym_c_ulonglong] = ACTIONS(4496), + [anon_sym_c_float] = ACTIONS(4496), + [anon_sym_c_double] = ACTIONS(4496), + [anon_sym_c_longdouble] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4494), + [anon_sym_DASH_EQ] = ACTIONS(4494), + [anon_sym_STAR_EQ] = ACTIONS(4494), + [anon_sym_SLASH_EQ] = ACTIONS(4494), + [anon_sym_AMP_EQ] = ACTIONS(4494), + [anon_sym_PIPE_EQ] = ACTIONS(4494), + [anon_sym_xor_EQ] = ACTIONS(4494), + [anon_sym_LT_LT_EQ] = ACTIONS(4494), + [anon_sym_GT_GT_EQ] = ACTIONS(4494), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_yield] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(6436), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_defer] = ACTIONS(4496), + [anon_sym_errdefer] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_expand] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_match] = ACTIONS(4496), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4494), + [anon_sym_orelse] = ACTIONS(4496), + [anon_sym_or] = ACTIONS(4496), + [anon_sym_and] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_LT] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_xor] = ACTIONS(4496), + [anon_sym_LT_LT] = ACTIONS(4496), + [anon_sym_GT_GT] = ACTIONS(4496), + [anon_sym_LT_LT_PIPE] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_SLASH] = ACTIONS(4496), + [anon_sym_catch] = ACTIONS(4496), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_DOT] = ACTIONS(4496), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym_true] = ACTIONS(4496), + [anon_sym_false] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4496), + [anon_sym_unreachable] = ACTIONS(4496), + [anon_sym_undefined] = ACTIONS(4496), + [sym_sink] = ACTIONS(4496), + [sym_integer] = ACTIONS(4496), + [sym_float] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_multiline_string] = ACTIONS(4494), + [sym_character] = ACTIONS(4494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4494), + }, + [STATE(2906)] = { + [aux_sym_import_declaration_repeat1] = STATE(14432), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_c_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4394), + [anon_sym_struct_type_BANG] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_AMP_EQ] = ACTIONS(4392), + [anon_sym_PIPE_EQ] = ACTIONS(4392), + [anon_sym_xor_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_GT_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4392), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(6438), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_LT_LT_PIPE] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6441), + }, + [STATE(2907)] = { + [aux_sym_import_declaration_repeat1] = STATE(14433), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_c_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4406), + [anon_sym_struct_type_BANG] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_AMP_EQ] = ACTIONS(4404), + [anon_sym_PIPE_EQ] = ACTIONS(4404), + [anon_sym_xor_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_GT_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(6444), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4406), + [anon_sym_LT_LT_PIPE] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6447), + }, + [STATE(2908)] = { + [aux_sym_import_declaration_repeat1] = STATE(14435), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_c_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4428), + [anon_sym_struct_type_BANG] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_AMP_EQ] = ACTIONS(4426), + [anon_sym_PIPE_EQ] = ACTIONS(4426), + [anon_sym_xor_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_GT_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4426), + [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(6450), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4428), + [anon_sym_LT_LT_PIPE] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_SLASH] = ACTIONS(4428), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(6453), + }, + [STATE(2909)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_c_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_struct_type_BANG] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2910)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_c_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_struct_type_BANG] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2911)] = { + [aux_sym_import_declaration_repeat1] = STATE(14436), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_c_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4446), + [anon_sym_struct_type_BANG] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_AMP_EQ] = ACTIONS(4444), + [anon_sym_PIPE_EQ] = ACTIONS(4444), + [anon_sym_xor_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_GT_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(6456), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT_PIPE] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6459), + }, + [STATE(2912)] = { + [aux_sym_import_declaration_repeat1] = STATE(14445), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_c_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_COMMA] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_struct_type_BANG] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_AT] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_PLUS_EQ] = ACTIONS(4456), + [anon_sym_DASH_EQ] = ACTIONS(4456), + [anon_sym_STAR_EQ] = ACTIONS(4456), + [anon_sym_SLASH_EQ] = ACTIONS(4456), + [anon_sym_AMP_EQ] = ACTIONS(4456), + [anon_sym_PIPE_EQ] = ACTIONS(4456), + [anon_sym_xor_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_EQ] = ACTIONS(4456), + [anon_sym_GT_GT_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(6462), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4458), + [anon_sym_LT_LT_PIPE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(4458), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6465), + }, + [STATE(2913)] = { + [aux_sym_import_declaration_repeat1] = STATE(14452), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_c_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_struct_type_BANG] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_AMP_EQ] = ACTIONS(4474), + [anon_sym_PIPE_EQ] = ACTIONS(4474), + [anon_sym_xor_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_GT_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_yield] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_errdefer] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(6468), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_LT_LT_PIPE] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6471), + }, + [STATE(2914)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_c_func] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(6390), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_struct_type_BANG] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_xor_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_errdefer] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_expand] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(6402), + [anon_sym_and] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6406), + [anon_sym_BANG_EQ] = ACTIONS(6406), + [anon_sym_LT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(6406), + [anon_sym_GT] = ACTIONS(6408), + [anon_sym_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6392), + [anon_sym_xor] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(6410), + [anon_sym_GT_GT] = ACTIONS(6410), + [anon_sym_LT_LT_PIPE] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_unreachable] = ACTIONS(2696), + [anon_sym_undefined] = ACTIONS(2696), + [sym_sink] = ACTIONS(2696), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [sym_multiline_string] = ACTIONS(2694), + [sym_character] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(2915)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_c_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_struct_type_BANG] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2916)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_c_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_struct_type_BANG] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2917)] = { + [sym_type] = STATE(14855), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(6386), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(2918)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(6396), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(2919)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_c_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_struct_type_BANG] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2920)] = { + [sym_identifier] = ACTIONS(6082), + [anon_sym_func] = ACTIONS(6082), + [anon_sym_c_func] = ACTIONS(6082), + [anon_sym_BANG] = ACTIONS(6082), + [anon_sym_EQ] = ACTIONS(6082), + [anon_sym_struct] = ACTIONS(6082), + [anon_sym_LPAREN] = ACTIONS(6080), + [anon_sym_LBRACE] = ACTIONS(6080), + [anon_sym_COMMA] = ACTIONS(6080), + [anon_sym_RBRACE] = ACTIONS(6080), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_DOLLAR] = ACTIONS(6080), + [anon_sym_PIPE] = ACTIONS(6082), + [anon_sym_struct_type_BANG] = ACTIONS(6080), + [anon_sym_QMARK] = ACTIONS(6080), + [anon_sym_AT] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6080), + [anon_sym_void] = ACTIONS(6082), + [anon_sym_noreturn] = ACTIONS(6082), + [anon_sym_type] = ACTIONS(6082), + [anon_sym_anyopaque] = ACTIONS(6082), + [anon_sym_bool] = ACTIONS(6082), + [anon_sym_int] = ACTIONS(6082), + [anon_sym_uint] = ACTIONS(6082), + [anon_sym_float] = ACTIONS(6082), + [anon_sym_range] = ACTIONS(6082), + [anon_sym_i8] = ACTIONS(6082), + [anon_sym_i16] = ACTIONS(6082), + [anon_sym_i32] = ACTIONS(6082), + [anon_sym_i64] = ACTIONS(6082), + [anon_sym_u8] = ACTIONS(6082), + [anon_sym_u16] = ACTIONS(6082), + [anon_sym_u32] = ACTIONS(6082), + [anon_sym_u64] = ACTIONS(6082), + [anon_sym_isize] = ACTIONS(6082), + [anon_sym_usize] = ACTIONS(6082), + [anon_sym_f32] = ACTIONS(6082), + [anon_sym_f64] = ACTIONS(6082), + [anon_sym_c_char] = ACTIONS(6082), + [anon_sym_c_schar] = ACTIONS(6082), + [anon_sym_c_uchar] = ACTIONS(6082), + [anon_sym_c_short] = ACTIONS(6082), + [anon_sym_c_ushort] = ACTIONS(6082), + [anon_sym_c_int] = ACTIONS(6082), + [anon_sym_c_uint] = ACTIONS(6082), + [anon_sym_c_long] = ACTIONS(6082), + [anon_sym_c_ulong] = ACTIONS(6082), + [anon_sym_c_longlong] = ACTIONS(6082), + [anon_sym_c_ulonglong] = ACTIONS(6082), + [anon_sym_c_float] = ACTIONS(6082), + [anon_sym_c_double] = ACTIONS(6082), + [anon_sym_c_longdouble] = ACTIONS(6082), + [anon_sym_PLUS_EQ] = ACTIONS(6080), + [anon_sym_DASH_EQ] = ACTIONS(6080), + [anon_sym_STAR_EQ] = ACTIONS(6080), + [anon_sym_SLASH_EQ] = ACTIONS(6080), + [anon_sym_AMP_EQ] = ACTIONS(6080), + [anon_sym_PIPE_EQ] = ACTIONS(6080), + [anon_sym_xor_EQ] = ACTIONS(6080), + [anon_sym_LT_LT_EQ] = ACTIONS(6080), + [anon_sym_GT_GT_EQ] = ACTIONS(6080), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6080), + [anon_sym_return] = ACTIONS(6082), + [anon_sym_yield] = ACTIONS(6082), + [anon_sym_break] = ACTIONS(6082), + [anon_sym_continue] = ACTIONS(6082), + [anon_sym_defer] = ACTIONS(6082), + [anon_sym_errdefer] = ACTIONS(6082), + [anon_sym_if] = ACTIONS(6082), + [anon_sym_else] = ACTIONS(6082), + [anon_sym_while] = ACTIONS(6082), + [anon_sym_expand] = ACTIONS(6082), + [anon_sym_for] = ACTIONS(6082), + [anon_sym_match] = ACTIONS(6082), + [anon_sym_DOT_DOT] = ACTIONS(6082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6080), + [anon_sym_orelse] = ACTIONS(6082), + [anon_sym_or] = ACTIONS(6082), + [anon_sym_and] = ACTIONS(6082), + [anon_sym_EQ_EQ] = ACTIONS(6080), + [anon_sym_BANG_EQ] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(6082), + [anon_sym_LT_EQ] = ACTIONS(6080), + [anon_sym_GT] = ACTIONS(6082), + [anon_sym_GT_EQ] = ACTIONS(6080), + [anon_sym_AMP] = ACTIONS(6082), + [anon_sym_xor] = ACTIONS(6082), + [anon_sym_LT_LT] = ACTIONS(6082), + [anon_sym_GT_GT] = ACTIONS(6082), + [anon_sym_LT_LT_PIPE] = ACTIONS(6082), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_SLASH] = ACTIONS(6082), + [anon_sym_catch] = ACTIONS(6082), + [anon_sym_TILDE] = ACTIONS(6080), + [anon_sym_try] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6082), + [anon_sym_CARET] = ACTIONS(6080), + [anon_sym_true] = ACTIONS(6082), + [anon_sym_false] = ACTIONS(6082), + [anon_sym_null] = ACTIONS(6082), + [anon_sym_unreachable] = ACTIONS(6082), + [anon_sym_undefined] = ACTIONS(6082), + [sym_sink] = ACTIONS(6082), + [sym_integer] = ACTIONS(6082), + [sym_float] = ACTIONS(6080), + [anon_sym_DQUOTE] = ACTIONS(6080), + [sym_multiline_string] = ACTIONS(6080), + [sym_character] = ACTIONS(6080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6080), + }, + [STATE(2921)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_test] = ACTIONS(2666), + [anon_sym_hide] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2922)] = { + [sym_identifier] = ACTIONS(5488), + [anon_sym_func] = ACTIONS(5488), + [anon_sym_c_func] = ACTIONS(5488), + [anon_sym_BANG] = ACTIONS(5488), + [anon_sym_EQ] = ACTIONS(5488), + [anon_sym_struct] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5486), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_COMMA] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5488), + [anon_sym_DOLLAR] = ACTIONS(5486), + [anon_sym_PIPE] = ACTIONS(5488), + [anon_sym_struct_type_BANG] = ACTIONS(5486), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_AT] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5486), + [anon_sym_void] = ACTIONS(5488), + [anon_sym_noreturn] = ACTIONS(5488), + [anon_sym_type] = ACTIONS(5488), + [anon_sym_anyopaque] = ACTIONS(5488), + [anon_sym_bool] = ACTIONS(5488), + [anon_sym_int] = ACTIONS(5488), + [anon_sym_uint] = ACTIONS(5488), + [anon_sym_float] = ACTIONS(5488), + [anon_sym_range] = ACTIONS(5488), + [anon_sym_i8] = ACTIONS(5488), + [anon_sym_i16] = ACTIONS(5488), + [anon_sym_i32] = ACTIONS(5488), + [anon_sym_i64] = ACTIONS(5488), + [anon_sym_u8] = ACTIONS(5488), + [anon_sym_u16] = ACTIONS(5488), + [anon_sym_u32] = ACTIONS(5488), + [anon_sym_u64] = ACTIONS(5488), + [anon_sym_isize] = ACTIONS(5488), + [anon_sym_usize] = ACTIONS(5488), + [anon_sym_f32] = ACTIONS(5488), + [anon_sym_f64] = ACTIONS(5488), + [anon_sym_c_char] = ACTIONS(5488), + [anon_sym_c_schar] = ACTIONS(5488), + [anon_sym_c_uchar] = ACTIONS(5488), + [anon_sym_c_short] = ACTIONS(5488), + [anon_sym_c_ushort] = ACTIONS(5488), + [anon_sym_c_int] = ACTIONS(5488), + [anon_sym_c_uint] = ACTIONS(5488), + [anon_sym_c_long] = ACTIONS(5488), + [anon_sym_c_ulong] = ACTIONS(5488), + [anon_sym_c_longlong] = ACTIONS(5488), + [anon_sym_c_ulonglong] = ACTIONS(5488), + [anon_sym_c_float] = ACTIONS(5488), + [anon_sym_c_double] = ACTIONS(5488), + [anon_sym_c_longdouble] = ACTIONS(5488), + [anon_sym_PLUS_EQ] = ACTIONS(5486), + [anon_sym_DASH_EQ] = ACTIONS(5486), + [anon_sym_STAR_EQ] = ACTIONS(5486), + [anon_sym_SLASH_EQ] = ACTIONS(5486), + [anon_sym_AMP_EQ] = ACTIONS(5486), + [anon_sym_PIPE_EQ] = ACTIONS(5486), + [anon_sym_xor_EQ] = ACTIONS(5486), + [anon_sym_LT_LT_EQ] = ACTIONS(5486), + [anon_sym_GT_GT_EQ] = ACTIONS(5486), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5486), + [anon_sym_return] = ACTIONS(5488), + [anon_sym_yield] = ACTIONS(5488), + [anon_sym_break] = ACTIONS(5488), + [anon_sym_continue] = ACTIONS(5488), + [anon_sym_defer] = ACTIONS(5488), + [anon_sym_errdefer] = ACTIONS(5488), + [anon_sym_if] = ACTIONS(5488), + [anon_sym_else] = ACTIONS(5488), + [anon_sym_while] = ACTIONS(5488), + [anon_sym_expand] = ACTIONS(5488), + [anon_sym_for] = ACTIONS(5488), + [anon_sym_match] = ACTIONS(5488), + [anon_sym_DOT_DOT] = ACTIONS(5488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5486), + [anon_sym_orelse] = ACTIONS(5488), + [anon_sym_or] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5486), + [anon_sym_BANG_EQ] = ACTIONS(5486), + [anon_sym_LT] = ACTIONS(5488), + [anon_sym_LT_EQ] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_xor] = ACTIONS(5488), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5488), + [anon_sym_LT_LT_PIPE] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5488), + [anon_sym_SLASH] = ACTIONS(5488), + [anon_sym_catch] = ACTIONS(5488), + [anon_sym_TILDE] = ACTIONS(5486), + [anon_sym_try] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5486), + [anon_sym_true] = ACTIONS(5488), + [anon_sym_false] = ACTIONS(5488), + [anon_sym_null] = ACTIONS(5488), + [anon_sym_unreachable] = ACTIONS(5488), + [anon_sym_undefined] = ACTIONS(5488), + [sym_sink] = ACTIONS(5488), + [sym_integer] = ACTIONS(5488), + [sym_float] = ACTIONS(5486), + [anon_sym_DQUOTE] = ACTIONS(5486), + [sym_multiline_string] = ACTIONS(5486), + [sym_character] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5486), + }, + [STATE(2923)] = { + [sym_identifier] = ACTIONS(5492), + [anon_sym_func] = ACTIONS(5492), + [anon_sym_c_func] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(5492), + [anon_sym_EQ] = ACTIONS(5492), + [anon_sym_struct] = ACTIONS(5492), + [anon_sym_LPAREN] = ACTIONS(5490), + [anon_sym_LBRACE] = ACTIONS(5490), + [anon_sym_COMMA] = ACTIONS(5490), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5492), + [anon_sym_DOLLAR] = ACTIONS(5490), + [anon_sym_PIPE] = ACTIONS(5492), + [anon_sym_struct_type_BANG] = ACTIONS(5490), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_AT] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(5490), + [anon_sym_void] = ACTIONS(5492), + [anon_sym_noreturn] = ACTIONS(5492), + [anon_sym_type] = ACTIONS(5492), + [anon_sym_anyopaque] = ACTIONS(5492), + [anon_sym_bool] = ACTIONS(5492), + [anon_sym_int] = ACTIONS(5492), + [anon_sym_uint] = ACTIONS(5492), + [anon_sym_float] = ACTIONS(5492), + [anon_sym_range] = ACTIONS(5492), + [anon_sym_i8] = ACTIONS(5492), + [anon_sym_i16] = ACTIONS(5492), + [anon_sym_i32] = ACTIONS(5492), + [anon_sym_i64] = ACTIONS(5492), + [anon_sym_u8] = ACTIONS(5492), + [anon_sym_u16] = ACTIONS(5492), + [anon_sym_u32] = ACTIONS(5492), + [anon_sym_u64] = ACTIONS(5492), + [anon_sym_isize] = ACTIONS(5492), + [anon_sym_usize] = ACTIONS(5492), + [anon_sym_f32] = ACTIONS(5492), + [anon_sym_f64] = ACTIONS(5492), + [anon_sym_c_char] = ACTIONS(5492), + [anon_sym_c_schar] = ACTIONS(5492), + [anon_sym_c_uchar] = ACTIONS(5492), + [anon_sym_c_short] = ACTIONS(5492), + [anon_sym_c_ushort] = ACTIONS(5492), + [anon_sym_c_int] = ACTIONS(5492), + [anon_sym_c_uint] = ACTIONS(5492), + [anon_sym_c_long] = ACTIONS(5492), + [anon_sym_c_ulong] = ACTIONS(5492), + [anon_sym_c_longlong] = ACTIONS(5492), + [anon_sym_c_ulonglong] = ACTIONS(5492), + [anon_sym_c_float] = ACTIONS(5492), + [anon_sym_c_double] = ACTIONS(5492), + [anon_sym_c_longdouble] = ACTIONS(5492), + [anon_sym_PLUS_EQ] = ACTIONS(5490), + [anon_sym_DASH_EQ] = ACTIONS(5490), + [anon_sym_STAR_EQ] = ACTIONS(5490), + [anon_sym_SLASH_EQ] = ACTIONS(5490), + [anon_sym_AMP_EQ] = ACTIONS(5490), + [anon_sym_PIPE_EQ] = ACTIONS(5490), + [anon_sym_xor_EQ] = ACTIONS(5490), + [anon_sym_LT_LT_EQ] = ACTIONS(5490), + [anon_sym_GT_GT_EQ] = ACTIONS(5490), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5490), + [anon_sym_return] = ACTIONS(5492), + [anon_sym_yield] = ACTIONS(5492), + [anon_sym_break] = ACTIONS(5492), + [anon_sym_continue] = ACTIONS(5492), + [anon_sym_defer] = ACTIONS(5492), + [anon_sym_errdefer] = ACTIONS(5492), + [anon_sym_if] = ACTIONS(5492), + [anon_sym_else] = ACTIONS(5492), + [anon_sym_while] = ACTIONS(5492), + [anon_sym_expand] = ACTIONS(5492), + [anon_sym_for] = ACTIONS(5492), + [anon_sym_match] = ACTIONS(5492), + [anon_sym_DOT_DOT] = ACTIONS(5492), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5490), + [anon_sym_orelse] = ACTIONS(5492), + [anon_sym_or] = ACTIONS(5492), + [anon_sym_and] = ACTIONS(5492), + [anon_sym_EQ_EQ] = ACTIONS(5490), + [anon_sym_BANG_EQ] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5492), + [anon_sym_LT_EQ] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5492), + [anon_sym_GT_EQ] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5492), + [anon_sym_xor] = ACTIONS(5492), + [anon_sym_LT_LT] = ACTIONS(5492), + [anon_sym_GT_GT] = ACTIONS(5492), + [anon_sym_LT_LT_PIPE] = ACTIONS(5492), + [anon_sym_PLUS] = ACTIONS(5492), + [anon_sym_SLASH] = ACTIONS(5492), + [anon_sym_catch] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5490), + [anon_sym_try] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(5492), + [anon_sym_CARET] = ACTIONS(5490), + [anon_sym_true] = ACTIONS(5492), + [anon_sym_false] = ACTIONS(5492), + [anon_sym_null] = ACTIONS(5492), + [anon_sym_unreachable] = ACTIONS(5492), + [anon_sym_undefined] = ACTIONS(5492), + [sym_sink] = ACTIONS(5492), + [sym_integer] = ACTIONS(5492), + [sym_float] = ACTIONS(5490), + [anon_sym_DQUOTE] = ACTIONS(5490), + [sym_multiline_string] = ACTIONS(5490), + [sym_character] = ACTIONS(5490), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5490), + }, + [STATE(2924)] = { + [sym_identifier] = ACTIONS(5496), + [anon_sym_func] = ACTIONS(5496), + [anon_sym_c_func] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5496), + [anon_sym_EQ] = ACTIONS(5496), + [anon_sym_struct] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5494), + [anon_sym_COMMA] = ACTIONS(5494), + [anon_sym_RBRACE] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5496), + [anon_sym_DOLLAR] = ACTIONS(5494), + [anon_sym_PIPE] = ACTIONS(5496), + [anon_sym_struct_type_BANG] = ACTIONS(5494), + [anon_sym_QMARK] = ACTIONS(5494), + [anon_sym_AT] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_void] = ACTIONS(5496), + [anon_sym_noreturn] = ACTIONS(5496), + [anon_sym_type] = ACTIONS(5496), + [anon_sym_anyopaque] = ACTIONS(5496), + [anon_sym_bool] = ACTIONS(5496), + [anon_sym_int] = ACTIONS(5496), + [anon_sym_uint] = ACTIONS(5496), + [anon_sym_float] = ACTIONS(5496), + [anon_sym_range] = ACTIONS(5496), + [anon_sym_i8] = ACTIONS(5496), + [anon_sym_i16] = ACTIONS(5496), + [anon_sym_i32] = ACTIONS(5496), + [anon_sym_i64] = ACTIONS(5496), + [anon_sym_u8] = ACTIONS(5496), + [anon_sym_u16] = ACTIONS(5496), + [anon_sym_u32] = ACTIONS(5496), + [anon_sym_u64] = ACTIONS(5496), + [anon_sym_isize] = ACTIONS(5496), + [anon_sym_usize] = ACTIONS(5496), + [anon_sym_f32] = ACTIONS(5496), + [anon_sym_f64] = ACTIONS(5496), + [anon_sym_c_char] = ACTIONS(5496), + [anon_sym_c_schar] = ACTIONS(5496), + [anon_sym_c_uchar] = ACTIONS(5496), + [anon_sym_c_short] = ACTIONS(5496), + [anon_sym_c_ushort] = ACTIONS(5496), + [anon_sym_c_int] = ACTIONS(5496), + [anon_sym_c_uint] = ACTIONS(5496), + [anon_sym_c_long] = ACTIONS(5496), + [anon_sym_c_ulong] = ACTIONS(5496), + [anon_sym_c_longlong] = ACTIONS(5496), + [anon_sym_c_ulonglong] = ACTIONS(5496), + [anon_sym_c_float] = ACTIONS(5496), + [anon_sym_c_double] = ACTIONS(5496), + [anon_sym_c_longdouble] = ACTIONS(5496), + [anon_sym_PLUS_EQ] = ACTIONS(5494), + [anon_sym_DASH_EQ] = ACTIONS(5494), + [anon_sym_STAR_EQ] = ACTIONS(5494), + [anon_sym_SLASH_EQ] = ACTIONS(5494), + [anon_sym_AMP_EQ] = ACTIONS(5494), + [anon_sym_PIPE_EQ] = ACTIONS(5494), + [anon_sym_xor_EQ] = ACTIONS(5494), + [anon_sym_LT_LT_EQ] = ACTIONS(5494), + [anon_sym_GT_GT_EQ] = ACTIONS(5494), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5494), + [anon_sym_return] = ACTIONS(5496), + [anon_sym_yield] = ACTIONS(5496), + [anon_sym_break] = ACTIONS(5496), + [anon_sym_continue] = ACTIONS(5496), + [anon_sym_defer] = ACTIONS(5496), + [anon_sym_errdefer] = ACTIONS(5496), + [anon_sym_if] = ACTIONS(5496), + [anon_sym_else] = ACTIONS(5496), + [anon_sym_while] = ACTIONS(5496), + [anon_sym_expand] = ACTIONS(5496), + [anon_sym_for] = ACTIONS(5496), + [anon_sym_match] = ACTIONS(5496), + [anon_sym_DOT_DOT] = ACTIONS(5496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5494), + [anon_sym_orelse] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5496), + [anon_sym_and] = ACTIONS(5496), + [anon_sym_EQ_EQ] = ACTIONS(5494), + [anon_sym_BANG_EQ] = ACTIONS(5494), + [anon_sym_LT] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5494), + [anon_sym_GT] = ACTIONS(5496), + [anon_sym_GT_EQ] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5496), + [anon_sym_xor] = ACTIONS(5496), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5496), + [anon_sym_LT_LT_PIPE] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5496), + [anon_sym_SLASH] = ACTIONS(5496), + [anon_sym_catch] = ACTIONS(5496), + [anon_sym_TILDE] = ACTIONS(5494), + [anon_sym_try] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5496), + [anon_sym_CARET] = ACTIONS(5494), + [anon_sym_true] = ACTIONS(5496), + [anon_sym_false] = ACTIONS(5496), + [anon_sym_null] = ACTIONS(5496), + [anon_sym_unreachable] = ACTIONS(5496), + [anon_sym_undefined] = ACTIONS(5496), + [sym_sink] = ACTIONS(5496), + [sym_integer] = ACTIONS(5496), + [sym_float] = ACTIONS(5494), + [anon_sym_DQUOTE] = ACTIONS(5494), + [sym_multiline_string] = ACTIONS(5494), + [sym_character] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5494), + }, + [STATE(2925)] = { + [sym_identifier] = ACTIONS(5500), + [anon_sym_func] = ACTIONS(5500), + [anon_sym_c_func] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5500), + [anon_sym_EQ] = ACTIONS(5500), + [anon_sym_struct] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5500), + [anon_sym_DOLLAR] = ACTIONS(5498), + [anon_sym_PIPE] = ACTIONS(5500), + [anon_sym_struct_type_BANG] = ACTIONS(5498), + [anon_sym_QMARK] = ACTIONS(5498), + [anon_sym_AT] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5498), + [anon_sym_void] = ACTIONS(5500), + [anon_sym_noreturn] = ACTIONS(5500), + [anon_sym_type] = ACTIONS(5500), + [anon_sym_anyopaque] = ACTIONS(5500), + [anon_sym_bool] = ACTIONS(5500), + [anon_sym_int] = ACTIONS(5500), + [anon_sym_uint] = ACTIONS(5500), + [anon_sym_float] = ACTIONS(5500), + [anon_sym_range] = ACTIONS(5500), + [anon_sym_i8] = ACTIONS(5500), + [anon_sym_i16] = ACTIONS(5500), + [anon_sym_i32] = ACTIONS(5500), + [anon_sym_i64] = ACTIONS(5500), + [anon_sym_u8] = ACTIONS(5500), + [anon_sym_u16] = ACTIONS(5500), + [anon_sym_u32] = ACTIONS(5500), + [anon_sym_u64] = ACTIONS(5500), + [anon_sym_isize] = ACTIONS(5500), + [anon_sym_usize] = ACTIONS(5500), + [anon_sym_f32] = ACTIONS(5500), + [anon_sym_f64] = ACTIONS(5500), + [anon_sym_c_char] = ACTIONS(5500), + [anon_sym_c_schar] = ACTIONS(5500), + [anon_sym_c_uchar] = ACTIONS(5500), + [anon_sym_c_short] = ACTIONS(5500), + [anon_sym_c_ushort] = ACTIONS(5500), + [anon_sym_c_int] = ACTIONS(5500), + [anon_sym_c_uint] = ACTIONS(5500), + [anon_sym_c_long] = ACTIONS(5500), + [anon_sym_c_ulong] = ACTIONS(5500), + [anon_sym_c_longlong] = ACTIONS(5500), + [anon_sym_c_ulonglong] = ACTIONS(5500), + [anon_sym_c_float] = ACTIONS(5500), + [anon_sym_c_double] = ACTIONS(5500), + [anon_sym_c_longdouble] = ACTIONS(5500), + [anon_sym_PLUS_EQ] = ACTIONS(5498), + [anon_sym_DASH_EQ] = ACTIONS(5498), + [anon_sym_STAR_EQ] = ACTIONS(5498), + [anon_sym_SLASH_EQ] = ACTIONS(5498), + [anon_sym_AMP_EQ] = ACTIONS(5498), + [anon_sym_PIPE_EQ] = ACTIONS(5498), + [anon_sym_xor_EQ] = ACTIONS(5498), + [anon_sym_LT_LT_EQ] = ACTIONS(5498), + [anon_sym_GT_GT_EQ] = ACTIONS(5498), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5498), + [anon_sym_return] = ACTIONS(5500), + [anon_sym_yield] = ACTIONS(5500), + [anon_sym_break] = ACTIONS(5500), + [anon_sym_continue] = ACTIONS(5500), + [anon_sym_defer] = ACTIONS(5500), + [anon_sym_errdefer] = ACTIONS(5500), + [anon_sym_if] = ACTIONS(5500), + [anon_sym_else] = ACTIONS(5500), + [anon_sym_while] = ACTIONS(5500), + [anon_sym_expand] = ACTIONS(5500), + [anon_sym_for] = ACTIONS(5500), + [anon_sym_match] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5498), + [anon_sym_orelse] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5498), + [anon_sym_BANG_EQ] = ACTIONS(5498), + [anon_sym_LT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5498), + [anon_sym_GT] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5500), + [anon_sym_xor] = ACTIONS(5500), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5500), + [anon_sym_LT_LT_PIPE] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5500), + [anon_sym_SLASH] = ACTIONS(5500), + [anon_sym_catch] = ACTIONS(5500), + [anon_sym_TILDE] = ACTIONS(5498), + [anon_sym_try] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5500), + [anon_sym_CARET] = ACTIONS(5498), + [anon_sym_true] = ACTIONS(5500), + [anon_sym_false] = ACTIONS(5500), + [anon_sym_null] = ACTIONS(5500), + [anon_sym_unreachable] = ACTIONS(5500), + [anon_sym_undefined] = ACTIONS(5500), + [sym_sink] = ACTIONS(5500), + [sym_integer] = ACTIONS(5500), + [sym_float] = ACTIONS(5498), + [anon_sym_DQUOTE] = ACTIONS(5498), + [sym_multiline_string] = ACTIONS(5498), + [sym_character] = ACTIONS(5498), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5498), + }, + [STATE(2926)] = { + [sym_identifier] = ACTIONS(5504), + [anon_sym_func] = ACTIONS(5504), + [anon_sym_c_func] = ACTIONS(5504), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(5504), + [anon_sym_struct] = ACTIONS(5504), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5502), + [anon_sym_COMMA] = ACTIONS(5502), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5504), + [anon_sym_DOLLAR] = ACTIONS(5502), + [anon_sym_PIPE] = ACTIONS(5504), + [anon_sym_struct_type_BANG] = ACTIONS(5502), + [anon_sym_QMARK] = ACTIONS(5502), + [anon_sym_AT] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(5502), + [anon_sym_void] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym_type] = ACTIONS(5504), + [anon_sym_anyopaque] = ACTIONS(5504), + [anon_sym_bool] = ACTIONS(5504), + [anon_sym_int] = ACTIONS(5504), + [anon_sym_uint] = ACTIONS(5504), + [anon_sym_float] = ACTIONS(5504), + [anon_sym_range] = ACTIONS(5504), + [anon_sym_i8] = ACTIONS(5504), + [anon_sym_i16] = ACTIONS(5504), + [anon_sym_i32] = ACTIONS(5504), + [anon_sym_i64] = ACTIONS(5504), + [anon_sym_u8] = ACTIONS(5504), + [anon_sym_u16] = ACTIONS(5504), + [anon_sym_u32] = ACTIONS(5504), + [anon_sym_u64] = ACTIONS(5504), + [anon_sym_isize] = ACTIONS(5504), + [anon_sym_usize] = ACTIONS(5504), + [anon_sym_f32] = ACTIONS(5504), + [anon_sym_f64] = ACTIONS(5504), + [anon_sym_c_char] = ACTIONS(5504), + [anon_sym_c_schar] = ACTIONS(5504), + [anon_sym_c_uchar] = ACTIONS(5504), + [anon_sym_c_short] = ACTIONS(5504), + [anon_sym_c_ushort] = ACTIONS(5504), + [anon_sym_c_int] = ACTIONS(5504), + [anon_sym_c_uint] = ACTIONS(5504), + [anon_sym_c_long] = ACTIONS(5504), + [anon_sym_c_ulong] = ACTIONS(5504), + [anon_sym_c_longlong] = ACTIONS(5504), + [anon_sym_c_ulonglong] = ACTIONS(5504), + [anon_sym_c_float] = ACTIONS(5504), + [anon_sym_c_double] = ACTIONS(5504), + [anon_sym_c_longdouble] = ACTIONS(5504), + [anon_sym_PLUS_EQ] = ACTIONS(5502), + [anon_sym_DASH_EQ] = ACTIONS(5502), + [anon_sym_STAR_EQ] = ACTIONS(5502), + [anon_sym_SLASH_EQ] = ACTIONS(5502), + [anon_sym_AMP_EQ] = ACTIONS(5502), + [anon_sym_PIPE_EQ] = ACTIONS(5502), + [anon_sym_xor_EQ] = ACTIONS(5502), + [anon_sym_LT_LT_EQ] = ACTIONS(5502), + [anon_sym_GT_GT_EQ] = ACTIONS(5502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5502), + [anon_sym_return] = ACTIONS(5504), + [anon_sym_yield] = ACTIONS(5504), + [anon_sym_break] = ACTIONS(5504), + [anon_sym_continue] = ACTIONS(5504), + [anon_sym_defer] = ACTIONS(5504), + [anon_sym_errdefer] = ACTIONS(5504), + [anon_sym_if] = ACTIONS(5504), + [anon_sym_else] = ACTIONS(5504), + [anon_sym_while] = ACTIONS(5504), + [anon_sym_expand] = ACTIONS(5504), + [anon_sym_for] = ACTIONS(5504), + [anon_sym_match] = ACTIONS(5504), + [anon_sym_DOT_DOT] = ACTIONS(5504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5502), + [anon_sym_orelse] = ACTIONS(5504), + [anon_sym_or] = ACTIONS(5504), + [anon_sym_and] = ACTIONS(5504), + [anon_sym_EQ_EQ] = ACTIONS(5502), + [anon_sym_BANG_EQ] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_LT_EQ] = ACTIONS(5502), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_GT_EQ] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_xor] = ACTIONS(5504), + [anon_sym_LT_LT] = ACTIONS(5504), + [anon_sym_GT_GT] = ACTIONS(5504), + [anon_sym_LT_LT_PIPE] = ACTIONS(5504), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_SLASH] = ACTIONS(5504), + [anon_sym_catch] = ACTIONS(5504), + [anon_sym_TILDE] = ACTIONS(5502), + [anon_sym_try] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5502), + [anon_sym_true] = ACTIONS(5504), + [anon_sym_false] = ACTIONS(5504), + [anon_sym_null] = ACTIONS(5504), + [anon_sym_unreachable] = ACTIONS(5504), + [anon_sym_undefined] = ACTIONS(5504), + [sym_sink] = ACTIONS(5504), + [sym_integer] = ACTIONS(5504), + [sym_float] = ACTIONS(5502), + [anon_sym_DQUOTE] = ACTIONS(5502), + [sym_multiline_string] = ACTIONS(5502), + [sym_character] = ACTIONS(5502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5502), + }, + [STATE(2927)] = { + [sym_identifier] = ACTIONS(5508), + [anon_sym_func] = ACTIONS(5508), + [anon_sym_c_func] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(5508), + [anon_sym_struct] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LBRACE] = ACTIONS(5506), + [anon_sym_COMMA] = ACTIONS(5506), + [anon_sym_RBRACE] = ACTIONS(5506), + [anon_sym_DASH] = ACTIONS(5508), + [anon_sym_DOLLAR] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5508), + [anon_sym_struct_type_BANG] = ACTIONS(5506), + [anon_sym_QMARK] = ACTIONS(5506), + [anon_sym_AT] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_void] = ACTIONS(5508), + [anon_sym_noreturn] = ACTIONS(5508), + [anon_sym_type] = ACTIONS(5508), + [anon_sym_anyopaque] = ACTIONS(5508), + [anon_sym_bool] = ACTIONS(5508), + [anon_sym_int] = ACTIONS(5508), + [anon_sym_uint] = ACTIONS(5508), + [anon_sym_float] = ACTIONS(5508), + [anon_sym_range] = ACTIONS(5508), + [anon_sym_i8] = ACTIONS(5508), + [anon_sym_i16] = ACTIONS(5508), + [anon_sym_i32] = ACTIONS(5508), + [anon_sym_i64] = ACTIONS(5508), + [anon_sym_u8] = ACTIONS(5508), + [anon_sym_u16] = ACTIONS(5508), + [anon_sym_u32] = ACTIONS(5508), + [anon_sym_u64] = ACTIONS(5508), + [anon_sym_isize] = ACTIONS(5508), + [anon_sym_usize] = ACTIONS(5508), + [anon_sym_f32] = ACTIONS(5508), + [anon_sym_f64] = ACTIONS(5508), + [anon_sym_c_char] = ACTIONS(5508), + [anon_sym_c_schar] = ACTIONS(5508), + [anon_sym_c_uchar] = ACTIONS(5508), + [anon_sym_c_short] = ACTIONS(5508), + [anon_sym_c_ushort] = ACTIONS(5508), + [anon_sym_c_int] = ACTIONS(5508), + [anon_sym_c_uint] = ACTIONS(5508), + [anon_sym_c_long] = ACTIONS(5508), + [anon_sym_c_ulong] = ACTIONS(5508), + [anon_sym_c_longlong] = ACTIONS(5508), + [anon_sym_c_ulonglong] = ACTIONS(5508), + [anon_sym_c_float] = ACTIONS(5508), + [anon_sym_c_double] = ACTIONS(5508), + [anon_sym_c_longdouble] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(5506), + [anon_sym_DASH_EQ] = ACTIONS(5506), + [anon_sym_STAR_EQ] = ACTIONS(5506), + [anon_sym_SLASH_EQ] = ACTIONS(5506), + [anon_sym_AMP_EQ] = ACTIONS(5506), + [anon_sym_PIPE_EQ] = ACTIONS(5506), + [anon_sym_xor_EQ] = ACTIONS(5506), + [anon_sym_LT_LT_EQ] = ACTIONS(5506), + [anon_sym_GT_GT_EQ] = ACTIONS(5506), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5506), + [anon_sym_return] = ACTIONS(5508), + [anon_sym_yield] = ACTIONS(5508), + [anon_sym_break] = ACTIONS(5508), + [anon_sym_continue] = ACTIONS(5508), + [anon_sym_defer] = ACTIONS(5508), + [anon_sym_errdefer] = ACTIONS(5508), + [anon_sym_if] = ACTIONS(5508), + [anon_sym_else] = ACTIONS(5508), + [anon_sym_while] = ACTIONS(5508), + [anon_sym_expand] = ACTIONS(5508), + [anon_sym_for] = ACTIONS(5508), + [anon_sym_match] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5506), + [anon_sym_orelse] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_LT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5506), + [anon_sym_GT] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_xor] = ACTIONS(5508), + [anon_sym_LT_LT] = ACTIONS(5508), + [anon_sym_GT_GT] = ACTIONS(5508), + [anon_sym_LT_LT_PIPE] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5508), + [anon_sym_catch] = ACTIONS(5508), + [anon_sym_TILDE] = ACTIONS(5506), + [anon_sym_try] = ACTIONS(5508), + [anon_sym_DOT] = ACTIONS(5508), + [anon_sym_CARET] = ACTIONS(5506), + [anon_sym_true] = ACTIONS(5508), + [anon_sym_false] = ACTIONS(5508), + [anon_sym_null] = ACTIONS(5508), + [anon_sym_unreachable] = ACTIONS(5508), + [anon_sym_undefined] = ACTIONS(5508), + [sym_sink] = ACTIONS(5508), + [sym_integer] = ACTIONS(5508), + [sym_float] = ACTIONS(5506), + [anon_sym_DQUOTE] = ACTIONS(5506), + [sym_multiline_string] = ACTIONS(5506), + [sym_character] = ACTIONS(5506), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5506), + }, + [STATE(2928)] = { + [sym_identifier] = ACTIONS(5512), + [anon_sym_func] = ACTIONS(5512), + [anon_sym_c_func] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(5512), + [anon_sym_EQ] = ACTIONS(5512), + [anon_sym_struct] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5510), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_COMMA] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_DOLLAR] = ACTIONS(5510), + [anon_sym_PIPE] = ACTIONS(5512), + [anon_sym_struct_type_BANG] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_AT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5510), + [anon_sym_void] = ACTIONS(5512), + [anon_sym_noreturn] = ACTIONS(5512), + [anon_sym_type] = ACTIONS(5512), + [anon_sym_anyopaque] = ACTIONS(5512), + [anon_sym_bool] = ACTIONS(5512), + [anon_sym_int] = ACTIONS(5512), + [anon_sym_uint] = ACTIONS(5512), + [anon_sym_float] = ACTIONS(5512), + [anon_sym_range] = ACTIONS(5512), + [anon_sym_i8] = ACTIONS(5512), + [anon_sym_i16] = ACTIONS(5512), + [anon_sym_i32] = ACTIONS(5512), + [anon_sym_i64] = ACTIONS(5512), + [anon_sym_u8] = ACTIONS(5512), + [anon_sym_u16] = ACTIONS(5512), + [anon_sym_u32] = ACTIONS(5512), + [anon_sym_u64] = ACTIONS(5512), + [anon_sym_isize] = ACTIONS(5512), + [anon_sym_usize] = ACTIONS(5512), + [anon_sym_f32] = ACTIONS(5512), + [anon_sym_f64] = ACTIONS(5512), + [anon_sym_c_char] = ACTIONS(5512), + [anon_sym_c_schar] = ACTIONS(5512), + [anon_sym_c_uchar] = ACTIONS(5512), + [anon_sym_c_short] = ACTIONS(5512), + [anon_sym_c_ushort] = ACTIONS(5512), + [anon_sym_c_int] = ACTIONS(5512), + [anon_sym_c_uint] = ACTIONS(5512), + [anon_sym_c_long] = ACTIONS(5512), + [anon_sym_c_ulong] = ACTIONS(5512), + [anon_sym_c_longlong] = ACTIONS(5512), + [anon_sym_c_ulonglong] = ACTIONS(5512), + [anon_sym_c_float] = ACTIONS(5512), + [anon_sym_c_double] = ACTIONS(5512), + [anon_sym_c_longdouble] = ACTIONS(5512), + [anon_sym_PLUS_EQ] = ACTIONS(5510), + [anon_sym_DASH_EQ] = ACTIONS(5510), + [anon_sym_STAR_EQ] = ACTIONS(5510), + [anon_sym_SLASH_EQ] = ACTIONS(5510), + [anon_sym_AMP_EQ] = ACTIONS(5510), + [anon_sym_PIPE_EQ] = ACTIONS(5510), + [anon_sym_xor_EQ] = ACTIONS(5510), + [anon_sym_LT_LT_EQ] = ACTIONS(5510), + [anon_sym_GT_GT_EQ] = ACTIONS(5510), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5510), + [anon_sym_return] = ACTIONS(5512), + [anon_sym_yield] = ACTIONS(5512), + [anon_sym_break] = ACTIONS(5512), + [anon_sym_continue] = ACTIONS(5512), + [anon_sym_defer] = ACTIONS(5512), + [anon_sym_errdefer] = ACTIONS(5512), + [anon_sym_if] = ACTIONS(5512), + [anon_sym_else] = ACTIONS(5512), + [anon_sym_while] = ACTIONS(5512), + [anon_sym_expand] = ACTIONS(5512), + [anon_sym_for] = ACTIONS(5512), + [anon_sym_match] = ACTIONS(5512), + [anon_sym_DOT_DOT] = ACTIONS(5512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5510), + [anon_sym_orelse] = ACTIONS(5512), + [anon_sym_or] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5510), + [anon_sym_BANG_EQ] = ACTIONS(5510), + [anon_sym_LT] = ACTIONS(5512), + [anon_sym_LT_EQ] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_xor] = ACTIONS(5512), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5512), + [anon_sym_LT_LT_PIPE] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5512), + [anon_sym_catch] = ACTIONS(5512), + [anon_sym_TILDE] = ACTIONS(5510), + [anon_sym_try] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5510), + [anon_sym_true] = ACTIONS(5512), + [anon_sym_false] = ACTIONS(5512), + [anon_sym_null] = ACTIONS(5512), + [anon_sym_unreachable] = ACTIONS(5512), + [anon_sym_undefined] = ACTIONS(5512), + [sym_sink] = ACTIONS(5512), + [sym_integer] = ACTIONS(5512), + [sym_float] = ACTIONS(5510), + [anon_sym_DQUOTE] = ACTIONS(5510), + [sym_multiline_string] = ACTIONS(5510), + [sym_character] = ACTIONS(5510), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5510), + }, + [STATE(2929)] = { + [sym_identifier] = ACTIONS(5516), + [anon_sym_func] = ACTIONS(5516), + [anon_sym_c_func] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5516), + [anon_sym_EQ] = ACTIONS(5516), + [anon_sym_struct] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_COMMA] = ACTIONS(5514), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_DOLLAR] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5516), + [anon_sym_struct_type_BANG] = ACTIONS(5514), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_AT] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_void] = ACTIONS(5516), + [anon_sym_noreturn] = ACTIONS(5516), + [anon_sym_type] = ACTIONS(5516), + [anon_sym_anyopaque] = ACTIONS(5516), + [anon_sym_bool] = ACTIONS(5516), + [anon_sym_int] = ACTIONS(5516), + [anon_sym_uint] = ACTIONS(5516), + [anon_sym_float] = ACTIONS(5516), + [anon_sym_range] = ACTIONS(5516), + [anon_sym_i8] = ACTIONS(5516), + [anon_sym_i16] = ACTIONS(5516), + [anon_sym_i32] = ACTIONS(5516), + [anon_sym_i64] = ACTIONS(5516), + [anon_sym_u8] = ACTIONS(5516), + [anon_sym_u16] = ACTIONS(5516), + [anon_sym_u32] = ACTIONS(5516), + [anon_sym_u64] = ACTIONS(5516), + [anon_sym_isize] = ACTIONS(5516), + [anon_sym_usize] = ACTIONS(5516), + [anon_sym_f32] = ACTIONS(5516), + [anon_sym_f64] = ACTIONS(5516), + [anon_sym_c_char] = ACTIONS(5516), + [anon_sym_c_schar] = ACTIONS(5516), + [anon_sym_c_uchar] = ACTIONS(5516), + [anon_sym_c_short] = ACTIONS(5516), + [anon_sym_c_ushort] = ACTIONS(5516), + [anon_sym_c_int] = ACTIONS(5516), + [anon_sym_c_uint] = ACTIONS(5516), + [anon_sym_c_long] = ACTIONS(5516), + [anon_sym_c_ulong] = ACTIONS(5516), + [anon_sym_c_longlong] = ACTIONS(5516), + [anon_sym_c_ulonglong] = ACTIONS(5516), + [anon_sym_c_float] = ACTIONS(5516), + [anon_sym_c_double] = ACTIONS(5516), + [anon_sym_c_longdouble] = ACTIONS(5516), + [anon_sym_PLUS_EQ] = ACTIONS(5514), + [anon_sym_DASH_EQ] = ACTIONS(5514), + [anon_sym_STAR_EQ] = ACTIONS(5514), + [anon_sym_SLASH_EQ] = ACTIONS(5514), + [anon_sym_AMP_EQ] = ACTIONS(5514), + [anon_sym_PIPE_EQ] = ACTIONS(5514), + [anon_sym_xor_EQ] = ACTIONS(5514), + [anon_sym_LT_LT_EQ] = ACTIONS(5514), + [anon_sym_GT_GT_EQ] = ACTIONS(5514), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5514), + [anon_sym_return] = ACTIONS(5516), + [anon_sym_yield] = ACTIONS(5516), + [anon_sym_break] = ACTIONS(5516), + [anon_sym_continue] = ACTIONS(5516), + [anon_sym_defer] = ACTIONS(5516), + [anon_sym_errdefer] = ACTIONS(5516), + [anon_sym_if] = ACTIONS(5516), + [anon_sym_else] = ACTIONS(5516), + [anon_sym_while] = ACTIONS(5516), + [anon_sym_expand] = ACTIONS(5516), + [anon_sym_for] = ACTIONS(5516), + [anon_sym_match] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5514), + [anon_sym_orelse] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5514), + [anon_sym_BANG_EQ] = ACTIONS(5514), + [anon_sym_LT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_xor] = ACTIONS(5516), + [anon_sym_LT_LT] = ACTIONS(5516), + [anon_sym_GT_GT] = ACTIONS(5516), + [anon_sym_LT_LT_PIPE] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_SLASH] = ACTIONS(5516), + [anon_sym_catch] = ACTIONS(5516), + [anon_sym_TILDE] = ACTIONS(5514), + [anon_sym_try] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5516), + [anon_sym_CARET] = ACTIONS(5514), + [anon_sym_true] = ACTIONS(5516), + [anon_sym_false] = ACTIONS(5516), + [anon_sym_null] = ACTIONS(5516), + [anon_sym_unreachable] = ACTIONS(5516), + [anon_sym_undefined] = ACTIONS(5516), + [sym_sink] = ACTIONS(5516), + [sym_integer] = ACTIONS(5516), + [sym_float] = ACTIONS(5514), + [anon_sym_DQUOTE] = ACTIONS(5514), + [sym_multiline_string] = ACTIONS(5514), + [sym_character] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5514), + }, + [STATE(2930)] = { + [sym_identifier] = ACTIONS(5520), + [anon_sym_func] = ACTIONS(5520), + [anon_sym_c_func] = ACTIONS(5520), + [anon_sym_BANG] = ACTIONS(5520), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_struct] = ACTIONS(5520), + [anon_sym_LPAREN] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_RBRACE] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_DOLLAR] = ACTIONS(5518), + [anon_sym_PIPE] = ACTIONS(5520), + [anon_sym_struct_type_BANG] = ACTIONS(5518), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_AT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_void] = ACTIONS(5520), + [anon_sym_noreturn] = ACTIONS(5520), + [anon_sym_type] = ACTIONS(5520), + [anon_sym_anyopaque] = ACTIONS(5520), + [anon_sym_bool] = ACTIONS(5520), + [anon_sym_int] = ACTIONS(5520), + [anon_sym_uint] = ACTIONS(5520), + [anon_sym_float] = ACTIONS(5520), + [anon_sym_range] = ACTIONS(5520), + [anon_sym_i8] = ACTIONS(5520), + [anon_sym_i16] = ACTIONS(5520), + [anon_sym_i32] = ACTIONS(5520), + [anon_sym_i64] = ACTIONS(5520), + [anon_sym_u8] = ACTIONS(5520), + [anon_sym_u16] = ACTIONS(5520), + [anon_sym_u32] = ACTIONS(5520), + [anon_sym_u64] = ACTIONS(5520), + [anon_sym_isize] = ACTIONS(5520), + [anon_sym_usize] = ACTIONS(5520), + [anon_sym_f32] = ACTIONS(5520), + [anon_sym_f64] = ACTIONS(5520), + [anon_sym_c_char] = ACTIONS(5520), + [anon_sym_c_schar] = ACTIONS(5520), + [anon_sym_c_uchar] = ACTIONS(5520), + [anon_sym_c_short] = ACTIONS(5520), + [anon_sym_c_ushort] = ACTIONS(5520), + [anon_sym_c_int] = ACTIONS(5520), + [anon_sym_c_uint] = ACTIONS(5520), + [anon_sym_c_long] = ACTIONS(5520), + [anon_sym_c_ulong] = ACTIONS(5520), + [anon_sym_c_longlong] = ACTIONS(5520), + [anon_sym_c_ulonglong] = ACTIONS(5520), + [anon_sym_c_float] = ACTIONS(5520), + [anon_sym_c_double] = ACTIONS(5520), + [anon_sym_c_longdouble] = ACTIONS(5520), + [anon_sym_PLUS_EQ] = ACTIONS(5518), + [anon_sym_DASH_EQ] = ACTIONS(5518), + [anon_sym_STAR_EQ] = ACTIONS(5518), + [anon_sym_SLASH_EQ] = ACTIONS(5518), + [anon_sym_AMP_EQ] = ACTIONS(5518), + [anon_sym_PIPE_EQ] = ACTIONS(5518), + [anon_sym_xor_EQ] = ACTIONS(5518), + [anon_sym_LT_LT_EQ] = ACTIONS(5518), + [anon_sym_GT_GT_EQ] = ACTIONS(5518), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5518), + [anon_sym_return] = ACTIONS(5520), + [anon_sym_yield] = ACTIONS(5520), + [anon_sym_break] = ACTIONS(5520), + [anon_sym_continue] = ACTIONS(5520), + [anon_sym_defer] = ACTIONS(5520), + [anon_sym_errdefer] = ACTIONS(5520), + [anon_sym_if] = ACTIONS(5520), + [anon_sym_else] = ACTIONS(5520), + [anon_sym_while] = ACTIONS(5520), + [anon_sym_expand] = ACTIONS(5520), + [anon_sym_for] = ACTIONS(5520), + [anon_sym_match] = ACTIONS(5520), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5518), + [anon_sym_orelse] = ACTIONS(5520), + [anon_sym_or] = ACTIONS(5520), + [anon_sym_and] = ACTIONS(5520), + [anon_sym_EQ_EQ] = ACTIONS(5518), + [anon_sym_BANG_EQ] = ACTIONS(5518), + [anon_sym_LT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5520), + [anon_sym_GT_EQ] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5520), + [anon_sym_xor] = ACTIONS(5520), + [anon_sym_LT_LT] = ACTIONS(5520), + [anon_sym_GT_GT] = ACTIONS(5520), + [anon_sym_LT_LT_PIPE] = ACTIONS(5520), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_SLASH] = ACTIONS(5520), + [anon_sym_catch] = ACTIONS(5520), + [anon_sym_TILDE] = ACTIONS(5518), + [anon_sym_try] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(5520), + [anon_sym_CARET] = ACTIONS(5518), + [anon_sym_true] = ACTIONS(5520), + [anon_sym_false] = ACTIONS(5520), + [anon_sym_null] = ACTIONS(5520), + [anon_sym_unreachable] = ACTIONS(5520), + [anon_sym_undefined] = ACTIONS(5520), + [sym_sink] = ACTIONS(5520), + [sym_integer] = ACTIONS(5520), + [sym_float] = ACTIONS(5518), + [anon_sym_DQUOTE] = ACTIONS(5518), + [sym_multiline_string] = ACTIONS(5518), + [sym_character] = ACTIONS(5518), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5518), + }, + [STATE(2931)] = { + [sym_identifier] = ACTIONS(5524), + [anon_sym_func] = ACTIONS(5524), + [anon_sym_c_func] = ACTIONS(5524), + [anon_sym_BANG] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5524), + [anon_sym_struct] = ACTIONS(5524), + [anon_sym_LPAREN] = ACTIONS(5522), + [anon_sym_LBRACE] = ACTIONS(5522), + [anon_sym_COMMA] = ACTIONS(5522), + [anon_sym_RBRACE] = ACTIONS(5522), + [anon_sym_DASH] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5522), + [anon_sym_PIPE] = ACTIONS(5524), + [anon_sym_struct_type_BANG] = ACTIONS(5522), + [anon_sym_QMARK] = ACTIONS(5522), + [anon_sym_AT] = ACTIONS(5522), + [anon_sym_STAR] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_void] = ACTIONS(5524), + [anon_sym_noreturn] = ACTIONS(5524), + [anon_sym_type] = ACTIONS(5524), + [anon_sym_anyopaque] = ACTIONS(5524), + [anon_sym_bool] = ACTIONS(5524), + [anon_sym_int] = ACTIONS(5524), + [anon_sym_uint] = ACTIONS(5524), + [anon_sym_float] = ACTIONS(5524), + [anon_sym_range] = ACTIONS(5524), + [anon_sym_i8] = ACTIONS(5524), + [anon_sym_i16] = ACTIONS(5524), + [anon_sym_i32] = ACTIONS(5524), + [anon_sym_i64] = ACTIONS(5524), + [anon_sym_u8] = ACTIONS(5524), + [anon_sym_u16] = ACTIONS(5524), + [anon_sym_u32] = ACTIONS(5524), + [anon_sym_u64] = ACTIONS(5524), + [anon_sym_isize] = ACTIONS(5524), + [anon_sym_usize] = ACTIONS(5524), + [anon_sym_f32] = ACTIONS(5524), + [anon_sym_f64] = ACTIONS(5524), + [anon_sym_c_char] = ACTIONS(5524), + [anon_sym_c_schar] = ACTIONS(5524), + [anon_sym_c_uchar] = ACTIONS(5524), + [anon_sym_c_short] = ACTIONS(5524), + [anon_sym_c_ushort] = ACTIONS(5524), + [anon_sym_c_int] = ACTIONS(5524), + [anon_sym_c_uint] = ACTIONS(5524), + [anon_sym_c_long] = ACTIONS(5524), + [anon_sym_c_ulong] = ACTIONS(5524), + [anon_sym_c_longlong] = ACTIONS(5524), + [anon_sym_c_ulonglong] = ACTIONS(5524), + [anon_sym_c_float] = ACTIONS(5524), + [anon_sym_c_double] = ACTIONS(5524), + [anon_sym_c_longdouble] = ACTIONS(5524), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_xor_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5522), + [anon_sym_return] = ACTIONS(5524), + [anon_sym_yield] = ACTIONS(5524), + [anon_sym_break] = ACTIONS(5524), + [anon_sym_continue] = ACTIONS(5524), + [anon_sym_defer] = ACTIONS(5524), + [anon_sym_errdefer] = ACTIONS(5524), + [anon_sym_if] = ACTIONS(5524), + [anon_sym_else] = ACTIONS(5524), + [anon_sym_while] = ACTIONS(5524), + [anon_sym_expand] = ACTIONS(5524), + [anon_sym_for] = ACTIONS(5524), + [anon_sym_match] = ACTIONS(5524), + [anon_sym_DOT_DOT] = ACTIONS(5524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5522), + [anon_sym_orelse] = ACTIONS(5524), + [anon_sym_or] = ACTIONS(5524), + [anon_sym_and] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5522), + [anon_sym_BANG_EQ] = ACTIONS(5522), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_LT_EQ] = ACTIONS(5522), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5522), + [anon_sym_AMP] = ACTIONS(5524), + [anon_sym_xor] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5524), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_LT_LT_PIPE] = ACTIONS(5524), + [anon_sym_PLUS] = ACTIONS(5524), + [anon_sym_SLASH] = ACTIONS(5524), + [anon_sym_catch] = ACTIONS(5524), + [anon_sym_TILDE] = ACTIONS(5522), + [anon_sym_try] = ACTIONS(5524), + [anon_sym_DOT] = ACTIONS(5524), + [anon_sym_CARET] = ACTIONS(5522), + [anon_sym_true] = ACTIONS(5524), + [anon_sym_false] = ACTIONS(5524), + [anon_sym_null] = ACTIONS(5524), + [anon_sym_unreachable] = ACTIONS(5524), + [anon_sym_undefined] = ACTIONS(5524), + [sym_sink] = ACTIONS(5524), + [sym_integer] = ACTIONS(5524), + [sym_float] = ACTIONS(5522), + [anon_sym_DQUOTE] = ACTIONS(5522), + [sym_multiline_string] = ACTIONS(5522), + [sym_character] = ACTIONS(5522), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5522), + }, + [STATE(2932)] = { + [sym_identifier] = ACTIONS(5378), + [anon_sym_func] = ACTIONS(5378), + [anon_sym_c_func] = ACTIONS(5378), + [anon_sym_BANG] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_struct] = ACTIONS(5378), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_LBRACE] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5378), + [anon_sym_struct_type_BANG] = ACTIONS(5376), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_AT] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_void] = ACTIONS(5378), + [anon_sym_noreturn] = ACTIONS(5378), + [anon_sym_type] = ACTIONS(5378), + [anon_sym_anyopaque] = ACTIONS(5378), + [anon_sym_bool] = ACTIONS(5378), + [anon_sym_int] = ACTIONS(5378), + [anon_sym_uint] = ACTIONS(5378), + [anon_sym_float] = ACTIONS(5378), + [anon_sym_range] = ACTIONS(5378), + [anon_sym_i8] = ACTIONS(5378), + [anon_sym_i16] = ACTIONS(5378), + [anon_sym_i32] = ACTIONS(5378), + [anon_sym_i64] = ACTIONS(5378), + [anon_sym_u8] = ACTIONS(5378), + [anon_sym_u16] = ACTIONS(5378), + [anon_sym_u32] = ACTIONS(5378), + [anon_sym_u64] = ACTIONS(5378), + [anon_sym_isize] = ACTIONS(5378), + [anon_sym_usize] = ACTIONS(5378), + [anon_sym_f32] = ACTIONS(5378), + [anon_sym_f64] = ACTIONS(5378), + [anon_sym_c_char] = ACTIONS(5378), + [anon_sym_c_schar] = ACTIONS(5378), + [anon_sym_c_uchar] = ACTIONS(5378), + [anon_sym_c_short] = ACTIONS(5378), + [anon_sym_c_ushort] = ACTIONS(5378), + [anon_sym_c_int] = ACTIONS(5378), + [anon_sym_c_uint] = ACTIONS(5378), + [anon_sym_c_long] = ACTIONS(5378), + [anon_sym_c_ulong] = ACTIONS(5378), + [anon_sym_c_longlong] = ACTIONS(5378), + [anon_sym_c_ulonglong] = ACTIONS(5378), + [anon_sym_c_float] = ACTIONS(5378), + [anon_sym_c_double] = ACTIONS(5378), + [anon_sym_c_longdouble] = ACTIONS(5378), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_xor_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5376), + [anon_sym_return] = ACTIONS(5378), + [anon_sym_yield] = ACTIONS(5378), + [anon_sym_break] = ACTIONS(5378), + [anon_sym_continue] = ACTIONS(5378), + [anon_sym_defer] = ACTIONS(5378), + [anon_sym_errdefer] = ACTIONS(5378), + [anon_sym_if] = ACTIONS(5378), + [anon_sym_else] = ACTIONS(5378), + [anon_sym_while] = ACTIONS(5378), + [anon_sym_expand] = ACTIONS(5378), + [anon_sym_for] = ACTIONS(5378), + [anon_sym_match] = ACTIONS(5378), + [anon_sym_DOT_DOT] = ACTIONS(5378), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5376), + [anon_sym_orelse] = ACTIONS(5378), + [anon_sym_or] = ACTIONS(5378), + [anon_sym_and] = ACTIONS(5378), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5378), + [anon_sym_LT_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5378), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP] = ACTIONS(5378), + [anon_sym_xor] = ACTIONS(5378), + [anon_sym_LT_LT] = ACTIONS(5378), + [anon_sym_GT_GT] = ACTIONS(5378), + [anon_sym_LT_LT_PIPE] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5378), + [anon_sym_SLASH] = ACTIONS(5378), + [anon_sym_catch] = ACTIONS(5378), + [anon_sym_TILDE] = ACTIONS(5376), + [anon_sym_try] = ACTIONS(5378), + [anon_sym_DOT] = ACTIONS(5378), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym_true] = ACTIONS(5378), + [anon_sym_false] = ACTIONS(5378), + [anon_sym_null] = ACTIONS(5378), + [anon_sym_unreachable] = ACTIONS(5378), + [anon_sym_undefined] = ACTIONS(5378), + [sym_sink] = ACTIONS(5378), + [sym_integer] = ACTIONS(5378), + [sym_float] = ACTIONS(5376), + [anon_sym_DQUOTE] = ACTIONS(5376), + [sym_multiline_string] = ACTIONS(5376), + [sym_character] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5376), + }, + [STATE(2933)] = { + [sym_identifier] = ACTIONS(5382), + [anon_sym_func] = ACTIONS(5382), + [anon_sym_c_func] = ACTIONS(5382), + [anon_sym_BANG] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_struct] = ACTIONS(5382), + [anon_sym_LPAREN] = ACTIONS(5380), + [anon_sym_LBRACE] = ACTIONS(5380), + [anon_sym_COMMA] = ACTIONS(5380), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5382), + [anon_sym_struct_type_BANG] = ACTIONS(5380), + [anon_sym_QMARK] = ACTIONS(5380), + [anon_sym_AT] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5380), + [anon_sym_void] = ACTIONS(5382), + [anon_sym_noreturn] = ACTIONS(5382), + [anon_sym_type] = ACTIONS(5382), + [anon_sym_anyopaque] = ACTIONS(5382), + [anon_sym_bool] = ACTIONS(5382), + [anon_sym_int] = ACTIONS(5382), + [anon_sym_uint] = ACTIONS(5382), + [anon_sym_float] = ACTIONS(5382), + [anon_sym_range] = ACTIONS(5382), + [anon_sym_i8] = ACTIONS(5382), + [anon_sym_i16] = ACTIONS(5382), + [anon_sym_i32] = ACTIONS(5382), + [anon_sym_i64] = ACTIONS(5382), + [anon_sym_u8] = ACTIONS(5382), + [anon_sym_u16] = ACTIONS(5382), + [anon_sym_u32] = ACTIONS(5382), + [anon_sym_u64] = ACTIONS(5382), + [anon_sym_isize] = ACTIONS(5382), + [anon_sym_usize] = ACTIONS(5382), + [anon_sym_f32] = ACTIONS(5382), + [anon_sym_f64] = ACTIONS(5382), + [anon_sym_c_char] = ACTIONS(5382), + [anon_sym_c_schar] = ACTIONS(5382), + [anon_sym_c_uchar] = ACTIONS(5382), + [anon_sym_c_short] = ACTIONS(5382), + [anon_sym_c_ushort] = ACTIONS(5382), + [anon_sym_c_int] = ACTIONS(5382), + [anon_sym_c_uint] = ACTIONS(5382), + [anon_sym_c_long] = ACTIONS(5382), + [anon_sym_c_ulong] = ACTIONS(5382), + [anon_sym_c_longlong] = ACTIONS(5382), + [anon_sym_c_ulonglong] = ACTIONS(5382), + [anon_sym_c_float] = ACTIONS(5382), + [anon_sym_c_double] = ACTIONS(5382), + [anon_sym_c_longdouble] = ACTIONS(5382), + [anon_sym_PLUS_EQ] = ACTIONS(5380), + [anon_sym_DASH_EQ] = ACTIONS(5380), + [anon_sym_STAR_EQ] = ACTIONS(5380), + [anon_sym_SLASH_EQ] = ACTIONS(5380), + [anon_sym_AMP_EQ] = ACTIONS(5380), + [anon_sym_PIPE_EQ] = ACTIONS(5380), + [anon_sym_xor_EQ] = ACTIONS(5380), + [anon_sym_LT_LT_EQ] = ACTIONS(5380), + [anon_sym_GT_GT_EQ] = ACTIONS(5380), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5380), + [anon_sym_return] = ACTIONS(5382), + [anon_sym_yield] = ACTIONS(5382), + [anon_sym_break] = ACTIONS(5382), + [anon_sym_continue] = ACTIONS(5382), + [anon_sym_defer] = ACTIONS(5382), + [anon_sym_errdefer] = ACTIONS(5382), + [anon_sym_if] = ACTIONS(5382), + [anon_sym_else] = ACTIONS(5382), + [anon_sym_while] = ACTIONS(5382), + [anon_sym_expand] = ACTIONS(5382), + [anon_sym_for] = ACTIONS(5382), + [anon_sym_match] = ACTIONS(5382), + [anon_sym_DOT_DOT] = ACTIONS(5382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5380), + [anon_sym_orelse] = ACTIONS(5382), + [anon_sym_or] = ACTIONS(5382), + [anon_sym_and] = ACTIONS(5382), + [anon_sym_EQ_EQ] = ACTIONS(5380), + [anon_sym_BANG_EQ] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5382), + [anon_sym_LT_EQ] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5382), + [anon_sym_GT_EQ] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(5382), + [anon_sym_xor] = ACTIONS(5382), + [anon_sym_LT_LT] = ACTIONS(5382), + [anon_sym_GT_GT] = ACTIONS(5382), + [anon_sym_LT_LT_PIPE] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5382), + [anon_sym_SLASH] = ACTIONS(5382), + [anon_sym_catch] = ACTIONS(5382), + [anon_sym_TILDE] = ACTIONS(5380), + [anon_sym_try] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5382), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym_true] = ACTIONS(5382), + [anon_sym_false] = ACTIONS(5382), + [anon_sym_null] = ACTIONS(5382), + [anon_sym_unreachable] = ACTIONS(5382), + [anon_sym_undefined] = ACTIONS(5382), + [sym_sink] = ACTIONS(5382), + [sym_integer] = ACTIONS(5382), + [sym_float] = ACTIONS(5380), + [anon_sym_DQUOTE] = ACTIONS(5380), + [sym_multiline_string] = ACTIONS(5380), + [sym_character] = ACTIONS(5380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5380), + }, + [STATE(2934)] = { + [sym_identifier] = ACTIONS(5528), + [anon_sym_func] = ACTIONS(5528), + [anon_sym_c_func] = ACTIONS(5528), + [anon_sym_BANG] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(5528), + [anon_sym_struct] = ACTIONS(5528), + [anon_sym_LPAREN] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5526), + [anon_sym_COMMA] = ACTIONS(5526), + [anon_sym_RBRACE] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5528), + [anon_sym_struct_type_BANG] = ACTIONS(5526), + [anon_sym_QMARK] = ACTIONS(5526), + [anon_sym_AT] = ACTIONS(5526), + [anon_sym_STAR] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5526), + [anon_sym_void] = ACTIONS(5528), + [anon_sym_noreturn] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_anyopaque] = ACTIONS(5528), + [anon_sym_bool] = ACTIONS(5528), + [anon_sym_int] = ACTIONS(5528), + [anon_sym_uint] = ACTIONS(5528), + [anon_sym_float] = ACTIONS(5528), + [anon_sym_range] = ACTIONS(5528), + [anon_sym_i8] = ACTIONS(5528), + [anon_sym_i16] = ACTIONS(5528), + [anon_sym_i32] = ACTIONS(5528), + [anon_sym_i64] = ACTIONS(5528), + [anon_sym_u8] = ACTIONS(5528), + [anon_sym_u16] = ACTIONS(5528), + [anon_sym_u32] = ACTIONS(5528), + [anon_sym_u64] = ACTIONS(5528), + [anon_sym_isize] = ACTIONS(5528), + [anon_sym_usize] = ACTIONS(5528), + [anon_sym_f32] = ACTIONS(5528), + [anon_sym_f64] = ACTIONS(5528), + [anon_sym_c_char] = ACTIONS(5528), + [anon_sym_c_schar] = ACTIONS(5528), + [anon_sym_c_uchar] = ACTIONS(5528), + [anon_sym_c_short] = ACTIONS(5528), + [anon_sym_c_ushort] = ACTIONS(5528), + [anon_sym_c_int] = ACTIONS(5528), + [anon_sym_c_uint] = ACTIONS(5528), + [anon_sym_c_long] = ACTIONS(5528), + [anon_sym_c_ulong] = ACTIONS(5528), + [anon_sym_c_longlong] = ACTIONS(5528), + [anon_sym_c_ulonglong] = ACTIONS(5528), + [anon_sym_c_float] = ACTIONS(5528), + [anon_sym_c_double] = ACTIONS(5528), + [anon_sym_c_longdouble] = ACTIONS(5528), + [anon_sym_PLUS_EQ] = ACTIONS(5526), + [anon_sym_DASH_EQ] = ACTIONS(5526), + [anon_sym_STAR_EQ] = ACTIONS(5526), + [anon_sym_SLASH_EQ] = ACTIONS(5526), + [anon_sym_AMP_EQ] = ACTIONS(5526), + [anon_sym_PIPE_EQ] = ACTIONS(5526), + [anon_sym_xor_EQ] = ACTIONS(5526), + [anon_sym_LT_LT_EQ] = ACTIONS(5526), + [anon_sym_GT_GT_EQ] = ACTIONS(5526), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5526), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_break] = ACTIONS(5528), + [anon_sym_continue] = ACTIONS(5528), + [anon_sym_defer] = ACTIONS(5528), + [anon_sym_errdefer] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_else] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_expand] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_DOT_DOT] = ACTIONS(5528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5526), + [anon_sym_orelse] = ACTIONS(5528), + [anon_sym_or] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5526), + [anon_sym_BANG_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_LT_EQ] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_GT_EQ] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(5528), + [anon_sym_xor] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5528), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_LT_LT_PIPE] = ACTIONS(5528), + [anon_sym_PLUS] = ACTIONS(5528), + [anon_sym_SLASH] = ACTIONS(5528), + [anon_sym_catch] = ACTIONS(5528), + [anon_sym_TILDE] = ACTIONS(5526), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_CARET] = ACTIONS(5526), + [anon_sym_true] = ACTIONS(5528), + [anon_sym_false] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_unreachable] = ACTIONS(5528), + [anon_sym_undefined] = ACTIONS(5528), + [sym_sink] = ACTIONS(5528), + [sym_integer] = ACTIONS(5528), + [sym_float] = ACTIONS(5526), + [anon_sym_DQUOTE] = ACTIONS(5526), + [sym_multiline_string] = ACTIONS(5526), + [sym_character] = ACTIONS(5526), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5526), + }, + [STATE(2935)] = { + [sym_identifier] = ACTIONS(5532), + [anon_sym_func] = ACTIONS(5532), + [anon_sym_c_func] = ACTIONS(5532), + [anon_sym_BANG] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_struct] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5530), + [anon_sym_LBRACE] = ACTIONS(5530), + [anon_sym_COMMA] = ACTIONS(5530), + [anon_sym_RBRACE] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5532), + [anon_sym_struct_type_BANG] = ACTIONS(5530), + [anon_sym_QMARK] = ACTIONS(5530), + [anon_sym_AT] = ACTIONS(5530), + [anon_sym_STAR] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5530), + [anon_sym_void] = ACTIONS(5532), + [anon_sym_noreturn] = ACTIONS(5532), + [anon_sym_type] = ACTIONS(5532), + [anon_sym_anyopaque] = ACTIONS(5532), + [anon_sym_bool] = ACTIONS(5532), + [anon_sym_int] = ACTIONS(5532), + [anon_sym_uint] = ACTIONS(5532), + [anon_sym_float] = ACTIONS(5532), + [anon_sym_range] = ACTIONS(5532), + [anon_sym_i8] = ACTIONS(5532), + [anon_sym_i16] = ACTIONS(5532), + [anon_sym_i32] = ACTIONS(5532), + [anon_sym_i64] = ACTIONS(5532), + [anon_sym_u8] = ACTIONS(5532), + [anon_sym_u16] = ACTIONS(5532), + [anon_sym_u32] = ACTIONS(5532), + [anon_sym_u64] = ACTIONS(5532), + [anon_sym_isize] = ACTIONS(5532), + [anon_sym_usize] = ACTIONS(5532), + [anon_sym_f32] = ACTIONS(5532), + [anon_sym_f64] = ACTIONS(5532), + [anon_sym_c_char] = ACTIONS(5532), + [anon_sym_c_schar] = ACTIONS(5532), + [anon_sym_c_uchar] = ACTIONS(5532), + [anon_sym_c_short] = ACTIONS(5532), + [anon_sym_c_ushort] = ACTIONS(5532), + [anon_sym_c_int] = ACTIONS(5532), + [anon_sym_c_uint] = ACTIONS(5532), + [anon_sym_c_long] = ACTIONS(5532), + [anon_sym_c_ulong] = ACTIONS(5532), + [anon_sym_c_longlong] = ACTIONS(5532), + [anon_sym_c_ulonglong] = ACTIONS(5532), + [anon_sym_c_float] = ACTIONS(5532), + [anon_sym_c_double] = ACTIONS(5532), + [anon_sym_c_longdouble] = ACTIONS(5532), + [anon_sym_PLUS_EQ] = ACTIONS(5530), + [anon_sym_DASH_EQ] = ACTIONS(5530), + [anon_sym_STAR_EQ] = ACTIONS(5530), + [anon_sym_SLASH_EQ] = ACTIONS(5530), + [anon_sym_AMP_EQ] = ACTIONS(5530), + [anon_sym_PIPE_EQ] = ACTIONS(5530), + [anon_sym_xor_EQ] = ACTIONS(5530), + [anon_sym_LT_LT_EQ] = ACTIONS(5530), + [anon_sym_GT_GT_EQ] = ACTIONS(5530), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5530), + [anon_sym_return] = ACTIONS(5532), + [anon_sym_yield] = ACTIONS(5532), + [anon_sym_break] = ACTIONS(5532), + [anon_sym_continue] = ACTIONS(5532), + [anon_sym_defer] = ACTIONS(5532), + [anon_sym_errdefer] = ACTIONS(5532), + [anon_sym_if] = ACTIONS(5532), + [anon_sym_else] = ACTIONS(5532), + [anon_sym_while] = ACTIONS(5532), + [anon_sym_expand] = ACTIONS(5532), + [anon_sym_for] = ACTIONS(5532), + [anon_sym_match] = ACTIONS(5532), + [anon_sym_DOT_DOT] = ACTIONS(5532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5530), + [anon_sym_orelse] = ACTIONS(5532), + [anon_sym_or] = ACTIONS(5532), + [anon_sym_and] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5530), + [anon_sym_BANG_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_LT_EQ] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_GT_EQ] = ACTIONS(5530), + [anon_sym_AMP] = ACTIONS(5532), + [anon_sym_xor] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5532), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_LT_LT_PIPE] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_SLASH] = ACTIONS(5532), + [anon_sym_catch] = ACTIONS(5532), + [anon_sym_TILDE] = ACTIONS(5530), + [anon_sym_try] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5530), + [anon_sym_true] = ACTIONS(5532), + [anon_sym_false] = ACTIONS(5532), + [anon_sym_null] = ACTIONS(5532), + [anon_sym_unreachable] = ACTIONS(5532), + [anon_sym_undefined] = ACTIONS(5532), + [sym_sink] = ACTIONS(5532), + [sym_integer] = ACTIONS(5532), + [sym_float] = ACTIONS(5530), + [anon_sym_DQUOTE] = ACTIONS(5530), + [sym_multiline_string] = ACTIONS(5530), + [sym_character] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5530), + }, + [STATE(2936)] = { + [sym_identifier] = ACTIONS(5536), + [anon_sym_func] = ACTIONS(5536), + [anon_sym_c_func] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5536), + [anon_sym_EQ] = ACTIONS(5536), + [anon_sym_struct] = ACTIONS(5536), + [anon_sym_LPAREN] = ACTIONS(5534), + [anon_sym_LBRACE] = ACTIONS(5534), + [anon_sym_COMMA] = ACTIONS(5534), + [anon_sym_RBRACE] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_DOLLAR] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5536), + [anon_sym_struct_type_BANG] = ACTIONS(5534), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_AT] = ACTIONS(5534), + [anon_sym_STAR] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5534), + [anon_sym_void] = ACTIONS(5536), + [anon_sym_noreturn] = ACTIONS(5536), + [anon_sym_type] = ACTIONS(5536), + [anon_sym_anyopaque] = ACTIONS(5536), + [anon_sym_bool] = ACTIONS(5536), + [anon_sym_int] = ACTIONS(5536), + [anon_sym_uint] = ACTIONS(5536), + [anon_sym_float] = ACTIONS(5536), + [anon_sym_range] = ACTIONS(5536), + [anon_sym_i8] = ACTIONS(5536), + [anon_sym_i16] = ACTIONS(5536), + [anon_sym_i32] = ACTIONS(5536), + [anon_sym_i64] = ACTIONS(5536), + [anon_sym_u8] = ACTIONS(5536), + [anon_sym_u16] = ACTIONS(5536), + [anon_sym_u32] = ACTIONS(5536), + [anon_sym_u64] = ACTIONS(5536), + [anon_sym_isize] = ACTIONS(5536), + [anon_sym_usize] = ACTIONS(5536), + [anon_sym_f32] = ACTIONS(5536), + [anon_sym_f64] = ACTIONS(5536), + [anon_sym_c_char] = ACTIONS(5536), + [anon_sym_c_schar] = ACTIONS(5536), + [anon_sym_c_uchar] = ACTIONS(5536), + [anon_sym_c_short] = ACTIONS(5536), + [anon_sym_c_ushort] = ACTIONS(5536), + [anon_sym_c_int] = ACTIONS(5536), + [anon_sym_c_uint] = ACTIONS(5536), + [anon_sym_c_long] = ACTIONS(5536), + [anon_sym_c_ulong] = ACTIONS(5536), + [anon_sym_c_longlong] = ACTIONS(5536), + [anon_sym_c_ulonglong] = ACTIONS(5536), + [anon_sym_c_float] = ACTIONS(5536), + [anon_sym_c_double] = ACTIONS(5536), + [anon_sym_c_longdouble] = ACTIONS(5536), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_xor_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5534), + [anon_sym_return] = ACTIONS(5536), + [anon_sym_yield] = ACTIONS(5536), + [anon_sym_break] = ACTIONS(5536), + [anon_sym_continue] = ACTIONS(5536), + [anon_sym_defer] = ACTIONS(5536), + [anon_sym_errdefer] = ACTIONS(5536), + [anon_sym_if] = ACTIONS(5536), + [anon_sym_else] = ACTIONS(5536), + [anon_sym_while] = ACTIONS(5536), + [anon_sym_expand] = ACTIONS(5536), + [anon_sym_for] = ACTIONS(5536), + [anon_sym_match] = ACTIONS(5536), + [anon_sym_DOT_DOT] = ACTIONS(5536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5534), + [anon_sym_orelse] = ACTIONS(5536), + [anon_sym_or] = ACTIONS(5536), + [anon_sym_and] = ACTIONS(5536), + [anon_sym_EQ_EQ] = ACTIONS(5534), + [anon_sym_BANG_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5536), + [anon_sym_LT_EQ] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5536), + [anon_sym_GT_EQ] = ACTIONS(5534), + [anon_sym_AMP] = ACTIONS(5536), + [anon_sym_xor] = ACTIONS(5536), + [anon_sym_LT_LT] = ACTIONS(5536), + [anon_sym_GT_GT] = ACTIONS(5536), + [anon_sym_LT_LT_PIPE] = ACTIONS(5536), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_SLASH] = ACTIONS(5536), + [anon_sym_catch] = ACTIONS(5536), + [anon_sym_TILDE] = ACTIONS(5534), + [anon_sym_try] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(5536), + [anon_sym_CARET] = ACTIONS(5534), + [anon_sym_true] = ACTIONS(5536), + [anon_sym_false] = ACTIONS(5536), + [anon_sym_null] = ACTIONS(5536), + [anon_sym_unreachable] = ACTIONS(5536), + [anon_sym_undefined] = ACTIONS(5536), + [sym_sink] = ACTIONS(5536), + [sym_integer] = ACTIONS(5536), + [sym_float] = ACTIONS(5534), + [anon_sym_DQUOTE] = ACTIONS(5534), + [sym_multiline_string] = ACTIONS(5534), + [sym_character] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5534), + }, + [STATE(2937)] = { + [sym_identifier] = ACTIONS(5540), + [anon_sym_func] = ACTIONS(5540), + [anon_sym_c_func] = ACTIONS(5540), + [anon_sym_BANG] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(5540), + [anon_sym_struct] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(5538), + [anon_sym_COMMA] = ACTIONS(5538), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5540), + [anon_sym_DOLLAR] = ACTIONS(5538), + [anon_sym_PIPE] = ACTIONS(5540), + [anon_sym_struct_type_BANG] = ACTIONS(5538), + [anon_sym_QMARK] = ACTIONS(5538), + [anon_sym_AT] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5540), + [anon_sym_LBRACK] = ACTIONS(5538), + [anon_sym_void] = ACTIONS(5540), + [anon_sym_noreturn] = ACTIONS(5540), + [anon_sym_type] = ACTIONS(5540), + [anon_sym_anyopaque] = ACTIONS(5540), + [anon_sym_bool] = ACTIONS(5540), + [anon_sym_int] = ACTIONS(5540), + [anon_sym_uint] = ACTIONS(5540), + [anon_sym_float] = ACTIONS(5540), + [anon_sym_range] = ACTIONS(5540), + [anon_sym_i8] = ACTIONS(5540), + [anon_sym_i16] = ACTIONS(5540), + [anon_sym_i32] = ACTIONS(5540), + [anon_sym_i64] = ACTIONS(5540), + [anon_sym_u8] = ACTIONS(5540), + [anon_sym_u16] = ACTIONS(5540), + [anon_sym_u32] = ACTIONS(5540), + [anon_sym_u64] = ACTIONS(5540), + [anon_sym_isize] = ACTIONS(5540), + [anon_sym_usize] = ACTIONS(5540), + [anon_sym_f32] = ACTIONS(5540), + [anon_sym_f64] = ACTIONS(5540), + [anon_sym_c_char] = ACTIONS(5540), + [anon_sym_c_schar] = ACTIONS(5540), + [anon_sym_c_uchar] = ACTIONS(5540), + [anon_sym_c_short] = ACTIONS(5540), + [anon_sym_c_ushort] = ACTIONS(5540), + [anon_sym_c_int] = ACTIONS(5540), + [anon_sym_c_uint] = ACTIONS(5540), + [anon_sym_c_long] = ACTIONS(5540), + [anon_sym_c_ulong] = ACTIONS(5540), + [anon_sym_c_longlong] = ACTIONS(5540), + [anon_sym_c_ulonglong] = ACTIONS(5540), + [anon_sym_c_float] = ACTIONS(5540), + [anon_sym_c_double] = ACTIONS(5540), + [anon_sym_c_longdouble] = ACTIONS(5540), + [anon_sym_PLUS_EQ] = ACTIONS(5538), + [anon_sym_DASH_EQ] = ACTIONS(5538), + [anon_sym_STAR_EQ] = ACTIONS(5538), + [anon_sym_SLASH_EQ] = ACTIONS(5538), + [anon_sym_AMP_EQ] = ACTIONS(5538), + [anon_sym_PIPE_EQ] = ACTIONS(5538), + [anon_sym_xor_EQ] = ACTIONS(5538), + [anon_sym_LT_LT_EQ] = ACTIONS(5538), + [anon_sym_GT_GT_EQ] = ACTIONS(5538), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5538), + [anon_sym_return] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5540), + [anon_sym_break] = ACTIONS(5540), + [anon_sym_continue] = ACTIONS(5540), + [anon_sym_defer] = ACTIONS(5540), + [anon_sym_errdefer] = ACTIONS(5540), + [anon_sym_if] = ACTIONS(5540), + [anon_sym_else] = ACTIONS(5540), + [anon_sym_while] = ACTIONS(5540), + [anon_sym_expand] = ACTIONS(5540), + [anon_sym_for] = ACTIONS(5540), + [anon_sym_match] = ACTIONS(5540), + [anon_sym_DOT_DOT] = ACTIONS(5540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5538), + [anon_sym_orelse] = ACTIONS(5540), + [anon_sym_or] = ACTIONS(5540), + [anon_sym_and] = ACTIONS(5540), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5540), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT] = ACTIONS(5540), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5540), + [anon_sym_xor] = ACTIONS(5540), + [anon_sym_LT_LT] = ACTIONS(5540), + [anon_sym_GT_GT] = ACTIONS(5540), + [anon_sym_LT_LT_PIPE] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5540), + [anon_sym_SLASH] = ACTIONS(5540), + [anon_sym_catch] = ACTIONS(5540), + [anon_sym_TILDE] = ACTIONS(5538), + [anon_sym_try] = ACTIONS(5540), + [anon_sym_DOT] = ACTIONS(5540), + [anon_sym_CARET] = ACTIONS(5538), + [anon_sym_true] = ACTIONS(5540), + [anon_sym_false] = ACTIONS(5540), + [anon_sym_null] = ACTIONS(5540), + [anon_sym_unreachable] = ACTIONS(5540), + [anon_sym_undefined] = ACTIONS(5540), + [sym_sink] = ACTIONS(5540), + [sym_integer] = ACTIONS(5540), + [sym_float] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(5538), + [sym_multiline_string] = ACTIONS(5538), + [sym_character] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5538), + }, + [STATE(2938)] = { + [sym_identifier] = ACTIONS(5544), + [anon_sym_func] = ACTIONS(5544), + [anon_sym_c_func] = ACTIONS(5544), + [anon_sym_BANG] = ACTIONS(5544), + [anon_sym_EQ] = ACTIONS(5544), + [anon_sym_struct] = ACTIONS(5544), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_COMMA] = ACTIONS(5542), + [anon_sym_RBRACE] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5544), + [anon_sym_DOLLAR] = ACTIONS(5542), + [anon_sym_PIPE] = ACTIONS(5544), + [anon_sym_struct_type_BANG] = ACTIONS(5542), + [anon_sym_QMARK] = ACTIONS(5542), + [anon_sym_AT] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(5544), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_void] = ACTIONS(5544), + [anon_sym_noreturn] = ACTIONS(5544), + [anon_sym_type] = ACTIONS(5544), + [anon_sym_anyopaque] = ACTIONS(5544), + [anon_sym_bool] = ACTIONS(5544), + [anon_sym_int] = ACTIONS(5544), + [anon_sym_uint] = ACTIONS(5544), + [anon_sym_float] = ACTIONS(5544), + [anon_sym_range] = ACTIONS(5544), + [anon_sym_i8] = ACTIONS(5544), + [anon_sym_i16] = ACTIONS(5544), + [anon_sym_i32] = ACTIONS(5544), + [anon_sym_i64] = ACTIONS(5544), + [anon_sym_u8] = ACTIONS(5544), + [anon_sym_u16] = ACTIONS(5544), + [anon_sym_u32] = ACTIONS(5544), + [anon_sym_u64] = ACTIONS(5544), + [anon_sym_isize] = ACTIONS(5544), + [anon_sym_usize] = ACTIONS(5544), + [anon_sym_f32] = ACTIONS(5544), + [anon_sym_f64] = ACTIONS(5544), + [anon_sym_c_char] = ACTIONS(5544), + [anon_sym_c_schar] = ACTIONS(5544), + [anon_sym_c_uchar] = ACTIONS(5544), + [anon_sym_c_short] = ACTIONS(5544), + [anon_sym_c_ushort] = ACTIONS(5544), + [anon_sym_c_int] = ACTIONS(5544), + [anon_sym_c_uint] = ACTIONS(5544), + [anon_sym_c_long] = ACTIONS(5544), + [anon_sym_c_ulong] = ACTIONS(5544), + [anon_sym_c_longlong] = ACTIONS(5544), + [anon_sym_c_ulonglong] = ACTIONS(5544), + [anon_sym_c_float] = ACTIONS(5544), + [anon_sym_c_double] = ACTIONS(5544), + [anon_sym_c_longdouble] = ACTIONS(5544), + [anon_sym_PLUS_EQ] = ACTIONS(5542), + [anon_sym_DASH_EQ] = ACTIONS(5542), + [anon_sym_STAR_EQ] = ACTIONS(5542), + [anon_sym_SLASH_EQ] = ACTIONS(5542), + [anon_sym_AMP_EQ] = ACTIONS(5542), + [anon_sym_PIPE_EQ] = ACTIONS(5542), + [anon_sym_xor_EQ] = ACTIONS(5542), + [anon_sym_LT_LT_EQ] = ACTIONS(5542), + [anon_sym_GT_GT_EQ] = ACTIONS(5542), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5542), + [anon_sym_return] = ACTIONS(5544), + [anon_sym_yield] = ACTIONS(5544), + [anon_sym_break] = ACTIONS(5544), + [anon_sym_continue] = ACTIONS(5544), + [anon_sym_defer] = ACTIONS(5544), + [anon_sym_errdefer] = ACTIONS(5544), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_else] = ACTIONS(5544), + [anon_sym_while] = ACTIONS(5544), + [anon_sym_expand] = ACTIONS(5544), + [anon_sym_for] = ACTIONS(5544), + [anon_sym_match] = ACTIONS(5544), + [anon_sym_DOT_DOT] = ACTIONS(5544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5542), + [anon_sym_orelse] = ACTIONS(5544), + [anon_sym_or] = ACTIONS(5544), + [anon_sym_and] = ACTIONS(5544), + [anon_sym_EQ_EQ] = ACTIONS(5542), + [anon_sym_BANG_EQ] = ACTIONS(5542), + [anon_sym_LT] = ACTIONS(5544), + [anon_sym_LT_EQ] = ACTIONS(5542), + [anon_sym_GT] = ACTIONS(5544), + [anon_sym_GT_EQ] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5544), + [anon_sym_xor] = ACTIONS(5544), + [anon_sym_LT_LT] = ACTIONS(5544), + [anon_sym_GT_GT] = ACTIONS(5544), + [anon_sym_LT_LT_PIPE] = ACTIONS(5544), + [anon_sym_PLUS] = ACTIONS(5544), + [anon_sym_SLASH] = ACTIONS(5544), + [anon_sym_catch] = ACTIONS(5544), + [anon_sym_TILDE] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5544), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_CARET] = ACTIONS(5542), + [anon_sym_true] = ACTIONS(5544), + [anon_sym_false] = ACTIONS(5544), + [anon_sym_null] = ACTIONS(5544), + [anon_sym_unreachable] = ACTIONS(5544), + [anon_sym_undefined] = ACTIONS(5544), + [sym_sink] = ACTIONS(5544), + [sym_integer] = ACTIONS(5544), + [sym_float] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [sym_multiline_string] = ACTIONS(5542), + [sym_character] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5542), + }, + [STATE(2939)] = { + [sym_identifier] = ACTIONS(5548), + [anon_sym_func] = ACTIONS(5548), + [anon_sym_c_func] = ACTIONS(5548), + [anon_sym_BANG] = ACTIONS(5548), + [anon_sym_EQ] = ACTIONS(5548), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_LPAREN] = ACTIONS(5546), + [anon_sym_LBRACE] = ACTIONS(5546), + [anon_sym_COMMA] = ACTIONS(5546), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_DOLLAR] = ACTIONS(5546), + [anon_sym_PIPE] = ACTIONS(5548), + [anon_sym_struct_type_BANG] = ACTIONS(5546), + [anon_sym_QMARK] = ACTIONS(5546), + [anon_sym_AT] = ACTIONS(5546), + [anon_sym_STAR] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_void] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_type] = ACTIONS(5548), + [anon_sym_anyopaque] = ACTIONS(5548), + [anon_sym_bool] = ACTIONS(5548), + [anon_sym_int] = ACTIONS(5548), + [anon_sym_uint] = ACTIONS(5548), + [anon_sym_float] = ACTIONS(5548), + [anon_sym_range] = ACTIONS(5548), + [anon_sym_i8] = ACTIONS(5548), + [anon_sym_i16] = ACTIONS(5548), + [anon_sym_i32] = ACTIONS(5548), + [anon_sym_i64] = ACTIONS(5548), + [anon_sym_u8] = ACTIONS(5548), + [anon_sym_u16] = ACTIONS(5548), + [anon_sym_u32] = ACTIONS(5548), + [anon_sym_u64] = ACTIONS(5548), + [anon_sym_isize] = ACTIONS(5548), + [anon_sym_usize] = ACTIONS(5548), + [anon_sym_f32] = ACTIONS(5548), + [anon_sym_f64] = ACTIONS(5548), + [anon_sym_c_char] = ACTIONS(5548), + [anon_sym_c_schar] = ACTIONS(5548), + [anon_sym_c_uchar] = ACTIONS(5548), + [anon_sym_c_short] = ACTIONS(5548), + [anon_sym_c_ushort] = ACTIONS(5548), + [anon_sym_c_int] = ACTIONS(5548), + [anon_sym_c_uint] = ACTIONS(5548), + [anon_sym_c_long] = ACTIONS(5548), + [anon_sym_c_ulong] = ACTIONS(5548), + [anon_sym_c_longlong] = ACTIONS(5548), + [anon_sym_c_ulonglong] = ACTIONS(5548), + [anon_sym_c_float] = ACTIONS(5548), + [anon_sym_c_double] = ACTIONS(5548), + [anon_sym_c_longdouble] = ACTIONS(5548), + [anon_sym_PLUS_EQ] = ACTIONS(5546), + [anon_sym_DASH_EQ] = ACTIONS(5546), + [anon_sym_STAR_EQ] = ACTIONS(5546), + [anon_sym_SLASH_EQ] = ACTIONS(5546), + [anon_sym_AMP_EQ] = ACTIONS(5546), + [anon_sym_PIPE_EQ] = ACTIONS(5546), + [anon_sym_xor_EQ] = ACTIONS(5546), + [anon_sym_LT_LT_EQ] = ACTIONS(5546), + [anon_sym_GT_GT_EQ] = ACTIONS(5546), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5546), + [anon_sym_return] = ACTIONS(5548), + [anon_sym_yield] = ACTIONS(5548), + [anon_sym_break] = ACTIONS(5548), + [anon_sym_continue] = ACTIONS(5548), + [anon_sym_defer] = ACTIONS(5548), + [anon_sym_errdefer] = ACTIONS(5548), + [anon_sym_if] = ACTIONS(5548), + [anon_sym_else] = ACTIONS(5548), + [anon_sym_while] = ACTIONS(5548), + [anon_sym_expand] = ACTIONS(5548), + [anon_sym_for] = ACTIONS(5548), + [anon_sym_match] = ACTIONS(5548), + [anon_sym_DOT_DOT] = ACTIONS(5548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5546), + [anon_sym_orelse] = ACTIONS(5548), + [anon_sym_or] = ACTIONS(5548), + [anon_sym_and] = ACTIONS(5548), + [anon_sym_EQ_EQ] = ACTIONS(5546), + [anon_sym_BANG_EQ] = ACTIONS(5546), + [anon_sym_LT] = ACTIONS(5548), + [anon_sym_LT_EQ] = ACTIONS(5546), + [anon_sym_GT] = ACTIONS(5548), + [anon_sym_GT_EQ] = ACTIONS(5546), + [anon_sym_AMP] = ACTIONS(5548), + [anon_sym_xor] = ACTIONS(5548), + [anon_sym_LT_LT] = ACTIONS(5548), + [anon_sym_GT_GT] = ACTIONS(5548), + [anon_sym_LT_LT_PIPE] = ACTIONS(5548), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_SLASH] = ACTIONS(5548), + [anon_sym_catch] = ACTIONS(5548), + [anon_sym_TILDE] = ACTIONS(5546), + [anon_sym_try] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5548), + [anon_sym_CARET] = ACTIONS(5546), + [anon_sym_true] = ACTIONS(5548), + [anon_sym_false] = ACTIONS(5548), + [anon_sym_null] = ACTIONS(5548), + [anon_sym_unreachable] = ACTIONS(5548), + [anon_sym_undefined] = ACTIONS(5548), + [sym_sink] = ACTIONS(5548), + [sym_integer] = ACTIONS(5548), + [sym_float] = ACTIONS(5546), + [anon_sym_DQUOTE] = ACTIONS(5546), + [sym_multiline_string] = ACTIONS(5546), + [sym_character] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5546), + }, + [STATE(2940)] = { + [sym_identifier] = ACTIONS(5552), + [anon_sym_func] = ACTIONS(5552), + [anon_sym_c_func] = ACTIONS(5552), + [anon_sym_BANG] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(5552), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_LPAREN] = ACTIONS(5550), + [anon_sym_LBRACE] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5552), + [anon_sym_DOLLAR] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5552), + [anon_sym_struct_type_BANG] = ACTIONS(5550), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_AT] = ACTIONS(5550), + [anon_sym_STAR] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_void] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_type] = ACTIONS(5552), + [anon_sym_anyopaque] = ACTIONS(5552), + [anon_sym_bool] = ACTIONS(5552), + [anon_sym_int] = ACTIONS(5552), + [anon_sym_uint] = ACTIONS(5552), + [anon_sym_float] = ACTIONS(5552), + [anon_sym_range] = ACTIONS(5552), + [anon_sym_i8] = ACTIONS(5552), + [anon_sym_i16] = ACTIONS(5552), + [anon_sym_i32] = ACTIONS(5552), + [anon_sym_i64] = ACTIONS(5552), + [anon_sym_u8] = ACTIONS(5552), + [anon_sym_u16] = ACTIONS(5552), + [anon_sym_u32] = ACTIONS(5552), + [anon_sym_u64] = ACTIONS(5552), + [anon_sym_isize] = ACTIONS(5552), + [anon_sym_usize] = ACTIONS(5552), + [anon_sym_f32] = ACTIONS(5552), + [anon_sym_f64] = ACTIONS(5552), + [anon_sym_c_char] = ACTIONS(5552), + [anon_sym_c_schar] = ACTIONS(5552), + [anon_sym_c_uchar] = ACTIONS(5552), + [anon_sym_c_short] = ACTIONS(5552), + [anon_sym_c_ushort] = ACTIONS(5552), + [anon_sym_c_int] = ACTIONS(5552), + [anon_sym_c_uint] = ACTIONS(5552), + [anon_sym_c_long] = ACTIONS(5552), + [anon_sym_c_ulong] = ACTIONS(5552), + [anon_sym_c_longlong] = ACTIONS(5552), + [anon_sym_c_ulonglong] = ACTIONS(5552), + [anon_sym_c_float] = ACTIONS(5552), + [anon_sym_c_double] = ACTIONS(5552), + [anon_sym_c_longdouble] = ACTIONS(5552), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_xor_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5550), + [anon_sym_return] = ACTIONS(5552), + [anon_sym_yield] = ACTIONS(5552), + [anon_sym_break] = ACTIONS(5552), + [anon_sym_continue] = ACTIONS(5552), + [anon_sym_defer] = ACTIONS(5552), + [anon_sym_errdefer] = ACTIONS(5552), + [anon_sym_if] = ACTIONS(5552), + [anon_sym_else] = ACTIONS(5552), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_expand] = ACTIONS(5552), + [anon_sym_for] = ACTIONS(5552), + [anon_sym_match] = ACTIONS(5552), + [anon_sym_DOT_DOT] = ACTIONS(5552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5550), + [anon_sym_orelse] = ACTIONS(5552), + [anon_sym_or] = ACTIONS(5552), + [anon_sym_and] = ACTIONS(5552), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_LT] = ACTIONS(5552), + [anon_sym_LT_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5552), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP] = ACTIONS(5552), + [anon_sym_xor] = ACTIONS(5552), + [anon_sym_LT_LT] = ACTIONS(5552), + [anon_sym_GT_GT] = ACTIONS(5552), + [anon_sym_LT_LT_PIPE] = ACTIONS(5552), + [anon_sym_PLUS] = ACTIONS(5552), + [anon_sym_SLASH] = ACTIONS(5552), + [anon_sym_catch] = ACTIONS(5552), + [anon_sym_TILDE] = ACTIONS(5550), + [anon_sym_try] = ACTIONS(5552), + [anon_sym_DOT] = ACTIONS(5552), + [anon_sym_CARET] = ACTIONS(5550), + [anon_sym_true] = ACTIONS(5552), + [anon_sym_false] = ACTIONS(5552), + [anon_sym_null] = ACTIONS(5552), + [anon_sym_unreachable] = ACTIONS(5552), + [anon_sym_undefined] = ACTIONS(5552), + [sym_sink] = ACTIONS(5552), + [sym_integer] = ACTIONS(5552), + [sym_float] = ACTIONS(5550), + [anon_sym_DQUOTE] = ACTIONS(5550), + [sym_multiline_string] = ACTIONS(5550), + [sym_character] = ACTIONS(5550), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5550), + }, + [STATE(2941)] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_func] = ACTIONS(5560), + [anon_sym_c_func] = ACTIONS(5560), + [anon_sym_BANG] = ACTIONS(5560), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_struct] = ACTIONS(5560), + [anon_sym_LPAREN] = ACTIONS(5558), + [anon_sym_LBRACE] = ACTIONS(5558), + [anon_sym_COMMA] = ACTIONS(5558), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_DOLLAR] = ACTIONS(5558), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_struct_type_BANG] = ACTIONS(5558), + [anon_sym_QMARK] = ACTIONS(5558), + [anon_sym_AT] = ACTIONS(5558), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_void] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_type] = ACTIONS(5560), + [anon_sym_anyopaque] = ACTIONS(5560), + [anon_sym_bool] = ACTIONS(5560), + [anon_sym_int] = ACTIONS(5560), + [anon_sym_uint] = ACTIONS(5560), + [anon_sym_float] = ACTIONS(5560), + [anon_sym_range] = ACTIONS(5560), + [anon_sym_i8] = ACTIONS(5560), + [anon_sym_i16] = ACTIONS(5560), + [anon_sym_i32] = ACTIONS(5560), + [anon_sym_i64] = ACTIONS(5560), + [anon_sym_u8] = ACTIONS(5560), + [anon_sym_u16] = ACTIONS(5560), + [anon_sym_u32] = ACTIONS(5560), + [anon_sym_u64] = ACTIONS(5560), + [anon_sym_isize] = ACTIONS(5560), + [anon_sym_usize] = ACTIONS(5560), + [anon_sym_f32] = ACTIONS(5560), + [anon_sym_f64] = ACTIONS(5560), + [anon_sym_c_char] = ACTIONS(5560), + [anon_sym_c_schar] = ACTIONS(5560), + [anon_sym_c_uchar] = ACTIONS(5560), + [anon_sym_c_short] = ACTIONS(5560), + [anon_sym_c_ushort] = ACTIONS(5560), + [anon_sym_c_int] = ACTIONS(5560), + [anon_sym_c_uint] = ACTIONS(5560), + [anon_sym_c_long] = ACTIONS(5560), + [anon_sym_c_ulong] = ACTIONS(5560), + [anon_sym_c_longlong] = ACTIONS(5560), + [anon_sym_c_ulonglong] = ACTIONS(5560), + [anon_sym_c_float] = ACTIONS(5560), + [anon_sym_c_double] = ACTIONS(5560), + [anon_sym_c_longdouble] = ACTIONS(5560), + [anon_sym_PLUS_EQ] = ACTIONS(5558), + [anon_sym_DASH_EQ] = ACTIONS(5558), + [anon_sym_STAR_EQ] = ACTIONS(5558), + [anon_sym_SLASH_EQ] = ACTIONS(5558), + [anon_sym_AMP_EQ] = ACTIONS(5558), + [anon_sym_PIPE_EQ] = ACTIONS(5558), + [anon_sym_xor_EQ] = ACTIONS(5558), + [anon_sym_LT_LT_EQ] = ACTIONS(5558), + [anon_sym_GT_GT_EQ] = ACTIONS(5558), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5558), + [anon_sym_return] = ACTIONS(5560), + [anon_sym_yield] = ACTIONS(5560), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5560), + [anon_sym_defer] = ACTIONS(5560), + [anon_sym_errdefer] = ACTIONS(5560), + [anon_sym_if] = ACTIONS(5560), + [anon_sym_else] = ACTIONS(5560), + [anon_sym_while] = ACTIONS(5560), + [anon_sym_expand] = ACTIONS(5560), + [anon_sym_for] = ACTIONS(5560), + [anon_sym_match] = ACTIONS(5560), + [anon_sym_DOT_DOT] = ACTIONS(5560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5558), + [anon_sym_orelse] = ACTIONS(5560), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5558), + [anon_sym_BANG_EQ] = ACTIONS(5558), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_EQ] = ACTIONS(5558), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_LT_LT_PIPE] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_catch] = ACTIONS(5560), + [anon_sym_TILDE] = ACTIONS(5558), + [anon_sym_try] = ACTIONS(5560), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5558), + [anon_sym_true] = ACTIONS(5560), + [anon_sym_false] = ACTIONS(5560), + [anon_sym_null] = ACTIONS(5560), + [anon_sym_unreachable] = ACTIONS(5560), + [anon_sym_undefined] = ACTIONS(5560), + [sym_sink] = ACTIONS(5560), + [sym_integer] = ACTIONS(5560), + [sym_float] = ACTIONS(5558), + [anon_sym_DQUOTE] = ACTIONS(5558), + [sym_multiline_string] = ACTIONS(5558), + [sym_character] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5558), + }, + [STATE(2942)] = { + [sym_identifier] = ACTIONS(5564), + [anon_sym_func] = ACTIONS(5564), + [anon_sym_c_func] = ACTIONS(5564), + [anon_sym_BANG] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(5564), + [anon_sym_struct] = ACTIONS(5564), + [anon_sym_LPAREN] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_DOLLAR] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5564), + [anon_sym_struct_type_BANG] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_AT] = ACTIONS(5562), + [anon_sym_STAR] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_void] = ACTIONS(5564), + [anon_sym_noreturn] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_anyopaque] = ACTIONS(5564), + [anon_sym_bool] = ACTIONS(5564), + [anon_sym_int] = ACTIONS(5564), + [anon_sym_uint] = ACTIONS(5564), + [anon_sym_float] = ACTIONS(5564), + [anon_sym_range] = ACTIONS(5564), + [anon_sym_i8] = ACTIONS(5564), + [anon_sym_i16] = ACTIONS(5564), + [anon_sym_i32] = ACTIONS(5564), + [anon_sym_i64] = ACTIONS(5564), + [anon_sym_u8] = ACTIONS(5564), + [anon_sym_u16] = ACTIONS(5564), + [anon_sym_u32] = ACTIONS(5564), + [anon_sym_u64] = ACTIONS(5564), + [anon_sym_isize] = ACTIONS(5564), + [anon_sym_usize] = ACTIONS(5564), + [anon_sym_f32] = ACTIONS(5564), + [anon_sym_f64] = ACTIONS(5564), + [anon_sym_c_char] = ACTIONS(5564), + [anon_sym_c_schar] = ACTIONS(5564), + [anon_sym_c_uchar] = ACTIONS(5564), + [anon_sym_c_short] = ACTIONS(5564), + [anon_sym_c_ushort] = ACTIONS(5564), + [anon_sym_c_int] = ACTIONS(5564), + [anon_sym_c_uint] = ACTIONS(5564), + [anon_sym_c_long] = ACTIONS(5564), + [anon_sym_c_ulong] = ACTIONS(5564), + [anon_sym_c_longlong] = ACTIONS(5564), + [anon_sym_c_ulonglong] = ACTIONS(5564), + [anon_sym_c_float] = ACTIONS(5564), + [anon_sym_c_double] = ACTIONS(5564), + [anon_sym_c_longdouble] = ACTIONS(5564), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_xor_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5562), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_break] = ACTIONS(5564), + [anon_sym_continue] = ACTIONS(5564), + [anon_sym_defer] = ACTIONS(5564), + [anon_sym_errdefer] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_else] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_expand] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_DOT_DOT] = ACTIONS(5564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5562), + [anon_sym_orelse] = ACTIONS(5564), + [anon_sym_or] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_LT] = ACTIONS(5564), + [anon_sym_LT_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5564), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym_xor] = ACTIONS(5564), + [anon_sym_LT_LT] = ACTIONS(5564), + [anon_sym_GT_GT] = ACTIONS(5564), + [anon_sym_LT_LT_PIPE] = ACTIONS(5564), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_SLASH] = ACTIONS(5564), + [anon_sym_catch] = ACTIONS(5564), + [anon_sym_TILDE] = ACTIONS(5562), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5562), + [anon_sym_true] = ACTIONS(5564), + [anon_sym_false] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_unreachable] = ACTIONS(5564), + [anon_sym_undefined] = ACTIONS(5564), + [sym_sink] = ACTIONS(5564), + [sym_integer] = ACTIONS(5564), + [sym_float] = ACTIONS(5562), + [anon_sym_DQUOTE] = ACTIONS(5562), + [sym_multiline_string] = ACTIONS(5562), + [sym_character] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5562), + }, + [STATE(2943)] = { + [sym_identifier] = ACTIONS(5570), + [anon_sym_func] = ACTIONS(5570), + [anon_sym_c_func] = ACTIONS(5570), + [anon_sym_BANG] = ACTIONS(5570), + [anon_sym_EQ] = ACTIONS(5570), + [anon_sym_struct] = ACTIONS(5570), + [anon_sym_LPAREN] = ACTIONS(5568), + [anon_sym_LBRACE] = ACTIONS(5568), + [anon_sym_COMMA] = ACTIONS(5568), + [anon_sym_RBRACE] = ACTIONS(5568), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_DOLLAR] = ACTIONS(5568), + [anon_sym_PIPE] = ACTIONS(5570), + [anon_sym_struct_type_BANG] = ACTIONS(5568), + [anon_sym_QMARK] = ACTIONS(5568), + [anon_sym_AT] = ACTIONS(5568), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_void] = ACTIONS(5570), + [anon_sym_noreturn] = ACTIONS(5570), + [anon_sym_type] = ACTIONS(5570), + [anon_sym_anyopaque] = ACTIONS(5570), + [anon_sym_bool] = ACTIONS(5570), + [anon_sym_int] = ACTIONS(5570), + [anon_sym_uint] = ACTIONS(5570), + [anon_sym_float] = ACTIONS(5570), + [anon_sym_range] = ACTIONS(5570), + [anon_sym_i8] = ACTIONS(5570), + [anon_sym_i16] = ACTIONS(5570), + [anon_sym_i32] = ACTIONS(5570), + [anon_sym_i64] = ACTIONS(5570), + [anon_sym_u8] = ACTIONS(5570), + [anon_sym_u16] = ACTIONS(5570), + [anon_sym_u32] = ACTIONS(5570), + [anon_sym_u64] = ACTIONS(5570), + [anon_sym_isize] = ACTIONS(5570), + [anon_sym_usize] = ACTIONS(5570), + [anon_sym_f32] = ACTIONS(5570), + [anon_sym_f64] = ACTIONS(5570), + [anon_sym_c_char] = ACTIONS(5570), + [anon_sym_c_schar] = ACTIONS(5570), + [anon_sym_c_uchar] = ACTIONS(5570), + [anon_sym_c_short] = ACTIONS(5570), + [anon_sym_c_ushort] = ACTIONS(5570), + [anon_sym_c_int] = ACTIONS(5570), + [anon_sym_c_uint] = ACTIONS(5570), + [anon_sym_c_long] = ACTIONS(5570), + [anon_sym_c_ulong] = ACTIONS(5570), + [anon_sym_c_longlong] = ACTIONS(5570), + [anon_sym_c_ulonglong] = ACTIONS(5570), + [anon_sym_c_float] = ACTIONS(5570), + [anon_sym_c_double] = ACTIONS(5570), + [anon_sym_c_longdouble] = ACTIONS(5570), + [anon_sym_PLUS_EQ] = ACTIONS(5568), + [anon_sym_DASH_EQ] = ACTIONS(5568), + [anon_sym_STAR_EQ] = ACTIONS(5568), + [anon_sym_SLASH_EQ] = ACTIONS(5568), + [anon_sym_AMP_EQ] = ACTIONS(5568), + [anon_sym_PIPE_EQ] = ACTIONS(5568), + [anon_sym_xor_EQ] = ACTIONS(5568), + [anon_sym_LT_LT_EQ] = ACTIONS(5568), + [anon_sym_GT_GT_EQ] = ACTIONS(5568), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5568), + [anon_sym_return] = ACTIONS(5570), + [anon_sym_yield] = ACTIONS(5570), + [anon_sym_break] = ACTIONS(5570), + [anon_sym_continue] = ACTIONS(5570), + [anon_sym_defer] = ACTIONS(5570), + [anon_sym_errdefer] = ACTIONS(5570), + [anon_sym_if] = ACTIONS(5570), + [anon_sym_else] = ACTIONS(5570), + [anon_sym_while] = ACTIONS(5570), + [anon_sym_expand] = ACTIONS(5570), + [anon_sym_for] = ACTIONS(5570), + [anon_sym_match] = ACTIONS(5570), + [anon_sym_DOT_DOT] = ACTIONS(5570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5568), + [anon_sym_orelse] = ACTIONS(5570), + [anon_sym_or] = ACTIONS(5570), + [anon_sym_and] = ACTIONS(5570), + [anon_sym_EQ_EQ] = ACTIONS(5568), + [anon_sym_BANG_EQ] = ACTIONS(5568), + [anon_sym_LT] = ACTIONS(5570), + [anon_sym_LT_EQ] = ACTIONS(5568), + [anon_sym_GT] = ACTIONS(5570), + [anon_sym_GT_EQ] = ACTIONS(5568), + [anon_sym_AMP] = ACTIONS(5570), + [anon_sym_xor] = ACTIONS(5570), + [anon_sym_LT_LT] = ACTIONS(5570), + [anon_sym_GT_GT] = ACTIONS(5570), + [anon_sym_LT_LT_PIPE] = ACTIONS(5570), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_SLASH] = ACTIONS(5570), + [anon_sym_catch] = ACTIONS(5570), + [anon_sym_TILDE] = ACTIONS(5568), + [anon_sym_try] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5570), + [anon_sym_CARET] = ACTIONS(5568), + [anon_sym_true] = ACTIONS(5570), + [anon_sym_false] = ACTIONS(5570), + [anon_sym_null] = ACTIONS(5570), + [anon_sym_unreachable] = ACTIONS(5570), + [anon_sym_undefined] = ACTIONS(5570), + [sym_sink] = ACTIONS(5570), + [sym_integer] = ACTIONS(5570), + [sym_float] = ACTIONS(5568), + [anon_sym_DQUOTE] = ACTIONS(5568), + [sym_multiline_string] = ACTIONS(5568), + [sym_character] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5568), + }, + [STATE(2944)] = { + [sym_identifier] = ACTIONS(5574), + [anon_sym_func] = ACTIONS(5574), + [anon_sym_c_func] = ACTIONS(5574), + [anon_sym_BANG] = ACTIONS(5574), + [anon_sym_EQ] = ACTIONS(5574), + [anon_sym_struct] = ACTIONS(5574), + [anon_sym_LPAREN] = ACTIONS(5572), + [anon_sym_LBRACE] = ACTIONS(5572), + [anon_sym_COMMA] = ACTIONS(5572), + [anon_sym_RBRACE] = ACTIONS(5572), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_DOLLAR] = ACTIONS(5572), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_struct_type_BANG] = ACTIONS(5572), + [anon_sym_QMARK] = ACTIONS(5572), + [anon_sym_AT] = ACTIONS(5572), + [anon_sym_STAR] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5572), + [anon_sym_void] = ACTIONS(5574), + [anon_sym_noreturn] = ACTIONS(5574), + [anon_sym_type] = ACTIONS(5574), + [anon_sym_anyopaque] = ACTIONS(5574), + [anon_sym_bool] = ACTIONS(5574), + [anon_sym_int] = ACTIONS(5574), + [anon_sym_uint] = ACTIONS(5574), + [anon_sym_float] = ACTIONS(5574), + [anon_sym_range] = ACTIONS(5574), + [anon_sym_i8] = ACTIONS(5574), + [anon_sym_i16] = ACTIONS(5574), + [anon_sym_i32] = ACTIONS(5574), + [anon_sym_i64] = ACTIONS(5574), + [anon_sym_u8] = ACTIONS(5574), + [anon_sym_u16] = ACTIONS(5574), + [anon_sym_u32] = ACTIONS(5574), + [anon_sym_u64] = ACTIONS(5574), + [anon_sym_isize] = ACTIONS(5574), + [anon_sym_usize] = ACTIONS(5574), + [anon_sym_f32] = ACTIONS(5574), + [anon_sym_f64] = ACTIONS(5574), + [anon_sym_c_char] = ACTIONS(5574), + [anon_sym_c_schar] = ACTIONS(5574), + [anon_sym_c_uchar] = ACTIONS(5574), + [anon_sym_c_short] = ACTIONS(5574), + [anon_sym_c_ushort] = ACTIONS(5574), + [anon_sym_c_int] = ACTIONS(5574), + [anon_sym_c_uint] = ACTIONS(5574), + [anon_sym_c_long] = ACTIONS(5574), + [anon_sym_c_ulong] = ACTIONS(5574), + [anon_sym_c_longlong] = ACTIONS(5574), + [anon_sym_c_ulonglong] = ACTIONS(5574), + [anon_sym_c_float] = ACTIONS(5574), + [anon_sym_c_double] = ACTIONS(5574), + [anon_sym_c_longdouble] = ACTIONS(5574), + [anon_sym_PLUS_EQ] = ACTIONS(5572), + [anon_sym_DASH_EQ] = ACTIONS(5572), + [anon_sym_STAR_EQ] = ACTIONS(5572), + [anon_sym_SLASH_EQ] = ACTIONS(5572), + [anon_sym_AMP_EQ] = ACTIONS(5572), + [anon_sym_PIPE_EQ] = ACTIONS(5572), + [anon_sym_xor_EQ] = ACTIONS(5572), + [anon_sym_LT_LT_EQ] = ACTIONS(5572), + [anon_sym_GT_GT_EQ] = ACTIONS(5572), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5572), + [anon_sym_return] = ACTIONS(5574), + [anon_sym_yield] = ACTIONS(5574), + [anon_sym_break] = ACTIONS(5574), + [anon_sym_continue] = ACTIONS(5574), + [anon_sym_defer] = ACTIONS(5574), + [anon_sym_errdefer] = ACTIONS(5574), + [anon_sym_if] = ACTIONS(5574), + [anon_sym_else] = ACTIONS(5574), + [anon_sym_while] = ACTIONS(5574), + [anon_sym_expand] = ACTIONS(5574), + [anon_sym_for] = ACTIONS(5574), + [anon_sym_match] = ACTIONS(5574), + [anon_sym_DOT_DOT] = ACTIONS(5574), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5572), + [anon_sym_orelse] = ACTIONS(5574), + [anon_sym_or] = ACTIONS(5574), + [anon_sym_and] = ACTIONS(5574), + [anon_sym_EQ_EQ] = ACTIONS(5572), + [anon_sym_BANG_EQ] = ACTIONS(5572), + [anon_sym_LT] = ACTIONS(5574), + [anon_sym_LT_EQ] = ACTIONS(5572), + [anon_sym_GT] = ACTIONS(5574), + [anon_sym_GT_EQ] = ACTIONS(5572), + [anon_sym_AMP] = ACTIONS(5574), + [anon_sym_xor] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [anon_sym_LT_LT_PIPE] = ACTIONS(5574), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5574), + [anon_sym_catch] = ACTIONS(5574), + [anon_sym_TILDE] = ACTIONS(5572), + [anon_sym_try] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5572), + [anon_sym_true] = ACTIONS(5574), + [anon_sym_false] = ACTIONS(5574), + [anon_sym_null] = ACTIONS(5574), + [anon_sym_unreachable] = ACTIONS(5574), + [anon_sym_undefined] = ACTIONS(5574), + [sym_sink] = ACTIONS(5574), + [sym_integer] = ACTIONS(5574), + [sym_float] = ACTIONS(5572), + [anon_sym_DQUOTE] = ACTIONS(5572), + [sym_multiline_string] = ACTIONS(5572), + [sym_character] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5572), + }, + [STATE(2945)] = { + [sym_identifier] = ACTIONS(5578), + [anon_sym_func] = ACTIONS(5578), + [anon_sym_c_func] = ACTIONS(5578), + [anon_sym_BANG] = ACTIONS(5578), + [anon_sym_EQ] = ACTIONS(5578), + [anon_sym_struct] = ACTIONS(5578), + [anon_sym_LPAREN] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5576), + [anon_sym_COMMA] = ACTIONS(5576), + [anon_sym_RBRACE] = ACTIONS(5576), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_DOLLAR] = ACTIONS(5576), + [anon_sym_PIPE] = ACTIONS(5578), + [anon_sym_struct_type_BANG] = ACTIONS(5576), + [anon_sym_QMARK] = ACTIONS(5576), + [anon_sym_AT] = ACTIONS(5576), + [anon_sym_STAR] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym_void] = ACTIONS(5578), + [anon_sym_noreturn] = ACTIONS(5578), + [anon_sym_type] = ACTIONS(5578), + [anon_sym_anyopaque] = ACTIONS(5578), + [anon_sym_bool] = ACTIONS(5578), + [anon_sym_int] = ACTIONS(5578), + [anon_sym_uint] = ACTIONS(5578), + [anon_sym_float] = ACTIONS(5578), + [anon_sym_range] = ACTIONS(5578), + [anon_sym_i8] = ACTIONS(5578), + [anon_sym_i16] = ACTIONS(5578), + [anon_sym_i32] = ACTIONS(5578), + [anon_sym_i64] = ACTIONS(5578), + [anon_sym_u8] = ACTIONS(5578), + [anon_sym_u16] = ACTIONS(5578), + [anon_sym_u32] = ACTIONS(5578), + [anon_sym_u64] = ACTIONS(5578), + [anon_sym_isize] = ACTIONS(5578), + [anon_sym_usize] = ACTIONS(5578), + [anon_sym_f32] = ACTIONS(5578), + [anon_sym_f64] = ACTIONS(5578), + [anon_sym_c_char] = ACTIONS(5578), + [anon_sym_c_schar] = ACTIONS(5578), + [anon_sym_c_uchar] = ACTIONS(5578), + [anon_sym_c_short] = ACTIONS(5578), + [anon_sym_c_ushort] = ACTIONS(5578), + [anon_sym_c_int] = ACTIONS(5578), + [anon_sym_c_uint] = ACTIONS(5578), + [anon_sym_c_long] = ACTIONS(5578), + [anon_sym_c_ulong] = ACTIONS(5578), + [anon_sym_c_longlong] = ACTIONS(5578), + [anon_sym_c_ulonglong] = ACTIONS(5578), + [anon_sym_c_float] = ACTIONS(5578), + [anon_sym_c_double] = ACTIONS(5578), + [anon_sym_c_longdouble] = ACTIONS(5578), + [anon_sym_PLUS_EQ] = ACTIONS(5576), + [anon_sym_DASH_EQ] = ACTIONS(5576), + [anon_sym_STAR_EQ] = ACTIONS(5576), + [anon_sym_SLASH_EQ] = ACTIONS(5576), + [anon_sym_AMP_EQ] = ACTIONS(5576), + [anon_sym_PIPE_EQ] = ACTIONS(5576), + [anon_sym_xor_EQ] = ACTIONS(5576), + [anon_sym_LT_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_GT_EQ] = ACTIONS(5576), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5576), + [anon_sym_return] = ACTIONS(5578), + [anon_sym_yield] = ACTIONS(5578), + [anon_sym_break] = ACTIONS(5578), + [anon_sym_continue] = ACTIONS(5578), + [anon_sym_defer] = ACTIONS(5578), + [anon_sym_errdefer] = ACTIONS(5578), + [anon_sym_if] = ACTIONS(5578), + [anon_sym_else] = ACTIONS(5578), + [anon_sym_while] = ACTIONS(5578), + [anon_sym_expand] = ACTIONS(5578), + [anon_sym_for] = ACTIONS(5578), + [anon_sym_match] = ACTIONS(5578), + [anon_sym_DOT_DOT] = ACTIONS(5578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5576), + [anon_sym_orelse] = ACTIONS(5578), + [anon_sym_or] = ACTIONS(5578), + [anon_sym_and] = ACTIONS(5578), + [anon_sym_EQ_EQ] = ACTIONS(5576), + [anon_sym_BANG_EQ] = ACTIONS(5576), + [anon_sym_LT] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5578), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_AMP] = ACTIONS(5578), + [anon_sym_xor] = ACTIONS(5578), + [anon_sym_LT_LT] = ACTIONS(5578), + [anon_sym_GT_GT] = ACTIONS(5578), + [anon_sym_LT_LT_PIPE] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_SLASH] = ACTIONS(5578), + [anon_sym_catch] = ACTIONS(5578), + [anon_sym_TILDE] = ACTIONS(5576), + [anon_sym_try] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_CARET] = ACTIONS(5576), + [anon_sym_true] = ACTIONS(5578), + [anon_sym_false] = ACTIONS(5578), + [anon_sym_null] = ACTIONS(5578), + [anon_sym_unreachable] = ACTIONS(5578), + [anon_sym_undefined] = ACTIONS(5578), + [sym_sink] = ACTIONS(5578), + [sym_integer] = ACTIONS(5578), + [sym_float] = ACTIONS(5576), + [anon_sym_DQUOTE] = ACTIONS(5576), + [sym_multiline_string] = ACTIONS(5576), + [sym_character] = ACTIONS(5576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5576), + }, + [STATE(2946)] = { + [sym_identifier] = ACTIONS(5582), + [anon_sym_func] = ACTIONS(5582), + [anon_sym_c_func] = ACTIONS(5582), + [anon_sym_BANG] = ACTIONS(5582), + [anon_sym_EQ] = ACTIONS(5582), + [anon_sym_struct] = ACTIONS(5582), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_LBRACE] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(5580), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_DOLLAR] = ACTIONS(5580), + [anon_sym_PIPE] = ACTIONS(5582), + [anon_sym_struct_type_BANG] = ACTIONS(5580), + [anon_sym_QMARK] = ACTIONS(5580), + [anon_sym_AT] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5580), + [anon_sym_void] = ACTIONS(5582), + [anon_sym_noreturn] = ACTIONS(5582), + [anon_sym_type] = ACTIONS(5582), + [anon_sym_anyopaque] = ACTIONS(5582), + [anon_sym_bool] = ACTIONS(5582), + [anon_sym_int] = ACTIONS(5582), + [anon_sym_uint] = ACTIONS(5582), + [anon_sym_float] = ACTIONS(5582), + [anon_sym_range] = ACTIONS(5582), + [anon_sym_i8] = ACTIONS(5582), + [anon_sym_i16] = ACTIONS(5582), + [anon_sym_i32] = ACTIONS(5582), + [anon_sym_i64] = ACTIONS(5582), + [anon_sym_u8] = ACTIONS(5582), + [anon_sym_u16] = ACTIONS(5582), + [anon_sym_u32] = ACTIONS(5582), + [anon_sym_u64] = ACTIONS(5582), + [anon_sym_isize] = ACTIONS(5582), + [anon_sym_usize] = ACTIONS(5582), + [anon_sym_f32] = ACTIONS(5582), + [anon_sym_f64] = ACTIONS(5582), + [anon_sym_c_char] = ACTIONS(5582), + [anon_sym_c_schar] = ACTIONS(5582), + [anon_sym_c_uchar] = ACTIONS(5582), + [anon_sym_c_short] = ACTIONS(5582), + [anon_sym_c_ushort] = ACTIONS(5582), + [anon_sym_c_int] = ACTIONS(5582), + [anon_sym_c_uint] = ACTIONS(5582), + [anon_sym_c_long] = ACTIONS(5582), + [anon_sym_c_ulong] = ACTIONS(5582), + [anon_sym_c_longlong] = ACTIONS(5582), + [anon_sym_c_ulonglong] = ACTIONS(5582), + [anon_sym_c_float] = ACTIONS(5582), + [anon_sym_c_double] = ACTIONS(5582), + [anon_sym_c_longdouble] = ACTIONS(5582), + [anon_sym_PLUS_EQ] = ACTIONS(5580), + [anon_sym_DASH_EQ] = ACTIONS(5580), + [anon_sym_STAR_EQ] = ACTIONS(5580), + [anon_sym_SLASH_EQ] = ACTIONS(5580), + [anon_sym_AMP_EQ] = ACTIONS(5580), + [anon_sym_PIPE_EQ] = ACTIONS(5580), + [anon_sym_xor_EQ] = ACTIONS(5580), + [anon_sym_LT_LT_EQ] = ACTIONS(5580), + [anon_sym_GT_GT_EQ] = ACTIONS(5580), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5580), + [anon_sym_return] = ACTIONS(5582), + [anon_sym_yield] = ACTIONS(5582), + [anon_sym_break] = ACTIONS(5582), + [anon_sym_continue] = ACTIONS(5582), + [anon_sym_defer] = ACTIONS(5582), + [anon_sym_errdefer] = ACTIONS(5582), + [anon_sym_if] = ACTIONS(5582), + [anon_sym_else] = ACTIONS(5582), + [anon_sym_while] = ACTIONS(5582), + [anon_sym_expand] = ACTIONS(5582), + [anon_sym_for] = ACTIONS(5582), + [anon_sym_match] = ACTIONS(5582), + [anon_sym_DOT_DOT] = ACTIONS(5582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5580), + [anon_sym_orelse] = ACTIONS(5582), + [anon_sym_or] = ACTIONS(5582), + [anon_sym_and] = ACTIONS(5582), + [anon_sym_EQ_EQ] = ACTIONS(5580), + [anon_sym_BANG_EQ] = ACTIONS(5580), + [anon_sym_LT] = ACTIONS(5582), + [anon_sym_LT_EQ] = ACTIONS(5580), + [anon_sym_GT] = ACTIONS(5582), + [anon_sym_GT_EQ] = ACTIONS(5580), + [anon_sym_AMP] = ACTIONS(5582), + [anon_sym_xor] = ACTIONS(5582), + [anon_sym_LT_LT] = ACTIONS(5582), + [anon_sym_GT_GT] = ACTIONS(5582), + [anon_sym_LT_LT_PIPE] = ACTIONS(5582), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_catch] = ACTIONS(5582), + [anon_sym_TILDE] = ACTIONS(5580), + [anon_sym_try] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(5582), + [anon_sym_CARET] = ACTIONS(5580), + [anon_sym_true] = ACTIONS(5582), + [anon_sym_false] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(5582), + [anon_sym_unreachable] = ACTIONS(5582), + [anon_sym_undefined] = ACTIONS(5582), + [sym_sink] = ACTIONS(5582), + [sym_integer] = ACTIONS(5582), + [sym_float] = ACTIONS(5580), + [anon_sym_DQUOTE] = ACTIONS(5580), + [sym_multiline_string] = ACTIONS(5580), + [sym_character] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5580), + }, + [STATE(2947)] = { + [sym_identifier] = ACTIONS(5586), + [anon_sym_func] = ACTIONS(5586), + [anon_sym_c_func] = ACTIONS(5586), + [anon_sym_BANG] = ACTIONS(5586), + [anon_sym_EQ] = ACTIONS(5586), + [anon_sym_struct] = ACTIONS(5586), + [anon_sym_LPAREN] = ACTIONS(5584), + [anon_sym_LBRACE] = ACTIONS(5584), + [anon_sym_COMMA] = ACTIONS(5584), + [anon_sym_RBRACE] = ACTIONS(5584), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_DOLLAR] = ACTIONS(5584), + [anon_sym_PIPE] = ACTIONS(5586), + [anon_sym_struct_type_BANG] = ACTIONS(5584), + [anon_sym_QMARK] = ACTIONS(5584), + [anon_sym_AT] = ACTIONS(5584), + [anon_sym_STAR] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5584), + [anon_sym_void] = ACTIONS(5586), + [anon_sym_noreturn] = ACTIONS(5586), + [anon_sym_type] = ACTIONS(5586), + [anon_sym_anyopaque] = ACTIONS(5586), + [anon_sym_bool] = ACTIONS(5586), + [anon_sym_int] = ACTIONS(5586), + [anon_sym_uint] = ACTIONS(5586), + [anon_sym_float] = ACTIONS(5586), + [anon_sym_range] = ACTIONS(5586), + [anon_sym_i8] = ACTIONS(5586), + [anon_sym_i16] = ACTIONS(5586), + [anon_sym_i32] = ACTIONS(5586), + [anon_sym_i64] = ACTIONS(5586), + [anon_sym_u8] = ACTIONS(5586), + [anon_sym_u16] = ACTIONS(5586), + [anon_sym_u32] = ACTIONS(5586), + [anon_sym_u64] = ACTIONS(5586), + [anon_sym_isize] = ACTIONS(5586), + [anon_sym_usize] = ACTIONS(5586), + [anon_sym_f32] = ACTIONS(5586), + [anon_sym_f64] = ACTIONS(5586), + [anon_sym_c_char] = ACTIONS(5586), + [anon_sym_c_schar] = ACTIONS(5586), + [anon_sym_c_uchar] = ACTIONS(5586), + [anon_sym_c_short] = ACTIONS(5586), + [anon_sym_c_ushort] = ACTIONS(5586), + [anon_sym_c_int] = ACTIONS(5586), + [anon_sym_c_uint] = ACTIONS(5586), + [anon_sym_c_long] = ACTIONS(5586), + [anon_sym_c_ulong] = ACTIONS(5586), + [anon_sym_c_longlong] = ACTIONS(5586), + [anon_sym_c_ulonglong] = ACTIONS(5586), + [anon_sym_c_float] = ACTIONS(5586), + [anon_sym_c_double] = ACTIONS(5586), + [anon_sym_c_longdouble] = ACTIONS(5586), + [anon_sym_PLUS_EQ] = ACTIONS(5584), + [anon_sym_DASH_EQ] = ACTIONS(5584), + [anon_sym_STAR_EQ] = ACTIONS(5584), + [anon_sym_SLASH_EQ] = ACTIONS(5584), + [anon_sym_AMP_EQ] = ACTIONS(5584), + [anon_sym_PIPE_EQ] = ACTIONS(5584), + [anon_sym_xor_EQ] = ACTIONS(5584), + [anon_sym_LT_LT_EQ] = ACTIONS(5584), + [anon_sym_GT_GT_EQ] = ACTIONS(5584), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5584), + [anon_sym_return] = ACTIONS(5586), + [anon_sym_yield] = ACTIONS(5586), + [anon_sym_break] = ACTIONS(5586), + [anon_sym_continue] = ACTIONS(5586), + [anon_sym_defer] = ACTIONS(5586), + [anon_sym_errdefer] = ACTIONS(5586), + [anon_sym_if] = ACTIONS(5586), + [anon_sym_else] = ACTIONS(5586), + [anon_sym_while] = ACTIONS(5586), + [anon_sym_expand] = ACTIONS(5586), + [anon_sym_for] = ACTIONS(5586), + [anon_sym_match] = ACTIONS(5586), + [anon_sym_DOT_DOT] = ACTIONS(5586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5584), + [anon_sym_orelse] = ACTIONS(5586), + [anon_sym_or] = ACTIONS(5586), + [anon_sym_and] = ACTIONS(5586), + [anon_sym_EQ_EQ] = ACTIONS(5584), + [anon_sym_BANG_EQ] = ACTIONS(5584), + [anon_sym_LT] = ACTIONS(5586), + [anon_sym_LT_EQ] = ACTIONS(5584), + [anon_sym_GT] = ACTIONS(5586), + [anon_sym_GT_EQ] = ACTIONS(5584), + [anon_sym_AMP] = ACTIONS(5586), + [anon_sym_xor] = ACTIONS(5586), + [anon_sym_LT_LT] = ACTIONS(5586), + [anon_sym_GT_GT] = ACTIONS(5586), + [anon_sym_LT_LT_PIPE] = ACTIONS(5586), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_SLASH] = ACTIONS(5586), + [anon_sym_catch] = ACTIONS(5586), + [anon_sym_TILDE] = ACTIONS(5584), + [anon_sym_try] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(5586), + [anon_sym_CARET] = ACTIONS(5584), + [anon_sym_true] = ACTIONS(5586), + [anon_sym_false] = ACTIONS(5586), + [anon_sym_null] = ACTIONS(5586), + [anon_sym_unreachable] = ACTIONS(5586), + [anon_sym_undefined] = ACTIONS(5586), + [sym_sink] = ACTIONS(5586), + [sym_integer] = ACTIONS(5586), + [sym_float] = ACTIONS(5584), + [anon_sym_DQUOTE] = ACTIONS(5584), + [sym_multiline_string] = ACTIONS(5584), + [sym_character] = ACTIONS(5584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5584), + }, + [STATE(2948)] = { + [sym_identifier] = ACTIONS(5590), + [anon_sym_func] = ACTIONS(5590), + [anon_sym_c_func] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(5590), + [anon_sym_struct] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5588), + [anon_sym_LBRACE] = ACTIONS(5588), + [anon_sym_COMMA] = ACTIONS(5588), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_DASH] = ACTIONS(5590), + [anon_sym_DOLLAR] = ACTIONS(5588), + [anon_sym_PIPE] = ACTIONS(5590), + [anon_sym_struct_type_BANG] = ACTIONS(5588), + [anon_sym_QMARK] = ACTIONS(5588), + [anon_sym_AT] = ACTIONS(5588), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(5588), + [anon_sym_void] = ACTIONS(5590), + [anon_sym_noreturn] = ACTIONS(5590), + [anon_sym_type] = ACTIONS(5590), + [anon_sym_anyopaque] = ACTIONS(5590), + [anon_sym_bool] = ACTIONS(5590), + [anon_sym_int] = ACTIONS(5590), + [anon_sym_uint] = ACTIONS(5590), + [anon_sym_float] = ACTIONS(5590), + [anon_sym_range] = ACTIONS(5590), + [anon_sym_i8] = ACTIONS(5590), + [anon_sym_i16] = ACTIONS(5590), + [anon_sym_i32] = ACTIONS(5590), + [anon_sym_i64] = ACTIONS(5590), + [anon_sym_u8] = ACTIONS(5590), + [anon_sym_u16] = ACTIONS(5590), + [anon_sym_u32] = ACTIONS(5590), + [anon_sym_u64] = ACTIONS(5590), + [anon_sym_isize] = ACTIONS(5590), + [anon_sym_usize] = ACTIONS(5590), + [anon_sym_f32] = ACTIONS(5590), + [anon_sym_f64] = ACTIONS(5590), + [anon_sym_c_char] = ACTIONS(5590), + [anon_sym_c_schar] = ACTIONS(5590), + [anon_sym_c_uchar] = ACTIONS(5590), + [anon_sym_c_short] = ACTIONS(5590), + [anon_sym_c_ushort] = ACTIONS(5590), + [anon_sym_c_int] = ACTIONS(5590), + [anon_sym_c_uint] = ACTIONS(5590), + [anon_sym_c_long] = ACTIONS(5590), + [anon_sym_c_ulong] = ACTIONS(5590), + [anon_sym_c_longlong] = ACTIONS(5590), + [anon_sym_c_ulonglong] = ACTIONS(5590), + [anon_sym_c_float] = ACTIONS(5590), + [anon_sym_c_double] = ACTIONS(5590), + [anon_sym_c_longdouble] = ACTIONS(5590), + [anon_sym_PLUS_EQ] = ACTIONS(5588), + [anon_sym_DASH_EQ] = ACTIONS(5588), + [anon_sym_STAR_EQ] = ACTIONS(5588), + [anon_sym_SLASH_EQ] = ACTIONS(5588), + [anon_sym_AMP_EQ] = ACTIONS(5588), + [anon_sym_PIPE_EQ] = ACTIONS(5588), + [anon_sym_xor_EQ] = ACTIONS(5588), + [anon_sym_LT_LT_EQ] = ACTIONS(5588), + [anon_sym_GT_GT_EQ] = ACTIONS(5588), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5588), + [anon_sym_return] = ACTIONS(5590), + [anon_sym_yield] = ACTIONS(5590), + [anon_sym_break] = ACTIONS(5590), + [anon_sym_continue] = ACTIONS(5590), + [anon_sym_defer] = ACTIONS(5590), + [anon_sym_errdefer] = ACTIONS(5590), + [anon_sym_if] = ACTIONS(5590), + [anon_sym_else] = ACTIONS(5590), + [anon_sym_while] = ACTIONS(5590), + [anon_sym_expand] = ACTIONS(5590), + [anon_sym_for] = ACTIONS(5590), + [anon_sym_match] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5588), + [anon_sym_orelse] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_EQ_EQ] = ACTIONS(5588), + [anon_sym_BANG_EQ] = ACTIONS(5588), + [anon_sym_LT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5588), + [anon_sym_GT] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5588), + [anon_sym_AMP] = ACTIONS(5590), + [anon_sym_xor] = ACTIONS(5590), + [anon_sym_LT_LT] = ACTIONS(5590), + [anon_sym_GT_GT] = ACTIONS(5590), + [anon_sym_LT_LT_PIPE] = ACTIONS(5590), + [anon_sym_PLUS] = ACTIONS(5590), + [anon_sym_SLASH] = ACTIONS(5590), + [anon_sym_catch] = ACTIONS(5590), + [anon_sym_TILDE] = ACTIONS(5588), + [anon_sym_try] = ACTIONS(5590), + [anon_sym_DOT] = ACTIONS(5590), + [anon_sym_CARET] = ACTIONS(5588), + [anon_sym_true] = ACTIONS(5590), + [anon_sym_false] = ACTIONS(5590), + [anon_sym_null] = ACTIONS(5590), + [anon_sym_unreachable] = ACTIONS(5590), + [anon_sym_undefined] = ACTIONS(5590), + [sym_sink] = ACTIONS(5590), + [sym_integer] = ACTIONS(5590), + [sym_float] = ACTIONS(5588), + [anon_sym_DQUOTE] = ACTIONS(5588), + [sym_multiline_string] = ACTIONS(5588), + [sym_character] = ACTIONS(5588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5588), + }, + [STATE(2949)] = { + [sym_identifier] = ACTIONS(5594), + [anon_sym_func] = ACTIONS(5594), + [anon_sym_c_func] = ACTIONS(5594), + [anon_sym_BANG] = ACTIONS(5594), + [anon_sym_EQ] = ACTIONS(5594), + [anon_sym_struct] = ACTIONS(5594), + [anon_sym_LPAREN] = ACTIONS(5592), + [anon_sym_LBRACE] = ACTIONS(5592), + [anon_sym_COMMA] = ACTIONS(5592), + [anon_sym_RBRACE] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5594), + [anon_sym_DOLLAR] = ACTIONS(5592), + [anon_sym_PIPE] = ACTIONS(5594), + [anon_sym_struct_type_BANG] = ACTIONS(5592), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_AT] = ACTIONS(5592), + [anon_sym_STAR] = ACTIONS(5594), + [anon_sym_LBRACK] = ACTIONS(5592), + [anon_sym_void] = ACTIONS(5594), + [anon_sym_noreturn] = ACTIONS(5594), + [anon_sym_type] = ACTIONS(5594), + [anon_sym_anyopaque] = ACTIONS(5594), + [anon_sym_bool] = ACTIONS(5594), + [anon_sym_int] = ACTIONS(5594), + [anon_sym_uint] = ACTIONS(5594), + [anon_sym_float] = ACTIONS(5594), + [anon_sym_range] = ACTIONS(5594), + [anon_sym_i8] = ACTIONS(5594), + [anon_sym_i16] = ACTIONS(5594), + [anon_sym_i32] = ACTIONS(5594), + [anon_sym_i64] = ACTIONS(5594), + [anon_sym_u8] = ACTIONS(5594), + [anon_sym_u16] = ACTIONS(5594), + [anon_sym_u32] = ACTIONS(5594), + [anon_sym_u64] = ACTIONS(5594), + [anon_sym_isize] = ACTIONS(5594), + [anon_sym_usize] = ACTIONS(5594), + [anon_sym_f32] = ACTIONS(5594), + [anon_sym_f64] = ACTIONS(5594), + [anon_sym_c_char] = ACTIONS(5594), + [anon_sym_c_schar] = ACTIONS(5594), + [anon_sym_c_uchar] = ACTIONS(5594), + [anon_sym_c_short] = ACTIONS(5594), + [anon_sym_c_ushort] = ACTIONS(5594), + [anon_sym_c_int] = ACTIONS(5594), + [anon_sym_c_uint] = ACTIONS(5594), + [anon_sym_c_long] = ACTIONS(5594), + [anon_sym_c_ulong] = ACTIONS(5594), + [anon_sym_c_longlong] = ACTIONS(5594), + [anon_sym_c_ulonglong] = ACTIONS(5594), + [anon_sym_c_float] = ACTIONS(5594), + [anon_sym_c_double] = ACTIONS(5594), + [anon_sym_c_longdouble] = ACTIONS(5594), + [anon_sym_PLUS_EQ] = ACTIONS(5592), + [anon_sym_DASH_EQ] = ACTIONS(5592), + [anon_sym_STAR_EQ] = ACTIONS(5592), + [anon_sym_SLASH_EQ] = ACTIONS(5592), + [anon_sym_AMP_EQ] = ACTIONS(5592), + [anon_sym_PIPE_EQ] = ACTIONS(5592), + [anon_sym_xor_EQ] = ACTIONS(5592), + [anon_sym_LT_LT_EQ] = ACTIONS(5592), + [anon_sym_GT_GT_EQ] = ACTIONS(5592), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5592), + [anon_sym_return] = ACTIONS(5594), + [anon_sym_yield] = ACTIONS(5594), + [anon_sym_break] = ACTIONS(5594), + [anon_sym_continue] = ACTIONS(5594), + [anon_sym_defer] = ACTIONS(5594), + [anon_sym_errdefer] = ACTIONS(5594), + [anon_sym_if] = ACTIONS(5594), + [anon_sym_else] = ACTIONS(5594), + [anon_sym_while] = ACTIONS(5594), + [anon_sym_expand] = ACTIONS(5594), + [anon_sym_for] = ACTIONS(5594), + [anon_sym_match] = ACTIONS(5594), + [anon_sym_DOT_DOT] = ACTIONS(5594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5592), + [anon_sym_orelse] = ACTIONS(5594), + [anon_sym_or] = ACTIONS(5594), + [anon_sym_and] = ACTIONS(5594), + [anon_sym_EQ_EQ] = ACTIONS(5592), + [anon_sym_BANG_EQ] = ACTIONS(5592), + [anon_sym_LT] = ACTIONS(5594), + [anon_sym_LT_EQ] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5594), + [anon_sym_GT_EQ] = ACTIONS(5592), + [anon_sym_AMP] = ACTIONS(5594), + [anon_sym_xor] = ACTIONS(5594), + [anon_sym_LT_LT] = ACTIONS(5594), + [anon_sym_GT_GT] = ACTIONS(5594), + [anon_sym_LT_LT_PIPE] = ACTIONS(5594), + [anon_sym_PLUS] = ACTIONS(5594), + [anon_sym_SLASH] = ACTIONS(5594), + [anon_sym_catch] = ACTIONS(5594), + [anon_sym_TILDE] = ACTIONS(5592), + [anon_sym_try] = ACTIONS(5594), + [anon_sym_DOT] = ACTIONS(5594), + [anon_sym_CARET] = ACTIONS(5592), + [anon_sym_true] = ACTIONS(5594), + [anon_sym_false] = ACTIONS(5594), + [anon_sym_null] = ACTIONS(5594), + [anon_sym_unreachable] = ACTIONS(5594), + [anon_sym_undefined] = ACTIONS(5594), + [sym_sink] = ACTIONS(5594), + [sym_integer] = ACTIONS(5594), + [sym_float] = ACTIONS(5592), + [anon_sym_DQUOTE] = ACTIONS(5592), + [sym_multiline_string] = ACTIONS(5592), + [sym_character] = ACTIONS(5592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5592), + }, + [STATE(2950)] = { + [sym_identifier] = ACTIONS(5598), + [anon_sym_func] = ACTIONS(5598), + [anon_sym_c_func] = ACTIONS(5598), + [anon_sym_BANG] = ACTIONS(5598), + [anon_sym_EQ] = ACTIONS(5598), + [anon_sym_struct] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5596), + [anon_sym_LBRACE] = ACTIONS(5596), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_RBRACE] = ACTIONS(5596), + [anon_sym_DASH] = ACTIONS(5598), + [anon_sym_DOLLAR] = ACTIONS(5596), + [anon_sym_PIPE] = ACTIONS(5598), + [anon_sym_struct_type_BANG] = ACTIONS(5596), + [anon_sym_QMARK] = ACTIONS(5596), + [anon_sym_AT] = ACTIONS(5596), + [anon_sym_STAR] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5596), + [anon_sym_void] = ACTIONS(5598), + [anon_sym_noreturn] = ACTIONS(5598), + [anon_sym_type] = ACTIONS(5598), + [anon_sym_anyopaque] = ACTIONS(5598), + [anon_sym_bool] = ACTIONS(5598), + [anon_sym_int] = ACTIONS(5598), + [anon_sym_uint] = ACTIONS(5598), + [anon_sym_float] = ACTIONS(5598), + [anon_sym_range] = ACTIONS(5598), + [anon_sym_i8] = ACTIONS(5598), + [anon_sym_i16] = ACTIONS(5598), + [anon_sym_i32] = ACTIONS(5598), + [anon_sym_i64] = ACTIONS(5598), + [anon_sym_u8] = ACTIONS(5598), + [anon_sym_u16] = ACTIONS(5598), + [anon_sym_u32] = ACTIONS(5598), + [anon_sym_u64] = ACTIONS(5598), + [anon_sym_isize] = ACTIONS(5598), + [anon_sym_usize] = ACTIONS(5598), + [anon_sym_f32] = ACTIONS(5598), + [anon_sym_f64] = ACTIONS(5598), + [anon_sym_c_char] = ACTIONS(5598), + [anon_sym_c_schar] = ACTIONS(5598), + [anon_sym_c_uchar] = ACTIONS(5598), + [anon_sym_c_short] = ACTIONS(5598), + [anon_sym_c_ushort] = ACTIONS(5598), + [anon_sym_c_int] = ACTIONS(5598), + [anon_sym_c_uint] = ACTIONS(5598), + [anon_sym_c_long] = ACTIONS(5598), + [anon_sym_c_ulong] = ACTIONS(5598), + [anon_sym_c_longlong] = ACTIONS(5598), + [anon_sym_c_ulonglong] = ACTIONS(5598), + [anon_sym_c_float] = ACTIONS(5598), + [anon_sym_c_double] = ACTIONS(5598), + [anon_sym_c_longdouble] = ACTIONS(5598), + [anon_sym_PLUS_EQ] = ACTIONS(5596), + [anon_sym_DASH_EQ] = ACTIONS(5596), + [anon_sym_STAR_EQ] = ACTIONS(5596), + [anon_sym_SLASH_EQ] = ACTIONS(5596), + [anon_sym_AMP_EQ] = ACTIONS(5596), + [anon_sym_PIPE_EQ] = ACTIONS(5596), + [anon_sym_xor_EQ] = ACTIONS(5596), + [anon_sym_LT_LT_EQ] = ACTIONS(5596), + [anon_sym_GT_GT_EQ] = ACTIONS(5596), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5596), + [anon_sym_return] = ACTIONS(5598), + [anon_sym_yield] = ACTIONS(5598), + [anon_sym_break] = ACTIONS(5598), + [anon_sym_continue] = ACTIONS(5598), + [anon_sym_defer] = ACTIONS(5598), + [anon_sym_errdefer] = ACTIONS(5598), + [anon_sym_if] = ACTIONS(5598), + [anon_sym_else] = ACTIONS(5598), + [anon_sym_while] = ACTIONS(5598), + [anon_sym_expand] = ACTIONS(5598), + [anon_sym_for] = ACTIONS(5598), + [anon_sym_match] = ACTIONS(5598), + [anon_sym_DOT_DOT] = ACTIONS(5598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5596), + [anon_sym_orelse] = ACTIONS(5598), + [anon_sym_or] = ACTIONS(5598), + [anon_sym_and] = ACTIONS(5598), + [anon_sym_EQ_EQ] = ACTIONS(5596), + [anon_sym_BANG_EQ] = ACTIONS(5596), + [anon_sym_LT] = ACTIONS(5598), + [anon_sym_LT_EQ] = ACTIONS(5596), + [anon_sym_GT] = ACTIONS(5598), + [anon_sym_GT_EQ] = ACTIONS(5596), + [anon_sym_AMP] = ACTIONS(5598), + [anon_sym_xor] = ACTIONS(5598), + [anon_sym_LT_LT] = ACTIONS(5598), + [anon_sym_GT_GT] = ACTIONS(5598), + [anon_sym_LT_LT_PIPE] = ACTIONS(5598), + [anon_sym_PLUS] = ACTIONS(5598), + [anon_sym_SLASH] = ACTIONS(5598), + [anon_sym_catch] = ACTIONS(5598), + [anon_sym_TILDE] = ACTIONS(5596), + [anon_sym_try] = ACTIONS(5598), + [anon_sym_DOT] = ACTIONS(5598), + [anon_sym_CARET] = ACTIONS(5596), + [anon_sym_true] = ACTIONS(5598), + [anon_sym_false] = ACTIONS(5598), + [anon_sym_null] = ACTIONS(5598), + [anon_sym_unreachable] = ACTIONS(5598), + [anon_sym_undefined] = ACTIONS(5598), + [sym_sink] = ACTIONS(5598), + [sym_integer] = ACTIONS(5598), + [sym_float] = ACTIONS(5596), + [anon_sym_DQUOTE] = ACTIONS(5596), + [sym_multiline_string] = ACTIONS(5596), + [sym_character] = ACTIONS(5596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5596), + }, + [STATE(2951)] = { + [sym_identifier] = ACTIONS(5602), + [anon_sym_func] = ACTIONS(5602), + [anon_sym_c_func] = ACTIONS(5602), + [anon_sym_BANG] = ACTIONS(5602), + [anon_sym_EQ] = ACTIONS(5602), + [anon_sym_struct] = ACTIONS(5602), + [anon_sym_LPAREN] = ACTIONS(5600), + [anon_sym_LBRACE] = ACTIONS(5600), + [anon_sym_COMMA] = ACTIONS(5600), + [anon_sym_RBRACE] = ACTIONS(5600), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_DOLLAR] = ACTIONS(5600), + [anon_sym_PIPE] = ACTIONS(5602), + [anon_sym_struct_type_BANG] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5600), + [anon_sym_AT] = ACTIONS(5600), + [anon_sym_STAR] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_void] = ACTIONS(5602), + [anon_sym_noreturn] = ACTIONS(5602), + [anon_sym_type] = ACTIONS(5602), + [anon_sym_anyopaque] = ACTIONS(5602), + [anon_sym_bool] = ACTIONS(5602), + [anon_sym_int] = ACTIONS(5602), + [anon_sym_uint] = ACTIONS(5602), + [anon_sym_float] = ACTIONS(5602), + [anon_sym_range] = ACTIONS(5602), + [anon_sym_i8] = ACTIONS(5602), + [anon_sym_i16] = ACTIONS(5602), + [anon_sym_i32] = ACTIONS(5602), + [anon_sym_i64] = ACTIONS(5602), + [anon_sym_u8] = ACTIONS(5602), + [anon_sym_u16] = ACTIONS(5602), + [anon_sym_u32] = ACTIONS(5602), + [anon_sym_u64] = ACTIONS(5602), + [anon_sym_isize] = ACTIONS(5602), + [anon_sym_usize] = ACTIONS(5602), + [anon_sym_f32] = ACTIONS(5602), + [anon_sym_f64] = ACTIONS(5602), + [anon_sym_c_char] = ACTIONS(5602), + [anon_sym_c_schar] = ACTIONS(5602), + [anon_sym_c_uchar] = ACTIONS(5602), + [anon_sym_c_short] = ACTIONS(5602), + [anon_sym_c_ushort] = ACTIONS(5602), + [anon_sym_c_int] = ACTIONS(5602), + [anon_sym_c_uint] = ACTIONS(5602), + [anon_sym_c_long] = ACTIONS(5602), + [anon_sym_c_ulong] = ACTIONS(5602), + [anon_sym_c_longlong] = ACTIONS(5602), + [anon_sym_c_ulonglong] = ACTIONS(5602), + [anon_sym_c_float] = ACTIONS(5602), + [anon_sym_c_double] = ACTIONS(5602), + [anon_sym_c_longdouble] = ACTIONS(5602), + [anon_sym_PLUS_EQ] = ACTIONS(5600), + [anon_sym_DASH_EQ] = ACTIONS(5600), + [anon_sym_STAR_EQ] = ACTIONS(5600), + [anon_sym_SLASH_EQ] = ACTIONS(5600), + [anon_sym_AMP_EQ] = ACTIONS(5600), + [anon_sym_PIPE_EQ] = ACTIONS(5600), + [anon_sym_xor_EQ] = ACTIONS(5600), + [anon_sym_LT_LT_EQ] = ACTIONS(5600), + [anon_sym_GT_GT_EQ] = ACTIONS(5600), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5600), + [anon_sym_return] = ACTIONS(5602), + [anon_sym_yield] = ACTIONS(5602), + [anon_sym_break] = ACTIONS(5602), + [anon_sym_continue] = ACTIONS(5602), + [anon_sym_defer] = ACTIONS(5602), + [anon_sym_errdefer] = ACTIONS(5602), + [anon_sym_if] = ACTIONS(5602), + [anon_sym_else] = ACTIONS(5602), + [anon_sym_while] = ACTIONS(5602), + [anon_sym_expand] = ACTIONS(5602), + [anon_sym_for] = ACTIONS(5602), + [anon_sym_match] = ACTIONS(5602), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5600), + [anon_sym_orelse] = ACTIONS(5602), + [anon_sym_or] = ACTIONS(5602), + [anon_sym_and] = ACTIONS(5602), + [anon_sym_EQ_EQ] = ACTIONS(5600), + [anon_sym_BANG_EQ] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5600), + [anon_sym_GT] = ACTIONS(5602), + [anon_sym_GT_EQ] = ACTIONS(5600), + [anon_sym_AMP] = ACTIONS(5602), + [anon_sym_xor] = ACTIONS(5602), + [anon_sym_LT_LT] = ACTIONS(5602), + [anon_sym_GT_GT] = ACTIONS(5602), + [anon_sym_LT_LT_PIPE] = ACTIONS(5602), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_SLASH] = ACTIONS(5602), + [anon_sym_catch] = ACTIONS(5602), + [anon_sym_TILDE] = ACTIONS(5600), + [anon_sym_try] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5602), + [anon_sym_CARET] = ACTIONS(5600), + [anon_sym_true] = ACTIONS(5602), + [anon_sym_false] = ACTIONS(5602), + [anon_sym_null] = ACTIONS(5602), + [anon_sym_unreachable] = ACTIONS(5602), + [anon_sym_undefined] = ACTIONS(5602), + [sym_sink] = ACTIONS(5602), + [sym_integer] = ACTIONS(5602), + [sym_float] = ACTIONS(5600), + [anon_sym_DQUOTE] = ACTIONS(5600), + [sym_multiline_string] = ACTIONS(5600), + [sym_character] = ACTIONS(5600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5600), + }, + [STATE(2952)] = { + [sym_identifier] = ACTIONS(5606), + [anon_sym_func] = ACTIONS(5606), + [anon_sym_c_func] = ACTIONS(5606), + [anon_sym_BANG] = ACTIONS(5606), + [anon_sym_EQ] = ACTIONS(5606), + [anon_sym_struct] = ACTIONS(5606), + [anon_sym_LPAREN] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(5604), + [anon_sym_COMMA] = ACTIONS(5604), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_DASH] = ACTIONS(5606), + [anon_sym_DOLLAR] = ACTIONS(5604), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_struct_type_BANG] = ACTIONS(5604), + [anon_sym_QMARK] = ACTIONS(5604), + [anon_sym_AT] = ACTIONS(5604), + [anon_sym_STAR] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(5604), + [anon_sym_void] = ACTIONS(5606), + [anon_sym_noreturn] = ACTIONS(5606), + [anon_sym_type] = ACTIONS(5606), + [anon_sym_anyopaque] = ACTIONS(5606), + [anon_sym_bool] = ACTIONS(5606), + [anon_sym_int] = ACTIONS(5606), + [anon_sym_uint] = ACTIONS(5606), + [anon_sym_float] = ACTIONS(5606), + [anon_sym_range] = ACTIONS(5606), + [anon_sym_i8] = ACTIONS(5606), + [anon_sym_i16] = ACTIONS(5606), + [anon_sym_i32] = ACTIONS(5606), + [anon_sym_i64] = ACTIONS(5606), + [anon_sym_u8] = ACTIONS(5606), + [anon_sym_u16] = ACTIONS(5606), + [anon_sym_u32] = ACTIONS(5606), + [anon_sym_u64] = ACTIONS(5606), + [anon_sym_isize] = ACTIONS(5606), + [anon_sym_usize] = ACTIONS(5606), + [anon_sym_f32] = ACTIONS(5606), + [anon_sym_f64] = ACTIONS(5606), + [anon_sym_c_char] = ACTIONS(5606), + [anon_sym_c_schar] = ACTIONS(5606), + [anon_sym_c_uchar] = ACTIONS(5606), + [anon_sym_c_short] = ACTIONS(5606), + [anon_sym_c_ushort] = ACTIONS(5606), + [anon_sym_c_int] = ACTIONS(5606), + [anon_sym_c_uint] = ACTIONS(5606), + [anon_sym_c_long] = ACTIONS(5606), + [anon_sym_c_ulong] = ACTIONS(5606), + [anon_sym_c_longlong] = ACTIONS(5606), + [anon_sym_c_ulonglong] = ACTIONS(5606), + [anon_sym_c_float] = ACTIONS(5606), + [anon_sym_c_double] = ACTIONS(5606), + [anon_sym_c_longdouble] = ACTIONS(5606), + [anon_sym_PLUS_EQ] = ACTIONS(5604), + [anon_sym_DASH_EQ] = ACTIONS(5604), + [anon_sym_STAR_EQ] = ACTIONS(5604), + [anon_sym_SLASH_EQ] = ACTIONS(5604), + [anon_sym_AMP_EQ] = ACTIONS(5604), + [anon_sym_PIPE_EQ] = ACTIONS(5604), + [anon_sym_xor_EQ] = ACTIONS(5604), + [anon_sym_LT_LT_EQ] = ACTIONS(5604), + [anon_sym_GT_GT_EQ] = ACTIONS(5604), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5604), + [anon_sym_return] = ACTIONS(5606), + [anon_sym_yield] = ACTIONS(5606), + [anon_sym_break] = ACTIONS(5606), + [anon_sym_continue] = ACTIONS(5606), + [anon_sym_defer] = ACTIONS(5606), + [anon_sym_errdefer] = ACTIONS(5606), + [anon_sym_if] = ACTIONS(5606), + [anon_sym_else] = ACTIONS(5606), + [anon_sym_while] = ACTIONS(5606), + [anon_sym_expand] = ACTIONS(5606), + [anon_sym_for] = ACTIONS(5606), + [anon_sym_match] = ACTIONS(5606), + [anon_sym_DOT_DOT] = ACTIONS(5606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5604), + [anon_sym_orelse] = ACTIONS(5606), + [anon_sym_or] = ACTIONS(5606), + [anon_sym_and] = ACTIONS(5606), + [anon_sym_EQ_EQ] = ACTIONS(5604), + [anon_sym_BANG_EQ] = ACTIONS(5604), + [anon_sym_LT] = ACTIONS(5606), + [anon_sym_LT_EQ] = ACTIONS(5604), + [anon_sym_GT] = ACTIONS(5606), + [anon_sym_GT_EQ] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [anon_sym_xor] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [anon_sym_LT_LT_PIPE] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5606), + [anon_sym_SLASH] = ACTIONS(5606), + [anon_sym_catch] = ACTIONS(5606), + [anon_sym_TILDE] = ACTIONS(5604), + [anon_sym_try] = ACTIONS(5606), + [anon_sym_DOT] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5604), + [anon_sym_true] = ACTIONS(5606), + [anon_sym_false] = ACTIONS(5606), + [anon_sym_null] = ACTIONS(5606), + [anon_sym_unreachable] = ACTIONS(5606), + [anon_sym_undefined] = ACTIONS(5606), + [sym_sink] = ACTIONS(5606), + [sym_integer] = ACTIONS(5606), + [sym_float] = ACTIONS(5604), + [anon_sym_DQUOTE] = ACTIONS(5604), + [sym_multiline_string] = ACTIONS(5604), + [sym_character] = ACTIONS(5604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5604), + }, + [STATE(2953)] = { + [sym_identifier] = ACTIONS(5610), + [anon_sym_func] = ACTIONS(5610), + [anon_sym_c_func] = ACTIONS(5610), + [anon_sym_BANG] = ACTIONS(5610), + [anon_sym_EQ] = ACTIONS(5610), + [anon_sym_struct] = ACTIONS(5610), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_COMMA] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_DASH] = ACTIONS(5610), + [anon_sym_DOLLAR] = ACTIONS(5608), + [anon_sym_PIPE] = ACTIONS(5610), + [anon_sym_struct_type_BANG] = ACTIONS(5608), + [anon_sym_QMARK] = ACTIONS(5608), + [anon_sym_AT] = ACTIONS(5608), + [anon_sym_STAR] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(5608), + [anon_sym_void] = ACTIONS(5610), + [anon_sym_noreturn] = ACTIONS(5610), + [anon_sym_type] = ACTIONS(5610), + [anon_sym_anyopaque] = ACTIONS(5610), + [anon_sym_bool] = ACTIONS(5610), + [anon_sym_int] = ACTIONS(5610), + [anon_sym_uint] = ACTIONS(5610), + [anon_sym_float] = ACTIONS(5610), + [anon_sym_range] = ACTIONS(5610), + [anon_sym_i8] = ACTIONS(5610), + [anon_sym_i16] = ACTIONS(5610), + [anon_sym_i32] = ACTIONS(5610), + [anon_sym_i64] = ACTIONS(5610), + [anon_sym_u8] = ACTIONS(5610), + [anon_sym_u16] = ACTIONS(5610), + [anon_sym_u32] = ACTIONS(5610), + [anon_sym_u64] = ACTIONS(5610), + [anon_sym_isize] = ACTIONS(5610), + [anon_sym_usize] = ACTIONS(5610), + [anon_sym_f32] = ACTIONS(5610), + [anon_sym_f64] = ACTIONS(5610), + [anon_sym_c_char] = ACTIONS(5610), + [anon_sym_c_schar] = ACTIONS(5610), + [anon_sym_c_uchar] = ACTIONS(5610), + [anon_sym_c_short] = ACTIONS(5610), + [anon_sym_c_ushort] = ACTIONS(5610), + [anon_sym_c_int] = ACTIONS(5610), + [anon_sym_c_uint] = ACTIONS(5610), + [anon_sym_c_long] = ACTIONS(5610), + [anon_sym_c_ulong] = ACTIONS(5610), + [anon_sym_c_longlong] = ACTIONS(5610), + [anon_sym_c_ulonglong] = ACTIONS(5610), + [anon_sym_c_float] = ACTIONS(5610), + [anon_sym_c_double] = ACTIONS(5610), + [anon_sym_c_longdouble] = ACTIONS(5610), + [anon_sym_PLUS_EQ] = ACTIONS(5608), + [anon_sym_DASH_EQ] = ACTIONS(5608), + [anon_sym_STAR_EQ] = ACTIONS(5608), + [anon_sym_SLASH_EQ] = ACTIONS(5608), + [anon_sym_AMP_EQ] = ACTIONS(5608), + [anon_sym_PIPE_EQ] = ACTIONS(5608), + [anon_sym_xor_EQ] = ACTIONS(5608), + [anon_sym_LT_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_GT_EQ] = ACTIONS(5608), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5608), + [anon_sym_return] = ACTIONS(5610), + [anon_sym_yield] = ACTIONS(5610), + [anon_sym_break] = ACTIONS(5610), + [anon_sym_continue] = ACTIONS(5610), + [anon_sym_defer] = ACTIONS(5610), + [anon_sym_errdefer] = ACTIONS(5610), + [anon_sym_if] = ACTIONS(5610), + [anon_sym_else] = ACTIONS(5610), + [anon_sym_while] = ACTIONS(5610), + [anon_sym_expand] = ACTIONS(5610), + [anon_sym_for] = ACTIONS(5610), + [anon_sym_match] = ACTIONS(5610), + [anon_sym_DOT_DOT] = ACTIONS(5610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5608), + [anon_sym_orelse] = ACTIONS(5610), + [anon_sym_or] = ACTIONS(5610), + [anon_sym_and] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5608), + [anon_sym_BANG_EQ] = ACTIONS(5608), + [anon_sym_LT] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5610), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_AMP] = ACTIONS(5610), + [anon_sym_xor] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5610), + [anon_sym_LT_LT_PIPE] = ACTIONS(5610), + [anon_sym_PLUS] = ACTIONS(5610), + [anon_sym_SLASH] = ACTIONS(5610), + [anon_sym_catch] = ACTIONS(5610), + [anon_sym_TILDE] = ACTIONS(5608), + [anon_sym_try] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5608), + [anon_sym_true] = ACTIONS(5610), + [anon_sym_false] = ACTIONS(5610), + [anon_sym_null] = ACTIONS(5610), + [anon_sym_unreachable] = ACTIONS(5610), + [anon_sym_undefined] = ACTIONS(5610), + [sym_sink] = ACTIONS(5610), + [sym_integer] = ACTIONS(5610), + [sym_float] = ACTIONS(5608), + [anon_sym_DQUOTE] = ACTIONS(5608), + [sym_multiline_string] = ACTIONS(5608), + [sym_character] = ACTIONS(5608), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5608), + }, + [STATE(2954)] = { + [sym_identifier] = ACTIONS(5614), + [anon_sym_func] = ACTIONS(5614), + [anon_sym_c_func] = ACTIONS(5614), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5614), + [anon_sym_struct] = ACTIONS(5614), + [anon_sym_LPAREN] = ACTIONS(5612), + [anon_sym_LBRACE] = ACTIONS(5612), + [anon_sym_COMMA] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5612), + [anon_sym_DASH] = ACTIONS(5614), + [anon_sym_DOLLAR] = ACTIONS(5612), + [anon_sym_PIPE] = ACTIONS(5614), + [anon_sym_struct_type_BANG] = ACTIONS(5612), + [anon_sym_QMARK] = ACTIONS(5612), + [anon_sym_AT] = ACTIONS(5612), + [anon_sym_STAR] = ACTIONS(5614), + [anon_sym_LBRACK] = ACTIONS(5612), + [anon_sym_void] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_type] = ACTIONS(5614), + [anon_sym_anyopaque] = ACTIONS(5614), + [anon_sym_bool] = ACTIONS(5614), + [anon_sym_int] = ACTIONS(5614), + [anon_sym_uint] = ACTIONS(5614), + [anon_sym_float] = ACTIONS(5614), + [anon_sym_range] = ACTIONS(5614), + [anon_sym_i8] = ACTIONS(5614), + [anon_sym_i16] = ACTIONS(5614), + [anon_sym_i32] = ACTIONS(5614), + [anon_sym_i64] = ACTIONS(5614), + [anon_sym_u8] = ACTIONS(5614), + [anon_sym_u16] = ACTIONS(5614), + [anon_sym_u32] = ACTIONS(5614), + [anon_sym_u64] = ACTIONS(5614), + [anon_sym_isize] = ACTIONS(5614), + [anon_sym_usize] = ACTIONS(5614), + [anon_sym_f32] = ACTIONS(5614), + [anon_sym_f64] = ACTIONS(5614), + [anon_sym_c_char] = ACTIONS(5614), + [anon_sym_c_schar] = ACTIONS(5614), + [anon_sym_c_uchar] = ACTIONS(5614), + [anon_sym_c_short] = ACTIONS(5614), + [anon_sym_c_ushort] = ACTIONS(5614), + [anon_sym_c_int] = ACTIONS(5614), + [anon_sym_c_uint] = ACTIONS(5614), + [anon_sym_c_long] = ACTIONS(5614), + [anon_sym_c_ulong] = ACTIONS(5614), + [anon_sym_c_longlong] = ACTIONS(5614), + [anon_sym_c_ulonglong] = ACTIONS(5614), + [anon_sym_c_float] = ACTIONS(5614), + [anon_sym_c_double] = ACTIONS(5614), + [anon_sym_c_longdouble] = ACTIONS(5614), + [anon_sym_PLUS_EQ] = ACTIONS(5612), + [anon_sym_DASH_EQ] = ACTIONS(5612), + [anon_sym_STAR_EQ] = ACTIONS(5612), + [anon_sym_SLASH_EQ] = ACTIONS(5612), + [anon_sym_AMP_EQ] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5612), + [anon_sym_xor_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_EQ] = ACTIONS(5612), + [anon_sym_GT_GT_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5612), + [anon_sym_return] = ACTIONS(5614), + [anon_sym_yield] = ACTIONS(5614), + [anon_sym_break] = ACTIONS(5614), + [anon_sym_continue] = ACTIONS(5614), + [anon_sym_defer] = ACTIONS(5614), + [anon_sym_errdefer] = ACTIONS(5614), + [anon_sym_if] = ACTIONS(5614), + [anon_sym_else] = ACTIONS(5614), + [anon_sym_while] = ACTIONS(5614), + [anon_sym_expand] = ACTIONS(5614), + [anon_sym_for] = ACTIONS(5614), + [anon_sym_match] = ACTIONS(5614), + [anon_sym_DOT_DOT] = ACTIONS(5614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5612), + [anon_sym_orelse] = ACTIONS(5614), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5612), + [anon_sym_AMP] = ACTIONS(5614), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_LT_LT_PIPE] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5614), + [anon_sym_SLASH] = ACTIONS(5614), + [anon_sym_catch] = ACTIONS(5614), + [anon_sym_TILDE] = ACTIONS(5612), + [anon_sym_try] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5612), + [anon_sym_true] = ACTIONS(5614), + [anon_sym_false] = ACTIONS(5614), + [anon_sym_null] = ACTIONS(5614), + [anon_sym_unreachable] = ACTIONS(5614), + [anon_sym_undefined] = ACTIONS(5614), + [sym_sink] = ACTIONS(5614), + [sym_integer] = ACTIONS(5614), + [sym_float] = ACTIONS(5612), + [anon_sym_DQUOTE] = ACTIONS(5612), + [sym_multiline_string] = ACTIONS(5612), + [sym_character] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5612), + }, + [STATE(2955)] = { + [sym_identifier] = ACTIONS(5618), + [anon_sym_func] = ACTIONS(5618), + [anon_sym_c_func] = ACTIONS(5618), + [anon_sym_BANG] = ACTIONS(5618), + [anon_sym_EQ] = ACTIONS(5618), + [anon_sym_struct] = ACTIONS(5618), + [anon_sym_LPAREN] = ACTIONS(5616), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5618), + [anon_sym_DOLLAR] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5618), + [anon_sym_struct_type_BANG] = ACTIONS(5616), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_AT] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_void] = ACTIONS(5618), + [anon_sym_noreturn] = ACTIONS(5618), + [anon_sym_type] = ACTIONS(5618), + [anon_sym_anyopaque] = ACTIONS(5618), + [anon_sym_bool] = ACTIONS(5618), + [anon_sym_int] = ACTIONS(5618), + [anon_sym_uint] = ACTIONS(5618), + [anon_sym_float] = ACTIONS(5618), + [anon_sym_range] = ACTIONS(5618), + [anon_sym_i8] = ACTIONS(5618), + [anon_sym_i16] = ACTIONS(5618), + [anon_sym_i32] = ACTIONS(5618), + [anon_sym_i64] = ACTIONS(5618), + [anon_sym_u8] = ACTIONS(5618), + [anon_sym_u16] = ACTIONS(5618), + [anon_sym_u32] = ACTIONS(5618), + [anon_sym_u64] = ACTIONS(5618), + [anon_sym_isize] = ACTIONS(5618), + [anon_sym_usize] = ACTIONS(5618), + [anon_sym_f32] = ACTIONS(5618), + [anon_sym_f64] = ACTIONS(5618), + [anon_sym_c_char] = ACTIONS(5618), + [anon_sym_c_schar] = ACTIONS(5618), + [anon_sym_c_uchar] = ACTIONS(5618), + [anon_sym_c_short] = ACTIONS(5618), + [anon_sym_c_ushort] = ACTIONS(5618), + [anon_sym_c_int] = ACTIONS(5618), + [anon_sym_c_uint] = ACTIONS(5618), + [anon_sym_c_long] = ACTIONS(5618), + [anon_sym_c_ulong] = ACTIONS(5618), + [anon_sym_c_longlong] = ACTIONS(5618), + [anon_sym_c_ulonglong] = ACTIONS(5618), + [anon_sym_c_float] = ACTIONS(5618), + [anon_sym_c_double] = ACTIONS(5618), + [anon_sym_c_longdouble] = ACTIONS(5618), + [anon_sym_PLUS_EQ] = ACTIONS(5616), + [anon_sym_DASH_EQ] = ACTIONS(5616), + [anon_sym_STAR_EQ] = ACTIONS(5616), + [anon_sym_SLASH_EQ] = ACTIONS(5616), + [anon_sym_AMP_EQ] = ACTIONS(5616), + [anon_sym_PIPE_EQ] = ACTIONS(5616), + [anon_sym_xor_EQ] = ACTIONS(5616), + [anon_sym_LT_LT_EQ] = ACTIONS(5616), + [anon_sym_GT_GT_EQ] = ACTIONS(5616), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5616), + [anon_sym_return] = ACTIONS(5618), + [anon_sym_yield] = ACTIONS(5618), + [anon_sym_break] = ACTIONS(5618), + [anon_sym_continue] = ACTIONS(5618), + [anon_sym_defer] = ACTIONS(5618), + [anon_sym_errdefer] = ACTIONS(5618), + [anon_sym_if] = ACTIONS(5618), + [anon_sym_else] = ACTIONS(5618), + [anon_sym_while] = ACTIONS(5618), + [anon_sym_expand] = ACTIONS(5618), + [anon_sym_for] = ACTIONS(5618), + [anon_sym_match] = ACTIONS(5618), + [anon_sym_DOT_DOT] = ACTIONS(5618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5616), + [anon_sym_orelse] = ACTIONS(5618), + [anon_sym_or] = ACTIONS(5618), + [anon_sym_and] = ACTIONS(5618), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5618), + [anon_sym_LT_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5618), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5618), + [anon_sym_xor] = ACTIONS(5618), + [anon_sym_LT_LT] = ACTIONS(5618), + [anon_sym_GT_GT] = ACTIONS(5618), + [anon_sym_LT_LT_PIPE] = ACTIONS(5618), + [anon_sym_PLUS] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_catch] = ACTIONS(5618), + [anon_sym_TILDE] = ACTIONS(5616), + [anon_sym_try] = ACTIONS(5618), + [anon_sym_DOT] = ACTIONS(5618), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_true] = ACTIONS(5618), + [anon_sym_false] = ACTIONS(5618), + [anon_sym_null] = ACTIONS(5618), + [anon_sym_unreachable] = ACTIONS(5618), + [anon_sym_undefined] = ACTIONS(5618), + [sym_sink] = ACTIONS(5618), + [sym_integer] = ACTIONS(5618), + [sym_float] = ACTIONS(5616), + [anon_sym_DQUOTE] = ACTIONS(5616), + [sym_multiline_string] = ACTIONS(5616), + [sym_character] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5616), + }, + [STATE(2956)] = { + [sym_identifier] = ACTIONS(5622), + [anon_sym_func] = ACTIONS(5622), + [anon_sym_c_func] = ACTIONS(5622), + [anon_sym_BANG] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(5622), + [anon_sym_struct] = ACTIONS(5622), + [anon_sym_LPAREN] = ACTIONS(5620), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5622), + [anon_sym_struct_type_BANG] = ACTIONS(5620), + [anon_sym_QMARK] = ACTIONS(5620), + [anon_sym_AT] = ACTIONS(5620), + [anon_sym_STAR] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym_void] = ACTIONS(5622), + [anon_sym_noreturn] = ACTIONS(5622), + [anon_sym_type] = ACTIONS(5622), + [anon_sym_anyopaque] = ACTIONS(5622), + [anon_sym_bool] = ACTIONS(5622), + [anon_sym_int] = ACTIONS(5622), + [anon_sym_uint] = ACTIONS(5622), + [anon_sym_float] = ACTIONS(5622), + [anon_sym_range] = ACTIONS(5622), + [anon_sym_i8] = ACTIONS(5622), + [anon_sym_i16] = ACTIONS(5622), + [anon_sym_i32] = ACTIONS(5622), + [anon_sym_i64] = ACTIONS(5622), + [anon_sym_u8] = ACTIONS(5622), + [anon_sym_u16] = ACTIONS(5622), + [anon_sym_u32] = ACTIONS(5622), + [anon_sym_u64] = ACTIONS(5622), + [anon_sym_isize] = ACTIONS(5622), + [anon_sym_usize] = ACTIONS(5622), + [anon_sym_f32] = ACTIONS(5622), + [anon_sym_f64] = ACTIONS(5622), + [anon_sym_c_char] = ACTIONS(5622), + [anon_sym_c_schar] = ACTIONS(5622), + [anon_sym_c_uchar] = ACTIONS(5622), + [anon_sym_c_short] = ACTIONS(5622), + [anon_sym_c_ushort] = ACTIONS(5622), + [anon_sym_c_int] = ACTIONS(5622), + [anon_sym_c_uint] = ACTIONS(5622), + [anon_sym_c_long] = ACTIONS(5622), + [anon_sym_c_ulong] = ACTIONS(5622), + [anon_sym_c_longlong] = ACTIONS(5622), + [anon_sym_c_ulonglong] = ACTIONS(5622), + [anon_sym_c_float] = ACTIONS(5622), + [anon_sym_c_double] = ACTIONS(5622), + [anon_sym_c_longdouble] = ACTIONS(5622), + [anon_sym_PLUS_EQ] = ACTIONS(5620), + [anon_sym_DASH_EQ] = ACTIONS(5620), + [anon_sym_STAR_EQ] = ACTIONS(5620), + [anon_sym_SLASH_EQ] = ACTIONS(5620), + [anon_sym_AMP_EQ] = ACTIONS(5620), + [anon_sym_PIPE_EQ] = ACTIONS(5620), + [anon_sym_xor_EQ] = ACTIONS(5620), + [anon_sym_LT_LT_EQ] = ACTIONS(5620), + [anon_sym_GT_GT_EQ] = ACTIONS(5620), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5620), + [anon_sym_return] = ACTIONS(5622), + [anon_sym_yield] = ACTIONS(5622), + [anon_sym_break] = ACTIONS(5622), + [anon_sym_continue] = ACTIONS(5622), + [anon_sym_defer] = ACTIONS(5622), + [anon_sym_errdefer] = ACTIONS(5622), + [anon_sym_if] = ACTIONS(5622), + [anon_sym_else] = ACTIONS(5622), + [anon_sym_while] = ACTIONS(5622), + [anon_sym_expand] = ACTIONS(5622), + [anon_sym_for] = ACTIONS(5622), + [anon_sym_match] = ACTIONS(5622), + [anon_sym_DOT_DOT] = ACTIONS(5622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5620), + [anon_sym_orelse] = ACTIONS(5622), + [anon_sym_or] = ACTIONS(5622), + [anon_sym_and] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5620), + [anon_sym_BANG_EQ] = ACTIONS(5620), + [anon_sym_LT] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5620), + [anon_sym_AMP] = ACTIONS(5622), + [anon_sym_xor] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5622), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_LT_LT_PIPE] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_SLASH] = ACTIONS(5622), + [anon_sym_catch] = ACTIONS(5622), + [anon_sym_TILDE] = ACTIONS(5620), + [anon_sym_try] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5622), + [anon_sym_CARET] = ACTIONS(5620), + [anon_sym_true] = ACTIONS(5622), + [anon_sym_false] = ACTIONS(5622), + [anon_sym_null] = ACTIONS(5622), + [anon_sym_unreachable] = ACTIONS(5622), + [anon_sym_undefined] = ACTIONS(5622), + [sym_sink] = ACTIONS(5622), + [sym_integer] = ACTIONS(5622), + [sym_float] = ACTIONS(5620), + [anon_sym_DQUOTE] = ACTIONS(5620), + [sym_multiline_string] = ACTIONS(5620), + [sym_character] = ACTIONS(5620), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5620), + }, + [STATE(2957)] = { + [sym_identifier] = ACTIONS(5626), + [anon_sym_func] = ACTIONS(5626), + [anon_sym_c_func] = ACTIONS(5626), + [anon_sym_BANG] = ACTIONS(5626), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_struct] = ACTIONS(5626), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_LBRACE] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_DOLLAR] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5626), + [anon_sym_struct_type_BANG] = ACTIONS(5624), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_AT] = ACTIONS(5624), + [anon_sym_STAR] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_void] = ACTIONS(5626), + [anon_sym_noreturn] = ACTIONS(5626), + [anon_sym_type] = ACTIONS(5626), + [anon_sym_anyopaque] = ACTIONS(5626), + [anon_sym_bool] = ACTIONS(5626), + [anon_sym_int] = ACTIONS(5626), + [anon_sym_uint] = ACTIONS(5626), + [anon_sym_float] = ACTIONS(5626), + [anon_sym_range] = ACTIONS(5626), + [anon_sym_i8] = ACTIONS(5626), + [anon_sym_i16] = ACTIONS(5626), + [anon_sym_i32] = ACTIONS(5626), + [anon_sym_i64] = ACTIONS(5626), + [anon_sym_u8] = ACTIONS(5626), + [anon_sym_u16] = ACTIONS(5626), + [anon_sym_u32] = ACTIONS(5626), + [anon_sym_u64] = ACTIONS(5626), + [anon_sym_isize] = ACTIONS(5626), + [anon_sym_usize] = ACTIONS(5626), + [anon_sym_f32] = ACTIONS(5626), + [anon_sym_f64] = ACTIONS(5626), + [anon_sym_c_char] = ACTIONS(5626), + [anon_sym_c_schar] = ACTIONS(5626), + [anon_sym_c_uchar] = ACTIONS(5626), + [anon_sym_c_short] = ACTIONS(5626), + [anon_sym_c_ushort] = ACTIONS(5626), + [anon_sym_c_int] = ACTIONS(5626), + [anon_sym_c_uint] = ACTIONS(5626), + [anon_sym_c_long] = ACTIONS(5626), + [anon_sym_c_ulong] = ACTIONS(5626), + [anon_sym_c_longlong] = ACTIONS(5626), + [anon_sym_c_ulonglong] = ACTIONS(5626), + [anon_sym_c_float] = ACTIONS(5626), + [anon_sym_c_double] = ACTIONS(5626), + [anon_sym_c_longdouble] = ACTIONS(5626), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_xor_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5624), + [anon_sym_return] = ACTIONS(5626), + [anon_sym_yield] = ACTIONS(5626), + [anon_sym_break] = ACTIONS(5626), + [anon_sym_continue] = ACTIONS(5626), + [anon_sym_defer] = ACTIONS(5626), + [anon_sym_errdefer] = ACTIONS(5626), + [anon_sym_if] = ACTIONS(5626), + [anon_sym_else] = ACTIONS(5626), + [anon_sym_while] = ACTIONS(5626), + [anon_sym_expand] = ACTIONS(5626), + [anon_sym_for] = ACTIONS(5626), + [anon_sym_match] = ACTIONS(5626), + [anon_sym_DOT_DOT] = ACTIONS(5626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5624), + [anon_sym_orelse] = ACTIONS(5626), + [anon_sym_or] = ACTIONS(5626), + [anon_sym_and] = ACTIONS(5626), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5626), + [anon_sym_LT_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5626), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP] = ACTIONS(5626), + [anon_sym_xor] = ACTIONS(5626), + [anon_sym_LT_LT] = ACTIONS(5626), + [anon_sym_GT_GT] = ACTIONS(5626), + [anon_sym_LT_LT_PIPE] = ACTIONS(5626), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_SLASH] = ACTIONS(5626), + [anon_sym_catch] = ACTIONS(5626), + [anon_sym_TILDE] = ACTIONS(5624), + [anon_sym_try] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5626), + [anon_sym_CARET] = ACTIONS(5624), + [anon_sym_true] = ACTIONS(5626), + [anon_sym_false] = ACTIONS(5626), + [anon_sym_null] = ACTIONS(5626), + [anon_sym_unreachable] = ACTIONS(5626), + [anon_sym_undefined] = ACTIONS(5626), + [sym_sink] = ACTIONS(5626), + [sym_integer] = ACTIONS(5626), + [sym_float] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5624), + [sym_multiline_string] = ACTIONS(5624), + [sym_character] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5624), + }, + [STATE(2958)] = { + [sym_identifier] = ACTIONS(5630), + [anon_sym_func] = ACTIONS(5630), + [anon_sym_c_func] = ACTIONS(5630), + [anon_sym_BANG] = ACTIONS(5630), + [anon_sym_EQ] = ACTIONS(5630), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(5628), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_DOLLAR] = ACTIONS(5628), + [anon_sym_PIPE] = ACTIONS(5630), + [anon_sym_struct_type_BANG] = ACTIONS(5628), + [anon_sym_QMARK] = ACTIONS(5628), + [anon_sym_AT] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5628), + [anon_sym_void] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_type] = ACTIONS(5630), + [anon_sym_anyopaque] = ACTIONS(5630), + [anon_sym_bool] = ACTIONS(5630), + [anon_sym_int] = ACTIONS(5630), + [anon_sym_uint] = ACTIONS(5630), + [anon_sym_float] = ACTIONS(5630), + [anon_sym_range] = ACTIONS(5630), + [anon_sym_i8] = ACTIONS(5630), + [anon_sym_i16] = ACTIONS(5630), + [anon_sym_i32] = ACTIONS(5630), + [anon_sym_i64] = ACTIONS(5630), + [anon_sym_u8] = ACTIONS(5630), + [anon_sym_u16] = ACTIONS(5630), + [anon_sym_u32] = ACTIONS(5630), + [anon_sym_u64] = ACTIONS(5630), + [anon_sym_isize] = ACTIONS(5630), + [anon_sym_usize] = ACTIONS(5630), + [anon_sym_f32] = ACTIONS(5630), + [anon_sym_f64] = ACTIONS(5630), + [anon_sym_c_char] = ACTIONS(5630), + [anon_sym_c_schar] = ACTIONS(5630), + [anon_sym_c_uchar] = ACTIONS(5630), + [anon_sym_c_short] = ACTIONS(5630), + [anon_sym_c_ushort] = ACTIONS(5630), + [anon_sym_c_int] = ACTIONS(5630), + [anon_sym_c_uint] = ACTIONS(5630), + [anon_sym_c_long] = ACTIONS(5630), + [anon_sym_c_ulong] = ACTIONS(5630), + [anon_sym_c_longlong] = ACTIONS(5630), + [anon_sym_c_ulonglong] = ACTIONS(5630), + [anon_sym_c_float] = ACTIONS(5630), + [anon_sym_c_double] = ACTIONS(5630), + [anon_sym_c_longdouble] = ACTIONS(5630), + [anon_sym_PLUS_EQ] = ACTIONS(5628), + [anon_sym_DASH_EQ] = ACTIONS(5628), + [anon_sym_STAR_EQ] = ACTIONS(5628), + [anon_sym_SLASH_EQ] = ACTIONS(5628), + [anon_sym_AMP_EQ] = ACTIONS(5628), + [anon_sym_PIPE_EQ] = ACTIONS(5628), + [anon_sym_xor_EQ] = ACTIONS(5628), + [anon_sym_LT_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_GT_EQ] = ACTIONS(5628), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5628), + [anon_sym_return] = ACTIONS(5630), + [anon_sym_yield] = ACTIONS(5630), + [anon_sym_break] = ACTIONS(5630), + [anon_sym_continue] = ACTIONS(5630), + [anon_sym_defer] = ACTIONS(5630), + [anon_sym_errdefer] = ACTIONS(5630), + [anon_sym_if] = ACTIONS(5630), + [anon_sym_else] = ACTIONS(5630), + [anon_sym_while] = ACTIONS(5630), + [anon_sym_expand] = ACTIONS(5630), + [anon_sym_for] = ACTIONS(5630), + [anon_sym_match] = ACTIONS(5630), + [anon_sym_DOT_DOT] = ACTIONS(5630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5628), + [anon_sym_orelse] = ACTIONS(5630), + [anon_sym_or] = ACTIONS(5630), + [anon_sym_and] = ACTIONS(5630), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5630), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT] = ACTIONS(5630), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5630), + [anon_sym_xor] = ACTIONS(5630), + [anon_sym_LT_LT] = ACTIONS(5630), + [anon_sym_GT_GT] = ACTIONS(5630), + [anon_sym_LT_LT_PIPE] = ACTIONS(5630), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_SLASH] = ACTIONS(5630), + [anon_sym_catch] = ACTIONS(5630), + [anon_sym_TILDE] = ACTIONS(5628), + [anon_sym_try] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5630), + [anon_sym_CARET] = ACTIONS(5628), + [anon_sym_true] = ACTIONS(5630), + [anon_sym_false] = ACTIONS(5630), + [anon_sym_null] = ACTIONS(5630), + [anon_sym_unreachable] = ACTIONS(5630), + [anon_sym_undefined] = ACTIONS(5630), + [sym_sink] = ACTIONS(5630), + [sym_integer] = ACTIONS(5630), + [sym_float] = ACTIONS(5628), + [anon_sym_DQUOTE] = ACTIONS(5628), + [sym_multiline_string] = ACTIONS(5628), + [sym_character] = ACTIONS(5628), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5628), + }, + [STATE(2959)] = { + [sym_identifier] = ACTIONS(5634), + [anon_sym_func] = ACTIONS(5634), + [anon_sym_c_func] = ACTIONS(5634), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_EQ] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_LPAREN] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5632), + [anon_sym_COMMA] = ACTIONS(5632), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_DOLLAR] = ACTIONS(5632), + [anon_sym_PIPE] = ACTIONS(5634), + [anon_sym_struct_type_BANG] = ACTIONS(5632), + [anon_sym_QMARK] = ACTIONS(5632), + [anon_sym_AT] = ACTIONS(5632), + [anon_sym_STAR] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_void] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_type] = ACTIONS(5634), + [anon_sym_anyopaque] = ACTIONS(5634), + [anon_sym_bool] = ACTIONS(5634), + [anon_sym_int] = ACTIONS(5634), + [anon_sym_uint] = ACTIONS(5634), + [anon_sym_float] = ACTIONS(5634), + [anon_sym_range] = ACTIONS(5634), + [anon_sym_i8] = ACTIONS(5634), + [anon_sym_i16] = ACTIONS(5634), + [anon_sym_i32] = ACTIONS(5634), + [anon_sym_i64] = ACTIONS(5634), + [anon_sym_u8] = ACTIONS(5634), + [anon_sym_u16] = ACTIONS(5634), + [anon_sym_u32] = ACTIONS(5634), + [anon_sym_u64] = ACTIONS(5634), + [anon_sym_isize] = ACTIONS(5634), + [anon_sym_usize] = ACTIONS(5634), + [anon_sym_f32] = ACTIONS(5634), + [anon_sym_f64] = ACTIONS(5634), + [anon_sym_c_char] = ACTIONS(5634), + [anon_sym_c_schar] = ACTIONS(5634), + [anon_sym_c_uchar] = ACTIONS(5634), + [anon_sym_c_short] = ACTIONS(5634), + [anon_sym_c_ushort] = ACTIONS(5634), + [anon_sym_c_int] = ACTIONS(5634), + [anon_sym_c_uint] = ACTIONS(5634), + [anon_sym_c_long] = ACTIONS(5634), + [anon_sym_c_ulong] = ACTIONS(5634), + [anon_sym_c_longlong] = ACTIONS(5634), + [anon_sym_c_ulonglong] = ACTIONS(5634), + [anon_sym_c_float] = ACTIONS(5634), + [anon_sym_c_double] = ACTIONS(5634), + [anon_sym_c_longdouble] = ACTIONS(5634), + [anon_sym_PLUS_EQ] = ACTIONS(5632), + [anon_sym_DASH_EQ] = ACTIONS(5632), + [anon_sym_STAR_EQ] = ACTIONS(5632), + [anon_sym_SLASH_EQ] = ACTIONS(5632), + [anon_sym_AMP_EQ] = ACTIONS(5632), + [anon_sym_PIPE_EQ] = ACTIONS(5632), + [anon_sym_xor_EQ] = ACTIONS(5632), + [anon_sym_LT_LT_EQ] = ACTIONS(5632), + [anon_sym_GT_GT_EQ] = ACTIONS(5632), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5632), + [anon_sym_return] = ACTIONS(5634), + [anon_sym_yield] = ACTIONS(5634), + [anon_sym_break] = ACTIONS(5634), + [anon_sym_continue] = ACTIONS(5634), + [anon_sym_defer] = ACTIONS(5634), + [anon_sym_errdefer] = ACTIONS(5634), + [anon_sym_if] = ACTIONS(5634), + [anon_sym_else] = ACTIONS(5634), + [anon_sym_while] = ACTIONS(5634), + [anon_sym_expand] = ACTIONS(5634), + [anon_sym_for] = ACTIONS(5634), + [anon_sym_match] = ACTIONS(5634), + [anon_sym_DOT_DOT] = ACTIONS(5634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5632), + [anon_sym_orelse] = ACTIONS(5634), + [anon_sym_or] = ACTIONS(5634), + [anon_sym_and] = ACTIONS(5634), + [anon_sym_EQ_EQ] = ACTIONS(5632), + [anon_sym_BANG_EQ] = ACTIONS(5632), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_LT_EQ] = ACTIONS(5632), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_GT_EQ] = ACTIONS(5632), + [anon_sym_AMP] = ACTIONS(5634), + [anon_sym_xor] = ACTIONS(5634), + [anon_sym_LT_LT] = ACTIONS(5634), + [anon_sym_GT_GT] = ACTIONS(5634), + [anon_sym_LT_LT_PIPE] = ACTIONS(5634), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_SLASH] = ACTIONS(5634), + [anon_sym_catch] = ACTIONS(5634), + [anon_sym_TILDE] = ACTIONS(5632), + [anon_sym_try] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5632), + [anon_sym_true] = ACTIONS(5634), + [anon_sym_false] = ACTIONS(5634), + [anon_sym_null] = ACTIONS(5634), + [anon_sym_unreachable] = ACTIONS(5634), + [anon_sym_undefined] = ACTIONS(5634), + [sym_sink] = ACTIONS(5634), + [sym_integer] = ACTIONS(5634), + [sym_float] = ACTIONS(5632), + [anon_sym_DQUOTE] = ACTIONS(5632), + [sym_multiline_string] = ACTIONS(5632), + [sym_character] = ACTIONS(5632), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5632), + }, + [STATE(2960)] = { + [sym_identifier] = ACTIONS(5638), + [anon_sym_func] = ACTIONS(5638), + [anon_sym_c_func] = ACTIONS(5638), + [anon_sym_BANG] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5638), + [anon_sym_struct] = ACTIONS(5638), + [anon_sym_LPAREN] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_COMMA] = ACTIONS(5636), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_DOLLAR] = ACTIONS(5636), + [anon_sym_PIPE] = ACTIONS(5638), + [anon_sym_struct_type_BANG] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5636), + [anon_sym_AT] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_void] = ACTIONS(5638), + [anon_sym_noreturn] = ACTIONS(5638), + [anon_sym_type] = ACTIONS(5638), + [anon_sym_anyopaque] = ACTIONS(5638), + [anon_sym_bool] = ACTIONS(5638), + [anon_sym_int] = ACTIONS(5638), + [anon_sym_uint] = ACTIONS(5638), + [anon_sym_float] = ACTIONS(5638), + [anon_sym_range] = ACTIONS(5638), + [anon_sym_i8] = ACTIONS(5638), + [anon_sym_i16] = ACTIONS(5638), + [anon_sym_i32] = ACTIONS(5638), + [anon_sym_i64] = ACTIONS(5638), + [anon_sym_u8] = ACTIONS(5638), + [anon_sym_u16] = ACTIONS(5638), + [anon_sym_u32] = ACTIONS(5638), + [anon_sym_u64] = ACTIONS(5638), + [anon_sym_isize] = ACTIONS(5638), + [anon_sym_usize] = ACTIONS(5638), + [anon_sym_f32] = ACTIONS(5638), + [anon_sym_f64] = ACTIONS(5638), + [anon_sym_c_char] = ACTIONS(5638), + [anon_sym_c_schar] = ACTIONS(5638), + [anon_sym_c_uchar] = ACTIONS(5638), + [anon_sym_c_short] = ACTIONS(5638), + [anon_sym_c_ushort] = ACTIONS(5638), + [anon_sym_c_int] = ACTIONS(5638), + [anon_sym_c_uint] = ACTIONS(5638), + [anon_sym_c_long] = ACTIONS(5638), + [anon_sym_c_ulong] = ACTIONS(5638), + [anon_sym_c_longlong] = ACTIONS(5638), + [anon_sym_c_ulonglong] = ACTIONS(5638), + [anon_sym_c_float] = ACTIONS(5638), + [anon_sym_c_double] = ACTIONS(5638), + [anon_sym_c_longdouble] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5636), + [anon_sym_DASH_EQ] = ACTIONS(5636), + [anon_sym_STAR_EQ] = ACTIONS(5636), + [anon_sym_SLASH_EQ] = ACTIONS(5636), + [anon_sym_AMP_EQ] = ACTIONS(5636), + [anon_sym_PIPE_EQ] = ACTIONS(5636), + [anon_sym_xor_EQ] = ACTIONS(5636), + [anon_sym_LT_LT_EQ] = ACTIONS(5636), + [anon_sym_GT_GT_EQ] = ACTIONS(5636), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5636), + [anon_sym_return] = ACTIONS(5638), + [anon_sym_yield] = ACTIONS(5638), + [anon_sym_break] = ACTIONS(5638), + [anon_sym_continue] = ACTIONS(5638), + [anon_sym_defer] = ACTIONS(5638), + [anon_sym_errdefer] = ACTIONS(5638), + [anon_sym_if] = ACTIONS(5638), + [anon_sym_else] = ACTIONS(5638), + [anon_sym_while] = ACTIONS(5638), + [anon_sym_expand] = ACTIONS(5638), + [anon_sym_for] = ACTIONS(5638), + [anon_sym_match] = ACTIONS(5638), + [anon_sym_DOT_DOT] = ACTIONS(5638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5636), + [anon_sym_orelse] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5638), + [anon_sym_and] = ACTIONS(5638), + [anon_sym_EQ_EQ] = ACTIONS(5636), + [anon_sym_BANG_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_GT] = ACTIONS(5638), + [anon_sym_GT_EQ] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5638), + [anon_sym_LT_LT] = ACTIONS(5638), + [anon_sym_GT_GT] = ACTIONS(5638), + [anon_sym_LT_LT_PIPE] = ACTIONS(5638), + [anon_sym_PLUS] = ACTIONS(5638), + [anon_sym_SLASH] = ACTIONS(5638), + [anon_sym_catch] = ACTIONS(5638), + [anon_sym_TILDE] = ACTIONS(5636), + [anon_sym_try] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5638), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_true] = ACTIONS(5638), + [anon_sym_false] = ACTIONS(5638), + [anon_sym_null] = ACTIONS(5638), + [anon_sym_unreachable] = ACTIONS(5638), + [anon_sym_undefined] = ACTIONS(5638), + [sym_sink] = ACTIONS(5638), + [sym_integer] = ACTIONS(5638), + [sym_float] = ACTIONS(5636), + [anon_sym_DQUOTE] = ACTIONS(5636), + [sym_multiline_string] = ACTIONS(5636), + [sym_character] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5636), + }, + [STATE(2961)] = { + [sym_identifier] = ACTIONS(5642), + [anon_sym_func] = ACTIONS(5642), + [anon_sym_c_func] = ACTIONS(5642), + [anon_sym_BANG] = ACTIONS(5642), + [anon_sym_EQ] = ACTIONS(5642), + [anon_sym_struct] = ACTIONS(5642), + [anon_sym_LPAREN] = ACTIONS(5640), + [anon_sym_LBRACE] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_DOLLAR] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5642), + [anon_sym_struct_type_BANG] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_AT] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_void] = ACTIONS(5642), + [anon_sym_noreturn] = ACTIONS(5642), + [anon_sym_type] = ACTIONS(5642), + [anon_sym_anyopaque] = ACTIONS(5642), + [anon_sym_bool] = ACTIONS(5642), + [anon_sym_int] = ACTIONS(5642), + [anon_sym_uint] = ACTIONS(5642), + [anon_sym_float] = ACTIONS(5642), + [anon_sym_range] = ACTIONS(5642), + [anon_sym_i8] = ACTIONS(5642), + [anon_sym_i16] = ACTIONS(5642), + [anon_sym_i32] = ACTIONS(5642), + [anon_sym_i64] = ACTIONS(5642), + [anon_sym_u8] = ACTIONS(5642), + [anon_sym_u16] = ACTIONS(5642), + [anon_sym_u32] = ACTIONS(5642), + [anon_sym_u64] = ACTIONS(5642), + [anon_sym_isize] = ACTIONS(5642), + [anon_sym_usize] = ACTIONS(5642), + [anon_sym_f32] = ACTIONS(5642), + [anon_sym_f64] = ACTIONS(5642), + [anon_sym_c_char] = ACTIONS(5642), + [anon_sym_c_schar] = ACTIONS(5642), + [anon_sym_c_uchar] = ACTIONS(5642), + [anon_sym_c_short] = ACTIONS(5642), + [anon_sym_c_ushort] = ACTIONS(5642), + [anon_sym_c_int] = ACTIONS(5642), + [anon_sym_c_uint] = ACTIONS(5642), + [anon_sym_c_long] = ACTIONS(5642), + [anon_sym_c_ulong] = ACTIONS(5642), + [anon_sym_c_longlong] = ACTIONS(5642), + [anon_sym_c_ulonglong] = ACTIONS(5642), + [anon_sym_c_float] = ACTIONS(5642), + [anon_sym_c_double] = ACTIONS(5642), + [anon_sym_c_longdouble] = ACTIONS(5642), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_xor_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5640), + [anon_sym_return] = ACTIONS(5642), + [anon_sym_yield] = ACTIONS(5642), + [anon_sym_break] = ACTIONS(5642), + [anon_sym_continue] = ACTIONS(5642), + [anon_sym_defer] = ACTIONS(5642), + [anon_sym_errdefer] = ACTIONS(5642), + [anon_sym_if] = ACTIONS(5642), + [anon_sym_else] = ACTIONS(5642), + [anon_sym_while] = ACTIONS(5642), + [anon_sym_expand] = ACTIONS(5642), + [anon_sym_for] = ACTIONS(5642), + [anon_sym_match] = ACTIONS(5642), + [anon_sym_DOT_DOT] = ACTIONS(5642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5640), + [anon_sym_orelse] = ACTIONS(5642), + [anon_sym_or] = ACTIONS(5642), + [anon_sym_and] = ACTIONS(5642), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_LT] = ACTIONS(5642), + [anon_sym_LT_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5642), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP] = ACTIONS(5642), + [anon_sym_xor] = ACTIONS(5642), + [anon_sym_LT_LT] = ACTIONS(5642), + [anon_sym_GT_GT] = ACTIONS(5642), + [anon_sym_LT_LT_PIPE] = ACTIONS(5642), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_SLASH] = ACTIONS(5642), + [anon_sym_catch] = ACTIONS(5642), + [anon_sym_TILDE] = ACTIONS(5640), + [anon_sym_try] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5640), + [anon_sym_true] = ACTIONS(5642), + [anon_sym_false] = ACTIONS(5642), + [anon_sym_null] = ACTIONS(5642), + [anon_sym_unreachable] = ACTIONS(5642), + [anon_sym_undefined] = ACTIONS(5642), + [sym_sink] = ACTIONS(5642), + [sym_integer] = ACTIONS(5642), + [sym_float] = ACTIONS(5640), + [anon_sym_DQUOTE] = ACTIONS(5640), + [sym_multiline_string] = ACTIONS(5640), + [sym_character] = ACTIONS(5640), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5640), + }, + [STATE(2962)] = { + [sym_identifier] = ACTIONS(5646), + [anon_sym_func] = ACTIONS(5646), + [anon_sym_c_func] = ACTIONS(5646), + [anon_sym_BANG] = ACTIONS(5646), + [anon_sym_EQ] = ACTIONS(5646), + [anon_sym_struct] = ACTIONS(5646), + [anon_sym_LPAREN] = ACTIONS(5644), + [anon_sym_LBRACE] = ACTIONS(5644), + [anon_sym_COMMA] = ACTIONS(5644), + [anon_sym_RBRACE] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5646), + [anon_sym_DOLLAR] = ACTIONS(5644), + [anon_sym_PIPE] = ACTIONS(5646), + [anon_sym_struct_type_BANG] = ACTIONS(5644), + [anon_sym_QMARK] = ACTIONS(5644), + [anon_sym_AT] = ACTIONS(5644), + [anon_sym_STAR] = ACTIONS(5646), + [anon_sym_LBRACK] = ACTIONS(5644), + [anon_sym_void] = ACTIONS(5646), + [anon_sym_noreturn] = ACTIONS(5646), + [anon_sym_type] = ACTIONS(5646), + [anon_sym_anyopaque] = ACTIONS(5646), + [anon_sym_bool] = ACTIONS(5646), + [anon_sym_int] = ACTIONS(5646), + [anon_sym_uint] = ACTIONS(5646), + [anon_sym_float] = ACTIONS(5646), + [anon_sym_range] = ACTIONS(5646), + [anon_sym_i8] = ACTIONS(5646), + [anon_sym_i16] = ACTIONS(5646), + [anon_sym_i32] = ACTIONS(5646), + [anon_sym_i64] = ACTIONS(5646), + [anon_sym_u8] = ACTIONS(5646), + [anon_sym_u16] = ACTIONS(5646), + [anon_sym_u32] = ACTIONS(5646), + [anon_sym_u64] = ACTIONS(5646), + [anon_sym_isize] = ACTIONS(5646), + [anon_sym_usize] = ACTIONS(5646), + [anon_sym_f32] = ACTIONS(5646), + [anon_sym_f64] = ACTIONS(5646), + [anon_sym_c_char] = ACTIONS(5646), + [anon_sym_c_schar] = ACTIONS(5646), + [anon_sym_c_uchar] = ACTIONS(5646), + [anon_sym_c_short] = ACTIONS(5646), + [anon_sym_c_ushort] = ACTIONS(5646), + [anon_sym_c_int] = ACTIONS(5646), + [anon_sym_c_uint] = ACTIONS(5646), + [anon_sym_c_long] = ACTIONS(5646), + [anon_sym_c_ulong] = ACTIONS(5646), + [anon_sym_c_longlong] = ACTIONS(5646), + [anon_sym_c_ulonglong] = ACTIONS(5646), + [anon_sym_c_float] = ACTIONS(5646), + [anon_sym_c_double] = ACTIONS(5646), + [anon_sym_c_longdouble] = ACTIONS(5646), + [anon_sym_PLUS_EQ] = ACTIONS(5644), + [anon_sym_DASH_EQ] = ACTIONS(5644), + [anon_sym_STAR_EQ] = ACTIONS(5644), + [anon_sym_SLASH_EQ] = ACTIONS(5644), + [anon_sym_AMP_EQ] = ACTIONS(5644), + [anon_sym_PIPE_EQ] = ACTIONS(5644), + [anon_sym_xor_EQ] = ACTIONS(5644), + [anon_sym_LT_LT_EQ] = ACTIONS(5644), + [anon_sym_GT_GT_EQ] = ACTIONS(5644), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5644), + [anon_sym_return] = ACTIONS(5646), + [anon_sym_yield] = ACTIONS(5646), + [anon_sym_break] = ACTIONS(5646), + [anon_sym_continue] = ACTIONS(5646), + [anon_sym_defer] = ACTIONS(5646), + [anon_sym_errdefer] = ACTIONS(5646), + [anon_sym_if] = ACTIONS(5646), + [anon_sym_else] = ACTIONS(5646), + [anon_sym_while] = ACTIONS(5646), + [anon_sym_expand] = ACTIONS(5646), + [anon_sym_for] = ACTIONS(5646), + [anon_sym_match] = ACTIONS(5646), + [anon_sym_DOT_DOT] = ACTIONS(5646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5644), + [anon_sym_orelse] = ACTIONS(5646), + [anon_sym_or] = ACTIONS(5646), + [anon_sym_and] = ACTIONS(5646), + [anon_sym_EQ_EQ] = ACTIONS(5644), + [anon_sym_BANG_EQ] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_LT_EQ] = ACTIONS(5644), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5644), + [anon_sym_AMP] = ACTIONS(5646), + [anon_sym_xor] = ACTIONS(5646), + [anon_sym_LT_LT] = ACTIONS(5646), + [anon_sym_GT_GT] = ACTIONS(5646), + [anon_sym_LT_LT_PIPE] = ACTIONS(5646), + [anon_sym_PLUS] = ACTIONS(5646), + [anon_sym_SLASH] = ACTIONS(5646), + [anon_sym_catch] = ACTIONS(5646), + [anon_sym_TILDE] = ACTIONS(5644), + [anon_sym_try] = ACTIONS(5646), + [anon_sym_DOT] = ACTIONS(5646), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_true] = ACTIONS(5646), + [anon_sym_false] = ACTIONS(5646), + [anon_sym_null] = ACTIONS(5646), + [anon_sym_unreachable] = ACTIONS(5646), + [anon_sym_undefined] = ACTIONS(5646), + [sym_sink] = ACTIONS(5646), + [sym_integer] = ACTIONS(5646), + [sym_float] = ACTIONS(5644), + [anon_sym_DQUOTE] = ACTIONS(5644), + [sym_multiline_string] = ACTIONS(5644), + [sym_character] = ACTIONS(5644), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5644), + }, + [STATE(2963)] = { + [sym_identifier] = ACTIONS(5812), + [anon_sym_func] = ACTIONS(5812), + [anon_sym_c_func] = ACTIONS(5812), + [anon_sym_BANG] = ACTIONS(5812), + [anon_sym_EQ] = ACTIONS(5812), + [anon_sym_struct] = ACTIONS(5812), + [anon_sym_LPAREN] = ACTIONS(5810), + [anon_sym_LBRACE] = ACTIONS(5810), + [anon_sym_COMMA] = ACTIONS(5810), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5812), + [anon_sym_DOLLAR] = ACTIONS(5810), + [anon_sym_PIPE] = ACTIONS(5812), + [anon_sym_struct_type_BANG] = ACTIONS(5810), + [anon_sym_QMARK] = ACTIONS(5810), + [anon_sym_AT] = ACTIONS(5810), + [anon_sym_STAR] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(5810), + [anon_sym_void] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym_type] = ACTIONS(5812), + [anon_sym_anyopaque] = ACTIONS(5812), + [anon_sym_bool] = ACTIONS(5812), + [anon_sym_int] = ACTIONS(5812), + [anon_sym_uint] = ACTIONS(5812), + [anon_sym_float] = ACTIONS(5812), + [anon_sym_range] = ACTIONS(5812), + [anon_sym_i8] = ACTIONS(5812), + [anon_sym_i16] = ACTIONS(5812), + [anon_sym_i32] = ACTIONS(5812), + [anon_sym_i64] = ACTIONS(5812), + [anon_sym_u8] = ACTIONS(5812), + [anon_sym_u16] = ACTIONS(5812), + [anon_sym_u32] = ACTIONS(5812), + [anon_sym_u64] = ACTIONS(5812), + [anon_sym_isize] = ACTIONS(5812), + [anon_sym_usize] = ACTIONS(5812), + [anon_sym_f32] = ACTIONS(5812), + [anon_sym_f64] = ACTIONS(5812), + [anon_sym_c_char] = ACTIONS(5812), + [anon_sym_c_schar] = ACTIONS(5812), + [anon_sym_c_uchar] = ACTIONS(5812), + [anon_sym_c_short] = ACTIONS(5812), + [anon_sym_c_ushort] = ACTIONS(5812), + [anon_sym_c_int] = ACTIONS(5812), + [anon_sym_c_uint] = ACTIONS(5812), + [anon_sym_c_long] = ACTIONS(5812), + [anon_sym_c_ulong] = ACTIONS(5812), + [anon_sym_c_longlong] = ACTIONS(5812), + [anon_sym_c_ulonglong] = ACTIONS(5812), + [anon_sym_c_float] = ACTIONS(5812), + [anon_sym_c_double] = ACTIONS(5812), + [anon_sym_c_longdouble] = ACTIONS(5812), + [anon_sym_PLUS_EQ] = ACTIONS(5810), + [anon_sym_DASH_EQ] = ACTIONS(5810), + [anon_sym_STAR_EQ] = ACTIONS(5810), + [anon_sym_SLASH_EQ] = ACTIONS(5810), + [anon_sym_AMP_EQ] = ACTIONS(5810), + [anon_sym_PIPE_EQ] = ACTIONS(5810), + [anon_sym_xor_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_EQ] = ACTIONS(5810), + [anon_sym_GT_GT_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5810), + [anon_sym_return] = ACTIONS(5812), + [anon_sym_yield] = ACTIONS(5812), + [anon_sym_break] = ACTIONS(5812), + [anon_sym_continue] = ACTIONS(5812), + [anon_sym_defer] = ACTIONS(5812), + [anon_sym_errdefer] = ACTIONS(5812), + [anon_sym_if] = ACTIONS(5812), + [anon_sym_else] = ACTIONS(5812), + [anon_sym_while] = ACTIONS(5812), + [anon_sym_expand] = ACTIONS(5812), + [anon_sym_for] = ACTIONS(5812), + [anon_sym_match] = ACTIONS(5812), + [anon_sym_DOT_DOT] = ACTIONS(5812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5810), + [anon_sym_orelse] = ACTIONS(5812), + [anon_sym_or] = ACTIONS(5812), + [anon_sym_and] = ACTIONS(5812), + [anon_sym_EQ_EQ] = ACTIONS(5810), + [anon_sym_BANG_EQ] = ACTIONS(5810), + [anon_sym_LT] = ACTIONS(5812), + [anon_sym_LT_EQ] = ACTIONS(5810), + [anon_sym_GT] = ACTIONS(5812), + [anon_sym_GT_EQ] = ACTIONS(5810), + [anon_sym_AMP] = ACTIONS(5812), + [anon_sym_xor] = ACTIONS(5812), + [anon_sym_LT_LT] = ACTIONS(5812), + [anon_sym_GT_GT] = ACTIONS(5812), + [anon_sym_LT_LT_PIPE] = ACTIONS(5812), + [anon_sym_PLUS] = ACTIONS(5812), + [anon_sym_SLASH] = ACTIONS(5812), + [anon_sym_catch] = ACTIONS(5812), + [anon_sym_TILDE] = ACTIONS(5810), + [anon_sym_try] = ACTIONS(5812), + [anon_sym_DOT] = ACTIONS(5812), + [anon_sym_CARET] = ACTIONS(5810), + [anon_sym_true] = ACTIONS(5812), + [anon_sym_false] = ACTIONS(5812), + [anon_sym_null] = ACTIONS(5812), + [anon_sym_unreachable] = ACTIONS(5812), + [anon_sym_undefined] = ACTIONS(5812), + [sym_sink] = ACTIONS(5812), + [sym_integer] = ACTIONS(5812), + [sym_float] = ACTIONS(5810), + [anon_sym_DQUOTE] = ACTIONS(5810), + [sym_multiline_string] = ACTIONS(5810), + [sym_character] = ACTIONS(5810), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5810), + }, + [STATE(2964)] = { + [sym_identifier] = ACTIONS(5956), + [anon_sym_func] = ACTIONS(5956), + [anon_sym_c_func] = ACTIONS(5956), + [anon_sym_BANG] = ACTIONS(5956), + [anon_sym_EQ] = ACTIONS(5956), + [anon_sym_struct] = ACTIONS(5956), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(5954), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_DOLLAR] = ACTIONS(5954), + [anon_sym_PIPE] = ACTIONS(5956), + [anon_sym_struct_type_BANG] = ACTIONS(5954), + [anon_sym_QMARK] = ACTIONS(5954), + [anon_sym_AT] = ACTIONS(5954), + [anon_sym_STAR] = ACTIONS(5956), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_void] = ACTIONS(5956), + [anon_sym_noreturn] = ACTIONS(5956), + [anon_sym_type] = ACTIONS(5956), + [anon_sym_anyopaque] = ACTIONS(5956), + [anon_sym_bool] = ACTIONS(5956), + [anon_sym_int] = ACTIONS(5956), + [anon_sym_uint] = ACTIONS(5956), + [anon_sym_float] = ACTIONS(5956), + [anon_sym_range] = ACTIONS(5956), + [anon_sym_i8] = ACTIONS(5956), + [anon_sym_i16] = ACTIONS(5956), + [anon_sym_i32] = ACTIONS(5956), + [anon_sym_i64] = ACTIONS(5956), + [anon_sym_u8] = ACTIONS(5956), + [anon_sym_u16] = ACTIONS(5956), + [anon_sym_u32] = ACTIONS(5956), + [anon_sym_u64] = ACTIONS(5956), + [anon_sym_isize] = ACTIONS(5956), + [anon_sym_usize] = ACTIONS(5956), + [anon_sym_f32] = ACTIONS(5956), + [anon_sym_f64] = ACTIONS(5956), + [anon_sym_c_char] = ACTIONS(5956), + [anon_sym_c_schar] = ACTIONS(5956), + [anon_sym_c_uchar] = ACTIONS(5956), + [anon_sym_c_short] = ACTIONS(5956), + [anon_sym_c_ushort] = ACTIONS(5956), + [anon_sym_c_int] = ACTIONS(5956), + [anon_sym_c_uint] = ACTIONS(5956), + [anon_sym_c_long] = ACTIONS(5956), + [anon_sym_c_ulong] = ACTIONS(5956), + [anon_sym_c_longlong] = ACTIONS(5956), + [anon_sym_c_ulonglong] = ACTIONS(5956), + [anon_sym_c_float] = ACTIONS(5956), + [anon_sym_c_double] = ACTIONS(5956), + [anon_sym_c_longdouble] = ACTIONS(5956), + [anon_sym_PLUS_EQ] = ACTIONS(5954), + [anon_sym_DASH_EQ] = ACTIONS(5954), + [anon_sym_STAR_EQ] = ACTIONS(5954), + [anon_sym_SLASH_EQ] = ACTIONS(5954), + [anon_sym_AMP_EQ] = ACTIONS(5954), + [anon_sym_PIPE_EQ] = ACTIONS(5954), + [anon_sym_xor_EQ] = ACTIONS(5954), + [anon_sym_LT_LT_EQ] = ACTIONS(5954), + [anon_sym_GT_GT_EQ] = ACTIONS(5954), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5954), + [anon_sym_return] = ACTIONS(5956), + [anon_sym_yield] = ACTIONS(5956), + [anon_sym_break] = ACTIONS(5956), + [anon_sym_continue] = ACTIONS(5956), + [anon_sym_defer] = ACTIONS(5956), + [anon_sym_errdefer] = ACTIONS(5956), + [anon_sym_if] = ACTIONS(5956), + [anon_sym_else] = ACTIONS(5956), + [anon_sym_while] = ACTIONS(5956), + [anon_sym_expand] = ACTIONS(5956), + [anon_sym_for] = ACTIONS(5956), + [anon_sym_match] = ACTIONS(5956), + [anon_sym_DOT_DOT] = ACTIONS(5956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_orelse] = ACTIONS(5956), + [anon_sym_or] = ACTIONS(5956), + [anon_sym_and] = ACTIONS(5956), + [anon_sym_EQ_EQ] = ACTIONS(5954), + [anon_sym_BANG_EQ] = ACTIONS(5954), + [anon_sym_LT] = ACTIONS(5956), + [anon_sym_LT_EQ] = ACTIONS(5954), + [anon_sym_GT] = ACTIONS(5956), + [anon_sym_GT_EQ] = ACTIONS(5954), + [anon_sym_AMP] = ACTIONS(5956), + [anon_sym_xor] = ACTIONS(5956), + [anon_sym_LT_LT] = ACTIONS(5956), + [anon_sym_GT_GT] = ACTIONS(5956), + [anon_sym_LT_LT_PIPE] = ACTIONS(5956), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5956), + [anon_sym_catch] = ACTIONS(5956), + [anon_sym_TILDE] = ACTIONS(5954), + [anon_sym_try] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(6474), + [anon_sym_CARET] = ACTIONS(5954), + [anon_sym_true] = ACTIONS(5956), + [anon_sym_false] = ACTIONS(5956), + [anon_sym_null] = ACTIONS(5956), + [anon_sym_unreachable] = ACTIONS(5956), + [anon_sym_undefined] = ACTIONS(5956), + [sym_sink] = ACTIONS(5956), + [sym_integer] = ACTIONS(5956), + [sym_float] = ACTIONS(5954), + [anon_sym_DQUOTE] = ACTIONS(5954), + [sym_multiline_string] = ACTIONS(5954), + [sym_character] = ACTIONS(5954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5954), + }, + [STATE(2965)] = { + [sym_identifier] = ACTIONS(5964), + [anon_sym_func] = ACTIONS(5964), + [anon_sym_c_func] = ACTIONS(5964), + [anon_sym_BANG] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(5964), + [anon_sym_struct] = ACTIONS(5964), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_COMMA] = ACTIONS(5962), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_DOLLAR] = ACTIONS(5962), + [anon_sym_PIPE] = ACTIONS(5964), + [anon_sym_struct_type_BANG] = ACTIONS(5962), + [anon_sym_QMARK] = ACTIONS(5962), + [anon_sym_AT] = ACTIONS(5962), + [anon_sym_STAR] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_void] = ACTIONS(5964), + [anon_sym_noreturn] = ACTIONS(5964), + [anon_sym_type] = ACTIONS(5964), + [anon_sym_anyopaque] = ACTIONS(5964), + [anon_sym_bool] = ACTIONS(5964), + [anon_sym_int] = ACTIONS(5964), + [anon_sym_uint] = ACTIONS(5964), + [anon_sym_float] = ACTIONS(5964), + [anon_sym_range] = ACTIONS(5964), + [anon_sym_i8] = ACTIONS(5964), + [anon_sym_i16] = ACTIONS(5964), + [anon_sym_i32] = ACTIONS(5964), + [anon_sym_i64] = ACTIONS(5964), + [anon_sym_u8] = ACTIONS(5964), + [anon_sym_u16] = ACTIONS(5964), + [anon_sym_u32] = ACTIONS(5964), + [anon_sym_u64] = ACTIONS(5964), + [anon_sym_isize] = ACTIONS(5964), + [anon_sym_usize] = ACTIONS(5964), + [anon_sym_f32] = ACTIONS(5964), + [anon_sym_f64] = ACTIONS(5964), + [anon_sym_c_char] = ACTIONS(5964), + [anon_sym_c_schar] = ACTIONS(5964), + [anon_sym_c_uchar] = ACTIONS(5964), + [anon_sym_c_short] = ACTIONS(5964), + [anon_sym_c_ushort] = ACTIONS(5964), + [anon_sym_c_int] = ACTIONS(5964), + [anon_sym_c_uint] = ACTIONS(5964), + [anon_sym_c_long] = ACTIONS(5964), + [anon_sym_c_ulong] = ACTIONS(5964), + [anon_sym_c_longlong] = ACTIONS(5964), + [anon_sym_c_ulonglong] = ACTIONS(5964), + [anon_sym_c_float] = ACTIONS(5964), + [anon_sym_c_double] = ACTIONS(5964), + [anon_sym_c_longdouble] = ACTIONS(5964), + [anon_sym_PLUS_EQ] = ACTIONS(5962), + [anon_sym_DASH_EQ] = ACTIONS(5962), + [anon_sym_STAR_EQ] = ACTIONS(5962), + [anon_sym_SLASH_EQ] = ACTIONS(5962), + [anon_sym_AMP_EQ] = ACTIONS(5962), + [anon_sym_PIPE_EQ] = ACTIONS(5962), + [anon_sym_xor_EQ] = ACTIONS(5962), + [anon_sym_LT_LT_EQ] = ACTIONS(5962), + [anon_sym_GT_GT_EQ] = ACTIONS(5962), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5962), + [anon_sym_return] = ACTIONS(5964), + [anon_sym_yield] = ACTIONS(5964), + [anon_sym_break] = ACTIONS(5964), + [anon_sym_continue] = ACTIONS(5964), + [anon_sym_defer] = ACTIONS(5964), + [anon_sym_errdefer] = ACTIONS(5964), + [anon_sym_if] = ACTIONS(5964), + [anon_sym_else] = ACTIONS(5964), + [anon_sym_while] = ACTIONS(5964), + [anon_sym_expand] = ACTIONS(5964), + [anon_sym_for] = ACTIONS(5964), + [anon_sym_match] = ACTIONS(5964), + [anon_sym_DOT_DOT] = ACTIONS(5964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_orelse] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5964), + [anon_sym_and] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5962), + [anon_sym_BANG_EQ] = ACTIONS(5962), + [anon_sym_LT] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5962), + [anon_sym_GT] = ACTIONS(5964), + [anon_sym_GT_EQ] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5964), + [anon_sym_xor] = ACTIONS(5964), + [anon_sym_LT_LT] = ACTIONS(5964), + [anon_sym_GT_GT] = ACTIONS(5964), + [anon_sym_LT_LT_PIPE] = ACTIONS(5964), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_SLASH] = ACTIONS(5964), + [anon_sym_catch] = ACTIONS(5964), + [anon_sym_TILDE] = ACTIONS(5962), + [anon_sym_try] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_true] = ACTIONS(5964), + [anon_sym_false] = ACTIONS(5964), + [anon_sym_null] = ACTIONS(5964), + [anon_sym_unreachable] = ACTIONS(5964), + [anon_sym_undefined] = ACTIONS(5964), + [sym_sink] = ACTIONS(5964), + [sym_integer] = ACTIONS(5964), + [sym_float] = ACTIONS(5962), + [anon_sym_DQUOTE] = ACTIONS(5962), + [sym_multiline_string] = ACTIONS(5962), + [sym_character] = ACTIONS(5962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5962), + }, + [STATE(2966)] = { + [sym_identifier] = ACTIONS(5970), + [anon_sym_func] = ACTIONS(5970), + [anon_sym_c_func] = ACTIONS(5970), + [anon_sym_BANG] = ACTIONS(5970), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_struct] = ACTIONS(5970), + [anon_sym_LPAREN] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_DOLLAR] = ACTIONS(5968), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_struct_type_BANG] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_AT] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5970), + [anon_sym_LBRACK] = ACTIONS(5968), + [anon_sym_void] = ACTIONS(5970), + [anon_sym_noreturn] = ACTIONS(5970), + [anon_sym_type] = ACTIONS(5970), + [anon_sym_anyopaque] = ACTIONS(5970), + [anon_sym_bool] = ACTIONS(5970), + [anon_sym_int] = ACTIONS(5970), + [anon_sym_uint] = ACTIONS(5970), + [anon_sym_float] = ACTIONS(5970), + [anon_sym_range] = ACTIONS(5970), + [anon_sym_i8] = ACTIONS(5970), + [anon_sym_i16] = ACTIONS(5970), + [anon_sym_i32] = ACTIONS(5970), + [anon_sym_i64] = ACTIONS(5970), + [anon_sym_u8] = ACTIONS(5970), + [anon_sym_u16] = ACTIONS(5970), + [anon_sym_u32] = ACTIONS(5970), + [anon_sym_u64] = ACTIONS(5970), + [anon_sym_isize] = ACTIONS(5970), + [anon_sym_usize] = ACTIONS(5970), + [anon_sym_f32] = ACTIONS(5970), + [anon_sym_f64] = ACTIONS(5970), + [anon_sym_c_char] = ACTIONS(5970), + [anon_sym_c_schar] = ACTIONS(5970), + [anon_sym_c_uchar] = ACTIONS(5970), + [anon_sym_c_short] = ACTIONS(5970), + [anon_sym_c_ushort] = ACTIONS(5970), + [anon_sym_c_int] = ACTIONS(5970), + [anon_sym_c_uint] = ACTIONS(5970), + [anon_sym_c_long] = ACTIONS(5970), + [anon_sym_c_ulong] = ACTIONS(5970), + [anon_sym_c_longlong] = ACTIONS(5970), + [anon_sym_c_ulonglong] = ACTIONS(5970), + [anon_sym_c_float] = ACTIONS(5970), + [anon_sym_c_double] = ACTIONS(5970), + [anon_sym_c_longdouble] = ACTIONS(5970), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_xor_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5968), + [anon_sym_return] = ACTIONS(5970), + [anon_sym_yield] = ACTIONS(5970), + [anon_sym_break] = ACTIONS(5970), + [anon_sym_continue] = ACTIONS(5970), + [anon_sym_defer] = ACTIONS(5970), + [anon_sym_errdefer] = ACTIONS(5970), + [anon_sym_if] = ACTIONS(5970), + [anon_sym_else] = ACTIONS(5970), + [anon_sym_while] = ACTIONS(5970), + [anon_sym_expand] = ACTIONS(5970), + [anon_sym_for] = ACTIONS(5970), + [anon_sym_match] = ACTIONS(5970), + [anon_sym_DOT_DOT] = ACTIONS(5970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5968), + [anon_sym_orelse] = ACTIONS(5970), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_LT_LT_PIPE] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_catch] = ACTIONS(5970), + [anon_sym_TILDE] = ACTIONS(5968), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_true] = ACTIONS(5970), + [anon_sym_false] = ACTIONS(5970), + [anon_sym_null] = ACTIONS(5970), + [anon_sym_unreachable] = ACTIONS(5970), + [anon_sym_undefined] = ACTIONS(5970), + [sym_sink] = ACTIONS(5970), + [sym_integer] = ACTIONS(5970), + [sym_float] = ACTIONS(5968), + [anon_sym_DQUOTE] = ACTIONS(5968), + [sym_multiline_string] = ACTIONS(5968), + [sym_character] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5968), + }, + [STATE(2967)] = { + [sym_identifier] = ACTIONS(5974), + [anon_sym_func] = ACTIONS(5974), + [anon_sym_c_func] = ACTIONS(5974), + [anon_sym_BANG] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_struct] = ACTIONS(5974), + [anon_sym_LPAREN] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_COMMA] = ACTIONS(5972), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_DOLLAR] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5974), + [anon_sym_struct_type_BANG] = ACTIONS(5972), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_AT] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_void] = ACTIONS(5974), + [anon_sym_noreturn] = ACTIONS(5974), + [anon_sym_type] = ACTIONS(5974), + [anon_sym_anyopaque] = ACTIONS(5974), + [anon_sym_bool] = ACTIONS(5974), + [anon_sym_int] = ACTIONS(5974), + [anon_sym_uint] = ACTIONS(5974), + [anon_sym_float] = ACTIONS(5974), + [anon_sym_range] = ACTIONS(5974), + [anon_sym_i8] = ACTIONS(5974), + [anon_sym_i16] = ACTIONS(5974), + [anon_sym_i32] = ACTIONS(5974), + [anon_sym_i64] = ACTIONS(5974), + [anon_sym_u8] = ACTIONS(5974), + [anon_sym_u16] = ACTIONS(5974), + [anon_sym_u32] = ACTIONS(5974), + [anon_sym_u64] = ACTIONS(5974), + [anon_sym_isize] = ACTIONS(5974), + [anon_sym_usize] = ACTIONS(5974), + [anon_sym_f32] = ACTIONS(5974), + [anon_sym_f64] = ACTIONS(5974), + [anon_sym_c_char] = ACTIONS(5974), + [anon_sym_c_schar] = ACTIONS(5974), + [anon_sym_c_uchar] = ACTIONS(5974), + [anon_sym_c_short] = ACTIONS(5974), + [anon_sym_c_ushort] = ACTIONS(5974), + [anon_sym_c_int] = ACTIONS(5974), + [anon_sym_c_uint] = ACTIONS(5974), + [anon_sym_c_long] = ACTIONS(5974), + [anon_sym_c_ulong] = ACTIONS(5974), + [anon_sym_c_longlong] = ACTIONS(5974), + [anon_sym_c_ulonglong] = ACTIONS(5974), + [anon_sym_c_float] = ACTIONS(5974), + [anon_sym_c_double] = ACTIONS(5974), + [anon_sym_c_longdouble] = ACTIONS(5974), + [anon_sym_PLUS_EQ] = ACTIONS(5972), + [anon_sym_DASH_EQ] = ACTIONS(5972), + [anon_sym_STAR_EQ] = ACTIONS(5972), + [anon_sym_SLASH_EQ] = ACTIONS(5972), + [anon_sym_AMP_EQ] = ACTIONS(5972), + [anon_sym_PIPE_EQ] = ACTIONS(5972), + [anon_sym_xor_EQ] = ACTIONS(5972), + [anon_sym_LT_LT_EQ] = ACTIONS(5972), + [anon_sym_GT_GT_EQ] = ACTIONS(5972), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5972), + [anon_sym_return] = ACTIONS(5974), + [anon_sym_yield] = ACTIONS(5974), + [anon_sym_break] = ACTIONS(5974), + [anon_sym_continue] = ACTIONS(5974), + [anon_sym_defer] = ACTIONS(5974), + [anon_sym_errdefer] = ACTIONS(5974), + [anon_sym_if] = ACTIONS(5974), + [anon_sym_else] = ACTIONS(5974), + [anon_sym_while] = ACTIONS(5974), + [anon_sym_expand] = ACTIONS(5974), + [anon_sym_for] = ACTIONS(5974), + [anon_sym_match] = ACTIONS(5974), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5972), + [anon_sym_orelse] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5974), + [anon_sym_and] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_AMP] = ACTIONS(5974), + [anon_sym_xor] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym_LT_LT_PIPE] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5974), + [anon_sym_catch] = ACTIONS(5974), + [anon_sym_TILDE] = ACTIONS(5972), + [anon_sym_try] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5972), + [anon_sym_true] = ACTIONS(5974), + [anon_sym_false] = ACTIONS(5974), + [anon_sym_null] = ACTIONS(5974), + [anon_sym_unreachable] = ACTIONS(5974), + [anon_sym_undefined] = ACTIONS(5974), + [sym_sink] = ACTIONS(5974), + [sym_integer] = ACTIONS(5974), + [sym_float] = ACTIONS(5972), + [anon_sym_DQUOTE] = ACTIONS(5972), + [sym_multiline_string] = ACTIONS(5972), + [sym_character] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5972), + }, + [STATE(2968)] = { + [sym_identifier] = ACTIONS(4808), + [anon_sym_func] = ACTIONS(4808), + [anon_sym_c_func] = ACTIONS(4808), + [anon_sym_BANG] = ACTIONS(4808), + [anon_sym_EQ] = ACTIONS(4808), + [anon_sym_struct] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(4806), + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_struct_type_BANG] = ACTIONS(4806), + [anon_sym_QMARK] = ACTIONS(4806), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_void] = ACTIONS(4808), + [anon_sym_noreturn] = ACTIONS(4808), + [anon_sym_type] = ACTIONS(4808), + [anon_sym_anyopaque] = ACTIONS(4808), + [anon_sym_bool] = ACTIONS(4808), + [anon_sym_int] = ACTIONS(4808), + [anon_sym_uint] = ACTIONS(4808), + [anon_sym_float] = ACTIONS(4808), + [anon_sym_range] = ACTIONS(4808), + [anon_sym_i8] = ACTIONS(4808), + [anon_sym_i16] = ACTIONS(4808), + [anon_sym_i32] = ACTIONS(4808), + [anon_sym_i64] = ACTIONS(4808), + [anon_sym_u8] = ACTIONS(4808), + [anon_sym_u16] = ACTIONS(4808), + [anon_sym_u32] = ACTIONS(4808), + [anon_sym_u64] = ACTIONS(4808), + [anon_sym_isize] = ACTIONS(4808), + [anon_sym_usize] = ACTIONS(4808), + [anon_sym_f32] = ACTIONS(4808), + [anon_sym_f64] = ACTIONS(4808), + [anon_sym_c_char] = ACTIONS(4808), + [anon_sym_c_schar] = ACTIONS(4808), + [anon_sym_c_uchar] = ACTIONS(4808), + [anon_sym_c_short] = ACTIONS(4808), + [anon_sym_c_ushort] = ACTIONS(4808), + [anon_sym_c_int] = ACTIONS(4808), + [anon_sym_c_uint] = ACTIONS(4808), + [anon_sym_c_long] = ACTIONS(4808), + [anon_sym_c_ulong] = ACTIONS(4808), + [anon_sym_c_longlong] = ACTIONS(4808), + [anon_sym_c_ulonglong] = ACTIONS(4808), + [anon_sym_c_float] = ACTIONS(4808), + [anon_sym_c_double] = ACTIONS(4808), + [anon_sym_c_longdouble] = ACTIONS(4808), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_AMP_EQ] = ACTIONS(4806), + [anon_sym_PIPE_EQ] = ACTIONS(4806), + [anon_sym_xor_EQ] = ACTIONS(4806), + [anon_sym_LT_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_GT_EQ] = ACTIONS(4806), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4806), + [anon_sym_return] = ACTIONS(4808), + [anon_sym_yield] = ACTIONS(4808), + [anon_sym_break] = ACTIONS(4808), + [anon_sym_continue] = ACTIONS(4808), + [anon_sym_defer] = ACTIONS(4808), + [anon_sym_errdefer] = ACTIONS(4808), + [anon_sym_if] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_while] = ACTIONS(4808), + [anon_sym_expand] = ACTIONS(4808), + [anon_sym_for] = ACTIONS(4808), + [anon_sym_match] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4806), + [anon_sym_orelse] = ACTIONS(4808), + [anon_sym_or] = ACTIONS(4808), + [anon_sym_and] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_AMP] = ACTIONS(4808), + [anon_sym_xor] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(4808), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_LT_LT_PIPE] = ACTIONS(4808), + [anon_sym_PLUS] = ACTIONS(4808), + [anon_sym_SLASH] = ACTIONS(4808), + [anon_sym_catch] = ACTIONS(4808), + [anon_sym_TILDE] = ACTIONS(4806), + [anon_sym_try] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_CARET] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), + [anon_sym_unreachable] = ACTIONS(4808), + [anon_sym_undefined] = ACTIONS(4808), + [sym_sink] = ACTIONS(4808), + [sym_integer] = ACTIONS(4808), + [sym_float] = ACTIONS(4806), + [anon_sym_DQUOTE] = ACTIONS(4806), + [sym_multiline_string] = ACTIONS(4806), + [sym_character] = ACTIONS(4806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4806), + }, + [STATE(2969)] = { + [sym_identifier] = ACTIONS(5980), + [anon_sym_func] = ACTIONS(5980), + [anon_sym_c_func] = ACTIONS(5980), + [anon_sym_BANG] = ACTIONS(5980), + [anon_sym_EQ] = ACTIONS(5980), + [anon_sym_struct] = ACTIONS(5980), + [anon_sym_LPAREN] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5978), + [anon_sym_COMMA] = ACTIONS(5978), + [anon_sym_RBRACE] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5980), + [anon_sym_DOLLAR] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5980), + [anon_sym_struct_type_BANG] = ACTIONS(5978), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_AT] = ACTIONS(5978), + [anon_sym_STAR] = ACTIONS(5980), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_void] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym_type] = ACTIONS(5980), + [anon_sym_anyopaque] = ACTIONS(5980), + [anon_sym_bool] = ACTIONS(5980), + [anon_sym_int] = ACTIONS(5980), + [anon_sym_uint] = ACTIONS(5980), + [anon_sym_float] = ACTIONS(5980), + [anon_sym_range] = ACTIONS(5980), + [anon_sym_i8] = ACTIONS(5980), + [anon_sym_i16] = ACTIONS(5980), + [anon_sym_i32] = ACTIONS(5980), + [anon_sym_i64] = ACTIONS(5980), + [anon_sym_u8] = ACTIONS(5980), + [anon_sym_u16] = ACTIONS(5980), + [anon_sym_u32] = ACTIONS(5980), + [anon_sym_u64] = ACTIONS(5980), + [anon_sym_isize] = ACTIONS(5980), + [anon_sym_usize] = ACTIONS(5980), + [anon_sym_f32] = ACTIONS(5980), + [anon_sym_f64] = ACTIONS(5980), + [anon_sym_c_char] = ACTIONS(5980), + [anon_sym_c_schar] = ACTIONS(5980), + [anon_sym_c_uchar] = ACTIONS(5980), + [anon_sym_c_short] = ACTIONS(5980), + [anon_sym_c_ushort] = ACTIONS(5980), + [anon_sym_c_int] = ACTIONS(5980), + [anon_sym_c_uint] = ACTIONS(5980), + [anon_sym_c_long] = ACTIONS(5980), + [anon_sym_c_ulong] = ACTIONS(5980), + [anon_sym_c_longlong] = ACTIONS(5980), + [anon_sym_c_ulonglong] = ACTIONS(5980), + [anon_sym_c_float] = ACTIONS(5980), + [anon_sym_c_double] = ACTIONS(5980), + [anon_sym_c_longdouble] = ACTIONS(5980), + [anon_sym_PLUS_EQ] = ACTIONS(5978), + [anon_sym_DASH_EQ] = ACTIONS(5978), + [anon_sym_STAR_EQ] = ACTIONS(5978), + [anon_sym_SLASH_EQ] = ACTIONS(5978), + [anon_sym_AMP_EQ] = ACTIONS(5978), + [anon_sym_PIPE_EQ] = ACTIONS(5978), + [anon_sym_xor_EQ] = ACTIONS(5978), + [anon_sym_LT_LT_EQ] = ACTIONS(5978), + [anon_sym_GT_GT_EQ] = ACTIONS(5978), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5978), + [anon_sym_return] = ACTIONS(5980), + [anon_sym_yield] = ACTIONS(5980), + [anon_sym_break] = ACTIONS(5980), + [anon_sym_continue] = ACTIONS(5980), + [anon_sym_defer] = ACTIONS(5980), + [anon_sym_errdefer] = ACTIONS(5980), + [anon_sym_if] = ACTIONS(5980), + [anon_sym_else] = ACTIONS(5980), + [anon_sym_while] = ACTIONS(5980), + [anon_sym_expand] = ACTIONS(5980), + [anon_sym_for] = ACTIONS(5980), + [anon_sym_match] = ACTIONS(5980), + [anon_sym_DOT_DOT] = ACTIONS(5980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5978), + [anon_sym_orelse] = ACTIONS(5980), + [anon_sym_or] = ACTIONS(5980), + [anon_sym_and] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5980), + [anon_sym_xor] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5980), + [anon_sym_LT_LT_PIPE] = ACTIONS(5980), + [anon_sym_PLUS] = ACTIONS(5980), + [anon_sym_SLASH] = ACTIONS(5980), + [anon_sym_catch] = ACTIONS(5980), + [anon_sym_TILDE] = ACTIONS(5978), + [anon_sym_try] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_true] = ACTIONS(5980), + [anon_sym_false] = ACTIONS(5980), + [anon_sym_null] = ACTIONS(5980), + [anon_sym_unreachable] = ACTIONS(5980), + [anon_sym_undefined] = ACTIONS(5980), + [sym_sink] = ACTIONS(5980), + [sym_integer] = ACTIONS(5980), + [sym_float] = ACTIONS(5978), + [anon_sym_DQUOTE] = ACTIONS(5978), + [sym_multiline_string] = ACTIONS(5978), + [sym_character] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5978), + }, + [STATE(2970)] = { + [sym_identifier] = ACTIONS(5650), + [anon_sym_func] = ACTIONS(5650), + [anon_sym_c_func] = ACTIONS(5650), + [anon_sym_BANG] = ACTIONS(5650), + [anon_sym_EQ] = ACTIONS(5650), + [anon_sym_struct] = ACTIONS(5650), + [anon_sym_LPAREN] = ACTIONS(5648), + [anon_sym_LBRACE] = ACTIONS(5648), + [anon_sym_COMMA] = ACTIONS(5648), + [anon_sym_RBRACE] = ACTIONS(5648), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_DOLLAR] = ACTIONS(5648), + [anon_sym_PIPE] = ACTIONS(5650), + [anon_sym_struct_type_BANG] = ACTIONS(5648), + [anon_sym_QMARK] = ACTIONS(5648), + [anon_sym_AT] = ACTIONS(5648), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5648), + [anon_sym_void] = ACTIONS(5650), + [anon_sym_noreturn] = ACTIONS(5650), + [anon_sym_type] = ACTIONS(5650), + [anon_sym_anyopaque] = ACTIONS(5650), + [anon_sym_bool] = ACTIONS(5650), + [anon_sym_int] = ACTIONS(5650), + [anon_sym_uint] = ACTIONS(5650), + [anon_sym_float] = ACTIONS(5650), + [anon_sym_range] = ACTIONS(5650), + [anon_sym_i8] = ACTIONS(5650), + [anon_sym_i16] = ACTIONS(5650), + [anon_sym_i32] = ACTIONS(5650), + [anon_sym_i64] = ACTIONS(5650), + [anon_sym_u8] = ACTIONS(5650), + [anon_sym_u16] = ACTIONS(5650), + [anon_sym_u32] = ACTIONS(5650), + [anon_sym_u64] = ACTIONS(5650), + [anon_sym_isize] = ACTIONS(5650), + [anon_sym_usize] = ACTIONS(5650), + [anon_sym_f32] = ACTIONS(5650), + [anon_sym_f64] = ACTIONS(5650), + [anon_sym_c_char] = ACTIONS(5650), + [anon_sym_c_schar] = ACTIONS(5650), + [anon_sym_c_uchar] = ACTIONS(5650), + [anon_sym_c_short] = ACTIONS(5650), + [anon_sym_c_ushort] = ACTIONS(5650), + [anon_sym_c_int] = ACTIONS(5650), + [anon_sym_c_uint] = ACTIONS(5650), + [anon_sym_c_long] = ACTIONS(5650), + [anon_sym_c_ulong] = ACTIONS(5650), + [anon_sym_c_longlong] = ACTIONS(5650), + [anon_sym_c_ulonglong] = ACTIONS(5650), + [anon_sym_c_float] = ACTIONS(5650), + [anon_sym_c_double] = ACTIONS(5650), + [anon_sym_c_longdouble] = ACTIONS(5650), + [anon_sym_PLUS_EQ] = ACTIONS(5648), + [anon_sym_DASH_EQ] = ACTIONS(5648), + [anon_sym_STAR_EQ] = ACTIONS(5648), + [anon_sym_SLASH_EQ] = ACTIONS(5648), + [anon_sym_AMP_EQ] = ACTIONS(5648), + [anon_sym_PIPE_EQ] = ACTIONS(5648), + [anon_sym_xor_EQ] = ACTIONS(5648), + [anon_sym_LT_LT_EQ] = ACTIONS(5648), + [anon_sym_GT_GT_EQ] = ACTIONS(5648), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5648), + [anon_sym_return] = ACTIONS(5650), + [anon_sym_yield] = ACTIONS(5650), + [anon_sym_break] = ACTIONS(5650), + [anon_sym_continue] = ACTIONS(5650), + [anon_sym_defer] = ACTIONS(5650), + [anon_sym_errdefer] = ACTIONS(5650), + [anon_sym_if] = ACTIONS(5650), + [anon_sym_else] = ACTIONS(5650), + [anon_sym_while] = ACTIONS(5650), + [anon_sym_expand] = ACTIONS(5650), + [anon_sym_for] = ACTIONS(5650), + [anon_sym_match] = ACTIONS(5650), + [anon_sym_DOT_DOT] = ACTIONS(5650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5648), + [anon_sym_orelse] = ACTIONS(5650), + [anon_sym_or] = ACTIONS(5650), + [anon_sym_and] = ACTIONS(5650), + [anon_sym_EQ_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_EQ] = ACTIONS(5648), + [anon_sym_GT] = ACTIONS(5650), + [anon_sym_GT_EQ] = ACTIONS(5648), + [anon_sym_AMP] = ACTIONS(5650), + [anon_sym_xor] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5650), + [anon_sym_GT_GT] = ACTIONS(5650), + [anon_sym_LT_LT_PIPE] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_SLASH] = ACTIONS(5650), + [anon_sym_catch] = ACTIONS(5650), + [anon_sym_TILDE] = ACTIONS(5648), + [anon_sym_try] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5648), + [anon_sym_true] = ACTIONS(5650), + [anon_sym_false] = ACTIONS(5650), + [anon_sym_null] = ACTIONS(5650), + [anon_sym_unreachable] = ACTIONS(5650), + [anon_sym_undefined] = ACTIONS(5650), + [sym_sink] = ACTIONS(5650), + [sym_integer] = ACTIONS(5650), + [sym_float] = ACTIONS(5648), + [anon_sym_DQUOTE] = ACTIONS(5648), + [sym_multiline_string] = ACTIONS(5648), + [sym_character] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5648), + }, + [STATE(2971)] = { + [sym_identifier] = ACTIONS(5654), + [anon_sym_func] = ACTIONS(5654), + [anon_sym_c_func] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5654), + [anon_sym_EQ] = ACTIONS(5654), + [anon_sym_struct] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5652), + [anon_sym_LBRACE] = ACTIONS(5652), + [anon_sym_COMMA] = ACTIONS(5652), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5654), + [anon_sym_DOLLAR] = ACTIONS(5652), + [anon_sym_PIPE] = ACTIONS(5654), + [anon_sym_struct_type_BANG] = ACTIONS(5652), + [anon_sym_QMARK] = ACTIONS(5652), + [anon_sym_AT] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_void] = ACTIONS(5654), + [anon_sym_noreturn] = ACTIONS(5654), + [anon_sym_type] = ACTIONS(5654), + [anon_sym_anyopaque] = ACTIONS(5654), + [anon_sym_bool] = ACTIONS(5654), + [anon_sym_int] = ACTIONS(5654), + [anon_sym_uint] = ACTIONS(5654), + [anon_sym_float] = ACTIONS(5654), + [anon_sym_range] = ACTIONS(5654), + [anon_sym_i8] = ACTIONS(5654), + [anon_sym_i16] = ACTIONS(5654), + [anon_sym_i32] = ACTIONS(5654), + [anon_sym_i64] = ACTIONS(5654), + [anon_sym_u8] = ACTIONS(5654), + [anon_sym_u16] = ACTIONS(5654), + [anon_sym_u32] = ACTIONS(5654), + [anon_sym_u64] = ACTIONS(5654), + [anon_sym_isize] = ACTIONS(5654), + [anon_sym_usize] = ACTIONS(5654), + [anon_sym_f32] = ACTIONS(5654), + [anon_sym_f64] = ACTIONS(5654), + [anon_sym_c_char] = ACTIONS(5654), + [anon_sym_c_schar] = ACTIONS(5654), + [anon_sym_c_uchar] = ACTIONS(5654), + [anon_sym_c_short] = ACTIONS(5654), + [anon_sym_c_ushort] = ACTIONS(5654), + [anon_sym_c_int] = ACTIONS(5654), + [anon_sym_c_uint] = ACTIONS(5654), + [anon_sym_c_long] = ACTIONS(5654), + [anon_sym_c_ulong] = ACTIONS(5654), + [anon_sym_c_longlong] = ACTIONS(5654), + [anon_sym_c_ulonglong] = ACTIONS(5654), + [anon_sym_c_float] = ACTIONS(5654), + [anon_sym_c_double] = ACTIONS(5654), + [anon_sym_c_longdouble] = ACTIONS(5654), + [anon_sym_PLUS_EQ] = ACTIONS(5652), + [anon_sym_DASH_EQ] = ACTIONS(5652), + [anon_sym_STAR_EQ] = ACTIONS(5652), + [anon_sym_SLASH_EQ] = ACTIONS(5652), + [anon_sym_AMP_EQ] = ACTIONS(5652), + [anon_sym_PIPE_EQ] = ACTIONS(5652), + [anon_sym_xor_EQ] = ACTIONS(5652), + [anon_sym_LT_LT_EQ] = ACTIONS(5652), + [anon_sym_GT_GT_EQ] = ACTIONS(5652), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5652), + [anon_sym_return] = ACTIONS(5654), + [anon_sym_yield] = ACTIONS(5654), + [anon_sym_break] = ACTIONS(5654), + [anon_sym_continue] = ACTIONS(5654), + [anon_sym_defer] = ACTIONS(5654), + [anon_sym_errdefer] = ACTIONS(5654), + [anon_sym_if] = ACTIONS(5654), + [anon_sym_else] = ACTIONS(5654), + [anon_sym_while] = ACTIONS(5654), + [anon_sym_expand] = ACTIONS(5654), + [anon_sym_for] = ACTIONS(5654), + [anon_sym_match] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5652), + [anon_sym_orelse] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_EQ_EQ] = ACTIONS(5652), + [anon_sym_BANG_EQ] = ACTIONS(5652), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5652), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5652), + [anon_sym_AMP] = ACTIONS(5654), + [anon_sym_xor] = ACTIONS(5654), + [anon_sym_LT_LT] = ACTIONS(5654), + [anon_sym_GT_GT] = ACTIONS(5654), + [anon_sym_LT_LT_PIPE] = ACTIONS(5654), + [anon_sym_PLUS] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_catch] = ACTIONS(5654), + [anon_sym_TILDE] = ACTIONS(5652), + [anon_sym_try] = ACTIONS(5654), + [anon_sym_DOT] = ACTIONS(5654), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym_true] = ACTIONS(5654), + [anon_sym_false] = ACTIONS(5654), + [anon_sym_null] = ACTIONS(5654), + [anon_sym_unreachable] = ACTIONS(5654), + [anon_sym_undefined] = ACTIONS(5654), + [sym_sink] = ACTIONS(5654), + [sym_integer] = ACTIONS(5654), + [sym_float] = ACTIONS(5652), + [anon_sym_DQUOTE] = ACTIONS(5652), + [sym_multiline_string] = ACTIONS(5652), + [sym_character] = ACTIONS(5652), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5652), + }, + [STATE(2972)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_test] = ACTIONS(2647), + [anon_sym_hide] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2973)] = { + [sym_identifier] = ACTIONS(4816), + [anon_sym_func] = ACTIONS(4816), + [anon_sym_c_func] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_struct] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4814), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_struct_type_BANG] = ACTIONS(4814), + [anon_sym_QMARK] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_void] = ACTIONS(4816), + [anon_sym_noreturn] = ACTIONS(4816), + [anon_sym_type] = ACTIONS(4816), + [anon_sym_anyopaque] = ACTIONS(4816), + [anon_sym_bool] = ACTIONS(4816), + [anon_sym_int] = ACTIONS(4816), + [anon_sym_uint] = ACTIONS(4816), + [anon_sym_float] = ACTIONS(4816), + [anon_sym_range] = ACTIONS(4816), + [anon_sym_i8] = ACTIONS(4816), + [anon_sym_i16] = ACTIONS(4816), + [anon_sym_i32] = ACTIONS(4816), + [anon_sym_i64] = ACTIONS(4816), + [anon_sym_u8] = ACTIONS(4816), + [anon_sym_u16] = ACTIONS(4816), + [anon_sym_u32] = ACTIONS(4816), + [anon_sym_u64] = ACTIONS(4816), + [anon_sym_isize] = ACTIONS(4816), + [anon_sym_usize] = ACTIONS(4816), + [anon_sym_f32] = ACTIONS(4816), + [anon_sym_f64] = ACTIONS(4816), + [anon_sym_c_char] = ACTIONS(4816), + [anon_sym_c_schar] = ACTIONS(4816), + [anon_sym_c_uchar] = ACTIONS(4816), + [anon_sym_c_short] = ACTIONS(4816), + [anon_sym_c_ushort] = ACTIONS(4816), + [anon_sym_c_int] = ACTIONS(4816), + [anon_sym_c_uint] = ACTIONS(4816), + [anon_sym_c_long] = ACTIONS(4816), + [anon_sym_c_ulong] = ACTIONS(4816), + [anon_sym_c_longlong] = ACTIONS(4816), + [anon_sym_c_ulonglong] = ACTIONS(4816), + [anon_sym_c_float] = ACTIONS(4816), + [anon_sym_c_double] = ACTIONS(4816), + [anon_sym_c_longdouble] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_AMP_EQ] = ACTIONS(4814), + [anon_sym_PIPE_EQ] = ACTIONS(4814), + [anon_sym_xor_EQ] = ACTIONS(4814), + [anon_sym_LT_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_GT_EQ] = ACTIONS(4814), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4814), + [anon_sym_return] = ACTIONS(4816), + [anon_sym_yield] = ACTIONS(4816), + [anon_sym_break] = ACTIONS(4816), + [anon_sym_continue] = ACTIONS(4816), + [anon_sym_defer] = ACTIONS(4816), + [anon_sym_errdefer] = ACTIONS(4816), + [anon_sym_if] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_while] = ACTIONS(4816), + [anon_sym_expand] = ACTIONS(4816), + [anon_sym_for] = ACTIONS(4816), + [anon_sym_match] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4814), + [anon_sym_orelse] = ACTIONS(4816), + [anon_sym_or] = ACTIONS(4816), + [anon_sym_and] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4816), + [anon_sym_xor] = ACTIONS(4816), + [anon_sym_LT_LT] = ACTIONS(4816), + [anon_sym_GT_GT] = ACTIONS(4816), + [anon_sym_LT_LT_PIPE] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_catch] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4816), + [anon_sym_false] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4816), + [anon_sym_unreachable] = ACTIONS(4816), + [anon_sym_undefined] = ACTIONS(4816), + [sym_sink] = ACTIONS(4816), + [sym_integer] = ACTIONS(4816), + [sym_float] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(4814), + [sym_multiline_string] = ACTIONS(4814), + [sym_character] = ACTIONS(4814), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4814), + }, + [STATE(2974)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_test] = ACTIONS(2647), + [anon_sym_hide] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(2975)] = { + [sym_identifier] = ACTIONS(5986), + [anon_sym_func] = ACTIONS(5986), + [anon_sym_c_func] = ACTIONS(5986), + [anon_sym_BANG] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_struct] = ACTIONS(5986), + [anon_sym_LPAREN] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_DOLLAR] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_struct_type_BANG] = ACTIONS(5984), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_AT] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_void] = ACTIONS(5986), + [anon_sym_noreturn] = ACTIONS(5986), + [anon_sym_type] = ACTIONS(5986), + [anon_sym_anyopaque] = ACTIONS(5986), + [anon_sym_bool] = ACTIONS(5986), + [anon_sym_int] = ACTIONS(5986), + [anon_sym_uint] = ACTIONS(5986), + [anon_sym_float] = ACTIONS(5986), + [anon_sym_range] = ACTIONS(5986), + [anon_sym_i8] = ACTIONS(5986), + [anon_sym_i16] = ACTIONS(5986), + [anon_sym_i32] = ACTIONS(5986), + [anon_sym_i64] = ACTIONS(5986), + [anon_sym_u8] = ACTIONS(5986), + [anon_sym_u16] = ACTIONS(5986), + [anon_sym_u32] = ACTIONS(5986), + [anon_sym_u64] = ACTIONS(5986), + [anon_sym_isize] = ACTIONS(5986), + [anon_sym_usize] = ACTIONS(5986), + [anon_sym_f32] = ACTIONS(5986), + [anon_sym_f64] = ACTIONS(5986), + [anon_sym_c_char] = ACTIONS(5986), + [anon_sym_c_schar] = ACTIONS(5986), + [anon_sym_c_uchar] = ACTIONS(5986), + [anon_sym_c_short] = ACTIONS(5986), + [anon_sym_c_ushort] = ACTIONS(5986), + [anon_sym_c_int] = ACTIONS(5986), + [anon_sym_c_uint] = ACTIONS(5986), + [anon_sym_c_long] = ACTIONS(5986), + [anon_sym_c_ulong] = ACTIONS(5986), + [anon_sym_c_longlong] = ACTIONS(5986), + [anon_sym_c_ulonglong] = ACTIONS(5986), + [anon_sym_c_float] = ACTIONS(5986), + [anon_sym_c_double] = ACTIONS(5986), + [anon_sym_c_longdouble] = ACTIONS(5986), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_xor_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5984), + [anon_sym_return] = ACTIONS(5986), + [anon_sym_yield] = ACTIONS(5986), + [anon_sym_break] = ACTIONS(5986), + [anon_sym_continue] = ACTIONS(5986), + [anon_sym_defer] = ACTIONS(5986), + [anon_sym_errdefer] = ACTIONS(5986), + [anon_sym_if] = ACTIONS(5986), + [anon_sym_else] = ACTIONS(5986), + [anon_sym_while] = ACTIONS(5986), + [anon_sym_expand] = ACTIONS(5986), + [anon_sym_for] = ACTIONS(5986), + [anon_sym_match] = ACTIONS(5986), + [anon_sym_DOT_DOT] = ACTIONS(5986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5984), + [anon_sym_orelse] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT_PIPE] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_catch] = ACTIONS(5986), + [anon_sym_TILDE] = ACTIONS(5984), + [anon_sym_try] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5984), + [anon_sym_true] = ACTIONS(5986), + [anon_sym_false] = ACTIONS(5986), + [anon_sym_null] = ACTIONS(5986), + [anon_sym_unreachable] = ACTIONS(5986), + [anon_sym_undefined] = ACTIONS(5986), + [sym_sink] = ACTIONS(5986), + [sym_integer] = ACTIONS(5986), + [sym_float] = ACTIONS(5984), + [anon_sym_DQUOTE] = ACTIONS(5984), + [sym_multiline_string] = ACTIONS(5984), + [sym_character] = ACTIONS(5984), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5984), + }, + [STATE(2976)] = { + [sym_identifier] = ACTIONS(5818), + [anon_sym_func] = ACTIONS(5818), + [anon_sym_c_func] = ACTIONS(5818), + [anon_sym_BANG] = ACTIONS(5818), + [anon_sym_EQ] = ACTIONS(5818), + [anon_sym_struct] = ACTIONS(5818), + [anon_sym_LPAREN] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5816), + [anon_sym_COMMA] = ACTIONS(5816), + [anon_sym_RBRACE] = ACTIONS(5816), + [anon_sym_DASH] = ACTIONS(5818), + [anon_sym_DOLLAR] = ACTIONS(5816), + [anon_sym_PIPE] = ACTIONS(5818), + [anon_sym_struct_type_BANG] = ACTIONS(5816), + [anon_sym_QMARK] = ACTIONS(5816), + [anon_sym_AT] = ACTIONS(5816), + [anon_sym_STAR] = ACTIONS(5818), + [anon_sym_LBRACK] = ACTIONS(5816), + [anon_sym_void] = ACTIONS(5818), + [anon_sym_noreturn] = ACTIONS(5818), + [anon_sym_type] = ACTIONS(5818), + [anon_sym_anyopaque] = ACTIONS(5818), + [anon_sym_bool] = ACTIONS(5818), + [anon_sym_int] = ACTIONS(5818), + [anon_sym_uint] = ACTIONS(5818), + [anon_sym_float] = ACTIONS(5818), + [anon_sym_range] = ACTIONS(5818), + [anon_sym_i8] = ACTIONS(5818), + [anon_sym_i16] = ACTIONS(5818), + [anon_sym_i32] = ACTIONS(5818), + [anon_sym_i64] = ACTIONS(5818), + [anon_sym_u8] = ACTIONS(5818), + [anon_sym_u16] = ACTIONS(5818), + [anon_sym_u32] = ACTIONS(5818), + [anon_sym_u64] = ACTIONS(5818), + [anon_sym_isize] = ACTIONS(5818), + [anon_sym_usize] = ACTIONS(5818), + [anon_sym_f32] = ACTIONS(5818), + [anon_sym_f64] = ACTIONS(5818), + [anon_sym_c_char] = ACTIONS(5818), + [anon_sym_c_schar] = ACTIONS(5818), + [anon_sym_c_uchar] = ACTIONS(5818), + [anon_sym_c_short] = ACTIONS(5818), + [anon_sym_c_ushort] = ACTIONS(5818), + [anon_sym_c_int] = ACTIONS(5818), + [anon_sym_c_uint] = ACTIONS(5818), + [anon_sym_c_long] = ACTIONS(5818), + [anon_sym_c_ulong] = ACTIONS(5818), + [anon_sym_c_longlong] = ACTIONS(5818), + [anon_sym_c_ulonglong] = ACTIONS(5818), + [anon_sym_c_float] = ACTIONS(5818), + [anon_sym_c_double] = ACTIONS(5818), + [anon_sym_c_longdouble] = ACTIONS(5818), + [anon_sym_PLUS_EQ] = ACTIONS(5816), + [anon_sym_DASH_EQ] = ACTIONS(5816), + [anon_sym_STAR_EQ] = ACTIONS(5816), + [anon_sym_SLASH_EQ] = ACTIONS(5816), + [anon_sym_AMP_EQ] = ACTIONS(5816), + [anon_sym_PIPE_EQ] = ACTIONS(5816), + [anon_sym_xor_EQ] = ACTIONS(5816), + [anon_sym_LT_LT_EQ] = ACTIONS(5816), + [anon_sym_GT_GT_EQ] = ACTIONS(5816), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5816), + [anon_sym_return] = ACTIONS(5818), + [anon_sym_yield] = ACTIONS(5818), + [anon_sym_break] = ACTIONS(5818), + [anon_sym_continue] = ACTIONS(5818), + [anon_sym_defer] = ACTIONS(5818), + [anon_sym_errdefer] = ACTIONS(5818), + [anon_sym_if] = ACTIONS(5818), + [anon_sym_else] = ACTIONS(5818), + [anon_sym_while] = ACTIONS(5818), + [anon_sym_expand] = ACTIONS(5818), + [anon_sym_for] = ACTIONS(5818), + [anon_sym_match] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5816), + [anon_sym_orelse] = ACTIONS(5818), + [anon_sym_or] = ACTIONS(5818), + [anon_sym_and] = ACTIONS(5818), + [anon_sym_EQ_EQ] = ACTIONS(5816), + [anon_sym_BANG_EQ] = ACTIONS(5816), + [anon_sym_LT] = ACTIONS(5818), + [anon_sym_LT_EQ] = ACTIONS(5816), + [anon_sym_GT] = ACTIONS(5818), + [anon_sym_GT_EQ] = ACTIONS(5816), + [anon_sym_AMP] = ACTIONS(5818), + [anon_sym_xor] = ACTIONS(5818), + [anon_sym_LT_LT] = ACTIONS(5818), + [anon_sym_GT_GT] = ACTIONS(5818), + [anon_sym_LT_LT_PIPE] = ACTIONS(5818), + [anon_sym_PLUS] = ACTIONS(5818), + [anon_sym_SLASH] = ACTIONS(5818), + [anon_sym_catch] = ACTIONS(5818), + [anon_sym_TILDE] = ACTIONS(5816), + [anon_sym_try] = ACTIONS(5818), + [anon_sym_DOT] = ACTIONS(5818), + [anon_sym_CARET] = ACTIONS(5816), + [anon_sym_true] = ACTIONS(5818), + [anon_sym_false] = ACTIONS(5818), + [anon_sym_null] = ACTIONS(5818), + [anon_sym_unreachable] = ACTIONS(5818), + [anon_sym_undefined] = ACTIONS(5818), + [sym_sink] = ACTIONS(5818), + [sym_integer] = ACTIONS(5818), + [sym_float] = ACTIONS(5816), + [anon_sym_DQUOTE] = ACTIONS(5816), + [sym_multiline_string] = ACTIONS(5816), + [sym_character] = ACTIONS(5816), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5816), + }, + [STATE(2977)] = { + [sym_identifier] = ACTIONS(5990), + [anon_sym_func] = ACTIONS(5990), + [anon_sym_c_func] = ACTIONS(5990), + [anon_sym_BANG] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(5990), + [anon_sym_struct] = ACTIONS(5990), + [anon_sym_LPAREN] = ACTIONS(5988), + [anon_sym_LBRACE] = ACTIONS(5988), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5990), + [anon_sym_DOLLAR] = ACTIONS(5988), + [anon_sym_PIPE] = ACTIONS(5990), + [anon_sym_struct_type_BANG] = ACTIONS(5988), + [anon_sym_QMARK] = ACTIONS(5988), + [anon_sym_AT] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5990), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_void] = ACTIONS(5990), + [anon_sym_noreturn] = ACTIONS(5990), + [anon_sym_type] = ACTIONS(5990), + [anon_sym_anyopaque] = ACTIONS(5990), + [anon_sym_bool] = ACTIONS(5990), + [anon_sym_int] = ACTIONS(5990), + [anon_sym_uint] = ACTIONS(5990), + [anon_sym_float] = ACTIONS(5990), + [anon_sym_range] = ACTIONS(5990), + [anon_sym_i8] = ACTIONS(5990), + [anon_sym_i16] = ACTIONS(5990), + [anon_sym_i32] = ACTIONS(5990), + [anon_sym_i64] = ACTIONS(5990), + [anon_sym_u8] = ACTIONS(5990), + [anon_sym_u16] = ACTIONS(5990), + [anon_sym_u32] = ACTIONS(5990), + [anon_sym_u64] = ACTIONS(5990), + [anon_sym_isize] = ACTIONS(5990), + [anon_sym_usize] = ACTIONS(5990), + [anon_sym_f32] = ACTIONS(5990), + [anon_sym_f64] = ACTIONS(5990), + [anon_sym_c_char] = ACTIONS(5990), + [anon_sym_c_schar] = ACTIONS(5990), + [anon_sym_c_uchar] = ACTIONS(5990), + [anon_sym_c_short] = ACTIONS(5990), + [anon_sym_c_ushort] = ACTIONS(5990), + [anon_sym_c_int] = ACTIONS(5990), + [anon_sym_c_uint] = ACTIONS(5990), + [anon_sym_c_long] = ACTIONS(5990), + [anon_sym_c_ulong] = ACTIONS(5990), + [anon_sym_c_longlong] = ACTIONS(5990), + [anon_sym_c_ulonglong] = ACTIONS(5990), + [anon_sym_c_float] = ACTIONS(5990), + [anon_sym_c_double] = ACTIONS(5990), + [anon_sym_c_longdouble] = ACTIONS(5990), + [anon_sym_PLUS_EQ] = ACTIONS(5988), + [anon_sym_DASH_EQ] = ACTIONS(5988), + [anon_sym_STAR_EQ] = ACTIONS(5988), + [anon_sym_SLASH_EQ] = ACTIONS(5988), + [anon_sym_AMP_EQ] = ACTIONS(5988), + [anon_sym_PIPE_EQ] = ACTIONS(5988), + [anon_sym_xor_EQ] = ACTIONS(5988), + [anon_sym_LT_LT_EQ] = ACTIONS(5988), + [anon_sym_GT_GT_EQ] = ACTIONS(5988), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5988), + [anon_sym_return] = ACTIONS(5990), + [anon_sym_yield] = ACTIONS(5990), + [anon_sym_break] = ACTIONS(5990), + [anon_sym_continue] = ACTIONS(5990), + [anon_sym_defer] = ACTIONS(5990), + [anon_sym_errdefer] = ACTIONS(5990), + [anon_sym_if] = ACTIONS(5990), + [anon_sym_else] = ACTIONS(5990), + [anon_sym_while] = ACTIONS(5990), + [anon_sym_expand] = ACTIONS(5990), + [anon_sym_for] = ACTIONS(5990), + [anon_sym_match] = ACTIONS(5990), + [anon_sym_DOT_DOT] = ACTIONS(5990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5988), + [anon_sym_orelse] = ACTIONS(5990), + [anon_sym_or] = ACTIONS(5990), + [anon_sym_and] = ACTIONS(5990), + [anon_sym_EQ_EQ] = ACTIONS(5988), + [anon_sym_BANG_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5990), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_GT] = ACTIONS(5990), + [anon_sym_GT_EQ] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5990), + [anon_sym_xor] = ACTIONS(5990), + [anon_sym_LT_LT] = ACTIONS(5990), + [anon_sym_GT_GT] = ACTIONS(5990), + [anon_sym_LT_LT_PIPE] = ACTIONS(5990), + [anon_sym_PLUS] = ACTIONS(5990), + [anon_sym_SLASH] = ACTIONS(5990), + [anon_sym_catch] = ACTIONS(5990), + [anon_sym_TILDE] = ACTIONS(5988), + [anon_sym_try] = ACTIONS(5990), + [anon_sym_DOT] = ACTIONS(5990), + [anon_sym_CARET] = ACTIONS(5988), + [anon_sym_true] = ACTIONS(5990), + [anon_sym_false] = ACTIONS(5990), + [anon_sym_null] = ACTIONS(5990), + [anon_sym_unreachable] = ACTIONS(5990), + [anon_sym_undefined] = ACTIONS(5990), + [sym_sink] = ACTIONS(5990), + [sym_integer] = ACTIONS(5990), + [sym_float] = ACTIONS(5988), + [anon_sym_DQUOTE] = ACTIONS(5988), + [sym_multiline_string] = ACTIONS(5988), + [sym_character] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5988), + }, + [STATE(2978)] = { + [sym_identifier] = ACTIONS(5822), + [anon_sym_func] = ACTIONS(5822), + [anon_sym_c_func] = ACTIONS(5822), + [anon_sym_BANG] = ACTIONS(5822), + [anon_sym_EQ] = ACTIONS(5822), + [anon_sym_struct] = ACTIONS(5822), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(5820), + [anon_sym_DASH] = ACTIONS(5822), + [anon_sym_DOLLAR] = ACTIONS(5820), + [anon_sym_PIPE] = ACTIONS(5822), + [anon_sym_struct_type_BANG] = ACTIONS(5820), + [anon_sym_QMARK] = ACTIONS(5820), + [anon_sym_AT] = ACTIONS(5820), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_LBRACK] = ACTIONS(5820), + [anon_sym_void] = ACTIONS(5822), + [anon_sym_noreturn] = ACTIONS(5822), + [anon_sym_type] = ACTIONS(5822), + [anon_sym_anyopaque] = ACTIONS(5822), + [anon_sym_bool] = ACTIONS(5822), + [anon_sym_int] = ACTIONS(5822), + [anon_sym_uint] = ACTIONS(5822), + [anon_sym_float] = ACTIONS(5822), + [anon_sym_range] = ACTIONS(5822), + [anon_sym_i8] = ACTIONS(5822), + [anon_sym_i16] = ACTIONS(5822), + [anon_sym_i32] = ACTIONS(5822), + [anon_sym_i64] = ACTIONS(5822), + [anon_sym_u8] = ACTIONS(5822), + [anon_sym_u16] = ACTIONS(5822), + [anon_sym_u32] = ACTIONS(5822), + [anon_sym_u64] = ACTIONS(5822), + [anon_sym_isize] = ACTIONS(5822), + [anon_sym_usize] = ACTIONS(5822), + [anon_sym_f32] = ACTIONS(5822), + [anon_sym_f64] = ACTIONS(5822), + [anon_sym_c_char] = ACTIONS(5822), + [anon_sym_c_schar] = ACTIONS(5822), + [anon_sym_c_uchar] = ACTIONS(5822), + [anon_sym_c_short] = ACTIONS(5822), + [anon_sym_c_ushort] = ACTIONS(5822), + [anon_sym_c_int] = ACTIONS(5822), + [anon_sym_c_uint] = ACTIONS(5822), + [anon_sym_c_long] = ACTIONS(5822), + [anon_sym_c_ulong] = ACTIONS(5822), + [anon_sym_c_longlong] = ACTIONS(5822), + [anon_sym_c_ulonglong] = ACTIONS(5822), + [anon_sym_c_float] = ACTIONS(5822), + [anon_sym_c_double] = ACTIONS(5822), + [anon_sym_c_longdouble] = ACTIONS(5822), + [anon_sym_PLUS_EQ] = ACTIONS(5820), + [anon_sym_DASH_EQ] = ACTIONS(5820), + [anon_sym_STAR_EQ] = ACTIONS(5820), + [anon_sym_SLASH_EQ] = ACTIONS(5820), + [anon_sym_AMP_EQ] = ACTIONS(5820), + [anon_sym_PIPE_EQ] = ACTIONS(5820), + [anon_sym_xor_EQ] = ACTIONS(5820), + [anon_sym_LT_LT_EQ] = ACTIONS(5820), + [anon_sym_GT_GT_EQ] = ACTIONS(5820), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5820), + [anon_sym_return] = ACTIONS(5822), + [anon_sym_yield] = ACTIONS(5822), + [anon_sym_break] = ACTIONS(5822), + [anon_sym_continue] = ACTIONS(5822), + [anon_sym_defer] = ACTIONS(5822), + [anon_sym_errdefer] = ACTIONS(5822), + [anon_sym_if] = ACTIONS(5822), + [anon_sym_else] = ACTIONS(5822), + [anon_sym_while] = ACTIONS(5822), + [anon_sym_expand] = ACTIONS(5822), + [anon_sym_for] = ACTIONS(5822), + [anon_sym_match] = ACTIONS(5822), + [anon_sym_DOT_DOT] = ACTIONS(5822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5820), + [anon_sym_orelse] = ACTIONS(5822), + [anon_sym_or] = ACTIONS(5822), + [anon_sym_and] = ACTIONS(5822), + [anon_sym_EQ_EQ] = ACTIONS(5820), + [anon_sym_BANG_EQ] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5822), + [anon_sym_LT_EQ] = ACTIONS(5820), + [anon_sym_GT] = ACTIONS(5822), + [anon_sym_GT_EQ] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5822), + [anon_sym_xor] = ACTIONS(5822), + [anon_sym_LT_LT] = ACTIONS(5822), + [anon_sym_GT_GT] = ACTIONS(5822), + [anon_sym_LT_LT_PIPE] = ACTIONS(5822), + [anon_sym_PLUS] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_catch] = ACTIONS(5822), + [anon_sym_TILDE] = ACTIONS(5820), + [anon_sym_try] = ACTIONS(5822), + [anon_sym_DOT] = ACTIONS(5822), + [anon_sym_CARET] = ACTIONS(5820), + [anon_sym_true] = ACTIONS(5822), + [anon_sym_false] = ACTIONS(5822), + [anon_sym_null] = ACTIONS(5822), + [anon_sym_unreachable] = ACTIONS(5822), + [anon_sym_undefined] = ACTIONS(5822), + [sym_sink] = ACTIONS(5822), + [sym_integer] = ACTIONS(5822), + [sym_float] = ACTIONS(5820), + [anon_sym_DQUOTE] = ACTIONS(5820), + [sym_multiline_string] = ACTIONS(5820), + [sym_character] = ACTIONS(5820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5820), + }, + [STATE(2979)] = { + [sym_identifier] = ACTIONS(5994), + [anon_sym_func] = ACTIONS(5994), + [anon_sym_c_func] = ACTIONS(5994), + [anon_sym_BANG] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_struct] = ACTIONS(5994), + [anon_sym_LPAREN] = ACTIONS(5992), + [anon_sym_LBRACE] = ACTIONS(5992), + [anon_sym_COMMA] = ACTIONS(5992), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_DOLLAR] = ACTIONS(5992), + [anon_sym_PIPE] = ACTIONS(5994), + [anon_sym_struct_type_BANG] = ACTIONS(5992), + [anon_sym_QMARK] = ACTIONS(5992), + [anon_sym_AT] = ACTIONS(5992), + [anon_sym_STAR] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(5992), + [anon_sym_void] = ACTIONS(5994), + [anon_sym_noreturn] = ACTIONS(5994), + [anon_sym_type] = ACTIONS(5994), + [anon_sym_anyopaque] = ACTIONS(5994), + [anon_sym_bool] = ACTIONS(5994), + [anon_sym_int] = ACTIONS(5994), + [anon_sym_uint] = ACTIONS(5994), + [anon_sym_float] = ACTIONS(5994), + [anon_sym_range] = ACTIONS(5994), + [anon_sym_i8] = ACTIONS(5994), + [anon_sym_i16] = ACTIONS(5994), + [anon_sym_i32] = ACTIONS(5994), + [anon_sym_i64] = ACTIONS(5994), + [anon_sym_u8] = ACTIONS(5994), + [anon_sym_u16] = ACTIONS(5994), + [anon_sym_u32] = ACTIONS(5994), + [anon_sym_u64] = ACTIONS(5994), + [anon_sym_isize] = ACTIONS(5994), + [anon_sym_usize] = ACTIONS(5994), + [anon_sym_f32] = ACTIONS(5994), + [anon_sym_f64] = ACTIONS(5994), + [anon_sym_c_char] = ACTIONS(5994), + [anon_sym_c_schar] = ACTIONS(5994), + [anon_sym_c_uchar] = ACTIONS(5994), + [anon_sym_c_short] = ACTIONS(5994), + [anon_sym_c_ushort] = ACTIONS(5994), + [anon_sym_c_int] = ACTIONS(5994), + [anon_sym_c_uint] = ACTIONS(5994), + [anon_sym_c_long] = ACTIONS(5994), + [anon_sym_c_ulong] = ACTIONS(5994), + [anon_sym_c_longlong] = ACTIONS(5994), + [anon_sym_c_ulonglong] = ACTIONS(5994), + [anon_sym_c_float] = ACTIONS(5994), + [anon_sym_c_double] = ACTIONS(5994), + [anon_sym_c_longdouble] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5992), + [anon_sym_DASH_EQ] = ACTIONS(5992), + [anon_sym_STAR_EQ] = ACTIONS(5992), + [anon_sym_SLASH_EQ] = ACTIONS(5992), + [anon_sym_AMP_EQ] = ACTIONS(5992), + [anon_sym_PIPE_EQ] = ACTIONS(5992), + [anon_sym_xor_EQ] = ACTIONS(5992), + [anon_sym_LT_LT_EQ] = ACTIONS(5992), + [anon_sym_GT_GT_EQ] = ACTIONS(5992), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5992), + [anon_sym_return] = ACTIONS(5994), + [anon_sym_yield] = ACTIONS(5994), + [anon_sym_break] = ACTIONS(5994), + [anon_sym_continue] = ACTIONS(5994), + [anon_sym_defer] = ACTIONS(5994), + [anon_sym_errdefer] = ACTIONS(5994), + [anon_sym_if] = ACTIONS(5994), + [anon_sym_else] = ACTIONS(5994), + [anon_sym_while] = ACTIONS(5994), + [anon_sym_expand] = ACTIONS(5994), + [anon_sym_for] = ACTIONS(5994), + [anon_sym_match] = ACTIONS(5994), + [anon_sym_DOT_DOT] = ACTIONS(5994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5992), + [anon_sym_orelse] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5994), + [anon_sym_and] = ACTIONS(5994), + [anon_sym_EQ_EQ] = ACTIONS(5992), + [anon_sym_BANG_EQ] = ACTIONS(5992), + [anon_sym_LT] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5992), + [anon_sym_GT] = ACTIONS(5994), + [anon_sym_GT_EQ] = ACTIONS(5992), + [anon_sym_AMP] = ACTIONS(5994), + [anon_sym_xor] = ACTIONS(5994), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym_LT_LT_PIPE] = ACTIONS(5994), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5994), + [anon_sym_catch] = ACTIONS(5994), + [anon_sym_TILDE] = ACTIONS(5992), + [anon_sym_try] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_CARET] = ACTIONS(5992), + [anon_sym_true] = ACTIONS(5994), + [anon_sym_false] = ACTIONS(5994), + [anon_sym_null] = ACTIONS(5994), + [anon_sym_unreachable] = ACTIONS(5994), + [anon_sym_undefined] = ACTIONS(5994), + [sym_sink] = ACTIONS(5994), + [sym_integer] = ACTIONS(5994), + [sym_float] = ACTIONS(5992), + [anon_sym_DQUOTE] = ACTIONS(5992), + [sym_multiline_string] = ACTIONS(5992), + [sym_character] = ACTIONS(5992), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5992), + }, + [STATE(2980)] = { + [sym_identifier] = ACTIONS(5370), + [anon_sym_func] = ACTIONS(5370), + [anon_sym_c_func] = ACTIONS(5370), + [anon_sym_BANG] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_struct] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5368), + [anon_sym_LBRACE] = ACTIONS(5368), + [anon_sym_COMMA] = ACTIONS(5368), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5370), + [anon_sym_struct_type_BANG] = ACTIONS(5368), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_AT] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5368), + [anon_sym_void] = ACTIONS(5370), + [anon_sym_noreturn] = ACTIONS(5370), + [anon_sym_type] = ACTIONS(5370), + [anon_sym_anyopaque] = ACTIONS(5370), + [anon_sym_bool] = ACTIONS(5370), + [anon_sym_int] = ACTIONS(5370), + [anon_sym_uint] = ACTIONS(5370), + [anon_sym_float] = ACTIONS(5370), + [anon_sym_range] = ACTIONS(5370), + [anon_sym_i8] = ACTIONS(5370), + [anon_sym_i16] = ACTIONS(5370), + [anon_sym_i32] = ACTIONS(5370), + [anon_sym_i64] = ACTIONS(5370), + [anon_sym_u8] = ACTIONS(5370), + [anon_sym_u16] = ACTIONS(5370), + [anon_sym_u32] = ACTIONS(5370), + [anon_sym_u64] = ACTIONS(5370), + [anon_sym_isize] = ACTIONS(5370), + [anon_sym_usize] = ACTIONS(5370), + [anon_sym_f32] = ACTIONS(5370), + [anon_sym_f64] = ACTIONS(5370), + [anon_sym_c_char] = ACTIONS(5370), + [anon_sym_c_schar] = ACTIONS(5370), + [anon_sym_c_uchar] = ACTIONS(5370), + [anon_sym_c_short] = ACTIONS(5370), + [anon_sym_c_ushort] = ACTIONS(5370), + [anon_sym_c_int] = ACTIONS(5370), + [anon_sym_c_uint] = ACTIONS(5370), + [anon_sym_c_long] = ACTIONS(5370), + [anon_sym_c_ulong] = ACTIONS(5370), + [anon_sym_c_longlong] = ACTIONS(5370), + [anon_sym_c_ulonglong] = ACTIONS(5370), + [anon_sym_c_float] = ACTIONS(5370), + [anon_sym_c_double] = ACTIONS(5370), + [anon_sym_c_longdouble] = ACTIONS(5370), + [anon_sym_PLUS_EQ] = ACTIONS(5368), + [anon_sym_DASH_EQ] = ACTIONS(5368), + [anon_sym_STAR_EQ] = ACTIONS(5368), + [anon_sym_SLASH_EQ] = ACTIONS(5368), + [anon_sym_AMP_EQ] = ACTIONS(5368), + [anon_sym_PIPE_EQ] = ACTIONS(5368), + [anon_sym_xor_EQ] = ACTIONS(5368), + [anon_sym_LT_LT_EQ] = ACTIONS(5368), + [anon_sym_GT_GT_EQ] = ACTIONS(5368), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5368), + [anon_sym_return] = ACTIONS(5370), + [anon_sym_yield] = ACTIONS(5370), + [anon_sym_break] = ACTIONS(5370), + [anon_sym_continue] = ACTIONS(5370), + [anon_sym_defer] = ACTIONS(5370), + [anon_sym_errdefer] = ACTIONS(5370), + [anon_sym_if] = ACTIONS(5370), + [anon_sym_else] = ACTIONS(5370), + [anon_sym_while] = ACTIONS(5370), + [anon_sym_expand] = ACTIONS(5370), + [anon_sym_for] = ACTIONS(5370), + [anon_sym_match] = ACTIONS(5370), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5368), + [anon_sym_orelse] = ACTIONS(5370), + [anon_sym_or] = ACTIONS(5370), + [anon_sym_and] = ACTIONS(5370), + [anon_sym_EQ_EQ] = ACTIONS(5368), + [anon_sym_BANG_EQ] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5370), + [anon_sym_xor] = ACTIONS(5370), + [anon_sym_LT_LT] = ACTIONS(5370), + [anon_sym_GT_GT] = ACTIONS(5370), + [anon_sym_LT_LT_PIPE] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5370), + [anon_sym_SLASH] = ACTIONS(5370), + [anon_sym_catch] = ACTIONS(5370), + [anon_sym_TILDE] = ACTIONS(5368), + [anon_sym_try] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5370), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym_true] = ACTIONS(5370), + [anon_sym_false] = ACTIONS(5370), + [anon_sym_null] = ACTIONS(5370), + [anon_sym_unreachable] = ACTIONS(5370), + [anon_sym_undefined] = ACTIONS(5370), + [sym_sink] = ACTIONS(5370), + [sym_integer] = ACTIONS(5370), + [sym_float] = ACTIONS(5368), + [anon_sym_DQUOTE] = ACTIONS(5368), + [sym_multiline_string] = ACTIONS(5368), + [sym_character] = ACTIONS(5368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5368), + }, + [STATE(2981)] = { + [sym_identifier] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_c_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2903), + [anon_sym_struct_type_BANG] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_PLUS_EQ] = ACTIONS(2901), + [anon_sym_DASH_EQ] = ACTIONS(2901), + [anon_sym_STAR_EQ] = ACTIONS(2901), + [anon_sym_SLASH_EQ] = ACTIONS(2901), + [anon_sym_AMP_EQ] = ACTIONS(2901), + [anon_sym_PIPE_EQ] = ACTIONS(2901), + [anon_sym_xor_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_GT_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_errdefer] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_expand] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_LT_LT_PIPE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2903), + [anon_sym_unreachable] = ACTIONS(2903), + [anon_sym_undefined] = ACTIONS(2903), + [sym_sink] = ACTIONS(2903), + [sym_integer] = ACTIONS(2903), + [sym_float] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_multiline_string] = ACTIONS(2901), + [sym_character] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(2982)] = { + [sym_identifier] = ACTIONS(4514), + [anon_sym_func] = ACTIONS(4514), + [anon_sym_c_func] = ACTIONS(4514), + [anon_sym_BANG] = ACTIONS(4514), + [anon_sym_EQ] = ACTIONS(4514), + [anon_sym_struct] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_COMMA] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_DOLLAR] = ACTIONS(4512), + [anon_sym_PIPE] = ACTIONS(4514), + [anon_sym_struct_type_BANG] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_AT] = ACTIONS(4512), + [anon_sym_STAR] = ACTIONS(4514), + [anon_sym_LBRACK] = ACTIONS(4512), + [anon_sym_void] = ACTIONS(4514), + [anon_sym_noreturn] = ACTIONS(4514), + [anon_sym_type] = ACTIONS(4514), + [anon_sym_anyopaque] = ACTIONS(4514), + [anon_sym_bool] = ACTIONS(4514), + [anon_sym_int] = ACTIONS(4514), + [anon_sym_uint] = ACTIONS(4514), + [anon_sym_float] = ACTIONS(4514), + [anon_sym_range] = ACTIONS(4514), + [anon_sym_i8] = ACTIONS(4514), + [anon_sym_i16] = ACTIONS(4514), + [anon_sym_i32] = ACTIONS(4514), + [anon_sym_i64] = ACTIONS(4514), + [anon_sym_u8] = ACTIONS(4514), + [anon_sym_u16] = ACTIONS(4514), + [anon_sym_u32] = ACTIONS(4514), + [anon_sym_u64] = ACTIONS(4514), + [anon_sym_isize] = ACTIONS(4514), + [anon_sym_usize] = ACTIONS(4514), + [anon_sym_f32] = ACTIONS(4514), + [anon_sym_f64] = ACTIONS(4514), + [anon_sym_c_char] = ACTIONS(4514), + [anon_sym_c_schar] = ACTIONS(4514), + [anon_sym_c_uchar] = ACTIONS(4514), + [anon_sym_c_short] = ACTIONS(4514), + [anon_sym_c_ushort] = ACTIONS(4514), + [anon_sym_c_int] = ACTIONS(4514), + [anon_sym_c_uint] = ACTIONS(4514), + [anon_sym_c_long] = ACTIONS(4514), + [anon_sym_c_ulong] = ACTIONS(4514), + [anon_sym_c_longlong] = ACTIONS(4514), + [anon_sym_c_ulonglong] = ACTIONS(4514), + [anon_sym_c_float] = ACTIONS(4514), + [anon_sym_c_double] = ACTIONS(4514), + [anon_sym_c_longdouble] = ACTIONS(4514), + [anon_sym_PLUS_EQ] = ACTIONS(4512), + [anon_sym_DASH_EQ] = ACTIONS(4512), + [anon_sym_STAR_EQ] = ACTIONS(4512), + [anon_sym_SLASH_EQ] = ACTIONS(4512), + [anon_sym_AMP_EQ] = ACTIONS(4512), + [anon_sym_PIPE_EQ] = ACTIONS(4512), + [anon_sym_xor_EQ] = ACTIONS(4512), + [anon_sym_LT_LT_EQ] = ACTIONS(4512), + [anon_sym_GT_GT_EQ] = ACTIONS(4512), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4512), + [anon_sym_return] = ACTIONS(4514), + [anon_sym_yield] = ACTIONS(4514), + [anon_sym_break] = ACTIONS(4514), + [anon_sym_continue] = ACTIONS(4514), + [anon_sym_defer] = ACTIONS(4514), + [anon_sym_errdefer] = ACTIONS(4514), + [anon_sym_if] = ACTIONS(4514), + [anon_sym_else] = ACTIONS(4514), + [anon_sym_while] = ACTIONS(4514), + [anon_sym_expand] = ACTIONS(4514), + [anon_sym_for] = ACTIONS(4514), + [anon_sym_match] = ACTIONS(4514), + [anon_sym_DOT_DOT] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4512), + [anon_sym_orelse] = ACTIONS(4514), + [anon_sym_or] = ACTIONS(4514), + [anon_sym_and] = ACTIONS(4514), + [anon_sym_EQ_EQ] = ACTIONS(4512), + [anon_sym_BANG_EQ] = ACTIONS(4512), + [anon_sym_LT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4512), + [anon_sym_GT] = ACTIONS(4514), + [anon_sym_GT_EQ] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4514), + [anon_sym_xor] = ACTIONS(4514), + [anon_sym_LT_LT] = ACTIONS(4514), + [anon_sym_GT_GT] = ACTIONS(4514), + [anon_sym_LT_LT_PIPE] = ACTIONS(4514), + [anon_sym_PLUS] = ACTIONS(4514), + [anon_sym_SLASH] = ACTIONS(4514), + [anon_sym_catch] = ACTIONS(4514), + [anon_sym_TILDE] = ACTIONS(4512), + [anon_sym_try] = ACTIONS(4514), + [anon_sym_DOT] = ACTIONS(4514), + [anon_sym_CARET] = ACTIONS(4512), + [anon_sym_true] = ACTIONS(4514), + [anon_sym_false] = ACTIONS(4514), + [anon_sym_null] = ACTIONS(4514), + [anon_sym_unreachable] = ACTIONS(4514), + [anon_sym_undefined] = ACTIONS(4514), + [sym_sink] = ACTIONS(4514), + [sym_integer] = ACTIONS(4514), + [sym_float] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [sym_multiline_string] = ACTIONS(4512), + [sym_character] = ACTIONS(4512), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4512), + }, + [STATE(2983)] = { + [sym_identifier] = ACTIONS(5666), + [anon_sym_func] = ACTIONS(5666), + [anon_sym_c_func] = ACTIONS(5666), + [anon_sym_BANG] = ACTIONS(5666), + [anon_sym_EQ] = ACTIONS(5666), + [anon_sym_struct] = ACTIONS(5666), + [anon_sym_LPAREN] = ACTIONS(5664), + [anon_sym_LBRACE] = ACTIONS(5664), + [anon_sym_COMMA] = ACTIONS(5664), + [anon_sym_RBRACE] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5666), + [anon_sym_DOLLAR] = ACTIONS(5664), + [anon_sym_PIPE] = ACTIONS(5666), + [anon_sym_struct_type_BANG] = ACTIONS(5664), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_AT] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_LBRACK] = ACTIONS(5664), + [anon_sym_void] = ACTIONS(5666), + [anon_sym_noreturn] = ACTIONS(5666), + [anon_sym_type] = ACTIONS(5666), + [anon_sym_anyopaque] = ACTIONS(5666), + [anon_sym_bool] = ACTIONS(5666), + [anon_sym_int] = ACTIONS(5666), + [anon_sym_uint] = ACTIONS(5666), + [anon_sym_float] = ACTIONS(5666), + [anon_sym_range] = ACTIONS(5666), + [anon_sym_i8] = ACTIONS(5666), + [anon_sym_i16] = ACTIONS(5666), + [anon_sym_i32] = ACTIONS(5666), + [anon_sym_i64] = ACTIONS(5666), + [anon_sym_u8] = ACTIONS(5666), + [anon_sym_u16] = ACTIONS(5666), + [anon_sym_u32] = ACTIONS(5666), + [anon_sym_u64] = ACTIONS(5666), + [anon_sym_isize] = ACTIONS(5666), + [anon_sym_usize] = ACTIONS(5666), + [anon_sym_f32] = ACTIONS(5666), + [anon_sym_f64] = ACTIONS(5666), + [anon_sym_c_char] = ACTIONS(5666), + [anon_sym_c_schar] = ACTIONS(5666), + [anon_sym_c_uchar] = ACTIONS(5666), + [anon_sym_c_short] = ACTIONS(5666), + [anon_sym_c_ushort] = ACTIONS(5666), + [anon_sym_c_int] = ACTIONS(5666), + [anon_sym_c_uint] = ACTIONS(5666), + [anon_sym_c_long] = ACTIONS(5666), + [anon_sym_c_ulong] = ACTIONS(5666), + [anon_sym_c_longlong] = ACTIONS(5666), + [anon_sym_c_ulonglong] = ACTIONS(5666), + [anon_sym_c_float] = ACTIONS(5666), + [anon_sym_c_double] = ACTIONS(5666), + [anon_sym_c_longdouble] = ACTIONS(5666), + [anon_sym_PLUS_EQ] = ACTIONS(5664), + [anon_sym_DASH_EQ] = ACTIONS(5664), + [anon_sym_STAR_EQ] = ACTIONS(5664), + [anon_sym_SLASH_EQ] = ACTIONS(5664), + [anon_sym_AMP_EQ] = ACTIONS(5664), + [anon_sym_PIPE_EQ] = ACTIONS(5664), + [anon_sym_xor_EQ] = ACTIONS(5664), + [anon_sym_LT_LT_EQ] = ACTIONS(5664), + [anon_sym_GT_GT_EQ] = ACTIONS(5664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5664), + [anon_sym_return] = ACTIONS(5666), + [anon_sym_yield] = ACTIONS(5666), + [anon_sym_break] = ACTIONS(5666), + [anon_sym_continue] = ACTIONS(5666), + [anon_sym_defer] = ACTIONS(5666), + [anon_sym_errdefer] = ACTIONS(5666), + [anon_sym_if] = ACTIONS(5666), + [anon_sym_else] = ACTIONS(5666), + [anon_sym_while] = ACTIONS(5666), + [anon_sym_expand] = ACTIONS(5666), + [anon_sym_for] = ACTIONS(5666), + [anon_sym_match] = ACTIONS(5666), + [anon_sym_DOT_DOT] = ACTIONS(5666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5664), + [anon_sym_orelse] = ACTIONS(5666), + [anon_sym_or] = ACTIONS(5666), + [anon_sym_and] = ACTIONS(5666), + [anon_sym_EQ_EQ] = ACTIONS(5664), + [anon_sym_BANG_EQ] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(5666), + [anon_sym_LT_EQ] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5666), + [anon_sym_GT_EQ] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_xor] = ACTIONS(5666), + [anon_sym_LT_LT] = ACTIONS(5666), + [anon_sym_GT_GT] = ACTIONS(5666), + [anon_sym_LT_LT_PIPE] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5666), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_catch] = ACTIONS(5666), + [anon_sym_TILDE] = ACTIONS(5664), + [anon_sym_try] = ACTIONS(5666), + [anon_sym_DOT] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5664), + [anon_sym_true] = ACTIONS(5666), + [anon_sym_false] = ACTIONS(5666), + [anon_sym_null] = ACTIONS(5666), + [anon_sym_unreachable] = ACTIONS(5666), + [anon_sym_undefined] = ACTIONS(5666), + [sym_sink] = ACTIONS(5666), + [sym_integer] = ACTIONS(5666), + [sym_float] = ACTIONS(5664), + [anon_sym_DQUOTE] = ACTIONS(5664), + [sym_multiline_string] = ACTIONS(5664), + [sym_character] = ACTIONS(5664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5664), + }, + [STATE(2984)] = { + [sym_identifier] = ACTIONS(5670), + [anon_sym_func] = ACTIONS(5670), + [anon_sym_c_func] = ACTIONS(5670), + [anon_sym_BANG] = ACTIONS(5670), + [anon_sym_EQ] = ACTIONS(5670), + [anon_sym_struct] = ACTIONS(5670), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LBRACE] = ACTIONS(5668), + [anon_sym_COMMA] = ACTIONS(5668), + [anon_sym_RBRACE] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_DOLLAR] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_struct_type_BANG] = ACTIONS(5668), + [anon_sym_QMARK] = ACTIONS(5668), + [anon_sym_AT] = ACTIONS(5668), + [anon_sym_STAR] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5668), + [anon_sym_void] = ACTIONS(5670), + [anon_sym_noreturn] = ACTIONS(5670), + [anon_sym_type] = ACTIONS(5670), + [anon_sym_anyopaque] = ACTIONS(5670), + [anon_sym_bool] = ACTIONS(5670), + [anon_sym_int] = ACTIONS(5670), + [anon_sym_uint] = ACTIONS(5670), + [anon_sym_float] = ACTIONS(5670), + [anon_sym_range] = ACTIONS(5670), + [anon_sym_i8] = ACTIONS(5670), + [anon_sym_i16] = ACTIONS(5670), + [anon_sym_i32] = ACTIONS(5670), + [anon_sym_i64] = ACTIONS(5670), + [anon_sym_u8] = ACTIONS(5670), + [anon_sym_u16] = ACTIONS(5670), + [anon_sym_u32] = ACTIONS(5670), + [anon_sym_u64] = ACTIONS(5670), + [anon_sym_isize] = ACTIONS(5670), + [anon_sym_usize] = ACTIONS(5670), + [anon_sym_f32] = ACTIONS(5670), + [anon_sym_f64] = ACTIONS(5670), + [anon_sym_c_char] = ACTIONS(5670), + [anon_sym_c_schar] = ACTIONS(5670), + [anon_sym_c_uchar] = ACTIONS(5670), + [anon_sym_c_short] = ACTIONS(5670), + [anon_sym_c_ushort] = ACTIONS(5670), + [anon_sym_c_int] = ACTIONS(5670), + [anon_sym_c_uint] = ACTIONS(5670), + [anon_sym_c_long] = ACTIONS(5670), + [anon_sym_c_ulong] = ACTIONS(5670), + [anon_sym_c_longlong] = ACTIONS(5670), + [anon_sym_c_ulonglong] = ACTIONS(5670), + [anon_sym_c_float] = ACTIONS(5670), + [anon_sym_c_double] = ACTIONS(5670), + [anon_sym_c_longdouble] = ACTIONS(5670), + [anon_sym_PLUS_EQ] = ACTIONS(5668), + [anon_sym_DASH_EQ] = ACTIONS(5668), + [anon_sym_STAR_EQ] = ACTIONS(5668), + [anon_sym_SLASH_EQ] = ACTIONS(5668), + [anon_sym_AMP_EQ] = ACTIONS(5668), + [anon_sym_PIPE_EQ] = ACTIONS(5668), + [anon_sym_xor_EQ] = ACTIONS(5668), + [anon_sym_LT_LT_EQ] = ACTIONS(5668), + [anon_sym_GT_GT_EQ] = ACTIONS(5668), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5668), + [anon_sym_return] = ACTIONS(5670), + [anon_sym_yield] = ACTIONS(5670), + [anon_sym_break] = ACTIONS(5670), + [anon_sym_continue] = ACTIONS(5670), + [anon_sym_defer] = ACTIONS(5670), + [anon_sym_errdefer] = ACTIONS(5670), + [anon_sym_if] = ACTIONS(5670), + [anon_sym_else] = ACTIONS(5670), + [anon_sym_while] = ACTIONS(5670), + [anon_sym_expand] = ACTIONS(5670), + [anon_sym_for] = ACTIONS(5670), + [anon_sym_match] = ACTIONS(5670), + [anon_sym_DOT_DOT] = ACTIONS(5670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5668), + [anon_sym_orelse] = ACTIONS(5670), + [anon_sym_or] = ACTIONS(5670), + [anon_sym_and] = ACTIONS(5670), + [anon_sym_EQ_EQ] = ACTIONS(5668), + [anon_sym_BANG_EQ] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5670), + [anon_sym_LT_EQ] = ACTIONS(5668), + [anon_sym_GT] = ACTIONS(5670), + [anon_sym_GT_EQ] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5670), + [anon_sym_xor] = ACTIONS(5670), + [anon_sym_LT_LT] = ACTIONS(5670), + [anon_sym_GT_GT] = ACTIONS(5670), + [anon_sym_LT_LT_PIPE] = ACTIONS(5670), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_SLASH] = ACTIONS(5670), + [anon_sym_catch] = ACTIONS(5670), + [anon_sym_TILDE] = ACTIONS(5668), + [anon_sym_try] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5670), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_true] = ACTIONS(5670), + [anon_sym_false] = ACTIONS(5670), + [anon_sym_null] = ACTIONS(5670), + [anon_sym_unreachable] = ACTIONS(5670), + [anon_sym_undefined] = ACTIONS(5670), + [sym_sink] = ACTIONS(5670), + [sym_integer] = ACTIONS(5670), + [sym_float] = ACTIONS(5668), + [anon_sym_DQUOTE] = ACTIONS(5668), + [sym_multiline_string] = ACTIONS(5668), + [sym_character] = ACTIONS(5668), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5668), + }, + [STATE(2985)] = { + [sym_identifier] = ACTIONS(5674), + [anon_sym_func] = ACTIONS(5674), + [anon_sym_c_func] = ACTIONS(5674), + [anon_sym_BANG] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(5674), + [anon_sym_struct] = ACTIONS(5674), + [anon_sym_LPAREN] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5672), + [anon_sym_COMMA] = ACTIONS(5672), + [anon_sym_RBRACE] = ACTIONS(5672), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_DOLLAR] = ACTIONS(5672), + [anon_sym_PIPE] = ACTIONS(5674), + [anon_sym_struct_type_BANG] = ACTIONS(5672), + [anon_sym_QMARK] = ACTIONS(5672), + [anon_sym_AT] = ACTIONS(5672), + [anon_sym_STAR] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5672), + [anon_sym_void] = ACTIONS(5674), + [anon_sym_noreturn] = ACTIONS(5674), + [anon_sym_type] = ACTIONS(5674), + [anon_sym_anyopaque] = ACTIONS(5674), + [anon_sym_bool] = ACTIONS(5674), + [anon_sym_int] = ACTIONS(5674), + [anon_sym_uint] = ACTIONS(5674), + [anon_sym_float] = ACTIONS(5674), + [anon_sym_range] = ACTIONS(5674), + [anon_sym_i8] = ACTIONS(5674), + [anon_sym_i16] = ACTIONS(5674), + [anon_sym_i32] = ACTIONS(5674), + [anon_sym_i64] = ACTIONS(5674), + [anon_sym_u8] = ACTIONS(5674), + [anon_sym_u16] = ACTIONS(5674), + [anon_sym_u32] = ACTIONS(5674), + [anon_sym_u64] = ACTIONS(5674), + [anon_sym_isize] = ACTIONS(5674), + [anon_sym_usize] = ACTIONS(5674), + [anon_sym_f32] = ACTIONS(5674), + [anon_sym_f64] = ACTIONS(5674), + [anon_sym_c_char] = ACTIONS(5674), + [anon_sym_c_schar] = ACTIONS(5674), + [anon_sym_c_uchar] = ACTIONS(5674), + [anon_sym_c_short] = ACTIONS(5674), + [anon_sym_c_ushort] = ACTIONS(5674), + [anon_sym_c_int] = ACTIONS(5674), + [anon_sym_c_uint] = ACTIONS(5674), + [anon_sym_c_long] = ACTIONS(5674), + [anon_sym_c_ulong] = ACTIONS(5674), + [anon_sym_c_longlong] = ACTIONS(5674), + [anon_sym_c_ulonglong] = ACTIONS(5674), + [anon_sym_c_float] = ACTIONS(5674), + [anon_sym_c_double] = ACTIONS(5674), + [anon_sym_c_longdouble] = ACTIONS(5674), + [anon_sym_PLUS_EQ] = ACTIONS(5672), + [anon_sym_DASH_EQ] = ACTIONS(5672), + [anon_sym_STAR_EQ] = ACTIONS(5672), + [anon_sym_SLASH_EQ] = ACTIONS(5672), + [anon_sym_AMP_EQ] = ACTIONS(5672), + [anon_sym_PIPE_EQ] = ACTIONS(5672), + [anon_sym_xor_EQ] = ACTIONS(5672), + [anon_sym_LT_LT_EQ] = ACTIONS(5672), + [anon_sym_GT_GT_EQ] = ACTIONS(5672), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5672), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_break] = ACTIONS(5674), + [anon_sym_continue] = ACTIONS(5674), + [anon_sym_defer] = ACTIONS(5674), + [anon_sym_errdefer] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_else] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_expand] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_DOT_DOT] = ACTIONS(5674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5672), + [anon_sym_orelse] = ACTIONS(5674), + [anon_sym_or] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5672), + [anon_sym_BANG_EQ] = ACTIONS(5672), + [anon_sym_LT] = ACTIONS(5674), + [anon_sym_LT_EQ] = ACTIONS(5672), + [anon_sym_GT] = ACTIONS(5674), + [anon_sym_GT_EQ] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_xor] = ACTIONS(5674), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5674), + [anon_sym_LT_LT_PIPE] = ACTIONS(5674), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_SLASH] = ACTIONS(5674), + [anon_sym_catch] = ACTIONS(5674), + [anon_sym_TILDE] = ACTIONS(5672), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5674), + [anon_sym_CARET] = ACTIONS(5672), + [anon_sym_true] = ACTIONS(5674), + [anon_sym_false] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_unreachable] = ACTIONS(5674), + [anon_sym_undefined] = ACTIONS(5674), + [sym_sink] = ACTIONS(5674), + [sym_integer] = ACTIONS(5674), + [sym_float] = ACTIONS(5672), + [anon_sym_DQUOTE] = ACTIONS(5672), + [sym_multiline_string] = ACTIONS(5672), + [sym_character] = ACTIONS(5672), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5672), + }, + [STATE(2986)] = { + [sym_identifier] = ACTIONS(4822), + [anon_sym_func] = ACTIONS(4822), + [anon_sym_c_func] = ACTIONS(4822), + [anon_sym_BANG] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_struct] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4822), + [anon_sym_struct_type_BANG] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_void] = ACTIONS(4822), + [anon_sym_noreturn] = ACTIONS(4822), + [anon_sym_type] = ACTIONS(4822), + [anon_sym_anyopaque] = ACTIONS(4822), + [anon_sym_bool] = ACTIONS(4822), + [anon_sym_int] = ACTIONS(4822), + [anon_sym_uint] = ACTIONS(4822), + [anon_sym_float] = ACTIONS(4822), + [anon_sym_range] = ACTIONS(4822), + [anon_sym_i8] = ACTIONS(4822), + [anon_sym_i16] = ACTIONS(4822), + [anon_sym_i32] = ACTIONS(4822), + [anon_sym_i64] = ACTIONS(4822), + [anon_sym_u8] = ACTIONS(4822), + [anon_sym_u16] = ACTIONS(4822), + [anon_sym_u32] = ACTIONS(4822), + [anon_sym_u64] = ACTIONS(4822), + [anon_sym_isize] = ACTIONS(4822), + [anon_sym_usize] = ACTIONS(4822), + [anon_sym_f32] = ACTIONS(4822), + [anon_sym_f64] = ACTIONS(4822), + [anon_sym_c_char] = ACTIONS(4822), + [anon_sym_c_schar] = ACTIONS(4822), + [anon_sym_c_uchar] = ACTIONS(4822), + [anon_sym_c_short] = ACTIONS(4822), + [anon_sym_c_ushort] = ACTIONS(4822), + [anon_sym_c_int] = ACTIONS(4822), + [anon_sym_c_uint] = ACTIONS(4822), + [anon_sym_c_long] = ACTIONS(4822), + [anon_sym_c_ulong] = ACTIONS(4822), + [anon_sym_c_longlong] = ACTIONS(4822), + [anon_sym_c_ulonglong] = ACTIONS(4822), + [anon_sym_c_float] = ACTIONS(4822), + [anon_sym_c_double] = ACTIONS(4822), + [anon_sym_c_longdouble] = ACTIONS(4822), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_AMP_EQ] = ACTIONS(4820), + [anon_sym_PIPE_EQ] = ACTIONS(4820), + [anon_sym_xor_EQ] = ACTIONS(4820), + [anon_sym_LT_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_GT_EQ] = ACTIONS(4820), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4820), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_yield] = ACTIONS(4822), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_defer] = ACTIONS(4822), + [anon_sym_errdefer] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_while] = ACTIONS(4822), + [anon_sym_expand] = ACTIONS(4822), + [anon_sym_for] = ACTIONS(4822), + [anon_sym_match] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4820), + [anon_sym_orelse] = ACTIONS(4822), + [anon_sym_or] = ACTIONS(4822), + [anon_sym_and] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_xor] = ACTIONS(4822), + [anon_sym_LT_LT] = ACTIONS(4822), + [anon_sym_GT_GT] = ACTIONS(4822), + [anon_sym_LT_LT_PIPE] = ACTIONS(4822), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_catch] = ACTIONS(4822), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_unreachable] = ACTIONS(4822), + [anon_sym_undefined] = ACTIONS(4822), + [sym_sink] = ACTIONS(4822), + [sym_integer] = ACTIONS(4822), + [sym_float] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [sym_multiline_string] = ACTIONS(4820), + [sym_character] = ACTIONS(4820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4820), + }, + [STATE(2987)] = { + [sym_identifier] = ACTIONS(4800), + [anon_sym_func] = ACTIONS(4800), + [anon_sym_c_func] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4800), + [anon_sym_EQ] = ACTIONS(4800), + [anon_sym_struct] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4800), + [anon_sym_DOLLAR] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4800), + [anon_sym_struct_type_BANG] = ACTIONS(4798), + [anon_sym_QMARK] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_void] = ACTIONS(4800), + [anon_sym_noreturn] = ACTIONS(4800), + [anon_sym_type] = ACTIONS(4800), + [anon_sym_anyopaque] = ACTIONS(4800), + [anon_sym_bool] = ACTIONS(4800), + [anon_sym_int] = ACTIONS(4800), + [anon_sym_uint] = ACTIONS(4800), + [anon_sym_float] = ACTIONS(4800), + [anon_sym_range] = ACTIONS(4800), + [anon_sym_i8] = ACTIONS(4800), + [anon_sym_i16] = ACTIONS(4800), + [anon_sym_i32] = ACTIONS(4800), + [anon_sym_i64] = ACTIONS(4800), + [anon_sym_u8] = ACTIONS(4800), + [anon_sym_u16] = ACTIONS(4800), + [anon_sym_u32] = ACTIONS(4800), + [anon_sym_u64] = ACTIONS(4800), + [anon_sym_isize] = ACTIONS(4800), + [anon_sym_usize] = ACTIONS(4800), + [anon_sym_f32] = ACTIONS(4800), + [anon_sym_f64] = ACTIONS(4800), + [anon_sym_c_char] = ACTIONS(4800), + [anon_sym_c_schar] = ACTIONS(4800), + [anon_sym_c_uchar] = ACTIONS(4800), + [anon_sym_c_short] = ACTIONS(4800), + [anon_sym_c_ushort] = ACTIONS(4800), + [anon_sym_c_int] = ACTIONS(4800), + [anon_sym_c_uint] = ACTIONS(4800), + [anon_sym_c_long] = ACTIONS(4800), + [anon_sym_c_ulong] = ACTIONS(4800), + [anon_sym_c_longlong] = ACTIONS(4800), + [anon_sym_c_ulonglong] = ACTIONS(4800), + [anon_sym_c_float] = ACTIONS(4800), + [anon_sym_c_double] = ACTIONS(4800), + [anon_sym_c_longdouble] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_AMP_EQ] = ACTIONS(4798), + [anon_sym_PIPE_EQ] = ACTIONS(4798), + [anon_sym_xor_EQ] = ACTIONS(4798), + [anon_sym_LT_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_GT_EQ] = ACTIONS(4798), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4800), + [anon_sym_yield] = ACTIONS(4800), + [anon_sym_break] = ACTIONS(4800), + [anon_sym_continue] = ACTIONS(4800), + [anon_sym_defer] = ACTIONS(4800), + [anon_sym_errdefer] = ACTIONS(4800), + [anon_sym_if] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4800), + [anon_sym_while] = ACTIONS(4800), + [anon_sym_expand] = ACTIONS(4800), + [anon_sym_for] = ACTIONS(4800), + [anon_sym_match] = ACTIONS(4800), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4798), + [anon_sym_orelse] = ACTIONS(4800), + [anon_sym_or] = ACTIONS(4800), + [anon_sym_and] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4800), + [anon_sym_xor] = ACTIONS(4800), + [anon_sym_LT_LT] = ACTIONS(4800), + [anon_sym_GT_GT] = ACTIONS(4800), + [anon_sym_LT_LT_PIPE] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4800), + [anon_sym_SLASH] = ACTIONS(4800), + [anon_sym_catch] = ACTIONS(4800), + [anon_sym_TILDE] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4800), + [anon_sym_CARET] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4800), + [anon_sym_false] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4800), + [anon_sym_unreachable] = ACTIONS(4800), + [anon_sym_undefined] = ACTIONS(4800), + [sym_sink] = ACTIONS(4800), + [sym_integer] = ACTIONS(4800), + [sym_float] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [sym_multiline_string] = ACTIONS(4798), + [sym_character] = ACTIONS(4798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4798), + }, + [STATE(2988)] = { + [sym_identifier] = ACTIONS(4826), + [anon_sym_func] = ACTIONS(4826), + [anon_sym_c_func] = ACTIONS(4826), + [anon_sym_BANG] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_struct] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4826), + [anon_sym_struct_type_BANG] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_void] = ACTIONS(4826), + [anon_sym_noreturn] = ACTIONS(4826), + [anon_sym_type] = ACTIONS(4826), + [anon_sym_anyopaque] = ACTIONS(4826), + [anon_sym_bool] = ACTIONS(4826), + [anon_sym_int] = ACTIONS(4826), + [anon_sym_uint] = ACTIONS(4826), + [anon_sym_float] = ACTIONS(4826), + [anon_sym_range] = ACTIONS(4826), + [anon_sym_i8] = ACTIONS(4826), + [anon_sym_i16] = ACTIONS(4826), + [anon_sym_i32] = ACTIONS(4826), + [anon_sym_i64] = ACTIONS(4826), + [anon_sym_u8] = ACTIONS(4826), + [anon_sym_u16] = ACTIONS(4826), + [anon_sym_u32] = ACTIONS(4826), + [anon_sym_u64] = ACTIONS(4826), + [anon_sym_isize] = ACTIONS(4826), + [anon_sym_usize] = ACTIONS(4826), + [anon_sym_f32] = ACTIONS(4826), + [anon_sym_f64] = ACTIONS(4826), + [anon_sym_c_char] = ACTIONS(4826), + [anon_sym_c_schar] = ACTIONS(4826), + [anon_sym_c_uchar] = ACTIONS(4826), + [anon_sym_c_short] = ACTIONS(4826), + [anon_sym_c_ushort] = ACTIONS(4826), + [anon_sym_c_int] = ACTIONS(4826), + [anon_sym_c_uint] = ACTIONS(4826), + [anon_sym_c_long] = ACTIONS(4826), + [anon_sym_c_ulong] = ACTIONS(4826), + [anon_sym_c_longlong] = ACTIONS(4826), + [anon_sym_c_ulonglong] = ACTIONS(4826), + [anon_sym_c_float] = ACTIONS(4826), + [anon_sym_c_double] = ACTIONS(4826), + [anon_sym_c_longdouble] = ACTIONS(4826), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_AMP_EQ] = ACTIONS(4824), + [anon_sym_PIPE_EQ] = ACTIONS(4824), + [anon_sym_xor_EQ] = ACTIONS(4824), + [anon_sym_LT_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_GT_EQ] = ACTIONS(4824), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4824), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_yield] = ACTIONS(4826), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_defer] = ACTIONS(4826), + [anon_sym_errdefer] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_while] = ACTIONS(4826), + [anon_sym_expand] = ACTIONS(4826), + [anon_sym_for] = ACTIONS(4826), + [anon_sym_match] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4824), + [anon_sym_orelse] = ACTIONS(4826), + [anon_sym_or] = ACTIONS(4826), + [anon_sym_and] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_xor] = ACTIONS(4826), + [anon_sym_LT_LT] = ACTIONS(4826), + [anon_sym_GT_GT] = ACTIONS(4826), + [anon_sym_LT_LT_PIPE] = ACTIONS(4826), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_catch] = ACTIONS(4826), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_unreachable] = ACTIONS(4826), + [anon_sym_undefined] = ACTIONS(4826), + [sym_sink] = ACTIONS(4826), + [sym_integer] = ACTIONS(4826), + [sym_float] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [sym_multiline_string] = ACTIONS(4824), + [sym_character] = ACTIONS(4824), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4824), + }, + [STATE(2989)] = { + [sym_identifier] = ACTIONS(4830), + [anon_sym_func] = ACTIONS(4830), + [anon_sym_c_func] = ACTIONS(4830), + [anon_sym_BANG] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_struct] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4830), + [anon_sym_struct_type_BANG] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_void] = ACTIONS(4830), + [anon_sym_noreturn] = ACTIONS(4830), + [anon_sym_type] = ACTIONS(4830), + [anon_sym_anyopaque] = ACTIONS(4830), + [anon_sym_bool] = ACTIONS(4830), + [anon_sym_int] = ACTIONS(4830), + [anon_sym_uint] = ACTIONS(4830), + [anon_sym_float] = ACTIONS(4830), + [anon_sym_range] = ACTIONS(4830), + [anon_sym_i8] = ACTIONS(4830), + [anon_sym_i16] = ACTIONS(4830), + [anon_sym_i32] = ACTIONS(4830), + [anon_sym_i64] = ACTIONS(4830), + [anon_sym_u8] = ACTIONS(4830), + [anon_sym_u16] = ACTIONS(4830), + [anon_sym_u32] = ACTIONS(4830), + [anon_sym_u64] = ACTIONS(4830), + [anon_sym_isize] = ACTIONS(4830), + [anon_sym_usize] = ACTIONS(4830), + [anon_sym_f32] = ACTIONS(4830), + [anon_sym_f64] = ACTIONS(4830), + [anon_sym_c_char] = ACTIONS(4830), + [anon_sym_c_schar] = ACTIONS(4830), + [anon_sym_c_uchar] = ACTIONS(4830), + [anon_sym_c_short] = ACTIONS(4830), + [anon_sym_c_ushort] = ACTIONS(4830), + [anon_sym_c_int] = ACTIONS(4830), + [anon_sym_c_uint] = ACTIONS(4830), + [anon_sym_c_long] = ACTIONS(4830), + [anon_sym_c_ulong] = ACTIONS(4830), + [anon_sym_c_longlong] = ACTIONS(4830), + [anon_sym_c_ulonglong] = ACTIONS(4830), + [anon_sym_c_float] = ACTIONS(4830), + [anon_sym_c_double] = ACTIONS(4830), + [anon_sym_c_longdouble] = ACTIONS(4830), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_AMP_EQ] = ACTIONS(4828), + [anon_sym_PIPE_EQ] = ACTIONS(4828), + [anon_sym_xor_EQ] = ACTIONS(4828), + [anon_sym_LT_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_GT_EQ] = ACTIONS(4828), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4828), + [anon_sym_return] = ACTIONS(4830), + [anon_sym_yield] = ACTIONS(4830), + [anon_sym_break] = ACTIONS(4830), + [anon_sym_continue] = ACTIONS(4830), + [anon_sym_defer] = ACTIONS(4830), + [anon_sym_errdefer] = ACTIONS(4830), + [anon_sym_if] = ACTIONS(4830), + [anon_sym_else] = ACTIONS(4830), + [anon_sym_while] = ACTIONS(4830), + [anon_sym_expand] = ACTIONS(4830), + [anon_sym_for] = ACTIONS(4830), + [anon_sym_match] = ACTIONS(4830), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_orelse] = ACTIONS(4830), + [anon_sym_or] = ACTIONS(4830), + [anon_sym_and] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_xor] = ACTIONS(4830), + [anon_sym_LT_LT] = ACTIONS(4830), + [anon_sym_GT_GT] = ACTIONS(4830), + [anon_sym_LT_LT_PIPE] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4830), + [anon_sym_catch] = ACTIONS(4830), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_try] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4830), + [anon_sym_false] = ACTIONS(4830), + [anon_sym_null] = ACTIONS(4830), + [anon_sym_unreachable] = ACTIONS(4830), + [anon_sym_undefined] = ACTIONS(4830), + [sym_sink] = ACTIONS(4830), + [sym_integer] = ACTIONS(4830), + [sym_float] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [sym_multiline_string] = ACTIONS(4828), + [sym_character] = ACTIONS(4828), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4828), + }, + [STATE(2990)] = { + [sym_identifier] = ACTIONS(4834), + [anon_sym_func] = ACTIONS(4834), + [anon_sym_c_func] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_RBRACE] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4834), + [anon_sym_struct_type_BANG] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4832), + [anon_sym_void] = ACTIONS(4834), + [anon_sym_noreturn] = ACTIONS(4834), + [anon_sym_type] = ACTIONS(4834), + [anon_sym_anyopaque] = ACTIONS(4834), + [anon_sym_bool] = ACTIONS(4834), + [anon_sym_int] = ACTIONS(4834), + [anon_sym_uint] = ACTIONS(4834), + [anon_sym_float] = ACTIONS(4834), + [anon_sym_range] = ACTIONS(4834), + [anon_sym_i8] = ACTIONS(4834), + [anon_sym_i16] = ACTIONS(4834), + [anon_sym_i32] = ACTIONS(4834), + [anon_sym_i64] = ACTIONS(4834), + [anon_sym_u8] = ACTIONS(4834), + [anon_sym_u16] = ACTIONS(4834), + [anon_sym_u32] = ACTIONS(4834), + [anon_sym_u64] = ACTIONS(4834), + [anon_sym_isize] = ACTIONS(4834), + [anon_sym_usize] = ACTIONS(4834), + [anon_sym_f32] = ACTIONS(4834), + [anon_sym_f64] = ACTIONS(4834), + [anon_sym_c_char] = ACTIONS(4834), + [anon_sym_c_schar] = ACTIONS(4834), + [anon_sym_c_uchar] = ACTIONS(4834), + [anon_sym_c_short] = ACTIONS(4834), + [anon_sym_c_ushort] = ACTIONS(4834), + [anon_sym_c_int] = ACTIONS(4834), + [anon_sym_c_uint] = ACTIONS(4834), + [anon_sym_c_long] = ACTIONS(4834), + [anon_sym_c_ulong] = ACTIONS(4834), + [anon_sym_c_longlong] = ACTIONS(4834), + [anon_sym_c_ulonglong] = ACTIONS(4834), + [anon_sym_c_float] = ACTIONS(4834), + [anon_sym_c_double] = ACTIONS(4834), + [anon_sym_c_longdouble] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4832), + [anon_sym_DASH_EQ] = ACTIONS(4832), + [anon_sym_STAR_EQ] = ACTIONS(4832), + [anon_sym_SLASH_EQ] = ACTIONS(4832), + [anon_sym_AMP_EQ] = ACTIONS(4832), + [anon_sym_PIPE_EQ] = ACTIONS(4832), + [anon_sym_xor_EQ] = ACTIONS(4832), + [anon_sym_LT_LT_EQ] = ACTIONS(4832), + [anon_sym_GT_GT_EQ] = ACTIONS(4832), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4832), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_yield] = ACTIONS(4834), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_defer] = ACTIONS(4834), + [anon_sym_errdefer] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_while] = ACTIONS(4834), + [anon_sym_expand] = ACTIONS(4834), + [anon_sym_for] = ACTIONS(4834), + [anon_sym_match] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4832), + [anon_sym_orelse] = ACTIONS(4834), + [anon_sym_or] = ACTIONS(4834), + [anon_sym_and] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_xor] = ACTIONS(4834), + [anon_sym_LT_LT] = ACTIONS(4834), + [anon_sym_GT_GT] = ACTIONS(4834), + [anon_sym_LT_LT_PIPE] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_catch] = ACTIONS(4834), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_unreachable] = ACTIONS(4834), + [anon_sym_undefined] = ACTIONS(4834), + [sym_sink] = ACTIONS(4834), + [sym_integer] = ACTIONS(4834), + [sym_float] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [sym_multiline_string] = ACTIONS(4832), + [sym_character] = ACTIONS(4832), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4832), + }, + [STATE(2991)] = { + [sym_identifier] = ACTIONS(4838), + [anon_sym_func] = ACTIONS(4838), + [anon_sym_c_func] = ACTIONS(4838), + [anon_sym_BANG] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_struct] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4838), + [anon_sym_struct_type_BANG] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_void] = ACTIONS(4838), + [anon_sym_noreturn] = ACTIONS(4838), + [anon_sym_type] = ACTIONS(4838), + [anon_sym_anyopaque] = ACTIONS(4838), + [anon_sym_bool] = ACTIONS(4838), + [anon_sym_int] = ACTIONS(4838), + [anon_sym_uint] = ACTIONS(4838), + [anon_sym_float] = ACTIONS(4838), + [anon_sym_range] = ACTIONS(4838), + [anon_sym_i8] = ACTIONS(4838), + [anon_sym_i16] = ACTIONS(4838), + [anon_sym_i32] = ACTIONS(4838), + [anon_sym_i64] = ACTIONS(4838), + [anon_sym_u8] = ACTIONS(4838), + [anon_sym_u16] = ACTIONS(4838), + [anon_sym_u32] = ACTIONS(4838), + [anon_sym_u64] = ACTIONS(4838), + [anon_sym_isize] = ACTIONS(4838), + [anon_sym_usize] = ACTIONS(4838), + [anon_sym_f32] = ACTIONS(4838), + [anon_sym_f64] = ACTIONS(4838), + [anon_sym_c_char] = ACTIONS(4838), + [anon_sym_c_schar] = ACTIONS(4838), + [anon_sym_c_uchar] = ACTIONS(4838), + [anon_sym_c_short] = ACTIONS(4838), + [anon_sym_c_ushort] = ACTIONS(4838), + [anon_sym_c_int] = ACTIONS(4838), + [anon_sym_c_uint] = ACTIONS(4838), + [anon_sym_c_long] = ACTIONS(4838), + [anon_sym_c_ulong] = ACTIONS(4838), + [anon_sym_c_longlong] = ACTIONS(4838), + [anon_sym_c_ulonglong] = ACTIONS(4838), + [anon_sym_c_float] = ACTIONS(4838), + [anon_sym_c_double] = ACTIONS(4838), + [anon_sym_c_longdouble] = ACTIONS(4838), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_AMP_EQ] = ACTIONS(4836), + [anon_sym_PIPE_EQ] = ACTIONS(4836), + [anon_sym_xor_EQ] = ACTIONS(4836), + [anon_sym_LT_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_GT_EQ] = ACTIONS(4836), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4836), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_yield] = ACTIONS(4838), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_defer] = ACTIONS(4838), + [anon_sym_errdefer] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_expand] = ACTIONS(4838), + [anon_sym_for] = ACTIONS(4838), + [anon_sym_match] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4836), + [anon_sym_orelse] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_xor] = ACTIONS(4838), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4838), + [anon_sym_LT_LT_PIPE] = ACTIONS(4838), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_catch] = ACTIONS(4838), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_unreachable] = ACTIONS(4838), + [anon_sym_undefined] = ACTIONS(4838), + [sym_sink] = ACTIONS(4838), + [sym_integer] = ACTIONS(4838), + [sym_float] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [sym_multiline_string] = ACTIONS(4836), + [sym_character] = ACTIONS(4836), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4836), + }, + [STATE(2992)] = { + [sym_argument_list] = STATE(2530), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_test] = ACTIONS(2666), + [anon_sym_hide] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(2993)] = { + [sym_identifier] = ACTIONS(6000), + [anon_sym_func] = ACTIONS(6000), + [anon_sym_c_func] = ACTIONS(6000), + [anon_sym_BANG] = ACTIONS(6476), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_struct] = ACTIONS(6000), + [anon_sym_LPAREN] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(5998), + [anon_sym_COMMA] = ACTIONS(5998), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_DASH] = ACTIONS(6000), + [anon_sym_DOLLAR] = ACTIONS(5998), + [anon_sym_PIPE] = ACTIONS(6000), + [anon_sym_struct_type_BANG] = ACTIONS(5998), + [anon_sym_QMARK] = ACTIONS(5998), + [anon_sym_AT] = ACTIONS(5998), + [anon_sym_STAR] = ACTIONS(6000), + [anon_sym_LBRACK] = ACTIONS(5998), + [anon_sym_void] = ACTIONS(6000), + [anon_sym_noreturn] = ACTIONS(6000), + [anon_sym_type] = ACTIONS(6000), + [anon_sym_anyopaque] = ACTIONS(6000), + [anon_sym_bool] = ACTIONS(6000), + [anon_sym_int] = ACTIONS(6000), + [anon_sym_uint] = ACTIONS(6000), + [anon_sym_float] = ACTIONS(6000), + [anon_sym_range] = ACTIONS(6000), + [anon_sym_i8] = ACTIONS(6000), + [anon_sym_i16] = ACTIONS(6000), + [anon_sym_i32] = ACTIONS(6000), + [anon_sym_i64] = ACTIONS(6000), + [anon_sym_u8] = ACTIONS(6000), + [anon_sym_u16] = ACTIONS(6000), + [anon_sym_u32] = ACTIONS(6000), + [anon_sym_u64] = ACTIONS(6000), + [anon_sym_isize] = ACTIONS(6000), + [anon_sym_usize] = ACTIONS(6000), + [anon_sym_f32] = ACTIONS(6000), + [anon_sym_f64] = ACTIONS(6000), + [anon_sym_c_char] = ACTIONS(6000), + [anon_sym_c_schar] = ACTIONS(6000), + [anon_sym_c_uchar] = ACTIONS(6000), + [anon_sym_c_short] = ACTIONS(6000), + [anon_sym_c_ushort] = ACTIONS(6000), + [anon_sym_c_int] = ACTIONS(6000), + [anon_sym_c_uint] = ACTIONS(6000), + [anon_sym_c_long] = ACTIONS(6000), + [anon_sym_c_ulong] = ACTIONS(6000), + [anon_sym_c_longlong] = ACTIONS(6000), + [anon_sym_c_ulonglong] = ACTIONS(6000), + [anon_sym_c_float] = ACTIONS(6000), + [anon_sym_c_double] = ACTIONS(6000), + [anon_sym_c_longdouble] = ACTIONS(6000), + [anon_sym_PLUS_EQ] = ACTIONS(5998), + [anon_sym_DASH_EQ] = ACTIONS(5998), + [anon_sym_STAR_EQ] = ACTIONS(5998), + [anon_sym_SLASH_EQ] = ACTIONS(5998), + [anon_sym_AMP_EQ] = ACTIONS(5998), + [anon_sym_PIPE_EQ] = ACTIONS(5998), + [anon_sym_xor_EQ] = ACTIONS(5998), + [anon_sym_LT_LT_EQ] = ACTIONS(5998), + [anon_sym_GT_GT_EQ] = ACTIONS(5998), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5998), + [anon_sym_return] = ACTIONS(6000), + [anon_sym_yield] = ACTIONS(6000), + [anon_sym_break] = ACTIONS(6000), + [anon_sym_continue] = ACTIONS(6000), + [anon_sym_defer] = ACTIONS(6000), + [anon_sym_errdefer] = ACTIONS(6000), + [anon_sym_if] = ACTIONS(6000), + [anon_sym_else] = ACTIONS(6000), + [anon_sym_while] = ACTIONS(6000), + [anon_sym_expand] = ACTIONS(6000), + [anon_sym_for] = ACTIONS(6000), + [anon_sym_match] = ACTIONS(6000), + [anon_sym_DOT_DOT] = ACTIONS(6000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5998), + [anon_sym_orelse] = ACTIONS(6000), + [anon_sym_or] = ACTIONS(6000), + [anon_sym_and] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5998), + [anon_sym_BANG_EQ] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(6000), + [anon_sym_LT_EQ] = ACTIONS(5998), + [anon_sym_GT] = ACTIONS(6000), + [anon_sym_GT_EQ] = ACTIONS(5998), + [anon_sym_AMP] = ACTIONS(6000), + [anon_sym_xor] = ACTIONS(6000), + [anon_sym_LT_LT] = ACTIONS(6000), + [anon_sym_GT_GT] = ACTIONS(6000), + [anon_sym_LT_LT_PIPE] = ACTIONS(6000), + [anon_sym_PLUS] = ACTIONS(6000), + [anon_sym_SLASH] = ACTIONS(6000), + [anon_sym_catch] = ACTIONS(6000), + [anon_sym_TILDE] = ACTIONS(5998), + [anon_sym_try] = ACTIONS(6000), + [anon_sym_DOT] = ACTIONS(6000), + [anon_sym_CARET] = ACTIONS(5998), + [anon_sym_true] = ACTIONS(6000), + [anon_sym_false] = ACTIONS(6000), + [anon_sym_null] = ACTIONS(6000), + [anon_sym_unreachable] = ACTIONS(6000), + [anon_sym_undefined] = ACTIONS(6000), + [sym_sink] = ACTIONS(6000), + [sym_integer] = ACTIONS(6000), + [sym_float] = ACTIONS(5998), + [anon_sym_DQUOTE] = ACTIONS(5998), + [sym_multiline_string] = ACTIONS(5998), + [sym_character] = ACTIONS(5998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5998), + }, + [STATE(2994)] = { + [sym_identifier] = ACTIONS(6006), + [anon_sym_func] = ACTIONS(6006), + [anon_sym_c_func] = ACTIONS(6006), + [anon_sym_BANG] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_struct] = ACTIONS(6006), + [anon_sym_LPAREN] = ACTIONS(6004), + [anon_sym_LBRACE] = ACTIONS(6004), + [anon_sym_COMMA] = ACTIONS(6004), + [anon_sym_RBRACE] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(6006), + [anon_sym_DOLLAR] = ACTIONS(6004), + [anon_sym_PIPE] = ACTIONS(6006), + [anon_sym_struct_type_BANG] = ACTIONS(6004), + [anon_sym_QMARK] = ACTIONS(6004), + [anon_sym_AT] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(6004), + [anon_sym_void] = ACTIONS(6006), + [anon_sym_noreturn] = ACTIONS(6006), + [anon_sym_type] = ACTIONS(6006), + [anon_sym_anyopaque] = ACTIONS(6006), + [anon_sym_bool] = ACTIONS(6006), + [anon_sym_int] = ACTIONS(6006), + [anon_sym_uint] = ACTIONS(6006), + [anon_sym_float] = ACTIONS(6006), + [anon_sym_range] = ACTIONS(6006), + [anon_sym_i8] = ACTIONS(6006), + [anon_sym_i16] = ACTIONS(6006), + [anon_sym_i32] = ACTIONS(6006), + [anon_sym_i64] = ACTIONS(6006), + [anon_sym_u8] = ACTIONS(6006), + [anon_sym_u16] = ACTIONS(6006), + [anon_sym_u32] = ACTIONS(6006), + [anon_sym_u64] = ACTIONS(6006), + [anon_sym_isize] = ACTIONS(6006), + [anon_sym_usize] = ACTIONS(6006), + [anon_sym_f32] = ACTIONS(6006), + [anon_sym_f64] = ACTIONS(6006), + [anon_sym_c_char] = ACTIONS(6006), + [anon_sym_c_schar] = ACTIONS(6006), + [anon_sym_c_uchar] = ACTIONS(6006), + [anon_sym_c_short] = ACTIONS(6006), + [anon_sym_c_ushort] = ACTIONS(6006), + [anon_sym_c_int] = ACTIONS(6006), + [anon_sym_c_uint] = ACTIONS(6006), + [anon_sym_c_long] = ACTIONS(6006), + [anon_sym_c_ulong] = ACTIONS(6006), + [anon_sym_c_longlong] = ACTIONS(6006), + [anon_sym_c_ulonglong] = ACTIONS(6006), + [anon_sym_c_float] = ACTIONS(6006), + [anon_sym_c_double] = ACTIONS(6006), + [anon_sym_c_longdouble] = ACTIONS(6006), + [anon_sym_PLUS_EQ] = ACTIONS(6004), + [anon_sym_DASH_EQ] = ACTIONS(6004), + [anon_sym_STAR_EQ] = ACTIONS(6004), + [anon_sym_SLASH_EQ] = ACTIONS(6004), + [anon_sym_AMP_EQ] = ACTIONS(6004), + [anon_sym_PIPE_EQ] = ACTIONS(6004), + [anon_sym_xor_EQ] = ACTIONS(6004), + [anon_sym_LT_LT_EQ] = ACTIONS(6004), + [anon_sym_GT_GT_EQ] = ACTIONS(6004), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6004), + [anon_sym_return] = ACTIONS(6006), + [anon_sym_yield] = ACTIONS(6006), + [anon_sym_break] = ACTIONS(6006), + [anon_sym_continue] = ACTIONS(6006), + [anon_sym_defer] = ACTIONS(6006), + [anon_sym_errdefer] = ACTIONS(6006), + [anon_sym_if] = ACTIONS(6006), + [anon_sym_else] = ACTIONS(6006), + [anon_sym_while] = ACTIONS(6006), + [anon_sym_expand] = ACTIONS(6006), + [anon_sym_for] = ACTIONS(6006), + [anon_sym_match] = ACTIONS(6006), + [anon_sym_DOT_DOT] = ACTIONS(6006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6004), + [anon_sym_orelse] = ACTIONS(6006), + [anon_sym_or] = ACTIONS(6006), + [anon_sym_and] = ACTIONS(6006), + [anon_sym_EQ_EQ] = ACTIONS(6004), + [anon_sym_BANG_EQ] = ACTIONS(6004), + [anon_sym_LT] = ACTIONS(6006), + [anon_sym_LT_EQ] = ACTIONS(6004), + [anon_sym_GT] = ACTIONS(6006), + [anon_sym_GT_EQ] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6006), + [anon_sym_xor] = ACTIONS(6006), + [anon_sym_LT_LT] = ACTIONS(6006), + [anon_sym_GT_GT] = ACTIONS(6006), + [anon_sym_LT_LT_PIPE] = ACTIONS(6006), + [anon_sym_PLUS] = ACTIONS(6006), + [anon_sym_SLASH] = ACTIONS(6006), + [anon_sym_catch] = ACTIONS(6006), + [anon_sym_TILDE] = ACTIONS(6004), + [anon_sym_try] = ACTIONS(6006), + [anon_sym_DOT] = ACTIONS(6006), + [anon_sym_CARET] = ACTIONS(6004), + [anon_sym_true] = ACTIONS(6006), + [anon_sym_false] = ACTIONS(6006), + [anon_sym_null] = ACTIONS(6006), + [anon_sym_unreachable] = ACTIONS(6006), + [anon_sym_undefined] = ACTIONS(6006), + [sym_sink] = ACTIONS(6006), + [sym_integer] = ACTIONS(6006), + [sym_float] = ACTIONS(6004), + [anon_sym_DQUOTE] = ACTIONS(6004), + [sym_multiline_string] = ACTIONS(6004), + [sym_character] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6004), + }, + [STATE(2995)] = { + [sym_identifier] = ACTIONS(4734), + [anon_sym_func] = ACTIONS(4734), + [anon_sym_c_func] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4738), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_struct_type_BANG] = ACTIONS(4738), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_void] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_type] = ACTIONS(4734), + [anon_sym_anyopaque] = ACTIONS(4734), + [anon_sym_bool] = ACTIONS(4734), + [anon_sym_int] = ACTIONS(4734), + [anon_sym_uint] = ACTIONS(4734), + [anon_sym_float] = ACTIONS(4734), + [anon_sym_range] = ACTIONS(4734), + [anon_sym_i8] = ACTIONS(4734), + [anon_sym_i16] = ACTIONS(4734), + [anon_sym_i32] = ACTIONS(4734), + [anon_sym_i64] = ACTIONS(4734), + [anon_sym_u8] = ACTIONS(4734), + [anon_sym_u16] = ACTIONS(4734), + [anon_sym_u32] = ACTIONS(4734), + [anon_sym_u64] = ACTIONS(4734), + [anon_sym_isize] = ACTIONS(4734), + [anon_sym_usize] = ACTIONS(4734), + [anon_sym_f32] = ACTIONS(4734), + [anon_sym_f64] = ACTIONS(4734), + [anon_sym_c_char] = ACTIONS(4734), + [anon_sym_c_schar] = ACTIONS(4734), + [anon_sym_c_uchar] = ACTIONS(4734), + [anon_sym_c_short] = ACTIONS(4734), + [anon_sym_c_ushort] = ACTIONS(4734), + [anon_sym_c_int] = ACTIONS(4734), + [anon_sym_c_uint] = ACTIONS(4734), + [anon_sym_c_long] = ACTIONS(4734), + [anon_sym_c_ulong] = ACTIONS(4734), + [anon_sym_c_longlong] = ACTIONS(4734), + [anon_sym_c_ulonglong] = ACTIONS(4734), + [anon_sym_c_float] = ACTIONS(4734), + [anon_sym_c_double] = ACTIONS(4734), + [anon_sym_c_longdouble] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_AMP_EQ] = ACTIONS(4738), + [anon_sym_PIPE_EQ] = ACTIONS(4738), + [anon_sym_xor_EQ] = ACTIONS(4738), + [anon_sym_LT_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_GT_EQ] = ACTIONS(4738), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4738), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_defer] = ACTIONS(4734), + [anon_sym_errdefer] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_expand] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4738), + [anon_sym_orelse] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4734), + [anon_sym_xor] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_LT_LT_PIPE] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_catch] = ACTIONS(4734), + [anon_sym_TILDE] = ACTIONS(4738), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_unreachable] = ACTIONS(4734), + [anon_sym_undefined] = ACTIONS(4734), + [sym_sink] = ACTIONS(4734), + [sym_integer] = ACTIONS(4734), + [sym_float] = ACTIONS(4738), + [anon_sym_DQUOTE] = ACTIONS(4738), + [sym_multiline_string] = ACTIONS(4738), + [sym_character] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4738), + }, + [STATE(2996)] = { + [sym_identifier] = ACTIONS(5828), + [anon_sym_func] = ACTIONS(5828), + [anon_sym_c_func] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(5828), + [anon_sym_struct] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_LBRACE] = ACTIONS(5826), + [anon_sym_COMMA] = ACTIONS(5826), + [anon_sym_RBRACE] = ACTIONS(5826), + [anon_sym_DASH] = ACTIONS(5828), + [anon_sym_DOLLAR] = ACTIONS(5826), + [anon_sym_PIPE] = ACTIONS(5828), + [anon_sym_struct_type_BANG] = ACTIONS(5826), + [anon_sym_QMARK] = ACTIONS(5826), + [anon_sym_AT] = ACTIONS(5826), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(5826), + [anon_sym_void] = ACTIONS(5828), + [anon_sym_noreturn] = ACTIONS(5828), + [anon_sym_type] = ACTIONS(5828), + [anon_sym_anyopaque] = ACTIONS(5828), + [anon_sym_bool] = ACTIONS(5828), + [anon_sym_int] = ACTIONS(5828), + [anon_sym_uint] = ACTIONS(5828), + [anon_sym_float] = ACTIONS(5828), + [anon_sym_range] = ACTIONS(5828), + [anon_sym_i8] = ACTIONS(5828), + [anon_sym_i16] = ACTIONS(5828), + [anon_sym_i32] = ACTIONS(5828), + [anon_sym_i64] = ACTIONS(5828), + [anon_sym_u8] = ACTIONS(5828), + [anon_sym_u16] = ACTIONS(5828), + [anon_sym_u32] = ACTIONS(5828), + [anon_sym_u64] = ACTIONS(5828), + [anon_sym_isize] = ACTIONS(5828), + [anon_sym_usize] = ACTIONS(5828), + [anon_sym_f32] = ACTIONS(5828), + [anon_sym_f64] = ACTIONS(5828), + [anon_sym_c_char] = ACTIONS(5828), + [anon_sym_c_schar] = ACTIONS(5828), + [anon_sym_c_uchar] = ACTIONS(5828), + [anon_sym_c_short] = ACTIONS(5828), + [anon_sym_c_ushort] = ACTIONS(5828), + [anon_sym_c_int] = ACTIONS(5828), + [anon_sym_c_uint] = ACTIONS(5828), + [anon_sym_c_long] = ACTIONS(5828), + [anon_sym_c_ulong] = ACTIONS(5828), + [anon_sym_c_longlong] = ACTIONS(5828), + [anon_sym_c_ulonglong] = ACTIONS(5828), + [anon_sym_c_float] = ACTIONS(5828), + [anon_sym_c_double] = ACTIONS(5828), + [anon_sym_c_longdouble] = ACTIONS(5828), + [anon_sym_PLUS_EQ] = ACTIONS(5826), + [anon_sym_DASH_EQ] = ACTIONS(5826), + [anon_sym_STAR_EQ] = ACTIONS(5826), + [anon_sym_SLASH_EQ] = ACTIONS(5826), + [anon_sym_AMP_EQ] = ACTIONS(5826), + [anon_sym_PIPE_EQ] = ACTIONS(5826), + [anon_sym_xor_EQ] = ACTIONS(5826), + [anon_sym_LT_LT_EQ] = ACTIONS(5826), + [anon_sym_GT_GT_EQ] = ACTIONS(5826), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5826), + [anon_sym_return] = ACTIONS(5828), + [anon_sym_yield] = ACTIONS(5828), + [anon_sym_break] = ACTIONS(5828), + [anon_sym_continue] = ACTIONS(5828), + [anon_sym_defer] = ACTIONS(5828), + [anon_sym_errdefer] = ACTIONS(5828), + [anon_sym_if] = ACTIONS(5828), + [anon_sym_else] = ACTIONS(5828), + [anon_sym_while] = ACTIONS(5828), + [anon_sym_expand] = ACTIONS(5828), + [anon_sym_for] = ACTIONS(5828), + [anon_sym_match] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5826), + [anon_sym_orelse] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_EQ_EQ] = ACTIONS(5826), + [anon_sym_BANG_EQ] = ACTIONS(5826), + [anon_sym_LT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5826), + [anon_sym_GT] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5828), + [anon_sym_xor] = ACTIONS(5828), + [anon_sym_LT_LT] = ACTIONS(5828), + [anon_sym_GT_GT] = ACTIONS(5828), + [anon_sym_LT_LT_PIPE] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5828), + [anon_sym_SLASH] = ACTIONS(5828), + [anon_sym_catch] = ACTIONS(5828), + [anon_sym_TILDE] = ACTIONS(5826), + [anon_sym_try] = ACTIONS(5828), + [anon_sym_DOT] = ACTIONS(5828), + [anon_sym_CARET] = ACTIONS(5826), + [anon_sym_true] = ACTIONS(5828), + [anon_sym_false] = ACTIONS(5828), + [anon_sym_null] = ACTIONS(5828), + [anon_sym_unreachable] = ACTIONS(5828), + [anon_sym_undefined] = ACTIONS(5828), + [sym_sink] = ACTIONS(5828), + [sym_integer] = ACTIONS(5828), + [sym_float] = ACTIONS(5826), + [anon_sym_DQUOTE] = ACTIONS(5826), + [sym_multiline_string] = ACTIONS(5826), + [sym_character] = ACTIONS(5826), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5826), + }, + [STATE(2997)] = { + [sym_identifier] = ACTIONS(5832), + [anon_sym_func] = ACTIONS(5832), + [anon_sym_c_func] = ACTIONS(5832), + [anon_sym_BANG] = ACTIONS(5832), + [anon_sym_EQ] = ACTIONS(5832), + [anon_sym_struct] = ACTIONS(5832), + [anon_sym_LPAREN] = ACTIONS(5830), + [anon_sym_LBRACE] = ACTIONS(5830), + [anon_sym_COMMA] = ACTIONS(5830), + [anon_sym_RBRACE] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5832), + [anon_sym_DOLLAR] = ACTIONS(5830), + [anon_sym_PIPE] = ACTIONS(5832), + [anon_sym_struct_type_BANG] = ACTIONS(5830), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_AT] = ACTIONS(5830), + [anon_sym_STAR] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(5830), + [anon_sym_void] = ACTIONS(5832), + [anon_sym_noreturn] = ACTIONS(5832), + [anon_sym_type] = ACTIONS(5832), + [anon_sym_anyopaque] = ACTIONS(5832), + [anon_sym_bool] = ACTIONS(5832), + [anon_sym_int] = ACTIONS(5832), + [anon_sym_uint] = ACTIONS(5832), + [anon_sym_float] = ACTIONS(5832), + [anon_sym_range] = ACTIONS(5832), + [anon_sym_i8] = ACTIONS(5832), + [anon_sym_i16] = ACTIONS(5832), + [anon_sym_i32] = ACTIONS(5832), + [anon_sym_i64] = ACTIONS(5832), + [anon_sym_u8] = ACTIONS(5832), + [anon_sym_u16] = ACTIONS(5832), + [anon_sym_u32] = ACTIONS(5832), + [anon_sym_u64] = ACTIONS(5832), + [anon_sym_isize] = ACTIONS(5832), + [anon_sym_usize] = ACTIONS(5832), + [anon_sym_f32] = ACTIONS(5832), + [anon_sym_f64] = ACTIONS(5832), + [anon_sym_c_char] = ACTIONS(5832), + [anon_sym_c_schar] = ACTIONS(5832), + [anon_sym_c_uchar] = ACTIONS(5832), + [anon_sym_c_short] = ACTIONS(5832), + [anon_sym_c_ushort] = ACTIONS(5832), + [anon_sym_c_int] = ACTIONS(5832), + [anon_sym_c_uint] = ACTIONS(5832), + [anon_sym_c_long] = ACTIONS(5832), + [anon_sym_c_ulong] = ACTIONS(5832), + [anon_sym_c_longlong] = ACTIONS(5832), + [anon_sym_c_ulonglong] = ACTIONS(5832), + [anon_sym_c_float] = ACTIONS(5832), + [anon_sym_c_double] = ACTIONS(5832), + [anon_sym_c_longdouble] = ACTIONS(5832), + [anon_sym_PLUS_EQ] = ACTIONS(5830), + [anon_sym_DASH_EQ] = ACTIONS(5830), + [anon_sym_STAR_EQ] = ACTIONS(5830), + [anon_sym_SLASH_EQ] = ACTIONS(5830), + [anon_sym_AMP_EQ] = ACTIONS(5830), + [anon_sym_PIPE_EQ] = ACTIONS(5830), + [anon_sym_xor_EQ] = ACTIONS(5830), + [anon_sym_LT_LT_EQ] = ACTIONS(5830), + [anon_sym_GT_GT_EQ] = ACTIONS(5830), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5830), + [anon_sym_return] = ACTIONS(5832), + [anon_sym_yield] = ACTIONS(5832), + [anon_sym_break] = ACTIONS(5832), + [anon_sym_continue] = ACTIONS(5832), + [anon_sym_defer] = ACTIONS(5832), + [anon_sym_errdefer] = ACTIONS(5832), + [anon_sym_if] = ACTIONS(5832), + [anon_sym_else] = ACTIONS(5832), + [anon_sym_while] = ACTIONS(5832), + [anon_sym_expand] = ACTIONS(5832), + [anon_sym_for] = ACTIONS(5832), + [anon_sym_match] = ACTIONS(5832), + [anon_sym_DOT_DOT] = ACTIONS(5832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5830), + [anon_sym_orelse] = ACTIONS(5832), + [anon_sym_or] = ACTIONS(5832), + [anon_sym_and] = ACTIONS(5832), + [anon_sym_EQ_EQ] = ACTIONS(5830), + [anon_sym_BANG_EQ] = ACTIONS(5830), + [anon_sym_LT] = ACTIONS(5832), + [anon_sym_LT_EQ] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5832), + [anon_sym_xor] = ACTIONS(5832), + [anon_sym_LT_LT] = ACTIONS(5832), + [anon_sym_GT_GT] = ACTIONS(5832), + [anon_sym_LT_LT_PIPE] = ACTIONS(5832), + [anon_sym_PLUS] = ACTIONS(5832), + [anon_sym_SLASH] = ACTIONS(5832), + [anon_sym_catch] = ACTIONS(5832), + [anon_sym_TILDE] = ACTIONS(5830), + [anon_sym_try] = ACTIONS(5832), + [anon_sym_DOT] = ACTIONS(5832), + [anon_sym_CARET] = ACTIONS(5830), + [anon_sym_true] = ACTIONS(5832), + [anon_sym_false] = ACTIONS(5832), + [anon_sym_null] = ACTIONS(5832), + [anon_sym_unreachable] = ACTIONS(5832), + [anon_sym_undefined] = ACTIONS(5832), + [sym_sink] = ACTIONS(5832), + [sym_integer] = ACTIONS(5832), + [sym_float] = ACTIONS(5830), + [anon_sym_DQUOTE] = ACTIONS(5830), + [sym_multiline_string] = ACTIONS(5830), + [sym_character] = ACTIONS(5830), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5830), + }, + [STATE(2998)] = { + [sym_identifier] = ACTIONS(4546), + [anon_sym_func] = ACTIONS(4546), + [anon_sym_c_func] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_struct] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4544), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_COMMA] = ACTIONS(4544), + [anon_sym_RBRACE] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_struct_type_BANG] = ACTIONS(4544), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_AT] = ACTIONS(4544), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4544), + [anon_sym_void] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_type] = ACTIONS(4546), + [anon_sym_anyopaque] = ACTIONS(4546), + [anon_sym_bool] = ACTIONS(4546), + [anon_sym_int] = ACTIONS(4546), + [anon_sym_uint] = ACTIONS(4546), + [anon_sym_float] = ACTIONS(4546), + [anon_sym_range] = ACTIONS(4546), + [anon_sym_i8] = ACTIONS(4546), + [anon_sym_i16] = ACTIONS(4546), + [anon_sym_i32] = ACTIONS(4546), + [anon_sym_i64] = ACTIONS(4546), + [anon_sym_u8] = ACTIONS(4546), + [anon_sym_u16] = ACTIONS(4546), + [anon_sym_u32] = ACTIONS(4546), + [anon_sym_u64] = ACTIONS(4546), + [anon_sym_isize] = ACTIONS(4546), + [anon_sym_usize] = ACTIONS(4546), + [anon_sym_f32] = ACTIONS(4546), + [anon_sym_f64] = ACTIONS(4546), + [anon_sym_c_char] = ACTIONS(4546), + [anon_sym_c_schar] = ACTIONS(4546), + [anon_sym_c_uchar] = ACTIONS(4546), + [anon_sym_c_short] = ACTIONS(4546), + [anon_sym_c_ushort] = ACTIONS(4546), + [anon_sym_c_int] = ACTIONS(4546), + [anon_sym_c_uint] = ACTIONS(4546), + [anon_sym_c_long] = ACTIONS(4546), + [anon_sym_c_ulong] = ACTIONS(4546), + [anon_sym_c_longlong] = ACTIONS(4546), + [anon_sym_c_ulonglong] = ACTIONS(4546), + [anon_sym_c_float] = ACTIONS(4546), + [anon_sym_c_double] = ACTIONS(4546), + [anon_sym_c_longdouble] = ACTIONS(4546), + [anon_sym_PLUS_EQ] = ACTIONS(4544), + [anon_sym_DASH_EQ] = ACTIONS(4544), + [anon_sym_STAR_EQ] = ACTIONS(4544), + [anon_sym_SLASH_EQ] = ACTIONS(4544), + [anon_sym_AMP_EQ] = ACTIONS(4544), + [anon_sym_PIPE_EQ] = ACTIONS(4544), + [anon_sym_xor_EQ] = ACTIONS(4544), + [anon_sym_LT_LT_EQ] = ACTIONS(4544), + [anon_sym_GT_GT_EQ] = ACTIONS(4544), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4544), + [anon_sym_return] = ACTIONS(4546), + [anon_sym_yield] = ACTIONS(4546), + [anon_sym_break] = ACTIONS(4546), + [anon_sym_continue] = ACTIONS(4546), + [anon_sym_defer] = ACTIONS(4546), + [anon_sym_errdefer] = ACTIONS(4546), + [anon_sym_if] = ACTIONS(4546), + [anon_sym_else] = ACTIONS(4546), + [anon_sym_while] = ACTIONS(4546), + [anon_sym_expand] = ACTIONS(4546), + [anon_sym_for] = ACTIONS(4546), + [anon_sym_match] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4544), + [anon_sym_orelse] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4544), + [anon_sym_BANG_EQ] = ACTIONS(4544), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4544), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_LT_LT_PIPE] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_catch] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4544), + [anon_sym_try] = ACTIONS(4546), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4544), + [anon_sym_true] = ACTIONS(4546), + [anon_sym_false] = ACTIONS(4546), + [anon_sym_null] = ACTIONS(4546), + [anon_sym_unreachable] = ACTIONS(4546), + [anon_sym_undefined] = ACTIONS(4546), + [sym_sink] = ACTIONS(4546), + [sym_integer] = ACTIONS(4546), + [sym_float] = ACTIONS(4544), + [anon_sym_DQUOTE] = ACTIONS(4544), + [sym_multiline_string] = ACTIONS(4544), + [sym_character] = ACTIONS(4544), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4544), + }, + [STATE(2999)] = { + [sym_identifier] = ACTIONS(5680), + [anon_sym_func] = ACTIONS(5680), + [anon_sym_c_func] = ACTIONS(5680), + [anon_sym_BANG] = ACTIONS(5680), + [anon_sym_EQ] = ACTIONS(5680), + [anon_sym_struct] = ACTIONS(5680), + [anon_sym_LPAREN] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5680), + [anon_sym_DOLLAR] = ACTIONS(5678), + [anon_sym_PIPE] = ACTIONS(5680), + [anon_sym_struct_type_BANG] = ACTIONS(5678), + [anon_sym_QMARK] = ACTIONS(5678), + [anon_sym_AT] = ACTIONS(5678), + [anon_sym_STAR] = ACTIONS(5680), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_void] = ACTIONS(5680), + [anon_sym_noreturn] = ACTIONS(5680), + [anon_sym_type] = ACTIONS(5680), + [anon_sym_anyopaque] = ACTIONS(5680), + [anon_sym_bool] = ACTIONS(5680), + [anon_sym_int] = ACTIONS(5680), + [anon_sym_uint] = ACTIONS(5680), + [anon_sym_float] = ACTIONS(5680), + [anon_sym_range] = ACTIONS(5680), + [anon_sym_i8] = ACTIONS(5680), + [anon_sym_i16] = ACTIONS(5680), + [anon_sym_i32] = ACTIONS(5680), + [anon_sym_i64] = ACTIONS(5680), + [anon_sym_u8] = ACTIONS(5680), + [anon_sym_u16] = ACTIONS(5680), + [anon_sym_u32] = ACTIONS(5680), + [anon_sym_u64] = ACTIONS(5680), + [anon_sym_isize] = ACTIONS(5680), + [anon_sym_usize] = ACTIONS(5680), + [anon_sym_f32] = ACTIONS(5680), + [anon_sym_f64] = ACTIONS(5680), + [anon_sym_c_char] = ACTIONS(5680), + [anon_sym_c_schar] = ACTIONS(5680), + [anon_sym_c_uchar] = ACTIONS(5680), + [anon_sym_c_short] = ACTIONS(5680), + [anon_sym_c_ushort] = ACTIONS(5680), + [anon_sym_c_int] = ACTIONS(5680), + [anon_sym_c_uint] = ACTIONS(5680), + [anon_sym_c_long] = ACTIONS(5680), + [anon_sym_c_ulong] = ACTIONS(5680), + [anon_sym_c_longlong] = ACTIONS(5680), + [anon_sym_c_ulonglong] = ACTIONS(5680), + [anon_sym_c_float] = ACTIONS(5680), + [anon_sym_c_double] = ACTIONS(5680), + [anon_sym_c_longdouble] = ACTIONS(5680), + [anon_sym_PLUS_EQ] = ACTIONS(5678), + [anon_sym_DASH_EQ] = ACTIONS(5678), + [anon_sym_STAR_EQ] = ACTIONS(5678), + [anon_sym_SLASH_EQ] = ACTIONS(5678), + [anon_sym_AMP_EQ] = ACTIONS(5678), + [anon_sym_PIPE_EQ] = ACTIONS(5678), + [anon_sym_xor_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_EQ] = ACTIONS(5678), + [anon_sym_GT_GT_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5678), + [anon_sym_return] = ACTIONS(5680), + [anon_sym_yield] = ACTIONS(5680), + [anon_sym_break] = ACTIONS(5680), + [anon_sym_continue] = ACTIONS(5680), + [anon_sym_defer] = ACTIONS(5680), + [anon_sym_errdefer] = ACTIONS(5680), + [anon_sym_if] = ACTIONS(5680), + [anon_sym_else] = ACTIONS(5680), + [anon_sym_while] = ACTIONS(5680), + [anon_sym_expand] = ACTIONS(5680), + [anon_sym_for] = ACTIONS(5680), + [anon_sym_match] = ACTIONS(5680), + [anon_sym_DOT_DOT] = ACTIONS(5680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5678), + [anon_sym_orelse] = ACTIONS(5680), + [anon_sym_or] = ACTIONS(5680), + [anon_sym_and] = ACTIONS(5680), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_LT] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5678), + [anon_sym_GT] = ACTIONS(5680), + [anon_sym_GT_EQ] = ACTIONS(5678), + [anon_sym_AMP] = ACTIONS(5680), + [anon_sym_xor] = ACTIONS(5680), + [anon_sym_LT_LT] = ACTIONS(5680), + [anon_sym_GT_GT] = ACTIONS(5680), + [anon_sym_LT_LT_PIPE] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5680), + [anon_sym_SLASH] = ACTIONS(5680), + [anon_sym_catch] = ACTIONS(5680), + [anon_sym_TILDE] = ACTIONS(5678), + [anon_sym_try] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_CARET] = ACTIONS(5678), + [anon_sym_true] = ACTIONS(5680), + [anon_sym_false] = ACTIONS(5680), + [anon_sym_null] = ACTIONS(5680), + [anon_sym_unreachable] = ACTIONS(5680), + [anon_sym_undefined] = ACTIONS(5680), + [sym_sink] = ACTIONS(5680), + [sym_integer] = ACTIONS(5680), + [sym_float] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [sym_multiline_string] = ACTIONS(5678), + [sym_character] = ACTIONS(5678), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5678), + }, + [STATE(3000)] = { + [sym_identifier] = ACTIONS(4842), + [anon_sym_func] = ACTIONS(4842), + [anon_sym_c_func] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_struct] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_struct_type_BANG] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_void] = ACTIONS(4842), + [anon_sym_noreturn] = ACTIONS(4842), + [anon_sym_type] = ACTIONS(4842), + [anon_sym_anyopaque] = ACTIONS(4842), + [anon_sym_bool] = ACTIONS(4842), + [anon_sym_int] = ACTIONS(4842), + [anon_sym_uint] = ACTIONS(4842), + [anon_sym_float] = ACTIONS(4842), + [anon_sym_range] = ACTIONS(4842), + [anon_sym_i8] = ACTIONS(4842), + [anon_sym_i16] = ACTIONS(4842), + [anon_sym_i32] = ACTIONS(4842), + [anon_sym_i64] = ACTIONS(4842), + [anon_sym_u8] = ACTIONS(4842), + [anon_sym_u16] = ACTIONS(4842), + [anon_sym_u32] = ACTIONS(4842), + [anon_sym_u64] = ACTIONS(4842), + [anon_sym_isize] = ACTIONS(4842), + [anon_sym_usize] = ACTIONS(4842), + [anon_sym_f32] = ACTIONS(4842), + [anon_sym_f64] = ACTIONS(4842), + [anon_sym_c_char] = ACTIONS(4842), + [anon_sym_c_schar] = ACTIONS(4842), + [anon_sym_c_uchar] = ACTIONS(4842), + [anon_sym_c_short] = ACTIONS(4842), + [anon_sym_c_ushort] = ACTIONS(4842), + [anon_sym_c_int] = ACTIONS(4842), + [anon_sym_c_uint] = ACTIONS(4842), + [anon_sym_c_long] = ACTIONS(4842), + [anon_sym_c_ulong] = ACTIONS(4842), + [anon_sym_c_longlong] = ACTIONS(4842), + [anon_sym_c_ulonglong] = ACTIONS(4842), + [anon_sym_c_float] = ACTIONS(4842), + [anon_sym_c_double] = ACTIONS(4842), + [anon_sym_c_longdouble] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_AMP_EQ] = ACTIONS(4840), + [anon_sym_PIPE_EQ] = ACTIONS(4840), + [anon_sym_xor_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_yield] = ACTIONS(4842), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_defer] = ACTIONS(4842), + [anon_sym_errdefer] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_while] = ACTIONS(4842), + [anon_sym_expand] = ACTIONS(4842), + [anon_sym_for] = ACTIONS(4842), + [anon_sym_match] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4840), + [anon_sym_orelse] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4842), + [anon_sym_LT_LT_PIPE] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_catch] = ACTIONS(4842), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_unreachable] = ACTIONS(4842), + [anon_sym_undefined] = ACTIONS(4842), + [sym_sink] = ACTIONS(4842), + [sym_integer] = ACTIONS(4842), + [sym_float] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [sym_multiline_string] = ACTIONS(4840), + [sym_character] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4840), + }, + [STATE(3001)] = { + [sym_identifier] = ACTIONS(4846), + [anon_sym_func] = ACTIONS(4846), + [anon_sym_c_func] = ACTIONS(4846), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_struct] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4846), + [anon_sym_struct_type_BANG] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_void] = ACTIONS(4846), + [anon_sym_noreturn] = ACTIONS(4846), + [anon_sym_type] = ACTIONS(4846), + [anon_sym_anyopaque] = ACTIONS(4846), + [anon_sym_bool] = ACTIONS(4846), + [anon_sym_int] = ACTIONS(4846), + [anon_sym_uint] = ACTIONS(4846), + [anon_sym_float] = ACTIONS(4846), + [anon_sym_range] = ACTIONS(4846), + [anon_sym_i8] = ACTIONS(4846), + [anon_sym_i16] = ACTIONS(4846), + [anon_sym_i32] = ACTIONS(4846), + [anon_sym_i64] = ACTIONS(4846), + [anon_sym_u8] = ACTIONS(4846), + [anon_sym_u16] = ACTIONS(4846), + [anon_sym_u32] = ACTIONS(4846), + [anon_sym_u64] = ACTIONS(4846), + [anon_sym_isize] = ACTIONS(4846), + [anon_sym_usize] = ACTIONS(4846), + [anon_sym_f32] = ACTIONS(4846), + [anon_sym_f64] = ACTIONS(4846), + [anon_sym_c_char] = ACTIONS(4846), + [anon_sym_c_schar] = ACTIONS(4846), + [anon_sym_c_uchar] = ACTIONS(4846), + [anon_sym_c_short] = ACTIONS(4846), + [anon_sym_c_ushort] = ACTIONS(4846), + [anon_sym_c_int] = ACTIONS(4846), + [anon_sym_c_uint] = ACTIONS(4846), + [anon_sym_c_long] = ACTIONS(4846), + [anon_sym_c_ulong] = ACTIONS(4846), + [anon_sym_c_longlong] = ACTIONS(4846), + [anon_sym_c_ulonglong] = ACTIONS(4846), + [anon_sym_c_float] = ACTIONS(4846), + [anon_sym_c_double] = ACTIONS(4846), + [anon_sym_c_longdouble] = ACTIONS(4846), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_AMP_EQ] = ACTIONS(4844), + [anon_sym_PIPE_EQ] = ACTIONS(4844), + [anon_sym_xor_EQ] = ACTIONS(4844), + [anon_sym_LT_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_GT_EQ] = ACTIONS(4844), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4844), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_yield] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_defer] = ACTIONS(4846), + [anon_sym_errdefer] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_while] = ACTIONS(4846), + [anon_sym_expand] = ACTIONS(4846), + [anon_sym_for] = ACTIONS(4846), + [anon_sym_match] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), + [anon_sym_orelse] = ACTIONS(4846), + [anon_sym_or] = ACTIONS(4846), + [anon_sym_and] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_xor] = ACTIONS(4846), + [anon_sym_LT_LT] = ACTIONS(4846), + [anon_sym_GT_GT] = ACTIONS(4846), + [anon_sym_LT_LT_PIPE] = ACTIONS(4846), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_catch] = ACTIONS(4846), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_unreachable] = ACTIONS(4846), + [anon_sym_undefined] = ACTIONS(4846), + [sym_sink] = ACTIONS(4846), + [sym_integer] = ACTIONS(4846), + [sym_float] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [sym_multiline_string] = ACTIONS(4844), + [sym_character] = ACTIONS(4844), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4844), + }, + [STATE(3002)] = { + [sym_identifier] = ACTIONS(4850), + [anon_sym_func] = ACTIONS(4850), + [anon_sym_c_func] = ACTIONS(4850), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_struct] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4850), + [anon_sym_struct_type_BANG] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_void] = ACTIONS(4850), + [anon_sym_noreturn] = ACTIONS(4850), + [anon_sym_type] = ACTIONS(4850), + [anon_sym_anyopaque] = ACTIONS(4850), + [anon_sym_bool] = ACTIONS(4850), + [anon_sym_int] = ACTIONS(4850), + [anon_sym_uint] = ACTIONS(4850), + [anon_sym_float] = ACTIONS(4850), + [anon_sym_range] = ACTIONS(4850), + [anon_sym_i8] = ACTIONS(4850), + [anon_sym_i16] = ACTIONS(4850), + [anon_sym_i32] = ACTIONS(4850), + [anon_sym_i64] = ACTIONS(4850), + [anon_sym_u8] = ACTIONS(4850), + [anon_sym_u16] = ACTIONS(4850), + [anon_sym_u32] = ACTIONS(4850), + [anon_sym_u64] = ACTIONS(4850), + [anon_sym_isize] = ACTIONS(4850), + [anon_sym_usize] = ACTIONS(4850), + [anon_sym_f32] = ACTIONS(4850), + [anon_sym_f64] = ACTIONS(4850), + [anon_sym_c_char] = ACTIONS(4850), + [anon_sym_c_schar] = ACTIONS(4850), + [anon_sym_c_uchar] = ACTIONS(4850), + [anon_sym_c_short] = ACTIONS(4850), + [anon_sym_c_ushort] = ACTIONS(4850), + [anon_sym_c_int] = ACTIONS(4850), + [anon_sym_c_uint] = ACTIONS(4850), + [anon_sym_c_long] = ACTIONS(4850), + [anon_sym_c_ulong] = ACTIONS(4850), + [anon_sym_c_longlong] = ACTIONS(4850), + [anon_sym_c_ulonglong] = ACTIONS(4850), + [anon_sym_c_float] = ACTIONS(4850), + [anon_sym_c_double] = ACTIONS(4850), + [anon_sym_c_longdouble] = ACTIONS(4850), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_AMP_EQ] = ACTIONS(4848), + [anon_sym_PIPE_EQ] = ACTIONS(4848), + [anon_sym_xor_EQ] = ACTIONS(4848), + [anon_sym_LT_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_GT_EQ] = ACTIONS(4848), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4848), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_yield] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_defer] = ACTIONS(4850), + [anon_sym_errdefer] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_expand] = ACTIONS(4850), + [anon_sym_for] = ACTIONS(4850), + [anon_sym_match] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_orelse] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_xor] = ACTIONS(4850), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4850), + [anon_sym_LT_LT_PIPE] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_catch] = ACTIONS(4850), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_unreachable] = ACTIONS(4850), + [anon_sym_undefined] = ACTIONS(4850), + [sym_sink] = ACTIONS(4850), + [sym_integer] = ACTIONS(4850), + [sym_float] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym_multiline_string] = ACTIONS(4848), + [sym_character] = ACTIONS(4848), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4848), + }, + [STATE(3003)] = { + [sym_identifier] = ACTIONS(4854), + [anon_sym_func] = ACTIONS(4854), + [anon_sym_c_func] = ACTIONS(4854), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4854), + [anon_sym_struct_type_BANG] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_void] = ACTIONS(4854), + [anon_sym_noreturn] = ACTIONS(4854), + [anon_sym_type] = ACTIONS(4854), + [anon_sym_anyopaque] = ACTIONS(4854), + [anon_sym_bool] = ACTIONS(4854), + [anon_sym_int] = ACTIONS(4854), + [anon_sym_uint] = ACTIONS(4854), + [anon_sym_float] = ACTIONS(4854), + [anon_sym_range] = ACTIONS(4854), + [anon_sym_i8] = ACTIONS(4854), + [anon_sym_i16] = ACTIONS(4854), + [anon_sym_i32] = ACTIONS(4854), + [anon_sym_i64] = ACTIONS(4854), + [anon_sym_u8] = ACTIONS(4854), + [anon_sym_u16] = ACTIONS(4854), + [anon_sym_u32] = ACTIONS(4854), + [anon_sym_u64] = ACTIONS(4854), + [anon_sym_isize] = ACTIONS(4854), + [anon_sym_usize] = ACTIONS(4854), + [anon_sym_f32] = ACTIONS(4854), + [anon_sym_f64] = ACTIONS(4854), + [anon_sym_c_char] = ACTIONS(4854), + [anon_sym_c_schar] = ACTIONS(4854), + [anon_sym_c_uchar] = ACTIONS(4854), + [anon_sym_c_short] = ACTIONS(4854), + [anon_sym_c_ushort] = ACTIONS(4854), + [anon_sym_c_int] = ACTIONS(4854), + [anon_sym_c_uint] = ACTIONS(4854), + [anon_sym_c_long] = ACTIONS(4854), + [anon_sym_c_ulong] = ACTIONS(4854), + [anon_sym_c_longlong] = ACTIONS(4854), + [anon_sym_c_ulonglong] = ACTIONS(4854), + [anon_sym_c_float] = ACTIONS(4854), + [anon_sym_c_double] = ACTIONS(4854), + [anon_sym_c_longdouble] = ACTIONS(4854), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_AMP_EQ] = ACTIONS(4852), + [anon_sym_PIPE_EQ] = ACTIONS(4852), + [anon_sym_xor_EQ] = ACTIONS(4852), + [anon_sym_LT_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_GT_EQ] = ACTIONS(4852), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4852), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_yield] = ACTIONS(4854), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_defer] = ACTIONS(4854), + [anon_sym_errdefer] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4854), + [anon_sym_expand] = ACTIONS(4854), + [anon_sym_for] = ACTIONS(4854), + [anon_sym_match] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4852), + [anon_sym_orelse] = ACTIONS(4854), + [anon_sym_or] = ACTIONS(4854), + [anon_sym_and] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_xor] = ACTIONS(4854), + [anon_sym_LT_LT] = ACTIONS(4854), + [anon_sym_GT_GT] = ACTIONS(4854), + [anon_sym_LT_LT_PIPE] = ACTIONS(4854), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_catch] = ACTIONS(4854), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_unreachable] = ACTIONS(4854), + [anon_sym_undefined] = ACTIONS(4854), + [sym_sink] = ACTIONS(4854), + [sym_integer] = ACTIONS(4854), + [sym_float] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [sym_multiline_string] = ACTIONS(4852), + [sym_character] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4852), + }, + [STATE(3004)] = { + [sym_identifier] = ACTIONS(4858), + [anon_sym_func] = ACTIONS(4858), + [anon_sym_c_func] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4858), + [anon_sym_EQ] = ACTIONS(4858), + [anon_sym_struct] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4858), + [anon_sym_struct_type_BANG] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_void] = ACTIONS(4858), + [anon_sym_noreturn] = ACTIONS(4858), + [anon_sym_type] = ACTIONS(4858), + [anon_sym_anyopaque] = ACTIONS(4858), + [anon_sym_bool] = ACTIONS(4858), + [anon_sym_int] = ACTIONS(4858), + [anon_sym_uint] = ACTIONS(4858), + [anon_sym_float] = ACTIONS(4858), + [anon_sym_range] = ACTIONS(4858), + [anon_sym_i8] = ACTIONS(4858), + [anon_sym_i16] = ACTIONS(4858), + [anon_sym_i32] = ACTIONS(4858), + [anon_sym_i64] = ACTIONS(4858), + [anon_sym_u8] = ACTIONS(4858), + [anon_sym_u16] = ACTIONS(4858), + [anon_sym_u32] = ACTIONS(4858), + [anon_sym_u64] = ACTIONS(4858), + [anon_sym_isize] = ACTIONS(4858), + [anon_sym_usize] = ACTIONS(4858), + [anon_sym_f32] = ACTIONS(4858), + [anon_sym_f64] = ACTIONS(4858), + [anon_sym_c_char] = ACTIONS(4858), + [anon_sym_c_schar] = ACTIONS(4858), + [anon_sym_c_uchar] = ACTIONS(4858), + [anon_sym_c_short] = ACTIONS(4858), + [anon_sym_c_ushort] = ACTIONS(4858), + [anon_sym_c_int] = ACTIONS(4858), + [anon_sym_c_uint] = ACTIONS(4858), + [anon_sym_c_long] = ACTIONS(4858), + [anon_sym_c_ulong] = ACTIONS(4858), + [anon_sym_c_longlong] = ACTIONS(4858), + [anon_sym_c_ulonglong] = ACTIONS(4858), + [anon_sym_c_float] = ACTIONS(4858), + [anon_sym_c_double] = ACTIONS(4858), + [anon_sym_c_longdouble] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_AMP_EQ] = ACTIONS(4856), + [anon_sym_PIPE_EQ] = ACTIONS(4856), + [anon_sym_xor_EQ] = ACTIONS(4856), + [anon_sym_LT_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_GT_EQ] = ACTIONS(4856), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4858), + [anon_sym_yield] = ACTIONS(4858), + [anon_sym_break] = ACTIONS(4858), + [anon_sym_continue] = ACTIONS(4858), + [anon_sym_defer] = ACTIONS(4858), + [anon_sym_errdefer] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_while] = ACTIONS(4858), + [anon_sym_expand] = ACTIONS(4858), + [anon_sym_for] = ACTIONS(4858), + [anon_sym_match] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4856), + [anon_sym_orelse] = ACTIONS(4858), + [anon_sym_or] = ACTIONS(4858), + [anon_sym_and] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_xor] = ACTIONS(4858), + [anon_sym_LT_LT] = ACTIONS(4858), + [anon_sym_GT_GT] = ACTIONS(4858), + [anon_sym_LT_LT_PIPE] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4858), + [anon_sym_catch] = ACTIONS(4858), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_unreachable] = ACTIONS(4858), + [anon_sym_undefined] = ACTIONS(4858), + [sym_sink] = ACTIONS(4858), + [sym_integer] = ACTIONS(4858), + [sym_float] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [sym_multiline_string] = ACTIONS(4856), + [sym_character] = ACTIONS(4856), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4856), + }, + [STATE(3005)] = { + [sym_identifier] = ACTIONS(4862), + [anon_sym_func] = ACTIONS(4862), + [anon_sym_c_func] = ACTIONS(4862), + [anon_sym_BANG] = ACTIONS(4862), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_struct] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4862), + [anon_sym_struct_type_BANG] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_AT] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4862), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_void] = ACTIONS(4862), + [anon_sym_noreturn] = ACTIONS(4862), + [anon_sym_type] = ACTIONS(4862), + [anon_sym_anyopaque] = ACTIONS(4862), + [anon_sym_bool] = ACTIONS(4862), + [anon_sym_int] = ACTIONS(4862), + [anon_sym_uint] = ACTIONS(4862), + [anon_sym_float] = ACTIONS(4862), + [anon_sym_range] = ACTIONS(4862), + [anon_sym_i8] = ACTIONS(4862), + [anon_sym_i16] = ACTIONS(4862), + [anon_sym_i32] = ACTIONS(4862), + [anon_sym_i64] = ACTIONS(4862), + [anon_sym_u8] = ACTIONS(4862), + [anon_sym_u16] = ACTIONS(4862), + [anon_sym_u32] = ACTIONS(4862), + [anon_sym_u64] = ACTIONS(4862), + [anon_sym_isize] = ACTIONS(4862), + [anon_sym_usize] = ACTIONS(4862), + [anon_sym_f32] = ACTIONS(4862), + [anon_sym_f64] = ACTIONS(4862), + [anon_sym_c_char] = ACTIONS(4862), + [anon_sym_c_schar] = ACTIONS(4862), + [anon_sym_c_uchar] = ACTIONS(4862), + [anon_sym_c_short] = ACTIONS(4862), + [anon_sym_c_ushort] = ACTIONS(4862), + [anon_sym_c_int] = ACTIONS(4862), + [anon_sym_c_uint] = ACTIONS(4862), + [anon_sym_c_long] = ACTIONS(4862), + [anon_sym_c_ulong] = ACTIONS(4862), + [anon_sym_c_longlong] = ACTIONS(4862), + [anon_sym_c_ulonglong] = ACTIONS(4862), + [anon_sym_c_float] = ACTIONS(4862), + [anon_sym_c_double] = ACTIONS(4862), + [anon_sym_c_longdouble] = ACTIONS(4862), + [anon_sym_PLUS_EQ] = ACTIONS(4860), + [anon_sym_DASH_EQ] = ACTIONS(4860), + [anon_sym_STAR_EQ] = ACTIONS(4860), + [anon_sym_SLASH_EQ] = ACTIONS(4860), + [anon_sym_AMP_EQ] = ACTIONS(4860), + [anon_sym_PIPE_EQ] = ACTIONS(4860), + [anon_sym_xor_EQ] = ACTIONS(4860), + [anon_sym_LT_LT_EQ] = ACTIONS(4860), + [anon_sym_GT_GT_EQ] = ACTIONS(4860), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4860), + [anon_sym_return] = ACTIONS(4862), + [anon_sym_yield] = ACTIONS(4862), + [anon_sym_break] = ACTIONS(4862), + [anon_sym_continue] = ACTIONS(4862), + [anon_sym_defer] = ACTIONS(4862), + [anon_sym_errdefer] = ACTIONS(4862), + [anon_sym_if] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_while] = ACTIONS(4862), + [anon_sym_expand] = ACTIONS(4862), + [anon_sym_for] = ACTIONS(4862), + [anon_sym_match] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4860), + [anon_sym_orelse] = ACTIONS(4862), + [anon_sym_or] = ACTIONS(4862), + [anon_sym_and] = ACTIONS(4862), + [anon_sym_EQ_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_xor] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4862), + [anon_sym_GT_GT] = ACTIONS(4862), + [anon_sym_LT_LT_PIPE] = ACTIONS(4862), + [anon_sym_PLUS] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4862), + [anon_sym_catch] = ACTIONS(4862), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_try] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4860), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_unreachable] = ACTIONS(4862), + [anon_sym_undefined] = ACTIONS(4862), + [sym_sink] = ACTIONS(4862), + [sym_integer] = ACTIONS(4862), + [sym_float] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [sym_multiline_string] = ACTIONS(4860), + [sym_character] = ACTIONS(4860), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4860), + }, + [STATE(3006)] = { + [sym_identifier] = ACTIONS(4866), + [anon_sym_func] = ACTIONS(4866), + [anon_sym_c_func] = ACTIONS(4866), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_struct] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4866), + [anon_sym_struct_type_BANG] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_AT] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4866), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_void] = ACTIONS(4866), + [anon_sym_noreturn] = ACTIONS(4866), + [anon_sym_type] = ACTIONS(4866), + [anon_sym_anyopaque] = ACTIONS(4866), + [anon_sym_bool] = ACTIONS(4866), + [anon_sym_int] = ACTIONS(4866), + [anon_sym_uint] = ACTIONS(4866), + [anon_sym_float] = ACTIONS(4866), + [anon_sym_range] = ACTIONS(4866), + [anon_sym_i8] = ACTIONS(4866), + [anon_sym_i16] = ACTIONS(4866), + [anon_sym_i32] = ACTIONS(4866), + [anon_sym_i64] = ACTIONS(4866), + [anon_sym_u8] = ACTIONS(4866), + [anon_sym_u16] = ACTIONS(4866), + [anon_sym_u32] = ACTIONS(4866), + [anon_sym_u64] = ACTIONS(4866), + [anon_sym_isize] = ACTIONS(4866), + [anon_sym_usize] = ACTIONS(4866), + [anon_sym_f32] = ACTIONS(4866), + [anon_sym_f64] = ACTIONS(4866), + [anon_sym_c_char] = ACTIONS(4866), + [anon_sym_c_schar] = ACTIONS(4866), + [anon_sym_c_uchar] = ACTIONS(4866), + [anon_sym_c_short] = ACTIONS(4866), + [anon_sym_c_ushort] = ACTIONS(4866), + [anon_sym_c_int] = ACTIONS(4866), + [anon_sym_c_uint] = ACTIONS(4866), + [anon_sym_c_long] = ACTIONS(4866), + [anon_sym_c_ulong] = ACTIONS(4866), + [anon_sym_c_longlong] = ACTIONS(4866), + [anon_sym_c_ulonglong] = ACTIONS(4866), + [anon_sym_c_float] = ACTIONS(4866), + [anon_sym_c_double] = ACTIONS(4866), + [anon_sym_c_longdouble] = ACTIONS(4866), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_AMP_EQ] = ACTIONS(4864), + [anon_sym_PIPE_EQ] = ACTIONS(4864), + [anon_sym_xor_EQ] = ACTIONS(4864), + [anon_sym_LT_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_GT_EQ] = ACTIONS(4864), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4864), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_yield] = ACTIONS(4866), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_defer] = ACTIONS(4866), + [anon_sym_errdefer] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_while] = ACTIONS(4866), + [anon_sym_expand] = ACTIONS(4866), + [anon_sym_for] = ACTIONS(4866), + [anon_sym_match] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4864), + [anon_sym_orelse] = ACTIONS(4866), + [anon_sym_or] = ACTIONS(4866), + [anon_sym_and] = ACTIONS(4866), + [anon_sym_EQ_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_xor] = ACTIONS(4866), + [anon_sym_LT_LT] = ACTIONS(4866), + [anon_sym_GT_GT] = ACTIONS(4866), + [anon_sym_LT_LT_PIPE] = ACTIONS(4866), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_catch] = ACTIONS(4866), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_unreachable] = ACTIONS(4866), + [anon_sym_undefined] = ACTIONS(4866), + [sym_sink] = ACTIONS(4866), + [sym_integer] = ACTIONS(4866), + [sym_float] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [sym_multiline_string] = ACTIONS(4864), + [sym_character] = ACTIONS(4864), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4864), + }, + [STATE(3007)] = { + [sym_identifier] = ACTIONS(4734), + [anon_sym_func] = ACTIONS(4734), + [anon_sym_c_func] = ACTIONS(4736), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4738), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_struct_type_BANG] = ACTIONS(4732), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_AT] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_void] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_type] = ACTIONS(4734), + [anon_sym_anyopaque] = ACTIONS(4734), + [anon_sym_bool] = ACTIONS(4734), + [anon_sym_int] = ACTIONS(4734), + [anon_sym_uint] = ACTIONS(4734), + [anon_sym_float] = ACTIONS(4734), + [anon_sym_range] = ACTIONS(4734), + [anon_sym_i8] = ACTIONS(4734), + [anon_sym_i16] = ACTIONS(4734), + [anon_sym_i32] = ACTIONS(4734), + [anon_sym_i64] = ACTIONS(4734), + [anon_sym_u8] = ACTIONS(4734), + [anon_sym_u16] = ACTIONS(4734), + [anon_sym_u32] = ACTIONS(4734), + [anon_sym_u64] = ACTIONS(4734), + [anon_sym_isize] = ACTIONS(4734), + [anon_sym_usize] = ACTIONS(4734), + [anon_sym_f32] = ACTIONS(4734), + [anon_sym_f64] = ACTIONS(4734), + [anon_sym_c_char] = ACTIONS(4734), + [anon_sym_c_schar] = ACTIONS(4734), + [anon_sym_c_uchar] = ACTIONS(4734), + [anon_sym_c_short] = ACTIONS(4734), + [anon_sym_c_ushort] = ACTIONS(4734), + [anon_sym_c_int] = ACTIONS(4734), + [anon_sym_c_uint] = ACTIONS(4734), + [anon_sym_c_long] = ACTIONS(4734), + [anon_sym_c_ulong] = ACTIONS(4734), + [anon_sym_c_longlong] = ACTIONS(4734), + [anon_sym_c_ulonglong] = ACTIONS(4734), + [anon_sym_c_float] = ACTIONS(4734), + [anon_sym_c_double] = ACTIONS(4734), + [anon_sym_c_longdouble] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_AMP_EQ] = ACTIONS(4732), + [anon_sym_PIPE_EQ] = ACTIONS(4732), + [anon_sym_xor_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_GT_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_defer] = ACTIONS(4734), + [anon_sym_errdefer] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_expand] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4738), + [anon_sym_orelse] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4734), + [anon_sym_xor] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_LT_LT_PIPE] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_catch] = ACTIONS(4734), + [anon_sym_TILDE] = ACTIONS(4738), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_unreachable] = ACTIONS(4734), + [anon_sym_undefined] = ACTIONS(4734), + [sym_sink] = ACTIONS(4734), + [sym_integer] = ACTIONS(4734), + [sym_float] = ACTIONS(4738), + [anon_sym_DQUOTE] = ACTIONS(4738), + [sym_multiline_string] = ACTIONS(4738), + [sym_character] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4738), + }, + [STATE(3008)] = { + [sym_identifier] = ACTIONS(4870), + [anon_sym_func] = ACTIONS(4870), + [anon_sym_c_func] = ACTIONS(4870), + [anon_sym_BANG] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_struct] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4870), + [anon_sym_struct_type_BANG] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4870), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_void] = ACTIONS(4870), + [anon_sym_noreturn] = ACTIONS(4870), + [anon_sym_type] = ACTIONS(4870), + [anon_sym_anyopaque] = ACTIONS(4870), + [anon_sym_bool] = ACTIONS(4870), + [anon_sym_int] = ACTIONS(4870), + [anon_sym_uint] = ACTIONS(4870), + [anon_sym_float] = ACTIONS(4870), + [anon_sym_range] = ACTIONS(4870), + [anon_sym_i8] = ACTIONS(4870), + [anon_sym_i16] = ACTIONS(4870), + [anon_sym_i32] = ACTIONS(4870), + [anon_sym_i64] = ACTIONS(4870), + [anon_sym_u8] = ACTIONS(4870), + [anon_sym_u16] = ACTIONS(4870), + [anon_sym_u32] = ACTIONS(4870), + [anon_sym_u64] = ACTIONS(4870), + [anon_sym_isize] = ACTIONS(4870), + [anon_sym_usize] = ACTIONS(4870), + [anon_sym_f32] = ACTIONS(4870), + [anon_sym_f64] = ACTIONS(4870), + [anon_sym_c_char] = ACTIONS(4870), + [anon_sym_c_schar] = ACTIONS(4870), + [anon_sym_c_uchar] = ACTIONS(4870), + [anon_sym_c_short] = ACTIONS(4870), + [anon_sym_c_ushort] = ACTIONS(4870), + [anon_sym_c_int] = ACTIONS(4870), + [anon_sym_c_uint] = ACTIONS(4870), + [anon_sym_c_long] = ACTIONS(4870), + [anon_sym_c_ulong] = ACTIONS(4870), + [anon_sym_c_longlong] = ACTIONS(4870), + [anon_sym_c_ulonglong] = ACTIONS(4870), + [anon_sym_c_float] = ACTIONS(4870), + [anon_sym_c_double] = ACTIONS(4870), + [anon_sym_c_longdouble] = ACTIONS(4870), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_AMP_EQ] = ACTIONS(4868), + [anon_sym_PIPE_EQ] = ACTIONS(4868), + [anon_sym_xor_EQ] = ACTIONS(4868), + [anon_sym_LT_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_GT_EQ] = ACTIONS(4868), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4868), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_yield] = ACTIONS(4870), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_defer] = ACTIONS(4870), + [anon_sym_errdefer] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_while] = ACTIONS(4870), + [anon_sym_expand] = ACTIONS(4870), + [anon_sym_for] = ACTIONS(4870), + [anon_sym_match] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4868), + [anon_sym_orelse] = ACTIONS(4870), + [anon_sym_or] = ACTIONS(4870), + [anon_sym_and] = ACTIONS(4870), + [anon_sym_EQ_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_xor] = ACTIONS(4870), + [anon_sym_LT_LT] = ACTIONS(4870), + [anon_sym_GT_GT] = ACTIONS(4870), + [anon_sym_LT_LT_PIPE] = ACTIONS(4870), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_catch] = ACTIONS(4870), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_unreachable] = ACTIONS(4870), + [anon_sym_undefined] = ACTIONS(4870), + [sym_sink] = ACTIONS(4870), + [sym_integer] = ACTIONS(4870), + [sym_float] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [sym_multiline_string] = ACTIONS(4868), + [sym_character] = ACTIONS(4868), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4868), + }, + [STATE(3009)] = { + [sym_identifier] = ACTIONS(6026), + [anon_sym_func] = ACTIONS(6026), + [anon_sym_c_func] = ACTIONS(6026), + [anon_sym_BANG] = ACTIONS(6478), + [anon_sym_EQ] = ACTIONS(6026), + [anon_sym_struct] = ACTIONS(6026), + [anon_sym_LPAREN] = ACTIONS(6024), + [anon_sym_LBRACE] = ACTIONS(6024), + [anon_sym_COMMA] = ACTIONS(6024), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_DASH] = ACTIONS(6026), + [anon_sym_DOLLAR] = ACTIONS(6024), + [anon_sym_PIPE] = ACTIONS(6026), + [anon_sym_struct_type_BANG] = ACTIONS(6024), + [anon_sym_QMARK] = ACTIONS(6024), + [anon_sym_AT] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(6026), + [anon_sym_LBRACK] = ACTIONS(6024), + [anon_sym_void] = ACTIONS(6026), + [anon_sym_noreturn] = ACTIONS(6026), + [anon_sym_type] = ACTIONS(6026), + [anon_sym_anyopaque] = ACTIONS(6026), + [anon_sym_bool] = ACTIONS(6026), + [anon_sym_int] = ACTIONS(6026), + [anon_sym_uint] = ACTIONS(6026), + [anon_sym_float] = ACTIONS(6026), + [anon_sym_range] = ACTIONS(6026), + [anon_sym_i8] = ACTIONS(6026), + [anon_sym_i16] = ACTIONS(6026), + [anon_sym_i32] = ACTIONS(6026), + [anon_sym_i64] = ACTIONS(6026), + [anon_sym_u8] = ACTIONS(6026), + [anon_sym_u16] = ACTIONS(6026), + [anon_sym_u32] = ACTIONS(6026), + [anon_sym_u64] = ACTIONS(6026), + [anon_sym_isize] = ACTIONS(6026), + [anon_sym_usize] = ACTIONS(6026), + [anon_sym_f32] = ACTIONS(6026), + [anon_sym_f64] = ACTIONS(6026), + [anon_sym_c_char] = ACTIONS(6026), + [anon_sym_c_schar] = ACTIONS(6026), + [anon_sym_c_uchar] = ACTIONS(6026), + [anon_sym_c_short] = ACTIONS(6026), + [anon_sym_c_ushort] = ACTIONS(6026), + [anon_sym_c_int] = ACTIONS(6026), + [anon_sym_c_uint] = ACTIONS(6026), + [anon_sym_c_long] = ACTIONS(6026), + [anon_sym_c_ulong] = ACTIONS(6026), + [anon_sym_c_longlong] = ACTIONS(6026), + [anon_sym_c_ulonglong] = ACTIONS(6026), + [anon_sym_c_float] = ACTIONS(6026), + [anon_sym_c_double] = ACTIONS(6026), + [anon_sym_c_longdouble] = ACTIONS(6026), + [anon_sym_PLUS_EQ] = ACTIONS(6024), + [anon_sym_DASH_EQ] = ACTIONS(6024), + [anon_sym_STAR_EQ] = ACTIONS(6024), + [anon_sym_SLASH_EQ] = ACTIONS(6024), + [anon_sym_AMP_EQ] = ACTIONS(6024), + [anon_sym_PIPE_EQ] = ACTIONS(6024), + [anon_sym_xor_EQ] = ACTIONS(6024), + [anon_sym_LT_LT_EQ] = ACTIONS(6024), + [anon_sym_GT_GT_EQ] = ACTIONS(6024), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6024), + [anon_sym_return] = ACTIONS(6026), + [anon_sym_yield] = ACTIONS(6026), + [anon_sym_break] = ACTIONS(6026), + [anon_sym_continue] = ACTIONS(6026), + [anon_sym_defer] = ACTIONS(6026), + [anon_sym_errdefer] = ACTIONS(6026), + [anon_sym_if] = ACTIONS(6026), + [anon_sym_else] = ACTIONS(6026), + [anon_sym_while] = ACTIONS(6026), + [anon_sym_expand] = ACTIONS(6026), + [anon_sym_for] = ACTIONS(6026), + [anon_sym_match] = ACTIONS(6026), + [anon_sym_DOT_DOT] = ACTIONS(6026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6024), + [anon_sym_orelse] = ACTIONS(6026), + [anon_sym_or] = ACTIONS(6026), + [anon_sym_and] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(6024), + [anon_sym_BANG_EQ] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(6026), + [anon_sym_LT_EQ] = ACTIONS(6024), + [anon_sym_GT] = ACTIONS(6026), + [anon_sym_GT_EQ] = ACTIONS(6024), + [anon_sym_AMP] = ACTIONS(6026), + [anon_sym_xor] = ACTIONS(6026), + [anon_sym_LT_LT] = ACTIONS(6026), + [anon_sym_GT_GT] = ACTIONS(6026), + [anon_sym_LT_LT_PIPE] = ACTIONS(6026), + [anon_sym_PLUS] = ACTIONS(6026), + [anon_sym_SLASH] = ACTIONS(6026), + [anon_sym_catch] = ACTIONS(6026), + [anon_sym_TILDE] = ACTIONS(6024), + [anon_sym_try] = ACTIONS(6026), + [anon_sym_DOT] = ACTIONS(6026), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_true] = ACTIONS(6026), + [anon_sym_false] = ACTIONS(6026), + [anon_sym_null] = ACTIONS(6026), + [anon_sym_unreachable] = ACTIONS(6026), + [anon_sym_undefined] = ACTIONS(6026), + [sym_sink] = ACTIONS(6026), + [sym_integer] = ACTIONS(6026), + [sym_float] = ACTIONS(6024), + [anon_sym_DQUOTE] = ACTIONS(6024), + [sym_multiline_string] = ACTIONS(6024), + [sym_character] = ACTIONS(6024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6024), + }, + [STATE(3010)] = { + [sym_identifier] = ACTIONS(6032), + [anon_sym_func] = ACTIONS(6032), + [anon_sym_c_func] = ACTIONS(6032), + [anon_sym_BANG] = ACTIONS(6032), + [anon_sym_EQ] = ACTIONS(6032), + [anon_sym_struct] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(6030), + [anon_sym_COMMA] = ACTIONS(6030), + [anon_sym_RBRACE] = ACTIONS(6030), + [anon_sym_DASH] = ACTIONS(6032), + [anon_sym_DOLLAR] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(6032), + [anon_sym_struct_type_BANG] = ACTIONS(6030), + [anon_sym_QMARK] = ACTIONS(6030), + [anon_sym_AT] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(6032), + [anon_sym_LBRACK] = ACTIONS(6030), + [anon_sym_void] = ACTIONS(6032), + [anon_sym_noreturn] = ACTIONS(6032), + [anon_sym_type] = ACTIONS(6032), + [anon_sym_anyopaque] = ACTIONS(6032), + [anon_sym_bool] = ACTIONS(6032), + [anon_sym_int] = ACTIONS(6032), + [anon_sym_uint] = ACTIONS(6032), + [anon_sym_float] = ACTIONS(6032), + [anon_sym_range] = ACTIONS(6032), + [anon_sym_i8] = ACTIONS(6032), + [anon_sym_i16] = ACTIONS(6032), + [anon_sym_i32] = ACTIONS(6032), + [anon_sym_i64] = ACTIONS(6032), + [anon_sym_u8] = ACTIONS(6032), + [anon_sym_u16] = ACTIONS(6032), + [anon_sym_u32] = ACTIONS(6032), + [anon_sym_u64] = ACTIONS(6032), + [anon_sym_isize] = ACTIONS(6032), + [anon_sym_usize] = ACTIONS(6032), + [anon_sym_f32] = ACTIONS(6032), + [anon_sym_f64] = ACTIONS(6032), + [anon_sym_c_char] = ACTIONS(6032), + [anon_sym_c_schar] = ACTIONS(6032), + [anon_sym_c_uchar] = ACTIONS(6032), + [anon_sym_c_short] = ACTIONS(6032), + [anon_sym_c_ushort] = ACTIONS(6032), + [anon_sym_c_int] = ACTIONS(6032), + [anon_sym_c_uint] = ACTIONS(6032), + [anon_sym_c_long] = ACTIONS(6032), + [anon_sym_c_ulong] = ACTIONS(6032), + [anon_sym_c_longlong] = ACTIONS(6032), + [anon_sym_c_ulonglong] = ACTIONS(6032), + [anon_sym_c_float] = ACTIONS(6032), + [anon_sym_c_double] = ACTIONS(6032), + [anon_sym_c_longdouble] = ACTIONS(6032), + [anon_sym_PLUS_EQ] = ACTIONS(6030), + [anon_sym_DASH_EQ] = ACTIONS(6030), + [anon_sym_STAR_EQ] = ACTIONS(6030), + [anon_sym_SLASH_EQ] = ACTIONS(6030), + [anon_sym_AMP_EQ] = ACTIONS(6030), + [anon_sym_PIPE_EQ] = ACTIONS(6030), + [anon_sym_xor_EQ] = ACTIONS(6030), + [anon_sym_LT_LT_EQ] = ACTIONS(6030), + [anon_sym_GT_GT_EQ] = ACTIONS(6030), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6030), + [anon_sym_return] = ACTIONS(6032), + [anon_sym_yield] = ACTIONS(6032), + [anon_sym_break] = ACTIONS(6032), + [anon_sym_continue] = ACTIONS(6032), + [anon_sym_defer] = ACTIONS(6032), + [anon_sym_errdefer] = ACTIONS(6032), + [anon_sym_if] = ACTIONS(6032), + [anon_sym_else] = ACTIONS(6032), + [anon_sym_while] = ACTIONS(6032), + [anon_sym_expand] = ACTIONS(6032), + [anon_sym_for] = ACTIONS(6032), + [anon_sym_match] = ACTIONS(6032), + [anon_sym_DOT_DOT] = ACTIONS(6032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6030), + [anon_sym_orelse] = ACTIONS(6032), + [anon_sym_or] = ACTIONS(6032), + [anon_sym_and] = ACTIONS(6032), + [anon_sym_EQ_EQ] = ACTIONS(6030), + [anon_sym_BANG_EQ] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(6032), + [anon_sym_LT_EQ] = ACTIONS(6030), + [anon_sym_GT] = ACTIONS(6032), + [anon_sym_GT_EQ] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6032), + [anon_sym_xor] = ACTIONS(6032), + [anon_sym_LT_LT] = ACTIONS(6032), + [anon_sym_GT_GT] = ACTIONS(6032), + [anon_sym_LT_LT_PIPE] = ACTIONS(6032), + [anon_sym_PLUS] = ACTIONS(6032), + [anon_sym_SLASH] = ACTIONS(6032), + [anon_sym_catch] = ACTIONS(6032), + [anon_sym_TILDE] = ACTIONS(6030), + [anon_sym_try] = ACTIONS(6032), + [anon_sym_DOT] = ACTIONS(6032), + [anon_sym_CARET] = ACTIONS(6030), + [anon_sym_true] = ACTIONS(6032), + [anon_sym_false] = ACTIONS(6032), + [anon_sym_null] = ACTIONS(6032), + [anon_sym_unreachable] = ACTIONS(6032), + [anon_sym_undefined] = ACTIONS(6032), + [sym_sink] = ACTIONS(6032), + [sym_integer] = ACTIONS(6032), + [sym_float] = ACTIONS(6030), + [anon_sym_DQUOTE] = ACTIONS(6030), + [sym_multiline_string] = ACTIONS(6030), + [sym_character] = ACTIONS(6030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6030), + }, + [STATE(3011)] = { + [sym_identifier] = ACTIONS(5700), + [anon_sym_func] = ACTIONS(5700), + [anon_sym_c_func] = ACTIONS(5700), + [anon_sym_BANG] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(5700), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_LPAREN] = ACTIONS(5704), + [anon_sym_LBRACE] = ACTIONS(5704), + [anon_sym_COMMA] = ACTIONS(5704), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_DASH] = ACTIONS(5700), + [anon_sym_DOLLAR] = ACTIONS(5704), + [anon_sym_PIPE] = ACTIONS(5700), + [anon_sym_struct_type_BANG] = ACTIONS(5704), + [anon_sym_QMARK] = ACTIONS(5704), + [anon_sym_AT] = ACTIONS(5704), + [anon_sym_STAR] = ACTIONS(5700), + [anon_sym_LBRACK] = ACTIONS(5704), + [anon_sym_void] = ACTIONS(5700), + [anon_sym_noreturn] = ACTIONS(5700), + [anon_sym_type] = ACTIONS(5700), + [anon_sym_anyopaque] = ACTIONS(5700), + [anon_sym_bool] = ACTIONS(5700), + [anon_sym_int] = ACTIONS(5700), + [anon_sym_uint] = ACTIONS(5700), + [anon_sym_float] = ACTIONS(5700), + [anon_sym_range] = ACTIONS(5700), + [anon_sym_i8] = ACTIONS(5700), + [anon_sym_i16] = ACTIONS(5700), + [anon_sym_i32] = ACTIONS(5700), + [anon_sym_i64] = ACTIONS(5700), + [anon_sym_u8] = ACTIONS(5700), + [anon_sym_u16] = ACTIONS(5700), + [anon_sym_u32] = ACTIONS(5700), + [anon_sym_u64] = ACTIONS(5700), + [anon_sym_isize] = ACTIONS(5700), + [anon_sym_usize] = ACTIONS(5700), + [anon_sym_f32] = ACTIONS(5700), + [anon_sym_f64] = ACTIONS(5700), + [anon_sym_c_char] = ACTIONS(5700), + [anon_sym_c_schar] = ACTIONS(5700), + [anon_sym_c_uchar] = ACTIONS(5700), + [anon_sym_c_short] = ACTIONS(5700), + [anon_sym_c_ushort] = ACTIONS(5700), + [anon_sym_c_int] = ACTIONS(5700), + [anon_sym_c_uint] = ACTIONS(5700), + [anon_sym_c_long] = ACTIONS(5700), + [anon_sym_c_ulong] = ACTIONS(5700), + [anon_sym_c_longlong] = ACTIONS(5700), + [anon_sym_c_ulonglong] = ACTIONS(5700), + [anon_sym_c_float] = ACTIONS(5700), + [anon_sym_c_double] = ACTIONS(5700), + [anon_sym_c_longdouble] = ACTIONS(5700), + [anon_sym_PLUS_EQ] = ACTIONS(5704), + [anon_sym_DASH_EQ] = ACTIONS(5704), + [anon_sym_STAR_EQ] = ACTIONS(5704), + [anon_sym_SLASH_EQ] = ACTIONS(5704), + [anon_sym_AMP_EQ] = ACTIONS(5704), + [anon_sym_PIPE_EQ] = ACTIONS(5704), + [anon_sym_xor_EQ] = ACTIONS(5704), + [anon_sym_LT_LT_EQ] = ACTIONS(5704), + [anon_sym_GT_GT_EQ] = ACTIONS(5704), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5704), + [anon_sym_return] = ACTIONS(5700), + [anon_sym_yield] = ACTIONS(5700), + [anon_sym_break] = ACTIONS(5700), + [anon_sym_continue] = ACTIONS(5700), + [anon_sym_defer] = ACTIONS(5700), + [anon_sym_errdefer] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5700), + [anon_sym_else] = ACTIONS(5700), + [anon_sym_while] = ACTIONS(5700), + [anon_sym_expand] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5700), + [anon_sym_match] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5704), + [anon_sym_orelse] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5700), + [anon_sym_and] = ACTIONS(5700), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5704), + [anon_sym_GT] = ACTIONS(5700), + [anon_sym_GT_EQ] = ACTIONS(5704), + [anon_sym_AMP] = ACTIONS(5700), + [anon_sym_xor] = ACTIONS(5700), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5700), + [anon_sym_LT_LT_PIPE] = ACTIONS(5700), + [anon_sym_PLUS] = ACTIONS(5700), + [anon_sym_SLASH] = ACTIONS(5700), + [anon_sym_catch] = ACTIONS(5700), + [anon_sym_TILDE] = ACTIONS(5704), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5700), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_true] = ACTIONS(5700), + [anon_sym_false] = ACTIONS(5700), + [anon_sym_null] = ACTIONS(5700), + [anon_sym_unreachable] = ACTIONS(5700), + [anon_sym_undefined] = ACTIONS(5700), + [sym_sink] = ACTIONS(5700), + [sym_integer] = ACTIONS(5700), + [sym_float] = ACTIONS(5704), + [anon_sym_DQUOTE] = ACTIONS(5704), + [sym_multiline_string] = ACTIONS(5704), + [sym_character] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5704), + }, + [STATE(3012)] = { + [sym_identifier] = ACTIONS(5840), + [anon_sym_func] = ACTIONS(5840), + [anon_sym_c_func] = ACTIONS(5840), + [anon_sym_BANG] = ACTIONS(5840), + [anon_sym_EQ] = ACTIONS(5840), + [anon_sym_struct] = ACTIONS(5840), + [anon_sym_LPAREN] = ACTIONS(5838), + [anon_sym_LBRACE] = ACTIONS(5838), + [anon_sym_COMMA] = ACTIONS(5838), + [anon_sym_RBRACE] = ACTIONS(5838), + [anon_sym_DASH] = ACTIONS(5840), + [anon_sym_DOLLAR] = ACTIONS(5838), + [anon_sym_PIPE] = ACTIONS(5840), + [anon_sym_struct_type_BANG] = ACTIONS(5838), + [anon_sym_QMARK] = ACTIONS(5838), + [anon_sym_AT] = ACTIONS(5838), + [anon_sym_STAR] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(5838), + [anon_sym_void] = ACTIONS(5840), + [anon_sym_noreturn] = ACTIONS(5840), + [anon_sym_type] = ACTIONS(5840), + [anon_sym_anyopaque] = ACTIONS(5840), + [anon_sym_bool] = ACTIONS(5840), + [anon_sym_int] = ACTIONS(5840), + [anon_sym_uint] = ACTIONS(5840), + [anon_sym_float] = ACTIONS(5840), + [anon_sym_range] = ACTIONS(5840), + [anon_sym_i8] = ACTIONS(5840), + [anon_sym_i16] = ACTIONS(5840), + [anon_sym_i32] = ACTIONS(5840), + [anon_sym_i64] = ACTIONS(5840), + [anon_sym_u8] = ACTIONS(5840), + [anon_sym_u16] = ACTIONS(5840), + [anon_sym_u32] = ACTIONS(5840), + [anon_sym_u64] = ACTIONS(5840), + [anon_sym_isize] = ACTIONS(5840), + [anon_sym_usize] = ACTIONS(5840), + [anon_sym_f32] = ACTIONS(5840), + [anon_sym_f64] = ACTIONS(5840), + [anon_sym_c_char] = ACTIONS(5840), + [anon_sym_c_schar] = ACTIONS(5840), + [anon_sym_c_uchar] = ACTIONS(5840), + [anon_sym_c_short] = ACTIONS(5840), + [anon_sym_c_ushort] = ACTIONS(5840), + [anon_sym_c_int] = ACTIONS(5840), + [anon_sym_c_uint] = ACTIONS(5840), + [anon_sym_c_long] = ACTIONS(5840), + [anon_sym_c_ulong] = ACTIONS(5840), + [anon_sym_c_longlong] = ACTIONS(5840), + [anon_sym_c_ulonglong] = ACTIONS(5840), + [anon_sym_c_float] = ACTIONS(5840), + [anon_sym_c_double] = ACTIONS(5840), + [anon_sym_c_longdouble] = ACTIONS(5840), + [anon_sym_PLUS_EQ] = ACTIONS(5838), + [anon_sym_DASH_EQ] = ACTIONS(5838), + [anon_sym_STAR_EQ] = ACTIONS(5838), + [anon_sym_SLASH_EQ] = ACTIONS(5838), + [anon_sym_AMP_EQ] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(5838), + [anon_sym_xor_EQ] = ACTIONS(5838), + [anon_sym_LT_LT_EQ] = ACTIONS(5838), + [anon_sym_GT_GT_EQ] = ACTIONS(5838), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5838), + [anon_sym_return] = ACTIONS(5840), + [anon_sym_yield] = ACTIONS(5840), + [anon_sym_break] = ACTIONS(5840), + [anon_sym_continue] = ACTIONS(5840), + [anon_sym_defer] = ACTIONS(5840), + [anon_sym_errdefer] = ACTIONS(5840), + [anon_sym_if] = ACTIONS(5840), + [anon_sym_else] = ACTIONS(5840), + [anon_sym_while] = ACTIONS(5840), + [anon_sym_expand] = ACTIONS(5840), + [anon_sym_for] = ACTIONS(5840), + [anon_sym_match] = ACTIONS(5840), + [anon_sym_DOT_DOT] = ACTIONS(5840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5838), + [anon_sym_orelse] = ACTIONS(5840), + [anon_sym_or] = ACTIONS(5840), + [anon_sym_and] = ACTIONS(5840), + [anon_sym_EQ_EQ] = ACTIONS(5838), + [anon_sym_BANG_EQ] = ACTIONS(5838), + [anon_sym_LT] = ACTIONS(5840), + [anon_sym_LT_EQ] = ACTIONS(5838), + [anon_sym_GT] = ACTIONS(5840), + [anon_sym_GT_EQ] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_xor] = ACTIONS(5840), + [anon_sym_LT_LT] = ACTIONS(5840), + [anon_sym_GT_GT] = ACTIONS(5840), + [anon_sym_LT_LT_PIPE] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5840), + [anon_sym_SLASH] = ACTIONS(5840), + [anon_sym_catch] = ACTIONS(5840), + [anon_sym_TILDE] = ACTIONS(5838), + [anon_sym_try] = ACTIONS(5840), + [anon_sym_DOT] = ACTIONS(5840), + [anon_sym_CARET] = ACTIONS(5838), + [anon_sym_true] = ACTIONS(5840), + [anon_sym_false] = ACTIONS(5840), + [anon_sym_null] = ACTIONS(5840), + [anon_sym_unreachable] = ACTIONS(5840), + [anon_sym_undefined] = ACTIONS(5840), + [sym_sink] = ACTIONS(5840), + [sym_integer] = ACTIONS(5840), + [sym_float] = ACTIONS(5838), + [anon_sym_DQUOTE] = ACTIONS(5838), + [sym_multiline_string] = ACTIONS(5838), + [sym_character] = ACTIONS(5838), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5838), + }, + [STATE(3013)] = { + [sym_identifier] = ACTIONS(5844), + [anon_sym_func] = ACTIONS(5844), + [anon_sym_c_func] = ACTIONS(5844), + [anon_sym_BANG] = ACTIONS(5844), + [anon_sym_EQ] = ACTIONS(5844), + [anon_sym_struct] = ACTIONS(5844), + [anon_sym_LPAREN] = ACTIONS(5842), + [anon_sym_LBRACE] = ACTIONS(5842), + [anon_sym_COMMA] = ACTIONS(5842), + [anon_sym_RBRACE] = ACTIONS(5842), + [anon_sym_DASH] = ACTIONS(5844), + [anon_sym_DOLLAR] = ACTIONS(5842), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_struct_type_BANG] = ACTIONS(5842), + [anon_sym_QMARK] = ACTIONS(5842), + [anon_sym_AT] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(5842), + [anon_sym_void] = ACTIONS(5844), + [anon_sym_noreturn] = ACTIONS(5844), + [anon_sym_type] = ACTIONS(5844), + [anon_sym_anyopaque] = ACTIONS(5844), + [anon_sym_bool] = ACTIONS(5844), + [anon_sym_int] = ACTIONS(5844), + [anon_sym_uint] = ACTIONS(5844), + [anon_sym_float] = ACTIONS(5844), + [anon_sym_range] = ACTIONS(5844), + [anon_sym_i8] = ACTIONS(5844), + [anon_sym_i16] = ACTIONS(5844), + [anon_sym_i32] = ACTIONS(5844), + [anon_sym_i64] = ACTIONS(5844), + [anon_sym_u8] = ACTIONS(5844), + [anon_sym_u16] = ACTIONS(5844), + [anon_sym_u32] = ACTIONS(5844), + [anon_sym_u64] = ACTIONS(5844), + [anon_sym_isize] = ACTIONS(5844), + [anon_sym_usize] = ACTIONS(5844), + [anon_sym_f32] = ACTIONS(5844), + [anon_sym_f64] = ACTIONS(5844), + [anon_sym_c_char] = ACTIONS(5844), + [anon_sym_c_schar] = ACTIONS(5844), + [anon_sym_c_uchar] = ACTIONS(5844), + [anon_sym_c_short] = ACTIONS(5844), + [anon_sym_c_ushort] = ACTIONS(5844), + [anon_sym_c_int] = ACTIONS(5844), + [anon_sym_c_uint] = ACTIONS(5844), + [anon_sym_c_long] = ACTIONS(5844), + [anon_sym_c_ulong] = ACTIONS(5844), + [anon_sym_c_longlong] = ACTIONS(5844), + [anon_sym_c_ulonglong] = ACTIONS(5844), + [anon_sym_c_float] = ACTIONS(5844), + [anon_sym_c_double] = ACTIONS(5844), + [anon_sym_c_longdouble] = ACTIONS(5844), + [anon_sym_PLUS_EQ] = ACTIONS(5842), + [anon_sym_DASH_EQ] = ACTIONS(5842), + [anon_sym_STAR_EQ] = ACTIONS(5842), + [anon_sym_SLASH_EQ] = ACTIONS(5842), + [anon_sym_AMP_EQ] = ACTIONS(5842), + [anon_sym_PIPE_EQ] = ACTIONS(5842), + [anon_sym_xor_EQ] = ACTIONS(5842), + [anon_sym_LT_LT_EQ] = ACTIONS(5842), + [anon_sym_GT_GT_EQ] = ACTIONS(5842), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5842), + [anon_sym_return] = ACTIONS(5844), + [anon_sym_yield] = ACTIONS(5844), + [anon_sym_break] = ACTIONS(5844), + [anon_sym_continue] = ACTIONS(5844), + [anon_sym_defer] = ACTIONS(5844), + [anon_sym_errdefer] = ACTIONS(5844), + [anon_sym_if] = ACTIONS(5844), + [anon_sym_else] = ACTIONS(5844), + [anon_sym_while] = ACTIONS(5844), + [anon_sym_expand] = ACTIONS(5844), + [anon_sym_for] = ACTIONS(5844), + [anon_sym_match] = ACTIONS(5844), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5842), + [anon_sym_orelse] = ACTIONS(5844), + [anon_sym_or] = ACTIONS(5844), + [anon_sym_and] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5842), + [anon_sym_BANG_EQ] = ACTIONS(5842), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym_xor] = ACTIONS(5844), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(5844), + [anon_sym_LT_LT_PIPE] = ACTIONS(5844), + [anon_sym_PLUS] = ACTIONS(5844), + [anon_sym_SLASH] = ACTIONS(5844), + [anon_sym_catch] = ACTIONS(5844), + [anon_sym_TILDE] = ACTIONS(5842), + [anon_sym_try] = ACTIONS(5844), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_CARET] = ACTIONS(5842), + [anon_sym_true] = ACTIONS(5844), + [anon_sym_false] = ACTIONS(5844), + [anon_sym_null] = ACTIONS(5844), + [anon_sym_unreachable] = ACTIONS(5844), + [anon_sym_undefined] = ACTIONS(5844), + [sym_sink] = ACTIONS(5844), + [sym_integer] = ACTIONS(5844), + [sym_float] = ACTIONS(5842), + [anon_sym_DQUOTE] = ACTIONS(5842), + [sym_multiline_string] = ACTIONS(5842), + [sym_character] = ACTIONS(5842), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5842), + }, + [STATE(3014)] = { + [sym_identifier] = ACTIONS(5848), + [anon_sym_func] = ACTIONS(5848), + [anon_sym_c_func] = ACTIONS(5848), + [anon_sym_BANG] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(5848), + [anon_sym_struct] = ACTIONS(5848), + [anon_sym_LPAREN] = ACTIONS(5846), + [anon_sym_LBRACE] = ACTIONS(5846), + [anon_sym_COMMA] = ACTIONS(5846), + [anon_sym_RBRACE] = ACTIONS(5846), + [anon_sym_DASH] = ACTIONS(5848), + [anon_sym_DOLLAR] = ACTIONS(5846), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_struct_type_BANG] = ACTIONS(5846), + [anon_sym_QMARK] = ACTIONS(5846), + [anon_sym_AT] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(5846), + [anon_sym_void] = ACTIONS(5848), + [anon_sym_noreturn] = ACTIONS(5848), + [anon_sym_type] = ACTIONS(5848), + [anon_sym_anyopaque] = ACTIONS(5848), + [anon_sym_bool] = ACTIONS(5848), + [anon_sym_int] = ACTIONS(5848), + [anon_sym_uint] = ACTIONS(5848), + [anon_sym_float] = ACTIONS(5848), + [anon_sym_range] = ACTIONS(5848), + [anon_sym_i8] = ACTIONS(5848), + [anon_sym_i16] = ACTIONS(5848), + [anon_sym_i32] = ACTIONS(5848), + [anon_sym_i64] = ACTIONS(5848), + [anon_sym_u8] = ACTIONS(5848), + [anon_sym_u16] = ACTIONS(5848), + [anon_sym_u32] = ACTIONS(5848), + [anon_sym_u64] = ACTIONS(5848), + [anon_sym_isize] = ACTIONS(5848), + [anon_sym_usize] = ACTIONS(5848), + [anon_sym_f32] = ACTIONS(5848), + [anon_sym_f64] = ACTIONS(5848), + [anon_sym_c_char] = ACTIONS(5848), + [anon_sym_c_schar] = ACTIONS(5848), + [anon_sym_c_uchar] = ACTIONS(5848), + [anon_sym_c_short] = ACTIONS(5848), + [anon_sym_c_ushort] = ACTIONS(5848), + [anon_sym_c_int] = ACTIONS(5848), + [anon_sym_c_uint] = ACTIONS(5848), + [anon_sym_c_long] = ACTIONS(5848), + [anon_sym_c_ulong] = ACTIONS(5848), + [anon_sym_c_longlong] = ACTIONS(5848), + [anon_sym_c_ulonglong] = ACTIONS(5848), + [anon_sym_c_float] = ACTIONS(5848), + [anon_sym_c_double] = ACTIONS(5848), + [anon_sym_c_longdouble] = ACTIONS(5848), + [anon_sym_PLUS_EQ] = ACTIONS(5846), + [anon_sym_DASH_EQ] = ACTIONS(5846), + [anon_sym_STAR_EQ] = ACTIONS(5846), + [anon_sym_SLASH_EQ] = ACTIONS(5846), + [anon_sym_AMP_EQ] = ACTIONS(5846), + [anon_sym_PIPE_EQ] = ACTIONS(5846), + [anon_sym_xor_EQ] = ACTIONS(5846), + [anon_sym_LT_LT_EQ] = ACTIONS(5846), + [anon_sym_GT_GT_EQ] = ACTIONS(5846), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5846), + [anon_sym_return] = ACTIONS(5848), + [anon_sym_yield] = ACTIONS(5848), + [anon_sym_break] = ACTIONS(5848), + [anon_sym_continue] = ACTIONS(5848), + [anon_sym_defer] = ACTIONS(5848), + [anon_sym_errdefer] = ACTIONS(5848), + [anon_sym_if] = ACTIONS(5848), + [anon_sym_else] = ACTIONS(5848), + [anon_sym_while] = ACTIONS(5848), + [anon_sym_expand] = ACTIONS(5848), + [anon_sym_for] = ACTIONS(5848), + [anon_sym_match] = ACTIONS(5848), + [anon_sym_DOT_DOT] = ACTIONS(5848), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5846), + [anon_sym_orelse] = ACTIONS(5848), + [anon_sym_or] = ACTIONS(5848), + [anon_sym_and] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_BANG_EQ] = ACTIONS(5846), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_EQ] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5848), + [anon_sym_xor] = ACTIONS(5848), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(5848), + [anon_sym_LT_LT_PIPE] = ACTIONS(5848), + [anon_sym_PLUS] = ACTIONS(5848), + [anon_sym_SLASH] = ACTIONS(5848), + [anon_sym_catch] = ACTIONS(5848), + [anon_sym_TILDE] = ACTIONS(5846), + [anon_sym_try] = ACTIONS(5848), + [anon_sym_DOT] = ACTIONS(5848), + [anon_sym_CARET] = ACTIONS(5846), + [anon_sym_true] = ACTIONS(5848), + [anon_sym_false] = ACTIONS(5848), + [anon_sym_null] = ACTIONS(5848), + [anon_sym_unreachable] = ACTIONS(5848), + [anon_sym_undefined] = ACTIONS(5848), + [sym_sink] = ACTIONS(5848), + [sym_integer] = ACTIONS(5848), + [sym_float] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(5846), + [sym_multiline_string] = ACTIONS(5846), + [sym_character] = ACTIONS(5846), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5846), + }, + [STATE(3015)] = { + [sym_identifier] = ACTIONS(4792), + [anon_sym_func] = ACTIONS(4792), + [anon_sym_c_func] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_struct] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_struct_type_BANG] = ACTIONS(4790), + [anon_sym_QMARK] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_void] = ACTIONS(4792), + [anon_sym_noreturn] = ACTIONS(4792), + [anon_sym_type] = ACTIONS(4792), + [anon_sym_anyopaque] = ACTIONS(4792), + [anon_sym_bool] = ACTIONS(4792), + [anon_sym_int] = ACTIONS(4792), + [anon_sym_uint] = ACTIONS(4792), + [anon_sym_float] = ACTIONS(4792), + [anon_sym_range] = ACTIONS(4792), + [anon_sym_i8] = ACTIONS(4792), + [anon_sym_i16] = ACTIONS(4792), + [anon_sym_i32] = ACTIONS(4792), + [anon_sym_i64] = ACTIONS(4792), + [anon_sym_u8] = ACTIONS(4792), + [anon_sym_u16] = ACTIONS(4792), + [anon_sym_u32] = ACTIONS(4792), + [anon_sym_u64] = ACTIONS(4792), + [anon_sym_isize] = ACTIONS(4792), + [anon_sym_usize] = ACTIONS(4792), + [anon_sym_f32] = ACTIONS(4792), + [anon_sym_f64] = ACTIONS(4792), + [anon_sym_c_char] = ACTIONS(4792), + [anon_sym_c_schar] = ACTIONS(4792), + [anon_sym_c_uchar] = ACTIONS(4792), + [anon_sym_c_short] = ACTIONS(4792), + [anon_sym_c_ushort] = ACTIONS(4792), + [anon_sym_c_int] = ACTIONS(4792), + [anon_sym_c_uint] = ACTIONS(4792), + [anon_sym_c_long] = ACTIONS(4792), + [anon_sym_c_ulong] = ACTIONS(4792), + [anon_sym_c_longlong] = ACTIONS(4792), + [anon_sym_c_ulonglong] = ACTIONS(4792), + [anon_sym_c_float] = ACTIONS(4792), + [anon_sym_c_double] = ACTIONS(4792), + [anon_sym_c_longdouble] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_AMP_EQ] = ACTIONS(4790), + [anon_sym_PIPE_EQ] = ACTIONS(4790), + [anon_sym_xor_EQ] = ACTIONS(4790), + [anon_sym_LT_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_GT_EQ] = ACTIONS(4790), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4790), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_yield] = ACTIONS(4792), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_defer] = ACTIONS(4792), + [anon_sym_errdefer] = ACTIONS(4792), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_while] = ACTIONS(4792), + [anon_sym_expand] = ACTIONS(4792), + [anon_sym_for] = ACTIONS(4792), + [anon_sym_match] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4790), + [anon_sym_orelse] = ACTIONS(4792), + [anon_sym_or] = ACTIONS(4792), + [anon_sym_and] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + [anon_sym_xor] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_LT_LT_PIPE] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_catch] = ACTIONS(4792), + [anon_sym_TILDE] = ACTIONS(4790), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_CARET] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4792), + [anon_sym_unreachable] = ACTIONS(4792), + [anon_sym_undefined] = ACTIONS(4792), + [sym_sink] = ACTIONS(4792), + [sym_integer] = ACTIONS(4792), + [sym_float] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4790), + [sym_multiline_string] = ACTIONS(4790), + [sym_character] = ACTIONS(4790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4790), + }, + [STATE(3016)] = { + [sym_identifier] = ACTIONS(5374), + [anon_sym_func] = ACTIONS(5374), + [anon_sym_c_func] = ACTIONS(5374), + [anon_sym_BANG] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_struct] = ACTIONS(5374), + [anon_sym_LPAREN] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5372), + [anon_sym_COMMA] = ACTIONS(5372), + [anon_sym_RBRACE] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5374), + [anon_sym_struct_type_BANG] = ACTIONS(5372), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_AT] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5372), + [anon_sym_void] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_anyopaque] = ACTIONS(5374), + [anon_sym_bool] = ACTIONS(5374), + [anon_sym_int] = ACTIONS(5374), + [anon_sym_uint] = ACTIONS(5374), + [anon_sym_float] = ACTIONS(5374), + [anon_sym_range] = ACTIONS(5374), + [anon_sym_i8] = ACTIONS(5374), + [anon_sym_i16] = ACTIONS(5374), + [anon_sym_i32] = ACTIONS(5374), + [anon_sym_i64] = ACTIONS(5374), + [anon_sym_u8] = ACTIONS(5374), + [anon_sym_u16] = ACTIONS(5374), + [anon_sym_u32] = ACTIONS(5374), + [anon_sym_u64] = ACTIONS(5374), + [anon_sym_isize] = ACTIONS(5374), + [anon_sym_usize] = ACTIONS(5374), + [anon_sym_f32] = ACTIONS(5374), + [anon_sym_f64] = ACTIONS(5374), + [anon_sym_c_char] = ACTIONS(5374), + [anon_sym_c_schar] = ACTIONS(5374), + [anon_sym_c_uchar] = ACTIONS(5374), + [anon_sym_c_short] = ACTIONS(5374), + [anon_sym_c_ushort] = ACTIONS(5374), + [anon_sym_c_int] = ACTIONS(5374), + [anon_sym_c_uint] = ACTIONS(5374), + [anon_sym_c_long] = ACTIONS(5374), + [anon_sym_c_ulong] = ACTIONS(5374), + [anon_sym_c_longlong] = ACTIONS(5374), + [anon_sym_c_ulonglong] = ACTIONS(5374), + [anon_sym_c_float] = ACTIONS(5374), + [anon_sym_c_double] = ACTIONS(5374), + [anon_sym_c_longdouble] = ACTIONS(5374), + [anon_sym_PLUS_EQ] = ACTIONS(5372), + [anon_sym_DASH_EQ] = ACTIONS(5372), + [anon_sym_STAR_EQ] = ACTIONS(5372), + [anon_sym_SLASH_EQ] = ACTIONS(5372), + [anon_sym_AMP_EQ] = ACTIONS(5372), + [anon_sym_PIPE_EQ] = ACTIONS(5372), + [anon_sym_xor_EQ] = ACTIONS(5372), + [anon_sym_LT_LT_EQ] = ACTIONS(5372), + [anon_sym_GT_GT_EQ] = ACTIONS(5372), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5372), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_break] = ACTIONS(5374), + [anon_sym_continue] = ACTIONS(5374), + [anon_sym_defer] = ACTIONS(5374), + [anon_sym_errdefer] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_else] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_expand] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_DOT_DOT] = ACTIONS(5374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5372), + [anon_sym_orelse] = ACTIONS(5374), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_EQ_EQ] = ACTIONS(5372), + [anon_sym_BANG_EQ] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5374), + [anon_sym_LT_EQ] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_xor] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(5374), + [anon_sym_GT_GT] = ACTIONS(5374), + [anon_sym_LT_LT_PIPE] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_SLASH] = ACTIONS(5374), + [anon_sym_catch] = ACTIONS(5374), + [anon_sym_TILDE] = ACTIONS(5372), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_DOT] = ACTIONS(5374), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym_true] = ACTIONS(5374), + [anon_sym_false] = ACTIONS(5374), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_unreachable] = ACTIONS(5374), + [anon_sym_undefined] = ACTIONS(5374), + [sym_sink] = ACTIONS(5374), + [sym_integer] = ACTIONS(5374), + [sym_float] = ACTIONS(5372), + [anon_sym_DQUOTE] = ACTIONS(5372), + [sym_multiline_string] = ACTIONS(5372), + [sym_character] = ACTIONS(5372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5372), + }, + [STATE(3017)] = { + [sym_identifier] = ACTIONS(5852), + [anon_sym_func] = ACTIONS(5852), + [anon_sym_c_func] = ACTIONS(5852), + [anon_sym_BANG] = ACTIONS(5852), + [anon_sym_EQ] = ACTIONS(5852), + [anon_sym_struct] = ACTIONS(5852), + [anon_sym_LPAREN] = ACTIONS(5850), + [anon_sym_LBRACE] = ACTIONS(5850), + [anon_sym_COMMA] = ACTIONS(5850), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5852), + [anon_sym_DOLLAR] = ACTIONS(5850), + [anon_sym_PIPE] = ACTIONS(5852), + [anon_sym_struct_type_BANG] = ACTIONS(5850), + [anon_sym_QMARK] = ACTIONS(5850), + [anon_sym_AT] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5852), + [anon_sym_LBRACK] = ACTIONS(5850), + [anon_sym_void] = ACTIONS(5852), + [anon_sym_noreturn] = ACTIONS(5852), + [anon_sym_type] = ACTIONS(5852), + [anon_sym_anyopaque] = ACTIONS(5852), + [anon_sym_bool] = ACTIONS(5852), + [anon_sym_int] = ACTIONS(5852), + [anon_sym_uint] = ACTIONS(5852), + [anon_sym_float] = ACTIONS(5852), + [anon_sym_range] = ACTIONS(5852), + [anon_sym_i8] = ACTIONS(5852), + [anon_sym_i16] = ACTIONS(5852), + [anon_sym_i32] = ACTIONS(5852), + [anon_sym_i64] = ACTIONS(5852), + [anon_sym_u8] = ACTIONS(5852), + [anon_sym_u16] = ACTIONS(5852), + [anon_sym_u32] = ACTIONS(5852), + [anon_sym_u64] = ACTIONS(5852), + [anon_sym_isize] = ACTIONS(5852), + [anon_sym_usize] = ACTIONS(5852), + [anon_sym_f32] = ACTIONS(5852), + [anon_sym_f64] = ACTIONS(5852), + [anon_sym_c_char] = ACTIONS(5852), + [anon_sym_c_schar] = ACTIONS(5852), + [anon_sym_c_uchar] = ACTIONS(5852), + [anon_sym_c_short] = ACTIONS(5852), + [anon_sym_c_ushort] = ACTIONS(5852), + [anon_sym_c_int] = ACTIONS(5852), + [anon_sym_c_uint] = ACTIONS(5852), + [anon_sym_c_long] = ACTIONS(5852), + [anon_sym_c_ulong] = ACTIONS(5852), + [anon_sym_c_longlong] = ACTIONS(5852), + [anon_sym_c_ulonglong] = ACTIONS(5852), + [anon_sym_c_float] = ACTIONS(5852), + [anon_sym_c_double] = ACTIONS(5852), + [anon_sym_c_longdouble] = ACTIONS(5852), + [anon_sym_PLUS_EQ] = ACTIONS(5850), + [anon_sym_DASH_EQ] = ACTIONS(5850), + [anon_sym_STAR_EQ] = ACTIONS(5850), + [anon_sym_SLASH_EQ] = ACTIONS(5850), + [anon_sym_AMP_EQ] = ACTIONS(5850), + [anon_sym_PIPE_EQ] = ACTIONS(5850), + [anon_sym_xor_EQ] = ACTIONS(5850), + [anon_sym_LT_LT_EQ] = ACTIONS(5850), + [anon_sym_GT_GT_EQ] = ACTIONS(5850), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5850), + [anon_sym_return] = ACTIONS(5852), + [anon_sym_yield] = ACTIONS(5852), + [anon_sym_break] = ACTIONS(5852), + [anon_sym_continue] = ACTIONS(5852), + [anon_sym_defer] = ACTIONS(5852), + [anon_sym_errdefer] = ACTIONS(5852), + [anon_sym_if] = ACTIONS(5852), + [anon_sym_else] = ACTIONS(5852), + [anon_sym_while] = ACTIONS(5852), + [anon_sym_expand] = ACTIONS(5852), + [anon_sym_for] = ACTIONS(5852), + [anon_sym_match] = ACTIONS(5852), + [anon_sym_DOT_DOT] = ACTIONS(5852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5850), + [anon_sym_orelse] = ACTIONS(5852), + [anon_sym_or] = ACTIONS(5852), + [anon_sym_and] = ACTIONS(5852), + [anon_sym_EQ_EQ] = ACTIONS(5850), + [anon_sym_BANG_EQ] = ACTIONS(5850), + [anon_sym_LT] = ACTIONS(5852), + [anon_sym_LT_EQ] = ACTIONS(5850), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_GT_EQ] = ACTIONS(5850), + [anon_sym_AMP] = ACTIONS(5852), + [anon_sym_xor] = ACTIONS(5852), + [anon_sym_LT_LT] = ACTIONS(5852), + [anon_sym_GT_GT] = ACTIONS(5852), + [anon_sym_LT_LT_PIPE] = ACTIONS(5852), + [anon_sym_PLUS] = ACTIONS(5852), + [anon_sym_SLASH] = ACTIONS(5852), + [anon_sym_catch] = ACTIONS(5852), + [anon_sym_TILDE] = ACTIONS(5850), + [anon_sym_try] = ACTIONS(5852), + [anon_sym_DOT] = ACTIONS(5852), + [anon_sym_CARET] = ACTIONS(5850), + [anon_sym_true] = ACTIONS(5852), + [anon_sym_false] = ACTIONS(5852), + [anon_sym_null] = ACTIONS(5852), + [anon_sym_unreachable] = ACTIONS(5852), + [anon_sym_undefined] = ACTIONS(5852), + [sym_sink] = ACTIONS(5852), + [sym_integer] = ACTIONS(5852), + [sym_float] = ACTIONS(5850), + [anon_sym_DQUOTE] = ACTIONS(5850), + [sym_multiline_string] = ACTIONS(5850), + [sym_character] = ACTIONS(5850), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5850), + }, + [STATE(3018)] = { + [sym_identifier] = ACTIONS(5686), + [anon_sym_func] = ACTIONS(5686), + [anon_sym_c_func] = ACTIONS(5686), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_EQ] = ACTIONS(5686), + [anon_sym_struct] = ACTIONS(5686), + [anon_sym_LPAREN] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5684), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_RBRACE] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5686), + [anon_sym_DOLLAR] = ACTIONS(5684), + [anon_sym_PIPE] = ACTIONS(5686), + [anon_sym_struct_type_BANG] = ACTIONS(5684), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_AT] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5686), + [anon_sym_LBRACK] = ACTIONS(5684), + [anon_sym_void] = ACTIONS(5686), + [anon_sym_noreturn] = ACTIONS(5686), + [anon_sym_type] = ACTIONS(5686), + [anon_sym_anyopaque] = ACTIONS(5686), + [anon_sym_bool] = ACTIONS(5686), + [anon_sym_int] = ACTIONS(5686), + [anon_sym_uint] = ACTIONS(5686), + [anon_sym_float] = ACTIONS(5686), + [anon_sym_range] = ACTIONS(5686), + [anon_sym_i8] = ACTIONS(5686), + [anon_sym_i16] = ACTIONS(5686), + [anon_sym_i32] = ACTIONS(5686), + [anon_sym_i64] = ACTIONS(5686), + [anon_sym_u8] = ACTIONS(5686), + [anon_sym_u16] = ACTIONS(5686), + [anon_sym_u32] = ACTIONS(5686), + [anon_sym_u64] = ACTIONS(5686), + [anon_sym_isize] = ACTIONS(5686), + [anon_sym_usize] = ACTIONS(5686), + [anon_sym_f32] = ACTIONS(5686), + [anon_sym_f64] = ACTIONS(5686), + [anon_sym_c_char] = ACTIONS(5686), + [anon_sym_c_schar] = ACTIONS(5686), + [anon_sym_c_uchar] = ACTIONS(5686), + [anon_sym_c_short] = ACTIONS(5686), + [anon_sym_c_ushort] = ACTIONS(5686), + [anon_sym_c_int] = ACTIONS(5686), + [anon_sym_c_uint] = ACTIONS(5686), + [anon_sym_c_long] = ACTIONS(5686), + [anon_sym_c_ulong] = ACTIONS(5686), + [anon_sym_c_longlong] = ACTIONS(5686), + [anon_sym_c_ulonglong] = ACTIONS(5686), + [anon_sym_c_float] = ACTIONS(5686), + [anon_sym_c_double] = ACTIONS(5686), + [anon_sym_c_longdouble] = ACTIONS(5686), + [anon_sym_PLUS_EQ] = ACTIONS(5684), + [anon_sym_DASH_EQ] = ACTIONS(5684), + [anon_sym_STAR_EQ] = ACTIONS(5684), + [anon_sym_SLASH_EQ] = ACTIONS(5684), + [anon_sym_AMP_EQ] = ACTIONS(5684), + [anon_sym_PIPE_EQ] = ACTIONS(5684), + [anon_sym_xor_EQ] = ACTIONS(5684), + [anon_sym_LT_LT_EQ] = ACTIONS(5684), + [anon_sym_GT_GT_EQ] = ACTIONS(5684), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5684), + [anon_sym_return] = ACTIONS(5686), + [anon_sym_yield] = ACTIONS(5686), + [anon_sym_break] = ACTIONS(5686), + [anon_sym_continue] = ACTIONS(5686), + [anon_sym_defer] = ACTIONS(5686), + [anon_sym_errdefer] = ACTIONS(5686), + [anon_sym_if] = ACTIONS(5686), + [anon_sym_else] = ACTIONS(5686), + [anon_sym_while] = ACTIONS(5686), + [anon_sym_expand] = ACTIONS(5686), + [anon_sym_for] = ACTIONS(5686), + [anon_sym_match] = ACTIONS(5686), + [anon_sym_DOT_DOT] = ACTIONS(5686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5684), + [anon_sym_orelse] = ACTIONS(5686), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_EQ_EQ] = ACTIONS(5684), + [anon_sym_BANG_EQ] = ACTIONS(5684), + [anon_sym_LT] = ACTIONS(5686), + [anon_sym_LT_EQ] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5686), + [anon_sym_GT_EQ] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5686), + [anon_sym_xor] = ACTIONS(5686), + [anon_sym_LT_LT] = ACTIONS(5686), + [anon_sym_GT_GT] = ACTIONS(5686), + [anon_sym_LT_LT_PIPE] = ACTIONS(5686), + [anon_sym_PLUS] = ACTIONS(5686), + [anon_sym_SLASH] = ACTIONS(5686), + [anon_sym_catch] = ACTIONS(5686), + [anon_sym_TILDE] = ACTIONS(5684), + [anon_sym_try] = ACTIONS(5686), + [anon_sym_DOT] = ACTIONS(5686), + [anon_sym_CARET] = ACTIONS(5684), + [anon_sym_true] = ACTIONS(5686), + [anon_sym_false] = ACTIONS(5686), + [anon_sym_null] = ACTIONS(5686), + [anon_sym_unreachable] = ACTIONS(5686), + [anon_sym_undefined] = ACTIONS(5686), + [sym_sink] = ACTIONS(5686), + [sym_integer] = ACTIONS(5686), + [sym_float] = ACTIONS(5684), + [anon_sym_DQUOTE] = ACTIONS(5684), + [sym_multiline_string] = ACTIONS(5684), + [sym_character] = ACTIONS(5684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5684), + }, + [STATE(3019)] = { + [sym_identifier] = ACTIONS(5366), + [anon_sym_func] = ACTIONS(5366), + [anon_sym_c_func] = ACTIONS(5366), + [anon_sym_BANG] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_struct] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5364), + [anon_sym_LBRACE] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5366), + [anon_sym_struct_type_BANG] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_AT] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5364), + [anon_sym_void] = ACTIONS(5366), + [anon_sym_noreturn] = ACTIONS(5366), + [anon_sym_type] = ACTIONS(5366), + [anon_sym_anyopaque] = ACTIONS(5366), + [anon_sym_bool] = ACTIONS(5366), + [anon_sym_int] = ACTIONS(5366), + [anon_sym_uint] = ACTIONS(5366), + [anon_sym_float] = ACTIONS(5366), + [anon_sym_range] = ACTIONS(5366), + [anon_sym_i8] = ACTIONS(5366), + [anon_sym_i16] = ACTIONS(5366), + [anon_sym_i32] = ACTIONS(5366), + [anon_sym_i64] = ACTIONS(5366), + [anon_sym_u8] = ACTIONS(5366), + [anon_sym_u16] = ACTIONS(5366), + [anon_sym_u32] = ACTIONS(5366), + [anon_sym_u64] = ACTIONS(5366), + [anon_sym_isize] = ACTIONS(5366), + [anon_sym_usize] = ACTIONS(5366), + [anon_sym_f32] = ACTIONS(5366), + [anon_sym_f64] = ACTIONS(5366), + [anon_sym_c_char] = ACTIONS(5366), + [anon_sym_c_schar] = ACTIONS(5366), + [anon_sym_c_uchar] = ACTIONS(5366), + [anon_sym_c_short] = ACTIONS(5366), + [anon_sym_c_ushort] = ACTIONS(5366), + [anon_sym_c_int] = ACTIONS(5366), + [anon_sym_c_uint] = ACTIONS(5366), + [anon_sym_c_long] = ACTIONS(5366), + [anon_sym_c_ulong] = ACTIONS(5366), + [anon_sym_c_longlong] = ACTIONS(5366), + [anon_sym_c_ulonglong] = ACTIONS(5366), + [anon_sym_c_float] = ACTIONS(5366), + [anon_sym_c_double] = ACTIONS(5366), + [anon_sym_c_longdouble] = ACTIONS(5366), + [anon_sym_PLUS_EQ] = ACTIONS(5364), + [anon_sym_DASH_EQ] = ACTIONS(5364), + [anon_sym_STAR_EQ] = ACTIONS(5364), + [anon_sym_SLASH_EQ] = ACTIONS(5364), + [anon_sym_AMP_EQ] = ACTIONS(5364), + [anon_sym_PIPE_EQ] = ACTIONS(5364), + [anon_sym_xor_EQ] = ACTIONS(5364), + [anon_sym_LT_LT_EQ] = ACTIONS(5364), + [anon_sym_GT_GT_EQ] = ACTIONS(5364), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5364), + [anon_sym_return] = ACTIONS(5366), + [anon_sym_yield] = ACTIONS(5366), + [anon_sym_break] = ACTIONS(5366), + [anon_sym_continue] = ACTIONS(5366), + [anon_sym_defer] = ACTIONS(5366), + [anon_sym_errdefer] = ACTIONS(5366), + [anon_sym_if] = ACTIONS(5366), + [anon_sym_else] = ACTIONS(5366), + [anon_sym_while] = ACTIONS(5366), + [anon_sym_expand] = ACTIONS(5366), + [anon_sym_for] = ACTIONS(5366), + [anon_sym_match] = ACTIONS(5366), + [anon_sym_DOT_DOT] = ACTIONS(5366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5364), + [anon_sym_orelse] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_and] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5364), + [anon_sym_BANG_EQ] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5366), + [anon_sym_GT_EQ] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5366), + [anon_sym_xor] = ACTIONS(5366), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5366), + [anon_sym_LT_LT_PIPE] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5366), + [anon_sym_SLASH] = ACTIONS(5366), + [anon_sym_catch] = ACTIONS(5366), + [anon_sym_TILDE] = ACTIONS(5364), + [anon_sym_try] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5366), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym_true] = ACTIONS(5366), + [anon_sym_false] = ACTIONS(5366), + [anon_sym_null] = ACTIONS(5366), + [anon_sym_unreachable] = ACTIONS(5366), + [anon_sym_undefined] = ACTIONS(5366), + [sym_sink] = ACTIONS(5366), + [sym_integer] = ACTIONS(5366), + [sym_float] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(5364), + [sym_multiline_string] = ACTIONS(5364), + [sym_character] = ACTIONS(5364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5364), + }, + [STATE(3020)] = { + [sym_identifier] = ACTIONS(5690), + [anon_sym_func] = ACTIONS(5690), + [anon_sym_c_func] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(5690), + [anon_sym_EQ] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5690), + [anon_sym_LPAREN] = ACTIONS(5688), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_DOLLAR] = ACTIONS(5688), + [anon_sym_PIPE] = ACTIONS(5690), + [anon_sym_struct_type_BANG] = ACTIONS(5688), + [anon_sym_QMARK] = ACTIONS(5688), + [anon_sym_AT] = ACTIONS(5688), + [anon_sym_STAR] = ACTIONS(5690), + [anon_sym_LBRACK] = ACTIONS(5688), + [anon_sym_void] = ACTIONS(5690), + [anon_sym_noreturn] = ACTIONS(5690), + [anon_sym_type] = ACTIONS(5690), + [anon_sym_anyopaque] = ACTIONS(5690), + [anon_sym_bool] = ACTIONS(5690), + [anon_sym_int] = ACTIONS(5690), + [anon_sym_uint] = ACTIONS(5690), + [anon_sym_float] = ACTIONS(5690), + [anon_sym_range] = ACTIONS(5690), + [anon_sym_i8] = ACTIONS(5690), + [anon_sym_i16] = ACTIONS(5690), + [anon_sym_i32] = ACTIONS(5690), + [anon_sym_i64] = ACTIONS(5690), + [anon_sym_u8] = ACTIONS(5690), + [anon_sym_u16] = ACTIONS(5690), + [anon_sym_u32] = ACTIONS(5690), + [anon_sym_u64] = ACTIONS(5690), + [anon_sym_isize] = ACTIONS(5690), + [anon_sym_usize] = ACTIONS(5690), + [anon_sym_f32] = ACTIONS(5690), + [anon_sym_f64] = ACTIONS(5690), + [anon_sym_c_char] = ACTIONS(5690), + [anon_sym_c_schar] = ACTIONS(5690), + [anon_sym_c_uchar] = ACTIONS(5690), + [anon_sym_c_short] = ACTIONS(5690), + [anon_sym_c_ushort] = ACTIONS(5690), + [anon_sym_c_int] = ACTIONS(5690), + [anon_sym_c_uint] = ACTIONS(5690), + [anon_sym_c_long] = ACTIONS(5690), + [anon_sym_c_ulong] = ACTIONS(5690), + [anon_sym_c_longlong] = ACTIONS(5690), + [anon_sym_c_ulonglong] = ACTIONS(5690), + [anon_sym_c_float] = ACTIONS(5690), + [anon_sym_c_double] = ACTIONS(5690), + [anon_sym_c_longdouble] = ACTIONS(5690), + [anon_sym_PLUS_EQ] = ACTIONS(5688), + [anon_sym_DASH_EQ] = ACTIONS(5688), + [anon_sym_STAR_EQ] = ACTIONS(5688), + [anon_sym_SLASH_EQ] = ACTIONS(5688), + [anon_sym_AMP_EQ] = ACTIONS(5688), + [anon_sym_PIPE_EQ] = ACTIONS(5688), + [anon_sym_xor_EQ] = ACTIONS(5688), + [anon_sym_LT_LT_EQ] = ACTIONS(5688), + [anon_sym_GT_GT_EQ] = ACTIONS(5688), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5688), + [anon_sym_return] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(5690), + [anon_sym_break] = ACTIONS(5690), + [anon_sym_continue] = ACTIONS(5690), + [anon_sym_defer] = ACTIONS(5690), + [anon_sym_errdefer] = ACTIONS(5690), + [anon_sym_if] = ACTIONS(5690), + [anon_sym_else] = ACTIONS(5690), + [anon_sym_while] = ACTIONS(5690), + [anon_sym_expand] = ACTIONS(5690), + [anon_sym_for] = ACTIONS(5690), + [anon_sym_match] = ACTIONS(5690), + [anon_sym_DOT_DOT] = ACTIONS(5690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5688), + [anon_sym_orelse] = ACTIONS(5690), + [anon_sym_or] = ACTIONS(5690), + [anon_sym_and] = ACTIONS(5690), + [anon_sym_EQ_EQ] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5688), + [anon_sym_LT] = ACTIONS(5690), + [anon_sym_LT_EQ] = ACTIONS(5688), + [anon_sym_GT] = ACTIONS(5690), + [anon_sym_GT_EQ] = ACTIONS(5688), + [anon_sym_AMP] = ACTIONS(5690), + [anon_sym_xor] = ACTIONS(5690), + [anon_sym_LT_LT] = ACTIONS(5690), + [anon_sym_GT_GT] = ACTIONS(5690), + [anon_sym_LT_LT_PIPE] = ACTIONS(5690), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_SLASH] = ACTIONS(5690), + [anon_sym_catch] = ACTIONS(5690), + [anon_sym_TILDE] = ACTIONS(5688), + [anon_sym_try] = ACTIONS(5690), + [anon_sym_DOT] = ACTIONS(5690), + [anon_sym_CARET] = ACTIONS(5688), + [anon_sym_true] = ACTIONS(5690), + [anon_sym_false] = ACTIONS(5690), + [anon_sym_null] = ACTIONS(5690), + [anon_sym_unreachable] = ACTIONS(5690), + [anon_sym_undefined] = ACTIONS(5690), + [sym_sink] = ACTIONS(5690), + [sym_integer] = ACTIONS(5690), + [sym_float] = ACTIONS(5688), + [anon_sym_DQUOTE] = ACTIONS(5688), + [sym_multiline_string] = ACTIONS(5688), + [sym_character] = ACTIONS(5688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5688), + }, + [STATE(3021)] = { + [sym_identifier] = ACTIONS(4874), + [anon_sym_func] = ACTIONS(4874), + [anon_sym_c_func] = ACTIONS(4874), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_struct] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4874), + [anon_sym_struct_type_BANG] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_void] = ACTIONS(4874), + [anon_sym_noreturn] = ACTIONS(4874), + [anon_sym_type] = ACTIONS(4874), + [anon_sym_anyopaque] = ACTIONS(4874), + [anon_sym_bool] = ACTIONS(4874), + [anon_sym_int] = ACTIONS(4874), + [anon_sym_uint] = ACTIONS(4874), + [anon_sym_float] = ACTIONS(4874), + [anon_sym_range] = ACTIONS(4874), + [anon_sym_i8] = ACTIONS(4874), + [anon_sym_i16] = ACTIONS(4874), + [anon_sym_i32] = ACTIONS(4874), + [anon_sym_i64] = ACTIONS(4874), + [anon_sym_u8] = ACTIONS(4874), + [anon_sym_u16] = ACTIONS(4874), + [anon_sym_u32] = ACTIONS(4874), + [anon_sym_u64] = ACTIONS(4874), + [anon_sym_isize] = ACTIONS(4874), + [anon_sym_usize] = ACTIONS(4874), + [anon_sym_f32] = ACTIONS(4874), + [anon_sym_f64] = ACTIONS(4874), + [anon_sym_c_char] = ACTIONS(4874), + [anon_sym_c_schar] = ACTIONS(4874), + [anon_sym_c_uchar] = ACTIONS(4874), + [anon_sym_c_short] = ACTIONS(4874), + [anon_sym_c_ushort] = ACTIONS(4874), + [anon_sym_c_int] = ACTIONS(4874), + [anon_sym_c_uint] = ACTIONS(4874), + [anon_sym_c_long] = ACTIONS(4874), + [anon_sym_c_ulong] = ACTIONS(4874), + [anon_sym_c_longlong] = ACTIONS(4874), + [anon_sym_c_ulonglong] = ACTIONS(4874), + [anon_sym_c_float] = ACTIONS(4874), + [anon_sym_c_double] = ACTIONS(4874), + [anon_sym_c_longdouble] = ACTIONS(4874), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_AMP_EQ] = ACTIONS(4872), + [anon_sym_PIPE_EQ] = ACTIONS(4872), + [anon_sym_xor_EQ] = ACTIONS(4872), + [anon_sym_LT_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_GT_EQ] = ACTIONS(4872), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4872), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_yield] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_defer] = ACTIONS(4874), + [anon_sym_errdefer] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_expand] = ACTIONS(4874), + [anon_sym_for] = ACTIONS(4874), + [anon_sym_match] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4872), + [anon_sym_orelse] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_xor] = ACTIONS(4874), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4874), + [anon_sym_LT_LT_PIPE] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_catch] = ACTIONS(4874), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_unreachable] = ACTIONS(4874), + [anon_sym_undefined] = ACTIONS(4874), + [sym_sink] = ACTIONS(4874), + [sym_integer] = ACTIONS(4874), + [sym_float] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [sym_multiline_string] = ACTIONS(4872), + [sym_character] = ACTIONS(4872), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4872), + }, + [STATE(3022)] = { + [sym_identifier] = ACTIONS(4420), + [anon_sym_func] = ACTIONS(4420), + [anon_sym_c_func] = ACTIONS(4420), + [anon_sym_BANG] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_DOLLAR] = ACTIONS(4418), + [anon_sym_PIPE] = ACTIONS(4420), + [anon_sym_struct_type_BANG] = ACTIONS(4418), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_void] = ACTIONS(4420), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_AMP_EQ] = ACTIONS(4418), + [anon_sym_PIPE_EQ] = ACTIONS(4418), + [anon_sym_xor_EQ] = ACTIONS(4418), + [anon_sym_LT_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_GT_EQ] = ACTIONS(4418), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4418), + [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_DOT_DOT] = ACTIONS(4420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), + [anon_sym_orelse] = ACTIONS(4420), + [anon_sym_or] = ACTIONS(4420), + [anon_sym_and] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_xor] = ACTIONS(4420), + [anon_sym_LT_LT] = ACTIONS(4420), + [anon_sym_GT_GT] = ACTIONS(4420), + [anon_sym_LT_LT_PIPE] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_SLASH] = ACTIONS(4420), + [anon_sym_catch] = ACTIONS(4420), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4420), + [anon_sym_false] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(4420), + [anon_sym_unreachable] = ACTIONS(4420), + [anon_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(3023)] = { + [sym_identifier] = ACTIONS(4424), + [anon_sym_func] = ACTIONS(4424), + [anon_sym_c_func] = ACTIONS(4424), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_COMMA] = ACTIONS(4422), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_DOLLAR] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(4424), + [anon_sym_struct_type_BANG] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_void] = ACTIONS(4424), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4422), + [anon_sym_DASH_EQ] = ACTIONS(4422), + [anon_sym_STAR_EQ] = ACTIONS(4422), + [anon_sym_SLASH_EQ] = ACTIONS(4422), + [anon_sym_AMP_EQ] = ACTIONS(4422), + [anon_sym_PIPE_EQ] = ACTIONS(4422), + [anon_sym_xor_EQ] = ACTIONS(4422), + [anon_sym_LT_LT_EQ] = ACTIONS(4422), + [anon_sym_GT_GT_EQ] = ACTIONS(4422), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4422), + [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_DOT_DOT] = ACTIONS(4424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4422), + [anon_sym_orelse] = ACTIONS(4424), + [anon_sym_or] = ACTIONS(4424), + [anon_sym_and] = ACTIONS(4424), + [anon_sym_EQ_EQ] = ACTIONS(4422), + [anon_sym_BANG_EQ] = ACTIONS(4422), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_LT_EQ] = ACTIONS(4422), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_GT_EQ] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_xor] = ACTIONS(4424), + [anon_sym_LT_LT] = ACTIONS(4424), + [anon_sym_GT_GT] = ACTIONS(4424), + [anon_sym_LT_LT_PIPE] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_catch] = ACTIONS(4424), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_unreachable] = ACTIONS(4424), + [anon_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(3024)] = { + [sym_identifier] = ACTIONS(4438), + [anon_sym_func] = ACTIONS(4438), + [anon_sym_c_func] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_LPAREN] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_COMMA] = ACTIONS(4436), + [anon_sym_RBRACE] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_DOLLAR] = ACTIONS(4436), + [anon_sym_PIPE] = ACTIONS(4438), + [anon_sym_struct_type_BANG] = ACTIONS(4436), + [anon_sym_QMARK] = ACTIONS(4436), + [anon_sym_AT] = ACTIONS(4436), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_void] = ACTIONS(4438), + [anon_sym_noreturn] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_anyopaque] = ACTIONS(4438), + [anon_sym_bool] = ACTIONS(4438), + [anon_sym_int] = ACTIONS(4438), + [anon_sym_uint] = ACTIONS(4438), + [anon_sym_float] = ACTIONS(4438), + [anon_sym_range] = ACTIONS(4438), + [anon_sym_i8] = ACTIONS(4438), + [anon_sym_i16] = ACTIONS(4438), + [anon_sym_i32] = ACTIONS(4438), + [anon_sym_i64] = ACTIONS(4438), + [anon_sym_u8] = ACTIONS(4438), + [anon_sym_u16] = ACTIONS(4438), + [anon_sym_u32] = ACTIONS(4438), + [anon_sym_u64] = ACTIONS(4438), + [anon_sym_isize] = ACTIONS(4438), + [anon_sym_usize] = ACTIONS(4438), + [anon_sym_f32] = ACTIONS(4438), + [anon_sym_f64] = ACTIONS(4438), + [anon_sym_c_char] = ACTIONS(4438), + [anon_sym_c_schar] = ACTIONS(4438), + [anon_sym_c_uchar] = ACTIONS(4438), + [anon_sym_c_short] = ACTIONS(4438), + [anon_sym_c_ushort] = ACTIONS(4438), + [anon_sym_c_int] = ACTIONS(4438), + [anon_sym_c_uint] = ACTIONS(4438), + [anon_sym_c_long] = ACTIONS(4438), + [anon_sym_c_ulong] = ACTIONS(4438), + [anon_sym_c_longlong] = ACTIONS(4438), + [anon_sym_c_ulonglong] = ACTIONS(4438), + [anon_sym_c_float] = ACTIONS(4438), + [anon_sym_c_double] = ACTIONS(4438), + [anon_sym_c_longdouble] = ACTIONS(4438), + [anon_sym_PLUS_EQ] = ACTIONS(4436), + [anon_sym_DASH_EQ] = ACTIONS(4436), + [anon_sym_STAR_EQ] = ACTIONS(4436), + [anon_sym_SLASH_EQ] = ACTIONS(4436), + [anon_sym_AMP_EQ] = ACTIONS(4436), + [anon_sym_PIPE_EQ] = ACTIONS(4436), + [anon_sym_xor_EQ] = ACTIONS(4436), + [anon_sym_LT_LT_EQ] = ACTIONS(4436), + [anon_sym_GT_GT_EQ] = ACTIONS(4436), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4436), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_yield] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_defer] = ACTIONS(4438), + [anon_sym_errdefer] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_expand] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_match] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4436), + [anon_sym_orelse] = ACTIONS(4438), + [anon_sym_or] = ACTIONS(4438), + [anon_sym_and] = ACTIONS(4438), + [anon_sym_EQ_EQ] = ACTIONS(4436), + [anon_sym_BANG_EQ] = ACTIONS(4436), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_LT_EQ] = ACTIONS(4436), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_GT_EQ] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_xor] = ACTIONS(4438), + [anon_sym_LT_LT] = ACTIONS(4438), + [anon_sym_GT_GT] = ACTIONS(4438), + [anon_sym_LT_LT_PIPE] = ACTIONS(4438), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_catch] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4436), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4436), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_unreachable] = ACTIONS(4438), + [anon_sym_undefined] = ACTIONS(4438), + [sym_sink] = ACTIONS(4438), + [sym_integer] = ACTIONS(4438), + [sym_float] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(4436), + [sym_multiline_string] = ACTIONS(4436), + [sym_character] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4436), + }, + [STATE(3025)] = { + [sym_identifier] = ACTIONS(4442), + [anon_sym_func] = ACTIONS(4442), + [anon_sym_c_func] = ACTIONS(4442), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_DOLLAR] = ACTIONS(4440), + [anon_sym_PIPE] = ACTIONS(4442), + [anon_sym_struct_type_BANG] = ACTIONS(4440), + [anon_sym_QMARK] = ACTIONS(4440), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_void] = ACTIONS(4442), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_anyopaque] = ACTIONS(4442), + [anon_sym_bool] = ACTIONS(4442), + [anon_sym_int] = ACTIONS(4442), + [anon_sym_uint] = ACTIONS(4442), + [anon_sym_float] = ACTIONS(4442), + [anon_sym_range] = ACTIONS(4442), + [anon_sym_i8] = ACTIONS(4442), + [anon_sym_i16] = ACTIONS(4442), + [anon_sym_i32] = ACTIONS(4442), + [anon_sym_i64] = ACTIONS(4442), + [anon_sym_u8] = ACTIONS(4442), + [anon_sym_u16] = ACTIONS(4442), + [anon_sym_u32] = ACTIONS(4442), + [anon_sym_u64] = ACTIONS(4442), + [anon_sym_isize] = ACTIONS(4442), + [anon_sym_usize] = ACTIONS(4442), + [anon_sym_f32] = ACTIONS(4442), + [anon_sym_f64] = ACTIONS(4442), + [anon_sym_c_char] = ACTIONS(4442), + [anon_sym_c_schar] = ACTIONS(4442), + [anon_sym_c_uchar] = ACTIONS(4442), + [anon_sym_c_short] = ACTIONS(4442), + [anon_sym_c_ushort] = ACTIONS(4442), + [anon_sym_c_int] = ACTIONS(4442), + [anon_sym_c_uint] = ACTIONS(4442), + [anon_sym_c_long] = ACTIONS(4442), + [anon_sym_c_ulong] = ACTIONS(4442), + [anon_sym_c_longlong] = ACTIONS(4442), + [anon_sym_c_ulonglong] = ACTIONS(4442), + [anon_sym_c_float] = ACTIONS(4442), + [anon_sym_c_double] = ACTIONS(4442), + [anon_sym_c_longdouble] = ACTIONS(4442), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_AMP_EQ] = ACTIONS(4440), + [anon_sym_PIPE_EQ] = ACTIONS(4440), + [anon_sym_xor_EQ] = ACTIONS(4440), + [anon_sym_LT_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_GT_EQ] = ACTIONS(4440), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4440), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_yield] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_defer] = ACTIONS(4442), + [anon_sym_errdefer] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_expand] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_match] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4440), + [anon_sym_orelse] = ACTIONS(4442), + [anon_sym_or] = ACTIONS(4442), + [anon_sym_and] = ACTIONS(4442), + [anon_sym_EQ_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_xor] = ACTIONS(4442), + [anon_sym_LT_LT] = ACTIONS(4442), + [anon_sym_GT_GT] = ACTIONS(4442), + [anon_sym_LT_LT_PIPE] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_catch] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4440), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_unreachable] = ACTIONS(4442), + [anon_sym_undefined] = ACTIONS(4442), + [sym_sink] = ACTIONS(4442), + [sym_integer] = ACTIONS(4442), + [sym_float] = ACTIONS(4440), + [anon_sym_DQUOTE] = ACTIONS(4440), + [sym_multiline_string] = ACTIONS(4440), + [sym_character] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4440), + }, + [STATE(3026)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_c_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(3027)] = { + [sym_identifier] = ACTIONS(5386), + [anon_sym_func] = ACTIONS(5386), + [anon_sym_c_func] = ACTIONS(5386), + [anon_sym_BANG] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_struct] = ACTIONS(5386), + [anon_sym_LPAREN] = ACTIONS(5384), + [anon_sym_LBRACE] = ACTIONS(5384), + [anon_sym_COMMA] = ACTIONS(5384), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5386), + [anon_sym_struct_type_BANG] = ACTIONS(5384), + [anon_sym_QMARK] = ACTIONS(5384), + [anon_sym_AT] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5384), + [anon_sym_void] = ACTIONS(5386), + [anon_sym_noreturn] = ACTIONS(5386), + [anon_sym_type] = ACTIONS(5386), + [anon_sym_anyopaque] = ACTIONS(5386), + [anon_sym_bool] = ACTIONS(5386), + [anon_sym_int] = ACTIONS(5386), + [anon_sym_uint] = ACTIONS(5386), + [anon_sym_float] = ACTIONS(5386), + [anon_sym_range] = ACTIONS(5386), + [anon_sym_i8] = ACTIONS(5386), + [anon_sym_i16] = ACTIONS(5386), + [anon_sym_i32] = ACTIONS(5386), + [anon_sym_i64] = ACTIONS(5386), + [anon_sym_u8] = ACTIONS(5386), + [anon_sym_u16] = ACTIONS(5386), + [anon_sym_u32] = ACTIONS(5386), + [anon_sym_u64] = ACTIONS(5386), + [anon_sym_isize] = ACTIONS(5386), + [anon_sym_usize] = ACTIONS(5386), + [anon_sym_f32] = ACTIONS(5386), + [anon_sym_f64] = ACTIONS(5386), + [anon_sym_c_char] = ACTIONS(5386), + [anon_sym_c_schar] = ACTIONS(5386), + [anon_sym_c_uchar] = ACTIONS(5386), + [anon_sym_c_short] = ACTIONS(5386), + [anon_sym_c_ushort] = ACTIONS(5386), + [anon_sym_c_int] = ACTIONS(5386), + [anon_sym_c_uint] = ACTIONS(5386), + [anon_sym_c_long] = ACTIONS(5386), + [anon_sym_c_ulong] = ACTIONS(5386), + [anon_sym_c_longlong] = ACTIONS(5386), + [anon_sym_c_ulonglong] = ACTIONS(5386), + [anon_sym_c_float] = ACTIONS(5386), + [anon_sym_c_double] = ACTIONS(5386), + [anon_sym_c_longdouble] = ACTIONS(5386), + [anon_sym_PLUS_EQ] = ACTIONS(5384), + [anon_sym_DASH_EQ] = ACTIONS(5384), + [anon_sym_STAR_EQ] = ACTIONS(5384), + [anon_sym_SLASH_EQ] = ACTIONS(5384), + [anon_sym_AMP_EQ] = ACTIONS(5384), + [anon_sym_PIPE_EQ] = ACTIONS(5384), + [anon_sym_xor_EQ] = ACTIONS(5384), + [anon_sym_LT_LT_EQ] = ACTIONS(5384), + [anon_sym_GT_GT_EQ] = ACTIONS(5384), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5384), + [anon_sym_return] = ACTIONS(5386), + [anon_sym_yield] = ACTIONS(5386), + [anon_sym_break] = ACTIONS(5386), + [anon_sym_continue] = ACTIONS(5386), + [anon_sym_defer] = ACTIONS(5386), + [anon_sym_errdefer] = ACTIONS(5386), + [anon_sym_if] = ACTIONS(5386), + [anon_sym_else] = ACTIONS(5386), + [anon_sym_while] = ACTIONS(5386), + [anon_sym_expand] = ACTIONS(5386), + [anon_sym_for] = ACTIONS(5386), + [anon_sym_match] = ACTIONS(5386), + [anon_sym_DOT_DOT] = ACTIONS(5386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5384), + [anon_sym_orelse] = ACTIONS(5386), + [anon_sym_or] = ACTIONS(5386), + [anon_sym_and] = ACTIONS(5386), + [anon_sym_EQ_EQ] = ACTIONS(5384), + [anon_sym_BANG_EQ] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_EQ] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5386), + [anon_sym_GT_EQ] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(5386), + [anon_sym_xor] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(5386), + [anon_sym_GT_GT] = ACTIONS(5386), + [anon_sym_LT_LT_PIPE] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5386), + [anon_sym_SLASH] = ACTIONS(5386), + [anon_sym_catch] = ACTIONS(5386), + [anon_sym_TILDE] = ACTIONS(5384), + [anon_sym_try] = ACTIONS(5386), + [anon_sym_DOT] = ACTIONS(5386), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym_true] = ACTIONS(5386), + [anon_sym_false] = ACTIONS(5386), + [anon_sym_null] = ACTIONS(5386), + [anon_sym_unreachable] = ACTIONS(5386), + [anon_sym_undefined] = ACTIONS(5386), + [sym_sink] = ACTIONS(5386), + [sym_integer] = ACTIONS(5386), + [sym_float] = ACTIONS(5384), + [anon_sym_DQUOTE] = ACTIONS(5384), + [sym_multiline_string] = ACTIONS(5384), + [sym_character] = ACTIONS(5384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5384), + }, + [STATE(3028)] = { + [sym_identifier] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_c_func] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_EQ] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(4502), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_DOLLAR] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4504), + [anon_sym_struct_type_BANG] = ACTIONS(4502), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4502), + [anon_sym_DASH_EQ] = ACTIONS(4502), + [anon_sym_STAR_EQ] = ACTIONS(4502), + [anon_sym_SLASH_EQ] = ACTIONS(4502), + [anon_sym_AMP_EQ] = ACTIONS(4502), + [anon_sym_PIPE_EQ] = ACTIONS(4502), + [anon_sym_xor_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_EQ] = ACTIONS(4502), + [anon_sym_GT_GT_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_errdefer] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_expand] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4504), + [anon_sym_LT_LT_PIPE] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_SLASH] = ACTIONS(4504), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [anon_sym_true] = ACTIONS(4504), + [anon_sym_false] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_unreachable] = ACTIONS(4504), + [anon_sym_undefined] = ACTIONS(4504), + [sym_sink] = ACTIONS(4504), + [sym_integer] = ACTIONS(4504), + [sym_float] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_multiline_string] = ACTIONS(4502), + [sym_character] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(3029)] = { + [sym_identifier] = ACTIONS(4878), + [anon_sym_func] = ACTIONS(4878), + [anon_sym_c_func] = ACTIONS(4878), + [anon_sym_BANG] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_struct] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4878), + [anon_sym_struct_type_BANG] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_void] = ACTIONS(4878), + [anon_sym_noreturn] = ACTIONS(4878), + [anon_sym_type] = ACTIONS(4878), + [anon_sym_anyopaque] = ACTIONS(4878), + [anon_sym_bool] = ACTIONS(4878), + [anon_sym_int] = ACTIONS(4878), + [anon_sym_uint] = ACTIONS(4878), + [anon_sym_float] = ACTIONS(4878), + [anon_sym_range] = ACTIONS(4878), + [anon_sym_i8] = ACTIONS(4878), + [anon_sym_i16] = ACTIONS(4878), + [anon_sym_i32] = ACTIONS(4878), + [anon_sym_i64] = ACTIONS(4878), + [anon_sym_u8] = ACTIONS(4878), + [anon_sym_u16] = ACTIONS(4878), + [anon_sym_u32] = ACTIONS(4878), + [anon_sym_u64] = ACTIONS(4878), + [anon_sym_isize] = ACTIONS(4878), + [anon_sym_usize] = ACTIONS(4878), + [anon_sym_f32] = ACTIONS(4878), + [anon_sym_f64] = ACTIONS(4878), + [anon_sym_c_char] = ACTIONS(4878), + [anon_sym_c_schar] = ACTIONS(4878), + [anon_sym_c_uchar] = ACTIONS(4878), + [anon_sym_c_short] = ACTIONS(4878), + [anon_sym_c_ushort] = ACTIONS(4878), + [anon_sym_c_int] = ACTIONS(4878), + [anon_sym_c_uint] = ACTIONS(4878), + [anon_sym_c_long] = ACTIONS(4878), + [anon_sym_c_ulong] = ACTIONS(4878), + [anon_sym_c_longlong] = ACTIONS(4878), + [anon_sym_c_ulonglong] = ACTIONS(4878), + [anon_sym_c_float] = ACTIONS(4878), + [anon_sym_c_double] = ACTIONS(4878), + [anon_sym_c_longdouble] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_AMP_EQ] = ACTIONS(4876), + [anon_sym_PIPE_EQ] = ACTIONS(4876), + [anon_sym_xor_EQ] = ACTIONS(4876), + [anon_sym_LT_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_GT_EQ] = ACTIONS(4876), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4876), + [anon_sym_return] = ACTIONS(4878), + [anon_sym_yield] = ACTIONS(4878), + [anon_sym_break] = ACTIONS(4878), + [anon_sym_continue] = ACTIONS(4878), + [anon_sym_defer] = ACTIONS(4878), + [anon_sym_errdefer] = ACTIONS(4878), + [anon_sym_if] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_while] = ACTIONS(4878), + [anon_sym_expand] = ACTIONS(4878), + [anon_sym_for] = ACTIONS(4878), + [anon_sym_match] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4876), + [anon_sym_orelse] = ACTIONS(4878), + [anon_sym_or] = ACTIONS(4878), + [anon_sym_and] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_xor] = ACTIONS(4878), + [anon_sym_LT_LT] = ACTIONS(4878), + [anon_sym_GT_GT] = ACTIONS(4878), + [anon_sym_LT_LT_PIPE] = ACTIONS(4878), + [anon_sym_PLUS] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4878), + [anon_sym_catch] = ACTIONS(4878), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_try] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4878), + [anon_sym_false] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4878), + [anon_sym_unreachable] = ACTIONS(4878), + [anon_sym_undefined] = ACTIONS(4878), + [sym_sink] = ACTIONS(4878), + [sym_integer] = ACTIONS(4878), + [sym_float] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [sym_multiline_string] = ACTIONS(4876), + [sym_character] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4876), + }, + [STATE(3030)] = { + [sym_identifier] = ACTIONS(4882), + [anon_sym_func] = ACTIONS(4882), + [anon_sym_c_func] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_struct] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_struct_type_BANG] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_void] = ACTIONS(4882), + [anon_sym_noreturn] = ACTIONS(4882), + [anon_sym_type] = ACTIONS(4882), + [anon_sym_anyopaque] = ACTIONS(4882), + [anon_sym_bool] = ACTIONS(4882), + [anon_sym_int] = ACTIONS(4882), + [anon_sym_uint] = ACTIONS(4882), + [anon_sym_float] = ACTIONS(4882), + [anon_sym_range] = ACTIONS(4882), + [anon_sym_i8] = ACTIONS(4882), + [anon_sym_i16] = ACTIONS(4882), + [anon_sym_i32] = ACTIONS(4882), + [anon_sym_i64] = ACTIONS(4882), + [anon_sym_u8] = ACTIONS(4882), + [anon_sym_u16] = ACTIONS(4882), + [anon_sym_u32] = ACTIONS(4882), + [anon_sym_u64] = ACTIONS(4882), + [anon_sym_isize] = ACTIONS(4882), + [anon_sym_usize] = ACTIONS(4882), + [anon_sym_f32] = ACTIONS(4882), + [anon_sym_f64] = ACTIONS(4882), + [anon_sym_c_char] = ACTIONS(4882), + [anon_sym_c_schar] = ACTIONS(4882), + [anon_sym_c_uchar] = ACTIONS(4882), + [anon_sym_c_short] = ACTIONS(4882), + [anon_sym_c_ushort] = ACTIONS(4882), + [anon_sym_c_int] = ACTIONS(4882), + [anon_sym_c_uint] = ACTIONS(4882), + [anon_sym_c_long] = ACTIONS(4882), + [anon_sym_c_ulong] = ACTIONS(4882), + [anon_sym_c_longlong] = ACTIONS(4882), + [anon_sym_c_ulonglong] = ACTIONS(4882), + [anon_sym_c_float] = ACTIONS(4882), + [anon_sym_c_double] = ACTIONS(4882), + [anon_sym_c_longdouble] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_AMP_EQ] = ACTIONS(4880), + [anon_sym_PIPE_EQ] = ACTIONS(4880), + [anon_sym_xor_EQ] = ACTIONS(4880), + [anon_sym_LT_LT_EQ] = ACTIONS(4880), + [anon_sym_GT_GT_EQ] = ACTIONS(4880), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4882), + [anon_sym_yield] = ACTIONS(4882), + [anon_sym_break] = ACTIONS(4882), + [anon_sym_continue] = ACTIONS(4882), + [anon_sym_defer] = ACTIONS(4882), + [anon_sym_errdefer] = ACTIONS(4882), + [anon_sym_if] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_while] = ACTIONS(4882), + [anon_sym_expand] = ACTIONS(4882), + [anon_sym_for] = ACTIONS(4882), + [anon_sym_match] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4880), + [anon_sym_orelse] = ACTIONS(4882), + [anon_sym_or] = ACTIONS(4882), + [anon_sym_and] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_xor] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4882), + [anon_sym_GT_GT] = ACTIONS(4882), + [anon_sym_LT_LT_PIPE] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_catch] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_unreachable] = ACTIONS(4882), + [anon_sym_undefined] = ACTIONS(4882), + [sym_sink] = ACTIONS(4882), + [sym_integer] = ACTIONS(4882), + [sym_float] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [sym_multiline_string] = ACTIONS(4880), + [sym_character] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4880), + }, + [STATE(3031)] = { + [sym_identifier] = ACTIONS(4886), + [anon_sym_func] = ACTIONS(4886), + [anon_sym_c_func] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4886), + [anon_sym_struct] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4886), + [anon_sym_struct_type_BANG] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_void] = ACTIONS(4886), + [anon_sym_noreturn] = ACTIONS(4886), + [anon_sym_type] = ACTIONS(4886), + [anon_sym_anyopaque] = ACTIONS(4886), + [anon_sym_bool] = ACTIONS(4886), + [anon_sym_int] = ACTIONS(4886), + [anon_sym_uint] = ACTIONS(4886), + [anon_sym_float] = ACTIONS(4886), + [anon_sym_range] = ACTIONS(4886), + [anon_sym_i8] = ACTIONS(4886), + [anon_sym_i16] = ACTIONS(4886), + [anon_sym_i32] = ACTIONS(4886), + [anon_sym_i64] = ACTIONS(4886), + [anon_sym_u8] = ACTIONS(4886), + [anon_sym_u16] = ACTIONS(4886), + [anon_sym_u32] = ACTIONS(4886), + [anon_sym_u64] = ACTIONS(4886), + [anon_sym_isize] = ACTIONS(4886), + [anon_sym_usize] = ACTIONS(4886), + [anon_sym_f32] = ACTIONS(4886), + [anon_sym_f64] = ACTIONS(4886), + [anon_sym_c_char] = ACTIONS(4886), + [anon_sym_c_schar] = ACTIONS(4886), + [anon_sym_c_uchar] = ACTIONS(4886), + [anon_sym_c_short] = ACTIONS(4886), + [anon_sym_c_ushort] = ACTIONS(4886), + [anon_sym_c_int] = ACTIONS(4886), + [anon_sym_c_uint] = ACTIONS(4886), + [anon_sym_c_long] = ACTIONS(4886), + [anon_sym_c_ulong] = ACTIONS(4886), + [anon_sym_c_longlong] = ACTIONS(4886), + [anon_sym_c_ulonglong] = ACTIONS(4886), + [anon_sym_c_float] = ACTIONS(4886), + [anon_sym_c_double] = ACTIONS(4886), + [anon_sym_c_longdouble] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4884), + [anon_sym_DASH_EQ] = ACTIONS(4884), + [anon_sym_STAR_EQ] = ACTIONS(4884), + [anon_sym_SLASH_EQ] = ACTIONS(4884), + [anon_sym_AMP_EQ] = ACTIONS(4884), + [anon_sym_PIPE_EQ] = ACTIONS(4884), + [anon_sym_xor_EQ] = ACTIONS(4884), + [anon_sym_LT_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_GT_EQ] = ACTIONS(4884), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4886), + [anon_sym_yield] = ACTIONS(4886), + [anon_sym_break] = ACTIONS(4886), + [anon_sym_continue] = ACTIONS(4886), + [anon_sym_defer] = ACTIONS(4886), + [anon_sym_errdefer] = ACTIONS(4886), + [anon_sym_if] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_while] = ACTIONS(4886), + [anon_sym_expand] = ACTIONS(4886), + [anon_sym_for] = ACTIONS(4886), + [anon_sym_match] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), + [anon_sym_orelse] = ACTIONS(4886), + [anon_sym_or] = ACTIONS(4886), + [anon_sym_and] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_xor] = ACTIONS(4886), + [anon_sym_LT_LT] = ACTIONS(4886), + [anon_sym_GT_GT] = ACTIONS(4886), + [anon_sym_LT_LT_PIPE] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_catch] = ACTIONS(4886), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4884), + [anon_sym_true] = ACTIONS(4886), + [anon_sym_false] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4886), + [anon_sym_unreachable] = ACTIONS(4886), + [anon_sym_undefined] = ACTIONS(4886), + [sym_sink] = ACTIONS(4886), + [sym_integer] = ACTIONS(4886), + [sym_float] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [sym_multiline_string] = ACTIONS(4884), + [sym_character] = ACTIONS(4884), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4884), + }, + [STATE(3032)] = { + [sym_identifier] = ACTIONS(4890), + [anon_sym_func] = ACTIONS(4890), + [anon_sym_c_func] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4890), + [anon_sym_EQ] = ACTIONS(4890), + [anon_sym_struct] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4890), + [anon_sym_struct_type_BANG] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_void] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym_type] = ACTIONS(4890), + [anon_sym_anyopaque] = ACTIONS(4890), + [anon_sym_bool] = ACTIONS(4890), + [anon_sym_int] = ACTIONS(4890), + [anon_sym_uint] = ACTIONS(4890), + [anon_sym_float] = ACTIONS(4890), + [anon_sym_range] = ACTIONS(4890), + [anon_sym_i8] = ACTIONS(4890), + [anon_sym_i16] = ACTIONS(4890), + [anon_sym_i32] = ACTIONS(4890), + [anon_sym_i64] = ACTIONS(4890), + [anon_sym_u8] = ACTIONS(4890), + [anon_sym_u16] = ACTIONS(4890), + [anon_sym_u32] = ACTIONS(4890), + [anon_sym_u64] = ACTIONS(4890), + [anon_sym_isize] = ACTIONS(4890), + [anon_sym_usize] = ACTIONS(4890), + [anon_sym_f32] = ACTIONS(4890), + [anon_sym_f64] = ACTIONS(4890), + [anon_sym_c_char] = ACTIONS(4890), + [anon_sym_c_schar] = ACTIONS(4890), + [anon_sym_c_uchar] = ACTIONS(4890), + [anon_sym_c_short] = ACTIONS(4890), + [anon_sym_c_ushort] = ACTIONS(4890), + [anon_sym_c_int] = ACTIONS(4890), + [anon_sym_c_uint] = ACTIONS(4890), + [anon_sym_c_long] = ACTIONS(4890), + [anon_sym_c_ulong] = ACTIONS(4890), + [anon_sym_c_longlong] = ACTIONS(4890), + [anon_sym_c_ulonglong] = ACTIONS(4890), + [anon_sym_c_float] = ACTIONS(4890), + [anon_sym_c_double] = ACTIONS(4890), + [anon_sym_c_longdouble] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4888), + [anon_sym_DASH_EQ] = ACTIONS(4888), + [anon_sym_STAR_EQ] = ACTIONS(4888), + [anon_sym_SLASH_EQ] = ACTIONS(4888), + [anon_sym_AMP_EQ] = ACTIONS(4888), + [anon_sym_PIPE_EQ] = ACTIONS(4888), + [anon_sym_xor_EQ] = ACTIONS(4888), + [anon_sym_LT_LT_EQ] = ACTIONS(4888), + [anon_sym_GT_GT_EQ] = ACTIONS(4888), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4888), + [anon_sym_return] = ACTIONS(4890), + [anon_sym_yield] = ACTIONS(4890), + [anon_sym_break] = ACTIONS(4890), + [anon_sym_continue] = ACTIONS(4890), + [anon_sym_defer] = ACTIONS(4890), + [anon_sym_errdefer] = ACTIONS(4890), + [anon_sym_if] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_while] = ACTIONS(4890), + [anon_sym_expand] = ACTIONS(4890), + [anon_sym_for] = ACTIONS(4890), + [anon_sym_match] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), + [anon_sym_orelse] = ACTIONS(4890), + [anon_sym_or] = ACTIONS(4890), + [anon_sym_and] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_xor] = ACTIONS(4890), + [anon_sym_LT_LT] = ACTIONS(4890), + [anon_sym_GT_GT] = ACTIONS(4890), + [anon_sym_LT_LT_PIPE] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_catch] = ACTIONS(4890), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4888), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_unreachable] = ACTIONS(4890), + [anon_sym_undefined] = ACTIONS(4890), + [sym_sink] = ACTIONS(4890), + [sym_integer] = ACTIONS(4890), + [sym_float] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [sym_multiline_string] = ACTIONS(4888), + [sym_character] = ACTIONS(4888), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4888), + }, + [STATE(3033)] = { + [sym_identifier] = ACTIONS(6052), + [anon_sym_func] = ACTIONS(6052), + [anon_sym_c_func] = ACTIONS(6052), + [anon_sym_BANG] = ACTIONS(6052), + [anon_sym_EQ] = ACTIONS(6052), + [anon_sym_struct] = ACTIONS(6052), + [anon_sym_LPAREN] = ACTIONS(6050), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_COMMA] = ACTIONS(6050), + [anon_sym_RBRACE] = ACTIONS(6050), + [anon_sym_DASH] = ACTIONS(6052), + [anon_sym_DOLLAR] = ACTIONS(6050), + [anon_sym_PIPE] = ACTIONS(6052), + [anon_sym_struct_type_BANG] = ACTIONS(6050), + [anon_sym_QMARK] = ACTIONS(6050), + [anon_sym_AT] = ACTIONS(6050), + [anon_sym_STAR] = ACTIONS(6052), + [anon_sym_LBRACK] = ACTIONS(6050), + [anon_sym_void] = ACTIONS(6052), + [anon_sym_noreturn] = ACTIONS(6052), + [anon_sym_type] = ACTIONS(6052), + [anon_sym_anyopaque] = ACTIONS(6052), + [anon_sym_bool] = ACTIONS(6052), + [anon_sym_int] = ACTIONS(6052), + [anon_sym_uint] = ACTIONS(6052), + [anon_sym_float] = ACTIONS(6052), + [anon_sym_range] = ACTIONS(6052), + [anon_sym_i8] = ACTIONS(6052), + [anon_sym_i16] = ACTIONS(6052), + [anon_sym_i32] = ACTIONS(6052), + [anon_sym_i64] = ACTIONS(6052), + [anon_sym_u8] = ACTIONS(6052), + [anon_sym_u16] = ACTIONS(6052), + [anon_sym_u32] = ACTIONS(6052), + [anon_sym_u64] = ACTIONS(6052), + [anon_sym_isize] = ACTIONS(6052), + [anon_sym_usize] = ACTIONS(6052), + [anon_sym_f32] = ACTIONS(6052), + [anon_sym_f64] = ACTIONS(6052), + [anon_sym_c_char] = ACTIONS(6052), + [anon_sym_c_schar] = ACTIONS(6052), + [anon_sym_c_uchar] = ACTIONS(6052), + [anon_sym_c_short] = ACTIONS(6052), + [anon_sym_c_ushort] = ACTIONS(6052), + [anon_sym_c_int] = ACTIONS(6052), + [anon_sym_c_uint] = ACTIONS(6052), + [anon_sym_c_long] = ACTIONS(6052), + [anon_sym_c_ulong] = ACTIONS(6052), + [anon_sym_c_longlong] = ACTIONS(6052), + [anon_sym_c_ulonglong] = ACTIONS(6052), + [anon_sym_c_float] = ACTIONS(6052), + [anon_sym_c_double] = ACTIONS(6052), + [anon_sym_c_longdouble] = ACTIONS(6052), + [anon_sym_PLUS_EQ] = ACTIONS(6050), + [anon_sym_DASH_EQ] = ACTIONS(6050), + [anon_sym_STAR_EQ] = ACTIONS(6050), + [anon_sym_SLASH_EQ] = ACTIONS(6050), + [anon_sym_AMP_EQ] = ACTIONS(6050), + [anon_sym_PIPE_EQ] = ACTIONS(6050), + [anon_sym_xor_EQ] = ACTIONS(6050), + [anon_sym_LT_LT_EQ] = ACTIONS(6050), + [anon_sym_GT_GT_EQ] = ACTIONS(6050), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6050), + [anon_sym_return] = ACTIONS(6052), + [anon_sym_yield] = ACTIONS(6052), + [anon_sym_break] = ACTIONS(6052), + [anon_sym_continue] = ACTIONS(6052), + [anon_sym_defer] = ACTIONS(6052), + [anon_sym_errdefer] = ACTIONS(6052), + [anon_sym_if] = ACTIONS(6052), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_while] = ACTIONS(6052), + [anon_sym_expand] = ACTIONS(6052), + [anon_sym_for] = ACTIONS(6052), + [anon_sym_match] = ACTIONS(6052), + [anon_sym_DOT_DOT] = ACTIONS(6052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6050), + [anon_sym_orelse] = ACTIONS(6052), + [anon_sym_or] = ACTIONS(6052), + [anon_sym_and] = ACTIONS(6052), + [anon_sym_EQ_EQ] = ACTIONS(6050), + [anon_sym_BANG_EQ] = ACTIONS(6050), + [anon_sym_LT] = ACTIONS(6052), + [anon_sym_LT_EQ] = ACTIONS(6050), + [anon_sym_GT] = ACTIONS(6052), + [anon_sym_GT_EQ] = ACTIONS(6050), + [anon_sym_AMP] = ACTIONS(6052), + [anon_sym_xor] = ACTIONS(6052), + [anon_sym_LT_LT] = ACTIONS(6052), + [anon_sym_GT_GT] = ACTIONS(6052), + [anon_sym_LT_LT_PIPE] = ACTIONS(6052), + [anon_sym_PLUS] = ACTIONS(6052), + [anon_sym_SLASH] = ACTIONS(6052), + [anon_sym_catch] = ACTIONS(6052), + [anon_sym_TILDE] = ACTIONS(6050), + [anon_sym_try] = ACTIONS(6052), + [anon_sym_DOT] = ACTIONS(6052), + [anon_sym_CARET] = ACTIONS(6050), + [anon_sym_true] = ACTIONS(6052), + [anon_sym_false] = ACTIONS(6052), + [anon_sym_null] = ACTIONS(6052), + [anon_sym_unreachable] = ACTIONS(6052), + [anon_sym_undefined] = ACTIONS(6052), + [sym_sink] = ACTIONS(6052), + [sym_integer] = ACTIONS(6052), + [sym_float] = ACTIONS(6050), + [anon_sym_DQUOTE] = ACTIONS(6050), + [sym_multiline_string] = ACTIONS(6050), + [sym_character] = ACTIONS(6050), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6050), + }, + [STATE(3034)] = { + [sym_identifier] = ACTIONS(5780), + [anon_sym_func] = ACTIONS(5780), + [anon_sym_c_func] = ACTIONS(5780), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_EQ] = ACTIONS(5780), + [anon_sym_struct] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(5784), + [anon_sym_COMMA] = ACTIONS(5784), + [anon_sym_RBRACE] = ACTIONS(5784), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5784), + [anon_sym_PIPE] = ACTIONS(5780), + [anon_sym_struct_type_BANG] = ACTIONS(5784), + [anon_sym_QMARK] = ACTIONS(5784), + [anon_sym_AT] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5784), + [anon_sym_void] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym_type] = ACTIONS(5780), + [anon_sym_anyopaque] = ACTIONS(5780), + [anon_sym_bool] = ACTIONS(5780), + [anon_sym_int] = ACTIONS(5780), + [anon_sym_uint] = ACTIONS(5780), + [anon_sym_float] = ACTIONS(5780), + [anon_sym_range] = ACTIONS(5780), + [anon_sym_i8] = ACTIONS(5780), + [anon_sym_i16] = ACTIONS(5780), + [anon_sym_i32] = ACTIONS(5780), + [anon_sym_i64] = ACTIONS(5780), + [anon_sym_u8] = ACTIONS(5780), + [anon_sym_u16] = ACTIONS(5780), + [anon_sym_u32] = ACTIONS(5780), + [anon_sym_u64] = ACTIONS(5780), + [anon_sym_isize] = ACTIONS(5780), + [anon_sym_usize] = ACTIONS(5780), + [anon_sym_f32] = ACTIONS(5780), + [anon_sym_f64] = ACTIONS(5780), + [anon_sym_c_char] = ACTIONS(5780), + [anon_sym_c_schar] = ACTIONS(5780), + [anon_sym_c_uchar] = ACTIONS(5780), + [anon_sym_c_short] = ACTIONS(5780), + [anon_sym_c_ushort] = ACTIONS(5780), + [anon_sym_c_int] = ACTIONS(5780), + [anon_sym_c_uint] = ACTIONS(5780), + [anon_sym_c_long] = ACTIONS(5780), + [anon_sym_c_ulong] = ACTIONS(5780), + [anon_sym_c_longlong] = ACTIONS(5780), + [anon_sym_c_ulonglong] = ACTIONS(5780), + [anon_sym_c_float] = ACTIONS(5780), + [anon_sym_c_double] = ACTIONS(5780), + [anon_sym_c_longdouble] = ACTIONS(5780), + [anon_sym_PLUS_EQ] = ACTIONS(5784), + [anon_sym_DASH_EQ] = ACTIONS(5784), + [anon_sym_STAR_EQ] = ACTIONS(5784), + [anon_sym_SLASH_EQ] = ACTIONS(5784), + [anon_sym_AMP_EQ] = ACTIONS(5784), + [anon_sym_PIPE_EQ] = ACTIONS(5784), + [anon_sym_xor_EQ] = ACTIONS(5784), + [anon_sym_LT_LT_EQ] = ACTIONS(5784), + [anon_sym_GT_GT_EQ] = ACTIONS(5784), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5784), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_defer] = ACTIONS(5780), + [anon_sym_errdefer] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_else] = ACTIONS(5780), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_expand] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5784), + [anon_sym_orelse] = ACTIONS(5780), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5784), + [anon_sym_BANG_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5780), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5780), + [anon_sym_LT_LT_PIPE] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5780), + [anon_sym_SLASH] = ACTIONS(5780), + [anon_sym_catch] = ACTIONS(5780), + [anon_sym_TILDE] = ACTIONS(5784), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5784), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_unreachable] = ACTIONS(5780), + [anon_sym_undefined] = ACTIONS(5780), + [sym_sink] = ACTIONS(5780), + [sym_integer] = ACTIONS(5780), + [sym_float] = ACTIONS(5784), + [anon_sym_DQUOTE] = ACTIONS(5784), + [sym_multiline_string] = ACTIONS(5784), + [sym_character] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5784), + }, + [STATE(3035)] = { + [sym_identifier] = ACTIONS(5732), + [anon_sym_func] = ACTIONS(5732), + [anon_sym_c_func] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5732), + [anon_sym_EQ] = ACTIONS(5732), + [anon_sym_struct] = ACTIONS(5732), + [anon_sym_LPAREN] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_COMMA] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5730), + [anon_sym_DASH] = ACTIONS(5732), + [anon_sym_DOLLAR] = ACTIONS(5730), + [anon_sym_PIPE] = ACTIONS(5732), + [anon_sym_struct_type_BANG] = ACTIONS(5730), + [anon_sym_QMARK] = ACTIONS(5730), + [anon_sym_AT] = ACTIONS(5730), + [anon_sym_STAR] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5730), + [anon_sym_void] = ACTIONS(5732), + [anon_sym_noreturn] = ACTIONS(5732), + [anon_sym_type] = ACTIONS(5732), + [anon_sym_anyopaque] = ACTIONS(5732), + [anon_sym_bool] = ACTIONS(5732), + [anon_sym_int] = ACTIONS(5732), + [anon_sym_uint] = ACTIONS(5732), + [anon_sym_float] = ACTIONS(5732), + [anon_sym_range] = ACTIONS(5732), + [anon_sym_i8] = ACTIONS(5732), + [anon_sym_i16] = ACTIONS(5732), + [anon_sym_i32] = ACTIONS(5732), + [anon_sym_i64] = ACTIONS(5732), + [anon_sym_u8] = ACTIONS(5732), + [anon_sym_u16] = ACTIONS(5732), + [anon_sym_u32] = ACTIONS(5732), + [anon_sym_u64] = ACTIONS(5732), + [anon_sym_isize] = ACTIONS(5732), + [anon_sym_usize] = ACTIONS(5732), + [anon_sym_f32] = ACTIONS(5732), + [anon_sym_f64] = ACTIONS(5732), + [anon_sym_c_char] = ACTIONS(5732), + [anon_sym_c_schar] = ACTIONS(5732), + [anon_sym_c_uchar] = ACTIONS(5732), + [anon_sym_c_short] = ACTIONS(5732), + [anon_sym_c_ushort] = ACTIONS(5732), + [anon_sym_c_int] = ACTIONS(5732), + [anon_sym_c_uint] = ACTIONS(5732), + [anon_sym_c_long] = ACTIONS(5732), + [anon_sym_c_ulong] = ACTIONS(5732), + [anon_sym_c_longlong] = ACTIONS(5732), + [anon_sym_c_ulonglong] = ACTIONS(5732), + [anon_sym_c_float] = ACTIONS(5732), + [anon_sym_c_double] = ACTIONS(5732), + [anon_sym_c_longdouble] = ACTIONS(5732), + [anon_sym_PLUS_EQ] = ACTIONS(5730), + [anon_sym_DASH_EQ] = ACTIONS(5730), + [anon_sym_STAR_EQ] = ACTIONS(5730), + [anon_sym_SLASH_EQ] = ACTIONS(5730), + [anon_sym_AMP_EQ] = ACTIONS(5730), + [anon_sym_PIPE_EQ] = ACTIONS(5730), + [anon_sym_xor_EQ] = ACTIONS(5730), + [anon_sym_LT_LT_EQ] = ACTIONS(5730), + [anon_sym_GT_GT_EQ] = ACTIONS(5730), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5730), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_yield] = ACTIONS(5732), + [anon_sym_break] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [anon_sym_defer] = ACTIONS(5732), + [anon_sym_errdefer] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [anon_sym_else] = ACTIONS(5732), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_expand] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [anon_sym_match] = ACTIONS(5732), + [anon_sym_DOT_DOT] = ACTIONS(5732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5730), + [anon_sym_orelse] = ACTIONS(5732), + [anon_sym_or] = ACTIONS(5732), + [anon_sym_and] = ACTIONS(5732), + [anon_sym_EQ_EQ] = ACTIONS(5730), + [anon_sym_BANG_EQ] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(5732), + [anon_sym_LT_EQ] = ACTIONS(5730), + [anon_sym_GT] = ACTIONS(5732), + [anon_sym_GT_EQ] = ACTIONS(5730), + [anon_sym_AMP] = ACTIONS(5732), + [anon_sym_xor] = ACTIONS(5732), + [anon_sym_LT_LT] = ACTIONS(5732), + [anon_sym_GT_GT] = ACTIONS(5732), + [anon_sym_LT_LT_PIPE] = ACTIONS(5732), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_SLASH] = ACTIONS(5732), + [anon_sym_catch] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5730), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_DOT] = ACTIONS(5732), + [anon_sym_CARET] = ACTIONS(5730), + [anon_sym_true] = ACTIONS(5732), + [anon_sym_false] = ACTIONS(5732), + [anon_sym_null] = ACTIONS(5732), + [anon_sym_unreachable] = ACTIONS(5732), + [anon_sym_undefined] = ACTIONS(5732), + [sym_sink] = ACTIONS(5732), + [sym_integer] = ACTIONS(5732), + [sym_float] = ACTIONS(5730), + [anon_sym_DQUOTE] = ACTIONS(5730), + [sym_multiline_string] = ACTIONS(5730), + [sym_character] = ACTIONS(5730), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5730), + }, + [STATE(3036)] = { + [sym_identifier] = ACTIONS(5736), + [anon_sym_func] = ACTIONS(5736), + [anon_sym_c_func] = ACTIONS(5736), + [anon_sym_BANG] = ACTIONS(5736), + [anon_sym_EQ] = ACTIONS(5736), + [anon_sym_struct] = ACTIONS(5736), + [anon_sym_LPAREN] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_COMMA] = ACTIONS(5734), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_DASH] = ACTIONS(5736), + [anon_sym_DOLLAR] = ACTIONS(5734), + [anon_sym_PIPE] = ACTIONS(5736), + [anon_sym_struct_type_BANG] = ACTIONS(5734), + [anon_sym_QMARK] = ACTIONS(5734), + [anon_sym_AT] = ACTIONS(5734), + [anon_sym_STAR] = ACTIONS(5736), + [anon_sym_LBRACK] = ACTIONS(5734), + [anon_sym_void] = ACTIONS(5736), + [anon_sym_noreturn] = ACTIONS(5736), + [anon_sym_type] = ACTIONS(5736), + [anon_sym_anyopaque] = ACTIONS(5736), + [anon_sym_bool] = ACTIONS(5736), + [anon_sym_int] = ACTIONS(5736), + [anon_sym_uint] = ACTIONS(5736), + [anon_sym_float] = ACTIONS(5736), + [anon_sym_range] = ACTIONS(5736), + [anon_sym_i8] = ACTIONS(5736), + [anon_sym_i16] = ACTIONS(5736), + [anon_sym_i32] = ACTIONS(5736), + [anon_sym_i64] = ACTIONS(5736), + [anon_sym_u8] = ACTIONS(5736), + [anon_sym_u16] = ACTIONS(5736), + [anon_sym_u32] = ACTIONS(5736), + [anon_sym_u64] = ACTIONS(5736), + [anon_sym_isize] = ACTIONS(5736), + [anon_sym_usize] = ACTIONS(5736), + [anon_sym_f32] = ACTIONS(5736), + [anon_sym_f64] = ACTIONS(5736), + [anon_sym_c_char] = ACTIONS(5736), + [anon_sym_c_schar] = ACTIONS(5736), + [anon_sym_c_uchar] = ACTIONS(5736), + [anon_sym_c_short] = ACTIONS(5736), + [anon_sym_c_ushort] = ACTIONS(5736), + [anon_sym_c_int] = ACTIONS(5736), + [anon_sym_c_uint] = ACTIONS(5736), + [anon_sym_c_long] = ACTIONS(5736), + [anon_sym_c_ulong] = ACTIONS(5736), + [anon_sym_c_longlong] = ACTIONS(5736), + [anon_sym_c_ulonglong] = ACTIONS(5736), + [anon_sym_c_float] = ACTIONS(5736), + [anon_sym_c_double] = ACTIONS(5736), + [anon_sym_c_longdouble] = ACTIONS(5736), + [anon_sym_PLUS_EQ] = ACTIONS(5734), + [anon_sym_DASH_EQ] = ACTIONS(5734), + [anon_sym_STAR_EQ] = ACTIONS(5734), + [anon_sym_SLASH_EQ] = ACTIONS(5734), + [anon_sym_AMP_EQ] = ACTIONS(5734), + [anon_sym_PIPE_EQ] = ACTIONS(5734), + [anon_sym_xor_EQ] = ACTIONS(5734), + [anon_sym_LT_LT_EQ] = ACTIONS(5734), + [anon_sym_GT_GT_EQ] = ACTIONS(5734), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5734), + [anon_sym_return] = ACTIONS(5736), + [anon_sym_yield] = ACTIONS(5736), + [anon_sym_break] = ACTIONS(5736), + [anon_sym_continue] = ACTIONS(5736), + [anon_sym_defer] = ACTIONS(5736), + [anon_sym_errdefer] = ACTIONS(5736), + [anon_sym_if] = ACTIONS(5736), + [anon_sym_else] = ACTIONS(5736), + [anon_sym_while] = ACTIONS(5736), + [anon_sym_expand] = ACTIONS(5736), + [anon_sym_for] = ACTIONS(5736), + [anon_sym_match] = ACTIONS(5736), + [anon_sym_DOT_DOT] = ACTIONS(5736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5734), + [anon_sym_orelse] = ACTIONS(5736), + [anon_sym_or] = ACTIONS(5736), + [anon_sym_and] = ACTIONS(5736), + [anon_sym_EQ_EQ] = ACTIONS(5734), + [anon_sym_BANG_EQ] = ACTIONS(5734), + [anon_sym_LT] = ACTIONS(5736), + [anon_sym_LT_EQ] = ACTIONS(5734), + [anon_sym_GT] = ACTIONS(5736), + [anon_sym_GT_EQ] = ACTIONS(5734), + [anon_sym_AMP] = ACTIONS(5736), + [anon_sym_xor] = ACTIONS(5736), + [anon_sym_LT_LT] = ACTIONS(5736), + [anon_sym_GT_GT] = ACTIONS(5736), + [anon_sym_LT_LT_PIPE] = ACTIONS(5736), + [anon_sym_PLUS] = ACTIONS(5736), + [anon_sym_SLASH] = ACTIONS(5736), + [anon_sym_catch] = ACTIONS(5736), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_try] = ACTIONS(5736), + [anon_sym_DOT] = ACTIONS(5736), + [anon_sym_CARET] = ACTIONS(5734), + [anon_sym_true] = ACTIONS(5736), + [anon_sym_false] = ACTIONS(5736), + [anon_sym_null] = ACTIONS(5736), + [anon_sym_unreachable] = ACTIONS(5736), + [anon_sym_undefined] = ACTIONS(5736), + [sym_sink] = ACTIONS(5736), + [sym_integer] = ACTIONS(5736), + [sym_float] = ACTIONS(5734), + [anon_sym_DQUOTE] = ACTIONS(5734), + [sym_multiline_string] = ACTIONS(5734), + [sym_character] = ACTIONS(5734), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5734), + }, + [STATE(3037)] = { + [sym_identifier] = ACTIONS(5740), + [anon_sym_func] = ACTIONS(5740), + [anon_sym_c_func] = ACTIONS(5740), + [anon_sym_BANG] = ACTIONS(5740), + [anon_sym_EQ] = ACTIONS(5740), + [anon_sym_struct] = ACTIONS(5740), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(5738), + [anon_sym_RBRACE] = ACTIONS(5738), + [anon_sym_DASH] = ACTIONS(5740), + [anon_sym_DOLLAR] = ACTIONS(5738), + [anon_sym_PIPE] = ACTIONS(5740), + [anon_sym_struct_type_BANG] = ACTIONS(5738), + [anon_sym_QMARK] = ACTIONS(5738), + [anon_sym_AT] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5740), + [anon_sym_LBRACK] = ACTIONS(5738), + [anon_sym_void] = ACTIONS(5740), + [anon_sym_noreturn] = ACTIONS(5740), + [anon_sym_type] = ACTIONS(5740), + [anon_sym_anyopaque] = ACTIONS(5740), + [anon_sym_bool] = ACTIONS(5740), + [anon_sym_int] = ACTIONS(5740), + [anon_sym_uint] = ACTIONS(5740), + [anon_sym_float] = ACTIONS(5740), + [anon_sym_range] = ACTIONS(5740), + [anon_sym_i8] = ACTIONS(5740), + [anon_sym_i16] = ACTIONS(5740), + [anon_sym_i32] = ACTIONS(5740), + [anon_sym_i64] = ACTIONS(5740), + [anon_sym_u8] = ACTIONS(5740), + [anon_sym_u16] = ACTIONS(5740), + [anon_sym_u32] = ACTIONS(5740), + [anon_sym_u64] = ACTIONS(5740), + [anon_sym_isize] = ACTIONS(5740), + [anon_sym_usize] = ACTIONS(5740), + [anon_sym_f32] = ACTIONS(5740), + [anon_sym_f64] = ACTIONS(5740), + [anon_sym_c_char] = ACTIONS(5740), + [anon_sym_c_schar] = ACTIONS(5740), + [anon_sym_c_uchar] = ACTIONS(5740), + [anon_sym_c_short] = ACTIONS(5740), + [anon_sym_c_ushort] = ACTIONS(5740), + [anon_sym_c_int] = ACTIONS(5740), + [anon_sym_c_uint] = ACTIONS(5740), + [anon_sym_c_long] = ACTIONS(5740), + [anon_sym_c_ulong] = ACTIONS(5740), + [anon_sym_c_longlong] = ACTIONS(5740), + [anon_sym_c_ulonglong] = ACTIONS(5740), + [anon_sym_c_float] = ACTIONS(5740), + [anon_sym_c_double] = ACTIONS(5740), + [anon_sym_c_longdouble] = ACTIONS(5740), + [anon_sym_PLUS_EQ] = ACTIONS(5738), + [anon_sym_DASH_EQ] = ACTIONS(5738), + [anon_sym_STAR_EQ] = ACTIONS(5738), + [anon_sym_SLASH_EQ] = ACTIONS(5738), + [anon_sym_AMP_EQ] = ACTIONS(5738), + [anon_sym_PIPE_EQ] = ACTIONS(5738), + [anon_sym_xor_EQ] = ACTIONS(5738), + [anon_sym_LT_LT_EQ] = ACTIONS(5738), + [anon_sym_GT_GT_EQ] = ACTIONS(5738), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5738), + [anon_sym_return] = ACTIONS(5740), + [anon_sym_yield] = ACTIONS(5740), + [anon_sym_break] = ACTIONS(5740), + [anon_sym_continue] = ACTIONS(5740), + [anon_sym_defer] = ACTIONS(5740), + [anon_sym_errdefer] = ACTIONS(5740), + [anon_sym_if] = ACTIONS(5740), + [anon_sym_else] = ACTIONS(5740), + [anon_sym_while] = ACTIONS(5740), + [anon_sym_expand] = ACTIONS(5740), + [anon_sym_for] = ACTIONS(5740), + [anon_sym_match] = ACTIONS(5740), + [anon_sym_DOT_DOT] = ACTIONS(5740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5738), + [anon_sym_orelse] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5740), + [anon_sym_and] = ACTIONS(5740), + [anon_sym_EQ_EQ] = ACTIONS(5738), + [anon_sym_BANG_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_GT] = ACTIONS(5740), + [anon_sym_GT_EQ] = ACTIONS(5738), + [anon_sym_AMP] = ACTIONS(5740), + [anon_sym_xor] = ACTIONS(5740), + [anon_sym_LT_LT] = ACTIONS(5740), + [anon_sym_GT_GT] = ACTIONS(5740), + [anon_sym_LT_LT_PIPE] = ACTIONS(5740), + [anon_sym_PLUS] = ACTIONS(5740), + [anon_sym_SLASH] = ACTIONS(5740), + [anon_sym_catch] = ACTIONS(5740), + [anon_sym_TILDE] = ACTIONS(5738), + [anon_sym_try] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5740), + [anon_sym_CARET] = ACTIONS(5738), + [anon_sym_true] = ACTIONS(5740), + [anon_sym_false] = ACTIONS(5740), + [anon_sym_null] = ACTIONS(5740), + [anon_sym_unreachable] = ACTIONS(5740), + [anon_sym_undefined] = ACTIONS(5740), + [sym_sink] = ACTIONS(5740), + [sym_integer] = ACTIONS(5740), + [sym_float] = ACTIONS(5738), + [anon_sym_DQUOTE] = ACTIONS(5738), + [sym_multiline_string] = ACTIONS(5738), + [sym_character] = ACTIONS(5738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5738), + }, + [STATE(3038)] = { + [sym_identifier] = ACTIONS(5744), + [anon_sym_func] = ACTIONS(5744), + [anon_sym_c_func] = ACTIONS(5744), + [anon_sym_BANG] = ACTIONS(5744), + [anon_sym_EQ] = ACTIONS(5744), + [anon_sym_struct] = ACTIONS(5744), + [anon_sym_LPAREN] = ACTIONS(5742), + [anon_sym_LBRACE] = ACTIONS(5742), + [anon_sym_COMMA] = ACTIONS(5742), + [anon_sym_RBRACE] = ACTIONS(5742), + [anon_sym_DASH] = ACTIONS(5744), + [anon_sym_DOLLAR] = ACTIONS(5742), + [anon_sym_PIPE] = ACTIONS(5744), + [anon_sym_struct_type_BANG] = ACTIONS(5742), + [anon_sym_QMARK] = ACTIONS(5742), + [anon_sym_AT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5742), + [anon_sym_void] = ACTIONS(5744), + [anon_sym_noreturn] = ACTIONS(5744), + [anon_sym_type] = ACTIONS(5744), + [anon_sym_anyopaque] = ACTIONS(5744), + [anon_sym_bool] = ACTIONS(5744), + [anon_sym_int] = ACTIONS(5744), + [anon_sym_uint] = ACTIONS(5744), + [anon_sym_float] = ACTIONS(5744), + [anon_sym_range] = ACTIONS(5744), + [anon_sym_i8] = ACTIONS(5744), + [anon_sym_i16] = ACTIONS(5744), + [anon_sym_i32] = ACTIONS(5744), + [anon_sym_i64] = ACTIONS(5744), + [anon_sym_u8] = ACTIONS(5744), + [anon_sym_u16] = ACTIONS(5744), + [anon_sym_u32] = ACTIONS(5744), + [anon_sym_u64] = ACTIONS(5744), + [anon_sym_isize] = ACTIONS(5744), + [anon_sym_usize] = ACTIONS(5744), + [anon_sym_f32] = ACTIONS(5744), + [anon_sym_f64] = ACTIONS(5744), + [anon_sym_c_char] = ACTIONS(5744), + [anon_sym_c_schar] = ACTIONS(5744), + [anon_sym_c_uchar] = ACTIONS(5744), + [anon_sym_c_short] = ACTIONS(5744), + [anon_sym_c_ushort] = ACTIONS(5744), + [anon_sym_c_int] = ACTIONS(5744), + [anon_sym_c_uint] = ACTIONS(5744), + [anon_sym_c_long] = ACTIONS(5744), + [anon_sym_c_ulong] = ACTIONS(5744), + [anon_sym_c_longlong] = ACTIONS(5744), + [anon_sym_c_ulonglong] = ACTIONS(5744), + [anon_sym_c_float] = ACTIONS(5744), + [anon_sym_c_double] = ACTIONS(5744), + [anon_sym_c_longdouble] = ACTIONS(5744), + [anon_sym_PLUS_EQ] = ACTIONS(5742), + [anon_sym_DASH_EQ] = ACTIONS(5742), + [anon_sym_STAR_EQ] = ACTIONS(5742), + [anon_sym_SLASH_EQ] = ACTIONS(5742), + [anon_sym_AMP_EQ] = ACTIONS(5742), + [anon_sym_PIPE_EQ] = ACTIONS(5742), + [anon_sym_xor_EQ] = ACTIONS(5742), + [anon_sym_LT_LT_EQ] = ACTIONS(5742), + [anon_sym_GT_GT_EQ] = ACTIONS(5742), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5742), + [anon_sym_return] = ACTIONS(5744), + [anon_sym_yield] = ACTIONS(5744), + [anon_sym_break] = ACTIONS(5744), + [anon_sym_continue] = ACTIONS(5744), + [anon_sym_defer] = ACTIONS(5744), + [anon_sym_errdefer] = ACTIONS(5744), + [anon_sym_if] = ACTIONS(5744), + [anon_sym_else] = ACTIONS(5744), + [anon_sym_while] = ACTIONS(5744), + [anon_sym_expand] = ACTIONS(5744), + [anon_sym_for] = ACTIONS(5744), + [anon_sym_match] = ACTIONS(5744), + [anon_sym_DOT_DOT] = ACTIONS(5744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5742), + [anon_sym_orelse] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5744), + [anon_sym_and] = ACTIONS(5744), + [anon_sym_EQ_EQ] = ACTIONS(5742), + [anon_sym_BANG_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_GT] = ACTIONS(5744), + [anon_sym_GT_EQ] = ACTIONS(5742), + [anon_sym_AMP] = ACTIONS(5744), + [anon_sym_xor] = ACTIONS(5744), + [anon_sym_LT_LT] = ACTIONS(5744), + [anon_sym_GT_GT] = ACTIONS(5744), + [anon_sym_LT_LT_PIPE] = ACTIONS(5744), + [anon_sym_PLUS] = ACTIONS(5744), + [anon_sym_SLASH] = ACTIONS(5744), + [anon_sym_catch] = ACTIONS(5744), + [anon_sym_TILDE] = ACTIONS(5742), + [anon_sym_try] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5744), + [anon_sym_CARET] = ACTIONS(5742), + [anon_sym_true] = ACTIONS(5744), + [anon_sym_false] = ACTIONS(5744), + [anon_sym_null] = ACTIONS(5744), + [anon_sym_unreachable] = ACTIONS(5744), + [anon_sym_undefined] = ACTIONS(5744), + [sym_sink] = ACTIONS(5744), + [sym_integer] = ACTIONS(5744), + [sym_float] = ACTIONS(5742), + [anon_sym_DQUOTE] = ACTIONS(5742), + [sym_multiline_string] = ACTIONS(5742), + [sym_character] = ACTIONS(5742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5742), + }, + [STATE(3039)] = { + [sym_identifier] = ACTIONS(5864), + [anon_sym_func] = ACTIONS(5864), + [anon_sym_c_func] = ACTIONS(5864), + [anon_sym_BANG] = ACTIONS(5864), + [anon_sym_EQ] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_LPAREN] = ACTIONS(5862), + [anon_sym_LBRACE] = ACTIONS(5862), + [anon_sym_COMMA] = ACTIONS(5862), + [anon_sym_RBRACE] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5864), + [anon_sym_DOLLAR] = ACTIONS(5862), + [anon_sym_PIPE] = ACTIONS(5864), + [anon_sym_struct_type_BANG] = ACTIONS(5862), + [anon_sym_QMARK] = ACTIONS(5862), + [anon_sym_AT] = ACTIONS(5862), + [anon_sym_STAR] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5862), + [anon_sym_void] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_type] = ACTIONS(5864), + [anon_sym_anyopaque] = ACTIONS(5864), + [anon_sym_bool] = ACTIONS(5864), + [anon_sym_int] = ACTIONS(5864), + [anon_sym_uint] = ACTIONS(5864), + [anon_sym_float] = ACTIONS(5864), + [anon_sym_range] = ACTIONS(5864), + [anon_sym_i8] = ACTIONS(5864), + [anon_sym_i16] = ACTIONS(5864), + [anon_sym_i32] = ACTIONS(5864), + [anon_sym_i64] = ACTIONS(5864), + [anon_sym_u8] = ACTIONS(5864), + [anon_sym_u16] = ACTIONS(5864), + [anon_sym_u32] = ACTIONS(5864), + [anon_sym_u64] = ACTIONS(5864), + [anon_sym_isize] = ACTIONS(5864), + [anon_sym_usize] = ACTIONS(5864), + [anon_sym_f32] = ACTIONS(5864), + [anon_sym_f64] = ACTIONS(5864), + [anon_sym_c_char] = ACTIONS(5864), + [anon_sym_c_schar] = ACTIONS(5864), + [anon_sym_c_uchar] = ACTIONS(5864), + [anon_sym_c_short] = ACTIONS(5864), + [anon_sym_c_ushort] = ACTIONS(5864), + [anon_sym_c_int] = ACTIONS(5864), + [anon_sym_c_uint] = ACTIONS(5864), + [anon_sym_c_long] = ACTIONS(5864), + [anon_sym_c_ulong] = ACTIONS(5864), + [anon_sym_c_longlong] = ACTIONS(5864), + [anon_sym_c_ulonglong] = ACTIONS(5864), + [anon_sym_c_float] = ACTIONS(5864), + [anon_sym_c_double] = ACTIONS(5864), + [anon_sym_c_longdouble] = ACTIONS(5864), + [anon_sym_PLUS_EQ] = ACTIONS(5862), + [anon_sym_DASH_EQ] = ACTIONS(5862), + [anon_sym_STAR_EQ] = ACTIONS(5862), + [anon_sym_SLASH_EQ] = ACTIONS(5862), + [anon_sym_AMP_EQ] = ACTIONS(5862), + [anon_sym_PIPE_EQ] = ACTIONS(5862), + [anon_sym_xor_EQ] = ACTIONS(5862), + [anon_sym_LT_LT_EQ] = ACTIONS(5862), + [anon_sym_GT_GT_EQ] = ACTIONS(5862), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5862), + [anon_sym_return] = ACTIONS(5864), + [anon_sym_yield] = ACTIONS(5864), + [anon_sym_break] = ACTIONS(5864), + [anon_sym_continue] = ACTIONS(5864), + [anon_sym_defer] = ACTIONS(5864), + [anon_sym_errdefer] = ACTIONS(5864), + [anon_sym_if] = ACTIONS(5864), + [anon_sym_else] = ACTIONS(5864), + [anon_sym_while] = ACTIONS(5864), + [anon_sym_expand] = ACTIONS(5864), + [anon_sym_for] = ACTIONS(5864), + [anon_sym_match] = ACTIONS(5864), + [anon_sym_DOT_DOT] = ACTIONS(5864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5862), + [anon_sym_orelse] = ACTIONS(5864), + [anon_sym_or] = ACTIONS(5864), + [anon_sym_and] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_BANG_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_LT_EQ] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5864), + [anon_sym_GT_EQ] = ACTIONS(5862), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym_xor] = ACTIONS(5864), + [anon_sym_LT_LT] = ACTIONS(5864), + [anon_sym_GT_GT] = ACTIONS(5864), + [anon_sym_LT_LT_PIPE] = ACTIONS(5864), + [anon_sym_PLUS] = ACTIONS(5864), + [anon_sym_SLASH] = ACTIONS(5864), + [anon_sym_catch] = ACTIONS(5864), + [anon_sym_TILDE] = ACTIONS(5862), + [anon_sym_try] = ACTIONS(5864), + [anon_sym_DOT] = ACTIONS(5864), + [anon_sym_CARET] = ACTIONS(5862), + [anon_sym_true] = ACTIONS(5864), + [anon_sym_false] = ACTIONS(5864), + [anon_sym_null] = ACTIONS(5864), + [anon_sym_unreachable] = ACTIONS(5864), + [anon_sym_undefined] = ACTIONS(5864), + [sym_sink] = ACTIONS(5864), + [sym_integer] = ACTIONS(5864), + [sym_float] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(5862), + [sym_multiline_string] = ACTIONS(5862), + [sym_character] = ACTIONS(5862), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5862), + }, + [STATE(3040)] = { + [sym_identifier] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_c_func] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_EQ] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(4502), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_DOLLAR] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4504), + [anon_sym_struct_type_BANG] = ACTIONS(4502), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4502), + [anon_sym_DASH_EQ] = ACTIONS(4502), + [anon_sym_STAR_EQ] = ACTIONS(4502), + [anon_sym_SLASH_EQ] = ACTIONS(4502), + [anon_sym_AMP_EQ] = ACTIONS(4502), + [anon_sym_PIPE_EQ] = ACTIONS(4502), + [anon_sym_xor_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_EQ] = ACTIONS(4502), + [anon_sym_GT_GT_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_errdefer] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_expand] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4504), + [anon_sym_LT_LT_PIPE] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_SLASH] = ACTIONS(4504), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [anon_sym_true] = ACTIONS(4504), + [anon_sym_false] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_unreachable] = ACTIONS(4504), + [anon_sym_undefined] = ACTIONS(4504), + [sym_sink] = ACTIONS(4504), + [sym_integer] = ACTIONS(4504), + [sym_float] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_multiline_string] = ACTIONS(4502), + [sym_character] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(3041)] = { + [sym_identifier] = ACTIONS(5390), + [anon_sym_func] = ACTIONS(5390), + [anon_sym_c_func] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_struct] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_LBRACE] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_struct_type_BANG] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_AT] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_void] = ACTIONS(5390), + [anon_sym_noreturn] = ACTIONS(5390), + [anon_sym_type] = ACTIONS(5390), + [anon_sym_anyopaque] = ACTIONS(5390), + [anon_sym_bool] = ACTIONS(5390), + [anon_sym_int] = ACTIONS(5390), + [anon_sym_uint] = ACTIONS(5390), + [anon_sym_float] = ACTIONS(5390), + [anon_sym_range] = ACTIONS(5390), + [anon_sym_i8] = ACTIONS(5390), + [anon_sym_i16] = ACTIONS(5390), + [anon_sym_i32] = ACTIONS(5390), + [anon_sym_i64] = ACTIONS(5390), + [anon_sym_u8] = ACTIONS(5390), + [anon_sym_u16] = ACTIONS(5390), + [anon_sym_u32] = ACTIONS(5390), + [anon_sym_u64] = ACTIONS(5390), + [anon_sym_isize] = ACTIONS(5390), + [anon_sym_usize] = ACTIONS(5390), + [anon_sym_f32] = ACTIONS(5390), + [anon_sym_f64] = ACTIONS(5390), + [anon_sym_c_char] = ACTIONS(5390), + [anon_sym_c_schar] = ACTIONS(5390), + [anon_sym_c_uchar] = ACTIONS(5390), + [anon_sym_c_short] = ACTIONS(5390), + [anon_sym_c_ushort] = ACTIONS(5390), + [anon_sym_c_int] = ACTIONS(5390), + [anon_sym_c_uint] = ACTIONS(5390), + [anon_sym_c_long] = ACTIONS(5390), + [anon_sym_c_ulong] = ACTIONS(5390), + [anon_sym_c_longlong] = ACTIONS(5390), + [anon_sym_c_ulonglong] = ACTIONS(5390), + [anon_sym_c_float] = ACTIONS(5390), + [anon_sym_c_double] = ACTIONS(5390), + [anon_sym_c_longdouble] = ACTIONS(5390), + [anon_sym_PLUS_EQ] = ACTIONS(5388), + [anon_sym_DASH_EQ] = ACTIONS(5388), + [anon_sym_STAR_EQ] = ACTIONS(5388), + [anon_sym_SLASH_EQ] = ACTIONS(5388), + [anon_sym_AMP_EQ] = ACTIONS(5388), + [anon_sym_PIPE_EQ] = ACTIONS(5388), + [anon_sym_xor_EQ] = ACTIONS(5388), + [anon_sym_LT_LT_EQ] = ACTIONS(5388), + [anon_sym_GT_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5388), + [anon_sym_return] = ACTIONS(5390), + [anon_sym_yield] = ACTIONS(5390), + [anon_sym_break] = ACTIONS(5390), + [anon_sym_continue] = ACTIONS(5390), + [anon_sym_defer] = ACTIONS(5390), + [anon_sym_errdefer] = ACTIONS(5390), + [anon_sym_if] = ACTIONS(5390), + [anon_sym_else] = ACTIONS(5390), + [anon_sym_while] = ACTIONS(5390), + [anon_sym_expand] = ACTIONS(5390), + [anon_sym_for] = ACTIONS(5390), + [anon_sym_match] = ACTIONS(5390), + [anon_sym_DOT_DOT] = ACTIONS(5390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5388), + [anon_sym_orelse] = ACTIONS(5390), + [anon_sym_or] = ACTIONS(5390), + [anon_sym_and] = ACTIONS(5390), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_xor] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5390), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_LT_LT_PIPE] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_catch] = ACTIONS(5390), + [anon_sym_TILDE] = ACTIONS(5388), + [anon_sym_try] = ACTIONS(5390), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_true] = ACTIONS(5390), + [anon_sym_false] = ACTIONS(5390), + [anon_sym_null] = ACTIONS(5390), + [anon_sym_unreachable] = ACTIONS(5390), + [anon_sym_undefined] = ACTIONS(5390), + [sym_sink] = ACTIONS(5390), + [sym_integer] = ACTIONS(5390), + [sym_float] = ACTIONS(5388), + [anon_sym_DQUOTE] = ACTIONS(5388), + [sym_multiline_string] = ACTIONS(5388), + [sym_character] = ACTIONS(5388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5388), + }, + [STATE(3042)] = { + [sym_identifier] = ACTIONS(4736), + [anon_sym_func] = ACTIONS(4736), + [anon_sym_c_func] = ACTIONS(4736), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_struct] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4732), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4732), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_struct_type_BANG] = ACTIONS(4732), + [anon_sym_QMARK] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_void] = ACTIONS(4736), + [anon_sym_noreturn] = ACTIONS(4736), + [anon_sym_type] = ACTIONS(4736), + [anon_sym_anyopaque] = ACTIONS(4736), + [anon_sym_bool] = ACTIONS(4736), + [anon_sym_int] = ACTIONS(4736), + [anon_sym_uint] = ACTIONS(4736), + [anon_sym_float] = ACTIONS(4736), + [anon_sym_range] = ACTIONS(4736), + [anon_sym_i8] = ACTIONS(4736), + [anon_sym_i16] = ACTIONS(4736), + [anon_sym_i32] = ACTIONS(4736), + [anon_sym_i64] = ACTIONS(4736), + [anon_sym_u8] = ACTIONS(4736), + [anon_sym_u16] = ACTIONS(4736), + [anon_sym_u32] = ACTIONS(4736), + [anon_sym_u64] = ACTIONS(4736), + [anon_sym_isize] = ACTIONS(4736), + [anon_sym_usize] = ACTIONS(4736), + [anon_sym_f32] = ACTIONS(4736), + [anon_sym_f64] = ACTIONS(4736), + [anon_sym_c_char] = ACTIONS(4736), + [anon_sym_c_schar] = ACTIONS(4736), + [anon_sym_c_uchar] = ACTIONS(4736), + [anon_sym_c_short] = ACTIONS(4736), + [anon_sym_c_ushort] = ACTIONS(4736), + [anon_sym_c_int] = ACTIONS(4736), + [anon_sym_c_uint] = ACTIONS(4736), + [anon_sym_c_long] = ACTIONS(4736), + [anon_sym_c_ulong] = ACTIONS(4736), + [anon_sym_c_longlong] = ACTIONS(4736), + [anon_sym_c_ulonglong] = ACTIONS(4736), + [anon_sym_c_float] = ACTIONS(4736), + [anon_sym_c_double] = ACTIONS(4736), + [anon_sym_c_longdouble] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_AMP_EQ] = ACTIONS(4732), + [anon_sym_PIPE_EQ] = ACTIONS(4732), + [anon_sym_xor_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_GT_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_yield] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_defer] = ACTIONS(4736), + [anon_sym_errdefer] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_expand] = ACTIONS(4736), + [anon_sym_for] = ACTIONS(4736), + [anon_sym_match] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4732), + [anon_sym_orelse] = ACTIONS(4736), + [anon_sym_or] = ACTIONS(4736), + [anon_sym_and] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4732), + [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_xor] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_LT_LT_PIPE] = ACTIONS(4736), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_catch] = ACTIONS(4736), + [anon_sym_TILDE] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4732), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_unreachable] = ACTIONS(4736), + [anon_sym_undefined] = ACTIONS(4736), + [sym_sink] = ACTIONS(4736), + [sym_integer] = ACTIONS(4736), + [sym_float] = ACTIONS(4732), + [anon_sym_DQUOTE] = ACTIONS(4732), + [sym_multiline_string] = ACTIONS(4732), + [sym_character] = ACTIONS(4732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4732), + }, + [STATE(3043)] = { + [sym_identifier] = ACTIONS(5868), + [anon_sym_func] = ACTIONS(5868), + [anon_sym_c_func] = ACTIONS(5868), + [anon_sym_BANG] = ACTIONS(5868), + [anon_sym_EQ] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5868), + [anon_sym_LPAREN] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5866), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5868), + [anon_sym_struct_type_BANG] = ACTIONS(5866), + [anon_sym_QMARK] = ACTIONS(5866), + [anon_sym_AT] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5866), + [anon_sym_void] = ACTIONS(5868), + [anon_sym_noreturn] = ACTIONS(5868), + [anon_sym_type] = ACTIONS(5868), + [anon_sym_anyopaque] = ACTIONS(5868), + [anon_sym_bool] = ACTIONS(5868), + [anon_sym_int] = ACTIONS(5868), + [anon_sym_uint] = ACTIONS(5868), + [anon_sym_float] = ACTIONS(5868), + [anon_sym_range] = ACTIONS(5868), + [anon_sym_i8] = ACTIONS(5868), + [anon_sym_i16] = ACTIONS(5868), + [anon_sym_i32] = ACTIONS(5868), + [anon_sym_i64] = ACTIONS(5868), + [anon_sym_u8] = ACTIONS(5868), + [anon_sym_u16] = ACTIONS(5868), + [anon_sym_u32] = ACTIONS(5868), + [anon_sym_u64] = ACTIONS(5868), + [anon_sym_isize] = ACTIONS(5868), + [anon_sym_usize] = ACTIONS(5868), + [anon_sym_f32] = ACTIONS(5868), + [anon_sym_f64] = ACTIONS(5868), + [anon_sym_c_char] = ACTIONS(5868), + [anon_sym_c_schar] = ACTIONS(5868), + [anon_sym_c_uchar] = ACTIONS(5868), + [anon_sym_c_short] = ACTIONS(5868), + [anon_sym_c_ushort] = ACTIONS(5868), + [anon_sym_c_int] = ACTIONS(5868), + [anon_sym_c_uint] = ACTIONS(5868), + [anon_sym_c_long] = ACTIONS(5868), + [anon_sym_c_ulong] = ACTIONS(5868), + [anon_sym_c_longlong] = ACTIONS(5868), + [anon_sym_c_ulonglong] = ACTIONS(5868), + [anon_sym_c_float] = ACTIONS(5868), + [anon_sym_c_double] = ACTIONS(5868), + [anon_sym_c_longdouble] = ACTIONS(5868), + [anon_sym_PLUS_EQ] = ACTIONS(5866), + [anon_sym_DASH_EQ] = ACTIONS(5866), + [anon_sym_STAR_EQ] = ACTIONS(5866), + [anon_sym_SLASH_EQ] = ACTIONS(5866), + [anon_sym_AMP_EQ] = ACTIONS(5866), + [anon_sym_PIPE_EQ] = ACTIONS(5866), + [anon_sym_xor_EQ] = ACTIONS(5866), + [anon_sym_LT_LT_EQ] = ACTIONS(5866), + [anon_sym_GT_GT_EQ] = ACTIONS(5866), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5866), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_break] = ACTIONS(5868), + [anon_sym_continue] = ACTIONS(5868), + [anon_sym_defer] = ACTIONS(5868), + [anon_sym_errdefer] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_else] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_expand] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_DOT_DOT] = ACTIONS(5868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5866), + [anon_sym_orelse] = ACTIONS(5868), + [anon_sym_or] = ACTIONS(5868), + [anon_sym_and] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_EQ] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_xor] = ACTIONS(5868), + [anon_sym_LT_LT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5868), + [anon_sym_LT_LT_PIPE] = ACTIONS(5868), + [anon_sym_PLUS] = ACTIONS(5868), + [anon_sym_SLASH] = ACTIONS(5868), + [anon_sym_catch] = ACTIONS(5868), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_DOT] = ACTIONS(5868), + [anon_sym_CARET] = ACTIONS(5866), + [anon_sym_true] = ACTIONS(5868), + [anon_sym_false] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_unreachable] = ACTIONS(5868), + [anon_sym_undefined] = ACTIONS(5868), + [sym_sink] = ACTIONS(5868), + [sym_integer] = ACTIONS(5868), + [sym_float] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(5866), + [sym_multiline_string] = ACTIONS(5866), + [sym_character] = ACTIONS(5866), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5866), + }, + [STATE(3044)] = { + [sym_identifier] = ACTIONS(5872), + [anon_sym_func] = ACTIONS(5872), + [anon_sym_c_func] = ACTIONS(5872), + [anon_sym_BANG] = ACTIONS(5872), + [anon_sym_EQ] = ACTIONS(5872), + [anon_sym_struct] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5870), + [anon_sym_LBRACE] = ACTIONS(5870), + [anon_sym_COMMA] = ACTIONS(5870), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(5872), + [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5872), + [anon_sym_struct_type_BANG] = ACTIONS(5870), + [anon_sym_QMARK] = ACTIONS(5870), + [anon_sym_AT] = ACTIONS(5870), + [anon_sym_STAR] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5870), + [anon_sym_void] = ACTIONS(5872), + [anon_sym_noreturn] = ACTIONS(5872), + [anon_sym_type] = ACTIONS(5872), + [anon_sym_anyopaque] = ACTIONS(5872), + [anon_sym_bool] = ACTIONS(5872), + [anon_sym_int] = ACTIONS(5872), + [anon_sym_uint] = ACTIONS(5872), + [anon_sym_float] = ACTIONS(5872), + [anon_sym_range] = ACTIONS(5872), + [anon_sym_i8] = ACTIONS(5872), + [anon_sym_i16] = ACTIONS(5872), + [anon_sym_i32] = ACTIONS(5872), + [anon_sym_i64] = ACTIONS(5872), + [anon_sym_u8] = ACTIONS(5872), + [anon_sym_u16] = ACTIONS(5872), + [anon_sym_u32] = ACTIONS(5872), + [anon_sym_u64] = ACTIONS(5872), + [anon_sym_isize] = ACTIONS(5872), + [anon_sym_usize] = ACTIONS(5872), + [anon_sym_f32] = ACTIONS(5872), + [anon_sym_f64] = ACTIONS(5872), + [anon_sym_c_char] = ACTIONS(5872), + [anon_sym_c_schar] = ACTIONS(5872), + [anon_sym_c_uchar] = ACTIONS(5872), + [anon_sym_c_short] = ACTIONS(5872), + [anon_sym_c_ushort] = ACTIONS(5872), + [anon_sym_c_int] = ACTIONS(5872), + [anon_sym_c_uint] = ACTIONS(5872), + [anon_sym_c_long] = ACTIONS(5872), + [anon_sym_c_ulong] = ACTIONS(5872), + [anon_sym_c_longlong] = ACTIONS(5872), + [anon_sym_c_ulonglong] = ACTIONS(5872), + [anon_sym_c_float] = ACTIONS(5872), + [anon_sym_c_double] = ACTIONS(5872), + [anon_sym_c_longdouble] = ACTIONS(5872), + [anon_sym_PLUS_EQ] = ACTIONS(5870), + [anon_sym_DASH_EQ] = ACTIONS(5870), + [anon_sym_STAR_EQ] = ACTIONS(5870), + [anon_sym_SLASH_EQ] = ACTIONS(5870), + [anon_sym_AMP_EQ] = ACTIONS(5870), + [anon_sym_PIPE_EQ] = ACTIONS(5870), + [anon_sym_xor_EQ] = ACTIONS(5870), + [anon_sym_LT_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_GT_EQ] = ACTIONS(5870), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5870), + [anon_sym_return] = ACTIONS(5872), + [anon_sym_yield] = ACTIONS(5872), + [anon_sym_break] = ACTIONS(5872), + [anon_sym_continue] = ACTIONS(5872), + [anon_sym_defer] = ACTIONS(5872), + [anon_sym_errdefer] = ACTIONS(5872), + [anon_sym_if] = ACTIONS(5872), + [anon_sym_else] = ACTIONS(5872), + [anon_sym_while] = ACTIONS(5872), + [anon_sym_expand] = ACTIONS(5872), + [anon_sym_for] = ACTIONS(5872), + [anon_sym_match] = ACTIONS(5872), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5870), + [anon_sym_orelse] = ACTIONS(5872), + [anon_sym_or] = ACTIONS(5872), + [anon_sym_and] = ACTIONS(5872), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_BANG_EQ] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5872), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5872), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_AMP] = ACTIONS(5872), + [anon_sym_xor] = ACTIONS(5872), + [anon_sym_LT_LT] = ACTIONS(5872), + [anon_sym_GT_GT] = ACTIONS(5872), + [anon_sym_LT_LT_PIPE] = ACTIONS(5872), + [anon_sym_PLUS] = ACTIONS(5872), + [anon_sym_SLASH] = ACTIONS(5872), + [anon_sym_catch] = ACTIONS(5872), + [anon_sym_TILDE] = ACTIONS(5870), + [anon_sym_try] = ACTIONS(5872), + [anon_sym_DOT] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5870), + [anon_sym_true] = ACTIONS(5872), + [anon_sym_false] = ACTIONS(5872), + [anon_sym_null] = ACTIONS(5872), + [anon_sym_unreachable] = ACTIONS(5872), + [anon_sym_undefined] = ACTIONS(5872), + [sym_sink] = ACTIONS(5872), + [sym_integer] = ACTIONS(5872), + [sym_float] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(5870), + [sym_multiline_string] = ACTIONS(5870), + [sym_character] = ACTIONS(5870), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5870), + }, + [STATE(3045)] = { + [sym_identifier] = ACTIONS(5876), + [anon_sym_func] = ACTIONS(5876), + [anon_sym_c_func] = ACTIONS(5876), + [anon_sym_BANG] = ACTIONS(5876), + [anon_sym_EQ] = ACTIONS(5876), + [anon_sym_struct] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(5874), + [anon_sym_LBRACE] = ACTIONS(5874), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5876), + [anon_sym_DOLLAR] = ACTIONS(5874), + [anon_sym_PIPE] = ACTIONS(5876), + [anon_sym_struct_type_BANG] = ACTIONS(5874), + [anon_sym_QMARK] = ACTIONS(5874), + [anon_sym_AT] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(5874), + [anon_sym_void] = ACTIONS(5876), + [anon_sym_noreturn] = ACTIONS(5876), + [anon_sym_type] = ACTIONS(5876), + [anon_sym_anyopaque] = ACTIONS(5876), + [anon_sym_bool] = ACTIONS(5876), + [anon_sym_int] = ACTIONS(5876), + [anon_sym_uint] = ACTIONS(5876), + [anon_sym_float] = ACTIONS(5876), + [anon_sym_range] = ACTIONS(5876), + [anon_sym_i8] = ACTIONS(5876), + [anon_sym_i16] = ACTIONS(5876), + [anon_sym_i32] = ACTIONS(5876), + [anon_sym_i64] = ACTIONS(5876), + [anon_sym_u8] = ACTIONS(5876), + [anon_sym_u16] = ACTIONS(5876), + [anon_sym_u32] = ACTIONS(5876), + [anon_sym_u64] = ACTIONS(5876), + [anon_sym_isize] = ACTIONS(5876), + [anon_sym_usize] = ACTIONS(5876), + [anon_sym_f32] = ACTIONS(5876), + [anon_sym_f64] = ACTIONS(5876), + [anon_sym_c_char] = ACTIONS(5876), + [anon_sym_c_schar] = ACTIONS(5876), + [anon_sym_c_uchar] = ACTIONS(5876), + [anon_sym_c_short] = ACTIONS(5876), + [anon_sym_c_ushort] = ACTIONS(5876), + [anon_sym_c_int] = ACTIONS(5876), + [anon_sym_c_uint] = ACTIONS(5876), + [anon_sym_c_long] = ACTIONS(5876), + [anon_sym_c_ulong] = ACTIONS(5876), + [anon_sym_c_longlong] = ACTIONS(5876), + [anon_sym_c_ulonglong] = ACTIONS(5876), + [anon_sym_c_float] = ACTIONS(5876), + [anon_sym_c_double] = ACTIONS(5876), + [anon_sym_c_longdouble] = ACTIONS(5876), + [anon_sym_PLUS_EQ] = ACTIONS(5874), + [anon_sym_DASH_EQ] = ACTIONS(5874), + [anon_sym_STAR_EQ] = ACTIONS(5874), + [anon_sym_SLASH_EQ] = ACTIONS(5874), + [anon_sym_AMP_EQ] = ACTIONS(5874), + [anon_sym_PIPE_EQ] = ACTIONS(5874), + [anon_sym_xor_EQ] = ACTIONS(5874), + [anon_sym_LT_LT_EQ] = ACTIONS(5874), + [anon_sym_GT_GT_EQ] = ACTIONS(5874), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5874), + [anon_sym_return] = ACTIONS(5876), + [anon_sym_yield] = ACTIONS(5876), + [anon_sym_break] = ACTIONS(5876), + [anon_sym_continue] = ACTIONS(5876), + [anon_sym_defer] = ACTIONS(5876), + [anon_sym_errdefer] = ACTIONS(5876), + [anon_sym_if] = ACTIONS(5876), + [anon_sym_else] = ACTIONS(5876), + [anon_sym_while] = ACTIONS(5876), + [anon_sym_expand] = ACTIONS(5876), + [anon_sym_for] = ACTIONS(5876), + [anon_sym_match] = ACTIONS(5876), + [anon_sym_DOT_DOT] = ACTIONS(5876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5874), + [anon_sym_orelse] = ACTIONS(5876), + [anon_sym_or] = ACTIONS(5876), + [anon_sym_and] = ACTIONS(5876), + [anon_sym_EQ_EQ] = ACTIONS(5874), + [anon_sym_BANG_EQ] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(5876), + [anon_sym_LT_EQ] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5876), + [anon_sym_GT_EQ] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5876), + [anon_sym_xor] = ACTIONS(5876), + [anon_sym_LT_LT] = ACTIONS(5876), + [anon_sym_GT_GT] = ACTIONS(5876), + [anon_sym_LT_LT_PIPE] = ACTIONS(5876), + [anon_sym_PLUS] = ACTIONS(5876), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_catch] = ACTIONS(5876), + [anon_sym_TILDE] = ACTIONS(5874), + [anon_sym_try] = ACTIONS(5876), + [anon_sym_DOT] = ACTIONS(5876), + [anon_sym_CARET] = ACTIONS(5874), + [anon_sym_true] = ACTIONS(5876), + [anon_sym_false] = ACTIONS(5876), + [anon_sym_null] = ACTIONS(5876), + [anon_sym_unreachable] = ACTIONS(5876), + [anon_sym_undefined] = ACTIONS(5876), + [sym_sink] = ACTIONS(5876), + [sym_integer] = ACTIONS(5876), + [sym_float] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(5874), + [sym_multiline_string] = ACTIONS(5874), + [sym_character] = ACTIONS(5874), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5874), + }, + [STATE(3046)] = { + [sym_identifier] = ACTIONS(5880), + [anon_sym_func] = ACTIONS(5880), + [anon_sym_c_func] = ACTIONS(5880), + [anon_sym_BANG] = ACTIONS(5880), + [anon_sym_EQ] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_LPAREN] = ACTIONS(5878), + [anon_sym_LBRACE] = ACTIONS(5878), + [anon_sym_COMMA] = ACTIONS(5878), + [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(5880), + [anon_sym_DOLLAR] = ACTIONS(5878), + [anon_sym_PIPE] = ACTIONS(5880), + [anon_sym_struct_type_BANG] = ACTIONS(5878), + [anon_sym_QMARK] = ACTIONS(5878), + [anon_sym_AT] = ACTIONS(5878), + [anon_sym_STAR] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5878), + [anon_sym_void] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_type] = ACTIONS(5880), + [anon_sym_anyopaque] = ACTIONS(5880), + [anon_sym_bool] = ACTIONS(5880), + [anon_sym_int] = ACTIONS(5880), + [anon_sym_uint] = ACTIONS(5880), + [anon_sym_float] = ACTIONS(5880), + [anon_sym_range] = ACTIONS(5880), + [anon_sym_i8] = ACTIONS(5880), + [anon_sym_i16] = ACTIONS(5880), + [anon_sym_i32] = ACTIONS(5880), + [anon_sym_i64] = ACTIONS(5880), + [anon_sym_u8] = ACTIONS(5880), + [anon_sym_u16] = ACTIONS(5880), + [anon_sym_u32] = ACTIONS(5880), + [anon_sym_u64] = ACTIONS(5880), + [anon_sym_isize] = ACTIONS(5880), + [anon_sym_usize] = ACTIONS(5880), + [anon_sym_f32] = ACTIONS(5880), + [anon_sym_f64] = ACTIONS(5880), + [anon_sym_c_char] = ACTIONS(5880), + [anon_sym_c_schar] = ACTIONS(5880), + [anon_sym_c_uchar] = ACTIONS(5880), + [anon_sym_c_short] = ACTIONS(5880), + [anon_sym_c_ushort] = ACTIONS(5880), + [anon_sym_c_int] = ACTIONS(5880), + [anon_sym_c_uint] = ACTIONS(5880), + [anon_sym_c_long] = ACTIONS(5880), + [anon_sym_c_ulong] = ACTIONS(5880), + [anon_sym_c_longlong] = ACTIONS(5880), + [anon_sym_c_ulonglong] = ACTIONS(5880), + [anon_sym_c_float] = ACTIONS(5880), + [anon_sym_c_double] = ACTIONS(5880), + [anon_sym_c_longdouble] = ACTIONS(5880), + [anon_sym_PLUS_EQ] = ACTIONS(5878), + [anon_sym_DASH_EQ] = ACTIONS(5878), + [anon_sym_STAR_EQ] = ACTIONS(5878), + [anon_sym_SLASH_EQ] = ACTIONS(5878), + [anon_sym_AMP_EQ] = ACTIONS(5878), + [anon_sym_PIPE_EQ] = ACTIONS(5878), + [anon_sym_xor_EQ] = ACTIONS(5878), + [anon_sym_LT_LT_EQ] = ACTIONS(5878), + [anon_sym_GT_GT_EQ] = ACTIONS(5878), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5878), + [anon_sym_return] = ACTIONS(5880), + [anon_sym_yield] = ACTIONS(5880), + [anon_sym_break] = ACTIONS(5880), + [anon_sym_continue] = ACTIONS(5880), + [anon_sym_defer] = ACTIONS(5880), + [anon_sym_errdefer] = ACTIONS(5880), + [anon_sym_if] = ACTIONS(5880), + [anon_sym_else] = ACTIONS(5880), + [anon_sym_while] = ACTIONS(5880), + [anon_sym_expand] = ACTIONS(5880), + [anon_sym_for] = ACTIONS(5880), + [anon_sym_match] = ACTIONS(5880), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5878), + [anon_sym_orelse] = ACTIONS(5880), + [anon_sym_or] = ACTIONS(5880), + [anon_sym_and] = ACTIONS(5880), + [anon_sym_EQ_EQ] = ACTIONS(5878), + [anon_sym_BANG_EQ] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(5880), + [anon_sym_LT_EQ] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5880), + [anon_sym_GT_EQ] = ACTIONS(5878), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym_xor] = ACTIONS(5880), + [anon_sym_LT_LT] = ACTIONS(5880), + [anon_sym_GT_GT] = ACTIONS(5880), + [anon_sym_LT_LT_PIPE] = ACTIONS(5880), + [anon_sym_PLUS] = ACTIONS(5880), + [anon_sym_SLASH] = ACTIONS(5880), + [anon_sym_catch] = ACTIONS(5880), + [anon_sym_TILDE] = ACTIONS(5878), + [anon_sym_try] = ACTIONS(5880), + [anon_sym_DOT] = ACTIONS(5880), + [anon_sym_CARET] = ACTIONS(5878), + [anon_sym_true] = ACTIONS(5880), + [anon_sym_false] = ACTIONS(5880), + [anon_sym_null] = ACTIONS(5880), + [anon_sym_unreachable] = ACTIONS(5880), + [anon_sym_undefined] = ACTIONS(5880), + [sym_sink] = ACTIONS(5880), + [sym_integer] = ACTIONS(5880), + [sym_float] = ACTIONS(5878), + [anon_sym_DQUOTE] = ACTIONS(5878), + [sym_multiline_string] = ACTIONS(5878), + [sym_character] = ACTIONS(5878), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5878), + }, + [STATE(3047)] = { + [sym_identifier] = ACTIONS(5884), + [anon_sym_func] = ACTIONS(5884), + [anon_sym_c_func] = ACTIONS(5884), + [anon_sym_BANG] = ACTIONS(5884), + [anon_sym_EQ] = ACTIONS(5884), + [anon_sym_struct] = ACTIONS(5884), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_LBRACE] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(5882), + [anon_sym_RBRACE] = ACTIONS(5882), + [anon_sym_DASH] = ACTIONS(5884), + [anon_sym_DOLLAR] = ACTIONS(5882), + [anon_sym_PIPE] = ACTIONS(5884), + [anon_sym_struct_type_BANG] = ACTIONS(5882), + [anon_sym_QMARK] = ACTIONS(5882), + [anon_sym_AT] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(5882), + [anon_sym_void] = ACTIONS(5884), + [anon_sym_noreturn] = ACTIONS(5884), + [anon_sym_type] = ACTIONS(5884), + [anon_sym_anyopaque] = ACTIONS(5884), + [anon_sym_bool] = ACTIONS(5884), + [anon_sym_int] = ACTIONS(5884), + [anon_sym_uint] = ACTIONS(5884), + [anon_sym_float] = ACTIONS(5884), + [anon_sym_range] = ACTIONS(5884), + [anon_sym_i8] = ACTIONS(5884), + [anon_sym_i16] = ACTIONS(5884), + [anon_sym_i32] = ACTIONS(5884), + [anon_sym_i64] = ACTIONS(5884), + [anon_sym_u8] = ACTIONS(5884), + [anon_sym_u16] = ACTIONS(5884), + [anon_sym_u32] = ACTIONS(5884), + [anon_sym_u64] = ACTIONS(5884), + [anon_sym_isize] = ACTIONS(5884), + [anon_sym_usize] = ACTIONS(5884), + [anon_sym_f32] = ACTIONS(5884), + [anon_sym_f64] = ACTIONS(5884), + [anon_sym_c_char] = ACTIONS(5884), + [anon_sym_c_schar] = ACTIONS(5884), + [anon_sym_c_uchar] = ACTIONS(5884), + [anon_sym_c_short] = ACTIONS(5884), + [anon_sym_c_ushort] = ACTIONS(5884), + [anon_sym_c_int] = ACTIONS(5884), + [anon_sym_c_uint] = ACTIONS(5884), + [anon_sym_c_long] = ACTIONS(5884), + [anon_sym_c_ulong] = ACTIONS(5884), + [anon_sym_c_longlong] = ACTIONS(5884), + [anon_sym_c_ulonglong] = ACTIONS(5884), + [anon_sym_c_float] = ACTIONS(5884), + [anon_sym_c_double] = ACTIONS(5884), + [anon_sym_c_longdouble] = ACTIONS(5884), + [anon_sym_PLUS_EQ] = ACTIONS(5882), + [anon_sym_DASH_EQ] = ACTIONS(5882), + [anon_sym_STAR_EQ] = ACTIONS(5882), + [anon_sym_SLASH_EQ] = ACTIONS(5882), + [anon_sym_AMP_EQ] = ACTIONS(5882), + [anon_sym_PIPE_EQ] = ACTIONS(5882), + [anon_sym_xor_EQ] = ACTIONS(5882), + [anon_sym_LT_LT_EQ] = ACTIONS(5882), + [anon_sym_GT_GT_EQ] = ACTIONS(5882), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5882), + [anon_sym_return] = ACTIONS(5884), + [anon_sym_yield] = ACTIONS(5884), + [anon_sym_break] = ACTIONS(5884), + [anon_sym_continue] = ACTIONS(5884), + [anon_sym_defer] = ACTIONS(5884), + [anon_sym_errdefer] = ACTIONS(5884), + [anon_sym_if] = ACTIONS(5884), + [anon_sym_else] = ACTIONS(5884), + [anon_sym_while] = ACTIONS(5884), + [anon_sym_expand] = ACTIONS(5884), + [anon_sym_for] = ACTIONS(5884), + [anon_sym_match] = ACTIONS(5884), + [anon_sym_DOT_DOT] = ACTIONS(5884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5882), + [anon_sym_orelse] = ACTIONS(5884), + [anon_sym_or] = ACTIONS(5884), + [anon_sym_and] = ACTIONS(5884), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_BANG_EQ] = ACTIONS(5882), + [anon_sym_LT] = ACTIONS(5884), + [anon_sym_LT_EQ] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5884), + [anon_sym_GT_EQ] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5884), + [anon_sym_xor] = ACTIONS(5884), + [anon_sym_LT_LT] = ACTIONS(5884), + [anon_sym_GT_GT] = ACTIONS(5884), + [anon_sym_LT_LT_PIPE] = ACTIONS(5884), + [anon_sym_PLUS] = ACTIONS(5884), + [anon_sym_SLASH] = ACTIONS(5884), + [anon_sym_catch] = ACTIONS(5884), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_try] = ACTIONS(5884), + [anon_sym_DOT] = ACTIONS(5884), + [anon_sym_CARET] = ACTIONS(5882), + [anon_sym_true] = ACTIONS(5884), + [anon_sym_false] = ACTIONS(5884), + [anon_sym_null] = ACTIONS(5884), + [anon_sym_unreachable] = ACTIONS(5884), + [anon_sym_undefined] = ACTIONS(5884), + [sym_sink] = ACTIONS(5884), + [sym_integer] = ACTIONS(5884), + [sym_float] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(5882), + [sym_multiline_string] = ACTIONS(5882), + [sym_character] = ACTIONS(5882), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5882), + }, + [STATE(3048)] = { + [sym_identifier] = ACTIONS(5724), + [anon_sym_func] = ACTIONS(5724), + [anon_sym_c_func] = ACTIONS(5724), + [anon_sym_BANG] = ACTIONS(5724), + [anon_sym_EQ] = ACTIONS(5724), + [anon_sym_struct] = ACTIONS(5724), + [anon_sym_LPAREN] = ACTIONS(5722), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5724), + [anon_sym_DOLLAR] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5724), + [anon_sym_struct_type_BANG] = ACTIONS(5722), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_AT] = ACTIONS(5722), + [anon_sym_STAR] = ACTIONS(5724), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_void] = ACTIONS(5724), + [anon_sym_noreturn] = ACTIONS(5724), + [anon_sym_type] = ACTIONS(5724), + [anon_sym_anyopaque] = ACTIONS(5724), + [anon_sym_bool] = ACTIONS(5724), + [anon_sym_int] = ACTIONS(5724), + [anon_sym_uint] = ACTIONS(5724), + [anon_sym_float] = ACTIONS(5724), + [anon_sym_range] = ACTIONS(5724), + [anon_sym_i8] = ACTIONS(5724), + [anon_sym_i16] = ACTIONS(5724), + [anon_sym_i32] = ACTIONS(5724), + [anon_sym_i64] = ACTIONS(5724), + [anon_sym_u8] = ACTIONS(5724), + [anon_sym_u16] = ACTIONS(5724), + [anon_sym_u32] = ACTIONS(5724), + [anon_sym_u64] = ACTIONS(5724), + [anon_sym_isize] = ACTIONS(5724), + [anon_sym_usize] = ACTIONS(5724), + [anon_sym_f32] = ACTIONS(5724), + [anon_sym_f64] = ACTIONS(5724), + [anon_sym_c_char] = ACTIONS(5724), + [anon_sym_c_schar] = ACTIONS(5724), + [anon_sym_c_uchar] = ACTIONS(5724), + [anon_sym_c_short] = ACTIONS(5724), + [anon_sym_c_ushort] = ACTIONS(5724), + [anon_sym_c_int] = ACTIONS(5724), + [anon_sym_c_uint] = ACTIONS(5724), + [anon_sym_c_long] = ACTIONS(5724), + [anon_sym_c_ulong] = ACTIONS(5724), + [anon_sym_c_longlong] = ACTIONS(5724), + [anon_sym_c_ulonglong] = ACTIONS(5724), + [anon_sym_c_float] = ACTIONS(5724), + [anon_sym_c_double] = ACTIONS(5724), + [anon_sym_c_longdouble] = ACTIONS(5724), + [anon_sym_PLUS_EQ] = ACTIONS(5722), + [anon_sym_DASH_EQ] = ACTIONS(5722), + [anon_sym_STAR_EQ] = ACTIONS(5722), + [anon_sym_SLASH_EQ] = ACTIONS(5722), + [anon_sym_AMP_EQ] = ACTIONS(5722), + [anon_sym_PIPE_EQ] = ACTIONS(5722), + [anon_sym_xor_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_EQ] = ACTIONS(5722), + [anon_sym_GT_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5722), + [anon_sym_return] = ACTIONS(5724), + [anon_sym_yield] = ACTIONS(5724), + [anon_sym_break] = ACTIONS(5724), + [anon_sym_continue] = ACTIONS(5724), + [anon_sym_defer] = ACTIONS(5724), + [anon_sym_errdefer] = ACTIONS(5724), + [anon_sym_if] = ACTIONS(5724), + [anon_sym_else] = ACTIONS(5724), + [anon_sym_while] = ACTIONS(5724), + [anon_sym_expand] = ACTIONS(5724), + [anon_sym_for] = ACTIONS(5724), + [anon_sym_match] = ACTIONS(5724), + [anon_sym_DOT_DOT] = ACTIONS(5724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5722), + [anon_sym_orelse] = ACTIONS(5724), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_AMP] = ACTIONS(5724), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5724), + [anon_sym_GT_GT] = ACTIONS(5724), + [anon_sym_LT_LT_PIPE] = ACTIONS(5724), + [anon_sym_PLUS] = ACTIONS(5724), + [anon_sym_SLASH] = ACTIONS(5724), + [anon_sym_catch] = ACTIONS(5724), + [anon_sym_TILDE] = ACTIONS(5722), + [anon_sym_try] = ACTIONS(5724), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5722), + [anon_sym_true] = ACTIONS(5724), + [anon_sym_false] = ACTIONS(5724), + [anon_sym_null] = ACTIONS(5724), + [anon_sym_unreachable] = ACTIONS(5724), + [anon_sym_undefined] = ACTIONS(5724), + [sym_sink] = ACTIONS(5724), + [sym_integer] = ACTIONS(5724), + [sym_float] = ACTIONS(5722), + [anon_sym_DQUOTE] = ACTIONS(5722), + [sym_multiline_string] = ACTIONS(5722), + [sym_character] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5722), + }, + [STATE(3049)] = { + [sym_identifier] = ACTIONS(5728), + [anon_sym_func] = ACTIONS(5728), + [anon_sym_c_func] = ACTIONS(5728), + [anon_sym_BANG] = ACTIONS(5728), + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_struct] = ACTIONS(5728), + [anon_sym_LPAREN] = ACTIONS(5726), + [anon_sym_LBRACE] = ACTIONS(5726), + [anon_sym_COMMA] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5728), + [anon_sym_DOLLAR] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5728), + [anon_sym_struct_type_BANG] = ACTIONS(5726), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_AT] = ACTIONS(5726), + [anon_sym_STAR] = ACTIONS(5728), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_void] = ACTIONS(5728), + [anon_sym_noreturn] = ACTIONS(5728), + [anon_sym_type] = ACTIONS(5728), + [anon_sym_anyopaque] = ACTIONS(5728), + [anon_sym_bool] = ACTIONS(5728), + [anon_sym_int] = ACTIONS(5728), + [anon_sym_uint] = ACTIONS(5728), + [anon_sym_float] = ACTIONS(5728), + [anon_sym_range] = ACTIONS(5728), + [anon_sym_i8] = ACTIONS(5728), + [anon_sym_i16] = ACTIONS(5728), + [anon_sym_i32] = ACTIONS(5728), + [anon_sym_i64] = ACTIONS(5728), + [anon_sym_u8] = ACTIONS(5728), + [anon_sym_u16] = ACTIONS(5728), + [anon_sym_u32] = ACTIONS(5728), + [anon_sym_u64] = ACTIONS(5728), + [anon_sym_isize] = ACTIONS(5728), + [anon_sym_usize] = ACTIONS(5728), + [anon_sym_f32] = ACTIONS(5728), + [anon_sym_f64] = ACTIONS(5728), + [anon_sym_c_char] = ACTIONS(5728), + [anon_sym_c_schar] = ACTIONS(5728), + [anon_sym_c_uchar] = ACTIONS(5728), + [anon_sym_c_short] = ACTIONS(5728), + [anon_sym_c_ushort] = ACTIONS(5728), + [anon_sym_c_int] = ACTIONS(5728), + [anon_sym_c_uint] = ACTIONS(5728), + [anon_sym_c_long] = ACTIONS(5728), + [anon_sym_c_ulong] = ACTIONS(5728), + [anon_sym_c_longlong] = ACTIONS(5728), + [anon_sym_c_ulonglong] = ACTIONS(5728), + [anon_sym_c_float] = ACTIONS(5728), + [anon_sym_c_double] = ACTIONS(5728), + [anon_sym_c_longdouble] = ACTIONS(5728), + [anon_sym_PLUS_EQ] = ACTIONS(5726), + [anon_sym_DASH_EQ] = ACTIONS(5726), + [anon_sym_STAR_EQ] = ACTIONS(5726), + [anon_sym_SLASH_EQ] = ACTIONS(5726), + [anon_sym_AMP_EQ] = ACTIONS(5726), + [anon_sym_PIPE_EQ] = ACTIONS(5726), + [anon_sym_xor_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_EQ] = ACTIONS(5726), + [anon_sym_GT_GT_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5726), + [anon_sym_return] = ACTIONS(5728), + [anon_sym_yield] = ACTIONS(5728), + [anon_sym_break] = ACTIONS(5728), + [anon_sym_continue] = ACTIONS(5728), + [anon_sym_defer] = ACTIONS(5728), + [anon_sym_errdefer] = ACTIONS(5728), + [anon_sym_if] = ACTIONS(5728), + [anon_sym_else] = ACTIONS(5728), + [anon_sym_while] = ACTIONS(5728), + [anon_sym_expand] = ACTIONS(5728), + [anon_sym_for] = ACTIONS(5728), + [anon_sym_match] = ACTIONS(5728), + [anon_sym_DOT_DOT] = ACTIONS(5728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5726), + [anon_sym_orelse] = ACTIONS(5728), + [anon_sym_or] = ACTIONS(5728), + [anon_sym_and] = ACTIONS(5728), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_LT] = ACTIONS(5728), + [anon_sym_LT_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5728), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(5728), + [anon_sym_xor] = ACTIONS(5728), + [anon_sym_LT_LT] = ACTIONS(5728), + [anon_sym_GT_GT] = ACTIONS(5728), + [anon_sym_LT_LT_PIPE] = ACTIONS(5728), + [anon_sym_PLUS] = ACTIONS(5728), + [anon_sym_SLASH] = ACTIONS(5728), + [anon_sym_catch] = ACTIONS(5728), + [anon_sym_TILDE] = ACTIONS(5726), + [anon_sym_try] = ACTIONS(5728), + [anon_sym_DOT] = ACTIONS(5728), + [anon_sym_CARET] = ACTIONS(5726), + [anon_sym_true] = ACTIONS(5728), + [anon_sym_false] = ACTIONS(5728), + [anon_sym_null] = ACTIONS(5728), + [anon_sym_unreachable] = ACTIONS(5728), + [anon_sym_undefined] = ACTIONS(5728), + [sym_sink] = ACTIONS(5728), + [sym_integer] = ACTIONS(5728), + [sym_float] = ACTIONS(5726), + [anon_sym_DQUOTE] = ACTIONS(5726), + [sym_multiline_string] = ACTIONS(5726), + [sym_character] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5726), + }, + [STATE(3050)] = { + [sym_identifier] = ACTIONS(4894), + [anon_sym_func] = ACTIONS(4894), + [anon_sym_c_func] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_struct] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_struct_type_BANG] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_void] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym_type] = ACTIONS(4894), + [anon_sym_anyopaque] = ACTIONS(4894), + [anon_sym_bool] = ACTIONS(4894), + [anon_sym_int] = ACTIONS(4894), + [anon_sym_uint] = ACTIONS(4894), + [anon_sym_float] = ACTIONS(4894), + [anon_sym_range] = ACTIONS(4894), + [anon_sym_i8] = ACTIONS(4894), + [anon_sym_i16] = ACTIONS(4894), + [anon_sym_i32] = ACTIONS(4894), + [anon_sym_i64] = ACTIONS(4894), + [anon_sym_u8] = ACTIONS(4894), + [anon_sym_u16] = ACTIONS(4894), + [anon_sym_u32] = ACTIONS(4894), + [anon_sym_u64] = ACTIONS(4894), + [anon_sym_isize] = ACTIONS(4894), + [anon_sym_usize] = ACTIONS(4894), + [anon_sym_f32] = ACTIONS(4894), + [anon_sym_f64] = ACTIONS(4894), + [anon_sym_c_char] = ACTIONS(4894), + [anon_sym_c_schar] = ACTIONS(4894), + [anon_sym_c_uchar] = ACTIONS(4894), + [anon_sym_c_short] = ACTIONS(4894), + [anon_sym_c_ushort] = ACTIONS(4894), + [anon_sym_c_int] = ACTIONS(4894), + [anon_sym_c_uint] = ACTIONS(4894), + [anon_sym_c_long] = ACTIONS(4894), + [anon_sym_c_ulong] = ACTIONS(4894), + [anon_sym_c_longlong] = ACTIONS(4894), + [anon_sym_c_ulonglong] = ACTIONS(4894), + [anon_sym_c_float] = ACTIONS(4894), + [anon_sym_c_double] = ACTIONS(4894), + [anon_sym_c_longdouble] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4892), + [anon_sym_DASH_EQ] = ACTIONS(4892), + [anon_sym_STAR_EQ] = ACTIONS(4892), + [anon_sym_SLASH_EQ] = ACTIONS(4892), + [anon_sym_AMP_EQ] = ACTIONS(4892), + [anon_sym_PIPE_EQ] = ACTIONS(4892), + [anon_sym_xor_EQ] = ACTIONS(4892), + [anon_sym_LT_LT_EQ] = ACTIONS(4892), + [anon_sym_GT_GT_EQ] = ACTIONS(4892), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4894), + [anon_sym_yield] = ACTIONS(4894), + [anon_sym_break] = ACTIONS(4894), + [anon_sym_continue] = ACTIONS(4894), + [anon_sym_defer] = ACTIONS(4894), + [anon_sym_errdefer] = ACTIONS(4894), + [anon_sym_if] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4894), + [anon_sym_while] = ACTIONS(4894), + [anon_sym_expand] = ACTIONS(4894), + [anon_sym_for] = ACTIONS(4894), + [anon_sym_match] = ACTIONS(4894), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4892), + [anon_sym_orelse] = ACTIONS(4894), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_and] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_xor] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4894), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_LT_LT_PIPE] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_catch] = ACTIONS(4894), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4892), + [anon_sym_true] = ACTIONS(4894), + [anon_sym_false] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4894), + [anon_sym_unreachable] = ACTIONS(4894), + [anon_sym_undefined] = ACTIONS(4894), + [sym_sink] = ACTIONS(4894), + [sym_integer] = ACTIONS(4894), + [sym_float] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [sym_multiline_string] = ACTIONS(4892), + [sym_character] = ACTIONS(4892), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4892), + }, + [STATE(3051)] = { + [sym_identifier] = ACTIONS(5772), + [anon_sym_func] = ACTIONS(5772), + [anon_sym_c_func] = ACTIONS(5772), + [anon_sym_BANG] = ACTIONS(5772), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_struct] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_COMMA] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5772), + [anon_sym_DOLLAR] = ACTIONS(5770), + [anon_sym_PIPE] = ACTIONS(5772), + [anon_sym_struct_type_BANG] = ACTIONS(5770), + [anon_sym_QMARK] = ACTIONS(5770), + [anon_sym_AT] = ACTIONS(5770), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_void] = ACTIONS(5772), + [anon_sym_noreturn] = ACTIONS(5772), + [anon_sym_type] = ACTIONS(5772), + [anon_sym_anyopaque] = ACTIONS(5772), + [anon_sym_bool] = ACTIONS(5772), + [anon_sym_int] = ACTIONS(5772), + [anon_sym_uint] = ACTIONS(5772), + [anon_sym_float] = ACTIONS(5772), + [anon_sym_range] = ACTIONS(5772), + [anon_sym_i8] = ACTIONS(5772), + [anon_sym_i16] = ACTIONS(5772), + [anon_sym_i32] = ACTIONS(5772), + [anon_sym_i64] = ACTIONS(5772), + [anon_sym_u8] = ACTIONS(5772), + [anon_sym_u16] = ACTIONS(5772), + [anon_sym_u32] = ACTIONS(5772), + [anon_sym_u64] = ACTIONS(5772), + [anon_sym_isize] = ACTIONS(5772), + [anon_sym_usize] = ACTIONS(5772), + [anon_sym_f32] = ACTIONS(5772), + [anon_sym_f64] = ACTIONS(5772), + [anon_sym_c_char] = ACTIONS(5772), + [anon_sym_c_schar] = ACTIONS(5772), + [anon_sym_c_uchar] = ACTIONS(5772), + [anon_sym_c_short] = ACTIONS(5772), + [anon_sym_c_ushort] = ACTIONS(5772), + [anon_sym_c_int] = ACTIONS(5772), + [anon_sym_c_uint] = ACTIONS(5772), + [anon_sym_c_long] = ACTIONS(5772), + [anon_sym_c_ulong] = ACTIONS(5772), + [anon_sym_c_longlong] = ACTIONS(5772), + [anon_sym_c_ulonglong] = ACTIONS(5772), + [anon_sym_c_float] = ACTIONS(5772), + [anon_sym_c_double] = ACTIONS(5772), + [anon_sym_c_longdouble] = ACTIONS(5772), + [anon_sym_PLUS_EQ] = ACTIONS(5770), + [anon_sym_DASH_EQ] = ACTIONS(5770), + [anon_sym_STAR_EQ] = ACTIONS(5770), + [anon_sym_SLASH_EQ] = ACTIONS(5770), + [anon_sym_AMP_EQ] = ACTIONS(5770), + [anon_sym_PIPE_EQ] = ACTIONS(5770), + [anon_sym_xor_EQ] = ACTIONS(5770), + [anon_sym_LT_LT_EQ] = ACTIONS(5770), + [anon_sym_GT_GT_EQ] = ACTIONS(5770), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5770), + [anon_sym_return] = ACTIONS(5772), + [anon_sym_yield] = ACTIONS(5772), + [anon_sym_break] = ACTIONS(5772), + [anon_sym_continue] = ACTIONS(5772), + [anon_sym_defer] = ACTIONS(5772), + [anon_sym_errdefer] = ACTIONS(5772), + [anon_sym_if] = ACTIONS(5772), + [anon_sym_else] = ACTIONS(5772), + [anon_sym_while] = ACTIONS(5772), + [anon_sym_expand] = ACTIONS(5772), + [anon_sym_for] = ACTIONS(5772), + [anon_sym_match] = ACTIONS(5772), + [anon_sym_DOT_DOT] = ACTIONS(5772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5770), + [anon_sym_orelse] = ACTIONS(5772), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5770), + [anon_sym_BANG_EQ] = ACTIONS(5770), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_EQ] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5770), + [anon_sym_AMP] = ACTIONS(5772), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5772), + [anon_sym_GT_GT] = ACTIONS(5772), + [anon_sym_LT_LT_PIPE] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5772), + [anon_sym_SLASH] = ACTIONS(5772), + [anon_sym_catch] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(5770), + [anon_sym_try] = ACTIONS(5772), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5770), + [anon_sym_true] = ACTIONS(5772), + [anon_sym_false] = ACTIONS(5772), + [anon_sym_null] = ACTIONS(5772), + [anon_sym_unreachable] = ACTIONS(5772), + [anon_sym_undefined] = ACTIONS(5772), + [sym_sink] = ACTIONS(5772), + [sym_integer] = ACTIONS(5772), + [sym_float] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(5770), + [sym_multiline_string] = ACTIONS(5770), + [sym_character] = ACTIONS(5770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5770), + }, + [STATE(3052)] = { + [sym_identifier] = ACTIONS(5776), + [anon_sym_func] = ACTIONS(5776), + [anon_sym_c_func] = ACTIONS(5776), + [anon_sym_BANG] = ACTIONS(5776), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_struct] = ACTIONS(5776), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_COMMA] = ACTIONS(5774), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_DOLLAR] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_struct_type_BANG] = ACTIONS(5774), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_AT] = ACTIONS(5774), + [anon_sym_STAR] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_void] = ACTIONS(5776), + [anon_sym_noreturn] = ACTIONS(5776), + [anon_sym_type] = ACTIONS(5776), + [anon_sym_anyopaque] = ACTIONS(5776), + [anon_sym_bool] = ACTIONS(5776), + [anon_sym_int] = ACTIONS(5776), + [anon_sym_uint] = ACTIONS(5776), + [anon_sym_float] = ACTIONS(5776), + [anon_sym_range] = ACTIONS(5776), + [anon_sym_i8] = ACTIONS(5776), + [anon_sym_i16] = ACTIONS(5776), + [anon_sym_i32] = ACTIONS(5776), + [anon_sym_i64] = ACTIONS(5776), + [anon_sym_u8] = ACTIONS(5776), + [anon_sym_u16] = ACTIONS(5776), + [anon_sym_u32] = ACTIONS(5776), + [anon_sym_u64] = ACTIONS(5776), + [anon_sym_isize] = ACTIONS(5776), + [anon_sym_usize] = ACTIONS(5776), + [anon_sym_f32] = ACTIONS(5776), + [anon_sym_f64] = ACTIONS(5776), + [anon_sym_c_char] = ACTIONS(5776), + [anon_sym_c_schar] = ACTIONS(5776), + [anon_sym_c_uchar] = ACTIONS(5776), + [anon_sym_c_short] = ACTIONS(5776), + [anon_sym_c_ushort] = ACTIONS(5776), + [anon_sym_c_int] = ACTIONS(5776), + [anon_sym_c_uint] = ACTIONS(5776), + [anon_sym_c_long] = ACTIONS(5776), + [anon_sym_c_ulong] = ACTIONS(5776), + [anon_sym_c_longlong] = ACTIONS(5776), + [anon_sym_c_ulonglong] = ACTIONS(5776), + [anon_sym_c_float] = ACTIONS(5776), + [anon_sym_c_double] = ACTIONS(5776), + [anon_sym_c_longdouble] = ACTIONS(5776), + [anon_sym_PLUS_EQ] = ACTIONS(5774), + [anon_sym_DASH_EQ] = ACTIONS(5774), + [anon_sym_STAR_EQ] = ACTIONS(5774), + [anon_sym_SLASH_EQ] = ACTIONS(5774), + [anon_sym_AMP_EQ] = ACTIONS(5774), + [anon_sym_PIPE_EQ] = ACTIONS(5774), + [anon_sym_xor_EQ] = ACTIONS(5774), + [anon_sym_LT_LT_EQ] = ACTIONS(5774), + [anon_sym_GT_GT_EQ] = ACTIONS(5774), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5774), + [anon_sym_return] = ACTIONS(5776), + [anon_sym_yield] = ACTIONS(5776), + [anon_sym_break] = ACTIONS(5776), + [anon_sym_continue] = ACTIONS(5776), + [anon_sym_defer] = ACTIONS(5776), + [anon_sym_errdefer] = ACTIONS(5776), + [anon_sym_if] = ACTIONS(5776), + [anon_sym_else] = ACTIONS(5776), + [anon_sym_while] = ACTIONS(5776), + [anon_sym_expand] = ACTIONS(5776), + [anon_sym_for] = ACTIONS(5776), + [anon_sym_match] = ACTIONS(5776), + [anon_sym_DOT_DOT] = ACTIONS(5776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5774), + [anon_sym_orelse] = ACTIONS(5776), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5776), + [anon_sym_LT_LT_PIPE] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_catch] = ACTIONS(5776), + [anon_sym_TILDE] = ACTIONS(5774), + [anon_sym_try] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5774), + [anon_sym_true] = ACTIONS(5776), + [anon_sym_false] = ACTIONS(5776), + [anon_sym_null] = ACTIONS(5776), + [anon_sym_unreachable] = ACTIONS(5776), + [anon_sym_undefined] = ACTIONS(5776), + [sym_sink] = ACTIONS(5776), + [sym_integer] = ACTIONS(5776), + [sym_float] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(5774), + [sym_multiline_string] = ACTIONS(5774), + [sym_character] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5774), + }, + [STATE(3053)] = { + [sym_identifier] = ACTIONS(5788), + [anon_sym_func] = ACTIONS(5788), + [anon_sym_c_func] = ACTIONS(5788), + [anon_sym_BANG] = ACTIONS(5788), + [anon_sym_EQ] = ACTIONS(5788), + [anon_sym_struct] = ACTIONS(5788), + [anon_sym_LPAREN] = ACTIONS(5786), + [anon_sym_LBRACE] = ACTIONS(5786), + [anon_sym_COMMA] = ACTIONS(5786), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5788), + [anon_sym_DOLLAR] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5788), + [anon_sym_struct_type_BANG] = ACTIONS(5786), + [anon_sym_QMARK] = ACTIONS(5786), + [anon_sym_AT] = ACTIONS(5786), + [anon_sym_STAR] = ACTIONS(5788), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_void] = ACTIONS(5788), + [anon_sym_noreturn] = ACTIONS(5788), + [anon_sym_type] = ACTIONS(5788), + [anon_sym_anyopaque] = ACTIONS(5788), + [anon_sym_bool] = ACTIONS(5788), + [anon_sym_int] = ACTIONS(5788), + [anon_sym_uint] = ACTIONS(5788), + [anon_sym_float] = ACTIONS(5788), + [anon_sym_range] = ACTIONS(5788), + [anon_sym_i8] = ACTIONS(5788), + [anon_sym_i16] = ACTIONS(5788), + [anon_sym_i32] = ACTIONS(5788), + [anon_sym_i64] = ACTIONS(5788), + [anon_sym_u8] = ACTIONS(5788), + [anon_sym_u16] = ACTIONS(5788), + [anon_sym_u32] = ACTIONS(5788), + [anon_sym_u64] = ACTIONS(5788), + [anon_sym_isize] = ACTIONS(5788), + [anon_sym_usize] = ACTIONS(5788), + [anon_sym_f32] = ACTIONS(5788), + [anon_sym_f64] = ACTIONS(5788), + [anon_sym_c_char] = ACTIONS(5788), + [anon_sym_c_schar] = ACTIONS(5788), + [anon_sym_c_uchar] = ACTIONS(5788), + [anon_sym_c_short] = ACTIONS(5788), + [anon_sym_c_ushort] = ACTIONS(5788), + [anon_sym_c_int] = ACTIONS(5788), + [anon_sym_c_uint] = ACTIONS(5788), + [anon_sym_c_long] = ACTIONS(5788), + [anon_sym_c_ulong] = ACTIONS(5788), + [anon_sym_c_longlong] = ACTIONS(5788), + [anon_sym_c_ulonglong] = ACTIONS(5788), + [anon_sym_c_float] = ACTIONS(5788), + [anon_sym_c_double] = ACTIONS(5788), + [anon_sym_c_longdouble] = ACTIONS(5788), + [anon_sym_PLUS_EQ] = ACTIONS(5786), + [anon_sym_DASH_EQ] = ACTIONS(5786), + [anon_sym_STAR_EQ] = ACTIONS(5786), + [anon_sym_SLASH_EQ] = ACTIONS(5786), + [anon_sym_AMP_EQ] = ACTIONS(5786), + [anon_sym_PIPE_EQ] = ACTIONS(5786), + [anon_sym_xor_EQ] = ACTIONS(5786), + [anon_sym_LT_LT_EQ] = ACTIONS(5786), + [anon_sym_GT_GT_EQ] = ACTIONS(5786), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5786), + [anon_sym_return] = ACTIONS(5788), + [anon_sym_yield] = ACTIONS(5788), + [anon_sym_break] = ACTIONS(5788), + [anon_sym_continue] = ACTIONS(5788), + [anon_sym_defer] = ACTIONS(5788), + [anon_sym_errdefer] = ACTIONS(5788), + [anon_sym_if] = ACTIONS(5788), + [anon_sym_else] = ACTIONS(5788), + [anon_sym_while] = ACTIONS(5788), + [anon_sym_expand] = ACTIONS(5788), + [anon_sym_for] = ACTIONS(5788), + [anon_sym_match] = ACTIONS(5788), + [anon_sym_DOT_DOT] = ACTIONS(5788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5786), + [anon_sym_orelse] = ACTIONS(5788), + [anon_sym_or] = ACTIONS(5788), + [anon_sym_and] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5786), + [anon_sym_BANG_EQ] = ACTIONS(5786), + [anon_sym_LT] = ACTIONS(5788), + [anon_sym_LT_EQ] = ACTIONS(5786), + [anon_sym_GT] = ACTIONS(5788), + [anon_sym_GT_EQ] = ACTIONS(5786), + [anon_sym_AMP] = ACTIONS(5788), + [anon_sym_xor] = ACTIONS(5788), + [anon_sym_LT_LT] = ACTIONS(5788), + [anon_sym_GT_GT] = ACTIONS(5788), + [anon_sym_LT_LT_PIPE] = ACTIONS(5788), + [anon_sym_PLUS] = ACTIONS(5788), + [anon_sym_SLASH] = ACTIONS(5788), + [anon_sym_catch] = ACTIONS(5788), + [anon_sym_TILDE] = ACTIONS(5786), + [anon_sym_try] = ACTIONS(5788), + [anon_sym_DOT] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5786), + [anon_sym_true] = ACTIONS(5788), + [anon_sym_false] = ACTIONS(5788), + [anon_sym_null] = ACTIONS(5788), + [anon_sym_unreachable] = ACTIONS(5788), + [anon_sym_undefined] = ACTIONS(5788), + [sym_sink] = ACTIONS(5788), + [sym_integer] = ACTIONS(5788), + [sym_float] = ACTIONS(5786), + [anon_sym_DQUOTE] = ACTIONS(5786), + [sym_multiline_string] = ACTIONS(5786), + [sym_character] = ACTIONS(5786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5786), + }, + [STATE(3054)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_func] = ACTIONS(4898), + [anon_sym_c_func] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_struct] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_RBRACE] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_struct_type_BANG] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_void] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym_type] = ACTIONS(4898), + [anon_sym_anyopaque] = ACTIONS(4898), + [anon_sym_bool] = ACTIONS(4898), + [anon_sym_int] = ACTIONS(4898), + [anon_sym_uint] = ACTIONS(4898), + [anon_sym_float] = ACTIONS(4898), + [anon_sym_range] = ACTIONS(4898), + [anon_sym_i8] = ACTIONS(4898), + [anon_sym_i16] = ACTIONS(4898), + [anon_sym_i32] = ACTIONS(4898), + [anon_sym_i64] = ACTIONS(4898), + [anon_sym_u8] = ACTIONS(4898), + [anon_sym_u16] = ACTIONS(4898), + [anon_sym_u32] = ACTIONS(4898), + [anon_sym_u64] = ACTIONS(4898), + [anon_sym_isize] = ACTIONS(4898), + [anon_sym_usize] = ACTIONS(4898), + [anon_sym_f32] = ACTIONS(4898), + [anon_sym_f64] = ACTIONS(4898), + [anon_sym_c_char] = ACTIONS(4898), + [anon_sym_c_schar] = ACTIONS(4898), + [anon_sym_c_uchar] = ACTIONS(4898), + [anon_sym_c_short] = ACTIONS(4898), + [anon_sym_c_ushort] = ACTIONS(4898), + [anon_sym_c_int] = ACTIONS(4898), + [anon_sym_c_uint] = ACTIONS(4898), + [anon_sym_c_long] = ACTIONS(4898), + [anon_sym_c_ulong] = ACTIONS(4898), + [anon_sym_c_longlong] = ACTIONS(4898), + [anon_sym_c_ulonglong] = ACTIONS(4898), + [anon_sym_c_float] = ACTIONS(4898), + [anon_sym_c_double] = ACTIONS(4898), + [anon_sym_c_longdouble] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4896), + [anon_sym_DASH_EQ] = ACTIONS(4896), + [anon_sym_STAR_EQ] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(4896), + [anon_sym_AMP_EQ] = ACTIONS(4896), + [anon_sym_PIPE_EQ] = ACTIONS(4896), + [anon_sym_xor_EQ] = ACTIONS(4896), + [anon_sym_LT_LT_EQ] = ACTIONS(4896), + [anon_sym_GT_GT_EQ] = ACTIONS(4896), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4896), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_yield] = ACTIONS(4898), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_continue] = ACTIONS(4898), + [anon_sym_defer] = ACTIONS(4898), + [anon_sym_errdefer] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_while] = ACTIONS(4898), + [anon_sym_expand] = ACTIONS(4898), + [anon_sym_for] = ACTIONS(4898), + [anon_sym_match] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4896), + [anon_sym_orelse] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4898), + [anon_sym_LT_LT_PIPE] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_catch] = ACTIONS(4898), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_unreachable] = ACTIONS(4898), + [anon_sym_undefined] = ACTIONS(4898), + [sym_sink] = ACTIONS(4898), + [sym_integer] = ACTIONS(4898), + [sym_float] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [sym_multiline_string] = ACTIONS(4896), + [sym_character] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4896), + }, + [STATE(3055)] = { + [sym_type] = STATE(3886), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [sym_identifier] = ACTIONS(6480), + [anon_sym_func] = ACTIONS(6483), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(6488), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_DOLLAR] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6493), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6498), + [anon_sym_mut] = ACTIONS(6501), + [anon_sym_LBRACK] = ACTIONS(6503), + [anon_sym_void] = ACTIONS(6506), + [anon_sym_noreturn] = ACTIONS(6506), + [anon_sym_type] = ACTIONS(6506), + [anon_sym_anyopaque] = ACTIONS(6506), + [anon_sym_bool] = ACTIONS(6506), + [anon_sym_int] = ACTIONS(6506), + [anon_sym_uint] = ACTIONS(6506), + [anon_sym_float] = ACTIONS(6506), + [anon_sym_range] = ACTIONS(6506), + [anon_sym_i8] = ACTIONS(6506), + [anon_sym_i16] = ACTIONS(6506), + [anon_sym_i32] = ACTIONS(6506), + [anon_sym_i64] = ACTIONS(6506), + [anon_sym_u8] = ACTIONS(6506), + [anon_sym_u16] = ACTIONS(6506), + [anon_sym_u32] = ACTIONS(6506), + [anon_sym_u64] = ACTIONS(6506), + [anon_sym_isize] = ACTIONS(6506), + [anon_sym_usize] = ACTIONS(6506), + [anon_sym_f32] = ACTIONS(6506), + [anon_sym_f64] = ACTIONS(6506), + [anon_sym_c_char] = ACTIONS(6506), + [anon_sym_c_schar] = ACTIONS(6506), + [anon_sym_c_uchar] = ACTIONS(6506), + [anon_sym_c_short] = ACTIONS(6506), + [anon_sym_c_ushort] = ACTIONS(6506), + [anon_sym_c_int] = ACTIONS(6506), + [anon_sym_c_uint] = ACTIONS(6506), + [anon_sym_c_long] = ACTIONS(6506), + [anon_sym_c_ulong] = ACTIONS(6506), + [anon_sym_c_longlong] = ACTIONS(6506), + [anon_sym_c_ulonglong] = ACTIONS(6506), + [anon_sym_c_float] = ACTIONS(6506), + [anon_sym_c_double] = ACTIONS(6506), + [anon_sym_c_longdouble] = ACTIONS(6506), + [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(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_xor] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1207), + [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_catch] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), + [anon_sym_null] = ACTIONS(1207), + [anon_sym_unreachable] = ACTIONS(1207), + [anon_sym_undefined] = ACTIONS(1207), + [sym_sink] = ACTIONS(1207), + [sym_integer] = ACTIONS(1207), + [sym_float] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_multiline_string] = ACTIONS(1202), + [sym_character] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(3056)] = { + [sym_identifier] = ACTIONS(5792), + [anon_sym_func] = ACTIONS(5792), + [anon_sym_c_func] = ACTIONS(5792), + [anon_sym_BANG] = ACTIONS(5792), + [anon_sym_EQ] = ACTIONS(5792), + [anon_sym_struct] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_LBRACE] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(5790), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_DASH] = ACTIONS(5792), + [anon_sym_DOLLAR] = ACTIONS(5790), + [anon_sym_PIPE] = ACTIONS(5792), + [anon_sym_struct_type_BANG] = ACTIONS(5790), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_AT] = ACTIONS(5790), + [anon_sym_STAR] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(5790), + [anon_sym_void] = ACTIONS(5792), + [anon_sym_noreturn] = ACTIONS(5792), + [anon_sym_type] = ACTIONS(5792), + [anon_sym_anyopaque] = ACTIONS(5792), + [anon_sym_bool] = ACTIONS(5792), + [anon_sym_int] = ACTIONS(5792), + [anon_sym_uint] = ACTIONS(5792), + [anon_sym_float] = ACTIONS(5792), + [anon_sym_range] = ACTIONS(5792), + [anon_sym_i8] = ACTIONS(5792), + [anon_sym_i16] = ACTIONS(5792), + [anon_sym_i32] = ACTIONS(5792), + [anon_sym_i64] = ACTIONS(5792), + [anon_sym_u8] = ACTIONS(5792), + [anon_sym_u16] = ACTIONS(5792), + [anon_sym_u32] = ACTIONS(5792), + [anon_sym_u64] = ACTIONS(5792), + [anon_sym_isize] = ACTIONS(5792), + [anon_sym_usize] = ACTIONS(5792), + [anon_sym_f32] = ACTIONS(5792), + [anon_sym_f64] = ACTIONS(5792), + [anon_sym_c_char] = ACTIONS(5792), + [anon_sym_c_schar] = ACTIONS(5792), + [anon_sym_c_uchar] = ACTIONS(5792), + [anon_sym_c_short] = ACTIONS(5792), + [anon_sym_c_ushort] = ACTIONS(5792), + [anon_sym_c_int] = ACTIONS(5792), + [anon_sym_c_uint] = ACTIONS(5792), + [anon_sym_c_long] = ACTIONS(5792), + [anon_sym_c_ulong] = ACTIONS(5792), + [anon_sym_c_longlong] = ACTIONS(5792), + [anon_sym_c_ulonglong] = ACTIONS(5792), + [anon_sym_c_float] = ACTIONS(5792), + [anon_sym_c_double] = ACTIONS(5792), + [anon_sym_c_longdouble] = ACTIONS(5792), + [anon_sym_PLUS_EQ] = ACTIONS(5790), + [anon_sym_DASH_EQ] = ACTIONS(5790), + [anon_sym_STAR_EQ] = ACTIONS(5790), + [anon_sym_SLASH_EQ] = ACTIONS(5790), + [anon_sym_AMP_EQ] = ACTIONS(5790), + [anon_sym_PIPE_EQ] = ACTIONS(5790), + [anon_sym_xor_EQ] = ACTIONS(5790), + [anon_sym_LT_LT_EQ] = ACTIONS(5790), + [anon_sym_GT_GT_EQ] = ACTIONS(5790), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5790), + [anon_sym_return] = ACTIONS(5792), + [anon_sym_yield] = ACTIONS(5792), + [anon_sym_break] = ACTIONS(5792), + [anon_sym_continue] = ACTIONS(5792), + [anon_sym_defer] = ACTIONS(5792), + [anon_sym_errdefer] = ACTIONS(5792), + [anon_sym_if] = ACTIONS(5792), + [anon_sym_else] = ACTIONS(5792), + [anon_sym_while] = ACTIONS(5792), + [anon_sym_expand] = ACTIONS(5792), + [anon_sym_for] = ACTIONS(5792), + [anon_sym_match] = ACTIONS(5792), + [anon_sym_DOT_DOT] = ACTIONS(5792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5790), + [anon_sym_orelse] = ACTIONS(5792), + [anon_sym_or] = ACTIONS(5792), + [anon_sym_and] = ACTIONS(5792), + [anon_sym_EQ_EQ] = ACTIONS(5790), + [anon_sym_BANG_EQ] = ACTIONS(5790), + [anon_sym_LT] = ACTIONS(5792), + [anon_sym_LT_EQ] = ACTIONS(5790), + [anon_sym_GT] = ACTIONS(5792), + [anon_sym_GT_EQ] = ACTIONS(5790), + [anon_sym_AMP] = ACTIONS(5792), + [anon_sym_xor] = ACTIONS(5792), + [anon_sym_LT_LT] = ACTIONS(5792), + [anon_sym_GT_GT] = ACTIONS(5792), + [anon_sym_LT_LT_PIPE] = ACTIONS(5792), + [anon_sym_PLUS] = ACTIONS(5792), + [anon_sym_SLASH] = ACTIONS(5792), + [anon_sym_catch] = ACTIONS(5792), + [anon_sym_TILDE] = ACTIONS(5790), + [anon_sym_try] = ACTIONS(5792), + [anon_sym_DOT] = ACTIONS(5792), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_true] = ACTIONS(5792), + [anon_sym_false] = ACTIONS(5792), + [anon_sym_null] = ACTIONS(5792), + [anon_sym_unreachable] = ACTIONS(5792), + [anon_sym_undefined] = ACTIONS(5792), + [sym_sink] = ACTIONS(5792), + [sym_integer] = ACTIONS(5792), + [sym_float] = ACTIONS(5790), + [anon_sym_DQUOTE] = ACTIONS(5790), + [sym_multiline_string] = ACTIONS(5790), + [sym_character] = ACTIONS(5790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5790), + }, + [STATE(3057)] = { + [sym_identifier] = ACTIONS(5796), + [anon_sym_func] = ACTIONS(5796), + [anon_sym_c_func] = ACTIONS(5796), + [anon_sym_BANG] = ACTIONS(5796), + [anon_sym_EQ] = ACTIONS(5796), + [anon_sym_struct] = ACTIONS(5796), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(5794), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_DASH] = ACTIONS(5796), + [anon_sym_DOLLAR] = ACTIONS(5794), + [anon_sym_PIPE] = ACTIONS(5796), + [anon_sym_struct_type_BANG] = ACTIONS(5794), + [anon_sym_QMARK] = ACTIONS(5794), + [anon_sym_AT] = ACTIONS(5794), + [anon_sym_STAR] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_void] = ACTIONS(5796), + [anon_sym_noreturn] = ACTIONS(5796), + [anon_sym_type] = ACTIONS(5796), + [anon_sym_anyopaque] = ACTIONS(5796), + [anon_sym_bool] = ACTIONS(5796), + [anon_sym_int] = ACTIONS(5796), + [anon_sym_uint] = ACTIONS(5796), + [anon_sym_float] = ACTIONS(5796), + [anon_sym_range] = ACTIONS(5796), + [anon_sym_i8] = ACTIONS(5796), + [anon_sym_i16] = ACTIONS(5796), + [anon_sym_i32] = ACTIONS(5796), + [anon_sym_i64] = ACTIONS(5796), + [anon_sym_u8] = ACTIONS(5796), + [anon_sym_u16] = ACTIONS(5796), + [anon_sym_u32] = ACTIONS(5796), + [anon_sym_u64] = ACTIONS(5796), + [anon_sym_isize] = ACTIONS(5796), + [anon_sym_usize] = ACTIONS(5796), + [anon_sym_f32] = ACTIONS(5796), + [anon_sym_f64] = ACTIONS(5796), + [anon_sym_c_char] = ACTIONS(5796), + [anon_sym_c_schar] = ACTIONS(5796), + [anon_sym_c_uchar] = ACTIONS(5796), + [anon_sym_c_short] = ACTIONS(5796), + [anon_sym_c_ushort] = ACTIONS(5796), + [anon_sym_c_int] = ACTIONS(5796), + [anon_sym_c_uint] = ACTIONS(5796), + [anon_sym_c_long] = ACTIONS(5796), + [anon_sym_c_ulong] = ACTIONS(5796), + [anon_sym_c_longlong] = ACTIONS(5796), + [anon_sym_c_ulonglong] = ACTIONS(5796), + [anon_sym_c_float] = ACTIONS(5796), + [anon_sym_c_double] = ACTIONS(5796), + [anon_sym_c_longdouble] = ACTIONS(5796), + [anon_sym_PLUS_EQ] = ACTIONS(5794), + [anon_sym_DASH_EQ] = ACTIONS(5794), + [anon_sym_STAR_EQ] = ACTIONS(5794), + [anon_sym_SLASH_EQ] = ACTIONS(5794), + [anon_sym_AMP_EQ] = ACTIONS(5794), + [anon_sym_PIPE_EQ] = ACTIONS(5794), + [anon_sym_xor_EQ] = ACTIONS(5794), + [anon_sym_LT_LT_EQ] = ACTIONS(5794), + [anon_sym_GT_GT_EQ] = ACTIONS(5794), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5794), + [anon_sym_return] = ACTIONS(5796), + [anon_sym_yield] = ACTIONS(5796), + [anon_sym_break] = ACTIONS(5796), + [anon_sym_continue] = ACTIONS(5796), + [anon_sym_defer] = ACTIONS(5796), + [anon_sym_errdefer] = ACTIONS(5796), + [anon_sym_if] = ACTIONS(5796), + [anon_sym_else] = ACTIONS(5796), + [anon_sym_while] = ACTIONS(5796), + [anon_sym_expand] = ACTIONS(5796), + [anon_sym_for] = ACTIONS(5796), + [anon_sym_match] = ACTIONS(5796), + [anon_sym_DOT_DOT] = ACTIONS(5796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5794), + [anon_sym_orelse] = ACTIONS(5796), + [anon_sym_or] = ACTIONS(5796), + [anon_sym_and] = ACTIONS(5796), + [anon_sym_EQ_EQ] = ACTIONS(5794), + [anon_sym_BANG_EQ] = ACTIONS(5794), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_LT_EQ] = ACTIONS(5794), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_GT_EQ] = ACTIONS(5794), + [anon_sym_AMP] = ACTIONS(5796), + [anon_sym_xor] = ACTIONS(5796), + [anon_sym_LT_LT] = ACTIONS(5796), + [anon_sym_GT_GT] = ACTIONS(5796), + [anon_sym_LT_LT_PIPE] = ACTIONS(5796), + [anon_sym_PLUS] = ACTIONS(5796), + [anon_sym_SLASH] = ACTIONS(5796), + [anon_sym_catch] = ACTIONS(5796), + [anon_sym_TILDE] = ACTIONS(5794), + [anon_sym_try] = ACTIONS(5796), + [anon_sym_DOT] = ACTIONS(5796), + [anon_sym_CARET] = ACTIONS(5794), + [anon_sym_true] = ACTIONS(5796), + [anon_sym_false] = ACTIONS(5796), + [anon_sym_null] = ACTIONS(5796), + [anon_sym_unreachable] = ACTIONS(5796), + [anon_sym_undefined] = ACTIONS(5796), + [sym_sink] = ACTIONS(5796), + [sym_integer] = ACTIONS(5796), + [sym_float] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5794), + [sym_multiline_string] = ACTIONS(5794), + [sym_character] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5794), + }, + [STATE(3058)] = { + [sym_identifier] = ACTIONS(5394), + [anon_sym_func] = ACTIONS(5394), + [anon_sym_c_func] = ACTIONS(5394), + [anon_sym_BANG] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_struct] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5392), + [anon_sym_LBRACE] = ACTIONS(5392), + [anon_sym_COMMA] = ACTIONS(5392), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_struct_type_BANG] = ACTIONS(5392), + [anon_sym_QMARK] = ACTIONS(5392), + [anon_sym_AT] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(5392), + [anon_sym_void] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_type] = ACTIONS(5394), + [anon_sym_anyopaque] = ACTIONS(5394), + [anon_sym_bool] = ACTIONS(5394), + [anon_sym_int] = ACTIONS(5394), + [anon_sym_uint] = ACTIONS(5394), + [anon_sym_float] = ACTIONS(5394), + [anon_sym_range] = ACTIONS(5394), + [anon_sym_i8] = ACTIONS(5394), + [anon_sym_i16] = ACTIONS(5394), + [anon_sym_i32] = ACTIONS(5394), + [anon_sym_i64] = ACTIONS(5394), + [anon_sym_u8] = ACTIONS(5394), + [anon_sym_u16] = ACTIONS(5394), + [anon_sym_u32] = ACTIONS(5394), + [anon_sym_u64] = ACTIONS(5394), + [anon_sym_isize] = ACTIONS(5394), + [anon_sym_usize] = ACTIONS(5394), + [anon_sym_f32] = ACTIONS(5394), + [anon_sym_f64] = ACTIONS(5394), + [anon_sym_c_char] = ACTIONS(5394), + [anon_sym_c_schar] = ACTIONS(5394), + [anon_sym_c_uchar] = ACTIONS(5394), + [anon_sym_c_short] = ACTIONS(5394), + [anon_sym_c_ushort] = ACTIONS(5394), + [anon_sym_c_int] = ACTIONS(5394), + [anon_sym_c_uint] = ACTIONS(5394), + [anon_sym_c_long] = ACTIONS(5394), + [anon_sym_c_ulong] = ACTIONS(5394), + [anon_sym_c_longlong] = ACTIONS(5394), + [anon_sym_c_ulonglong] = ACTIONS(5394), + [anon_sym_c_float] = ACTIONS(5394), + [anon_sym_c_double] = ACTIONS(5394), + [anon_sym_c_longdouble] = ACTIONS(5394), + [anon_sym_PLUS_EQ] = ACTIONS(5392), + [anon_sym_DASH_EQ] = ACTIONS(5392), + [anon_sym_STAR_EQ] = ACTIONS(5392), + [anon_sym_SLASH_EQ] = ACTIONS(5392), + [anon_sym_AMP_EQ] = ACTIONS(5392), + [anon_sym_PIPE_EQ] = ACTIONS(5392), + [anon_sym_xor_EQ] = ACTIONS(5392), + [anon_sym_LT_LT_EQ] = ACTIONS(5392), + [anon_sym_GT_GT_EQ] = ACTIONS(5392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5392), + [anon_sym_return] = ACTIONS(5394), + [anon_sym_yield] = ACTIONS(5394), + [anon_sym_break] = ACTIONS(5394), + [anon_sym_continue] = ACTIONS(5394), + [anon_sym_defer] = ACTIONS(5394), + [anon_sym_errdefer] = ACTIONS(5394), + [anon_sym_if] = ACTIONS(5394), + [anon_sym_else] = ACTIONS(5394), + [anon_sym_while] = ACTIONS(5394), + [anon_sym_expand] = ACTIONS(5394), + [anon_sym_for] = ACTIONS(5394), + [anon_sym_match] = ACTIONS(5394), + [anon_sym_DOT_DOT] = ACTIONS(5394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5392), + [anon_sym_orelse] = ACTIONS(5394), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5392), + [anon_sym_BANG_EQ] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_EQ] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5392), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym_LT_LT_PIPE] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_catch] = ACTIONS(5394), + [anon_sym_TILDE] = ACTIONS(5392), + [anon_sym_try] = ACTIONS(5394), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym_true] = ACTIONS(5394), + [anon_sym_false] = ACTIONS(5394), + [anon_sym_null] = ACTIONS(5394), + [anon_sym_unreachable] = ACTIONS(5394), + [anon_sym_undefined] = ACTIONS(5394), + [sym_sink] = ACTIONS(5394), + [sym_integer] = ACTIONS(5394), + [sym_float] = ACTIONS(5392), + [anon_sym_DQUOTE] = ACTIONS(5392), + [sym_multiline_string] = ACTIONS(5392), + [sym_character] = ACTIONS(5392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5392), + }, + [STATE(3059)] = { + [sym_identifier] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_c_func] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_struct_type_BANG] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_xor_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_errdefer] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_expand] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2696), + [anon_sym_and] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_xor] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_LT_LT_PIPE] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_unreachable] = ACTIONS(2696), + [anon_sym_undefined] = ACTIONS(2696), + [sym_sink] = ACTIONS(2696), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [sym_multiline_string] = ACTIONS(2694), + [sym_character] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(3060)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_c_func] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_struct_type_BANG] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(3062), + [anon_sym_DASH_EQ] = ACTIONS(3062), + [anon_sym_STAR_EQ] = ACTIONS(3062), + [anon_sym_SLASH_EQ] = ACTIONS(3062), + [anon_sym_AMP_EQ] = ACTIONS(3062), + [anon_sym_PIPE_EQ] = ACTIONS(3062), + [anon_sym_xor_EQ] = ACTIONS(3062), + [anon_sym_LT_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_GT_EQ] = ACTIONS(3062), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_LT_LT_PIPE] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(3061)] = { + [sym_identifier] = ACTIONS(4902), + [anon_sym_func] = ACTIONS(4902), + [anon_sym_c_func] = ACTIONS(4902), + [anon_sym_BANG] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_struct] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4902), + [anon_sym_struct_type_BANG] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_void] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym_type] = ACTIONS(4902), + [anon_sym_anyopaque] = ACTIONS(4902), + [anon_sym_bool] = ACTIONS(4902), + [anon_sym_int] = ACTIONS(4902), + [anon_sym_uint] = ACTIONS(4902), + [anon_sym_float] = ACTIONS(4902), + [anon_sym_range] = ACTIONS(4902), + [anon_sym_i8] = ACTIONS(4902), + [anon_sym_i16] = ACTIONS(4902), + [anon_sym_i32] = ACTIONS(4902), + [anon_sym_i64] = ACTIONS(4902), + [anon_sym_u8] = ACTIONS(4902), + [anon_sym_u16] = ACTIONS(4902), + [anon_sym_u32] = ACTIONS(4902), + [anon_sym_u64] = ACTIONS(4902), + [anon_sym_isize] = ACTIONS(4902), + [anon_sym_usize] = ACTIONS(4902), + [anon_sym_f32] = ACTIONS(4902), + [anon_sym_f64] = ACTIONS(4902), + [anon_sym_c_char] = ACTIONS(4902), + [anon_sym_c_schar] = ACTIONS(4902), + [anon_sym_c_uchar] = ACTIONS(4902), + [anon_sym_c_short] = ACTIONS(4902), + [anon_sym_c_ushort] = ACTIONS(4902), + [anon_sym_c_int] = ACTIONS(4902), + [anon_sym_c_uint] = ACTIONS(4902), + [anon_sym_c_long] = ACTIONS(4902), + [anon_sym_c_ulong] = ACTIONS(4902), + [anon_sym_c_longlong] = ACTIONS(4902), + [anon_sym_c_ulonglong] = ACTIONS(4902), + [anon_sym_c_float] = ACTIONS(4902), + [anon_sym_c_double] = ACTIONS(4902), + [anon_sym_c_longdouble] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_AMP_EQ] = ACTIONS(4900), + [anon_sym_PIPE_EQ] = ACTIONS(4900), + [anon_sym_xor_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4900), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_yield] = ACTIONS(4902), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_continue] = ACTIONS(4902), + [anon_sym_defer] = ACTIONS(4902), + [anon_sym_errdefer] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_while] = ACTIONS(4902), + [anon_sym_expand] = ACTIONS(4902), + [anon_sym_for] = ACTIONS(4902), + [anon_sym_match] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4900), + [anon_sym_orelse] = ACTIONS(4902), + [anon_sym_or] = ACTIONS(4902), + [anon_sym_and] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_xor] = ACTIONS(4902), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_LT_LT_PIPE] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_catch] = ACTIONS(4902), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4902), + [anon_sym_false] = ACTIONS(4902), + [anon_sym_null] = ACTIONS(4902), + [anon_sym_unreachable] = ACTIONS(4902), + [anon_sym_undefined] = ACTIONS(4902), + [sym_sink] = ACTIONS(4902), + [sym_integer] = ACTIONS(4902), + [sym_float] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [sym_multiline_string] = ACTIONS(4900), + [sym_character] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4900), + }, + [STATE(3062)] = { + [sym_identifier] = ACTIONS(4906), + [anon_sym_func] = ACTIONS(4906), + [anon_sym_c_func] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_struct_type_BANG] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_void] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym_type] = ACTIONS(4906), + [anon_sym_anyopaque] = ACTIONS(4906), + [anon_sym_bool] = ACTIONS(4906), + [anon_sym_int] = ACTIONS(4906), + [anon_sym_uint] = ACTIONS(4906), + [anon_sym_float] = ACTIONS(4906), + [anon_sym_range] = ACTIONS(4906), + [anon_sym_i8] = ACTIONS(4906), + [anon_sym_i16] = ACTIONS(4906), + [anon_sym_i32] = ACTIONS(4906), + [anon_sym_i64] = ACTIONS(4906), + [anon_sym_u8] = ACTIONS(4906), + [anon_sym_u16] = ACTIONS(4906), + [anon_sym_u32] = ACTIONS(4906), + [anon_sym_u64] = ACTIONS(4906), + [anon_sym_isize] = ACTIONS(4906), + [anon_sym_usize] = ACTIONS(4906), + [anon_sym_f32] = ACTIONS(4906), + [anon_sym_f64] = ACTIONS(4906), + [anon_sym_c_char] = ACTIONS(4906), + [anon_sym_c_schar] = ACTIONS(4906), + [anon_sym_c_uchar] = ACTIONS(4906), + [anon_sym_c_short] = ACTIONS(4906), + [anon_sym_c_ushort] = ACTIONS(4906), + [anon_sym_c_int] = ACTIONS(4906), + [anon_sym_c_uint] = ACTIONS(4906), + [anon_sym_c_long] = ACTIONS(4906), + [anon_sym_c_ulong] = ACTIONS(4906), + [anon_sym_c_longlong] = ACTIONS(4906), + [anon_sym_c_ulonglong] = ACTIONS(4906), + [anon_sym_c_float] = ACTIONS(4906), + [anon_sym_c_double] = ACTIONS(4906), + [anon_sym_c_longdouble] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_AMP_EQ] = ACTIONS(4904), + [anon_sym_PIPE_EQ] = ACTIONS(4904), + [anon_sym_xor_EQ] = ACTIONS(4904), + [anon_sym_LT_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4904), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_yield] = ACTIONS(4906), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_continue] = ACTIONS(4906), + [anon_sym_defer] = ACTIONS(4906), + [anon_sym_errdefer] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_expand] = ACTIONS(4906), + [anon_sym_for] = ACTIONS(4906), + [anon_sym_match] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4904), + [anon_sym_orelse] = ACTIONS(4906), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_and] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_xor] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4906), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_LT_LT_PIPE] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_catch] = ACTIONS(4906), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_unreachable] = ACTIONS(4906), + [anon_sym_undefined] = ACTIONS(4906), + [sym_sink] = ACTIONS(4906), + [sym_integer] = ACTIONS(4906), + [sym_float] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [sym_multiline_string] = ACTIONS(4904), + [sym_character] = ACTIONS(4904), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4904), + }, + [STATE(3063)] = { + [sym_identifier] = ACTIONS(6064), + [anon_sym_func] = ACTIONS(6064), + [anon_sym_c_func] = ACTIONS(6064), + [anon_sym_BANG] = ACTIONS(6064), + [anon_sym_EQ] = ACTIONS(6064), + [anon_sym_struct] = ACTIONS(6064), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6062), + [anon_sym_COMMA] = ACTIONS(6062), + [anon_sym_RBRACE] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6064), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_PIPE] = ACTIONS(6064), + [anon_sym_struct_type_BANG] = ACTIONS(6062), + [anon_sym_QMARK] = ACTIONS(6062), + [anon_sym_AT] = ACTIONS(6062), + [anon_sym_STAR] = ACTIONS(6064), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_void] = ACTIONS(6064), + [anon_sym_noreturn] = ACTIONS(6064), + [anon_sym_type] = ACTIONS(6064), + [anon_sym_anyopaque] = ACTIONS(6064), + [anon_sym_bool] = ACTIONS(6064), + [anon_sym_int] = ACTIONS(6064), + [anon_sym_uint] = ACTIONS(6064), + [anon_sym_float] = ACTIONS(6064), + [anon_sym_range] = ACTIONS(6064), + [anon_sym_i8] = ACTIONS(6064), + [anon_sym_i16] = ACTIONS(6064), + [anon_sym_i32] = ACTIONS(6064), + [anon_sym_i64] = ACTIONS(6064), + [anon_sym_u8] = ACTIONS(6064), + [anon_sym_u16] = ACTIONS(6064), + [anon_sym_u32] = ACTIONS(6064), + [anon_sym_u64] = ACTIONS(6064), + [anon_sym_isize] = ACTIONS(6064), + [anon_sym_usize] = ACTIONS(6064), + [anon_sym_f32] = ACTIONS(6064), + [anon_sym_f64] = ACTIONS(6064), + [anon_sym_c_char] = ACTIONS(6064), + [anon_sym_c_schar] = ACTIONS(6064), + [anon_sym_c_uchar] = ACTIONS(6064), + [anon_sym_c_short] = ACTIONS(6064), + [anon_sym_c_ushort] = ACTIONS(6064), + [anon_sym_c_int] = ACTIONS(6064), + [anon_sym_c_uint] = ACTIONS(6064), + [anon_sym_c_long] = ACTIONS(6064), + [anon_sym_c_ulong] = ACTIONS(6064), + [anon_sym_c_longlong] = ACTIONS(6064), + [anon_sym_c_ulonglong] = ACTIONS(6064), + [anon_sym_c_float] = ACTIONS(6064), + [anon_sym_c_double] = ACTIONS(6064), + [anon_sym_c_longdouble] = ACTIONS(6064), + [anon_sym_PLUS_EQ] = ACTIONS(6062), + [anon_sym_DASH_EQ] = ACTIONS(6062), + [anon_sym_STAR_EQ] = ACTIONS(6062), + [anon_sym_SLASH_EQ] = ACTIONS(6062), + [anon_sym_AMP_EQ] = ACTIONS(6062), + [anon_sym_PIPE_EQ] = ACTIONS(6062), + [anon_sym_xor_EQ] = ACTIONS(6062), + [anon_sym_LT_LT_EQ] = ACTIONS(6062), + [anon_sym_GT_GT_EQ] = ACTIONS(6062), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6062), + [anon_sym_return] = ACTIONS(6064), + [anon_sym_yield] = ACTIONS(6064), + [anon_sym_break] = ACTIONS(6064), + [anon_sym_continue] = ACTIONS(6064), + [anon_sym_defer] = ACTIONS(6064), + [anon_sym_errdefer] = ACTIONS(6064), + [anon_sym_if] = ACTIONS(6064), + [anon_sym_else] = ACTIONS(6064), + [anon_sym_while] = ACTIONS(6064), + [anon_sym_expand] = ACTIONS(6064), + [anon_sym_for] = ACTIONS(6064), + [anon_sym_match] = ACTIONS(6064), + [anon_sym_DOT_DOT] = ACTIONS(6064), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_orelse] = ACTIONS(6064), + [anon_sym_or] = ACTIONS(6064), + [anon_sym_and] = ACTIONS(6064), + [anon_sym_EQ_EQ] = ACTIONS(6062), + [anon_sym_BANG_EQ] = ACTIONS(6062), + [anon_sym_LT] = ACTIONS(6064), + [anon_sym_LT_EQ] = ACTIONS(6062), + [anon_sym_GT] = ACTIONS(6064), + [anon_sym_GT_EQ] = ACTIONS(6062), + [anon_sym_AMP] = ACTIONS(6064), + [anon_sym_xor] = ACTIONS(6064), + [anon_sym_LT_LT] = ACTIONS(6064), + [anon_sym_GT_GT] = ACTIONS(6064), + [anon_sym_LT_LT_PIPE] = ACTIONS(6064), + [anon_sym_PLUS] = ACTIONS(6064), + [anon_sym_SLASH] = ACTIONS(6064), + [anon_sym_catch] = ACTIONS(6064), + [anon_sym_TILDE] = ACTIONS(6062), + [anon_sym_try] = ACTIONS(6064), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_true] = ACTIONS(6064), + [anon_sym_false] = ACTIONS(6064), + [anon_sym_null] = ACTIONS(6064), + [anon_sym_unreachable] = ACTIONS(6064), + [anon_sym_undefined] = ACTIONS(6064), + [sym_sink] = ACTIONS(6064), + [sym_integer] = ACTIONS(6064), + [sym_float] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(6062), + [sym_multiline_string] = ACTIONS(6062), + [sym_character] = ACTIONS(6062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6062), + }, + [STATE(3064)] = { + [sym_identifier] = ACTIONS(5888), + [anon_sym_func] = ACTIONS(5888), + [anon_sym_c_func] = ACTIONS(5888), + [anon_sym_BANG] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_LPAREN] = ACTIONS(5886), + [anon_sym_LBRACE] = ACTIONS(5886), + [anon_sym_COMMA] = ACTIONS(5886), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_DASH] = ACTIONS(5888), + [anon_sym_DOLLAR] = ACTIONS(5886), + [anon_sym_PIPE] = ACTIONS(5888), + [anon_sym_struct_type_BANG] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(5886), + [anon_sym_AT] = ACTIONS(5886), + [anon_sym_STAR] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5886), + [anon_sym_void] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_type] = ACTIONS(5888), + [anon_sym_anyopaque] = ACTIONS(5888), + [anon_sym_bool] = ACTIONS(5888), + [anon_sym_int] = ACTIONS(5888), + [anon_sym_uint] = ACTIONS(5888), + [anon_sym_float] = ACTIONS(5888), + [anon_sym_range] = ACTIONS(5888), + [anon_sym_i8] = ACTIONS(5888), + [anon_sym_i16] = ACTIONS(5888), + [anon_sym_i32] = ACTIONS(5888), + [anon_sym_i64] = ACTIONS(5888), + [anon_sym_u8] = ACTIONS(5888), + [anon_sym_u16] = ACTIONS(5888), + [anon_sym_u32] = ACTIONS(5888), + [anon_sym_u64] = ACTIONS(5888), + [anon_sym_isize] = ACTIONS(5888), + [anon_sym_usize] = ACTIONS(5888), + [anon_sym_f32] = ACTIONS(5888), + [anon_sym_f64] = ACTIONS(5888), + [anon_sym_c_char] = ACTIONS(5888), + [anon_sym_c_schar] = ACTIONS(5888), + [anon_sym_c_uchar] = ACTIONS(5888), + [anon_sym_c_short] = ACTIONS(5888), + [anon_sym_c_ushort] = ACTIONS(5888), + [anon_sym_c_int] = ACTIONS(5888), + [anon_sym_c_uint] = ACTIONS(5888), + [anon_sym_c_long] = ACTIONS(5888), + [anon_sym_c_ulong] = ACTIONS(5888), + [anon_sym_c_longlong] = ACTIONS(5888), + [anon_sym_c_ulonglong] = ACTIONS(5888), + [anon_sym_c_float] = ACTIONS(5888), + [anon_sym_c_double] = ACTIONS(5888), + [anon_sym_c_longdouble] = ACTIONS(5888), + [anon_sym_PLUS_EQ] = ACTIONS(5886), + [anon_sym_DASH_EQ] = ACTIONS(5886), + [anon_sym_STAR_EQ] = ACTIONS(5886), + [anon_sym_SLASH_EQ] = ACTIONS(5886), + [anon_sym_AMP_EQ] = ACTIONS(5886), + [anon_sym_PIPE_EQ] = ACTIONS(5886), + [anon_sym_xor_EQ] = ACTIONS(5886), + [anon_sym_LT_LT_EQ] = ACTIONS(5886), + [anon_sym_GT_GT_EQ] = ACTIONS(5886), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5886), + [anon_sym_return] = ACTIONS(5888), + [anon_sym_yield] = ACTIONS(5888), + [anon_sym_break] = ACTIONS(5888), + [anon_sym_continue] = ACTIONS(5888), + [anon_sym_defer] = ACTIONS(5888), + [anon_sym_errdefer] = ACTIONS(5888), + [anon_sym_if] = ACTIONS(5888), + [anon_sym_else] = ACTIONS(5888), + [anon_sym_while] = ACTIONS(5888), + [anon_sym_expand] = ACTIONS(5888), + [anon_sym_for] = ACTIONS(5888), + [anon_sym_match] = ACTIONS(5888), + [anon_sym_DOT_DOT] = ACTIONS(5888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5886), + [anon_sym_orelse] = ACTIONS(5888), + [anon_sym_or] = ACTIONS(5888), + [anon_sym_and] = ACTIONS(5888), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_BANG_EQ] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(5888), + [anon_sym_LT_EQ] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5888), + [anon_sym_GT_EQ] = ACTIONS(5886), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym_xor] = ACTIONS(5888), + [anon_sym_LT_LT] = ACTIONS(5888), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_LT_LT_PIPE] = ACTIONS(5888), + [anon_sym_PLUS] = ACTIONS(5888), + [anon_sym_SLASH] = ACTIONS(5888), + [anon_sym_catch] = ACTIONS(5888), + [anon_sym_TILDE] = ACTIONS(5886), + [anon_sym_try] = ACTIONS(5888), + [anon_sym_DOT] = ACTIONS(5888), + [anon_sym_CARET] = ACTIONS(5886), + [anon_sym_true] = ACTIONS(5888), + [anon_sym_false] = ACTIONS(5888), + [anon_sym_null] = ACTIONS(5888), + [anon_sym_unreachable] = ACTIONS(5888), + [anon_sym_undefined] = ACTIONS(5888), + [sym_sink] = ACTIONS(5888), + [sym_integer] = ACTIONS(5888), + [sym_float] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(5886), + [sym_multiline_string] = ACTIONS(5886), + [sym_character] = ACTIONS(5886), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5886), + }, + [STATE(3065)] = { + [sym_identifier] = ACTIONS(5892), + [anon_sym_func] = ACTIONS(5892), + [anon_sym_c_func] = ACTIONS(5892), + [anon_sym_BANG] = ACTIONS(5892), + [anon_sym_EQ] = ACTIONS(5892), + [anon_sym_struct] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5890), + [anon_sym_LBRACE] = ACTIONS(5890), + [anon_sym_COMMA] = ACTIONS(5890), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym_DASH] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5890), + [anon_sym_PIPE] = ACTIONS(5892), + [anon_sym_struct_type_BANG] = ACTIONS(5890), + [anon_sym_QMARK] = ACTIONS(5890), + [anon_sym_AT] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(5890), + [anon_sym_void] = ACTIONS(5892), + [anon_sym_noreturn] = ACTIONS(5892), + [anon_sym_type] = ACTIONS(5892), + [anon_sym_anyopaque] = ACTIONS(5892), + [anon_sym_bool] = ACTIONS(5892), + [anon_sym_int] = ACTIONS(5892), + [anon_sym_uint] = ACTIONS(5892), + [anon_sym_float] = ACTIONS(5892), + [anon_sym_range] = ACTIONS(5892), + [anon_sym_i8] = ACTIONS(5892), + [anon_sym_i16] = ACTIONS(5892), + [anon_sym_i32] = ACTIONS(5892), + [anon_sym_i64] = ACTIONS(5892), + [anon_sym_u8] = ACTIONS(5892), + [anon_sym_u16] = ACTIONS(5892), + [anon_sym_u32] = ACTIONS(5892), + [anon_sym_u64] = ACTIONS(5892), + [anon_sym_isize] = ACTIONS(5892), + [anon_sym_usize] = ACTIONS(5892), + [anon_sym_f32] = ACTIONS(5892), + [anon_sym_f64] = ACTIONS(5892), + [anon_sym_c_char] = ACTIONS(5892), + [anon_sym_c_schar] = ACTIONS(5892), + [anon_sym_c_uchar] = ACTIONS(5892), + [anon_sym_c_short] = ACTIONS(5892), + [anon_sym_c_ushort] = ACTIONS(5892), + [anon_sym_c_int] = ACTIONS(5892), + [anon_sym_c_uint] = ACTIONS(5892), + [anon_sym_c_long] = ACTIONS(5892), + [anon_sym_c_ulong] = ACTIONS(5892), + [anon_sym_c_longlong] = ACTIONS(5892), + [anon_sym_c_ulonglong] = ACTIONS(5892), + [anon_sym_c_float] = ACTIONS(5892), + [anon_sym_c_double] = ACTIONS(5892), + [anon_sym_c_longdouble] = ACTIONS(5892), + [anon_sym_PLUS_EQ] = ACTIONS(5890), + [anon_sym_DASH_EQ] = ACTIONS(5890), + [anon_sym_STAR_EQ] = ACTIONS(5890), + [anon_sym_SLASH_EQ] = ACTIONS(5890), + [anon_sym_AMP_EQ] = ACTIONS(5890), + [anon_sym_PIPE_EQ] = ACTIONS(5890), + [anon_sym_xor_EQ] = ACTIONS(5890), + [anon_sym_LT_LT_EQ] = ACTIONS(5890), + [anon_sym_GT_GT_EQ] = ACTIONS(5890), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5890), + [anon_sym_return] = ACTIONS(5892), + [anon_sym_yield] = ACTIONS(5892), + [anon_sym_break] = ACTIONS(5892), + [anon_sym_continue] = ACTIONS(5892), + [anon_sym_defer] = ACTIONS(5892), + [anon_sym_errdefer] = ACTIONS(5892), + [anon_sym_if] = ACTIONS(5892), + [anon_sym_else] = ACTIONS(5892), + [anon_sym_while] = ACTIONS(5892), + [anon_sym_expand] = ACTIONS(5892), + [anon_sym_for] = ACTIONS(5892), + [anon_sym_match] = ACTIONS(5892), + [anon_sym_DOT_DOT] = ACTIONS(5892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5890), + [anon_sym_orelse] = ACTIONS(5892), + [anon_sym_or] = ACTIONS(5892), + [anon_sym_and] = ACTIONS(5892), + [anon_sym_EQ_EQ] = ACTIONS(5890), + [anon_sym_BANG_EQ] = ACTIONS(5890), + [anon_sym_LT] = ACTIONS(5892), + [anon_sym_LT_EQ] = ACTIONS(5890), + [anon_sym_GT] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_xor] = ACTIONS(5892), + [anon_sym_LT_LT] = ACTIONS(5892), + [anon_sym_GT_GT] = ACTIONS(5892), + [anon_sym_LT_LT_PIPE] = ACTIONS(5892), + [anon_sym_PLUS] = ACTIONS(5892), + [anon_sym_SLASH] = ACTIONS(5892), + [anon_sym_catch] = ACTIONS(5892), + [anon_sym_TILDE] = ACTIONS(5890), + [anon_sym_try] = ACTIONS(5892), + [anon_sym_DOT] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5890), + [anon_sym_true] = ACTIONS(5892), + [anon_sym_false] = ACTIONS(5892), + [anon_sym_null] = ACTIONS(5892), + [anon_sym_unreachable] = ACTIONS(5892), + [anon_sym_undefined] = ACTIONS(5892), + [sym_sink] = ACTIONS(5892), + [sym_integer] = ACTIONS(5892), + [sym_float] = ACTIONS(5890), + [anon_sym_DQUOTE] = ACTIONS(5890), + [sym_multiline_string] = ACTIONS(5890), + [sym_character] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5890), + }, + [STATE(3066)] = { + [sym_identifier] = ACTIONS(5800), + [anon_sym_func] = ACTIONS(5800), + [anon_sym_c_func] = ACTIONS(5800), + [anon_sym_BANG] = ACTIONS(5800), + [anon_sym_EQ] = ACTIONS(5800), + [anon_sym_struct] = ACTIONS(5800), + [anon_sym_LPAREN] = ACTIONS(5798), + [anon_sym_LBRACE] = ACTIONS(5798), + [anon_sym_COMMA] = ACTIONS(5798), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5800), + [anon_sym_DOLLAR] = ACTIONS(5798), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_struct_type_BANG] = ACTIONS(5798), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_AT] = ACTIONS(5798), + [anon_sym_STAR] = ACTIONS(5800), + [anon_sym_LBRACK] = ACTIONS(5798), + [anon_sym_void] = ACTIONS(5800), + [anon_sym_noreturn] = ACTIONS(5800), + [anon_sym_type] = ACTIONS(5800), + [anon_sym_anyopaque] = ACTIONS(5800), + [anon_sym_bool] = ACTIONS(5800), + [anon_sym_int] = ACTIONS(5800), + [anon_sym_uint] = ACTIONS(5800), + [anon_sym_float] = ACTIONS(5800), + [anon_sym_range] = ACTIONS(5800), + [anon_sym_i8] = ACTIONS(5800), + [anon_sym_i16] = ACTIONS(5800), + [anon_sym_i32] = ACTIONS(5800), + [anon_sym_i64] = ACTIONS(5800), + [anon_sym_u8] = ACTIONS(5800), + [anon_sym_u16] = ACTIONS(5800), + [anon_sym_u32] = ACTIONS(5800), + [anon_sym_u64] = ACTIONS(5800), + [anon_sym_isize] = ACTIONS(5800), + [anon_sym_usize] = ACTIONS(5800), + [anon_sym_f32] = ACTIONS(5800), + [anon_sym_f64] = ACTIONS(5800), + [anon_sym_c_char] = ACTIONS(5800), + [anon_sym_c_schar] = ACTIONS(5800), + [anon_sym_c_uchar] = ACTIONS(5800), + [anon_sym_c_short] = ACTIONS(5800), + [anon_sym_c_ushort] = ACTIONS(5800), + [anon_sym_c_int] = ACTIONS(5800), + [anon_sym_c_uint] = ACTIONS(5800), + [anon_sym_c_long] = ACTIONS(5800), + [anon_sym_c_ulong] = ACTIONS(5800), + [anon_sym_c_longlong] = ACTIONS(5800), + [anon_sym_c_ulonglong] = ACTIONS(5800), + [anon_sym_c_float] = ACTIONS(5800), + [anon_sym_c_double] = ACTIONS(5800), + [anon_sym_c_longdouble] = ACTIONS(5800), + [anon_sym_PLUS_EQ] = ACTIONS(5798), + [anon_sym_DASH_EQ] = ACTIONS(5798), + [anon_sym_STAR_EQ] = ACTIONS(5798), + [anon_sym_SLASH_EQ] = ACTIONS(5798), + [anon_sym_AMP_EQ] = ACTIONS(5798), + [anon_sym_PIPE_EQ] = ACTIONS(5798), + [anon_sym_xor_EQ] = ACTIONS(5798), + [anon_sym_LT_LT_EQ] = ACTIONS(5798), + [anon_sym_GT_GT_EQ] = ACTIONS(5798), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5798), + [anon_sym_return] = ACTIONS(5800), + [anon_sym_yield] = ACTIONS(5800), + [anon_sym_break] = ACTIONS(5800), + [anon_sym_continue] = ACTIONS(5800), + [anon_sym_defer] = ACTIONS(5800), + [anon_sym_errdefer] = ACTIONS(5800), + [anon_sym_if] = ACTIONS(5800), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_while] = ACTIONS(5800), + [anon_sym_expand] = ACTIONS(5800), + [anon_sym_for] = ACTIONS(5800), + [anon_sym_match] = ACTIONS(5800), + [anon_sym_DOT_DOT] = ACTIONS(5800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5798), + [anon_sym_orelse] = ACTIONS(5800), + [anon_sym_or] = ACTIONS(5800), + [anon_sym_and] = ACTIONS(5800), + [anon_sym_EQ_EQ] = ACTIONS(5798), + [anon_sym_BANG_EQ] = ACTIONS(5798), + [anon_sym_LT] = ACTIONS(5800), + [anon_sym_LT_EQ] = ACTIONS(5798), + [anon_sym_GT] = ACTIONS(5800), + [anon_sym_GT_EQ] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [anon_sym_xor] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [anon_sym_LT_LT_PIPE] = ACTIONS(5800), + [anon_sym_PLUS] = ACTIONS(5800), + [anon_sym_SLASH] = ACTIONS(5800), + [anon_sym_catch] = ACTIONS(5800), + [anon_sym_TILDE] = ACTIONS(5798), + [anon_sym_try] = ACTIONS(5800), + [anon_sym_DOT] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5798), + [anon_sym_true] = ACTIONS(5800), + [anon_sym_false] = ACTIONS(5800), + [anon_sym_null] = ACTIONS(5800), + [anon_sym_unreachable] = ACTIONS(5800), + [anon_sym_undefined] = ACTIONS(5800), + [sym_sink] = ACTIONS(5800), + [sym_integer] = ACTIONS(5800), + [sym_float] = ACTIONS(5798), + [anon_sym_DQUOTE] = ACTIONS(5798), + [sym_multiline_string] = ACTIONS(5798), + [sym_character] = ACTIONS(5798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5798), + }, + [STATE(3067)] = { + [sym_identifier] = ACTIONS(5896), + [anon_sym_func] = ACTIONS(5896), + [anon_sym_c_func] = ACTIONS(5896), + [anon_sym_BANG] = ACTIONS(5896), + [anon_sym_EQ] = ACTIONS(5896), + [anon_sym_struct] = ACTIONS(5896), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_LBRACE] = ACTIONS(5894), + [anon_sym_COMMA] = ACTIONS(5894), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_DOLLAR] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_struct_type_BANG] = ACTIONS(5894), + [anon_sym_QMARK] = ACTIONS(5894), + [anon_sym_AT] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5896), + [anon_sym_LBRACK] = ACTIONS(5894), + [anon_sym_void] = ACTIONS(5896), + [anon_sym_noreturn] = ACTIONS(5896), + [anon_sym_type] = ACTIONS(5896), + [anon_sym_anyopaque] = ACTIONS(5896), + [anon_sym_bool] = ACTIONS(5896), + [anon_sym_int] = ACTIONS(5896), + [anon_sym_uint] = ACTIONS(5896), + [anon_sym_float] = ACTIONS(5896), + [anon_sym_range] = ACTIONS(5896), + [anon_sym_i8] = ACTIONS(5896), + [anon_sym_i16] = ACTIONS(5896), + [anon_sym_i32] = ACTIONS(5896), + [anon_sym_i64] = ACTIONS(5896), + [anon_sym_u8] = ACTIONS(5896), + [anon_sym_u16] = ACTIONS(5896), + [anon_sym_u32] = ACTIONS(5896), + [anon_sym_u64] = ACTIONS(5896), + [anon_sym_isize] = ACTIONS(5896), + [anon_sym_usize] = ACTIONS(5896), + [anon_sym_f32] = ACTIONS(5896), + [anon_sym_f64] = ACTIONS(5896), + [anon_sym_c_char] = ACTIONS(5896), + [anon_sym_c_schar] = ACTIONS(5896), + [anon_sym_c_uchar] = ACTIONS(5896), + [anon_sym_c_short] = ACTIONS(5896), + [anon_sym_c_ushort] = ACTIONS(5896), + [anon_sym_c_int] = ACTIONS(5896), + [anon_sym_c_uint] = ACTIONS(5896), + [anon_sym_c_long] = ACTIONS(5896), + [anon_sym_c_ulong] = ACTIONS(5896), + [anon_sym_c_longlong] = ACTIONS(5896), + [anon_sym_c_ulonglong] = ACTIONS(5896), + [anon_sym_c_float] = ACTIONS(5896), + [anon_sym_c_double] = ACTIONS(5896), + [anon_sym_c_longdouble] = ACTIONS(5896), + [anon_sym_PLUS_EQ] = ACTIONS(5894), + [anon_sym_DASH_EQ] = ACTIONS(5894), + [anon_sym_STAR_EQ] = ACTIONS(5894), + [anon_sym_SLASH_EQ] = ACTIONS(5894), + [anon_sym_AMP_EQ] = ACTIONS(5894), + [anon_sym_PIPE_EQ] = ACTIONS(5894), + [anon_sym_xor_EQ] = ACTIONS(5894), + [anon_sym_LT_LT_EQ] = ACTIONS(5894), + [anon_sym_GT_GT_EQ] = ACTIONS(5894), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5894), + [anon_sym_return] = ACTIONS(5896), + [anon_sym_yield] = ACTIONS(5896), + [anon_sym_break] = ACTIONS(5896), + [anon_sym_continue] = ACTIONS(5896), + [anon_sym_defer] = ACTIONS(5896), + [anon_sym_errdefer] = ACTIONS(5896), + [anon_sym_if] = ACTIONS(5896), + [anon_sym_else] = ACTIONS(5896), + [anon_sym_while] = ACTIONS(5896), + [anon_sym_expand] = ACTIONS(5896), + [anon_sym_for] = ACTIONS(5896), + [anon_sym_match] = ACTIONS(5896), + [anon_sym_DOT_DOT] = ACTIONS(5896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5894), + [anon_sym_orelse] = ACTIONS(5896), + [anon_sym_or] = ACTIONS(5896), + [anon_sym_and] = ACTIONS(5896), + [anon_sym_EQ_EQ] = ACTIONS(5894), + [anon_sym_BANG_EQ] = ACTIONS(5894), + [anon_sym_LT] = ACTIONS(5896), + [anon_sym_LT_EQ] = ACTIONS(5894), + [anon_sym_GT] = ACTIONS(5896), + [anon_sym_GT_EQ] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(5896), + [anon_sym_xor] = ACTIONS(5896), + [anon_sym_LT_LT] = ACTIONS(5896), + [anon_sym_GT_GT] = ACTIONS(5896), + [anon_sym_LT_LT_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5896), + [anon_sym_catch] = ACTIONS(5896), + [anon_sym_TILDE] = ACTIONS(5894), + [anon_sym_try] = ACTIONS(5896), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_true] = ACTIONS(5896), + [anon_sym_false] = ACTIONS(5896), + [anon_sym_null] = ACTIONS(5896), + [anon_sym_unreachable] = ACTIONS(5896), + [anon_sym_undefined] = ACTIONS(5896), + [sym_sink] = ACTIONS(5896), + [sym_integer] = ACTIONS(5896), + [sym_float] = ACTIONS(5894), + [anon_sym_DQUOTE] = ACTIONS(5894), + [sym_multiline_string] = ACTIONS(5894), + [sym_character] = ACTIONS(5894), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5894), + }, + [STATE(3068)] = { + [sym_identifier] = ACTIONS(5804), + [anon_sym_func] = ACTIONS(5804), + [anon_sym_c_func] = ACTIONS(5804), + [anon_sym_BANG] = ACTIONS(5804), + [anon_sym_EQ] = ACTIONS(5804), + [anon_sym_struct] = ACTIONS(5804), + [anon_sym_LPAREN] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5802), + [anon_sym_COMMA] = ACTIONS(5802), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5804), + [anon_sym_DOLLAR] = ACTIONS(5802), + [anon_sym_PIPE] = ACTIONS(5804), + [anon_sym_struct_type_BANG] = ACTIONS(5802), + [anon_sym_QMARK] = ACTIONS(5802), + [anon_sym_AT] = ACTIONS(5802), + [anon_sym_STAR] = ACTIONS(5804), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_void] = ACTIONS(5804), + [anon_sym_noreturn] = ACTIONS(5804), + [anon_sym_type] = ACTIONS(5804), + [anon_sym_anyopaque] = ACTIONS(5804), + [anon_sym_bool] = ACTIONS(5804), + [anon_sym_int] = ACTIONS(5804), + [anon_sym_uint] = ACTIONS(5804), + [anon_sym_float] = ACTIONS(5804), + [anon_sym_range] = ACTIONS(5804), + [anon_sym_i8] = ACTIONS(5804), + [anon_sym_i16] = ACTIONS(5804), + [anon_sym_i32] = ACTIONS(5804), + [anon_sym_i64] = ACTIONS(5804), + [anon_sym_u8] = ACTIONS(5804), + [anon_sym_u16] = ACTIONS(5804), + [anon_sym_u32] = ACTIONS(5804), + [anon_sym_u64] = ACTIONS(5804), + [anon_sym_isize] = ACTIONS(5804), + [anon_sym_usize] = ACTIONS(5804), + [anon_sym_f32] = ACTIONS(5804), + [anon_sym_f64] = ACTIONS(5804), + [anon_sym_c_char] = ACTIONS(5804), + [anon_sym_c_schar] = ACTIONS(5804), + [anon_sym_c_uchar] = ACTIONS(5804), + [anon_sym_c_short] = ACTIONS(5804), + [anon_sym_c_ushort] = ACTIONS(5804), + [anon_sym_c_int] = ACTIONS(5804), + [anon_sym_c_uint] = ACTIONS(5804), + [anon_sym_c_long] = ACTIONS(5804), + [anon_sym_c_ulong] = ACTIONS(5804), + [anon_sym_c_longlong] = ACTIONS(5804), + [anon_sym_c_ulonglong] = ACTIONS(5804), + [anon_sym_c_float] = ACTIONS(5804), + [anon_sym_c_double] = ACTIONS(5804), + [anon_sym_c_longdouble] = ACTIONS(5804), + [anon_sym_PLUS_EQ] = ACTIONS(5802), + [anon_sym_DASH_EQ] = ACTIONS(5802), + [anon_sym_STAR_EQ] = ACTIONS(5802), + [anon_sym_SLASH_EQ] = ACTIONS(5802), + [anon_sym_AMP_EQ] = ACTIONS(5802), + [anon_sym_PIPE_EQ] = ACTIONS(5802), + [anon_sym_xor_EQ] = ACTIONS(5802), + [anon_sym_LT_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_GT_EQ] = ACTIONS(5802), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5802), + [anon_sym_return] = ACTIONS(5804), + [anon_sym_yield] = ACTIONS(5804), + [anon_sym_break] = ACTIONS(5804), + [anon_sym_continue] = ACTIONS(5804), + [anon_sym_defer] = ACTIONS(5804), + [anon_sym_errdefer] = ACTIONS(5804), + [anon_sym_if] = ACTIONS(5804), + [anon_sym_else] = ACTIONS(5804), + [anon_sym_while] = ACTIONS(5804), + [anon_sym_expand] = ACTIONS(5804), + [anon_sym_for] = ACTIONS(5804), + [anon_sym_match] = ACTIONS(5804), + [anon_sym_DOT_DOT] = ACTIONS(5804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5802), + [anon_sym_orelse] = ACTIONS(5804), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5802), + [anon_sym_BANG_EQ] = ACTIONS(5802), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5804), + [anon_sym_GT_GT] = ACTIONS(5804), + [anon_sym_LT_LT_PIPE] = ACTIONS(5804), + [anon_sym_PLUS] = ACTIONS(5804), + [anon_sym_SLASH] = ACTIONS(5804), + [anon_sym_catch] = ACTIONS(5804), + [anon_sym_TILDE] = ACTIONS(5802), + [anon_sym_try] = ACTIONS(5804), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5802), + [anon_sym_true] = ACTIONS(5804), + [anon_sym_false] = ACTIONS(5804), + [anon_sym_null] = ACTIONS(5804), + [anon_sym_unreachable] = ACTIONS(5804), + [anon_sym_undefined] = ACTIONS(5804), + [sym_sink] = ACTIONS(5804), + [sym_integer] = ACTIONS(5804), + [sym_float] = ACTIONS(5802), + [anon_sym_DQUOTE] = ACTIONS(5802), + [sym_multiline_string] = ACTIONS(5802), + [sym_character] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5802), + }, + [STATE(3069)] = { + [sym_identifier] = ACTIONS(5808), + [anon_sym_func] = ACTIONS(5808), + [anon_sym_c_func] = ACTIONS(5808), + [anon_sym_BANG] = ACTIONS(5808), + [anon_sym_EQ] = ACTIONS(5808), + [anon_sym_struct] = ACTIONS(5808), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(5806), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_DOLLAR] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5808), + [anon_sym_struct_type_BANG] = ACTIONS(5806), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_AT] = ACTIONS(5806), + [anon_sym_STAR] = ACTIONS(5808), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_void] = ACTIONS(5808), + [anon_sym_noreturn] = ACTIONS(5808), + [anon_sym_type] = ACTIONS(5808), + [anon_sym_anyopaque] = ACTIONS(5808), + [anon_sym_bool] = ACTIONS(5808), + [anon_sym_int] = ACTIONS(5808), + [anon_sym_uint] = ACTIONS(5808), + [anon_sym_float] = ACTIONS(5808), + [anon_sym_range] = ACTIONS(5808), + [anon_sym_i8] = ACTIONS(5808), + [anon_sym_i16] = ACTIONS(5808), + [anon_sym_i32] = ACTIONS(5808), + [anon_sym_i64] = ACTIONS(5808), + [anon_sym_u8] = ACTIONS(5808), + [anon_sym_u16] = ACTIONS(5808), + [anon_sym_u32] = ACTIONS(5808), + [anon_sym_u64] = ACTIONS(5808), + [anon_sym_isize] = ACTIONS(5808), + [anon_sym_usize] = ACTIONS(5808), + [anon_sym_f32] = ACTIONS(5808), + [anon_sym_f64] = ACTIONS(5808), + [anon_sym_c_char] = ACTIONS(5808), + [anon_sym_c_schar] = ACTIONS(5808), + [anon_sym_c_uchar] = ACTIONS(5808), + [anon_sym_c_short] = ACTIONS(5808), + [anon_sym_c_ushort] = ACTIONS(5808), + [anon_sym_c_int] = ACTIONS(5808), + [anon_sym_c_uint] = ACTIONS(5808), + [anon_sym_c_long] = ACTIONS(5808), + [anon_sym_c_ulong] = ACTIONS(5808), + [anon_sym_c_longlong] = ACTIONS(5808), + [anon_sym_c_ulonglong] = ACTIONS(5808), + [anon_sym_c_float] = ACTIONS(5808), + [anon_sym_c_double] = ACTIONS(5808), + [anon_sym_c_longdouble] = ACTIONS(5808), + [anon_sym_PLUS_EQ] = ACTIONS(5806), + [anon_sym_DASH_EQ] = ACTIONS(5806), + [anon_sym_STAR_EQ] = ACTIONS(5806), + [anon_sym_SLASH_EQ] = ACTIONS(5806), + [anon_sym_AMP_EQ] = ACTIONS(5806), + [anon_sym_PIPE_EQ] = ACTIONS(5806), + [anon_sym_xor_EQ] = ACTIONS(5806), + [anon_sym_LT_LT_EQ] = ACTIONS(5806), + [anon_sym_GT_GT_EQ] = ACTIONS(5806), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5806), + [anon_sym_return] = ACTIONS(5808), + [anon_sym_yield] = ACTIONS(5808), + [anon_sym_break] = ACTIONS(5808), + [anon_sym_continue] = ACTIONS(5808), + [anon_sym_defer] = ACTIONS(5808), + [anon_sym_errdefer] = ACTIONS(5808), + [anon_sym_if] = ACTIONS(5808), + [anon_sym_else] = ACTIONS(5808), + [anon_sym_while] = ACTIONS(5808), + [anon_sym_expand] = ACTIONS(5808), + [anon_sym_for] = ACTIONS(5808), + [anon_sym_match] = ACTIONS(5808), + [anon_sym_DOT_DOT] = ACTIONS(5808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5806), + [anon_sym_orelse] = ACTIONS(5808), + [anon_sym_or] = ACTIONS(5808), + [anon_sym_and] = ACTIONS(5808), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5808), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_AMP] = ACTIONS(5808), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_LT_LT] = ACTIONS(5808), + [anon_sym_GT_GT] = ACTIONS(5808), + [anon_sym_LT_LT_PIPE] = ACTIONS(5808), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_SLASH] = ACTIONS(5808), + [anon_sym_catch] = ACTIONS(5808), + [anon_sym_TILDE] = ACTIONS(5806), + [anon_sym_try] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(5808), + [anon_sym_CARET] = ACTIONS(5806), + [anon_sym_true] = ACTIONS(5808), + [anon_sym_false] = ACTIONS(5808), + [anon_sym_null] = ACTIONS(5808), + [anon_sym_unreachable] = ACTIONS(5808), + [anon_sym_undefined] = ACTIONS(5808), + [sym_sink] = ACTIONS(5808), + [sym_integer] = ACTIONS(5808), + [sym_float] = ACTIONS(5806), + [anon_sym_DQUOTE] = ACTIONS(5806), + [sym_multiline_string] = ACTIONS(5806), + [sym_character] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5806), + }, + [STATE(3070)] = { + [sym_identifier] = ACTIONS(5702), + [anon_sym_func] = ACTIONS(5702), + [anon_sym_c_func] = ACTIONS(5702), + [anon_sym_BANG] = ACTIONS(5702), + [anon_sym_EQ] = ACTIONS(5702), + [anon_sym_struct] = ACTIONS(5702), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5698), + [anon_sym_COMMA] = ACTIONS(5698), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5702), + [anon_sym_DOLLAR] = ACTIONS(5698), + [anon_sym_PIPE] = ACTIONS(5702), + [anon_sym_struct_type_BANG] = ACTIONS(5698), + [anon_sym_QMARK] = ACTIONS(5698), + [anon_sym_AT] = ACTIONS(5698), + [anon_sym_STAR] = ACTIONS(5702), + [anon_sym_LBRACK] = ACTIONS(5698), + [anon_sym_void] = ACTIONS(5702), + [anon_sym_noreturn] = ACTIONS(5702), + [anon_sym_type] = ACTIONS(5702), + [anon_sym_anyopaque] = ACTIONS(5702), + [anon_sym_bool] = ACTIONS(5702), + [anon_sym_int] = ACTIONS(5702), + [anon_sym_uint] = ACTIONS(5702), + [anon_sym_float] = ACTIONS(5702), + [anon_sym_range] = ACTIONS(5702), + [anon_sym_i8] = ACTIONS(5702), + [anon_sym_i16] = ACTIONS(5702), + [anon_sym_i32] = ACTIONS(5702), + [anon_sym_i64] = ACTIONS(5702), + [anon_sym_u8] = ACTIONS(5702), + [anon_sym_u16] = ACTIONS(5702), + [anon_sym_u32] = ACTIONS(5702), + [anon_sym_u64] = ACTIONS(5702), + [anon_sym_isize] = ACTIONS(5702), + [anon_sym_usize] = ACTIONS(5702), + [anon_sym_f32] = ACTIONS(5702), + [anon_sym_f64] = ACTIONS(5702), + [anon_sym_c_char] = ACTIONS(5702), + [anon_sym_c_schar] = ACTIONS(5702), + [anon_sym_c_uchar] = ACTIONS(5702), + [anon_sym_c_short] = ACTIONS(5702), + [anon_sym_c_ushort] = ACTIONS(5702), + [anon_sym_c_int] = ACTIONS(5702), + [anon_sym_c_uint] = ACTIONS(5702), + [anon_sym_c_long] = ACTIONS(5702), + [anon_sym_c_ulong] = ACTIONS(5702), + [anon_sym_c_longlong] = ACTIONS(5702), + [anon_sym_c_ulonglong] = ACTIONS(5702), + [anon_sym_c_float] = ACTIONS(5702), + [anon_sym_c_double] = ACTIONS(5702), + [anon_sym_c_longdouble] = ACTIONS(5702), + [anon_sym_PLUS_EQ] = ACTIONS(5698), + [anon_sym_DASH_EQ] = ACTIONS(5698), + [anon_sym_STAR_EQ] = ACTIONS(5698), + [anon_sym_SLASH_EQ] = ACTIONS(5698), + [anon_sym_AMP_EQ] = ACTIONS(5698), + [anon_sym_PIPE_EQ] = ACTIONS(5698), + [anon_sym_xor_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_EQ] = ACTIONS(5698), + [anon_sym_GT_GT_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5698), + [anon_sym_return] = ACTIONS(5702), + [anon_sym_yield] = ACTIONS(5702), + [anon_sym_break] = ACTIONS(5702), + [anon_sym_continue] = ACTIONS(5702), + [anon_sym_defer] = ACTIONS(5702), + [anon_sym_errdefer] = ACTIONS(5702), + [anon_sym_if] = ACTIONS(5702), + [anon_sym_else] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5702), + [anon_sym_expand] = ACTIONS(5702), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_match] = ACTIONS(5702), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5698), + [anon_sym_orelse] = ACTIONS(5702), + [anon_sym_or] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5702), + [anon_sym_EQ_EQ] = ACTIONS(5698), + [anon_sym_BANG_EQ] = ACTIONS(5698), + [anon_sym_LT] = ACTIONS(5702), + [anon_sym_LT_EQ] = ACTIONS(5698), + [anon_sym_GT] = ACTIONS(5702), + [anon_sym_GT_EQ] = ACTIONS(5698), + [anon_sym_AMP] = ACTIONS(5702), + [anon_sym_xor] = ACTIONS(5702), + [anon_sym_LT_LT] = ACTIONS(5702), + [anon_sym_GT_GT] = ACTIONS(5702), + [anon_sym_LT_LT_PIPE] = ACTIONS(5702), + [anon_sym_PLUS] = ACTIONS(5702), + [anon_sym_SLASH] = ACTIONS(5702), + [anon_sym_catch] = ACTIONS(5702), + [anon_sym_TILDE] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5702), + [anon_sym_DOT] = ACTIONS(5702), + [anon_sym_CARET] = ACTIONS(5698), + [anon_sym_true] = ACTIONS(5702), + [anon_sym_false] = ACTIONS(5702), + [anon_sym_null] = ACTIONS(5702), + [anon_sym_unreachable] = ACTIONS(5702), + [anon_sym_undefined] = ACTIONS(5702), + [sym_sink] = ACTIONS(5702), + [sym_integer] = ACTIONS(5702), + [sym_float] = ACTIONS(5698), + [anon_sym_DQUOTE] = ACTIONS(5698), + [sym_multiline_string] = ACTIONS(5698), + [sym_character] = ACTIONS(5698), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5698), + }, + [STATE(3071)] = { + [sym_identifier] = ACTIONS(5900), + [anon_sym_func] = ACTIONS(5900), + [anon_sym_c_func] = ACTIONS(5900), + [anon_sym_BANG] = ACTIONS(5900), + [anon_sym_EQ] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_LPAREN] = ACTIONS(5898), + [anon_sym_LBRACE] = ACTIONS(5898), + [anon_sym_COMMA] = ACTIONS(5898), + [anon_sym_RBRACE] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_DOLLAR] = ACTIONS(5898), + [anon_sym_PIPE] = ACTIONS(5900), + [anon_sym_struct_type_BANG] = ACTIONS(5898), + [anon_sym_QMARK] = ACTIONS(5898), + [anon_sym_AT] = ACTIONS(5898), + [anon_sym_STAR] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5898), + [anon_sym_void] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_type] = ACTIONS(5900), + [anon_sym_anyopaque] = ACTIONS(5900), + [anon_sym_bool] = ACTIONS(5900), + [anon_sym_int] = ACTIONS(5900), + [anon_sym_uint] = ACTIONS(5900), + [anon_sym_float] = ACTIONS(5900), + [anon_sym_range] = ACTIONS(5900), + [anon_sym_i8] = ACTIONS(5900), + [anon_sym_i16] = ACTIONS(5900), + [anon_sym_i32] = ACTIONS(5900), + [anon_sym_i64] = ACTIONS(5900), + [anon_sym_u8] = ACTIONS(5900), + [anon_sym_u16] = ACTIONS(5900), + [anon_sym_u32] = ACTIONS(5900), + [anon_sym_u64] = ACTIONS(5900), + [anon_sym_isize] = ACTIONS(5900), + [anon_sym_usize] = ACTIONS(5900), + [anon_sym_f32] = ACTIONS(5900), + [anon_sym_f64] = ACTIONS(5900), + [anon_sym_c_char] = ACTIONS(5900), + [anon_sym_c_schar] = ACTIONS(5900), + [anon_sym_c_uchar] = ACTIONS(5900), + [anon_sym_c_short] = ACTIONS(5900), + [anon_sym_c_ushort] = ACTIONS(5900), + [anon_sym_c_int] = ACTIONS(5900), + [anon_sym_c_uint] = ACTIONS(5900), + [anon_sym_c_long] = ACTIONS(5900), + [anon_sym_c_ulong] = ACTIONS(5900), + [anon_sym_c_longlong] = ACTIONS(5900), + [anon_sym_c_ulonglong] = ACTIONS(5900), + [anon_sym_c_float] = ACTIONS(5900), + [anon_sym_c_double] = ACTIONS(5900), + [anon_sym_c_longdouble] = ACTIONS(5900), + [anon_sym_PLUS_EQ] = ACTIONS(5898), + [anon_sym_DASH_EQ] = ACTIONS(5898), + [anon_sym_STAR_EQ] = ACTIONS(5898), + [anon_sym_SLASH_EQ] = ACTIONS(5898), + [anon_sym_AMP_EQ] = ACTIONS(5898), + [anon_sym_PIPE_EQ] = ACTIONS(5898), + [anon_sym_xor_EQ] = ACTIONS(5898), + [anon_sym_LT_LT_EQ] = ACTIONS(5898), + [anon_sym_GT_GT_EQ] = ACTIONS(5898), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5898), + [anon_sym_return] = ACTIONS(5900), + [anon_sym_yield] = ACTIONS(5900), + [anon_sym_break] = ACTIONS(5900), + [anon_sym_continue] = ACTIONS(5900), + [anon_sym_defer] = ACTIONS(5900), + [anon_sym_errdefer] = ACTIONS(5900), + [anon_sym_if] = ACTIONS(5900), + [anon_sym_else] = ACTIONS(5900), + [anon_sym_while] = ACTIONS(5900), + [anon_sym_expand] = ACTIONS(5900), + [anon_sym_for] = ACTIONS(5900), + [anon_sym_match] = ACTIONS(5900), + [anon_sym_DOT_DOT] = ACTIONS(5900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5898), + [anon_sym_orelse] = ACTIONS(5900), + [anon_sym_or] = ACTIONS(5900), + [anon_sym_and] = ACTIONS(5900), + [anon_sym_EQ_EQ] = ACTIONS(5898), + [anon_sym_BANG_EQ] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(5900), + [anon_sym_LT_EQ] = ACTIONS(5898), + [anon_sym_GT] = ACTIONS(5900), + [anon_sym_GT_EQ] = ACTIONS(5898), + [anon_sym_AMP] = ACTIONS(5900), + [anon_sym_xor] = ACTIONS(5900), + [anon_sym_LT_LT] = ACTIONS(5900), + [anon_sym_GT_GT] = ACTIONS(5900), + [anon_sym_LT_LT_PIPE] = ACTIONS(5900), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_SLASH] = ACTIONS(5900), + [anon_sym_catch] = ACTIONS(5900), + [anon_sym_TILDE] = ACTIONS(5898), + [anon_sym_try] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5900), + [anon_sym_CARET] = ACTIONS(5898), + [anon_sym_true] = ACTIONS(5900), + [anon_sym_false] = ACTIONS(5900), + [anon_sym_null] = ACTIONS(5900), + [anon_sym_unreachable] = ACTIONS(5900), + [anon_sym_undefined] = ACTIONS(5900), + [sym_sink] = ACTIONS(5900), + [sym_integer] = ACTIONS(5900), + [sym_float] = ACTIONS(5898), + [anon_sym_DQUOTE] = ACTIONS(5898), + [sym_multiline_string] = ACTIONS(5898), + [sym_character] = ACTIONS(5898), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5898), + }, + [STATE(3072)] = { + [sym_identifier] = ACTIONS(5904), + [anon_sym_func] = ACTIONS(5904), + [anon_sym_c_func] = ACTIONS(5904), + [anon_sym_BANG] = ACTIONS(5904), + [anon_sym_EQ] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_LPAREN] = ACTIONS(5902), + [anon_sym_LBRACE] = ACTIONS(5902), + [anon_sym_COMMA] = ACTIONS(5902), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_DASH] = ACTIONS(5904), + [anon_sym_DOLLAR] = ACTIONS(5902), + [anon_sym_PIPE] = ACTIONS(5904), + [anon_sym_struct_type_BANG] = ACTIONS(5902), + [anon_sym_QMARK] = ACTIONS(5902), + [anon_sym_AT] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(5902), + [anon_sym_void] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_type] = ACTIONS(5904), + [anon_sym_anyopaque] = ACTIONS(5904), + [anon_sym_bool] = ACTIONS(5904), + [anon_sym_int] = ACTIONS(5904), + [anon_sym_uint] = ACTIONS(5904), + [anon_sym_float] = ACTIONS(5904), + [anon_sym_range] = ACTIONS(5904), + [anon_sym_i8] = ACTIONS(5904), + [anon_sym_i16] = ACTIONS(5904), + [anon_sym_i32] = ACTIONS(5904), + [anon_sym_i64] = ACTIONS(5904), + [anon_sym_u8] = ACTIONS(5904), + [anon_sym_u16] = ACTIONS(5904), + [anon_sym_u32] = ACTIONS(5904), + [anon_sym_u64] = ACTIONS(5904), + [anon_sym_isize] = ACTIONS(5904), + [anon_sym_usize] = ACTIONS(5904), + [anon_sym_f32] = ACTIONS(5904), + [anon_sym_f64] = ACTIONS(5904), + [anon_sym_c_char] = ACTIONS(5904), + [anon_sym_c_schar] = ACTIONS(5904), + [anon_sym_c_uchar] = ACTIONS(5904), + [anon_sym_c_short] = ACTIONS(5904), + [anon_sym_c_ushort] = ACTIONS(5904), + [anon_sym_c_int] = ACTIONS(5904), + [anon_sym_c_uint] = ACTIONS(5904), + [anon_sym_c_long] = ACTIONS(5904), + [anon_sym_c_ulong] = ACTIONS(5904), + [anon_sym_c_longlong] = ACTIONS(5904), + [anon_sym_c_ulonglong] = ACTIONS(5904), + [anon_sym_c_float] = ACTIONS(5904), + [anon_sym_c_double] = ACTIONS(5904), + [anon_sym_c_longdouble] = ACTIONS(5904), + [anon_sym_PLUS_EQ] = ACTIONS(5902), + [anon_sym_DASH_EQ] = ACTIONS(5902), + [anon_sym_STAR_EQ] = ACTIONS(5902), + [anon_sym_SLASH_EQ] = ACTIONS(5902), + [anon_sym_AMP_EQ] = ACTIONS(5902), + [anon_sym_PIPE_EQ] = ACTIONS(5902), + [anon_sym_xor_EQ] = ACTIONS(5902), + [anon_sym_LT_LT_EQ] = ACTIONS(5902), + [anon_sym_GT_GT_EQ] = ACTIONS(5902), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5902), + [anon_sym_return] = ACTIONS(5904), + [anon_sym_yield] = ACTIONS(5904), + [anon_sym_break] = ACTIONS(5904), + [anon_sym_continue] = ACTIONS(5904), + [anon_sym_defer] = ACTIONS(5904), + [anon_sym_errdefer] = ACTIONS(5904), + [anon_sym_if] = ACTIONS(5904), + [anon_sym_else] = ACTIONS(5904), + [anon_sym_while] = ACTIONS(5904), + [anon_sym_expand] = ACTIONS(5904), + [anon_sym_for] = ACTIONS(5904), + [anon_sym_match] = ACTIONS(5904), + [anon_sym_DOT_DOT] = ACTIONS(5904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5902), + [anon_sym_orelse] = ACTIONS(5904), + [anon_sym_or] = ACTIONS(5904), + [anon_sym_and] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5902), + [anon_sym_BANG_EQ] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5904), + [anon_sym_LT_EQ] = ACTIONS(5902), + [anon_sym_GT] = ACTIONS(5904), + [anon_sym_GT_EQ] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5904), + [anon_sym_xor] = ACTIONS(5904), + [anon_sym_LT_LT] = ACTIONS(5904), + [anon_sym_GT_GT] = ACTIONS(5904), + [anon_sym_LT_LT_PIPE] = ACTIONS(5904), + [anon_sym_PLUS] = ACTIONS(5904), + [anon_sym_SLASH] = ACTIONS(5904), + [anon_sym_catch] = ACTIONS(5904), + [anon_sym_TILDE] = ACTIONS(5902), + [anon_sym_try] = ACTIONS(5904), + [anon_sym_DOT] = ACTIONS(5904), + [anon_sym_CARET] = ACTIONS(5902), + [anon_sym_true] = ACTIONS(5904), + [anon_sym_false] = ACTIONS(5904), + [anon_sym_null] = ACTIONS(5904), + [anon_sym_unreachable] = ACTIONS(5904), + [anon_sym_undefined] = ACTIONS(5904), + [sym_sink] = ACTIONS(5904), + [sym_integer] = ACTIONS(5904), + [sym_float] = ACTIONS(5902), + [anon_sym_DQUOTE] = ACTIONS(5902), + [sym_multiline_string] = ACTIONS(5902), + [sym_character] = ACTIONS(5902), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5902), + }, + [STATE(3073)] = { + [sym_identifier] = ACTIONS(5856), + [anon_sym_func] = ACTIONS(5856), + [anon_sym_c_func] = ACTIONS(5856), + [anon_sym_BANG] = ACTIONS(5856), + [anon_sym_EQ] = ACTIONS(5856), + [anon_sym_struct] = ACTIONS(5856), + [anon_sym_LPAREN] = ACTIONS(5854), + [anon_sym_LBRACE] = ACTIONS(5854), + [anon_sym_COMMA] = ACTIONS(5854), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_DASH] = ACTIONS(5856), + [anon_sym_DOLLAR] = ACTIONS(5854), + [anon_sym_PIPE] = ACTIONS(5856), + [anon_sym_struct_type_BANG] = ACTIONS(5854), + [anon_sym_QMARK] = ACTIONS(5854), + [anon_sym_AT] = ACTIONS(5854), + [anon_sym_STAR] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(5854), + [anon_sym_void] = ACTIONS(5856), + [anon_sym_noreturn] = ACTIONS(5856), + [anon_sym_type] = ACTIONS(5856), + [anon_sym_anyopaque] = ACTIONS(5856), + [anon_sym_bool] = ACTIONS(5856), + [anon_sym_int] = ACTIONS(5856), + [anon_sym_uint] = ACTIONS(5856), + [anon_sym_float] = ACTIONS(5856), + [anon_sym_range] = ACTIONS(5856), + [anon_sym_i8] = ACTIONS(5856), + [anon_sym_i16] = ACTIONS(5856), + [anon_sym_i32] = ACTIONS(5856), + [anon_sym_i64] = ACTIONS(5856), + [anon_sym_u8] = ACTIONS(5856), + [anon_sym_u16] = ACTIONS(5856), + [anon_sym_u32] = ACTIONS(5856), + [anon_sym_u64] = ACTIONS(5856), + [anon_sym_isize] = ACTIONS(5856), + [anon_sym_usize] = ACTIONS(5856), + [anon_sym_f32] = ACTIONS(5856), + [anon_sym_f64] = ACTIONS(5856), + [anon_sym_c_char] = ACTIONS(5856), + [anon_sym_c_schar] = ACTIONS(5856), + [anon_sym_c_uchar] = ACTIONS(5856), + [anon_sym_c_short] = ACTIONS(5856), + [anon_sym_c_ushort] = ACTIONS(5856), + [anon_sym_c_int] = ACTIONS(5856), + [anon_sym_c_uint] = ACTIONS(5856), + [anon_sym_c_long] = ACTIONS(5856), + [anon_sym_c_ulong] = ACTIONS(5856), + [anon_sym_c_longlong] = ACTIONS(5856), + [anon_sym_c_ulonglong] = ACTIONS(5856), + [anon_sym_c_float] = ACTIONS(5856), + [anon_sym_c_double] = ACTIONS(5856), + [anon_sym_c_longdouble] = ACTIONS(5856), + [anon_sym_PLUS_EQ] = ACTIONS(5854), + [anon_sym_DASH_EQ] = ACTIONS(5854), + [anon_sym_STAR_EQ] = ACTIONS(5854), + [anon_sym_SLASH_EQ] = ACTIONS(5854), + [anon_sym_AMP_EQ] = ACTIONS(5854), + [anon_sym_PIPE_EQ] = ACTIONS(5854), + [anon_sym_xor_EQ] = ACTIONS(5854), + [anon_sym_LT_LT_EQ] = ACTIONS(5854), + [anon_sym_GT_GT_EQ] = ACTIONS(5854), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5854), + [anon_sym_return] = ACTIONS(5856), + [anon_sym_yield] = ACTIONS(5856), + [anon_sym_break] = ACTIONS(5856), + [anon_sym_continue] = ACTIONS(5856), + [anon_sym_defer] = ACTIONS(5856), + [anon_sym_errdefer] = ACTIONS(5856), + [anon_sym_if] = ACTIONS(5856), + [anon_sym_else] = ACTIONS(5856), + [anon_sym_while] = ACTIONS(5856), + [anon_sym_expand] = ACTIONS(5856), + [anon_sym_for] = ACTIONS(5856), + [anon_sym_match] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5854), + [anon_sym_orelse] = ACTIONS(5856), + [anon_sym_or] = ACTIONS(5856), + [anon_sym_and] = ACTIONS(5856), + [anon_sym_EQ_EQ] = ACTIONS(5854), + [anon_sym_BANG_EQ] = ACTIONS(5854), + [anon_sym_LT] = ACTIONS(5856), + [anon_sym_LT_EQ] = ACTIONS(5854), + [anon_sym_GT] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5854), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym_xor] = ACTIONS(5856), + [anon_sym_LT_LT] = ACTIONS(5856), + [anon_sym_GT_GT] = ACTIONS(5856), + [anon_sym_LT_LT_PIPE] = ACTIONS(5856), + [anon_sym_PLUS] = ACTIONS(5856), + [anon_sym_SLASH] = ACTIONS(5856), + [anon_sym_catch] = ACTIONS(5856), + [anon_sym_TILDE] = ACTIONS(5854), + [anon_sym_try] = ACTIONS(5856), + [anon_sym_DOT] = ACTIONS(5856), + [anon_sym_CARET] = ACTIONS(5854), + [anon_sym_true] = ACTIONS(5856), + [anon_sym_false] = ACTIONS(5856), + [anon_sym_null] = ACTIONS(5856), + [anon_sym_unreachable] = ACTIONS(5856), + [anon_sym_undefined] = ACTIONS(5856), + [sym_sink] = ACTIONS(5856), + [sym_integer] = ACTIONS(5856), + [sym_float] = ACTIONS(5854), + [anon_sym_DQUOTE] = ACTIONS(5854), + [sym_multiline_string] = ACTIONS(5854), + [sym_character] = ACTIONS(5854), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5854), + }, + [STATE(3074)] = { + [sym_identifier] = ACTIONS(5860), + [anon_sym_func] = ACTIONS(5860), + [anon_sym_c_func] = ACTIONS(5860), + [anon_sym_BANG] = ACTIONS(5860), + [anon_sym_EQ] = ACTIONS(5860), + [anon_sym_struct] = ACTIONS(5860), + [anon_sym_LPAREN] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5858), + [anon_sym_RBRACE] = ACTIONS(5858), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_struct_type_BANG] = ACTIONS(5858), + [anon_sym_QMARK] = ACTIONS(5858), + [anon_sym_AT] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5858), + [anon_sym_void] = ACTIONS(5860), + [anon_sym_noreturn] = ACTIONS(5860), + [anon_sym_type] = ACTIONS(5860), + [anon_sym_anyopaque] = ACTIONS(5860), + [anon_sym_bool] = ACTIONS(5860), + [anon_sym_int] = ACTIONS(5860), + [anon_sym_uint] = ACTIONS(5860), + [anon_sym_float] = ACTIONS(5860), + [anon_sym_range] = ACTIONS(5860), + [anon_sym_i8] = ACTIONS(5860), + [anon_sym_i16] = ACTIONS(5860), + [anon_sym_i32] = ACTIONS(5860), + [anon_sym_i64] = ACTIONS(5860), + [anon_sym_u8] = ACTIONS(5860), + [anon_sym_u16] = ACTIONS(5860), + [anon_sym_u32] = ACTIONS(5860), + [anon_sym_u64] = ACTIONS(5860), + [anon_sym_isize] = ACTIONS(5860), + [anon_sym_usize] = ACTIONS(5860), + [anon_sym_f32] = ACTIONS(5860), + [anon_sym_f64] = ACTIONS(5860), + [anon_sym_c_char] = ACTIONS(5860), + [anon_sym_c_schar] = ACTIONS(5860), + [anon_sym_c_uchar] = ACTIONS(5860), + [anon_sym_c_short] = ACTIONS(5860), + [anon_sym_c_ushort] = ACTIONS(5860), + [anon_sym_c_int] = ACTIONS(5860), + [anon_sym_c_uint] = ACTIONS(5860), + [anon_sym_c_long] = ACTIONS(5860), + [anon_sym_c_ulong] = ACTIONS(5860), + [anon_sym_c_longlong] = ACTIONS(5860), + [anon_sym_c_ulonglong] = ACTIONS(5860), + [anon_sym_c_float] = ACTIONS(5860), + [anon_sym_c_double] = ACTIONS(5860), + [anon_sym_c_longdouble] = ACTIONS(5860), + [anon_sym_PLUS_EQ] = ACTIONS(5858), + [anon_sym_DASH_EQ] = ACTIONS(5858), + [anon_sym_STAR_EQ] = ACTIONS(5858), + [anon_sym_SLASH_EQ] = ACTIONS(5858), + [anon_sym_AMP_EQ] = ACTIONS(5858), + [anon_sym_PIPE_EQ] = ACTIONS(5858), + [anon_sym_xor_EQ] = ACTIONS(5858), + [anon_sym_LT_LT_EQ] = ACTIONS(5858), + [anon_sym_GT_GT_EQ] = ACTIONS(5858), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5858), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_break] = ACTIONS(5860), + [anon_sym_continue] = ACTIONS(5860), + [anon_sym_defer] = ACTIONS(5860), + [anon_sym_errdefer] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_else] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_expand] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_DOT_DOT] = ACTIONS(5860), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5858), + [anon_sym_orelse] = ACTIONS(5860), + [anon_sym_or] = ACTIONS(5860), + [anon_sym_and] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_BANG_EQ] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_LT_EQ] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_EQ] = ACTIONS(5858), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym_xor] = ACTIONS(5860), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(5860), + [anon_sym_LT_LT_PIPE] = ACTIONS(5860), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5860), + [anon_sym_catch] = ACTIONS(5860), + [anon_sym_TILDE] = ACTIONS(5858), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_DOT] = ACTIONS(5860), + [anon_sym_CARET] = ACTIONS(5858), + [anon_sym_true] = ACTIONS(5860), + [anon_sym_false] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_unreachable] = ACTIONS(5860), + [anon_sym_undefined] = ACTIONS(5860), + [sym_sink] = ACTIONS(5860), + [sym_integer] = ACTIONS(5860), + [sym_float] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(5858), + [sym_multiline_string] = ACTIONS(5858), + [sym_character] = ACTIONS(5858), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5858), + }, + [STATE(3075)] = { + [sym_identifier] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1256), + [anon_sym_c_func] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_anyopaque] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_int] = ACTIONS(1256), + [anon_sym_uint] = ACTIONS(1256), + [anon_sym_float] = ACTIONS(1256), + [anon_sym_range] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_c_char] = ACTIONS(1256), + [anon_sym_c_schar] = ACTIONS(1256), + [anon_sym_c_uchar] = ACTIONS(1256), + [anon_sym_c_short] = ACTIONS(1256), + [anon_sym_c_ushort] = ACTIONS(1256), + [anon_sym_c_int] = ACTIONS(1256), + [anon_sym_c_uint] = ACTIONS(1256), + [anon_sym_c_long] = ACTIONS(1256), + [anon_sym_c_ulong] = ACTIONS(1256), + [anon_sym_c_longlong] = ACTIONS(1256), + [anon_sym_c_ulonglong] = ACTIONS(1256), + [anon_sym_c_float] = ACTIONS(1256), + [anon_sym_c_double] = ACTIONS(1256), + [anon_sym_c_longdouble] = ACTIONS(1256), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(3076)] = { + [sym_identifier] = ACTIONS(5908), + [anon_sym_func] = ACTIONS(5908), + [anon_sym_c_func] = ACTIONS(5908), + [anon_sym_BANG] = ACTIONS(5908), + [anon_sym_EQ] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_LPAREN] = ACTIONS(5906), + [anon_sym_LBRACE] = ACTIONS(5906), + [anon_sym_COMMA] = ACTIONS(5906), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(5908), + [anon_sym_DOLLAR] = ACTIONS(5906), + [anon_sym_PIPE] = ACTIONS(5908), + [anon_sym_struct_type_BANG] = ACTIONS(5906), + [anon_sym_QMARK] = ACTIONS(5906), + [anon_sym_AT] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5906), + [anon_sym_void] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_type] = ACTIONS(5908), + [anon_sym_anyopaque] = ACTIONS(5908), + [anon_sym_bool] = ACTIONS(5908), + [anon_sym_int] = ACTIONS(5908), + [anon_sym_uint] = ACTIONS(5908), + [anon_sym_float] = ACTIONS(5908), + [anon_sym_range] = ACTIONS(5908), + [anon_sym_i8] = ACTIONS(5908), + [anon_sym_i16] = ACTIONS(5908), + [anon_sym_i32] = ACTIONS(5908), + [anon_sym_i64] = ACTIONS(5908), + [anon_sym_u8] = ACTIONS(5908), + [anon_sym_u16] = ACTIONS(5908), + [anon_sym_u32] = ACTIONS(5908), + [anon_sym_u64] = ACTIONS(5908), + [anon_sym_isize] = ACTIONS(5908), + [anon_sym_usize] = ACTIONS(5908), + [anon_sym_f32] = ACTIONS(5908), + [anon_sym_f64] = ACTIONS(5908), + [anon_sym_c_char] = ACTIONS(5908), + [anon_sym_c_schar] = ACTIONS(5908), + [anon_sym_c_uchar] = ACTIONS(5908), + [anon_sym_c_short] = ACTIONS(5908), + [anon_sym_c_ushort] = ACTIONS(5908), + [anon_sym_c_int] = ACTIONS(5908), + [anon_sym_c_uint] = ACTIONS(5908), + [anon_sym_c_long] = ACTIONS(5908), + [anon_sym_c_ulong] = ACTIONS(5908), + [anon_sym_c_longlong] = ACTIONS(5908), + [anon_sym_c_ulonglong] = ACTIONS(5908), + [anon_sym_c_float] = ACTIONS(5908), + [anon_sym_c_double] = ACTIONS(5908), + [anon_sym_c_longdouble] = ACTIONS(5908), + [anon_sym_PLUS_EQ] = ACTIONS(5906), + [anon_sym_DASH_EQ] = ACTIONS(5906), + [anon_sym_STAR_EQ] = ACTIONS(5906), + [anon_sym_SLASH_EQ] = ACTIONS(5906), + [anon_sym_AMP_EQ] = ACTIONS(5906), + [anon_sym_PIPE_EQ] = ACTIONS(5906), + [anon_sym_xor_EQ] = ACTIONS(5906), + [anon_sym_LT_LT_EQ] = ACTIONS(5906), + [anon_sym_GT_GT_EQ] = ACTIONS(5906), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5906), + [anon_sym_return] = ACTIONS(5908), + [anon_sym_yield] = ACTIONS(5908), + [anon_sym_break] = ACTIONS(5908), + [anon_sym_continue] = ACTIONS(5908), + [anon_sym_defer] = ACTIONS(5908), + [anon_sym_errdefer] = ACTIONS(5908), + [anon_sym_if] = ACTIONS(5908), + [anon_sym_else] = ACTIONS(5908), + [anon_sym_while] = ACTIONS(5908), + [anon_sym_expand] = ACTIONS(5908), + [anon_sym_for] = ACTIONS(5908), + [anon_sym_match] = ACTIONS(5908), + [anon_sym_DOT_DOT] = ACTIONS(5908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5906), + [anon_sym_orelse] = ACTIONS(5908), + [anon_sym_or] = ACTIONS(5908), + [anon_sym_and] = ACTIONS(5908), + [anon_sym_EQ_EQ] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(5908), + [anon_sym_LT_EQ] = ACTIONS(5906), + [anon_sym_GT] = ACTIONS(5908), + [anon_sym_GT_EQ] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5908), + [anon_sym_xor] = ACTIONS(5908), + [anon_sym_LT_LT] = ACTIONS(5908), + [anon_sym_GT_GT] = ACTIONS(5908), + [anon_sym_LT_LT_PIPE] = ACTIONS(5908), + [anon_sym_PLUS] = ACTIONS(5908), + [anon_sym_SLASH] = ACTIONS(5908), + [anon_sym_catch] = ACTIONS(5908), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_try] = ACTIONS(5908), + [anon_sym_DOT] = ACTIONS(5908), + [anon_sym_CARET] = ACTIONS(5906), + [anon_sym_true] = ACTIONS(5908), + [anon_sym_false] = ACTIONS(5908), + [anon_sym_null] = ACTIONS(5908), + [anon_sym_unreachable] = ACTIONS(5908), + [anon_sym_undefined] = ACTIONS(5908), + [sym_sink] = ACTIONS(5908), + [sym_integer] = ACTIONS(5908), + [sym_float] = ACTIONS(5906), + [anon_sym_DQUOTE] = ACTIONS(5906), + [sym_multiline_string] = ACTIONS(5906), + [sym_character] = ACTIONS(5906), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5906), + }, + [STATE(3077)] = { + [sym_identifier] = ACTIONS(5912), + [anon_sym_func] = ACTIONS(5912), + [anon_sym_c_func] = ACTIONS(5912), + [anon_sym_BANG] = ACTIONS(5912), + [anon_sym_EQ] = ACTIONS(5912), + [anon_sym_struct] = ACTIONS(5912), + [anon_sym_LPAREN] = ACTIONS(5910), + [anon_sym_LBRACE] = ACTIONS(5910), + [anon_sym_COMMA] = ACTIONS(5910), + [anon_sym_RBRACE] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5912), + [anon_sym_DOLLAR] = ACTIONS(5910), + [anon_sym_PIPE] = ACTIONS(5912), + [anon_sym_struct_type_BANG] = ACTIONS(5910), + [anon_sym_QMARK] = ACTIONS(5910), + [anon_sym_AT] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(5910), + [anon_sym_void] = ACTIONS(5912), + [anon_sym_noreturn] = ACTIONS(5912), + [anon_sym_type] = ACTIONS(5912), + [anon_sym_anyopaque] = ACTIONS(5912), + [anon_sym_bool] = ACTIONS(5912), + [anon_sym_int] = ACTIONS(5912), + [anon_sym_uint] = ACTIONS(5912), + [anon_sym_float] = ACTIONS(5912), + [anon_sym_range] = ACTIONS(5912), + [anon_sym_i8] = ACTIONS(5912), + [anon_sym_i16] = ACTIONS(5912), + [anon_sym_i32] = ACTIONS(5912), + [anon_sym_i64] = ACTIONS(5912), + [anon_sym_u8] = ACTIONS(5912), + [anon_sym_u16] = ACTIONS(5912), + [anon_sym_u32] = ACTIONS(5912), + [anon_sym_u64] = ACTIONS(5912), + [anon_sym_isize] = ACTIONS(5912), + [anon_sym_usize] = ACTIONS(5912), + [anon_sym_f32] = ACTIONS(5912), + [anon_sym_f64] = ACTIONS(5912), + [anon_sym_c_char] = ACTIONS(5912), + [anon_sym_c_schar] = ACTIONS(5912), + [anon_sym_c_uchar] = ACTIONS(5912), + [anon_sym_c_short] = ACTIONS(5912), + [anon_sym_c_ushort] = ACTIONS(5912), + [anon_sym_c_int] = ACTIONS(5912), + [anon_sym_c_uint] = ACTIONS(5912), + [anon_sym_c_long] = ACTIONS(5912), + [anon_sym_c_ulong] = ACTIONS(5912), + [anon_sym_c_longlong] = ACTIONS(5912), + [anon_sym_c_ulonglong] = ACTIONS(5912), + [anon_sym_c_float] = ACTIONS(5912), + [anon_sym_c_double] = ACTIONS(5912), + [anon_sym_c_longdouble] = ACTIONS(5912), + [anon_sym_PLUS_EQ] = ACTIONS(5910), + [anon_sym_DASH_EQ] = ACTIONS(5910), + [anon_sym_STAR_EQ] = ACTIONS(5910), + [anon_sym_SLASH_EQ] = ACTIONS(5910), + [anon_sym_AMP_EQ] = ACTIONS(5910), + [anon_sym_PIPE_EQ] = ACTIONS(5910), + [anon_sym_xor_EQ] = ACTIONS(5910), + [anon_sym_LT_LT_EQ] = ACTIONS(5910), + [anon_sym_GT_GT_EQ] = ACTIONS(5910), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5910), + [anon_sym_return] = ACTIONS(5912), + [anon_sym_yield] = ACTIONS(5912), + [anon_sym_break] = ACTIONS(5912), + [anon_sym_continue] = ACTIONS(5912), + [anon_sym_defer] = ACTIONS(5912), + [anon_sym_errdefer] = ACTIONS(5912), + [anon_sym_if] = ACTIONS(5912), + [anon_sym_else] = ACTIONS(5912), + [anon_sym_while] = ACTIONS(5912), + [anon_sym_expand] = ACTIONS(5912), + [anon_sym_for] = ACTIONS(5912), + [anon_sym_match] = ACTIONS(5912), + [anon_sym_DOT_DOT] = ACTIONS(5912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5910), + [anon_sym_orelse] = ACTIONS(5912), + [anon_sym_or] = ACTIONS(5912), + [anon_sym_and] = ACTIONS(5912), + [anon_sym_EQ_EQ] = ACTIONS(5910), + [anon_sym_BANG_EQ] = ACTIONS(5910), + [anon_sym_LT] = ACTIONS(5912), + [anon_sym_LT_EQ] = ACTIONS(5910), + [anon_sym_GT] = ACTIONS(5912), + [anon_sym_GT_EQ] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5912), + [anon_sym_xor] = ACTIONS(5912), + [anon_sym_LT_LT] = ACTIONS(5912), + [anon_sym_GT_GT] = ACTIONS(5912), + [anon_sym_LT_LT_PIPE] = ACTIONS(5912), + [anon_sym_PLUS] = ACTIONS(5912), + [anon_sym_SLASH] = ACTIONS(5912), + [anon_sym_catch] = ACTIONS(5912), + [anon_sym_TILDE] = ACTIONS(5910), + [anon_sym_try] = ACTIONS(5912), + [anon_sym_DOT] = ACTIONS(5912), + [anon_sym_CARET] = ACTIONS(5910), + [anon_sym_true] = ACTIONS(5912), + [anon_sym_false] = ACTIONS(5912), + [anon_sym_null] = ACTIONS(5912), + [anon_sym_unreachable] = ACTIONS(5912), + [anon_sym_undefined] = ACTIONS(5912), + [sym_sink] = ACTIONS(5912), + [sym_integer] = ACTIONS(5912), + [sym_float] = ACTIONS(5910), + [anon_sym_DQUOTE] = ACTIONS(5910), + [sym_multiline_string] = ACTIONS(5910), + [sym_character] = ACTIONS(5910), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5910), + }, + [STATE(3078)] = { + [sym_identifier] = ACTIONS(5398), + [anon_sym_func] = ACTIONS(5398), + [anon_sym_c_func] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_struct] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_DOLLAR] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_struct_type_BANG] = ACTIONS(5396), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_AT] = ACTIONS(5396), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_void] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_type] = ACTIONS(5398), + [anon_sym_anyopaque] = ACTIONS(5398), + [anon_sym_bool] = ACTIONS(5398), + [anon_sym_int] = ACTIONS(5398), + [anon_sym_uint] = ACTIONS(5398), + [anon_sym_float] = ACTIONS(5398), + [anon_sym_range] = ACTIONS(5398), + [anon_sym_i8] = ACTIONS(5398), + [anon_sym_i16] = ACTIONS(5398), + [anon_sym_i32] = ACTIONS(5398), + [anon_sym_i64] = ACTIONS(5398), + [anon_sym_u8] = ACTIONS(5398), + [anon_sym_u16] = ACTIONS(5398), + [anon_sym_u32] = ACTIONS(5398), + [anon_sym_u64] = ACTIONS(5398), + [anon_sym_isize] = ACTIONS(5398), + [anon_sym_usize] = ACTIONS(5398), + [anon_sym_f32] = ACTIONS(5398), + [anon_sym_f64] = ACTIONS(5398), + [anon_sym_c_char] = ACTIONS(5398), + [anon_sym_c_schar] = ACTIONS(5398), + [anon_sym_c_uchar] = ACTIONS(5398), + [anon_sym_c_short] = ACTIONS(5398), + [anon_sym_c_ushort] = ACTIONS(5398), + [anon_sym_c_int] = ACTIONS(5398), + [anon_sym_c_uint] = ACTIONS(5398), + [anon_sym_c_long] = ACTIONS(5398), + [anon_sym_c_ulong] = ACTIONS(5398), + [anon_sym_c_longlong] = ACTIONS(5398), + [anon_sym_c_ulonglong] = ACTIONS(5398), + [anon_sym_c_float] = ACTIONS(5398), + [anon_sym_c_double] = ACTIONS(5398), + [anon_sym_c_longdouble] = ACTIONS(5398), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_xor_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5396), + [anon_sym_return] = ACTIONS(5398), + [anon_sym_yield] = ACTIONS(5398), + [anon_sym_break] = ACTIONS(5398), + [anon_sym_continue] = ACTIONS(5398), + [anon_sym_defer] = ACTIONS(5398), + [anon_sym_errdefer] = ACTIONS(5398), + [anon_sym_if] = ACTIONS(5398), + [anon_sym_else] = ACTIONS(5398), + [anon_sym_while] = ACTIONS(5398), + [anon_sym_expand] = ACTIONS(5398), + [anon_sym_for] = ACTIONS(5398), + [anon_sym_match] = ACTIONS(5398), + [anon_sym_DOT_DOT] = ACTIONS(5398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5396), + [anon_sym_orelse] = ACTIONS(5398), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym_LT_LT_PIPE] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_catch] = ACTIONS(5398), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_try] = ACTIONS(5398), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_true] = ACTIONS(5398), + [anon_sym_false] = ACTIONS(5398), + [anon_sym_null] = ACTIONS(5398), + [anon_sym_unreachable] = ACTIONS(5398), + [anon_sym_undefined] = ACTIONS(5398), + [sym_sink] = ACTIONS(5398), + [sym_integer] = ACTIONS(5398), + [sym_float] = ACTIONS(5396), + [anon_sym_DQUOTE] = ACTIONS(5396), + [sym_multiline_string] = ACTIONS(5396), + [sym_character] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5396), + }, + [STATE(3079)] = { + [sym_identifier] = ACTIONS(5402), + [anon_sym_func] = ACTIONS(5402), + [anon_sym_c_func] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_struct] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_DOLLAR] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_struct_type_BANG] = ACTIONS(5400), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_AT] = ACTIONS(5400), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_void] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_type] = ACTIONS(5402), + [anon_sym_anyopaque] = ACTIONS(5402), + [anon_sym_bool] = ACTIONS(5402), + [anon_sym_int] = ACTIONS(5402), + [anon_sym_uint] = ACTIONS(5402), + [anon_sym_float] = ACTIONS(5402), + [anon_sym_range] = ACTIONS(5402), + [anon_sym_i8] = ACTIONS(5402), + [anon_sym_i16] = ACTIONS(5402), + [anon_sym_i32] = ACTIONS(5402), + [anon_sym_i64] = ACTIONS(5402), + [anon_sym_u8] = ACTIONS(5402), + [anon_sym_u16] = ACTIONS(5402), + [anon_sym_u32] = ACTIONS(5402), + [anon_sym_u64] = ACTIONS(5402), + [anon_sym_isize] = ACTIONS(5402), + [anon_sym_usize] = ACTIONS(5402), + [anon_sym_f32] = ACTIONS(5402), + [anon_sym_f64] = ACTIONS(5402), + [anon_sym_c_char] = ACTIONS(5402), + [anon_sym_c_schar] = ACTIONS(5402), + [anon_sym_c_uchar] = ACTIONS(5402), + [anon_sym_c_short] = ACTIONS(5402), + [anon_sym_c_ushort] = ACTIONS(5402), + [anon_sym_c_int] = ACTIONS(5402), + [anon_sym_c_uint] = ACTIONS(5402), + [anon_sym_c_long] = ACTIONS(5402), + [anon_sym_c_ulong] = ACTIONS(5402), + [anon_sym_c_longlong] = ACTIONS(5402), + [anon_sym_c_ulonglong] = ACTIONS(5402), + [anon_sym_c_float] = ACTIONS(5402), + [anon_sym_c_double] = ACTIONS(5402), + [anon_sym_c_longdouble] = ACTIONS(5402), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_xor_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5400), + [anon_sym_return] = ACTIONS(5402), + [anon_sym_yield] = ACTIONS(5402), + [anon_sym_break] = ACTIONS(5402), + [anon_sym_continue] = ACTIONS(5402), + [anon_sym_defer] = ACTIONS(5402), + [anon_sym_errdefer] = ACTIONS(5402), + [anon_sym_if] = ACTIONS(5402), + [anon_sym_else] = ACTIONS(5402), + [anon_sym_while] = ACTIONS(5402), + [anon_sym_expand] = ACTIONS(5402), + [anon_sym_for] = ACTIONS(5402), + [anon_sym_match] = ACTIONS(5402), + [anon_sym_DOT_DOT] = ACTIONS(5402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5400), + [anon_sym_orelse] = ACTIONS(5402), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym_LT_LT_PIPE] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_catch] = ACTIONS(5402), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_try] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5400), + [anon_sym_true] = ACTIONS(5402), + [anon_sym_false] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5402), + [anon_sym_unreachable] = ACTIONS(5402), + [anon_sym_undefined] = ACTIONS(5402), + [sym_sink] = ACTIONS(5402), + [sym_integer] = ACTIONS(5402), + [sym_float] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [sym_multiline_string] = ACTIONS(5400), + [sym_character] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5400), + }, + [STATE(3080)] = { + [sym_identifier] = ACTIONS(5406), + [anon_sym_func] = ACTIONS(5406), + [anon_sym_c_func] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_EQ] = ACTIONS(5406), + [anon_sym_struct] = ACTIONS(5406), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_DOLLAR] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_struct_type_BANG] = ACTIONS(5404), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_AT] = ACTIONS(5404), + [anon_sym_STAR] = ACTIONS(5406), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_void] = ACTIONS(5406), + [anon_sym_noreturn] = ACTIONS(5406), + [anon_sym_type] = ACTIONS(5406), + [anon_sym_anyopaque] = ACTIONS(5406), + [anon_sym_bool] = ACTIONS(5406), + [anon_sym_int] = ACTIONS(5406), + [anon_sym_uint] = ACTIONS(5406), + [anon_sym_float] = ACTIONS(5406), + [anon_sym_range] = ACTIONS(5406), + [anon_sym_i8] = ACTIONS(5406), + [anon_sym_i16] = ACTIONS(5406), + [anon_sym_i32] = ACTIONS(5406), + [anon_sym_i64] = ACTIONS(5406), + [anon_sym_u8] = ACTIONS(5406), + [anon_sym_u16] = ACTIONS(5406), + [anon_sym_u32] = ACTIONS(5406), + [anon_sym_u64] = ACTIONS(5406), + [anon_sym_isize] = ACTIONS(5406), + [anon_sym_usize] = ACTIONS(5406), + [anon_sym_f32] = ACTIONS(5406), + [anon_sym_f64] = ACTIONS(5406), + [anon_sym_c_char] = ACTIONS(5406), + [anon_sym_c_schar] = ACTIONS(5406), + [anon_sym_c_uchar] = ACTIONS(5406), + [anon_sym_c_short] = ACTIONS(5406), + [anon_sym_c_ushort] = ACTIONS(5406), + [anon_sym_c_int] = ACTIONS(5406), + [anon_sym_c_uint] = ACTIONS(5406), + [anon_sym_c_long] = ACTIONS(5406), + [anon_sym_c_ulong] = ACTIONS(5406), + [anon_sym_c_longlong] = ACTIONS(5406), + [anon_sym_c_ulonglong] = ACTIONS(5406), + [anon_sym_c_float] = ACTIONS(5406), + [anon_sym_c_double] = ACTIONS(5406), + [anon_sym_c_longdouble] = ACTIONS(5406), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_xor_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5404), + [anon_sym_return] = ACTIONS(5406), + [anon_sym_yield] = ACTIONS(5406), + [anon_sym_break] = ACTIONS(5406), + [anon_sym_continue] = ACTIONS(5406), + [anon_sym_defer] = ACTIONS(5406), + [anon_sym_errdefer] = ACTIONS(5406), + [anon_sym_if] = ACTIONS(5406), + [anon_sym_else] = ACTIONS(5406), + [anon_sym_while] = ACTIONS(5406), + [anon_sym_expand] = ACTIONS(5406), + [anon_sym_for] = ACTIONS(5406), + [anon_sym_match] = ACTIONS(5406), + [anon_sym_DOT_DOT] = ACTIONS(5406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5404), + [anon_sym_orelse] = ACTIONS(5406), + [anon_sym_or] = ACTIONS(5406), + [anon_sym_and] = ACTIONS(5406), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_LT_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_xor] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(5406), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_LT_LT_PIPE] = ACTIONS(5406), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_catch] = ACTIONS(5406), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_try] = ACTIONS(5406), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_CARET] = ACTIONS(5404), + [anon_sym_true] = ACTIONS(5406), + [anon_sym_false] = ACTIONS(5406), + [anon_sym_null] = ACTIONS(5406), + [anon_sym_unreachable] = ACTIONS(5406), + [anon_sym_undefined] = ACTIONS(5406), + [sym_sink] = ACTIONS(5406), + [sym_integer] = ACTIONS(5406), + [sym_float] = ACTIONS(5404), + [anon_sym_DQUOTE] = ACTIONS(5404), + [sym_multiline_string] = ACTIONS(5404), + [sym_character] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5404), + }, + [STATE(3081)] = { + [sym_identifier] = ACTIONS(5410), + [anon_sym_func] = ACTIONS(5410), + [anon_sym_c_func] = ACTIONS(5410), + [anon_sym_BANG] = ACTIONS(5410), + [anon_sym_EQ] = ACTIONS(5410), + [anon_sym_struct] = ACTIONS(5410), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5408), + [anon_sym_COMMA] = ACTIONS(5408), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_DASH] = ACTIONS(5410), + [anon_sym_DOLLAR] = ACTIONS(5408), + [anon_sym_PIPE] = ACTIONS(5410), + [anon_sym_struct_type_BANG] = ACTIONS(5408), + [anon_sym_QMARK] = ACTIONS(5408), + [anon_sym_AT] = ACTIONS(5408), + [anon_sym_STAR] = ACTIONS(5410), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_void] = ACTIONS(5410), + [anon_sym_noreturn] = ACTIONS(5410), + [anon_sym_type] = ACTIONS(5410), + [anon_sym_anyopaque] = ACTIONS(5410), + [anon_sym_bool] = ACTIONS(5410), + [anon_sym_int] = ACTIONS(5410), + [anon_sym_uint] = ACTIONS(5410), + [anon_sym_float] = ACTIONS(5410), + [anon_sym_range] = ACTIONS(5410), + [anon_sym_i8] = ACTIONS(5410), + [anon_sym_i16] = ACTIONS(5410), + [anon_sym_i32] = ACTIONS(5410), + [anon_sym_i64] = ACTIONS(5410), + [anon_sym_u8] = ACTIONS(5410), + [anon_sym_u16] = ACTIONS(5410), + [anon_sym_u32] = ACTIONS(5410), + [anon_sym_u64] = ACTIONS(5410), + [anon_sym_isize] = ACTIONS(5410), + [anon_sym_usize] = ACTIONS(5410), + [anon_sym_f32] = ACTIONS(5410), + [anon_sym_f64] = ACTIONS(5410), + [anon_sym_c_char] = ACTIONS(5410), + [anon_sym_c_schar] = ACTIONS(5410), + [anon_sym_c_uchar] = ACTIONS(5410), + [anon_sym_c_short] = ACTIONS(5410), + [anon_sym_c_ushort] = ACTIONS(5410), + [anon_sym_c_int] = ACTIONS(5410), + [anon_sym_c_uint] = ACTIONS(5410), + [anon_sym_c_long] = ACTIONS(5410), + [anon_sym_c_ulong] = ACTIONS(5410), + [anon_sym_c_longlong] = ACTIONS(5410), + [anon_sym_c_ulonglong] = ACTIONS(5410), + [anon_sym_c_float] = ACTIONS(5410), + [anon_sym_c_double] = ACTIONS(5410), + [anon_sym_c_longdouble] = ACTIONS(5410), + [anon_sym_PLUS_EQ] = ACTIONS(5408), + [anon_sym_DASH_EQ] = ACTIONS(5408), + [anon_sym_STAR_EQ] = ACTIONS(5408), + [anon_sym_SLASH_EQ] = ACTIONS(5408), + [anon_sym_AMP_EQ] = ACTIONS(5408), + [anon_sym_PIPE_EQ] = ACTIONS(5408), + [anon_sym_xor_EQ] = ACTIONS(5408), + [anon_sym_LT_LT_EQ] = ACTIONS(5408), + [anon_sym_GT_GT_EQ] = ACTIONS(5408), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5408), + [anon_sym_return] = ACTIONS(5410), + [anon_sym_yield] = ACTIONS(5410), + [anon_sym_break] = ACTIONS(5410), + [anon_sym_continue] = ACTIONS(5410), + [anon_sym_defer] = ACTIONS(5410), + [anon_sym_errdefer] = ACTIONS(5410), + [anon_sym_if] = ACTIONS(5410), + [anon_sym_else] = ACTIONS(5410), + [anon_sym_while] = ACTIONS(5410), + [anon_sym_expand] = ACTIONS(5410), + [anon_sym_for] = ACTIONS(5410), + [anon_sym_match] = ACTIONS(5410), + [anon_sym_DOT_DOT] = ACTIONS(5410), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5408), + [anon_sym_orelse] = ACTIONS(5410), + [anon_sym_or] = ACTIONS(5410), + [anon_sym_and] = ACTIONS(5410), + [anon_sym_EQ_EQ] = ACTIONS(5408), + [anon_sym_BANG_EQ] = ACTIONS(5408), + [anon_sym_LT] = ACTIONS(5410), + [anon_sym_LT_EQ] = ACTIONS(5408), + [anon_sym_GT] = ACTIONS(5410), + [anon_sym_GT_EQ] = ACTIONS(5408), + [anon_sym_AMP] = ACTIONS(5410), + [anon_sym_xor] = ACTIONS(5410), + [anon_sym_LT_LT] = ACTIONS(5410), + [anon_sym_GT_GT] = ACTIONS(5410), + [anon_sym_LT_LT_PIPE] = ACTIONS(5410), + [anon_sym_PLUS] = ACTIONS(5410), + [anon_sym_SLASH] = ACTIONS(5410), + [anon_sym_catch] = ACTIONS(5410), + [anon_sym_TILDE] = ACTIONS(5408), + [anon_sym_try] = ACTIONS(5410), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_CARET] = ACTIONS(5408), + [anon_sym_true] = ACTIONS(5410), + [anon_sym_false] = ACTIONS(5410), + [anon_sym_null] = ACTIONS(5410), + [anon_sym_unreachable] = ACTIONS(5410), + [anon_sym_undefined] = ACTIONS(5410), + [sym_sink] = ACTIONS(5410), + [sym_integer] = ACTIONS(5410), + [sym_float] = ACTIONS(5408), + [anon_sym_DQUOTE] = ACTIONS(5408), + [sym_multiline_string] = ACTIONS(5408), + [sym_character] = ACTIONS(5408), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5408), + }, + [STATE(3082)] = { + [sym_identifier] = ACTIONS(4804), + [anon_sym_func] = ACTIONS(4804), + [anon_sym_c_func] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_struct] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4802), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_struct_type_BANG] = ACTIONS(4802), + [anon_sym_QMARK] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4802), + [anon_sym_void] = ACTIONS(4804), + [anon_sym_noreturn] = ACTIONS(4804), + [anon_sym_type] = ACTIONS(4804), + [anon_sym_anyopaque] = ACTIONS(4804), + [anon_sym_bool] = ACTIONS(4804), + [anon_sym_int] = ACTIONS(4804), + [anon_sym_uint] = ACTIONS(4804), + [anon_sym_float] = ACTIONS(4804), + [anon_sym_range] = ACTIONS(4804), + [anon_sym_i8] = ACTIONS(4804), + [anon_sym_i16] = ACTIONS(4804), + [anon_sym_i32] = ACTIONS(4804), + [anon_sym_i64] = ACTIONS(4804), + [anon_sym_u8] = ACTIONS(4804), + [anon_sym_u16] = ACTIONS(4804), + [anon_sym_u32] = ACTIONS(4804), + [anon_sym_u64] = ACTIONS(4804), + [anon_sym_isize] = ACTIONS(4804), + [anon_sym_usize] = ACTIONS(4804), + [anon_sym_f32] = ACTIONS(4804), + [anon_sym_f64] = ACTIONS(4804), + [anon_sym_c_char] = ACTIONS(4804), + [anon_sym_c_schar] = ACTIONS(4804), + [anon_sym_c_uchar] = ACTIONS(4804), + [anon_sym_c_short] = ACTIONS(4804), + [anon_sym_c_ushort] = ACTIONS(4804), + [anon_sym_c_int] = ACTIONS(4804), + [anon_sym_c_uint] = ACTIONS(4804), + [anon_sym_c_long] = ACTIONS(4804), + [anon_sym_c_ulong] = ACTIONS(4804), + [anon_sym_c_longlong] = ACTIONS(4804), + [anon_sym_c_ulonglong] = ACTIONS(4804), + [anon_sym_c_float] = ACTIONS(4804), + [anon_sym_c_double] = ACTIONS(4804), + [anon_sym_c_longdouble] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4802), + [anon_sym_DASH_EQ] = ACTIONS(4802), + [anon_sym_STAR_EQ] = ACTIONS(4802), + [anon_sym_SLASH_EQ] = ACTIONS(4802), + [anon_sym_AMP_EQ] = ACTIONS(4802), + [anon_sym_PIPE_EQ] = ACTIONS(4802), + [anon_sym_xor_EQ] = ACTIONS(4802), + [anon_sym_LT_LT_EQ] = ACTIONS(4802), + [anon_sym_GT_GT_EQ] = ACTIONS(4802), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_yield] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_defer] = ACTIONS(4804), + [anon_sym_errdefer] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_expand] = ACTIONS(4804), + [anon_sym_for] = ACTIONS(4804), + [anon_sym_match] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4802), + [anon_sym_orelse] = ACTIONS(4804), + [anon_sym_or] = ACTIONS(4804), + [anon_sym_and] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_AMP] = ACTIONS(4804), + [anon_sym_xor] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_LT_LT_PIPE] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_catch] = ACTIONS(4804), + [anon_sym_TILDE] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_unreachable] = ACTIONS(4804), + [anon_sym_undefined] = ACTIONS(4804), + [sym_sink] = ACTIONS(4804), + [sym_integer] = ACTIONS(4804), + [sym_float] = ACTIONS(4802), + [anon_sym_DQUOTE] = ACTIONS(4802), + [sym_multiline_string] = ACTIONS(4802), + [sym_character] = ACTIONS(4802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4802), + }, + [STATE(3083)] = { + [sym_identifier] = ACTIONS(4910), + [anon_sym_func] = ACTIONS(4910), + [anon_sym_c_func] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_struct] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_struct_type_BANG] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_void] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym_type] = ACTIONS(4910), + [anon_sym_anyopaque] = ACTIONS(4910), + [anon_sym_bool] = ACTIONS(4910), + [anon_sym_int] = ACTIONS(4910), + [anon_sym_uint] = ACTIONS(4910), + [anon_sym_float] = ACTIONS(4910), + [anon_sym_range] = ACTIONS(4910), + [anon_sym_i8] = ACTIONS(4910), + [anon_sym_i16] = ACTIONS(4910), + [anon_sym_i32] = ACTIONS(4910), + [anon_sym_i64] = ACTIONS(4910), + [anon_sym_u8] = ACTIONS(4910), + [anon_sym_u16] = ACTIONS(4910), + [anon_sym_u32] = ACTIONS(4910), + [anon_sym_u64] = ACTIONS(4910), + [anon_sym_isize] = ACTIONS(4910), + [anon_sym_usize] = ACTIONS(4910), + [anon_sym_f32] = ACTIONS(4910), + [anon_sym_f64] = ACTIONS(4910), + [anon_sym_c_char] = ACTIONS(4910), + [anon_sym_c_schar] = ACTIONS(4910), + [anon_sym_c_uchar] = ACTIONS(4910), + [anon_sym_c_short] = ACTIONS(4910), + [anon_sym_c_ushort] = ACTIONS(4910), + [anon_sym_c_int] = ACTIONS(4910), + [anon_sym_c_uint] = ACTIONS(4910), + [anon_sym_c_long] = ACTIONS(4910), + [anon_sym_c_ulong] = ACTIONS(4910), + [anon_sym_c_longlong] = ACTIONS(4910), + [anon_sym_c_ulonglong] = ACTIONS(4910), + [anon_sym_c_float] = ACTIONS(4910), + [anon_sym_c_double] = ACTIONS(4910), + [anon_sym_c_longdouble] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_AMP_EQ] = ACTIONS(4908), + [anon_sym_PIPE_EQ] = ACTIONS(4908), + [anon_sym_xor_EQ] = ACTIONS(4908), + [anon_sym_LT_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4908), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_yield] = ACTIONS(4910), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_defer] = ACTIONS(4910), + [anon_sym_errdefer] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_expand] = ACTIONS(4910), + [anon_sym_for] = ACTIONS(4910), + [anon_sym_match] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4908), + [anon_sym_orelse] = ACTIONS(4910), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_and] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_xor] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4910), + [anon_sym_GT_GT] = ACTIONS(4910), + [anon_sym_LT_LT_PIPE] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_catch] = ACTIONS(4910), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_unreachable] = ACTIONS(4910), + [anon_sym_undefined] = ACTIONS(4910), + [sym_sink] = ACTIONS(4910), + [sym_integer] = ACTIONS(4910), + [sym_float] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [sym_multiline_string] = ACTIONS(4908), + [sym_character] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4908), + }, + [STATE(3084)] = { + [sym_identifier] = ACTIONS(4916), + [anon_sym_func] = ACTIONS(4916), + [anon_sym_c_func] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_struct] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4914), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_struct_type_BANG] = ACTIONS(4914), + [anon_sym_QMARK] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_void] = ACTIONS(4916), + [anon_sym_noreturn] = ACTIONS(4916), + [anon_sym_type] = ACTIONS(4916), + [anon_sym_anyopaque] = ACTIONS(4916), + [anon_sym_bool] = ACTIONS(4916), + [anon_sym_int] = ACTIONS(4916), + [anon_sym_uint] = ACTIONS(4916), + [anon_sym_float] = ACTIONS(4916), + [anon_sym_range] = ACTIONS(4916), + [anon_sym_i8] = ACTIONS(4916), + [anon_sym_i16] = ACTIONS(4916), + [anon_sym_i32] = ACTIONS(4916), + [anon_sym_i64] = ACTIONS(4916), + [anon_sym_u8] = ACTIONS(4916), + [anon_sym_u16] = ACTIONS(4916), + [anon_sym_u32] = ACTIONS(4916), + [anon_sym_u64] = ACTIONS(4916), + [anon_sym_isize] = ACTIONS(4916), + [anon_sym_usize] = ACTIONS(4916), + [anon_sym_f32] = ACTIONS(4916), + [anon_sym_f64] = ACTIONS(4916), + [anon_sym_c_char] = ACTIONS(4916), + [anon_sym_c_schar] = ACTIONS(4916), + [anon_sym_c_uchar] = ACTIONS(4916), + [anon_sym_c_short] = ACTIONS(4916), + [anon_sym_c_ushort] = ACTIONS(4916), + [anon_sym_c_int] = ACTIONS(4916), + [anon_sym_c_uint] = ACTIONS(4916), + [anon_sym_c_long] = ACTIONS(4916), + [anon_sym_c_ulong] = ACTIONS(4916), + [anon_sym_c_longlong] = ACTIONS(4916), + [anon_sym_c_ulonglong] = ACTIONS(4916), + [anon_sym_c_float] = ACTIONS(4916), + [anon_sym_c_double] = ACTIONS(4916), + [anon_sym_c_longdouble] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_AMP_EQ] = ACTIONS(4914), + [anon_sym_PIPE_EQ] = ACTIONS(4914), + [anon_sym_xor_EQ] = ACTIONS(4914), + [anon_sym_LT_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_GT_EQ] = ACTIONS(4914), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4914), + [anon_sym_return] = ACTIONS(4916), + [anon_sym_yield] = ACTIONS(4916), + [anon_sym_break] = ACTIONS(4916), + [anon_sym_continue] = ACTIONS(4916), + [anon_sym_defer] = ACTIONS(4916), + [anon_sym_errdefer] = ACTIONS(4916), + [anon_sym_if] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_while] = ACTIONS(4916), + [anon_sym_expand] = ACTIONS(4916), + [anon_sym_for] = ACTIONS(4916), + [anon_sym_match] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), + [anon_sym_orelse] = ACTIONS(4916), + [anon_sym_or] = ACTIONS(4916), + [anon_sym_and] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_AMP] = ACTIONS(4916), + [anon_sym_xor] = ACTIONS(4916), + [anon_sym_LT_LT] = ACTIONS(4916), + [anon_sym_GT_GT] = ACTIONS(4916), + [anon_sym_LT_LT_PIPE] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_catch] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4916), + [anon_sym_false] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4916), + [anon_sym_unreachable] = ACTIONS(4916), + [anon_sym_undefined] = ACTIONS(4916), + [sym_sink] = ACTIONS(4916), + [sym_integer] = ACTIONS(4916), + [sym_float] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(4914), + [sym_multiline_string] = ACTIONS(4914), + [sym_character] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4914), + }, + [STATE(3085)] = { + [sym_identifier] = ACTIONS(4922), + [anon_sym_func] = ACTIONS(4922), + [anon_sym_c_func] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_struct] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4922), + [anon_sym_struct_type_BANG] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_void] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym_type] = ACTIONS(4922), + [anon_sym_anyopaque] = ACTIONS(4922), + [anon_sym_bool] = ACTIONS(4922), + [anon_sym_int] = ACTIONS(4922), + [anon_sym_uint] = ACTIONS(4922), + [anon_sym_float] = ACTIONS(4922), + [anon_sym_range] = ACTIONS(4922), + [anon_sym_i8] = ACTIONS(4922), + [anon_sym_i16] = ACTIONS(4922), + [anon_sym_i32] = ACTIONS(4922), + [anon_sym_i64] = ACTIONS(4922), + [anon_sym_u8] = ACTIONS(4922), + [anon_sym_u16] = ACTIONS(4922), + [anon_sym_u32] = ACTIONS(4922), + [anon_sym_u64] = ACTIONS(4922), + [anon_sym_isize] = ACTIONS(4922), + [anon_sym_usize] = ACTIONS(4922), + [anon_sym_f32] = ACTIONS(4922), + [anon_sym_f64] = ACTIONS(4922), + [anon_sym_c_char] = ACTIONS(4922), + [anon_sym_c_schar] = ACTIONS(4922), + [anon_sym_c_uchar] = ACTIONS(4922), + [anon_sym_c_short] = ACTIONS(4922), + [anon_sym_c_ushort] = ACTIONS(4922), + [anon_sym_c_int] = ACTIONS(4922), + [anon_sym_c_uint] = ACTIONS(4922), + [anon_sym_c_long] = ACTIONS(4922), + [anon_sym_c_ulong] = ACTIONS(4922), + [anon_sym_c_longlong] = ACTIONS(4922), + [anon_sym_c_ulonglong] = ACTIONS(4922), + [anon_sym_c_float] = ACTIONS(4922), + [anon_sym_c_double] = ACTIONS(4922), + [anon_sym_c_longdouble] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_AMP_EQ] = ACTIONS(4920), + [anon_sym_PIPE_EQ] = ACTIONS(4920), + [anon_sym_xor_EQ] = ACTIONS(4920), + [anon_sym_LT_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4920), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_yield] = ACTIONS(4922), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_continue] = ACTIONS(4922), + [anon_sym_defer] = ACTIONS(4922), + [anon_sym_errdefer] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_expand] = ACTIONS(4922), + [anon_sym_for] = ACTIONS(4922), + [anon_sym_match] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), + [anon_sym_orelse] = ACTIONS(4922), + [anon_sym_or] = ACTIONS(4922), + [anon_sym_and] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_xor] = ACTIONS(4922), + [anon_sym_LT_LT] = ACTIONS(4922), + [anon_sym_GT_GT] = ACTIONS(4922), + [anon_sym_LT_LT_PIPE] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_catch] = ACTIONS(4922), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_unreachable] = ACTIONS(4922), + [anon_sym_undefined] = ACTIONS(4922), + [sym_sink] = ACTIONS(4922), + [sym_integer] = ACTIONS(4922), + [sym_float] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [sym_multiline_string] = ACTIONS(4920), + [sym_character] = ACTIONS(4920), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4920), + }, + [STATE(3086)] = { + [sym_identifier] = ACTIONS(5924), + [anon_sym_func] = ACTIONS(5924), + [anon_sym_c_func] = ACTIONS(5924), + [anon_sym_BANG] = ACTIONS(5924), + [anon_sym_EQ] = ACTIONS(5924), + [anon_sym_struct] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5922), + [anon_sym_LBRACE] = ACTIONS(5922), + [anon_sym_COMMA] = ACTIONS(5922), + [anon_sym_RBRACE] = ACTIONS(5922), + [anon_sym_DASH] = ACTIONS(5924), + [anon_sym_DOLLAR] = ACTIONS(5922), + [anon_sym_PIPE] = ACTIONS(5924), + [anon_sym_struct_type_BANG] = ACTIONS(5922), + [anon_sym_QMARK] = ACTIONS(5922), + [anon_sym_AT] = ACTIONS(5922), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(5922), + [anon_sym_void] = ACTIONS(5924), + [anon_sym_noreturn] = ACTIONS(5924), + [anon_sym_type] = ACTIONS(5924), + [anon_sym_anyopaque] = ACTIONS(5924), + [anon_sym_bool] = ACTIONS(5924), + [anon_sym_int] = ACTIONS(5924), + [anon_sym_uint] = ACTIONS(5924), + [anon_sym_float] = ACTIONS(5924), + [anon_sym_range] = ACTIONS(5924), + [anon_sym_i8] = ACTIONS(5924), + [anon_sym_i16] = ACTIONS(5924), + [anon_sym_i32] = ACTIONS(5924), + [anon_sym_i64] = ACTIONS(5924), + [anon_sym_u8] = ACTIONS(5924), + [anon_sym_u16] = ACTIONS(5924), + [anon_sym_u32] = ACTIONS(5924), + [anon_sym_u64] = ACTIONS(5924), + [anon_sym_isize] = ACTIONS(5924), + [anon_sym_usize] = ACTIONS(5924), + [anon_sym_f32] = ACTIONS(5924), + [anon_sym_f64] = ACTIONS(5924), + [anon_sym_c_char] = ACTIONS(5924), + [anon_sym_c_schar] = ACTIONS(5924), + [anon_sym_c_uchar] = ACTIONS(5924), + [anon_sym_c_short] = ACTIONS(5924), + [anon_sym_c_ushort] = ACTIONS(5924), + [anon_sym_c_int] = ACTIONS(5924), + [anon_sym_c_uint] = ACTIONS(5924), + [anon_sym_c_long] = ACTIONS(5924), + [anon_sym_c_ulong] = ACTIONS(5924), + [anon_sym_c_longlong] = ACTIONS(5924), + [anon_sym_c_ulonglong] = ACTIONS(5924), + [anon_sym_c_float] = ACTIONS(5924), + [anon_sym_c_double] = ACTIONS(5924), + [anon_sym_c_longdouble] = ACTIONS(5924), + [anon_sym_PLUS_EQ] = ACTIONS(5922), + [anon_sym_DASH_EQ] = ACTIONS(5922), + [anon_sym_STAR_EQ] = ACTIONS(5922), + [anon_sym_SLASH_EQ] = ACTIONS(5922), + [anon_sym_AMP_EQ] = ACTIONS(5922), + [anon_sym_PIPE_EQ] = ACTIONS(5922), + [anon_sym_xor_EQ] = ACTIONS(5922), + [anon_sym_LT_LT_EQ] = ACTIONS(5922), + [anon_sym_GT_GT_EQ] = ACTIONS(5922), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5922), + [anon_sym_return] = ACTIONS(5924), + [anon_sym_yield] = ACTIONS(5924), + [anon_sym_break] = ACTIONS(5924), + [anon_sym_continue] = ACTIONS(5924), + [anon_sym_defer] = ACTIONS(5924), + [anon_sym_errdefer] = ACTIONS(5924), + [anon_sym_if] = ACTIONS(5924), + [anon_sym_else] = ACTIONS(5924), + [anon_sym_while] = ACTIONS(5924), + [anon_sym_expand] = ACTIONS(5924), + [anon_sym_for] = ACTIONS(5924), + [anon_sym_match] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(5924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5922), + [anon_sym_orelse] = ACTIONS(5924), + [anon_sym_or] = ACTIONS(5924), + [anon_sym_and] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5922), + [anon_sym_BANG_EQ] = ACTIONS(5922), + [anon_sym_LT] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5922), + [anon_sym_GT] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5922), + [anon_sym_AMP] = ACTIONS(5924), + [anon_sym_xor] = ACTIONS(5924), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5924), + [anon_sym_LT_LT_PIPE] = ACTIONS(5924), + [anon_sym_PLUS] = ACTIONS(5924), + [anon_sym_SLASH] = ACTIONS(5924), + [anon_sym_catch] = ACTIONS(5924), + [anon_sym_TILDE] = ACTIONS(5922), + [anon_sym_try] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5922), + [anon_sym_true] = ACTIONS(5924), + [anon_sym_false] = ACTIONS(5924), + [anon_sym_null] = ACTIONS(5924), + [anon_sym_unreachable] = ACTIONS(5924), + [anon_sym_undefined] = ACTIONS(5924), + [sym_sink] = ACTIONS(5924), + [sym_integer] = ACTIONS(5924), + [sym_float] = ACTIONS(5922), + [anon_sym_DQUOTE] = ACTIONS(5922), + [sym_multiline_string] = ACTIONS(5922), + [sym_character] = ACTIONS(5922), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5922), + }, + [STATE(3087)] = { + [sym_identifier] = ACTIONS(5928), + [anon_sym_func] = ACTIONS(5928), + [anon_sym_c_func] = ACTIONS(5928), + [anon_sym_BANG] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(5928), + [anon_sym_struct] = ACTIONS(5928), + [anon_sym_LPAREN] = ACTIONS(5926), + [anon_sym_LBRACE] = ACTIONS(5926), + [anon_sym_COMMA] = ACTIONS(5926), + [anon_sym_RBRACE] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5928), + [anon_sym_DOLLAR] = ACTIONS(5926), + [anon_sym_PIPE] = ACTIONS(5928), + [anon_sym_struct_type_BANG] = ACTIONS(5926), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_AT] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5926), + [anon_sym_void] = ACTIONS(5928), + [anon_sym_noreturn] = ACTIONS(5928), + [anon_sym_type] = ACTIONS(5928), + [anon_sym_anyopaque] = ACTIONS(5928), + [anon_sym_bool] = ACTIONS(5928), + [anon_sym_int] = ACTIONS(5928), + [anon_sym_uint] = ACTIONS(5928), + [anon_sym_float] = ACTIONS(5928), + [anon_sym_range] = ACTIONS(5928), + [anon_sym_i8] = ACTIONS(5928), + [anon_sym_i16] = ACTIONS(5928), + [anon_sym_i32] = ACTIONS(5928), + [anon_sym_i64] = ACTIONS(5928), + [anon_sym_u8] = ACTIONS(5928), + [anon_sym_u16] = ACTIONS(5928), + [anon_sym_u32] = ACTIONS(5928), + [anon_sym_u64] = ACTIONS(5928), + [anon_sym_isize] = ACTIONS(5928), + [anon_sym_usize] = ACTIONS(5928), + [anon_sym_f32] = ACTIONS(5928), + [anon_sym_f64] = ACTIONS(5928), + [anon_sym_c_char] = ACTIONS(5928), + [anon_sym_c_schar] = ACTIONS(5928), + [anon_sym_c_uchar] = ACTIONS(5928), + [anon_sym_c_short] = ACTIONS(5928), + [anon_sym_c_ushort] = ACTIONS(5928), + [anon_sym_c_int] = ACTIONS(5928), + [anon_sym_c_uint] = ACTIONS(5928), + [anon_sym_c_long] = ACTIONS(5928), + [anon_sym_c_ulong] = ACTIONS(5928), + [anon_sym_c_longlong] = ACTIONS(5928), + [anon_sym_c_ulonglong] = ACTIONS(5928), + [anon_sym_c_float] = ACTIONS(5928), + [anon_sym_c_double] = ACTIONS(5928), + [anon_sym_c_longdouble] = ACTIONS(5928), + [anon_sym_PLUS_EQ] = ACTIONS(5926), + [anon_sym_DASH_EQ] = ACTIONS(5926), + [anon_sym_STAR_EQ] = ACTIONS(5926), + [anon_sym_SLASH_EQ] = ACTIONS(5926), + [anon_sym_AMP_EQ] = ACTIONS(5926), + [anon_sym_PIPE_EQ] = ACTIONS(5926), + [anon_sym_xor_EQ] = ACTIONS(5926), + [anon_sym_LT_LT_EQ] = ACTIONS(5926), + [anon_sym_GT_GT_EQ] = ACTIONS(5926), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5926), + [anon_sym_return] = ACTIONS(5928), + [anon_sym_yield] = ACTIONS(5928), + [anon_sym_break] = ACTIONS(5928), + [anon_sym_continue] = ACTIONS(5928), + [anon_sym_defer] = ACTIONS(5928), + [anon_sym_errdefer] = ACTIONS(5928), + [anon_sym_if] = ACTIONS(5928), + [anon_sym_else] = ACTIONS(5928), + [anon_sym_while] = ACTIONS(5928), + [anon_sym_expand] = ACTIONS(5928), + [anon_sym_for] = ACTIONS(5928), + [anon_sym_match] = ACTIONS(5928), + [anon_sym_DOT_DOT] = ACTIONS(5928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5926), + [anon_sym_orelse] = ACTIONS(5928), + [anon_sym_or] = ACTIONS(5928), + [anon_sym_and] = ACTIONS(5928), + [anon_sym_EQ_EQ] = ACTIONS(5926), + [anon_sym_BANG_EQ] = ACTIONS(5926), + [anon_sym_LT] = ACTIONS(5928), + [anon_sym_LT_EQ] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5928), + [anon_sym_GT_EQ] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5928), + [anon_sym_xor] = ACTIONS(5928), + [anon_sym_LT_LT] = ACTIONS(5928), + [anon_sym_GT_GT] = ACTIONS(5928), + [anon_sym_LT_LT_PIPE] = ACTIONS(5928), + [anon_sym_PLUS] = ACTIONS(5928), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_catch] = ACTIONS(5928), + [anon_sym_TILDE] = ACTIONS(5926), + [anon_sym_try] = ACTIONS(5928), + [anon_sym_DOT] = ACTIONS(5928), + [anon_sym_CARET] = ACTIONS(5926), + [anon_sym_true] = ACTIONS(5928), + [anon_sym_false] = ACTIONS(5928), + [anon_sym_null] = ACTIONS(5928), + [anon_sym_unreachable] = ACTIONS(5928), + [anon_sym_undefined] = ACTIONS(5928), + [sym_sink] = ACTIONS(5928), + [sym_integer] = ACTIONS(5928), + [sym_float] = ACTIONS(5926), + [anon_sym_DQUOTE] = ACTIONS(5926), + [sym_multiline_string] = ACTIONS(5926), + [sym_character] = ACTIONS(5926), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5926), + }, + [STATE(3088)] = { + [sym_identifier] = ACTIONS(5932), + [anon_sym_func] = ACTIONS(5932), + [anon_sym_c_func] = ACTIONS(5932), + [anon_sym_BANG] = ACTIONS(5932), + [anon_sym_EQ] = ACTIONS(5932), + [anon_sym_struct] = ACTIONS(5932), + [anon_sym_LPAREN] = ACTIONS(5930), + [anon_sym_LBRACE] = ACTIONS(5930), + [anon_sym_COMMA] = ACTIONS(5930), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_DASH] = ACTIONS(5932), + [anon_sym_DOLLAR] = ACTIONS(5930), + [anon_sym_PIPE] = ACTIONS(5932), + [anon_sym_struct_type_BANG] = ACTIONS(5930), + [anon_sym_QMARK] = ACTIONS(5930), + [anon_sym_AT] = ACTIONS(5930), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_LBRACK] = ACTIONS(5930), + [anon_sym_void] = ACTIONS(5932), + [anon_sym_noreturn] = ACTIONS(5932), + [anon_sym_type] = ACTIONS(5932), + [anon_sym_anyopaque] = ACTIONS(5932), + [anon_sym_bool] = ACTIONS(5932), + [anon_sym_int] = ACTIONS(5932), + [anon_sym_uint] = ACTIONS(5932), + [anon_sym_float] = ACTIONS(5932), + [anon_sym_range] = ACTIONS(5932), + [anon_sym_i8] = ACTIONS(5932), + [anon_sym_i16] = ACTIONS(5932), + [anon_sym_i32] = ACTIONS(5932), + [anon_sym_i64] = ACTIONS(5932), + [anon_sym_u8] = ACTIONS(5932), + [anon_sym_u16] = ACTIONS(5932), + [anon_sym_u32] = ACTIONS(5932), + [anon_sym_u64] = ACTIONS(5932), + [anon_sym_isize] = ACTIONS(5932), + [anon_sym_usize] = ACTIONS(5932), + [anon_sym_f32] = ACTIONS(5932), + [anon_sym_f64] = ACTIONS(5932), + [anon_sym_c_char] = ACTIONS(5932), + [anon_sym_c_schar] = ACTIONS(5932), + [anon_sym_c_uchar] = ACTIONS(5932), + [anon_sym_c_short] = ACTIONS(5932), + [anon_sym_c_ushort] = ACTIONS(5932), + [anon_sym_c_int] = ACTIONS(5932), + [anon_sym_c_uint] = ACTIONS(5932), + [anon_sym_c_long] = ACTIONS(5932), + [anon_sym_c_ulong] = ACTIONS(5932), + [anon_sym_c_longlong] = ACTIONS(5932), + [anon_sym_c_ulonglong] = ACTIONS(5932), + [anon_sym_c_float] = ACTIONS(5932), + [anon_sym_c_double] = ACTIONS(5932), + [anon_sym_c_longdouble] = ACTIONS(5932), + [anon_sym_PLUS_EQ] = ACTIONS(5930), + [anon_sym_DASH_EQ] = ACTIONS(5930), + [anon_sym_STAR_EQ] = ACTIONS(5930), + [anon_sym_SLASH_EQ] = ACTIONS(5930), + [anon_sym_AMP_EQ] = ACTIONS(5930), + [anon_sym_PIPE_EQ] = ACTIONS(5930), + [anon_sym_xor_EQ] = ACTIONS(5930), + [anon_sym_LT_LT_EQ] = ACTIONS(5930), + [anon_sym_GT_GT_EQ] = ACTIONS(5930), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5930), + [anon_sym_return] = ACTIONS(5932), + [anon_sym_yield] = ACTIONS(5932), + [anon_sym_break] = ACTIONS(5932), + [anon_sym_continue] = ACTIONS(5932), + [anon_sym_defer] = ACTIONS(5932), + [anon_sym_errdefer] = ACTIONS(5932), + [anon_sym_if] = ACTIONS(5932), + [anon_sym_else] = ACTIONS(5932), + [anon_sym_while] = ACTIONS(5932), + [anon_sym_expand] = ACTIONS(5932), + [anon_sym_for] = ACTIONS(5932), + [anon_sym_match] = ACTIONS(5932), + [anon_sym_DOT_DOT] = ACTIONS(5932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5930), + [anon_sym_orelse] = ACTIONS(5932), + [anon_sym_or] = ACTIONS(5932), + [anon_sym_and] = ACTIONS(5932), + [anon_sym_EQ_EQ] = ACTIONS(5930), + [anon_sym_BANG_EQ] = ACTIONS(5930), + [anon_sym_LT] = ACTIONS(5932), + [anon_sym_LT_EQ] = ACTIONS(5930), + [anon_sym_GT] = ACTIONS(5932), + [anon_sym_GT_EQ] = ACTIONS(5930), + [anon_sym_AMP] = ACTIONS(5932), + [anon_sym_xor] = ACTIONS(5932), + [anon_sym_LT_LT] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5932), + [anon_sym_LT_LT_PIPE] = ACTIONS(5932), + [anon_sym_PLUS] = ACTIONS(5932), + [anon_sym_SLASH] = ACTIONS(5932), + [anon_sym_catch] = ACTIONS(5932), + [anon_sym_TILDE] = ACTIONS(5930), + [anon_sym_try] = ACTIONS(5932), + [anon_sym_DOT] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5930), + [anon_sym_true] = ACTIONS(5932), + [anon_sym_false] = ACTIONS(5932), + [anon_sym_null] = ACTIONS(5932), + [anon_sym_unreachable] = ACTIONS(5932), + [anon_sym_undefined] = ACTIONS(5932), + [sym_sink] = ACTIONS(5932), + [sym_integer] = ACTIONS(5932), + [sym_float] = ACTIONS(5930), + [anon_sym_DQUOTE] = ACTIONS(5930), + [sym_multiline_string] = ACTIONS(5930), + [sym_character] = ACTIONS(5930), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5930), + }, + [STATE(3089)] = { + [sym_identifier] = ACTIONS(5916), + [anon_sym_func] = ACTIONS(5916), + [anon_sym_c_func] = ACTIONS(5916), + [anon_sym_BANG] = ACTIONS(5916), + [anon_sym_EQ] = ACTIONS(5916), + [anon_sym_struct] = ACTIONS(5916), + [anon_sym_LPAREN] = ACTIONS(5914), + [anon_sym_LBRACE] = ACTIONS(5914), + [anon_sym_COMMA] = ACTIONS(5914), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_DASH] = ACTIONS(5916), + [anon_sym_DOLLAR] = ACTIONS(5914), + [anon_sym_PIPE] = ACTIONS(5916), + [anon_sym_struct_type_BANG] = ACTIONS(5914), + [anon_sym_QMARK] = ACTIONS(5914), + [anon_sym_AT] = ACTIONS(5914), + [anon_sym_STAR] = ACTIONS(5916), + [anon_sym_LBRACK] = ACTIONS(5914), + [anon_sym_void] = ACTIONS(5916), + [anon_sym_noreturn] = ACTIONS(5916), + [anon_sym_type] = ACTIONS(5916), + [anon_sym_anyopaque] = ACTIONS(5916), + [anon_sym_bool] = ACTIONS(5916), + [anon_sym_int] = ACTIONS(5916), + [anon_sym_uint] = ACTIONS(5916), + [anon_sym_float] = ACTIONS(5916), + [anon_sym_range] = ACTIONS(5916), + [anon_sym_i8] = ACTIONS(5916), + [anon_sym_i16] = ACTIONS(5916), + [anon_sym_i32] = ACTIONS(5916), + [anon_sym_i64] = ACTIONS(5916), + [anon_sym_u8] = ACTIONS(5916), + [anon_sym_u16] = ACTIONS(5916), + [anon_sym_u32] = ACTIONS(5916), + [anon_sym_u64] = ACTIONS(5916), + [anon_sym_isize] = ACTIONS(5916), + [anon_sym_usize] = ACTIONS(5916), + [anon_sym_f32] = ACTIONS(5916), + [anon_sym_f64] = ACTIONS(5916), + [anon_sym_c_char] = ACTIONS(5916), + [anon_sym_c_schar] = ACTIONS(5916), + [anon_sym_c_uchar] = ACTIONS(5916), + [anon_sym_c_short] = ACTIONS(5916), + [anon_sym_c_ushort] = ACTIONS(5916), + [anon_sym_c_int] = ACTIONS(5916), + [anon_sym_c_uint] = ACTIONS(5916), + [anon_sym_c_long] = ACTIONS(5916), + [anon_sym_c_ulong] = ACTIONS(5916), + [anon_sym_c_longlong] = ACTIONS(5916), + [anon_sym_c_ulonglong] = ACTIONS(5916), + [anon_sym_c_float] = ACTIONS(5916), + [anon_sym_c_double] = ACTIONS(5916), + [anon_sym_c_longdouble] = ACTIONS(5916), + [anon_sym_PLUS_EQ] = ACTIONS(5914), + [anon_sym_DASH_EQ] = ACTIONS(5914), + [anon_sym_STAR_EQ] = ACTIONS(5914), + [anon_sym_SLASH_EQ] = ACTIONS(5914), + [anon_sym_AMP_EQ] = ACTIONS(5914), + [anon_sym_PIPE_EQ] = ACTIONS(5914), + [anon_sym_xor_EQ] = ACTIONS(5914), + [anon_sym_LT_LT_EQ] = ACTIONS(5914), + [anon_sym_GT_GT_EQ] = ACTIONS(5914), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5914), + [anon_sym_return] = ACTIONS(5916), + [anon_sym_yield] = ACTIONS(5916), + [anon_sym_break] = ACTIONS(5916), + [anon_sym_continue] = ACTIONS(5916), + [anon_sym_defer] = ACTIONS(5916), + [anon_sym_errdefer] = ACTIONS(5916), + [anon_sym_if] = ACTIONS(5916), + [anon_sym_else] = ACTIONS(5916), + [anon_sym_while] = ACTIONS(5916), + [anon_sym_expand] = ACTIONS(5916), + [anon_sym_for] = ACTIONS(5916), + [anon_sym_match] = ACTIONS(5916), + [anon_sym_DOT_DOT] = ACTIONS(5916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5914), + [anon_sym_orelse] = ACTIONS(5916), + [anon_sym_or] = ACTIONS(5916), + [anon_sym_and] = ACTIONS(5916), + [anon_sym_EQ_EQ] = ACTIONS(5914), + [anon_sym_BANG_EQ] = ACTIONS(5914), + [anon_sym_LT] = ACTIONS(5916), + [anon_sym_LT_EQ] = ACTIONS(5914), + [anon_sym_GT] = ACTIONS(5916), + [anon_sym_GT_EQ] = ACTIONS(5914), + [anon_sym_AMP] = ACTIONS(5916), + [anon_sym_xor] = ACTIONS(5916), + [anon_sym_LT_LT] = ACTIONS(5916), + [anon_sym_GT_GT] = ACTIONS(5916), + [anon_sym_LT_LT_PIPE] = ACTIONS(5916), + [anon_sym_PLUS] = ACTIONS(5916), + [anon_sym_SLASH] = ACTIONS(5916), + [anon_sym_catch] = ACTIONS(5916), + [anon_sym_TILDE] = ACTIONS(5914), + [anon_sym_try] = ACTIONS(5916), + [anon_sym_DOT] = ACTIONS(5916), + [anon_sym_CARET] = ACTIONS(5914), + [anon_sym_true] = ACTIONS(5916), + [anon_sym_false] = ACTIONS(5916), + [anon_sym_null] = ACTIONS(5916), + [anon_sym_unreachable] = ACTIONS(5916), + [anon_sym_undefined] = ACTIONS(5916), + [sym_sink] = ACTIONS(5916), + [sym_integer] = ACTIONS(5916), + [sym_float] = ACTIONS(5914), + [anon_sym_DQUOTE] = ACTIONS(5914), + [sym_multiline_string] = ACTIONS(5914), + [sym_character] = ACTIONS(5914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5914), + }, + [STATE(3090)] = { + [sym_identifier] = ACTIONS(5920), + [anon_sym_func] = ACTIONS(5920), + [anon_sym_c_func] = ACTIONS(5920), + [anon_sym_BANG] = ACTIONS(5920), + [anon_sym_EQ] = ACTIONS(5920), + [anon_sym_struct] = ACTIONS(5920), + [anon_sym_LPAREN] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(5918), + [anon_sym_COMMA] = ACTIONS(5918), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5920), + [anon_sym_DOLLAR] = ACTIONS(5918), + [anon_sym_PIPE] = ACTIONS(5920), + [anon_sym_struct_type_BANG] = ACTIONS(5918), + [anon_sym_QMARK] = ACTIONS(5918), + [anon_sym_AT] = ACTIONS(5918), + [anon_sym_STAR] = ACTIONS(5920), + [anon_sym_LBRACK] = ACTIONS(5918), + [anon_sym_void] = ACTIONS(5920), + [anon_sym_noreturn] = ACTIONS(5920), + [anon_sym_type] = ACTIONS(5920), + [anon_sym_anyopaque] = ACTIONS(5920), + [anon_sym_bool] = ACTIONS(5920), + [anon_sym_int] = ACTIONS(5920), + [anon_sym_uint] = ACTIONS(5920), + [anon_sym_float] = ACTIONS(5920), + [anon_sym_range] = ACTIONS(5920), + [anon_sym_i8] = ACTIONS(5920), + [anon_sym_i16] = ACTIONS(5920), + [anon_sym_i32] = ACTIONS(5920), + [anon_sym_i64] = ACTIONS(5920), + [anon_sym_u8] = ACTIONS(5920), + [anon_sym_u16] = ACTIONS(5920), + [anon_sym_u32] = ACTIONS(5920), + [anon_sym_u64] = ACTIONS(5920), + [anon_sym_isize] = ACTIONS(5920), + [anon_sym_usize] = ACTIONS(5920), + [anon_sym_f32] = ACTIONS(5920), + [anon_sym_f64] = ACTIONS(5920), + [anon_sym_c_char] = ACTIONS(5920), + [anon_sym_c_schar] = ACTIONS(5920), + [anon_sym_c_uchar] = ACTIONS(5920), + [anon_sym_c_short] = ACTIONS(5920), + [anon_sym_c_ushort] = ACTIONS(5920), + [anon_sym_c_int] = ACTIONS(5920), + [anon_sym_c_uint] = ACTIONS(5920), + [anon_sym_c_long] = ACTIONS(5920), + [anon_sym_c_ulong] = ACTIONS(5920), + [anon_sym_c_longlong] = ACTIONS(5920), + [anon_sym_c_ulonglong] = ACTIONS(5920), + [anon_sym_c_float] = ACTIONS(5920), + [anon_sym_c_double] = ACTIONS(5920), + [anon_sym_c_longdouble] = ACTIONS(5920), + [anon_sym_PLUS_EQ] = ACTIONS(5918), + [anon_sym_DASH_EQ] = ACTIONS(5918), + [anon_sym_STAR_EQ] = ACTIONS(5918), + [anon_sym_SLASH_EQ] = ACTIONS(5918), + [anon_sym_AMP_EQ] = ACTIONS(5918), + [anon_sym_PIPE_EQ] = ACTIONS(5918), + [anon_sym_xor_EQ] = ACTIONS(5918), + [anon_sym_LT_LT_EQ] = ACTIONS(5918), + [anon_sym_GT_GT_EQ] = ACTIONS(5918), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5918), + [anon_sym_return] = ACTIONS(5920), + [anon_sym_yield] = ACTIONS(5920), + [anon_sym_break] = ACTIONS(5920), + [anon_sym_continue] = ACTIONS(5920), + [anon_sym_defer] = ACTIONS(5920), + [anon_sym_errdefer] = ACTIONS(5920), + [anon_sym_if] = ACTIONS(5920), + [anon_sym_else] = ACTIONS(5920), + [anon_sym_while] = ACTIONS(5920), + [anon_sym_expand] = ACTIONS(5920), + [anon_sym_for] = ACTIONS(5920), + [anon_sym_match] = ACTIONS(5920), + [anon_sym_DOT_DOT] = ACTIONS(5920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5918), + [anon_sym_orelse] = ACTIONS(5920), + [anon_sym_or] = ACTIONS(5920), + [anon_sym_and] = ACTIONS(5920), + [anon_sym_EQ_EQ] = ACTIONS(5918), + [anon_sym_BANG_EQ] = ACTIONS(5918), + [anon_sym_LT] = ACTIONS(5920), + [anon_sym_LT_EQ] = ACTIONS(5918), + [anon_sym_GT] = ACTIONS(5920), + [anon_sym_GT_EQ] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5920), + [anon_sym_xor] = ACTIONS(5920), + [anon_sym_LT_LT] = ACTIONS(5920), + [anon_sym_GT_GT] = ACTIONS(5920), + [anon_sym_LT_LT_PIPE] = ACTIONS(5920), + [anon_sym_PLUS] = ACTIONS(5920), + [anon_sym_SLASH] = ACTIONS(5920), + [anon_sym_catch] = ACTIONS(5920), + [anon_sym_TILDE] = ACTIONS(5918), + [anon_sym_try] = ACTIONS(5920), + [anon_sym_DOT] = ACTIONS(5920), + [anon_sym_CARET] = ACTIONS(5918), + [anon_sym_true] = ACTIONS(5920), + [anon_sym_false] = ACTIONS(5920), + [anon_sym_null] = ACTIONS(5920), + [anon_sym_unreachable] = ACTIONS(5920), + [anon_sym_undefined] = ACTIONS(5920), + [sym_sink] = ACTIONS(5920), + [sym_integer] = ACTIONS(5920), + [sym_float] = ACTIONS(5918), + [anon_sym_DQUOTE] = ACTIONS(5918), + [sym_multiline_string] = ACTIONS(5918), + [sym_character] = ACTIONS(5918), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5918), + }, + [STATE(3091)] = { + [sym_identifier] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_c_func] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_struct_type_BANG] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1335), + [anon_sym_DASH_EQ] = ACTIONS(1335), + [anon_sym_STAR_EQ] = ACTIONS(1335), + [anon_sym_SLASH_EQ] = ACTIONS(1335), + [anon_sym_AMP_EQ] = ACTIONS(1335), + [anon_sym_PIPE_EQ] = ACTIONS(1335), + [anon_sym_xor_EQ] = ACTIONS(1335), + [anon_sym_LT_LT_EQ] = ACTIONS(1335), + [anon_sym_GT_GT_EQ] = ACTIONS(1335), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT_PIPE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1335), + }, + [STATE(3092)] = { + [sym_identifier] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_c_func] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_struct_type_BANG] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_PLUS_EQ] = ACTIONS(2710), + [anon_sym_DASH_EQ] = ACTIONS(2710), + [anon_sym_STAR_EQ] = ACTIONS(2710), + [anon_sym_SLASH_EQ] = ACTIONS(2710), + [anon_sym_AMP_EQ] = ACTIONS(2710), + [anon_sym_PIPE_EQ] = ACTIONS(2710), + [anon_sym_xor_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_defer] = ACTIONS(2712), + [anon_sym_errdefer] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_expand] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(2712), + [anon_sym_and] = ACTIONS(2712), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), + [anon_sym_xor] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_LT_LT_PIPE] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_unreachable] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [sym_sink] = ACTIONS(2712), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [sym_multiline_string] = ACTIONS(2710), + [sym_character] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(3093)] = { + [sym_identifier] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_c_func] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_struct_type_BANG] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_PLUS_EQ] = ACTIONS(2714), + [anon_sym_DASH_EQ] = ACTIONS(2714), + [anon_sym_STAR_EQ] = ACTIONS(2714), + [anon_sym_SLASH_EQ] = ACTIONS(2714), + [anon_sym_AMP_EQ] = ACTIONS(2714), + [anon_sym_PIPE_EQ] = ACTIONS(2714), + [anon_sym_xor_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_defer] = ACTIONS(2716), + [anon_sym_errdefer] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_expand] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(2716), + [anon_sym_and] = ACTIONS(2716), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2716), + [anon_sym_xor] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2716), + [anon_sym_GT_GT] = ACTIONS(2716), + [anon_sym_LT_LT_PIPE] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_unreachable] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [sym_sink] = ACTIONS(2716), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [sym_multiline_string] = ACTIONS(2714), + [sym_character] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(3094)] = { + [sym_identifier] = ACTIONS(6018), + [anon_sym_func] = ACTIONS(6018), + [anon_sym_c_func] = ACTIONS(6018), + [anon_sym_BANG] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_struct] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACE] = ACTIONS(6016), + [anon_sym_COMMA] = ACTIONS(6016), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6018), + [anon_sym_DOLLAR] = ACTIONS(6016), + [anon_sym_PIPE] = ACTIONS(6018), + [anon_sym_struct_type_BANG] = ACTIONS(6016), + [anon_sym_QMARK] = ACTIONS(6016), + [anon_sym_AT] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6018), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_void] = ACTIONS(6018), + [anon_sym_noreturn] = ACTIONS(6018), + [anon_sym_type] = ACTIONS(6018), + [anon_sym_anyopaque] = ACTIONS(6018), + [anon_sym_bool] = ACTIONS(6018), + [anon_sym_int] = ACTIONS(6018), + [anon_sym_uint] = ACTIONS(6018), + [anon_sym_float] = ACTIONS(6018), + [anon_sym_range] = ACTIONS(6018), + [anon_sym_i8] = ACTIONS(6018), + [anon_sym_i16] = ACTIONS(6018), + [anon_sym_i32] = ACTIONS(6018), + [anon_sym_i64] = ACTIONS(6018), + [anon_sym_u8] = ACTIONS(6018), + [anon_sym_u16] = ACTIONS(6018), + [anon_sym_u32] = ACTIONS(6018), + [anon_sym_u64] = ACTIONS(6018), + [anon_sym_isize] = ACTIONS(6018), + [anon_sym_usize] = ACTIONS(6018), + [anon_sym_f32] = ACTIONS(6018), + [anon_sym_f64] = ACTIONS(6018), + [anon_sym_c_char] = ACTIONS(6018), + [anon_sym_c_schar] = ACTIONS(6018), + [anon_sym_c_uchar] = ACTIONS(6018), + [anon_sym_c_short] = ACTIONS(6018), + [anon_sym_c_ushort] = ACTIONS(6018), + [anon_sym_c_int] = ACTIONS(6018), + [anon_sym_c_uint] = ACTIONS(6018), + [anon_sym_c_long] = ACTIONS(6018), + [anon_sym_c_ulong] = ACTIONS(6018), + [anon_sym_c_longlong] = ACTIONS(6018), + [anon_sym_c_ulonglong] = ACTIONS(6018), + [anon_sym_c_float] = ACTIONS(6018), + [anon_sym_c_double] = ACTIONS(6018), + [anon_sym_c_longdouble] = ACTIONS(6018), + [anon_sym_PLUS_EQ] = ACTIONS(6016), + [anon_sym_DASH_EQ] = ACTIONS(6016), + [anon_sym_STAR_EQ] = ACTIONS(6016), + [anon_sym_SLASH_EQ] = ACTIONS(6016), + [anon_sym_AMP_EQ] = ACTIONS(6016), + [anon_sym_PIPE_EQ] = ACTIONS(6016), + [anon_sym_xor_EQ] = ACTIONS(6016), + [anon_sym_LT_LT_EQ] = ACTIONS(6016), + [anon_sym_GT_GT_EQ] = ACTIONS(6016), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6016), + [anon_sym_return] = ACTIONS(6018), + [anon_sym_yield] = ACTIONS(6018), + [anon_sym_break] = ACTIONS(6018), + [anon_sym_continue] = ACTIONS(6018), + [anon_sym_defer] = ACTIONS(6018), + [anon_sym_errdefer] = ACTIONS(6018), + [anon_sym_if] = ACTIONS(6018), + [anon_sym_else] = ACTIONS(6018), + [anon_sym_while] = ACTIONS(6018), + [anon_sym_expand] = ACTIONS(6018), + [anon_sym_for] = ACTIONS(6018), + [anon_sym_match] = ACTIONS(6018), + [anon_sym_DOT_DOT] = ACTIONS(6018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6016), + [anon_sym_orelse] = ACTIONS(6018), + [anon_sym_or] = ACTIONS(6018), + [anon_sym_and] = ACTIONS(6018), + [anon_sym_EQ_EQ] = ACTIONS(6016), + [anon_sym_BANG_EQ] = ACTIONS(6016), + [anon_sym_LT] = ACTIONS(6018), + [anon_sym_LT_EQ] = ACTIONS(6016), + [anon_sym_GT] = ACTIONS(6018), + [anon_sym_GT_EQ] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6018), + [anon_sym_xor] = ACTIONS(6018), + [anon_sym_LT_LT] = ACTIONS(6018), + [anon_sym_GT_GT] = ACTIONS(6018), + [anon_sym_LT_LT_PIPE] = ACTIONS(6018), + [anon_sym_PLUS] = ACTIONS(6018), + [anon_sym_SLASH] = ACTIONS(6018), + [anon_sym_catch] = ACTIONS(6018), + [anon_sym_TILDE] = ACTIONS(6016), + [anon_sym_try] = ACTIONS(6018), + [anon_sym_DOT] = ACTIONS(6018), + [anon_sym_CARET] = ACTIONS(6016), + [anon_sym_true] = ACTIONS(6018), + [anon_sym_false] = ACTIONS(6018), + [anon_sym_null] = ACTIONS(6018), + [anon_sym_unreachable] = ACTIONS(6018), + [anon_sym_undefined] = ACTIONS(6018), + [sym_sink] = ACTIONS(6018), + [sym_integer] = ACTIONS(6018), + [sym_float] = ACTIONS(6016), + [anon_sym_DQUOTE] = ACTIONS(6016), + [sym_multiline_string] = ACTIONS(6016), + [sym_character] = ACTIONS(6016), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6016), + }, + [STATE(3095)] = { + [sym_identifier] = ACTIONS(6022), + [anon_sym_func] = ACTIONS(6022), + [anon_sym_c_func] = ACTIONS(6022), + [anon_sym_BANG] = ACTIONS(6022), + [anon_sym_EQ] = ACTIONS(6022), + [anon_sym_struct] = ACTIONS(6022), + [anon_sym_LPAREN] = ACTIONS(6020), + [anon_sym_LBRACE] = ACTIONS(6020), + [anon_sym_COMMA] = ACTIONS(6020), + [anon_sym_RBRACE] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6022), + [anon_sym_DOLLAR] = ACTIONS(6020), + [anon_sym_PIPE] = ACTIONS(6022), + [anon_sym_struct_type_BANG] = ACTIONS(6020), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_AT] = ACTIONS(6020), + [anon_sym_STAR] = ACTIONS(6022), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_void] = ACTIONS(6022), + [anon_sym_noreturn] = ACTIONS(6022), + [anon_sym_type] = ACTIONS(6022), + [anon_sym_anyopaque] = ACTIONS(6022), + [anon_sym_bool] = ACTIONS(6022), + [anon_sym_int] = ACTIONS(6022), + [anon_sym_uint] = ACTIONS(6022), + [anon_sym_float] = ACTIONS(6022), + [anon_sym_range] = ACTIONS(6022), + [anon_sym_i8] = ACTIONS(6022), + [anon_sym_i16] = ACTIONS(6022), + [anon_sym_i32] = ACTIONS(6022), + [anon_sym_i64] = ACTIONS(6022), + [anon_sym_u8] = ACTIONS(6022), + [anon_sym_u16] = ACTIONS(6022), + [anon_sym_u32] = ACTIONS(6022), + [anon_sym_u64] = ACTIONS(6022), + [anon_sym_isize] = ACTIONS(6022), + [anon_sym_usize] = ACTIONS(6022), + [anon_sym_f32] = ACTIONS(6022), + [anon_sym_f64] = ACTIONS(6022), + [anon_sym_c_char] = ACTIONS(6022), + [anon_sym_c_schar] = ACTIONS(6022), + [anon_sym_c_uchar] = ACTIONS(6022), + [anon_sym_c_short] = ACTIONS(6022), + [anon_sym_c_ushort] = ACTIONS(6022), + [anon_sym_c_int] = ACTIONS(6022), + [anon_sym_c_uint] = ACTIONS(6022), + [anon_sym_c_long] = ACTIONS(6022), + [anon_sym_c_ulong] = ACTIONS(6022), + [anon_sym_c_longlong] = ACTIONS(6022), + [anon_sym_c_ulonglong] = ACTIONS(6022), + [anon_sym_c_float] = ACTIONS(6022), + [anon_sym_c_double] = ACTIONS(6022), + [anon_sym_c_longdouble] = ACTIONS(6022), + [anon_sym_PLUS_EQ] = ACTIONS(6020), + [anon_sym_DASH_EQ] = ACTIONS(6020), + [anon_sym_STAR_EQ] = ACTIONS(6020), + [anon_sym_SLASH_EQ] = ACTIONS(6020), + [anon_sym_AMP_EQ] = ACTIONS(6020), + [anon_sym_PIPE_EQ] = ACTIONS(6020), + [anon_sym_xor_EQ] = ACTIONS(6020), + [anon_sym_LT_LT_EQ] = ACTIONS(6020), + [anon_sym_GT_GT_EQ] = ACTIONS(6020), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6020), + [anon_sym_return] = ACTIONS(6022), + [anon_sym_yield] = ACTIONS(6022), + [anon_sym_break] = ACTIONS(6022), + [anon_sym_continue] = ACTIONS(6022), + [anon_sym_defer] = ACTIONS(6022), + [anon_sym_errdefer] = ACTIONS(6022), + [anon_sym_if] = ACTIONS(6022), + [anon_sym_else] = ACTIONS(6022), + [anon_sym_while] = ACTIONS(6022), + [anon_sym_expand] = ACTIONS(6022), + [anon_sym_for] = ACTIONS(6022), + [anon_sym_match] = ACTIONS(6022), + [anon_sym_DOT_DOT] = ACTIONS(6022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6020), + [anon_sym_orelse] = ACTIONS(6022), + [anon_sym_or] = ACTIONS(6022), + [anon_sym_and] = ACTIONS(6022), + [anon_sym_EQ_EQ] = ACTIONS(6020), + [anon_sym_BANG_EQ] = ACTIONS(6020), + [anon_sym_LT] = ACTIONS(6022), + [anon_sym_LT_EQ] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6022), + [anon_sym_GT_EQ] = ACTIONS(6020), + [anon_sym_AMP] = ACTIONS(6022), + [anon_sym_xor] = ACTIONS(6022), + [anon_sym_LT_LT] = ACTIONS(6022), + [anon_sym_GT_GT] = ACTIONS(6022), + [anon_sym_LT_LT_PIPE] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(6022), + [anon_sym_SLASH] = ACTIONS(6022), + [anon_sym_catch] = ACTIONS(6022), + [anon_sym_TILDE] = ACTIONS(6020), + [anon_sym_try] = ACTIONS(6022), + [anon_sym_DOT] = ACTIONS(6022), + [anon_sym_CARET] = ACTIONS(6020), + [anon_sym_true] = ACTIONS(6022), + [anon_sym_false] = ACTIONS(6022), + [anon_sym_null] = ACTIONS(6022), + [anon_sym_unreachable] = ACTIONS(6022), + [anon_sym_undefined] = ACTIONS(6022), + [sym_sink] = ACTIONS(6022), + [sym_integer] = ACTIONS(6022), + [sym_float] = ACTIONS(6020), + [anon_sym_DQUOTE] = ACTIONS(6020), + [sym_multiline_string] = ACTIONS(6020), + [sym_character] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6020), + }, + [STATE(3096)] = { + [sym_identifier] = ACTIONS(6042), + [anon_sym_func] = ACTIONS(6042), + [anon_sym_c_func] = ACTIONS(6042), + [anon_sym_BANG] = ACTIONS(6042), + [anon_sym_EQ] = ACTIONS(6042), + [anon_sym_struct] = ACTIONS(6042), + [anon_sym_LPAREN] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(6040), + [anon_sym_COMMA] = ACTIONS(6040), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_DASH] = ACTIONS(6042), + [anon_sym_DOLLAR] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(6042), + [anon_sym_struct_type_BANG] = ACTIONS(6040), + [anon_sym_QMARK] = ACTIONS(6040), + [anon_sym_AT] = ACTIONS(6040), + [anon_sym_STAR] = ACTIONS(6042), + [anon_sym_LBRACK] = ACTIONS(6040), + [anon_sym_void] = ACTIONS(6042), + [anon_sym_noreturn] = ACTIONS(6042), + [anon_sym_type] = ACTIONS(6042), + [anon_sym_anyopaque] = ACTIONS(6042), + [anon_sym_bool] = ACTIONS(6042), + [anon_sym_int] = ACTIONS(6042), + [anon_sym_uint] = ACTIONS(6042), + [anon_sym_float] = ACTIONS(6042), + [anon_sym_range] = ACTIONS(6042), + [anon_sym_i8] = ACTIONS(6042), + [anon_sym_i16] = ACTIONS(6042), + [anon_sym_i32] = ACTIONS(6042), + [anon_sym_i64] = ACTIONS(6042), + [anon_sym_u8] = ACTIONS(6042), + [anon_sym_u16] = ACTIONS(6042), + [anon_sym_u32] = ACTIONS(6042), + [anon_sym_u64] = ACTIONS(6042), + [anon_sym_isize] = ACTIONS(6042), + [anon_sym_usize] = ACTIONS(6042), + [anon_sym_f32] = ACTIONS(6042), + [anon_sym_f64] = ACTIONS(6042), + [anon_sym_c_char] = ACTIONS(6042), + [anon_sym_c_schar] = ACTIONS(6042), + [anon_sym_c_uchar] = ACTIONS(6042), + [anon_sym_c_short] = ACTIONS(6042), + [anon_sym_c_ushort] = ACTIONS(6042), + [anon_sym_c_int] = ACTIONS(6042), + [anon_sym_c_uint] = ACTIONS(6042), + [anon_sym_c_long] = ACTIONS(6042), + [anon_sym_c_ulong] = ACTIONS(6042), + [anon_sym_c_longlong] = ACTIONS(6042), + [anon_sym_c_ulonglong] = ACTIONS(6042), + [anon_sym_c_float] = ACTIONS(6042), + [anon_sym_c_double] = ACTIONS(6042), + [anon_sym_c_longdouble] = ACTIONS(6042), + [anon_sym_PLUS_EQ] = ACTIONS(6040), + [anon_sym_DASH_EQ] = ACTIONS(6040), + [anon_sym_STAR_EQ] = ACTIONS(6040), + [anon_sym_SLASH_EQ] = ACTIONS(6040), + [anon_sym_AMP_EQ] = ACTIONS(6040), + [anon_sym_PIPE_EQ] = ACTIONS(6040), + [anon_sym_xor_EQ] = ACTIONS(6040), + [anon_sym_LT_LT_EQ] = ACTIONS(6040), + [anon_sym_GT_GT_EQ] = ACTIONS(6040), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6040), + [anon_sym_return] = ACTIONS(6042), + [anon_sym_yield] = ACTIONS(6042), + [anon_sym_break] = ACTIONS(6042), + [anon_sym_continue] = ACTIONS(6042), + [anon_sym_defer] = ACTIONS(6042), + [anon_sym_errdefer] = ACTIONS(6042), + [anon_sym_if] = ACTIONS(6042), + [anon_sym_else] = ACTIONS(6042), + [anon_sym_while] = ACTIONS(6042), + [anon_sym_expand] = ACTIONS(6042), + [anon_sym_for] = ACTIONS(6042), + [anon_sym_match] = ACTIONS(6042), + [anon_sym_DOT_DOT] = ACTIONS(6042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6040), + [anon_sym_orelse] = ACTIONS(6042), + [anon_sym_or] = ACTIONS(6042), + [anon_sym_and] = ACTIONS(6042), + [anon_sym_EQ_EQ] = ACTIONS(6040), + [anon_sym_BANG_EQ] = ACTIONS(6040), + [anon_sym_LT] = ACTIONS(6042), + [anon_sym_LT_EQ] = ACTIONS(6040), + [anon_sym_GT] = ACTIONS(6042), + [anon_sym_GT_EQ] = ACTIONS(6040), + [anon_sym_AMP] = ACTIONS(6042), + [anon_sym_xor] = ACTIONS(6042), + [anon_sym_LT_LT] = ACTIONS(6042), + [anon_sym_GT_GT] = ACTIONS(6042), + [anon_sym_LT_LT_PIPE] = ACTIONS(6042), + [anon_sym_PLUS] = ACTIONS(6042), + [anon_sym_SLASH] = ACTIONS(6042), + [anon_sym_catch] = ACTIONS(6042), + [anon_sym_TILDE] = ACTIONS(6040), + [anon_sym_try] = ACTIONS(6042), + [anon_sym_DOT] = ACTIONS(6042), + [anon_sym_CARET] = ACTIONS(6040), + [anon_sym_true] = ACTIONS(6042), + [anon_sym_false] = ACTIONS(6042), + [anon_sym_null] = ACTIONS(6042), + [anon_sym_unreachable] = ACTIONS(6042), + [anon_sym_undefined] = ACTIONS(6042), + [sym_sink] = ACTIONS(6042), + [sym_integer] = ACTIONS(6042), + [sym_float] = ACTIONS(6040), + [anon_sym_DQUOTE] = ACTIONS(6040), + [sym_multiline_string] = ACTIONS(6040), + [sym_character] = ACTIONS(6040), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6040), + }, + [STATE(3097)] = { + [sym_identifier] = ACTIONS(5936), + [anon_sym_func] = ACTIONS(5936), + [anon_sym_c_func] = ACTIONS(5936), + [anon_sym_BANG] = ACTIONS(5936), + [anon_sym_EQ] = ACTIONS(5936), + [anon_sym_struct] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5934), + [anon_sym_LBRACE] = ACTIONS(5934), + [anon_sym_COMMA] = ACTIONS(5934), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_DASH] = ACTIONS(5936), + [anon_sym_DOLLAR] = ACTIONS(5934), + [anon_sym_PIPE] = ACTIONS(5936), + [anon_sym_struct_type_BANG] = ACTIONS(5934), + [anon_sym_QMARK] = ACTIONS(5934), + [anon_sym_AT] = ACTIONS(5934), + [anon_sym_STAR] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5934), + [anon_sym_void] = ACTIONS(5936), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_type] = ACTIONS(5936), + [anon_sym_anyopaque] = ACTIONS(5936), + [anon_sym_bool] = ACTIONS(5936), + [anon_sym_int] = ACTIONS(5936), + [anon_sym_uint] = ACTIONS(5936), + [anon_sym_float] = ACTIONS(5936), + [anon_sym_range] = ACTIONS(5936), + [anon_sym_i8] = ACTIONS(5936), + [anon_sym_i16] = ACTIONS(5936), + [anon_sym_i32] = ACTIONS(5936), + [anon_sym_i64] = ACTIONS(5936), + [anon_sym_u8] = ACTIONS(5936), + [anon_sym_u16] = ACTIONS(5936), + [anon_sym_u32] = ACTIONS(5936), + [anon_sym_u64] = ACTIONS(5936), + [anon_sym_isize] = ACTIONS(5936), + [anon_sym_usize] = ACTIONS(5936), + [anon_sym_f32] = ACTIONS(5936), + [anon_sym_f64] = ACTIONS(5936), + [anon_sym_c_char] = ACTIONS(5936), + [anon_sym_c_schar] = ACTIONS(5936), + [anon_sym_c_uchar] = ACTIONS(5936), + [anon_sym_c_short] = ACTIONS(5936), + [anon_sym_c_ushort] = ACTIONS(5936), + [anon_sym_c_int] = ACTIONS(5936), + [anon_sym_c_uint] = ACTIONS(5936), + [anon_sym_c_long] = ACTIONS(5936), + [anon_sym_c_ulong] = ACTIONS(5936), + [anon_sym_c_longlong] = ACTIONS(5936), + [anon_sym_c_ulonglong] = ACTIONS(5936), + [anon_sym_c_float] = ACTIONS(5936), + [anon_sym_c_double] = ACTIONS(5936), + [anon_sym_c_longdouble] = ACTIONS(5936), + [anon_sym_PLUS_EQ] = ACTIONS(5934), + [anon_sym_DASH_EQ] = ACTIONS(5934), + [anon_sym_STAR_EQ] = ACTIONS(5934), + [anon_sym_SLASH_EQ] = ACTIONS(5934), + [anon_sym_AMP_EQ] = ACTIONS(5934), + [anon_sym_PIPE_EQ] = ACTIONS(5934), + [anon_sym_xor_EQ] = ACTIONS(5934), + [anon_sym_LT_LT_EQ] = ACTIONS(5934), + [anon_sym_GT_GT_EQ] = ACTIONS(5934), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5934), + [anon_sym_return] = ACTIONS(5936), + [anon_sym_yield] = ACTIONS(5936), + [anon_sym_break] = ACTIONS(5936), + [anon_sym_continue] = ACTIONS(5936), + [anon_sym_defer] = ACTIONS(5936), + [anon_sym_errdefer] = ACTIONS(5936), + [anon_sym_if] = ACTIONS(5936), + [anon_sym_else] = ACTIONS(5936), + [anon_sym_while] = ACTIONS(5936), + [anon_sym_expand] = ACTIONS(5936), + [anon_sym_for] = ACTIONS(5936), + [anon_sym_match] = ACTIONS(5936), + [anon_sym_DOT_DOT] = ACTIONS(5936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5934), + [anon_sym_orelse] = ACTIONS(5936), + [anon_sym_or] = ACTIONS(5936), + [anon_sym_and] = ACTIONS(5936), + [anon_sym_EQ_EQ] = ACTIONS(5934), + [anon_sym_BANG_EQ] = ACTIONS(5934), + [anon_sym_LT] = ACTIONS(5936), + [anon_sym_LT_EQ] = ACTIONS(5934), + [anon_sym_GT] = ACTIONS(5936), + [anon_sym_GT_EQ] = ACTIONS(5934), + [anon_sym_AMP] = ACTIONS(5936), + [anon_sym_xor] = ACTIONS(5936), + [anon_sym_LT_LT] = ACTIONS(5936), + [anon_sym_GT_GT] = ACTIONS(5936), + [anon_sym_LT_LT_PIPE] = ACTIONS(5936), + [anon_sym_PLUS] = ACTIONS(5936), + [anon_sym_SLASH] = ACTIONS(5936), + [anon_sym_catch] = ACTIONS(5936), + [anon_sym_TILDE] = ACTIONS(5934), + [anon_sym_try] = ACTIONS(5936), + [anon_sym_DOT] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5934), + [anon_sym_true] = ACTIONS(5936), + [anon_sym_false] = ACTIONS(5936), + [anon_sym_null] = ACTIONS(5936), + [anon_sym_unreachable] = ACTIONS(5936), + [anon_sym_undefined] = ACTIONS(5936), + [sym_sink] = ACTIONS(5936), + [sym_integer] = ACTIONS(5936), + [sym_float] = ACTIONS(5934), + [anon_sym_DQUOTE] = ACTIONS(5934), + [sym_multiline_string] = ACTIONS(5934), + [sym_character] = ACTIONS(5934), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5934), + }, + [STATE(3098)] = { + [sym_identifier] = ACTIONS(5940), + [anon_sym_func] = ACTIONS(5940), + [anon_sym_c_func] = ACTIONS(5940), + [anon_sym_BANG] = ACTIONS(5940), + [anon_sym_EQ] = ACTIONS(5940), + [anon_sym_struct] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5938), + [anon_sym_LBRACE] = ACTIONS(5938), + [anon_sym_COMMA] = ACTIONS(5938), + [anon_sym_RBRACE] = ACTIONS(5938), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5938), + [anon_sym_PIPE] = ACTIONS(5940), + [anon_sym_struct_type_BANG] = ACTIONS(5938), + [anon_sym_QMARK] = ACTIONS(5938), + [anon_sym_AT] = ACTIONS(5938), + [anon_sym_STAR] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5938), + [anon_sym_void] = ACTIONS(5940), + [anon_sym_noreturn] = ACTIONS(5940), + [anon_sym_type] = ACTIONS(5940), + [anon_sym_anyopaque] = ACTIONS(5940), + [anon_sym_bool] = ACTIONS(5940), + [anon_sym_int] = ACTIONS(5940), + [anon_sym_uint] = ACTIONS(5940), + [anon_sym_float] = ACTIONS(5940), + [anon_sym_range] = ACTIONS(5940), + [anon_sym_i8] = ACTIONS(5940), + [anon_sym_i16] = ACTIONS(5940), + [anon_sym_i32] = ACTIONS(5940), + [anon_sym_i64] = ACTIONS(5940), + [anon_sym_u8] = ACTIONS(5940), + [anon_sym_u16] = ACTIONS(5940), + [anon_sym_u32] = ACTIONS(5940), + [anon_sym_u64] = ACTIONS(5940), + [anon_sym_isize] = ACTIONS(5940), + [anon_sym_usize] = ACTIONS(5940), + [anon_sym_f32] = ACTIONS(5940), + [anon_sym_f64] = ACTIONS(5940), + [anon_sym_c_char] = ACTIONS(5940), + [anon_sym_c_schar] = ACTIONS(5940), + [anon_sym_c_uchar] = ACTIONS(5940), + [anon_sym_c_short] = ACTIONS(5940), + [anon_sym_c_ushort] = ACTIONS(5940), + [anon_sym_c_int] = ACTIONS(5940), + [anon_sym_c_uint] = ACTIONS(5940), + [anon_sym_c_long] = ACTIONS(5940), + [anon_sym_c_ulong] = ACTIONS(5940), + [anon_sym_c_longlong] = ACTIONS(5940), + [anon_sym_c_ulonglong] = ACTIONS(5940), + [anon_sym_c_float] = ACTIONS(5940), + [anon_sym_c_double] = ACTIONS(5940), + [anon_sym_c_longdouble] = ACTIONS(5940), + [anon_sym_PLUS_EQ] = ACTIONS(5938), + [anon_sym_DASH_EQ] = ACTIONS(5938), + [anon_sym_STAR_EQ] = ACTIONS(5938), + [anon_sym_SLASH_EQ] = ACTIONS(5938), + [anon_sym_AMP_EQ] = ACTIONS(5938), + [anon_sym_PIPE_EQ] = ACTIONS(5938), + [anon_sym_xor_EQ] = ACTIONS(5938), + [anon_sym_LT_LT_EQ] = ACTIONS(5938), + [anon_sym_GT_GT_EQ] = ACTIONS(5938), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5938), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_yield] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_defer] = ACTIONS(5940), + [anon_sym_errdefer] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_else] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_expand] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5938), + [anon_sym_orelse] = ACTIONS(5940), + [anon_sym_or] = ACTIONS(5940), + [anon_sym_and] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5938), + [anon_sym_BANG_EQ] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(5940), + [anon_sym_LT_EQ] = ACTIONS(5938), + [anon_sym_GT] = ACTIONS(5940), + [anon_sym_GT_EQ] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5940), + [anon_sym_xor] = ACTIONS(5940), + [anon_sym_LT_LT] = ACTIONS(5940), + [anon_sym_GT_GT] = ACTIONS(5940), + [anon_sym_LT_LT_PIPE] = ACTIONS(5940), + [anon_sym_PLUS] = ACTIONS(5940), + [anon_sym_SLASH] = ACTIONS(5940), + [anon_sym_catch] = ACTIONS(5940), + [anon_sym_TILDE] = ACTIONS(5938), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_DOT] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5938), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_unreachable] = ACTIONS(5940), + [anon_sym_undefined] = ACTIONS(5940), + [sym_sink] = ACTIONS(5940), + [sym_integer] = ACTIONS(5940), + [sym_float] = ACTIONS(5938), + [anon_sym_DQUOTE] = ACTIONS(5938), + [sym_multiline_string] = ACTIONS(5938), + [sym_character] = ACTIONS(5938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5938), + }, + [STATE(3099)] = { + [sym_identifier] = ACTIONS(4926), + [anon_sym_func] = ACTIONS(4926), + [anon_sym_c_func] = ACTIONS(4926), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_struct] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_struct_type_BANG] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_void] = ACTIONS(4926), + [anon_sym_noreturn] = ACTIONS(4926), + [anon_sym_type] = ACTIONS(4926), + [anon_sym_anyopaque] = ACTIONS(4926), + [anon_sym_bool] = ACTIONS(4926), + [anon_sym_int] = ACTIONS(4926), + [anon_sym_uint] = ACTIONS(4926), + [anon_sym_float] = ACTIONS(4926), + [anon_sym_range] = ACTIONS(4926), + [anon_sym_i8] = ACTIONS(4926), + [anon_sym_i16] = ACTIONS(4926), + [anon_sym_i32] = ACTIONS(4926), + [anon_sym_i64] = ACTIONS(4926), + [anon_sym_u8] = ACTIONS(4926), + [anon_sym_u16] = ACTIONS(4926), + [anon_sym_u32] = ACTIONS(4926), + [anon_sym_u64] = ACTIONS(4926), + [anon_sym_isize] = ACTIONS(4926), + [anon_sym_usize] = ACTIONS(4926), + [anon_sym_f32] = ACTIONS(4926), + [anon_sym_f64] = ACTIONS(4926), + [anon_sym_c_char] = ACTIONS(4926), + [anon_sym_c_schar] = ACTIONS(4926), + [anon_sym_c_uchar] = ACTIONS(4926), + [anon_sym_c_short] = ACTIONS(4926), + [anon_sym_c_ushort] = ACTIONS(4926), + [anon_sym_c_int] = ACTIONS(4926), + [anon_sym_c_uint] = ACTIONS(4926), + [anon_sym_c_long] = ACTIONS(4926), + [anon_sym_c_ulong] = ACTIONS(4926), + [anon_sym_c_longlong] = ACTIONS(4926), + [anon_sym_c_ulonglong] = ACTIONS(4926), + [anon_sym_c_float] = ACTIONS(4926), + [anon_sym_c_double] = ACTIONS(4926), + [anon_sym_c_longdouble] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_AMP_EQ] = ACTIONS(4924), + [anon_sym_PIPE_EQ] = ACTIONS(4924), + [anon_sym_xor_EQ] = ACTIONS(4924), + [anon_sym_LT_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_GT_EQ] = ACTIONS(4924), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4924), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_yield] = ACTIONS(4926), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_continue] = ACTIONS(4926), + [anon_sym_defer] = ACTIONS(4926), + [anon_sym_errdefer] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_while] = ACTIONS(4926), + [anon_sym_expand] = ACTIONS(4926), + [anon_sym_for] = ACTIONS(4926), + [anon_sym_match] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4924), + [anon_sym_orelse] = ACTIONS(4926), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_and] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_xor] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4926), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_LT_LT_PIPE] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_catch] = ACTIONS(4926), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_unreachable] = ACTIONS(4926), + [anon_sym_undefined] = ACTIONS(4926), + [sym_sink] = ACTIONS(4926), + [sym_integer] = ACTIONS(4926), + [sym_float] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [sym_multiline_string] = ACTIONS(4924), + [sym_character] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4924), + }, + [STATE(3100)] = { + [sym_identifier] = ACTIONS(5944), + [anon_sym_func] = ACTIONS(5944), + [anon_sym_c_func] = ACTIONS(5944), + [anon_sym_BANG] = ACTIONS(5944), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_struct] = ACTIONS(5944), + [anon_sym_LPAREN] = ACTIONS(5942), + [anon_sym_LBRACE] = ACTIONS(5942), + [anon_sym_COMMA] = ACTIONS(5942), + [anon_sym_RBRACE] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5944), + [anon_sym_DOLLAR] = ACTIONS(5942), + [anon_sym_PIPE] = ACTIONS(5944), + [anon_sym_struct_type_BANG] = ACTIONS(5942), + [anon_sym_QMARK] = ACTIONS(5942), + [anon_sym_AT] = ACTIONS(5942), + [anon_sym_STAR] = ACTIONS(5944), + [anon_sym_LBRACK] = ACTIONS(5942), + [anon_sym_void] = ACTIONS(5944), + [anon_sym_noreturn] = ACTIONS(5944), + [anon_sym_type] = ACTIONS(5944), + [anon_sym_anyopaque] = ACTIONS(5944), + [anon_sym_bool] = ACTIONS(5944), + [anon_sym_int] = ACTIONS(5944), + [anon_sym_uint] = ACTIONS(5944), + [anon_sym_float] = ACTIONS(5944), + [anon_sym_range] = ACTIONS(5944), + [anon_sym_i8] = ACTIONS(5944), + [anon_sym_i16] = ACTIONS(5944), + [anon_sym_i32] = ACTIONS(5944), + [anon_sym_i64] = ACTIONS(5944), + [anon_sym_u8] = ACTIONS(5944), + [anon_sym_u16] = ACTIONS(5944), + [anon_sym_u32] = ACTIONS(5944), + [anon_sym_u64] = ACTIONS(5944), + [anon_sym_isize] = ACTIONS(5944), + [anon_sym_usize] = ACTIONS(5944), + [anon_sym_f32] = ACTIONS(5944), + [anon_sym_f64] = ACTIONS(5944), + [anon_sym_c_char] = ACTIONS(5944), + [anon_sym_c_schar] = ACTIONS(5944), + [anon_sym_c_uchar] = ACTIONS(5944), + [anon_sym_c_short] = ACTIONS(5944), + [anon_sym_c_ushort] = ACTIONS(5944), + [anon_sym_c_int] = ACTIONS(5944), + [anon_sym_c_uint] = ACTIONS(5944), + [anon_sym_c_long] = ACTIONS(5944), + [anon_sym_c_ulong] = ACTIONS(5944), + [anon_sym_c_longlong] = ACTIONS(5944), + [anon_sym_c_ulonglong] = ACTIONS(5944), + [anon_sym_c_float] = ACTIONS(5944), + [anon_sym_c_double] = ACTIONS(5944), + [anon_sym_c_longdouble] = ACTIONS(5944), + [anon_sym_PLUS_EQ] = ACTIONS(5942), + [anon_sym_DASH_EQ] = ACTIONS(5942), + [anon_sym_STAR_EQ] = ACTIONS(5942), + [anon_sym_SLASH_EQ] = ACTIONS(5942), + [anon_sym_AMP_EQ] = ACTIONS(5942), + [anon_sym_PIPE_EQ] = ACTIONS(5942), + [anon_sym_xor_EQ] = ACTIONS(5942), + [anon_sym_LT_LT_EQ] = ACTIONS(5942), + [anon_sym_GT_GT_EQ] = ACTIONS(5942), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5942), + [anon_sym_return] = ACTIONS(5944), + [anon_sym_yield] = ACTIONS(5944), + [anon_sym_break] = ACTIONS(5944), + [anon_sym_continue] = ACTIONS(5944), + [anon_sym_defer] = ACTIONS(5944), + [anon_sym_errdefer] = ACTIONS(5944), + [anon_sym_if] = ACTIONS(5944), + [anon_sym_else] = ACTIONS(5944), + [anon_sym_while] = ACTIONS(5944), + [anon_sym_expand] = ACTIONS(5944), + [anon_sym_for] = ACTIONS(5944), + [anon_sym_match] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5942), + [anon_sym_orelse] = ACTIONS(5944), + [anon_sym_or] = ACTIONS(5944), + [anon_sym_and] = ACTIONS(5944), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_LT] = ACTIONS(5944), + [anon_sym_LT_EQ] = ACTIONS(5942), + [anon_sym_GT] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5942), + [anon_sym_AMP] = ACTIONS(5944), + [anon_sym_xor] = ACTIONS(5944), + [anon_sym_LT_LT] = ACTIONS(5944), + [anon_sym_GT_GT] = ACTIONS(5944), + [anon_sym_LT_LT_PIPE] = ACTIONS(5944), + [anon_sym_PLUS] = ACTIONS(5944), + [anon_sym_SLASH] = ACTIONS(5944), + [anon_sym_catch] = ACTIONS(5944), + [anon_sym_TILDE] = ACTIONS(5942), + [anon_sym_try] = ACTIONS(5944), + [anon_sym_DOT] = ACTIONS(5944), + [anon_sym_CARET] = ACTIONS(5942), + [anon_sym_true] = ACTIONS(5944), + [anon_sym_false] = ACTIONS(5944), + [anon_sym_null] = ACTIONS(5944), + [anon_sym_unreachable] = ACTIONS(5944), + [anon_sym_undefined] = ACTIONS(5944), + [sym_sink] = ACTIONS(5944), + [sym_integer] = ACTIONS(5944), + [sym_float] = ACTIONS(5942), + [anon_sym_DQUOTE] = ACTIONS(5942), + [sym_multiline_string] = ACTIONS(5942), + [sym_character] = ACTIONS(5942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5942), + }, + [STATE(3101)] = { + [sym_identifier] = ACTIONS(5948), + [anon_sym_func] = ACTIONS(5948), + [anon_sym_c_func] = ACTIONS(5948), + [anon_sym_BANG] = ACTIONS(5948), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_struct] = ACTIONS(5948), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_COMMA] = ACTIONS(5946), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5948), + [anon_sym_DOLLAR] = ACTIONS(5946), + [anon_sym_PIPE] = ACTIONS(5948), + [anon_sym_struct_type_BANG] = ACTIONS(5946), + [anon_sym_QMARK] = ACTIONS(5946), + [anon_sym_AT] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_void] = ACTIONS(5948), + [anon_sym_noreturn] = ACTIONS(5948), + [anon_sym_type] = ACTIONS(5948), + [anon_sym_anyopaque] = ACTIONS(5948), + [anon_sym_bool] = ACTIONS(5948), + [anon_sym_int] = ACTIONS(5948), + [anon_sym_uint] = ACTIONS(5948), + [anon_sym_float] = ACTIONS(5948), + [anon_sym_range] = ACTIONS(5948), + [anon_sym_i8] = ACTIONS(5948), + [anon_sym_i16] = ACTIONS(5948), + [anon_sym_i32] = ACTIONS(5948), + [anon_sym_i64] = ACTIONS(5948), + [anon_sym_u8] = ACTIONS(5948), + [anon_sym_u16] = ACTIONS(5948), + [anon_sym_u32] = ACTIONS(5948), + [anon_sym_u64] = ACTIONS(5948), + [anon_sym_isize] = ACTIONS(5948), + [anon_sym_usize] = ACTIONS(5948), + [anon_sym_f32] = ACTIONS(5948), + [anon_sym_f64] = ACTIONS(5948), + [anon_sym_c_char] = ACTIONS(5948), + [anon_sym_c_schar] = ACTIONS(5948), + [anon_sym_c_uchar] = ACTIONS(5948), + [anon_sym_c_short] = ACTIONS(5948), + [anon_sym_c_ushort] = ACTIONS(5948), + [anon_sym_c_int] = ACTIONS(5948), + [anon_sym_c_uint] = ACTIONS(5948), + [anon_sym_c_long] = ACTIONS(5948), + [anon_sym_c_ulong] = ACTIONS(5948), + [anon_sym_c_longlong] = ACTIONS(5948), + [anon_sym_c_ulonglong] = ACTIONS(5948), + [anon_sym_c_float] = ACTIONS(5948), + [anon_sym_c_double] = ACTIONS(5948), + [anon_sym_c_longdouble] = ACTIONS(5948), + [anon_sym_PLUS_EQ] = ACTIONS(5946), + [anon_sym_DASH_EQ] = ACTIONS(5946), + [anon_sym_STAR_EQ] = ACTIONS(5946), + [anon_sym_SLASH_EQ] = ACTIONS(5946), + [anon_sym_AMP_EQ] = ACTIONS(5946), + [anon_sym_PIPE_EQ] = ACTIONS(5946), + [anon_sym_xor_EQ] = ACTIONS(5946), + [anon_sym_LT_LT_EQ] = ACTIONS(5946), + [anon_sym_GT_GT_EQ] = ACTIONS(5946), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5946), + [anon_sym_return] = ACTIONS(5948), + [anon_sym_yield] = ACTIONS(5948), + [anon_sym_break] = ACTIONS(5948), + [anon_sym_continue] = ACTIONS(5948), + [anon_sym_defer] = ACTIONS(5948), + [anon_sym_errdefer] = ACTIONS(5948), + [anon_sym_if] = ACTIONS(5948), + [anon_sym_else] = ACTIONS(5948), + [anon_sym_while] = ACTIONS(5948), + [anon_sym_expand] = ACTIONS(5948), + [anon_sym_for] = ACTIONS(5948), + [anon_sym_match] = ACTIONS(5948), + [anon_sym_DOT_DOT] = ACTIONS(5948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_orelse] = ACTIONS(5948), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5946), + [anon_sym_BANG_EQ] = ACTIONS(5946), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_EQ] = ACTIONS(5946), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5946), + [anon_sym_AMP] = ACTIONS(5948), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT_PIPE] = ACTIONS(5948), + [anon_sym_PLUS] = ACTIONS(5948), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_catch] = ACTIONS(5948), + [anon_sym_TILDE] = ACTIONS(5946), + [anon_sym_try] = ACTIONS(5948), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5946), + [anon_sym_true] = ACTIONS(5948), + [anon_sym_false] = ACTIONS(5948), + [anon_sym_null] = ACTIONS(5948), + [anon_sym_unreachable] = ACTIONS(5948), + [anon_sym_undefined] = ACTIONS(5948), + [sym_sink] = ACTIONS(5948), + [sym_integer] = ACTIONS(5948), + [sym_float] = ACTIONS(5946), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym_multiline_string] = ACTIONS(5946), + [sym_character] = ACTIONS(5946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5946), + }, + [STATE(3102)] = { + [sym_identifier] = ACTIONS(5782), + [anon_sym_func] = ACTIONS(5782), + [anon_sym_c_func] = ACTIONS(5782), + [anon_sym_BANG] = ACTIONS(5782), + [anon_sym_EQ] = ACTIONS(5782), + [anon_sym_struct] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5782), + [anon_sym_DOLLAR] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5782), + [anon_sym_struct_type_BANG] = ACTIONS(5778), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_AT] = ACTIONS(5778), + [anon_sym_STAR] = ACTIONS(5782), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_void] = ACTIONS(5782), + [anon_sym_noreturn] = ACTIONS(5782), + [anon_sym_type] = ACTIONS(5782), + [anon_sym_anyopaque] = ACTIONS(5782), + [anon_sym_bool] = ACTIONS(5782), + [anon_sym_int] = ACTIONS(5782), + [anon_sym_uint] = ACTIONS(5782), + [anon_sym_float] = ACTIONS(5782), + [anon_sym_range] = ACTIONS(5782), + [anon_sym_i8] = ACTIONS(5782), + [anon_sym_i16] = ACTIONS(5782), + [anon_sym_i32] = ACTIONS(5782), + [anon_sym_i64] = ACTIONS(5782), + [anon_sym_u8] = ACTIONS(5782), + [anon_sym_u16] = ACTIONS(5782), + [anon_sym_u32] = ACTIONS(5782), + [anon_sym_u64] = ACTIONS(5782), + [anon_sym_isize] = ACTIONS(5782), + [anon_sym_usize] = ACTIONS(5782), + [anon_sym_f32] = ACTIONS(5782), + [anon_sym_f64] = ACTIONS(5782), + [anon_sym_c_char] = ACTIONS(5782), + [anon_sym_c_schar] = ACTIONS(5782), + [anon_sym_c_uchar] = ACTIONS(5782), + [anon_sym_c_short] = ACTIONS(5782), + [anon_sym_c_ushort] = ACTIONS(5782), + [anon_sym_c_int] = ACTIONS(5782), + [anon_sym_c_uint] = ACTIONS(5782), + [anon_sym_c_long] = ACTIONS(5782), + [anon_sym_c_ulong] = ACTIONS(5782), + [anon_sym_c_longlong] = ACTIONS(5782), + [anon_sym_c_ulonglong] = ACTIONS(5782), + [anon_sym_c_float] = ACTIONS(5782), + [anon_sym_c_double] = ACTIONS(5782), + [anon_sym_c_longdouble] = ACTIONS(5782), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5778), + [anon_sym_xor_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5778), + [anon_sym_return] = ACTIONS(5782), + [anon_sym_yield] = ACTIONS(5782), + [anon_sym_break] = ACTIONS(5782), + [anon_sym_continue] = ACTIONS(5782), + [anon_sym_defer] = ACTIONS(5782), + [anon_sym_errdefer] = ACTIONS(5782), + [anon_sym_if] = ACTIONS(5782), + [anon_sym_else] = ACTIONS(5782), + [anon_sym_while] = ACTIONS(5782), + [anon_sym_expand] = ACTIONS(5782), + [anon_sym_for] = ACTIONS(5782), + [anon_sym_match] = ACTIONS(5782), + [anon_sym_DOT_DOT] = ACTIONS(5782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5778), + [anon_sym_orelse] = ACTIONS(5782), + [anon_sym_or] = ACTIONS(5782), + [anon_sym_and] = ACTIONS(5782), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_LT] = ACTIONS(5782), + [anon_sym_LT_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5782), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5782), + [anon_sym_xor] = ACTIONS(5782), + [anon_sym_LT_LT] = ACTIONS(5782), + [anon_sym_GT_GT] = ACTIONS(5782), + [anon_sym_LT_LT_PIPE] = ACTIONS(5782), + [anon_sym_PLUS] = ACTIONS(5782), + [anon_sym_SLASH] = ACTIONS(5782), + [anon_sym_catch] = ACTIONS(5782), + [anon_sym_TILDE] = ACTIONS(5778), + [anon_sym_try] = ACTIONS(5782), + [anon_sym_DOT] = ACTIONS(5782), + [anon_sym_CARET] = ACTIONS(5778), + [anon_sym_true] = ACTIONS(5782), + [anon_sym_false] = ACTIONS(5782), + [anon_sym_null] = ACTIONS(5782), + [anon_sym_unreachable] = ACTIONS(5782), + [anon_sym_undefined] = ACTIONS(5782), + [sym_sink] = ACTIONS(5782), + [sym_integer] = ACTIONS(5782), + [sym_float] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(5778), + [sym_multiline_string] = ACTIONS(5778), + [sym_character] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5778), + }, + [STATE(3103)] = { + [sym_identifier] = ACTIONS(5952), + [anon_sym_func] = ACTIONS(5952), + [anon_sym_c_func] = ACTIONS(5952), + [anon_sym_BANG] = ACTIONS(5952), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_struct] = ACTIONS(5952), + [anon_sym_LPAREN] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(5950), + [anon_sym_COMMA] = ACTIONS(5950), + [anon_sym_RBRACE] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5952), + [anon_sym_DOLLAR] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5952), + [anon_sym_struct_type_BANG] = ACTIONS(5950), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_AT] = ACTIONS(5950), + [anon_sym_STAR] = ACTIONS(5952), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_void] = ACTIONS(5952), + [anon_sym_noreturn] = ACTIONS(5952), + [anon_sym_type] = ACTIONS(5952), + [anon_sym_anyopaque] = ACTIONS(5952), + [anon_sym_bool] = ACTIONS(5952), + [anon_sym_int] = ACTIONS(5952), + [anon_sym_uint] = ACTIONS(5952), + [anon_sym_float] = ACTIONS(5952), + [anon_sym_range] = ACTIONS(5952), + [anon_sym_i8] = ACTIONS(5952), + [anon_sym_i16] = ACTIONS(5952), + [anon_sym_i32] = ACTIONS(5952), + [anon_sym_i64] = ACTIONS(5952), + [anon_sym_u8] = ACTIONS(5952), + [anon_sym_u16] = ACTIONS(5952), + [anon_sym_u32] = ACTIONS(5952), + [anon_sym_u64] = ACTIONS(5952), + [anon_sym_isize] = ACTIONS(5952), + [anon_sym_usize] = ACTIONS(5952), + [anon_sym_f32] = ACTIONS(5952), + [anon_sym_f64] = ACTIONS(5952), + [anon_sym_c_char] = ACTIONS(5952), + [anon_sym_c_schar] = ACTIONS(5952), + [anon_sym_c_uchar] = ACTIONS(5952), + [anon_sym_c_short] = ACTIONS(5952), + [anon_sym_c_ushort] = ACTIONS(5952), + [anon_sym_c_int] = ACTIONS(5952), + [anon_sym_c_uint] = ACTIONS(5952), + [anon_sym_c_long] = ACTIONS(5952), + [anon_sym_c_ulong] = ACTIONS(5952), + [anon_sym_c_longlong] = ACTIONS(5952), + [anon_sym_c_ulonglong] = ACTIONS(5952), + [anon_sym_c_float] = ACTIONS(5952), + [anon_sym_c_double] = ACTIONS(5952), + [anon_sym_c_longdouble] = ACTIONS(5952), + [anon_sym_PLUS_EQ] = ACTIONS(5950), + [anon_sym_DASH_EQ] = ACTIONS(5950), + [anon_sym_STAR_EQ] = ACTIONS(5950), + [anon_sym_SLASH_EQ] = ACTIONS(5950), + [anon_sym_AMP_EQ] = ACTIONS(5950), + [anon_sym_PIPE_EQ] = ACTIONS(5950), + [anon_sym_xor_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_EQ] = ACTIONS(5950), + [anon_sym_GT_GT_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5950), + [anon_sym_return] = ACTIONS(5952), + [anon_sym_yield] = ACTIONS(5952), + [anon_sym_break] = ACTIONS(5952), + [anon_sym_continue] = ACTIONS(5952), + [anon_sym_defer] = ACTIONS(5952), + [anon_sym_errdefer] = ACTIONS(5952), + [anon_sym_if] = ACTIONS(5952), + [anon_sym_else] = ACTIONS(5952), + [anon_sym_while] = ACTIONS(5952), + [anon_sym_expand] = ACTIONS(5952), + [anon_sym_for] = ACTIONS(5952), + [anon_sym_match] = ACTIONS(5952), + [anon_sym_DOT_DOT] = ACTIONS(5952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5950), + [anon_sym_orelse] = ACTIONS(5952), + [anon_sym_or] = ACTIONS(5952), + [anon_sym_and] = ACTIONS(5952), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_LT] = ACTIONS(5952), + [anon_sym_LT_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5952), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP] = ACTIONS(5952), + [anon_sym_xor] = ACTIONS(5952), + [anon_sym_LT_LT] = ACTIONS(5952), + [anon_sym_GT_GT] = ACTIONS(5952), + [anon_sym_LT_LT_PIPE] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5952), + [anon_sym_SLASH] = ACTIONS(5952), + [anon_sym_catch] = ACTIONS(5952), + [anon_sym_TILDE] = ACTIONS(5950), + [anon_sym_try] = ACTIONS(5952), + [anon_sym_DOT] = ACTIONS(5952), + [anon_sym_CARET] = ACTIONS(5950), + [anon_sym_true] = ACTIONS(5952), + [anon_sym_false] = ACTIONS(5952), + [anon_sym_null] = ACTIONS(5952), + [anon_sym_unreachable] = ACTIONS(5952), + [anon_sym_undefined] = ACTIONS(5952), + [sym_sink] = ACTIONS(5952), + [sym_integer] = ACTIONS(5952), + [sym_float] = ACTIONS(5950), + [anon_sym_DQUOTE] = ACTIONS(5950), + [sym_multiline_string] = ACTIONS(5950), + [sym_character] = ACTIONS(5950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5950), + }, + [STATE(3104)] = { + [sym_identifier] = ACTIONS(6056), + [anon_sym_func] = ACTIONS(6056), + [anon_sym_c_func] = ACTIONS(6056), + [anon_sym_BANG] = ACTIONS(6056), + [anon_sym_EQ] = ACTIONS(6056), + [anon_sym_struct] = ACTIONS(6056), + [anon_sym_LPAREN] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(6054), + [anon_sym_COMMA] = ACTIONS(6054), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6056), + [anon_sym_DOLLAR] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6056), + [anon_sym_struct_type_BANG] = ACTIONS(6054), + [anon_sym_QMARK] = ACTIONS(6054), + [anon_sym_AT] = ACTIONS(6054), + [anon_sym_STAR] = ACTIONS(6056), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_void] = ACTIONS(6056), + [anon_sym_noreturn] = ACTIONS(6056), + [anon_sym_type] = ACTIONS(6056), + [anon_sym_anyopaque] = ACTIONS(6056), + [anon_sym_bool] = ACTIONS(6056), + [anon_sym_int] = ACTIONS(6056), + [anon_sym_uint] = ACTIONS(6056), + [anon_sym_float] = ACTIONS(6056), + [anon_sym_range] = ACTIONS(6056), + [anon_sym_i8] = ACTIONS(6056), + [anon_sym_i16] = ACTIONS(6056), + [anon_sym_i32] = ACTIONS(6056), + [anon_sym_i64] = ACTIONS(6056), + [anon_sym_u8] = ACTIONS(6056), + [anon_sym_u16] = ACTIONS(6056), + [anon_sym_u32] = ACTIONS(6056), + [anon_sym_u64] = ACTIONS(6056), + [anon_sym_isize] = ACTIONS(6056), + [anon_sym_usize] = ACTIONS(6056), + [anon_sym_f32] = ACTIONS(6056), + [anon_sym_f64] = ACTIONS(6056), + [anon_sym_c_char] = ACTIONS(6056), + [anon_sym_c_schar] = ACTIONS(6056), + [anon_sym_c_uchar] = ACTIONS(6056), + [anon_sym_c_short] = ACTIONS(6056), + [anon_sym_c_ushort] = ACTIONS(6056), + [anon_sym_c_int] = ACTIONS(6056), + [anon_sym_c_uint] = ACTIONS(6056), + [anon_sym_c_long] = ACTIONS(6056), + [anon_sym_c_ulong] = ACTIONS(6056), + [anon_sym_c_longlong] = ACTIONS(6056), + [anon_sym_c_ulonglong] = ACTIONS(6056), + [anon_sym_c_float] = ACTIONS(6056), + [anon_sym_c_double] = ACTIONS(6056), + [anon_sym_c_longdouble] = ACTIONS(6056), + [anon_sym_PLUS_EQ] = ACTIONS(6054), + [anon_sym_DASH_EQ] = ACTIONS(6054), + [anon_sym_STAR_EQ] = ACTIONS(6054), + [anon_sym_SLASH_EQ] = ACTIONS(6054), + [anon_sym_AMP_EQ] = ACTIONS(6054), + [anon_sym_PIPE_EQ] = ACTIONS(6054), + [anon_sym_xor_EQ] = ACTIONS(6054), + [anon_sym_LT_LT_EQ] = ACTIONS(6054), + [anon_sym_GT_GT_EQ] = ACTIONS(6054), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6054), + [anon_sym_return] = ACTIONS(6056), + [anon_sym_yield] = ACTIONS(6056), + [anon_sym_break] = ACTIONS(6056), + [anon_sym_continue] = ACTIONS(6056), + [anon_sym_defer] = ACTIONS(6056), + [anon_sym_errdefer] = ACTIONS(6056), + [anon_sym_if] = ACTIONS(6056), + [anon_sym_else] = ACTIONS(6056), + [anon_sym_while] = ACTIONS(6056), + [anon_sym_expand] = ACTIONS(6056), + [anon_sym_for] = ACTIONS(6056), + [anon_sym_match] = ACTIONS(6056), + [anon_sym_DOT_DOT] = ACTIONS(6056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6054), + [anon_sym_orelse] = ACTIONS(6056), + [anon_sym_or] = ACTIONS(6056), + [anon_sym_and] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6054), + [anon_sym_BANG_EQ] = ACTIONS(6054), + [anon_sym_LT] = ACTIONS(6056), + [anon_sym_LT_EQ] = ACTIONS(6054), + [anon_sym_GT] = ACTIONS(6056), + [anon_sym_GT_EQ] = ACTIONS(6054), + [anon_sym_AMP] = ACTIONS(6056), + [anon_sym_xor] = ACTIONS(6056), + [anon_sym_LT_LT] = ACTIONS(6056), + [anon_sym_GT_GT] = ACTIONS(6056), + [anon_sym_LT_LT_PIPE] = ACTIONS(6056), + [anon_sym_PLUS] = ACTIONS(6056), + [anon_sym_SLASH] = ACTIONS(6056), + [anon_sym_catch] = ACTIONS(6056), + [anon_sym_TILDE] = ACTIONS(6054), + [anon_sym_try] = ACTIONS(6056), + [anon_sym_DOT] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6054), + [anon_sym_true] = ACTIONS(6056), + [anon_sym_false] = ACTIONS(6056), + [anon_sym_null] = ACTIONS(6056), + [anon_sym_unreachable] = ACTIONS(6056), + [anon_sym_undefined] = ACTIONS(6056), + [sym_sink] = ACTIONS(6056), + [sym_integer] = ACTIONS(6056), + [sym_float] = ACTIONS(6054), + [anon_sym_DQUOTE] = ACTIONS(6054), + [sym_multiline_string] = ACTIONS(6054), + [sym_character] = ACTIONS(6054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6054), + }, + [STATE(3105)] = { + [sym_identifier] = ACTIONS(6060), + [anon_sym_func] = ACTIONS(6060), + [anon_sym_c_func] = ACTIONS(6060), + [anon_sym_BANG] = ACTIONS(6060), + [anon_sym_EQ] = ACTIONS(6060), + [anon_sym_struct] = ACTIONS(6060), + [anon_sym_LPAREN] = ACTIONS(6058), + [anon_sym_LBRACE] = ACTIONS(6058), + [anon_sym_COMMA] = ACTIONS(6058), + [anon_sym_RBRACE] = ACTIONS(6058), + [anon_sym_DASH] = ACTIONS(6060), + [anon_sym_DOLLAR] = ACTIONS(6058), + [anon_sym_PIPE] = ACTIONS(6060), + [anon_sym_struct_type_BANG] = ACTIONS(6058), + [anon_sym_QMARK] = ACTIONS(6058), + [anon_sym_AT] = ACTIONS(6058), + [anon_sym_STAR] = ACTIONS(6060), + [anon_sym_LBRACK] = ACTIONS(6058), + [anon_sym_void] = ACTIONS(6060), + [anon_sym_noreturn] = ACTIONS(6060), + [anon_sym_type] = ACTIONS(6060), + [anon_sym_anyopaque] = ACTIONS(6060), + [anon_sym_bool] = ACTIONS(6060), + [anon_sym_int] = ACTIONS(6060), + [anon_sym_uint] = ACTIONS(6060), + [anon_sym_float] = ACTIONS(6060), + [anon_sym_range] = ACTIONS(6060), + [anon_sym_i8] = ACTIONS(6060), + [anon_sym_i16] = ACTIONS(6060), + [anon_sym_i32] = ACTIONS(6060), + [anon_sym_i64] = ACTIONS(6060), + [anon_sym_u8] = ACTIONS(6060), + [anon_sym_u16] = ACTIONS(6060), + [anon_sym_u32] = ACTIONS(6060), + [anon_sym_u64] = ACTIONS(6060), + [anon_sym_isize] = ACTIONS(6060), + [anon_sym_usize] = ACTIONS(6060), + [anon_sym_f32] = ACTIONS(6060), + [anon_sym_f64] = ACTIONS(6060), + [anon_sym_c_char] = ACTIONS(6060), + [anon_sym_c_schar] = ACTIONS(6060), + [anon_sym_c_uchar] = ACTIONS(6060), + [anon_sym_c_short] = ACTIONS(6060), + [anon_sym_c_ushort] = ACTIONS(6060), + [anon_sym_c_int] = ACTIONS(6060), + [anon_sym_c_uint] = ACTIONS(6060), + [anon_sym_c_long] = ACTIONS(6060), + [anon_sym_c_ulong] = ACTIONS(6060), + [anon_sym_c_longlong] = ACTIONS(6060), + [anon_sym_c_ulonglong] = ACTIONS(6060), + [anon_sym_c_float] = ACTIONS(6060), + [anon_sym_c_double] = ACTIONS(6060), + [anon_sym_c_longdouble] = ACTIONS(6060), + [anon_sym_PLUS_EQ] = ACTIONS(6058), + [anon_sym_DASH_EQ] = ACTIONS(6058), + [anon_sym_STAR_EQ] = ACTIONS(6058), + [anon_sym_SLASH_EQ] = ACTIONS(6058), + [anon_sym_AMP_EQ] = ACTIONS(6058), + [anon_sym_PIPE_EQ] = ACTIONS(6058), + [anon_sym_xor_EQ] = ACTIONS(6058), + [anon_sym_LT_LT_EQ] = ACTIONS(6058), + [anon_sym_GT_GT_EQ] = ACTIONS(6058), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6058), + [anon_sym_return] = ACTIONS(6060), + [anon_sym_yield] = ACTIONS(6060), + [anon_sym_break] = ACTIONS(6060), + [anon_sym_continue] = ACTIONS(6060), + [anon_sym_defer] = ACTIONS(6060), + [anon_sym_errdefer] = ACTIONS(6060), + [anon_sym_if] = ACTIONS(6060), + [anon_sym_else] = ACTIONS(6060), + [anon_sym_while] = ACTIONS(6060), + [anon_sym_expand] = ACTIONS(6060), + [anon_sym_for] = ACTIONS(6060), + [anon_sym_match] = ACTIONS(6060), + [anon_sym_DOT_DOT] = ACTIONS(6060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6058), + [anon_sym_orelse] = ACTIONS(6060), + [anon_sym_or] = ACTIONS(6060), + [anon_sym_and] = ACTIONS(6060), + [anon_sym_EQ_EQ] = ACTIONS(6058), + [anon_sym_BANG_EQ] = ACTIONS(6058), + [anon_sym_LT] = ACTIONS(6060), + [anon_sym_LT_EQ] = ACTIONS(6058), + [anon_sym_GT] = ACTIONS(6060), + [anon_sym_GT_EQ] = ACTIONS(6058), + [anon_sym_AMP] = ACTIONS(6060), + [anon_sym_xor] = ACTIONS(6060), + [anon_sym_LT_LT] = ACTIONS(6060), + [anon_sym_GT_GT] = ACTIONS(6060), + [anon_sym_LT_LT_PIPE] = ACTIONS(6060), + [anon_sym_PLUS] = ACTIONS(6060), + [anon_sym_SLASH] = ACTIONS(6060), + [anon_sym_catch] = ACTIONS(6060), + [anon_sym_TILDE] = ACTIONS(6058), + [anon_sym_try] = ACTIONS(6060), + [anon_sym_DOT] = ACTIONS(6060), + [anon_sym_CARET] = ACTIONS(6058), + [anon_sym_true] = ACTIONS(6060), + [anon_sym_false] = ACTIONS(6060), + [anon_sym_null] = ACTIONS(6060), + [anon_sym_unreachable] = ACTIONS(6060), + [anon_sym_undefined] = ACTIONS(6060), + [sym_sink] = ACTIONS(6060), + [sym_integer] = ACTIONS(6060), + [sym_float] = ACTIONS(6058), + [anon_sym_DQUOTE] = ACTIONS(6058), + [sym_multiline_string] = ACTIONS(6058), + [sym_character] = ACTIONS(6058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6058), + }, + [STATE(3106)] = { + [sym_identifier] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(1196), + [anon_sym_c_func] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_struct_type_BANG] = ACTIONS(1192), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_anyopaque] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_int] = ACTIONS(1196), + [anon_sym_uint] = ACTIONS(1196), + [anon_sym_float] = ACTIONS(1196), + [anon_sym_range] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_c_char] = ACTIONS(1196), + [anon_sym_c_schar] = ACTIONS(1196), + [anon_sym_c_uchar] = ACTIONS(1196), + [anon_sym_c_short] = ACTIONS(1196), + [anon_sym_c_ushort] = ACTIONS(1196), + [anon_sym_c_int] = ACTIONS(1196), + [anon_sym_c_uint] = ACTIONS(1196), + [anon_sym_c_long] = ACTIONS(1196), + [anon_sym_c_ulong] = ACTIONS(1196), + [anon_sym_c_longlong] = ACTIONS(1196), + [anon_sym_c_ulonglong] = ACTIONS(1196), + [anon_sym_c_float] = ACTIONS(1196), + [anon_sym_c_double] = ACTIONS(1196), + [anon_sym_c_longdouble] = ACTIONS(1196), + [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(1196), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_defer] = ACTIONS(1196), + [anon_sym_errdefer] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_expand] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_unreachable] = ACTIONS(1196), + [anon_sym_undefined] = ACTIONS(1196), + [sym_sink] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [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(3107)] = { + [sym_identifier] = ACTIONS(4930), + [anon_sym_func] = ACTIONS(4930), + [anon_sym_c_func] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_struct] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4930), + [anon_sym_struct_type_BANG] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_void] = ACTIONS(4930), + [anon_sym_noreturn] = ACTIONS(4930), + [anon_sym_type] = ACTIONS(4930), + [anon_sym_anyopaque] = ACTIONS(4930), + [anon_sym_bool] = ACTIONS(4930), + [anon_sym_int] = ACTIONS(4930), + [anon_sym_uint] = ACTIONS(4930), + [anon_sym_float] = ACTIONS(4930), + [anon_sym_range] = ACTIONS(4930), + [anon_sym_i8] = ACTIONS(4930), + [anon_sym_i16] = ACTIONS(4930), + [anon_sym_i32] = ACTIONS(4930), + [anon_sym_i64] = ACTIONS(4930), + [anon_sym_u8] = ACTIONS(4930), + [anon_sym_u16] = ACTIONS(4930), + [anon_sym_u32] = ACTIONS(4930), + [anon_sym_u64] = ACTIONS(4930), + [anon_sym_isize] = ACTIONS(4930), + [anon_sym_usize] = ACTIONS(4930), + [anon_sym_f32] = ACTIONS(4930), + [anon_sym_f64] = ACTIONS(4930), + [anon_sym_c_char] = ACTIONS(4930), + [anon_sym_c_schar] = ACTIONS(4930), + [anon_sym_c_uchar] = ACTIONS(4930), + [anon_sym_c_short] = ACTIONS(4930), + [anon_sym_c_ushort] = ACTIONS(4930), + [anon_sym_c_int] = ACTIONS(4930), + [anon_sym_c_uint] = ACTIONS(4930), + [anon_sym_c_long] = ACTIONS(4930), + [anon_sym_c_ulong] = ACTIONS(4930), + [anon_sym_c_longlong] = ACTIONS(4930), + [anon_sym_c_ulonglong] = ACTIONS(4930), + [anon_sym_c_float] = ACTIONS(4930), + [anon_sym_c_double] = ACTIONS(4930), + [anon_sym_c_longdouble] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_AMP_EQ] = ACTIONS(4928), + [anon_sym_PIPE_EQ] = ACTIONS(4928), + [anon_sym_xor_EQ] = ACTIONS(4928), + [anon_sym_LT_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_GT_EQ] = ACTIONS(4928), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4928), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_yield] = ACTIONS(4930), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_defer] = ACTIONS(4930), + [anon_sym_errdefer] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_expand] = ACTIONS(4930), + [anon_sym_for] = ACTIONS(4930), + [anon_sym_match] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), + [anon_sym_orelse] = ACTIONS(4930), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_and] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_xor] = ACTIONS(4930), + [anon_sym_LT_LT] = ACTIONS(4930), + [anon_sym_GT_GT] = ACTIONS(4930), + [anon_sym_LT_LT_PIPE] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_catch] = ACTIONS(4930), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_unreachable] = ACTIONS(4930), + [anon_sym_undefined] = ACTIONS(4930), + [sym_sink] = ACTIONS(4930), + [sym_integer] = ACTIONS(4930), + [sym_float] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [sym_multiline_string] = ACTIONS(4928), + [sym_character] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4928), + }, + [STATE(3108)] = { + [sym_identifier] = ACTIONS(5414), + [anon_sym_func] = ACTIONS(5414), + [anon_sym_c_func] = ACTIONS(5414), + [anon_sym_BANG] = ACTIONS(5414), + [anon_sym_EQ] = ACTIONS(5414), + [anon_sym_struct] = ACTIONS(5414), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_LBRACE] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(5412), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5414), + [anon_sym_DOLLAR] = ACTIONS(5412), + [anon_sym_PIPE] = ACTIONS(5414), + [anon_sym_struct_type_BANG] = ACTIONS(5412), + [anon_sym_QMARK] = ACTIONS(5412), + [anon_sym_AT] = ACTIONS(5412), + [anon_sym_STAR] = ACTIONS(5414), + [anon_sym_LBRACK] = ACTIONS(5412), + [anon_sym_void] = ACTIONS(5414), + [anon_sym_noreturn] = ACTIONS(5414), + [anon_sym_type] = ACTIONS(5414), + [anon_sym_anyopaque] = ACTIONS(5414), + [anon_sym_bool] = ACTIONS(5414), + [anon_sym_int] = ACTIONS(5414), + [anon_sym_uint] = ACTIONS(5414), + [anon_sym_float] = ACTIONS(5414), + [anon_sym_range] = ACTIONS(5414), + [anon_sym_i8] = ACTIONS(5414), + [anon_sym_i16] = ACTIONS(5414), + [anon_sym_i32] = ACTIONS(5414), + [anon_sym_i64] = ACTIONS(5414), + [anon_sym_u8] = ACTIONS(5414), + [anon_sym_u16] = ACTIONS(5414), + [anon_sym_u32] = ACTIONS(5414), + [anon_sym_u64] = ACTIONS(5414), + [anon_sym_isize] = ACTIONS(5414), + [anon_sym_usize] = ACTIONS(5414), + [anon_sym_f32] = ACTIONS(5414), + [anon_sym_f64] = ACTIONS(5414), + [anon_sym_c_char] = ACTIONS(5414), + [anon_sym_c_schar] = ACTIONS(5414), + [anon_sym_c_uchar] = ACTIONS(5414), + [anon_sym_c_short] = ACTIONS(5414), + [anon_sym_c_ushort] = ACTIONS(5414), + [anon_sym_c_int] = ACTIONS(5414), + [anon_sym_c_uint] = ACTIONS(5414), + [anon_sym_c_long] = ACTIONS(5414), + [anon_sym_c_ulong] = ACTIONS(5414), + [anon_sym_c_longlong] = ACTIONS(5414), + [anon_sym_c_ulonglong] = ACTIONS(5414), + [anon_sym_c_float] = ACTIONS(5414), + [anon_sym_c_double] = ACTIONS(5414), + [anon_sym_c_longdouble] = ACTIONS(5414), + [anon_sym_PLUS_EQ] = ACTIONS(5412), + [anon_sym_DASH_EQ] = ACTIONS(5412), + [anon_sym_STAR_EQ] = ACTIONS(5412), + [anon_sym_SLASH_EQ] = ACTIONS(5412), + [anon_sym_AMP_EQ] = ACTIONS(5412), + [anon_sym_PIPE_EQ] = ACTIONS(5412), + [anon_sym_xor_EQ] = ACTIONS(5412), + [anon_sym_LT_LT_EQ] = ACTIONS(5412), + [anon_sym_GT_GT_EQ] = ACTIONS(5412), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5412), + [anon_sym_return] = ACTIONS(5414), + [anon_sym_yield] = ACTIONS(5414), + [anon_sym_break] = ACTIONS(5414), + [anon_sym_continue] = ACTIONS(5414), + [anon_sym_defer] = ACTIONS(5414), + [anon_sym_errdefer] = ACTIONS(5414), + [anon_sym_if] = ACTIONS(5414), + [anon_sym_else] = ACTIONS(5414), + [anon_sym_while] = ACTIONS(5414), + [anon_sym_expand] = ACTIONS(5414), + [anon_sym_for] = ACTIONS(5414), + [anon_sym_match] = ACTIONS(5414), + [anon_sym_DOT_DOT] = ACTIONS(5414), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5412), + [anon_sym_orelse] = ACTIONS(5414), + [anon_sym_or] = ACTIONS(5414), + [anon_sym_and] = ACTIONS(5414), + [anon_sym_EQ_EQ] = ACTIONS(5412), + [anon_sym_BANG_EQ] = ACTIONS(5412), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_LT_EQ] = ACTIONS(5412), + [anon_sym_GT] = ACTIONS(5414), + [anon_sym_GT_EQ] = ACTIONS(5412), + [anon_sym_AMP] = ACTIONS(5414), + [anon_sym_xor] = ACTIONS(5414), + [anon_sym_LT_LT] = ACTIONS(5414), + [anon_sym_GT_GT] = ACTIONS(5414), + [anon_sym_LT_LT_PIPE] = ACTIONS(5414), + [anon_sym_PLUS] = ACTIONS(5414), + [anon_sym_SLASH] = ACTIONS(5414), + [anon_sym_catch] = ACTIONS(5414), + [anon_sym_TILDE] = ACTIONS(5412), + [anon_sym_try] = ACTIONS(5414), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_CARET] = ACTIONS(5412), + [anon_sym_true] = ACTIONS(5414), + [anon_sym_false] = ACTIONS(5414), + [anon_sym_null] = ACTIONS(5414), + [anon_sym_unreachable] = ACTIONS(5414), + [anon_sym_undefined] = ACTIONS(5414), + [sym_sink] = ACTIONS(5414), + [sym_integer] = ACTIONS(5414), + [sym_float] = ACTIONS(5412), + [anon_sym_DQUOTE] = ACTIONS(5412), + [sym_multiline_string] = ACTIONS(5412), + [sym_character] = ACTIONS(5412), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5412), + }, + [STATE(3109)] = { + [sym_identifier] = ACTIONS(4934), + [anon_sym_func] = ACTIONS(4934), + [anon_sym_c_func] = ACTIONS(4934), + [anon_sym_BANG] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_struct] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_struct_type_BANG] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_void] = ACTIONS(4934), + [anon_sym_noreturn] = ACTIONS(4934), + [anon_sym_type] = ACTIONS(4934), + [anon_sym_anyopaque] = ACTIONS(4934), + [anon_sym_bool] = ACTIONS(4934), + [anon_sym_int] = ACTIONS(4934), + [anon_sym_uint] = ACTIONS(4934), + [anon_sym_float] = ACTIONS(4934), + [anon_sym_range] = ACTIONS(4934), + [anon_sym_i8] = ACTIONS(4934), + [anon_sym_i16] = ACTIONS(4934), + [anon_sym_i32] = ACTIONS(4934), + [anon_sym_i64] = ACTIONS(4934), + [anon_sym_u8] = ACTIONS(4934), + [anon_sym_u16] = ACTIONS(4934), + [anon_sym_u32] = ACTIONS(4934), + [anon_sym_u64] = ACTIONS(4934), + [anon_sym_isize] = ACTIONS(4934), + [anon_sym_usize] = ACTIONS(4934), + [anon_sym_f32] = ACTIONS(4934), + [anon_sym_f64] = ACTIONS(4934), + [anon_sym_c_char] = ACTIONS(4934), + [anon_sym_c_schar] = ACTIONS(4934), + [anon_sym_c_uchar] = ACTIONS(4934), + [anon_sym_c_short] = ACTIONS(4934), + [anon_sym_c_ushort] = ACTIONS(4934), + [anon_sym_c_int] = ACTIONS(4934), + [anon_sym_c_uint] = ACTIONS(4934), + [anon_sym_c_long] = ACTIONS(4934), + [anon_sym_c_ulong] = ACTIONS(4934), + [anon_sym_c_longlong] = ACTIONS(4934), + [anon_sym_c_ulonglong] = ACTIONS(4934), + [anon_sym_c_float] = ACTIONS(4934), + [anon_sym_c_double] = ACTIONS(4934), + [anon_sym_c_longdouble] = ACTIONS(4934), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_AMP_EQ] = ACTIONS(4932), + [anon_sym_PIPE_EQ] = ACTIONS(4932), + [anon_sym_xor_EQ] = ACTIONS(4932), + [anon_sym_LT_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_GT_EQ] = ACTIONS(4932), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4932), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_yield] = ACTIONS(4934), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_continue] = ACTIONS(4934), + [anon_sym_defer] = ACTIONS(4934), + [anon_sym_errdefer] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_while] = ACTIONS(4934), + [anon_sym_expand] = ACTIONS(4934), + [anon_sym_for] = ACTIONS(4934), + [anon_sym_match] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), + [anon_sym_orelse] = ACTIONS(4934), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym_LT_LT_PIPE] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_catch] = ACTIONS(4934), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4934), + [anon_sym_false] = ACTIONS(4934), + [anon_sym_null] = ACTIONS(4934), + [anon_sym_unreachable] = ACTIONS(4934), + [anon_sym_undefined] = ACTIONS(4934), + [sym_sink] = ACTIONS(4934), + [sym_integer] = ACTIONS(4934), + [sym_float] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [sym_multiline_string] = ACTIONS(4932), + [sym_character] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4932), + }, + [STATE(3110)] = { + [sym_identifier] = ACTIONS(4940), + [anon_sym_func] = ACTIONS(4940), + [anon_sym_c_func] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_struct] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_struct_type_BANG] = ACTIONS(4938), + [anon_sym_QMARK] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_void] = ACTIONS(4940), + [anon_sym_noreturn] = ACTIONS(4940), + [anon_sym_type] = ACTIONS(4940), + [anon_sym_anyopaque] = ACTIONS(4940), + [anon_sym_bool] = ACTIONS(4940), + [anon_sym_int] = ACTIONS(4940), + [anon_sym_uint] = ACTIONS(4940), + [anon_sym_float] = ACTIONS(4940), + [anon_sym_range] = ACTIONS(4940), + [anon_sym_i8] = ACTIONS(4940), + [anon_sym_i16] = ACTIONS(4940), + [anon_sym_i32] = ACTIONS(4940), + [anon_sym_i64] = ACTIONS(4940), + [anon_sym_u8] = ACTIONS(4940), + [anon_sym_u16] = ACTIONS(4940), + [anon_sym_u32] = ACTIONS(4940), + [anon_sym_u64] = ACTIONS(4940), + [anon_sym_isize] = ACTIONS(4940), + [anon_sym_usize] = ACTIONS(4940), + [anon_sym_f32] = ACTIONS(4940), + [anon_sym_f64] = ACTIONS(4940), + [anon_sym_c_char] = ACTIONS(4940), + [anon_sym_c_schar] = ACTIONS(4940), + [anon_sym_c_uchar] = ACTIONS(4940), + [anon_sym_c_short] = ACTIONS(4940), + [anon_sym_c_ushort] = ACTIONS(4940), + [anon_sym_c_int] = ACTIONS(4940), + [anon_sym_c_uint] = ACTIONS(4940), + [anon_sym_c_long] = ACTIONS(4940), + [anon_sym_c_ulong] = ACTIONS(4940), + [anon_sym_c_longlong] = ACTIONS(4940), + [anon_sym_c_ulonglong] = ACTIONS(4940), + [anon_sym_c_float] = ACTIONS(4940), + [anon_sym_c_double] = ACTIONS(4940), + [anon_sym_c_longdouble] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_AMP_EQ] = ACTIONS(4938), + [anon_sym_PIPE_EQ] = ACTIONS(4938), + [anon_sym_xor_EQ] = ACTIONS(4938), + [anon_sym_LT_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_GT_EQ] = ACTIONS(4938), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4938), + [anon_sym_return] = ACTIONS(4940), + [anon_sym_yield] = ACTIONS(4940), + [anon_sym_break] = ACTIONS(4940), + [anon_sym_continue] = ACTIONS(4940), + [anon_sym_defer] = ACTIONS(4940), + [anon_sym_errdefer] = ACTIONS(4940), + [anon_sym_if] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_while] = ACTIONS(4940), + [anon_sym_expand] = ACTIONS(4940), + [anon_sym_for] = ACTIONS(4940), + [anon_sym_match] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), + [anon_sym_orelse] = ACTIONS(4940), + [anon_sym_or] = ACTIONS(4940), + [anon_sym_and] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_AMP] = ACTIONS(4940), + [anon_sym_xor] = ACTIONS(4940), + [anon_sym_LT_LT] = ACTIONS(4940), + [anon_sym_GT_GT] = ACTIONS(4940), + [anon_sym_LT_LT_PIPE] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_catch] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_unreachable] = ACTIONS(4940), + [anon_sym_undefined] = ACTIONS(4940), + [sym_sink] = ACTIONS(4940), + [sym_integer] = ACTIONS(4940), + [sym_float] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(4938), + [sym_multiline_string] = ACTIONS(4938), + [sym_character] = ACTIONS(4938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4938), + }, + [STATE(3111)] = { + [sym_identifier] = ACTIONS(4944), + [anon_sym_func] = ACTIONS(4944), + [anon_sym_c_func] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_struct] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_struct_type_BANG] = ACTIONS(4942), + [anon_sym_QMARK] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_void] = ACTIONS(4944), + [anon_sym_noreturn] = ACTIONS(4944), + [anon_sym_type] = ACTIONS(4944), + [anon_sym_anyopaque] = ACTIONS(4944), + [anon_sym_bool] = ACTIONS(4944), + [anon_sym_int] = ACTIONS(4944), + [anon_sym_uint] = ACTIONS(4944), + [anon_sym_float] = ACTIONS(4944), + [anon_sym_range] = ACTIONS(4944), + [anon_sym_i8] = ACTIONS(4944), + [anon_sym_i16] = ACTIONS(4944), + [anon_sym_i32] = ACTIONS(4944), + [anon_sym_i64] = ACTIONS(4944), + [anon_sym_u8] = ACTIONS(4944), + [anon_sym_u16] = ACTIONS(4944), + [anon_sym_u32] = ACTIONS(4944), + [anon_sym_u64] = ACTIONS(4944), + [anon_sym_isize] = ACTIONS(4944), + [anon_sym_usize] = ACTIONS(4944), + [anon_sym_f32] = ACTIONS(4944), + [anon_sym_f64] = ACTIONS(4944), + [anon_sym_c_char] = ACTIONS(4944), + [anon_sym_c_schar] = ACTIONS(4944), + [anon_sym_c_uchar] = ACTIONS(4944), + [anon_sym_c_short] = ACTIONS(4944), + [anon_sym_c_ushort] = ACTIONS(4944), + [anon_sym_c_int] = ACTIONS(4944), + [anon_sym_c_uint] = ACTIONS(4944), + [anon_sym_c_long] = ACTIONS(4944), + [anon_sym_c_ulong] = ACTIONS(4944), + [anon_sym_c_longlong] = ACTIONS(4944), + [anon_sym_c_ulonglong] = ACTIONS(4944), + [anon_sym_c_float] = ACTIONS(4944), + [anon_sym_c_double] = ACTIONS(4944), + [anon_sym_c_longdouble] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_AMP_EQ] = ACTIONS(4942), + [anon_sym_PIPE_EQ] = ACTIONS(4942), + [anon_sym_xor_EQ] = ACTIONS(4942), + [anon_sym_LT_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_GT_EQ] = ACTIONS(4942), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4942), + [anon_sym_return] = ACTIONS(4944), + [anon_sym_yield] = ACTIONS(4944), + [anon_sym_break] = ACTIONS(4944), + [anon_sym_continue] = ACTIONS(4944), + [anon_sym_defer] = ACTIONS(4944), + [anon_sym_errdefer] = ACTIONS(4944), + [anon_sym_if] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_while] = ACTIONS(4944), + [anon_sym_expand] = ACTIONS(4944), + [anon_sym_for] = ACTIONS(4944), + [anon_sym_match] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4942), + [anon_sym_orelse] = ACTIONS(4944), + [anon_sym_or] = ACTIONS(4944), + [anon_sym_and] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_AMP] = ACTIONS(4944), + [anon_sym_xor] = ACTIONS(4944), + [anon_sym_LT_LT] = ACTIONS(4944), + [anon_sym_GT_GT] = ACTIONS(4944), + [anon_sym_LT_LT_PIPE] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_catch] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym_true] = ACTIONS(4944), + [anon_sym_false] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4944), + [anon_sym_unreachable] = ACTIONS(4944), + [anon_sym_undefined] = ACTIONS(4944), + [sym_sink] = ACTIONS(4944), + [sym_integer] = ACTIONS(4944), + [sym_float] = ACTIONS(4942), + [anon_sym_DQUOTE] = ACTIONS(4942), + [sym_multiline_string] = ACTIONS(4942), + [sym_character] = ACTIONS(4942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4942), + }, + [STATE(3112)] = { + [sym_identifier] = ACTIONS(4948), + [anon_sym_func] = ACTIONS(4948), + [anon_sym_c_func] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_struct] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4946), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_struct_type_BANG] = ACTIONS(4946), + [anon_sym_QMARK] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_void] = ACTIONS(4948), + [anon_sym_noreturn] = ACTIONS(4948), + [anon_sym_type] = ACTIONS(4948), + [anon_sym_anyopaque] = ACTIONS(4948), + [anon_sym_bool] = ACTIONS(4948), + [anon_sym_int] = ACTIONS(4948), + [anon_sym_uint] = ACTIONS(4948), + [anon_sym_float] = ACTIONS(4948), + [anon_sym_range] = ACTIONS(4948), + [anon_sym_i8] = ACTIONS(4948), + [anon_sym_i16] = ACTIONS(4948), + [anon_sym_i32] = ACTIONS(4948), + [anon_sym_i64] = ACTIONS(4948), + [anon_sym_u8] = ACTIONS(4948), + [anon_sym_u16] = ACTIONS(4948), + [anon_sym_u32] = ACTIONS(4948), + [anon_sym_u64] = ACTIONS(4948), + [anon_sym_isize] = ACTIONS(4948), + [anon_sym_usize] = ACTIONS(4948), + [anon_sym_f32] = ACTIONS(4948), + [anon_sym_f64] = ACTIONS(4948), + [anon_sym_c_char] = ACTIONS(4948), + [anon_sym_c_schar] = ACTIONS(4948), + [anon_sym_c_uchar] = ACTIONS(4948), + [anon_sym_c_short] = ACTIONS(4948), + [anon_sym_c_ushort] = ACTIONS(4948), + [anon_sym_c_int] = ACTIONS(4948), + [anon_sym_c_uint] = ACTIONS(4948), + [anon_sym_c_long] = ACTIONS(4948), + [anon_sym_c_ulong] = ACTIONS(4948), + [anon_sym_c_longlong] = ACTIONS(4948), + [anon_sym_c_ulonglong] = ACTIONS(4948), + [anon_sym_c_float] = ACTIONS(4948), + [anon_sym_c_double] = ACTIONS(4948), + [anon_sym_c_longdouble] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_AMP_EQ] = ACTIONS(4946), + [anon_sym_PIPE_EQ] = ACTIONS(4946), + [anon_sym_xor_EQ] = ACTIONS(4946), + [anon_sym_LT_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_GT_EQ] = ACTIONS(4946), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4946), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_yield] = ACTIONS(4948), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_defer] = ACTIONS(4948), + [anon_sym_errdefer] = ACTIONS(4948), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_while] = ACTIONS(4948), + [anon_sym_expand] = ACTIONS(4948), + [anon_sym_for] = ACTIONS(4948), + [anon_sym_match] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4946), + [anon_sym_orelse] = ACTIONS(4948), + [anon_sym_or] = ACTIONS(4948), + [anon_sym_and] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_AMP] = ACTIONS(4948), + [anon_sym_xor] = ACTIONS(4948), + [anon_sym_LT_LT] = ACTIONS(4948), + [anon_sym_GT_GT] = ACTIONS(4948), + [anon_sym_LT_LT_PIPE] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_catch] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4948), + [anon_sym_unreachable] = ACTIONS(4948), + [anon_sym_undefined] = ACTIONS(4948), + [sym_sink] = ACTIONS(4948), + [sym_integer] = ACTIONS(4948), + [sym_float] = ACTIONS(4946), + [anon_sym_DQUOTE] = ACTIONS(4946), + [sym_multiline_string] = ACTIONS(4946), + [sym_character] = ACTIONS(4946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4946), + }, + [STATE(3113)] = { + [sym_identifier] = ACTIONS(4952), + [anon_sym_func] = ACTIONS(4952), + [anon_sym_c_func] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_struct] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4950), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_struct_type_BANG] = ACTIONS(4950), + [anon_sym_QMARK] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_void] = ACTIONS(4952), + [anon_sym_noreturn] = ACTIONS(4952), + [anon_sym_type] = ACTIONS(4952), + [anon_sym_anyopaque] = ACTIONS(4952), + [anon_sym_bool] = ACTIONS(4952), + [anon_sym_int] = ACTIONS(4952), + [anon_sym_uint] = ACTIONS(4952), + [anon_sym_float] = ACTIONS(4952), + [anon_sym_range] = ACTIONS(4952), + [anon_sym_i8] = ACTIONS(4952), + [anon_sym_i16] = ACTIONS(4952), + [anon_sym_i32] = ACTIONS(4952), + [anon_sym_i64] = ACTIONS(4952), + [anon_sym_u8] = ACTIONS(4952), + [anon_sym_u16] = ACTIONS(4952), + [anon_sym_u32] = ACTIONS(4952), + [anon_sym_u64] = ACTIONS(4952), + [anon_sym_isize] = ACTIONS(4952), + [anon_sym_usize] = ACTIONS(4952), + [anon_sym_f32] = ACTIONS(4952), + [anon_sym_f64] = ACTIONS(4952), + [anon_sym_c_char] = ACTIONS(4952), + [anon_sym_c_schar] = ACTIONS(4952), + [anon_sym_c_uchar] = ACTIONS(4952), + [anon_sym_c_short] = ACTIONS(4952), + [anon_sym_c_ushort] = ACTIONS(4952), + [anon_sym_c_int] = ACTIONS(4952), + [anon_sym_c_uint] = ACTIONS(4952), + [anon_sym_c_long] = ACTIONS(4952), + [anon_sym_c_ulong] = ACTIONS(4952), + [anon_sym_c_longlong] = ACTIONS(4952), + [anon_sym_c_ulonglong] = ACTIONS(4952), + [anon_sym_c_float] = ACTIONS(4952), + [anon_sym_c_double] = ACTIONS(4952), + [anon_sym_c_longdouble] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_AMP_EQ] = ACTIONS(4950), + [anon_sym_PIPE_EQ] = ACTIONS(4950), + [anon_sym_xor_EQ] = ACTIONS(4950), + [anon_sym_LT_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_GT_EQ] = ACTIONS(4950), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4950), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_yield] = ACTIONS(4952), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_defer] = ACTIONS(4952), + [anon_sym_errdefer] = ACTIONS(4952), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_while] = ACTIONS(4952), + [anon_sym_expand] = ACTIONS(4952), + [anon_sym_for] = ACTIONS(4952), + [anon_sym_match] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4950), + [anon_sym_orelse] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_AMP] = ACTIONS(4952), + [anon_sym_xor] = ACTIONS(4952), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4952), + [anon_sym_LT_LT_PIPE] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_catch] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_unreachable] = ACTIONS(4952), + [anon_sym_undefined] = ACTIONS(4952), + [sym_sink] = ACTIONS(4952), + [sym_integer] = ACTIONS(4952), + [sym_float] = ACTIONS(4950), + [anon_sym_DQUOTE] = ACTIONS(4950), + [sym_multiline_string] = ACTIONS(4950), + [sym_character] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4950), + }, + [STATE(3114)] = { + [sym_identifier] = ACTIONS(4956), + [anon_sym_func] = ACTIONS(4956), + [anon_sym_c_func] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_struct] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4954), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_struct_type_BANG] = ACTIONS(4954), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_void] = ACTIONS(4956), + [anon_sym_noreturn] = ACTIONS(4956), + [anon_sym_type] = ACTIONS(4956), + [anon_sym_anyopaque] = ACTIONS(4956), + [anon_sym_bool] = ACTIONS(4956), + [anon_sym_int] = ACTIONS(4956), + [anon_sym_uint] = ACTIONS(4956), + [anon_sym_float] = ACTIONS(4956), + [anon_sym_range] = ACTIONS(4956), + [anon_sym_i8] = ACTIONS(4956), + [anon_sym_i16] = ACTIONS(4956), + [anon_sym_i32] = ACTIONS(4956), + [anon_sym_i64] = ACTIONS(4956), + [anon_sym_u8] = ACTIONS(4956), + [anon_sym_u16] = ACTIONS(4956), + [anon_sym_u32] = ACTIONS(4956), + [anon_sym_u64] = ACTIONS(4956), + [anon_sym_isize] = ACTIONS(4956), + [anon_sym_usize] = ACTIONS(4956), + [anon_sym_f32] = ACTIONS(4956), + [anon_sym_f64] = ACTIONS(4956), + [anon_sym_c_char] = ACTIONS(4956), + [anon_sym_c_schar] = ACTIONS(4956), + [anon_sym_c_uchar] = ACTIONS(4956), + [anon_sym_c_short] = ACTIONS(4956), + [anon_sym_c_ushort] = ACTIONS(4956), + [anon_sym_c_int] = ACTIONS(4956), + [anon_sym_c_uint] = ACTIONS(4956), + [anon_sym_c_long] = ACTIONS(4956), + [anon_sym_c_ulong] = ACTIONS(4956), + [anon_sym_c_longlong] = ACTIONS(4956), + [anon_sym_c_ulonglong] = ACTIONS(4956), + [anon_sym_c_float] = ACTIONS(4956), + [anon_sym_c_double] = ACTIONS(4956), + [anon_sym_c_longdouble] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_AMP_EQ] = ACTIONS(4954), + [anon_sym_PIPE_EQ] = ACTIONS(4954), + [anon_sym_xor_EQ] = ACTIONS(4954), + [anon_sym_LT_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_GT_EQ] = ACTIONS(4954), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4954), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_yield] = ACTIONS(4956), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_defer] = ACTIONS(4956), + [anon_sym_errdefer] = ACTIONS(4956), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_while] = ACTIONS(4956), + [anon_sym_expand] = ACTIONS(4956), + [anon_sym_for] = ACTIONS(4956), + [anon_sym_match] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), + [anon_sym_orelse] = ACTIONS(4956), + [anon_sym_or] = ACTIONS(4956), + [anon_sym_and] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4956), + [anon_sym_xor] = ACTIONS(4956), + [anon_sym_LT_LT] = ACTIONS(4956), + [anon_sym_GT_GT] = ACTIONS(4956), + [anon_sym_LT_LT_PIPE] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_catch] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4956), + [anon_sym_unreachable] = ACTIONS(4956), + [anon_sym_undefined] = ACTIONS(4956), + [sym_sink] = ACTIONS(4956), + [sym_integer] = ACTIONS(4956), + [sym_float] = ACTIONS(4954), + [anon_sym_DQUOTE] = ACTIONS(4954), + [sym_multiline_string] = ACTIONS(4954), + [sym_character] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4954), + }, + [STATE(3115)] = { + [sym_identifier] = ACTIONS(4960), + [anon_sym_func] = ACTIONS(4960), + [anon_sym_c_func] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_struct] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_struct_type_BANG] = ACTIONS(4958), + [anon_sym_QMARK] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_void] = ACTIONS(4960), + [anon_sym_noreturn] = ACTIONS(4960), + [anon_sym_type] = ACTIONS(4960), + [anon_sym_anyopaque] = ACTIONS(4960), + [anon_sym_bool] = ACTIONS(4960), + [anon_sym_int] = ACTIONS(4960), + [anon_sym_uint] = ACTIONS(4960), + [anon_sym_float] = ACTIONS(4960), + [anon_sym_range] = ACTIONS(4960), + [anon_sym_i8] = ACTIONS(4960), + [anon_sym_i16] = ACTIONS(4960), + [anon_sym_i32] = ACTIONS(4960), + [anon_sym_i64] = ACTIONS(4960), + [anon_sym_u8] = ACTIONS(4960), + [anon_sym_u16] = ACTIONS(4960), + [anon_sym_u32] = ACTIONS(4960), + [anon_sym_u64] = ACTIONS(4960), + [anon_sym_isize] = ACTIONS(4960), + [anon_sym_usize] = ACTIONS(4960), + [anon_sym_f32] = ACTIONS(4960), + [anon_sym_f64] = ACTIONS(4960), + [anon_sym_c_char] = ACTIONS(4960), + [anon_sym_c_schar] = ACTIONS(4960), + [anon_sym_c_uchar] = ACTIONS(4960), + [anon_sym_c_short] = ACTIONS(4960), + [anon_sym_c_ushort] = ACTIONS(4960), + [anon_sym_c_int] = ACTIONS(4960), + [anon_sym_c_uint] = ACTIONS(4960), + [anon_sym_c_long] = ACTIONS(4960), + [anon_sym_c_ulong] = ACTIONS(4960), + [anon_sym_c_longlong] = ACTIONS(4960), + [anon_sym_c_ulonglong] = ACTIONS(4960), + [anon_sym_c_float] = ACTIONS(4960), + [anon_sym_c_double] = ACTIONS(4960), + [anon_sym_c_longdouble] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_AMP_EQ] = ACTIONS(4958), + [anon_sym_PIPE_EQ] = ACTIONS(4958), + [anon_sym_xor_EQ] = ACTIONS(4958), + [anon_sym_LT_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_GT_EQ] = ACTIONS(4958), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_defer] = ACTIONS(4960), + [anon_sym_errdefer] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_expand] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4958), + [anon_sym_orelse] = ACTIONS(4960), + [anon_sym_or] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_xor] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4960), + [anon_sym_GT_GT] = ACTIONS(4960), + [anon_sym_LT_LT_PIPE] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_catch] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_unreachable] = ACTIONS(4960), + [anon_sym_undefined] = ACTIONS(4960), + [sym_sink] = ACTIONS(4960), + [sym_integer] = ACTIONS(4960), + [sym_float] = ACTIONS(4958), + [anon_sym_DQUOTE] = ACTIONS(4958), + [sym_multiline_string] = ACTIONS(4958), + [sym_character] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4958), + }, + [STATE(3116)] = { + [sym_identifier] = ACTIONS(6074), + [anon_sym_func] = ACTIONS(6074), + [anon_sym_c_func] = ACTIONS(6074), + [anon_sym_BANG] = ACTIONS(6074), + [anon_sym_EQ] = ACTIONS(6074), + [anon_sym_struct] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6072), + [anon_sym_LBRACE] = ACTIONS(6072), + [anon_sym_COMMA] = ACTIONS(6072), + [anon_sym_RBRACE] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_DOLLAR] = ACTIONS(6072), + [anon_sym_PIPE] = ACTIONS(6074), + [anon_sym_struct_type_BANG] = ACTIONS(6072), + [anon_sym_QMARK] = ACTIONS(6072), + [anon_sym_AT] = ACTIONS(6072), + [anon_sym_STAR] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6072), + [anon_sym_void] = ACTIONS(6074), + [anon_sym_noreturn] = ACTIONS(6074), + [anon_sym_type] = ACTIONS(6074), + [anon_sym_anyopaque] = ACTIONS(6074), + [anon_sym_bool] = ACTIONS(6074), + [anon_sym_int] = ACTIONS(6074), + [anon_sym_uint] = ACTIONS(6074), + [anon_sym_float] = ACTIONS(6074), + [anon_sym_range] = ACTIONS(6074), + [anon_sym_i8] = ACTIONS(6074), + [anon_sym_i16] = ACTIONS(6074), + [anon_sym_i32] = ACTIONS(6074), + [anon_sym_i64] = ACTIONS(6074), + [anon_sym_u8] = ACTIONS(6074), + [anon_sym_u16] = ACTIONS(6074), + [anon_sym_u32] = ACTIONS(6074), + [anon_sym_u64] = ACTIONS(6074), + [anon_sym_isize] = ACTIONS(6074), + [anon_sym_usize] = ACTIONS(6074), + [anon_sym_f32] = ACTIONS(6074), + [anon_sym_f64] = ACTIONS(6074), + [anon_sym_c_char] = ACTIONS(6074), + [anon_sym_c_schar] = ACTIONS(6074), + [anon_sym_c_uchar] = ACTIONS(6074), + [anon_sym_c_short] = ACTIONS(6074), + [anon_sym_c_ushort] = ACTIONS(6074), + [anon_sym_c_int] = ACTIONS(6074), + [anon_sym_c_uint] = ACTIONS(6074), + [anon_sym_c_long] = ACTIONS(6074), + [anon_sym_c_ulong] = ACTIONS(6074), + [anon_sym_c_longlong] = ACTIONS(6074), + [anon_sym_c_ulonglong] = ACTIONS(6074), + [anon_sym_c_float] = ACTIONS(6074), + [anon_sym_c_double] = ACTIONS(6074), + [anon_sym_c_longdouble] = ACTIONS(6074), + [anon_sym_PLUS_EQ] = ACTIONS(6072), + [anon_sym_DASH_EQ] = ACTIONS(6072), + [anon_sym_STAR_EQ] = ACTIONS(6072), + [anon_sym_SLASH_EQ] = ACTIONS(6072), + [anon_sym_AMP_EQ] = ACTIONS(6072), + [anon_sym_PIPE_EQ] = ACTIONS(6072), + [anon_sym_xor_EQ] = ACTIONS(6072), + [anon_sym_LT_LT_EQ] = ACTIONS(6072), + [anon_sym_GT_GT_EQ] = ACTIONS(6072), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6072), + [anon_sym_return] = ACTIONS(6074), + [anon_sym_yield] = ACTIONS(6074), + [anon_sym_break] = ACTIONS(6074), + [anon_sym_continue] = ACTIONS(6074), + [anon_sym_defer] = ACTIONS(6074), + [anon_sym_errdefer] = ACTIONS(6074), + [anon_sym_if] = ACTIONS(6074), + [anon_sym_else] = ACTIONS(6074), + [anon_sym_while] = ACTIONS(6074), + [anon_sym_expand] = ACTIONS(6074), + [anon_sym_for] = ACTIONS(6074), + [anon_sym_match] = ACTIONS(6074), + [anon_sym_DOT_DOT] = ACTIONS(6074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6072), + [anon_sym_orelse] = ACTIONS(6074), + [anon_sym_or] = ACTIONS(6074), + [anon_sym_and] = ACTIONS(6074), + [anon_sym_EQ_EQ] = ACTIONS(6072), + [anon_sym_BANG_EQ] = ACTIONS(6072), + [anon_sym_LT] = ACTIONS(6074), + [anon_sym_LT_EQ] = ACTIONS(6072), + [anon_sym_GT] = ACTIONS(6074), + [anon_sym_GT_EQ] = ACTIONS(6072), + [anon_sym_AMP] = ACTIONS(6074), + [anon_sym_xor] = ACTIONS(6074), + [anon_sym_LT_LT] = ACTIONS(6074), + [anon_sym_GT_GT] = ACTIONS(6074), + [anon_sym_LT_LT_PIPE] = ACTIONS(6074), + [anon_sym_PLUS] = ACTIONS(6074), + [anon_sym_SLASH] = ACTIONS(6074), + [anon_sym_catch] = ACTIONS(6074), + [anon_sym_TILDE] = ACTIONS(6072), + [anon_sym_try] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6074), + [anon_sym_CARET] = ACTIONS(6072), + [anon_sym_true] = ACTIONS(6074), + [anon_sym_false] = ACTIONS(6074), + [anon_sym_null] = ACTIONS(6074), + [anon_sym_unreachable] = ACTIONS(6074), + [anon_sym_undefined] = ACTIONS(6074), + [sym_sink] = ACTIONS(6074), + [sym_integer] = ACTIONS(6074), + [sym_float] = ACTIONS(6072), + [anon_sym_DQUOTE] = ACTIONS(6072), + [sym_multiline_string] = ACTIONS(6072), + [sym_character] = ACTIONS(6072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6072), + }, + [STATE(3117)] = { + [sym_identifier] = ACTIONS(6078), + [anon_sym_func] = ACTIONS(6078), + [anon_sym_c_func] = ACTIONS(6078), + [anon_sym_BANG] = ACTIONS(6078), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_struct] = ACTIONS(6078), + [anon_sym_LPAREN] = ACTIONS(6076), + [anon_sym_LBRACE] = ACTIONS(6076), + [anon_sym_COMMA] = ACTIONS(6076), + [anon_sym_RBRACE] = ACTIONS(6076), + [anon_sym_DASH] = ACTIONS(6078), + [anon_sym_DOLLAR] = ACTIONS(6076), + [anon_sym_PIPE] = ACTIONS(6078), + [anon_sym_struct_type_BANG] = ACTIONS(6076), + [anon_sym_QMARK] = ACTIONS(6076), + [anon_sym_AT] = ACTIONS(6076), + [anon_sym_STAR] = ACTIONS(6078), + [anon_sym_LBRACK] = ACTIONS(6076), + [anon_sym_void] = ACTIONS(6078), + [anon_sym_noreturn] = ACTIONS(6078), + [anon_sym_type] = ACTIONS(6078), + [anon_sym_anyopaque] = ACTIONS(6078), + [anon_sym_bool] = ACTIONS(6078), + [anon_sym_int] = ACTIONS(6078), + [anon_sym_uint] = ACTIONS(6078), + [anon_sym_float] = ACTIONS(6078), + [anon_sym_range] = ACTIONS(6078), + [anon_sym_i8] = ACTIONS(6078), + [anon_sym_i16] = ACTIONS(6078), + [anon_sym_i32] = ACTIONS(6078), + [anon_sym_i64] = ACTIONS(6078), + [anon_sym_u8] = ACTIONS(6078), + [anon_sym_u16] = ACTIONS(6078), + [anon_sym_u32] = ACTIONS(6078), + [anon_sym_u64] = ACTIONS(6078), + [anon_sym_isize] = ACTIONS(6078), + [anon_sym_usize] = ACTIONS(6078), + [anon_sym_f32] = ACTIONS(6078), + [anon_sym_f64] = ACTIONS(6078), + [anon_sym_c_char] = ACTIONS(6078), + [anon_sym_c_schar] = ACTIONS(6078), + [anon_sym_c_uchar] = ACTIONS(6078), + [anon_sym_c_short] = ACTIONS(6078), + [anon_sym_c_ushort] = ACTIONS(6078), + [anon_sym_c_int] = ACTIONS(6078), + [anon_sym_c_uint] = ACTIONS(6078), + [anon_sym_c_long] = ACTIONS(6078), + [anon_sym_c_ulong] = ACTIONS(6078), + [anon_sym_c_longlong] = ACTIONS(6078), + [anon_sym_c_ulonglong] = ACTIONS(6078), + [anon_sym_c_float] = ACTIONS(6078), + [anon_sym_c_double] = ACTIONS(6078), + [anon_sym_c_longdouble] = ACTIONS(6078), + [anon_sym_PLUS_EQ] = ACTIONS(6076), + [anon_sym_DASH_EQ] = ACTIONS(6076), + [anon_sym_STAR_EQ] = ACTIONS(6076), + [anon_sym_SLASH_EQ] = ACTIONS(6076), + [anon_sym_AMP_EQ] = ACTIONS(6076), + [anon_sym_PIPE_EQ] = ACTIONS(6076), + [anon_sym_xor_EQ] = ACTIONS(6076), + [anon_sym_LT_LT_EQ] = ACTIONS(6076), + [anon_sym_GT_GT_EQ] = ACTIONS(6076), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6076), + [anon_sym_return] = ACTIONS(6078), + [anon_sym_yield] = ACTIONS(6078), + [anon_sym_break] = ACTIONS(6078), + [anon_sym_continue] = ACTIONS(6078), + [anon_sym_defer] = ACTIONS(6078), + [anon_sym_errdefer] = ACTIONS(6078), + [anon_sym_if] = ACTIONS(6078), + [anon_sym_else] = ACTIONS(6078), + [anon_sym_while] = ACTIONS(6078), + [anon_sym_expand] = ACTIONS(6078), + [anon_sym_for] = ACTIONS(6078), + [anon_sym_match] = ACTIONS(6078), + [anon_sym_DOT_DOT] = ACTIONS(6078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6076), + [anon_sym_orelse] = ACTIONS(6078), + [anon_sym_or] = ACTIONS(6078), + [anon_sym_and] = ACTIONS(6078), + [anon_sym_EQ_EQ] = ACTIONS(6076), + [anon_sym_BANG_EQ] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(6078), + [anon_sym_LT_EQ] = ACTIONS(6076), + [anon_sym_GT] = ACTIONS(6078), + [anon_sym_GT_EQ] = ACTIONS(6076), + [anon_sym_AMP] = ACTIONS(6078), + [anon_sym_xor] = ACTIONS(6078), + [anon_sym_LT_LT] = ACTIONS(6078), + [anon_sym_GT_GT] = ACTIONS(6078), + [anon_sym_LT_LT_PIPE] = ACTIONS(6078), + [anon_sym_PLUS] = ACTIONS(6078), + [anon_sym_SLASH] = ACTIONS(6078), + [anon_sym_catch] = ACTIONS(6078), + [anon_sym_TILDE] = ACTIONS(6076), + [anon_sym_try] = ACTIONS(6078), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_CARET] = ACTIONS(6076), + [anon_sym_true] = ACTIONS(6078), + [anon_sym_false] = ACTIONS(6078), + [anon_sym_null] = ACTIONS(6078), + [anon_sym_unreachable] = ACTIONS(6078), + [anon_sym_undefined] = ACTIONS(6078), + [sym_sink] = ACTIONS(6078), + [sym_integer] = ACTIONS(6078), + [sym_float] = ACTIONS(6076), + [anon_sym_DQUOTE] = ACTIONS(6076), + [sym_multiline_string] = ACTIONS(6076), + [sym_character] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6076), + }, + [STATE(3118)] = { + [sym_identifier] = ACTIONS(4796), + [anon_sym_func] = ACTIONS(4796), + [anon_sym_c_func] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_struct] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4794), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_struct_type_BANG] = ACTIONS(4794), + [anon_sym_QMARK] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_void] = ACTIONS(4796), + [anon_sym_noreturn] = ACTIONS(4796), + [anon_sym_type] = ACTIONS(4796), + [anon_sym_anyopaque] = ACTIONS(4796), + [anon_sym_bool] = ACTIONS(4796), + [anon_sym_int] = ACTIONS(4796), + [anon_sym_uint] = ACTIONS(4796), + [anon_sym_float] = ACTIONS(4796), + [anon_sym_range] = ACTIONS(4796), + [anon_sym_i8] = ACTIONS(4796), + [anon_sym_i16] = ACTIONS(4796), + [anon_sym_i32] = ACTIONS(4796), + [anon_sym_i64] = ACTIONS(4796), + [anon_sym_u8] = ACTIONS(4796), + [anon_sym_u16] = ACTIONS(4796), + [anon_sym_u32] = ACTIONS(4796), + [anon_sym_u64] = ACTIONS(4796), + [anon_sym_isize] = ACTIONS(4796), + [anon_sym_usize] = ACTIONS(4796), + [anon_sym_f32] = ACTIONS(4796), + [anon_sym_f64] = ACTIONS(4796), + [anon_sym_c_char] = ACTIONS(4796), + [anon_sym_c_schar] = ACTIONS(4796), + [anon_sym_c_uchar] = ACTIONS(4796), + [anon_sym_c_short] = ACTIONS(4796), + [anon_sym_c_ushort] = ACTIONS(4796), + [anon_sym_c_int] = ACTIONS(4796), + [anon_sym_c_uint] = ACTIONS(4796), + [anon_sym_c_long] = ACTIONS(4796), + [anon_sym_c_ulong] = ACTIONS(4796), + [anon_sym_c_longlong] = ACTIONS(4796), + [anon_sym_c_ulonglong] = ACTIONS(4796), + [anon_sym_c_float] = ACTIONS(4796), + [anon_sym_c_double] = ACTIONS(4796), + [anon_sym_c_longdouble] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_AMP_EQ] = ACTIONS(4794), + [anon_sym_PIPE_EQ] = ACTIONS(4794), + [anon_sym_xor_EQ] = ACTIONS(4794), + [anon_sym_LT_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_GT_EQ] = ACTIONS(4794), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_yield] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_defer] = ACTIONS(4796), + [anon_sym_errdefer] = ACTIONS(4796), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_expand] = ACTIONS(4796), + [anon_sym_for] = ACTIONS(4796), + [anon_sym_match] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4794), + [anon_sym_orelse] = ACTIONS(4796), + [anon_sym_or] = ACTIONS(4796), + [anon_sym_and] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + [anon_sym_xor] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_LT_LT_PIPE] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_catch] = ACTIONS(4796), + [anon_sym_TILDE] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_CARET] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4796), + [anon_sym_unreachable] = ACTIONS(4796), + [anon_sym_undefined] = ACTIONS(4796), + [sym_sink] = ACTIONS(4796), + [sym_integer] = ACTIONS(4796), + [sym_float] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(4794), + [sym_multiline_string] = ACTIONS(4794), + [sym_character] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4794), + }, + [STATE(3119)] = { + [sym_identifier] = ACTIONS(6086), + [anon_sym_func] = ACTIONS(6086), + [anon_sym_c_func] = ACTIONS(6086), + [anon_sym_BANG] = ACTIONS(6086), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_struct] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6084), + [anon_sym_LBRACE] = ACTIONS(6084), + [anon_sym_COMMA] = ACTIONS(6084), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_DASH] = ACTIONS(6086), + [anon_sym_DOLLAR] = ACTIONS(6084), + [anon_sym_PIPE] = ACTIONS(6086), + [anon_sym_struct_type_BANG] = ACTIONS(6084), + [anon_sym_QMARK] = ACTIONS(6084), + [anon_sym_AT] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(6086), + [anon_sym_LBRACK] = ACTIONS(6084), + [anon_sym_void] = ACTIONS(6086), + [anon_sym_noreturn] = ACTIONS(6086), + [anon_sym_type] = ACTIONS(6086), + [anon_sym_anyopaque] = ACTIONS(6086), + [anon_sym_bool] = ACTIONS(6086), + [anon_sym_int] = ACTIONS(6086), + [anon_sym_uint] = ACTIONS(6086), + [anon_sym_float] = ACTIONS(6086), + [anon_sym_range] = ACTIONS(6086), + [anon_sym_i8] = ACTIONS(6086), + [anon_sym_i16] = ACTIONS(6086), + [anon_sym_i32] = ACTIONS(6086), + [anon_sym_i64] = ACTIONS(6086), + [anon_sym_u8] = ACTIONS(6086), + [anon_sym_u16] = ACTIONS(6086), + [anon_sym_u32] = ACTIONS(6086), + [anon_sym_u64] = ACTIONS(6086), + [anon_sym_isize] = ACTIONS(6086), + [anon_sym_usize] = ACTIONS(6086), + [anon_sym_f32] = ACTIONS(6086), + [anon_sym_f64] = ACTIONS(6086), + [anon_sym_c_char] = ACTIONS(6086), + [anon_sym_c_schar] = ACTIONS(6086), + [anon_sym_c_uchar] = ACTIONS(6086), + [anon_sym_c_short] = ACTIONS(6086), + [anon_sym_c_ushort] = ACTIONS(6086), + [anon_sym_c_int] = ACTIONS(6086), + [anon_sym_c_uint] = ACTIONS(6086), + [anon_sym_c_long] = ACTIONS(6086), + [anon_sym_c_ulong] = ACTIONS(6086), + [anon_sym_c_longlong] = ACTIONS(6086), + [anon_sym_c_ulonglong] = ACTIONS(6086), + [anon_sym_c_float] = ACTIONS(6086), + [anon_sym_c_double] = ACTIONS(6086), + [anon_sym_c_longdouble] = ACTIONS(6086), + [anon_sym_PLUS_EQ] = ACTIONS(6084), + [anon_sym_DASH_EQ] = ACTIONS(6084), + [anon_sym_STAR_EQ] = ACTIONS(6084), + [anon_sym_SLASH_EQ] = ACTIONS(6084), + [anon_sym_AMP_EQ] = ACTIONS(6084), + [anon_sym_PIPE_EQ] = ACTIONS(6084), + [anon_sym_xor_EQ] = ACTIONS(6084), + [anon_sym_LT_LT_EQ] = ACTIONS(6084), + [anon_sym_GT_GT_EQ] = ACTIONS(6084), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6084), + [anon_sym_return] = ACTIONS(6086), + [anon_sym_yield] = ACTIONS(6086), + [anon_sym_break] = ACTIONS(6086), + [anon_sym_continue] = ACTIONS(6086), + [anon_sym_defer] = ACTIONS(6086), + [anon_sym_errdefer] = ACTIONS(6086), + [anon_sym_if] = ACTIONS(6086), + [anon_sym_else] = ACTIONS(6086), + [anon_sym_while] = ACTIONS(6086), + [anon_sym_expand] = ACTIONS(6086), + [anon_sym_for] = ACTIONS(6086), + [anon_sym_match] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6084), + [anon_sym_orelse] = ACTIONS(6086), + [anon_sym_or] = ACTIONS(6086), + [anon_sym_and] = ACTIONS(6086), + [anon_sym_EQ_EQ] = ACTIONS(6084), + [anon_sym_BANG_EQ] = ACTIONS(6084), + [anon_sym_LT] = ACTIONS(6086), + [anon_sym_LT_EQ] = ACTIONS(6084), + [anon_sym_GT] = ACTIONS(6086), + [anon_sym_GT_EQ] = ACTIONS(6084), + [anon_sym_AMP] = ACTIONS(6086), + [anon_sym_xor] = ACTIONS(6086), + [anon_sym_LT_LT] = ACTIONS(6086), + [anon_sym_GT_GT] = ACTIONS(6086), + [anon_sym_LT_LT_PIPE] = ACTIONS(6086), + [anon_sym_PLUS] = ACTIONS(6086), + [anon_sym_SLASH] = ACTIONS(6086), + [anon_sym_catch] = ACTIONS(6086), + [anon_sym_TILDE] = ACTIONS(6084), + [anon_sym_try] = ACTIONS(6086), + [anon_sym_DOT] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6084), + [anon_sym_true] = ACTIONS(6086), + [anon_sym_false] = ACTIONS(6086), + [anon_sym_null] = ACTIONS(6086), + [anon_sym_unreachable] = ACTIONS(6086), + [anon_sym_undefined] = ACTIONS(6086), + [sym_sink] = ACTIONS(6086), + [sym_integer] = ACTIONS(6086), + [sym_float] = ACTIONS(6084), + [anon_sym_DQUOTE] = ACTIONS(6084), + [sym_multiline_string] = ACTIONS(6084), + [sym_character] = ACTIONS(6084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6084), + }, + [STATE(3120)] = { + [sym_identifier] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_c_func] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_COMMA] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_struct_type_BANG] = ACTIONS(1331), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1331), + [anon_sym_DASH_EQ] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1331), + [anon_sym_SLASH_EQ] = ACTIONS(1331), + [anon_sym_AMP_EQ] = ACTIONS(1331), + [anon_sym_PIPE_EQ] = ACTIONS(1331), + [anon_sym_xor_EQ] = ACTIONS(1331), + [anon_sym_LT_LT_EQ] = ACTIONS(1331), + [anon_sym_GT_GT_EQ] = ACTIONS(1331), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_LT_LT_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1331), + }, + [STATE(3121)] = { + [sym_identifier] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_c_func] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_COMMA] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_struct_type_BANG] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1258), + [anon_sym_DASH_EQ] = ACTIONS(1258), + [anon_sym_STAR_EQ] = ACTIONS(1258), + [anon_sym_SLASH_EQ] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_PIPE_EQ] = ACTIONS(1258), + [anon_sym_xor_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_LT_LT_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1258), + }, + [STATE(3122)] = { + [sym_identifier] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_c_func] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_DOLLAR] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_struct_type_BANG] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2724), + [anon_sym_xor_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_defer] = ACTIONS(2726), + [anon_sym_errdefer] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_expand] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(2726), + [anon_sym_and] = ACTIONS(2726), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2726), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_xor] = ACTIONS(2726), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2726), + [anon_sym_LT_LT_PIPE] = ACTIONS(2726), + [anon_sym_PLUS] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2726), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2726), + [anon_sym_unreachable] = ACTIONS(2726), + [anon_sym_undefined] = ACTIONS(2726), + [sym_sink] = ACTIONS(2726), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [sym_multiline_string] = ACTIONS(2724), + [sym_character] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(3123)] = { + [sym_identifier] = ACTIONS(6114), + [anon_sym_func] = ACTIONS(6114), + [anon_sym_c_func] = ACTIONS(6114), + [anon_sym_BANG] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(6114), + [anon_sym_struct] = ACTIONS(6114), + [anon_sym_LPAREN] = ACTIONS(6112), + [anon_sym_LBRACE] = ACTIONS(6112), + [anon_sym_COMMA] = ACTIONS(6112), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_DASH] = ACTIONS(6114), + [anon_sym_DOLLAR] = ACTIONS(6112), + [anon_sym_PIPE] = ACTIONS(6114), + [anon_sym_struct_type_BANG] = ACTIONS(6112), + [anon_sym_QMARK] = ACTIONS(6112), + [anon_sym_AT] = ACTIONS(6112), + [anon_sym_STAR] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(6112), + [anon_sym_void] = ACTIONS(6114), + [anon_sym_noreturn] = ACTIONS(6114), + [anon_sym_type] = ACTIONS(6114), + [anon_sym_anyopaque] = ACTIONS(6114), + [anon_sym_bool] = ACTIONS(6114), + [anon_sym_int] = ACTIONS(6114), + [anon_sym_uint] = ACTIONS(6114), + [anon_sym_float] = ACTIONS(6114), + [anon_sym_range] = ACTIONS(6114), + [anon_sym_i8] = ACTIONS(6114), + [anon_sym_i16] = ACTIONS(6114), + [anon_sym_i32] = ACTIONS(6114), + [anon_sym_i64] = ACTIONS(6114), + [anon_sym_u8] = ACTIONS(6114), + [anon_sym_u16] = ACTIONS(6114), + [anon_sym_u32] = ACTIONS(6114), + [anon_sym_u64] = ACTIONS(6114), + [anon_sym_isize] = ACTIONS(6114), + [anon_sym_usize] = ACTIONS(6114), + [anon_sym_f32] = ACTIONS(6114), + [anon_sym_f64] = ACTIONS(6114), + [anon_sym_c_char] = ACTIONS(6114), + [anon_sym_c_schar] = ACTIONS(6114), + [anon_sym_c_uchar] = ACTIONS(6114), + [anon_sym_c_short] = ACTIONS(6114), + [anon_sym_c_ushort] = ACTIONS(6114), + [anon_sym_c_int] = ACTIONS(6114), + [anon_sym_c_uint] = ACTIONS(6114), + [anon_sym_c_long] = ACTIONS(6114), + [anon_sym_c_ulong] = ACTIONS(6114), + [anon_sym_c_longlong] = ACTIONS(6114), + [anon_sym_c_ulonglong] = ACTIONS(6114), + [anon_sym_c_float] = ACTIONS(6114), + [anon_sym_c_double] = ACTIONS(6114), + [anon_sym_c_longdouble] = ACTIONS(6114), + [anon_sym_PLUS_EQ] = ACTIONS(6112), + [anon_sym_DASH_EQ] = ACTIONS(6112), + [anon_sym_STAR_EQ] = ACTIONS(6112), + [anon_sym_SLASH_EQ] = ACTIONS(6112), + [anon_sym_AMP_EQ] = ACTIONS(6112), + [anon_sym_PIPE_EQ] = ACTIONS(6112), + [anon_sym_xor_EQ] = ACTIONS(6112), + [anon_sym_LT_LT_EQ] = ACTIONS(6112), + [anon_sym_GT_GT_EQ] = ACTIONS(6112), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6112), + [anon_sym_return] = ACTIONS(6114), + [anon_sym_yield] = ACTIONS(6114), + [anon_sym_break] = ACTIONS(6114), + [anon_sym_continue] = ACTIONS(6114), + [anon_sym_defer] = ACTIONS(6114), + [anon_sym_errdefer] = ACTIONS(6114), + [anon_sym_if] = ACTIONS(6114), + [anon_sym_else] = ACTIONS(6114), + [anon_sym_while] = ACTIONS(6114), + [anon_sym_expand] = ACTIONS(6114), + [anon_sym_for] = ACTIONS(6114), + [anon_sym_match] = ACTIONS(6114), + [anon_sym_DOT_DOT] = ACTIONS(6114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6112), + [anon_sym_orelse] = ACTIONS(6114), + [anon_sym_or] = ACTIONS(6114), + [anon_sym_and] = ACTIONS(6114), + [anon_sym_EQ_EQ] = ACTIONS(6112), + [anon_sym_BANG_EQ] = ACTIONS(6112), + [anon_sym_LT] = ACTIONS(6114), + [anon_sym_LT_EQ] = ACTIONS(6112), + [anon_sym_GT] = ACTIONS(6114), + [anon_sym_GT_EQ] = ACTIONS(6112), + [anon_sym_AMP] = ACTIONS(6114), + [anon_sym_xor] = ACTIONS(6114), + [anon_sym_LT_LT] = ACTIONS(6114), + [anon_sym_GT_GT] = ACTIONS(6114), + [anon_sym_LT_LT_PIPE] = ACTIONS(6114), + [anon_sym_PLUS] = ACTIONS(6114), + [anon_sym_SLASH] = ACTIONS(6114), + [anon_sym_catch] = ACTIONS(6114), + [anon_sym_TILDE] = ACTIONS(6112), + [anon_sym_try] = ACTIONS(6114), + [anon_sym_DOT] = ACTIONS(6114), + [anon_sym_CARET] = ACTIONS(6112), + [anon_sym_true] = ACTIONS(6114), + [anon_sym_false] = ACTIONS(6114), + [anon_sym_null] = ACTIONS(6114), + [anon_sym_unreachable] = ACTIONS(6114), + [anon_sym_undefined] = ACTIONS(6114), + [sym_sink] = ACTIONS(6114), + [sym_integer] = ACTIONS(6114), + [sym_float] = ACTIONS(6112), + [anon_sym_DQUOTE] = ACTIONS(6112), + [sym_multiline_string] = ACTIONS(6112), + [sym_character] = ACTIONS(6112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6112), + }, + [STATE(3124)] = { + [sym_identifier] = ACTIONS(6124), + [anon_sym_func] = ACTIONS(6124), + [anon_sym_c_func] = ACTIONS(6124), + [anon_sym_BANG] = ACTIONS(6124), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_struct] = ACTIONS(6124), + [anon_sym_LPAREN] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(6122), + [anon_sym_COMMA] = ACTIONS(6122), + [anon_sym_RBRACE] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6124), + [anon_sym_DOLLAR] = ACTIONS(6122), + [anon_sym_PIPE] = ACTIONS(6124), + [anon_sym_struct_type_BANG] = ACTIONS(6122), + [anon_sym_QMARK] = ACTIONS(6122), + [anon_sym_AT] = ACTIONS(6122), + [anon_sym_STAR] = ACTIONS(6124), + [anon_sym_LBRACK] = ACTIONS(6122), + [anon_sym_void] = ACTIONS(6124), + [anon_sym_noreturn] = ACTIONS(6124), + [anon_sym_type] = ACTIONS(6124), + [anon_sym_anyopaque] = ACTIONS(6124), + [anon_sym_bool] = ACTIONS(6124), + [anon_sym_int] = ACTIONS(6124), + [anon_sym_uint] = ACTIONS(6124), + [anon_sym_float] = ACTIONS(6124), + [anon_sym_range] = ACTIONS(6124), + [anon_sym_i8] = ACTIONS(6124), + [anon_sym_i16] = ACTIONS(6124), + [anon_sym_i32] = ACTIONS(6124), + [anon_sym_i64] = ACTIONS(6124), + [anon_sym_u8] = ACTIONS(6124), + [anon_sym_u16] = ACTIONS(6124), + [anon_sym_u32] = ACTIONS(6124), + [anon_sym_u64] = ACTIONS(6124), + [anon_sym_isize] = ACTIONS(6124), + [anon_sym_usize] = ACTIONS(6124), + [anon_sym_f32] = ACTIONS(6124), + [anon_sym_f64] = ACTIONS(6124), + [anon_sym_c_char] = ACTIONS(6124), + [anon_sym_c_schar] = ACTIONS(6124), + [anon_sym_c_uchar] = ACTIONS(6124), + [anon_sym_c_short] = ACTIONS(6124), + [anon_sym_c_ushort] = ACTIONS(6124), + [anon_sym_c_int] = ACTIONS(6124), + [anon_sym_c_uint] = ACTIONS(6124), + [anon_sym_c_long] = ACTIONS(6124), + [anon_sym_c_ulong] = ACTIONS(6124), + [anon_sym_c_longlong] = ACTIONS(6124), + [anon_sym_c_ulonglong] = ACTIONS(6124), + [anon_sym_c_float] = ACTIONS(6124), + [anon_sym_c_double] = ACTIONS(6124), + [anon_sym_c_longdouble] = ACTIONS(6124), + [anon_sym_PLUS_EQ] = ACTIONS(6122), + [anon_sym_DASH_EQ] = ACTIONS(6122), + [anon_sym_STAR_EQ] = ACTIONS(6122), + [anon_sym_SLASH_EQ] = ACTIONS(6122), + [anon_sym_AMP_EQ] = ACTIONS(6122), + [anon_sym_PIPE_EQ] = ACTIONS(6122), + [anon_sym_xor_EQ] = ACTIONS(6122), + [anon_sym_LT_LT_EQ] = ACTIONS(6122), + [anon_sym_GT_GT_EQ] = ACTIONS(6122), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6122), + [anon_sym_return] = ACTIONS(6124), + [anon_sym_yield] = ACTIONS(6124), + [anon_sym_break] = ACTIONS(6124), + [anon_sym_continue] = ACTIONS(6124), + [anon_sym_defer] = ACTIONS(6124), + [anon_sym_errdefer] = ACTIONS(6124), + [anon_sym_if] = ACTIONS(6124), + [anon_sym_else] = ACTIONS(6124), + [anon_sym_while] = ACTIONS(6124), + [anon_sym_expand] = ACTIONS(6124), + [anon_sym_for] = ACTIONS(6124), + [anon_sym_match] = ACTIONS(6124), + [anon_sym_DOT_DOT] = ACTIONS(6124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6122), + [anon_sym_orelse] = ACTIONS(6124), + [anon_sym_or] = ACTIONS(6124), + [anon_sym_and] = ACTIONS(6124), + [anon_sym_EQ_EQ] = ACTIONS(6122), + [anon_sym_BANG_EQ] = ACTIONS(6122), + [anon_sym_LT] = ACTIONS(6124), + [anon_sym_LT_EQ] = ACTIONS(6122), + [anon_sym_GT] = ACTIONS(6124), + [anon_sym_GT_EQ] = ACTIONS(6122), + [anon_sym_AMP] = ACTIONS(6124), + [anon_sym_xor] = ACTIONS(6124), + [anon_sym_LT_LT] = ACTIONS(6124), + [anon_sym_GT_GT] = ACTIONS(6124), + [anon_sym_LT_LT_PIPE] = ACTIONS(6124), + [anon_sym_PLUS] = ACTIONS(6124), + [anon_sym_SLASH] = ACTIONS(6124), + [anon_sym_catch] = ACTIONS(6124), + [anon_sym_TILDE] = ACTIONS(6122), + [anon_sym_try] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6124), + [anon_sym_CARET] = ACTIONS(6122), + [anon_sym_true] = ACTIONS(6124), + [anon_sym_false] = ACTIONS(6124), + [anon_sym_null] = ACTIONS(6124), + [anon_sym_unreachable] = ACTIONS(6124), + [anon_sym_undefined] = ACTIONS(6124), + [sym_sink] = ACTIONS(6124), + [sym_integer] = ACTIONS(6124), + [sym_float] = ACTIONS(6122), + [anon_sym_DQUOTE] = ACTIONS(6122), + [sym_multiline_string] = ACTIONS(6122), + [sym_character] = ACTIONS(6122), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6122), + }, + [STATE(3125)] = { + [sym_identifier] = ACTIONS(6134), + [anon_sym_func] = ACTIONS(6134), + [anon_sym_c_func] = ACTIONS(6134), + [anon_sym_BANG] = ACTIONS(6134), + [anon_sym_EQ] = ACTIONS(6134), + [anon_sym_struct] = ACTIONS(6134), + [anon_sym_LPAREN] = ACTIONS(6132), + [anon_sym_LBRACE] = ACTIONS(6132), + [anon_sym_COMMA] = ACTIONS(6132), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_DASH] = ACTIONS(6134), + [anon_sym_DOLLAR] = ACTIONS(6132), + [anon_sym_PIPE] = ACTIONS(6134), + [anon_sym_struct_type_BANG] = ACTIONS(6132), + [anon_sym_QMARK] = ACTIONS(6132), + [anon_sym_AT] = ACTIONS(6132), + [anon_sym_STAR] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6132), + [anon_sym_void] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym_type] = ACTIONS(6134), + [anon_sym_anyopaque] = ACTIONS(6134), + [anon_sym_bool] = ACTIONS(6134), + [anon_sym_int] = ACTIONS(6134), + [anon_sym_uint] = ACTIONS(6134), + [anon_sym_float] = ACTIONS(6134), + [anon_sym_range] = ACTIONS(6134), + [anon_sym_i8] = ACTIONS(6134), + [anon_sym_i16] = ACTIONS(6134), + [anon_sym_i32] = ACTIONS(6134), + [anon_sym_i64] = ACTIONS(6134), + [anon_sym_u8] = ACTIONS(6134), + [anon_sym_u16] = ACTIONS(6134), + [anon_sym_u32] = ACTIONS(6134), + [anon_sym_u64] = ACTIONS(6134), + [anon_sym_isize] = ACTIONS(6134), + [anon_sym_usize] = ACTIONS(6134), + [anon_sym_f32] = ACTIONS(6134), + [anon_sym_f64] = ACTIONS(6134), + [anon_sym_c_char] = ACTIONS(6134), + [anon_sym_c_schar] = ACTIONS(6134), + [anon_sym_c_uchar] = ACTIONS(6134), + [anon_sym_c_short] = ACTIONS(6134), + [anon_sym_c_ushort] = ACTIONS(6134), + [anon_sym_c_int] = ACTIONS(6134), + [anon_sym_c_uint] = ACTIONS(6134), + [anon_sym_c_long] = ACTIONS(6134), + [anon_sym_c_ulong] = ACTIONS(6134), + [anon_sym_c_longlong] = ACTIONS(6134), + [anon_sym_c_ulonglong] = ACTIONS(6134), + [anon_sym_c_float] = ACTIONS(6134), + [anon_sym_c_double] = ACTIONS(6134), + [anon_sym_c_longdouble] = ACTIONS(6134), + [anon_sym_PLUS_EQ] = ACTIONS(6132), + [anon_sym_DASH_EQ] = ACTIONS(6132), + [anon_sym_STAR_EQ] = ACTIONS(6132), + [anon_sym_SLASH_EQ] = ACTIONS(6132), + [anon_sym_AMP_EQ] = ACTIONS(6132), + [anon_sym_PIPE_EQ] = ACTIONS(6132), + [anon_sym_xor_EQ] = ACTIONS(6132), + [anon_sym_LT_LT_EQ] = ACTIONS(6132), + [anon_sym_GT_GT_EQ] = ACTIONS(6132), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6132), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_yield] = ACTIONS(6134), + [anon_sym_break] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [anon_sym_defer] = ACTIONS(6134), + [anon_sym_errdefer] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [anon_sym_else] = ACTIONS(6134), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_expand] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [anon_sym_match] = ACTIONS(6134), + [anon_sym_DOT_DOT] = ACTIONS(6134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6132), + [anon_sym_orelse] = ACTIONS(6134), + [anon_sym_or] = ACTIONS(6134), + [anon_sym_and] = ACTIONS(6134), + [anon_sym_EQ_EQ] = ACTIONS(6132), + [anon_sym_BANG_EQ] = ACTIONS(6132), + [anon_sym_LT] = ACTIONS(6134), + [anon_sym_LT_EQ] = ACTIONS(6132), + [anon_sym_GT] = ACTIONS(6134), + [anon_sym_GT_EQ] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_xor] = ACTIONS(6134), + [anon_sym_LT_LT] = ACTIONS(6134), + [anon_sym_GT_GT] = ACTIONS(6134), + [anon_sym_LT_LT_PIPE] = ACTIONS(6134), + [anon_sym_PLUS] = ACTIONS(6134), + [anon_sym_SLASH] = ACTIONS(6134), + [anon_sym_catch] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6132), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_DOT] = ACTIONS(6134), + [anon_sym_CARET] = ACTIONS(6132), + [anon_sym_true] = ACTIONS(6134), + [anon_sym_false] = ACTIONS(6134), + [anon_sym_null] = ACTIONS(6134), + [anon_sym_unreachable] = ACTIONS(6134), + [anon_sym_undefined] = ACTIONS(6134), + [sym_sink] = ACTIONS(6134), + [sym_integer] = ACTIONS(6134), + [sym_float] = ACTIONS(6132), + [anon_sym_DQUOTE] = ACTIONS(6132), + [sym_multiline_string] = ACTIONS(6132), + [sym_character] = ACTIONS(6132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6132), + }, + [STATE(3126)] = { + [sym_identifier] = ACTIONS(6138), + [anon_sym_func] = ACTIONS(6138), + [anon_sym_c_func] = ACTIONS(6138), + [anon_sym_BANG] = ACTIONS(6138), + [anon_sym_EQ] = ACTIONS(6138), + [anon_sym_struct] = ACTIONS(6138), + [anon_sym_LPAREN] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(6136), + [anon_sym_COMMA] = ACTIONS(6136), + [anon_sym_RBRACE] = ACTIONS(6136), + [anon_sym_DASH] = ACTIONS(6138), + [anon_sym_DOLLAR] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(6138), + [anon_sym_struct_type_BANG] = ACTIONS(6136), + [anon_sym_QMARK] = ACTIONS(6136), + [anon_sym_AT] = ACTIONS(6136), + [anon_sym_STAR] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(6136), + [anon_sym_void] = ACTIONS(6138), + [anon_sym_noreturn] = ACTIONS(6138), + [anon_sym_type] = ACTIONS(6138), + [anon_sym_anyopaque] = ACTIONS(6138), + [anon_sym_bool] = ACTIONS(6138), + [anon_sym_int] = ACTIONS(6138), + [anon_sym_uint] = ACTIONS(6138), + [anon_sym_float] = ACTIONS(6138), + [anon_sym_range] = ACTIONS(6138), + [anon_sym_i8] = ACTIONS(6138), + [anon_sym_i16] = ACTIONS(6138), + [anon_sym_i32] = ACTIONS(6138), + [anon_sym_i64] = ACTIONS(6138), + [anon_sym_u8] = ACTIONS(6138), + [anon_sym_u16] = ACTIONS(6138), + [anon_sym_u32] = ACTIONS(6138), + [anon_sym_u64] = ACTIONS(6138), + [anon_sym_isize] = ACTIONS(6138), + [anon_sym_usize] = ACTIONS(6138), + [anon_sym_f32] = ACTIONS(6138), + [anon_sym_f64] = ACTIONS(6138), + [anon_sym_c_char] = ACTIONS(6138), + [anon_sym_c_schar] = ACTIONS(6138), + [anon_sym_c_uchar] = ACTIONS(6138), + [anon_sym_c_short] = ACTIONS(6138), + [anon_sym_c_ushort] = ACTIONS(6138), + [anon_sym_c_int] = ACTIONS(6138), + [anon_sym_c_uint] = ACTIONS(6138), + [anon_sym_c_long] = ACTIONS(6138), + [anon_sym_c_ulong] = ACTIONS(6138), + [anon_sym_c_longlong] = ACTIONS(6138), + [anon_sym_c_ulonglong] = ACTIONS(6138), + [anon_sym_c_float] = ACTIONS(6138), + [anon_sym_c_double] = ACTIONS(6138), + [anon_sym_c_longdouble] = ACTIONS(6138), + [anon_sym_PLUS_EQ] = ACTIONS(6136), + [anon_sym_DASH_EQ] = ACTIONS(6136), + [anon_sym_STAR_EQ] = ACTIONS(6136), + [anon_sym_SLASH_EQ] = ACTIONS(6136), + [anon_sym_AMP_EQ] = ACTIONS(6136), + [anon_sym_PIPE_EQ] = ACTIONS(6136), + [anon_sym_xor_EQ] = ACTIONS(6136), + [anon_sym_LT_LT_EQ] = ACTIONS(6136), + [anon_sym_GT_GT_EQ] = ACTIONS(6136), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6136), + [anon_sym_return] = ACTIONS(6138), + [anon_sym_yield] = ACTIONS(6138), + [anon_sym_break] = ACTIONS(6138), + [anon_sym_continue] = ACTIONS(6138), + [anon_sym_defer] = ACTIONS(6138), + [anon_sym_errdefer] = ACTIONS(6138), + [anon_sym_if] = ACTIONS(6138), + [anon_sym_else] = ACTIONS(6138), + [anon_sym_while] = ACTIONS(6138), + [anon_sym_expand] = ACTIONS(6138), + [anon_sym_for] = ACTIONS(6138), + [anon_sym_match] = ACTIONS(6138), + [anon_sym_DOT_DOT] = ACTIONS(6138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6136), + [anon_sym_orelse] = ACTIONS(6138), + [anon_sym_or] = ACTIONS(6138), + [anon_sym_and] = ACTIONS(6138), + [anon_sym_EQ_EQ] = ACTIONS(6136), + [anon_sym_BANG_EQ] = ACTIONS(6136), + [anon_sym_LT] = ACTIONS(6138), + [anon_sym_LT_EQ] = ACTIONS(6136), + [anon_sym_GT] = ACTIONS(6138), + [anon_sym_GT_EQ] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6138), + [anon_sym_xor] = ACTIONS(6138), + [anon_sym_LT_LT] = ACTIONS(6138), + [anon_sym_GT_GT] = ACTIONS(6138), + [anon_sym_LT_LT_PIPE] = ACTIONS(6138), + [anon_sym_PLUS] = ACTIONS(6138), + [anon_sym_SLASH] = ACTIONS(6138), + [anon_sym_catch] = ACTIONS(6138), + [anon_sym_TILDE] = ACTIONS(6136), + [anon_sym_try] = ACTIONS(6138), + [anon_sym_DOT] = ACTIONS(6138), + [anon_sym_CARET] = ACTIONS(6136), + [anon_sym_true] = ACTIONS(6138), + [anon_sym_false] = ACTIONS(6138), + [anon_sym_null] = ACTIONS(6138), + [anon_sym_unreachable] = ACTIONS(6138), + [anon_sym_undefined] = ACTIONS(6138), + [sym_sink] = ACTIONS(6138), + [sym_integer] = ACTIONS(6138), + [sym_float] = ACTIONS(6136), + [anon_sym_DQUOTE] = ACTIONS(6136), + [sym_multiline_string] = ACTIONS(6136), + [sym_character] = ACTIONS(6136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6136), + }, + [STATE(3127)] = { + [sym_identifier] = ACTIONS(6142), + [anon_sym_func] = ACTIONS(6142), + [anon_sym_c_func] = ACTIONS(6142), + [anon_sym_BANG] = ACTIONS(6142), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_struct] = ACTIONS(6142), + [anon_sym_LPAREN] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(6140), + [anon_sym_COMMA] = ACTIONS(6140), + [anon_sym_RBRACE] = ACTIONS(6140), + [anon_sym_DASH] = ACTIONS(6142), + [anon_sym_DOLLAR] = ACTIONS(6140), + [anon_sym_PIPE] = ACTIONS(6142), + [anon_sym_struct_type_BANG] = ACTIONS(6140), + [anon_sym_QMARK] = ACTIONS(6140), + [anon_sym_AT] = ACTIONS(6140), + [anon_sym_STAR] = ACTIONS(6142), + [anon_sym_LBRACK] = ACTIONS(6140), + [anon_sym_void] = ACTIONS(6142), + [anon_sym_noreturn] = ACTIONS(6142), + [anon_sym_type] = ACTIONS(6142), + [anon_sym_anyopaque] = ACTIONS(6142), + [anon_sym_bool] = ACTIONS(6142), + [anon_sym_int] = ACTIONS(6142), + [anon_sym_uint] = ACTIONS(6142), + [anon_sym_float] = ACTIONS(6142), + [anon_sym_range] = ACTIONS(6142), + [anon_sym_i8] = ACTIONS(6142), + [anon_sym_i16] = ACTIONS(6142), + [anon_sym_i32] = ACTIONS(6142), + [anon_sym_i64] = ACTIONS(6142), + [anon_sym_u8] = ACTIONS(6142), + [anon_sym_u16] = ACTIONS(6142), + [anon_sym_u32] = ACTIONS(6142), + [anon_sym_u64] = ACTIONS(6142), + [anon_sym_isize] = ACTIONS(6142), + [anon_sym_usize] = ACTIONS(6142), + [anon_sym_f32] = ACTIONS(6142), + [anon_sym_f64] = ACTIONS(6142), + [anon_sym_c_char] = ACTIONS(6142), + [anon_sym_c_schar] = ACTIONS(6142), + [anon_sym_c_uchar] = ACTIONS(6142), + [anon_sym_c_short] = ACTIONS(6142), + [anon_sym_c_ushort] = ACTIONS(6142), + [anon_sym_c_int] = ACTIONS(6142), + [anon_sym_c_uint] = ACTIONS(6142), + [anon_sym_c_long] = ACTIONS(6142), + [anon_sym_c_ulong] = ACTIONS(6142), + [anon_sym_c_longlong] = ACTIONS(6142), + [anon_sym_c_ulonglong] = ACTIONS(6142), + [anon_sym_c_float] = ACTIONS(6142), + [anon_sym_c_double] = ACTIONS(6142), + [anon_sym_c_longdouble] = ACTIONS(6142), + [anon_sym_PLUS_EQ] = ACTIONS(6140), + [anon_sym_DASH_EQ] = ACTIONS(6140), + [anon_sym_STAR_EQ] = ACTIONS(6140), + [anon_sym_SLASH_EQ] = ACTIONS(6140), + [anon_sym_AMP_EQ] = ACTIONS(6140), + [anon_sym_PIPE_EQ] = ACTIONS(6140), + [anon_sym_xor_EQ] = ACTIONS(6140), + [anon_sym_LT_LT_EQ] = ACTIONS(6140), + [anon_sym_GT_GT_EQ] = ACTIONS(6140), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6140), + [anon_sym_return] = ACTIONS(6142), + [anon_sym_yield] = ACTIONS(6142), + [anon_sym_break] = ACTIONS(6142), + [anon_sym_continue] = ACTIONS(6142), + [anon_sym_defer] = ACTIONS(6142), + [anon_sym_errdefer] = ACTIONS(6142), + [anon_sym_if] = ACTIONS(6142), + [anon_sym_else] = ACTIONS(6142), + [anon_sym_while] = ACTIONS(6142), + [anon_sym_expand] = ACTIONS(6142), + [anon_sym_for] = ACTIONS(6142), + [anon_sym_match] = ACTIONS(6142), + [anon_sym_DOT_DOT] = ACTIONS(6142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6140), + [anon_sym_orelse] = ACTIONS(6142), + [anon_sym_or] = ACTIONS(6142), + [anon_sym_and] = ACTIONS(6142), + [anon_sym_EQ_EQ] = ACTIONS(6140), + [anon_sym_BANG_EQ] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(6142), + [anon_sym_LT_EQ] = ACTIONS(6140), + [anon_sym_GT] = ACTIONS(6142), + [anon_sym_GT_EQ] = ACTIONS(6140), + [anon_sym_AMP] = ACTIONS(6142), + [anon_sym_xor] = ACTIONS(6142), + [anon_sym_LT_LT] = ACTIONS(6142), + [anon_sym_GT_GT] = ACTIONS(6142), + [anon_sym_LT_LT_PIPE] = ACTIONS(6142), + [anon_sym_PLUS] = ACTIONS(6142), + [anon_sym_SLASH] = ACTIONS(6142), + [anon_sym_catch] = ACTIONS(6142), + [anon_sym_TILDE] = ACTIONS(6140), + [anon_sym_try] = ACTIONS(6142), + [anon_sym_DOT] = ACTIONS(6142), + [anon_sym_CARET] = ACTIONS(6140), + [anon_sym_true] = ACTIONS(6142), + [anon_sym_false] = ACTIONS(6142), + [anon_sym_null] = ACTIONS(6142), + [anon_sym_unreachable] = ACTIONS(6142), + [anon_sym_undefined] = ACTIONS(6142), + [sym_sink] = ACTIONS(6142), + [sym_integer] = ACTIONS(6142), + [sym_float] = ACTIONS(6140), + [anon_sym_DQUOTE] = ACTIONS(6140), + [sym_multiline_string] = ACTIONS(6140), + [sym_character] = ACTIONS(6140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6140), + }, + [STATE(3128)] = { + [sym_identifier] = ACTIONS(6152), + [anon_sym_func] = ACTIONS(6152), + [anon_sym_c_func] = ACTIONS(6152), + [anon_sym_BANG] = ACTIONS(6152), + [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_struct] = ACTIONS(6152), + [anon_sym_LPAREN] = ACTIONS(6150), + [anon_sym_LBRACE] = ACTIONS(6150), + [anon_sym_COMMA] = ACTIONS(6150), + [anon_sym_RBRACE] = ACTIONS(6150), + [anon_sym_DASH] = ACTIONS(6152), + [anon_sym_DOLLAR] = ACTIONS(6150), + [anon_sym_PIPE] = ACTIONS(6152), + [anon_sym_struct_type_BANG] = ACTIONS(6150), + [anon_sym_QMARK] = ACTIONS(6150), + [anon_sym_AT] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(6150), + [anon_sym_void] = ACTIONS(6152), + [anon_sym_noreturn] = ACTIONS(6152), + [anon_sym_type] = ACTIONS(6152), + [anon_sym_anyopaque] = ACTIONS(6152), + [anon_sym_bool] = ACTIONS(6152), + [anon_sym_int] = ACTIONS(6152), + [anon_sym_uint] = ACTIONS(6152), + [anon_sym_float] = ACTIONS(6152), + [anon_sym_range] = ACTIONS(6152), + [anon_sym_i8] = ACTIONS(6152), + [anon_sym_i16] = ACTIONS(6152), + [anon_sym_i32] = ACTIONS(6152), + [anon_sym_i64] = ACTIONS(6152), + [anon_sym_u8] = ACTIONS(6152), + [anon_sym_u16] = ACTIONS(6152), + [anon_sym_u32] = ACTIONS(6152), + [anon_sym_u64] = ACTIONS(6152), + [anon_sym_isize] = ACTIONS(6152), + [anon_sym_usize] = ACTIONS(6152), + [anon_sym_f32] = ACTIONS(6152), + [anon_sym_f64] = ACTIONS(6152), + [anon_sym_c_char] = ACTIONS(6152), + [anon_sym_c_schar] = ACTIONS(6152), + [anon_sym_c_uchar] = ACTIONS(6152), + [anon_sym_c_short] = ACTIONS(6152), + [anon_sym_c_ushort] = ACTIONS(6152), + [anon_sym_c_int] = ACTIONS(6152), + [anon_sym_c_uint] = ACTIONS(6152), + [anon_sym_c_long] = ACTIONS(6152), + [anon_sym_c_ulong] = ACTIONS(6152), + [anon_sym_c_longlong] = ACTIONS(6152), + [anon_sym_c_ulonglong] = ACTIONS(6152), + [anon_sym_c_float] = ACTIONS(6152), + [anon_sym_c_double] = ACTIONS(6152), + [anon_sym_c_longdouble] = ACTIONS(6152), + [anon_sym_PLUS_EQ] = ACTIONS(6150), + [anon_sym_DASH_EQ] = ACTIONS(6150), + [anon_sym_STAR_EQ] = ACTIONS(6150), + [anon_sym_SLASH_EQ] = ACTIONS(6150), + [anon_sym_AMP_EQ] = ACTIONS(6150), + [anon_sym_PIPE_EQ] = ACTIONS(6150), + [anon_sym_xor_EQ] = ACTIONS(6150), + [anon_sym_LT_LT_EQ] = ACTIONS(6150), + [anon_sym_GT_GT_EQ] = ACTIONS(6150), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6150), + [anon_sym_return] = ACTIONS(6152), + [anon_sym_yield] = ACTIONS(6152), + [anon_sym_break] = ACTIONS(6152), + [anon_sym_continue] = ACTIONS(6152), + [anon_sym_defer] = ACTIONS(6152), + [anon_sym_errdefer] = ACTIONS(6152), + [anon_sym_if] = ACTIONS(6152), + [anon_sym_else] = ACTIONS(6152), + [anon_sym_while] = ACTIONS(6152), + [anon_sym_expand] = ACTIONS(6152), + [anon_sym_for] = ACTIONS(6152), + [anon_sym_match] = ACTIONS(6152), + [anon_sym_DOT_DOT] = ACTIONS(6152), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6150), + [anon_sym_orelse] = ACTIONS(6152), + [anon_sym_or] = ACTIONS(6152), + [anon_sym_and] = ACTIONS(6152), + [anon_sym_EQ_EQ] = ACTIONS(6150), + [anon_sym_BANG_EQ] = ACTIONS(6150), + [anon_sym_LT] = ACTIONS(6152), + [anon_sym_LT_EQ] = ACTIONS(6150), + [anon_sym_GT] = ACTIONS(6152), + [anon_sym_GT_EQ] = ACTIONS(6150), + [anon_sym_AMP] = ACTIONS(6152), + [anon_sym_xor] = ACTIONS(6152), + [anon_sym_LT_LT] = ACTIONS(6152), + [anon_sym_GT_GT] = ACTIONS(6152), + [anon_sym_LT_LT_PIPE] = ACTIONS(6152), + [anon_sym_PLUS] = ACTIONS(6152), + [anon_sym_SLASH] = ACTIONS(6152), + [anon_sym_catch] = ACTIONS(6152), + [anon_sym_TILDE] = ACTIONS(6150), + [anon_sym_try] = ACTIONS(6152), + [anon_sym_DOT] = ACTIONS(6152), + [anon_sym_CARET] = ACTIONS(6150), + [anon_sym_true] = ACTIONS(6152), + [anon_sym_false] = ACTIONS(6152), + [anon_sym_null] = ACTIONS(6152), + [anon_sym_unreachable] = ACTIONS(6152), + [anon_sym_undefined] = ACTIONS(6152), + [sym_sink] = ACTIONS(6152), + [sym_integer] = ACTIONS(6152), + [sym_float] = ACTIONS(6150), + [anon_sym_DQUOTE] = ACTIONS(6150), + [sym_multiline_string] = ACTIONS(6150), + [sym_character] = ACTIONS(6150), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6150), + }, + [STATE(3129)] = { + [sym_identifier] = ACTIONS(4964), + [anon_sym_func] = ACTIONS(4964), + [anon_sym_c_func] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_struct] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_struct_type_BANG] = ACTIONS(4962), + [anon_sym_QMARK] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_void] = ACTIONS(4964), + [anon_sym_noreturn] = ACTIONS(4964), + [anon_sym_type] = ACTIONS(4964), + [anon_sym_anyopaque] = ACTIONS(4964), + [anon_sym_bool] = ACTIONS(4964), + [anon_sym_int] = ACTIONS(4964), + [anon_sym_uint] = ACTIONS(4964), + [anon_sym_float] = ACTIONS(4964), + [anon_sym_range] = ACTIONS(4964), + [anon_sym_i8] = ACTIONS(4964), + [anon_sym_i16] = ACTIONS(4964), + [anon_sym_i32] = ACTIONS(4964), + [anon_sym_i64] = ACTIONS(4964), + [anon_sym_u8] = ACTIONS(4964), + [anon_sym_u16] = ACTIONS(4964), + [anon_sym_u32] = ACTIONS(4964), + [anon_sym_u64] = ACTIONS(4964), + [anon_sym_isize] = ACTIONS(4964), + [anon_sym_usize] = ACTIONS(4964), + [anon_sym_f32] = ACTIONS(4964), + [anon_sym_f64] = ACTIONS(4964), + [anon_sym_c_char] = ACTIONS(4964), + [anon_sym_c_schar] = ACTIONS(4964), + [anon_sym_c_uchar] = ACTIONS(4964), + [anon_sym_c_short] = ACTIONS(4964), + [anon_sym_c_ushort] = ACTIONS(4964), + [anon_sym_c_int] = ACTIONS(4964), + [anon_sym_c_uint] = ACTIONS(4964), + [anon_sym_c_long] = ACTIONS(4964), + [anon_sym_c_ulong] = ACTIONS(4964), + [anon_sym_c_longlong] = ACTIONS(4964), + [anon_sym_c_ulonglong] = ACTIONS(4964), + [anon_sym_c_float] = ACTIONS(4964), + [anon_sym_c_double] = ACTIONS(4964), + [anon_sym_c_longdouble] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_AMP_EQ] = ACTIONS(4962), + [anon_sym_PIPE_EQ] = ACTIONS(4962), + [anon_sym_xor_EQ] = ACTIONS(4962), + [anon_sym_LT_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_GT_EQ] = ACTIONS(4962), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_yield] = ACTIONS(4964), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_defer] = ACTIONS(4964), + [anon_sym_errdefer] = ACTIONS(4964), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_while] = ACTIONS(4964), + [anon_sym_expand] = ACTIONS(4964), + [anon_sym_for] = ACTIONS(4964), + [anon_sym_match] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), + [anon_sym_orelse] = ACTIONS(4964), + [anon_sym_or] = ACTIONS(4964), + [anon_sym_and] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_AMP] = ACTIONS(4964), + [anon_sym_xor] = ACTIONS(4964), + [anon_sym_LT_LT] = ACTIONS(4964), + [anon_sym_GT_GT] = ACTIONS(4964), + [anon_sym_LT_LT_PIPE] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_catch] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4964), + [anon_sym_unreachable] = ACTIONS(4964), + [anon_sym_undefined] = ACTIONS(4964), + [sym_sink] = ACTIONS(4964), + [sym_integer] = ACTIONS(4964), + [sym_float] = ACTIONS(4962), + [anon_sym_DQUOTE] = ACTIONS(4962), + [sym_multiline_string] = ACTIONS(4962), + [sym_character] = ACTIONS(4962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4962), + }, + [STATE(3130)] = { + [sym_identifier] = ACTIONS(5700), + [anon_sym_func] = ACTIONS(5700), + [anon_sym_c_func] = ACTIONS(5702), + [anon_sym_BANG] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(5702), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_LPAREN] = ACTIONS(5704), + [anon_sym_LBRACE] = ACTIONS(5704), + [anon_sym_COMMA] = ACTIONS(5698), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5700), + [anon_sym_DOLLAR] = ACTIONS(5704), + [anon_sym_PIPE] = ACTIONS(5700), + [anon_sym_struct_type_BANG] = ACTIONS(5698), + [anon_sym_QMARK] = ACTIONS(5704), + [anon_sym_AT] = ACTIONS(5698), + [anon_sym_STAR] = ACTIONS(5700), + [anon_sym_LBRACK] = ACTIONS(5704), + [anon_sym_void] = ACTIONS(5700), + [anon_sym_noreturn] = ACTIONS(5700), + [anon_sym_type] = ACTIONS(5700), + [anon_sym_anyopaque] = ACTIONS(5700), + [anon_sym_bool] = ACTIONS(5700), + [anon_sym_int] = ACTIONS(5700), + [anon_sym_uint] = ACTIONS(5700), + [anon_sym_float] = ACTIONS(5700), + [anon_sym_range] = ACTIONS(5700), + [anon_sym_i8] = ACTIONS(5700), + [anon_sym_i16] = ACTIONS(5700), + [anon_sym_i32] = ACTIONS(5700), + [anon_sym_i64] = ACTIONS(5700), + [anon_sym_u8] = ACTIONS(5700), + [anon_sym_u16] = ACTIONS(5700), + [anon_sym_u32] = ACTIONS(5700), + [anon_sym_u64] = ACTIONS(5700), + [anon_sym_isize] = ACTIONS(5700), + [anon_sym_usize] = ACTIONS(5700), + [anon_sym_f32] = ACTIONS(5700), + [anon_sym_f64] = ACTIONS(5700), + [anon_sym_c_char] = ACTIONS(5700), + [anon_sym_c_schar] = ACTIONS(5700), + [anon_sym_c_uchar] = ACTIONS(5700), + [anon_sym_c_short] = ACTIONS(5700), + [anon_sym_c_ushort] = ACTIONS(5700), + [anon_sym_c_int] = ACTIONS(5700), + [anon_sym_c_uint] = ACTIONS(5700), + [anon_sym_c_long] = ACTIONS(5700), + [anon_sym_c_ulong] = ACTIONS(5700), + [anon_sym_c_longlong] = ACTIONS(5700), + [anon_sym_c_ulonglong] = ACTIONS(5700), + [anon_sym_c_float] = ACTIONS(5700), + [anon_sym_c_double] = ACTIONS(5700), + [anon_sym_c_longdouble] = ACTIONS(5700), + [anon_sym_PLUS_EQ] = ACTIONS(5698), + [anon_sym_DASH_EQ] = ACTIONS(5698), + [anon_sym_STAR_EQ] = ACTIONS(5698), + [anon_sym_SLASH_EQ] = ACTIONS(5698), + [anon_sym_AMP_EQ] = ACTIONS(5698), + [anon_sym_PIPE_EQ] = ACTIONS(5698), + [anon_sym_xor_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_EQ] = ACTIONS(5698), + [anon_sym_GT_GT_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5698), + [anon_sym_return] = ACTIONS(5700), + [anon_sym_yield] = ACTIONS(5700), + [anon_sym_break] = ACTIONS(5700), + [anon_sym_continue] = ACTIONS(5700), + [anon_sym_defer] = ACTIONS(5700), + [anon_sym_errdefer] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5700), + [anon_sym_else] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5700), + [anon_sym_expand] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5700), + [anon_sym_match] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5704), + [anon_sym_orelse] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5700), + [anon_sym_and] = ACTIONS(5700), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5704), + [anon_sym_GT] = ACTIONS(5700), + [anon_sym_GT_EQ] = ACTIONS(5704), + [anon_sym_AMP] = ACTIONS(5700), + [anon_sym_xor] = ACTIONS(5700), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5700), + [anon_sym_LT_LT_PIPE] = ACTIONS(5700), + [anon_sym_PLUS] = ACTIONS(5700), + [anon_sym_SLASH] = ACTIONS(5700), + [anon_sym_catch] = ACTIONS(5700), + [anon_sym_TILDE] = ACTIONS(5704), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5700), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_true] = ACTIONS(5700), + [anon_sym_false] = ACTIONS(5700), + [anon_sym_null] = ACTIONS(5700), + [anon_sym_unreachable] = ACTIONS(5700), + [anon_sym_undefined] = ACTIONS(5700), + [sym_sink] = ACTIONS(5700), + [sym_integer] = ACTIONS(5700), + [sym_float] = ACTIONS(5704), + [anon_sym_DQUOTE] = ACTIONS(5704), + [sym_multiline_string] = ACTIONS(5704), + [sym_character] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5704), + }, + [STATE(3131)] = { + [sym_identifier] = ACTIONS(4968), + [anon_sym_func] = ACTIONS(4968), + [anon_sym_c_func] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_struct] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_struct_type_BANG] = ACTIONS(4966), + [anon_sym_QMARK] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_void] = ACTIONS(4968), + [anon_sym_noreturn] = ACTIONS(4968), + [anon_sym_type] = ACTIONS(4968), + [anon_sym_anyopaque] = ACTIONS(4968), + [anon_sym_bool] = ACTIONS(4968), + [anon_sym_int] = ACTIONS(4968), + [anon_sym_uint] = ACTIONS(4968), + [anon_sym_float] = ACTIONS(4968), + [anon_sym_range] = ACTIONS(4968), + [anon_sym_i8] = ACTIONS(4968), + [anon_sym_i16] = ACTIONS(4968), + [anon_sym_i32] = ACTIONS(4968), + [anon_sym_i64] = ACTIONS(4968), + [anon_sym_u8] = ACTIONS(4968), + [anon_sym_u16] = ACTIONS(4968), + [anon_sym_u32] = ACTIONS(4968), + [anon_sym_u64] = ACTIONS(4968), + [anon_sym_isize] = ACTIONS(4968), + [anon_sym_usize] = ACTIONS(4968), + [anon_sym_f32] = ACTIONS(4968), + [anon_sym_f64] = ACTIONS(4968), + [anon_sym_c_char] = ACTIONS(4968), + [anon_sym_c_schar] = ACTIONS(4968), + [anon_sym_c_uchar] = ACTIONS(4968), + [anon_sym_c_short] = ACTIONS(4968), + [anon_sym_c_ushort] = ACTIONS(4968), + [anon_sym_c_int] = ACTIONS(4968), + [anon_sym_c_uint] = ACTIONS(4968), + [anon_sym_c_long] = ACTIONS(4968), + [anon_sym_c_ulong] = ACTIONS(4968), + [anon_sym_c_longlong] = ACTIONS(4968), + [anon_sym_c_ulonglong] = ACTIONS(4968), + [anon_sym_c_float] = ACTIONS(4968), + [anon_sym_c_double] = ACTIONS(4968), + [anon_sym_c_longdouble] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_AMP_EQ] = ACTIONS(4966), + [anon_sym_PIPE_EQ] = ACTIONS(4966), + [anon_sym_xor_EQ] = ACTIONS(4966), + [anon_sym_LT_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_GT_EQ] = ACTIONS(4966), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4966), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_yield] = ACTIONS(4968), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_defer] = ACTIONS(4968), + [anon_sym_errdefer] = ACTIONS(4968), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_while] = ACTIONS(4968), + [anon_sym_expand] = ACTIONS(4968), + [anon_sym_for] = ACTIONS(4968), + [anon_sym_match] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4966), + [anon_sym_orelse] = ACTIONS(4968), + [anon_sym_or] = ACTIONS(4968), + [anon_sym_and] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4968), + [anon_sym_xor] = ACTIONS(4968), + [anon_sym_LT_LT] = ACTIONS(4968), + [anon_sym_GT_GT] = ACTIONS(4968), + [anon_sym_LT_LT_PIPE] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_catch] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4968), + [anon_sym_unreachable] = ACTIONS(4968), + [anon_sym_undefined] = ACTIONS(4968), + [sym_sink] = ACTIONS(4968), + [sym_integer] = ACTIONS(4968), + [sym_float] = ACTIONS(4966), + [anon_sym_DQUOTE] = ACTIONS(4966), + [sym_multiline_string] = ACTIONS(4966), + [sym_character] = ACTIONS(4966), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4966), + }, + [STATE(3132)] = { + [sym_identifier] = ACTIONS(4972), + [anon_sym_func] = ACTIONS(4972), + [anon_sym_c_func] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_struct] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_struct_type_BANG] = ACTIONS(4970), + [anon_sym_QMARK] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_void] = ACTIONS(4972), + [anon_sym_noreturn] = ACTIONS(4972), + [anon_sym_type] = ACTIONS(4972), + [anon_sym_anyopaque] = ACTIONS(4972), + [anon_sym_bool] = ACTIONS(4972), + [anon_sym_int] = ACTIONS(4972), + [anon_sym_uint] = ACTIONS(4972), + [anon_sym_float] = ACTIONS(4972), + [anon_sym_range] = ACTIONS(4972), + [anon_sym_i8] = ACTIONS(4972), + [anon_sym_i16] = ACTIONS(4972), + [anon_sym_i32] = ACTIONS(4972), + [anon_sym_i64] = ACTIONS(4972), + [anon_sym_u8] = ACTIONS(4972), + [anon_sym_u16] = ACTIONS(4972), + [anon_sym_u32] = ACTIONS(4972), + [anon_sym_u64] = ACTIONS(4972), + [anon_sym_isize] = ACTIONS(4972), + [anon_sym_usize] = ACTIONS(4972), + [anon_sym_f32] = ACTIONS(4972), + [anon_sym_f64] = ACTIONS(4972), + [anon_sym_c_char] = ACTIONS(4972), + [anon_sym_c_schar] = ACTIONS(4972), + [anon_sym_c_uchar] = ACTIONS(4972), + [anon_sym_c_short] = ACTIONS(4972), + [anon_sym_c_ushort] = ACTIONS(4972), + [anon_sym_c_int] = ACTIONS(4972), + [anon_sym_c_uint] = ACTIONS(4972), + [anon_sym_c_long] = ACTIONS(4972), + [anon_sym_c_ulong] = ACTIONS(4972), + [anon_sym_c_longlong] = ACTIONS(4972), + [anon_sym_c_ulonglong] = ACTIONS(4972), + [anon_sym_c_float] = ACTIONS(4972), + [anon_sym_c_double] = ACTIONS(4972), + [anon_sym_c_longdouble] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_AMP_EQ] = ACTIONS(4970), + [anon_sym_PIPE_EQ] = ACTIONS(4970), + [anon_sym_xor_EQ] = ACTIONS(4970), + [anon_sym_LT_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_GT_EQ] = ACTIONS(4970), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_defer] = ACTIONS(4972), + [anon_sym_errdefer] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_expand] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4970), + [anon_sym_orelse] = ACTIONS(4972), + [anon_sym_or] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_xor] = ACTIONS(4972), + [anon_sym_LT_LT] = ACTIONS(4972), + [anon_sym_GT_GT] = ACTIONS(4972), + [anon_sym_LT_LT_PIPE] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_catch] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_unreachable] = ACTIONS(4972), + [anon_sym_undefined] = ACTIONS(4972), + [sym_sink] = ACTIONS(4972), + [sym_integer] = ACTIONS(4972), + [sym_float] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(4970), + [sym_multiline_string] = ACTIONS(4970), + [sym_character] = ACTIONS(4970), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4970), + }, + [STATE(3133)] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_func] = ACTIONS(4976), + [anon_sym_c_func] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4974), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_struct_type_BANG] = ACTIONS(4974), + [anon_sym_QMARK] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_void] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym_type] = ACTIONS(4976), + [anon_sym_anyopaque] = ACTIONS(4976), + [anon_sym_bool] = ACTIONS(4976), + [anon_sym_int] = ACTIONS(4976), + [anon_sym_uint] = ACTIONS(4976), + [anon_sym_float] = ACTIONS(4976), + [anon_sym_range] = ACTIONS(4976), + [anon_sym_i8] = ACTIONS(4976), + [anon_sym_i16] = ACTIONS(4976), + [anon_sym_i32] = ACTIONS(4976), + [anon_sym_i64] = ACTIONS(4976), + [anon_sym_u8] = ACTIONS(4976), + [anon_sym_u16] = ACTIONS(4976), + [anon_sym_u32] = ACTIONS(4976), + [anon_sym_u64] = ACTIONS(4976), + [anon_sym_isize] = ACTIONS(4976), + [anon_sym_usize] = ACTIONS(4976), + [anon_sym_f32] = ACTIONS(4976), + [anon_sym_f64] = ACTIONS(4976), + [anon_sym_c_char] = ACTIONS(4976), + [anon_sym_c_schar] = ACTIONS(4976), + [anon_sym_c_uchar] = ACTIONS(4976), + [anon_sym_c_short] = ACTIONS(4976), + [anon_sym_c_ushort] = ACTIONS(4976), + [anon_sym_c_int] = ACTIONS(4976), + [anon_sym_c_uint] = ACTIONS(4976), + [anon_sym_c_long] = ACTIONS(4976), + [anon_sym_c_ulong] = ACTIONS(4976), + [anon_sym_c_longlong] = ACTIONS(4976), + [anon_sym_c_ulonglong] = ACTIONS(4976), + [anon_sym_c_float] = ACTIONS(4976), + [anon_sym_c_double] = ACTIONS(4976), + [anon_sym_c_longdouble] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_AMP_EQ] = ACTIONS(4974), + [anon_sym_PIPE_EQ] = ACTIONS(4974), + [anon_sym_xor_EQ] = ACTIONS(4974), + [anon_sym_LT_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_GT_EQ] = ACTIONS(4974), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4974), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_yield] = ACTIONS(4976), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_defer] = ACTIONS(4976), + [anon_sym_errdefer] = ACTIONS(4976), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_while] = ACTIONS(4976), + [anon_sym_expand] = ACTIONS(4976), + [anon_sym_for] = ACTIONS(4976), + [anon_sym_match] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), + [anon_sym_orelse] = ACTIONS(4976), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym_LT_LT_PIPE] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_catch] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_unreachable] = ACTIONS(4976), + [anon_sym_undefined] = ACTIONS(4976), + [sym_sink] = ACTIONS(4976), + [sym_integer] = ACTIONS(4976), + [sym_float] = ACTIONS(4974), + [anon_sym_DQUOTE] = ACTIONS(4974), + [sym_multiline_string] = ACTIONS(4974), + [sym_character] = ACTIONS(4974), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4974), + }, + [STATE(3134)] = { + [sym_identifier] = ACTIONS(4980), + [anon_sym_func] = ACTIONS(4980), + [anon_sym_c_func] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_struct] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_struct_type_BANG] = ACTIONS(4978), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_void] = ACTIONS(4980), + [anon_sym_noreturn] = ACTIONS(4980), + [anon_sym_type] = ACTIONS(4980), + [anon_sym_anyopaque] = ACTIONS(4980), + [anon_sym_bool] = ACTIONS(4980), + [anon_sym_int] = ACTIONS(4980), + [anon_sym_uint] = ACTIONS(4980), + [anon_sym_float] = ACTIONS(4980), + [anon_sym_range] = ACTIONS(4980), + [anon_sym_i8] = ACTIONS(4980), + [anon_sym_i16] = ACTIONS(4980), + [anon_sym_i32] = ACTIONS(4980), + [anon_sym_i64] = ACTIONS(4980), + [anon_sym_u8] = ACTIONS(4980), + [anon_sym_u16] = ACTIONS(4980), + [anon_sym_u32] = ACTIONS(4980), + [anon_sym_u64] = ACTIONS(4980), + [anon_sym_isize] = ACTIONS(4980), + [anon_sym_usize] = ACTIONS(4980), + [anon_sym_f32] = ACTIONS(4980), + [anon_sym_f64] = ACTIONS(4980), + [anon_sym_c_char] = ACTIONS(4980), + [anon_sym_c_schar] = ACTIONS(4980), + [anon_sym_c_uchar] = ACTIONS(4980), + [anon_sym_c_short] = ACTIONS(4980), + [anon_sym_c_ushort] = ACTIONS(4980), + [anon_sym_c_int] = ACTIONS(4980), + [anon_sym_c_uint] = ACTIONS(4980), + [anon_sym_c_long] = ACTIONS(4980), + [anon_sym_c_ulong] = ACTIONS(4980), + [anon_sym_c_longlong] = ACTIONS(4980), + [anon_sym_c_ulonglong] = ACTIONS(4980), + [anon_sym_c_float] = ACTIONS(4980), + [anon_sym_c_double] = ACTIONS(4980), + [anon_sym_c_longdouble] = ACTIONS(4980), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4978), + [anon_sym_xor_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4978), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_yield] = ACTIONS(4980), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_defer] = ACTIONS(4980), + [anon_sym_errdefer] = ACTIONS(4980), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_while] = ACTIONS(4980), + [anon_sym_expand] = ACTIONS(4980), + [anon_sym_for] = ACTIONS(4980), + [anon_sym_match] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4978), + [anon_sym_orelse] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4980), + [anon_sym_xor] = ACTIONS(4980), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4980), + [anon_sym_LT_LT_PIPE] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_catch] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_null] = ACTIONS(4980), + [anon_sym_unreachable] = ACTIONS(4980), + [anon_sym_undefined] = ACTIONS(4980), + [sym_sink] = ACTIONS(4980), + [sym_integer] = ACTIONS(4980), + [sym_float] = ACTIONS(4978), + [anon_sym_DQUOTE] = ACTIONS(4978), + [sym_multiline_string] = ACTIONS(4978), + [sym_character] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4978), + }, + [STATE(3135)] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_func] = ACTIONS(4984), + [anon_sym_c_func] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_struct_type_BANG] = ACTIONS(4982), + [anon_sym_QMARK] = ACTIONS(4982), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_void] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym_type] = ACTIONS(4984), + [anon_sym_anyopaque] = ACTIONS(4984), + [anon_sym_bool] = ACTIONS(4984), + [anon_sym_int] = ACTIONS(4984), + [anon_sym_uint] = ACTIONS(4984), + [anon_sym_float] = ACTIONS(4984), + [anon_sym_range] = ACTIONS(4984), + [anon_sym_i8] = ACTIONS(4984), + [anon_sym_i16] = ACTIONS(4984), + [anon_sym_i32] = ACTIONS(4984), + [anon_sym_i64] = ACTIONS(4984), + [anon_sym_u8] = ACTIONS(4984), + [anon_sym_u16] = ACTIONS(4984), + [anon_sym_u32] = ACTIONS(4984), + [anon_sym_u64] = ACTIONS(4984), + [anon_sym_isize] = ACTIONS(4984), + [anon_sym_usize] = ACTIONS(4984), + [anon_sym_f32] = ACTIONS(4984), + [anon_sym_f64] = ACTIONS(4984), + [anon_sym_c_char] = ACTIONS(4984), + [anon_sym_c_schar] = ACTIONS(4984), + [anon_sym_c_uchar] = ACTIONS(4984), + [anon_sym_c_short] = ACTIONS(4984), + [anon_sym_c_ushort] = ACTIONS(4984), + [anon_sym_c_int] = ACTIONS(4984), + [anon_sym_c_uint] = ACTIONS(4984), + [anon_sym_c_long] = ACTIONS(4984), + [anon_sym_c_ulong] = ACTIONS(4984), + [anon_sym_c_longlong] = ACTIONS(4984), + [anon_sym_c_ulonglong] = ACTIONS(4984), + [anon_sym_c_float] = ACTIONS(4984), + [anon_sym_c_double] = ACTIONS(4984), + [anon_sym_c_longdouble] = ACTIONS(4984), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_AMP_EQ] = ACTIONS(4982), + [anon_sym_PIPE_EQ] = ACTIONS(4982), + [anon_sym_xor_EQ] = ACTIONS(4982), + [anon_sym_LT_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_GT_EQ] = ACTIONS(4982), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4982), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_yield] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_defer] = ACTIONS(4984), + [anon_sym_errdefer] = ACTIONS(4984), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_expand] = ACTIONS(4984), + [anon_sym_for] = ACTIONS(4984), + [anon_sym_match] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4982), + [anon_sym_orelse] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4984), + [anon_sym_and] = ACTIONS(4984), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_xor] = ACTIONS(4984), + [anon_sym_LT_LT] = ACTIONS(4984), + [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_LT_LT_PIPE] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_catch] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4982), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_null] = ACTIONS(4984), + [anon_sym_unreachable] = ACTIONS(4984), + [anon_sym_undefined] = ACTIONS(4984), + [sym_sink] = ACTIONS(4984), + [sym_integer] = ACTIONS(4984), + [sym_float] = ACTIONS(4982), + [anon_sym_DQUOTE] = ACTIONS(4982), + [sym_multiline_string] = ACTIONS(4982), + [sym_character] = ACTIONS(4982), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4982), + }, + [STATE(3136)] = { + [sym_type] = STATE(3863), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [sym_identifier] = ACTIONS(6509), + [anon_sym_func] = ACTIONS(6512), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6518), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_mut] = ACTIONS(6524), + [anon_sym_LBRACK] = ACTIONS(6526), + [anon_sym_void] = ACTIONS(6529), + [anon_sym_noreturn] = ACTIONS(6529), + [anon_sym_type] = ACTIONS(6529), + [anon_sym_anyopaque] = ACTIONS(6529), + [anon_sym_bool] = ACTIONS(6529), + [anon_sym_int] = ACTIONS(6529), + [anon_sym_uint] = ACTIONS(6529), + [anon_sym_float] = ACTIONS(6529), + [anon_sym_range] = ACTIONS(6529), + [anon_sym_i8] = ACTIONS(6529), + [anon_sym_i16] = ACTIONS(6529), + [anon_sym_i32] = ACTIONS(6529), + [anon_sym_i64] = ACTIONS(6529), + [anon_sym_u8] = ACTIONS(6529), + [anon_sym_u16] = ACTIONS(6529), + [anon_sym_u32] = ACTIONS(6529), + [anon_sym_u64] = ACTIONS(6529), + [anon_sym_isize] = ACTIONS(6529), + [anon_sym_usize] = ACTIONS(6529), + [anon_sym_f32] = ACTIONS(6529), + [anon_sym_f64] = ACTIONS(6529), + [anon_sym_c_char] = ACTIONS(6529), + [anon_sym_c_schar] = ACTIONS(6529), + [anon_sym_c_uchar] = ACTIONS(6529), + [anon_sym_c_short] = ACTIONS(6529), + [anon_sym_c_ushort] = ACTIONS(6529), + [anon_sym_c_int] = ACTIONS(6529), + [anon_sym_c_uint] = ACTIONS(6529), + [anon_sym_c_long] = ACTIONS(6529), + [anon_sym_c_ulong] = ACTIONS(6529), + [anon_sym_c_longlong] = ACTIONS(6529), + [anon_sym_c_ulonglong] = ACTIONS(6529), + [anon_sym_c_float] = ACTIONS(6529), + [anon_sym_c_double] = ACTIONS(6529), + [anon_sym_c_longdouble] = ACTIONS(6529), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_defer] = ACTIONS(1164), + [anon_sym_errdefer] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_expand] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_unreachable] = ACTIONS(1164), + [anon_sym_undefined] = ACTIONS(1164), + [sym_sink] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [sym_float] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_multiline_string] = ACTIONS(1159), + [sym_character] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(3137)] = { + [sym_identifier] = ACTIONS(6168), + [anon_sym_func] = ACTIONS(6168), + [anon_sym_c_func] = ACTIONS(6168), + [anon_sym_BANG] = ACTIONS(6168), + [anon_sym_EQ] = ACTIONS(6168), + [anon_sym_struct] = ACTIONS(6168), + [anon_sym_LPAREN] = ACTIONS(6166), + [anon_sym_LBRACE] = ACTIONS(6166), + [anon_sym_COMMA] = ACTIONS(6166), + [anon_sym_RBRACE] = ACTIONS(6166), + [anon_sym_DASH] = ACTIONS(6168), + [anon_sym_DOLLAR] = ACTIONS(6166), + [anon_sym_PIPE] = ACTIONS(6168), + [anon_sym_struct_type_BANG] = ACTIONS(6166), + [anon_sym_QMARK] = ACTIONS(6166), + [anon_sym_AT] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(6168), + [anon_sym_LBRACK] = ACTIONS(6166), + [anon_sym_void] = ACTIONS(6168), + [anon_sym_noreturn] = ACTIONS(6168), + [anon_sym_type] = ACTIONS(6168), + [anon_sym_anyopaque] = ACTIONS(6168), + [anon_sym_bool] = ACTIONS(6168), + [anon_sym_int] = ACTIONS(6168), + [anon_sym_uint] = ACTIONS(6168), + [anon_sym_float] = ACTIONS(6168), + [anon_sym_range] = ACTIONS(6168), + [anon_sym_i8] = ACTIONS(6168), + [anon_sym_i16] = ACTIONS(6168), + [anon_sym_i32] = ACTIONS(6168), + [anon_sym_i64] = ACTIONS(6168), + [anon_sym_u8] = ACTIONS(6168), + [anon_sym_u16] = ACTIONS(6168), + [anon_sym_u32] = ACTIONS(6168), + [anon_sym_u64] = ACTIONS(6168), + [anon_sym_isize] = ACTIONS(6168), + [anon_sym_usize] = ACTIONS(6168), + [anon_sym_f32] = ACTIONS(6168), + [anon_sym_f64] = ACTIONS(6168), + [anon_sym_c_char] = ACTIONS(6168), + [anon_sym_c_schar] = ACTIONS(6168), + [anon_sym_c_uchar] = ACTIONS(6168), + [anon_sym_c_short] = ACTIONS(6168), + [anon_sym_c_ushort] = ACTIONS(6168), + [anon_sym_c_int] = ACTIONS(6168), + [anon_sym_c_uint] = ACTIONS(6168), + [anon_sym_c_long] = ACTIONS(6168), + [anon_sym_c_ulong] = ACTIONS(6168), + [anon_sym_c_longlong] = ACTIONS(6168), + [anon_sym_c_ulonglong] = ACTIONS(6168), + [anon_sym_c_float] = ACTIONS(6168), + [anon_sym_c_double] = ACTIONS(6168), + [anon_sym_c_longdouble] = ACTIONS(6168), + [anon_sym_PLUS_EQ] = ACTIONS(6166), + [anon_sym_DASH_EQ] = ACTIONS(6166), + [anon_sym_STAR_EQ] = ACTIONS(6166), + [anon_sym_SLASH_EQ] = ACTIONS(6166), + [anon_sym_AMP_EQ] = ACTIONS(6166), + [anon_sym_PIPE_EQ] = ACTIONS(6166), + [anon_sym_xor_EQ] = ACTIONS(6166), + [anon_sym_LT_LT_EQ] = ACTIONS(6166), + [anon_sym_GT_GT_EQ] = ACTIONS(6166), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6166), + [anon_sym_return] = ACTIONS(6168), + [anon_sym_yield] = ACTIONS(6168), + [anon_sym_break] = ACTIONS(6168), + [anon_sym_continue] = ACTIONS(6168), + [anon_sym_defer] = ACTIONS(6168), + [anon_sym_errdefer] = ACTIONS(6168), + [anon_sym_if] = ACTIONS(6168), + [anon_sym_else] = ACTIONS(6168), + [anon_sym_while] = ACTIONS(6168), + [anon_sym_expand] = ACTIONS(6168), + [anon_sym_for] = ACTIONS(6168), + [anon_sym_match] = ACTIONS(6168), + [anon_sym_DOT_DOT] = ACTIONS(6168), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6166), + [anon_sym_orelse] = ACTIONS(6168), + [anon_sym_or] = ACTIONS(6168), + [anon_sym_and] = ACTIONS(6168), + [anon_sym_EQ_EQ] = ACTIONS(6166), + [anon_sym_BANG_EQ] = ACTIONS(6166), + [anon_sym_LT] = ACTIONS(6168), + [anon_sym_LT_EQ] = ACTIONS(6166), + [anon_sym_GT] = ACTIONS(6168), + [anon_sym_GT_EQ] = ACTIONS(6166), + [anon_sym_AMP] = ACTIONS(6168), + [anon_sym_xor] = ACTIONS(6168), + [anon_sym_LT_LT] = ACTIONS(6168), + [anon_sym_GT_GT] = ACTIONS(6168), + [anon_sym_LT_LT_PIPE] = ACTIONS(6168), + [anon_sym_PLUS] = ACTIONS(6168), + [anon_sym_SLASH] = ACTIONS(6168), + [anon_sym_catch] = ACTIONS(6168), + [anon_sym_TILDE] = ACTIONS(6166), + [anon_sym_try] = ACTIONS(6168), + [anon_sym_DOT] = ACTIONS(6168), + [anon_sym_CARET] = ACTIONS(6166), + [anon_sym_true] = ACTIONS(6168), + [anon_sym_false] = ACTIONS(6168), + [anon_sym_null] = ACTIONS(6168), + [anon_sym_unreachable] = ACTIONS(6168), + [anon_sym_undefined] = ACTIONS(6168), + [sym_sink] = ACTIONS(6168), + [sym_integer] = ACTIONS(6168), + [sym_float] = ACTIONS(6166), + [anon_sym_DQUOTE] = ACTIONS(6166), + [sym_multiline_string] = ACTIONS(6166), + [sym_character] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6166), + }, + [STATE(3138)] = { + [sym_identifier] = ACTIONS(6172), + [anon_sym_func] = ACTIONS(6172), + [anon_sym_c_func] = ACTIONS(6172), + [anon_sym_BANG] = ACTIONS(6172), + [anon_sym_EQ] = ACTIONS(6172), + [anon_sym_struct] = ACTIONS(6172), + [anon_sym_LPAREN] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(6170), + [anon_sym_COMMA] = ACTIONS(6170), + [anon_sym_RBRACE] = ACTIONS(6170), + [anon_sym_DASH] = ACTIONS(6172), + [anon_sym_DOLLAR] = ACTIONS(6170), + [anon_sym_PIPE] = ACTIONS(6172), + [anon_sym_struct_type_BANG] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6170), + [anon_sym_AT] = ACTIONS(6170), + [anon_sym_STAR] = ACTIONS(6172), + [anon_sym_LBRACK] = ACTIONS(6170), + [anon_sym_void] = ACTIONS(6172), + [anon_sym_noreturn] = ACTIONS(6172), + [anon_sym_type] = ACTIONS(6172), + [anon_sym_anyopaque] = ACTIONS(6172), + [anon_sym_bool] = ACTIONS(6172), + [anon_sym_int] = ACTIONS(6172), + [anon_sym_uint] = ACTIONS(6172), + [anon_sym_float] = ACTIONS(6172), + [anon_sym_range] = ACTIONS(6172), + [anon_sym_i8] = ACTIONS(6172), + [anon_sym_i16] = ACTIONS(6172), + [anon_sym_i32] = ACTIONS(6172), + [anon_sym_i64] = ACTIONS(6172), + [anon_sym_u8] = ACTIONS(6172), + [anon_sym_u16] = ACTIONS(6172), + [anon_sym_u32] = ACTIONS(6172), + [anon_sym_u64] = ACTIONS(6172), + [anon_sym_isize] = ACTIONS(6172), + [anon_sym_usize] = ACTIONS(6172), + [anon_sym_f32] = ACTIONS(6172), + [anon_sym_f64] = ACTIONS(6172), + [anon_sym_c_char] = ACTIONS(6172), + [anon_sym_c_schar] = ACTIONS(6172), + [anon_sym_c_uchar] = ACTIONS(6172), + [anon_sym_c_short] = ACTIONS(6172), + [anon_sym_c_ushort] = ACTIONS(6172), + [anon_sym_c_int] = ACTIONS(6172), + [anon_sym_c_uint] = ACTIONS(6172), + [anon_sym_c_long] = ACTIONS(6172), + [anon_sym_c_ulong] = ACTIONS(6172), + [anon_sym_c_longlong] = ACTIONS(6172), + [anon_sym_c_ulonglong] = ACTIONS(6172), + [anon_sym_c_float] = ACTIONS(6172), + [anon_sym_c_double] = ACTIONS(6172), + [anon_sym_c_longdouble] = ACTIONS(6172), + [anon_sym_PLUS_EQ] = ACTIONS(6170), + [anon_sym_DASH_EQ] = ACTIONS(6170), + [anon_sym_STAR_EQ] = ACTIONS(6170), + [anon_sym_SLASH_EQ] = ACTIONS(6170), + [anon_sym_AMP_EQ] = ACTIONS(6170), + [anon_sym_PIPE_EQ] = ACTIONS(6170), + [anon_sym_xor_EQ] = ACTIONS(6170), + [anon_sym_LT_LT_EQ] = ACTIONS(6170), + [anon_sym_GT_GT_EQ] = ACTIONS(6170), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6170), + [anon_sym_return] = ACTIONS(6172), + [anon_sym_yield] = ACTIONS(6172), + [anon_sym_break] = ACTIONS(6172), + [anon_sym_continue] = ACTIONS(6172), + [anon_sym_defer] = ACTIONS(6172), + [anon_sym_errdefer] = ACTIONS(6172), + [anon_sym_if] = ACTIONS(6172), + [anon_sym_else] = ACTIONS(6172), + [anon_sym_while] = ACTIONS(6172), + [anon_sym_expand] = ACTIONS(6172), + [anon_sym_for] = ACTIONS(6172), + [anon_sym_match] = ACTIONS(6172), + [anon_sym_DOT_DOT] = ACTIONS(6172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6170), + [anon_sym_orelse] = ACTIONS(6172), + [anon_sym_or] = ACTIONS(6172), + [anon_sym_and] = ACTIONS(6172), + [anon_sym_EQ_EQ] = ACTIONS(6170), + [anon_sym_BANG_EQ] = ACTIONS(6170), + [anon_sym_LT] = ACTIONS(6172), + [anon_sym_LT_EQ] = ACTIONS(6170), + [anon_sym_GT] = ACTIONS(6172), + [anon_sym_GT_EQ] = ACTIONS(6170), + [anon_sym_AMP] = ACTIONS(6172), + [anon_sym_xor] = ACTIONS(6172), + [anon_sym_LT_LT] = ACTIONS(6172), + [anon_sym_GT_GT] = ACTIONS(6172), + [anon_sym_LT_LT_PIPE] = ACTIONS(6172), + [anon_sym_PLUS] = ACTIONS(6172), + [anon_sym_SLASH] = ACTIONS(6172), + [anon_sym_catch] = ACTIONS(6172), + [anon_sym_TILDE] = ACTIONS(6170), + [anon_sym_try] = ACTIONS(6172), + [anon_sym_DOT] = ACTIONS(6172), + [anon_sym_CARET] = ACTIONS(6170), + [anon_sym_true] = ACTIONS(6172), + [anon_sym_false] = ACTIONS(6172), + [anon_sym_null] = ACTIONS(6172), + [anon_sym_unreachable] = ACTIONS(6172), + [anon_sym_undefined] = ACTIONS(6172), + [sym_sink] = ACTIONS(6172), + [sym_integer] = ACTIONS(6172), + [sym_float] = ACTIONS(6170), + [anon_sym_DQUOTE] = ACTIONS(6170), + [sym_multiline_string] = ACTIONS(6170), + [sym_character] = ACTIONS(6170), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6170), + }, + [STATE(3139)] = { + [sym_identifier] = ACTIONS(6176), + [anon_sym_func] = ACTIONS(6176), + [anon_sym_c_func] = ACTIONS(6176), + [anon_sym_BANG] = ACTIONS(6176), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_struct] = ACTIONS(6176), + [anon_sym_LPAREN] = ACTIONS(6174), + [anon_sym_LBRACE] = ACTIONS(6174), + [anon_sym_COMMA] = ACTIONS(6174), + [anon_sym_RBRACE] = ACTIONS(6174), + [anon_sym_DASH] = ACTIONS(6176), + [anon_sym_DOLLAR] = ACTIONS(6174), + [anon_sym_PIPE] = ACTIONS(6176), + [anon_sym_struct_type_BANG] = ACTIONS(6174), + [anon_sym_QMARK] = ACTIONS(6174), + [anon_sym_AT] = ACTIONS(6174), + [anon_sym_STAR] = ACTIONS(6176), + [anon_sym_LBRACK] = ACTIONS(6174), + [anon_sym_void] = ACTIONS(6176), + [anon_sym_noreturn] = ACTIONS(6176), + [anon_sym_type] = ACTIONS(6176), + [anon_sym_anyopaque] = ACTIONS(6176), + [anon_sym_bool] = ACTIONS(6176), + [anon_sym_int] = ACTIONS(6176), + [anon_sym_uint] = ACTIONS(6176), + [anon_sym_float] = ACTIONS(6176), + [anon_sym_range] = ACTIONS(6176), + [anon_sym_i8] = ACTIONS(6176), + [anon_sym_i16] = ACTIONS(6176), + [anon_sym_i32] = ACTIONS(6176), + [anon_sym_i64] = ACTIONS(6176), + [anon_sym_u8] = ACTIONS(6176), + [anon_sym_u16] = ACTIONS(6176), + [anon_sym_u32] = ACTIONS(6176), + [anon_sym_u64] = ACTIONS(6176), + [anon_sym_isize] = ACTIONS(6176), + [anon_sym_usize] = ACTIONS(6176), + [anon_sym_f32] = ACTIONS(6176), + [anon_sym_f64] = ACTIONS(6176), + [anon_sym_c_char] = ACTIONS(6176), + [anon_sym_c_schar] = ACTIONS(6176), + [anon_sym_c_uchar] = ACTIONS(6176), + [anon_sym_c_short] = ACTIONS(6176), + [anon_sym_c_ushort] = ACTIONS(6176), + [anon_sym_c_int] = ACTIONS(6176), + [anon_sym_c_uint] = ACTIONS(6176), + [anon_sym_c_long] = ACTIONS(6176), + [anon_sym_c_ulong] = ACTIONS(6176), + [anon_sym_c_longlong] = ACTIONS(6176), + [anon_sym_c_ulonglong] = ACTIONS(6176), + [anon_sym_c_float] = ACTIONS(6176), + [anon_sym_c_double] = ACTIONS(6176), + [anon_sym_c_longdouble] = ACTIONS(6176), + [anon_sym_PLUS_EQ] = ACTIONS(6174), + [anon_sym_DASH_EQ] = ACTIONS(6174), + [anon_sym_STAR_EQ] = ACTIONS(6174), + [anon_sym_SLASH_EQ] = ACTIONS(6174), + [anon_sym_AMP_EQ] = ACTIONS(6174), + [anon_sym_PIPE_EQ] = ACTIONS(6174), + [anon_sym_xor_EQ] = ACTIONS(6174), + [anon_sym_LT_LT_EQ] = ACTIONS(6174), + [anon_sym_GT_GT_EQ] = ACTIONS(6174), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6174), + [anon_sym_return] = ACTIONS(6176), + [anon_sym_yield] = ACTIONS(6176), + [anon_sym_break] = ACTIONS(6176), + [anon_sym_continue] = ACTIONS(6176), + [anon_sym_defer] = ACTIONS(6176), + [anon_sym_errdefer] = ACTIONS(6176), + [anon_sym_if] = ACTIONS(6176), + [anon_sym_else] = ACTIONS(6176), + [anon_sym_while] = ACTIONS(6176), + [anon_sym_expand] = ACTIONS(6176), + [anon_sym_for] = ACTIONS(6176), + [anon_sym_match] = ACTIONS(6176), + [anon_sym_DOT_DOT] = ACTIONS(6176), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6174), + [anon_sym_orelse] = ACTIONS(6176), + [anon_sym_or] = ACTIONS(6176), + [anon_sym_and] = ACTIONS(6176), + [anon_sym_EQ_EQ] = ACTIONS(6174), + [anon_sym_BANG_EQ] = ACTIONS(6174), + [anon_sym_LT] = ACTIONS(6176), + [anon_sym_LT_EQ] = ACTIONS(6174), + [anon_sym_GT] = ACTIONS(6176), + [anon_sym_GT_EQ] = ACTIONS(6174), + [anon_sym_AMP] = ACTIONS(6176), + [anon_sym_xor] = ACTIONS(6176), + [anon_sym_LT_LT] = ACTIONS(6176), + [anon_sym_GT_GT] = ACTIONS(6176), + [anon_sym_LT_LT_PIPE] = ACTIONS(6176), + [anon_sym_PLUS] = ACTIONS(6176), + [anon_sym_SLASH] = ACTIONS(6176), + [anon_sym_catch] = ACTIONS(6176), + [anon_sym_TILDE] = ACTIONS(6174), + [anon_sym_try] = ACTIONS(6176), + [anon_sym_DOT] = ACTIONS(6176), + [anon_sym_CARET] = ACTIONS(6174), + [anon_sym_true] = ACTIONS(6176), + [anon_sym_false] = ACTIONS(6176), + [anon_sym_null] = ACTIONS(6176), + [anon_sym_unreachable] = ACTIONS(6176), + [anon_sym_undefined] = ACTIONS(6176), + [sym_sink] = ACTIONS(6176), + [sym_integer] = ACTIONS(6176), + [sym_float] = ACTIONS(6174), + [anon_sym_DQUOTE] = ACTIONS(6174), + [sym_multiline_string] = ACTIONS(6174), + [sym_character] = ACTIONS(6174), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6174), + }, + [STATE(3140)] = { + [sym_identifier] = ACTIONS(6186), + [anon_sym_func] = ACTIONS(6186), + [anon_sym_c_func] = ACTIONS(6186), + [anon_sym_BANG] = ACTIONS(6186), + [anon_sym_EQ] = ACTIONS(6186), + [anon_sym_struct] = ACTIONS(6186), + [anon_sym_LPAREN] = ACTIONS(6184), + [anon_sym_LBRACE] = ACTIONS(6184), + [anon_sym_COMMA] = ACTIONS(6184), + [anon_sym_RBRACE] = ACTIONS(6184), + [anon_sym_DASH] = ACTIONS(6186), + [anon_sym_DOLLAR] = ACTIONS(6184), + [anon_sym_PIPE] = ACTIONS(6186), + [anon_sym_struct_type_BANG] = ACTIONS(6184), + [anon_sym_QMARK] = ACTIONS(6184), + [anon_sym_AT] = ACTIONS(6184), + [anon_sym_STAR] = ACTIONS(6186), + [anon_sym_LBRACK] = ACTIONS(6184), + [anon_sym_void] = ACTIONS(6186), + [anon_sym_noreturn] = ACTIONS(6186), + [anon_sym_type] = ACTIONS(6186), + [anon_sym_anyopaque] = ACTIONS(6186), + [anon_sym_bool] = ACTIONS(6186), + [anon_sym_int] = ACTIONS(6186), + [anon_sym_uint] = ACTIONS(6186), + [anon_sym_float] = ACTIONS(6186), + [anon_sym_range] = ACTIONS(6186), + [anon_sym_i8] = ACTIONS(6186), + [anon_sym_i16] = ACTIONS(6186), + [anon_sym_i32] = ACTIONS(6186), + [anon_sym_i64] = ACTIONS(6186), + [anon_sym_u8] = ACTIONS(6186), + [anon_sym_u16] = ACTIONS(6186), + [anon_sym_u32] = ACTIONS(6186), + [anon_sym_u64] = ACTIONS(6186), + [anon_sym_isize] = ACTIONS(6186), + [anon_sym_usize] = ACTIONS(6186), + [anon_sym_f32] = ACTIONS(6186), + [anon_sym_f64] = ACTIONS(6186), + [anon_sym_c_char] = ACTIONS(6186), + [anon_sym_c_schar] = ACTIONS(6186), + [anon_sym_c_uchar] = ACTIONS(6186), + [anon_sym_c_short] = ACTIONS(6186), + [anon_sym_c_ushort] = ACTIONS(6186), + [anon_sym_c_int] = ACTIONS(6186), + [anon_sym_c_uint] = ACTIONS(6186), + [anon_sym_c_long] = ACTIONS(6186), + [anon_sym_c_ulong] = ACTIONS(6186), + [anon_sym_c_longlong] = ACTIONS(6186), + [anon_sym_c_ulonglong] = ACTIONS(6186), + [anon_sym_c_float] = ACTIONS(6186), + [anon_sym_c_double] = ACTIONS(6186), + [anon_sym_c_longdouble] = ACTIONS(6186), + [anon_sym_PLUS_EQ] = ACTIONS(6184), + [anon_sym_DASH_EQ] = ACTIONS(6184), + [anon_sym_STAR_EQ] = ACTIONS(6184), + [anon_sym_SLASH_EQ] = ACTIONS(6184), + [anon_sym_AMP_EQ] = ACTIONS(6184), + [anon_sym_PIPE_EQ] = ACTIONS(6184), + [anon_sym_xor_EQ] = ACTIONS(6184), + [anon_sym_LT_LT_EQ] = ACTIONS(6184), + [anon_sym_GT_GT_EQ] = ACTIONS(6184), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6184), + [anon_sym_return] = ACTIONS(6186), + [anon_sym_yield] = ACTIONS(6186), + [anon_sym_break] = ACTIONS(6186), + [anon_sym_continue] = ACTIONS(6186), + [anon_sym_defer] = ACTIONS(6186), + [anon_sym_errdefer] = ACTIONS(6186), + [anon_sym_if] = ACTIONS(6186), + [anon_sym_else] = ACTIONS(6186), + [anon_sym_while] = ACTIONS(6186), + [anon_sym_expand] = ACTIONS(6186), + [anon_sym_for] = ACTIONS(6186), + [anon_sym_match] = ACTIONS(6186), + [anon_sym_DOT_DOT] = ACTIONS(6186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6184), + [anon_sym_orelse] = ACTIONS(6186), + [anon_sym_or] = ACTIONS(6186), + [anon_sym_and] = ACTIONS(6186), + [anon_sym_EQ_EQ] = ACTIONS(6184), + [anon_sym_BANG_EQ] = ACTIONS(6184), + [anon_sym_LT] = ACTIONS(6186), + [anon_sym_LT_EQ] = ACTIONS(6184), + [anon_sym_GT] = ACTIONS(6186), + [anon_sym_GT_EQ] = ACTIONS(6184), + [anon_sym_AMP] = ACTIONS(6186), + [anon_sym_xor] = ACTIONS(6186), + [anon_sym_LT_LT] = ACTIONS(6186), + [anon_sym_GT_GT] = ACTIONS(6186), + [anon_sym_LT_LT_PIPE] = ACTIONS(6186), + [anon_sym_PLUS] = ACTIONS(6186), + [anon_sym_SLASH] = ACTIONS(6186), + [anon_sym_catch] = ACTIONS(6186), + [anon_sym_TILDE] = ACTIONS(6184), + [anon_sym_try] = ACTIONS(6186), + [anon_sym_DOT] = ACTIONS(6186), + [anon_sym_CARET] = ACTIONS(6184), + [anon_sym_true] = ACTIONS(6186), + [anon_sym_false] = ACTIONS(6186), + [anon_sym_null] = ACTIONS(6186), + [anon_sym_unreachable] = ACTIONS(6186), + [anon_sym_undefined] = ACTIONS(6186), + [sym_sink] = ACTIONS(6186), + [sym_integer] = ACTIONS(6186), + [sym_float] = ACTIONS(6184), + [anon_sym_DQUOTE] = ACTIONS(6184), + [sym_multiline_string] = ACTIONS(6184), + [sym_character] = ACTIONS(6184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6184), + }, + [STATE(3141)] = { + [sym_identifier] = ACTIONS(6190), + [anon_sym_func] = ACTIONS(6190), + [anon_sym_c_func] = ACTIONS(6190), + [anon_sym_BANG] = ACTIONS(6190), + [anon_sym_EQ] = ACTIONS(6190), + [anon_sym_struct] = ACTIONS(6190), + [anon_sym_LPAREN] = ACTIONS(6188), + [anon_sym_LBRACE] = ACTIONS(6188), + [anon_sym_COMMA] = ACTIONS(6188), + [anon_sym_RBRACE] = ACTIONS(6188), + [anon_sym_DASH] = ACTIONS(6190), + [anon_sym_DOLLAR] = ACTIONS(6188), + [anon_sym_PIPE] = ACTIONS(6190), + [anon_sym_struct_type_BANG] = ACTIONS(6188), + [anon_sym_QMARK] = ACTIONS(6188), + [anon_sym_AT] = ACTIONS(6188), + [anon_sym_STAR] = ACTIONS(6190), + [anon_sym_LBRACK] = ACTIONS(6188), + [anon_sym_void] = ACTIONS(6190), + [anon_sym_noreturn] = ACTIONS(6190), + [anon_sym_type] = ACTIONS(6190), + [anon_sym_anyopaque] = ACTIONS(6190), + [anon_sym_bool] = ACTIONS(6190), + [anon_sym_int] = ACTIONS(6190), + [anon_sym_uint] = ACTIONS(6190), + [anon_sym_float] = ACTIONS(6190), + [anon_sym_range] = ACTIONS(6190), + [anon_sym_i8] = ACTIONS(6190), + [anon_sym_i16] = ACTIONS(6190), + [anon_sym_i32] = ACTIONS(6190), + [anon_sym_i64] = ACTIONS(6190), + [anon_sym_u8] = ACTIONS(6190), + [anon_sym_u16] = ACTIONS(6190), + [anon_sym_u32] = ACTIONS(6190), + [anon_sym_u64] = ACTIONS(6190), + [anon_sym_isize] = ACTIONS(6190), + [anon_sym_usize] = ACTIONS(6190), + [anon_sym_f32] = ACTIONS(6190), + [anon_sym_f64] = ACTIONS(6190), + [anon_sym_c_char] = ACTIONS(6190), + [anon_sym_c_schar] = ACTIONS(6190), + [anon_sym_c_uchar] = ACTIONS(6190), + [anon_sym_c_short] = ACTIONS(6190), + [anon_sym_c_ushort] = ACTIONS(6190), + [anon_sym_c_int] = ACTIONS(6190), + [anon_sym_c_uint] = ACTIONS(6190), + [anon_sym_c_long] = ACTIONS(6190), + [anon_sym_c_ulong] = ACTIONS(6190), + [anon_sym_c_longlong] = ACTIONS(6190), + [anon_sym_c_ulonglong] = ACTIONS(6190), + [anon_sym_c_float] = ACTIONS(6190), + [anon_sym_c_double] = ACTIONS(6190), + [anon_sym_c_longdouble] = ACTIONS(6190), + [anon_sym_PLUS_EQ] = ACTIONS(6188), + [anon_sym_DASH_EQ] = ACTIONS(6188), + [anon_sym_STAR_EQ] = ACTIONS(6188), + [anon_sym_SLASH_EQ] = ACTIONS(6188), + [anon_sym_AMP_EQ] = ACTIONS(6188), + [anon_sym_PIPE_EQ] = ACTIONS(6188), + [anon_sym_xor_EQ] = ACTIONS(6188), + [anon_sym_LT_LT_EQ] = ACTIONS(6188), + [anon_sym_GT_GT_EQ] = ACTIONS(6188), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6188), + [anon_sym_return] = ACTIONS(6190), + [anon_sym_yield] = ACTIONS(6190), + [anon_sym_break] = ACTIONS(6190), + [anon_sym_continue] = ACTIONS(6190), + [anon_sym_defer] = ACTIONS(6190), + [anon_sym_errdefer] = ACTIONS(6190), + [anon_sym_if] = ACTIONS(6190), + [anon_sym_else] = ACTIONS(6190), + [anon_sym_while] = ACTIONS(6190), + [anon_sym_expand] = ACTIONS(6190), + [anon_sym_for] = ACTIONS(6190), + [anon_sym_match] = ACTIONS(6190), + [anon_sym_DOT_DOT] = ACTIONS(6190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6188), + [anon_sym_orelse] = ACTIONS(6190), + [anon_sym_or] = ACTIONS(6190), + [anon_sym_and] = ACTIONS(6190), + [anon_sym_EQ_EQ] = ACTIONS(6188), + [anon_sym_BANG_EQ] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(6190), + [anon_sym_LT_EQ] = ACTIONS(6188), + [anon_sym_GT] = ACTIONS(6190), + [anon_sym_GT_EQ] = ACTIONS(6188), + [anon_sym_AMP] = ACTIONS(6190), + [anon_sym_xor] = ACTIONS(6190), + [anon_sym_LT_LT] = ACTIONS(6190), + [anon_sym_GT_GT] = ACTIONS(6190), + [anon_sym_LT_LT_PIPE] = ACTIONS(6190), + [anon_sym_PLUS] = ACTIONS(6190), + [anon_sym_SLASH] = ACTIONS(6190), + [anon_sym_catch] = ACTIONS(6190), + [anon_sym_TILDE] = ACTIONS(6188), + [anon_sym_try] = ACTIONS(6190), + [anon_sym_DOT] = ACTIONS(6190), + [anon_sym_CARET] = ACTIONS(6188), + [anon_sym_true] = ACTIONS(6190), + [anon_sym_false] = ACTIONS(6190), + [anon_sym_null] = ACTIONS(6190), + [anon_sym_unreachable] = ACTIONS(6190), + [anon_sym_undefined] = ACTIONS(6190), + [sym_sink] = ACTIONS(6190), + [sym_integer] = ACTIONS(6190), + [sym_float] = ACTIONS(6188), + [anon_sym_DQUOTE] = ACTIONS(6188), + [sym_multiline_string] = ACTIONS(6188), + [sym_character] = ACTIONS(6188), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6188), + }, + [STATE(3142)] = { + [sym_identifier] = ACTIONS(6194), + [anon_sym_func] = ACTIONS(6194), + [anon_sym_c_func] = ACTIONS(6194), + [anon_sym_BANG] = ACTIONS(6194), + [anon_sym_EQ] = ACTIONS(6194), + [anon_sym_struct] = ACTIONS(6194), + [anon_sym_LPAREN] = ACTIONS(6192), + [anon_sym_LBRACE] = ACTIONS(6192), + [anon_sym_COMMA] = ACTIONS(6192), + [anon_sym_RBRACE] = ACTIONS(6192), + [anon_sym_DASH] = ACTIONS(6194), + [anon_sym_DOLLAR] = ACTIONS(6192), + [anon_sym_PIPE] = ACTIONS(6194), + [anon_sym_struct_type_BANG] = ACTIONS(6192), + [anon_sym_QMARK] = ACTIONS(6192), + [anon_sym_AT] = ACTIONS(6192), + [anon_sym_STAR] = ACTIONS(6194), + [anon_sym_LBRACK] = ACTIONS(6192), + [anon_sym_void] = ACTIONS(6194), + [anon_sym_noreturn] = ACTIONS(6194), + [anon_sym_type] = ACTIONS(6194), + [anon_sym_anyopaque] = ACTIONS(6194), + [anon_sym_bool] = ACTIONS(6194), + [anon_sym_int] = ACTIONS(6194), + [anon_sym_uint] = ACTIONS(6194), + [anon_sym_float] = ACTIONS(6194), + [anon_sym_range] = ACTIONS(6194), + [anon_sym_i8] = ACTIONS(6194), + [anon_sym_i16] = ACTIONS(6194), + [anon_sym_i32] = ACTIONS(6194), + [anon_sym_i64] = ACTIONS(6194), + [anon_sym_u8] = ACTIONS(6194), + [anon_sym_u16] = ACTIONS(6194), + [anon_sym_u32] = ACTIONS(6194), + [anon_sym_u64] = ACTIONS(6194), + [anon_sym_isize] = ACTIONS(6194), + [anon_sym_usize] = ACTIONS(6194), + [anon_sym_f32] = ACTIONS(6194), + [anon_sym_f64] = ACTIONS(6194), + [anon_sym_c_char] = ACTIONS(6194), + [anon_sym_c_schar] = ACTIONS(6194), + [anon_sym_c_uchar] = ACTIONS(6194), + [anon_sym_c_short] = ACTIONS(6194), + [anon_sym_c_ushort] = ACTIONS(6194), + [anon_sym_c_int] = ACTIONS(6194), + [anon_sym_c_uint] = ACTIONS(6194), + [anon_sym_c_long] = ACTIONS(6194), + [anon_sym_c_ulong] = ACTIONS(6194), + [anon_sym_c_longlong] = ACTIONS(6194), + [anon_sym_c_ulonglong] = ACTIONS(6194), + [anon_sym_c_float] = ACTIONS(6194), + [anon_sym_c_double] = ACTIONS(6194), + [anon_sym_c_longdouble] = ACTIONS(6194), + [anon_sym_PLUS_EQ] = ACTIONS(6192), + [anon_sym_DASH_EQ] = ACTIONS(6192), + [anon_sym_STAR_EQ] = ACTIONS(6192), + [anon_sym_SLASH_EQ] = ACTIONS(6192), + [anon_sym_AMP_EQ] = ACTIONS(6192), + [anon_sym_PIPE_EQ] = ACTIONS(6192), + [anon_sym_xor_EQ] = ACTIONS(6192), + [anon_sym_LT_LT_EQ] = ACTIONS(6192), + [anon_sym_GT_GT_EQ] = ACTIONS(6192), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6192), + [anon_sym_return] = ACTIONS(6194), + [anon_sym_yield] = ACTIONS(6194), + [anon_sym_break] = ACTIONS(6194), + [anon_sym_continue] = ACTIONS(6194), + [anon_sym_defer] = ACTIONS(6194), + [anon_sym_errdefer] = ACTIONS(6194), + [anon_sym_if] = ACTIONS(6194), + [anon_sym_else] = ACTIONS(6194), + [anon_sym_while] = ACTIONS(6194), + [anon_sym_expand] = ACTIONS(6194), + [anon_sym_for] = ACTIONS(6194), + [anon_sym_match] = ACTIONS(6194), + [anon_sym_DOT_DOT] = ACTIONS(6194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6192), + [anon_sym_orelse] = ACTIONS(6194), + [anon_sym_or] = ACTIONS(6194), + [anon_sym_and] = ACTIONS(6194), + [anon_sym_EQ_EQ] = ACTIONS(6192), + [anon_sym_BANG_EQ] = ACTIONS(6192), + [anon_sym_LT] = ACTIONS(6194), + [anon_sym_LT_EQ] = ACTIONS(6192), + [anon_sym_GT] = ACTIONS(6194), + [anon_sym_GT_EQ] = ACTIONS(6192), + [anon_sym_AMP] = ACTIONS(6194), + [anon_sym_xor] = ACTIONS(6194), + [anon_sym_LT_LT] = ACTIONS(6194), + [anon_sym_GT_GT] = ACTIONS(6194), + [anon_sym_LT_LT_PIPE] = ACTIONS(6194), + [anon_sym_PLUS] = ACTIONS(6194), + [anon_sym_SLASH] = ACTIONS(6194), + [anon_sym_catch] = ACTIONS(6194), + [anon_sym_TILDE] = ACTIONS(6192), + [anon_sym_try] = ACTIONS(6194), + [anon_sym_DOT] = ACTIONS(6194), + [anon_sym_CARET] = ACTIONS(6192), + [anon_sym_true] = ACTIONS(6194), + [anon_sym_false] = ACTIONS(6194), + [anon_sym_null] = ACTIONS(6194), + [anon_sym_unreachable] = ACTIONS(6194), + [anon_sym_undefined] = ACTIONS(6194), + [sym_sink] = ACTIONS(6194), + [sym_integer] = ACTIONS(6194), + [sym_float] = ACTIONS(6192), + [anon_sym_DQUOTE] = ACTIONS(6192), + [sym_multiline_string] = ACTIONS(6192), + [sym_character] = ACTIONS(6192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6192), + }, + [STATE(3143)] = { + [sym_identifier] = ACTIONS(6198), + [anon_sym_func] = ACTIONS(6198), + [anon_sym_c_func] = ACTIONS(6198), + [anon_sym_BANG] = ACTIONS(6198), + [anon_sym_EQ] = ACTIONS(6198), + [anon_sym_struct] = ACTIONS(6198), + [anon_sym_LPAREN] = ACTIONS(6196), + [anon_sym_LBRACE] = ACTIONS(6196), + [anon_sym_COMMA] = ACTIONS(6196), + [anon_sym_RBRACE] = ACTIONS(6196), + [anon_sym_DASH] = ACTIONS(6198), + [anon_sym_DOLLAR] = ACTIONS(6196), + [anon_sym_PIPE] = ACTIONS(6198), + [anon_sym_struct_type_BANG] = ACTIONS(6196), + [anon_sym_QMARK] = ACTIONS(6196), + [anon_sym_AT] = ACTIONS(6196), + [anon_sym_STAR] = ACTIONS(6198), + [anon_sym_LBRACK] = ACTIONS(6196), + [anon_sym_void] = ACTIONS(6198), + [anon_sym_noreturn] = ACTIONS(6198), + [anon_sym_type] = ACTIONS(6198), + [anon_sym_anyopaque] = ACTIONS(6198), + [anon_sym_bool] = ACTIONS(6198), + [anon_sym_int] = ACTIONS(6198), + [anon_sym_uint] = ACTIONS(6198), + [anon_sym_float] = ACTIONS(6198), + [anon_sym_range] = ACTIONS(6198), + [anon_sym_i8] = ACTIONS(6198), + [anon_sym_i16] = ACTIONS(6198), + [anon_sym_i32] = ACTIONS(6198), + [anon_sym_i64] = ACTIONS(6198), + [anon_sym_u8] = ACTIONS(6198), + [anon_sym_u16] = ACTIONS(6198), + [anon_sym_u32] = ACTIONS(6198), + [anon_sym_u64] = ACTIONS(6198), + [anon_sym_isize] = ACTIONS(6198), + [anon_sym_usize] = ACTIONS(6198), + [anon_sym_f32] = ACTIONS(6198), + [anon_sym_f64] = ACTIONS(6198), + [anon_sym_c_char] = ACTIONS(6198), + [anon_sym_c_schar] = ACTIONS(6198), + [anon_sym_c_uchar] = ACTIONS(6198), + [anon_sym_c_short] = ACTIONS(6198), + [anon_sym_c_ushort] = ACTIONS(6198), + [anon_sym_c_int] = ACTIONS(6198), + [anon_sym_c_uint] = ACTIONS(6198), + [anon_sym_c_long] = ACTIONS(6198), + [anon_sym_c_ulong] = ACTIONS(6198), + [anon_sym_c_longlong] = ACTIONS(6198), + [anon_sym_c_ulonglong] = ACTIONS(6198), + [anon_sym_c_float] = ACTIONS(6198), + [anon_sym_c_double] = ACTIONS(6198), + [anon_sym_c_longdouble] = ACTIONS(6198), + [anon_sym_PLUS_EQ] = ACTIONS(6196), + [anon_sym_DASH_EQ] = ACTIONS(6196), + [anon_sym_STAR_EQ] = ACTIONS(6196), + [anon_sym_SLASH_EQ] = ACTIONS(6196), + [anon_sym_AMP_EQ] = ACTIONS(6196), + [anon_sym_PIPE_EQ] = ACTIONS(6196), + [anon_sym_xor_EQ] = ACTIONS(6196), + [anon_sym_LT_LT_EQ] = ACTIONS(6196), + [anon_sym_GT_GT_EQ] = ACTIONS(6196), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6196), + [anon_sym_return] = ACTIONS(6198), + [anon_sym_yield] = ACTIONS(6198), + [anon_sym_break] = ACTIONS(6198), + [anon_sym_continue] = ACTIONS(6198), + [anon_sym_defer] = ACTIONS(6198), + [anon_sym_errdefer] = ACTIONS(6198), + [anon_sym_if] = ACTIONS(6198), + [anon_sym_else] = ACTIONS(6198), + [anon_sym_while] = ACTIONS(6198), + [anon_sym_expand] = ACTIONS(6198), + [anon_sym_for] = ACTIONS(6198), + [anon_sym_match] = ACTIONS(6198), + [anon_sym_DOT_DOT] = ACTIONS(6198), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6196), + [anon_sym_orelse] = ACTIONS(6198), + [anon_sym_or] = ACTIONS(6198), + [anon_sym_and] = ACTIONS(6198), + [anon_sym_EQ_EQ] = ACTIONS(6196), + [anon_sym_BANG_EQ] = ACTIONS(6196), + [anon_sym_LT] = ACTIONS(6198), + [anon_sym_LT_EQ] = ACTIONS(6196), + [anon_sym_GT] = ACTIONS(6198), + [anon_sym_GT_EQ] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6198), + [anon_sym_xor] = ACTIONS(6198), + [anon_sym_LT_LT] = ACTIONS(6198), + [anon_sym_GT_GT] = ACTIONS(6198), + [anon_sym_LT_LT_PIPE] = ACTIONS(6198), + [anon_sym_PLUS] = ACTIONS(6198), + [anon_sym_SLASH] = ACTIONS(6198), + [anon_sym_catch] = ACTIONS(6198), + [anon_sym_TILDE] = ACTIONS(6196), + [anon_sym_try] = ACTIONS(6198), + [anon_sym_DOT] = ACTIONS(6198), + [anon_sym_CARET] = ACTIONS(6196), + [anon_sym_true] = ACTIONS(6198), + [anon_sym_false] = ACTIONS(6198), + [anon_sym_null] = ACTIONS(6198), + [anon_sym_unreachable] = ACTIONS(6198), + [anon_sym_undefined] = ACTIONS(6198), + [sym_sink] = ACTIONS(6198), + [sym_integer] = ACTIONS(6198), + [sym_float] = ACTIONS(6196), + [anon_sym_DQUOTE] = ACTIONS(6196), + [sym_multiline_string] = ACTIONS(6196), + [sym_character] = ACTIONS(6196), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6196), + }, + [STATE(3144)] = { + [sym_identifier] = 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(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_struct_type_BANG] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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(1198), + [anon_sym_DASH_EQ] = ACTIONS(1198), + [anon_sym_STAR_EQ] = ACTIONS(1198), + [anon_sym_SLASH_EQ] = ACTIONS(1198), + [anon_sym_AMP_EQ] = ACTIONS(1198), + [anon_sym_PIPE_EQ] = ACTIONS(1198), + [anon_sym_xor_EQ] = ACTIONS(1198), + [anon_sym_LT_LT_EQ] = ACTIONS(1198), + [anon_sym_GT_GT_EQ] = ACTIONS(1198), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1198), + [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(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(3145)] = { + [sym_identifier] = ACTIONS(6256), + [anon_sym_func] = ACTIONS(6256), + [anon_sym_c_func] = ACTIONS(6256), + [anon_sym_BANG] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6256), + [anon_sym_struct] = ACTIONS(6256), + [anon_sym_LPAREN] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6254), + [anon_sym_COMMA] = ACTIONS(6254), + [anon_sym_RBRACE] = ACTIONS(6254), + [anon_sym_DASH] = ACTIONS(6256), + [anon_sym_DOLLAR] = ACTIONS(6254), + [anon_sym_PIPE] = ACTIONS(6256), + [anon_sym_struct_type_BANG] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6254), + [anon_sym_AT] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_void] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym_type] = ACTIONS(6256), + [anon_sym_anyopaque] = ACTIONS(6256), + [anon_sym_bool] = ACTIONS(6256), + [anon_sym_int] = ACTIONS(6256), + [anon_sym_uint] = ACTIONS(6256), + [anon_sym_float] = ACTIONS(6256), + [anon_sym_range] = ACTIONS(6256), + [anon_sym_i8] = ACTIONS(6256), + [anon_sym_i16] = ACTIONS(6256), + [anon_sym_i32] = ACTIONS(6256), + [anon_sym_i64] = ACTIONS(6256), + [anon_sym_u8] = ACTIONS(6256), + [anon_sym_u16] = ACTIONS(6256), + [anon_sym_u32] = ACTIONS(6256), + [anon_sym_u64] = ACTIONS(6256), + [anon_sym_isize] = ACTIONS(6256), + [anon_sym_usize] = ACTIONS(6256), + [anon_sym_f32] = ACTIONS(6256), + [anon_sym_f64] = ACTIONS(6256), + [anon_sym_c_char] = ACTIONS(6256), + [anon_sym_c_schar] = ACTIONS(6256), + [anon_sym_c_uchar] = ACTIONS(6256), + [anon_sym_c_short] = ACTIONS(6256), + [anon_sym_c_ushort] = ACTIONS(6256), + [anon_sym_c_int] = ACTIONS(6256), + [anon_sym_c_uint] = ACTIONS(6256), + [anon_sym_c_long] = ACTIONS(6256), + [anon_sym_c_ulong] = ACTIONS(6256), + [anon_sym_c_longlong] = ACTIONS(6256), + [anon_sym_c_ulonglong] = ACTIONS(6256), + [anon_sym_c_float] = ACTIONS(6256), + [anon_sym_c_double] = ACTIONS(6256), + [anon_sym_c_longdouble] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6254), + [anon_sym_DASH_EQ] = ACTIONS(6254), + [anon_sym_STAR_EQ] = ACTIONS(6254), + [anon_sym_SLASH_EQ] = ACTIONS(6254), + [anon_sym_AMP_EQ] = ACTIONS(6254), + [anon_sym_PIPE_EQ] = ACTIONS(6254), + [anon_sym_xor_EQ] = ACTIONS(6254), + [anon_sym_LT_LT_EQ] = ACTIONS(6254), + [anon_sym_GT_GT_EQ] = ACTIONS(6254), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6254), + [anon_sym_return] = ACTIONS(6256), + [anon_sym_yield] = ACTIONS(6256), + [anon_sym_break] = ACTIONS(6256), + [anon_sym_continue] = ACTIONS(6256), + [anon_sym_defer] = ACTIONS(6256), + [anon_sym_errdefer] = ACTIONS(6256), + [anon_sym_if] = ACTIONS(6256), + [anon_sym_else] = ACTIONS(6256), + [anon_sym_while] = ACTIONS(6256), + [anon_sym_expand] = ACTIONS(6256), + [anon_sym_for] = ACTIONS(6256), + [anon_sym_match] = ACTIONS(6256), + [anon_sym_DOT_DOT] = ACTIONS(6256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6254), + [anon_sym_orelse] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6256), + [anon_sym_and] = ACTIONS(6256), + [anon_sym_EQ_EQ] = ACTIONS(6254), + [anon_sym_BANG_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_GT] = ACTIONS(6256), + [anon_sym_GT_EQ] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6256), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6256), + [anon_sym_LT_LT_PIPE] = ACTIONS(6256), + [anon_sym_PLUS] = ACTIONS(6256), + [anon_sym_SLASH] = ACTIONS(6256), + [anon_sym_catch] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6254), + [anon_sym_try] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6256), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_true] = ACTIONS(6256), + [anon_sym_false] = ACTIONS(6256), + [anon_sym_null] = ACTIONS(6256), + [anon_sym_unreachable] = ACTIONS(6256), + [anon_sym_undefined] = ACTIONS(6256), + [sym_sink] = ACTIONS(6256), + [sym_integer] = ACTIONS(6256), + [sym_float] = ACTIONS(6254), + [anon_sym_DQUOTE] = ACTIONS(6254), + [sym_multiline_string] = ACTIONS(6254), + [sym_character] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6254), + }, + [STATE(3146)] = { + [sym_identifier] = ACTIONS(5362), + [anon_sym_func] = ACTIONS(5362), + [anon_sym_c_func] = ACTIONS(5362), + [anon_sym_BANG] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_struct] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5360), + [anon_sym_LBRACE] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5362), + [anon_sym_struct_type_BANG] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5360), + [anon_sym_void] = ACTIONS(5362), + [anon_sym_noreturn] = ACTIONS(5362), + [anon_sym_type] = ACTIONS(5362), + [anon_sym_anyopaque] = ACTIONS(5362), + [anon_sym_bool] = ACTIONS(5362), + [anon_sym_int] = ACTIONS(5362), + [anon_sym_uint] = ACTIONS(5362), + [anon_sym_float] = ACTIONS(5362), + [anon_sym_range] = ACTIONS(5362), + [anon_sym_i8] = ACTIONS(5362), + [anon_sym_i16] = ACTIONS(5362), + [anon_sym_i32] = ACTIONS(5362), + [anon_sym_i64] = ACTIONS(5362), + [anon_sym_u8] = ACTIONS(5362), + [anon_sym_u16] = ACTIONS(5362), + [anon_sym_u32] = ACTIONS(5362), + [anon_sym_u64] = ACTIONS(5362), + [anon_sym_isize] = ACTIONS(5362), + [anon_sym_usize] = ACTIONS(5362), + [anon_sym_f32] = ACTIONS(5362), + [anon_sym_f64] = ACTIONS(5362), + [anon_sym_c_char] = ACTIONS(5362), + [anon_sym_c_schar] = ACTIONS(5362), + [anon_sym_c_uchar] = ACTIONS(5362), + [anon_sym_c_short] = ACTIONS(5362), + [anon_sym_c_ushort] = ACTIONS(5362), + [anon_sym_c_int] = ACTIONS(5362), + [anon_sym_c_uint] = ACTIONS(5362), + [anon_sym_c_long] = ACTIONS(5362), + [anon_sym_c_ulong] = ACTIONS(5362), + [anon_sym_c_longlong] = ACTIONS(5362), + [anon_sym_c_ulonglong] = ACTIONS(5362), + [anon_sym_c_float] = ACTIONS(5362), + [anon_sym_c_double] = ACTIONS(5362), + [anon_sym_c_longdouble] = ACTIONS(5362), + [anon_sym_PLUS_EQ] = ACTIONS(5360), + [anon_sym_DASH_EQ] = ACTIONS(5360), + [anon_sym_STAR_EQ] = ACTIONS(5360), + [anon_sym_SLASH_EQ] = ACTIONS(5360), + [anon_sym_AMP_EQ] = ACTIONS(5360), + [anon_sym_PIPE_EQ] = ACTIONS(5360), + [anon_sym_xor_EQ] = ACTIONS(5360), + [anon_sym_LT_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_GT_EQ] = ACTIONS(5360), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5360), + [anon_sym_return] = ACTIONS(5362), + [anon_sym_yield] = ACTIONS(5362), + [anon_sym_break] = ACTIONS(5362), + [anon_sym_continue] = ACTIONS(5362), + [anon_sym_defer] = ACTIONS(5362), + [anon_sym_errdefer] = ACTIONS(5362), + [anon_sym_if] = ACTIONS(5362), + [anon_sym_else] = ACTIONS(5362), + [anon_sym_while] = ACTIONS(5362), + [anon_sym_expand] = ACTIONS(5362), + [anon_sym_for] = ACTIONS(5362), + [anon_sym_match] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5360), + [anon_sym_orelse] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [anon_sym_xor] = ACTIONS(5362), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5362), + [anon_sym_LT_LT_PIPE] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5362), + [anon_sym_catch] = ACTIONS(5362), + [anon_sym_TILDE] = ACTIONS(5360), + [anon_sym_try] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym_true] = ACTIONS(5362), + [anon_sym_false] = ACTIONS(5362), + [anon_sym_null] = ACTIONS(5362), + [anon_sym_unreachable] = ACTIONS(5362), + [anon_sym_undefined] = ACTIONS(5362), + [sym_sink] = ACTIONS(5362), + [sym_integer] = ACTIONS(5362), + [sym_float] = ACTIONS(5360), + [anon_sym_DQUOTE] = ACTIONS(5360), + [sym_multiline_string] = ACTIONS(5360), + [sym_character] = ACTIONS(5360), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5360), + }, + [STATE(3147)] = { + [sym_identifier] = ACTIONS(4988), + [anon_sym_func] = ACTIONS(4988), + [anon_sym_c_func] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_struct_type_BANG] = ACTIONS(4986), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_void] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym_type] = ACTIONS(4988), + [anon_sym_anyopaque] = ACTIONS(4988), + [anon_sym_bool] = ACTIONS(4988), + [anon_sym_int] = ACTIONS(4988), + [anon_sym_uint] = ACTIONS(4988), + [anon_sym_float] = ACTIONS(4988), + [anon_sym_range] = ACTIONS(4988), + [anon_sym_i8] = ACTIONS(4988), + [anon_sym_i16] = ACTIONS(4988), + [anon_sym_i32] = ACTIONS(4988), + [anon_sym_i64] = ACTIONS(4988), + [anon_sym_u8] = ACTIONS(4988), + [anon_sym_u16] = ACTIONS(4988), + [anon_sym_u32] = ACTIONS(4988), + [anon_sym_u64] = ACTIONS(4988), + [anon_sym_isize] = ACTIONS(4988), + [anon_sym_usize] = ACTIONS(4988), + [anon_sym_f32] = ACTIONS(4988), + [anon_sym_f64] = ACTIONS(4988), + [anon_sym_c_char] = ACTIONS(4988), + [anon_sym_c_schar] = ACTIONS(4988), + [anon_sym_c_uchar] = ACTIONS(4988), + [anon_sym_c_short] = ACTIONS(4988), + [anon_sym_c_ushort] = ACTIONS(4988), + [anon_sym_c_int] = ACTIONS(4988), + [anon_sym_c_uint] = ACTIONS(4988), + [anon_sym_c_long] = ACTIONS(4988), + [anon_sym_c_ulong] = ACTIONS(4988), + [anon_sym_c_longlong] = ACTIONS(4988), + [anon_sym_c_ulonglong] = ACTIONS(4988), + [anon_sym_c_float] = ACTIONS(4988), + [anon_sym_c_double] = ACTIONS(4988), + [anon_sym_c_longdouble] = ACTIONS(4988), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_xor_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4986), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_defer] = ACTIONS(4988), + [anon_sym_errdefer] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_while] = ACTIONS(4988), + [anon_sym_expand] = ACTIONS(4988), + [anon_sym_for] = ACTIONS(4988), + [anon_sym_match] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), + [anon_sym_orelse] = ACTIONS(4988), + [anon_sym_or] = ACTIONS(4988), + [anon_sym_and] = ACTIONS(4988), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4988), + [anon_sym_xor] = ACTIONS(4988), + [anon_sym_LT_LT] = ACTIONS(4988), + [anon_sym_GT_GT] = ACTIONS(4988), + [anon_sym_LT_LT_PIPE] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_catch] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4986), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_null] = ACTIONS(4988), + [anon_sym_unreachable] = ACTIONS(4988), + [anon_sym_undefined] = ACTIONS(4988), + [sym_sink] = ACTIONS(4988), + [sym_integer] = ACTIONS(4988), + [sym_float] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(4986), + [sym_multiline_string] = ACTIONS(4986), + [sym_character] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4986), + }, + [STATE(3148)] = { + [sym_identifier] = ACTIONS(4992), + [anon_sym_func] = ACTIONS(4992), + [anon_sym_c_func] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_struct] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4990), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_struct_type_BANG] = ACTIONS(4990), + [anon_sym_QMARK] = ACTIONS(4990), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_void] = ACTIONS(4992), + [anon_sym_noreturn] = ACTIONS(4992), + [anon_sym_type] = ACTIONS(4992), + [anon_sym_anyopaque] = ACTIONS(4992), + [anon_sym_bool] = ACTIONS(4992), + [anon_sym_int] = ACTIONS(4992), + [anon_sym_uint] = ACTIONS(4992), + [anon_sym_float] = ACTIONS(4992), + [anon_sym_range] = ACTIONS(4992), + [anon_sym_i8] = ACTIONS(4992), + [anon_sym_i16] = ACTIONS(4992), + [anon_sym_i32] = ACTIONS(4992), + [anon_sym_i64] = ACTIONS(4992), + [anon_sym_u8] = ACTIONS(4992), + [anon_sym_u16] = ACTIONS(4992), + [anon_sym_u32] = ACTIONS(4992), + [anon_sym_u64] = ACTIONS(4992), + [anon_sym_isize] = ACTIONS(4992), + [anon_sym_usize] = ACTIONS(4992), + [anon_sym_f32] = ACTIONS(4992), + [anon_sym_f64] = ACTIONS(4992), + [anon_sym_c_char] = ACTIONS(4992), + [anon_sym_c_schar] = ACTIONS(4992), + [anon_sym_c_uchar] = ACTIONS(4992), + [anon_sym_c_short] = ACTIONS(4992), + [anon_sym_c_ushort] = ACTIONS(4992), + [anon_sym_c_int] = ACTIONS(4992), + [anon_sym_c_uint] = ACTIONS(4992), + [anon_sym_c_long] = ACTIONS(4992), + [anon_sym_c_ulong] = ACTIONS(4992), + [anon_sym_c_longlong] = ACTIONS(4992), + [anon_sym_c_ulonglong] = ACTIONS(4992), + [anon_sym_c_float] = ACTIONS(4992), + [anon_sym_c_double] = ACTIONS(4992), + [anon_sym_c_longdouble] = ACTIONS(4992), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_AMP_EQ] = ACTIONS(4990), + [anon_sym_PIPE_EQ] = ACTIONS(4990), + [anon_sym_xor_EQ] = ACTIONS(4990), + [anon_sym_LT_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_GT_EQ] = ACTIONS(4990), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4990), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_yield] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_defer] = ACTIONS(4992), + [anon_sym_errdefer] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_while] = ACTIONS(4992), + [anon_sym_expand] = ACTIONS(4992), + [anon_sym_for] = ACTIONS(4992), + [anon_sym_match] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4990), + [anon_sym_orelse] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_AMP] = ACTIONS(4992), + [anon_sym_xor] = ACTIONS(4992), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4992), + [anon_sym_LT_LT_PIPE] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_catch] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4990), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_unreachable] = ACTIONS(4992), + [anon_sym_undefined] = ACTIONS(4992), + [sym_sink] = ACTIONS(4992), + [sym_integer] = ACTIONS(4992), + [sym_float] = ACTIONS(4990), + [anon_sym_DQUOTE] = ACTIONS(4990), + [sym_multiline_string] = ACTIONS(4990), + [sym_character] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4990), + }, + [STATE(3149)] = { + [sym_identifier] = ACTIONS(4996), + [anon_sym_func] = ACTIONS(4996), + [anon_sym_c_func] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_struct] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4994), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_struct_type_BANG] = ACTIONS(4994), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_void] = ACTIONS(4996), + [anon_sym_noreturn] = ACTIONS(4996), + [anon_sym_type] = ACTIONS(4996), + [anon_sym_anyopaque] = ACTIONS(4996), + [anon_sym_bool] = ACTIONS(4996), + [anon_sym_int] = ACTIONS(4996), + [anon_sym_uint] = ACTIONS(4996), + [anon_sym_float] = ACTIONS(4996), + [anon_sym_range] = ACTIONS(4996), + [anon_sym_i8] = ACTIONS(4996), + [anon_sym_i16] = ACTIONS(4996), + [anon_sym_i32] = ACTIONS(4996), + [anon_sym_i64] = ACTIONS(4996), + [anon_sym_u8] = ACTIONS(4996), + [anon_sym_u16] = ACTIONS(4996), + [anon_sym_u32] = ACTIONS(4996), + [anon_sym_u64] = ACTIONS(4996), + [anon_sym_isize] = ACTIONS(4996), + [anon_sym_usize] = ACTIONS(4996), + [anon_sym_f32] = ACTIONS(4996), + [anon_sym_f64] = ACTIONS(4996), + [anon_sym_c_char] = ACTIONS(4996), + [anon_sym_c_schar] = ACTIONS(4996), + [anon_sym_c_uchar] = ACTIONS(4996), + [anon_sym_c_short] = ACTIONS(4996), + [anon_sym_c_ushort] = ACTIONS(4996), + [anon_sym_c_int] = ACTIONS(4996), + [anon_sym_c_uint] = ACTIONS(4996), + [anon_sym_c_long] = ACTIONS(4996), + [anon_sym_c_ulong] = ACTIONS(4996), + [anon_sym_c_longlong] = ACTIONS(4996), + [anon_sym_c_ulonglong] = ACTIONS(4996), + [anon_sym_c_float] = ACTIONS(4996), + [anon_sym_c_double] = ACTIONS(4996), + [anon_sym_c_longdouble] = ACTIONS(4996), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_AMP_EQ] = ACTIONS(4994), + [anon_sym_PIPE_EQ] = ACTIONS(4994), + [anon_sym_xor_EQ] = ACTIONS(4994), + [anon_sym_LT_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_GT_EQ] = ACTIONS(4994), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4994), + [anon_sym_return] = ACTIONS(4996), + [anon_sym_yield] = ACTIONS(4996), + [anon_sym_break] = ACTIONS(4996), + [anon_sym_continue] = ACTIONS(4996), + [anon_sym_defer] = ACTIONS(4996), + [anon_sym_errdefer] = ACTIONS(4996), + [anon_sym_if] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_while] = ACTIONS(4996), + [anon_sym_expand] = ACTIONS(4996), + [anon_sym_for] = ACTIONS(4996), + [anon_sym_match] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4994), + [anon_sym_orelse] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_xor] = ACTIONS(4996), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4996), + [anon_sym_LT_LT_PIPE] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_catch] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4996), + [anon_sym_unreachable] = ACTIONS(4996), + [anon_sym_undefined] = ACTIONS(4996), + [sym_sink] = ACTIONS(4996), + [sym_integer] = ACTIONS(4996), + [sym_float] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(4994), + [sym_multiline_string] = ACTIONS(4994), + [sym_character] = ACTIONS(4994), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4994), + }, + [STATE(3150)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_func] = ACTIONS(5000), + [anon_sym_c_func] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_struct_type_BANG] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_AT] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_void] = ACTIONS(5000), + [anon_sym_noreturn] = ACTIONS(5000), + [anon_sym_type] = ACTIONS(5000), + [anon_sym_anyopaque] = ACTIONS(5000), + [anon_sym_bool] = ACTIONS(5000), + [anon_sym_int] = ACTIONS(5000), + [anon_sym_uint] = ACTIONS(5000), + [anon_sym_float] = ACTIONS(5000), + [anon_sym_range] = ACTIONS(5000), + [anon_sym_i8] = ACTIONS(5000), + [anon_sym_i16] = ACTIONS(5000), + [anon_sym_i32] = ACTIONS(5000), + [anon_sym_i64] = ACTIONS(5000), + [anon_sym_u8] = ACTIONS(5000), + [anon_sym_u16] = ACTIONS(5000), + [anon_sym_u32] = ACTIONS(5000), + [anon_sym_u64] = ACTIONS(5000), + [anon_sym_isize] = ACTIONS(5000), + [anon_sym_usize] = ACTIONS(5000), + [anon_sym_f32] = ACTIONS(5000), + [anon_sym_f64] = ACTIONS(5000), + [anon_sym_c_char] = ACTIONS(5000), + [anon_sym_c_schar] = ACTIONS(5000), + [anon_sym_c_uchar] = ACTIONS(5000), + [anon_sym_c_short] = ACTIONS(5000), + [anon_sym_c_ushort] = ACTIONS(5000), + [anon_sym_c_int] = ACTIONS(5000), + [anon_sym_c_uint] = ACTIONS(5000), + [anon_sym_c_long] = ACTIONS(5000), + [anon_sym_c_ulong] = ACTIONS(5000), + [anon_sym_c_longlong] = ACTIONS(5000), + [anon_sym_c_ulonglong] = ACTIONS(5000), + [anon_sym_c_float] = ACTIONS(5000), + [anon_sym_c_double] = ACTIONS(5000), + [anon_sym_c_longdouble] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(4998), + [anon_sym_DASH_EQ] = ACTIONS(4998), + [anon_sym_STAR_EQ] = ACTIONS(4998), + [anon_sym_SLASH_EQ] = ACTIONS(4998), + [anon_sym_AMP_EQ] = ACTIONS(4998), + [anon_sym_PIPE_EQ] = ACTIONS(4998), + [anon_sym_xor_EQ] = ACTIONS(4998), + [anon_sym_LT_LT_EQ] = ACTIONS(4998), + [anon_sym_GT_GT_EQ] = ACTIONS(4998), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4998), + [anon_sym_return] = ACTIONS(5000), + [anon_sym_yield] = ACTIONS(5000), + [anon_sym_break] = ACTIONS(5000), + [anon_sym_continue] = ACTIONS(5000), + [anon_sym_defer] = ACTIONS(5000), + [anon_sym_errdefer] = ACTIONS(5000), + [anon_sym_if] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_while] = ACTIONS(5000), + [anon_sym_expand] = ACTIONS(5000), + [anon_sym_for] = ACTIONS(5000), + [anon_sym_match] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4998), + [anon_sym_orelse] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(5000), + [anon_sym_and] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(5000), + [anon_sym_xor] = ACTIONS(5000), + [anon_sym_LT_LT] = ACTIONS(5000), + [anon_sym_GT_GT] = ACTIONS(5000), + [anon_sym_LT_LT_PIPE] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_catch] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_try] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_true] = ACTIONS(5000), + [anon_sym_false] = ACTIONS(5000), + [anon_sym_null] = ACTIONS(5000), + [anon_sym_unreachable] = ACTIONS(5000), + [anon_sym_undefined] = ACTIONS(5000), + [sym_sink] = ACTIONS(5000), + [sym_integer] = ACTIONS(5000), + [sym_float] = ACTIONS(4998), + [anon_sym_DQUOTE] = ACTIONS(4998), + [sym_multiline_string] = ACTIONS(4998), + [sym_character] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4998), + }, + [STATE(3151)] = { + [sym_identifier] = ACTIONS(6272), + [anon_sym_func] = ACTIONS(6272), + [anon_sym_c_func] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6272), + [anon_sym_struct] = ACTIONS(6272), + [anon_sym_LPAREN] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6270), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_DASH] = ACTIONS(6272), + [anon_sym_DOLLAR] = ACTIONS(6270), + [anon_sym_PIPE] = ACTIONS(6272), + [anon_sym_struct_type_BANG] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6270), + [anon_sym_AT] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_void] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym_type] = ACTIONS(6272), + [anon_sym_anyopaque] = ACTIONS(6272), + [anon_sym_bool] = ACTIONS(6272), + [anon_sym_int] = ACTIONS(6272), + [anon_sym_uint] = ACTIONS(6272), + [anon_sym_float] = ACTIONS(6272), + [anon_sym_range] = ACTIONS(6272), + [anon_sym_i8] = ACTIONS(6272), + [anon_sym_i16] = ACTIONS(6272), + [anon_sym_i32] = ACTIONS(6272), + [anon_sym_i64] = ACTIONS(6272), + [anon_sym_u8] = ACTIONS(6272), + [anon_sym_u16] = ACTIONS(6272), + [anon_sym_u32] = ACTIONS(6272), + [anon_sym_u64] = ACTIONS(6272), + [anon_sym_isize] = ACTIONS(6272), + [anon_sym_usize] = ACTIONS(6272), + [anon_sym_f32] = ACTIONS(6272), + [anon_sym_f64] = ACTIONS(6272), + [anon_sym_c_char] = ACTIONS(6272), + [anon_sym_c_schar] = ACTIONS(6272), + [anon_sym_c_uchar] = ACTIONS(6272), + [anon_sym_c_short] = ACTIONS(6272), + [anon_sym_c_ushort] = ACTIONS(6272), + [anon_sym_c_int] = ACTIONS(6272), + [anon_sym_c_uint] = ACTIONS(6272), + [anon_sym_c_long] = ACTIONS(6272), + [anon_sym_c_ulong] = ACTIONS(6272), + [anon_sym_c_longlong] = ACTIONS(6272), + [anon_sym_c_ulonglong] = ACTIONS(6272), + [anon_sym_c_float] = ACTIONS(6272), + [anon_sym_c_double] = ACTIONS(6272), + [anon_sym_c_longdouble] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6270), + [anon_sym_DASH_EQ] = ACTIONS(6270), + [anon_sym_STAR_EQ] = ACTIONS(6270), + [anon_sym_SLASH_EQ] = ACTIONS(6270), + [anon_sym_AMP_EQ] = ACTIONS(6270), + [anon_sym_PIPE_EQ] = ACTIONS(6270), + [anon_sym_xor_EQ] = ACTIONS(6270), + [anon_sym_LT_LT_EQ] = ACTIONS(6270), + [anon_sym_GT_GT_EQ] = ACTIONS(6270), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6270), + [anon_sym_return] = ACTIONS(6272), + [anon_sym_yield] = ACTIONS(6272), + [anon_sym_break] = ACTIONS(6272), + [anon_sym_continue] = ACTIONS(6272), + [anon_sym_defer] = ACTIONS(6272), + [anon_sym_errdefer] = ACTIONS(6272), + [anon_sym_if] = ACTIONS(6272), + [anon_sym_else] = ACTIONS(6272), + [anon_sym_while] = ACTIONS(6272), + [anon_sym_expand] = ACTIONS(6272), + [anon_sym_for] = ACTIONS(6272), + [anon_sym_match] = ACTIONS(6272), + [anon_sym_DOT_DOT] = ACTIONS(6272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6270), + [anon_sym_orelse] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6272), + [anon_sym_and] = ACTIONS(6272), + [anon_sym_EQ_EQ] = ACTIONS(6270), + [anon_sym_BANG_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_GT] = ACTIONS(6272), + [anon_sym_GT_EQ] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6272), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6272), + [anon_sym_LT_LT_PIPE] = ACTIONS(6272), + [anon_sym_PLUS] = ACTIONS(6272), + [anon_sym_SLASH] = ACTIONS(6272), + [anon_sym_catch] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6270), + [anon_sym_try] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6272), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_true] = ACTIONS(6272), + [anon_sym_false] = ACTIONS(6272), + [anon_sym_null] = ACTIONS(6272), + [anon_sym_unreachable] = ACTIONS(6272), + [anon_sym_undefined] = ACTIONS(6272), + [sym_sink] = ACTIONS(6272), + [sym_integer] = ACTIONS(6272), + [sym_float] = ACTIONS(6270), + [anon_sym_DQUOTE] = ACTIONS(6270), + [sym_multiline_string] = ACTIONS(6270), + [sym_character] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6270), + }, + [STATE(3152)] = { + [sym_identifier] = ACTIONS(5004), + [anon_sym_func] = ACTIONS(5004), + [anon_sym_c_func] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_struct] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5002), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_struct_type_BANG] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_AT] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_void] = ACTIONS(5004), + [anon_sym_noreturn] = ACTIONS(5004), + [anon_sym_type] = ACTIONS(5004), + [anon_sym_anyopaque] = ACTIONS(5004), + [anon_sym_bool] = ACTIONS(5004), + [anon_sym_int] = ACTIONS(5004), + [anon_sym_uint] = ACTIONS(5004), + [anon_sym_float] = ACTIONS(5004), + [anon_sym_range] = ACTIONS(5004), + [anon_sym_i8] = ACTIONS(5004), + [anon_sym_i16] = ACTIONS(5004), + [anon_sym_i32] = ACTIONS(5004), + [anon_sym_i64] = ACTIONS(5004), + [anon_sym_u8] = ACTIONS(5004), + [anon_sym_u16] = ACTIONS(5004), + [anon_sym_u32] = ACTIONS(5004), + [anon_sym_u64] = ACTIONS(5004), + [anon_sym_isize] = ACTIONS(5004), + [anon_sym_usize] = ACTIONS(5004), + [anon_sym_f32] = ACTIONS(5004), + [anon_sym_f64] = ACTIONS(5004), + [anon_sym_c_char] = ACTIONS(5004), + [anon_sym_c_schar] = ACTIONS(5004), + [anon_sym_c_uchar] = ACTIONS(5004), + [anon_sym_c_short] = ACTIONS(5004), + [anon_sym_c_ushort] = ACTIONS(5004), + [anon_sym_c_int] = ACTIONS(5004), + [anon_sym_c_uint] = ACTIONS(5004), + [anon_sym_c_long] = ACTIONS(5004), + [anon_sym_c_ulong] = ACTIONS(5004), + [anon_sym_c_longlong] = ACTIONS(5004), + [anon_sym_c_ulonglong] = ACTIONS(5004), + [anon_sym_c_float] = ACTIONS(5004), + [anon_sym_c_double] = ACTIONS(5004), + [anon_sym_c_longdouble] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_xor_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5002), + [anon_sym_return] = ACTIONS(5004), + [anon_sym_yield] = ACTIONS(5004), + [anon_sym_break] = ACTIONS(5004), + [anon_sym_continue] = ACTIONS(5004), + [anon_sym_defer] = ACTIONS(5004), + [anon_sym_errdefer] = ACTIONS(5004), + [anon_sym_if] = ACTIONS(5004), + [anon_sym_else] = ACTIONS(5004), + [anon_sym_while] = ACTIONS(5004), + [anon_sym_expand] = ACTIONS(5004), + [anon_sym_for] = ACTIONS(5004), + [anon_sym_match] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), + [anon_sym_orelse] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5004), + [anon_sym_xor] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_LT_LT_PIPE] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_catch] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5002), + [anon_sym_try] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_true] = ACTIONS(5004), + [anon_sym_false] = ACTIONS(5004), + [anon_sym_null] = ACTIONS(5004), + [anon_sym_unreachable] = ACTIONS(5004), + [anon_sym_undefined] = ACTIONS(5004), + [sym_sink] = ACTIONS(5004), + [sym_integer] = ACTIONS(5004), + [sym_float] = ACTIONS(5002), + [anon_sym_DQUOTE] = ACTIONS(5002), + [sym_multiline_string] = ACTIONS(5002), + [sym_character] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5002), + }, + [STATE(3153)] = { + [sym_identifier] = ACTIONS(6276), + [anon_sym_func] = ACTIONS(6276), + [anon_sym_c_func] = ACTIONS(6276), + [anon_sym_BANG] = ACTIONS(6276), + [anon_sym_EQ] = ACTIONS(6276), + [anon_sym_struct] = ACTIONS(6276), + [anon_sym_LPAREN] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(6274), + [anon_sym_COMMA] = ACTIONS(6274), + [anon_sym_RBRACE] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6276), + [anon_sym_DOLLAR] = ACTIONS(6274), + [anon_sym_PIPE] = ACTIONS(6276), + [anon_sym_struct_type_BANG] = ACTIONS(6274), + [anon_sym_QMARK] = ACTIONS(6274), + [anon_sym_AT] = ACTIONS(6274), + [anon_sym_STAR] = ACTIONS(6276), + [anon_sym_LBRACK] = ACTIONS(6274), + [anon_sym_void] = ACTIONS(6276), + [anon_sym_noreturn] = ACTIONS(6276), + [anon_sym_type] = ACTIONS(6276), + [anon_sym_anyopaque] = ACTIONS(6276), + [anon_sym_bool] = ACTIONS(6276), + [anon_sym_int] = ACTIONS(6276), + [anon_sym_uint] = ACTIONS(6276), + [anon_sym_float] = ACTIONS(6276), + [anon_sym_range] = ACTIONS(6276), + [anon_sym_i8] = ACTIONS(6276), + [anon_sym_i16] = ACTIONS(6276), + [anon_sym_i32] = ACTIONS(6276), + [anon_sym_i64] = ACTIONS(6276), + [anon_sym_u8] = ACTIONS(6276), + [anon_sym_u16] = ACTIONS(6276), + [anon_sym_u32] = ACTIONS(6276), + [anon_sym_u64] = ACTIONS(6276), + [anon_sym_isize] = ACTIONS(6276), + [anon_sym_usize] = ACTIONS(6276), + [anon_sym_f32] = ACTIONS(6276), + [anon_sym_f64] = ACTIONS(6276), + [anon_sym_c_char] = ACTIONS(6276), + [anon_sym_c_schar] = ACTIONS(6276), + [anon_sym_c_uchar] = ACTIONS(6276), + [anon_sym_c_short] = ACTIONS(6276), + [anon_sym_c_ushort] = ACTIONS(6276), + [anon_sym_c_int] = ACTIONS(6276), + [anon_sym_c_uint] = ACTIONS(6276), + [anon_sym_c_long] = ACTIONS(6276), + [anon_sym_c_ulong] = ACTIONS(6276), + [anon_sym_c_longlong] = ACTIONS(6276), + [anon_sym_c_ulonglong] = ACTIONS(6276), + [anon_sym_c_float] = ACTIONS(6276), + [anon_sym_c_double] = ACTIONS(6276), + [anon_sym_c_longdouble] = ACTIONS(6276), + [anon_sym_PLUS_EQ] = ACTIONS(6274), + [anon_sym_DASH_EQ] = ACTIONS(6274), + [anon_sym_STAR_EQ] = ACTIONS(6274), + [anon_sym_SLASH_EQ] = ACTIONS(6274), + [anon_sym_AMP_EQ] = ACTIONS(6274), + [anon_sym_PIPE_EQ] = ACTIONS(6274), + [anon_sym_xor_EQ] = ACTIONS(6274), + [anon_sym_LT_LT_EQ] = ACTIONS(6274), + [anon_sym_GT_GT_EQ] = ACTIONS(6274), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6274), + [anon_sym_return] = ACTIONS(6276), + [anon_sym_yield] = ACTIONS(6276), + [anon_sym_break] = ACTIONS(6276), + [anon_sym_continue] = ACTIONS(6276), + [anon_sym_defer] = ACTIONS(6276), + [anon_sym_errdefer] = ACTIONS(6276), + [anon_sym_if] = ACTIONS(6276), + [anon_sym_else] = ACTIONS(6276), + [anon_sym_while] = ACTIONS(6276), + [anon_sym_expand] = ACTIONS(6276), + [anon_sym_for] = ACTIONS(6276), + [anon_sym_match] = ACTIONS(6276), + [anon_sym_DOT_DOT] = ACTIONS(6276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6274), + [anon_sym_orelse] = ACTIONS(6276), + [anon_sym_or] = ACTIONS(6276), + [anon_sym_and] = ACTIONS(6276), + [anon_sym_EQ_EQ] = ACTIONS(6274), + [anon_sym_BANG_EQ] = ACTIONS(6274), + [anon_sym_LT] = ACTIONS(6276), + [anon_sym_LT_EQ] = ACTIONS(6274), + [anon_sym_GT] = ACTIONS(6276), + [anon_sym_GT_EQ] = ACTIONS(6274), + [anon_sym_AMP] = ACTIONS(6276), + [anon_sym_xor] = ACTIONS(6276), + [anon_sym_LT_LT] = ACTIONS(6276), + [anon_sym_GT_GT] = ACTIONS(6276), + [anon_sym_LT_LT_PIPE] = ACTIONS(6276), + [anon_sym_PLUS] = ACTIONS(6276), + [anon_sym_SLASH] = ACTIONS(6276), + [anon_sym_catch] = ACTIONS(6276), + [anon_sym_TILDE] = ACTIONS(6274), + [anon_sym_try] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(6276), + [anon_sym_CARET] = ACTIONS(6274), + [anon_sym_true] = ACTIONS(6276), + [anon_sym_false] = ACTIONS(6276), + [anon_sym_null] = ACTIONS(6276), + [anon_sym_unreachable] = ACTIONS(6276), + [anon_sym_undefined] = ACTIONS(6276), + [sym_sink] = ACTIONS(6276), + [sym_integer] = ACTIONS(6276), + [sym_float] = ACTIONS(6274), + [anon_sym_DQUOTE] = ACTIONS(6274), + [sym_multiline_string] = ACTIONS(6274), + [sym_character] = ACTIONS(6274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6274), + }, + [STATE(3154)] = { + [sym_identifier] = ACTIONS(6288), + [anon_sym_func] = ACTIONS(6288), + [anon_sym_c_func] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(6288), + [anon_sym_EQ] = ACTIONS(6288), + [anon_sym_struct] = ACTIONS(6288), + [anon_sym_LPAREN] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(6286), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6288), + [anon_sym_DOLLAR] = ACTIONS(6286), + [anon_sym_PIPE] = ACTIONS(6288), + [anon_sym_struct_type_BANG] = ACTIONS(6286), + [anon_sym_QMARK] = ACTIONS(6286), + [anon_sym_AT] = ACTIONS(6286), + [anon_sym_STAR] = ACTIONS(6288), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_void] = ACTIONS(6288), + [anon_sym_noreturn] = ACTIONS(6288), + [anon_sym_type] = ACTIONS(6288), + [anon_sym_anyopaque] = ACTIONS(6288), + [anon_sym_bool] = ACTIONS(6288), + [anon_sym_int] = ACTIONS(6288), + [anon_sym_uint] = ACTIONS(6288), + [anon_sym_float] = ACTIONS(6288), + [anon_sym_range] = ACTIONS(6288), + [anon_sym_i8] = ACTIONS(6288), + [anon_sym_i16] = ACTIONS(6288), + [anon_sym_i32] = ACTIONS(6288), + [anon_sym_i64] = ACTIONS(6288), + [anon_sym_u8] = ACTIONS(6288), + [anon_sym_u16] = ACTIONS(6288), + [anon_sym_u32] = ACTIONS(6288), + [anon_sym_u64] = ACTIONS(6288), + [anon_sym_isize] = ACTIONS(6288), + [anon_sym_usize] = ACTIONS(6288), + [anon_sym_f32] = ACTIONS(6288), + [anon_sym_f64] = ACTIONS(6288), + [anon_sym_c_char] = ACTIONS(6288), + [anon_sym_c_schar] = ACTIONS(6288), + [anon_sym_c_uchar] = ACTIONS(6288), + [anon_sym_c_short] = ACTIONS(6288), + [anon_sym_c_ushort] = ACTIONS(6288), + [anon_sym_c_int] = ACTIONS(6288), + [anon_sym_c_uint] = ACTIONS(6288), + [anon_sym_c_long] = ACTIONS(6288), + [anon_sym_c_ulong] = ACTIONS(6288), + [anon_sym_c_longlong] = ACTIONS(6288), + [anon_sym_c_ulonglong] = ACTIONS(6288), + [anon_sym_c_float] = ACTIONS(6288), + [anon_sym_c_double] = ACTIONS(6288), + [anon_sym_c_longdouble] = ACTIONS(6288), + [anon_sym_PLUS_EQ] = ACTIONS(6286), + [anon_sym_DASH_EQ] = ACTIONS(6286), + [anon_sym_STAR_EQ] = ACTIONS(6286), + [anon_sym_SLASH_EQ] = ACTIONS(6286), + [anon_sym_AMP_EQ] = ACTIONS(6286), + [anon_sym_PIPE_EQ] = ACTIONS(6286), + [anon_sym_xor_EQ] = ACTIONS(6286), + [anon_sym_LT_LT_EQ] = ACTIONS(6286), + [anon_sym_GT_GT_EQ] = ACTIONS(6286), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6286), + [anon_sym_return] = ACTIONS(6288), + [anon_sym_yield] = ACTIONS(6288), + [anon_sym_break] = ACTIONS(6288), + [anon_sym_continue] = ACTIONS(6288), + [anon_sym_defer] = ACTIONS(6288), + [anon_sym_errdefer] = ACTIONS(6288), + [anon_sym_if] = ACTIONS(6288), + [anon_sym_else] = ACTIONS(6288), + [anon_sym_while] = ACTIONS(6288), + [anon_sym_expand] = ACTIONS(6288), + [anon_sym_for] = ACTIONS(6288), + [anon_sym_match] = ACTIONS(6288), + [anon_sym_DOT_DOT] = ACTIONS(6288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6286), + [anon_sym_orelse] = ACTIONS(6288), + [anon_sym_or] = ACTIONS(6288), + [anon_sym_and] = ACTIONS(6288), + [anon_sym_EQ_EQ] = ACTIONS(6286), + [anon_sym_BANG_EQ] = ACTIONS(6286), + [anon_sym_LT] = ACTIONS(6288), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6288), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_AMP] = ACTIONS(6288), + [anon_sym_xor] = ACTIONS(6288), + [anon_sym_LT_LT] = ACTIONS(6288), + [anon_sym_GT_GT] = ACTIONS(6288), + [anon_sym_LT_LT_PIPE] = ACTIONS(6288), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_SLASH] = ACTIONS(6288), + [anon_sym_catch] = ACTIONS(6288), + [anon_sym_TILDE] = ACTIONS(6286), + [anon_sym_try] = ACTIONS(6288), + [anon_sym_DOT] = ACTIONS(6288), + [anon_sym_CARET] = ACTIONS(6286), + [anon_sym_true] = ACTIONS(6288), + [anon_sym_false] = ACTIONS(6288), + [anon_sym_null] = ACTIONS(6288), + [anon_sym_unreachable] = ACTIONS(6288), + [anon_sym_undefined] = ACTIONS(6288), + [sym_sink] = ACTIONS(6288), + [sym_integer] = ACTIONS(6288), + [sym_float] = ACTIONS(6286), + [anon_sym_DQUOTE] = ACTIONS(6286), + [sym_multiline_string] = ACTIONS(6286), + [sym_character] = ACTIONS(6286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6286), + }, + [STATE(3155)] = { + [sym_identifier] = ACTIONS(6292), + [anon_sym_func] = ACTIONS(6292), + [anon_sym_c_func] = ACTIONS(6292), + [anon_sym_BANG] = ACTIONS(6292), + [anon_sym_EQ] = ACTIONS(6292), + [anon_sym_struct] = ACTIONS(6292), + [anon_sym_LPAREN] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(6290), + [anon_sym_COMMA] = ACTIONS(6290), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_DASH] = ACTIONS(6292), + [anon_sym_DOLLAR] = ACTIONS(6290), + [anon_sym_PIPE] = ACTIONS(6292), + [anon_sym_struct_type_BANG] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6290), + [anon_sym_AT] = ACTIONS(6290), + [anon_sym_STAR] = ACTIONS(6292), + [anon_sym_LBRACK] = ACTIONS(6290), + [anon_sym_void] = ACTIONS(6292), + [anon_sym_noreturn] = ACTIONS(6292), + [anon_sym_type] = ACTIONS(6292), + [anon_sym_anyopaque] = ACTIONS(6292), + [anon_sym_bool] = ACTIONS(6292), + [anon_sym_int] = ACTIONS(6292), + [anon_sym_uint] = ACTIONS(6292), + [anon_sym_float] = ACTIONS(6292), + [anon_sym_range] = ACTIONS(6292), + [anon_sym_i8] = ACTIONS(6292), + [anon_sym_i16] = ACTIONS(6292), + [anon_sym_i32] = ACTIONS(6292), + [anon_sym_i64] = ACTIONS(6292), + [anon_sym_u8] = ACTIONS(6292), + [anon_sym_u16] = ACTIONS(6292), + [anon_sym_u32] = ACTIONS(6292), + [anon_sym_u64] = ACTIONS(6292), + [anon_sym_isize] = ACTIONS(6292), + [anon_sym_usize] = ACTIONS(6292), + [anon_sym_f32] = ACTIONS(6292), + [anon_sym_f64] = ACTIONS(6292), + [anon_sym_c_char] = ACTIONS(6292), + [anon_sym_c_schar] = ACTIONS(6292), + [anon_sym_c_uchar] = ACTIONS(6292), + [anon_sym_c_short] = ACTIONS(6292), + [anon_sym_c_ushort] = ACTIONS(6292), + [anon_sym_c_int] = ACTIONS(6292), + [anon_sym_c_uint] = ACTIONS(6292), + [anon_sym_c_long] = ACTIONS(6292), + [anon_sym_c_ulong] = ACTIONS(6292), + [anon_sym_c_longlong] = ACTIONS(6292), + [anon_sym_c_ulonglong] = ACTIONS(6292), + [anon_sym_c_float] = ACTIONS(6292), + [anon_sym_c_double] = ACTIONS(6292), + [anon_sym_c_longdouble] = ACTIONS(6292), + [anon_sym_PLUS_EQ] = ACTIONS(6290), + [anon_sym_DASH_EQ] = ACTIONS(6290), + [anon_sym_STAR_EQ] = ACTIONS(6290), + [anon_sym_SLASH_EQ] = ACTIONS(6290), + [anon_sym_AMP_EQ] = ACTIONS(6290), + [anon_sym_PIPE_EQ] = ACTIONS(6290), + [anon_sym_xor_EQ] = ACTIONS(6290), + [anon_sym_LT_LT_EQ] = ACTIONS(6290), + [anon_sym_GT_GT_EQ] = ACTIONS(6290), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6290), + [anon_sym_return] = ACTIONS(6292), + [anon_sym_yield] = ACTIONS(6292), + [anon_sym_break] = ACTIONS(6292), + [anon_sym_continue] = ACTIONS(6292), + [anon_sym_defer] = ACTIONS(6292), + [anon_sym_errdefer] = ACTIONS(6292), + [anon_sym_if] = ACTIONS(6292), + [anon_sym_else] = ACTIONS(6292), + [anon_sym_while] = ACTIONS(6292), + [anon_sym_expand] = ACTIONS(6292), + [anon_sym_for] = ACTIONS(6292), + [anon_sym_match] = ACTIONS(6292), + [anon_sym_DOT_DOT] = ACTIONS(6292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6290), + [anon_sym_orelse] = ACTIONS(6292), + [anon_sym_or] = ACTIONS(6292), + [anon_sym_and] = ACTIONS(6292), + [anon_sym_EQ_EQ] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6290), + [anon_sym_LT] = ACTIONS(6292), + [anon_sym_LT_EQ] = ACTIONS(6290), + [anon_sym_GT] = ACTIONS(6292), + [anon_sym_GT_EQ] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [anon_sym_xor] = ACTIONS(6292), + [anon_sym_LT_LT] = ACTIONS(6292), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_LT_LT_PIPE] = ACTIONS(6292), + [anon_sym_PLUS] = ACTIONS(6292), + [anon_sym_SLASH] = ACTIONS(6292), + [anon_sym_catch] = ACTIONS(6292), + [anon_sym_TILDE] = ACTIONS(6290), + [anon_sym_try] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_CARET] = ACTIONS(6290), + [anon_sym_true] = ACTIONS(6292), + [anon_sym_false] = ACTIONS(6292), + [anon_sym_null] = ACTIONS(6292), + [anon_sym_unreachable] = ACTIONS(6292), + [anon_sym_undefined] = ACTIONS(6292), + [sym_sink] = ACTIONS(6292), + [sym_integer] = ACTIONS(6292), + [sym_float] = ACTIONS(6290), + [anon_sym_DQUOTE] = ACTIONS(6290), + [sym_multiline_string] = ACTIONS(6290), + [sym_character] = ACTIONS(6290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6290), + }, + [STATE(3156)] = { + [sym_identifier] = ACTIONS(6296), + [anon_sym_func] = ACTIONS(6296), + [anon_sym_c_func] = ACTIONS(6296), + [anon_sym_BANG] = ACTIONS(6296), + [anon_sym_EQ] = ACTIONS(6296), + [anon_sym_struct] = ACTIONS(6296), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_COMMA] = ACTIONS(6294), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6296), + [anon_sym_DOLLAR] = ACTIONS(6294), + [anon_sym_PIPE] = ACTIONS(6296), + [anon_sym_struct_type_BANG] = ACTIONS(6294), + [anon_sym_QMARK] = ACTIONS(6294), + [anon_sym_AT] = ACTIONS(6294), + [anon_sym_STAR] = ACTIONS(6296), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_void] = ACTIONS(6296), + [anon_sym_noreturn] = ACTIONS(6296), + [anon_sym_type] = ACTIONS(6296), + [anon_sym_anyopaque] = ACTIONS(6296), + [anon_sym_bool] = ACTIONS(6296), + [anon_sym_int] = ACTIONS(6296), + [anon_sym_uint] = ACTIONS(6296), + [anon_sym_float] = ACTIONS(6296), + [anon_sym_range] = ACTIONS(6296), + [anon_sym_i8] = ACTIONS(6296), + [anon_sym_i16] = ACTIONS(6296), + [anon_sym_i32] = ACTIONS(6296), + [anon_sym_i64] = ACTIONS(6296), + [anon_sym_u8] = ACTIONS(6296), + [anon_sym_u16] = ACTIONS(6296), + [anon_sym_u32] = ACTIONS(6296), + [anon_sym_u64] = ACTIONS(6296), + [anon_sym_isize] = ACTIONS(6296), + [anon_sym_usize] = ACTIONS(6296), + [anon_sym_f32] = ACTIONS(6296), + [anon_sym_f64] = ACTIONS(6296), + [anon_sym_c_char] = ACTIONS(6296), + [anon_sym_c_schar] = ACTIONS(6296), + [anon_sym_c_uchar] = ACTIONS(6296), + [anon_sym_c_short] = ACTIONS(6296), + [anon_sym_c_ushort] = ACTIONS(6296), + [anon_sym_c_int] = ACTIONS(6296), + [anon_sym_c_uint] = ACTIONS(6296), + [anon_sym_c_long] = ACTIONS(6296), + [anon_sym_c_ulong] = ACTIONS(6296), + [anon_sym_c_longlong] = ACTIONS(6296), + [anon_sym_c_ulonglong] = ACTIONS(6296), + [anon_sym_c_float] = ACTIONS(6296), + [anon_sym_c_double] = ACTIONS(6296), + [anon_sym_c_longdouble] = ACTIONS(6296), + [anon_sym_PLUS_EQ] = ACTIONS(6294), + [anon_sym_DASH_EQ] = ACTIONS(6294), + [anon_sym_STAR_EQ] = ACTIONS(6294), + [anon_sym_SLASH_EQ] = ACTIONS(6294), + [anon_sym_AMP_EQ] = ACTIONS(6294), + [anon_sym_PIPE_EQ] = ACTIONS(6294), + [anon_sym_xor_EQ] = ACTIONS(6294), + [anon_sym_LT_LT_EQ] = ACTIONS(6294), + [anon_sym_GT_GT_EQ] = ACTIONS(6294), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6294), + [anon_sym_return] = ACTIONS(6296), + [anon_sym_yield] = ACTIONS(6296), + [anon_sym_break] = ACTIONS(6296), + [anon_sym_continue] = ACTIONS(6296), + [anon_sym_defer] = ACTIONS(6296), + [anon_sym_errdefer] = ACTIONS(6296), + [anon_sym_if] = ACTIONS(6296), + [anon_sym_else] = ACTIONS(6296), + [anon_sym_while] = ACTIONS(6296), + [anon_sym_expand] = ACTIONS(6296), + [anon_sym_for] = ACTIONS(6296), + [anon_sym_match] = ACTIONS(6296), + [anon_sym_DOT_DOT] = ACTIONS(6296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_orelse] = ACTIONS(6296), + [anon_sym_or] = ACTIONS(6296), + [anon_sym_and] = ACTIONS(6296), + [anon_sym_EQ_EQ] = ACTIONS(6294), + [anon_sym_BANG_EQ] = ACTIONS(6294), + [anon_sym_LT] = ACTIONS(6296), + [anon_sym_LT_EQ] = ACTIONS(6294), + [anon_sym_GT] = ACTIONS(6296), + [anon_sym_GT_EQ] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_xor] = ACTIONS(6296), + [anon_sym_LT_LT] = ACTIONS(6296), + [anon_sym_GT_GT] = ACTIONS(6296), + [anon_sym_LT_LT_PIPE] = ACTIONS(6296), + [anon_sym_PLUS] = ACTIONS(6296), + [anon_sym_SLASH] = ACTIONS(6296), + [anon_sym_catch] = ACTIONS(6296), + [anon_sym_TILDE] = ACTIONS(6294), + [anon_sym_try] = ACTIONS(6296), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6294), + [anon_sym_true] = ACTIONS(6296), + [anon_sym_false] = ACTIONS(6296), + [anon_sym_null] = ACTIONS(6296), + [anon_sym_unreachable] = ACTIONS(6296), + [anon_sym_undefined] = ACTIONS(6296), + [sym_sink] = ACTIONS(6296), + [sym_integer] = ACTIONS(6296), + [sym_float] = ACTIONS(6294), + [anon_sym_DQUOTE] = ACTIONS(6294), + [sym_multiline_string] = ACTIONS(6294), + [sym_character] = ACTIONS(6294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6294), + }, + [STATE(3157)] = { + [sym_identifier] = ACTIONS(5008), + [anon_sym_func] = ACTIONS(5008), + [anon_sym_c_func] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_struct] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_RBRACE] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5006), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_struct_type_BANG] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_AT] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_void] = ACTIONS(5008), + [anon_sym_noreturn] = ACTIONS(5008), + [anon_sym_type] = ACTIONS(5008), + [anon_sym_anyopaque] = ACTIONS(5008), + [anon_sym_bool] = ACTIONS(5008), + [anon_sym_int] = ACTIONS(5008), + [anon_sym_uint] = ACTIONS(5008), + [anon_sym_float] = ACTIONS(5008), + [anon_sym_range] = ACTIONS(5008), + [anon_sym_i8] = ACTIONS(5008), + [anon_sym_i16] = ACTIONS(5008), + [anon_sym_i32] = ACTIONS(5008), + [anon_sym_i64] = ACTIONS(5008), + [anon_sym_u8] = ACTIONS(5008), + [anon_sym_u16] = ACTIONS(5008), + [anon_sym_u32] = ACTIONS(5008), + [anon_sym_u64] = ACTIONS(5008), + [anon_sym_isize] = ACTIONS(5008), + [anon_sym_usize] = ACTIONS(5008), + [anon_sym_f32] = ACTIONS(5008), + [anon_sym_f64] = ACTIONS(5008), + [anon_sym_c_char] = ACTIONS(5008), + [anon_sym_c_schar] = ACTIONS(5008), + [anon_sym_c_uchar] = ACTIONS(5008), + [anon_sym_c_short] = ACTIONS(5008), + [anon_sym_c_ushort] = ACTIONS(5008), + [anon_sym_c_int] = ACTIONS(5008), + [anon_sym_c_uint] = ACTIONS(5008), + [anon_sym_c_long] = ACTIONS(5008), + [anon_sym_c_ulong] = ACTIONS(5008), + [anon_sym_c_longlong] = ACTIONS(5008), + [anon_sym_c_ulonglong] = ACTIONS(5008), + [anon_sym_c_float] = ACTIONS(5008), + [anon_sym_c_double] = ACTIONS(5008), + [anon_sym_c_longdouble] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5006), + [anon_sym_DASH_EQ] = ACTIONS(5006), + [anon_sym_STAR_EQ] = ACTIONS(5006), + [anon_sym_SLASH_EQ] = ACTIONS(5006), + [anon_sym_AMP_EQ] = ACTIONS(5006), + [anon_sym_PIPE_EQ] = ACTIONS(5006), + [anon_sym_xor_EQ] = ACTIONS(5006), + [anon_sym_LT_LT_EQ] = ACTIONS(5006), + [anon_sym_GT_GT_EQ] = ACTIONS(5006), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5006), + [anon_sym_return] = ACTIONS(5008), + [anon_sym_yield] = ACTIONS(5008), + [anon_sym_break] = ACTIONS(5008), + [anon_sym_continue] = ACTIONS(5008), + [anon_sym_defer] = ACTIONS(5008), + [anon_sym_errdefer] = ACTIONS(5008), + [anon_sym_if] = ACTIONS(5008), + [anon_sym_else] = ACTIONS(5008), + [anon_sym_while] = ACTIONS(5008), + [anon_sym_expand] = ACTIONS(5008), + [anon_sym_for] = ACTIONS(5008), + [anon_sym_match] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_orelse] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5006), + [anon_sym_BANG_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5008), + [anon_sym_xor] = ACTIONS(5008), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5008), + [anon_sym_LT_LT_PIPE] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_catch] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5006), + [anon_sym_try] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_true] = ACTIONS(5008), + [anon_sym_false] = ACTIONS(5008), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_unreachable] = ACTIONS(5008), + [anon_sym_undefined] = ACTIONS(5008), + [sym_sink] = ACTIONS(5008), + [sym_integer] = ACTIONS(5008), + [sym_float] = ACTIONS(5006), + [anon_sym_DQUOTE] = ACTIONS(5006), + [sym_multiline_string] = ACTIONS(5006), + [sym_character] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5006), + }, + [STATE(3158)] = { + [sym_identifier] = ACTIONS(5012), + [anon_sym_func] = ACTIONS(5012), + [anon_sym_c_func] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_struct] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5010), + [anon_sym_COMMA] = ACTIONS(5010), + [anon_sym_RBRACE] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5010), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_struct_type_BANG] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_AT] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_void] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_type] = ACTIONS(5012), + [anon_sym_anyopaque] = ACTIONS(5012), + [anon_sym_bool] = ACTIONS(5012), + [anon_sym_int] = ACTIONS(5012), + [anon_sym_uint] = ACTIONS(5012), + [anon_sym_float] = ACTIONS(5012), + [anon_sym_range] = ACTIONS(5012), + [anon_sym_i8] = ACTIONS(5012), + [anon_sym_i16] = ACTIONS(5012), + [anon_sym_i32] = ACTIONS(5012), + [anon_sym_i64] = ACTIONS(5012), + [anon_sym_u8] = ACTIONS(5012), + [anon_sym_u16] = ACTIONS(5012), + [anon_sym_u32] = ACTIONS(5012), + [anon_sym_u64] = ACTIONS(5012), + [anon_sym_isize] = ACTIONS(5012), + [anon_sym_usize] = ACTIONS(5012), + [anon_sym_f32] = ACTIONS(5012), + [anon_sym_f64] = ACTIONS(5012), + [anon_sym_c_char] = ACTIONS(5012), + [anon_sym_c_schar] = ACTIONS(5012), + [anon_sym_c_uchar] = ACTIONS(5012), + [anon_sym_c_short] = ACTIONS(5012), + [anon_sym_c_ushort] = ACTIONS(5012), + [anon_sym_c_int] = ACTIONS(5012), + [anon_sym_c_uint] = ACTIONS(5012), + [anon_sym_c_long] = ACTIONS(5012), + [anon_sym_c_ulong] = ACTIONS(5012), + [anon_sym_c_longlong] = ACTIONS(5012), + [anon_sym_c_ulonglong] = ACTIONS(5012), + [anon_sym_c_float] = ACTIONS(5012), + [anon_sym_c_double] = ACTIONS(5012), + [anon_sym_c_longdouble] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5010), + [anon_sym_DASH_EQ] = ACTIONS(5010), + [anon_sym_STAR_EQ] = ACTIONS(5010), + [anon_sym_SLASH_EQ] = ACTIONS(5010), + [anon_sym_AMP_EQ] = ACTIONS(5010), + [anon_sym_PIPE_EQ] = ACTIONS(5010), + [anon_sym_xor_EQ] = ACTIONS(5010), + [anon_sym_LT_LT_EQ] = ACTIONS(5010), + [anon_sym_GT_GT_EQ] = ACTIONS(5010), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5010), + [anon_sym_return] = ACTIONS(5012), + [anon_sym_yield] = ACTIONS(5012), + [anon_sym_break] = ACTIONS(5012), + [anon_sym_continue] = ACTIONS(5012), + [anon_sym_defer] = ACTIONS(5012), + [anon_sym_errdefer] = ACTIONS(5012), + [anon_sym_if] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5012), + [anon_sym_while] = ACTIONS(5012), + [anon_sym_expand] = ACTIONS(5012), + [anon_sym_for] = ACTIONS(5012), + [anon_sym_match] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), + [anon_sym_orelse] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5012), + [anon_sym_and] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5012), + [anon_sym_xor] = ACTIONS(5012), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5012), + [anon_sym_LT_LT_PIPE] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_catch] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_true] = ACTIONS(5012), + [anon_sym_false] = ACTIONS(5012), + [anon_sym_null] = ACTIONS(5012), + [anon_sym_unreachable] = ACTIONS(5012), + [anon_sym_undefined] = ACTIONS(5012), + [sym_sink] = ACTIONS(5012), + [sym_integer] = ACTIONS(5012), + [sym_float] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(5010), + [sym_multiline_string] = ACTIONS(5010), + [sym_character] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5010), + }, + [STATE(3159)] = { + [sym_identifier] = ACTIONS(5016), + [anon_sym_func] = ACTIONS(5016), + [anon_sym_c_func] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_struct] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_struct_type_BANG] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_void] = ACTIONS(5016), + [anon_sym_noreturn] = ACTIONS(5016), + [anon_sym_type] = ACTIONS(5016), + [anon_sym_anyopaque] = ACTIONS(5016), + [anon_sym_bool] = ACTIONS(5016), + [anon_sym_int] = ACTIONS(5016), + [anon_sym_uint] = ACTIONS(5016), + [anon_sym_float] = ACTIONS(5016), + [anon_sym_range] = ACTIONS(5016), + [anon_sym_i8] = ACTIONS(5016), + [anon_sym_i16] = ACTIONS(5016), + [anon_sym_i32] = ACTIONS(5016), + [anon_sym_i64] = ACTIONS(5016), + [anon_sym_u8] = ACTIONS(5016), + [anon_sym_u16] = ACTIONS(5016), + [anon_sym_u32] = ACTIONS(5016), + [anon_sym_u64] = ACTIONS(5016), + [anon_sym_isize] = ACTIONS(5016), + [anon_sym_usize] = ACTIONS(5016), + [anon_sym_f32] = ACTIONS(5016), + [anon_sym_f64] = ACTIONS(5016), + [anon_sym_c_char] = ACTIONS(5016), + [anon_sym_c_schar] = ACTIONS(5016), + [anon_sym_c_uchar] = ACTIONS(5016), + [anon_sym_c_short] = ACTIONS(5016), + [anon_sym_c_ushort] = ACTIONS(5016), + [anon_sym_c_int] = ACTIONS(5016), + [anon_sym_c_uint] = ACTIONS(5016), + [anon_sym_c_long] = ACTIONS(5016), + [anon_sym_c_ulong] = ACTIONS(5016), + [anon_sym_c_longlong] = ACTIONS(5016), + [anon_sym_c_ulonglong] = ACTIONS(5016), + [anon_sym_c_float] = ACTIONS(5016), + [anon_sym_c_double] = ACTIONS(5016), + [anon_sym_c_longdouble] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5014), + [anon_sym_DASH_EQ] = ACTIONS(5014), + [anon_sym_STAR_EQ] = ACTIONS(5014), + [anon_sym_SLASH_EQ] = ACTIONS(5014), + [anon_sym_AMP_EQ] = ACTIONS(5014), + [anon_sym_PIPE_EQ] = ACTIONS(5014), + [anon_sym_xor_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_EQ] = ACTIONS(5014), + [anon_sym_GT_GT_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5014), + [anon_sym_return] = ACTIONS(5016), + [anon_sym_yield] = ACTIONS(5016), + [anon_sym_break] = ACTIONS(5016), + [anon_sym_continue] = ACTIONS(5016), + [anon_sym_defer] = ACTIONS(5016), + [anon_sym_errdefer] = ACTIONS(5016), + [anon_sym_if] = ACTIONS(5016), + [anon_sym_else] = ACTIONS(5016), + [anon_sym_while] = ACTIONS(5016), + [anon_sym_expand] = ACTIONS(5016), + [anon_sym_for] = ACTIONS(5016), + [anon_sym_match] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5014), + [anon_sym_orelse] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5016), + [anon_sym_and] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_xor] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_LT_LT_PIPE] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_catch] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_true] = ACTIONS(5016), + [anon_sym_false] = ACTIONS(5016), + [anon_sym_null] = ACTIONS(5016), + [anon_sym_unreachable] = ACTIONS(5016), + [anon_sym_undefined] = ACTIONS(5016), + [sym_sink] = ACTIONS(5016), + [sym_integer] = ACTIONS(5016), + [sym_float] = ACTIONS(5014), + [anon_sym_DQUOTE] = ACTIONS(5014), + [sym_multiline_string] = ACTIONS(5014), + [sym_character] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5014), + }, + [STATE(3160)] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_func] = ACTIONS(5418), + [anon_sym_c_func] = ACTIONS(5418), + [anon_sym_BANG] = ACTIONS(5418), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_struct] = ACTIONS(5418), + [anon_sym_LPAREN] = ACTIONS(5416), + [anon_sym_LBRACE] = ACTIONS(5416), + [anon_sym_COMMA] = ACTIONS(5416), + [anon_sym_RBRACE] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_DOLLAR] = ACTIONS(5416), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_struct_type_BANG] = ACTIONS(5416), + [anon_sym_QMARK] = ACTIONS(5416), + [anon_sym_AT] = ACTIONS(5416), + [anon_sym_STAR] = ACTIONS(5418), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_void] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_type] = ACTIONS(5418), + [anon_sym_anyopaque] = ACTIONS(5418), + [anon_sym_bool] = ACTIONS(5418), + [anon_sym_int] = ACTIONS(5418), + [anon_sym_uint] = ACTIONS(5418), + [anon_sym_float] = ACTIONS(5418), + [anon_sym_range] = ACTIONS(5418), + [anon_sym_i8] = ACTIONS(5418), + [anon_sym_i16] = ACTIONS(5418), + [anon_sym_i32] = ACTIONS(5418), + [anon_sym_i64] = ACTIONS(5418), + [anon_sym_u8] = ACTIONS(5418), + [anon_sym_u16] = ACTIONS(5418), + [anon_sym_u32] = ACTIONS(5418), + [anon_sym_u64] = ACTIONS(5418), + [anon_sym_isize] = ACTIONS(5418), + [anon_sym_usize] = ACTIONS(5418), + [anon_sym_f32] = ACTIONS(5418), + [anon_sym_f64] = ACTIONS(5418), + [anon_sym_c_char] = ACTIONS(5418), + [anon_sym_c_schar] = ACTIONS(5418), + [anon_sym_c_uchar] = ACTIONS(5418), + [anon_sym_c_short] = ACTIONS(5418), + [anon_sym_c_ushort] = ACTIONS(5418), + [anon_sym_c_int] = ACTIONS(5418), + [anon_sym_c_uint] = ACTIONS(5418), + [anon_sym_c_long] = ACTIONS(5418), + [anon_sym_c_ulong] = ACTIONS(5418), + [anon_sym_c_longlong] = ACTIONS(5418), + [anon_sym_c_ulonglong] = ACTIONS(5418), + [anon_sym_c_float] = ACTIONS(5418), + [anon_sym_c_double] = ACTIONS(5418), + [anon_sym_c_longdouble] = ACTIONS(5418), + [anon_sym_PLUS_EQ] = ACTIONS(5416), + [anon_sym_DASH_EQ] = ACTIONS(5416), + [anon_sym_STAR_EQ] = ACTIONS(5416), + [anon_sym_SLASH_EQ] = ACTIONS(5416), + [anon_sym_AMP_EQ] = ACTIONS(5416), + [anon_sym_PIPE_EQ] = ACTIONS(5416), + [anon_sym_xor_EQ] = ACTIONS(5416), + [anon_sym_LT_LT_EQ] = ACTIONS(5416), + [anon_sym_GT_GT_EQ] = ACTIONS(5416), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5416), + [anon_sym_return] = ACTIONS(5418), + [anon_sym_yield] = ACTIONS(5418), + [anon_sym_break] = ACTIONS(5418), + [anon_sym_continue] = ACTIONS(5418), + [anon_sym_defer] = ACTIONS(5418), + [anon_sym_errdefer] = ACTIONS(5418), + [anon_sym_if] = ACTIONS(5418), + [anon_sym_else] = ACTIONS(5418), + [anon_sym_while] = ACTIONS(5418), + [anon_sym_expand] = ACTIONS(5418), + [anon_sym_for] = ACTIONS(5418), + [anon_sym_match] = ACTIONS(5418), + [anon_sym_DOT_DOT] = ACTIONS(5418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5416), + [anon_sym_orelse] = ACTIONS(5418), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5416), + [anon_sym_BANG_EQ] = ACTIONS(5416), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_EQ] = ACTIONS(5416), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5418), + [anon_sym_GT_GT] = ACTIONS(5418), + [anon_sym_LT_LT_PIPE] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_catch] = ACTIONS(5418), + [anon_sym_TILDE] = ACTIONS(5416), + [anon_sym_try] = ACTIONS(5418), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5416), + [anon_sym_true] = ACTIONS(5418), + [anon_sym_false] = ACTIONS(5418), + [anon_sym_null] = ACTIONS(5418), + [anon_sym_unreachable] = ACTIONS(5418), + [anon_sym_undefined] = ACTIONS(5418), + [sym_sink] = ACTIONS(5418), + [sym_integer] = ACTIONS(5418), + [sym_float] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5416), + [sym_multiline_string] = ACTIONS(5416), + [sym_character] = ACTIONS(5416), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5416), + }, + [STATE(3161)] = { + [sym_identifier] = ACTIONS(5020), + [anon_sym_func] = ACTIONS(5020), + [anon_sym_c_func] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5018), + [anon_sym_COMMA] = ACTIONS(5018), + [anon_sym_RBRACE] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_struct_type_BANG] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_AT] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_void] = ACTIONS(5020), + [anon_sym_noreturn] = ACTIONS(5020), + [anon_sym_type] = ACTIONS(5020), + [anon_sym_anyopaque] = ACTIONS(5020), + [anon_sym_bool] = ACTIONS(5020), + [anon_sym_int] = ACTIONS(5020), + [anon_sym_uint] = ACTIONS(5020), + [anon_sym_float] = ACTIONS(5020), + [anon_sym_range] = ACTIONS(5020), + [anon_sym_i8] = ACTIONS(5020), + [anon_sym_i16] = ACTIONS(5020), + [anon_sym_i32] = ACTIONS(5020), + [anon_sym_i64] = ACTIONS(5020), + [anon_sym_u8] = ACTIONS(5020), + [anon_sym_u16] = ACTIONS(5020), + [anon_sym_u32] = ACTIONS(5020), + [anon_sym_u64] = ACTIONS(5020), + [anon_sym_isize] = ACTIONS(5020), + [anon_sym_usize] = ACTIONS(5020), + [anon_sym_f32] = ACTIONS(5020), + [anon_sym_f64] = ACTIONS(5020), + [anon_sym_c_char] = ACTIONS(5020), + [anon_sym_c_schar] = ACTIONS(5020), + [anon_sym_c_uchar] = ACTIONS(5020), + [anon_sym_c_short] = ACTIONS(5020), + [anon_sym_c_ushort] = ACTIONS(5020), + [anon_sym_c_int] = ACTIONS(5020), + [anon_sym_c_uint] = ACTIONS(5020), + [anon_sym_c_long] = ACTIONS(5020), + [anon_sym_c_ulong] = ACTIONS(5020), + [anon_sym_c_longlong] = ACTIONS(5020), + [anon_sym_c_ulonglong] = ACTIONS(5020), + [anon_sym_c_float] = ACTIONS(5020), + [anon_sym_c_double] = ACTIONS(5020), + [anon_sym_c_longdouble] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5018), + [anon_sym_DASH_EQ] = ACTIONS(5018), + [anon_sym_STAR_EQ] = ACTIONS(5018), + [anon_sym_SLASH_EQ] = ACTIONS(5018), + [anon_sym_AMP_EQ] = ACTIONS(5018), + [anon_sym_PIPE_EQ] = ACTIONS(5018), + [anon_sym_xor_EQ] = ACTIONS(5018), + [anon_sym_LT_LT_EQ] = ACTIONS(5018), + [anon_sym_GT_GT_EQ] = ACTIONS(5018), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5018), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_continue] = ACTIONS(5020), + [anon_sym_defer] = ACTIONS(5020), + [anon_sym_errdefer] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_expand] = ACTIONS(5020), + [anon_sym_for] = ACTIONS(5020), + [anon_sym_match] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5018), + [anon_sym_orelse] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5020), + [anon_sym_xor] = ACTIONS(5020), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5020), + [anon_sym_LT_LT_PIPE] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_catch] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5018), + [anon_sym_try] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_true] = ACTIONS(5020), + [anon_sym_false] = ACTIONS(5020), + [anon_sym_null] = ACTIONS(5020), + [anon_sym_unreachable] = ACTIONS(5020), + [anon_sym_undefined] = ACTIONS(5020), + [sym_sink] = ACTIONS(5020), + [sym_integer] = ACTIONS(5020), + [sym_float] = ACTIONS(5018), + [anon_sym_DQUOTE] = ACTIONS(5018), + [sym_multiline_string] = ACTIONS(5018), + [sym_character] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5018), + }, + [STATE(3162)] = { + [sym_identifier] = ACTIONS(5422), + [anon_sym_func] = ACTIONS(5422), + [anon_sym_c_func] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5422), + [anon_sym_EQ] = ACTIONS(5422), + [anon_sym_struct] = ACTIONS(5422), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5422), + [anon_sym_DOLLAR] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5422), + [anon_sym_struct_type_BANG] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_AT] = ACTIONS(5420), + [anon_sym_STAR] = ACTIONS(5422), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_void] = ACTIONS(5422), + [anon_sym_noreturn] = ACTIONS(5422), + [anon_sym_type] = ACTIONS(5422), + [anon_sym_anyopaque] = ACTIONS(5422), + [anon_sym_bool] = ACTIONS(5422), + [anon_sym_int] = ACTIONS(5422), + [anon_sym_uint] = ACTIONS(5422), + [anon_sym_float] = ACTIONS(5422), + [anon_sym_range] = ACTIONS(5422), + [anon_sym_i8] = ACTIONS(5422), + [anon_sym_i16] = ACTIONS(5422), + [anon_sym_i32] = ACTIONS(5422), + [anon_sym_i64] = ACTIONS(5422), + [anon_sym_u8] = ACTIONS(5422), + [anon_sym_u16] = ACTIONS(5422), + [anon_sym_u32] = ACTIONS(5422), + [anon_sym_u64] = ACTIONS(5422), + [anon_sym_isize] = ACTIONS(5422), + [anon_sym_usize] = ACTIONS(5422), + [anon_sym_f32] = ACTIONS(5422), + [anon_sym_f64] = ACTIONS(5422), + [anon_sym_c_char] = ACTIONS(5422), + [anon_sym_c_schar] = ACTIONS(5422), + [anon_sym_c_uchar] = ACTIONS(5422), + [anon_sym_c_short] = ACTIONS(5422), + [anon_sym_c_ushort] = ACTIONS(5422), + [anon_sym_c_int] = ACTIONS(5422), + [anon_sym_c_uint] = ACTIONS(5422), + [anon_sym_c_long] = ACTIONS(5422), + [anon_sym_c_ulong] = ACTIONS(5422), + [anon_sym_c_longlong] = ACTIONS(5422), + [anon_sym_c_ulonglong] = ACTIONS(5422), + [anon_sym_c_float] = ACTIONS(5422), + [anon_sym_c_double] = ACTIONS(5422), + [anon_sym_c_longdouble] = ACTIONS(5422), + [anon_sym_PLUS_EQ] = ACTIONS(5420), + [anon_sym_DASH_EQ] = ACTIONS(5420), + [anon_sym_STAR_EQ] = ACTIONS(5420), + [anon_sym_SLASH_EQ] = ACTIONS(5420), + [anon_sym_AMP_EQ] = ACTIONS(5420), + [anon_sym_PIPE_EQ] = ACTIONS(5420), + [anon_sym_xor_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_EQ] = ACTIONS(5420), + [anon_sym_GT_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5420), + [anon_sym_return] = ACTIONS(5422), + [anon_sym_yield] = ACTIONS(5422), + [anon_sym_break] = ACTIONS(5422), + [anon_sym_continue] = ACTIONS(5422), + [anon_sym_defer] = ACTIONS(5422), + [anon_sym_errdefer] = ACTIONS(5422), + [anon_sym_if] = ACTIONS(5422), + [anon_sym_else] = ACTIONS(5422), + [anon_sym_while] = ACTIONS(5422), + [anon_sym_expand] = ACTIONS(5422), + [anon_sym_for] = ACTIONS(5422), + [anon_sym_match] = ACTIONS(5422), + [anon_sym_DOT_DOT] = ACTIONS(5422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5420), + [anon_sym_orelse] = ACTIONS(5422), + [anon_sym_or] = ACTIONS(5422), + [anon_sym_and] = ACTIONS(5422), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_LT] = ACTIONS(5422), + [anon_sym_LT_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5422), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_xor] = ACTIONS(5422), + [anon_sym_LT_LT] = ACTIONS(5422), + [anon_sym_GT_GT] = ACTIONS(5422), + [anon_sym_LT_LT_PIPE] = ACTIONS(5422), + [anon_sym_PLUS] = ACTIONS(5422), + [anon_sym_SLASH] = ACTIONS(5422), + [anon_sym_catch] = ACTIONS(5422), + [anon_sym_TILDE] = ACTIONS(5420), + [anon_sym_try] = ACTIONS(5422), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_true] = ACTIONS(5422), + [anon_sym_false] = ACTIONS(5422), + [anon_sym_null] = ACTIONS(5422), + [anon_sym_unreachable] = ACTIONS(5422), + [anon_sym_undefined] = ACTIONS(5422), + [sym_sink] = ACTIONS(5422), + [sym_integer] = ACTIONS(5422), + [sym_float] = ACTIONS(5420), + [anon_sym_DQUOTE] = ACTIONS(5420), + [sym_multiline_string] = ACTIONS(5420), + [sym_character] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5420), + }, + [STATE(3163)] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_func] = ACTIONS(5024), + [anon_sym_c_func] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_struct] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_struct_type_BANG] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_AT] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_void] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_type] = ACTIONS(5024), + [anon_sym_anyopaque] = ACTIONS(5024), + [anon_sym_bool] = ACTIONS(5024), + [anon_sym_int] = ACTIONS(5024), + [anon_sym_uint] = ACTIONS(5024), + [anon_sym_float] = ACTIONS(5024), + [anon_sym_range] = ACTIONS(5024), + [anon_sym_i8] = ACTIONS(5024), + [anon_sym_i16] = ACTIONS(5024), + [anon_sym_i32] = ACTIONS(5024), + [anon_sym_i64] = ACTIONS(5024), + [anon_sym_u8] = ACTIONS(5024), + [anon_sym_u16] = ACTIONS(5024), + [anon_sym_u32] = ACTIONS(5024), + [anon_sym_u64] = ACTIONS(5024), + [anon_sym_isize] = ACTIONS(5024), + [anon_sym_usize] = ACTIONS(5024), + [anon_sym_f32] = ACTIONS(5024), + [anon_sym_f64] = ACTIONS(5024), + [anon_sym_c_char] = ACTIONS(5024), + [anon_sym_c_schar] = ACTIONS(5024), + [anon_sym_c_uchar] = ACTIONS(5024), + [anon_sym_c_short] = ACTIONS(5024), + [anon_sym_c_ushort] = ACTIONS(5024), + [anon_sym_c_int] = ACTIONS(5024), + [anon_sym_c_uint] = ACTIONS(5024), + [anon_sym_c_long] = ACTIONS(5024), + [anon_sym_c_ulong] = ACTIONS(5024), + [anon_sym_c_longlong] = ACTIONS(5024), + [anon_sym_c_ulonglong] = ACTIONS(5024), + [anon_sym_c_float] = ACTIONS(5024), + [anon_sym_c_double] = ACTIONS(5024), + [anon_sym_c_longdouble] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_AMP_EQ] = ACTIONS(5022), + [anon_sym_PIPE_EQ] = ACTIONS(5022), + [anon_sym_xor_EQ] = ACTIONS(5022), + [anon_sym_LT_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_GT_EQ] = ACTIONS(5022), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5022), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_yield] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_defer] = ACTIONS(5024), + [anon_sym_errdefer] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_while] = ACTIONS(5024), + [anon_sym_expand] = ACTIONS(5024), + [anon_sym_for] = ACTIONS(5024), + [anon_sym_match] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5022), + [anon_sym_orelse] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym_LT_LT_PIPE] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_catch] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_unreachable] = ACTIONS(5024), + [anon_sym_undefined] = ACTIONS(5024), + [sym_sink] = ACTIONS(5024), + [sym_integer] = ACTIONS(5024), + [sym_float] = ACTIONS(5022), + [anon_sym_DQUOTE] = ACTIONS(5022), + [sym_multiline_string] = ACTIONS(5022), + [sym_character] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5022), + }, + [STATE(3164)] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_func] = ACTIONS(5028), + [anon_sym_c_func] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_struct_type_BANG] = ACTIONS(5026), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_void] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_type] = ACTIONS(5028), + [anon_sym_anyopaque] = ACTIONS(5028), + [anon_sym_bool] = ACTIONS(5028), + [anon_sym_int] = ACTIONS(5028), + [anon_sym_uint] = ACTIONS(5028), + [anon_sym_float] = ACTIONS(5028), + [anon_sym_range] = ACTIONS(5028), + [anon_sym_i8] = ACTIONS(5028), + [anon_sym_i16] = ACTIONS(5028), + [anon_sym_i32] = ACTIONS(5028), + [anon_sym_i64] = ACTIONS(5028), + [anon_sym_u8] = ACTIONS(5028), + [anon_sym_u16] = ACTIONS(5028), + [anon_sym_u32] = ACTIONS(5028), + [anon_sym_u64] = ACTIONS(5028), + [anon_sym_isize] = ACTIONS(5028), + [anon_sym_usize] = ACTIONS(5028), + [anon_sym_f32] = ACTIONS(5028), + [anon_sym_f64] = ACTIONS(5028), + [anon_sym_c_char] = ACTIONS(5028), + [anon_sym_c_schar] = ACTIONS(5028), + [anon_sym_c_uchar] = ACTIONS(5028), + [anon_sym_c_short] = ACTIONS(5028), + [anon_sym_c_ushort] = ACTIONS(5028), + [anon_sym_c_int] = ACTIONS(5028), + [anon_sym_c_uint] = ACTIONS(5028), + [anon_sym_c_long] = ACTIONS(5028), + [anon_sym_c_ulong] = ACTIONS(5028), + [anon_sym_c_longlong] = ACTIONS(5028), + [anon_sym_c_ulonglong] = ACTIONS(5028), + [anon_sym_c_float] = ACTIONS(5028), + [anon_sym_c_double] = ACTIONS(5028), + [anon_sym_c_longdouble] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5026), + [anon_sym_xor_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5026), + [anon_sym_return] = ACTIONS(5028), + [anon_sym_yield] = ACTIONS(5028), + [anon_sym_break] = ACTIONS(5028), + [anon_sym_continue] = ACTIONS(5028), + [anon_sym_defer] = ACTIONS(5028), + [anon_sym_errdefer] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5028), + [anon_sym_while] = ACTIONS(5028), + [anon_sym_expand] = ACTIONS(5028), + [anon_sym_for] = ACTIONS(5028), + [anon_sym_match] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5026), + [anon_sym_orelse] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym_LT_LT_PIPE] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_catch] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5028), + [anon_sym_false] = ACTIONS(5028), + [anon_sym_null] = ACTIONS(5028), + [anon_sym_unreachable] = ACTIONS(5028), + [anon_sym_undefined] = ACTIONS(5028), + [sym_sink] = ACTIONS(5028), + [sym_integer] = ACTIONS(5028), + [sym_float] = ACTIONS(5026), + [anon_sym_DQUOTE] = ACTIONS(5026), + [sym_multiline_string] = ACTIONS(5026), + [sym_character] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5026), + }, + [STATE(3165)] = { + [sym_identifier] = ACTIONS(5032), + [anon_sym_func] = ACTIONS(5032), + [anon_sym_c_func] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_struct] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_struct_type_BANG] = ACTIONS(5030), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_AT] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_void] = ACTIONS(5032), + [anon_sym_noreturn] = ACTIONS(5032), + [anon_sym_type] = ACTIONS(5032), + [anon_sym_anyopaque] = ACTIONS(5032), + [anon_sym_bool] = ACTIONS(5032), + [anon_sym_int] = ACTIONS(5032), + [anon_sym_uint] = ACTIONS(5032), + [anon_sym_float] = ACTIONS(5032), + [anon_sym_range] = ACTIONS(5032), + [anon_sym_i8] = ACTIONS(5032), + [anon_sym_i16] = ACTIONS(5032), + [anon_sym_i32] = ACTIONS(5032), + [anon_sym_i64] = ACTIONS(5032), + [anon_sym_u8] = ACTIONS(5032), + [anon_sym_u16] = ACTIONS(5032), + [anon_sym_u32] = ACTIONS(5032), + [anon_sym_u64] = ACTIONS(5032), + [anon_sym_isize] = ACTIONS(5032), + [anon_sym_usize] = ACTIONS(5032), + [anon_sym_f32] = ACTIONS(5032), + [anon_sym_f64] = ACTIONS(5032), + [anon_sym_c_char] = ACTIONS(5032), + [anon_sym_c_schar] = ACTIONS(5032), + [anon_sym_c_uchar] = ACTIONS(5032), + [anon_sym_c_short] = ACTIONS(5032), + [anon_sym_c_ushort] = ACTIONS(5032), + [anon_sym_c_int] = ACTIONS(5032), + [anon_sym_c_uint] = ACTIONS(5032), + [anon_sym_c_long] = ACTIONS(5032), + [anon_sym_c_ulong] = ACTIONS(5032), + [anon_sym_c_longlong] = ACTIONS(5032), + [anon_sym_c_ulonglong] = ACTIONS(5032), + [anon_sym_c_float] = ACTIONS(5032), + [anon_sym_c_double] = ACTIONS(5032), + [anon_sym_c_longdouble] = ACTIONS(5032), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5030), + [anon_sym_xor_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5030), + [anon_sym_return] = ACTIONS(5032), + [anon_sym_yield] = ACTIONS(5032), + [anon_sym_break] = ACTIONS(5032), + [anon_sym_continue] = ACTIONS(5032), + [anon_sym_defer] = ACTIONS(5032), + [anon_sym_errdefer] = ACTIONS(5032), + [anon_sym_if] = ACTIONS(5032), + [anon_sym_else] = ACTIONS(5032), + [anon_sym_while] = ACTIONS(5032), + [anon_sym_expand] = ACTIONS(5032), + [anon_sym_for] = ACTIONS(5032), + [anon_sym_match] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5030), + [anon_sym_orelse] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5032), + [anon_sym_xor] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5032), + [anon_sym_LT_LT_PIPE] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_catch] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_try] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_true] = ACTIONS(5032), + [anon_sym_false] = ACTIONS(5032), + [anon_sym_null] = ACTIONS(5032), + [anon_sym_unreachable] = ACTIONS(5032), + [anon_sym_undefined] = ACTIONS(5032), + [sym_sink] = ACTIONS(5032), + [sym_integer] = ACTIONS(5032), + [sym_float] = ACTIONS(5030), + [anon_sym_DQUOTE] = ACTIONS(5030), + [sym_multiline_string] = ACTIONS(5030), + [sym_character] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5030), + }, + [STATE(3166)] = { + [sym_identifier] = ACTIONS(6312), + [anon_sym_func] = ACTIONS(6312), + [anon_sym_c_func] = ACTIONS(6312), + [anon_sym_BANG] = ACTIONS(6312), + [anon_sym_EQ] = ACTIONS(6312), + [anon_sym_struct] = ACTIONS(6312), + [anon_sym_LPAREN] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(6310), + [anon_sym_COMMA] = ACTIONS(6310), + [anon_sym_RBRACE] = ACTIONS(6310), + [anon_sym_DASH] = ACTIONS(6312), + [anon_sym_DOLLAR] = ACTIONS(6310), + [anon_sym_PIPE] = ACTIONS(6312), + [anon_sym_struct_type_BANG] = ACTIONS(6310), + [anon_sym_QMARK] = ACTIONS(6310), + [anon_sym_AT] = ACTIONS(6310), + [anon_sym_STAR] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(6310), + [anon_sym_void] = ACTIONS(6312), + [anon_sym_noreturn] = ACTIONS(6312), + [anon_sym_type] = ACTIONS(6312), + [anon_sym_anyopaque] = ACTIONS(6312), + [anon_sym_bool] = ACTIONS(6312), + [anon_sym_int] = ACTIONS(6312), + [anon_sym_uint] = ACTIONS(6312), + [anon_sym_float] = ACTIONS(6312), + [anon_sym_range] = ACTIONS(6312), + [anon_sym_i8] = ACTIONS(6312), + [anon_sym_i16] = ACTIONS(6312), + [anon_sym_i32] = ACTIONS(6312), + [anon_sym_i64] = ACTIONS(6312), + [anon_sym_u8] = ACTIONS(6312), + [anon_sym_u16] = ACTIONS(6312), + [anon_sym_u32] = ACTIONS(6312), + [anon_sym_u64] = ACTIONS(6312), + [anon_sym_isize] = ACTIONS(6312), + [anon_sym_usize] = ACTIONS(6312), + [anon_sym_f32] = ACTIONS(6312), + [anon_sym_f64] = ACTIONS(6312), + [anon_sym_c_char] = ACTIONS(6312), + [anon_sym_c_schar] = ACTIONS(6312), + [anon_sym_c_uchar] = ACTIONS(6312), + [anon_sym_c_short] = ACTIONS(6312), + [anon_sym_c_ushort] = ACTIONS(6312), + [anon_sym_c_int] = ACTIONS(6312), + [anon_sym_c_uint] = ACTIONS(6312), + [anon_sym_c_long] = ACTIONS(6312), + [anon_sym_c_ulong] = ACTIONS(6312), + [anon_sym_c_longlong] = ACTIONS(6312), + [anon_sym_c_ulonglong] = ACTIONS(6312), + [anon_sym_c_float] = ACTIONS(6312), + [anon_sym_c_double] = ACTIONS(6312), + [anon_sym_c_longdouble] = ACTIONS(6312), + [anon_sym_PLUS_EQ] = ACTIONS(6310), + [anon_sym_DASH_EQ] = ACTIONS(6310), + [anon_sym_STAR_EQ] = ACTIONS(6310), + [anon_sym_SLASH_EQ] = ACTIONS(6310), + [anon_sym_AMP_EQ] = ACTIONS(6310), + [anon_sym_PIPE_EQ] = ACTIONS(6310), + [anon_sym_xor_EQ] = ACTIONS(6310), + [anon_sym_LT_LT_EQ] = ACTIONS(6310), + [anon_sym_GT_GT_EQ] = ACTIONS(6310), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6310), + [anon_sym_return] = ACTIONS(6312), + [anon_sym_yield] = ACTIONS(6312), + [anon_sym_break] = ACTIONS(6312), + [anon_sym_continue] = ACTIONS(6312), + [anon_sym_defer] = ACTIONS(6312), + [anon_sym_errdefer] = ACTIONS(6312), + [anon_sym_if] = ACTIONS(6312), + [anon_sym_else] = ACTIONS(6312), + [anon_sym_while] = ACTIONS(6312), + [anon_sym_expand] = ACTIONS(6312), + [anon_sym_for] = ACTIONS(6312), + [anon_sym_match] = ACTIONS(6312), + [anon_sym_DOT_DOT] = ACTIONS(6312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6310), + [anon_sym_orelse] = ACTIONS(6312), + [anon_sym_or] = ACTIONS(6312), + [anon_sym_and] = ACTIONS(6312), + [anon_sym_EQ_EQ] = ACTIONS(6310), + [anon_sym_BANG_EQ] = ACTIONS(6310), + [anon_sym_LT] = ACTIONS(6312), + [anon_sym_LT_EQ] = ACTIONS(6310), + [anon_sym_GT] = ACTIONS(6312), + [anon_sym_GT_EQ] = ACTIONS(6310), + [anon_sym_AMP] = ACTIONS(6312), + [anon_sym_xor] = ACTIONS(6312), + [anon_sym_LT_LT] = ACTIONS(6312), + [anon_sym_GT_GT] = ACTIONS(6312), + [anon_sym_LT_LT_PIPE] = ACTIONS(6312), + [anon_sym_PLUS] = ACTIONS(6312), + [anon_sym_SLASH] = ACTIONS(6312), + [anon_sym_catch] = ACTIONS(6312), + [anon_sym_TILDE] = ACTIONS(6310), + [anon_sym_try] = ACTIONS(6312), + [anon_sym_DOT] = ACTIONS(6312), + [anon_sym_CARET] = ACTIONS(6310), + [anon_sym_true] = ACTIONS(6312), + [anon_sym_false] = ACTIONS(6312), + [anon_sym_null] = ACTIONS(6312), + [anon_sym_unreachable] = ACTIONS(6312), + [anon_sym_undefined] = ACTIONS(6312), + [sym_sink] = ACTIONS(6312), + [sym_integer] = ACTIONS(6312), + [sym_float] = ACTIONS(6310), + [anon_sym_DQUOTE] = ACTIONS(6310), + [sym_multiline_string] = ACTIONS(6310), + [sym_character] = ACTIONS(6310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6310), + }, + [STATE(3167)] = { + [sym_identifier] = ACTIONS(6316), + [anon_sym_func] = ACTIONS(6316), + [anon_sym_c_func] = ACTIONS(6316), + [anon_sym_BANG] = ACTIONS(6316), + [anon_sym_EQ] = ACTIONS(6316), + [anon_sym_struct] = ACTIONS(6316), + [anon_sym_LPAREN] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(6314), + [anon_sym_COMMA] = ACTIONS(6314), + [anon_sym_RBRACE] = ACTIONS(6314), + [anon_sym_DASH] = ACTIONS(6316), + [anon_sym_DOLLAR] = ACTIONS(6314), + [anon_sym_PIPE] = ACTIONS(6316), + [anon_sym_struct_type_BANG] = ACTIONS(6314), + [anon_sym_QMARK] = ACTIONS(6314), + [anon_sym_AT] = ACTIONS(6314), + [anon_sym_STAR] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(6314), + [anon_sym_void] = ACTIONS(6316), + [anon_sym_noreturn] = ACTIONS(6316), + [anon_sym_type] = ACTIONS(6316), + [anon_sym_anyopaque] = ACTIONS(6316), + [anon_sym_bool] = ACTIONS(6316), + [anon_sym_int] = ACTIONS(6316), + [anon_sym_uint] = ACTIONS(6316), + [anon_sym_float] = ACTIONS(6316), + [anon_sym_range] = ACTIONS(6316), + [anon_sym_i8] = ACTIONS(6316), + [anon_sym_i16] = ACTIONS(6316), + [anon_sym_i32] = ACTIONS(6316), + [anon_sym_i64] = ACTIONS(6316), + [anon_sym_u8] = ACTIONS(6316), + [anon_sym_u16] = ACTIONS(6316), + [anon_sym_u32] = ACTIONS(6316), + [anon_sym_u64] = ACTIONS(6316), + [anon_sym_isize] = ACTIONS(6316), + [anon_sym_usize] = ACTIONS(6316), + [anon_sym_f32] = ACTIONS(6316), + [anon_sym_f64] = ACTIONS(6316), + [anon_sym_c_char] = ACTIONS(6316), + [anon_sym_c_schar] = ACTIONS(6316), + [anon_sym_c_uchar] = ACTIONS(6316), + [anon_sym_c_short] = ACTIONS(6316), + [anon_sym_c_ushort] = ACTIONS(6316), + [anon_sym_c_int] = ACTIONS(6316), + [anon_sym_c_uint] = ACTIONS(6316), + [anon_sym_c_long] = ACTIONS(6316), + [anon_sym_c_ulong] = ACTIONS(6316), + [anon_sym_c_longlong] = ACTIONS(6316), + [anon_sym_c_ulonglong] = ACTIONS(6316), + [anon_sym_c_float] = ACTIONS(6316), + [anon_sym_c_double] = ACTIONS(6316), + [anon_sym_c_longdouble] = ACTIONS(6316), + [anon_sym_PLUS_EQ] = ACTIONS(6314), + [anon_sym_DASH_EQ] = ACTIONS(6314), + [anon_sym_STAR_EQ] = ACTIONS(6314), + [anon_sym_SLASH_EQ] = ACTIONS(6314), + [anon_sym_AMP_EQ] = ACTIONS(6314), + [anon_sym_PIPE_EQ] = ACTIONS(6314), + [anon_sym_xor_EQ] = ACTIONS(6314), + [anon_sym_LT_LT_EQ] = ACTIONS(6314), + [anon_sym_GT_GT_EQ] = ACTIONS(6314), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6314), + [anon_sym_return] = ACTIONS(6316), + [anon_sym_yield] = ACTIONS(6316), + [anon_sym_break] = ACTIONS(6316), + [anon_sym_continue] = ACTIONS(6316), + [anon_sym_defer] = ACTIONS(6316), + [anon_sym_errdefer] = ACTIONS(6316), + [anon_sym_if] = ACTIONS(6316), + [anon_sym_else] = ACTIONS(6316), + [anon_sym_while] = ACTIONS(6316), + [anon_sym_expand] = ACTIONS(6316), + [anon_sym_for] = ACTIONS(6316), + [anon_sym_match] = ACTIONS(6316), + [anon_sym_DOT_DOT] = ACTIONS(6316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6314), + [anon_sym_orelse] = ACTIONS(6316), + [anon_sym_or] = ACTIONS(6316), + [anon_sym_and] = ACTIONS(6316), + [anon_sym_EQ_EQ] = ACTIONS(6314), + [anon_sym_BANG_EQ] = ACTIONS(6314), + [anon_sym_LT] = ACTIONS(6316), + [anon_sym_LT_EQ] = ACTIONS(6314), + [anon_sym_GT] = ACTIONS(6316), + [anon_sym_GT_EQ] = ACTIONS(6314), + [anon_sym_AMP] = ACTIONS(6316), + [anon_sym_xor] = ACTIONS(6316), + [anon_sym_LT_LT] = ACTIONS(6316), + [anon_sym_GT_GT] = ACTIONS(6316), + [anon_sym_LT_LT_PIPE] = ACTIONS(6316), + [anon_sym_PLUS] = ACTIONS(6316), + [anon_sym_SLASH] = ACTIONS(6316), + [anon_sym_catch] = ACTIONS(6316), + [anon_sym_TILDE] = ACTIONS(6314), + [anon_sym_try] = ACTIONS(6316), + [anon_sym_DOT] = ACTIONS(6316), + [anon_sym_CARET] = ACTIONS(6314), + [anon_sym_true] = ACTIONS(6316), + [anon_sym_false] = ACTIONS(6316), + [anon_sym_null] = ACTIONS(6316), + [anon_sym_unreachable] = ACTIONS(6316), + [anon_sym_undefined] = ACTIONS(6316), + [sym_sink] = ACTIONS(6316), + [sym_integer] = ACTIONS(6316), + [sym_float] = ACTIONS(6314), + [anon_sym_DQUOTE] = ACTIONS(6314), + [sym_multiline_string] = ACTIONS(6314), + [sym_character] = ACTIONS(6314), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6314), + }, + [STATE(3168)] = { + [sym_identifier] = ACTIONS(6320), + [anon_sym_func] = ACTIONS(6320), + [anon_sym_c_func] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6320), + [anon_sym_EQ] = ACTIONS(6320), + [anon_sym_struct] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(6318), + [anon_sym_COMMA] = ACTIONS(6318), + [anon_sym_RBRACE] = ACTIONS(6318), + [anon_sym_DASH] = ACTIONS(6320), + [anon_sym_DOLLAR] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(6320), + [anon_sym_struct_type_BANG] = ACTIONS(6318), + [anon_sym_QMARK] = ACTIONS(6318), + [anon_sym_AT] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(6318), + [anon_sym_void] = ACTIONS(6320), + [anon_sym_noreturn] = ACTIONS(6320), + [anon_sym_type] = ACTIONS(6320), + [anon_sym_anyopaque] = ACTIONS(6320), + [anon_sym_bool] = ACTIONS(6320), + [anon_sym_int] = ACTIONS(6320), + [anon_sym_uint] = ACTIONS(6320), + [anon_sym_float] = ACTIONS(6320), + [anon_sym_range] = ACTIONS(6320), + [anon_sym_i8] = ACTIONS(6320), + [anon_sym_i16] = ACTIONS(6320), + [anon_sym_i32] = ACTIONS(6320), + [anon_sym_i64] = ACTIONS(6320), + [anon_sym_u8] = ACTIONS(6320), + [anon_sym_u16] = ACTIONS(6320), + [anon_sym_u32] = ACTIONS(6320), + [anon_sym_u64] = ACTIONS(6320), + [anon_sym_isize] = ACTIONS(6320), + [anon_sym_usize] = ACTIONS(6320), + [anon_sym_f32] = ACTIONS(6320), + [anon_sym_f64] = ACTIONS(6320), + [anon_sym_c_char] = ACTIONS(6320), + [anon_sym_c_schar] = ACTIONS(6320), + [anon_sym_c_uchar] = ACTIONS(6320), + [anon_sym_c_short] = ACTIONS(6320), + [anon_sym_c_ushort] = ACTIONS(6320), + [anon_sym_c_int] = ACTIONS(6320), + [anon_sym_c_uint] = ACTIONS(6320), + [anon_sym_c_long] = ACTIONS(6320), + [anon_sym_c_ulong] = ACTIONS(6320), + [anon_sym_c_longlong] = ACTIONS(6320), + [anon_sym_c_ulonglong] = ACTIONS(6320), + [anon_sym_c_float] = ACTIONS(6320), + [anon_sym_c_double] = ACTIONS(6320), + [anon_sym_c_longdouble] = ACTIONS(6320), + [anon_sym_PLUS_EQ] = ACTIONS(6318), + [anon_sym_DASH_EQ] = ACTIONS(6318), + [anon_sym_STAR_EQ] = ACTIONS(6318), + [anon_sym_SLASH_EQ] = ACTIONS(6318), + [anon_sym_AMP_EQ] = ACTIONS(6318), + [anon_sym_PIPE_EQ] = ACTIONS(6318), + [anon_sym_xor_EQ] = ACTIONS(6318), + [anon_sym_LT_LT_EQ] = ACTIONS(6318), + [anon_sym_GT_GT_EQ] = ACTIONS(6318), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6318), + [anon_sym_return] = ACTIONS(6320), + [anon_sym_yield] = ACTIONS(6320), + [anon_sym_break] = ACTIONS(6320), + [anon_sym_continue] = ACTIONS(6320), + [anon_sym_defer] = ACTIONS(6320), + [anon_sym_errdefer] = ACTIONS(6320), + [anon_sym_if] = ACTIONS(6320), + [anon_sym_else] = ACTIONS(6320), + [anon_sym_while] = ACTIONS(6320), + [anon_sym_expand] = ACTIONS(6320), + [anon_sym_for] = ACTIONS(6320), + [anon_sym_match] = ACTIONS(6320), + [anon_sym_DOT_DOT] = ACTIONS(6320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6318), + [anon_sym_orelse] = ACTIONS(6320), + [anon_sym_or] = ACTIONS(6320), + [anon_sym_and] = ACTIONS(6320), + [anon_sym_EQ_EQ] = ACTIONS(6318), + [anon_sym_BANG_EQ] = ACTIONS(6318), + [anon_sym_LT] = ACTIONS(6320), + [anon_sym_LT_EQ] = ACTIONS(6318), + [anon_sym_GT] = ACTIONS(6320), + [anon_sym_GT_EQ] = ACTIONS(6318), + [anon_sym_AMP] = ACTIONS(6320), + [anon_sym_xor] = ACTIONS(6320), + [anon_sym_LT_LT] = ACTIONS(6320), + [anon_sym_GT_GT] = ACTIONS(6320), + [anon_sym_LT_LT_PIPE] = ACTIONS(6320), + [anon_sym_PLUS] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6320), + [anon_sym_catch] = ACTIONS(6320), + [anon_sym_TILDE] = ACTIONS(6318), + [anon_sym_try] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(6318), + [anon_sym_true] = ACTIONS(6320), + [anon_sym_false] = ACTIONS(6320), + [anon_sym_null] = ACTIONS(6320), + [anon_sym_unreachable] = ACTIONS(6320), + [anon_sym_undefined] = ACTIONS(6320), + [sym_sink] = ACTIONS(6320), + [sym_integer] = ACTIONS(6320), + [sym_float] = ACTIONS(6318), + [anon_sym_DQUOTE] = ACTIONS(6318), + [sym_multiline_string] = ACTIONS(6318), + [sym_character] = ACTIONS(6318), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6318), + }, + [STATE(3169)] = { + [sym_identifier] = ACTIONS(6324), + [anon_sym_func] = ACTIONS(6324), + [anon_sym_c_func] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6324), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_struct] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6322), + [anon_sym_LBRACE] = ACTIONS(6322), + [anon_sym_COMMA] = ACTIONS(6322), + [anon_sym_RBRACE] = ACTIONS(6322), + [anon_sym_DASH] = ACTIONS(6324), + [anon_sym_DOLLAR] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(6324), + [anon_sym_struct_type_BANG] = ACTIONS(6322), + [anon_sym_QMARK] = ACTIONS(6322), + [anon_sym_AT] = ACTIONS(6322), + [anon_sym_STAR] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6322), + [anon_sym_void] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym_type] = ACTIONS(6324), + [anon_sym_anyopaque] = ACTIONS(6324), + [anon_sym_bool] = ACTIONS(6324), + [anon_sym_int] = ACTIONS(6324), + [anon_sym_uint] = ACTIONS(6324), + [anon_sym_float] = ACTIONS(6324), + [anon_sym_range] = ACTIONS(6324), + [anon_sym_i8] = ACTIONS(6324), + [anon_sym_i16] = ACTIONS(6324), + [anon_sym_i32] = ACTIONS(6324), + [anon_sym_i64] = ACTIONS(6324), + [anon_sym_u8] = ACTIONS(6324), + [anon_sym_u16] = ACTIONS(6324), + [anon_sym_u32] = ACTIONS(6324), + [anon_sym_u64] = ACTIONS(6324), + [anon_sym_isize] = ACTIONS(6324), + [anon_sym_usize] = ACTIONS(6324), + [anon_sym_f32] = ACTIONS(6324), + [anon_sym_f64] = ACTIONS(6324), + [anon_sym_c_char] = ACTIONS(6324), + [anon_sym_c_schar] = ACTIONS(6324), + [anon_sym_c_uchar] = ACTIONS(6324), + [anon_sym_c_short] = ACTIONS(6324), + [anon_sym_c_ushort] = ACTIONS(6324), + [anon_sym_c_int] = ACTIONS(6324), + [anon_sym_c_uint] = ACTIONS(6324), + [anon_sym_c_long] = ACTIONS(6324), + [anon_sym_c_ulong] = ACTIONS(6324), + [anon_sym_c_longlong] = ACTIONS(6324), + [anon_sym_c_ulonglong] = ACTIONS(6324), + [anon_sym_c_float] = ACTIONS(6324), + [anon_sym_c_double] = ACTIONS(6324), + [anon_sym_c_longdouble] = ACTIONS(6324), + [anon_sym_PLUS_EQ] = ACTIONS(6322), + [anon_sym_DASH_EQ] = ACTIONS(6322), + [anon_sym_STAR_EQ] = ACTIONS(6322), + [anon_sym_SLASH_EQ] = ACTIONS(6322), + [anon_sym_AMP_EQ] = ACTIONS(6322), + [anon_sym_PIPE_EQ] = ACTIONS(6322), + [anon_sym_xor_EQ] = ACTIONS(6322), + [anon_sym_LT_LT_EQ] = ACTIONS(6322), + [anon_sym_GT_GT_EQ] = ACTIONS(6322), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6322), + [anon_sym_return] = ACTIONS(6324), + [anon_sym_yield] = ACTIONS(6324), + [anon_sym_break] = ACTIONS(6324), + [anon_sym_continue] = ACTIONS(6324), + [anon_sym_defer] = ACTIONS(6324), + [anon_sym_errdefer] = ACTIONS(6324), + [anon_sym_if] = ACTIONS(6324), + [anon_sym_else] = ACTIONS(6324), + [anon_sym_while] = ACTIONS(6324), + [anon_sym_expand] = ACTIONS(6324), + [anon_sym_for] = ACTIONS(6324), + [anon_sym_match] = ACTIONS(6324), + [anon_sym_DOT_DOT] = ACTIONS(6324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6322), + [anon_sym_orelse] = ACTIONS(6324), + [anon_sym_or] = ACTIONS(6324), + [anon_sym_and] = ACTIONS(6324), + [anon_sym_EQ_EQ] = ACTIONS(6322), + [anon_sym_BANG_EQ] = ACTIONS(6322), + [anon_sym_LT] = ACTIONS(6324), + [anon_sym_LT_EQ] = ACTIONS(6322), + [anon_sym_GT] = ACTIONS(6324), + [anon_sym_GT_EQ] = ACTIONS(6322), + [anon_sym_AMP] = ACTIONS(6324), + [anon_sym_xor] = ACTIONS(6324), + [anon_sym_LT_LT] = ACTIONS(6324), + [anon_sym_GT_GT] = ACTIONS(6324), + [anon_sym_LT_LT_PIPE] = ACTIONS(6324), + [anon_sym_PLUS] = ACTIONS(6324), + [anon_sym_SLASH] = ACTIONS(6324), + [anon_sym_catch] = ACTIONS(6324), + [anon_sym_TILDE] = ACTIONS(6322), + [anon_sym_try] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(6322), + [anon_sym_true] = ACTIONS(6324), + [anon_sym_false] = ACTIONS(6324), + [anon_sym_null] = ACTIONS(6324), + [anon_sym_unreachable] = ACTIONS(6324), + [anon_sym_undefined] = ACTIONS(6324), + [sym_sink] = ACTIONS(6324), + [sym_integer] = ACTIONS(6324), + [sym_float] = ACTIONS(6322), + [anon_sym_DQUOTE] = ACTIONS(6322), + [sym_multiline_string] = ACTIONS(6322), + [sym_character] = ACTIONS(6322), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6322), + }, + [STATE(3170)] = { + [sym_identifier] = ACTIONS(6328), + [anon_sym_func] = ACTIONS(6328), + [anon_sym_c_func] = ACTIONS(6328), + [anon_sym_BANG] = ACTIONS(6328), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_struct] = ACTIONS(6328), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6326), + [anon_sym_RBRACE] = ACTIONS(6326), + [anon_sym_DASH] = ACTIONS(6328), + [anon_sym_DOLLAR] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_struct_type_BANG] = ACTIONS(6326), + [anon_sym_QMARK] = ACTIONS(6326), + [anon_sym_AT] = ACTIONS(6326), + [anon_sym_STAR] = ACTIONS(6328), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_void] = ACTIONS(6328), + [anon_sym_noreturn] = ACTIONS(6328), + [anon_sym_type] = ACTIONS(6328), + [anon_sym_anyopaque] = ACTIONS(6328), + [anon_sym_bool] = ACTIONS(6328), + [anon_sym_int] = ACTIONS(6328), + [anon_sym_uint] = ACTIONS(6328), + [anon_sym_float] = ACTIONS(6328), + [anon_sym_range] = ACTIONS(6328), + [anon_sym_i8] = ACTIONS(6328), + [anon_sym_i16] = ACTIONS(6328), + [anon_sym_i32] = ACTIONS(6328), + [anon_sym_i64] = ACTIONS(6328), + [anon_sym_u8] = ACTIONS(6328), + [anon_sym_u16] = ACTIONS(6328), + [anon_sym_u32] = ACTIONS(6328), + [anon_sym_u64] = ACTIONS(6328), + [anon_sym_isize] = ACTIONS(6328), + [anon_sym_usize] = ACTIONS(6328), + [anon_sym_f32] = ACTIONS(6328), + [anon_sym_f64] = ACTIONS(6328), + [anon_sym_c_char] = ACTIONS(6328), + [anon_sym_c_schar] = ACTIONS(6328), + [anon_sym_c_uchar] = ACTIONS(6328), + [anon_sym_c_short] = ACTIONS(6328), + [anon_sym_c_ushort] = ACTIONS(6328), + [anon_sym_c_int] = ACTIONS(6328), + [anon_sym_c_uint] = ACTIONS(6328), + [anon_sym_c_long] = ACTIONS(6328), + [anon_sym_c_ulong] = ACTIONS(6328), + [anon_sym_c_longlong] = ACTIONS(6328), + [anon_sym_c_ulonglong] = ACTIONS(6328), + [anon_sym_c_float] = ACTIONS(6328), + [anon_sym_c_double] = ACTIONS(6328), + [anon_sym_c_longdouble] = ACTIONS(6328), + [anon_sym_PLUS_EQ] = ACTIONS(6326), + [anon_sym_DASH_EQ] = ACTIONS(6326), + [anon_sym_STAR_EQ] = ACTIONS(6326), + [anon_sym_SLASH_EQ] = ACTIONS(6326), + [anon_sym_AMP_EQ] = ACTIONS(6326), + [anon_sym_PIPE_EQ] = ACTIONS(6326), + [anon_sym_xor_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_EQ] = ACTIONS(6326), + [anon_sym_GT_GT_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6326), + [anon_sym_return] = ACTIONS(6328), + [anon_sym_yield] = ACTIONS(6328), + [anon_sym_break] = ACTIONS(6328), + [anon_sym_continue] = ACTIONS(6328), + [anon_sym_defer] = ACTIONS(6328), + [anon_sym_errdefer] = ACTIONS(6328), + [anon_sym_if] = ACTIONS(6328), + [anon_sym_else] = ACTIONS(6328), + [anon_sym_while] = ACTIONS(6328), + [anon_sym_expand] = ACTIONS(6328), + [anon_sym_for] = ACTIONS(6328), + [anon_sym_match] = ACTIONS(6328), + [anon_sym_DOT_DOT] = ACTIONS(6328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6326), + [anon_sym_orelse] = ACTIONS(6328), + [anon_sym_or] = ACTIONS(6328), + [anon_sym_and] = ACTIONS(6328), + [anon_sym_EQ_EQ] = ACTIONS(6326), + [anon_sym_BANG_EQ] = ACTIONS(6326), + [anon_sym_LT] = ACTIONS(6328), + [anon_sym_LT_EQ] = ACTIONS(6326), + [anon_sym_GT] = ACTIONS(6328), + [anon_sym_GT_EQ] = ACTIONS(6326), + [anon_sym_AMP] = ACTIONS(6328), + [anon_sym_xor] = ACTIONS(6328), + [anon_sym_LT_LT] = ACTIONS(6328), + [anon_sym_GT_GT] = ACTIONS(6328), + [anon_sym_LT_LT_PIPE] = ACTIONS(6328), + [anon_sym_PLUS] = ACTIONS(6328), + [anon_sym_SLASH] = ACTIONS(6328), + [anon_sym_catch] = ACTIONS(6328), + [anon_sym_TILDE] = ACTIONS(6326), + [anon_sym_try] = ACTIONS(6328), + [anon_sym_DOT] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6326), + [anon_sym_true] = ACTIONS(6328), + [anon_sym_false] = ACTIONS(6328), + [anon_sym_null] = ACTIONS(6328), + [anon_sym_unreachable] = ACTIONS(6328), + [anon_sym_undefined] = ACTIONS(6328), + [sym_sink] = ACTIONS(6328), + [sym_integer] = ACTIONS(6328), + [sym_float] = ACTIONS(6326), + [anon_sym_DQUOTE] = ACTIONS(6326), + [sym_multiline_string] = ACTIONS(6326), + [sym_character] = ACTIONS(6326), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6326), + }, + [STATE(3171)] = { + [sym_identifier] = ACTIONS(6332), + [anon_sym_func] = ACTIONS(6332), + [anon_sym_c_func] = ACTIONS(6332), + [anon_sym_BANG] = ACTIONS(6332), + [anon_sym_EQ] = ACTIONS(6332), + [anon_sym_struct] = ACTIONS(6332), + [anon_sym_LPAREN] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(6330), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_RBRACE] = ACTIONS(6330), + [anon_sym_DASH] = ACTIONS(6332), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_PIPE] = ACTIONS(6332), + [anon_sym_struct_type_BANG] = ACTIONS(6330), + [anon_sym_QMARK] = ACTIONS(6330), + [anon_sym_AT] = ACTIONS(6330), + [anon_sym_STAR] = ACTIONS(6332), + [anon_sym_LBRACK] = ACTIONS(6330), + [anon_sym_void] = ACTIONS(6332), + [anon_sym_noreturn] = ACTIONS(6332), + [anon_sym_type] = ACTIONS(6332), + [anon_sym_anyopaque] = ACTIONS(6332), + [anon_sym_bool] = ACTIONS(6332), + [anon_sym_int] = ACTIONS(6332), + [anon_sym_uint] = ACTIONS(6332), + [anon_sym_float] = ACTIONS(6332), + [anon_sym_range] = ACTIONS(6332), + [anon_sym_i8] = ACTIONS(6332), + [anon_sym_i16] = ACTIONS(6332), + [anon_sym_i32] = ACTIONS(6332), + [anon_sym_i64] = ACTIONS(6332), + [anon_sym_u8] = ACTIONS(6332), + [anon_sym_u16] = ACTIONS(6332), + [anon_sym_u32] = ACTIONS(6332), + [anon_sym_u64] = ACTIONS(6332), + [anon_sym_isize] = ACTIONS(6332), + [anon_sym_usize] = ACTIONS(6332), + [anon_sym_f32] = ACTIONS(6332), + [anon_sym_f64] = ACTIONS(6332), + [anon_sym_c_char] = ACTIONS(6332), + [anon_sym_c_schar] = ACTIONS(6332), + [anon_sym_c_uchar] = ACTIONS(6332), + [anon_sym_c_short] = ACTIONS(6332), + [anon_sym_c_ushort] = ACTIONS(6332), + [anon_sym_c_int] = ACTIONS(6332), + [anon_sym_c_uint] = ACTIONS(6332), + [anon_sym_c_long] = ACTIONS(6332), + [anon_sym_c_ulong] = ACTIONS(6332), + [anon_sym_c_longlong] = ACTIONS(6332), + [anon_sym_c_ulonglong] = ACTIONS(6332), + [anon_sym_c_float] = ACTIONS(6332), + [anon_sym_c_double] = ACTIONS(6332), + [anon_sym_c_longdouble] = ACTIONS(6332), + [anon_sym_PLUS_EQ] = ACTIONS(6330), + [anon_sym_DASH_EQ] = ACTIONS(6330), + [anon_sym_STAR_EQ] = ACTIONS(6330), + [anon_sym_SLASH_EQ] = ACTIONS(6330), + [anon_sym_AMP_EQ] = ACTIONS(6330), + [anon_sym_PIPE_EQ] = ACTIONS(6330), + [anon_sym_xor_EQ] = ACTIONS(6330), + [anon_sym_LT_LT_EQ] = ACTIONS(6330), + [anon_sym_GT_GT_EQ] = ACTIONS(6330), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6330), + [anon_sym_return] = ACTIONS(6332), + [anon_sym_yield] = ACTIONS(6332), + [anon_sym_break] = ACTIONS(6332), + [anon_sym_continue] = ACTIONS(6332), + [anon_sym_defer] = ACTIONS(6332), + [anon_sym_errdefer] = ACTIONS(6332), + [anon_sym_if] = ACTIONS(6332), + [anon_sym_else] = ACTIONS(6332), + [anon_sym_while] = ACTIONS(6332), + [anon_sym_expand] = ACTIONS(6332), + [anon_sym_for] = ACTIONS(6332), + [anon_sym_match] = ACTIONS(6332), + [anon_sym_DOT_DOT] = ACTIONS(6332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6330), + [anon_sym_orelse] = ACTIONS(6332), + [anon_sym_or] = ACTIONS(6332), + [anon_sym_and] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6330), + [anon_sym_BANG_EQ] = ACTIONS(6330), + [anon_sym_LT] = ACTIONS(6332), + [anon_sym_LT_EQ] = ACTIONS(6330), + [anon_sym_GT] = ACTIONS(6332), + [anon_sym_GT_EQ] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_xor] = ACTIONS(6332), + [anon_sym_LT_LT] = ACTIONS(6332), + [anon_sym_GT_GT] = ACTIONS(6332), + [anon_sym_LT_LT_PIPE] = ACTIONS(6332), + [anon_sym_PLUS] = ACTIONS(6332), + [anon_sym_SLASH] = ACTIONS(6332), + [anon_sym_catch] = ACTIONS(6332), + [anon_sym_TILDE] = ACTIONS(6330), + [anon_sym_try] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6332), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_true] = ACTIONS(6332), + [anon_sym_false] = ACTIONS(6332), + [anon_sym_null] = ACTIONS(6332), + [anon_sym_unreachable] = ACTIONS(6332), + [anon_sym_undefined] = ACTIONS(6332), + [sym_sink] = ACTIONS(6332), + [sym_integer] = ACTIONS(6332), + [sym_float] = ACTIONS(6330), + [anon_sym_DQUOTE] = ACTIONS(6330), + [sym_multiline_string] = ACTIONS(6330), + [sym_character] = ACTIONS(6330), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6330), + }, + [STATE(3172)] = { + [sym_identifier] = ACTIONS(6336), + [anon_sym_func] = ACTIONS(6336), + [anon_sym_c_func] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6336), + [anon_sym_EQ] = ACTIONS(6336), + [anon_sym_struct] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(6334), + [anon_sym_COMMA] = ACTIONS(6334), + [anon_sym_RBRACE] = ACTIONS(6334), + [anon_sym_DASH] = ACTIONS(6336), + [anon_sym_DOLLAR] = ACTIONS(6334), + [anon_sym_PIPE] = ACTIONS(6336), + [anon_sym_struct_type_BANG] = ACTIONS(6334), + [anon_sym_QMARK] = ACTIONS(6334), + [anon_sym_AT] = ACTIONS(6334), + [anon_sym_STAR] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(6334), + [anon_sym_void] = ACTIONS(6336), + [anon_sym_noreturn] = ACTIONS(6336), + [anon_sym_type] = ACTIONS(6336), + [anon_sym_anyopaque] = ACTIONS(6336), + [anon_sym_bool] = ACTIONS(6336), + [anon_sym_int] = ACTIONS(6336), + [anon_sym_uint] = ACTIONS(6336), + [anon_sym_float] = ACTIONS(6336), + [anon_sym_range] = ACTIONS(6336), + [anon_sym_i8] = ACTIONS(6336), + [anon_sym_i16] = ACTIONS(6336), + [anon_sym_i32] = ACTIONS(6336), + [anon_sym_i64] = ACTIONS(6336), + [anon_sym_u8] = ACTIONS(6336), + [anon_sym_u16] = ACTIONS(6336), + [anon_sym_u32] = ACTIONS(6336), + [anon_sym_u64] = ACTIONS(6336), + [anon_sym_isize] = ACTIONS(6336), + [anon_sym_usize] = ACTIONS(6336), + [anon_sym_f32] = ACTIONS(6336), + [anon_sym_f64] = ACTIONS(6336), + [anon_sym_c_char] = ACTIONS(6336), + [anon_sym_c_schar] = ACTIONS(6336), + [anon_sym_c_uchar] = ACTIONS(6336), + [anon_sym_c_short] = ACTIONS(6336), + [anon_sym_c_ushort] = ACTIONS(6336), + [anon_sym_c_int] = ACTIONS(6336), + [anon_sym_c_uint] = ACTIONS(6336), + [anon_sym_c_long] = ACTIONS(6336), + [anon_sym_c_ulong] = ACTIONS(6336), + [anon_sym_c_longlong] = ACTIONS(6336), + [anon_sym_c_ulonglong] = ACTIONS(6336), + [anon_sym_c_float] = ACTIONS(6336), + [anon_sym_c_double] = ACTIONS(6336), + [anon_sym_c_longdouble] = ACTIONS(6336), + [anon_sym_PLUS_EQ] = ACTIONS(6334), + [anon_sym_DASH_EQ] = ACTIONS(6334), + [anon_sym_STAR_EQ] = ACTIONS(6334), + [anon_sym_SLASH_EQ] = ACTIONS(6334), + [anon_sym_AMP_EQ] = ACTIONS(6334), + [anon_sym_PIPE_EQ] = ACTIONS(6334), + [anon_sym_xor_EQ] = ACTIONS(6334), + [anon_sym_LT_LT_EQ] = ACTIONS(6334), + [anon_sym_GT_GT_EQ] = ACTIONS(6334), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6334), + [anon_sym_return] = ACTIONS(6336), + [anon_sym_yield] = ACTIONS(6336), + [anon_sym_break] = ACTIONS(6336), + [anon_sym_continue] = ACTIONS(6336), + [anon_sym_defer] = ACTIONS(6336), + [anon_sym_errdefer] = ACTIONS(6336), + [anon_sym_if] = ACTIONS(6336), + [anon_sym_else] = ACTIONS(6336), + [anon_sym_while] = ACTIONS(6336), + [anon_sym_expand] = ACTIONS(6336), + [anon_sym_for] = ACTIONS(6336), + [anon_sym_match] = ACTIONS(6336), + [anon_sym_DOT_DOT] = ACTIONS(6336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6334), + [anon_sym_orelse] = ACTIONS(6336), + [anon_sym_or] = ACTIONS(6336), + [anon_sym_and] = ACTIONS(6336), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6334), + [anon_sym_AMP] = ACTIONS(6336), + [anon_sym_xor] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6336), + [anon_sym_GT_GT] = ACTIONS(6336), + [anon_sym_LT_LT_PIPE] = ACTIONS(6336), + [anon_sym_PLUS] = ACTIONS(6336), + [anon_sym_SLASH] = ACTIONS(6336), + [anon_sym_catch] = ACTIONS(6336), + [anon_sym_TILDE] = ACTIONS(6334), + [anon_sym_try] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(6334), + [anon_sym_true] = ACTIONS(6336), + [anon_sym_false] = ACTIONS(6336), + [anon_sym_null] = ACTIONS(6336), + [anon_sym_unreachable] = ACTIONS(6336), + [anon_sym_undefined] = ACTIONS(6336), + [sym_sink] = ACTIONS(6336), + [sym_integer] = ACTIONS(6336), + [sym_float] = ACTIONS(6334), + [anon_sym_DQUOTE] = ACTIONS(6334), + [sym_multiline_string] = ACTIONS(6334), + [sym_character] = ACTIONS(6334), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6334), + }, + [STATE(3173)] = { + [sym_identifier] = ACTIONS(6340), + [anon_sym_func] = ACTIONS(6340), + [anon_sym_c_func] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6340), + [anon_sym_EQ] = ACTIONS(6340), + [anon_sym_struct] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(6338), + [anon_sym_COMMA] = ACTIONS(6338), + [anon_sym_RBRACE] = ACTIONS(6338), + [anon_sym_DASH] = ACTIONS(6340), + [anon_sym_DOLLAR] = ACTIONS(6338), + [anon_sym_PIPE] = ACTIONS(6340), + [anon_sym_struct_type_BANG] = ACTIONS(6338), + [anon_sym_QMARK] = ACTIONS(6338), + [anon_sym_AT] = ACTIONS(6338), + [anon_sym_STAR] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(6338), + [anon_sym_void] = ACTIONS(6340), + [anon_sym_noreturn] = ACTIONS(6340), + [anon_sym_type] = ACTIONS(6340), + [anon_sym_anyopaque] = ACTIONS(6340), + [anon_sym_bool] = ACTIONS(6340), + [anon_sym_int] = ACTIONS(6340), + [anon_sym_uint] = ACTIONS(6340), + [anon_sym_float] = ACTIONS(6340), + [anon_sym_range] = ACTIONS(6340), + [anon_sym_i8] = ACTIONS(6340), + [anon_sym_i16] = ACTIONS(6340), + [anon_sym_i32] = ACTIONS(6340), + [anon_sym_i64] = ACTIONS(6340), + [anon_sym_u8] = ACTIONS(6340), + [anon_sym_u16] = ACTIONS(6340), + [anon_sym_u32] = ACTIONS(6340), + [anon_sym_u64] = ACTIONS(6340), + [anon_sym_isize] = ACTIONS(6340), + [anon_sym_usize] = ACTIONS(6340), + [anon_sym_f32] = ACTIONS(6340), + [anon_sym_f64] = ACTIONS(6340), + [anon_sym_c_char] = ACTIONS(6340), + [anon_sym_c_schar] = ACTIONS(6340), + [anon_sym_c_uchar] = ACTIONS(6340), + [anon_sym_c_short] = ACTIONS(6340), + [anon_sym_c_ushort] = ACTIONS(6340), + [anon_sym_c_int] = ACTIONS(6340), + [anon_sym_c_uint] = ACTIONS(6340), + [anon_sym_c_long] = ACTIONS(6340), + [anon_sym_c_ulong] = ACTIONS(6340), + [anon_sym_c_longlong] = ACTIONS(6340), + [anon_sym_c_ulonglong] = ACTIONS(6340), + [anon_sym_c_float] = ACTIONS(6340), + [anon_sym_c_double] = ACTIONS(6340), + [anon_sym_c_longdouble] = ACTIONS(6340), + [anon_sym_PLUS_EQ] = ACTIONS(6338), + [anon_sym_DASH_EQ] = ACTIONS(6338), + [anon_sym_STAR_EQ] = ACTIONS(6338), + [anon_sym_SLASH_EQ] = ACTIONS(6338), + [anon_sym_AMP_EQ] = ACTIONS(6338), + [anon_sym_PIPE_EQ] = ACTIONS(6338), + [anon_sym_xor_EQ] = ACTIONS(6338), + [anon_sym_LT_LT_EQ] = ACTIONS(6338), + [anon_sym_GT_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6338), + [anon_sym_return] = ACTIONS(6340), + [anon_sym_yield] = ACTIONS(6340), + [anon_sym_break] = ACTIONS(6340), + [anon_sym_continue] = ACTIONS(6340), + [anon_sym_defer] = ACTIONS(6340), + [anon_sym_errdefer] = ACTIONS(6340), + [anon_sym_if] = ACTIONS(6340), + [anon_sym_else] = ACTIONS(6340), + [anon_sym_while] = ACTIONS(6340), + [anon_sym_expand] = ACTIONS(6340), + [anon_sym_for] = ACTIONS(6340), + [anon_sym_match] = ACTIONS(6340), + [anon_sym_DOT_DOT] = ACTIONS(6340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6338), + [anon_sym_orelse] = ACTIONS(6340), + [anon_sym_or] = ACTIONS(6340), + [anon_sym_and] = ACTIONS(6340), + [anon_sym_EQ_EQ] = ACTIONS(6338), + [anon_sym_BANG_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6340), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_GT] = ACTIONS(6340), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_AMP] = ACTIONS(6340), + [anon_sym_xor] = ACTIONS(6340), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym_LT_LT_PIPE] = ACTIONS(6340), + [anon_sym_PLUS] = ACTIONS(6340), + [anon_sym_SLASH] = ACTIONS(6340), + [anon_sym_catch] = ACTIONS(6340), + [anon_sym_TILDE] = ACTIONS(6338), + [anon_sym_try] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6338), + [anon_sym_true] = ACTIONS(6340), + [anon_sym_false] = ACTIONS(6340), + [anon_sym_null] = ACTIONS(6340), + [anon_sym_unreachable] = ACTIONS(6340), + [anon_sym_undefined] = ACTIONS(6340), + [sym_sink] = ACTIONS(6340), + [sym_integer] = ACTIONS(6340), + [sym_float] = ACTIONS(6338), + [anon_sym_DQUOTE] = ACTIONS(6338), + [sym_multiline_string] = ACTIONS(6338), + [sym_character] = ACTIONS(6338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6338), + }, + [STATE(3174)] = { + [sym_identifier] = ACTIONS(6344), + [anon_sym_func] = ACTIONS(6344), + [anon_sym_c_func] = ACTIONS(6344), + [anon_sym_BANG] = ACTIONS(6344), + [anon_sym_EQ] = ACTIONS(6344), + [anon_sym_struct] = ACTIONS(6344), + [anon_sym_LPAREN] = ACTIONS(6342), + [anon_sym_LBRACE] = ACTIONS(6342), + [anon_sym_COMMA] = ACTIONS(6342), + [anon_sym_RBRACE] = ACTIONS(6342), + [anon_sym_DASH] = ACTIONS(6344), + [anon_sym_DOLLAR] = ACTIONS(6342), + [anon_sym_PIPE] = ACTIONS(6344), + [anon_sym_struct_type_BANG] = ACTIONS(6342), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_AT] = ACTIONS(6342), + [anon_sym_STAR] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(6342), + [anon_sym_void] = ACTIONS(6344), + [anon_sym_noreturn] = ACTIONS(6344), + [anon_sym_type] = ACTIONS(6344), + [anon_sym_anyopaque] = ACTIONS(6344), + [anon_sym_bool] = ACTIONS(6344), + [anon_sym_int] = ACTIONS(6344), + [anon_sym_uint] = ACTIONS(6344), + [anon_sym_float] = ACTIONS(6344), + [anon_sym_range] = ACTIONS(6344), + [anon_sym_i8] = ACTIONS(6344), + [anon_sym_i16] = ACTIONS(6344), + [anon_sym_i32] = ACTIONS(6344), + [anon_sym_i64] = ACTIONS(6344), + [anon_sym_u8] = ACTIONS(6344), + [anon_sym_u16] = ACTIONS(6344), + [anon_sym_u32] = ACTIONS(6344), + [anon_sym_u64] = ACTIONS(6344), + [anon_sym_isize] = ACTIONS(6344), + [anon_sym_usize] = ACTIONS(6344), + [anon_sym_f32] = ACTIONS(6344), + [anon_sym_f64] = ACTIONS(6344), + [anon_sym_c_char] = ACTIONS(6344), + [anon_sym_c_schar] = ACTIONS(6344), + [anon_sym_c_uchar] = ACTIONS(6344), + [anon_sym_c_short] = ACTIONS(6344), + [anon_sym_c_ushort] = ACTIONS(6344), + [anon_sym_c_int] = ACTIONS(6344), + [anon_sym_c_uint] = ACTIONS(6344), + [anon_sym_c_long] = ACTIONS(6344), + [anon_sym_c_ulong] = ACTIONS(6344), + [anon_sym_c_longlong] = ACTIONS(6344), + [anon_sym_c_ulonglong] = ACTIONS(6344), + [anon_sym_c_float] = ACTIONS(6344), + [anon_sym_c_double] = ACTIONS(6344), + [anon_sym_c_longdouble] = ACTIONS(6344), + [anon_sym_PLUS_EQ] = ACTIONS(6342), + [anon_sym_DASH_EQ] = ACTIONS(6342), + [anon_sym_STAR_EQ] = ACTIONS(6342), + [anon_sym_SLASH_EQ] = ACTIONS(6342), + [anon_sym_AMP_EQ] = ACTIONS(6342), + [anon_sym_PIPE_EQ] = ACTIONS(6342), + [anon_sym_xor_EQ] = ACTIONS(6342), + [anon_sym_LT_LT_EQ] = ACTIONS(6342), + [anon_sym_GT_GT_EQ] = ACTIONS(6342), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6342), + [anon_sym_return] = ACTIONS(6344), + [anon_sym_yield] = ACTIONS(6344), + [anon_sym_break] = ACTIONS(6344), + [anon_sym_continue] = ACTIONS(6344), + [anon_sym_defer] = ACTIONS(6344), + [anon_sym_errdefer] = ACTIONS(6344), + [anon_sym_if] = ACTIONS(6344), + [anon_sym_else] = ACTIONS(6344), + [anon_sym_while] = ACTIONS(6344), + [anon_sym_expand] = ACTIONS(6344), + [anon_sym_for] = ACTIONS(6344), + [anon_sym_match] = ACTIONS(6344), + [anon_sym_DOT_DOT] = ACTIONS(6344), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6342), + [anon_sym_orelse] = ACTIONS(6344), + [anon_sym_or] = ACTIONS(6344), + [anon_sym_and] = ACTIONS(6344), + [anon_sym_EQ_EQ] = ACTIONS(6342), + [anon_sym_BANG_EQ] = ACTIONS(6342), + [anon_sym_LT] = ACTIONS(6344), + [anon_sym_LT_EQ] = ACTIONS(6342), + [anon_sym_GT] = ACTIONS(6344), + [anon_sym_GT_EQ] = ACTIONS(6342), + [anon_sym_AMP] = ACTIONS(6344), + [anon_sym_xor] = ACTIONS(6344), + [anon_sym_LT_LT] = ACTIONS(6344), + [anon_sym_GT_GT] = ACTIONS(6344), + [anon_sym_LT_LT_PIPE] = ACTIONS(6344), + [anon_sym_PLUS] = ACTIONS(6344), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_catch] = ACTIONS(6344), + [anon_sym_TILDE] = ACTIONS(6342), + [anon_sym_try] = ACTIONS(6344), + [anon_sym_DOT] = ACTIONS(6344), + [anon_sym_CARET] = ACTIONS(6342), + [anon_sym_true] = ACTIONS(6344), + [anon_sym_false] = ACTIONS(6344), + [anon_sym_null] = ACTIONS(6344), + [anon_sym_unreachable] = ACTIONS(6344), + [anon_sym_undefined] = ACTIONS(6344), + [sym_sink] = ACTIONS(6344), + [sym_integer] = ACTIONS(6344), + [sym_float] = ACTIONS(6342), + [anon_sym_DQUOTE] = ACTIONS(6342), + [sym_multiline_string] = ACTIONS(6342), + [sym_character] = ACTIONS(6342), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6342), + }, + [STATE(3175)] = { + [sym_identifier] = ACTIONS(6348), + [anon_sym_func] = ACTIONS(6348), + [anon_sym_c_func] = ACTIONS(6348), + [anon_sym_BANG] = ACTIONS(6348), + [anon_sym_EQ] = ACTIONS(6348), + [anon_sym_struct] = ACTIONS(6348), + [anon_sym_LPAREN] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(6346), + [anon_sym_COMMA] = ACTIONS(6346), + [anon_sym_RBRACE] = ACTIONS(6346), + [anon_sym_DASH] = ACTIONS(6348), + [anon_sym_DOLLAR] = ACTIONS(6346), + [anon_sym_PIPE] = ACTIONS(6348), + [anon_sym_struct_type_BANG] = ACTIONS(6346), + [anon_sym_QMARK] = ACTIONS(6346), + [anon_sym_AT] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6348), + [anon_sym_LBRACK] = ACTIONS(6346), + [anon_sym_void] = ACTIONS(6348), + [anon_sym_noreturn] = ACTIONS(6348), + [anon_sym_type] = ACTIONS(6348), + [anon_sym_anyopaque] = ACTIONS(6348), + [anon_sym_bool] = ACTIONS(6348), + [anon_sym_int] = ACTIONS(6348), + [anon_sym_uint] = ACTIONS(6348), + [anon_sym_float] = ACTIONS(6348), + [anon_sym_range] = ACTIONS(6348), + [anon_sym_i8] = ACTIONS(6348), + [anon_sym_i16] = ACTIONS(6348), + [anon_sym_i32] = ACTIONS(6348), + [anon_sym_i64] = ACTIONS(6348), + [anon_sym_u8] = ACTIONS(6348), + [anon_sym_u16] = ACTIONS(6348), + [anon_sym_u32] = ACTIONS(6348), + [anon_sym_u64] = ACTIONS(6348), + [anon_sym_isize] = ACTIONS(6348), + [anon_sym_usize] = ACTIONS(6348), + [anon_sym_f32] = ACTIONS(6348), + [anon_sym_f64] = ACTIONS(6348), + [anon_sym_c_char] = ACTIONS(6348), + [anon_sym_c_schar] = ACTIONS(6348), + [anon_sym_c_uchar] = ACTIONS(6348), + [anon_sym_c_short] = ACTIONS(6348), + [anon_sym_c_ushort] = ACTIONS(6348), + [anon_sym_c_int] = ACTIONS(6348), + [anon_sym_c_uint] = ACTIONS(6348), + [anon_sym_c_long] = ACTIONS(6348), + [anon_sym_c_ulong] = ACTIONS(6348), + [anon_sym_c_longlong] = ACTIONS(6348), + [anon_sym_c_ulonglong] = ACTIONS(6348), + [anon_sym_c_float] = ACTIONS(6348), + [anon_sym_c_double] = ACTIONS(6348), + [anon_sym_c_longdouble] = ACTIONS(6348), + [anon_sym_PLUS_EQ] = ACTIONS(6346), + [anon_sym_DASH_EQ] = ACTIONS(6346), + [anon_sym_STAR_EQ] = ACTIONS(6346), + [anon_sym_SLASH_EQ] = ACTIONS(6346), + [anon_sym_AMP_EQ] = ACTIONS(6346), + [anon_sym_PIPE_EQ] = ACTIONS(6346), + [anon_sym_xor_EQ] = ACTIONS(6346), + [anon_sym_LT_LT_EQ] = ACTIONS(6346), + [anon_sym_GT_GT_EQ] = ACTIONS(6346), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6346), + [anon_sym_return] = ACTIONS(6348), + [anon_sym_yield] = ACTIONS(6348), + [anon_sym_break] = ACTIONS(6348), + [anon_sym_continue] = ACTIONS(6348), + [anon_sym_defer] = ACTIONS(6348), + [anon_sym_errdefer] = ACTIONS(6348), + [anon_sym_if] = ACTIONS(6348), + [anon_sym_else] = ACTIONS(6348), + [anon_sym_while] = ACTIONS(6348), + [anon_sym_expand] = ACTIONS(6348), + [anon_sym_for] = ACTIONS(6348), + [anon_sym_match] = ACTIONS(6348), + [anon_sym_DOT_DOT] = ACTIONS(6348), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6346), + [anon_sym_orelse] = ACTIONS(6348), + [anon_sym_or] = ACTIONS(6348), + [anon_sym_and] = ACTIONS(6348), + [anon_sym_EQ_EQ] = ACTIONS(6346), + [anon_sym_BANG_EQ] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6348), + [anon_sym_LT_EQ] = ACTIONS(6346), + [anon_sym_GT] = ACTIONS(6348), + [anon_sym_GT_EQ] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6348), + [anon_sym_xor] = ACTIONS(6348), + [anon_sym_LT_LT] = ACTIONS(6348), + [anon_sym_GT_GT] = ACTIONS(6348), + [anon_sym_LT_LT_PIPE] = ACTIONS(6348), + [anon_sym_PLUS] = ACTIONS(6348), + [anon_sym_SLASH] = ACTIONS(6348), + [anon_sym_catch] = ACTIONS(6348), + [anon_sym_TILDE] = ACTIONS(6346), + [anon_sym_try] = ACTIONS(6348), + [anon_sym_DOT] = ACTIONS(6348), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_true] = ACTIONS(6348), + [anon_sym_false] = ACTIONS(6348), + [anon_sym_null] = ACTIONS(6348), + [anon_sym_unreachable] = ACTIONS(6348), + [anon_sym_undefined] = ACTIONS(6348), + [sym_sink] = ACTIONS(6348), + [sym_integer] = ACTIONS(6348), + [sym_float] = ACTIONS(6346), + [anon_sym_DQUOTE] = ACTIONS(6346), + [sym_multiline_string] = ACTIONS(6346), + [sym_character] = ACTIONS(6346), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6346), + }, + [STATE(3176)] = { + [sym_identifier] = ACTIONS(5036), + [anon_sym_func] = ACTIONS(5036), + [anon_sym_c_func] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_struct] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_struct_type_BANG] = ACTIONS(5034), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_AT] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_void] = ACTIONS(5036), + [anon_sym_noreturn] = ACTIONS(5036), + [anon_sym_type] = ACTIONS(5036), + [anon_sym_anyopaque] = ACTIONS(5036), + [anon_sym_bool] = ACTIONS(5036), + [anon_sym_int] = ACTIONS(5036), + [anon_sym_uint] = ACTIONS(5036), + [anon_sym_float] = ACTIONS(5036), + [anon_sym_range] = ACTIONS(5036), + [anon_sym_i8] = ACTIONS(5036), + [anon_sym_i16] = ACTIONS(5036), + [anon_sym_i32] = ACTIONS(5036), + [anon_sym_i64] = ACTIONS(5036), + [anon_sym_u8] = ACTIONS(5036), + [anon_sym_u16] = ACTIONS(5036), + [anon_sym_u32] = ACTIONS(5036), + [anon_sym_u64] = ACTIONS(5036), + [anon_sym_isize] = ACTIONS(5036), + [anon_sym_usize] = ACTIONS(5036), + [anon_sym_f32] = ACTIONS(5036), + [anon_sym_f64] = ACTIONS(5036), + [anon_sym_c_char] = ACTIONS(5036), + [anon_sym_c_schar] = ACTIONS(5036), + [anon_sym_c_uchar] = ACTIONS(5036), + [anon_sym_c_short] = ACTIONS(5036), + [anon_sym_c_ushort] = ACTIONS(5036), + [anon_sym_c_int] = ACTIONS(5036), + [anon_sym_c_uint] = ACTIONS(5036), + [anon_sym_c_long] = ACTIONS(5036), + [anon_sym_c_ulong] = ACTIONS(5036), + [anon_sym_c_longlong] = ACTIONS(5036), + [anon_sym_c_ulonglong] = ACTIONS(5036), + [anon_sym_c_float] = ACTIONS(5036), + [anon_sym_c_double] = ACTIONS(5036), + [anon_sym_c_longdouble] = ACTIONS(5036), + [anon_sym_PLUS_EQ] = ACTIONS(5034), + [anon_sym_DASH_EQ] = ACTIONS(5034), + [anon_sym_STAR_EQ] = ACTIONS(5034), + [anon_sym_SLASH_EQ] = ACTIONS(5034), + [anon_sym_AMP_EQ] = ACTIONS(5034), + [anon_sym_PIPE_EQ] = ACTIONS(5034), + [anon_sym_xor_EQ] = ACTIONS(5034), + [anon_sym_LT_LT_EQ] = ACTIONS(5034), + [anon_sym_GT_GT_EQ] = ACTIONS(5034), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5034), + [anon_sym_return] = ACTIONS(5036), + [anon_sym_yield] = ACTIONS(5036), + [anon_sym_break] = ACTIONS(5036), + [anon_sym_continue] = ACTIONS(5036), + [anon_sym_defer] = ACTIONS(5036), + [anon_sym_errdefer] = ACTIONS(5036), + [anon_sym_if] = ACTIONS(5036), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_while] = ACTIONS(5036), + [anon_sym_expand] = ACTIONS(5036), + [anon_sym_for] = ACTIONS(5036), + [anon_sym_match] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5034), + [anon_sym_orelse] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5036), + [anon_sym_xor] = ACTIONS(5036), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5036), + [anon_sym_LT_LT_PIPE] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_catch] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5034), + [anon_sym_try] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym_true] = ACTIONS(5036), + [anon_sym_false] = ACTIONS(5036), + [anon_sym_null] = ACTIONS(5036), + [anon_sym_unreachable] = ACTIONS(5036), + [anon_sym_undefined] = ACTIONS(5036), + [sym_sink] = ACTIONS(5036), + [sym_integer] = ACTIONS(5036), + [sym_float] = ACTIONS(5034), + [anon_sym_DQUOTE] = ACTIONS(5034), + [sym_multiline_string] = ACTIONS(5034), + [sym_character] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5034), + }, + [STATE(3177)] = { + [sym_identifier] = ACTIONS(5040), + [anon_sym_func] = ACTIONS(5040), + [anon_sym_c_func] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_struct] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_COMMA] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_struct_type_BANG] = ACTIONS(5038), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_AT] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_void] = ACTIONS(5040), + [anon_sym_noreturn] = ACTIONS(5040), + [anon_sym_type] = ACTIONS(5040), + [anon_sym_anyopaque] = ACTIONS(5040), + [anon_sym_bool] = ACTIONS(5040), + [anon_sym_int] = ACTIONS(5040), + [anon_sym_uint] = ACTIONS(5040), + [anon_sym_float] = ACTIONS(5040), + [anon_sym_range] = ACTIONS(5040), + [anon_sym_i8] = ACTIONS(5040), + [anon_sym_i16] = ACTIONS(5040), + [anon_sym_i32] = ACTIONS(5040), + [anon_sym_i64] = ACTIONS(5040), + [anon_sym_u8] = ACTIONS(5040), + [anon_sym_u16] = ACTIONS(5040), + [anon_sym_u32] = ACTIONS(5040), + [anon_sym_u64] = ACTIONS(5040), + [anon_sym_isize] = ACTIONS(5040), + [anon_sym_usize] = ACTIONS(5040), + [anon_sym_f32] = ACTIONS(5040), + [anon_sym_f64] = ACTIONS(5040), + [anon_sym_c_char] = ACTIONS(5040), + [anon_sym_c_schar] = ACTIONS(5040), + [anon_sym_c_uchar] = ACTIONS(5040), + [anon_sym_c_short] = ACTIONS(5040), + [anon_sym_c_ushort] = ACTIONS(5040), + [anon_sym_c_int] = ACTIONS(5040), + [anon_sym_c_uint] = ACTIONS(5040), + [anon_sym_c_long] = ACTIONS(5040), + [anon_sym_c_ulong] = ACTIONS(5040), + [anon_sym_c_longlong] = ACTIONS(5040), + [anon_sym_c_ulonglong] = ACTIONS(5040), + [anon_sym_c_float] = ACTIONS(5040), + [anon_sym_c_double] = ACTIONS(5040), + [anon_sym_c_longdouble] = ACTIONS(5040), + [anon_sym_PLUS_EQ] = ACTIONS(5038), + [anon_sym_DASH_EQ] = ACTIONS(5038), + [anon_sym_STAR_EQ] = ACTIONS(5038), + [anon_sym_SLASH_EQ] = ACTIONS(5038), + [anon_sym_AMP_EQ] = ACTIONS(5038), + [anon_sym_PIPE_EQ] = ACTIONS(5038), + [anon_sym_xor_EQ] = ACTIONS(5038), + [anon_sym_LT_LT_EQ] = ACTIONS(5038), + [anon_sym_GT_GT_EQ] = ACTIONS(5038), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5038), + [anon_sym_return] = ACTIONS(5040), + [anon_sym_yield] = ACTIONS(5040), + [anon_sym_break] = ACTIONS(5040), + [anon_sym_continue] = ACTIONS(5040), + [anon_sym_defer] = ACTIONS(5040), + [anon_sym_errdefer] = ACTIONS(5040), + [anon_sym_if] = ACTIONS(5040), + [anon_sym_else] = ACTIONS(5040), + [anon_sym_while] = ACTIONS(5040), + [anon_sym_expand] = ACTIONS(5040), + [anon_sym_for] = ACTIONS(5040), + [anon_sym_match] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5038), + [anon_sym_orelse] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5040), + [anon_sym_and] = ACTIONS(5040), + [anon_sym_EQ_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5040), + [anon_sym_xor] = ACTIONS(5040), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5040), + [anon_sym_LT_LT_PIPE] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_catch] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5038), + [anon_sym_try] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym_true] = ACTIONS(5040), + [anon_sym_false] = ACTIONS(5040), + [anon_sym_null] = ACTIONS(5040), + [anon_sym_unreachable] = ACTIONS(5040), + [anon_sym_undefined] = ACTIONS(5040), + [sym_sink] = ACTIONS(5040), + [sym_integer] = ACTIONS(5040), + [sym_float] = ACTIONS(5038), + [anon_sym_DQUOTE] = ACTIONS(5038), + [sym_multiline_string] = ACTIONS(5038), + [sym_character] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5038), + }, + [STATE(3178)] = { + [sym_identifier] = ACTIONS(5044), + [anon_sym_func] = ACTIONS(5044), + [anon_sym_c_func] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_struct] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5042), + [anon_sym_COMMA] = ACTIONS(5042), + [anon_sym_RBRACE] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_struct_type_BANG] = ACTIONS(5042), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_AT] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_void] = ACTIONS(5044), + [anon_sym_noreturn] = ACTIONS(5044), + [anon_sym_type] = ACTIONS(5044), + [anon_sym_anyopaque] = ACTIONS(5044), + [anon_sym_bool] = ACTIONS(5044), + [anon_sym_int] = ACTIONS(5044), + [anon_sym_uint] = ACTIONS(5044), + [anon_sym_float] = ACTIONS(5044), + [anon_sym_range] = ACTIONS(5044), + [anon_sym_i8] = ACTIONS(5044), + [anon_sym_i16] = ACTIONS(5044), + [anon_sym_i32] = ACTIONS(5044), + [anon_sym_i64] = ACTIONS(5044), + [anon_sym_u8] = ACTIONS(5044), + [anon_sym_u16] = ACTIONS(5044), + [anon_sym_u32] = ACTIONS(5044), + [anon_sym_u64] = ACTIONS(5044), + [anon_sym_isize] = ACTIONS(5044), + [anon_sym_usize] = ACTIONS(5044), + [anon_sym_f32] = ACTIONS(5044), + [anon_sym_f64] = ACTIONS(5044), + [anon_sym_c_char] = ACTIONS(5044), + [anon_sym_c_schar] = ACTIONS(5044), + [anon_sym_c_uchar] = ACTIONS(5044), + [anon_sym_c_short] = ACTIONS(5044), + [anon_sym_c_ushort] = ACTIONS(5044), + [anon_sym_c_int] = ACTIONS(5044), + [anon_sym_c_uint] = ACTIONS(5044), + [anon_sym_c_long] = ACTIONS(5044), + [anon_sym_c_ulong] = ACTIONS(5044), + [anon_sym_c_longlong] = ACTIONS(5044), + [anon_sym_c_ulonglong] = ACTIONS(5044), + [anon_sym_c_float] = ACTIONS(5044), + [anon_sym_c_double] = ACTIONS(5044), + [anon_sym_c_longdouble] = ACTIONS(5044), + [anon_sym_PLUS_EQ] = ACTIONS(5042), + [anon_sym_DASH_EQ] = ACTIONS(5042), + [anon_sym_STAR_EQ] = ACTIONS(5042), + [anon_sym_SLASH_EQ] = ACTIONS(5042), + [anon_sym_AMP_EQ] = ACTIONS(5042), + [anon_sym_PIPE_EQ] = ACTIONS(5042), + [anon_sym_xor_EQ] = ACTIONS(5042), + [anon_sym_LT_LT_EQ] = ACTIONS(5042), + [anon_sym_GT_GT_EQ] = ACTIONS(5042), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5042), + [anon_sym_return] = ACTIONS(5044), + [anon_sym_yield] = ACTIONS(5044), + [anon_sym_break] = ACTIONS(5044), + [anon_sym_continue] = ACTIONS(5044), + [anon_sym_defer] = ACTIONS(5044), + [anon_sym_errdefer] = ACTIONS(5044), + [anon_sym_if] = ACTIONS(5044), + [anon_sym_else] = ACTIONS(5044), + [anon_sym_while] = ACTIONS(5044), + [anon_sym_expand] = ACTIONS(5044), + [anon_sym_for] = ACTIONS(5044), + [anon_sym_match] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5042), + [anon_sym_orelse] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5042), + [anon_sym_BANG_EQ] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5044), + [anon_sym_xor] = ACTIONS(5044), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5044), + [anon_sym_LT_LT_PIPE] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_catch] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5042), + [anon_sym_try] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym_true] = ACTIONS(5044), + [anon_sym_false] = ACTIONS(5044), + [anon_sym_null] = ACTIONS(5044), + [anon_sym_unreachable] = ACTIONS(5044), + [anon_sym_undefined] = ACTIONS(5044), + [sym_sink] = ACTIONS(5044), + [sym_integer] = ACTIONS(5044), + [sym_float] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5042), + [sym_multiline_string] = ACTIONS(5042), + [sym_character] = ACTIONS(5042), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5042), + }, + [STATE(3179)] = { + [sym_identifier] = ACTIONS(5048), + [anon_sym_func] = ACTIONS(5048), + [anon_sym_c_func] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_struct_type_BANG] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_AT] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_void] = ACTIONS(5048), + [anon_sym_noreturn] = ACTIONS(5048), + [anon_sym_type] = ACTIONS(5048), + [anon_sym_anyopaque] = ACTIONS(5048), + [anon_sym_bool] = ACTIONS(5048), + [anon_sym_int] = ACTIONS(5048), + [anon_sym_uint] = ACTIONS(5048), + [anon_sym_float] = ACTIONS(5048), + [anon_sym_range] = ACTIONS(5048), + [anon_sym_i8] = ACTIONS(5048), + [anon_sym_i16] = ACTIONS(5048), + [anon_sym_i32] = ACTIONS(5048), + [anon_sym_i64] = ACTIONS(5048), + [anon_sym_u8] = ACTIONS(5048), + [anon_sym_u16] = ACTIONS(5048), + [anon_sym_u32] = ACTIONS(5048), + [anon_sym_u64] = ACTIONS(5048), + [anon_sym_isize] = ACTIONS(5048), + [anon_sym_usize] = ACTIONS(5048), + [anon_sym_f32] = ACTIONS(5048), + [anon_sym_f64] = ACTIONS(5048), + [anon_sym_c_char] = ACTIONS(5048), + [anon_sym_c_schar] = ACTIONS(5048), + [anon_sym_c_uchar] = ACTIONS(5048), + [anon_sym_c_short] = ACTIONS(5048), + [anon_sym_c_ushort] = ACTIONS(5048), + [anon_sym_c_int] = ACTIONS(5048), + [anon_sym_c_uint] = ACTIONS(5048), + [anon_sym_c_long] = ACTIONS(5048), + [anon_sym_c_ulong] = ACTIONS(5048), + [anon_sym_c_longlong] = ACTIONS(5048), + [anon_sym_c_ulonglong] = ACTIONS(5048), + [anon_sym_c_float] = ACTIONS(5048), + [anon_sym_c_double] = ACTIONS(5048), + [anon_sym_c_longdouble] = ACTIONS(5048), + [anon_sym_PLUS_EQ] = ACTIONS(5046), + [anon_sym_DASH_EQ] = ACTIONS(5046), + [anon_sym_STAR_EQ] = ACTIONS(5046), + [anon_sym_SLASH_EQ] = ACTIONS(5046), + [anon_sym_AMP_EQ] = ACTIONS(5046), + [anon_sym_PIPE_EQ] = ACTIONS(5046), + [anon_sym_xor_EQ] = ACTIONS(5046), + [anon_sym_LT_LT_EQ] = ACTIONS(5046), + [anon_sym_GT_GT_EQ] = ACTIONS(5046), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5046), + [anon_sym_return] = ACTIONS(5048), + [anon_sym_yield] = ACTIONS(5048), + [anon_sym_break] = ACTIONS(5048), + [anon_sym_continue] = ACTIONS(5048), + [anon_sym_defer] = ACTIONS(5048), + [anon_sym_errdefer] = ACTIONS(5048), + [anon_sym_if] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5048), + [anon_sym_while] = ACTIONS(5048), + [anon_sym_expand] = ACTIONS(5048), + [anon_sym_for] = ACTIONS(5048), + [anon_sym_match] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5046), + [anon_sym_orelse] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym_LT_LT_PIPE] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_catch] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_try] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym_true] = ACTIONS(5048), + [anon_sym_false] = ACTIONS(5048), + [anon_sym_null] = ACTIONS(5048), + [anon_sym_unreachable] = ACTIONS(5048), + [anon_sym_undefined] = ACTIONS(5048), + [sym_sink] = ACTIONS(5048), + [sym_integer] = ACTIONS(5048), + [sym_float] = ACTIONS(5046), + [anon_sym_DQUOTE] = ACTIONS(5046), + [sym_multiline_string] = ACTIONS(5046), + [sym_character] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5046), + }, + [STATE(3180)] = { + [sym_identifier] = ACTIONS(5056), + [anon_sym_func] = ACTIONS(5056), + [anon_sym_c_func] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_struct] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5054), + [anon_sym_COMMA] = ACTIONS(5054), + [anon_sym_RBRACE] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5054), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_struct_type_BANG] = ACTIONS(5054), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_AT] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_void] = ACTIONS(5056), + [anon_sym_noreturn] = ACTIONS(5056), + [anon_sym_type] = ACTIONS(5056), + [anon_sym_anyopaque] = ACTIONS(5056), + [anon_sym_bool] = ACTIONS(5056), + [anon_sym_int] = ACTIONS(5056), + [anon_sym_uint] = ACTIONS(5056), + [anon_sym_float] = ACTIONS(5056), + [anon_sym_range] = ACTIONS(5056), + [anon_sym_i8] = ACTIONS(5056), + [anon_sym_i16] = ACTIONS(5056), + [anon_sym_i32] = ACTIONS(5056), + [anon_sym_i64] = ACTIONS(5056), + [anon_sym_u8] = ACTIONS(5056), + [anon_sym_u16] = ACTIONS(5056), + [anon_sym_u32] = ACTIONS(5056), + [anon_sym_u64] = ACTIONS(5056), + [anon_sym_isize] = ACTIONS(5056), + [anon_sym_usize] = ACTIONS(5056), + [anon_sym_f32] = ACTIONS(5056), + [anon_sym_f64] = ACTIONS(5056), + [anon_sym_c_char] = ACTIONS(5056), + [anon_sym_c_schar] = ACTIONS(5056), + [anon_sym_c_uchar] = ACTIONS(5056), + [anon_sym_c_short] = ACTIONS(5056), + [anon_sym_c_ushort] = ACTIONS(5056), + [anon_sym_c_int] = ACTIONS(5056), + [anon_sym_c_uint] = ACTIONS(5056), + [anon_sym_c_long] = ACTIONS(5056), + [anon_sym_c_ulong] = ACTIONS(5056), + [anon_sym_c_longlong] = ACTIONS(5056), + [anon_sym_c_ulonglong] = ACTIONS(5056), + [anon_sym_c_float] = ACTIONS(5056), + [anon_sym_c_double] = ACTIONS(5056), + [anon_sym_c_longdouble] = ACTIONS(5056), + [anon_sym_PLUS_EQ] = ACTIONS(5054), + [anon_sym_DASH_EQ] = ACTIONS(5054), + [anon_sym_STAR_EQ] = ACTIONS(5054), + [anon_sym_SLASH_EQ] = ACTIONS(5054), + [anon_sym_AMP_EQ] = ACTIONS(5054), + [anon_sym_PIPE_EQ] = ACTIONS(5054), + [anon_sym_xor_EQ] = ACTIONS(5054), + [anon_sym_LT_LT_EQ] = ACTIONS(5054), + [anon_sym_GT_GT_EQ] = ACTIONS(5054), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5054), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_yield] = ACTIONS(5056), + [anon_sym_break] = ACTIONS(5056), + [anon_sym_continue] = ACTIONS(5056), + [anon_sym_defer] = ACTIONS(5056), + [anon_sym_errdefer] = ACTIONS(5056), + [anon_sym_if] = ACTIONS(5056), + [anon_sym_else] = ACTIONS(5056), + [anon_sym_while] = ACTIONS(5056), + [anon_sym_expand] = ACTIONS(5056), + [anon_sym_for] = ACTIONS(5056), + [anon_sym_match] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5054), + [anon_sym_orelse] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_LT] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_xor] = ACTIONS(5056), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5056), + [anon_sym_LT_LT_PIPE] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_catch] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5054), + [anon_sym_try] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym_true] = ACTIONS(5056), + [anon_sym_false] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_unreachable] = ACTIONS(5056), + [anon_sym_undefined] = ACTIONS(5056), + [sym_sink] = ACTIONS(5056), + [sym_integer] = ACTIONS(5056), + [sym_float] = ACTIONS(5054), + [anon_sym_DQUOTE] = ACTIONS(5054), + [sym_multiline_string] = ACTIONS(5054), + [sym_character] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5054), + }, + [STATE(3181)] = { + [sym_type] = STATE(3865), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [sym_identifier] = ACTIONS(6532), + [anon_sym_func] = ACTIONS(6535), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(6538), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6541), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6544), + [anon_sym_mut] = ACTIONS(6547), + [anon_sym_LBRACK] = ACTIONS(6549), + [anon_sym_void] = ACTIONS(6552), + [anon_sym_noreturn] = ACTIONS(6552), + [anon_sym_type] = ACTIONS(6552), + [anon_sym_anyopaque] = ACTIONS(6552), + [anon_sym_bool] = ACTIONS(6552), + [anon_sym_int] = ACTIONS(6552), + [anon_sym_uint] = ACTIONS(6552), + [anon_sym_float] = ACTIONS(6552), + [anon_sym_range] = ACTIONS(6552), + [anon_sym_i8] = ACTIONS(6552), + [anon_sym_i16] = ACTIONS(6552), + [anon_sym_i32] = ACTIONS(6552), + [anon_sym_i64] = ACTIONS(6552), + [anon_sym_u8] = ACTIONS(6552), + [anon_sym_u16] = ACTIONS(6552), + [anon_sym_u32] = ACTIONS(6552), + [anon_sym_u64] = ACTIONS(6552), + [anon_sym_isize] = ACTIONS(6552), + [anon_sym_usize] = ACTIONS(6552), + [anon_sym_f32] = ACTIONS(6552), + [anon_sym_f64] = ACTIONS(6552), + [anon_sym_c_char] = ACTIONS(6552), + [anon_sym_c_schar] = ACTIONS(6552), + [anon_sym_c_uchar] = ACTIONS(6552), + [anon_sym_c_short] = ACTIONS(6552), + [anon_sym_c_ushort] = ACTIONS(6552), + [anon_sym_c_int] = ACTIONS(6552), + [anon_sym_c_uint] = ACTIONS(6552), + [anon_sym_c_long] = ACTIONS(6552), + [anon_sym_c_ulong] = ACTIONS(6552), + [anon_sym_c_longlong] = ACTIONS(6552), + [anon_sym_c_ulonglong] = ACTIONS(6552), + [anon_sym_c_float] = ACTIONS(6552), + [anon_sym_c_double] = ACTIONS(6552), + [anon_sym_c_longdouble] = ACTIONS(6552), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(3182)] = { + [sym_type] = STATE(3890), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [sym_identifier] = ACTIONS(6532), + [anon_sym_func] = ACTIONS(6535), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(6538), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6541), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6544), + [anon_sym_mut] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6549), + [anon_sym_void] = ACTIONS(6552), + [anon_sym_noreturn] = ACTIONS(6552), + [anon_sym_type] = ACTIONS(6552), + [anon_sym_anyopaque] = ACTIONS(6552), + [anon_sym_bool] = ACTIONS(6552), + [anon_sym_int] = ACTIONS(6552), + [anon_sym_uint] = ACTIONS(6552), + [anon_sym_float] = ACTIONS(6552), + [anon_sym_range] = ACTIONS(6552), + [anon_sym_i8] = ACTIONS(6552), + [anon_sym_i16] = ACTIONS(6552), + [anon_sym_i32] = ACTIONS(6552), + [anon_sym_i64] = ACTIONS(6552), + [anon_sym_u8] = ACTIONS(6552), + [anon_sym_u16] = ACTIONS(6552), + [anon_sym_u32] = ACTIONS(6552), + [anon_sym_u64] = ACTIONS(6552), + [anon_sym_isize] = ACTIONS(6552), + [anon_sym_usize] = ACTIONS(6552), + [anon_sym_f32] = ACTIONS(6552), + [anon_sym_f64] = ACTIONS(6552), + [anon_sym_c_char] = ACTIONS(6552), + [anon_sym_c_schar] = ACTIONS(6552), + [anon_sym_c_uchar] = ACTIONS(6552), + [anon_sym_c_short] = ACTIONS(6552), + [anon_sym_c_ushort] = ACTIONS(6552), + [anon_sym_c_int] = ACTIONS(6552), + [anon_sym_c_uint] = ACTIONS(6552), + [anon_sym_c_long] = ACTIONS(6552), + [anon_sym_c_ulong] = ACTIONS(6552), + [anon_sym_c_longlong] = ACTIONS(6552), + [anon_sym_c_ulonglong] = ACTIONS(6552), + [anon_sym_c_float] = ACTIONS(6552), + [anon_sym_c_double] = ACTIONS(6552), + [anon_sym_c_longdouble] = ACTIONS(6552), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(3183)] = { + [sym_identifier] = ACTIONS(5060), + [anon_sym_func] = ACTIONS(5060), + [anon_sym_c_func] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_struct] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5058), + [anon_sym_COMMA] = ACTIONS(5058), + [anon_sym_RBRACE] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5058), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_struct_type_BANG] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_AT] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_void] = ACTIONS(5060), + [anon_sym_noreturn] = ACTIONS(5060), + [anon_sym_type] = ACTIONS(5060), + [anon_sym_anyopaque] = ACTIONS(5060), + [anon_sym_bool] = ACTIONS(5060), + [anon_sym_int] = ACTIONS(5060), + [anon_sym_uint] = ACTIONS(5060), + [anon_sym_float] = ACTIONS(5060), + [anon_sym_range] = ACTIONS(5060), + [anon_sym_i8] = ACTIONS(5060), + [anon_sym_i16] = ACTIONS(5060), + [anon_sym_i32] = ACTIONS(5060), + [anon_sym_i64] = ACTIONS(5060), + [anon_sym_u8] = ACTIONS(5060), + [anon_sym_u16] = ACTIONS(5060), + [anon_sym_u32] = ACTIONS(5060), + [anon_sym_u64] = ACTIONS(5060), + [anon_sym_isize] = ACTIONS(5060), + [anon_sym_usize] = ACTIONS(5060), + [anon_sym_f32] = ACTIONS(5060), + [anon_sym_f64] = ACTIONS(5060), + [anon_sym_c_char] = ACTIONS(5060), + [anon_sym_c_schar] = ACTIONS(5060), + [anon_sym_c_uchar] = ACTIONS(5060), + [anon_sym_c_short] = ACTIONS(5060), + [anon_sym_c_ushort] = ACTIONS(5060), + [anon_sym_c_int] = ACTIONS(5060), + [anon_sym_c_uint] = ACTIONS(5060), + [anon_sym_c_long] = ACTIONS(5060), + [anon_sym_c_ulong] = ACTIONS(5060), + [anon_sym_c_longlong] = ACTIONS(5060), + [anon_sym_c_ulonglong] = ACTIONS(5060), + [anon_sym_c_float] = ACTIONS(5060), + [anon_sym_c_double] = ACTIONS(5060), + [anon_sym_c_longdouble] = ACTIONS(5060), + [anon_sym_PLUS_EQ] = ACTIONS(5058), + [anon_sym_DASH_EQ] = ACTIONS(5058), + [anon_sym_STAR_EQ] = ACTIONS(5058), + [anon_sym_SLASH_EQ] = ACTIONS(5058), + [anon_sym_AMP_EQ] = ACTIONS(5058), + [anon_sym_PIPE_EQ] = ACTIONS(5058), + [anon_sym_xor_EQ] = ACTIONS(5058), + [anon_sym_LT_LT_EQ] = ACTIONS(5058), + [anon_sym_GT_GT_EQ] = ACTIONS(5058), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5058), + [anon_sym_return] = ACTIONS(5060), + [anon_sym_yield] = ACTIONS(5060), + [anon_sym_break] = ACTIONS(5060), + [anon_sym_continue] = ACTIONS(5060), + [anon_sym_defer] = ACTIONS(5060), + [anon_sym_errdefer] = ACTIONS(5060), + [anon_sym_if] = ACTIONS(5060), + [anon_sym_else] = ACTIONS(5060), + [anon_sym_while] = ACTIONS(5060), + [anon_sym_expand] = ACTIONS(5060), + [anon_sym_for] = ACTIONS(5060), + [anon_sym_match] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5058), + [anon_sym_orelse] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5058), + [anon_sym_BANG_EQ] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym_LT_LT_PIPE] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_catch] = ACTIONS(5060), + [anon_sym_TILDE] = ACTIONS(5058), + [anon_sym_try] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym_true] = ACTIONS(5060), + [anon_sym_false] = ACTIONS(5060), + [anon_sym_null] = ACTIONS(5060), + [anon_sym_unreachable] = ACTIONS(5060), + [anon_sym_undefined] = ACTIONS(5060), + [sym_sink] = ACTIONS(5060), + [sym_integer] = ACTIONS(5060), + [sym_float] = ACTIONS(5058), + [anon_sym_DQUOTE] = ACTIONS(5058), + [sym_multiline_string] = ACTIONS(5058), + [sym_character] = ACTIONS(5058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5058), + }, + [STATE(3184)] = { + [sym_identifier] = ACTIONS(4366), + [anon_sym_func] = ACTIONS(4366), + [anon_sym_c_func] = ACTIONS(4366), + [anon_sym_BANG] = ACTIONS(4366), + [anon_sym_EQ] = ACTIONS(4366), + [anon_sym_struct] = ACTIONS(4366), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4366), + [anon_sym_DOLLAR] = ACTIONS(4364), + [anon_sym_PIPE] = ACTIONS(4366), + [anon_sym_struct_type_BANG] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [anon_sym_AT] = ACTIONS(4364), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_void] = ACTIONS(4366), + [anon_sym_noreturn] = ACTIONS(4366), + [anon_sym_type] = ACTIONS(4366), + [anon_sym_anyopaque] = ACTIONS(4366), + [anon_sym_bool] = ACTIONS(4366), + [anon_sym_int] = ACTIONS(4366), + [anon_sym_uint] = ACTIONS(4366), + [anon_sym_float] = ACTIONS(4366), + [anon_sym_range] = ACTIONS(4366), + [anon_sym_i8] = ACTIONS(4366), + [anon_sym_i16] = ACTIONS(4366), + [anon_sym_i32] = ACTIONS(4366), + [anon_sym_i64] = ACTIONS(4366), + [anon_sym_u8] = ACTIONS(4366), + [anon_sym_u16] = ACTIONS(4366), + [anon_sym_u32] = ACTIONS(4366), + [anon_sym_u64] = ACTIONS(4366), + [anon_sym_isize] = ACTIONS(4366), + [anon_sym_usize] = ACTIONS(4366), + [anon_sym_f32] = ACTIONS(4366), + [anon_sym_f64] = ACTIONS(4366), + [anon_sym_c_char] = ACTIONS(4366), + [anon_sym_c_schar] = ACTIONS(4366), + [anon_sym_c_uchar] = ACTIONS(4366), + [anon_sym_c_short] = ACTIONS(4366), + [anon_sym_c_ushort] = ACTIONS(4366), + [anon_sym_c_int] = ACTIONS(4366), + [anon_sym_c_uint] = ACTIONS(4366), + [anon_sym_c_long] = ACTIONS(4366), + [anon_sym_c_ulong] = ACTIONS(4366), + [anon_sym_c_longlong] = ACTIONS(4366), + [anon_sym_c_ulonglong] = ACTIONS(4366), + [anon_sym_c_float] = ACTIONS(4366), + [anon_sym_c_double] = ACTIONS(4366), + [anon_sym_c_longdouble] = ACTIONS(4366), + [anon_sym_PLUS_EQ] = ACTIONS(4364), + [anon_sym_DASH_EQ] = ACTIONS(4364), + [anon_sym_STAR_EQ] = ACTIONS(4364), + [anon_sym_SLASH_EQ] = ACTIONS(4364), + [anon_sym_AMP_EQ] = ACTIONS(4364), + [anon_sym_PIPE_EQ] = ACTIONS(4364), + [anon_sym_xor_EQ] = ACTIONS(4364), + [anon_sym_LT_LT_EQ] = ACTIONS(4364), + [anon_sym_GT_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4364), + [anon_sym_return] = ACTIONS(4366), + [anon_sym_yield] = ACTIONS(4366), + [anon_sym_break] = ACTIONS(4366), + [anon_sym_continue] = ACTIONS(4366), + [anon_sym_defer] = ACTIONS(4366), + [anon_sym_errdefer] = ACTIONS(4366), + [anon_sym_if] = ACTIONS(4366), + [anon_sym_else] = ACTIONS(4366), + [anon_sym_while] = ACTIONS(4366), + [anon_sym_expand] = ACTIONS(4366), + [anon_sym_for] = ACTIONS(4366), + [anon_sym_match] = ACTIONS(4366), + [anon_sym_DOT_DOT] = ACTIONS(4366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4364), + [anon_sym_orelse] = ACTIONS(4366), + [anon_sym_or] = ACTIONS(4366), + [anon_sym_and] = ACTIONS(4366), + [anon_sym_EQ_EQ] = ACTIONS(4364), + [anon_sym_BANG_EQ] = ACTIONS(4364), + [anon_sym_LT] = ACTIONS(4366), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4366), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym_xor] = ACTIONS(4366), + [anon_sym_LT_LT] = ACTIONS(4366), + [anon_sym_GT_GT] = ACTIONS(4366), + [anon_sym_LT_LT_PIPE] = ACTIONS(4366), + [anon_sym_PLUS] = ACTIONS(4366), + [anon_sym_SLASH] = ACTIONS(4366), + [anon_sym_catch] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4364), + [anon_sym_try] = ACTIONS(4366), + [anon_sym_DOT] = ACTIONS(4366), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4366), + [anon_sym_false] = ACTIONS(4366), + [anon_sym_null] = ACTIONS(4366), + [anon_sym_unreachable] = ACTIONS(4366), + [anon_sym_undefined] = ACTIONS(4366), + [sym_sink] = ACTIONS(4366), + [sym_integer] = ACTIONS(4366), + [sym_float] = ACTIONS(4364), + [anon_sym_DQUOTE] = ACTIONS(4364), + [sym_multiline_string] = ACTIONS(4364), + [sym_character] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4364), + }, + [STATE(3185)] = { + [sym_identifier] = ACTIONS(4370), + [anon_sym_func] = ACTIONS(4370), + [anon_sym_c_func] = ACTIONS(4370), + [anon_sym_BANG] = ACTIONS(4370), + [anon_sym_EQ] = ACTIONS(4370), + [anon_sym_struct] = ACTIONS(4370), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_LBRACE] = ACTIONS(4368), + [anon_sym_COMMA] = ACTIONS(4368), + [anon_sym_RBRACE] = ACTIONS(4368), + [anon_sym_DASH] = ACTIONS(4370), + [anon_sym_DOLLAR] = ACTIONS(4368), + [anon_sym_PIPE] = ACTIONS(4370), + [anon_sym_struct_type_BANG] = ACTIONS(4368), + [anon_sym_QMARK] = ACTIONS(4368), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(4370), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_void] = ACTIONS(4370), + [anon_sym_noreturn] = ACTIONS(4370), + [anon_sym_type] = ACTIONS(4370), + [anon_sym_anyopaque] = ACTIONS(4370), + [anon_sym_bool] = ACTIONS(4370), + [anon_sym_int] = ACTIONS(4370), + [anon_sym_uint] = ACTIONS(4370), + [anon_sym_float] = ACTIONS(4370), + [anon_sym_range] = ACTIONS(4370), + [anon_sym_i8] = ACTIONS(4370), + [anon_sym_i16] = ACTIONS(4370), + [anon_sym_i32] = ACTIONS(4370), + [anon_sym_i64] = ACTIONS(4370), + [anon_sym_u8] = ACTIONS(4370), + [anon_sym_u16] = ACTIONS(4370), + [anon_sym_u32] = ACTIONS(4370), + [anon_sym_u64] = ACTIONS(4370), + [anon_sym_isize] = ACTIONS(4370), + [anon_sym_usize] = ACTIONS(4370), + [anon_sym_f32] = ACTIONS(4370), + [anon_sym_f64] = ACTIONS(4370), + [anon_sym_c_char] = ACTIONS(4370), + [anon_sym_c_schar] = ACTIONS(4370), + [anon_sym_c_uchar] = ACTIONS(4370), + [anon_sym_c_short] = ACTIONS(4370), + [anon_sym_c_ushort] = ACTIONS(4370), + [anon_sym_c_int] = ACTIONS(4370), + [anon_sym_c_uint] = ACTIONS(4370), + [anon_sym_c_long] = ACTIONS(4370), + [anon_sym_c_ulong] = ACTIONS(4370), + [anon_sym_c_longlong] = ACTIONS(4370), + [anon_sym_c_ulonglong] = ACTIONS(4370), + [anon_sym_c_float] = ACTIONS(4370), + [anon_sym_c_double] = ACTIONS(4370), + [anon_sym_c_longdouble] = ACTIONS(4370), + [anon_sym_PLUS_EQ] = ACTIONS(4368), + [anon_sym_DASH_EQ] = ACTIONS(4368), + [anon_sym_STAR_EQ] = ACTIONS(4368), + [anon_sym_SLASH_EQ] = ACTIONS(4368), + [anon_sym_AMP_EQ] = ACTIONS(4368), + [anon_sym_PIPE_EQ] = ACTIONS(4368), + [anon_sym_xor_EQ] = ACTIONS(4368), + [anon_sym_LT_LT_EQ] = ACTIONS(4368), + [anon_sym_GT_GT_EQ] = ACTIONS(4368), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4368), + [anon_sym_return] = ACTIONS(4370), + [anon_sym_yield] = ACTIONS(4370), + [anon_sym_break] = ACTIONS(4370), + [anon_sym_continue] = ACTIONS(4370), + [anon_sym_defer] = ACTIONS(4370), + [anon_sym_errdefer] = ACTIONS(4370), + [anon_sym_if] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(4370), + [anon_sym_while] = ACTIONS(4370), + [anon_sym_expand] = ACTIONS(4370), + [anon_sym_for] = ACTIONS(4370), + [anon_sym_match] = ACTIONS(4370), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4368), + [anon_sym_orelse] = ACTIONS(4370), + [anon_sym_or] = ACTIONS(4370), + [anon_sym_and] = ACTIONS(4370), + [anon_sym_EQ_EQ] = ACTIONS(4368), + [anon_sym_BANG_EQ] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4370), + [anon_sym_LT_EQ] = ACTIONS(4368), + [anon_sym_GT] = ACTIONS(4370), + [anon_sym_GT_EQ] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4370), + [anon_sym_xor] = ACTIONS(4370), + [anon_sym_LT_LT] = ACTIONS(4370), + [anon_sym_GT_GT] = ACTIONS(4370), + [anon_sym_LT_LT_PIPE] = ACTIONS(4370), + [anon_sym_PLUS] = ACTIONS(4370), + [anon_sym_SLASH] = ACTIONS(4370), + [anon_sym_catch] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4368), + [anon_sym_try] = ACTIONS(4370), + [anon_sym_DOT] = ACTIONS(4370), + [anon_sym_CARET] = ACTIONS(4368), + [anon_sym_true] = ACTIONS(4370), + [anon_sym_false] = ACTIONS(4370), + [anon_sym_null] = ACTIONS(4370), + [anon_sym_unreachable] = ACTIONS(4370), + [anon_sym_undefined] = ACTIONS(4370), + [sym_sink] = ACTIONS(4370), + [sym_integer] = ACTIONS(4370), + [sym_float] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(4368), + [sym_multiline_string] = ACTIONS(4368), + [sym_character] = ACTIONS(4368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4368), + }, + [STATE(3186)] = { + [sym_identifier] = ACTIONS(4374), + [anon_sym_func] = ACTIONS(4374), + [anon_sym_c_func] = ACTIONS(4374), + [anon_sym_BANG] = ACTIONS(4374), + [anon_sym_EQ] = ACTIONS(4374), + [anon_sym_struct] = ACTIONS(4374), + [anon_sym_LPAREN] = ACTIONS(4372), + [anon_sym_LBRACE] = ACTIONS(4372), + [anon_sym_COMMA] = ACTIONS(4372), + [anon_sym_RBRACE] = ACTIONS(4372), + [anon_sym_DASH] = ACTIONS(4374), + [anon_sym_DOLLAR] = ACTIONS(4372), + [anon_sym_PIPE] = ACTIONS(4374), + [anon_sym_struct_type_BANG] = ACTIONS(4372), + [anon_sym_QMARK] = ACTIONS(4372), + [anon_sym_AT] = ACTIONS(4372), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_void] = ACTIONS(4374), + [anon_sym_noreturn] = ACTIONS(4374), + [anon_sym_type] = ACTIONS(4374), + [anon_sym_anyopaque] = ACTIONS(4374), + [anon_sym_bool] = ACTIONS(4374), + [anon_sym_int] = ACTIONS(4374), + [anon_sym_uint] = ACTIONS(4374), + [anon_sym_float] = ACTIONS(4374), + [anon_sym_range] = ACTIONS(4374), + [anon_sym_i8] = ACTIONS(4374), + [anon_sym_i16] = ACTIONS(4374), + [anon_sym_i32] = ACTIONS(4374), + [anon_sym_i64] = ACTIONS(4374), + [anon_sym_u8] = ACTIONS(4374), + [anon_sym_u16] = ACTIONS(4374), + [anon_sym_u32] = ACTIONS(4374), + [anon_sym_u64] = ACTIONS(4374), + [anon_sym_isize] = ACTIONS(4374), + [anon_sym_usize] = ACTIONS(4374), + [anon_sym_f32] = ACTIONS(4374), + [anon_sym_f64] = ACTIONS(4374), + [anon_sym_c_char] = ACTIONS(4374), + [anon_sym_c_schar] = ACTIONS(4374), + [anon_sym_c_uchar] = ACTIONS(4374), + [anon_sym_c_short] = ACTIONS(4374), + [anon_sym_c_ushort] = ACTIONS(4374), + [anon_sym_c_int] = ACTIONS(4374), + [anon_sym_c_uint] = ACTIONS(4374), + [anon_sym_c_long] = ACTIONS(4374), + [anon_sym_c_ulong] = ACTIONS(4374), + [anon_sym_c_longlong] = ACTIONS(4374), + [anon_sym_c_ulonglong] = ACTIONS(4374), + [anon_sym_c_float] = ACTIONS(4374), + [anon_sym_c_double] = ACTIONS(4374), + [anon_sym_c_longdouble] = ACTIONS(4374), + [anon_sym_PLUS_EQ] = ACTIONS(4372), + [anon_sym_DASH_EQ] = ACTIONS(4372), + [anon_sym_STAR_EQ] = ACTIONS(4372), + [anon_sym_SLASH_EQ] = ACTIONS(4372), + [anon_sym_AMP_EQ] = ACTIONS(4372), + [anon_sym_PIPE_EQ] = ACTIONS(4372), + [anon_sym_xor_EQ] = ACTIONS(4372), + [anon_sym_LT_LT_EQ] = ACTIONS(4372), + [anon_sym_GT_GT_EQ] = ACTIONS(4372), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4372), + [anon_sym_return] = ACTIONS(4374), + [anon_sym_yield] = ACTIONS(4374), + [anon_sym_break] = ACTIONS(4374), + [anon_sym_continue] = ACTIONS(4374), + [anon_sym_defer] = ACTIONS(4374), + [anon_sym_errdefer] = ACTIONS(4374), + [anon_sym_if] = ACTIONS(4374), + [anon_sym_else] = ACTIONS(4374), + [anon_sym_while] = ACTIONS(4374), + [anon_sym_expand] = ACTIONS(4374), + [anon_sym_for] = ACTIONS(4374), + [anon_sym_match] = ACTIONS(4374), + [anon_sym_DOT_DOT] = ACTIONS(4374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_orelse] = ACTIONS(4374), + [anon_sym_or] = ACTIONS(4374), + [anon_sym_and] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_LT] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4372), + [anon_sym_GT] = ACTIONS(4374), + [anon_sym_GT_EQ] = ACTIONS(4372), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym_xor] = ACTIONS(4374), + [anon_sym_LT_LT] = ACTIONS(4374), + [anon_sym_GT_GT] = ACTIONS(4374), + [anon_sym_LT_LT_PIPE] = ACTIONS(4374), + [anon_sym_PLUS] = ACTIONS(4374), + [anon_sym_SLASH] = ACTIONS(4374), + [anon_sym_catch] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4372), + [anon_sym_try] = ACTIONS(4374), + [anon_sym_DOT] = ACTIONS(4374), + [anon_sym_CARET] = ACTIONS(4372), + [anon_sym_true] = ACTIONS(4374), + [anon_sym_false] = ACTIONS(4374), + [anon_sym_null] = ACTIONS(4374), + [anon_sym_unreachable] = ACTIONS(4374), + [anon_sym_undefined] = ACTIONS(4374), + [sym_sink] = ACTIONS(4374), + [sym_integer] = ACTIONS(4374), + [sym_float] = ACTIONS(4372), + [anon_sym_DQUOTE] = ACTIONS(4372), + [sym_multiline_string] = ACTIONS(4372), + [sym_character] = ACTIONS(4372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4372), + }, + [STATE(3187)] = { + [sym_identifier] = ACTIONS(5066), + [anon_sym_func] = ACTIONS(5066), + [anon_sym_c_func] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5066), + [anon_sym_struct] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_struct_type_BANG] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_AT] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_void] = ACTIONS(5066), + [anon_sym_noreturn] = ACTIONS(5066), + [anon_sym_type] = ACTIONS(5066), + [anon_sym_anyopaque] = ACTIONS(5066), + [anon_sym_bool] = ACTIONS(5066), + [anon_sym_int] = ACTIONS(5066), + [anon_sym_uint] = ACTIONS(5066), + [anon_sym_float] = ACTIONS(5066), + [anon_sym_range] = ACTIONS(5066), + [anon_sym_i8] = ACTIONS(5066), + [anon_sym_i16] = ACTIONS(5066), + [anon_sym_i32] = ACTIONS(5066), + [anon_sym_i64] = ACTIONS(5066), + [anon_sym_u8] = ACTIONS(5066), + [anon_sym_u16] = ACTIONS(5066), + [anon_sym_u32] = ACTIONS(5066), + [anon_sym_u64] = ACTIONS(5066), + [anon_sym_isize] = ACTIONS(5066), + [anon_sym_usize] = ACTIONS(5066), + [anon_sym_f32] = ACTIONS(5066), + [anon_sym_f64] = ACTIONS(5066), + [anon_sym_c_char] = ACTIONS(5066), + [anon_sym_c_schar] = ACTIONS(5066), + [anon_sym_c_uchar] = ACTIONS(5066), + [anon_sym_c_short] = ACTIONS(5066), + [anon_sym_c_ushort] = ACTIONS(5066), + [anon_sym_c_int] = ACTIONS(5066), + [anon_sym_c_uint] = ACTIONS(5066), + [anon_sym_c_long] = ACTIONS(5066), + [anon_sym_c_ulong] = ACTIONS(5066), + [anon_sym_c_longlong] = ACTIONS(5066), + [anon_sym_c_ulonglong] = ACTIONS(5066), + [anon_sym_c_float] = ACTIONS(5066), + [anon_sym_c_double] = ACTIONS(5066), + [anon_sym_c_longdouble] = ACTIONS(5066), + [anon_sym_PLUS_EQ] = ACTIONS(5064), + [anon_sym_DASH_EQ] = ACTIONS(5064), + [anon_sym_STAR_EQ] = ACTIONS(5064), + [anon_sym_SLASH_EQ] = ACTIONS(5064), + [anon_sym_AMP_EQ] = ACTIONS(5064), + [anon_sym_PIPE_EQ] = ACTIONS(5064), + [anon_sym_xor_EQ] = ACTIONS(5064), + [anon_sym_LT_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5064), + [anon_sym_return] = ACTIONS(5066), + [anon_sym_yield] = ACTIONS(5066), + [anon_sym_break] = ACTIONS(5066), + [anon_sym_continue] = ACTIONS(5066), + [anon_sym_defer] = ACTIONS(5066), + [anon_sym_errdefer] = ACTIONS(5066), + [anon_sym_if] = ACTIONS(5066), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_while] = ACTIONS(5066), + [anon_sym_expand] = ACTIONS(5066), + [anon_sym_for] = ACTIONS(5066), + [anon_sym_match] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5064), + [anon_sym_orelse] = ACTIONS(5066), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_and] = ACTIONS(5066), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_xor] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5066), + [anon_sym_GT_GT] = ACTIONS(5066), + [anon_sym_LT_LT_PIPE] = ACTIONS(5066), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_catch] = ACTIONS(5066), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_try] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_true] = ACTIONS(5066), + [anon_sym_false] = ACTIONS(5066), + [anon_sym_null] = ACTIONS(5066), + [anon_sym_unreachable] = ACTIONS(5066), + [anon_sym_undefined] = ACTIONS(5066), + [sym_sink] = ACTIONS(5066), + [sym_integer] = ACTIONS(5066), + [sym_float] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [sym_multiline_string] = ACTIONS(5064), + [sym_character] = ACTIONS(5064), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5064), + }, + [STATE(3188)] = { + [sym_identifier] = ACTIONS(5070), + [anon_sym_func] = ACTIONS(5070), + [anon_sym_c_func] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_struct] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_DOLLAR] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_struct_type_BANG] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5068), + [anon_sym_AT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_void] = ACTIONS(5070), + [anon_sym_noreturn] = ACTIONS(5070), + [anon_sym_type] = ACTIONS(5070), + [anon_sym_anyopaque] = ACTIONS(5070), + [anon_sym_bool] = ACTIONS(5070), + [anon_sym_int] = ACTIONS(5070), + [anon_sym_uint] = ACTIONS(5070), + [anon_sym_float] = ACTIONS(5070), + [anon_sym_range] = ACTIONS(5070), + [anon_sym_i8] = ACTIONS(5070), + [anon_sym_i16] = ACTIONS(5070), + [anon_sym_i32] = ACTIONS(5070), + [anon_sym_i64] = ACTIONS(5070), + [anon_sym_u8] = ACTIONS(5070), + [anon_sym_u16] = ACTIONS(5070), + [anon_sym_u32] = ACTIONS(5070), + [anon_sym_u64] = ACTIONS(5070), + [anon_sym_isize] = ACTIONS(5070), + [anon_sym_usize] = ACTIONS(5070), + [anon_sym_f32] = ACTIONS(5070), + [anon_sym_f64] = ACTIONS(5070), + [anon_sym_c_char] = ACTIONS(5070), + [anon_sym_c_schar] = ACTIONS(5070), + [anon_sym_c_uchar] = ACTIONS(5070), + [anon_sym_c_short] = ACTIONS(5070), + [anon_sym_c_ushort] = ACTIONS(5070), + [anon_sym_c_int] = ACTIONS(5070), + [anon_sym_c_uint] = ACTIONS(5070), + [anon_sym_c_long] = ACTIONS(5070), + [anon_sym_c_ulong] = ACTIONS(5070), + [anon_sym_c_longlong] = ACTIONS(5070), + [anon_sym_c_ulonglong] = ACTIONS(5070), + [anon_sym_c_float] = ACTIONS(5070), + [anon_sym_c_double] = ACTIONS(5070), + [anon_sym_c_longdouble] = ACTIONS(5070), + [anon_sym_PLUS_EQ] = ACTIONS(5068), + [anon_sym_DASH_EQ] = ACTIONS(5068), + [anon_sym_STAR_EQ] = ACTIONS(5068), + [anon_sym_SLASH_EQ] = ACTIONS(5068), + [anon_sym_AMP_EQ] = ACTIONS(5068), + [anon_sym_PIPE_EQ] = ACTIONS(5068), + [anon_sym_xor_EQ] = ACTIONS(5068), + [anon_sym_LT_LT_EQ] = ACTIONS(5068), + [anon_sym_GT_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5068), + [anon_sym_return] = ACTIONS(5070), + [anon_sym_yield] = ACTIONS(5070), + [anon_sym_break] = ACTIONS(5070), + [anon_sym_continue] = ACTIONS(5070), + [anon_sym_defer] = ACTIONS(5070), + [anon_sym_errdefer] = ACTIONS(5070), + [anon_sym_if] = ACTIONS(5070), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_while] = ACTIONS(5070), + [anon_sym_expand] = ACTIONS(5070), + [anon_sym_for] = ACTIONS(5070), + [anon_sym_match] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5068), + [anon_sym_orelse] = ACTIONS(5070), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5070), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_xor] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5070), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym_LT_LT_PIPE] = ACTIONS(5070), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_catch] = ACTIONS(5070), + [anon_sym_TILDE] = ACTIONS(5068), + [anon_sym_try] = ACTIONS(5070), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_true] = ACTIONS(5070), + [anon_sym_false] = ACTIONS(5070), + [anon_sym_null] = ACTIONS(5070), + [anon_sym_unreachable] = ACTIONS(5070), + [anon_sym_undefined] = ACTIONS(5070), + [sym_sink] = ACTIONS(5070), + [sym_integer] = ACTIONS(5070), + [sym_float] = ACTIONS(5068), + [anon_sym_DQUOTE] = ACTIONS(5068), + [sym_multiline_string] = ACTIONS(5068), + [sym_character] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5068), + }, + [STATE(3189)] = { + [sym_identifier] = ACTIONS(5074), + [anon_sym_func] = ACTIONS(5074), + [anon_sym_c_func] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5074), + [anon_sym_struct] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_DOLLAR] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_struct_type_BANG] = ACTIONS(5072), + [anon_sym_QMARK] = ACTIONS(5072), + [anon_sym_AT] = ACTIONS(5072), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_void] = ACTIONS(5074), + [anon_sym_noreturn] = ACTIONS(5074), + [anon_sym_type] = ACTIONS(5074), + [anon_sym_anyopaque] = ACTIONS(5074), + [anon_sym_bool] = ACTIONS(5074), + [anon_sym_int] = ACTIONS(5074), + [anon_sym_uint] = ACTIONS(5074), + [anon_sym_float] = ACTIONS(5074), + [anon_sym_range] = ACTIONS(5074), + [anon_sym_i8] = ACTIONS(5074), + [anon_sym_i16] = ACTIONS(5074), + [anon_sym_i32] = ACTIONS(5074), + [anon_sym_i64] = ACTIONS(5074), + [anon_sym_u8] = ACTIONS(5074), + [anon_sym_u16] = ACTIONS(5074), + [anon_sym_u32] = ACTIONS(5074), + [anon_sym_u64] = ACTIONS(5074), + [anon_sym_isize] = ACTIONS(5074), + [anon_sym_usize] = ACTIONS(5074), + [anon_sym_f32] = ACTIONS(5074), + [anon_sym_f64] = ACTIONS(5074), + [anon_sym_c_char] = ACTIONS(5074), + [anon_sym_c_schar] = ACTIONS(5074), + [anon_sym_c_uchar] = ACTIONS(5074), + [anon_sym_c_short] = ACTIONS(5074), + [anon_sym_c_ushort] = ACTIONS(5074), + [anon_sym_c_int] = ACTIONS(5074), + [anon_sym_c_uint] = ACTIONS(5074), + [anon_sym_c_long] = ACTIONS(5074), + [anon_sym_c_ulong] = ACTIONS(5074), + [anon_sym_c_longlong] = ACTIONS(5074), + [anon_sym_c_ulonglong] = ACTIONS(5074), + [anon_sym_c_float] = ACTIONS(5074), + [anon_sym_c_double] = ACTIONS(5074), + [anon_sym_c_longdouble] = ACTIONS(5074), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_AMP_EQ] = ACTIONS(5072), + [anon_sym_PIPE_EQ] = ACTIONS(5072), + [anon_sym_xor_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5072), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_yield] = ACTIONS(5074), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_defer] = ACTIONS(5074), + [anon_sym_errdefer] = ACTIONS(5074), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_while] = ACTIONS(5074), + [anon_sym_expand] = ACTIONS(5074), + [anon_sym_for] = ACTIONS(5074), + [anon_sym_match] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5072), + [anon_sym_orelse] = ACTIONS(5074), + [anon_sym_or] = ACTIONS(5074), + [anon_sym_and] = ACTIONS(5074), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_xor] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5074), + [anon_sym_GT_GT] = ACTIONS(5074), + [anon_sym_LT_LT_PIPE] = ACTIONS(5074), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_catch] = ACTIONS(5074), + [anon_sym_TILDE] = ACTIONS(5072), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5072), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_null] = ACTIONS(5074), + [anon_sym_unreachable] = ACTIONS(5074), + [anon_sym_undefined] = ACTIONS(5074), + [sym_sink] = ACTIONS(5074), + [sym_integer] = ACTIONS(5074), + [sym_float] = ACTIONS(5072), + [anon_sym_DQUOTE] = ACTIONS(5072), + [sym_multiline_string] = ACTIONS(5072), + [sym_character] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5072), + }, + [STATE(3190)] = { + [sym_identifier] = ACTIONS(5078), + [anon_sym_func] = ACTIONS(5078), + [anon_sym_c_func] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_struct] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_DOLLAR] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_struct_type_BANG] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(5076), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_void] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym_type] = ACTIONS(5078), + [anon_sym_anyopaque] = ACTIONS(5078), + [anon_sym_bool] = ACTIONS(5078), + [anon_sym_int] = ACTIONS(5078), + [anon_sym_uint] = ACTIONS(5078), + [anon_sym_float] = ACTIONS(5078), + [anon_sym_range] = ACTIONS(5078), + [anon_sym_i8] = ACTIONS(5078), + [anon_sym_i16] = ACTIONS(5078), + [anon_sym_i32] = ACTIONS(5078), + [anon_sym_i64] = ACTIONS(5078), + [anon_sym_u8] = ACTIONS(5078), + [anon_sym_u16] = ACTIONS(5078), + [anon_sym_u32] = ACTIONS(5078), + [anon_sym_u64] = ACTIONS(5078), + [anon_sym_isize] = ACTIONS(5078), + [anon_sym_usize] = ACTIONS(5078), + [anon_sym_f32] = ACTIONS(5078), + [anon_sym_f64] = ACTIONS(5078), + [anon_sym_c_char] = ACTIONS(5078), + [anon_sym_c_schar] = ACTIONS(5078), + [anon_sym_c_uchar] = ACTIONS(5078), + [anon_sym_c_short] = ACTIONS(5078), + [anon_sym_c_ushort] = ACTIONS(5078), + [anon_sym_c_int] = ACTIONS(5078), + [anon_sym_c_uint] = ACTIONS(5078), + [anon_sym_c_long] = ACTIONS(5078), + [anon_sym_c_ulong] = ACTIONS(5078), + [anon_sym_c_longlong] = ACTIONS(5078), + [anon_sym_c_ulonglong] = ACTIONS(5078), + [anon_sym_c_float] = ACTIONS(5078), + [anon_sym_c_double] = ACTIONS(5078), + [anon_sym_c_longdouble] = ACTIONS(5078), + [anon_sym_PLUS_EQ] = ACTIONS(5076), + [anon_sym_DASH_EQ] = ACTIONS(5076), + [anon_sym_STAR_EQ] = ACTIONS(5076), + [anon_sym_SLASH_EQ] = ACTIONS(5076), + [anon_sym_AMP_EQ] = ACTIONS(5076), + [anon_sym_PIPE_EQ] = ACTIONS(5076), + [anon_sym_xor_EQ] = ACTIONS(5076), + [anon_sym_LT_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_GT_EQ] = ACTIONS(5076), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5076), + [anon_sym_return] = ACTIONS(5078), + [anon_sym_yield] = ACTIONS(5078), + [anon_sym_break] = ACTIONS(5078), + [anon_sym_continue] = ACTIONS(5078), + [anon_sym_defer] = ACTIONS(5078), + [anon_sym_errdefer] = ACTIONS(5078), + [anon_sym_if] = ACTIONS(5078), + [anon_sym_else] = ACTIONS(5078), + [anon_sym_while] = ACTIONS(5078), + [anon_sym_expand] = ACTIONS(5078), + [anon_sym_for] = ACTIONS(5078), + [anon_sym_match] = ACTIONS(5078), + [anon_sym_DOT_DOT] = ACTIONS(5078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5076), + [anon_sym_orelse] = ACTIONS(5078), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym_LT_LT_PIPE] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_catch] = ACTIONS(5078), + [anon_sym_TILDE] = ACTIONS(5076), + [anon_sym_try] = ACTIONS(5078), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5078), + [anon_sym_false] = ACTIONS(5078), + [anon_sym_null] = ACTIONS(5078), + [anon_sym_unreachable] = ACTIONS(5078), + [anon_sym_undefined] = ACTIONS(5078), + [sym_sink] = ACTIONS(5078), + [sym_integer] = ACTIONS(5078), + [sym_float] = ACTIONS(5076), + [anon_sym_DQUOTE] = ACTIONS(5076), + [sym_multiline_string] = ACTIONS(5076), + [sym_character] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5076), + }, + [STATE(3191)] = { + [sym_identifier] = ACTIONS(5082), + [anon_sym_func] = ACTIONS(5082), + [anon_sym_c_func] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_EQ] = ACTIONS(5082), + [anon_sym_struct] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_DOLLAR] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_struct_type_BANG] = ACTIONS(5080), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_AT] = ACTIONS(5080), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_void] = ACTIONS(5082), + [anon_sym_noreturn] = ACTIONS(5082), + [anon_sym_type] = ACTIONS(5082), + [anon_sym_anyopaque] = ACTIONS(5082), + [anon_sym_bool] = ACTIONS(5082), + [anon_sym_int] = ACTIONS(5082), + [anon_sym_uint] = ACTIONS(5082), + [anon_sym_float] = ACTIONS(5082), + [anon_sym_range] = ACTIONS(5082), + [anon_sym_i8] = ACTIONS(5082), + [anon_sym_i16] = ACTIONS(5082), + [anon_sym_i32] = ACTIONS(5082), + [anon_sym_i64] = ACTIONS(5082), + [anon_sym_u8] = ACTIONS(5082), + [anon_sym_u16] = ACTIONS(5082), + [anon_sym_u32] = ACTIONS(5082), + [anon_sym_u64] = ACTIONS(5082), + [anon_sym_isize] = ACTIONS(5082), + [anon_sym_usize] = ACTIONS(5082), + [anon_sym_f32] = ACTIONS(5082), + [anon_sym_f64] = ACTIONS(5082), + [anon_sym_c_char] = ACTIONS(5082), + [anon_sym_c_schar] = ACTIONS(5082), + [anon_sym_c_uchar] = ACTIONS(5082), + [anon_sym_c_short] = ACTIONS(5082), + [anon_sym_c_ushort] = ACTIONS(5082), + [anon_sym_c_int] = ACTIONS(5082), + [anon_sym_c_uint] = ACTIONS(5082), + [anon_sym_c_long] = ACTIONS(5082), + [anon_sym_c_ulong] = ACTIONS(5082), + [anon_sym_c_longlong] = ACTIONS(5082), + [anon_sym_c_ulonglong] = ACTIONS(5082), + [anon_sym_c_float] = ACTIONS(5082), + [anon_sym_c_double] = ACTIONS(5082), + [anon_sym_c_longdouble] = ACTIONS(5082), + [anon_sym_PLUS_EQ] = ACTIONS(5080), + [anon_sym_DASH_EQ] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5080), + [anon_sym_SLASH_EQ] = ACTIONS(5080), + [anon_sym_AMP_EQ] = ACTIONS(5080), + [anon_sym_PIPE_EQ] = ACTIONS(5080), + [anon_sym_xor_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_EQ] = ACTIONS(5080), + [anon_sym_GT_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5080), + [anon_sym_return] = ACTIONS(5082), + [anon_sym_yield] = ACTIONS(5082), + [anon_sym_break] = ACTIONS(5082), + [anon_sym_continue] = ACTIONS(5082), + [anon_sym_defer] = ACTIONS(5082), + [anon_sym_errdefer] = ACTIONS(5082), + [anon_sym_if] = ACTIONS(5082), + [anon_sym_else] = ACTIONS(5082), + [anon_sym_while] = ACTIONS(5082), + [anon_sym_expand] = ACTIONS(5082), + [anon_sym_for] = ACTIONS(5082), + [anon_sym_match] = ACTIONS(5082), + [anon_sym_DOT_DOT] = ACTIONS(5082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5080), + [anon_sym_orelse] = ACTIONS(5082), + [anon_sym_or] = ACTIONS(5082), + [anon_sym_and] = ACTIONS(5082), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_xor] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_LT_LT_PIPE] = ACTIONS(5082), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_catch] = ACTIONS(5082), + [anon_sym_TILDE] = ACTIONS(5080), + [anon_sym_try] = ACTIONS(5082), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_true] = ACTIONS(5082), + [anon_sym_false] = ACTIONS(5082), + [anon_sym_null] = ACTIONS(5082), + [anon_sym_unreachable] = ACTIONS(5082), + [anon_sym_undefined] = ACTIONS(5082), + [sym_sink] = ACTIONS(5082), + [sym_integer] = ACTIONS(5082), + [sym_float] = ACTIONS(5080), + [anon_sym_DQUOTE] = ACTIONS(5080), + [sym_multiline_string] = ACTIONS(5080), + [sym_character] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5080), + }, + [STATE(3192)] = { + [sym_identifier] = ACTIONS(5086), + [anon_sym_func] = ACTIONS(5086), + [anon_sym_c_func] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_EQ] = ACTIONS(5086), + [anon_sym_struct] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_DOLLAR] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_struct_type_BANG] = ACTIONS(5084), + [anon_sym_QMARK] = ACTIONS(5084), + [anon_sym_AT] = ACTIONS(5084), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_void] = ACTIONS(5086), + [anon_sym_noreturn] = ACTIONS(5086), + [anon_sym_type] = ACTIONS(5086), + [anon_sym_anyopaque] = ACTIONS(5086), + [anon_sym_bool] = ACTIONS(5086), + [anon_sym_int] = ACTIONS(5086), + [anon_sym_uint] = ACTIONS(5086), + [anon_sym_float] = ACTIONS(5086), + [anon_sym_range] = ACTIONS(5086), + [anon_sym_i8] = ACTIONS(5086), + [anon_sym_i16] = ACTIONS(5086), + [anon_sym_i32] = ACTIONS(5086), + [anon_sym_i64] = ACTIONS(5086), + [anon_sym_u8] = ACTIONS(5086), + [anon_sym_u16] = ACTIONS(5086), + [anon_sym_u32] = ACTIONS(5086), + [anon_sym_u64] = ACTIONS(5086), + [anon_sym_isize] = ACTIONS(5086), + [anon_sym_usize] = ACTIONS(5086), + [anon_sym_f32] = ACTIONS(5086), + [anon_sym_f64] = ACTIONS(5086), + [anon_sym_c_char] = ACTIONS(5086), + [anon_sym_c_schar] = ACTIONS(5086), + [anon_sym_c_uchar] = ACTIONS(5086), + [anon_sym_c_short] = ACTIONS(5086), + [anon_sym_c_ushort] = ACTIONS(5086), + [anon_sym_c_int] = ACTIONS(5086), + [anon_sym_c_uint] = ACTIONS(5086), + [anon_sym_c_long] = ACTIONS(5086), + [anon_sym_c_ulong] = ACTIONS(5086), + [anon_sym_c_longlong] = ACTIONS(5086), + [anon_sym_c_ulonglong] = ACTIONS(5086), + [anon_sym_c_float] = ACTIONS(5086), + [anon_sym_c_double] = ACTIONS(5086), + [anon_sym_c_longdouble] = ACTIONS(5086), + [anon_sym_PLUS_EQ] = ACTIONS(5084), + [anon_sym_DASH_EQ] = ACTIONS(5084), + [anon_sym_STAR_EQ] = ACTIONS(5084), + [anon_sym_SLASH_EQ] = ACTIONS(5084), + [anon_sym_AMP_EQ] = ACTIONS(5084), + [anon_sym_PIPE_EQ] = ACTIONS(5084), + [anon_sym_xor_EQ] = ACTIONS(5084), + [anon_sym_LT_LT_EQ] = ACTIONS(5084), + [anon_sym_GT_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5084), + [anon_sym_return] = ACTIONS(5086), + [anon_sym_yield] = ACTIONS(5086), + [anon_sym_break] = ACTIONS(5086), + [anon_sym_continue] = ACTIONS(5086), + [anon_sym_defer] = ACTIONS(5086), + [anon_sym_errdefer] = ACTIONS(5086), + [anon_sym_if] = ACTIONS(5086), + [anon_sym_else] = ACTIONS(5086), + [anon_sym_while] = ACTIONS(5086), + [anon_sym_expand] = ACTIONS(5086), + [anon_sym_for] = ACTIONS(5086), + [anon_sym_match] = ACTIONS(5086), + [anon_sym_DOT_DOT] = ACTIONS(5086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5084), + [anon_sym_orelse] = ACTIONS(5086), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_and] = ACTIONS(5086), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_xor] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5086), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_LT_LT_PIPE] = ACTIONS(5086), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_catch] = ACTIONS(5086), + [anon_sym_TILDE] = ACTIONS(5084), + [anon_sym_try] = ACTIONS(5086), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_true] = ACTIONS(5086), + [anon_sym_false] = ACTIONS(5086), + [anon_sym_null] = ACTIONS(5086), + [anon_sym_unreachable] = ACTIONS(5086), + [anon_sym_undefined] = ACTIONS(5086), + [sym_sink] = ACTIONS(5086), + [sym_integer] = ACTIONS(5086), + [sym_float] = ACTIONS(5084), + [anon_sym_DQUOTE] = ACTIONS(5084), + [sym_multiline_string] = ACTIONS(5084), + [sym_character] = ACTIONS(5084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5084), + }, + [STATE(3193)] = { + [sym_identifier] = ACTIONS(5090), + [anon_sym_func] = ACTIONS(5090), + [anon_sym_c_func] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_struct] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_struct_type_BANG] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_AT] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_void] = ACTIONS(5090), + [anon_sym_noreturn] = ACTIONS(5090), + [anon_sym_type] = ACTIONS(5090), + [anon_sym_anyopaque] = ACTIONS(5090), + [anon_sym_bool] = ACTIONS(5090), + [anon_sym_int] = ACTIONS(5090), + [anon_sym_uint] = ACTIONS(5090), + [anon_sym_float] = ACTIONS(5090), + [anon_sym_range] = ACTIONS(5090), + [anon_sym_i8] = ACTIONS(5090), + [anon_sym_i16] = ACTIONS(5090), + [anon_sym_i32] = ACTIONS(5090), + [anon_sym_i64] = ACTIONS(5090), + [anon_sym_u8] = ACTIONS(5090), + [anon_sym_u16] = ACTIONS(5090), + [anon_sym_u32] = ACTIONS(5090), + [anon_sym_u64] = ACTIONS(5090), + [anon_sym_isize] = ACTIONS(5090), + [anon_sym_usize] = ACTIONS(5090), + [anon_sym_f32] = ACTIONS(5090), + [anon_sym_f64] = ACTIONS(5090), + [anon_sym_c_char] = ACTIONS(5090), + [anon_sym_c_schar] = ACTIONS(5090), + [anon_sym_c_uchar] = ACTIONS(5090), + [anon_sym_c_short] = ACTIONS(5090), + [anon_sym_c_ushort] = ACTIONS(5090), + [anon_sym_c_int] = ACTIONS(5090), + [anon_sym_c_uint] = ACTIONS(5090), + [anon_sym_c_long] = ACTIONS(5090), + [anon_sym_c_ulong] = ACTIONS(5090), + [anon_sym_c_longlong] = ACTIONS(5090), + [anon_sym_c_ulonglong] = ACTIONS(5090), + [anon_sym_c_float] = ACTIONS(5090), + [anon_sym_c_double] = ACTIONS(5090), + [anon_sym_c_longdouble] = ACTIONS(5090), + [anon_sym_PLUS_EQ] = ACTIONS(5088), + [anon_sym_DASH_EQ] = ACTIONS(5088), + [anon_sym_STAR_EQ] = ACTIONS(5088), + [anon_sym_SLASH_EQ] = ACTIONS(5088), + [anon_sym_AMP_EQ] = ACTIONS(5088), + [anon_sym_PIPE_EQ] = ACTIONS(5088), + [anon_sym_xor_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_EQ] = ACTIONS(5088), + [anon_sym_GT_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5088), + [anon_sym_return] = ACTIONS(5090), + [anon_sym_yield] = ACTIONS(5090), + [anon_sym_break] = ACTIONS(5090), + [anon_sym_continue] = ACTIONS(5090), + [anon_sym_defer] = ACTIONS(5090), + [anon_sym_errdefer] = ACTIONS(5090), + [anon_sym_if] = ACTIONS(5090), + [anon_sym_else] = ACTIONS(5090), + [anon_sym_while] = ACTIONS(5090), + [anon_sym_expand] = ACTIONS(5090), + [anon_sym_for] = ACTIONS(5090), + [anon_sym_match] = ACTIONS(5090), + [anon_sym_DOT_DOT] = ACTIONS(5090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5088), + [anon_sym_orelse] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_and] = ACTIONS(5090), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_xor] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_LT_LT_PIPE] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_catch] = ACTIONS(5090), + [anon_sym_TILDE] = ACTIONS(5088), + [anon_sym_try] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_true] = ACTIONS(5090), + [anon_sym_false] = ACTIONS(5090), + [anon_sym_null] = ACTIONS(5090), + [anon_sym_unreachable] = ACTIONS(5090), + [anon_sym_undefined] = ACTIONS(5090), + [sym_sink] = ACTIONS(5090), + [sym_integer] = ACTIONS(5090), + [sym_float] = ACTIONS(5088), + [anon_sym_DQUOTE] = ACTIONS(5088), + [sym_multiline_string] = ACTIONS(5088), + [sym_character] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5088), + }, + [STATE(3194)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_c_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(3195)] = { + [sym_identifier] = ACTIONS(5426), + [anon_sym_func] = ACTIONS(5426), + [anon_sym_c_func] = ACTIONS(5426), + [anon_sym_BANG] = ACTIONS(5426), + [anon_sym_EQ] = ACTIONS(5426), + [anon_sym_struct] = ACTIONS(5426), + [anon_sym_LPAREN] = ACTIONS(5424), + [anon_sym_LBRACE] = ACTIONS(5424), + [anon_sym_COMMA] = ACTIONS(5424), + [anon_sym_RBRACE] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5426), + [anon_sym_DOLLAR] = ACTIONS(5424), + [anon_sym_PIPE] = ACTIONS(5426), + [anon_sym_struct_type_BANG] = ACTIONS(5424), + [anon_sym_QMARK] = ACTIONS(5424), + [anon_sym_AT] = ACTIONS(5424), + [anon_sym_STAR] = ACTIONS(5426), + [anon_sym_LBRACK] = ACTIONS(5424), + [anon_sym_void] = ACTIONS(5426), + [anon_sym_noreturn] = ACTIONS(5426), + [anon_sym_type] = ACTIONS(5426), + [anon_sym_anyopaque] = ACTIONS(5426), + [anon_sym_bool] = ACTIONS(5426), + [anon_sym_int] = ACTIONS(5426), + [anon_sym_uint] = ACTIONS(5426), + [anon_sym_float] = ACTIONS(5426), + [anon_sym_range] = ACTIONS(5426), + [anon_sym_i8] = ACTIONS(5426), + [anon_sym_i16] = ACTIONS(5426), + [anon_sym_i32] = ACTIONS(5426), + [anon_sym_i64] = ACTIONS(5426), + [anon_sym_u8] = ACTIONS(5426), + [anon_sym_u16] = ACTIONS(5426), + [anon_sym_u32] = ACTIONS(5426), + [anon_sym_u64] = ACTIONS(5426), + [anon_sym_isize] = ACTIONS(5426), + [anon_sym_usize] = ACTIONS(5426), + [anon_sym_f32] = ACTIONS(5426), + [anon_sym_f64] = ACTIONS(5426), + [anon_sym_c_char] = ACTIONS(5426), + [anon_sym_c_schar] = ACTIONS(5426), + [anon_sym_c_uchar] = ACTIONS(5426), + [anon_sym_c_short] = ACTIONS(5426), + [anon_sym_c_ushort] = ACTIONS(5426), + [anon_sym_c_int] = ACTIONS(5426), + [anon_sym_c_uint] = ACTIONS(5426), + [anon_sym_c_long] = ACTIONS(5426), + [anon_sym_c_ulong] = ACTIONS(5426), + [anon_sym_c_longlong] = ACTIONS(5426), + [anon_sym_c_ulonglong] = ACTIONS(5426), + [anon_sym_c_float] = ACTIONS(5426), + [anon_sym_c_double] = ACTIONS(5426), + [anon_sym_c_longdouble] = ACTIONS(5426), + [anon_sym_PLUS_EQ] = ACTIONS(5424), + [anon_sym_DASH_EQ] = ACTIONS(5424), + [anon_sym_STAR_EQ] = ACTIONS(5424), + [anon_sym_SLASH_EQ] = ACTIONS(5424), + [anon_sym_AMP_EQ] = ACTIONS(5424), + [anon_sym_PIPE_EQ] = ACTIONS(5424), + [anon_sym_xor_EQ] = ACTIONS(5424), + [anon_sym_LT_LT_EQ] = ACTIONS(5424), + [anon_sym_GT_GT_EQ] = ACTIONS(5424), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5424), + [anon_sym_return] = ACTIONS(5426), + [anon_sym_yield] = ACTIONS(5426), + [anon_sym_break] = ACTIONS(5426), + [anon_sym_continue] = ACTIONS(5426), + [anon_sym_defer] = ACTIONS(5426), + [anon_sym_errdefer] = ACTIONS(5426), + [anon_sym_if] = ACTIONS(5426), + [anon_sym_else] = ACTIONS(5426), + [anon_sym_while] = ACTIONS(5426), + [anon_sym_expand] = ACTIONS(5426), + [anon_sym_for] = ACTIONS(5426), + [anon_sym_match] = ACTIONS(5426), + [anon_sym_DOT_DOT] = ACTIONS(5426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5424), + [anon_sym_orelse] = ACTIONS(5426), + [anon_sym_or] = ACTIONS(5426), + [anon_sym_and] = ACTIONS(5426), + [anon_sym_EQ_EQ] = ACTIONS(5424), + [anon_sym_BANG_EQ] = ACTIONS(5424), + [anon_sym_LT] = ACTIONS(5426), + [anon_sym_LT_EQ] = ACTIONS(5424), + [anon_sym_GT] = ACTIONS(5426), + [anon_sym_GT_EQ] = ACTIONS(5424), + [anon_sym_AMP] = ACTIONS(5426), + [anon_sym_xor] = ACTIONS(5426), + [anon_sym_LT_LT] = ACTIONS(5426), + [anon_sym_GT_GT] = ACTIONS(5426), + [anon_sym_LT_LT_PIPE] = ACTIONS(5426), + [anon_sym_PLUS] = ACTIONS(5426), + [anon_sym_SLASH] = ACTIONS(5426), + [anon_sym_catch] = ACTIONS(5426), + [anon_sym_TILDE] = ACTIONS(5424), + [anon_sym_try] = ACTIONS(5426), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_CARET] = ACTIONS(5424), + [anon_sym_true] = ACTIONS(5426), + [anon_sym_false] = ACTIONS(5426), + [anon_sym_null] = ACTIONS(5426), + [anon_sym_unreachable] = ACTIONS(5426), + [anon_sym_undefined] = ACTIONS(5426), + [sym_sink] = ACTIONS(5426), + [sym_integer] = ACTIONS(5426), + [sym_float] = ACTIONS(5424), + [anon_sym_DQUOTE] = ACTIONS(5424), + [sym_multiline_string] = ACTIONS(5424), + [sym_character] = ACTIONS(5424), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5424), + }, + [STATE(3196)] = { + [sym_identifier] = ACTIONS(5434), + [anon_sym_func] = ACTIONS(5434), + [anon_sym_c_func] = ACTIONS(5434), + [anon_sym_BANG] = ACTIONS(5434), + [anon_sym_EQ] = ACTIONS(5434), + [anon_sym_struct] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5432), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_COMMA] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5434), + [anon_sym_DOLLAR] = ACTIONS(5432), + [anon_sym_PIPE] = ACTIONS(5434), + [anon_sym_struct_type_BANG] = ACTIONS(5432), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_AT] = ACTIONS(5432), + [anon_sym_STAR] = ACTIONS(5434), + [anon_sym_LBRACK] = ACTIONS(5432), + [anon_sym_void] = ACTIONS(5434), + [anon_sym_noreturn] = ACTIONS(5434), + [anon_sym_type] = ACTIONS(5434), + [anon_sym_anyopaque] = ACTIONS(5434), + [anon_sym_bool] = ACTIONS(5434), + [anon_sym_int] = ACTIONS(5434), + [anon_sym_uint] = ACTIONS(5434), + [anon_sym_float] = ACTIONS(5434), + [anon_sym_range] = ACTIONS(5434), + [anon_sym_i8] = ACTIONS(5434), + [anon_sym_i16] = ACTIONS(5434), + [anon_sym_i32] = ACTIONS(5434), + [anon_sym_i64] = ACTIONS(5434), + [anon_sym_u8] = ACTIONS(5434), + [anon_sym_u16] = ACTIONS(5434), + [anon_sym_u32] = ACTIONS(5434), + [anon_sym_u64] = ACTIONS(5434), + [anon_sym_isize] = ACTIONS(5434), + [anon_sym_usize] = ACTIONS(5434), + [anon_sym_f32] = ACTIONS(5434), + [anon_sym_f64] = ACTIONS(5434), + [anon_sym_c_char] = ACTIONS(5434), + [anon_sym_c_schar] = ACTIONS(5434), + [anon_sym_c_uchar] = ACTIONS(5434), + [anon_sym_c_short] = ACTIONS(5434), + [anon_sym_c_ushort] = ACTIONS(5434), + [anon_sym_c_int] = ACTIONS(5434), + [anon_sym_c_uint] = ACTIONS(5434), + [anon_sym_c_long] = ACTIONS(5434), + [anon_sym_c_ulong] = ACTIONS(5434), + [anon_sym_c_longlong] = ACTIONS(5434), + [anon_sym_c_ulonglong] = ACTIONS(5434), + [anon_sym_c_float] = ACTIONS(5434), + [anon_sym_c_double] = ACTIONS(5434), + [anon_sym_c_longdouble] = ACTIONS(5434), + [anon_sym_PLUS_EQ] = ACTIONS(5432), + [anon_sym_DASH_EQ] = ACTIONS(5432), + [anon_sym_STAR_EQ] = ACTIONS(5432), + [anon_sym_SLASH_EQ] = ACTIONS(5432), + [anon_sym_AMP_EQ] = ACTIONS(5432), + [anon_sym_PIPE_EQ] = ACTIONS(5432), + [anon_sym_xor_EQ] = ACTIONS(5432), + [anon_sym_LT_LT_EQ] = ACTIONS(5432), + [anon_sym_GT_GT_EQ] = ACTIONS(5432), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5432), + [anon_sym_return] = ACTIONS(5434), + [anon_sym_yield] = ACTIONS(5434), + [anon_sym_break] = ACTIONS(5434), + [anon_sym_continue] = ACTIONS(5434), + [anon_sym_defer] = ACTIONS(5434), + [anon_sym_errdefer] = ACTIONS(5434), + [anon_sym_if] = ACTIONS(5434), + [anon_sym_else] = ACTIONS(5434), + [anon_sym_while] = ACTIONS(5434), + [anon_sym_expand] = ACTIONS(5434), + [anon_sym_for] = ACTIONS(5434), + [anon_sym_match] = ACTIONS(5434), + [anon_sym_DOT_DOT] = ACTIONS(5434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5432), + [anon_sym_orelse] = ACTIONS(5434), + [anon_sym_or] = ACTIONS(5434), + [anon_sym_and] = ACTIONS(5434), + [anon_sym_EQ_EQ] = ACTIONS(5432), + [anon_sym_BANG_EQ] = ACTIONS(5432), + [anon_sym_LT] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5432), + [anon_sym_GT] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(5434), + [anon_sym_xor] = ACTIONS(5434), + [anon_sym_LT_LT] = ACTIONS(5434), + [anon_sym_GT_GT] = ACTIONS(5434), + [anon_sym_LT_LT_PIPE] = ACTIONS(5434), + [anon_sym_PLUS] = ACTIONS(5434), + [anon_sym_SLASH] = ACTIONS(5434), + [anon_sym_catch] = ACTIONS(5434), + [anon_sym_TILDE] = ACTIONS(5432), + [anon_sym_try] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5434), + [anon_sym_CARET] = ACTIONS(5432), + [anon_sym_true] = ACTIONS(5434), + [anon_sym_false] = ACTIONS(5434), + [anon_sym_null] = ACTIONS(5434), + [anon_sym_unreachable] = ACTIONS(5434), + [anon_sym_undefined] = ACTIONS(5434), + [sym_sink] = ACTIONS(5434), + [sym_integer] = ACTIONS(5434), + [sym_float] = ACTIONS(5432), + [anon_sym_DQUOTE] = ACTIONS(5432), + [sym_multiline_string] = ACTIONS(5432), + [sym_character] = ACTIONS(5432), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5432), + }, + [STATE(3197)] = { + [sym_identifier] = ACTIONS(5094), + [anon_sym_func] = ACTIONS(5094), + [anon_sym_c_func] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_LBRACE] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_struct_type_BANG] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5092), + [anon_sym_AT] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_void] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_type] = ACTIONS(5094), + [anon_sym_anyopaque] = ACTIONS(5094), + [anon_sym_bool] = ACTIONS(5094), + [anon_sym_int] = ACTIONS(5094), + [anon_sym_uint] = ACTIONS(5094), + [anon_sym_float] = ACTIONS(5094), + [anon_sym_range] = ACTIONS(5094), + [anon_sym_i8] = ACTIONS(5094), + [anon_sym_i16] = ACTIONS(5094), + [anon_sym_i32] = ACTIONS(5094), + [anon_sym_i64] = ACTIONS(5094), + [anon_sym_u8] = ACTIONS(5094), + [anon_sym_u16] = ACTIONS(5094), + [anon_sym_u32] = ACTIONS(5094), + [anon_sym_u64] = ACTIONS(5094), + [anon_sym_isize] = ACTIONS(5094), + [anon_sym_usize] = ACTIONS(5094), + [anon_sym_f32] = ACTIONS(5094), + [anon_sym_f64] = ACTIONS(5094), + [anon_sym_c_char] = ACTIONS(5094), + [anon_sym_c_schar] = ACTIONS(5094), + [anon_sym_c_uchar] = ACTIONS(5094), + [anon_sym_c_short] = ACTIONS(5094), + [anon_sym_c_ushort] = ACTIONS(5094), + [anon_sym_c_int] = ACTIONS(5094), + [anon_sym_c_uint] = ACTIONS(5094), + [anon_sym_c_long] = ACTIONS(5094), + [anon_sym_c_ulong] = ACTIONS(5094), + [anon_sym_c_longlong] = ACTIONS(5094), + [anon_sym_c_ulonglong] = ACTIONS(5094), + [anon_sym_c_float] = ACTIONS(5094), + [anon_sym_c_double] = ACTIONS(5094), + [anon_sym_c_longdouble] = ACTIONS(5094), + [anon_sym_PLUS_EQ] = ACTIONS(5092), + [anon_sym_DASH_EQ] = ACTIONS(5092), + [anon_sym_STAR_EQ] = ACTIONS(5092), + [anon_sym_SLASH_EQ] = ACTIONS(5092), + [anon_sym_AMP_EQ] = ACTIONS(5092), + [anon_sym_PIPE_EQ] = ACTIONS(5092), + [anon_sym_xor_EQ] = ACTIONS(5092), + [anon_sym_LT_LT_EQ] = ACTIONS(5092), + [anon_sym_GT_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5092), + [anon_sym_return] = ACTIONS(5094), + [anon_sym_yield] = ACTIONS(5094), + [anon_sym_break] = ACTIONS(5094), + [anon_sym_continue] = ACTIONS(5094), + [anon_sym_defer] = ACTIONS(5094), + [anon_sym_errdefer] = ACTIONS(5094), + [anon_sym_if] = ACTIONS(5094), + [anon_sym_else] = ACTIONS(5094), + [anon_sym_while] = ACTIONS(5094), + [anon_sym_expand] = ACTIONS(5094), + [anon_sym_for] = ACTIONS(5094), + [anon_sym_match] = ACTIONS(5094), + [anon_sym_DOT_DOT] = ACTIONS(5094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5092), + [anon_sym_orelse] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_and] = ACTIONS(5094), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_xor] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5094), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_LT_LT_PIPE] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_catch] = ACTIONS(5094), + [anon_sym_TILDE] = ACTIONS(5092), + [anon_sym_try] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_true] = ACTIONS(5094), + [anon_sym_false] = ACTIONS(5094), + [anon_sym_null] = ACTIONS(5094), + [anon_sym_unreachable] = ACTIONS(5094), + [anon_sym_undefined] = ACTIONS(5094), + [sym_sink] = ACTIONS(5094), + [sym_integer] = ACTIONS(5094), + [sym_float] = ACTIONS(5092), + [anon_sym_DQUOTE] = ACTIONS(5092), + [sym_multiline_string] = ACTIONS(5092), + [sym_character] = ACTIONS(5092), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5092), + }, + [STATE(3198)] = { + [sym_identifier] = ACTIONS(5098), + [anon_sym_func] = ACTIONS(5098), + [anon_sym_c_func] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_struct] = ACTIONS(5098), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_struct_type_BANG] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5096), + [anon_sym_AT] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_void] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym_type] = ACTIONS(5098), + [anon_sym_anyopaque] = ACTIONS(5098), + [anon_sym_bool] = ACTIONS(5098), + [anon_sym_int] = ACTIONS(5098), + [anon_sym_uint] = ACTIONS(5098), + [anon_sym_float] = ACTIONS(5098), + [anon_sym_range] = ACTIONS(5098), + [anon_sym_i8] = ACTIONS(5098), + [anon_sym_i16] = ACTIONS(5098), + [anon_sym_i32] = ACTIONS(5098), + [anon_sym_i64] = ACTIONS(5098), + [anon_sym_u8] = ACTIONS(5098), + [anon_sym_u16] = ACTIONS(5098), + [anon_sym_u32] = ACTIONS(5098), + [anon_sym_u64] = ACTIONS(5098), + [anon_sym_isize] = ACTIONS(5098), + [anon_sym_usize] = ACTIONS(5098), + [anon_sym_f32] = ACTIONS(5098), + [anon_sym_f64] = ACTIONS(5098), + [anon_sym_c_char] = ACTIONS(5098), + [anon_sym_c_schar] = ACTIONS(5098), + [anon_sym_c_uchar] = ACTIONS(5098), + [anon_sym_c_short] = ACTIONS(5098), + [anon_sym_c_ushort] = ACTIONS(5098), + [anon_sym_c_int] = ACTIONS(5098), + [anon_sym_c_uint] = ACTIONS(5098), + [anon_sym_c_long] = ACTIONS(5098), + [anon_sym_c_ulong] = ACTIONS(5098), + [anon_sym_c_longlong] = ACTIONS(5098), + [anon_sym_c_ulonglong] = ACTIONS(5098), + [anon_sym_c_float] = ACTIONS(5098), + [anon_sym_c_double] = ACTIONS(5098), + [anon_sym_c_longdouble] = ACTIONS(5098), + [anon_sym_PLUS_EQ] = ACTIONS(5096), + [anon_sym_DASH_EQ] = ACTIONS(5096), + [anon_sym_STAR_EQ] = ACTIONS(5096), + [anon_sym_SLASH_EQ] = ACTIONS(5096), + [anon_sym_AMP_EQ] = ACTIONS(5096), + [anon_sym_PIPE_EQ] = ACTIONS(5096), + [anon_sym_xor_EQ] = ACTIONS(5096), + [anon_sym_LT_LT_EQ] = ACTIONS(5096), + [anon_sym_GT_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5096), + [anon_sym_return] = ACTIONS(5098), + [anon_sym_yield] = ACTIONS(5098), + [anon_sym_break] = ACTIONS(5098), + [anon_sym_continue] = ACTIONS(5098), + [anon_sym_defer] = ACTIONS(5098), + [anon_sym_errdefer] = ACTIONS(5098), + [anon_sym_if] = ACTIONS(5098), + [anon_sym_else] = ACTIONS(5098), + [anon_sym_while] = ACTIONS(5098), + [anon_sym_expand] = ACTIONS(5098), + [anon_sym_for] = ACTIONS(5098), + [anon_sym_match] = ACTIONS(5098), + [anon_sym_DOT_DOT] = ACTIONS(5098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5096), + [anon_sym_orelse] = ACTIONS(5098), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_and] = ACTIONS(5098), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_xor] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5098), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_LT_LT_PIPE] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_catch] = ACTIONS(5098), + [anon_sym_TILDE] = ACTIONS(5096), + [anon_sym_try] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_true] = ACTIONS(5098), + [anon_sym_false] = ACTIONS(5098), + [anon_sym_null] = ACTIONS(5098), + [anon_sym_unreachable] = ACTIONS(5098), + [anon_sym_undefined] = ACTIONS(5098), + [sym_sink] = ACTIONS(5098), + [sym_integer] = ACTIONS(5098), + [sym_float] = ACTIONS(5096), + [anon_sym_DQUOTE] = ACTIONS(5096), + [sym_multiline_string] = ACTIONS(5096), + [sym_character] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5096), + }, + [STATE(3199)] = { + [sym_identifier] = ACTIONS(5102), + [anon_sym_func] = ACTIONS(5102), + [anon_sym_c_func] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_struct] = ACTIONS(5102), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_struct_type_BANG] = ACTIONS(5100), + [anon_sym_QMARK] = ACTIONS(5100), + [anon_sym_AT] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_void] = ACTIONS(5102), + [anon_sym_noreturn] = ACTIONS(5102), + [anon_sym_type] = ACTIONS(5102), + [anon_sym_anyopaque] = ACTIONS(5102), + [anon_sym_bool] = ACTIONS(5102), + [anon_sym_int] = ACTIONS(5102), + [anon_sym_uint] = ACTIONS(5102), + [anon_sym_float] = ACTIONS(5102), + [anon_sym_range] = ACTIONS(5102), + [anon_sym_i8] = ACTIONS(5102), + [anon_sym_i16] = ACTIONS(5102), + [anon_sym_i32] = ACTIONS(5102), + [anon_sym_i64] = ACTIONS(5102), + [anon_sym_u8] = ACTIONS(5102), + [anon_sym_u16] = ACTIONS(5102), + [anon_sym_u32] = ACTIONS(5102), + [anon_sym_u64] = ACTIONS(5102), + [anon_sym_isize] = ACTIONS(5102), + [anon_sym_usize] = ACTIONS(5102), + [anon_sym_f32] = ACTIONS(5102), + [anon_sym_f64] = ACTIONS(5102), + [anon_sym_c_char] = ACTIONS(5102), + [anon_sym_c_schar] = ACTIONS(5102), + [anon_sym_c_uchar] = ACTIONS(5102), + [anon_sym_c_short] = ACTIONS(5102), + [anon_sym_c_ushort] = ACTIONS(5102), + [anon_sym_c_int] = ACTIONS(5102), + [anon_sym_c_uint] = ACTIONS(5102), + [anon_sym_c_long] = ACTIONS(5102), + [anon_sym_c_ulong] = ACTIONS(5102), + [anon_sym_c_longlong] = ACTIONS(5102), + [anon_sym_c_ulonglong] = ACTIONS(5102), + [anon_sym_c_float] = ACTIONS(5102), + [anon_sym_c_double] = ACTIONS(5102), + [anon_sym_c_longdouble] = ACTIONS(5102), + [anon_sym_PLUS_EQ] = ACTIONS(5100), + [anon_sym_DASH_EQ] = ACTIONS(5100), + [anon_sym_STAR_EQ] = ACTIONS(5100), + [anon_sym_SLASH_EQ] = ACTIONS(5100), + [anon_sym_AMP_EQ] = ACTIONS(5100), + [anon_sym_PIPE_EQ] = ACTIONS(5100), + [anon_sym_xor_EQ] = ACTIONS(5100), + [anon_sym_LT_LT_EQ] = ACTIONS(5100), + [anon_sym_GT_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5100), + [anon_sym_return] = ACTIONS(5102), + [anon_sym_yield] = ACTIONS(5102), + [anon_sym_break] = ACTIONS(5102), + [anon_sym_continue] = ACTIONS(5102), + [anon_sym_defer] = ACTIONS(5102), + [anon_sym_errdefer] = ACTIONS(5102), + [anon_sym_if] = ACTIONS(5102), + [anon_sym_else] = ACTIONS(5102), + [anon_sym_while] = ACTIONS(5102), + [anon_sym_expand] = ACTIONS(5102), + [anon_sym_for] = ACTIONS(5102), + [anon_sym_match] = ACTIONS(5102), + [anon_sym_DOT_DOT] = ACTIONS(5102), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5100), + [anon_sym_orelse] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5102), + [anon_sym_and] = ACTIONS(5102), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_AMP] = ACTIONS(5102), + [anon_sym_xor] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5102), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_LT_LT_PIPE] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5102), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_catch] = ACTIONS(5102), + [anon_sym_TILDE] = ACTIONS(5100), + [anon_sym_try] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_true] = ACTIONS(5102), + [anon_sym_false] = ACTIONS(5102), + [anon_sym_null] = ACTIONS(5102), + [anon_sym_unreachable] = ACTIONS(5102), + [anon_sym_undefined] = ACTIONS(5102), + [sym_sink] = ACTIONS(5102), + [sym_integer] = ACTIONS(5102), + [sym_float] = ACTIONS(5100), + [anon_sym_DQUOTE] = ACTIONS(5100), + [sym_multiline_string] = ACTIONS(5100), + [sym_character] = ACTIONS(5100), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5100), + }, + [STATE(3200)] = { + [sym_identifier] = ACTIONS(4382), + [anon_sym_func] = ACTIONS(4382), + [anon_sym_c_func] = ACTIONS(4382), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_struct] = ACTIONS(4382), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4380), + [anon_sym_COMMA] = ACTIONS(4380), + [anon_sym_RBRACE] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_DOLLAR] = ACTIONS(4380), + [anon_sym_PIPE] = ACTIONS(4382), + [anon_sym_struct_type_BANG] = ACTIONS(4380), + [anon_sym_QMARK] = ACTIONS(4380), + [anon_sym_AT] = ACTIONS(4380), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_void] = ACTIONS(4382), + [anon_sym_noreturn] = ACTIONS(4382), + [anon_sym_type] = ACTIONS(4382), + [anon_sym_anyopaque] = ACTIONS(4382), + [anon_sym_bool] = ACTIONS(4382), + [anon_sym_int] = ACTIONS(4382), + [anon_sym_uint] = ACTIONS(4382), + [anon_sym_float] = ACTIONS(4382), + [anon_sym_range] = ACTIONS(4382), + [anon_sym_i8] = ACTIONS(4382), + [anon_sym_i16] = ACTIONS(4382), + [anon_sym_i32] = ACTIONS(4382), + [anon_sym_i64] = ACTIONS(4382), + [anon_sym_u8] = ACTIONS(4382), + [anon_sym_u16] = ACTIONS(4382), + [anon_sym_u32] = ACTIONS(4382), + [anon_sym_u64] = ACTIONS(4382), + [anon_sym_isize] = ACTIONS(4382), + [anon_sym_usize] = ACTIONS(4382), + [anon_sym_f32] = ACTIONS(4382), + [anon_sym_f64] = ACTIONS(4382), + [anon_sym_c_char] = ACTIONS(4382), + [anon_sym_c_schar] = ACTIONS(4382), + [anon_sym_c_uchar] = ACTIONS(4382), + [anon_sym_c_short] = ACTIONS(4382), + [anon_sym_c_ushort] = ACTIONS(4382), + [anon_sym_c_int] = ACTIONS(4382), + [anon_sym_c_uint] = ACTIONS(4382), + [anon_sym_c_long] = ACTIONS(4382), + [anon_sym_c_ulong] = ACTIONS(4382), + [anon_sym_c_longlong] = ACTIONS(4382), + [anon_sym_c_ulonglong] = ACTIONS(4382), + [anon_sym_c_float] = ACTIONS(4382), + [anon_sym_c_double] = ACTIONS(4382), + [anon_sym_c_longdouble] = ACTIONS(4382), + [anon_sym_PLUS_EQ] = ACTIONS(4380), + [anon_sym_DASH_EQ] = ACTIONS(4380), + [anon_sym_STAR_EQ] = ACTIONS(4380), + [anon_sym_SLASH_EQ] = ACTIONS(4380), + [anon_sym_AMP_EQ] = ACTIONS(4380), + [anon_sym_PIPE_EQ] = ACTIONS(4380), + [anon_sym_xor_EQ] = ACTIONS(4380), + [anon_sym_LT_LT_EQ] = ACTIONS(4380), + [anon_sym_GT_GT_EQ] = ACTIONS(4380), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4380), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_yield] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_defer] = ACTIONS(4382), + [anon_sym_errdefer] = ACTIONS(4382), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_expand] = ACTIONS(4382), + [anon_sym_for] = ACTIONS(4382), + [anon_sym_match] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4380), + [anon_sym_orelse] = ACTIONS(4382), + [anon_sym_or] = ACTIONS(4382), + [anon_sym_and] = ACTIONS(4382), + [anon_sym_EQ_EQ] = ACTIONS(4380), + [anon_sym_BANG_EQ] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_LT_EQ] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_GT_EQ] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4382), + [anon_sym_xor] = ACTIONS(4382), + [anon_sym_LT_LT] = ACTIONS(4382), + [anon_sym_GT_GT] = ACTIONS(4382), + [anon_sym_LT_LT_PIPE] = ACTIONS(4382), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_catch] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4380), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_null] = ACTIONS(4382), + [anon_sym_unreachable] = ACTIONS(4382), + [anon_sym_undefined] = ACTIONS(4382), + [sym_sink] = ACTIONS(4382), + [sym_integer] = ACTIONS(4382), + [sym_float] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(4380), + [sym_multiline_string] = ACTIONS(4380), + [sym_character] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4380), + }, + [STATE(3201)] = { + [sym_identifier] = ACTIONS(4386), + [anon_sym_func] = ACTIONS(4386), + [anon_sym_c_func] = ACTIONS(4386), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_struct] = ACTIONS(4386), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_DOLLAR] = ACTIONS(4384), + [anon_sym_PIPE] = ACTIONS(4386), + [anon_sym_struct_type_BANG] = ACTIONS(4384), + [anon_sym_QMARK] = ACTIONS(4384), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_void] = ACTIONS(4386), + [anon_sym_noreturn] = ACTIONS(4386), + [anon_sym_type] = ACTIONS(4386), + [anon_sym_anyopaque] = ACTIONS(4386), + [anon_sym_bool] = ACTIONS(4386), + [anon_sym_int] = ACTIONS(4386), + [anon_sym_uint] = ACTIONS(4386), + [anon_sym_float] = ACTIONS(4386), + [anon_sym_range] = ACTIONS(4386), + [anon_sym_i8] = ACTIONS(4386), + [anon_sym_i16] = ACTIONS(4386), + [anon_sym_i32] = ACTIONS(4386), + [anon_sym_i64] = ACTIONS(4386), + [anon_sym_u8] = ACTIONS(4386), + [anon_sym_u16] = ACTIONS(4386), + [anon_sym_u32] = ACTIONS(4386), + [anon_sym_u64] = ACTIONS(4386), + [anon_sym_isize] = ACTIONS(4386), + [anon_sym_usize] = ACTIONS(4386), + [anon_sym_f32] = ACTIONS(4386), + [anon_sym_f64] = ACTIONS(4386), + [anon_sym_c_char] = ACTIONS(4386), + [anon_sym_c_schar] = ACTIONS(4386), + [anon_sym_c_uchar] = ACTIONS(4386), + [anon_sym_c_short] = ACTIONS(4386), + [anon_sym_c_ushort] = ACTIONS(4386), + [anon_sym_c_int] = ACTIONS(4386), + [anon_sym_c_uint] = ACTIONS(4386), + [anon_sym_c_long] = ACTIONS(4386), + [anon_sym_c_ulong] = ACTIONS(4386), + [anon_sym_c_longlong] = ACTIONS(4386), + [anon_sym_c_ulonglong] = ACTIONS(4386), + [anon_sym_c_float] = ACTIONS(4386), + [anon_sym_c_double] = ACTIONS(4386), + [anon_sym_c_longdouble] = ACTIONS(4386), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_AMP_EQ] = ACTIONS(4384), + [anon_sym_PIPE_EQ] = ACTIONS(4384), + [anon_sym_xor_EQ] = ACTIONS(4384), + [anon_sym_LT_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_GT_EQ] = ACTIONS(4384), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4384), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_yield] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_defer] = ACTIONS(4386), + [anon_sym_errdefer] = ACTIONS(4386), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_while] = ACTIONS(4386), + [anon_sym_expand] = ACTIONS(4386), + [anon_sym_for] = ACTIONS(4386), + [anon_sym_match] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4384), + [anon_sym_orelse] = ACTIONS(4386), + [anon_sym_or] = ACTIONS(4386), + [anon_sym_and] = ACTIONS(4386), + [anon_sym_EQ_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(4386), + [anon_sym_xor] = ACTIONS(4386), + [anon_sym_LT_LT] = ACTIONS(4386), + [anon_sym_GT_GT] = ACTIONS(4386), + [anon_sym_LT_LT_PIPE] = ACTIONS(4386), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_catch] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4384), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_CARET] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_null] = ACTIONS(4386), + [anon_sym_unreachable] = ACTIONS(4386), + [anon_sym_undefined] = ACTIONS(4386), + [sym_sink] = ACTIONS(4386), + [sym_integer] = ACTIONS(4386), + [sym_float] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym_multiline_string] = ACTIONS(4384), + [sym_character] = ACTIONS(4384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4384), + }, + [STATE(3202)] = { + [sym_identifier] = ACTIONS(5106), + [anon_sym_func] = ACTIONS(5106), + [anon_sym_c_func] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_struct] = ACTIONS(5106), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5104), + [anon_sym_COMMA] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5106), + [anon_sym_struct_type_BANG] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(5104), + [anon_sym_AT] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_void] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym_type] = ACTIONS(5106), + [anon_sym_anyopaque] = ACTIONS(5106), + [anon_sym_bool] = ACTIONS(5106), + [anon_sym_int] = ACTIONS(5106), + [anon_sym_uint] = ACTIONS(5106), + [anon_sym_float] = ACTIONS(5106), + [anon_sym_range] = ACTIONS(5106), + [anon_sym_i8] = ACTIONS(5106), + [anon_sym_i16] = ACTIONS(5106), + [anon_sym_i32] = ACTIONS(5106), + [anon_sym_i64] = ACTIONS(5106), + [anon_sym_u8] = ACTIONS(5106), + [anon_sym_u16] = ACTIONS(5106), + [anon_sym_u32] = ACTIONS(5106), + [anon_sym_u64] = ACTIONS(5106), + [anon_sym_isize] = ACTIONS(5106), + [anon_sym_usize] = ACTIONS(5106), + [anon_sym_f32] = ACTIONS(5106), + [anon_sym_f64] = ACTIONS(5106), + [anon_sym_c_char] = ACTIONS(5106), + [anon_sym_c_schar] = ACTIONS(5106), + [anon_sym_c_uchar] = ACTIONS(5106), + [anon_sym_c_short] = ACTIONS(5106), + [anon_sym_c_ushort] = ACTIONS(5106), + [anon_sym_c_int] = ACTIONS(5106), + [anon_sym_c_uint] = ACTIONS(5106), + [anon_sym_c_long] = ACTIONS(5106), + [anon_sym_c_ulong] = ACTIONS(5106), + [anon_sym_c_longlong] = ACTIONS(5106), + [anon_sym_c_ulonglong] = ACTIONS(5106), + [anon_sym_c_float] = ACTIONS(5106), + [anon_sym_c_double] = ACTIONS(5106), + [anon_sym_c_longdouble] = ACTIONS(5106), + [anon_sym_PLUS_EQ] = ACTIONS(5104), + [anon_sym_DASH_EQ] = ACTIONS(5104), + [anon_sym_STAR_EQ] = ACTIONS(5104), + [anon_sym_SLASH_EQ] = ACTIONS(5104), + [anon_sym_AMP_EQ] = ACTIONS(5104), + [anon_sym_PIPE_EQ] = ACTIONS(5104), + [anon_sym_xor_EQ] = ACTIONS(5104), + [anon_sym_LT_LT_EQ] = ACTIONS(5104), + [anon_sym_GT_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5104), + [anon_sym_return] = ACTIONS(5106), + [anon_sym_yield] = ACTIONS(5106), + [anon_sym_break] = ACTIONS(5106), + [anon_sym_continue] = ACTIONS(5106), + [anon_sym_defer] = ACTIONS(5106), + [anon_sym_errdefer] = ACTIONS(5106), + [anon_sym_if] = ACTIONS(5106), + [anon_sym_else] = ACTIONS(5106), + [anon_sym_while] = ACTIONS(5106), + [anon_sym_expand] = ACTIONS(5106), + [anon_sym_for] = ACTIONS(5106), + [anon_sym_match] = ACTIONS(5106), + [anon_sym_DOT_DOT] = ACTIONS(5106), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5104), + [anon_sym_orelse] = ACTIONS(5106), + [anon_sym_or] = ACTIONS(5106), + [anon_sym_and] = ACTIONS(5106), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5106), + [anon_sym_xor] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5106), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_LT_LT_PIPE] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5106), + [anon_sym_SLASH] = ACTIONS(5106), + [anon_sym_catch] = ACTIONS(5106), + [anon_sym_TILDE] = ACTIONS(5104), + [anon_sym_try] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_true] = ACTIONS(5106), + [anon_sym_false] = ACTIONS(5106), + [anon_sym_null] = ACTIONS(5106), + [anon_sym_unreachable] = ACTIONS(5106), + [anon_sym_undefined] = ACTIONS(5106), + [sym_sink] = ACTIONS(5106), + [sym_integer] = ACTIONS(5106), + [sym_float] = ACTIONS(5104), + [anon_sym_DQUOTE] = ACTIONS(5104), + [sym_multiline_string] = ACTIONS(5104), + [sym_character] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5104), + }, + [STATE(3203)] = { + [sym_identifier] = ACTIONS(5110), + [anon_sym_func] = ACTIONS(5110), + [anon_sym_c_func] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_struct] = ACTIONS(5110), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_LBRACE] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_struct_type_BANG] = ACTIONS(5108), + [anon_sym_QMARK] = ACTIONS(5108), + [anon_sym_AT] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_void] = ACTIONS(5110), + [anon_sym_noreturn] = ACTIONS(5110), + [anon_sym_type] = ACTIONS(5110), + [anon_sym_anyopaque] = ACTIONS(5110), + [anon_sym_bool] = ACTIONS(5110), + [anon_sym_int] = ACTIONS(5110), + [anon_sym_uint] = ACTIONS(5110), + [anon_sym_float] = ACTIONS(5110), + [anon_sym_range] = ACTIONS(5110), + [anon_sym_i8] = ACTIONS(5110), + [anon_sym_i16] = ACTIONS(5110), + [anon_sym_i32] = ACTIONS(5110), + [anon_sym_i64] = ACTIONS(5110), + [anon_sym_u8] = ACTIONS(5110), + [anon_sym_u16] = ACTIONS(5110), + [anon_sym_u32] = ACTIONS(5110), + [anon_sym_u64] = ACTIONS(5110), + [anon_sym_isize] = ACTIONS(5110), + [anon_sym_usize] = ACTIONS(5110), + [anon_sym_f32] = ACTIONS(5110), + [anon_sym_f64] = ACTIONS(5110), + [anon_sym_c_char] = ACTIONS(5110), + [anon_sym_c_schar] = ACTIONS(5110), + [anon_sym_c_uchar] = ACTIONS(5110), + [anon_sym_c_short] = ACTIONS(5110), + [anon_sym_c_ushort] = ACTIONS(5110), + [anon_sym_c_int] = ACTIONS(5110), + [anon_sym_c_uint] = ACTIONS(5110), + [anon_sym_c_long] = ACTIONS(5110), + [anon_sym_c_ulong] = ACTIONS(5110), + [anon_sym_c_longlong] = ACTIONS(5110), + [anon_sym_c_ulonglong] = ACTIONS(5110), + [anon_sym_c_float] = ACTIONS(5110), + [anon_sym_c_double] = ACTIONS(5110), + [anon_sym_c_longdouble] = ACTIONS(5110), + [anon_sym_PLUS_EQ] = ACTIONS(5108), + [anon_sym_DASH_EQ] = ACTIONS(5108), + [anon_sym_STAR_EQ] = ACTIONS(5108), + [anon_sym_SLASH_EQ] = ACTIONS(5108), + [anon_sym_AMP_EQ] = ACTIONS(5108), + [anon_sym_PIPE_EQ] = ACTIONS(5108), + [anon_sym_xor_EQ] = ACTIONS(5108), + [anon_sym_LT_LT_EQ] = ACTIONS(5108), + [anon_sym_GT_GT_EQ] = ACTIONS(5108), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5108), + [anon_sym_return] = ACTIONS(5110), + [anon_sym_yield] = ACTIONS(5110), + [anon_sym_break] = ACTIONS(5110), + [anon_sym_continue] = ACTIONS(5110), + [anon_sym_defer] = ACTIONS(5110), + [anon_sym_errdefer] = ACTIONS(5110), + [anon_sym_if] = ACTIONS(5110), + [anon_sym_else] = ACTIONS(5110), + [anon_sym_while] = ACTIONS(5110), + [anon_sym_expand] = ACTIONS(5110), + [anon_sym_for] = ACTIONS(5110), + [anon_sym_match] = ACTIONS(5110), + [anon_sym_DOT_DOT] = ACTIONS(5110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5108), + [anon_sym_orelse] = ACTIONS(5110), + [anon_sym_or] = ACTIONS(5110), + [anon_sym_and] = ACTIONS(5110), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_xor] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_LT_LT_PIPE] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_catch] = ACTIONS(5110), + [anon_sym_TILDE] = ACTIONS(5108), + [anon_sym_try] = ACTIONS(5110), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_true] = ACTIONS(5110), + [anon_sym_false] = ACTIONS(5110), + [anon_sym_null] = ACTIONS(5110), + [anon_sym_unreachable] = ACTIONS(5110), + [anon_sym_undefined] = ACTIONS(5110), + [sym_sink] = ACTIONS(5110), + [sym_integer] = ACTIONS(5110), + [sym_float] = ACTIONS(5108), + [anon_sym_DQUOTE] = ACTIONS(5108), + [sym_multiline_string] = ACTIONS(5108), + [sym_character] = ACTIONS(5108), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5108), + }, + [STATE(3204)] = { + [sym_identifier] = ACTIONS(5114), + [anon_sym_func] = ACTIONS(5114), + [anon_sym_c_func] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_struct] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_LBRACE] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_struct_type_BANG] = ACTIONS(5112), + [anon_sym_QMARK] = ACTIONS(5112), + [anon_sym_AT] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_void] = ACTIONS(5114), + [anon_sym_noreturn] = ACTIONS(5114), + [anon_sym_type] = ACTIONS(5114), + [anon_sym_anyopaque] = ACTIONS(5114), + [anon_sym_bool] = ACTIONS(5114), + [anon_sym_int] = ACTIONS(5114), + [anon_sym_uint] = ACTIONS(5114), + [anon_sym_float] = ACTIONS(5114), + [anon_sym_range] = ACTIONS(5114), + [anon_sym_i8] = ACTIONS(5114), + [anon_sym_i16] = ACTIONS(5114), + [anon_sym_i32] = ACTIONS(5114), + [anon_sym_i64] = ACTIONS(5114), + [anon_sym_u8] = ACTIONS(5114), + [anon_sym_u16] = ACTIONS(5114), + [anon_sym_u32] = ACTIONS(5114), + [anon_sym_u64] = ACTIONS(5114), + [anon_sym_isize] = ACTIONS(5114), + [anon_sym_usize] = ACTIONS(5114), + [anon_sym_f32] = ACTIONS(5114), + [anon_sym_f64] = ACTIONS(5114), + [anon_sym_c_char] = ACTIONS(5114), + [anon_sym_c_schar] = ACTIONS(5114), + [anon_sym_c_uchar] = ACTIONS(5114), + [anon_sym_c_short] = ACTIONS(5114), + [anon_sym_c_ushort] = ACTIONS(5114), + [anon_sym_c_int] = ACTIONS(5114), + [anon_sym_c_uint] = ACTIONS(5114), + [anon_sym_c_long] = ACTIONS(5114), + [anon_sym_c_ulong] = ACTIONS(5114), + [anon_sym_c_longlong] = ACTIONS(5114), + [anon_sym_c_ulonglong] = ACTIONS(5114), + [anon_sym_c_float] = ACTIONS(5114), + [anon_sym_c_double] = ACTIONS(5114), + [anon_sym_c_longdouble] = ACTIONS(5114), + [anon_sym_PLUS_EQ] = ACTIONS(5112), + [anon_sym_DASH_EQ] = ACTIONS(5112), + [anon_sym_STAR_EQ] = ACTIONS(5112), + [anon_sym_SLASH_EQ] = ACTIONS(5112), + [anon_sym_AMP_EQ] = ACTIONS(5112), + [anon_sym_PIPE_EQ] = ACTIONS(5112), + [anon_sym_xor_EQ] = ACTIONS(5112), + [anon_sym_LT_LT_EQ] = ACTIONS(5112), + [anon_sym_GT_GT_EQ] = ACTIONS(5112), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5112), + [anon_sym_return] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5114), + [anon_sym_break] = ACTIONS(5114), + [anon_sym_continue] = ACTIONS(5114), + [anon_sym_defer] = ACTIONS(5114), + [anon_sym_errdefer] = ACTIONS(5114), + [anon_sym_if] = ACTIONS(5114), + [anon_sym_else] = ACTIONS(5114), + [anon_sym_while] = ACTIONS(5114), + [anon_sym_expand] = ACTIONS(5114), + [anon_sym_for] = ACTIONS(5114), + [anon_sym_match] = ACTIONS(5114), + [anon_sym_DOT_DOT] = ACTIONS(5114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5112), + [anon_sym_orelse] = ACTIONS(5114), + [anon_sym_or] = ACTIONS(5114), + [anon_sym_and] = ACTIONS(5114), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_xor] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_LT_LT_PIPE] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_catch] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5112), + [anon_sym_try] = ACTIONS(5114), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_true] = ACTIONS(5114), + [anon_sym_false] = ACTIONS(5114), + [anon_sym_null] = ACTIONS(5114), + [anon_sym_unreachable] = ACTIONS(5114), + [anon_sym_undefined] = ACTIONS(5114), + [sym_sink] = ACTIONS(5114), + [sym_integer] = ACTIONS(5114), + [sym_float] = ACTIONS(5112), + [anon_sym_DQUOTE] = ACTIONS(5112), + [sym_multiline_string] = ACTIONS(5112), + [sym_character] = ACTIONS(5112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5112), + }, + [STATE(3205)] = { + [sym_identifier] = ACTIONS(5118), + [anon_sym_func] = ACTIONS(5118), + [anon_sym_c_func] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_struct] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_struct_type_BANG] = ACTIONS(5116), + [anon_sym_QMARK] = ACTIONS(5116), + [anon_sym_AT] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_void] = ACTIONS(5118), + [anon_sym_noreturn] = ACTIONS(5118), + [anon_sym_type] = ACTIONS(5118), + [anon_sym_anyopaque] = ACTIONS(5118), + [anon_sym_bool] = ACTIONS(5118), + [anon_sym_int] = ACTIONS(5118), + [anon_sym_uint] = ACTIONS(5118), + [anon_sym_float] = ACTIONS(5118), + [anon_sym_range] = ACTIONS(5118), + [anon_sym_i8] = ACTIONS(5118), + [anon_sym_i16] = ACTIONS(5118), + [anon_sym_i32] = ACTIONS(5118), + [anon_sym_i64] = ACTIONS(5118), + [anon_sym_u8] = ACTIONS(5118), + [anon_sym_u16] = ACTIONS(5118), + [anon_sym_u32] = ACTIONS(5118), + [anon_sym_u64] = ACTIONS(5118), + [anon_sym_isize] = ACTIONS(5118), + [anon_sym_usize] = ACTIONS(5118), + [anon_sym_f32] = ACTIONS(5118), + [anon_sym_f64] = ACTIONS(5118), + [anon_sym_c_char] = ACTIONS(5118), + [anon_sym_c_schar] = ACTIONS(5118), + [anon_sym_c_uchar] = ACTIONS(5118), + [anon_sym_c_short] = ACTIONS(5118), + [anon_sym_c_ushort] = ACTIONS(5118), + [anon_sym_c_int] = ACTIONS(5118), + [anon_sym_c_uint] = ACTIONS(5118), + [anon_sym_c_long] = ACTIONS(5118), + [anon_sym_c_ulong] = ACTIONS(5118), + [anon_sym_c_longlong] = ACTIONS(5118), + [anon_sym_c_ulonglong] = ACTIONS(5118), + [anon_sym_c_float] = ACTIONS(5118), + [anon_sym_c_double] = ACTIONS(5118), + [anon_sym_c_longdouble] = ACTIONS(5118), + [anon_sym_PLUS_EQ] = ACTIONS(5116), + [anon_sym_DASH_EQ] = ACTIONS(5116), + [anon_sym_STAR_EQ] = ACTIONS(5116), + [anon_sym_SLASH_EQ] = ACTIONS(5116), + [anon_sym_AMP_EQ] = ACTIONS(5116), + [anon_sym_PIPE_EQ] = ACTIONS(5116), + [anon_sym_xor_EQ] = ACTIONS(5116), + [anon_sym_LT_LT_EQ] = ACTIONS(5116), + [anon_sym_GT_GT_EQ] = ACTIONS(5116), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5116), + [anon_sym_return] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5118), + [anon_sym_break] = ACTIONS(5118), + [anon_sym_continue] = ACTIONS(5118), + [anon_sym_defer] = ACTIONS(5118), + [anon_sym_errdefer] = ACTIONS(5118), + [anon_sym_if] = ACTIONS(5118), + [anon_sym_else] = ACTIONS(5118), + [anon_sym_while] = ACTIONS(5118), + [anon_sym_expand] = ACTIONS(5118), + [anon_sym_for] = ACTIONS(5118), + [anon_sym_match] = ACTIONS(5118), + [anon_sym_DOT_DOT] = ACTIONS(5118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5116), + [anon_sym_orelse] = ACTIONS(5118), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_and] = ACTIONS(5118), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_xor] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_LT_LT_PIPE] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_catch] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_true] = ACTIONS(5118), + [anon_sym_false] = ACTIONS(5118), + [anon_sym_null] = ACTIONS(5118), + [anon_sym_unreachable] = ACTIONS(5118), + [anon_sym_undefined] = ACTIONS(5118), + [sym_sink] = ACTIONS(5118), + [sym_integer] = ACTIONS(5118), + [sym_float] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [sym_multiline_string] = ACTIONS(5116), + [sym_character] = ACTIONS(5116), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5116), + }, + [STATE(3206)] = { + [sym_identifier] = ACTIONS(5122), + [anon_sym_func] = ACTIONS(5122), + [anon_sym_c_func] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_struct] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_struct_type_BANG] = ACTIONS(5120), + [anon_sym_QMARK] = ACTIONS(5120), + [anon_sym_AT] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_void] = ACTIONS(5122), + [anon_sym_noreturn] = ACTIONS(5122), + [anon_sym_type] = ACTIONS(5122), + [anon_sym_anyopaque] = ACTIONS(5122), + [anon_sym_bool] = ACTIONS(5122), + [anon_sym_int] = ACTIONS(5122), + [anon_sym_uint] = ACTIONS(5122), + [anon_sym_float] = ACTIONS(5122), + [anon_sym_range] = ACTIONS(5122), + [anon_sym_i8] = ACTIONS(5122), + [anon_sym_i16] = ACTIONS(5122), + [anon_sym_i32] = ACTIONS(5122), + [anon_sym_i64] = ACTIONS(5122), + [anon_sym_u8] = ACTIONS(5122), + [anon_sym_u16] = ACTIONS(5122), + [anon_sym_u32] = ACTIONS(5122), + [anon_sym_u64] = ACTIONS(5122), + [anon_sym_isize] = ACTIONS(5122), + [anon_sym_usize] = ACTIONS(5122), + [anon_sym_f32] = ACTIONS(5122), + [anon_sym_f64] = ACTIONS(5122), + [anon_sym_c_char] = ACTIONS(5122), + [anon_sym_c_schar] = ACTIONS(5122), + [anon_sym_c_uchar] = ACTIONS(5122), + [anon_sym_c_short] = ACTIONS(5122), + [anon_sym_c_ushort] = ACTIONS(5122), + [anon_sym_c_int] = ACTIONS(5122), + [anon_sym_c_uint] = ACTIONS(5122), + [anon_sym_c_long] = ACTIONS(5122), + [anon_sym_c_ulong] = ACTIONS(5122), + [anon_sym_c_longlong] = ACTIONS(5122), + [anon_sym_c_ulonglong] = ACTIONS(5122), + [anon_sym_c_float] = ACTIONS(5122), + [anon_sym_c_double] = ACTIONS(5122), + [anon_sym_c_longdouble] = ACTIONS(5122), + [anon_sym_PLUS_EQ] = ACTIONS(5120), + [anon_sym_DASH_EQ] = ACTIONS(5120), + [anon_sym_STAR_EQ] = ACTIONS(5120), + [anon_sym_SLASH_EQ] = ACTIONS(5120), + [anon_sym_AMP_EQ] = ACTIONS(5120), + [anon_sym_PIPE_EQ] = ACTIONS(5120), + [anon_sym_xor_EQ] = ACTIONS(5120), + [anon_sym_LT_LT_EQ] = ACTIONS(5120), + [anon_sym_GT_GT_EQ] = ACTIONS(5120), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5120), + [anon_sym_return] = ACTIONS(5122), + [anon_sym_yield] = ACTIONS(5122), + [anon_sym_break] = ACTIONS(5122), + [anon_sym_continue] = ACTIONS(5122), + [anon_sym_defer] = ACTIONS(5122), + [anon_sym_errdefer] = ACTIONS(5122), + [anon_sym_if] = ACTIONS(5122), + [anon_sym_else] = ACTIONS(5122), + [anon_sym_while] = ACTIONS(5122), + [anon_sym_expand] = ACTIONS(5122), + [anon_sym_for] = ACTIONS(5122), + [anon_sym_match] = ACTIONS(5122), + [anon_sym_DOT_DOT] = ACTIONS(5122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5120), + [anon_sym_orelse] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_and] = ACTIONS(5122), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_xor] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_LT_LT_PIPE] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_catch] = ACTIONS(5122), + [anon_sym_TILDE] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_true] = ACTIONS(5122), + [anon_sym_false] = ACTIONS(5122), + [anon_sym_null] = ACTIONS(5122), + [anon_sym_unreachable] = ACTIONS(5122), + [anon_sym_undefined] = ACTIONS(5122), + [sym_sink] = ACTIONS(5122), + [sym_integer] = ACTIONS(5122), + [sym_float] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [sym_multiline_string] = ACTIONS(5120), + [sym_character] = ACTIONS(5120), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5120), + }, + [STATE(3207)] = { + [sym_identifier] = ACTIONS(5126), + [anon_sym_func] = ACTIONS(5126), + [anon_sym_c_func] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_struct] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_struct_type_BANG] = ACTIONS(5124), + [anon_sym_QMARK] = ACTIONS(5124), + [anon_sym_AT] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_void] = ACTIONS(5126), + [anon_sym_noreturn] = ACTIONS(5126), + [anon_sym_type] = ACTIONS(5126), + [anon_sym_anyopaque] = ACTIONS(5126), + [anon_sym_bool] = ACTIONS(5126), + [anon_sym_int] = ACTIONS(5126), + [anon_sym_uint] = ACTIONS(5126), + [anon_sym_float] = ACTIONS(5126), + [anon_sym_range] = ACTIONS(5126), + [anon_sym_i8] = ACTIONS(5126), + [anon_sym_i16] = ACTIONS(5126), + [anon_sym_i32] = ACTIONS(5126), + [anon_sym_i64] = ACTIONS(5126), + [anon_sym_u8] = ACTIONS(5126), + [anon_sym_u16] = ACTIONS(5126), + [anon_sym_u32] = ACTIONS(5126), + [anon_sym_u64] = ACTIONS(5126), + [anon_sym_isize] = ACTIONS(5126), + [anon_sym_usize] = ACTIONS(5126), + [anon_sym_f32] = ACTIONS(5126), + [anon_sym_f64] = ACTIONS(5126), + [anon_sym_c_char] = ACTIONS(5126), + [anon_sym_c_schar] = ACTIONS(5126), + [anon_sym_c_uchar] = ACTIONS(5126), + [anon_sym_c_short] = ACTIONS(5126), + [anon_sym_c_ushort] = ACTIONS(5126), + [anon_sym_c_int] = ACTIONS(5126), + [anon_sym_c_uint] = ACTIONS(5126), + [anon_sym_c_long] = ACTIONS(5126), + [anon_sym_c_ulong] = ACTIONS(5126), + [anon_sym_c_longlong] = ACTIONS(5126), + [anon_sym_c_ulonglong] = ACTIONS(5126), + [anon_sym_c_float] = ACTIONS(5126), + [anon_sym_c_double] = ACTIONS(5126), + [anon_sym_c_longdouble] = ACTIONS(5126), + [anon_sym_PLUS_EQ] = ACTIONS(5124), + [anon_sym_DASH_EQ] = ACTIONS(5124), + [anon_sym_STAR_EQ] = ACTIONS(5124), + [anon_sym_SLASH_EQ] = ACTIONS(5124), + [anon_sym_AMP_EQ] = ACTIONS(5124), + [anon_sym_PIPE_EQ] = ACTIONS(5124), + [anon_sym_xor_EQ] = ACTIONS(5124), + [anon_sym_LT_LT_EQ] = ACTIONS(5124), + [anon_sym_GT_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5124), + [anon_sym_return] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5126), + [anon_sym_break] = ACTIONS(5126), + [anon_sym_continue] = ACTIONS(5126), + [anon_sym_defer] = ACTIONS(5126), + [anon_sym_errdefer] = ACTIONS(5126), + [anon_sym_if] = ACTIONS(5126), + [anon_sym_else] = ACTIONS(5126), + [anon_sym_while] = ACTIONS(5126), + [anon_sym_expand] = ACTIONS(5126), + [anon_sym_for] = ACTIONS(5126), + [anon_sym_match] = ACTIONS(5126), + [anon_sym_DOT_DOT] = ACTIONS(5126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5124), + [anon_sym_orelse] = ACTIONS(5126), + [anon_sym_or] = ACTIONS(5126), + [anon_sym_and] = ACTIONS(5126), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_xor] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5126), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_LT_LT_PIPE] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_catch] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5124), + [anon_sym_try] = ACTIONS(5126), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_true] = ACTIONS(5126), + [anon_sym_false] = ACTIONS(5126), + [anon_sym_null] = ACTIONS(5126), + [anon_sym_unreachable] = ACTIONS(5126), + [anon_sym_undefined] = ACTIONS(5126), + [sym_sink] = ACTIONS(5126), + [sym_integer] = ACTIONS(5126), + [sym_float] = ACTIONS(5124), + [anon_sym_DQUOTE] = ACTIONS(5124), + [sym_multiline_string] = ACTIONS(5124), + [sym_character] = ACTIONS(5124), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5124), + }, + [STATE(3208)] = { + [sym_identifier] = ACTIONS(4390), + [anon_sym_func] = ACTIONS(4390), + [anon_sym_c_func] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_struct] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_DOLLAR] = ACTIONS(4388), + [anon_sym_PIPE] = ACTIONS(4390), + [anon_sym_struct_type_BANG] = ACTIONS(4388), + [anon_sym_QMARK] = ACTIONS(4388), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_void] = ACTIONS(4390), + [anon_sym_noreturn] = ACTIONS(4390), + [anon_sym_type] = ACTIONS(4390), + [anon_sym_anyopaque] = ACTIONS(4390), + [anon_sym_bool] = ACTIONS(4390), + [anon_sym_int] = ACTIONS(4390), + [anon_sym_uint] = ACTIONS(4390), + [anon_sym_float] = ACTIONS(4390), + [anon_sym_range] = ACTIONS(4390), + [anon_sym_i8] = ACTIONS(4390), + [anon_sym_i16] = ACTIONS(4390), + [anon_sym_i32] = ACTIONS(4390), + [anon_sym_i64] = ACTIONS(4390), + [anon_sym_u8] = ACTIONS(4390), + [anon_sym_u16] = ACTIONS(4390), + [anon_sym_u32] = ACTIONS(4390), + [anon_sym_u64] = ACTIONS(4390), + [anon_sym_isize] = ACTIONS(4390), + [anon_sym_usize] = ACTIONS(4390), + [anon_sym_f32] = ACTIONS(4390), + [anon_sym_f64] = ACTIONS(4390), + [anon_sym_c_char] = ACTIONS(4390), + [anon_sym_c_schar] = ACTIONS(4390), + [anon_sym_c_uchar] = ACTIONS(4390), + [anon_sym_c_short] = ACTIONS(4390), + [anon_sym_c_ushort] = ACTIONS(4390), + [anon_sym_c_int] = ACTIONS(4390), + [anon_sym_c_uint] = ACTIONS(4390), + [anon_sym_c_long] = ACTIONS(4390), + [anon_sym_c_ulong] = ACTIONS(4390), + [anon_sym_c_longlong] = ACTIONS(4390), + [anon_sym_c_ulonglong] = ACTIONS(4390), + [anon_sym_c_float] = ACTIONS(4390), + [anon_sym_c_double] = ACTIONS(4390), + [anon_sym_c_longdouble] = ACTIONS(4390), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_AMP_EQ] = ACTIONS(4388), + [anon_sym_PIPE_EQ] = ACTIONS(4388), + [anon_sym_xor_EQ] = ACTIONS(4388), + [anon_sym_LT_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_GT_EQ] = ACTIONS(4388), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_yield] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_defer] = ACTIONS(4390), + [anon_sym_errdefer] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_expand] = ACTIONS(4390), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_match] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4388), + [anon_sym_orelse] = ACTIONS(4390), + [anon_sym_or] = ACTIONS(4390), + [anon_sym_and] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4390), + [anon_sym_xor] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT_PIPE] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_catch] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4388), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_CARET] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_unreachable] = ACTIONS(4390), + [anon_sym_undefined] = ACTIONS(4390), + [sym_sink] = ACTIONS(4390), + [sym_integer] = ACTIONS(4390), + [sym_float] = ACTIONS(4388), + [anon_sym_DQUOTE] = ACTIONS(4388), + [sym_multiline_string] = ACTIONS(4388), + [sym_character] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4388), + }, + [STATE(3209)] = { + [sym_identifier] = ACTIONS(5130), + [anon_sym_func] = ACTIONS(5130), + [anon_sym_c_func] = ACTIONS(5130), + [anon_sym_BANG] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_struct] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_COMMA] = ACTIONS(5128), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5130), + [anon_sym_struct_type_BANG] = ACTIONS(5128), + [anon_sym_QMARK] = ACTIONS(5128), + [anon_sym_AT] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_void] = ACTIONS(5130), + [anon_sym_noreturn] = ACTIONS(5130), + [anon_sym_type] = ACTIONS(5130), + [anon_sym_anyopaque] = ACTIONS(5130), + [anon_sym_bool] = ACTIONS(5130), + [anon_sym_int] = ACTIONS(5130), + [anon_sym_uint] = ACTIONS(5130), + [anon_sym_float] = ACTIONS(5130), + [anon_sym_range] = ACTIONS(5130), + [anon_sym_i8] = ACTIONS(5130), + [anon_sym_i16] = ACTIONS(5130), + [anon_sym_i32] = ACTIONS(5130), + [anon_sym_i64] = ACTIONS(5130), + [anon_sym_u8] = ACTIONS(5130), + [anon_sym_u16] = ACTIONS(5130), + [anon_sym_u32] = ACTIONS(5130), + [anon_sym_u64] = ACTIONS(5130), + [anon_sym_isize] = ACTIONS(5130), + [anon_sym_usize] = ACTIONS(5130), + [anon_sym_f32] = ACTIONS(5130), + [anon_sym_f64] = ACTIONS(5130), + [anon_sym_c_char] = ACTIONS(5130), + [anon_sym_c_schar] = ACTIONS(5130), + [anon_sym_c_uchar] = ACTIONS(5130), + [anon_sym_c_short] = ACTIONS(5130), + [anon_sym_c_ushort] = ACTIONS(5130), + [anon_sym_c_int] = ACTIONS(5130), + [anon_sym_c_uint] = ACTIONS(5130), + [anon_sym_c_long] = ACTIONS(5130), + [anon_sym_c_ulong] = ACTIONS(5130), + [anon_sym_c_longlong] = ACTIONS(5130), + [anon_sym_c_ulonglong] = ACTIONS(5130), + [anon_sym_c_float] = ACTIONS(5130), + [anon_sym_c_double] = ACTIONS(5130), + [anon_sym_c_longdouble] = ACTIONS(5130), + [anon_sym_PLUS_EQ] = ACTIONS(5128), + [anon_sym_DASH_EQ] = ACTIONS(5128), + [anon_sym_STAR_EQ] = ACTIONS(5128), + [anon_sym_SLASH_EQ] = ACTIONS(5128), + [anon_sym_AMP_EQ] = ACTIONS(5128), + [anon_sym_PIPE_EQ] = ACTIONS(5128), + [anon_sym_xor_EQ] = ACTIONS(5128), + [anon_sym_LT_LT_EQ] = ACTIONS(5128), + [anon_sym_GT_GT_EQ] = ACTIONS(5128), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5128), + [anon_sym_return] = ACTIONS(5130), + [anon_sym_yield] = ACTIONS(5130), + [anon_sym_break] = ACTIONS(5130), + [anon_sym_continue] = ACTIONS(5130), + [anon_sym_defer] = ACTIONS(5130), + [anon_sym_errdefer] = ACTIONS(5130), + [anon_sym_if] = ACTIONS(5130), + [anon_sym_else] = ACTIONS(5130), + [anon_sym_while] = ACTIONS(5130), + [anon_sym_expand] = ACTIONS(5130), + [anon_sym_for] = ACTIONS(5130), + [anon_sym_match] = ACTIONS(5130), + [anon_sym_DOT_DOT] = ACTIONS(5130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5128), + [anon_sym_orelse] = ACTIONS(5130), + [anon_sym_or] = ACTIONS(5130), + [anon_sym_and] = ACTIONS(5130), + [anon_sym_EQ_EQ] = ACTIONS(5128), + [anon_sym_BANG_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5130), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5130), + [anon_sym_GT_EQ] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5130), + [anon_sym_xor] = ACTIONS(5130), + [anon_sym_LT_LT] = ACTIONS(5130), + [anon_sym_GT_GT] = ACTIONS(5130), + [anon_sym_LT_LT_PIPE] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5130), + [anon_sym_SLASH] = ACTIONS(5130), + [anon_sym_catch] = ACTIONS(5130), + [anon_sym_TILDE] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5130), + [anon_sym_DOT] = ACTIONS(5130), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_true] = ACTIONS(5130), + [anon_sym_false] = ACTIONS(5130), + [anon_sym_null] = ACTIONS(5130), + [anon_sym_unreachable] = ACTIONS(5130), + [anon_sym_undefined] = ACTIONS(5130), + [sym_sink] = ACTIONS(5130), + [sym_integer] = ACTIONS(5130), + [sym_float] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [sym_multiline_string] = ACTIONS(5128), + [sym_character] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5128), + }, + [STATE(3210)] = { + [sym_type] = STATE(3862), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [sym_identifier] = ACTIONS(6557), + [anon_sym_func] = ACTIONS(6560), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(6563), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6569), + [anon_sym_mut] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6574), + [anon_sym_void] = ACTIONS(6577), + [anon_sym_noreturn] = ACTIONS(6577), + [anon_sym_type] = ACTIONS(6577), + [anon_sym_anyopaque] = ACTIONS(6577), + [anon_sym_bool] = ACTIONS(6577), + [anon_sym_int] = ACTIONS(6577), + [anon_sym_uint] = ACTIONS(6577), + [anon_sym_float] = ACTIONS(6577), + [anon_sym_range] = ACTIONS(6577), + [anon_sym_i8] = ACTIONS(6577), + [anon_sym_i16] = ACTIONS(6577), + [anon_sym_i32] = ACTIONS(6577), + [anon_sym_i64] = ACTIONS(6577), + [anon_sym_u8] = ACTIONS(6577), + [anon_sym_u16] = ACTIONS(6577), + [anon_sym_u32] = ACTIONS(6577), + [anon_sym_u64] = ACTIONS(6577), + [anon_sym_isize] = ACTIONS(6577), + [anon_sym_usize] = ACTIONS(6577), + [anon_sym_f32] = ACTIONS(6577), + [anon_sym_f64] = ACTIONS(6577), + [anon_sym_c_char] = ACTIONS(6577), + [anon_sym_c_schar] = ACTIONS(6577), + [anon_sym_c_uchar] = ACTIONS(6577), + [anon_sym_c_short] = ACTIONS(6577), + [anon_sym_c_ushort] = ACTIONS(6577), + [anon_sym_c_int] = ACTIONS(6577), + [anon_sym_c_uint] = ACTIONS(6577), + [anon_sym_c_long] = ACTIONS(6577), + [anon_sym_c_ulong] = ACTIONS(6577), + [anon_sym_c_longlong] = ACTIONS(6577), + [anon_sym_c_ulonglong] = ACTIONS(6577), + [anon_sym_c_float] = ACTIONS(6577), + [anon_sym_c_double] = ACTIONS(6577), + [anon_sym_c_longdouble] = ACTIONS(6577), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_defer] = ACTIONS(1196), + [anon_sym_errdefer] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_expand] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_unreachable] = ACTIONS(1196), + [anon_sym_undefined] = ACTIONS(1196), + [sym_sink] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [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(3211)] = { + [sym_identifier] = ACTIONS(5134), + [anon_sym_func] = ACTIONS(5134), + [anon_sym_c_func] = ACTIONS(5134), + [anon_sym_BANG] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_struct] = ACTIONS(5134), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_COMMA] = ACTIONS(5132), + [anon_sym_RBRACE] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_struct_type_BANG] = ACTIONS(5132), + [anon_sym_QMARK] = ACTIONS(5132), + [anon_sym_AT] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_void] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym_type] = ACTIONS(5134), + [anon_sym_anyopaque] = ACTIONS(5134), + [anon_sym_bool] = ACTIONS(5134), + [anon_sym_int] = ACTIONS(5134), + [anon_sym_uint] = ACTIONS(5134), + [anon_sym_float] = ACTIONS(5134), + [anon_sym_range] = ACTIONS(5134), + [anon_sym_i8] = ACTIONS(5134), + [anon_sym_i16] = ACTIONS(5134), + [anon_sym_i32] = ACTIONS(5134), + [anon_sym_i64] = ACTIONS(5134), + [anon_sym_u8] = ACTIONS(5134), + [anon_sym_u16] = ACTIONS(5134), + [anon_sym_u32] = ACTIONS(5134), + [anon_sym_u64] = ACTIONS(5134), + [anon_sym_isize] = ACTIONS(5134), + [anon_sym_usize] = ACTIONS(5134), + [anon_sym_f32] = ACTIONS(5134), + [anon_sym_f64] = ACTIONS(5134), + [anon_sym_c_char] = ACTIONS(5134), + [anon_sym_c_schar] = ACTIONS(5134), + [anon_sym_c_uchar] = ACTIONS(5134), + [anon_sym_c_short] = ACTIONS(5134), + [anon_sym_c_ushort] = ACTIONS(5134), + [anon_sym_c_int] = ACTIONS(5134), + [anon_sym_c_uint] = ACTIONS(5134), + [anon_sym_c_long] = ACTIONS(5134), + [anon_sym_c_ulong] = ACTIONS(5134), + [anon_sym_c_longlong] = ACTIONS(5134), + [anon_sym_c_ulonglong] = ACTIONS(5134), + [anon_sym_c_float] = ACTIONS(5134), + [anon_sym_c_double] = ACTIONS(5134), + [anon_sym_c_longdouble] = ACTIONS(5134), + [anon_sym_PLUS_EQ] = ACTIONS(5132), + [anon_sym_DASH_EQ] = ACTIONS(5132), + [anon_sym_STAR_EQ] = ACTIONS(5132), + [anon_sym_SLASH_EQ] = ACTIONS(5132), + [anon_sym_AMP_EQ] = ACTIONS(5132), + [anon_sym_PIPE_EQ] = ACTIONS(5132), + [anon_sym_xor_EQ] = ACTIONS(5132), + [anon_sym_LT_LT_EQ] = ACTIONS(5132), + [anon_sym_GT_GT_EQ] = ACTIONS(5132), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5132), + [anon_sym_return] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_break] = ACTIONS(5134), + [anon_sym_continue] = ACTIONS(5134), + [anon_sym_defer] = ACTIONS(5134), + [anon_sym_errdefer] = ACTIONS(5134), + [anon_sym_if] = ACTIONS(5134), + [anon_sym_else] = ACTIONS(5134), + [anon_sym_while] = ACTIONS(5134), + [anon_sym_expand] = ACTIONS(5134), + [anon_sym_for] = ACTIONS(5134), + [anon_sym_match] = ACTIONS(5134), + [anon_sym_DOT_DOT] = ACTIONS(5134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5132), + [anon_sym_orelse] = ACTIONS(5134), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5132), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5134), + [anon_sym_LT_LT_PIPE] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_catch] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5132), + [anon_sym_try] = ACTIONS(5134), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym_true] = ACTIONS(5134), + [anon_sym_false] = ACTIONS(5134), + [anon_sym_null] = ACTIONS(5134), + [anon_sym_unreachable] = ACTIONS(5134), + [anon_sym_undefined] = ACTIONS(5134), + [sym_sink] = ACTIONS(5134), + [sym_integer] = ACTIONS(5134), + [sym_float] = ACTIONS(5132), + [anon_sym_DQUOTE] = ACTIONS(5132), + [sym_multiline_string] = ACTIONS(5132), + [sym_character] = ACTIONS(5132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5132), + }, + [STATE(3212)] = { + [sym_identifier] = ACTIONS(5138), + [anon_sym_func] = ACTIONS(5138), + [anon_sym_c_func] = ACTIONS(5138), + [anon_sym_BANG] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_struct] = ACTIONS(5138), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_struct_type_BANG] = ACTIONS(5136), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_AT] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_void] = ACTIONS(5138), + [anon_sym_noreturn] = ACTIONS(5138), + [anon_sym_type] = ACTIONS(5138), + [anon_sym_anyopaque] = ACTIONS(5138), + [anon_sym_bool] = ACTIONS(5138), + [anon_sym_int] = ACTIONS(5138), + [anon_sym_uint] = ACTIONS(5138), + [anon_sym_float] = ACTIONS(5138), + [anon_sym_range] = ACTIONS(5138), + [anon_sym_i8] = ACTIONS(5138), + [anon_sym_i16] = ACTIONS(5138), + [anon_sym_i32] = ACTIONS(5138), + [anon_sym_i64] = ACTIONS(5138), + [anon_sym_u8] = ACTIONS(5138), + [anon_sym_u16] = ACTIONS(5138), + [anon_sym_u32] = ACTIONS(5138), + [anon_sym_u64] = ACTIONS(5138), + [anon_sym_isize] = ACTIONS(5138), + [anon_sym_usize] = ACTIONS(5138), + [anon_sym_f32] = ACTIONS(5138), + [anon_sym_f64] = ACTIONS(5138), + [anon_sym_c_char] = ACTIONS(5138), + [anon_sym_c_schar] = ACTIONS(5138), + [anon_sym_c_uchar] = ACTIONS(5138), + [anon_sym_c_short] = ACTIONS(5138), + [anon_sym_c_ushort] = ACTIONS(5138), + [anon_sym_c_int] = ACTIONS(5138), + [anon_sym_c_uint] = ACTIONS(5138), + [anon_sym_c_long] = ACTIONS(5138), + [anon_sym_c_ulong] = ACTIONS(5138), + [anon_sym_c_longlong] = ACTIONS(5138), + [anon_sym_c_ulonglong] = ACTIONS(5138), + [anon_sym_c_float] = ACTIONS(5138), + [anon_sym_c_double] = ACTIONS(5138), + [anon_sym_c_longdouble] = ACTIONS(5138), + [anon_sym_PLUS_EQ] = ACTIONS(5136), + [anon_sym_DASH_EQ] = ACTIONS(5136), + [anon_sym_STAR_EQ] = ACTIONS(5136), + [anon_sym_SLASH_EQ] = ACTIONS(5136), + [anon_sym_AMP_EQ] = ACTIONS(5136), + [anon_sym_PIPE_EQ] = ACTIONS(5136), + [anon_sym_xor_EQ] = ACTIONS(5136), + [anon_sym_LT_LT_EQ] = ACTIONS(5136), + [anon_sym_GT_GT_EQ] = ACTIONS(5136), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5136), + [anon_sym_return] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_break] = ACTIONS(5138), + [anon_sym_continue] = ACTIONS(5138), + [anon_sym_defer] = ACTIONS(5138), + [anon_sym_errdefer] = ACTIONS(5138), + [anon_sym_if] = ACTIONS(5138), + [anon_sym_else] = ACTIONS(5138), + [anon_sym_while] = ACTIONS(5138), + [anon_sym_expand] = ACTIONS(5138), + [anon_sym_for] = ACTIONS(5138), + [anon_sym_match] = ACTIONS(5138), + [anon_sym_DOT_DOT] = ACTIONS(5138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5136), + [anon_sym_orelse] = ACTIONS(5138), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_EQ] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym_LT_LT_PIPE] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_catch] = ACTIONS(5138), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_try] = ACTIONS(5138), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym_true] = ACTIONS(5138), + [anon_sym_false] = ACTIONS(5138), + [anon_sym_null] = ACTIONS(5138), + [anon_sym_unreachable] = ACTIONS(5138), + [anon_sym_undefined] = ACTIONS(5138), + [sym_sink] = ACTIONS(5138), + [sym_integer] = ACTIONS(5138), + [sym_float] = ACTIONS(5136), + [anon_sym_DQUOTE] = ACTIONS(5136), + [sym_multiline_string] = ACTIONS(5136), + [sym_character] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5136), + }, + [STATE(3213)] = { + [sym_identifier] = ACTIONS(5142), + [anon_sym_func] = ACTIONS(5142), + [anon_sym_c_func] = ACTIONS(5142), + [anon_sym_BANG] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_COMMA] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5142), + [anon_sym_struct_type_BANG] = ACTIONS(5140), + [anon_sym_QMARK] = ACTIONS(5140), + [anon_sym_AT] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_void] = ACTIONS(5142), + [anon_sym_noreturn] = ACTIONS(5142), + [anon_sym_type] = ACTIONS(5142), + [anon_sym_anyopaque] = ACTIONS(5142), + [anon_sym_bool] = ACTIONS(5142), + [anon_sym_int] = ACTIONS(5142), + [anon_sym_uint] = ACTIONS(5142), + [anon_sym_float] = ACTIONS(5142), + [anon_sym_range] = ACTIONS(5142), + [anon_sym_i8] = ACTIONS(5142), + [anon_sym_i16] = ACTIONS(5142), + [anon_sym_i32] = ACTIONS(5142), + [anon_sym_i64] = ACTIONS(5142), + [anon_sym_u8] = ACTIONS(5142), + [anon_sym_u16] = ACTIONS(5142), + [anon_sym_u32] = ACTIONS(5142), + [anon_sym_u64] = ACTIONS(5142), + [anon_sym_isize] = ACTIONS(5142), + [anon_sym_usize] = ACTIONS(5142), + [anon_sym_f32] = ACTIONS(5142), + [anon_sym_f64] = ACTIONS(5142), + [anon_sym_c_char] = ACTIONS(5142), + [anon_sym_c_schar] = ACTIONS(5142), + [anon_sym_c_uchar] = ACTIONS(5142), + [anon_sym_c_short] = ACTIONS(5142), + [anon_sym_c_ushort] = ACTIONS(5142), + [anon_sym_c_int] = ACTIONS(5142), + [anon_sym_c_uint] = ACTIONS(5142), + [anon_sym_c_long] = ACTIONS(5142), + [anon_sym_c_ulong] = ACTIONS(5142), + [anon_sym_c_longlong] = ACTIONS(5142), + [anon_sym_c_ulonglong] = ACTIONS(5142), + [anon_sym_c_float] = ACTIONS(5142), + [anon_sym_c_double] = ACTIONS(5142), + [anon_sym_c_longdouble] = ACTIONS(5142), + [anon_sym_PLUS_EQ] = ACTIONS(5140), + [anon_sym_DASH_EQ] = ACTIONS(5140), + [anon_sym_STAR_EQ] = ACTIONS(5140), + [anon_sym_SLASH_EQ] = ACTIONS(5140), + [anon_sym_AMP_EQ] = ACTIONS(5140), + [anon_sym_PIPE_EQ] = ACTIONS(5140), + [anon_sym_xor_EQ] = ACTIONS(5140), + [anon_sym_LT_LT_EQ] = ACTIONS(5140), + [anon_sym_GT_GT_EQ] = ACTIONS(5140), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5140), + [anon_sym_return] = ACTIONS(5142), + [anon_sym_yield] = ACTIONS(5142), + [anon_sym_break] = ACTIONS(5142), + [anon_sym_continue] = ACTIONS(5142), + [anon_sym_defer] = ACTIONS(5142), + [anon_sym_errdefer] = ACTIONS(5142), + [anon_sym_if] = ACTIONS(5142), + [anon_sym_else] = ACTIONS(5142), + [anon_sym_while] = ACTIONS(5142), + [anon_sym_expand] = ACTIONS(5142), + [anon_sym_for] = ACTIONS(5142), + [anon_sym_match] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5140), + [anon_sym_orelse] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5140), + [anon_sym_BANG_EQ] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5140), + [anon_sym_AMP] = ACTIONS(5142), + [anon_sym_xor] = ACTIONS(5142), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5142), + [anon_sym_LT_LT_PIPE] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5142), + [anon_sym_catch] = ACTIONS(5142), + [anon_sym_TILDE] = ACTIONS(5140), + [anon_sym_try] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym_true] = ACTIONS(5142), + [anon_sym_false] = ACTIONS(5142), + [anon_sym_null] = ACTIONS(5142), + [anon_sym_unreachable] = ACTIONS(5142), + [anon_sym_undefined] = ACTIONS(5142), + [sym_sink] = ACTIONS(5142), + [sym_integer] = ACTIONS(5142), + [sym_float] = ACTIONS(5140), + [anon_sym_DQUOTE] = ACTIONS(5140), + [sym_multiline_string] = ACTIONS(5140), + [sym_character] = ACTIONS(5140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5140), + }, + [STATE(3214)] = { + [sym_identifier] = ACTIONS(5146), + [anon_sym_func] = ACTIONS(5146), + [anon_sym_c_func] = ACTIONS(5146), + [anon_sym_BANG] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5146), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_COMMA] = ACTIONS(5144), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5146), + [anon_sym_struct_type_BANG] = ACTIONS(5144), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_AT] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_void] = ACTIONS(5146), + [anon_sym_noreturn] = ACTIONS(5146), + [anon_sym_type] = ACTIONS(5146), + [anon_sym_anyopaque] = ACTIONS(5146), + [anon_sym_bool] = ACTIONS(5146), + [anon_sym_int] = ACTIONS(5146), + [anon_sym_uint] = ACTIONS(5146), + [anon_sym_float] = ACTIONS(5146), + [anon_sym_range] = ACTIONS(5146), + [anon_sym_i8] = ACTIONS(5146), + [anon_sym_i16] = ACTIONS(5146), + [anon_sym_i32] = ACTIONS(5146), + [anon_sym_i64] = ACTIONS(5146), + [anon_sym_u8] = ACTIONS(5146), + [anon_sym_u16] = ACTIONS(5146), + [anon_sym_u32] = ACTIONS(5146), + [anon_sym_u64] = ACTIONS(5146), + [anon_sym_isize] = ACTIONS(5146), + [anon_sym_usize] = ACTIONS(5146), + [anon_sym_f32] = ACTIONS(5146), + [anon_sym_f64] = ACTIONS(5146), + [anon_sym_c_char] = ACTIONS(5146), + [anon_sym_c_schar] = ACTIONS(5146), + [anon_sym_c_uchar] = ACTIONS(5146), + [anon_sym_c_short] = ACTIONS(5146), + [anon_sym_c_ushort] = ACTIONS(5146), + [anon_sym_c_int] = ACTIONS(5146), + [anon_sym_c_uint] = ACTIONS(5146), + [anon_sym_c_long] = ACTIONS(5146), + [anon_sym_c_ulong] = ACTIONS(5146), + [anon_sym_c_longlong] = ACTIONS(5146), + [anon_sym_c_ulonglong] = ACTIONS(5146), + [anon_sym_c_float] = ACTIONS(5146), + [anon_sym_c_double] = ACTIONS(5146), + [anon_sym_c_longdouble] = ACTIONS(5146), + [anon_sym_PLUS_EQ] = ACTIONS(5144), + [anon_sym_DASH_EQ] = ACTIONS(5144), + [anon_sym_STAR_EQ] = ACTIONS(5144), + [anon_sym_SLASH_EQ] = ACTIONS(5144), + [anon_sym_AMP_EQ] = ACTIONS(5144), + [anon_sym_PIPE_EQ] = ACTIONS(5144), + [anon_sym_xor_EQ] = ACTIONS(5144), + [anon_sym_LT_LT_EQ] = ACTIONS(5144), + [anon_sym_GT_GT_EQ] = ACTIONS(5144), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5144), + [anon_sym_return] = ACTIONS(5146), + [anon_sym_yield] = ACTIONS(5146), + [anon_sym_break] = ACTIONS(5146), + [anon_sym_continue] = ACTIONS(5146), + [anon_sym_defer] = ACTIONS(5146), + [anon_sym_errdefer] = ACTIONS(5146), + [anon_sym_if] = ACTIONS(5146), + [anon_sym_else] = ACTIONS(5146), + [anon_sym_while] = ACTIONS(5146), + [anon_sym_expand] = ACTIONS(5146), + [anon_sym_for] = ACTIONS(5146), + [anon_sym_match] = ACTIONS(5146), + [anon_sym_DOT_DOT] = ACTIONS(5146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5144), + [anon_sym_orelse] = ACTIONS(5146), + [anon_sym_or] = ACTIONS(5146), + [anon_sym_and] = ACTIONS(5146), + [anon_sym_EQ_EQ] = ACTIONS(5144), + [anon_sym_BANG_EQ] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5146), + [anon_sym_LT_EQ] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5146), + [anon_sym_GT_EQ] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5146), + [anon_sym_xor] = ACTIONS(5146), + [anon_sym_LT_LT] = ACTIONS(5146), + [anon_sym_GT_GT] = ACTIONS(5146), + [anon_sym_LT_LT_PIPE] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5146), + [anon_sym_SLASH] = ACTIONS(5146), + [anon_sym_catch] = ACTIONS(5146), + [anon_sym_TILDE] = ACTIONS(5144), + [anon_sym_try] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5146), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym_true] = ACTIONS(5146), + [anon_sym_false] = ACTIONS(5146), + [anon_sym_null] = ACTIONS(5146), + [anon_sym_unreachable] = ACTIONS(5146), + [anon_sym_undefined] = ACTIONS(5146), + [sym_sink] = ACTIONS(5146), + [sym_integer] = ACTIONS(5146), + [sym_float] = ACTIONS(5144), + [anon_sym_DQUOTE] = ACTIONS(5144), + [sym_multiline_string] = ACTIONS(5144), + [sym_character] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5144), + }, + [STATE(3215)] = { + [sym_identifier] = ACTIONS(5150), + [anon_sym_func] = ACTIONS(5150), + [anon_sym_c_func] = ACTIONS(5150), + [anon_sym_BANG] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_COMMA] = ACTIONS(5148), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5150), + [anon_sym_struct_type_BANG] = ACTIONS(5148), + [anon_sym_QMARK] = ACTIONS(5148), + [anon_sym_AT] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_void] = ACTIONS(5150), + [anon_sym_noreturn] = ACTIONS(5150), + [anon_sym_type] = ACTIONS(5150), + [anon_sym_anyopaque] = ACTIONS(5150), + [anon_sym_bool] = ACTIONS(5150), + [anon_sym_int] = ACTIONS(5150), + [anon_sym_uint] = ACTIONS(5150), + [anon_sym_float] = ACTIONS(5150), + [anon_sym_range] = ACTIONS(5150), + [anon_sym_i8] = ACTIONS(5150), + [anon_sym_i16] = ACTIONS(5150), + [anon_sym_i32] = ACTIONS(5150), + [anon_sym_i64] = ACTIONS(5150), + [anon_sym_u8] = ACTIONS(5150), + [anon_sym_u16] = ACTIONS(5150), + [anon_sym_u32] = ACTIONS(5150), + [anon_sym_u64] = ACTIONS(5150), + [anon_sym_isize] = ACTIONS(5150), + [anon_sym_usize] = ACTIONS(5150), + [anon_sym_f32] = ACTIONS(5150), + [anon_sym_f64] = ACTIONS(5150), + [anon_sym_c_char] = ACTIONS(5150), + [anon_sym_c_schar] = ACTIONS(5150), + [anon_sym_c_uchar] = ACTIONS(5150), + [anon_sym_c_short] = ACTIONS(5150), + [anon_sym_c_ushort] = ACTIONS(5150), + [anon_sym_c_int] = ACTIONS(5150), + [anon_sym_c_uint] = ACTIONS(5150), + [anon_sym_c_long] = ACTIONS(5150), + [anon_sym_c_ulong] = ACTIONS(5150), + [anon_sym_c_longlong] = ACTIONS(5150), + [anon_sym_c_ulonglong] = ACTIONS(5150), + [anon_sym_c_float] = ACTIONS(5150), + [anon_sym_c_double] = ACTIONS(5150), + [anon_sym_c_longdouble] = ACTIONS(5150), + [anon_sym_PLUS_EQ] = ACTIONS(5148), + [anon_sym_DASH_EQ] = ACTIONS(5148), + [anon_sym_STAR_EQ] = ACTIONS(5148), + [anon_sym_SLASH_EQ] = ACTIONS(5148), + [anon_sym_AMP_EQ] = ACTIONS(5148), + [anon_sym_PIPE_EQ] = ACTIONS(5148), + [anon_sym_xor_EQ] = ACTIONS(5148), + [anon_sym_LT_LT_EQ] = ACTIONS(5148), + [anon_sym_GT_GT_EQ] = ACTIONS(5148), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5148), + [anon_sym_return] = ACTIONS(5150), + [anon_sym_yield] = ACTIONS(5150), + [anon_sym_break] = ACTIONS(5150), + [anon_sym_continue] = ACTIONS(5150), + [anon_sym_defer] = ACTIONS(5150), + [anon_sym_errdefer] = ACTIONS(5150), + [anon_sym_if] = ACTIONS(5150), + [anon_sym_else] = ACTIONS(5150), + [anon_sym_while] = ACTIONS(5150), + [anon_sym_expand] = ACTIONS(5150), + [anon_sym_for] = ACTIONS(5150), + [anon_sym_match] = ACTIONS(5150), + [anon_sym_DOT_DOT] = ACTIONS(5150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5148), + [anon_sym_orelse] = ACTIONS(5150), + [anon_sym_or] = ACTIONS(5150), + [anon_sym_and] = ACTIONS(5150), + [anon_sym_EQ_EQ] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5150), + [anon_sym_LT_EQ] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_GT_EQ] = ACTIONS(5148), + [anon_sym_AMP] = ACTIONS(5150), + [anon_sym_xor] = ACTIONS(5150), + [anon_sym_LT_LT] = ACTIONS(5150), + [anon_sym_GT_GT] = ACTIONS(5150), + [anon_sym_LT_LT_PIPE] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5150), + [anon_sym_SLASH] = ACTIONS(5150), + [anon_sym_catch] = ACTIONS(5150), + [anon_sym_TILDE] = ACTIONS(5148), + [anon_sym_try] = ACTIONS(5150), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym_true] = ACTIONS(5150), + [anon_sym_false] = ACTIONS(5150), + [anon_sym_null] = ACTIONS(5150), + [anon_sym_unreachable] = ACTIONS(5150), + [anon_sym_undefined] = ACTIONS(5150), + [sym_sink] = ACTIONS(5150), + [sym_integer] = ACTIONS(5150), + [sym_float] = ACTIONS(5148), + [anon_sym_DQUOTE] = ACTIONS(5148), + [sym_multiline_string] = ACTIONS(5148), + [sym_character] = ACTIONS(5148), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5148), + }, + [STATE(3216)] = { + [sym_identifier] = ACTIONS(5154), + [anon_sym_func] = ACTIONS(5154), + [anon_sym_c_func] = ACTIONS(5154), + [anon_sym_BANG] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_struct] = ACTIONS(5154), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5152), + [anon_sym_COMMA] = ACTIONS(5152), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5154), + [anon_sym_struct_type_BANG] = ACTIONS(5152), + [anon_sym_QMARK] = ACTIONS(5152), + [anon_sym_AT] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_void] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym_type] = ACTIONS(5154), + [anon_sym_anyopaque] = ACTIONS(5154), + [anon_sym_bool] = ACTIONS(5154), + [anon_sym_int] = ACTIONS(5154), + [anon_sym_uint] = ACTIONS(5154), + [anon_sym_float] = ACTIONS(5154), + [anon_sym_range] = ACTIONS(5154), + [anon_sym_i8] = ACTIONS(5154), + [anon_sym_i16] = ACTIONS(5154), + [anon_sym_i32] = ACTIONS(5154), + [anon_sym_i64] = ACTIONS(5154), + [anon_sym_u8] = ACTIONS(5154), + [anon_sym_u16] = ACTIONS(5154), + [anon_sym_u32] = ACTIONS(5154), + [anon_sym_u64] = ACTIONS(5154), + [anon_sym_isize] = ACTIONS(5154), + [anon_sym_usize] = ACTIONS(5154), + [anon_sym_f32] = ACTIONS(5154), + [anon_sym_f64] = ACTIONS(5154), + [anon_sym_c_char] = ACTIONS(5154), + [anon_sym_c_schar] = ACTIONS(5154), + [anon_sym_c_uchar] = ACTIONS(5154), + [anon_sym_c_short] = ACTIONS(5154), + [anon_sym_c_ushort] = ACTIONS(5154), + [anon_sym_c_int] = ACTIONS(5154), + [anon_sym_c_uint] = ACTIONS(5154), + [anon_sym_c_long] = ACTIONS(5154), + [anon_sym_c_ulong] = ACTIONS(5154), + [anon_sym_c_longlong] = ACTIONS(5154), + [anon_sym_c_ulonglong] = ACTIONS(5154), + [anon_sym_c_float] = ACTIONS(5154), + [anon_sym_c_double] = ACTIONS(5154), + [anon_sym_c_longdouble] = ACTIONS(5154), + [anon_sym_PLUS_EQ] = ACTIONS(5152), + [anon_sym_DASH_EQ] = ACTIONS(5152), + [anon_sym_STAR_EQ] = ACTIONS(5152), + [anon_sym_SLASH_EQ] = ACTIONS(5152), + [anon_sym_AMP_EQ] = ACTIONS(5152), + [anon_sym_PIPE_EQ] = ACTIONS(5152), + [anon_sym_xor_EQ] = ACTIONS(5152), + [anon_sym_LT_LT_EQ] = ACTIONS(5152), + [anon_sym_GT_GT_EQ] = ACTIONS(5152), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5152), + [anon_sym_return] = ACTIONS(5154), + [anon_sym_yield] = ACTIONS(5154), + [anon_sym_break] = ACTIONS(5154), + [anon_sym_continue] = ACTIONS(5154), + [anon_sym_defer] = ACTIONS(5154), + [anon_sym_errdefer] = ACTIONS(5154), + [anon_sym_if] = ACTIONS(5154), + [anon_sym_else] = ACTIONS(5154), + [anon_sym_while] = ACTIONS(5154), + [anon_sym_expand] = ACTIONS(5154), + [anon_sym_for] = ACTIONS(5154), + [anon_sym_match] = ACTIONS(5154), + [anon_sym_DOT_DOT] = ACTIONS(5154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5152), + [anon_sym_orelse] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5154), + [anon_sym_and] = ACTIONS(5154), + [anon_sym_EQ_EQ] = ACTIONS(5152), + [anon_sym_BANG_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5154), + [anon_sym_GT_EQ] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5154), + [anon_sym_xor] = ACTIONS(5154), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5154), + [anon_sym_LT_LT_PIPE] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(5154), + [anon_sym_SLASH] = ACTIONS(5154), + [anon_sym_catch] = ACTIONS(5154), + [anon_sym_TILDE] = ACTIONS(5152), + [anon_sym_try] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5154), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym_true] = ACTIONS(5154), + [anon_sym_false] = ACTIONS(5154), + [anon_sym_null] = ACTIONS(5154), + [anon_sym_unreachable] = ACTIONS(5154), + [anon_sym_undefined] = ACTIONS(5154), + [sym_sink] = ACTIONS(5154), + [sym_integer] = ACTIONS(5154), + [sym_float] = ACTIONS(5152), + [anon_sym_DQUOTE] = ACTIONS(5152), + [sym_multiline_string] = ACTIONS(5152), + [sym_character] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5152), + }, + [STATE(3217)] = { + [sym_identifier] = ACTIONS(5158), + [anon_sym_func] = ACTIONS(5158), + [anon_sym_c_func] = ACTIONS(5158), + [anon_sym_BANG] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_struct] = ACTIONS(5158), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5156), + [anon_sym_COMMA] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5158), + [anon_sym_struct_type_BANG] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(5156), + [anon_sym_AT] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_void] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym_type] = ACTIONS(5158), + [anon_sym_anyopaque] = ACTIONS(5158), + [anon_sym_bool] = ACTIONS(5158), + [anon_sym_int] = ACTIONS(5158), + [anon_sym_uint] = ACTIONS(5158), + [anon_sym_float] = ACTIONS(5158), + [anon_sym_range] = ACTIONS(5158), + [anon_sym_i8] = ACTIONS(5158), + [anon_sym_i16] = ACTIONS(5158), + [anon_sym_i32] = ACTIONS(5158), + [anon_sym_i64] = ACTIONS(5158), + [anon_sym_u8] = ACTIONS(5158), + [anon_sym_u16] = ACTIONS(5158), + [anon_sym_u32] = ACTIONS(5158), + [anon_sym_u64] = ACTIONS(5158), + [anon_sym_isize] = ACTIONS(5158), + [anon_sym_usize] = ACTIONS(5158), + [anon_sym_f32] = ACTIONS(5158), + [anon_sym_f64] = ACTIONS(5158), + [anon_sym_c_char] = ACTIONS(5158), + [anon_sym_c_schar] = ACTIONS(5158), + [anon_sym_c_uchar] = ACTIONS(5158), + [anon_sym_c_short] = ACTIONS(5158), + [anon_sym_c_ushort] = ACTIONS(5158), + [anon_sym_c_int] = ACTIONS(5158), + [anon_sym_c_uint] = ACTIONS(5158), + [anon_sym_c_long] = ACTIONS(5158), + [anon_sym_c_ulong] = ACTIONS(5158), + [anon_sym_c_longlong] = ACTIONS(5158), + [anon_sym_c_ulonglong] = ACTIONS(5158), + [anon_sym_c_float] = ACTIONS(5158), + [anon_sym_c_double] = ACTIONS(5158), + [anon_sym_c_longdouble] = ACTIONS(5158), + [anon_sym_PLUS_EQ] = ACTIONS(5156), + [anon_sym_DASH_EQ] = ACTIONS(5156), + [anon_sym_STAR_EQ] = ACTIONS(5156), + [anon_sym_SLASH_EQ] = ACTIONS(5156), + [anon_sym_AMP_EQ] = ACTIONS(5156), + [anon_sym_PIPE_EQ] = ACTIONS(5156), + [anon_sym_xor_EQ] = ACTIONS(5156), + [anon_sym_LT_LT_EQ] = ACTIONS(5156), + [anon_sym_GT_GT_EQ] = ACTIONS(5156), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5156), + [anon_sym_return] = ACTIONS(5158), + [anon_sym_yield] = ACTIONS(5158), + [anon_sym_break] = ACTIONS(5158), + [anon_sym_continue] = ACTIONS(5158), + [anon_sym_defer] = ACTIONS(5158), + [anon_sym_errdefer] = ACTIONS(5158), + [anon_sym_if] = ACTIONS(5158), + [anon_sym_else] = ACTIONS(5158), + [anon_sym_while] = ACTIONS(5158), + [anon_sym_expand] = ACTIONS(5158), + [anon_sym_for] = ACTIONS(5158), + [anon_sym_match] = ACTIONS(5158), + [anon_sym_DOT_DOT] = ACTIONS(5158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5156), + [anon_sym_orelse] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_and] = ACTIONS(5158), + [anon_sym_EQ_EQ] = ACTIONS(5156), + [anon_sym_BANG_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5158), + [anon_sym_GT_EQ] = ACTIONS(5156), + [anon_sym_AMP] = ACTIONS(5158), + [anon_sym_xor] = ACTIONS(5158), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5158), + [anon_sym_LT_LT_PIPE] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5158), + [anon_sym_SLASH] = ACTIONS(5158), + [anon_sym_catch] = ACTIONS(5158), + [anon_sym_TILDE] = ACTIONS(5156), + [anon_sym_try] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5158), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym_true] = ACTIONS(5158), + [anon_sym_false] = ACTIONS(5158), + [anon_sym_null] = ACTIONS(5158), + [anon_sym_unreachable] = ACTIONS(5158), + [anon_sym_undefined] = ACTIONS(5158), + [sym_sink] = ACTIONS(5158), + [sym_integer] = ACTIONS(5158), + [sym_float] = ACTIONS(5156), + [anon_sym_DQUOTE] = ACTIONS(5156), + [sym_multiline_string] = ACTIONS(5156), + [sym_character] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5156), + }, + [STATE(3218)] = { + [sym_identifier] = ACTIONS(5162), + [anon_sym_func] = ACTIONS(5162), + [anon_sym_c_func] = ACTIONS(5162), + [anon_sym_BANG] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_struct] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5160), + [anon_sym_COMMA] = ACTIONS(5160), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5162), + [anon_sym_struct_type_BANG] = ACTIONS(5160), + [anon_sym_QMARK] = ACTIONS(5160), + [anon_sym_AT] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_void] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym_type] = ACTIONS(5162), + [anon_sym_anyopaque] = ACTIONS(5162), + [anon_sym_bool] = ACTIONS(5162), + [anon_sym_int] = ACTIONS(5162), + [anon_sym_uint] = ACTIONS(5162), + [anon_sym_float] = ACTIONS(5162), + [anon_sym_range] = ACTIONS(5162), + [anon_sym_i8] = ACTIONS(5162), + [anon_sym_i16] = ACTIONS(5162), + [anon_sym_i32] = ACTIONS(5162), + [anon_sym_i64] = ACTIONS(5162), + [anon_sym_u8] = ACTIONS(5162), + [anon_sym_u16] = ACTIONS(5162), + [anon_sym_u32] = ACTIONS(5162), + [anon_sym_u64] = ACTIONS(5162), + [anon_sym_isize] = ACTIONS(5162), + [anon_sym_usize] = ACTIONS(5162), + [anon_sym_f32] = ACTIONS(5162), + [anon_sym_f64] = ACTIONS(5162), + [anon_sym_c_char] = ACTIONS(5162), + [anon_sym_c_schar] = ACTIONS(5162), + [anon_sym_c_uchar] = ACTIONS(5162), + [anon_sym_c_short] = ACTIONS(5162), + [anon_sym_c_ushort] = ACTIONS(5162), + [anon_sym_c_int] = ACTIONS(5162), + [anon_sym_c_uint] = ACTIONS(5162), + [anon_sym_c_long] = ACTIONS(5162), + [anon_sym_c_ulong] = ACTIONS(5162), + [anon_sym_c_longlong] = ACTIONS(5162), + [anon_sym_c_ulonglong] = ACTIONS(5162), + [anon_sym_c_float] = ACTIONS(5162), + [anon_sym_c_double] = ACTIONS(5162), + [anon_sym_c_longdouble] = ACTIONS(5162), + [anon_sym_PLUS_EQ] = ACTIONS(5160), + [anon_sym_DASH_EQ] = ACTIONS(5160), + [anon_sym_STAR_EQ] = ACTIONS(5160), + [anon_sym_SLASH_EQ] = ACTIONS(5160), + [anon_sym_AMP_EQ] = ACTIONS(5160), + [anon_sym_PIPE_EQ] = ACTIONS(5160), + [anon_sym_xor_EQ] = ACTIONS(5160), + [anon_sym_LT_LT_EQ] = ACTIONS(5160), + [anon_sym_GT_GT_EQ] = ACTIONS(5160), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5160), + [anon_sym_return] = ACTIONS(5162), + [anon_sym_yield] = ACTIONS(5162), + [anon_sym_break] = ACTIONS(5162), + [anon_sym_continue] = ACTIONS(5162), + [anon_sym_defer] = ACTIONS(5162), + [anon_sym_errdefer] = ACTIONS(5162), + [anon_sym_if] = ACTIONS(5162), + [anon_sym_else] = ACTIONS(5162), + [anon_sym_while] = ACTIONS(5162), + [anon_sym_expand] = ACTIONS(5162), + [anon_sym_for] = ACTIONS(5162), + [anon_sym_match] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5160), + [anon_sym_orelse] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5160), + [anon_sym_BANG_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5162), + [anon_sym_xor] = ACTIONS(5162), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5162), + [anon_sym_LT_LT_PIPE] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5162), + [anon_sym_catch] = ACTIONS(5162), + [anon_sym_TILDE] = ACTIONS(5160), + [anon_sym_try] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym_true] = ACTIONS(5162), + [anon_sym_false] = ACTIONS(5162), + [anon_sym_null] = ACTIONS(5162), + [anon_sym_unreachable] = ACTIONS(5162), + [anon_sym_undefined] = ACTIONS(5162), + [sym_sink] = ACTIONS(5162), + [sym_integer] = ACTIONS(5162), + [sym_float] = ACTIONS(5160), + [anon_sym_DQUOTE] = ACTIONS(5160), + [sym_multiline_string] = ACTIONS(5160), + [sym_character] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5160), + }, + [STATE(3219)] = { + [sym_identifier] = ACTIONS(5166), + [anon_sym_func] = ACTIONS(5166), + [anon_sym_c_func] = ACTIONS(5166), + [anon_sym_BANG] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_struct] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5164), + [anon_sym_COMMA] = ACTIONS(5164), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5166), + [anon_sym_struct_type_BANG] = ACTIONS(5164), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_AT] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_void] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym_type] = ACTIONS(5166), + [anon_sym_anyopaque] = ACTIONS(5166), + [anon_sym_bool] = ACTIONS(5166), + [anon_sym_int] = ACTIONS(5166), + [anon_sym_uint] = ACTIONS(5166), + [anon_sym_float] = ACTIONS(5166), + [anon_sym_range] = ACTIONS(5166), + [anon_sym_i8] = ACTIONS(5166), + [anon_sym_i16] = ACTIONS(5166), + [anon_sym_i32] = ACTIONS(5166), + [anon_sym_i64] = ACTIONS(5166), + [anon_sym_u8] = ACTIONS(5166), + [anon_sym_u16] = ACTIONS(5166), + [anon_sym_u32] = ACTIONS(5166), + [anon_sym_u64] = ACTIONS(5166), + [anon_sym_isize] = ACTIONS(5166), + [anon_sym_usize] = ACTIONS(5166), + [anon_sym_f32] = ACTIONS(5166), + [anon_sym_f64] = ACTIONS(5166), + [anon_sym_c_char] = ACTIONS(5166), + [anon_sym_c_schar] = ACTIONS(5166), + [anon_sym_c_uchar] = ACTIONS(5166), + [anon_sym_c_short] = ACTIONS(5166), + [anon_sym_c_ushort] = ACTIONS(5166), + [anon_sym_c_int] = ACTIONS(5166), + [anon_sym_c_uint] = ACTIONS(5166), + [anon_sym_c_long] = ACTIONS(5166), + [anon_sym_c_ulong] = ACTIONS(5166), + [anon_sym_c_longlong] = ACTIONS(5166), + [anon_sym_c_ulonglong] = ACTIONS(5166), + [anon_sym_c_float] = ACTIONS(5166), + [anon_sym_c_double] = ACTIONS(5166), + [anon_sym_c_longdouble] = ACTIONS(5166), + [anon_sym_PLUS_EQ] = ACTIONS(5164), + [anon_sym_DASH_EQ] = ACTIONS(5164), + [anon_sym_STAR_EQ] = ACTIONS(5164), + [anon_sym_SLASH_EQ] = ACTIONS(5164), + [anon_sym_AMP_EQ] = ACTIONS(5164), + [anon_sym_PIPE_EQ] = ACTIONS(5164), + [anon_sym_xor_EQ] = ACTIONS(5164), + [anon_sym_LT_LT_EQ] = ACTIONS(5164), + [anon_sym_GT_GT_EQ] = ACTIONS(5164), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5164), + [anon_sym_return] = ACTIONS(5166), + [anon_sym_yield] = ACTIONS(5166), + [anon_sym_break] = ACTIONS(5166), + [anon_sym_continue] = ACTIONS(5166), + [anon_sym_defer] = ACTIONS(5166), + [anon_sym_errdefer] = ACTIONS(5166), + [anon_sym_if] = ACTIONS(5166), + [anon_sym_else] = ACTIONS(5166), + [anon_sym_while] = ACTIONS(5166), + [anon_sym_expand] = ACTIONS(5166), + [anon_sym_for] = ACTIONS(5166), + [anon_sym_match] = ACTIONS(5166), + [anon_sym_DOT_DOT] = ACTIONS(5166), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5164), + [anon_sym_orelse] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5166), + [anon_sym_and] = ACTIONS(5166), + [anon_sym_EQ_EQ] = ACTIONS(5164), + [anon_sym_BANG_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5166), + [anon_sym_GT_EQ] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5166), + [anon_sym_xor] = ACTIONS(5166), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5166), + [anon_sym_LT_LT_PIPE] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5166), + [anon_sym_SLASH] = ACTIONS(5166), + [anon_sym_catch] = ACTIONS(5166), + [anon_sym_TILDE] = ACTIONS(5164), + [anon_sym_try] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5166), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_true] = ACTIONS(5166), + [anon_sym_false] = ACTIONS(5166), + [anon_sym_null] = ACTIONS(5166), + [anon_sym_unreachable] = ACTIONS(5166), + [anon_sym_undefined] = ACTIONS(5166), + [sym_sink] = ACTIONS(5166), + [sym_integer] = ACTIONS(5166), + [sym_float] = ACTIONS(5164), + [anon_sym_DQUOTE] = ACTIONS(5164), + [sym_multiline_string] = ACTIONS(5164), + [sym_character] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5164), + }, + [STATE(3220)] = { + [sym_identifier] = ACTIONS(5170), + [anon_sym_func] = ACTIONS(5170), + [anon_sym_c_func] = ACTIONS(5170), + [anon_sym_BANG] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_struct] = ACTIONS(5170), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5168), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_struct_type_BANG] = ACTIONS(5168), + [anon_sym_QMARK] = ACTIONS(5168), + [anon_sym_AT] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_void] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym_type] = ACTIONS(5170), + [anon_sym_anyopaque] = ACTIONS(5170), + [anon_sym_bool] = ACTIONS(5170), + [anon_sym_int] = ACTIONS(5170), + [anon_sym_uint] = ACTIONS(5170), + [anon_sym_float] = ACTIONS(5170), + [anon_sym_range] = ACTIONS(5170), + [anon_sym_i8] = ACTIONS(5170), + [anon_sym_i16] = ACTIONS(5170), + [anon_sym_i32] = ACTIONS(5170), + [anon_sym_i64] = ACTIONS(5170), + [anon_sym_u8] = ACTIONS(5170), + [anon_sym_u16] = ACTIONS(5170), + [anon_sym_u32] = ACTIONS(5170), + [anon_sym_u64] = ACTIONS(5170), + [anon_sym_isize] = ACTIONS(5170), + [anon_sym_usize] = ACTIONS(5170), + [anon_sym_f32] = ACTIONS(5170), + [anon_sym_f64] = ACTIONS(5170), + [anon_sym_c_char] = ACTIONS(5170), + [anon_sym_c_schar] = ACTIONS(5170), + [anon_sym_c_uchar] = ACTIONS(5170), + [anon_sym_c_short] = ACTIONS(5170), + [anon_sym_c_ushort] = ACTIONS(5170), + [anon_sym_c_int] = ACTIONS(5170), + [anon_sym_c_uint] = ACTIONS(5170), + [anon_sym_c_long] = ACTIONS(5170), + [anon_sym_c_ulong] = ACTIONS(5170), + [anon_sym_c_longlong] = ACTIONS(5170), + [anon_sym_c_ulonglong] = ACTIONS(5170), + [anon_sym_c_float] = ACTIONS(5170), + [anon_sym_c_double] = ACTIONS(5170), + [anon_sym_c_longdouble] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_STAR_EQ] = ACTIONS(5168), + [anon_sym_SLASH_EQ] = ACTIONS(5168), + [anon_sym_AMP_EQ] = ACTIONS(5168), + [anon_sym_PIPE_EQ] = ACTIONS(5168), + [anon_sym_xor_EQ] = ACTIONS(5168), + [anon_sym_LT_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_GT_EQ] = ACTIONS(5168), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5168), + [anon_sym_return] = ACTIONS(5170), + [anon_sym_yield] = ACTIONS(5170), + [anon_sym_break] = ACTIONS(5170), + [anon_sym_continue] = ACTIONS(5170), + [anon_sym_defer] = ACTIONS(5170), + [anon_sym_errdefer] = ACTIONS(5170), + [anon_sym_if] = ACTIONS(5170), + [anon_sym_else] = ACTIONS(5170), + [anon_sym_while] = ACTIONS(5170), + [anon_sym_expand] = ACTIONS(5170), + [anon_sym_for] = ACTIONS(5170), + [anon_sym_match] = ACTIONS(5170), + [anon_sym_DOT_DOT] = ACTIONS(5170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5168), + [anon_sym_orelse] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), + [anon_sym_xor] = ACTIONS(5170), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5170), + [anon_sym_LT_LT_PIPE] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_SLASH] = ACTIONS(5170), + [anon_sym_catch] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5168), + [anon_sym_try] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym_true] = ACTIONS(5170), + [anon_sym_false] = ACTIONS(5170), + [anon_sym_null] = ACTIONS(5170), + [anon_sym_unreachable] = ACTIONS(5170), + [anon_sym_undefined] = ACTIONS(5170), + [sym_sink] = ACTIONS(5170), + [sym_integer] = ACTIONS(5170), + [sym_float] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [sym_multiline_string] = ACTIONS(5168), + [sym_character] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5168), + }, + [STATE(3221)] = { + [sym_identifier] = ACTIONS(5174), + [anon_sym_func] = ACTIONS(5174), + [anon_sym_c_func] = ACTIONS(5174), + [anon_sym_BANG] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_COMMA] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_struct_type_BANG] = ACTIONS(5172), + [anon_sym_QMARK] = ACTIONS(5172), + [anon_sym_AT] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_void] = ACTIONS(5174), + [anon_sym_noreturn] = ACTIONS(5174), + [anon_sym_type] = ACTIONS(5174), + [anon_sym_anyopaque] = ACTIONS(5174), + [anon_sym_bool] = ACTIONS(5174), + [anon_sym_int] = ACTIONS(5174), + [anon_sym_uint] = ACTIONS(5174), + [anon_sym_float] = ACTIONS(5174), + [anon_sym_range] = ACTIONS(5174), + [anon_sym_i8] = ACTIONS(5174), + [anon_sym_i16] = ACTIONS(5174), + [anon_sym_i32] = ACTIONS(5174), + [anon_sym_i64] = ACTIONS(5174), + [anon_sym_u8] = ACTIONS(5174), + [anon_sym_u16] = ACTIONS(5174), + [anon_sym_u32] = ACTIONS(5174), + [anon_sym_u64] = ACTIONS(5174), + [anon_sym_isize] = ACTIONS(5174), + [anon_sym_usize] = ACTIONS(5174), + [anon_sym_f32] = ACTIONS(5174), + [anon_sym_f64] = ACTIONS(5174), + [anon_sym_c_char] = ACTIONS(5174), + [anon_sym_c_schar] = ACTIONS(5174), + [anon_sym_c_uchar] = ACTIONS(5174), + [anon_sym_c_short] = ACTIONS(5174), + [anon_sym_c_ushort] = ACTIONS(5174), + [anon_sym_c_int] = ACTIONS(5174), + [anon_sym_c_uint] = ACTIONS(5174), + [anon_sym_c_long] = ACTIONS(5174), + [anon_sym_c_ulong] = ACTIONS(5174), + [anon_sym_c_longlong] = ACTIONS(5174), + [anon_sym_c_ulonglong] = ACTIONS(5174), + [anon_sym_c_float] = ACTIONS(5174), + [anon_sym_c_double] = ACTIONS(5174), + [anon_sym_c_longdouble] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5172), + [anon_sym_DASH_EQ] = ACTIONS(5172), + [anon_sym_STAR_EQ] = ACTIONS(5172), + [anon_sym_SLASH_EQ] = ACTIONS(5172), + [anon_sym_AMP_EQ] = ACTIONS(5172), + [anon_sym_PIPE_EQ] = ACTIONS(5172), + [anon_sym_xor_EQ] = ACTIONS(5172), + [anon_sym_LT_LT_EQ] = ACTIONS(5172), + [anon_sym_GT_GT_EQ] = ACTIONS(5172), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5172), + [anon_sym_return] = ACTIONS(5174), + [anon_sym_yield] = ACTIONS(5174), + [anon_sym_break] = ACTIONS(5174), + [anon_sym_continue] = ACTIONS(5174), + [anon_sym_defer] = ACTIONS(5174), + [anon_sym_errdefer] = ACTIONS(5174), + [anon_sym_if] = ACTIONS(5174), + [anon_sym_else] = ACTIONS(5174), + [anon_sym_while] = ACTIONS(5174), + [anon_sym_expand] = ACTIONS(5174), + [anon_sym_for] = ACTIONS(5174), + [anon_sym_match] = ACTIONS(5174), + [anon_sym_DOT_DOT] = ACTIONS(5174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5172), + [anon_sym_orelse] = ACTIONS(5174), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5174), + [anon_sym_LT_LT_PIPE] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_catch] = ACTIONS(5174), + [anon_sym_TILDE] = ACTIONS(5172), + [anon_sym_try] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym_true] = ACTIONS(5174), + [anon_sym_false] = ACTIONS(5174), + [anon_sym_null] = ACTIONS(5174), + [anon_sym_unreachable] = ACTIONS(5174), + [anon_sym_undefined] = ACTIONS(5174), + [sym_sink] = ACTIONS(5174), + [sym_integer] = ACTIONS(5174), + [sym_float] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [sym_multiline_string] = ACTIONS(5172), + [sym_character] = ACTIONS(5172), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5172), + }, + [STATE(3222)] = { + [sym_identifier] = ACTIONS(5182), + [anon_sym_func] = ACTIONS(5182), + [anon_sym_c_func] = ACTIONS(5182), + [anon_sym_BANG] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_LPAREN] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5180), + [anon_sym_COMMA] = ACTIONS(5180), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_struct_type_BANG] = ACTIONS(5180), + [anon_sym_QMARK] = ACTIONS(5180), + [anon_sym_AT] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_void] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym_type] = ACTIONS(5182), + [anon_sym_anyopaque] = ACTIONS(5182), + [anon_sym_bool] = ACTIONS(5182), + [anon_sym_int] = ACTIONS(5182), + [anon_sym_uint] = ACTIONS(5182), + [anon_sym_float] = ACTIONS(5182), + [anon_sym_range] = ACTIONS(5182), + [anon_sym_i8] = ACTIONS(5182), + [anon_sym_i16] = ACTIONS(5182), + [anon_sym_i32] = ACTIONS(5182), + [anon_sym_i64] = ACTIONS(5182), + [anon_sym_u8] = ACTIONS(5182), + [anon_sym_u16] = ACTIONS(5182), + [anon_sym_u32] = ACTIONS(5182), + [anon_sym_u64] = ACTIONS(5182), + [anon_sym_isize] = ACTIONS(5182), + [anon_sym_usize] = ACTIONS(5182), + [anon_sym_f32] = ACTIONS(5182), + [anon_sym_f64] = ACTIONS(5182), + [anon_sym_c_char] = ACTIONS(5182), + [anon_sym_c_schar] = ACTIONS(5182), + [anon_sym_c_uchar] = ACTIONS(5182), + [anon_sym_c_short] = ACTIONS(5182), + [anon_sym_c_ushort] = ACTIONS(5182), + [anon_sym_c_int] = ACTIONS(5182), + [anon_sym_c_uint] = ACTIONS(5182), + [anon_sym_c_long] = ACTIONS(5182), + [anon_sym_c_ulong] = ACTIONS(5182), + [anon_sym_c_longlong] = ACTIONS(5182), + [anon_sym_c_ulonglong] = ACTIONS(5182), + [anon_sym_c_float] = ACTIONS(5182), + [anon_sym_c_double] = ACTIONS(5182), + [anon_sym_c_longdouble] = ACTIONS(5182), + [anon_sym_PLUS_EQ] = ACTIONS(5180), + [anon_sym_DASH_EQ] = ACTIONS(5180), + [anon_sym_STAR_EQ] = ACTIONS(5180), + [anon_sym_SLASH_EQ] = ACTIONS(5180), + [anon_sym_AMP_EQ] = ACTIONS(5180), + [anon_sym_PIPE_EQ] = ACTIONS(5180), + [anon_sym_xor_EQ] = ACTIONS(5180), + [anon_sym_LT_LT_EQ] = ACTIONS(5180), + [anon_sym_GT_GT_EQ] = ACTIONS(5180), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5180), + [anon_sym_return] = ACTIONS(5182), + [anon_sym_yield] = ACTIONS(5182), + [anon_sym_break] = ACTIONS(5182), + [anon_sym_continue] = ACTIONS(5182), + [anon_sym_defer] = ACTIONS(5182), + [anon_sym_errdefer] = ACTIONS(5182), + [anon_sym_if] = ACTIONS(5182), + [anon_sym_else] = ACTIONS(5182), + [anon_sym_while] = ACTIONS(5182), + [anon_sym_expand] = ACTIONS(5182), + [anon_sym_for] = ACTIONS(5182), + [anon_sym_match] = ACTIONS(5182), + [anon_sym_DOT_DOT] = ACTIONS(5182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5180), + [anon_sym_orelse] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_BANG_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5182), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5182), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5182), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5182), + [anon_sym_LT_LT_PIPE] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5182), + [anon_sym_catch] = ACTIONS(5182), + [anon_sym_TILDE] = ACTIONS(5180), + [anon_sym_try] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5182), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_true] = ACTIONS(5182), + [anon_sym_false] = ACTIONS(5182), + [anon_sym_null] = ACTIONS(5182), + [anon_sym_unreachable] = ACTIONS(5182), + [anon_sym_undefined] = ACTIONS(5182), + [sym_sink] = ACTIONS(5182), + [sym_integer] = ACTIONS(5182), + [sym_float] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [sym_multiline_string] = ACTIONS(5180), + [sym_character] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5180), + }, + [STATE(3223)] = { + [sym_identifier] = ACTIONS(5186), + [anon_sym_func] = ACTIONS(5186), + [anon_sym_c_func] = ACTIONS(5186), + [anon_sym_BANG] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_struct] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5184), + [anon_sym_COMMA] = ACTIONS(5184), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_struct_type_BANG] = ACTIONS(5184), + [anon_sym_QMARK] = ACTIONS(5184), + [anon_sym_AT] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_void] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym_type] = ACTIONS(5186), + [anon_sym_anyopaque] = ACTIONS(5186), + [anon_sym_bool] = ACTIONS(5186), + [anon_sym_int] = ACTIONS(5186), + [anon_sym_uint] = ACTIONS(5186), + [anon_sym_float] = ACTIONS(5186), + [anon_sym_range] = ACTIONS(5186), + [anon_sym_i8] = ACTIONS(5186), + [anon_sym_i16] = ACTIONS(5186), + [anon_sym_i32] = ACTIONS(5186), + [anon_sym_i64] = ACTIONS(5186), + [anon_sym_u8] = ACTIONS(5186), + [anon_sym_u16] = ACTIONS(5186), + [anon_sym_u32] = ACTIONS(5186), + [anon_sym_u64] = ACTIONS(5186), + [anon_sym_isize] = ACTIONS(5186), + [anon_sym_usize] = ACTIONS(5186), + [anon_sym_f32] = ACTIONS(5186), + [anon_sym_f64] = ACTIONS(5186), + [anon_sym_c_char] = ACTIONS(5186), + [anon_sym_c_schar] = ACTIONS(5186), + [anon_sym_c_uchar] = ACTIONS(5186), + [anon_sym_c_short] = ACTIONS(5186), + [anon_sym_c_ushort] = ACTIONS(5186), + [anon_sym_c_int] = ACTIONS(5186), + [anon_sym_c_uint] = ACTIONS(5186), + [anon_sym_c_long] = ACTIONS(5186), + [anon_sym_c_ulong] = ACTIONS(5186), + [anon_sym_c_longlong] = ACTIONS(5186), + [anon_sym_c_ulonglong] = ACTIONS(5186), + [anon_sym_c_float] = ACTIONS(5186), + [anon_sym_c_double] = ACTIONS(5186), + [anon_sym_c_longdouble] = ACTIONS(5186), + [anon_sym_PLUS_EQ] = ACTIONS(5184), + [anon_sym_DASH_EQ] = ACTIONS(5184), + [anon_sym_STAR_EQ] = ACTIONS(5184), + [anon_sym_SLASH_EQ] = ACTIONS(5184), + [anon_sym_AMP_EQ] = ACTIONS(5184), + [anon_sym_PIPE_EQ] = ACTIONS(5184), + [anon_sym_xor_EQ] = ACTIONS(5184), + [anon_sym_LT_LT_EQ] = ACTIONS(5184), + [anon_sym_GT_GT_EQ] = ACTIONS(5184), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5184), + [anon_sym_return] = ACTIONS(5186), + [anon_sym_yield] = ACTIONS(5186), + [anon_sym_break] = ACTIONS(5186), + [anon_sym_continue] = ACTIONS(5186), + [anon_sym_defer] = ACTIONS(5186), + [anon_sym_errdefer] = ACTIONS(5186), + [anon_sym_if] = ACTIONS(5186), + [anon_sym_else] = ACTIONS(5186), + [anon_sym_while] = ACTIONS(5186), + [anon_sym_expand] = ACTIONS(5186), + [anon_sym_for] = ACTIONS(5186), + [anon_sym_match] = ACTIONS(5186), + [anon_sym_DOT_DOT] = ACTIONS(5186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5184), + [anon_sym_orelse] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5186), + [anon_sym_and] = ACTIONS(5186), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5186), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5186), + [anon_sym_xor] = ACTIONS(5186), + [anon_sym_LT_LT] = ACTIONS(5186), + [anon_sym_GT_GT] = ACTIONS(5186), + [anon_sym_LT_LT_PIPE] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5186), + [anon_sym_SLASH] = ACTIONS(5186), + [anon_sym_catch] = ACTIONS(5186), + [anon_sym_TILDE] = ACTIONS(5184), + [anon_sym_try] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5186), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_true] = ACTIONS(5186), + [anon_sym_false] = ACTIONS(5186), + [anon_sym_null] = ACTIONS(5186), + [anon_sym_unreachable] = ACTIONS(5186), + [anon_sym_undefined] = ACTIONS(5186), + [sym_sink] = ACTIONS(5186), + [sym_integer] = ACTIONS(5186), + [sym_float] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [sym_multiline_string] = ACTIONS(5184), + [sym_character] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5184), + }, + [STATE(3224)] = { + [sym_identifier] = ACTIONS(5192), + [anon_sym_func] = ACTIONS(5192), + [anon_sym_c_func] = ACTIONS(5192), + [anon_sym_BANG] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_struct] = ACTIONS(5192), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_COMMA] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5192), + [anon_sym_DOLLAR] = ACTIONS(5190), + [anon_sym_PIPE] = ACTIONS(5192), + [anon_sym_struct_type_BANG] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5190), + [anon_sym_AT] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_void] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym_type] = ACTIONS(5192), + [anon_sym_anyopaque] = ACTIONS(5192), + [anon_sym_bool] = ACTIONS(5192), + [anon_sym_int] = ACTIONS(5192), + [anon_sym_uint] = ACTIONS(5192), + [anon_sym_float] = ACTIONS(5192), + [anon_sym_range] = ACTIONS(5192), + [anon_sym_i8] = ACTIONS(5192), + [anon_sym_i16] = ACTIONS(5192), + [anon_sym_i32] = ACTIONS(5192), + [anon_sym_i64] = ACTIONS(5192), + [anon_sym_u8] = ACTIONS(5192), + [anon_sym_u16] = ACTIONS(5192), + [anon_sym_u32] = ACTIONS(5192), + [anon_sym_u64] = ACTIONS(5192), + [anon_sym_isize] = ACTIONS(5192), + [anon_sym_usize] = ACTIONS(5192), + [anon_sym_f32] = ACTIONS(5192), + [anon_sym_f64] = ACTIONS(5192), + [anon_sym_c_char] = ACTIONS(5192), + [anon_sym_c_schar] = ACTIONS(5192), + [anon_sym_c_uchar] = ACTIONS(5192), + [anon_sym_c_short] = ACTIONS(5192), + [anon_sym_c_ushort] = ACTIONS(5192), + [anon_sym_c_int] = ACTIONS(5192), + [anon_sym_c_uint] = ACTIONS(5192), + [anon_sym_c_long] = ACTIONS(5192), + [anon_sym_c_ulong] = ACTIONS(5192), + [anon_sym_c_longlong] = ACTIONS(5192), + [anon_sym_c_ulonglong] = ACTIONS(5192), + [anon_sym_c_float] = ACTIONS(5192), + [anon_sym_c_double] = ACTIONS(5192), + [anon_sym_c_longdouble] = ACTIONS(5192), + [anon_sym_PLUS_EQ] = ACTIONS(5190), + [anon_sym_DASH_EQ] = ACTIONS(5190), + [anon_sym_STAR_EQ] = ACTIONS(5190), + [anon_sym_SLASH_EQ] = ACTIONS(5190), + [anon_sym_AMP_EQ] = ACTIONS(5190), + [anon_sym_PIPE_EQ] = ACTIONS(5190), + [anon_sym_xor_EQ] = ACTIONS(5190), + [anon_sym_LT_LT_EQ] = ACTIONS(5190), + [anon_sym_GT_GT_EQ] = ACTIONS(5190), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5190), + [anon_sym_return] = ACTIONS(5192), + [anon_sym_yield] = ACTIONS(5192), + [anon_sym_break] = ACTIONS(5192), + [anon_sym_continue] = ACTIONS(5192), + [anon_sym_defer] = ACTIONS(5192), + [anon_sym_errdefer] = ACTIONS(5192), + [anon_sym_if] = ACTIONS(5192), + [anon_sym_else] = ACTIONS(5192), + [anon_sym_while] = ACTIONS(5192), + [anon_sym_expand] = ACTIONS(5192), + [anon_sym_for] = ACTIONS(5192), + [anon_sym_match] = ACTIONS(5192), + [anon_sym_DOT_DOT] = ACTIONS(5192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5190), + [anon_sym_orelse] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_EQ_EQ] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_GT] = ACTIONS(5192), + [anon_sym_GT_EQ] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5192), + [anon_sym_xor] = ACTIONS(5192), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5192), + [anon_sym_LT_LT_PIPE] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5192), + [anon_sym_SLASH] = ACTIONS(5192), + [anon_sym_catch] = ACTIONS(5192), + [anon_sym_TILDE] = ACTIONS(5190), + [anon_sym_try] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5192), + [anon_sym_CARET] = ACTIONS(5190), + [anon_sym_true] = ACTIONS(5192), + [anon_sym_false] = ACTIONS(5192), + [anon_sym_null] = ACTIONS(5192), + [anon_sym_unreachable] = ACTIONS(5192), + [anon_sym_undefined] = ACTIONS(5192), + [sym_sink] = ACTIONS(5192), + [sym_integer] = ACTIONS(5192), + [sym_float] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(5190), + [sym_multiline_string] = ACTIONS(5190), + [sym_character] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5190), + }, + [STATE(3225)] = { + [sym_identifier] = ACTIONS(5196), + [anon_sym_func] = ACTIONS(5196), + [anon_sym_c_func] = ACTIONS(5196), + [anon_sym_BANG] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_COMMA] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_struct_type_BANG] = ACTIONS(5194), + [anon_sym_QMARK] = ACTIONS(5194), + [anon_sym_AT] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_void] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym_type] = ACTIONS(5196), + [anon_sym_anyopaque] = ACTIONS(5196), + [anon_sym_bool] = ACTIONS(5196), + [anon_sym_int] = ACTIONS(5196), + [anon_sym_uint] = ACTIONS(5196), + [anon_sym_float] = ACTIONS(5196), + [anon_sym_range] = ACTIONS(5196), + [anon_sym_i8] = ACTIONS(5196), + [anon_sym_i16] = ACTIONS(5196), + [anon_sym_i32] = ACTIONS(5196), + [anon_sym_i64] = ACTIONS(5196), + [anon_sym_u8] = ACTIONS(5196), + [anon_sym_u16] = ACTIONS(5196), + [anon_sym_u32] = ACTIONS(5196), + [anon_sym_u64] = ACTIONS(5196), + [anon_sym_isize] = ACTIONS(5196), + [anon_sym_usize] = ACTIONS(5196), + [anon_sym_f32] = ACTIONS(5196), + [anon_sym_f64] = ACTIONS(5196), + [anon_sym_c_char] = ACTIONS(5196), + [anon_sym_c_schar] = ACTIONS(5196), + [anon_sym_c_uchar] = ACTIONS(5196), + [anon_sym_c_short] = ACTIONS(5196), + [anon_sym_c_ushort] = ACTIONS(5196), + [anon_sym_c_int] = ACTIONS(5196), + [anon_sym_c_uint] = ACTIONS(5196), + [anon_sym_c_long] = ACTIONS(5196), + [anon_sym_c_ulong] = ACTIONS(5196), + [anon_sym_c_longlong] = ACTIONS(5196), + [anon_sym_c_ulonglong] = ACTIONS(5196), + [anon_sym_c_float] = ACTIONS(5196), + [anon_sym_c_double] = ACTIONS(5196), + [anon_sym_c_longdouble] = ACTIONS(5196), + [anon_sym_PLUS_EQ] = ACTIONS(5194), + [anon_sym_DASH_EQ] = ACTIONS(5194), + [anon_sym_STAR_EQ] = ACTIONS(5194), + [anon_sym_SLASH_EQ] = ACTIONS(5194), + [anon_sym_AMP_EQ] = ACTIONS(5194), + [anon_sym_PIPE_EQ] = ACTIONS(5194), + [anon_sym_xor_EQ] = ACTIONS(5194), + [anon_sym_LT_LT_EQ] = ACTIONS(5194), + [anon_sym_GT_GT_EQ] = ACTIONS(5194), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5194), + [anon_sym_return] = ACTIONS(5196), + [anon_sym_yield] = ACTIONS(5196), + [anon_sym_break] = ACTIONS(5196), + [anon_sym_continue] = ACTIONS(5196), + [anon_sym_defer] = ACTIONS(5196), + [anon_sym_errdefer] = ACTIONS(5196), + [anon_sym_if] = ACTIONS(5196), + [anon_sym_else] = ACTIONS(5196), + [anon_sym_while] = ACTIONS(5196), + [anon_sym_expand] = ACTIONS(5196), + [anon_sym_for] = ACTIONS(5196), + [anon_sym_match] = ACTIONS(5196), + [anon_sym_DOT_DOT] = ACTIONS(5196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5194), + [anon_sym_orelse] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_EQ_EQ] = ACTIONS(5194), + [anon_sym_BANG_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5196), + [anon_sym_GT_EQ] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_xor] = ACTIONS(5196), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5196), + [anon_sym_LT_LT_PIPE] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5196), + [anon_sym_SLASH] = ACTIONS(5196), + [anon_sym_catch] = ACTIONS(5196), + [anon_sym_TILDE] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5196), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym_true] = ACTIONS(5196), + [anon_sym_false] = ACTIONS(5196), + [anon_sym_null] = ACTIONS(5196), + [anon_sym_unreachable] = ACTIONS(5196), + [anon_sym_undefined] = ACTIONS(5196), + [sym_sink] = ACTIONS(5196), + [sym_integer] = ACTIONS(5196), + [sym_float] = ACTIONS(5194), + [anon_sym_DQUOTE] = ACTIONS(5194), + [sym_multiline_string] = ACTIONS(5194), + [sym_character] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5194), + }, + [STATE(3226)] = { + [sym_identifier] = ACTIONS(5200), + [anon_sym_func] = ACTIONS(5200), + [anon_sym_c_func] = ACTIONS(5200), + [anon_sym_BANG] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_struct] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_struct_type_BANG] = ACTIONS(5198), + [anon_sym_QMARK] = ACTIONS(5198), + [anon_sym_AT] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_void] = ACTIONS(5200), + [anon_sym_noreturn] = ACTIONS(5200), + [anon_sym_type] = ACTIONS(5200), + [anon_sym_anyopaque] = ACTIONS(5200), + [anon_sym_bool] = ACTIONS(5200), + [anon_sym_int] = ACTIONS(5200), + [anon_sym_uint] = ACTIONS(5200), + [anon_sym_float] = ACTIONS(5200), + [anon_sym_range] = ACTIONS(5200), + [anon_sym_i8] = ACTIONS(5200), + [anon_sym_i16] = ACTIONS(5200), + [anon_sym_i32] = ACTIONS(5200), + [anon_sym_i64] = ACTIONS(5200), + [anon_sym_u8] = ACTIONS(5200), + [anon_sym_u16] = ACTIONS(5200), + [anon_sym_u32] = ACTIONS(5200), + [anon_sym_u64] = ACTIONS(5200), + [anon_sym_isize] = ACTIONS(5200), + [anon_sym_usize] = ACTIONS(5200), + [anon_sym_f32] = ACTIONS(5200), + [anon_sym_f64] = ACTIONS(5200), + [anon_sym_c_char] = ACTIONS(5200), + [anon_sym_c_schar] = ACTIONS(5200), + [anon_sym_c_uchar] = ACTIONS(5200), + [anon_sym_c_short] = ACTIONS(5200), + [anon_sym_c_ushort] = ACTIONS(5200), + [anon_sym_c_int] = ACTIONS(5200), + [anon_sym_c_uint] = ACTIONS(5200), + [anon_sym_c_long] = ACTIONS(5200), + [anon_sym_c_ulong] = ACTIONS(5200), + [anon_sym_c_longlong] = ACTIONS(5200), + [anon_sym_c_ulonglong] = ACTIONS(5200), + [anon_sym_c_float] = ACTIONS(5200), + [anon_sym_c_double] = ACTIONS(5200), + [anon_sym_c_longdouble] = ACTIONS(5200), + [anon_sym_PLUS_EQ] = ACTIONS(5198), + [anon_sym_DASH_EQ] = ACTIONS(5198), + [anon_sym_STAR_EQ] = ACTIONS(5198), + [anon_sym_SLASH_EQ] = ACTIONS(5198), + [anon_sym_AMP_EQ] = ACTIONS(5198), + [anon_sym_PIPE_EQ] = ACTIONS(5198), + [anon_sym_xor_EQ] = ACTIONS(5198), + [anon_sym_LT_LT_EQ] = ACTIONS(5198), + [anon_sym_GT_GT_EQ] = ACTIONS(5198), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5198), + [anon_sym_return] = ACTIONS(5200), + [anon_sym_yield] = ACTIONS(5200), + [anon_sym_break] = ACTIONS(5200), + [anon_sym_continue] = ACTIONS(5200), + [anon_sym_defer] = ACTIONS(5200), + [anon_sym_errdefer] = ACTIONS(5200), + [anon_sym_if] = ACTIONS(5200), + [anon_sym_else] = ACTIONS(5200), + [anon_sym_while] = ACTIONS(5200), + [anon_sym_expand] = ACTIONS(5200), + [anon_sym_for] = ACTIONS(5200), + [anon_sym_match] = ACTIONS(5200), + [anon_sym_DOT_DOT] = ACTIONS(5200), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5198), + [anon_sym_orelse] = ACTIONS(5200), + [anon_sym_or] = ACTIONS(5200), + [anon_sym_and] = ACTIONS(5200), + [anon_sym_EQ_EQ] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5200), + [anon_sym_xor] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5200), + [anon_sym_LT_LT_PIPE] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5200), + [anon_sym_SLASH] = ACTIONS(5200), + [anon_sym_catch] = ACTIONS(5200), + [anon_sym_TILDE] = ACTIONS(5198), + [anon_sym_try] = ACTIONS(5200), + [anon_sym_DOT] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_true] = ACTIONS(5200), + [anon_sym_false] = ACTIONS(5200), + [anon_sym_null] = ACTIONS(5200), + [anon_sym_unreachable] = ACTIONS(5200), + [anon_sym_undefined] = ACTIONS(5200), + [sym_sink] = ACTIONS(5200), + [sym_integer] = ACTIONS(5200), + [sym_float] = ACTIONS(5198), + [anon_sym_DQUOTE] = ACTIONS(5198), + [sym_multiline_string] = ACTIONS(5198), + [sym_character] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5198), + }, + [STATE(3227)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_func] = ACTIONS(5204), + [anon_sym_c_func] = ACTIONS(5204), + [anon_sym_BANG] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5202), + [anon_sym_LBRACE] = ACTIONS(5202), + [anon_sym_COMMA] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_struct_type_BANG] = ACTIONS(5202), + [anon_sym_QMARK] = ACTIONS(5202), + [anon_sym_AT] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_void] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym_type] = ACTIONS(5204), + [anon_sym_anyopaque] = ACTIONS(5204), + [anon_sym_bool] = ACTIONS(5204), + [anon_sym_int] = ACTIONS(5204), + [anon_sym_uint] = ACTIONS(5204), + [anon_sym_float] = ACTIONS(5204), + [anon_sym_range] = ACTIONS(5204), + [anon_sym_i8] = ACTIONS(5204), + [anon_sym_i16] = ACTIONS(5204), + [anon_sym_i32] = ACTIONS(5204), + [anon_sym_i64] = ACTIONS(5204), + [anon_sym_u8] = ACTIONS(5204), + [anon_sym_u16] = ACTIONS(5204), + [anon_sym_u32] = ACTIONS(5204), + [anon_sym_u64] = ACTIONS(5204), + [anon_sym_isize] = ACTIONS(5204), + [anon_sym_usize] = ACTIONS(5204), + [anon_sym_f32] = ACTIONS(5204), + [anon_sym_f64] = ACTIONS(5204), + [anon_sym_c_char] = ACTIONS(5204), + [anon_sym_c_schar] = ACTIONS(5204), + [anon_sym_c_uchar] = ACTIONS(5204), + [anon_sym_c_short] = ACTIONS(5204), + [anon_sym_c_ushort] = ACTIONS(5204), + [anon_sym_c_int] = ACTIONS(5204), + [anon_sym_c_uint] = ACTIONS(5204), + [anon_sym_c_long] = ACTIONS(5204), + [anon_sym_c_ulong] = ACTIONS(5204), + [anon_sym_c_longlong] = ACTIONS(5204), + [anon_sym_c_ulonglong] = ACTIONS(5204), + [anon_sym_c_float] = ACTIONS(5204), + [anon_sym_c_double] = ACTIONS(5204), + [anon_sym_c_longdouble] = ACTIONS(5204), + [anon_sym_PLUS_EQ] = ACTIONS(5202), + [anon_sym_DASH_EQ] = ACTIONS(5202), + [anon_sym_STAR_EQ] = ACTIONS(5202), + [anon_sym_SLASH_EQ] = ACTIONS(5202), + [anon_sym_AMP_EQ] = ACTIONS(5202), + [anon_sym_PIPE_EQ] = ACTIONS(5202), + [anon_sym_xor_EQ] = ACTIONS(5202), + [anon_sym_LT_LT_EQ] = ACTIONS(5202), + [anon_sym_GT_GT_EQ] = ACTIONS(5202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5202), + [anon_sym_return] = ACTIONS(5204), + [anon_sym_yield] = ACTIONS(5204), + [anon_sym_break] = ACTIONS(5204), + [anon_sym_continue] = ACTIONS(5204), + [anon_sym_defer] = ACTIONS(5204), + [anon_sym_errdefer] = ACTIONS(5204), + [anon_sym_if] = ACTIONS(5204), + [anon_sym_else] = ACTIONS(5204), + [anon_sym_while] = ACTIONS(5204), + [anon_sym_expand] = ACTIONS(5204), + [anon_sym_for] = ACTIONS(5204), + [anon_sym_match] = ACTIONS(5204), + [anon_sym_DOT_DOT] = ACTIONS(5204), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5202), + [anon_sym_orelse] = ACTIONS(5204), + [anon_sym_or] = ACTIONS(5204), + [anon_sym_and] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym_xor] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5204), + [anon_sym_LT_LT_PIPE] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_SLASH] = ACTIONS(5204), + [anon_sym_catch] = ACTIONS(5204), + [anon_sym_TILDE] = ACTIONS(5202), + [anon_sym_try] = ACTIONS(5204), + [anon_sym_DOT] = ACTIONS(5204), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym_true] = ACTIONS(5204), + [anon_sym_false] = ACTIONS(5204), + [anon_sym_null] = ACTIONS(5204), + [anon_sym_unreachable] = ACTIONS(5204), + [anon_sym_undefined] = ACTIONS(5204), + [sym_sink] = ACTIONS(5204), + [sym_integer] = ACTIONS(5204), + [sym_float] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [sym_multiline_string] = ACTIONS(5202), + [sym_character] = ACTIONS(5202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5202), + }, + [STATE(3228)] = { + [sym_identifier] = ACTIONS(5208), + [anon_sym_func] = ACTIONS(5208), + [anon_sym_c_func] = ACTIONS(5208), + [anon_sym_BANG] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_struct] = ACTIONS(5208), + [anon_sym_LPAREN] = ACTIONS(5206), + [anon_sym_LBRACE] = ACTIONS(5206), + [anon_sym_COMMA] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_struct_type_BANG] = ACTIONS(5206), + [anon_sym_QMARK] = ACTIONS(5206), + [anon_sym_AT] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5206), + [anon_sym_void] = ACTIONS(5208), + [anon_sym_noreturn] = ACTIONS(5208), + [anon_sym_type] = ACTIONS(5208), + [anon_sym_anyopaque] = ACTIONS(5208), + [anon_sym_bool] = ACTIONS(5208), + [anon_sym_int] = ACTIONS(5208), + [anon_sym_uint] = ACTIONS(5208), + [anon_sym_float] = ACTIONS(5208), + [anon_sym_range] = ACTIONS(5208), + [anon_sym_i8] = ACTIONS(5208), + [anon_sym_i16] = ACTIONS(5208), + [anon_sym_i32] = ACTIONS(5208), + [anon_sym_i64] = ACTIONS(5208), + [anon_sym_u8] = ACTIONS(5208), + [anon_sym_u16] = ACTIONS(5208), + [anon_sym_u32] = ACTIONS(5208), + [anon_sym_u64] = ACTIONS(5208), + [anon_sym_isize] = ACTIONS(5208), + [anon_sym_usize] = ACTIONS(5208), + [anon_sym_f32] = ACTIONS(5208), + [anon_sym_f64] = ACTIONS(5208), + [anon_sym_c_char] = ACTIONS(5208), + [anon_sym_c_schar] = ACTIONS(5208), + [anon_sym_c_uchar] = ACTIONS(5208), + [anon_sym_c_short] = ACTIONS(5208), + [anon_sym_c_ushort] = ACTIONS(5208), + [anon_sym_c_int] = ACTIONS(5208), + [anon_sym_c_uint] = ACTIONS(5208), + [anon_sym_c_long] = ACTIONS(5208), + [anon_sym_c_ulong] = ACTIONS(5208), + [anon_sym_c_longlong] = ACTIONS(5208), + [anon_sym_c_ulonglong] = ACTIONS(5208), + [anon_sym_c_float] = ACTIONS(5208), + [anon_sym_c_double] = ACTIONS(5208), + [anon_sym_c_longdouble] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5206), + [anon_sym_DASH_EQ] = ACTIONS(5206), + [anon_sym_STAR_EQ] = ACTIONS(5206), + [anon_sym_SLASH_EQ] = ACTIONS(5206), + [anon_sym_AMP_EQ] = ACTIONS(5206), + [anon_sym_PIPE_EQ] = ACTIONS(5206), + [anon_sym_xor_EQ] = ACTIONS(5206), + [anon_sym_LT_LT_EQ] = ACTIONS(5206), + [anon_sym_GT_GT_EQ] = ACTIONS(5206), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5206), + [anon_sym_return] = ACTIONS(5208), + [anon_sym_yield] = ACTIONS(5208), + [anon_sym_break] = ACTIONS(5208), + [anon_sym_continue] = ACTIONS(5208), + [anon_sym_defer] = ACTIONS(5208), + [anon_sym_errdefer] = ACTIONS(5208), + [anon_sym_if] = ACTIONS(5208), + [anon_sym_else] = ACTIONS(5208), + [anon_sym_while] = ACTIONS(5208), + [anon_sym_expand] = ACTIONS(5208), + [anon_sym_for] = ACTIONS(5208), + [anon_sym_match] = ACTIONS(5208), + [anon_sym_DOT_DOT] = ACTIONS(5208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5206), + [anon_sym_orelse] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5208), + [anon_sym_and] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + [anon_sym_xor] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5208), + [anon_sym_LT_LT_PIPE] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_SLASH] = ACTIONS(5208), + [anon_sym_catch] = ACTIONS(5208), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_try] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym_true] = ACTIONS(5208), + [anon_sym_false] = ACTIONS(5208), + [anon_sym_null] = ACTIONS(5208), + [anon_sym_unreachable] = ACTIONS(5208), + [anon_sym_undefined] = ACTIONS(5208), + [sym_sink] = ACTIONS(5208), + [sym_integer] = ACTIONS(5208), + [sym_float] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [sym_multiline_string] = ACTIONS(5206), + [sym_character] = ACTIONS(5206), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5206), + }, + [STATE(3229)] = { + [sym_identifier] = ACTIONS(5212), + [anon_sym_func] = ACTIONS(5212), + [anon_sym_c_func] = ACTIONS(5212), + [anon_sym_BANG] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_struct] = ACTIONS(5212), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_LBRACE] = ACTIONS(5210), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_struct_type_BANG] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_AT] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5210), + [anon_sym_void] = ACTIONS(5212), + [anon_sym_noreturn] = ACTIONS(5212), + [anon_sym_type] = ACTIONS(5212), + [anon_sym_anyopaque] = ACTIONS(5212), + [anon_sym_bool] = ACTIONS(5212), + [anon_sym_int] = ACTIONS(5212), + [anon_sym_uint] = ACTIONS(5212), + [anon_sym_float] = ACTIONS(5212), + [anon_sym_range] = ACTIONS(5212), + [anon_sym_i8] = ACTIONS(5212), + [anon_sym_i16] = ACTIONS(5212), + [anon_sym_i32] = ACTIONS(5212), + [anon_sym_i64] = ACTIONS(5212), + [anon_sym_u8] = ACTIONS(5212), + [anon_sym_u16] = ACTIONS(5212), + [anon_sym_u32] = ACTIONS(5212), + [anon_sym_u64] = ACTIONS(5212), + [anon_sym_isize] = ACTIONS(5212), + [anon_sym_usize] = ACTIONS(5212), + [anon_sym_f32] = ACTIONS(5212), + [anon_sym_f64] = ACTIONS(5212), + [anon_sym_c_char] = ACTIONS(5212), + [anon_sym_c_schar] = ACTIONS(5212), + [anon_sym_c_uchar] = ACTIONS(5212), + [anon_sym_c_short] = ACTIONS(5212), + [anon_sym_c_ushort] = ACTIONS(5212), + [anon_sym_c_int] = ACTIONS(5212), + [anon_sym_c_uint] = ACTIONS(5212), + [anon_sym_c_long] = ACTIONS(5212), + [anon_sym_c_ulong] = ACTIONS(5212), + [anon_sym_c_longlong] = ACTIONS(5212), + [anon_sym_c_ulonglong] = ACTIONS(5212), + [anon_sym_c_float] = ACTIONS(5212), + [anon_sym_c_double] = ACTIONS(5212), + [anon_sym_c_longdouble] = ACTIONS(5212), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_xor_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5210), + [anon_sym_return] = ACTIONS(5212), + [anon_sym_yield] = ACTIONS(5212), + [anon_sym_break] = ACTIONS(5212), + [anon_sym_continue] = ACTIONS(5212), + [anon_sym_defer] = ACTIONS(5212), + [anon_sym_errdefer] = ACTIONS(5212), + [anon_sym_if] = ACTIONS(5212), + [anon_sym_else] = ACTIONS(5212), + [anon_sym_while] = ACTIONS(5212), + [anon_sym_expand] = ACTIONS(5212), + [anon_sym_for] = ACTIONS(5212), + [anon_sym_match] = ACTIONS(5212), + [anon_sym_DOT_DOT] = ACTIONS(5212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5210), + [anon_sym_orelse] = ACTIONS(5212), + [anon_sym_or] = ACTIONS(5212), + [anon_sym_and] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), + [anon_sym_xor] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_LT_LT_PIPE] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_catch] = ACTIONS(5212), + [anon_sym_TILDE] = ACTIONS(5210), + [anon_sym_try] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_true] = ACTIONS(5212), + [anon_sym_false] = ACTIONS(5212), + [anon_sym_null] = ACTIONS(5212), + [anon_sym_unreachable] = ACTIONS(5212), + [anon_sym_undefined] = ACTIONS(5212), + [sym_sink] = ACTIONS(5212), + [sym_integer] = ACTIONS(5212), + [sym_float] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [sym_multiline_string] = ACTIONS(5210), + [sym_character] = ACTIONS(5210), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5210), + }, + [STATE(3230)] = { + [sym_identifier] = ACTIONS(5216), + [anon_sym_func] = ACTIONS(5216), + [anon_sym_c_func] = ACTIONS(5216), + [anon_sym_BANG] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_struct] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_LBRACE] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(5214), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_struct_type_BANG] = ACTIONS(5214), + [anon_sym_QMARK] = ACTIONS(5214), + [anon_sym_AT] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_void] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym_type] = ACTIONS(5216), + [anon_sym_anyopaque] = ACTIONS(5216), + [anon_sym_bool] = ACTIONS(5216), + [anon_sym_int] = ACTIONS(5216), + [anon_sym_uint] = ACTIONS(5216), + [anon_sym_float] = ACTIONS(5216), + [anon_sym_range] = ACTIONS(5216), + [anon_sym_i8] = ACTIONS(5216), + [anon_sym_i16] = ACTIONS(5216), + [anon_sym_i32] = ACTIONS(5216), + [anon_sym_i64] = ACTIONS(5216), + [anon_sym_u8] = ACTIONS(5216), + [anon_sym_u16] = ACTIONS(5216), + [anon_sym_u32] = ACTIONS(5216), + [anon_sym_u64] = ACTIONS(5216), + [anon_sym_isize] = ACTIONS(5216), + [anon_sym_usize] = ACTIONS(5216), + [anon_sym_f32] = ACTIONS(5216), + [anon_sym_f64] = ACTIONS(5216), + [anon_sym_c_char] = ACTIONS(5216), + [anon_sym_c_schar] = ACTIONS(5216), + [anon_sym_c_uchar] = ACTIONS(5216), + [anon_sym_c_short] = ACTIONS(5216), + [anon_sym_c_ushort] = ACTIONS(5216), + [anon_sym_c_int] = ACTIONS(5216), + [anon_sym_c_uint] = ACTIONS(5216), + [anon_sym_c_long] = ACTIONS(5216), + [anon_sym_c_ulong] = ACTIONS(5216), + [anon_sym_c_longlong] = ACTIONS(5216), + [anon_sym_c_ulonglong] = ACTIONS(5216), + [anon_sym_c_float] = ACTIONS(5216), + [anon_sym_c_double] = ACTIONS(5216), + [anon_sym_c_longdouble] = ACTIONS(5216), + [anon_sym_PLUS_EQ] = ACTIONS(5214), + [anon_sym_DASH_EQ] = ACTIONS(5214), + [anon_sym_STAR_EQ] = ACTIONS(5214), + [anon_sym_SLASH_EQ] = ACTIONS(5214), + [anon_sym_AMP_EQ] = ACTIONS(5214), + [anon_sym_PIPE_EQ] = ACTIONS(5214), + [anon_sym_xor_EQ] = ACTIONS(5214), + [anon_sym_LT_LT_EQ] = ACTIONS(5214), + [anon_sym_GT_GT_EQ] = ACTIONS(5214), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5214), + [anon_sym_return] = ACTIONS(5216), + [anon_sym_yield] = ACTIONS(5216), + [anon_sym_break] = ACTIONS(5216), + [anon_sym_continue] = ACTIONS(5216), + [anon_sym_defer] = ACTIONS(5216), + [anon_sym_errdefer] = ACTIONS(5216), + [anon_sym_if] = ACTIONS(5216), + [anon_sym_else] = ACTIONS(5216), + [anon_sym_while] = ACTIONS(5216), + [anon_sym_expand] = ACTIONS(5216), + [anon_sym_for] = ACTIONS(5216), + [anon_sym_match] = ACTIONS(5216), + [anon_sym_DOT_DOT] = ACTIONS(5216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5214), + [anon_sym_orelse] = ACTIONS(5216), + [anon_sym_or] = ACTIONS(5216), + [anon_sym_and] = ACTIONS(5216), + [anon_sym_EQ_EQ] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_LT_EQ] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_EQ] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), + [anon_sym_xor] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5216), + [anon_sym_LT_LT_PIPE] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5216), + [anon_sym_SLASH] = ACTIONS(5216), + [anon_sym_catch] = ACTIONS(5216), + [anon_sym_TILDE] = ACTIONS(5214), + [anon_sym_try] = ACTIONS(5216), + [anon_sym_DOT] = ACTIONS(5216), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym_true] = ACTIONS(5216), + [anon_sym_false] = ACTIONS(5216), + [anon_sym_null] = ACTIONS(5216), + [anon_sym_unreachable] = ACTIONS(5216), + [anon_sym_undefined] = ACTIONS(5216), + [sym_sink] = ACTIONS(5216), + [sym_integer] = ACTIONS(5216), + [sym_float] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [sym_multiline_string] = ACTIONS(5214), + [sym_character] = ACTIONS(5214), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5214), + }, + [STATE(3231)] = { + [sym_identifier] = ACTIONS(5220), + [anon_sym_func] = ACTIONS(5220), + [anon_sym_c_func] = ACTIONS(5220), + [anon_sym_BANG] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5220), + [anon_sym_struct] = ACTIONS(5220), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_LBRACE] = ACTIONS(5218), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_struct_type_BANG] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5218), + [anon_sym_AT] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5220), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_void] = ACTIONS(5220), + [anon_sym_noreturn] = ACTIONS(5220), + [anon_sym_type] = ACTIONS(5220), + [anon_sym_anyopaque] = ACTIONS(5220), + [anon_sym_bool] = ACTIONS(5220), + [anon_sym_int] = ACTIONS(5220), + [anon_sym_uint] = ACTIONS(5220), + [anon_sym_float] = ACTIONS(5220), + [anon_sym_range] = ACTIONS(5220), + [anon_sym_i8] = ACTIONS(5220), + [anon_sym_i16] = ACTIONS(5220), + [anon_sym_i32] = ACTIONS(5220), + [anon_sym_i64] = ACTIONS(5220), + [anon_sym_u8] = ACTIONS(5220), + [anon_sym_u16] = ACTIONS(5220), + [anon_sym_u32] = ACTIONS(5220), + [anon_sym_u64] = ACTIONS(5220), + [anon_sym_isize] = ACTIONS(5220), + [anon_sym_usize] = ACTIONS(5220), + [anon_sym_f32] = ACTIONS(5220), + [anon_sym_f64] = ACTIONS(5220), + [anon_sym_c_char] = ACTIONS(5220), + [anon_sym_c_schar] = ACTIONS(5220), + [anon_sym_c_uchar] = ACTIONS(5220), + [anon_sym_c_short] = ACTIONS(5220), + [anon_sym_c_ushort] = ACTIONS(5220), + [anon_sym_c_int] = ACTIONS(5220), + [anon_sym_c_uint] = ACTIONS(5220), + [anon_sym_c_long] = ACTIONS(5220), + [anon_sym_c_ulong] = ACTIONS(5220), + [anon_sym_c_longlong] = ACTIONS(5220), + [anon_sym_c_ulonglong] = ACTIONS(5220), + [anon_sym_c_float] = ACTIONS(5220), + [anon_sym_c_double] = ACTIONS(5220), + [anon_sym_c_longdouble] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5218), + [anon_sym_DASH_EQ] = ACTIONS(5218), + [anon_sym_STAR_EQ] = ACTIONS(5218), + [anon_sym_SLASH_EQ] = ACTIONS(5218), + [anon_sym_AMP_EQ] = ACTIONS(5218), + [anon_sym_PIPE_EQ] = ACTIONS(5218), + [anon_sym_xor_EQ] = ACTIONS(5218), + [anon_sym_LT_LT_EQ] = ACTIONS(5218), + [anon_sym_GT_GT_EQ] = ACTIONS(5218), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5218), + [anon_sym_return] = ACTIONS(5220), + [anon_sym_yield] = ACTIONS(5220), + [anon_sym_break] = ACTIONS(5220), + [anon_sym_continue] = ACTIONS(5220), + [anon_sym_defer] = ACTIONS(5220), + [anon_sym_errdefer] = ACTIONS(5220), + [anon_sym_if] = ACTIONS(5220), + [anon_sym_else] = ACTIONS(5220), + [anon_sym_while] = ACTIONS(5220), + [anon_sym_expand] = ACTIONS(5220), + [anon_sym_for] = ACTIONS(5220), + [anon_sym_match] = ACTIONS(5220), + [anon_sym_DOT_DOT] = ACTIONS(5220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5218), + [anon_sym_orelse] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5220), + [anon_sym_and] = ACTIONS(5220), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_AMP] = ACTIONS(5220), + [anon_sym_xor] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5220), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_LT_LT_PIPE] = ACTIONS(5220), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_catch] = ACTIONS(5220), + [anon_sym_TILDE] = ACTIONS(5218), + [anon_sym_try] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym_true] = ACTIONS(5220), + [anon_sym_false] = ACTIONS(5220), + [anon_sym_null] = ACTIONS(5220), + [anon_sym_unreachable] = ACTIONS(5220), + [anon_sym_undefined] = ACTIONS(5220), + [sym_sink] = ACTIONS(5220), + [sym_integer] = ACTIONS(5220), + [sym_float] = ACTIONS(5218), + [anon_sym_DQUOTE] = ACTIONS(5218), + [sym_multiline_string] = ACTIONS(5218), + [sym_character] = ACTIONS(5218), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5218), + }, + [STATE(3232)] = { + [sym_identifier] = ACTIONS(5224), + [anon_sym_func] = ACTIONS(5224), + [anon_sym_c_func] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(5224), + [anon_sym_struct] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_DOLLAR] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_struct_type_BANG] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5222), + [anon_sym_AT] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_void] = ACTIONS(5224), + [anon_sym_noreturn] = ACTIONS(5224), + [anon_sym_type] = ACTIONS(5224), + [anon_sym_anyopaque] = ACTIONS(5224), + [anon_sym_bool] = ACTIONS(5224), + [anon_sym_int] = ACTIONS(5224), + [anon_sym_uint] = ACTIONS(5224), + [anon_sym_float] = ACTIONS(5224), + [anon_sym_range] = ACTIONS(5224), + [anon_sym_i8] = ACTIONS(5224), + [anon_sym_i16] = ACTIONS(5224), + [anon_sym_i32] = ACTIONS(5224), + [anon_sym_i64] = ACTIONS(5224), + [anon_sym_u8] = ACTIONS(5224), + [anon_sym_u16] = ACTIONS(5224), + [anon_sym_u32] = ACTIONS(5224), + [anon_sym_u64] = ACTIONS(5224), + [anon_sym_isize] = ACTIONS(5224), + [anon_sym_usize] = ACTIONS(5224), + [anon_sym_f32] = ACTIONS(5224), + [anon_sym_f64] = ACTIONS(5224), + [anon_sym_c_char] = ACTIONS(5224), + [anon_sym_c_schar] = ACTIONS(5224), + [anon_sym_c_uchar] = ACTIONS(5224), + [anon_sym_c_short] = ACTIONS(5224), + [anon_sym_c_ushort] = ACTIONS(5224), + [anon_sym_c_int] = ACTIONS(5224), + [anon_sym_c_uint] = ACTIONS(5224), + [anon_sym_c_long] = ACTIONS(5224), + [anon_sym_c_ulong] = ACTIONS(5224), + [anon_sym_c_longlong] = ACTIONS(5224), + [anon_sym_c_ulonglong] = ACTIONS(5224), + [anon_sym_c_float] = ACTIONS(5224), + [anon_sym_c_double] = ACTIONS(5224), + [anon_sym_c_longdouble] = ACTIONS(5224), + [anon_sym_PLUS_EQ] = ACTIONS(5222), + [anon_sym_DASH_EQ] = ACTIONS(5222), + [anon_sym_STAR_EQ] = ACTIONS(5222), + [anon_sym_SLASH_EQ] = ACTIONS(5222), + [anon_sym_AMP_EQ] = ACTIONS(5222), + [anon_sym_PIPE_EQ] = ACTIONS(5222), + [anon_sym_xor_EQ] = ACTIONS(5222), + [anon_sym_LT_LT_EQ] = ACTIONS(5222), + [anon_sym_GT_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5222), + [anon_sym_return] = ACTIONS(5224), + [anon_sym_yield] = ACTIONS(5224), + [anon_sym_break] = ACTIONS(5224), + [anon_sym_continue] = ACTIONS(5224), + [anon_sym_defer] = ACTIONS(5224), + [anon_sym_errdefer] = ACTIONS(5224), + [anon_sym_if] = ACTIONS(5224), + [anon_sym_else] = ACTIONS(5224), + [anon_sym_while] = ACTIONS(5224), + [anon_sym_expand] = ACTIONS(5224), + [anon_sym_for] = ACTIONS(5224), + [anon_sym_match] = ACTIONS(5224), + [anon_sym_DOT_DOT] = ACTIONS(5224), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5222), + [anon_sym_orelse] = ACTIONS(5224), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_and] = ACTIONS(5224), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_xor] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5224), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_LT_LT_PIPE] = ACTIONS(5224), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_catch] = ACTIONS(5224), + [anon_sym_TILDE] = ACTIONS(5222), + [anon_sym_try] = ACTIONS(5224), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_true] = ACTIONS(5224), + [anon_sym_false] = ACTIONS(5224), + [anon_sym_null] = ACTIONS(5224), + [anon_sym_unreachable] = ACTIONS(5224), + [anon_sym_undefined] = ACTIONS(5224), + [sym_sink] = ACTIONS(5224), + [sym_integer] = ACTIONS(5224), + [sym_float] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [sym_multiline_string] = ACTIONS(5222), + [sym_character] = ACTIONS(5222), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5222), + }, + [STATE(3233)] = { + [sym_identifier] = ACTIONS(5228), + [anon_sym_func] = ACTIONS(5228), + [anon_sym_c_func] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(5228), + [anon_sym_struct] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_struct_type_BANG] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5226), + [anon_sym_AT] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_void] = ACTIONS(5228), + [anon_sym_noreturn] = ACTIONS(5228), + [anon_sym_type] = ACTIONS(5228), + [anon_sym_anyopaque] = ACTIONS(5228), + [anon_sym_bool] = ACTIONS(5228), + [anon_sym_int] = ACTIONS(5228), + [anon_sym_uint] = ACTIONS(5228), + [anon_sym_float] = ACTIONS(5228), + [anon_sym_range] = ACTIONS(5228), + [anon_sym_i8] = ACTIONS(5228), + [anon_sym_i16] = ACTIONS(5228), + [anon_sym_i32] = ACTIONS(5228), + [anon_sym_i64] = ACTIONS(5228), + [anon_sym_u8] = ACTIONS(5228), + [anon_sym_u16] = ACTIONS(5228), + [anon_sym_u32] = ACTIONS(5228), + [anon_sym_u64] = ACTIONS(5228), + [anon_sym_isize] = ACTIONS(5228), + [anon_sym_usize] = ACTIONS(5228), + [anon_sym_f32] = ACTIONS(5228), + [anon_sym_f64] = ACTIONS(5228), + [anon_sym_c_char] = ACTIONS(5228), + [anon_sym_c_schar] = ACTIONS(5228), + [anon_sym_c_uchar] = ACTIONS(5228), + [anon_sym_c_short] = ACTIONS(5228), + [anon_sym_c_ushort] = ACTIONS(5228), + [anon_sym_c_int] = ACTIONS(5228), + [anon_sym_c_uint] = ACTIONS(5228), + [anon_sym_c_long] = ACTIONS(5228), + [anon_sym_c_ulong] = ACTIONS(5228), + [anon_sym_c_longlong] = ACTIONS(5228), + [anon_sym_c_ulonglong] = ACTIONS(5228), + [anon_sym_c_float] = ACTIONS(5228), + [anon_sym_c_double] = ACTIONS(5228), + [anon_sym_c_longdouble] = ACTIONS(5228), + [anon_sym_PLUS_EQ] = ACTIONS(5226), + [anon_sym_DASH_EQ] = ACTIONS(5226), + [anon_sym_STAR_EQ] = ACTIONS(5226), + [anon_sym_SLASH_EQ] = ACTIONS(5226), + [anon_sym_AMP_EQ] = ACTIONS(5226), + [anon_sym_PIPE_EQ] = ACTIONS(5226), + [anon_sym_xor_EQ] = ACTIONS(5226), + [anon_sym_LT_LT_EQ] = ACTIONS(5226), + [anon_sym_GT_GT_EQ] = ACTIONS(5226), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5226), + [anon_sym_return] = ACTIONS(5228), + [anon_sym_yield] = ACTIONS(5228), + [anon_sym_break] = ACTIONS(5228), + [anon_sym_continue] = ACTIONS(5228), + [anon_sym_defer] = ACTIONS(5228), + [anon_sym_errdefer] = ACTIONS(5228), + [anon_sym_if] = ACTIONS(5228), + [anon_sym_else] = ACTIONS(5228), + [anon_sym_while] = ACTIONS(5228), + [anon_sym_expand] = ACTIONS(5228), + [anon_sym_for] = ACTIONS(5228), + [anon_sym_match] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5226), + [anon_sym_orelse] = ACTIONS(5228), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_and] = ACTIONS(5228), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_xor] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_LT_LT_PIPE] = ACTIONS(5228), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_catch] = ACTIONS(5228), + [anon_sym_TILDE] = ACTIONS(5226), + [anon_sym_try] = ACTIONS(5228), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_true] = ACTIONS(5228), + [anon_sym_false] = ACTIONS(5228), + [anon_sym_null] = ACTIONS(5228), + [anon_sym_unreachable] = ACTIONS(5228), + [anon_sym_undefined] = ACTIONS(5228), + [sym_sink] = ACTIONS(5228), + [sym_integer] = ACTIONS(5228), + [sym_float] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [sym_multiline_string] = ACTIONS(5226), + [sym_character] = ACTIONS(5226), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5226), + }, + [STATE(3234)] = { + [sym_identifier] = ACTIONS(5232), + [anon_sym_func] = ACTIONS(5232), + [anon_sym_c_func] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5232), + [anon_sym_struct] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5230), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_struct_type_BANG] = ACTIONS(5230), + [anon_sym_QMARK] = ACTIONS(5230), + [anon_sym_AT] = ACTIONS(5230), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_void] = ACTIONS(5232), + [anon_sym_noreturn] = ACTIONS(5232), + [anon_sym_type] = ACTIONS(5232), + [anon_sym_anyopaque] = ACTIONS(5232), + [anon_sym_bool] = ACTIONS(5232), + [anon_sym_int] = ACTIONS(5232), + [anon_sym_uint] = ACTIONS(5232), + [anon_sym_float] = ACTIONS(5232), + [anon_sym_range] = ACTIONS(5232), + [anon_sym_i8] = ACTIONS(5232), + [anon_sym_i16] = ACTIONS(5232), + [anon_sym_i32] = ACTIONS(5232), + [anon_sym_i64] = ACTIONS(5232), + [anon_sym_u8] = ACTIONS(5232), + [anon_sym_u16] = ACTIONS(5232), + [anon_sym_u32] = ACTIONS(5232), + [anon_sym_u64] = ACTIONS(5232), + [anon_sym_isize] = ACTIONS(5232), + [anon_sym_usize] = ACTIONS(5232), + [anon_sym_f32] = ACTIONS(5232), + [anon_sym_f64] = ACTIONS(5232), + [anon_sym_c_char] = ACTIONS(5232), + [anon_sym_c_schar] = ACTIONS(5232), + [anon_sym_c_uchar] = ACTIONS(5232), + [anon_sym_c_short] = ACTIONS(5232), + [anon_sym_c_ushort] = ACTIONS(5232), + [anon_sym_c_int] = ACTIONS(5232), + [anon_sym_c_uint] = ACTIONS(5232), + [anon_sym_c_long] = ACTIONS(5232), + [anon_sym_c_ulong] = ACTIONS(5232), + [anon_sym_c_longlong] = ACTIONS(5232), + [anon_sym_c_ulonglong] = ACTIONS(5232), + [anon_sym_c_float] = ACTIONS(5232), + [anon_sym_c_double] = ACTIONS(5232), + [anon_sym_c_longdouble] = ACTIONS(5232), + [anon_sym_PLUS_EQ] = ACTIONS(5230), + [anon_sym_DASH_EQ] = ACTIONS(5230), + [anon_sym_STAR_EQ] = ACTIONS(5230), + [anon_sym_SLASH_EQ] = ACTIONS(5230), + [anon_sym_AMP_EQ] = ACTIONS(5230), + [anon_sym_PIPE_EQ] = ACTIONS(5230), + [anon_sym_xor_EQ] = ACTIONS(5230), + [anon_sym_LT_LT_EQ] = ACTIONS(5230), + [anon_sym_GT_GT_EQ] = ACTIONS(5230), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5230), + [anon_sym_return] = ACTIONS(5232), + [anon_sym_yield] = ACTIONS(5232), + [anon_sym_break] = ACTIONS(5232), + [anon_sym_continue] = ACTIONS(5232), + [anon_sym_defer] = ACTIONS(5232), + [anon_sym_errdefer] = ACTIONS(5232), + [anon_sym_if] = ACTIONS(5232), + [anon_sym_else] = ACTIONS(5232), + [anon_sym_while] = ACTIONS(5232), + [anon_sym_expand] = ACTIONS(5232), + [anon_sym_for] = ACTIONS(5232), + [anon_sym_match] = ACTIONS(5232), + [anon_sym_DOT_DOT] = ACTIONS(5232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5230), + [anon_sym_orelse] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5230), + [anon_sym_BANG_EQ] = ACTIONS(5230), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_LT_EQ] = ACTIONS(5230), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_GT_EQ] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(5232), + [anon_sym_xor] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5232), + [anon_sym_GT_GT] = ACTIONS(5232), + [anon_sym_LT_LT_PIPE] = ACTIONS(5232), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_catch] = ACTIONS(5232), + [anon_sym_TILDE] = ACTIONS(5230), + [anon_sym_try] = ACTIONS(5232), + [anon_sym_DOT] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5230), + [anon_sym_true] = ACTIONS(5232), + [anon_sym_false] = ACTIONS(5232), + [anon_sym_null] = ACTIONS(5232), + [anon_sym_unreachable] = ACTIONS(5232), + [anon_sym_undefined] = ACTIONS(5232), + [sym_sink] = ACTIONS(5232), + [sym_integer] = ACTIONS(5232), + [sym_float] = ACTIONS(5230), + [anon_sym_DQUOTE] = ACTIONS(5230), + [sym_multiline_string] = ACTIONS(5230), + [sym_character] = ACTIONS(5230), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5230), + }, + [STATE(3235)] = { + [sym_identifier] = ACTIONS(5236), + [anon_sym_func] = ACTIONS(5236), + [anon_sym_c_func] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_struct] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_struct_type_BANG] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_AT] = ACTIONS(5234), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_void] = ACTIONS(5236), + [anon_sym_noreturn] = ACTIONS(5236), + [anon_sym_type] = ACTIONS(5236), + [anon_sym_anyopaque] = ACTIONS(5236), + [anon_sym_bool] = ACTIONS(5236), + [anon_sym_int] = ACTIONS(5236), + [anon_sym_uint] = ACTIONS(5236), + [anon_sym_float] = ACTIONS(5236), + [anon_sym_range] = ACTIONS(5236), + [anon_sym_i8] = ACTIONS(5236), + [anon_sym_i16] = ACTIONS(5236), + [anon_sym_i32] = ACTIONS(5236), + [anon_sym_i64] = ACTIONS(5236), + [anon_sym_u8] = ACTIONS(5236), + [anon_sym_u16] = ACTIONS(5236), + [anon_sym_u32] = ACTIONS(5236), + [anon_sym_u64] = ACTIONS(5236), + [anon_sym_isize] = ACTIONS(5236), + [anon_sym_usize] = ACTIONS(5236), + [anon_sym_f32] = ACTIONS(5236), + [anon_sym_f64] = ACTIONS(5236), + [anon_sym_c_char] = ACTIONS(5236), + [anon_sym_c_schar] = ACTIONS(5236), + [anon_sym_c_uchar] = ACTIONS(5236), + [anon_sym_c_short] = ACTIONS(5236), + [anon_sym_c_ushort] = ACTIONS(5236), + [anon_sym_c_int] = ACTIONS(5236), + [anon_sym_c_uint] = ACTIONS(5236), + [anon_sym_c_long] = ACTIONS(5236), + [anon_sym_c_ulong] = ACTIONS(5236), + [anon_sym_c_longlong] = ACTIONS(5236), + [anon_sym_c_ulonglong] = ACTIONS(5236), + [anon_sym_c_float] = ACTIONS(5236), + [anon_sym_c_double] = ACTIONS(5236), + [anon_sym_c_longdouble] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [anon_sym_DASH_EQ] = ACTIONS(5234), + [anon_sym_STAR_EQ] = ACTIONS(5234), + [anon_sym_SLASH_EQ] = ACTIONS(5234), + [anon_sym_AMP_EQ] = ACTIONS(5234), + [anon_sym_PIPE_EQ] = ACTIONS(5234), + [anon_sym_xor_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_EQ] = ACTIONS(5234), + [anon_sym_GT_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5234), + [anon_sym_return] = ACTIONS(5236), + [anon_sym_yield] = ACTIONS(5236), + [anon_sym_break] = ACTIONS(5236), + [anon_sym_continue] = ACTIONS(5236), + [anon_sym_defer] = ACTIONS(5236), + [anon_sym_errdefer] = ACTIONS(5236), + [anon_sym_if] = ACTIONS(5236), + [anon_sym_else] = ACTIONS(5236), + [anon_sym_while] = ACTIONS(5236), + [anon_sym_expand] = ACTIONS(5236), + [anon_sym_for] = ACTIONS(5236), + [anon_sym_match] = ACTIONS(5236), + [anon_sym_DOT_DOT] = ACTIONS(5236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5234), + [anon_sym_orelse] = ACTIONS(5236), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_LT_LT_PIPE] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_catch] = ACTIONS(5236), + [anon_sym_TILDE] = ACTIONS(5234), + [anon_sym_try] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_true] = ACTIONS(5236), + [anon_sym_false] = ACTIONS(5236), + [anon_sym_null] = ACTIONS(5236), + [anon_sym_unreachable] = ACTIONS(5236), + [anon_sym_undefined] = ACTIONS(5236), + [sym_sink] = ACTIONS(5236), + [sym_integer] = ACTIONS(5236), + [sym_float] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [sym_multiline_string] = ACTIONS(5234), + [sym_character] = ACTIONS(5234), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5234), + }, + [STATE(3236)] = { + [sym_identifier] = ACTIONS(4416), + [anon_sym_func] = ACTIONS(4416), + [anon_sym_c_func] = ACTIONS(4416), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_DOLLAR] = ACTIONS(4414), + [anon_sym_PIPE] = ACTIONS(4416), + [anon_sym_struct_type_BANG] = ACTIONS(4414), + [anon_sym_QMARK] = ACTIONS(4414), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4416), [anon_sym_LBRACK] = ACTIONS(4414), [anon_sym_void] = ACTIONS(4416), [anon_sym_noreturn] = ACTIONS(4416), @@ -209682,6 +424857,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(4416), [anon_sym_c_double] = ACTIONS(4416), [anon_sym_c_longdouble] = ACTIONS(4416), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_AMP_EQ] = ACTIONS(4414), + [anon_sym_PIPE_EQ] = ACTIONS(4414), + [anon_sym_xor_EQ] = ACTIONS(4414), + [anon_sym_LT_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_GT_EQ] = ACTIONS(4414), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4414), [anon_sym_return] = ACTIONS(4416), [anon_sym_yield] = ACTIONS(4416), [anon_sym_break] = ACTIONS(4416), @@ -209694,10 +424879,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expand] = ACTIONS(4416), [anon_sym_for] = ACTIONS(4416), [anon_sym_match] = ACTIONS(4416), - [anon_sym_AMP] = ACTIONS(4414), + [anon_sym_DOT_DOT] = ACTIONS(4416), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4414), + [anon_sym_orelse] = ACTIONS(4416), + [anon_sym_or] = ACTIONS(4416), + [anon_sym_and] = ACTIONS(4416), + [anon_sym_EQ_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_xor] = ACTIONS(4416), + [anon_sym_LT_LT] = ACTIONS(4416), + [anon_sym_GT_GT] = ACTIONS(4416), + [anon_sym_LT_LT_PIPE] = ACTIONS(4416), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_catch] = ACTIONS(4416), [anon_sym_TILDE] = ACTIONS(4414), [anon_sym_try] = ACTIONS(4416), - [anon_sym_DOT] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_CARET] = ACTIONS(4414), [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_null] = ACTIONS(4416), @@ -209712,21 +424916,142591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4414), }, - [STATE(1854)] = { + [STATE(3237)] = { + [sym_identifier] = ACTIONS(4468), + [anon_sym_func] = ACTIONS(4468), + [anon_sym_c_func] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4468), + [anon_sym_struct_type_BANG] = ACTIONS(4466), + [anon_sym_QMARK] = ACTIONS(4466), + [anon_sym_AT] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_void] = ACTIONS(4468), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4466), + [anon_sym_DASH_EQ] = ACTIONS(4466), + [anon_sym_STAR_EQ] = ACTIONS(4466), + [anon_sym_SLASH_EQ] = ACTIONS(4466), + [anon_sym_AMP_EQ] = ACTIONS(4466), + [anon_sym_PIPE_EQ] = ACTIONS(4466), + [anon_sym_xor_EQ] = ACTIONS(4466), + [anon_sym_LT_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_GT_EQ] = ACTIONS(4466), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4466), + [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_DOT_DOT] = ACTIONS(4468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4466), + [anon_sym_orelse] = ACTIONS(4468), + [anon_sym_or] = ACTIONS(4468), + [anon_sym_and] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_xor] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT_PIPE] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_SLASH] = ACTIONS(4468), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_CARET] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4468), + [anon_sym_false] = ACTIONS(4468), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_unreachable] = ACTIONS(4468), + [anon_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(3238)] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_func] = ACTIONS(5720), + [anon_sym_c_func] = ACTIONS(5720), + [anon_sym_BANG] = ACTIONS(5720), + [anon_sym_EQ] = ACTIONS(5720), + [anon_sym_struct] = ACTIONS(5720), + [anon_sym_LPAREN] = ACTIONS(5718), + [anon_sym_LBRACE] = ACTIONS(5718), + [anon_sym_COMMA] = ACTIONS(5718), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_DOLLAR] = ACTIONS(5718), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_struct_type_BANG] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [anon_sym_AT] = ACTIONS(5718), + [anon_sym_STAR] = ACTIONS(5720), + [anon_sym_LBRACK] = ACTIONS(5718), + [anon_sym_void] = ACTIONS(5720), + [anon_sym_noreturn] = ACTIONS(5720), + [anon_sym_type] = ACTIONS(5720), + [anon_sym_anyopaque] = ACTIONS(5720), + [anon_sym_bool] = ACTIONS(5720), + [anon_sym_int] = ACTIONS(5720), + [anon_sym_uint] = ACTIONS(5720), + [anon_sym_float] = ACTIONS(5720), + [anon_sym_range] = ACTIONS(5720), + [anon_sym_i8] = ACTIONS(5720), + [anon_sym_i16] = ACTIONS(5720), + [anon_sym_i32] = ACTIONS(5720), + [anon_sym_i64] = ACTIONS(5720), + [anon_sym_u8] = ACTIONS(5720), + [anon_sym_u16] = ACTIONS(5720), + [anon_sym_u32] = ACTIONS(5720), + [anon_sym_u64] = ACTIONS(5720), + [anon_sym_isize] = ACTIONS(5720), + [anon_sym_usize] = ACTIONS(5720), + [anon_sym_f32] = ACTIONS(5720), + [anon_sym_f64] = ACTIONS(5720), + [anon_sym_c_char] = ACTIONS(5720), + [anon_sym_c_schar] = ACTIONS(5720), + [anon_sym_c_uchar] = ACTIONS(5720), + [anon_sym_c_short] = ACTIONS(5720), + [anon_sym_c_ushort] = ACTIONS(5720), + [anon_sym_c_int] = ACTIONS(5720), + [anon_sym_c_uint] = ACTIONS(5720), + [anon_sym_c_long] = ACTIONS(5720), + [anon_sym_c_ulong] = ACTIONS(5720), + [anon_sym_c_longlong] = ACTIONS(5720), + [anon_sym_c_ulonglong] = ACTIONS(5720), + [anon_sym_c_float] = ACTIONS(5720), + [anon_sym_c_double] = ACTIONS(5720), + [anon_sym_c_longdouble] = ACTIONS(5720), + [anon_sym_PLUS_EQ] = ACTIONS(5718), + [anon_sym_DASH_EQ] = ACTIONS(5718), + [anon_sym_STAR_EQ] = ACTIONS(5718), + [anon_sym_SLASH_EQ] = ACTIONS(5718), + [anon_sym_AMP_EQ] = ACTIONS(5718), + [anon_sym_PIPE_EQ] = ACTIONS(5718), + [anon_sym_xor_EQ] = ACTIONS(5718), + [anon_sym_LT_LT_EQ] = ACTIONS(5718), + [anon_sym_GT_GT_EQ] = ACTIONS(5718), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5718), + [anon_sym_return] = ACTIONS(5720), + [anon_sym_yield] = ACTIONS(5720), + [anon_sym_break] = ACTIONS(5720), + [anon_sym_continue] = ACTIONS(5720), + [anon_sym_defer] = ACTIONS(5720), + [anon_sym_errdefer] = ACTIONS(5720), + [anon_sym_if] = ACTIONS(5720), + [anon_sym_else] = ACTIONS(5720), + [anon_sym_while] = ACTIONS(5720), + [anon_sym_expand] = ACTIONS(5720), + [anon_sym_for] = ACTIONS(5720), + [anon_sym_match] = ACTIONS(5720), + [anon_sym_DOT_DOT] = ACTIONS(5720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5718), + [anon_sym_orelse] = ACTIONS(5720), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5718), + [anon_sym_BANG_EQ] = ACTIONS(5718), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_EQ] = ACTIONS(5718), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5718), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5720), + [anon_sym_GT_GT] = ACTIONS(5720), + [anon_sym_LT_LT_PIPE] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_catch] = ACTIONS(5720), + [anon_sym_TILDE] = ACTIONS(5718), + [anon_sym_try] = ACTIONS(5720), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5718), + [anon_sym_true] = ACTIONS(5720), + [anon_sym_false] = ACTIONS(5720), + [anon_sym_null] = ACTIONS(5720), + [anon_sym_unreachable] = ACTIONS(5720), + [anon_sym_undefined] = ACTIONS(5720), + [sym_sink] = ACTIONS(5720), + [sym_integer] = ACTIONS(5720), + [sym_float] = ACTIONS(5718), + [anon_sym_DQUOTE] = ACTIONS(5718), + [sym_multiline_string] = ACTIONS(5718), + [sym_character] = ACTIONS(5718), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5718), + }, + [STATE(3239)] = { + [sym_identifier] = ACTIONS(4472), + [anon_sym_func] = ACTIONS(4472), + [anon_sym_c_func] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4472), + [anon_sym_struct_type_BANG] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_void] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym_type] = ACTIONS(4472), + [anon_sym_anyopaque] = ACTIONS(4472), + [anon_sym_bool] = ACTIONS(4472), + [anon_sym_int] = ACTIONS(4472), + [anon_sym_uint] = ACTIONS(4472), + [anon_sym_float] = ACTIONS(4472), + [anon_sym_range] = ACTIONS(4472), + [anon_sym_i8] = ACTIONS(4472), + [anon_sym_i16] = ACTIONS(4472), + [anon_sym_i32] = ACTIONS(4472), + [anon_sym_i64] = ACTIONS(4472), + [anon_sym_u8] = ACTIONS(4472), + [anon_sym_u16] = ACTIONS(4472), + [anon_sym_u32] = ACTIONS(4472), + [anon_sym_u64] = ACTIONS(4472), + [anon_sym_isize] = ACTIONS(4472), + [anon_sym_usize] = ACTIONS(4472), + [anon_sym_f32] = ACTIONS(4472), + [anon_sym_f64] = ACTIONS(4472), + [anon_sym_c_char] = ACTIONS(4472), + [anon_sym_c_schar] = ACTIONS(4472), + [anon_sym_c_uchar] = ACTIONS(4472), + [anon_sym_c_short] = ACTIONS(4472), + [anon_sym_c_ushort] = ACTIONS(4472), + [anon_sym_c_int] = ACTIONS(4472), + [anon_sym_c_uint] = ACTIONS(4472), + [anon_sym_c_long] = ACTIONS(4472), + [anon_sym_c_ulong] = ACTIONS(4472), + [anon_sym_c_longlong] = ACTIONS(4472), + [anon_sym_c_ulonglong] = ACTIONS(4472), + [anon_sym_c_float] = ACTIONS(4472), + [anon_sym_c_double] = ACTIONS(4472), + [anon_sym_c_longdouble] = ACTIONS(4472), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_AMP_EQ] = ACTIONS(4470), + [anon_sym_PIPE_EQ] = ACTIONS(4470), + [anon_sym_xor_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_GT_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_defer] = ACTIONS(4472), + [anon_sym_errdefer] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_expand] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_match] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4470), + [anon_sym_orelse] = ACTIONS(4472), + [anon_sym_or] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4472), + [anon_sym_EQ_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_xor] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(4472), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_LT_LT_PIPE] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_SLASH] = ACTIONS(4472), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_CARET] = ACTIONS(4470), + [anon_sym_true] = ACTIONS(4472), + [anon_sym_false] = ACTIONS(4472), + [anon_sym_null] = ACTIONS(4472), + [anon_sym_unreachable] = ACTIONS(4472), + [anon_sym_undefined] = ACTIONS(4472), + [sym_sink] = ACTIONS(4472), + [sym_integer] = ACTIONS(4472), + [sym_float] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_multiline_string] = ACTIONS(4470), + [sym_character] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4470), + }, + [STATE(3240)] = { + [sym_identifier] = ACTIONS(4486), + [anon_sym_func] = ACTIONS(4486), + [anon_sym_c_func] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_struct_type_BANG] = ACTIONS(4484), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_void] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_type] = ACTIONS(4486), + [anon_sym_anyopaque] = ACTIONS(4486), + [anon_sym_bool] = ACTIONS(4486), + [anon_sym_int] = ACTIONS(4486), + [anon_sym_uint] = ACTIONS(4486), + [anon_sym_float] = ACTIONS(4486), + [anon_sym_range] = ACTIONS(4486), + [anon_sym_i8] = ACTIONS(4486), + [anon_sym_i16] = ACTIONS(4486), + [anon_sym_i32] = ACTIONS(4486), + [anon_sym_i64] = ACTIONS(4486), + [anon_sym_u8] = ACTIONS(4486), + [anon_sym_u16] = ACTIONS(4486), + [anon_sym_u32] = ACTIONS(4486), + [anon_sym_u64] = ACTIONS(4486), + [anon_sym_isize] = ACTIONS(4486), + [anon_sym_usize] = ACTIONS(4486), + [anon_sym_f32] = ACTIONS(4486), + [anon_sym_f64] = ACTIONS(4486), + [anon_sym_c_char] = ACTIONS(4486), + [anon_sym_c_schar] = ACTIONS(4486), + [anon_sym_c_uchar] = ACTIONS(4486), + [anon_sym_c_short] = ACTIONS(4486), + [anon_sym_c_ushort] = ACTIONS(4486), + [anon_sym_c_int] = ACTIONS(4486), + [anon_sym_c_uint] = ACTIONS(4486), + [anon_sym_c_long] = ACTIONS(4486), + [anon_sym_c_ulong] = ACTIONS(4486), + [anon_sym_c_longlong] = ACTIONS(4486), + [anon_sym_c_ulonglong] = ACTIONS(4486), + [anon_sym_c_float] = ACTIONS(4486), + [anon_sym_c_double] = ACTIONS(4486), + [anon_sym_c_longdouble] = ACTIONS(4486), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_AMP_EQ] = ACTIONS(4484), + [anon_sym_PIPE_EQ] = ACTIONS(4484), + [anon_sym_xor_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_GT_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_yield] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_defer] = ACTIONS(4486), + [anon_sym_errdefer] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_while] = ACTIONS(4486), + [anon_sym_expand] = ACTIONS(4486), + [anon_sym_for] = ACTIONS(4486), + [anon_sym_match] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4484), + [anon_sym_orelse] = ACTIONS(4486), + [anon_sym_or] = ACTIONS(4486), + [anon_sym_and] = ACTIONS(4486), + [anon_sym_EQ_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_AMP] = ACTIONS(4486), + [anon_sym_xor] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_LT_LT_PIPE] = ACTIONS(4486), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_SLASH] = ACTIONS(4486), + [anon_sym_catch] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_CARET] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_unreachable] = ACTIONS(4486), + [anon_sym_undefined] = ACTIONS(4486), + [sym_sink] = ACTIONS(4486), + [sym_integer] = ACTIONS(4486), + [sym_float] = ACTIONS(4484), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_multiline_string] = ACTIONS(4484), + [sym_character] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4484), + }, + [STATE(3241)] = { + [sym_identifier] = ACTIONS(5438), + [anon_sym_func] = ACTIONS(5438), + [anon_sym_c_func] = ACTIONS(5438), + [anon_sym_BANG] = ACTIONS(5438), + [anon_sym_EQ] = ACTIONS(5438), + [anon_sym_struct] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5436), + [anon_sym_LBRACE] = ACTIONS(5436), + [anon_sym_COMMA] = ACTIONS(5436), + [anon_sym_RBRACE] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5438), + [anon_sym_DOLLAR] = ACTIONS(5436), + [anon_sym_PIPE] = ACTIONS(5438), + [anon_sym_struct_type_BANG] = ACTIONS(5436), + [anon_sym_QMARK] = ACTIONS(5436), + [anon_sym_AT] = ACTIONS(5436), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5436), + [anon_sym_void] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_type] = ACTIONS(5438), + [anon_sym_anyopaque] = ACTIONS(5438), + [anon_sym_bool] = ACTIONS(5438), + [anon_sym_int] = ACTIONS(5438), + [anon_sym_uint] = ACTIONS(5438), + [anon_sym_float] = ACTIONS(5438), + [anon_sym_range] = ACTIONS(5438), + [anon_sym_i8] = ACTIONS(5438), + [anon_sym_i16] = ACTIONS(5438), + [anon_sym_i32] = ACTIONS(5438), + [anon_sym_i64] = ACTIONS(5438), + [anon_sym_u8] = ACTIONS(5438), + [anon_sym_u16] = ACTIONS(5438), + [anon_sym_u32] = ACTIONS(5438), + [anon_sym_u64] = ACTIONS(5438), + [anon_sym_isize] = ACTIONS(5438), + [anon_sym_usize] = ACTIONS(5438), + [anon_sym_f32] = ACTIONS(5438), + [anon_sym_f64] = ACTIONS(5438), + [anon_sym_c_char] = ACTIONS(5438), + [anon_sym_c_schar] = ACTIONS(5438), + [anon_sym_c_uchar] = ACTIONS(5438), + [anon_sym_c_short] = ACTIONS(5438), + [anon_sym_c_ushort] = ACTIONS(5438), + [anon_sym_c_int] = ACTIONS(5438), + [anon_sym_c_uint] = ACTIONS(5438), + [anon_sym_c_long] = ACTIONS(5438), + [anon_sym_c_ulong] = ACTIONS(5438), + [anon_sym_c_longlong] = ACTIONS(5438), + [anon_sym_c_ulonglong] = ACTIONS(5438), + [anon_sym_c_float] = ACTIONS(5438), + [anon_sym_c_double] = ACTIONS(5438), + [anon_sym_c_longdouble] = ACTIONS(5438), + [anon_sym_PLUS_EQ] = ACTIONS(5436), + [anon_sym_DASH_EQ] = ACTIONS(5436), + [anon_sym_STAR_EQ] = ACTIONS(5436), + [anon_sym_SLASH_EQ] = ACTIONS(5436), + [anon_sym_AMP_EQ] = ACTIONS(5436), + [anon_sym_PIPE_EQ] = ACTIONS(5436), + [anon_sym_xor_EQ] = ACTIONS(5436), + [anon_sym_LT_LT_EQ] = ACTIONS(5436), + [anon_sym_GT_GT_EQ] = ACTIONS(5436), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5436), + [anon_sym_return] = ACTIONS(5438), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_break] = ACTIONS(5438), + [anon_sym_continue] = ACTIONS(5438), + [anon_sym_defer] = ACTIONS(5438), + [anon_sym_errdefer] = ACTIONS(5438), + [anon_sym_if] = ACTIONS(5438), + [anon_sym_else] = ACTIONS(5438), + [anon_sym_while] = ACTIONS(5438), + [anon_sym_expand] = ACTIONS(5438), + [anon_sym_for] = ACTIONS(5438), + [anon_sym_match] = ACTIONS(5438), + [anon_sym_DOT_DOT] = ACTIONS(5438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5436), + [anon_sym_orelse] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_EQ_EQ] = ACTIONS(5436), + [anon_sym_BANG_EQ] = ACTIONS(5436), + [anon_sym_LT] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5436), + [anon_sym_GT] = ACTIONS(5438), + [anon_sym_GT_EQ] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5438), + [anon_sym_xor] = ACTIONS(5438), + [anon_sym_LT_LT] = ACTIONS(5438), + [anon_sym_GT_GT] = ACTIONS(5438), + [anon_sym_LT_LT_PIPE] = ACTIONS(5438), + [anon_sym_PLUS] = ACTIONS(5438), + [anon_sym_SLASH] = ACTIONS(5438), + [anon_sym_catch] = ACTIONS(5438), + [anon_sym_TILDE] = ACTIONS(5436), + [anon_sym_try] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5438), + [anon_sym_CARET] = ACTIONS(5436), + [anon_sym_true] = ACTIONS(5438), + [anon_sym_false] = ACTIONS(5438), + [anon_sym_null] = ACTIONS(5438), + [anon_sym_unreachable] = ACTIONS(5438), + [anon_sym_undefined] = ACTIONS(5438), + [sym_sink] = ACTIONS(5438), + [sym_integer] = ACTIONS(5438), + [sym_float] = ACTIONS(5436), + [anon_sym_DQUOTE] = ACTIONS(5436), + [sym_multiline_string] = ACTIONS(5436), + [sym_character] = ACTIONS(5436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5436), + }, + [STATE(3242)] = { + [sym_identifier] = ACTIONS(5240), + [anon_sym_func] = ACTIONS(5240), + [anon_sym_c_func] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_EQ] = ACTIONS(5240), + [anon_sym_struct] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_DOLLAR] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_struct_type_BANG] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5238), + [anon_sym_AT] = ACTIONS(5238), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_void] = ACTIONS(5240), + [anon_sym_noreturn] = ACTIONS(5240), + [anon_sym_type] = ACTIONS(5240), + [anon_sym_anyopaque] = ACTIONS(5240), + [anon_sym_bool] = ACTIONS(5240), + [anon_sym_int] = ACTIONS(5240), + [anon_sym_uint] = ACTIONS(5240), + [anon_sym_float] = ACTIONS(5240), + [anon_sym_range] = ACTIONS(5240), + [anon_sym_i8] = ACTIONS(5240), + [anon_sym_i16] = ACTIONS(5240), + [anon_sym_i32] = ACTIONS(5240), + [anon_sym_i64] = ACTIONS(5240), + [anon_sym_u8] = ACTIONS(5240), + [anon_sym_u16] = ACTIONS(5240), + [anon_sym_u32] = ACTIONS(5240), + [anon_sym_u64] = ACTIONS(5240), + [anon_sym_isize] = ACTIONS(5240), + [anon_sym_usize] = ACTIONS(5240), + [anon_sym_f32] = ACTIONS(5240), + [anon_sym_f64] = ACTIONS(5240), + [anon_sym_c_char] = ACTIONS(5240), + [anon_sym_c_schar] = ACTIONS(5240), + [anon_sym_c_uchar] = ACTIONS(5240), + [anon_sym_c_short] = ACTIONS(5240), + [anon_sym_c_ushort] = ACTIONS(5240), + [anon_sym_c_int] = ACTIONS(5240), + [anon_sym_c_uint] = ACTIONS(5240), + [anon_sym_c_long] = ACTIONS(5240), + [anon_sym_c_ulong] = ACTIONS(5240), + [anon_sym_c_longlong] = ACTIONS(5240), + [anon_sym_c_ulonglong] = ACTIONS(5240), + [anon_sym_c_float] = ACTIONS(5240), + [anon_sym_c_double] = ACTIONS(5240), + [anon_sym_c_longdouble] = ACTIONS(5240), + [anon_sym_PLUS_EQ] = ACTIONS(5238), + [anon_sym_DASH_EQ] = ACTIONS(5238), + [anon_sym_STAR_EQ] = ACTIONS(5238), + [anon_sym_SLASH_EQ] = ACTIONS(5238), + [anon_sym_AMP_EQ] = ACTIONS(5238), + [anon_sym_PIPE_EQ] = ACTIONS(5238), + [anon_sym_xor_EQ] = ACTIONS(5238), + [anon_sym_LT_LT_EQ] = ACTIONS(5238), + [anon_sym_GT_GT_EQ] = ACTIONS(5238), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5238), + [anon_sym_return] = ACTIONS(5240), + [anon_sym_yield] = ACTIONS(5240), + [anon_sym_break] = ACTIONS(5240), + [anon_sym_continue] = ACTIONS(5240), + [anon_sym_defer] = ACTIONS(5240), + [anon_sym_errdefer] = ACTIONS(5240), + [anon_sym_if] = ACTIONS(5240), + [anon_sym_else] = ACTIONS(5240), + [anon_sym_while] = ACTIONS(5240), + [anon_sym_expand] = ACTIONS(5240), + [anon_sym_for] = ACTIONS(5240), + [anon_sym_match] = ACTIONS(5240), + [anon_sym_DOT_DOT] = ACTIONS(5240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5238), + [anon_sym_orelse] = ACTIONS(5240), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_and] = ACTIONS(5240), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(5240), + [anon_sym_xor] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5240), + [anon_sym_GT_GT] = ACTIONS(5240), + [anon_sym_LT_LT_PIPE] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_catch] = ACTIONS(5240), + [anon_sym_TILDE] = ACTIONS(5238), + [anon_sym_try] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_true] = ACTIONS(5240), + [anon_sym_false] = ACTIONS(5240), + [anon_sym_null] = ACTIONS(5240), + [anon_sym_unreachable] = ACTIONS(5240), + [anon_sym_undefined] = ACTIONS(5240), + [sym_sink] = ACTIONS(5240), + [sym_integer] = ACTIONS(5240), + [sym_float] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [sym_multiline_string] = ACTIONS(5238), + [sym_character] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5238), + }, + [STATE(3243)] = { + [sym_identifier] = ACTIONS(5244), + [anon_sym_func] = ACTIONS(5244), + [anon_sym_c_func] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_EQ] = ACTIONS(5244), + [anon_sym_struct] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_DOLLAR] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_struct_type_BANG] = ACTIONS(5242), + [anon_sym_QMARK] = ACTIONS(5242), + [anon_sym_AT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_void] = ACTIONS(5244), + [anon_sym_noreturn] = ACTIONS(5244), + [anon_sym_type] = ACTIONS(5244), + [anon_sym_anyopaque] = ACTIONS(5244), + [anon_sym_bool] = ACTIONS(5244), + [anon_sym_int] = ACTIONS(5244), + [anon_sym_uint] = ACTIONS(5244), + [anon_sym_float] = ACTIONS(5244), + [anon_sym_range] = ACTIONS(5244), + [anon_sym_i8] = ACTIONS(5244), + [anon_sym_i16] = ACTIONS(5244), + [anon_sym_i32] = ACTIONS(5244), + [anon_sym_i64] = ACTIONS(5244), + [anon_sym_u8] = ACTIONS(5244), + [anon_sym_u16] = ACTIONS(5244), + [anon_sym_u32] = ACTIONS(5244), + [anon_sym_u64] = ACTIONS(5244), + [anon_sym_isize] = ACTIONS(5244), + [anon_sym_usize] = ACTIONS(5244), + [anon_sym_f32] = ACTIONS(5244), + [anon_sym_f64] = ACTIONS(5244), + [anon_sym_c_char] = ACTIONS(5244), + [anon_sym_c_schar] = ACTIONS(5244), + [anon_sym_c_uchar] = ACTIONS(5244), + [anon_sym_c_short] = ACTIONS(5244), + [anon_sym_c_ushort] = ACTIONS(5244), + [anon_sym_c_int] = ACTIONS(5244), + [anon_sym_c_uint] = ACTIONS(5244), + [anon_sym_c_long] = ACTIONS(5244), + [anon_sym_c_ulong] = ACTIONS(5244), + [anon_sym_c_longlong] = ACTIONS(5244), + [anon_sym_c_ulonglong] = ACTIONS(5244), + [anon_sym_c_float] = ACTIONS(5244), + [anon_sym_c_double] = ACTIONS(5244), + [anon_sym_c_longdouble] = ACTIONS(5244), + [anon_sym_PLUS_EQ] = ACTIONS(5242), + [anon_sym_DASH_EQ] = ACTIONS(5242), + [anon_sym_STAR_EQ] = ACTIONS(5242), + [anon_sym_SLASH_EQ] = ACTIONS(5242), + [anon_sym_AMP_EQ] = ACTIONS(5242), + [anon_sym_PIPE_EQ] = ACTIONS(5242), + [anon_sym_xor_EQ] = ACTIONS(5242), + [anon_sym_LT_LT_EQ] = ACTIONS(5242), + [anon_sym_GT_GT_EQ] = ACTIONS(5242), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5242), + [anon_sym_return] = ACTIONS(5244), + [anon_sym_yield] = ACTIONS(5244), + [anon_sym_break] = ACTIONS(5244), + [anon_sym_continue] = ACTIONS(5244), + [anon_sym_defer] = ACTIONS(5244), + [anon_sym_errdefer] = ACTIONS(5244), + [anon_sym_if] = ACTIONS(5244), + [anon_sym_else] = ACTIONS(5244), + [anon_sym_while] = ACTIONS(5244), + [anon_sym_expand] = ACTIONS(5244), + [anon_sym_for] = ACTIONS(5244), + [anon_sym_match] = ACTIONS(5244), + [anon_sym_DOT_DOT] = ACTIONS(5244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5242), + [anon_sym_orelse] = ACTIONS(5244), + [anon_sym_or] = ACTIONS(5244), + [anon_sym_and] = ACTIONS(5244), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_xor] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5244), + [anon_sym_GT_GT] = ACTIONS(5244), + [anon_sym_LT_LT_PIPE] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_catch] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5242), + [anon_sym_try] = ACTIONS(5244), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_true] = ACTIONS(5244), + [anon_sym_false] = ACTIONS(5244), + [anon_sym_null] = ACTIONS(5244), + [anon_sym_unreachable] = ACTIONS(5244), + [anon_sym_undefined] = ACTIONS(5244), + [sym_sink] = ACTIONS(5244), + [sym_integer] = ACTIONS(5244), + [sym_float] = ACTIONS(5242), + [anon_sym_DQUOTE] = ACTIONS(5242), + [sym_multiline_string] = ACTIONS(5242), + [sym_character] = ACTIONS(5242), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5242), + }, + [STATE(3244)] = { + [sym_identifier] = ACTIONS(5248), + [anon_sym_func] = ACTIONS(5248), + [anon_sym_c_func] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_EQ] = ACTIONS(5248), + [anon_sym_struct] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_DOLLAR] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_struct_type_BANG] = ACTIONS(5246), + [anon_sym_QMARK] = ACTIONS(5246), + [anon_sym_AT] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_void] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym_type] = ACTIONS(5248), + [anon_sym_anyopaque] = ACTIONS(5248), + [anon_sym_bool] = ACTIONS(5248), + [anon_sym_int] = ACTIONS(5248), + [anon_sym_uint] = ACTIONS(5248), + [anon_sym_float] = ACTIONS(5248), + [anon_sym_range] = ACTIONS(5248), + [anon_sym_i8] = ACTIONS(5248), + [anon_sym_i16] = ACTIONS(5248), + [anon_sym_i32] = ACTIONS(5248), + [anon_sym_i64] = ACTIONS(5248), + [anon_sym_u8] = ACTIONS(5248), + [anon_sym_u16] = ACTIONS(5248), + [anon_sym_u32] = ACTIONS(5248), + [anon_sym_u64] = ACTIONS(5248), + [anon_sym_isize] = ACTIONS(5248), + [anon_sym_usize] = ACTIONS(5248), + [anon_sym_f32] = ACTIONS(5248), + [anon_sym_f64] = ACTIONS(5248), + [anon_sym_c_char] = ACTIONS(5248), + [anon_sym_c_schar] = ACTIONS(5248), + [anon_sym_c_uchar] = ACTIONS(5248), + [anon_sym_c_short] = ACTIONS(5248), + [anon_sym_c_ushort] = ACTIONS(5248), + [anon_sym_c_int] = ACTIONS(5248), + [anon_sym_c_uint] = ACTIONS(5248), + [anon_sym_c_long] = ACTIONS(5248), + [anon_sym_c_ulong] = ACTIONS(5248), + [anon_sym_c_longlong] = ACTIONS(5248), + [anon_sym_c_ulonglong] = ACTIONS(5248), + [anon_sym_c_float] = ACTIONS(5248), + [anon_sym_c_double] = ACTIONS(5248), + [anon_sym_c_longdouble] = ACTIONS(5248), + [anon_sym_PLUS_EQ] = ACTIONS(5246), + [anon_sym_DASH_EQ] = ACTIONS(5246), + [anon_sym_STAR_EQ] = ACTIONS(5246), + [anon_sym_SLASH_EQ] = ACTIONS(5246), + [anon_sym_AMP_EQ] = ACTIONS(5246), + [anon_sym_PIPE_EQ] = ACTIONS(5246), + [anon_sym_xor_EQ] = ACTIONS(5246), + [anon_sym_LT_LT_EQ] = ACTIONS(5246), + [anon_sym_GT_GT_EQ] = ACTIONS(5246), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5246), + [anon_sym_return] = ACTIONS(5248), + [anon_sym_yield] = ACTIONS(5248), + [anon_sym_break] = ACTIONS(5248), + [anon_sym_continue] = ACTIONS(5248), + [anon_sym_defer] = ACTIONS(5248), + [anon_sym_errdefer] = ACTIONS(5248), + [anon_sym_if] = ACTIONS(5248), + [anon_sym_else] = ACTIONS(5248), + [anon_sym_while] = ACTIONS(5248), + [anon_sym_expand] = ACTIONS(5248), + [anon_sym_for] = ACTIONS(5248), + [anon_sym_match] = ACTIONS(5248), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5246), + [anon_sym_orelse] = ACTIONS(5248), + [anon_sym_or] = ACTIONS(5248), + [anon_sym_and] = ACTIONS(5248), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5248), + [anon_sym_xor] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5248), + [anon_sym_GT_GT] = ACTIONS(5248), + [anon_sym_LT_LT_PIPE] = ACTIONS(5248), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_catch] = ACTIONS(5248), + [anon_sym_TILDE] = ACTIONS(5246), + [anon_sym_try] = ACTIONS(5248), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_true] = ACTIONS(5248), + [anon_sym_false] = ACTIONS(5248), + [anon_sym_null] = ACTIONS(5248), + [anon_sym_unreachable] = ACTIONS(5248), + [anon_sym_undefined] = ACTIONS(5248), + [sym_sink] = ACTIONS(5248), + [sym_integer] = ACTIONS(5248), + [sym_float] = ACTIONS(5246), + [anon_sym_DQUOTE] = ACTIONS(5246), + [sym_multiline_string] = ACTIONS(5246), + [sym_character] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5246), + }, + [STATE(3245)] = { + [sym_identifier] = ACTIONS(5252), + [anon_sym_func] = ACTIONS(5252), + [anon_sym_c_func] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5252), + [anon_sym_EQ] = ACTIONS(5252), + [anon_sym_struct] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_COMMA] = ACTIONS(5250), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5252), + [anon_sym_DOLLAR] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5252), + [anon_sym_struct_type_BANG] = ACTIONS(5250), + [anon_sym_QMARK] = ACTIONS(5250), + [anon_sym_AT] = ACTIONS(5250), + [anon_sym_STAR] = ACTIONS(5252), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_void] = ACTIONS(5252), + [anon_sym_noreturn] = ACTIONS(5252), + [anon_sym_type] = ACTIONS(5252), + [anon_sym_anyopaque] = ACTIONS(5252), + [anon_sym_bool] = ACTIONS(5252), + [anon_sym_int] = ACTIONS(5252), + [anon_sym_uint] = ACTIONS(5252), + [anon_sym_float] = ACTIONS(5252), + [anon_sym_range] = ACTIONS(5252), + [anon_sym_i8] = ACTIONS(5252), + [anon_sym_i16] = ACTIONS(5252), + [anon_sym_i32] = ACTIONS(5252), + [anon_sym_i64] = ACTIONS(5252), + [anon_sym_u8] = ACTIONS(5252), + [anon_sym_u16] = ACTIONS(5252), + [anon_sym_u32] = ACTIONS(5252), + [anon_sym_u64] = ACTIONS(5252), + [anon_sym_isize] = ACTIONS(5252), + [anon_sym_usize] = ACTIONS(5252), + [anon_sym_f32] = ACTIONS(5252), + [anon_sym_f64] = ACTIONS(5252), + [anon_sym_c_char] = ACTIONS(5252), + [anon_sym_c_schar] = ACTIONS(5252), + [anon_sym_c_uchar] = ACTIONS(5252), + [anon_sym_c_short] = ACTIONS(5252), + [anon_sym_c_ushort] = ACTIONS(5252), + [anon_sym_c_int] = ACTIONS(5252), + [anon_sym_c_uint] = ACTIONS(5252), + [anon_sym_c_long] = ACTIONS(5252), + [anon_sym_c_ulong] = ACTIONS(5252), + [anon_sym_c_longlong] = ACTIONS(5252), + [anon_sym_c_ulonglong] = ACTIONS(5252), + [anon_sym_c_float] = ACTIONS(5252), + [anon_sym_c_double] = ACTIONS(5252), + [anon_sym_c_longdouble] = ACTIONS(5252), + [anon_sym_PLUS_EQ] = ACTIONS(5250), + [anon_sym_DASH_EQ] = ACTIONS(5250), + [anon_sym_STAR_EQ] = ACTIONS(5250), + [anon_sym_SLASH_EQ] = ACTIONS(5250), + [anon_sym_AMP_EQ] = ACTIONS(5250), + [anon_sym_PIPE_EQ] = ACTIONS(5250), + [anon_sym_xor_EQ] = ACTIONS(5250), + [anon_sym_LT_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_GT_EQ] = ACTIONS(5250), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5250), + [anon_sym_return] = ACTIONS(5252), + [anon_sym_yield] = ACTIONS(5252), + [anon_sym_break] = ACTIONS(5252), + [anon_sym_continue] = ACTIONS(5252), + [anon_sym_defer] = ACTIONS(5252), + [anon_sym_errdefer] = ACTIONS(5252), + [anon_sym_if] = ACTIONS(5252), + [anon_sym_else] = ACTIONS(5252), + [anon_sym_while] = ACTIONS(5252), + [anon_sym_expand] = ACTIONS(5252), + [anon_sym_for] = ACTIONS(5252), + [anon_sym_match] = ACTIONS(5252), + [anon_sym_DOT_DOT] = ACTIONS(5252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5250), + [anon_sym_orelse] = ACTIONS(5252), + [anon_sym_or] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_xor] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5252), + [anon_sym_GT_GT] = ACTIONS(5252), + [anon_sym_LT_LT_PIPE] = ACTIONS(5252), + [anon_sym_PLUS] = ACTIONS(5252), + [anon_sym_SLASH] = ACTIONS(5252), + [anon_sym_catch] = ACTIONS(5252), + [anon_sym_TILDE] = ACTIONS(5250), + [anon_sym_try] = ACTIONS(5252), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_true] = ACTIONS(5252), + [anon_sym_false] = ACTIONS(5252), + [anon_sym_null] = ACTIONS(5252), + [anon_sym_unreachable] = ACTIONS(5252), + [anon_sym_undefined] = ACTIONS(5252), + [sym_sink] = ACTIONS(5252), + [sym_integer] = ACTIONS(5252), + [sym_float] = ACTIONS(5250), + [anon_sym_DQUOTE] = ACTIONS(5250), + [sym_multiline_string] = ACTIONS(5250), + [sym_character] = ACTIONS(5250), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5250), + }, + [STATE(3246)] = { + [sym_identifier] = ACTIONS(5444), + [anon_sym_func] = ACTIONS(5444), + [anon_sym_c_func] = ACTIONS(5444), + [anon_sym_BANG] = ACTIONS(5444), + [anon_sym_EQ] = ACTIONS(5444), + [anon_sym_struct] = ACTIONS(5444), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5442), + [anon_sym_COMMA] = ACTIONS(5442), + [anon_sym_RBRACE] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5444), + [anon_sym_DOLLAR] = ACTIONS(5442), + [anon_sym_PIPE] = ACTIONS(5444), + [anon_sym_struct_type_BANG] = ACTIONS(5442), + [anon_sym_QMARK] = ACTIONS(5442), + [anon_sym_AT] = ACTIONS(5442), + [anon_sym_STAR] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_void] = ACTIONS(5444), + [anon_sym_noreturn] = ACTIONS(5444), + [anon_sym_type] = ACTIONS(5444), + [anon_sym_anyopaque] = ACTIONS(5444), + [anon_sym_bool] = ACTIONS(5444), + [anon_sym_int] = ACTIONS(5444), + [anon_sym_uint] = ACTIONS(5444), + [anon_sym_float] = ACTIONS(5444), + [anon_sym_range] = ACTIONS(5444), + [anon_sym_i8] = ACTIONS(5444), + [anon_sym_i16] = ACTIONS(5444), + [anon_sym_i32] = ACTIONS(5444), + [anon_sym_i64] = ACTIONS(5444), + [anon_sym_u8] = ACTIONS(5444), + [anon_sym_u16] = ACTIONS(5444), + [anon_sym_u32] = ACTIONS(5444), + [anon_sym_u64] = ACTIONS(5444), + [anon_sym_isize] = ACTIONS(5444), + [anon_sym_usize] = ACTIONS(5444), + [anon_sym_f32] = ACTIONS(5444), + [anon_sym_f64] = ACTIONS(5444), + [anon_sym_c_char] = ACTIONS(5444), + [anon_sym_c_schar] = ACTIONS(5444), + [anon_sym_c_uchar] = ACTIONS(5444), + [anon_sym_c_short] = ACTIONS(5444), + [anon_sym_c_ushort] = ACTIONS(5444), + [anon_sym_c_int] = ACTIONS(5444), + [anon_sym_c_uint] = ACTIONS(5444), + [anon_sym_c_long] = ACTIONS(5444), + [anon_sym_c_ulong] = ACTIONS(5444), + [anon_sym_c_longlong] = ACTIONS(5444), + [anon_sym_c_ulonglong] = ACTIONS(5444), + [anon_sym_c_float] = ACTIONS(5444), + [anon_sym_c_double] = ACTIONS(5444), + [anon_sym_c_longdouble] = ACTIONS(5444), + [anon_sym_PLUS_EQ] = ACTIONS(5442), + [anon_sym_DASH_EQ] = ACTIONS(5442), + [anon_sym_STAR_EQ] = ACTIONS(5442), + [anon_sym_SLASH_EQ] = ACTIONS(5442), + [anon_sym_AMP_EQ] = ACTIONS(5442), + [anon_sym_PIPE_EQ] = ACTIONS(5442), + [anon_sym_xor_EQ] = ACTIONS(5442), + [anon_sym_LT_LT_EQ] = ACTIONS(5442), + [anon_sym_GT_GT_EQ] = ACTIONS(5442), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5442), + [anon_sym_return] = ACTIONS(5444), + [anon_sym_yield] = ACTIONS(5444), + [anon_sym_break] = ACTIONS(5444), + [anon_sym_continue] = ACTIONS(5444), + [anon_sym_defer] = ACTIONS(5444), + [anon_sym_errdefer] = ACTIONS(5444), + [anon_sym_if] = ACTIONS(5444), + [anon_sym_else] = ACTIONS(5444), + [anon_sym_while] = ACTIONS(5444), + [anon_sym_expand] = ACTIONS(5444), + [anon_sym_for] = ACTIONS(5444), + [anon_sym_match] = ACTIONS(5444), + [anon_sym_DOT_DOT] = ACTIONS(5444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5442), + [anon_sym_orelse] = ACTIONS(5444), + [anon_sym_or] = ACTIONS(5444), + [anon_sym_and] = ACTIONS(5444), + [anon_sym_EQ_EQ] = ACTIONS(5442), + [anon_sym_BANG_EQ] = ACTIONS(5442), + [anon_sym_LT] = ACTIONS(5444), + [anon_sym_LT_EQ] = ACTIONS(5442), + [anon_sym_GT] = ACTIONS(5444), + [anon_sym_GT_EQ] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5444), + [anon_sym_xor] = ACTIONS(5444), + [anon_sym_LT_LT] = ACTIONS(5444), + [anon_sym_GT_GT] = ACTIONS(5444), + [anon_sym_LT_LT_PIPE] = ACTIONS(5444), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_SLASH] = ACTIONS(5444), + [anon_sym_catch] = ACTIONS(5444), + [anon_sym_TILDE] = ACTIONS(5442), + [anon_sym_try] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5444), + [anon_sym_CARET] = ACTIONS(5442), + [anon_sym_true] = ACTIONS(5444), + [anon_sym_false] = ACTIONS(5444), + [anon_sym_null] = ACTIONS(5444), + [anon_sym_unreachable] = ACTIONS(5444), + [anon_sym_undefined] = ACTIONS(5444), + [sym_sink] = ACTIONS(5444), + [sym_integer] = ACTIONS(5444), + [sym_float] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [sym_multiline_string] = ACTIONS(5442), + [sym_character] = ACTIONS(5442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5442), + }, + [STATE(3247)] = { + [sym_identifier] = ACTIONS(5256), + [anon_sym_func] = ACTIONS(5256), + [anon_sym_c_func] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_EQ] = ACTIONS(5256), + [anon_sym_struct] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_DOLLAR] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_struct_type_BANG] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(5254), + [anon_sym_AT] = ACTIONS(5254), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_void] = ACTIONS(5256), + [anon_sym_noreturn] = ACTIONS(5256), + [anon_sym_type] = ACTIONS(5256), + [anon_sym_anyopaque] = ACTIONS(5256), + [anon_sym_bool] = ACTIONS(5256), + [anon_sym_int] = ACTIONS(5256), + [anon_sym_uint] = ACTIONS(5256), + [anon_sym_float] = ACTIONS(5256), + [anon_sym_range] = ACTIONS(5256), + [anon_sym_i8] = ACTIONS(5256), + [anon_sym_i16] = ACTIONS(5256), + [anon_sym_i32] = ACTIONS(5256), + [anon_sym_i64] = ACTIONS(5256), + [anon_sym_u8] = ACTIONS(5256), + [anon_sym_u16] = ACTIONS(5256), + [anon_sym_u32] = ACTIONS(5256), + [anon_sym_u64] = ACTIONS(5256), + [anon_sym_isize] = ACTIONS(5256), + [anon_sym_usize] = ACTIONS(5256), + [anon_sym_f32] = ACTIONS(5256), + [anon_sym_f64] = ACTIONS(5256), + [anon_sym_c_char] = ACTIONS(5256), + [anon_sym_c_schar] = ACTIONS(5256), + [anon_sym_c_uchar] = ACTIONS(5256), + [anon_sym_c_short] = ACTIONS(5256), + [anon_sym_c_ushort] = ACTIONS(5256), + [anon_sym_c_int] = ACTIONS(5256), + [anon_sym_c_uint] = ACTIONS(5256), + [anon_sym_c_long] = ACTIONS(5256), + [anon_sym_c_ulong] = ACTIONS(5256), + [anon_sym_c_longlong] = ACTIONS(5256), + [anon_sym_c_ulonglong] = ACTIONS(5256), + [anon_sym_c_float] = ACTIONS(5256), + [anon_sym_c_double] = ACTIONS(5256), + [anon_sym_c_longdouble] = ACTIONS(5256), + [anon_sym_PLUS_EQ] = ACTIONS(5254), + [anon_sym_DASH_EQ] = ACTIONS(5254), + [anon_sym_STAR_EQ] = ACTIONS(5254), + [anon_sym_SLASH_EQ] = ACTIONS(5254), + [anon_sym_AMP_EQ] = ACTIONS(5254), + [anon_sym_PIPE_EQ] = ACTIONS(5254), + [anon_sym_xor_EQ] = ACTIONS(5254), + [anon_sym_LT_LT_EQ] = ACTIONS(5254), + [anon_sym_GT_GT_EQ] = ACTIONS(5254), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5254), + [anon_sym_return] = ACTIONS(5256), + [anon_sym_yield] = ACTIONS(5256), + [anon_sym_break] = ACTIONS(5256), + [anon_sym_continue] = ACTIONS(5256), + [anon_sym_defer] = ACTIONS(5256), + [anon_sym_errdefer] = ACTIONS(5256), + [anon_sym_if] = ACTIONS(5256), + [anon_sym_else] = ACTIONS(5256), + [anon_sym_while] = ACTIONS(5256), + [anon_sym_expand] = ACTIONS(5256), + [anon_sym_for] = ACTIONS(5256), + [anon_sym_match] = ACTIONS(5256), + [anon_sym_DOT_DOT] = ACTIONS(5256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5254), + [anon_sym_orelse] = ACTIONS(5256), + [anon_sym_or] = ACTIONS(5256), + [anon_sym_and] = ACTIONS(5256), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_xor] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5256), + [anon_sym_GT_GT] = ACTIONS(5256), + [anon_sym_LT_LT_PIPE] = ACTIONS(5256), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_catch] = ACTIONS(5256), + [anon_sym_TILDE] = ACTIONS(5254), + [anon_sym_try] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_true] = ACTIONS(5256), + [anon_sym_false] = ACTIONS(5256), + [anon_sym_null] = ACTIONS(5256), + [anon_sym_unreachable] = ACTIONS(5256), + [anon_sym_undefined] = ACTIONS(5256), + [sym_sink] = ACTIONS(5256), + [sym_integer] = ACTIONS(5256), + [sym_float] = ACTIONS(5254), + [anon_sym_DQUOTE] = ACTIONS(5254), + [sym_multiline_string] = ACTIONS(5254), + [sym_character] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5254), + }, + [STATE(3248)] = { + [sym_identifier] = ACTIONS(5260), + [anon_sym_func] = ACTIONS(5260), + [anon_sym_c_func] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_struct] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_DOLLAR] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_struct_type_BANG] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_AT] = ACTIONS(5258), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_void] = ACTIONS(5260), + [anon_sym_noreturn] = ACTIONS(5260), + [anon_sym_type] = ACTIONS(5260), + [anon_sym_anyopaque] = ACTIONS(5260), + [anon_sym_bool] = ACTIONS(5260), + [anon_sym_int] = ACTIONS(5260), + [anon_sym_uint] = ACTIONS(5260), + [anon_sym_float] = ACTIONS(5260), + [anon_sym_range] = ACTIONS(5260), + [anon_sym_i8] = ACTIONS(5260), + [anon_sym_i16] = ACTIONS(5260), + [anon_sym_i32] = ACTIONS(5260), + [anon_sym_i64] = ACTIONS(5260), + [anon_sym_u8] = ACTIONS(5260), + [anon_sym_u16] = ACTIONS(5260), + [anon_sym_u32] = ACTIONS(5260), + [anon_sym_u64] = ACTIONS(5260), + [anon_sym_isize] = ACTIONS(5260), + [anon_sym_usize] = ACTIONS(5260), + [anon_sym_f32] = ACTIONS(5260), + [anon_sym_f64] = ACTIONS(5260), + [anon_sym_c_char] = ACTIONS(5260), + [anon_sym_c_schar] = ACTIONS(5260), + [anon_sym_c_uchar] = ACTIONS(5260), + [anon_sym_c_short] = ACTIONS(5260), + [anon_sym_c_ushort] = ACTIONS(5260), + [anon_sym_c_int] = ACTIONS(5260), + [anon_sym_c_uint] = ACTIONS(5260), + [anon_sym_c_long] = ACTIONS(5260), + [anon_sym_c_ulong] = ACTIONS(5260), + [anon_sym_c_longlong] = ACTIONS(5260), + [anon_sym_c_ulonglong] = ACTIONS(5260), + [anon_sym_c_float] = ACTIONS(5260), + [anon_sym_c_double] = ACTIONS(5260), + [anon_sym_c_longdouble] = ACTIONS(5260), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_xor_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5258), + [anon_sym_return] = ACTIONS(5260), + [anon_sym_yield] = ACTIONS(5260), + [anon_sym_break] = ACTIONS(5260), + [anon_sym_continue] = ACTIONS(5260), + [anon_sym_defer] = ACTIONS(5260), + [anon_sym_errdefer] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(5260), + [anon_sym_else] = ACTIONS(5260), + [anon_sym_while] = ACTIONS(5260), + [anon_sym_expand] = ACTIONS(5260), + [anon_sym_for] = ACTIONS(5260), + [anon_sym_match] = ACTIONS(5260), + [anon_sym_DOT_DOT] = ACTIONS(5260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5258), + [anon_sym_orelse] = ACTIONS(5260), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_LT_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_LT_LT_PIPE] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_catch] = ACTIONS(5260), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_try] = ACTIONS(5260), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_true] = ACTIONS(5260), + [anon_sym_false] = ACTIONS(5260), + [anon_sym_null] = ACTIONS(5260), + [anon_sym_unreachable] = ACTIONS(5260), + [anon_sym_undefined] = ACTIONS(5260), + [sym_sink] = ACTIONS(5260), + [sym_integer] = ACTIONS(5260), + [sym_float] = ACTIONS(5258), + [anon_sym_DQUOTE] = ACTIONS(5258), + [sym_multiline_string] = ACTIONS(5258), + [sym_character] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5258), + }, + [STATE(3249)] = { + [sym_identifier] = ACTIONS(5760), + [anon_sym_func] = ACTIONS(5760), + [anon_sym_c_func] = ACTIONS(5760), + [anon_sym_BANG] = ACTIONS(5760), + [anon_sym_EQ] = ACTIONS(5760), + [anon_sym_struct] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(5758), + [anon_sym_DASH] = ACTIONS(5760), + [anon_sym_DOLLAR] = ACTIONS(5758), + [anon_sym_PIPE] = ACTIONS(5760), + [anon_sym_struct_type_BANG] = ACTIONS(5758), + [anon_sym_QMARK] = ACTIONS(5758), + [anon_sym_AT] = ACTIONS(5758), + [anon_sym_STAR] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(5758), + [anon_sym_void] = ACTIONS(5760), + [anon_sym_noreturn] = ACTIONS(5760), + [anon_sym_type] = ACTIONS(5760), + [anon_sym_anyopaque] = ACTIONS(5760), + [anon_sym_bool] = ACTIONS(5760), + [anon_sym_int] = ACTIONS(5760), + [anon_sym_uint] = ACTIONS(5760), + [anon_sym_float] = ACTIONS(5760), + [anon_sym_range] = ACTIONS(5760), + [anon_sym_i8] = ACTIONS(5760), + [anon_sym_i16] = ACTIONS(5760), + [anon_sym_i32] = ACTIONS(5760), + [anon_sym_i64] = ACTIONS(5760), + [anon_sym_u8] = ACTIONS(5760), + [anon_sym_u16] = ACTIONS(5760), + [anon_sym_u32] = ACTIONS(5760), + [anon_sym_u64] = ACTIONS(5760), + [anon_sym_isize] = ACTIONS(5760), + [anon_sym_usize] = ACTIONS(5760), + [anon_sym_f32] = ACTIONS(5760), + [anon_sym_f64] = ACTIONS(5760), + [anon_sym_c_char] = ACTIONS(5760), + [anon_sym_c_schar] = ACTIONS(5760), + [anon_sym_c_uchar] = ACTIONS(5760), + [anon_sym_c_short] = ACTIONS(5760), + [anon_sym_c_ushort] = ACTIONS(5760), + [anon_sym_c_int] = ACTIONS(5760), + [anon_sym_c_uint] = ACTIONS(5760), + [anon_sym_c_long] = ACTIONS(5760), + [anon_sym_c_ulong] = ACTIONS(5760), + [anon_sym_c_longlong] = ACTIONS(5760), + [anon_sym_c_ulonglong] = ACTIONS(5760), + [anon_sym_c_float] = ACTIONS(5760), + [anon_sym_c_double] = ACTIONS(5760), + [anon_sym_c_longdouble] = ACTIONS(5760), + [anon_sym_PLUS_EQ] = ACTIONS(5758), + [anon_sym_DASH_EQ] = ACTIONS(5758), + [anon_sym_STAR_EQ] = ACTIONS(5758), + [anon_sym_SLASH_EQ] = ACTIONS(5758), + [anon_sym_AMP_EQ] = ACTIONS(5758), + [anon_sym_PIPE_EQ] = ACTIONS(5758), + [anon_sym_xor_EQ] = ACTIONS(5758), + [anon_sym_LT_LT_EQ] = ACTIONS(5758), + [anon_sym_GT_GT_EQ] = ACTIONS(5758), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5758), + [anon_sym_return] = ACTIONS(5760), + [anon_sym_yield] = ACTIONS(5760), + [anon_sym_break] = ACTIONS(5760), + [anon_sym_continue] = ACTIONS(5760), + [anon_sym_defer] = ACTIONS(5760), + [anon_sym_errdefer] = ACTIONS(5760), + [anon_sym_if] = ACTIONS(5760), + [anon_sym_else] = ACTIONS(5760), + [anon_sym_while] = ACTIONS(5760), + [anon_sym_expand] = ACTIONS(5760), + [anon_sym_for] = ACTIONS(5760), + [anon_sym_match] = ACTIONS(5760), + [anon_sym_DOT_DOT] = ACTIONS(5760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5758), + [anon_sym_orelse] = ACTIONS(5760), + [anon_sym_or] = ACTIONS(5760), + [anon_sym_and] = ACTIONS(5760), + [anon_sym_EQ_EQ] = ACTIONS(5758), + [anon_sym_BANG_EQ] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_LT_EQ] = ACTIONS(5758), + [anon_sym_GT] = ACTIONS(5760), + [anon_sym_GT_EQ] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(5760), + [anon_sym_xor] = ACTIONS(5760), + [anon_sym_LT_LT] = ACTIONS(5760), + [anon_sym_GT_GT] = ACTIONS(5760), + [anon_sym_LT_LT_PIPE] = ACTIONS(5760), + [anon_sym_PLUS] = ACTIONS(5760), + [anon_sym_SLASH] = ACTIONS(5760), + [anon_sym_catch] = ACTIONS(5760), + [anon_sym_TILDE] = ACTIONS(5758), + [anon_sym_try] = ACTIONS(5760), + [anon_sym_DOT] = ACTIONS(5760), + [anon_sym_CARET] = ACTIONS(5758), + [anon_sym_true] = ACTIONS(5760), + [anon_sym_false] = ACTIONS(5760), + [anon_sym_null] = ACTIONS(5760), + [anon_sym_unreachable] = ACTIONS(5760), + [anon_sym_undefined] = ACTIONS(5760), + [sym_sink] = ACTIONS(5760), + [sym_integer] = ACTIONS(5760), + [sym_float] = ACTIONS(5758), + [anon_sym_DQUOTE] = ACTIONS(5758), + [sym_multiline_string] = ACTIONS(5758), + [sym_character] = ACTIONS(5758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5758), + }, + [STATE(3250)] = { + [sym_identifier] = ACTIONS(4518), + [anon_sym_func] = ACTIONS(4518), + [anon_sym_c_func] = ACTIONS(4518), + [anon_sym_BANG] = ACTIONS(4518), + [anon_sym_EQ] = ACTIONS(4518), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_COMMA] = ACTIONS(4516), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4518), + [anon_sym_DOLLAR] = ACTIONS(4516), + [anon_sym_PIPE] = ACTIONS(4518), + [anon_sym_struct_type_BANG] = ACTIONS(4516), + [anon_sym_QMARK] = ACTIONS(4516), + [anon_sym_AT] = ACTIONS(4516), + [anon_sym_STAR] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_void] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym_type] = ACTIONS(4518), + [anon_sym_anyopaque] = ACTIONS(4518), + [anon_sym_bool] = ACTIONS(4518), + [anon_sym_int] = ACTIONS(4518), + [anon_sym_uint] = ACTIONS(4518), + [anon_sym_float] = ACTIONS(4518), + [anon_sym_range] = ACTIONS(4518), + [anon_sym_i8] = ACTIONS(4518), + [anon_sym_i16] = ACTIONS(4518), + [anon_sym_i32] = ACTIONS(4518), + [anon_sym_i64] = ACTIONS(4518), + [anon_sym_u8] = ACTIONS(4518), + [anon_sym_u16] = ACTIONS(4518), + [anon_sym_u32] = ACTIONS(4518), + [anon_sym_u64] = ACTIONS(4518), + [anon_sym_isize] = ACTIONS(4518), + [anon_sym_usize] = ACTIONS(4518), + [anon_sym_f32] = ACTIONS(4518), + [anon_sym_f64] = ACTIONS(4518), + [anon_sym_c_char] = ACTIONS(4518), + [anon_sym_c_schar] = ACTIONS(4518), + [anon_sym_c_uchar] = ACTIONS(4518), + [anon_sym_c_short] = ACTIONS(4518), + [anon_sym_c_ushort] = ACTIONS(4518), + [anon_sym_c_int] = ACTIONS(4518), + [anon_sym_c_uint] = ACTIONS(4518), + [anon_sym_c_long] = ACTIONS(4518), + [anon_sym_c_ulong] = ACTIONS(4518), + [anon_sym_c_longlong] = ACTIONS(4518), + [anon_sym_c_ulonglong] = ACTIONS(4518), + [anon_sym_c_float] = ACTIONS(4518), + [anon_sym_c_double] = ACTIONS(4518), + [anon_sym_c_longdouble] = ACTIONS(4518), + [anon_sym_PLUS_EQ] = ACTIONS(4516), + [anon_sym_DASH_EQ] = ACTIONS(4516), + [anon_sym_STAR_EQ] = ACTIONS(4516), + [anon_sym_SLASH_EQ] = ACTIONS(4516), + [anon_sym_AMP_EQ] = ACTIONS(4516), + [anon_sym_PIPE_EQ] = ACTIONS(4516), + [anon_sym_xor_EQ] = ACTIONS(4516), + [anon_sym_LT_LT_EQ] = ACTIONS(4516), + [anon_sym_GT_GT_EQ] = ACTIONS(4516), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4516), + [anon_sym_return] = ACTIONS(4518), + [anon_sym_yield] = ACTIONS(4518), + [anon_sym_break] = ACTIONS(4518), + [anon_sym_continue] = ACTIONS(4518), + [anon_sym_defer] = ACTIONS(4518), + [anon_sym_errdefer] = ACTIONS(4518), + [anon_sym_if] = ACTIONS(4518), + [anon_sym_else] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4518), + [anon_sym_expand] = ACTIONS(4518), + [anon_sym_for] = ACTIONS(4518), + [anon_sym_match] = ACTIONS(4518), + [anon_sym_DOT_DOT] = ACTIONS(4518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4516), + [anon_sym_orelse] = ACTIONS(4518), + [anon_sym_or] = ACTIONS(4518), + [anon_sym_and] = ACTIONS(4518), + [anon_sym_EQ_EQ] = ACTIONS(4516), + [anon_sym_BANG_EQ] = ACTIONS(4516), + [anon_sym_LT] = ACTIONS(4518), + [anon_sym_LT_EQ] = ACTIONS(4516), + [anon_sym_GT] = ACTIONS(4518), + [anon_sym_GT_EQ] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4518), + [anon_sym_xor] = ACTIONS(4518), + [anon_sym_LT_LT] = ACTIONS(4518), + [anon_sym_GT_GT] = ACTIONS(4518), + [anon_sym_LT_LT_PIPE] = ACTIONS(4518), + [anon_sym_PLUS] = ACTIONS(4518), + [anon_sym_SLASH] = ACTIONS(4518), + [anon_sym_catch] = ACTIONS(4518), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_try] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4518), + [anon_sym_CARET] = ACTIONS(4516), + [anon_sym_true] = ACTIONS(4518), + [anon_sym_false] = ACTIONS(4518), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_unreachable] = ACTIONS(4518), + [anon_sym_undefined] = ACTIONS(4518), + [sym_sink] = ACTIONS(4518), + [sym_integer] = ACTIONS(4518), + [sym_float] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym_multiline_string] = ACTIONS(4516), + [sym_character] = ACTIONS(4516), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4516), + }, + [STATE(3251)] = { + [sym_identifier] = ACTIONS(4522), + [anon_sym_func] = ACTIONS(4522), + [anon_sym_c_func] = ACTIONS(4522), + [anon_sym_BANG] = ACTIONS(4522), + [anon_sym_EQ] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_COMMA] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_DOLLAR] = ACTIONS(4520), + [anon_sym_PIPE] = ACTIONS(4522), + [anon_sym_struct_type_BANG] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4520), + [anon_sym_AT] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_void] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym_type] = ACTIONS(4522), + [anon_sym_anyopaque] = ACTIONS(4522), + [anon_sym_bool] = ACTIONS(4522), + [anon_sym_int] = ACTIONS(4522), + [anon_sym_uint] = ACTIONS(4522), + [anon_sym_float] = ACTIONS(4522), + [anon_sym_range] = ACTIONS(4522), + [anon_sym_i8] = ACTIONS(4522), + [anon_sym_i16] = ACTIONS(4522), + [anon_sym_i32] = ACTIONS(4522), + [anon_sym_i64] = ACTIONS(4522), + [anon_sym_u8] = ACTIONS(4522), + [anon_sym_u16] = ACTIONS(4522), + [anon_sym_u32] = ACTIONS(4522), + [anon_sym_u64] = ACTIONS(4522), + [anon_sym_isize] = ACTIONS(4522), + [anon_sym_usize] = ACTIONS(4522), + [anon_sym_f32] = ACTIONS(4522), + [anon_sym_f64] = ACTIONS(4522), + [anon_sym_c_char] = ACTIONS(4522), + [anon_sym_c_schar] = ACTIONS(4522), + [anon_sym_c_uchar] = ACTIONS(4522), + [anon_sym_c_short] = ACTIONS(4522), + [anon_sym_c_ushort] = ACTIONS(4522), + [anon_sym_c_int] = ACTIONS(4522), + [anon_sym_c_uint] = ACTIONS(4522), + [anon_sym_c_long] = ACTIONS(4522), + [anon_sym_c_ulong] = ACTIONS(4522), + [anon_sym_c_longlong] = ACTIONS(4522), + [anon_sym_c_ulonglong] = ACTIONS(4522), + [anon_sym_c_float] = ACTIONS(4522), + [anon_sym_c_double] = ACTIONS(4522), + [anon_sym_c_longdouble] = ACTIONS(4522), + [anon_sym_PLUS_EQ] = ACTIONS(4520), + [anon_sym_DASH_EQ] = ACTIONS(4520), + [anon_sym_STAR_EQ] = ACTIONS(4520), + [anon_sym_SLASH_EQ] = ACTIONS(4520), + [anon_sym_AMP_EQ] = ACTIONS(4520), + [anon_sym_PIPE_EQ] = ACTIONS(4520), + [anon_sym_xor_EQ] = ACTIONS(4520), + [anon_sym_LT_LT_EQ] = ACTIONS(4520), + [anon_sym_GT_GT_EQ] = ACTIONS(4520), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4520), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_yield] = ACTIONS(4522), + [anon_sym_break] = ACTIONS(4522), + [anon_sym_continue] = ACTIONS(4522), + [anon_sym_defer] = ACTIONS(4522), + [anon_sym_errdefer] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_else] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_expand] = ACTIONS(4522), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_match] = ACTIONS(4522), + [anon_sym_DOT_DOT] = ACTIONS(4522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4520), + [anon_sym_orelse] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4522), + [anon_sym_and] = ACTIONS(4522), + [anon_sym_EQ_EQ] = ACTIONS(4520), + [anon_sym_BANG_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_GT] = ACTIONS(4522), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_xor] = ACTIONS(4522), + [anon_sym_LT_LT] = ACTIONS(4522), + [anon_sym_GT_GT] = ACTIONS(4522), + [anon_sym_LT_LT_PIPE] = ACTIONS(4522), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_SLASH] = ACTIONS(4522), + [anon_sym_catch] = ACTIONS(4522), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4522), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_true] = ACTIONS(4522), + [anon_sym_false] = ACTIONS(4522), + [anon_sym_null] = ACTIONS(4522), + [anon_sym_unreachable] = ACTIONS(4522), + [anon_sym_undefined] = ACTIONS(4522), + [sym_sink] = ACTIONS(4522), + [sym_integer] = ACTIONS(4522), + [sym_float] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [sym_multiline_string] = ACTIONS(4520), + [sym_character] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4520), + }, + [STATE(3252)] = { + [sym_identifier] = ACTIONS(4526), + [anon_sym_func] = ACTIONS(4526), + [anon_sym_c_func] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_DOLLAR] = ACTIONS(4524), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_struct_type_BANG] = ACTIONS(4524), + [anon_sym_QMARK] = ACTIONS(4524), + [anon_sym_AT] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_void] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym_type] = ACTIONS(4526), + [anon_sym_anyopaque] = ACTIONS(4526), + [anon_sym_bool] = ACTIONS(4526), + [anon_sym_int] = ACTIONS(4526), + [anon_sym_uint] = ACTIONS(4526), + [anon_sym_float] = ACTIONS(4526), + [anon_sym_range] = ACTIONS(4526), + [anon_sym_i8] = ACTIONS(4526), + [anon_sym_i16] = ACTIONS(4526), + [anon_sym_i32] = ACTIONS(4526), + [anon_sym_i64] = ACTIONS(4526), + [anon_sym_u8] = ACTIONS(4526), + [anon_sym_u16] = ACTIONS(4526), + [anon_sym_u32] = ACTIONS(4526), + [anon_sym_u64] = ACTIONS(4526), + [anon_sym_isize] = ACTIONS(4526), + [anon_sym_usize] = ACTIONS(4526), + [anon_sym_f32] = ACTIONS(4526), + [anon_sym_f64] = ACTIONS(4526), + [anon_sym_c_char] = ACTIONS(4526), + [anon_sym_c_schar] = ACTIONS(4526), + [anon_sym_c_uchar] = ACTIONS(4526), + [anon_sym_c_short] = ACTIONS(4526), + [anon_sym_c_ushort] = ACTIONS(4526), + [anon_sym_c_int] = ACTIONS(4526), + [anon_sym_c_uint] = ACTIONS(4526), + [anon_sym_c_long] = ACTIONS(4526), + [anon_sym_c_ulong] = ACTIONS(4526), + [anon_sym_c_longlong] = ACTIONS(4526), + [anon_sym_c_ulonglong] = ACTIONS(4526), + [anon_sym_c_float] = ACTIONS(4526), + [anon_sym_c_double] = ACTIONS(4526), + [anon_sym_c_longdouble] = ACTIONS(4526), + [anon_sym_PLUS_EQ] = ACTIONS(4524), + [anon_sym_DASH_EQ] = ACTIONS(4524), + [anon_sym_STAR_EQ] = ACTIONS(4524), + [anon_sym_SLASH_EQ] = ACTIONS(4524), + [anon_sym_AMP_EQ] = ACTIONS(4524), + [anon_sym_PIPE_EQ] = ACTIONS(4524), + [anon_sym_xor_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_yield] = ACTIONS(4526), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_defer] = ACTIONS(4526), + [anon_sym_errdefer] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_else] = ACTIONS(4526), + [anon_sym_while] = ACTIONS(4526), + [anon_sym_expand] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_match] = ACTIONS(4526), + [anon_sym_DOT_DOT] = ACTIONS(4526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4524), + [anon_sym_orelse] = ACTIONS(4526), + [anon_sym_or] = ACTIONS(4526), + [anon_sym_and] = ACTIONS(4526), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_xor] = ACTIONS(4526), + [anon_sym_LT_LT] = ACTIONS(4526), + [anon_sym_GT_GT] = ACTIONS(4526), + [anon_sym_LT_LT_PIPE] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_catch] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4524), + [anon_sym_try] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4524), + [anon_sym_true] = ACTIONS(4526), + [anon_sym_false] = ACTIONS(4526), + [anon_sym_null] = ACTIONS(4526), + [anon_sym_unreachable] = ACTIONS(4526), + [anon_sym_undefined] = ACTIONS(4526), + [sym_sink] = ACTIONS(4526), + [sym_integer] = ACTIONS(4526), + [sym_float] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4524), + [sym_multiline_string] = ACTIONS(4524), + [sym_character] = ACTIONS(4524), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4524), + }, + [STATE(3253)] = { + [sym_identifier] = ACTIONS(5264), + [anon_sym_func] = ACTIONS(5264), + [anon_sym_c_func] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_EQ] = ACTIONS(5264), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_RBRACE] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_DOLLAR] = ACTIONS(5262), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_struct_type_BANG] = ACTIONS(5262), + [anon_sym_QMARK] = ACTIONS(5262), + [anon_sym_AT] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_void] = ACTIONS(5264), + [anon_sym_noreturn] = ACTIONS(5264), + [anon_sym_type] = ACTIONS(5264), + [anon_sym_anyopaque] = ACTIONS(5264), + [anon_sym_bool] = ACTIONS(5264), + [anon_sym_int] = ACTIONS(5264), + [anon_sym_uint] = ACTIONS(5264), + [anon_sym_float] = ACTIONS(5264), + [anon_sym_range] = ACTIONS(5264), + [anon_sym_i8] = ACTIONS(5264), + [anon_sym_i16] = ACTIONS(5264), + [anon_sym_i32] = ACTIONS(5264), + [anon_sym_i64] = ACTIONS(5264), + [anon_sym_u8] = ACTIONS(5264), + [anon_sym_u16] = ACTIONS(5264), + [anon_sym_u32] = ACTIONS(5264), + [anon_sym_u64] = ACTIONS(5264), + [anon_sym_isize] = ACTIONS(5264), + [anon_sym_usize] = ACTIONS(5264), + [anon_sym_f32] = ACTIONS(5264), + [anon_sym_f64] = ACTIONS(5264), + [anon_sym_c_char] = ACTIONS(5264), + [anon_sym_c_schar] = ACTIONS(5264), + [anon_sym_c_uchar] = ACTIONS(5264), + [anon_sym_c_short] = ACTIONS(5264), + [anon_sym_c_ushort] = ACTIONS(5264), + [anon_sym_c_int] = ACTIONS(5264), + [anon_sym_c_uint] = ACTIONS(5264), + [anon_sym_c_long] = ACTIONS(5264), + [anon_sym_c_ulong] = ACTIONS(5264), + [anon_sym_c_longlong] = ACTIONS(5264), + [anon_sym_c_ulonglong] = ACTIONS(5264), + [anon_sym_c_float] = ACTIONS(5264), + [anon_sym_c_double] = ACTIONS(5264), + [anon_sym_c_longdouble] = ACTIONS(5264), + [anon_sym_PLUS_EQ] = ACTIONS(5262), + [anon_sym_DASH_EQ] = ACTIONS(5262), + [anon_sym_STAR_EQ] = ACTIONS(5262), + [anon_sym_SLASH_EQ] = ACTIONS(5262), + [anon_sym_AMP_EQ] = ACTIONS(5262), + [anon_sym_PIPE_EQ] = ACTIONS(5262), + [anon_sym_xor_EQ] = ACTIONS(5262), + [anon_sym_LT_LT_EQ] = ACTIONS(5262), + [anon_sym_GT_GT_EQ] = ACTIONS(5262), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5262), + [anon_sym_return] = ACTIONS(5264), + [anon_sym_yield] = ACTIONS(5264), + [anon_sym_break] = ACTIONS(5264), + [anon_sym_continue] = ACTIONS(5264), + [anon_sym_defer] = ACTIONS(5264), + [anon_sym_errdefer] = ACTIONS(5264), + [anon_sym_if] = ACTIONS(5264), + [anon_sym_else] = ACTIONS(5264), + [anon_sym_while] = ACTIONS(5264), + [anon_sym_expand] = ACTIONS(5264), + [anon_sym_for] = ACTIONS(5264), + [anon_sym_match] = ACTIONS(5264), + [anon_sym_DOT_DOT] = ACTIONS(5264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5262), + [anon_sym_orelse] = ACTIONS(5264), + [anon_sym_or] = ACTIONS(5264), + [anon_sym_and] = ACTIONS(5264), + [anon_sym_EQ_EQ] = ACTIONS(5262), + [anon_sym_BANG_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [anon_sym_xor] = ACTIONS(5264), + [anon_sym_LT_LT] = ACTIONS(5264), + [anon_sym_GT_GT] = ACTIONS(5264), + [anon_sym_LT_LT_PIPE] = ACTIONS(5264), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_catch] = ACTIONS(5264), + [anon_sym_TILDE] = ACTIONS(5262), + [anon_sym_try] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_true] = ACTIONS(5264), + [anon_sym_false] = ACTIONS(5264), + [anon_sym_null] = ACTIONS(5264), + [anon_sym_unreachable] = ACTIONS(5264), + [anon_sym_undefined] = ACTIONS(5264), + [sym_sink] = ACTIONS(5264), + [sym_integer] = ACTIONS(5264), + [sym_float] = ACTIONS(5262), + [anon_sym_DQUOTE] = ACTIONS(5262), + [sym_multiline_string] = ACTIONS(5262), + [sym_character] = ACTIONS(5262), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5262), + }, + [STATE(3254)] = { + [sym_identifier] = ACTIONS(5268), + [anon_sym_func] = ACTIONS(5268), + [anon_sym_c_func] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5268), + [anon_sym_struct] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(5266), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_struct_type_BANG] = ACTIONS(5266), + [anon_sym_QMARK] = ACTIONS(5266), + [anon_sym_AT] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_void] = ACTIONS(5268), + [anon_sym_noreturn] = ACTIONS(5268), + [anon_sym_type] = ACTIONS(5268), + [anon_sym_anyopaque] = ACTIONS(5268), + [anon_sym_bool] = ACTIONS(5268), + [anon_sym_int] = ACTIONS(5268), + [anon_sym_uint] = ACTIONS(5268), + [anon_sym_float] = ACTIONS(5268), + [anon_sym_range] = ACTIONS(5268), + [anon_sym_i8] = ACTIONS(5268), + [anon_sym_i16] = ACTIONS(5268), + [anon_sym_i32] = ACTIONS(5268), + [anon_sym_i64] = ACTIONS(5268), + [anon_sym_u8] = ACTIONS(5268), + [anon_sym_u16] = ACTIONS(5268), + [anon_sym_u32] = ACTIONS(5268), + [anon_sym_u64] = ACTIONS(5268), + [anon_sym_isize] = ACTIONS(5268), + [anon_sym_usize] = ACTIONS(5268), + [anon_sym_f32] = ACTIONS(5268), + [anon_sym_f64] = ACTIONS(5268), + [anon_sym_c_char] = ACTIONS(5268), + [anon_sym_c_schar] = ACTIONS(5268), + [anon_sym_c_uchar] = ACTIONS(5268), + [anon_sym_c_short] = ACTIONS(5268), + [anon_sym_c_ushort] = ACTIONS(5268), + [anon_sym_c_int] = ACTIONS(5268), + [anon_sym_c_uint] = ACTIONS(5268), + [anon_sym_c_long] = ACTIONS(5268), + [anon_sym_c_ulong] = ACTIONS(5268), + [anon_sym_c_longlong] = ACTIONS(5268), + [anon_sym_c_ulonglong] = ACTIONS(5268), + [anon_sym_c_float] = ACTIONS(5268), + [anon_sym_c_double] = ACTIONS(5268), + [anon_sym_c_longdouble] = ACTIONS(5268), + [anon_sym_PLUS_EQ] = ACTIONS(5266), + [anon_sym_DASH_EQ] = ACTIONS(5266), + [anon_sym_STAR_EQ] = ACTIONS(5266), + [anon_sym_SLASH_EQ] = ACTIONS(5266), + [anon_sym_AMP_EQ] = ACTIONS(5266), + [anon_sym_PIPE_EQ] = ACTIONS(5266), + [anon_sym_xor_EQ] = ACTIONS(5266), + [anon_sym_LT_LT_EQ] = ACTIONS(5266), + [anon_sym_GT_GT_EQ] = ACTIONS(5266), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5266), + [anon_sym_return] = ACTIONS(5268), + [anon_sym_yield] = ACTIONS(5268), + [anon_sym_break] = ACTIONS(5268), + [anon_sym_continue] = ACTIONS(5268), + [anon_sym_defer] = ACTIONS(5268), + [anon_sym_errdefer] = ACTIONS(5268), + [anon_sym_if] = ACTIONS(5268), + [anon_sym_else] = ACTIONS(5268), + [anon_sym_while] = ACTIONS(5268), + [anon_sym_expand] = ACTIONS(5268), + [anon_sym_for] = ACTIONS(5268), + [anon_sym_match] = ACTIONS(5268), + [anon_sym_DOT_DOT] = ACTIONS(5268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5266), + [anon_sym_orelse] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5268), + [anon_sym_and] = ACTIONS(5268), + [anon_sym_EQ_EQ] = ACTIONS(5266), + [anon_sym_BANG_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_GT_EQ] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5268), + [anon_sym_xor] = ACTIONS(5268), + [anon_sym_LT_LT] = ACTIONS(5268), + [anon_sym_GT_GT] = ACTIONS(5268), + [anon_sym_LT_LT_PIPE] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_catch] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(5266), + [anon_sym_try] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_true] = ACTIONS(5268), + [anon_sym_false] = ACTIONS(5268), + [anon_sym_null] = ACTIONS(5268), + [anon_sym_unreachable] = ACTIONS(5268), + [anon_sym_undefined] = ACTIONS(5268), + [sym_sink] = ACTIONS(5268), + [sym_integer] = ACTIONS(5268), + [sym_float] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5266), + [sym_multiline_string] = ACTIONS(5266), + [sym_character] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5266), + }, + [STATE(3255)] = { + [sym_identifier] = ACTIONS(5272), + [anon_sym_func] = ACTIONS(5272), + [anon_sym_c_func] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(5272), + [anon_sym_struct] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_DOLLAR] = ACTIONS(5270), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_struct_type_BANG] = ACTIONS(5270), + [anon_sym_QMARK] = ACTIONS(5270), + [anon_sym_AT] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_void] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym_type] = ACTIONS(5272), + [anon_sym_anyopaque] = ACTIONS(5272), + [anon_sym_bool] = ACTIONS(5272), + [anon_sym_int] = ACTIONS(5272), + [anon_sym_uint] = ACTIONS(5272), + [anon_sym_float] = ACTIONS(5272), + [anon_sym_range] = ACTIONS(5272), + [anon_sym_i8] = ACTIONS(5272), + [anon_sym_i16] = ACTIONS(5272), + [anon_sym_i32] = ACTIONS(5272), + [anon_sym_i64] = ACTIONS(5272), + [anon_sym_u8] = ACTIONS(5272), + [anon_sym_u16] = ACTIONS(5272), + [anon_sym_u32] = ACTIONS(5272), + [anon_sym_u64] = ACTIONS(5272), + [anon_sym_isize] = ACTIONS(5272), + [anon_sym_usize] = ACTIONS(5272), + [anon_sym_f32] = ACTIONS(5272), + [anon_sym_f64] = ACTIONS(5272), + [anon_sym_c_char] = ACTIONS(5272), + [anon_sym_c_schar] = ACTIONS(5272), + [anon_sym_c_uchar] = ACTIONS(5272), + [anon_sym_c_short] = ACTIONS(5272), + [anon_sym_c_ushort] = ACTIONS(5272), + [anon_sym_c_int] = ACTIONS(5272), + [anon_sym_c_uint] = ACTIONS(5272), + [anon_sym_c_long] = ACTIONS(5272), + [anon_sym_c_ulong] = ACTIONS(5272), + [anon_sym_c_longlong] = ACTIONS(5272), + [anon_sym_c_ulonglong] = ACTIONS(5272), + [anon_sym_c_float] = ACTIONS(5272), + [anon_sym_c_double] = ACTIONS(5272), + [anon_sym_c_longdouble] = ACTIONS(5272), + [anon_sym_PLUS_EQ] = ACTIONS(5270), + [anon_sym_DASH_EQ] = ACTIONS(5270), + [anon_sym_STAR_EQ] = ACTIONS(5270), + [anon_sym_SLASH_EQ] = ACTIONS(5270), + [anon_sym_AMP_EQ] = ACTIONS(5270), + [anon_sym_PIPE_EQ] = ACTIONS(5270), + [anon_sym_xor_EQ] = ACTIONS(5270), + [anon_sym_LT_LT_EQ] = ACTIONS(5270), + [anon_sym_GT_GT_EQ] = ACTIONS(5270), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5270), + [anon_sym_return] = ACTIONS(5272), + [anon_sym_yield] = ACTIONS(5272), + [anon_sym_break] = ACTIONS(5272), + [anon_sym_continue] = ACTIONS(5272), + [anon_sym_defer] = ACTIONS(5272), + [anon_sym_errdefer] = ACTIONS(5272), + [anon_sym_if] = ACTIONS(5272), + [anon_sym_else] = ACTIONS(5272), + [anon_sym_while] = ACTIONS(5272), + [anon_sym_expand] = ACTIONS(5272), + [anon_sym_for] = ACTIONS(5272), + [anon_sym_match] = ACTIONS(5272), + [anon_sym_DOT_DOT] = ACTIONS(5272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5270), + [anon_sym_orelse] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5272), + [anon_sym_and] = ACTIONS(5272), + [anon_sym_EQ_EQ] = ACTIONS(5270), + [anon_sym_BANG_EQ] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_GT_EQ] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5272), + [anon_sym_xor] = ACTIONS(5272), + [anon_sym_LT_LT] = ACTIONS(5272), + [anon_sym_GT_GT] = ACTIONS(5272), + [anon_sym_LT_LT_PIPE] = ACTIONS(5272), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_catch] = ACTIONS(5272), + [anon_sym_TILDE] = ACTIONS(5270), + [anon_sym_try] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_true] = ACTIONS(5272), + [anon_sym_false] = ACTIONS(5272), + [anon_sym_null] = ACTIONS(5272), + [anon_sym_unreachable] = ACTIONS(5272), + [anon_sym_undefined] = ACTIONS(5272), + [sym_sink] = ACTIONS(5272), + [sym_integer] = ACTIONS(5272), + [sym_float] = ACTIONS(5270), + [anon_sym_DQUOTE] = ACTIONS(5270), + [sym_multiline_string] = ACTIONS(5270), + [sym_character] = ACTIONS(5270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5270), + }, + [STATE(3256)] = { + [sym_identifier] = ACTIONS(4534), + [anon_sym_func] = ACTIONS(4534), + [anon_sym_c_func] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_COMMA] = ACTIONS(4532), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4532), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_struct_type_BANG] = ACTIONS(4532), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_AT] = ACTIONS(4532), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_void] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym_type] = ACTIONS(4534), + [anon_sym_anyopaque] = ACTIONS(4534), + [anon_sym_bool] = ACTIONS(4534), + [anon_sym_int] = ACTIONS(4534), + [anon_sym_uint] = ACTIONS(4534), + [anon_sym_float] = ACTIONS(4534), + [anon_sym_range] = ACTIONS(4534), + [anon_sym_i8] = ACTIONS(4534), + [anon_sym_i16] = ACTIONS(4534), + [anon_sym_i32] = ACTIONS(4534), + [anon_sym_i64] = ACTIONS(4534), + [anon_sym_u8] = ACTIONS(4534), + [anon_sym_u16] = ACTIONS(4534), + [anon_sym_u32] = ACTIONS(4534), + [anon_sym_u64] = ACTIONS(4534), + [anon_sym_isize] = ACTIONS(4534), + [anon_sym_usize] = ACTIONS(4534), + [anon_sym_f32] = ACTIONS(4534), + [anon_sym_f64] = ACTIONS(4534), + [anon_sym_c_char] = ACTIONS(4534), + [anon_sym_c_schar] = ACTIONS(4534), + [anon_sym_c_uchar] = ACTIONS(4534), + [anon_sym_c_short] = ACTIONS(4534), + [anon_sym_c_ushort] = ACTIONS(4534), + [anon_sym_c_int] = ACTIONS(4534), + [anon_sym_c_uint] = ACTIONS(4534), + [anon_sym_c_long] = ACTIONS(4534), + [anon_sym_c_ulong] = ACTIONS(4534), + [anon_sym_c_longlong] = ACTIONS(4534), + [anon_sym_c_ulonglong] = ACTIONS(4534), + [anon_sym_c_float] = ACTIONS(4534), + [anon_sym_c_double] = ACTIONS(4534), + [anon_sym_c_longdouble] = ACTIONS(4534), + [anon_sym_PLUS_EQ] = ACTIONS(4532), + [anon_sym_DASH_EQ] = ACTIONS(4532), + [anon_sym_STAR_EQ] = ACTIONS(4532), + [anon_sym_SLASH_EQ] = ACTIONS(4532), + [anon_sym_AMP_EQ] = ACTIONS(4532), + [anon_sym_PIPE_EQ] = ACTIONS(4532), + [anon_sym_xor_EQ] = ACTIONS(4532), + [anon_sym_LT_LT_EQ] = ACTIONS(4532), + [anon_sym_GT_GT_EQ] = ACTIONS(4532), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4532), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_yield] = ACTIONS(4534), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_defer] = ACTIONS(4534), + [anon_sym_errdefer] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_else] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4534), + [anon_sym_expand] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_match] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4532), + [anon_sym_orelse] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_EQ_EQ] = ACTIONS(4532), + [anon_sym_BANG_EQ] = ACTIONS(4532), + [anon_sym_LT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_xor] = ACTIONS(4534), + [anon_sym_LT_LT] = ACTIONS(4534), + [anon_sym_GT_GT] = ACTIONS(4534), + [anon_sym_LT_LT_PIPE] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_catch] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4534), + [anon_sym_DOT] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4532), + [anon_sym_true] = ACTIONS(4534), + [anon_sym_false] = ACTIONS(4534), + [anon_sym_null] = ACTIONS(4534), + [anon_sym_unreachable] = ACTIONS(4534), + [anon_sym_undefined] = ACTIONS(4534), + [sym_sink] = ACTIONS(4534), + [sym_integer] = ACTIONS(4534), + [sym_float] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [sym_multiline_string] = ACTIONS(4532), + [sym_character] = ACTIONS(4532), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4532), + }, + [STATE(3257)] = { + [sym_identifier] = ACTIONS(5276), + [anon_sym_func] = ACTIONS(5276), + [anon_sym_c_func] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_struct] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_DOLLAR] = ACTIONS(5274), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_struct_type_BANG] = ACTIONS(5274), + [anon_sym_QMARK] = ACTIONS(5274), + [anon_sym_AT] = ACTIONS(5274), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_void] = ACTIONS(5276), + [anon_sym_noreturn] = ACTIONS(5276), + [anon_sym_type] = ACTIONS(5276), + [anon_sym_anyopaque] = ACTIONS(5276), + [anon_sym_bool] = ACTIONS(5276), + [anon_sym_int] = ACTIONS(5276), + [anon_sym_uint] = ACTIONS(5276), + [anon_sym_float] = ACTIONS(5276), + [anon_sym_range] = ACTIONS(5276), + [anon_sym_i8] = ACTIONS(5276), + [anon_sym_i16] = ACTIONS(5276), + [anon_sym_i32] = ACTIONS(5276), + [anon_sym_i64] = ACTIONS(5276), + [anon_sym_u8] = ACTIONS(5276), + [anon_sym_u16] = ACTIONS(5276), + [anon_sym_u32] = ACTIONS(5276), + [anon_sym_u64] = ACTIONS(5276), + [anon_sym_isize] = ACTIONS(5276), + [anon_sym_usize] = ACTIONS(5276), + [anon_sym_f32] = ACTIONS(5276), + [anon_sym_f64] = ACTIONS(5276), + [anon_sym_c_char] = ACTIONS(5276), + [anon_sym_c_schar] = ACTIONS(5276), + [anon_sym_c_uchar] = ACTIONS(5276), + [anon_sym_c_short] = ACTIONS(5276), + [anon_sym_c_ushort] = ACTIONS(5276), + [anon_sym_c_int] = ACTIONS(5276), + [anon_sym_c_uint] = ACTIONS(5276), + [anon_sym_c_long] = ACTIONS(5276), + [anon_sym_c_ulong] = ACTIONS(5276), + [anon_sym_c_longlong] = ACTIONS(5276), + [anon_sym_c_ulonglong] = ACTIONS(5276), + [anon_sym_c_float] = ACTIONS(5276), + [anon_sym_c_double] = ACTIONS(5276), + [anon_sym_c_longdouble] = ACTIONS(5276), + [anon_sym_PLUS_EQ] = ACTIONS(5274), + [anon_sym_DASH_EQ] = ACTIONS(5274), + [anon_sym_STAR_EQ] = ACTIONS(5274), + [anon_sym_SLASH_EQ] = ACTIONS(5274), + [anon_sym_AMP_EQ] = ACTIONS(5274), + [anon_sym_PIPE_EQ] = ACTIONS(5274), + [anon_sym_xor_EQ] = ACTIONS(5274), + [anon_sym_LT_LT_EQ] = ACTIONS(5274), + [anon_sym_GT_GT_EQ] = ACTIONS(5274), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5274), + [anon_sym_return] = ACTIONS(5276), + [anon_sym_yield] = ACTIONS(5276), + [anon_sym_break] = ACTIONS(5276), + [anon_sym_continue] = ACTIONS(5276), + [anon_sym_defer] = ACTIONS(5276), + [anon_sym_errdefer] = ACTIONS(5276), + [anon_sym_if] = ACTIONS(5276), + [anon_sym_else] = ACTIONS(5276), + [anon_sym_while] = ACTIONS(5276), + [anon_sym_expand] = ACTIONS(5276), + [anon_sym_for] = ACTIONS(5276), + [anon_sym_match] = ACTIONS(5276), + [anon_sym_DOT_DOT] = ACTIONS(5276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5274), + [anon_sym_orelse] = ACTIONS(5276), + [anon_sym_or] = ACTIONS(5276), + [anon_sym_and] = ACTIONS(5276), + [anon_sym_EQ_EQ] = ACTIONS(5274), + [anon_sym_BANG_EQ] = ACTIONS(5274), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_LT_EQ] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_GT_EQ] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(5276), + [anon_sym_xor] = ACTIONS(5276), + [anon_sym_LT_LT] = ACTIONS(5276), + [anon_sym_GT_GT] = ACTIONS(5276), + [anon_sym_LT_LT_PIPE] = ACTIONS(5276), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_catch] = ACTIONS(5276), + [anon_sym_TILDE] = ACTIONS(5274), + [anon_sym_try] = ACTIONS(5276), + [anon_sym_DOT] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5274), + [anon_sym_true] = ACTIONS(5276), + [anon_sym_false] = ACTIONS(5276), + [anon_sym_null] = ACTIONS(5276), + [anon_sym_unreachable] = ACTIONS(5276), + [anon_sym_undefined] = ACTIONS(5276), + [sym_sink] = ACTIONS(5276), + [sym_integer] = ACTIONS(5276), + [sym_float] = ACTIONS(5274), + [anon_sym_DQUOTE] = ACTIONS(5274), + [sym_multiline_string] = ACTIONS(5274), + [sym_character] = ACTIONS(5274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5274), + }, + [STATE(3258)] = { + [sym_identifier] = ACTIONS(4538), + [anon_sym_func] = ACTIONS(4538), + [anon_sym_c_func] = ACTIONS(4538), + [anon_sym_BANG] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4536), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_COMMA] = ACTIONS(4536), + [anon_sym_RBRACE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4538), + [anon_sym_struct_type_BANG] = ACTIONS(4536), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_AT] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_void] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym_type] = ACTIONS(4538), + [anon_sym_anyopaque] = ACTIONS(4538), + [anon_sym_bool] = ACTIONS(4538), + [anon_sym_int] = ACTIONS(4538), + [anon_sym_uint] = ACTIONS(4538), + [anon_sym_float] = ACTIONS(4538), + [anon_sym_range] = ACTIONS(4538), + [anon_sym_i8] = ACTIONS(4538), + [anon_sym_i16] = ACTIONS(4538), + [anon_sym_i32] = ACTIONS(4538), + [anon_sym_i64] = ACTIONS(4538), + [anon_sym_u8] = ACTIONS(4538), + [anon_sym_u16] = ACTIONS(4538), + [anon_sym_u32] = ACTIONS(4538), + [anon_sym_u64] = ACTIONS(4538), + [anon_sym_isize] = ACTIONS(4538), + [anon_sym_usize] = ACTIONS(4538), + [anon_sym_f32] = ACTIONS(4538), + [anon_sym_f64] = ACTIONS(4538), + [anon_sym_c_char] = ACTIONS(4538), + [anon_sym_c_schar] = ACTIONS(4538), + [anon_sym_c_uchar] = ACTIONS(4538), + [anon_sym_c_short] = ACTIONS(4538), + [anon_sym_c_ushort] = ACTIONS(4538), + [anon_sym_c_int] = ACTIONS(4538), + [anon_sym_c_uint] = ACTIONS(4538), + [anon_sym_c_long] = ACTIONS(4538), + [anon_sym_c_ulong] = ACTIONS(4538), + [anon_sym_c_longlong] = ACTIONS(4538), + [anon_sym_c_ulonglong] = ACTIONS(4538), + [anon_sym_c_float] = ACTIONS(4538), + [anon_sym_c_double] = ACTIONS(4538), + [anon_sym_c_longdouble] = ACTIONS(4538), + [anon_sym_PLUS_EQ] = ACTIONS(4536), + [anon_sym_DASH_EQ] = ACTIONS(4536), + [anon_sym_STAR_EQ] = ACTIONS(4536), + [anon_sym_SLASH_EQ] = ACTIONS(4536), + [anon_sym_AMP_EQ] = ACTIONS(4536), + [anon_sym_PIPE_EQ] = ACTIONS(4536), + [anon_sym_xor_EQ] = ACTIONS(4536), + [anon_sym_LT_LT_EQ] = ACTIONS(4536), + [anon_sym_GT_GT_EQ] = ACTIONS(4536), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4536), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_yield] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_defer] = ACTIONS(4538), + [anon_sym_errdefer] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_else] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_expand] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_match] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4536), + [anon_sym_orelse] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4536), + [anon_sym_BANG_EQ] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_xor] = ACTIONS(4538), + [anon_sym_LT_LT] = ACTIONS(4538), + [anon_sym_GT_GT] = ACTIONS(4538), + [anon_sym_LT_LT_PIPE] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_catch] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4536), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_DOT] = ACTIONS(4538), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_true] = ACTIONS(4538), + [anon_sym_false] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4538), + [anon_sym_unreachable] = ACTIONS(4538), + [anon_sym_undefined] = ACTIONS(4538), + [sym_sink] = ACTIONS(4538), + [sym_integer] = ACTIONS(4538), + [sym_float] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [sym_multiline_string] = ACTIONS(4536), + [sym_character] = ACTIONS(4536), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4536), + }, + [STATE(3259)] = { + [sym_identifier] = ACTIONS(4542), + [anon_sym_func] = ACTIONS(4542), + [anon_sym_c_func] = ACTIONS(4542), + [anon_sym_BANG] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4542), + [anon_sym_struct] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4542), + [anon_sym_struct_type_BANG] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_AT] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4542), + [anon_sym_LBRACK] = ACTIONS(4540), + [anon_sym_void] = ACTIONS(4542), + [anon_sym_noreturn] = ACTIONS(4542), + [anon_sym_type] = ACTIONS(4542), + [anon_sym_anyopaque] = ACTIONS(4542), + [anon_sym_bool] = ACTIONS(4542), + [anon_sym_int] = ACTIONS(4542), + [anon_sym_uint] = ACTIONS(4542), + [anon_sym_float] = ACTIONS(4542), + [anon_sym_range] = ACTIONS(4542), + [anon_sym_i8] = ACTIONS(4542), + [anon_sym_i16] = ACTIONS(4542), + [anon_sym_i32] = ACTIONS(4542), + [anon_sym_i64] = ACTIONS(4542), + [anon_sym_u8] = ACTIONS(4542), + [anon_sym_u16] = ACTIONS(4542), + [anon_sym_u32] = ACTIONS(4542), + [anon_sym_u64] = ACTIONS(4542), + [anon_sym_isize] = ACTIONS(4542), + [anon_sym_usize] = ACTIONS(4542), + [anon_sym_f32] = ACTIONS(4542), + [anon_sym_f64] = ACTIONS(4542), + [anon_sym_c_char] = ACTIONS(4542), + [anon_sym_c_schar] = ACTIONS(4542), + [anon_sym_c_uchar] = ACTIONS(4542), + [anon_sym_c_short] = ACTIONS(4542), + [anon_sym_c_ushort] = ACTIONS(4542), + [anon_sym_c_int] = ACTIONS(4542), + [anon_sym_c_uint] = ACTIONS(4542), + [anon_sym_c_long] = ACTIONS(4542), + [anon_sym_c_ulong] = ACTIONS(4542), + [anon_sym_c_longlong] = ACTIONS(4542), + [anon_sym_c_ulonglong] = ACTIONS(4542), + [anon_sym_c_float] = ACTIONS(4542), + [anon_sym_c_double] = ACTIONS(4542), + [anon_sym_c_longdouble] = ACTIONS(4542), + [anon_sym_PLUS_EQ] = ACTIONS(4540), + [anon_sym_DASH_EQ] = ACTIONS(4540), + [anon_sym_STAR_EQ] = ACTIONS(4540), + [anon_sym_SLASH_EQ] = ACTIONS(4540), + [anon_sym_AMP_EQ] = ACTIONS(4540), + [anon_sym_PIPE_EQ] = ACTIONS(4540), + [anon_sym_xor_EQ] = ACTIONS(4540), + [anon_sym_LT_LT_EQ] = ACTIONS(4540), + [anon_sym_GT_GT_EQ] = ACTIONS(4540), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4540), + [anon_sym_return] = ACTIONS(4542), + [anon_sym_yield] = ACTIONS(4542), + [anon_sym_break] = ACTIONS(4542), + [anon_sym_continue] = ACTIONS(4542), + [anon_sym_defer] = ACTIONS(4542), + [anon_sym_errdefer] = ACTIONS(4542), + [anon_sym_if] = ACTIONS(4542), + [anon_sym_else] = ACTIONS(4542), + [anon_sym_while] = ACTIONS(4542), + [anon_sym_expand] = ACTIONS(4542), + [anon_sym_for] = ACTIONS(4542), + [anon_sym_match] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4540), + [anon_sym_orelse] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4540), + [anon_sym_BANG_EQ] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_xor] = ACTIONS(4542), + [anon_sym_LT_LT] = ACTIONS(4542), + [anon_sym_GT_GT] = ACTIONS(4542), + [anon_sym_LT_LT_PIPE] = ACTIONS(4542), + [anon_sym_PLUS] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4542), + [anon_sym_catch] = ACTIONS(4542), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_try] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym_true] = ACTIONS(4542), + [anon_sym_false] = ACTIONS(4542), + [anon_sym_null] = ACTIONS(4542), + [anon_sym_unreachable] = ACTIONS(4542), + [anon_sym_undefined] = ACTIONS(4542), + [sym_sink] = ACTIONS(4542), + [sym_integer] = ACTIONS(4542), + [sym_float] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym_multiline_string] = ACTIONS(4540), + [sym_character] = ACTIONS(4540), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4540), + }, + [STATE(3260)] = { + [sym_identifier] = ACTIONS(5448), + [anon_sym_func] = ACTIONS(5448), + [anon_sym_c_func] = ACTIONS(5448), + [anon_sym_BANG] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(5448), + [anon_sym_struct] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_LBRACE] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(5446), + [anon_sym_RBRACE] = ACTIONS(5446), + [anon_sym_DASH] = ACTIONS(5448), + [anon_sym_DOLLAR] = ACTIONS(5446), + [anon_sym_PIPE] = ACTIONS(5448), + [anon_sym_struct_type_BANG] = ACTIONS(5446), + [anon_sym_QMARK] = ACTIONS(5446), + [anon_sym_AT] = ACTIONS(5446), + [anon_sym_STAR] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_void] = ACTIONS(5448), + [anon_sym_noreturn] = ACTIONS(5448), + [anon_sym_type] = ACTIONS(5448), + [anon_sym_anyopaque] = ACTIONS(5448), + [anon_sym_bool] = ACTIONS(5448), + [anon_sym_int] = ACTIONS(5448), + [anon_sym_uint] = ACTIONS(5448), + [anon_sym_float] = ACTIONS(5448), + [anon_sym_range] = ACTIONS(5448), + [anon_sym_i8] = ACTIONS(5448), + [anon_sym_i16] = ACTIONS(5448), + [anon_sym_i32] = ACTIONS(5448), + [anon_sym_i64] = ACTIONS(5448), + [anon_sym_u8] = ACTIONS(5448), + [anon_sym_u16] = ACTIONS(5448), + [anon_sym_u32] = ACTIONS(5448), + [anon_sym_u64] = ACTIONS(5448), + [anon_sym_isize] = ACTIONS(5448), + [anon_sym_usize] = ACTIONS(5448), + [anon_sym_f32] = ACTIONS(5448), + [anon_sym_f64] = ACTIONS(5448), + [anon_sym_c_char] = ACTIONS(5448), + [anon_sym_c_schar] = ACTIONS(5448), + [anon_sym_c_uchar] = ACTIONS(5448), + [anon_sym_c_short] = ACTIONS(5448), + [anon_sym_c_ushort] = ACTIONS(5448), + [anon_sym_c_int] = ACTIONS(5448), + [anon_sym_c_uint] = ACTIONS(5448), + [anon_sym_c_long] = ACTIONS(5448), + [anon_sym_c_ulong] = ACTIONS(5448), + [anon_sym_c_longlong] = ACTIONS(5448), + [anon_sym_c_ulonglong] = ACTIONS(5448), + [anon_sym_c_float] = ACTIONS(5448), + [anon_sym_c_double] = ACTIONS(5448), + [anon_sym_c_longdouble] = ACTIONS(5448), + [anon_sym_PLUS_EQ] = ACTIONS(5446), + [anon_sym_DASH_EQ] = ACTIONS(5446), + [anon_sym_STAR_EQ] = ACTIONS(5446), + [anon_sym_SLASH_EQ] = ACTIONS(5446), + [anon_sym_AMP_EQ] = ACTIONS(5446), + [anon_sym_PIPE_EQ] = ACTIONS(5446), + [anon_sym_xor_EQ] = ACTIONS(5446), + [anon_sym_LT_LT_EQ] = ACTIONS(5446), + [anon_sym_GT_GT_EQ] = ACTIONS(5446), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5446), + [anon_sym_return] = ACTIONS(5448), + [anon_sym_yield] = ACTIONS(5448), + [anon_sym_break] = ACTIONS(5448), + [anon_sym_continue] = ACTIONS(5448), + [anon_sym_defer] = ACTIONS(5448), + [anon_sym_errdefer] = ACTIONS(5448), + [anon_sym_if] = ACTIONS(5448), + [anon_sym_else] = ACTIONS(5448), + [anon_sym_while] = ACTIONS(5448), + [anon_sym_expand] = ACTIONS(5448), + [anon_sym_for] = ACTIONS(5448), + [anon_sym_match] = ACTIONS(5448), + [anon_sym_DOT_DOT] = ACTIONS(5448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5446), + [anon_sym_orelse] = ACTIONS(5448), + [anon_sym_or] = ACTIONS(5448), + [anon_sym_and] = ACTIONS(5448), + [anon_sym_EQ_EQ] = ACTIONS(5446), + [anon_sym_BANG_EQ] = ACTIONS(5446), + [anon_sym_LT] = ACTIONS(5448), + [anon_sym_LT_EQ] = ACTIONS(5446), + [anon_sym_GT] = ACTIONS(5448), + [anon_sym_GT_EQ] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(5448), + [anon_sym_xor] = ACTIONS(5448), + [anon_sym_LT_LT] = ACTIONS(5448), + [anon_sym_GT_GT] = ACTIONS(5448), + [anon_sym_LT_LT_PIPE] = ACTIONS(5448), + [anon_sym_PLUS] = ACTIONS(5448), + [anon_sym_SLASH] = ACTIONS(5448), + [anon_sym_catch] = ACTIONS(5448), + [anon_sym_TILDE] = ACTIONS(5446), + [anon_sym_try] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5448), + [anon_sym_CARET] = ACTIONS(5446), + [anon_sym_true] = ACTIONS(5448), + [anon_sym_false] = ACTIONS(5448), + [anon_sym_null] = ACTIONS(5448), + [anon_sym_unreachable] = ACTIONS(5448), + [anon_sym_undefined] = ACTIONS(5448), + [sym_sink] = ACTIONS(5448), + [sym_integer] = ACTIONS(5448), + [sym_float] = ACTIONS(5446), + [anon_sym_DQUOTE] = ACTIONS(5446), + [sym_multiline_string] = ACTIONS(5446), + [sym_character] = ACTIONS(5446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5446), + }, + [STATE(3261)] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_func] = ACTIONS(4550), + [anon_sym_c_func] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_struct] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_struct_type_BANG] = ACTIONS(4548), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_AT] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_void] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_type] = ACTIONS(4550), + [anon_sym_anyopaque] = ACTIONS(4550), + [anon_sym_bool] = ACTIONS(4550), + [anon_sym_int] = ACTIONS(4550), + [anon_sym_uint] = ACTIONS(4550), + [anon_sym_float] = ACTIONS(4550), + [anon_sym_range] = ACTIONS(4550), + [anon_sym_i8] = ACTIONS(4550), + [anon_sym_i16] = ACTIONS(4550), + [anon_sym_i32] = ACTIONS(4550), + [anon_sym_i64] = ACTIONS(4550), + [anon_sym_u8] = ACTIONS(4550), + [anon_sym_u16] = ACTIONS(4550), + [anon_sym_u32] = ACTIONS(4550), + [anon_sym_u64] = ACTIONS(4550), + [anon_sym_isize] = ACTIONS(4550), + [anon_sym_usize] = ACTIONS(4550), + [anon_sym_f32] = ACTIONS(4550), + [anon_sym_f64] = ACTIONS(4550), + [anon_sym_c_char] = ACTIONS(4550), + [anon_sym_c_schar] = ACTIONS(4550), + [anon_sym_c_uchar] = ACTIONS(4550), + [anon_sym_c_short] = ACTIONS(4550), + [anon_sym_c_ushort] = ACTIONS(4550), + [anon_sym_c_int] = ACTIONS(4550), + [anon_sym_c_uint] = ACTIONS(4550), + [anon_sym_c_long] = ACTIONS(4550), + [anon_sym_c_ulong] = ACTIONS(4550), + [anon_sym_c_longlong] = ACTIONS(4550), + [anon_sym_c_ulonglong] = ACTIONS(4550), + [anon_sym_c_float] = ACTIONS(4550), + [anon_sym_c_double] = ACTIONS(4550), + [anon_sym_c_longdouble] = ACTIONS(4550), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4548), + [anon_sym_xor_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4548), + [anon_sym_return] = ACTIONS(4550), + [anon_sym_yield] = ACTIONS(4550), + [anon_sym_break] = ACTIONS(4550), + [anon_sym_continue] = ACTIONS(4550), + [anon_sym_defer] = ACTIONS(4550), + [anon_sym_errdefer] = ACTIONS(4550), + [anon_sym_if] = ACTIONS(4550), + [anon_sym_else] = ACTIONS(4550), + [anon_sym_while] = ACTIONS(4550), + [anon_sym_expand] = ACTIONS(4550), + [anon_sym_for] = ACTIONS(4550), + [anon_sym_match] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4548), + [anon_sym_orelse] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP] = ACTIONS(4550), + [anon_sym_xor] = ACTIONS(4550), + [anon_sym_LT_LT] = ACTIONS(4550), + [anon_sym_GT_GT] = ACTIONS(4550), + [anon_sym_LT_LT_PIPE] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_catch] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_try] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym_true] = ACTIONS(4550), + [anon_sym_false] = ACTIONS(4550), + [anon_sym_null] = ACTIONS(4550), + [anon_sym_unreachable] = ACTIONS(4550), + [anon_sym_undefined] = ACTIONS(4550), + [sym_sink] = ACTIONS(4550), + [sym_integer] = ACTIONS(4550), + [sym_float] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(4548), + [sym_multiline_string] = ACTIONS(4548), + [sym_character] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4548), + }, + [STATE(3262)] = { + [sym_identifier] = ACTIONS(4554), + [anon_sym_func] = ACTIONS(4554), + [anon_sym_c_func] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_struct] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_struct_type_BANG] = ACTIONS(4552), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_AT] = ACTIONS(4552), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_void] = ACTIONS(4554), + [anon_sym_noreturn] = ACTIONS(4554), + [anon_sym_type] = ACTIONS(4554), + [anon_sym_anyopaque] = ACTIONS(4554), + [anon_sym_bool] = ACTIONS(4554), + [anon_sym_int] = ACTIONS(4554), + [anon_sym_uint] = ACTIONS(4554), + [anon_sym_float] = ACTIONS(4554), + [anon_sym_range] = ACTIONS(4554), + [anon_sym_i8] = ACTIONS(4554), + [anon_sym_i16] = ACTIONS(4554), + [anon_sym_i32] = ACTIONS(4554), + [anon_sym_i64] = ACTIONS(4554), + [anon_sym_u8] = ACTIONS(4554), + [anon_sym_u16] = ACTIONS(4554), + [anon_sym_u32] = ACTIONS(4554), + [anon_sym_u64] = ACTIONS(4554), + [anon_sym_isize] = ACTIONS(4554), + [anon_sym_usize] = ACTIONS(4554), + [anon_sym_f32] = ACTIONS(4554), + [anon_sym_f64] = ACTIONS(4554), + [anon_sym_c_char] = ACTIONS(4554), + [anon_sym_c_schar] = ACTIONS(4554), + [anon_sym_c_uchar] = ACTIONS(4554), + [anon_sym_c_short] = ACTIONS(4554), + [anon_sym_c_ushort] = ACTIONS(4554), + [anon_sym_c_int] = ACTIONS(4554), + [anon_sym_c_uint] = ACTIONS(4554), + [anon_sym_c_long] = ACTIONS(4554), + [anon_sym_c_ulong] = ACTIONS(4554), + [anon_sym_c_longlong] = ACTIONS(4554), + [anon_sym_c_ulonglong] = ACTIONS(4554), + [anon_sym_c_float] = ACTIONS(4554), + [anon_sym_c_double] = ACTIONS(4554), + [anon_sym_c_longdouble] = ACTIONS(4554), + [anon_sym_PLUS_EQ] = ACTIONS(4552), + [anon_sym_DASH_EQ] = ACTIONS(4552), + [anon_sym_STAR_EQ] = ACTIONS(4552), + [anon_sym_SLASH_EQ] = ACTIONS(4552), + [anon_sym_AMP_EQ] = ACTIONS(4552), + [anon_sym_PIPE_EQ] = ACTIONS(4552), + [anon_sym_xor_EQ] = ACTIONS(4552), + [anon_sym_LT_LT_EQ] = ACTIONS(4552), + [anon_sym_GT_GT_EQ] = ACTIONS(4552), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4552), + [anon_sym_return] = ACTIONS(4554), + [anon_sym_yield] = ACTIONS(4554), + [anon_sym_break] = ACTIONS(4554), + [anon_sym_continue] = ACTIONS(4554), + [anon_sym_defer] = ACTIONS(4554), + [anon_sym_errdefer] = ACTIONS(4554), + [anon_sym_if] = ACTIONS(4554), + [anon_sym_else] = ACTIONS(4554), + [anon_sym_while] = ACTIONS(4554), + [anon_sym_expand] = ACTIONS(4554), + [anon_sym_for] = ACTIONS(4554), + [anon_sym_match] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4552), + [anon_sym_orelse] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4552), + [anon_sym_BANG_EQ] = ACTIONS(4552), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4552), + [anon_sym_AMP] = ACTIONS(4554), + [anon_sym_xor] = ACTIONS(4554), + [anon_sym_LT_LT] = ACTIONS(4554), + [anon_sym_GT_GT] = ACTIONS(4554), + [anon_sym_LT_LT_PIPE] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_catch] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4552), + [anon_sym_try] = ACTIONS(4554), + [anon_sym_DOT] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym_true] = ACTIONS(4554), + [anon_sym_false] = ACTIONS(4554), + [anon_sym_null] = ACTIONS(4554), + [anon_sym_unreachable] = ACTIONS(4554), + [anon_sym_undefined] = ACTIONS(4554), + [sym_sink] = ACTIONS(4554), + [sym_integer] = ACTIONS(4554), + [sym_float] = ACTIONS(4552), + [anon_sym_DQUOTE] = ACTIONS(4552), + [sym_multiline_string] = ACTIONS(4552), + [sym_character] = ACTIONS(4552), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4552), + }, + [STATE(3263)] = { + [sym_identifier] = ACTIONS(4558), + [anon_sym_func] = ACTIONS(4558), + [anon_sym_c_func] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_struct] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4556), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_struct_type_BANG] = ACTIONS(4556), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_AT] = ACTIONS(4556), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_void] = ACTIONS(4558), + [anon_sym_noreturn] = ACTIONS(4558), + [anon_sym_type] = ACTIONS(4558), + [anon_sym_anyopaque] = ACTIONS(4558), + [anon_sym_bool] = ACTIONS(4558), + [anon_sym_int] = ACTIONS(4558), + [anon_sym_uint] = ACTIONS(4558), + [anon_sym_float] = ACTIONS(4558), + [anon_sym_range] = ACTIONS(4558), + [anon_sym_i8] = ACTIONS(4558), + [anon_sym_i16] = ACTIONS(4558), + [anon_sym_i32] = ACTIONS(4558), + [anon_sym_i64] = ACTIONS(4558), + [anon_sym_u8] = ACTIONS(4558), + [anon_sym_u16] = ACTIONS(4558), + [anon_sym_u32] = ACTIONS(4558), + [anon_sym_u64] = ACTIONS(4558), + [anon_sym_isize] = ACTIONS(4558), + [anon_sym_usize] = ACTIONS(4558), + [anon_sym_f32] = ACTIONS(4558), + [anon_sym_f64] = ACTIONS(4558), + [anon_sym_c_char] = ACTIONS(4558), + [anon_sym_c_schar] = ACTIONS(4558), + [anon_sym_c_uchar] = ACTIONS(4558), + [anon_sym_c_short] = ACTIONS(4558), + [anon_sym_c_ushort] = ACTIONS(4558), + [anon_sym_c_int] = ACTIONS(4558), + [anon_sym_c_uint] = ACTIONS(4558), + [anon_sym_c_long] = ACTIONS(4558), + [anon_sym_c_ulong] = ACTIONS(4558), + [anon_sym_c_longlong] = ACTIONS(4558), + [anon_sym_c_ulonglong] = ACTIONS(4558), + [anon_sym_c_float] = ACTIONS(4558), + [anon_sym_c_double] = ACTIONS(4558), + [anon_sym_c_longdouble] = ACTIONS(4558), + [anon_sym_PLUS_EQ] = ACTIONS(4556), + [anon_sym_DASH_EQ] = ACTIONS(4556), + [anon_sym_STAR_EQ] = ACTIONS(4556), + [anon_sym_SLASH_EQ] = ACTIONS(4556), + [anon_sym_AMP_EQ] = ACTIONS(4556), + [anon_sym_PIPE_EQ] = ACTIONS(4556), + [anon_sym_xor_EQ] = ACTIONS(4556), + [anon_sym_LT_LT_EQ] = ACTIONS(4556), + [anon_sym_GT_GT_EQ] = ACTIONS(4556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4556), + [anon_sym_return] = ACTIONS(4558), + [anon_sym_yield] = ACTIONS(4558), + [anon_sym_break] = ACTIONS(4558), + [anon_sym_continue] = ACTIONS(4558), + [anon_sym_defer] = ACTIONS(4558), + [anon_sym_errdefer] = ACTIONS(4558), + [anon_sym_if] = ACTIONS(4558), + [anon_sym_else] = ACTIONS(4558), + [anon_sym_while] = ACTIONS(4558), + [anon_sym_expand] = ACTIONS(4558), + [anon_sym_for] = ACTIONS(4558), + [anon_sym_match] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4556), + [anon_sym_orelse] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4556), + [anon_sym_BANG_EQ] = ACTIONS(4556), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4556), + [anon_sym_AMP] = ACTIONS(4558), + [anon_sym_xor] = ACTIONS(4558), + [anon_sym_LT_LT] = ACTIONS(4558), + [anon_sym_GT_GT] = ACTIONS(4558), + [anon_sym_LT_LT_PIPE] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_catch] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4556), + [anon_sym_try] = ACTIONS(4558), + [anon_sym_DOT] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym_true] = ACTIONS(4558), + [anon_sym_false] = ACTIONS(4558), + [anon_sym_null] = ACTIONS(4558), + [anon_sym_unreachable] = ACTIONS(4558), + [anon_sym_undefined] = ACTIONS(4558), + [sym_sink] = ACTIONS(4558), + [sym_integer] = ACTIONS(4558), + [sym_float] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(4556), + [sym_multiline_string] = ACTIONS(4556), + [sym_character] = ACTIONS(4556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4556), + }, + [STATE(3264)] = { + [sym_identifier] = ACTIONS(4562), + [anon_sym_func] = ACTIONS(4562), + [anon_sym_c_func] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_struct] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4560), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_struct_type_BANG] = ACTIONS(4560), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_AT] = ACTIONS(4560), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_void] = ACTIONS(4562), + [anon_sym_noreturn] = ACTIONS(4562), + [anon_sym_type] = ACTIONS(4562), + [anon_sym_anyopaque] = ACTIONS(4562), + [anon_sym_bool] = ACTIONS(4562), + [anon_sym_int] = ACTIONS(4562), + [anon_sym_uint] = ACTIONS(4562), + [anon_sym_float] = ACTIONS(4562), + [anon_sym_range] = ACTIONS(4562), + [anon_sym_i8] = ACTIONS(4562), + [anon_sym_i16] = ACTIONS(4562), + [anon_sym_i32] = ACTIONS(4562), + [anon_sym_i64] = ACTIONS(4562), + [anon_sym_u8] = ACTIONS(4562), + [anon_sym_u16] = ACTIONS(4562), + [anon_sym_u32] = ACTIONS(4562), + [anon_sym_u64] = ACTIONS(4562), + [anon_sym_isize] = ACTIONS(4562), + [anon_sym_usize] = ACTIONS(4562), + [anon_sym_f32] = ACTIONS(4562), + [anon_sym_f64] = ACTIONS(4562), + [anon_sym_c_char] = ACTIONS(4562), + [anon_sym_c_schar] = ACTIONS(4562), + [anon_sym_c_uchar] = ACTIONS(4562), + [anon_sym_c_short] = ACTIONS(4562), + [anon_sym_c_ushort] = ACTIONS(4562), + [anon_sym_c_int] = ACTIONS(4562), + [anon_sym_c_uint] = ACTIONS(4562), + [anon_sym_c_long] = ACTIONS(4562), + [anon_sym_c_ulong] = ACTIONS(4562), + [anon_sym_c_longlong] = ACTIONS(4562), + [anon_sym_c_ulonglong] = ACTIONS(4562), + [anon_sym_c_float] = ACTIONS(4562), + [anon_sym_c_double] = ACTIONS(4562), + [anon_sym_c_longdouble] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4560), + [anon_sym_DASH_EQ] = ACTIONS(4560), + [anon_sym_STAR_EQ] = ACTIONS(4560), + [anon_sym_SLASH_EQ] = ACTIONS(4560), + [anon_sym_AMP_EQ] = ACTIONS(4560), + [anon_sym_PIPE_EQ] = ACTIONS(4560), + [anon_sym_xor_EQ] = ACTIONS(4560), + [anon_sym_LT_LT_EQ] = ACTIONS(4560), + [anon_sym_GT_GT_EQ] = ACTIONS(4560), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4560), + [anon_sym_return] = ACTIONS(4562), + [anon_sym_yield] = ACTIONS(4562), + [anon_sym_break] = ACTIONS(4562), + [anon_sym_continue] = ACTIONS(4562), + [anon_sym_defer] = ACTIONS(4562), + [anon_sym_errdefer] = ACTIONS(4562), + [anon_sym_if] = ACTIONS(4562), + [anon_sym_else] = ACTIONS(4562), + [anon_sym_while] = ACTIONS(4562), + [anon_sym_expand] = ACTIONS(4562), + [anon_sym_for] = ACTIONS(4562), + [anon_sym_match] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4560), + [anon_sym_orelse] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4560), + [anon_sym_BANG_EQ] = ACTIONS(4560), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4562), + [anon_sym_xor] = ACTIONS(4562), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(4562), + [anon_sym_LT_LT_PIPE] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_catch] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4560), + [anon_sym_try] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym_true] = ACTIONS(4562), + [anon_sym_false] = ACTIONS(4562), + [anon_sym_null] = ACTIONS(4562), + [anon_sym_unreachable] = ACTIONS(4562), + [anon_sym_undefined] = ACTIONS(4562), + [sym_sink] = ACTIONS(4562), + [sym_integer] = ACTIONS(4562), + [sym_float] = ACTIONS(4560), + [anon_sym_DQUOTE] = ACTIONS(4560), + [sym_multiline_string] = ACTIONS(4560), + [sym_character] = ACTIONS(4560), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4560), + }, + [STATE(3265)] = { + [sym_identifier] = ACTIONS(5452), + [anon_sym_func] = ACTIONS(5452), + [anon_sym_c_func] = ACTIONS(5452), + [anon_sym_BANG] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(5452), + [anon_sym_struct] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(5450), + [anon_sym_LBRACE] = ACTIONS(5450), + [anon_sym_COMMA] = ACTIONS(5450), + [anon_sym_RBRACE] = ACTIONS(5450), + [anon_sym_DASH] = ACTIONS(5452), + [anon_sym_DOLLAR] = ACTIONS(5450), + [anon_sym_PIPE] = ACTIONS(5452), + [anon_sym_struct_type_BANG] = ACTIONS(5450), + [anon_sym_QMARK] = ACTIONS(5450), + [anon_sym_AT] = ACTIONS(5450), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_void] = ACTIONS(5452), + [anon_sym_noreturn] = ACTIONS(5452), + [anon_sym_type] = ACTIONS(5452), + [anon_sym_anyopaque] = ACTIONS(5452), + [anon_sym_bool] = ACTIONS(5452), + [anon_sym_int] = ACTIONS(5452), + [anon_sym_uint] = ACTIONS(5452), + [anon_sym_float] = ACTIONS(5452), + [anon_sym_range] = ACTIONS(5452), + [anon_sym_i8] = ACTIONS(5452), + [anon_sym_i16] = ACTIONS(5452), + [anon_sym_i32] = ACTIONS(5452), + [anon_sym_i64] = ACTIONS(5452), + [anon_sym_u8] = ACTIONS(5452), + [anon_sym_u16] = ACTIONS(5452), + [anon_sym_u32] = ACTIONS(5452), + [anon_sym_u64] = ACTIONS(5452), + [anon_sym_isize] = ACTIONS(5452), + [anon_sym_usize] = ACTIONS(5452), + [anon_sym_f32] = ACTIONS(5452), + [anon_sym_f64] = ACTIONS(5452), + [anon_sym_c_char] = ACTIONS(5452), + [anon_sym_c_schar] = ACTIONS(5452), + [anon_sym_c_uchar] = ACTIONS(5452), + [anon_sym_c_short] = ACTIONS(5452), + [anon_sym_c_ushort] = ACTIONS(5452), + [anon_sym_c_int] = ACTIONS(5452), + [anon_sym_c_uint] = ACTIONS(5452), + [anon_sym_c_long] = ACTIONS(5452), + [anon_sym_c_ulong] = ACTIONS(5452), + [anon_sym_c_longlong] = ACTIONS(5452), + [anon_sym_c_ulonglong] = ACTIONS(5452), + [anon_sym_c_float] = ACTIONS(5452), + [anon_sym_c_double] = ACTIONS(5452), + [anon_sym_c_longdouble] = ACTIONS(5452), + [anon_sym_PLUS_EQ] = ACTIONS(5450), + [anon_sym_DASH_EQ] = ACTIONS(5450), + [anon_sym_STAR_EQ] = ACTIONS(5450), + [anon_sym_SLASH_EQ] = ACTIONS(5450), + [anon_sym_AMP_EQ] = ACTIONS(5450), + [anon_sym_PIPE_EQ] = ACTIONS(5450), + [anon_sym_xor_EQ] = ACTIONS(5450), + [anon_sym_LT_LT_EQ] = ACTIONS(5450), + [anon_sym_GT_GT_EQ] = ACTIONS(5450), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5450), + [anon_sym_return] = ACTIONS(5452), + [anon_sym_yield] = ACTIONS(5452), + [anon_sym_break] = ACTIONS(5452), + [anon_sym_continue] = ACTIONS(5452), + [anon_sym_defer] = ACTIONS(5452), + [anon_sym_errdefer] = ACTIONS(5452), + [anon_sym_if] = ACTIONS(5452), + [anon_sym_else] = ACTIONS(5452), + [anon_sym_while] = ACTIONS(5452), + [anon_sym_expand] = ACTIONS(5452), + [anon_sym_for] = ACTIONS(5452), + [anon_sym_match] = ACTIONS(5452), + [anon_sym_DOT_DOT] = ACTIONS(5452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5450), + [anon_sym_orelse] = ACTIONS(5452), + [anon_sym_or] = ACTIONS(5452), + [anon_sym_and] = ACTIONS(5452), + [anon_sym_EQ_EQ] = ACTIONS(5450), + [anon_sym_BANG_EQ] = ACTIONS(5450), + [anon_sym_LT] = ACTIONS(5452), + [anon_sym_LT_EQ] = ACTIONS(5450), + [anon_sym_GT] = ACTIONS(5452), + [anon_sym_GT_EQ] = ACTIONS(5450), + [anon_sym_AMP] = ACTIONS(5452), + [anon_sym_xor] = ACTIONS(5452), + [anon_sym_LT_LT] = ACTIONS(5452), + [anon_sym_GT_GT] = ACTIONS(5452), + [anon_sym_LT_LT_PIPE] = ACTIONS(5452), + [anon_sym_PLUS] = ACTIONS(5452), + [anon_sym_SLASH] = ACTIONS(5452), + [anon_sym_catch] = ACTIONS(5452), + [anon_sym_TILDE] = ACTIONS(5450), + [anon_sym_try] = ACTIONS(5452), + [anon_sym_DOT] = ACTIONS(5452), + [anon_sym_CARET] = ACTIONS(5450), + [anon_sym_true] = ACTIONS(5452), + [anon_sym_false] = ACTIONS(5452), + [anon_sym_null] = ACTIONS(5452), + [anon_sym_unreachable] = ACTIONS(5452), + [anon_sym_undefined] = ACTIONS(5452), + [sym_sink] = ACTIONS(5452), + [sym_integer] = ACTIONS(5452), + [sym_float] = ACTIONS(5450), + [anon_sym_DQUOTE] = ACTIONS(5450), + [sym_multiline_string] = ACTIONS(5450), + [sym_character] = ACTIONS(5450), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5450), + }, + [STATE(3266)] = { + [sym_identifier] = ACTIONS(5456), + [anon_sym_func] = ACTIONS(5456), + [anon_sym_c_func] = ACTIONS(5456), + [anon_sym_BANG] = ACTIONS(5456), + [anon_sym_EQ] = ACTIONS(5456), + [anon_sym_struct] = ACTIONS(5456), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_LBRACE] = ACTIONS(5454), + [anon_sym_COMMA] = ACTIONS(5454), + [anon_sym_RBRACE] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5456), + [anon_sym_DOLLAR] = ACTIONS(5454), + [anon_sym_PIPE] = ACTIONS(5456), + [anon_sym_struct_type_BANG] = ACTIONS(5454), + [anon_sym_QMARK] = ACTIONS(5454), + [anon_sym_AT] = ACTIONS(5454), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_void] = ACTIONS(5456), + [anon_sym_noreturn] = ACTIONS(5456), + [anon_sym_type] = ACTIONS(5456), + [anon_sym_anyopaque] = ACTIONS(5456), + [anon_sym_bool] = ACTIONS(5456), + [anon_sym_int] = ACTIONS(5456), + [anon_sym_uint] = ACTIONS(5456), + [anon_sym_float] = ACTIONS(5456), + [anon_sym_range] = ACTIONS(5456), + [anon_sym_i8] = ACTIONS(5456), + [anon_sym_i16] = ACTIONS(5456), + [anon_sym_i32] = ACTIONS(5456), + [anon_sym_i64] = ACTIONS(5456), + [anon_sym_u8] = ACTIONS(5456), + [anon_sym_u16] = ACTIONS(5456), + [anon_sym_u32] = ACTIONS(5456), + [anon_sym_u64] = ACTIONS(5456), + [anon_sym_isize] = ACTIONS(5456), + [anon_sym_usize] = ACTIONS(5456), + [anon_sym_f32] = ACTIONS(5456), + [anon_sym_f64] = ACTIONS(5456), + [anon_sym_c_char] = ACTIONS(5456), + [anon_sym_c_schar] = ACTIONS(5456), + [anon_sym_c_uchar] = ACTIONS(5456), + [anon_sym_c_short] = ACTIONS(5456), + [anon_sym_c_ushort] = ACTIONS(5456), + [anon_sym_c_int] = ACTIONS(5456), + [anon_sym_c_uint] = ACTIONS(5456), + [anon_sym_c_long] = ACTIONS(5456), + [anon_sym_c_ulong] = ACTIONS(5456), + [anon_sym_c_longlong] = ACTIONS(5456), + [anon_sym_c_ulonglong] = ACTIONS(5456), + [anon_sym_c_float] = ACTIONS(5456), + [anon_sym_c_double] = ACTIONS(5456), + [anon_sym_c_longdouble] = ACTIONS(5456), + [anon_sym_PLUS_EQ] = ACTIONS(5454), + [anon_sym_DASH_EQ] = ACTIONS(5454), + [anon_sym_STAR_EQ] = ACTIONS(5454), + [anon_sym_SLASH_EQ] = ACTIONS(5454), + [anon_sym_AMP_EQ] = ACTIONS(5454), + [anon_sym_PIPE_EQ] = ACTIONS(5454), + [anon_sym_xor_EQ] = ACTIONS(5454), + [anon_sym_LT_LT_EQ] = ACTIONS(5454), + [anon_sym_GT_GT_EQ] = ACTIONS(5454), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5454), + [anon_sym_return] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(5456), + [anon_sym_break] = ACTIONS(5456), + [anon_sym_continue] = ACTIONS(5456), + [anon_sym_defer] = ACTIONS(5456), + [anon_sym_errdefer] = ACTIONS(5456), + [anon_sym_if] = ACTIONS(5456), + [anon_sym_else] = ACTIONS(5456), + [anon_sym_while] = ACTIONS(5456), + [anon_sym_expand] = ACTIONS(5456), + [anon_sym_for] = ACTIONS(5456), + [anon_sym_match] = ACTIONS(5456), + [anon_sym_DOT_DOT] = ACTIONS(5456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5454), + [anon_sym_orelse] = ACTIONS(5456), + [anon_sym_or] = ACTIONS(5456), + [anon_sym_and] = ACTIONS(5456), + [anon_sym_EQ_EQ] = ACTIONS(5454), + [anon_sym_BANG_EQ] = ACTIONS(5454), + [anon_sym_LT] = ACTIONS(5456), + [anon_sym_LT_EQ] = ACTIONS(5454), + [anon_sym_GT] = ACTIONS(5456), + [anon_sym_GT_EQ] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(5456), + [anon_sym_xor] = ACTIONS(5456), + [anon_sym_LT_LT] = ACTIONS(5456), + [anon_sym_GT_GT] = ACTIONS(5456), + [anon_sym_LT_LT_PIPE] = ACTIONS(5456), + [anon_sym_PLUS] = ACTIONS(5456), + [anon_sym_SLASH] = ACTIONS(5456), + [anon_sym_catch] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5454), + [anon_sym_try] = ACTIONS(5456), + [anon_sym_DOT] = ACTIONS(5456), + [anon_sym_CARET] = ACTIONS(5454), + [anon_sym_true] = ACTIONS(5456), + [anon_sym_false] = ACTIONS(5456), + [anon_sym_null] = ACTIONS(5456), + [anon_sym_unreachable] = ACTIONS(5456), + [anon_sym_undefined] = ACTIONS(5456), + [sym_sink] = ACTIONS(5456), + [sym_integer] = ACTIONS(5456), + [sym_float] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5454), + [sym_multiline_string] = ACTIONS(5454), + [sym_character] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5454), + }, + [STATE(3267)] = { + [sym_identifier] = ACTIONS(4572), + [anon_sym_func] = ACTIONS(4572), + [anon_sym_c_func] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_struct] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_struct_type_BANG] = ACTIONS(4570), + [anon_sym_QMARK] = ACTIONS(4570), + [anon_sym_AT] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_void] = ACTIONS(4572), + [anon_sym_noreturn] = ACTIONS(4572), + [anon_sym_type] = ACTIONS(4572), + [anon_sym_anyopaque] = ACTIONS(4572), + [anon_sym_bool] = ACTIONS(4572), + [anon_sym_int] = ACTIONS(4572), + [anon_sym_uint] = ACTIONS(4572), + [anon_sym_float] = ACTIONS(4572), + [anon_sym_range] = ACTIONS(4572), + [anon_sym_i8] = ACTIONS(4572), + [anon_sym_i16] = ACTIONS(4572), + [anon_sym_i32] = ACTIONS(4572), + [anon_sym_i64] = ACTIONS(4572), + [anon_sym_u8] = ACTIONS(4572), + [anon_sym_u16] = ACTIONS(4572), + [anon_sym_u32] = ACTIONS(4572), + [anon_sym_u64] = ACTIONS(4572), + [anon_sym_isize] = ACTIONS(4572), + [anon_sym_usize] = ACTIONS(4572), + [anon_sym_f32] = ACTIONS(4572), + [anon_sym_f64] = ACTIONS(4572), + [anon_sym_c_char] = ACTIONS(4572), + [anon_sym_c_schar] = ACTIONS(4572), + [anon_sym_c_uchar] = ACTIONS(4572), + [anon_sym_c_short] = ACTIONS(4572), + [anon_sym_c_ushort] = ACTIONS(4572), + [anon_sym_c_int] = ACTIONS(4572), + [anon_sym_c_uint] = ACTIONS(4572), + [anon_sym_c_long] = ACTIONS(4572), + [anon_sym_c_ulong] = ACTIONS(4572), + [anon_sym_c_longlong] = ACTIONS(4572), + [anon_sym_c_ulonglong] = ACTIONS(4572), + [anon_sym_c_float] = ACTIONS(4572), + [anon_sym_c_double] = ACTIONS(4572), + [anon_sym_c_longdouble] = ACTIONS(4572), + [anon_sym_PLUS_EQ] = ACTIONS(4570), + [anon_sym_DASH_EQ] = ACTIONS(4570), + [anon_sym_STAR_EQ] = ACTIONS(4570), + [anon_sym_SLASH_EQ] = ACTIONS(4570), + [anon_sym_AMP_EQ] = ACTIONS(4570), + [anon_sym_PIPE_EQ] = ACTIONS(4570), + [anon_sym_xor_EQ] = ACTIONS(4570), + [anon_sym_LT_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_GT_EQ] = ACTIONS(4570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4570), + [anon_sym_return] = ACTIONS(4572), + [anon_sym_yield] = ACTIONS(4572), + [anon_sym_break] = ACTIONS(4572), + [anon_sym_continue] = ACTIONS(4572), + [anon_sym_defer] = ACTIONS(4572), + [anon_sym_errdefer] = ACTIONS(4572), + [anon_sym_if] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_while] = ACTIONS(4572), + [anon_sym_expand] = ACTIONS(4572), + [anon_sym_for] = ACTIONS(4572), + [anon_sym_match] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4570), + [anon_sym_orelse] = ACTIONS(4572), + [anon_sym_or] = ACTIONS(4572), + [anon_sym_and] = ACTIONS(4572), + [anon_sym_EQ_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4572), + [anon_sym_xor] = ACTIONS(4572), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(4572), + [anon_sym_LT_LT_PIPE] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_catch] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_try] = ACTIONS(4572), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_null] = ACTIONS(4572), + [anon_sym_unreachable] = ACTIONS(4572), + [anon_sym_undefined] = ACTIONS(4572), + [sym_sink] = ACTIONS(4572), + [sym_integer] = ACTIONS(4572), + [sym_float] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [sym_multiline_string] = ACTIONS(4570), + [sym_character] = ACTIONS(4570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4570), + }, + [STATE(3268)] = { + [sym_identifier] = ACTIONS(4578), + [anon_sym_func] = ACTIONS(4578), + [anon_sym_c_func] = ACTIONS(4578), + [anon_sym_BANG] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4578), + [anon_sym_struct] = ACTIONS(4578), + [anon_sym_LPAREN] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PIPE] = ACTIONS(4578), + [anon_sym_struct_type_BANG] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_AT] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_void] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_type] = ACTIONS(4578), + [anon_sym_anyopaque] = ACTIONS(4578), + [anon_sym_bool] = ACTIONS(4578), + [anon_sym_int] = ACTIONS(4578), + [anon_sym_uint] = ACTIONS(4578), + [anon_sym_float] = ACTIONS(4578), + [anon_sym_range] = ACTIONS(4578), + [anon_sym_i8] = ACTIONS(4578), + [anon_sym_i16] = ACTIONS(4578), + [anon_sym_i32] = ACTIONS(4578), + [anon_sym_i64] = ACTIONS(4578), + [anon_sym_u8] = ACTIONS(4578), + [anon_sym_u16] = ACTIONS(4578), + [anon_sym_u32] = ACTIONS(4578), + [anon_sym_u64] = ACTIONS(4578), + [anon_sym_isize] = ACTIONS(4578), + [anon_sym_usize] = ACTIONS(4578), + [anon_sym_f32] = ACTIONS(4578), + [anon_sym_f64] = ACTIONS(4578), + [anon_sym_c_char] = ACTIONS(4578), + [anon_sym_c_schar] = ACTIONS(4578), + [anon_sym_c_uchar] = ACTIONS(4578), + [anon_sym_c_short] = ACTIONS(4578), + [anon_sym_c_ushort] = ACTIONS(4578), + [anon_sym_c_int] = ACTIONS(4578), + [anon_sym_c_uint] = ACTIONS(4578), + [anon_sym_c_long] = ACTIONS(4578), + [anon_sym_c_ulong] = ACTIONS(4578), + [anon_sym_c_longlong] = ACTIONS(4578), + [anon_sym_c_ulonglong] = ACTIONS(4578), + [anon_sym_c_float] = ACTIONS(4578), + [anon_sym_c_double] = ACTIONS(4578), + [anon_sym_c_longdouble] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4576), + [anon_sym_DASH_EQ] = ACTIONS(4576), + [anon_sym_STAR_EQ] = ACTIONS(4576), + [anon_sym_SLASH_EQ] = ACTIONS(4576), + [anon_sym_AMP_EQ] = ACTIONS(4576), + [anon_sym_PIPE_EQ] = ACTIONS(4576), + [anon_sym_xor_EQ] = ACTIONS(4576), + [anon_sym_LT_LT_EQ] = ACTIONS(4576), + [anon_sym_GT_GT_EQ] = ACTIONS(4576), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4576), + [anon_sym_return] = ACTIONS(4578), + [anon_sym_yield] = ACTIONS(4578), + [anon_sym_break] = ACTIONS(4578), + [anon_sym_continue] = ACTIONS(4578), + [anon_sym_defer] = ACTIONS(4578), + [anon_sym_errdefer] = ACTIONS(4578), + [anon_sym_if] = ACTIONS(4578), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_while] = ACTIONS(4578), + [anon_sym_expand] = ACTIONS(4578), + [anon_sym_for] = ACTIONS(4578), + [anon_sym_match] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4576), + [anon_sym_orelse] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4578), + [anon_sym_EQ_EQ] = ACTIONS(4576), + [anon_sym_BANG_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_GT_EQ] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_xor] = ACTIONS(4578), + [anon_sym_LT_LT] = ACTIONS(4578), + [anon_sym_GT_GT] = ACTIONS(4578), + [anon_sym_LT_LT_PIPE] = ACTIONS(4578), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_catch] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_try] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_null] = ACTIONS(4578), + [anon_sym_unreachable] = ACTIONS(4578), + [anon_sym_undefined] = ACTIONS(4578), + [sym_sink] = ACTIONS(4578), + [sym_integer] = ACTIONS(4578), + [sym_float] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [sym_multiline_string] = ACTIONS(4576), + [sym_character] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4576), + }, + [STATE(3269)] = { + [sym_identifier] = ACTIONS(5460), + [anon_sym_func] = ACTIONS(5460), + [anon_sym_c_func] = ACTIONS(5460), + [anon_sym_BANG] = ACTIONS(5460), + [anon_sym_EQ] = ACTIONS(5460), + [anon_sym_struct] = ACTIONS(5460), + [anon_sym_LPAREN] = ACTIONS(5458), + [anon_sym_LBRACE] = ACTIONS(5458), + [anon_sym_COMMA] = ACTIONS(5458), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_DASH] = ACTIONS(5460), + [anon_sym_DOLLAR] = ACTIONS(5458), + [anon_sym_PIPE] = ACTIONS(5460), + [anon_sym_struct_type_BANG] = ACTIONS(5458), + [anon_sym_QMARK] = ACTIONS(5458), + [anon_sym_AT] = ACTIONS(5458), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_void] = ACTIONS(5460), + [anon_sym_noreturn] = ACTIONS(5460), + [anon_sym_type] = ACTIONS(5460), + [anon_sym_anyopaque] = ACTIONS(5460), + [anon_sym_bool] = ACTIONS(5460), + [anon_sym_int] = ACTIONS(5460), + [anon_sym_uint] = ACTIONS(5460), + [anon_sym_float] = ACTIONS(5460), + [anon_sym_range] = ACTIONS(5460), + [anon_sym_i8] = ACTIONS(5460), + [anon_sym_i16] = ACTIONS(5460), + [anon_sym_i32] = ACTIONS(5460), + [anon_sym_i64] = ACTIONS(5460), + [anon_sym_u8] = ACTIONS(5460), + [anon_sym_u16] = ACTIONS(5460), + [anon_sym_u32] = ACTIONS(5460), + [anon_sym_u64] = ACTIONS(5460), + [anon_sym_isize] = ACTIONS(5460), + [anon_sym_usize] = ACTIONS(5460), + [anon_sym_f32] = ACTIONS(5460), + [anon_sym_f64] = ACTIONS(5460), + [anon_sym_c_char] = ACTIONS(5460), + [anon_sym_c_schar] = ACTIONS(5460), + [anon_sym_c_uchar] = ACTIONS(5460), + [anon_sym_c_short] = ACTIONS(5460), + [anon_sym_c_ushort] = ACTIONS(5460), + [anon_sym_c_int] = ACTIONS(5460), + [anon_sym_c_uint] = ACTIONS(5460), + [anon_sym_c_long] = ACTIONS(5460), + [anon_sym_c_ulong] = ACTIONS(5460), + [anon_sym_c_longlong] = ACTIONS(5460), + [anon_sym_c_ulonglong] = ACTIONS(5460), + [anon_sym_c_float] = ACTIONS(5460), + [anon_sym_c_double] = ACTIONS(5460), + [anon_sym_c_longdouble] = ACTIONS(5460), + [anon_sym_PLUS_EQ] = ACTIONS(5458), + [anon_sym_DASH_EQ] = ACTIONS(5458), + [anon_sym_STAR_EQ] = ACTIONS(5458), + [anon_sym_SLASH_EQ] = ACTIONS(5458), + [anon_sym_AMP_EQ] = ACTIONS(5458), + [anon_sym_PIPE_EQ] = ACTIONS(5458), + [anon_sym_xor_EQ] = ACTIONS(5458), + [anon_sym_LT_LT_EQ] = ACTIONS(5458), + [anon_sym_GT_GT_EQ] = ACTIONS(5458), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5458), + [anon_sym_return] = ACTIONS(5460), + [anon_sym_yield] = ACTIONS(5460), + [anon_sym_break] = ACTIONS(5460), + [anon_sym_continue] = ACTIONS(5460), + [anon_sym_defer] = ACTIONS(5460), + [anon_sym_errdefer] = ACTIONS(5460), + [anon_sym_if] = ACTIONS(5460), + [anon_sym_else] = ACTIONS(5460), + [anon_sym_while] = ACTIONS(5460), + [anon_sym_expand] = ACTIONS(5460), + [anon_sym_for] = ACTIONS(5460), + [anon_sym_match] = ACTIONS(5460), + [anon_sym_DOT_DOT] = ACTIONS(5460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5458), + [anon_sym_orelse] = ACTIONS(5460), + [anon_sym_or] = ACTIONS(5460), + [anon_sym_and] = ACTIONS(5460), + [anon_sym_EQ_EQ] = ACTIONS(5458), + [anon_sym_BANG_EQ] = ACTIONS(5458), + [anon_sym_LT] = ACTIONS(5460), + [anon_sym_LT_EQ] = ACTIONS(5458), + [anon_sym_GT] = ACTIONS(5460), + [anon_sym_GT_EQ] = ACTIONS(5458), + [anon_sym_AMP] = ACTIONS(5460), + [anon_sym_xor] = ACTIONS(5460), + [anon_sym_LT_LT] = ACTIONS(5460), + [anon_sym_GT_GT] = ACTIONS(5460), + [anon_sym_LT_LT_PIPE] = ACTIONS(5460), + [anon_sym_PLUS] = ACTIONS(5460), + [anon_sym_SLASH] = ACTIONS(5460), + [anon_sym_catch] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5458), + [anon_sym_try] = ACTIONS(5460), + [anon_sym_DOT] = ACTIONS(5460), + [anon_sym_CARET] = ACTIONS(5458), + [anon_sym_true] = ACTIONS(5460), + [anon_sym_false] = ACTIONS(5460), + [anon_sym_null] = ACTIONS(5460), + [anon_sym_unreachable] = ACTIONS(5460), + [anon_sym_undefined] = ACTIONS(5460), + [sym_sink] = ACTIONS(5460), + [sym_integer] = ACTIONS(5460), + [sym_float] = ACTIONS(5458), + [anon_sym_DQUOTE] = ACTIONS(5458), + [sym_multiline_string] = ACTIONS(5458), + [sym_character] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5458), + }, + [STATE(3270)] = { + [sym_identifier] = ACTIONS(5464), + [anon_sym_func] = ACTIONS(5464), + [anon_sym_c_func] = ACTIONS(5464), + [anon_sym_BANG] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(5464), + [anon_sym_struct] = ACTIONS(5464), + [anon_sym_LPAREN] = ACTIONS(5462), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_COMMA] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_DASH] = ACTIONS(5464), + [anon_sym_DOLLAR] = ACTIONS(5462), + [anon_sym_PIPE] = ACTIONS(5464), + [anon_sym_struct_type_BANG] = ACTIONS(5462), + [anon_sym_QMARK] = ACTIONS(5462), + [anon_sym_AT] = ACTIONS(5462), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_void] = ACTIONS(5464), + [anon_sym_noreturn] = ACTIONS(5464), + [anon_sym_type] = ACTIONS(5464), + [anon_sym_anyopaque] = ACTIONS(5464), + [anon_sym_bool] = ACTIONS(5464), + [anon_sym_int] = ACTIONS(5464), + [anon_sym_uint] = ACTIONS(5464), + [anon_sym_float] = ACTIONS(5464), + [anon_sym_range] = ACTIONS(5464), + [anon_sym_i8] = ACTIONS(5464), + [anon_sym_i16] = ACTIONS(5464), + [anon_sym_i32] = ACTIONS(5464), + [anon_sym_i64] = ACTIONS(5464), + [anon_sym_u8] = ACTIONS(5464), + [anon_sym_u16] = ACTIONS(5464), + [anon_sym_u32] = ACTIONS(5464), + [anon_sym_u64] = ACTIONS(5464), + [anon_sym_isize] = ACTIONS(5464), + [anon_sym_usize] = ACTIONS(5464), + [anon_sym_f32] = ACTIONS(5464), + [anon_sym_f64] = ACTIONS(5464), + [anon_sym_c_char] = ACTIONS(5464), + [anon_sym_c_schar] = ACTIONS(5464), + [anon_sym_c_uchar] = ACTIONS(5464), + [anon_sym_c_short] = ACTIONS(5464), + [anon_sym_c_ushort] = ACTIONS(5464), + [anon_sym_c_int] = ACTIONS(5464), + [anon_sym_c_uint] = ACTIONS(5464), + [anon_sym_c_long] = ACTIONS(5464), + [anon_sym_c_ulong] = ACTIONS(5464), + [anon_sym_c_longlong] = ACTIONS(5464), + [anon_sym_c_ulonglong] = ACTIONS(5464), + [anon_sym_c_float] = ACTIONS(5464), + [anon_sym_c_double] = ACTIONS(5464), + [anon_sym_c_longdouble] = ACTIONS(5464), + [anon_sym_PLUS_EQ] = ACTIONS(5462), + [anon_sym_DASH_EQ] = ACTIONS(5462), + [anon_sym_STAR_EQ] = ACTIONS(5462), + [anon_sym_SLASH_EQ] = ACTIONS(5462), + [anon_sym_AMP_EQ] = ACTIONS(5462), + [anon_sym_PIPE_EQ] = ACTIONS(5462), + [anon_sym_xor_EQ] = ACTIONS(5462), + [anon_sym_LT_LT_EQ] = ACTIONS(5462), + [anon_sym_GT_GT_EQ] = ACTIONS(5462), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5462), + [anon_sym_return] = ACTIONS(5464), + [anon_sym_yield] = ACTIONS(5464), + [anon_sym_break] = ACTIONS(5464), + [anon_sym_continue] = ACTIONS(5464), + [anon_sym_defer] = ACTIONS(5464), + [anon_sym_errdefer] = ACTIONS(5464), + [anon_sym_if] = ACTIONS(5464), + [anon_sym_else] = ACTIONS(5464), + [anon_sym_while] = ACTIONS(5464), + [anon_sym_expand] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(5464), + [anon_sym_match] = ACTIONS(5464), + [anon_sym_DOT_DOT] = ACTIONS(5464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5462), + [anon_sym_orelse] = ACTIONS(5464), + [anon_sym_or] = ACTIONS(5464), + [anon_sym_and] = ACTIONS(5464), + [anon_sym_EQ_EQ] = ACTIONS(5462), + [anon_sym_BANG_EQ] = ACTIONS(5462), + [anon_sym_LT] = ACTIONS(5464), + [anon_sym_LT_EQ] = ACTIONS(5462), + [anon_sym_GT] = ACTIONS(5464), + [anon_sym_GT_EQ] = ACTIONS(5462), + [anon_sym_AMP] = ACTIONS(5464), + [anon_sym_xor] = ACTIONS(5464), + [anon_sym_LT_LT] = ACTIONS(5464), + [anon_sym_GT_GT] = ACTIONS(5464), + [anon_sym_LT_LT_PIPE] = ACTIONS(5464), + [anon_sym_PLUS] = ACTIONS(5464), + [anon_sym_SLASH] = ACTIONS(5464), + [anon_sym_catch] = ACTIONS(5464), + [anon_sym_TILDE] = ACTIONS(5462), + [anon_sym_try] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5464), + [anon_sym_CARET] = ACTIONS(5462), + [anon_sym_true] = ACTIONS(5464), + [anon_sym_false] = ACTIONS(5464), + [anon_sym_null] = ACTIONS(5464), + [anon_sym_unreachable] = ACTIONS(5464), + [anon_sym_undefined] = ACTIONS(5464), + [sym_sink] = ACTIONS(5464), + [sym_integer] = ACTIONS(5464), + [sym_float] = ACTIONS(5462), + [anon_sym_DQUOTE] = ACTIONS(5462), + [sym_multiline_string] = ACTIONS(5462), + [sym_character] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5462), + }, + [STATE(3271)] = { + [sym_identifier] = ACTIONS(5468), + [anon_sym_func] = ACTIONS(5468), + [anon_sym_c_func] = ACTIONS(5468), + [anon_sym_BANG] = ACTIONS(5468), + [anon_sym_EQ] = ACTIONS(5468), + [anon_sym_struct] = ACTIONS(5468), + [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5466), + [anon_sym_COMMA] = ACTIONS(5466), + [anon_sym_RBRACE] = ACTIONS(5466), + [anon_sym_DASH] = ACTIONS(5468), + [anon_sym_DOLLAR] = ACTIONS(5466), + [anon_sym_PIPE] = ACTIONS(5468), + [anon_sym_struct_type_BANG] = ACTIONS(5466), + [anon_sym_QMARK] = ACTIONS(5466), + [anon_sym_AT] = ACTIONS(5466), + [anon_sym_STAR] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_void] = ACTIONS(5468), + [anon_sym_noreturn] = ACTIONS(5468), + [anon_sym_type] = ACTIONS(5468), + [anon_sym_anyopaque] = ACTIONS(5468), + [anon_sym_bool] = ACTIONS(5468), + [anon_sym_int] = ACTIONS(5468), + [anon_sym_uint] = ACTIONS(5468), + [anon_sym_float] = ACTIONS(5468), + [anon_sym_range] = ACTIONS(5468), + [anon_sym_i8] = ACTIONS(5468), + [anon_sym_i16] = ACTIONS(5468), + [anon_sym_i32] = ACTIONS(5468), + [anon_sym_i64] = ACTIONS(5468), + [anon_sym_u8] = ACTIONS(5468), + [anon_sym_u16] = ACTIONS(5468), + [anon_sym_u32] = ACTIONS(5468), + [anon_sym_u64] = ACTIONS(5468), + [anon_sym_isize] = ACTIONS(5468), + [anon_sym_usize] = ACTIONS(5468), + [anon_sym_f32] = ACTIONS(5468), + [anon_sym_f64] = ACTIONS(5468), + [anon_sym_c_char] = ACTIONS(5468), + [anon_sym_c_schar] = ACTIONS(5468), + [anon_sym_c_uchar] = ACTIONS(5468), + [anon_sym_c_short] = ACTIONS(5468), + [anon_sym_c_ushort] = ACTIONS(5468), + [anon_sym_c_int] = ACTIONS(5468), + [anon_sym_c_uint] = ACTIONS(5468), + [anon_sym_c_long] = ACTIONS(5468), + [anon_sym_c_ulong] = ACTIONS(5468), + [anon_sym_c_longlong] = ACTIONS(5468), + [anon_sym_c_ulonglong] = ACTIONS(5468), + [anon_sym_c_float] = ACTIONS(5468), + [anon_sym_c_double] = ACTIONS(5468), + [anon_sym_c_longdouble] = ACTIONS(5468), + [anon_sym_PLUS_EQ] = ACTIONS(5466), + [anon_sym_DASH_EQ] = ACTIONS(5466), + [anon_sym_STAR_EQ] = ACTIONS(5466), + [anon_sym_SLASH_EQ] = ACTIONS(5466), + [anon_sym_AMP_EQ] = ACTIONS(5466), + [anon_sym_PIPE_EQ] = ACTIONS(5466), + [anon_sym_xor_EQ] = ACTIONS(5466), + [anon_sym_LT_LT_EQ] = ACTIONS(5466), + [anon_sym_GT_GT_EQ] = ACTIONS(5466), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5466), + [anon_sym_return] = ACTIONS(5468), + [anon_sym_yield] = ACTIONS(5468), + [anon_sym_break] = ACTIONS(5468), + [anon_sym_continue] = ACTIONS(5468), + [anon_sym_defer] = ACTIONS(5468), + [anon_sym_errdefer] = ACTIONS(5468), + [anon_sym_if] = ACTIONS(5468), + [anon_sym_else] = ACTIONS(5468), + [anon_sym_while] = ACTIONS(5468), + [anon_sym_expand] = ACTIONS(5468), + [anon_sym_for] = ACTIONS(5468), + [anon_sym_match] = ACTIONS(5468), + [anon_sym_DOT_DOT] = ACTIONS(5468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5466), + [anon_sym_orelse] = ACTIONS(5468), + [anon_sym_or] = ACTIONS(5468), + [anon_sym_and] = ACTIONS(5468), + [anon_sym_EQ_EQ] = ACTIONS(5466), + [anon_sym_BANG_EQ] = ACTIONS(5466), + [anon_sym_LT] = ACTIONS(5468), + [anon_sym_LT_EQ] = ACTIONS(5466), + [anon_sym_GT] = ACTIONS(5468), + [anon_sym_GT_EQ] = ACTIONS(5466), + [anon_sym_AMP] = ACTIONS(5468), + [anon_sym_xor] = ACTIONS(5468), + [anon_sym_LT_LT] = ACTIONS(5468), + [anon_sym_GT_GT] = ACTIONS(5468), + [anon_sym_LT_LT_PIPE] = ACTIONS(5468), + [anon_sym_PLUS] = ACTIONS(5468), + [anon_sym_SLASH] = ACTIONS(5468), + [anon_sym_catch] = ACTIONS(5468), + [anon_sym_TILDE] = ACTIONS(5466), + [anon_sym_try] = ACTIONS(5468), + [anon_sym_DOT] = ACTIONS(5468), + [anon_sym_CARET] = ACTIONS(5466), + [anon_sym_true] = ACTIONS(5468), + [anon_sym_false] = ACTIONS(5468), + [anon_sym_null] = ACTIONS(5468), + [anon_sym_unreachable] = ACTIONS(5468), + [anon_sym_undefined] = ACTIONS(5468), + [sym_sink] = ACTIONS(5468), + [sym_integer] = ACTIONS(5468), + [sym_float] = ACTIONS(5466), + [anon_sym_DQUOTE] = ACTIONS(5466), + [sym_multiline_string] = ACTIONS(5466), + [sym_character] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5466), + }, + [STATE(3272)] = { + [sym_identifier] = ACTIONS(5780), + [anon_sym_func] = ACTIONS(5780), + [anon_sym_c_func] = ACTIONS(5782), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_EQ] = ACTIONS(5782), + [anon_sym_struct] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(5784), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5784), + [anon_sym_PIPE] = ACTIONS(5780), + [anon_sym_struct_type_BANG] = ACTIONS(5778), + [anon_sym_QMARK] = ACTIONS(5784), + [anon_sym_AT] = ACTIONS(5778), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5784), + [anon_sym_void] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym_type] = ACTIONS(5780), + [anon_sym_anyopaque] = ACTIONS(5780), + [anon_sym_bool] = ACTIONS(5780), + [anon_sym_int] = ACTIONS(5780), + [anon_sym_uint] = ACTIONS(5780), + [anon_sym_float] = ACTIONS(5780), + [anon_sym_range] = ACTIONS(5780), + [anon_sym_i8] = ACTIONS(5780), + [anon_sym_i16] = ACTIONS(5780), + [anon_sym_i32] = ACTIONS(5780), + [anon_sym_i64] = ACTIONS(5780), + [anon_sym_u8] = ACTIONS(5780), + [anon_sym_u16] = ACTIONS(5780), + [anon_sym_u32] = ACTIONS(5780), + [anon_sym_u64] = ACTIONS(5780), + [anon_sym_isize] = ACTIONS(5780), + [anon_sym_usize] = ACTIONS(5780), + [anon_sym_f32] = ACTIONS(5780), + [anon_sym_f64] = ACTIONS(5780), + [anon_sym_c_char] = ACTIONS(5780), + [anon_sym_c_schar] = ACTIONS(5780), + [anon_sym_c_uchar] = ACTIONS(5780), + [anon_sym_c_short] = ACTIONS(5780), + [anon_sym_c_ushort] = ACTIONS(5780), + [anon_sym_c_int] = ACTIONS(5780), + [anon_sym_c_uint] = ACTIONS(5780), + [anon_sym_c_long] = ACTIONS(5780), + [anon_sym_c_ulong] = ACTIONS(5780), + [anon_sym_c_longlong] = ACTIONS(5780), + [anon_sym_c_ulonglong] = ACTIONS(5780), + [anon_sym_c_float] = ACTIONS(5780), + [anon_sym_c_double] = ACTIONS(5780), + [anon_sym_c_longdouble] = ACTIONS(5780), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5778), + [anon_sym_xor_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5778), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_defer] = ACTIONS(5780), + [anon_sym_errdefer] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_else] = ACTIONS(5782), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_expand] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5784), + [anon_sym_orelse] = ACTIONS(5780), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5784), + [anon_sym_BANG_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5780), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5780), + [anon_sym_LT_LT_PIPE] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5780), + [anon_sym_SLASH] = ACTIONS(5780), + [anon_sym_catch] = ACTIONS(5780), + [anon_sym_TILDE] = ACTIONS(5784), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5784), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_unreachable] = ACTIONS(5780), + [anon_sym_undefined] = ACTIONS(5780), + [sym_sink] = ACTIONS(5780), + [sym_integer] = ACTIONS(5780), + [sym_float] = ACTIONS(5784), + [anon_sym_DQUOTE] = ACTIONS(5784), + [sym_multiline_string] = ACTIONS(5784), + [sym_character] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5784), + }, + [STATE(3273)] = { + [sym_identifier] = ACTIONS(4582), + [anon_sym_func] = ACTIONS(4582), + [anon_sym_c_func] = ACTIONS(4582), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_struct] = ACTIONS(4582), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_DOLLAR] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4582), + [anon_sym_struct_type_BANG] = ACTIONS(4580), + [anon_sym_QMARK] = ACTIONS(4580), + [anon_sym_AT] = ACTIONS(4580), + [anon_sym_STAR] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_void] = ACTIONS(4582), + [anon_sym_noreturn] = ACTIONS(4582), + [anon_sym_type] = ACTIONS(4582), + [anon_sym_anyopaque] = ACTIONS(4582), + [anon_sym_bool] = ACTIONS(4582), + [anon_sym_int] = ACTIONS(4582), + [anon_sym_uint] = ACTIONS(4582), + [anon_sym_float] = ACTIONS(4582), + [anon_sym_range] = ACTIONS(4582), + [anon_sym_i8] = ACTIONS(4582), + [anon_sym_i16] = ACTIONS(4582), + [anon_sym_i32] = ACTIONS(4582), + [anon_sym_i64] = ACTIONS(4582), + [anon_sym_u8] = ACTIONS(4582), + [anon_sym_u16] = ACTIONS(4582), + [anon_sym_u32] = ACTIONS(4582), + [anon_sym_u64] = ACTIONS(4582), + [anon_sym_isize] = ACTIONS(4582), + [anon_sym_usize] = ACTIONS(4582), + [anon_sym_f32] = ACTIONS(4582), + [anon_sym_f64] = ACTIONS(4582), + [anon_sym_c_char] = ACTIONS(4582), + [anon_sym_c_schar] = ACTIONS(4582), + [anon_sym_c_uchar] = ACTIONS(4582), + [anon_sym_c_short] = ACTIONS(4582), + [anon_sym_c_ushort] = ACTIONS(4582), + [anon_sym_c_int] = ACTIONS(4582), + [anon_sym_c_uint] = ACTIONS(4582), + [anon_sym_c_long] = ACTIONS(4582), + [anon_sym_c_ulong] = ACTIONS(4582), + [anon_sym_c_longlong] = ACTIONS(4582), + [anon_sym_c_ulonglong] = ACTIONS(4582), + [anon_sym_c_float] = ACTIONS(4582), + [anon_sym_c_double] = ACTIONS(4582), + [anon_sym_c_longdouble] = ACTIONS(4582), + [anon_sym_PLUS_EQ] = ACTIONS(4580), + [anon_sym_DASH_EQ] = ACTIONS(4580), + [anon_sym_STAR_EQ] = ACTIONS(4580), + [anon_sym_SLASH_EQ] = ACTIONS(4580), + [anon_sym_AMP_EQ] = ACTIONS(4580), + [anon_sym_PIPE_EQ] = ACTIONS(4580), + [anon_sym_xor_EQ] = ACTIONS(4580), + [anon_sym_LT_LT_EQ] = ACTIONS(4580), + [anon_sym_GT_GT_EQ] = ACTIONS(4580), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4580), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_yield] = ACTIONS(4582), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_defer] = ACTIONS(4582), + [anon_sym_errdefer] = ACTIONS(4582), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_while] = ACTIONS(4582), + [anon_sym_expand] = ACTIONS(4582), + [anon_sym_for] = ACTIONS(4582), + [anon_sym_match] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4580), + [anon_sym_orelse] = ACTIONS(4582), + [anon_sym_or] = ACTIONS(4582), + [anon_sym_and] = ACTIONS(4582), + [anon_sym_EQ_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_AMP] = ACTIONS(4582), + [anon_sym_xor] = ACTIONS(4582), + [anon_sym_LT_LT] = ACTIONS(4582), + [anon_sym_GT_GT] = ACTIONS(4582), + [anon_sym_LT_LT_PIPE] = ACTIONS(4582), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_catch] = ACTIONS(4582), + [anon_sym_TILDE] = ACTIONS(4580), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_CARET] = ACTIONS(4580), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_null] = ACTIONS(4582), + [anon_sym_unreachable] = ACTIONS(4582), + [anon_sym_undefined] = ACTIONS(4582), + [sym_sink] = ACTIONS(4582), + [sym_integer] = ACTIONS(4582), + [sym_float] = ACTIONS(4580), + [anon_sym_DQUOTE] = ACTIONS(4580), + [sym_multiline_string] = ACTIONS(4580), + [sym_character] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4580), + }, + [STATE(3274)] = { + [sym_identifier] = ACTIONS(4586), + [anon_sym_func] = ACTIONS(4586), + [anon_sym_c_func] = ACTIONS(4586), + [anon_sym_BANG] = ACTIONS(4586), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_struct] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4586), + [anon_sym_struct_type_BANG] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_void] = ACTIONS(4586), + [anon_sym_noreturn] = ACTIONS(4586), + [anon_sym_type] = ACTIONS(4586), + [anon_sym_anyopaque] = ACTIONS(4586), + [anon_sym_bool] = ACTIONS(4586), + [anon_sym_int] = ACTIONS(4586), + [anon_sym_uint] = ACTIONS(4586), + [anon_sym_float] = ACTIONS(4586), + [anon_sym_range] = ACTIONS(4586), + [anon_sym_i8] = ACTIONS(4586), + [anon_sym_i16] = ACTIONS(4586), + [anon_sym_i32] = ACTIONS(4586), + [anon_sym_i64] = ACTIONS(4586), + [anon_sym_u8] = ACTIONS(4586), + [anon_sym_u16] = ACTIONS(4586), + [anon_sym_u32] = ACTIONS(4586), + [anon_sym_u64] = ACTIONS(4586), + [anon_sym_isize] = ACTIONS(4586), + [anon_sym_usize] = ACTIONS(4586), + [anon_sym_f32] = ACTIONS(4586), + [anon_sym_f64] = ACTIONS(4586), + [anon_sym_c_char] = ACTIONS(4586), + [anon_sym_c_schar] = ACTIONS(4586), + [anon_sym_c_uchar] = ACTIONS(4586), + [anon_sym_c_short] = ACTIONS(4586), + [anon_sym_c_ushort] = ACTIONS(4586), + [anon_sym_c_int] = ACTIONS(4586), + [anon_sym_c_uint] = ACTIONS(4586), + [anon_sym_c_long] = ACTIONS(4586), + [anon_sym_c_ulong] = ACTIONS(4586), + [anon_sym_c_longlong] = ACTIONS(4586), + [anon_sym_c_ulonglong] = ACTIONS(4586), + [anon_sym_c_float] = ACTIONS(4586), + [anon_sym_c_double] = ACTIONS(4586), + [anon_sym_c_longdouble] = ACTIONS(4586), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_AMP_EQ] = ACTIONS(4584), + [anon_sym_PIPE_EQ] = ACTIONS(4584), + [anon_sym_xor_EQ] = ACTIONS(4584), + [anon_sym_LT_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_GT_EQ] = ACTIONS(4584), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4584), + [anon_sym_return] = ACTIONS(4586), + [anon_sym_yield] = ACTIONS(4586), + [anon_sym_break] = ACTIONS(4586), + [anon_sym_continue] = ACTIONS(4586), + [anon_sym_defer] = ACTIONS(4586), + [anon_sym_errdefer] = ACTIONS(4586), + [anon_sym_if] = ACTIONS(4586), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_while] = ACTIONS(4586), + [anon_sym_expand] = ACTIONS(4586), + [anon_sym_for] = ACTIONS(4586), + [anon_sym_match] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4584), + [anon_sym_orelse] = ACTIONS(4586), + [anon_sym_or] = ACTIONS(4586), + [anon_sym_and] = ACTIONS(4586), + [anon_sym_EQ_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4586), + [anon_sym_GT_GT] = ACTIONS(4586), + [anon_sym_LT_LT_PIPE] = ACTIONS(4586), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4586), + [anon_sym_catch] = ACTIONS(4586), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_try] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4586), + [anon_sym_false] = ACTIONS(4586), + [anon_sym_null] = ACTIONS(4586), + [anon_sym_unreachable] = ACTIONS(4586), + [anon_sym_undefined] = ACTIONS(4586), + [sym_sink] = ACTIONS(4586), + [sym_integer] = ACTIONS(4586), + [sym_float] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [sym_multiline_string] = ACTIONS(4584), + [sym_character] = ACTIONS(4584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4584), + }, + [STATE(3275)] = { + [sym_identifier] = ACTIONS(5280), + [anon_sym_func] = ACTIONS(5280), + [anon_sym_c_func] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_EQ] = ACTIONS(5280), + [anon_sym_struct] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_RBRACE] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_DOLLAR] = ACTIONS(5278), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_struct_type_BANG] = ACTIONS(5278), + [anon_sym_QMARK] = ACTIONS(5278), + [anon_sym_AT] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_void] = ACTIONS(5280), + [anon_sym_noreturn] = ACTIONS(5280), + [anon_sym_type] = ACTIONS(5280), + [anon_sym_anyopaque] = ACTIONS(5280), + [anon_sym_bool] = ACTIONS(5280), + [anon_sym_int] = ACTIONS(5280), + [anon_sym_uint] = ACTIONS(5280), + [anon_sym_float] = ACTIONS(5280), + [anon_sym_range] = ACTIONS(5280), + [anon_sym_i8] = ACTIONS(5280), + [anon_sym_i16] = ACTIONS(5280), + [anon_sym_i32] = ACTIONS(5280), + [anon_sym_i64] = ACTIONS(5280), + [anon_sym_u8] = ACTIONS(5280), + [anon_sym_u16] = ACTIONS(5280), + [anon_sym_u32] = ACTIONS(5280), + [anon_sym_u64] = ACTIONS(5280), + [anon_sym_isize] = ACTIONS(5280), + [anon_sym_usize] = ACTIONS(5280), + [anon_sym_f32] = ACTIONS(5280), + [anon_sym_f64] = ACTIONS(5280), + [anon_sym_c_char] = ACTIONS(5280), + [anon_sym_c_schar] = ACTIONS(5280), + [anon_sym_c_uchar] = ACTIONS(5280), + [anon_sym_c_short] = ACTIONS(5280), + [anon_sym_c_ushort] = ACTIONS(5280), + [anon_sym_c_int] = ACTIONS(5280), + [anon_sym_c_uint] = ACTIONS(5280), + [anon_sym_c_long] = ACTIONS(5280), + [anon_sym_c_ulong] = ACTIONS(5280), + [anon_sym_c_longlong] = ACTIONS(5280), + [anon_sym_c_ulonglong] = ACTIONS(5280), + [anon_sym_c_float] = ACTIONS(5280), + [anon_sym_c_double] = ACTIONS(5280), + [anon_sym_c_longdouble] = ACTIONS(5280), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_xor_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5278), + [anon_sym_return] = ACTIONS(5280), + [anon_sym_yield] = ACTIONS(5280), + [anon_sym_break] = ACTIONS(5280), + [anon_sym_continue] = ACTIONS(5280), + [anon_sym_defer] = ACTIONS(5280), + [anon_sym_errdefer] = ACTIONS(5280), + [anon_sym_if] = ACTIONS(5280), + [anon_sym_else] = ACTIONS(5280), + [anon_sym_while] = ACTIONS(5280), + [anon_sym_expand] = ACTIONS(5280), + [anon_sym_for] = ACTIONS(5280), + [anon_sym_match] = ACTIONS(5280), + [anon_sym_DOT_DOT] = ACTIONS(5280), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5278), + [anon_sym_orelse] = ACTIONS(5280), + [anon_sym_or] = ACTIONS(5280), + [anon_sym_and] = ACTIONS(5280), + [anon_sym_EQ_EQ] = ACTIONS(5278), + [anon_sym_BANG_EQ] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5280), + [anon_sym_xor] = ACTIONS(5280), + [anon_sym_LT_LT] = ACTIONS(5280), + [anon_sym_GT_GT] = ACTIONS(5280), + [anon_sym_LT_LT_PIPE] = ACTIONS(5280), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_catch] = ACTIONS(5280), + [anon_sym_TILDE] = ACTIONS(5278), + [anon_sym_try] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5278), + [anon_sym_true] = ACTIONS(5280), + [anon_sym_false] = ACTIONS(5280), + [anon_sym_null] = ACTIONS(5280), + [anon_sym_unreachable] = ACTIONS(5280), + [anon_sym_undefined] = ACTIONS(5280), + [sym_sink] = ACTIONS(5280), + [sym_integer] = ACTIONS(5280), + [sym_float] = ACTIONS(5278), + [anon_sym_DQUOTE] = ACTIONS(5278), + [sym_multiline_string] = ACTIONS(5278), + [sym_character] = ACTIONS(5278), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5278), + }, + [STATE(3276)] = { + [sym_identifier] = ACTIONS(5472), + [anon_sym_func] = ACTIONS(5472), + [anon_sym_c_func] = ACTIONS(5472), + [anon_sym_BANG] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5472), + [anon_sym_struct] = ACTIONS(5472), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_DASH] = ACTIONS(5472), + [anon_sym_DOLLAR] = ACTIONS(5470), + [anon_sym_PIPE] = ACTIONS(5472), + [anon_sym_struct_type_BANG] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5470), + [anon_sym_AT] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_void] = ACTIONS(5472), + [anon_sym_noreturn] = ACTIONS(5472), + [anon_sym_type] = ACTIONS(5472), + [anon_sym_anyopaque] = ACTIONS(5472), + [anon_sym_bool] = ACTIONS(5472), + [anon_sym_int] = ACTIONS(5472), + [anon_sym_uint] = ACTIONS(5472), + [anon_sym_float] = ACTIONS(5472), + [anon_sym_range] = ACTIONS(5472), + [anon_sym_i8] = ACTIONS(5472), + [anon_sym_i16] = ACTIONS(5472), + [anon_sym_i32] = ACTIONS(5472), + [anon_sym_i64] = ACTIONS(5472), + [anon_sym_u8] = ACTIONS(5472), + [anon_sym_u16] = ACTIONS(5472), + [anon_sym_u32] = ACTIONS(5472), + [anon_sym_u64] = ACTIONS(5472), + [anon_sym_isize] = ACTIONS(5472), + [anon_sym_usize] = ACTIONS(5472), + [anon_sym_f32] = ACTIONS(5472), + [anon_sym_f64] = ACTIONS(5472), + [anon_sym_c_char] = ACTIONS(5472), + [anon_sym_c_schar] = ACTIONS(5472), + [anon_sym_c_uchar] = ACTIONS(5472), + [anon_sym_c_short] = ACTIONS(5472), + [anon_sym_c_ushort] = ACTIONS(5472), + [anon_sym_c_int] = ACTIONS(5472), + [anon_sym_c_uint] = ACTIONS(5472), + [anon_sym_c_long] = ACTIONS(5472), + [anon_sym_c_ulong] = ACTIONS(5472), + [anon_sym_c_longlong] = ACTIONS(5472), + [anon_sym_c_ulonglong] = ACTIONS(5472), + [anon_sym_c_float] = ACTIONS(5472), + [anon_sym_c_double] = ACTIONS(5472), + [anon_sym_c_longdouble] = ACTIONS(5472), + [anon_sym_PLUS_EQ] = ACTIONS(5470), + [anon_sym_DASH_EQ] = ACTIONS(5470), + [anon_sym_STAR_EQ] = ACTIONS(5470), + [anon_sym_SLASH_EQ] = ACTIONS(5470), + [anon_sym_AMP_EQ] = ACTIONS(5470), + [anon_sym_PIPE_EQ] = ACTIONS(5470), + [anon_sym_xor_EQ] = ACTIONS(5470), + [anon_sym_LT_LT_EQ] = ACTIONS(5470), + [anon_sym_GT_GT_EQ] = ACTIONS(5470), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5470), + [anon_sym_return] = ACTIONS(5472), + [anon_sym_yield] = ACTIONS(5472), + [anon_sym_break] = ACTIONS(5472), + [anon_sym_continue] = ACTIONS(5472), + [anon_sym_defer] = ACTIONS(5472), + [anon_sym_errdefer] = ACTIONS(5472), + [anon_sym_if] = ACTIONS(5472), + [anon_sym_else] = ACTIONS(5472), + [anon_sym_while] = ACTIONS(5472), + [anon_sym_expand] = ACTIONS(5472), + [anon_sym_for] = ACTIONS(5472), + [anon_sym_match] = ACTIONS(5472), + [anon_sym_DOT_DOT] = ACTIONS(5472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5470), + [anon_sym_orelse] = ACTIONS(5472), + [anon_sym_or] = ACTIONS(5472), + [anon_sym_and] = ACTIONS(5472), + [anon_sym_EQ_EQ] = ACTIONS(5470), + [anon_sym_BANG_EQ] = ACTIONS(5470), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_LT_EQ] = ACTIONS(5470), + [anon_sym_GT] = ACTIONS(5472), + [anon_sym_GT_EQ] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(5472), + [anon_sym_xor] = ACTIONS(5472), + [anon_sym_LT_LT] = ACTIONS(5472), + [anon_sym_GT_GT] = ACTIONS(5472), + [anon_sym_LT_LT_PIPE] = ACTIONS(5472), + [anon_sym_PLUS] = ACTIONS(5472), + [anon_sym_SLASH] = ACTIONS(5472), + [anon_sym_catch] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5470), + [anon_sym_try] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5472), + [anon_sym_CARET] = ACTIONS(5470), + [anon_sym_true] = ACTIONS(5472), + [anon_sym_false] = ACTIONS(5472), + [anon_sym_null] = ACTIONS(5472), + [anon_sym_unreachable] = ACTIONS(5472), + [anon_sym_undefined] = ACTIONS(5472), + [sym_sink] = ACTIONS(5472), + [sym_integer] = ACTIONS(5472), + [sym_float] = ACTIONS(5470), + [anon_sym_DQUOTE] = ACTIONS(5470), + [sym_multiline_string] = ACTIONS(5470), + [sym_character] = ACTIONS(5470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5470), + }, + [STATE(3277)] = { + [sym_identifier] = ACTIONS(5284), + [anon_sym_func] = ACTIONS(5284), + [anon_sym_c_func] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_EQ] = ACTIONS(5284), + [anon_sym_struct] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_struct_type_BANG] = ACTIONS(5282), + [anon_sym_QMARK] = ACTIONS(5282), + [anon_sym_AT] = ACTIONS(5282), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_void] = ACTIONS(5284), + [anon_sym_noreturn] = ACTIONS(5284), + [anon_sym_type] = ACTIONS(5284), + [anon_sym_anyopaque] = ACTIONS(5284), + [anon_sym_bool] = ACTIONS(5284), + [anon_sym_int] = ACTIONS(5284), + [anon_sym_uint] = ACTIONS(5284), + [anon_sym_float] = ACTIONS(5284), + [anon_sym_range] = ACTIONS(5284), + [anon_sym_i8] = ACTIONS(5284), + [anon_sym_i16] = ACTIONS(5284), + [anon_sym_i32] = ACTIONS(5284), + [anon_sym_i64] = ACTIONS(5284), + [anon_sym_u8] = ACTIONS(5284), + [anon_sym_u16] = ACTIONS(5284), + [anon_sym_u32] = ACTIONS(5284), + [anon_sym_u64] = ACTIONS(5284), + [anon_sym_isize] = ACTIONS(5284), + [anon_sym_usize] = ACTIONS(5284), + [anon_sym_f32] = ACTIONS(5284), + [anon_sym_f64] = ACTIONS(5284), + [anon_sym_c_char] = ACTIONS(5284), + [anon_sym_c_schar] = ACTIONS(5284), + [anon_sym_c_uchar] = ACTIONS(5284), + [anon_sym_c_short] = ACTIONS(5284), + [anon_sym_c_ushort] = ACTIONS(5284), + [anon_sym_c_int] = ACTIONS(5284), + [anon_sym_c_uint] = ACTIONS(5284), + [anon_sym_c_long] = ACTIONS(5284), + [anon_sym_c_ulong] = ACTIONS(5284), + [anon_sym_c_longlong] = ACTIONS(5284), + [anon_sym_c_ulonglong] = ACTIONS(5284), + [anon_sym_c_float] = ACTIONS(5284), + [anon_sym_c_double] = ACTIONS(5284), + [anon_sym_c_longdouble] = ACTIONS(5284), + [anon_sym_PLUS_EQ] = ACTIONS(5282), + [anon_sym_DASH_EQ] = ACTIONS(5282), + [anon_sym_STAR_EQ] = ACTIONS(5282), + [anon_sym_SLASH_EQ] = ACTIONS(5282), + [anon_sym_AMP_EQ] = ACTIONS(5282), + [anon_sym_PIPE_EQ] = ACTIONS(5282), + [anon_sym_xor_EQ] = ACTIONS(5282), + [anon_sym_LT_LT_EQ] = ACTIONS(5282), + [anon_sym_GT_GT_EQ] = ACTIONS(5282), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5282), + [anon_sym_return] = ACTIONS(5284), + [anon_sym_yield] = ACTIONS(5284), + [anon_sym_break] = ACTIONS(5284), + [anon_sym_continue] = ACTIONS(5284), + [anon_sym_defer] = ACTIONS(5284), + [anon_sym_errdefer] = ACTIONS(5284), + [anon_sym_if] = ACTIONS(5284), + [anon_sym_else] = ACTIONS(5284), + [anon_sym_while] = ACTIONS(5284), + [anon_sym_expand] = ACTIONS(5284), + [anon_sym_for] = ACTIONS(5284), + [anon_sym_match] = ACTIONS(5284), + [anon_sym_DOT_DOT] = ACTIONS(5284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5282), + [anon_sym_orelse] = ACTIONS(5284), + [anon_sym_or] = ACTIONS(5284), + [anon_sym_and] = ACTIONS(5284), + [anon_sym_EQ_EQ] = ACTIONS(5282), + [anon_sym_BANG_EQ] = ACTIONS(5282), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_LT_EQ] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_EQ] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), + [anon_sym_xor] = ACTIONS(5284), + [anon_sym_LT_LT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5284), + [anon_sym_LT_LT_PIPE] = ACTIONS(5284), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_catch] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5282), + [anon_sym_try] = ACTIONS(5284), + [anon_sym_DOT] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5282), + [anon_sym_true] = ACTIONS(5284), + [anon_sym_false] = ACTIONS(5284), + [anon_sym_null] = ACTIONS(5284), + [anon_sym_unreachable] = ACTIONS(5284), + [anon_sym_undefined] = ACTIONS(5284), + [sym_sink] = ACTIONS(5284), + [sym_integer] = ACTIONS(5284), + [sym_float] = ACTIONS(5282), + [anon_sym_DQUOTE] = ACTIONS(5282), + [sym_multiline_string] = ACTIONS(5282), + [sym_character] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5282), + }, + [STATE(3278)] = { + [sym_identifier] = ACTIONS(4590), + [anon_sym_func] = ACTIONS(4590), + [anon_sym_c_func] = ACTIONS(4590), + [anon_sym_BANG] = ACTIONS(4590), + [anon_sym_EQ] = ACTIONS(4590), + [anon_sym_struct] = ACTIONS(4590), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_struct_type_BANG] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_AT] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4590), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_void] = ACTIONS(4590), + [anon_sym_noreturn] = ACTIONS(4590), + [anon_sym_type] = ACTIONS(4590), + [anon_sym_anyopaque] = ACTIONS(4590), + [anon_sym_bool] = ACTIONS(4590), + [anon_sym_int] = ACTIONS(4590), + [anon_sym_uint] = ACTIONS(4590), + [anon_sym_float] = ACTIONS(4590), + [anon_sym_range] = ACTIONS(4590), + [anon_sym_i8] = ACTIONS(4590), + [anon_sym_i16] = ACTIONS(4590), + [anon_sym_i32] = ACTIONS(4590), + [anon_sym_i64] = ACTIONS(4590), + [anon_sym_u8] = ACTIONS(4590), + [anon_sym_u16] = ACTIONS(4590), + [anon_sym_u32] = ACTIONS(4590), + [anon_sym_u64] = ACTIONS(4590), + [anon_sym_isize] = ACTIONS(4590), + [anon_sym_usize] = ACTIONS(4590), + [anon_sym_f32] = ACTIONS(4590), + [anon_sym_f64] = ACTIONS(4590), + [anon_sym_c_char] = ACTIONS(4590), + [anon_sym_c_schar] = ACTIONS(4590), + [anon_sym_c_uchar] = ACTIONS(4590), + [anon_sym_c_short] = ACTIONS(4590), + [anon_sym_c_ushort] = ACTIONS(4590), + [anon_sym_c_int] = ACTIONS(4590), + [anon_sym_c_uint] = ACTIONS(4590), + [anon_sym_c_long] = ACTIONS(4590), + [anon_sym_c_ulong] = ACTIONS(4590), + [anon_sym_c_longlong] = ACTIONS(4590), + [anon_sym_c_ulonglong] = ACTIONS(4590), + [anon_sym_c_float] = ACTIONS(4590), + [anon_sym_c_double] = ACTIONS(4590), + [anon_sym_c_longdouble] = ACTIONS(4590), + [anon_sym_PLUS_EQ] = ACTIONS(4588), + [anon_sym_DASH_EQ] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4588), + [anon_sym_SLASH_EQ] = ACTIONS(4588), + [anon_sym_AMP_EQ] = ACTIONS(4588), + [anon_sym_PIPE_EQ] = ACTIONS(4588), + [anon_sym_xor_EQ] = ACTIONS(4588), + [anon_sym_LT_LT_EQ] = ACTIONS(4588), + [anon_sym_GT_GT_EQ] = ACTIONS(4588), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4588), + [anon_sym_return] = ACTIONS(4590), + [anon_sym_yield] = ACTIONS(4590), + [anon_sym_break] = ACTIONS(4590), + [anon_sym_continue] = ACTIONS(4590), + [anon_sym_defer] = ACTIONS(4590), + [anon_sym_errdefer] = ACTIONS(4590), + [anon_sym_if] = ACTIONS(4590), + [anon_sym_else] = ACTIONS(4590), + [anon_sym_while] = ACTIONS(4590), + [anon_sym_expand] = ACTIONS(4590), + [anon_sym_for] = ACTIONS(4590), + [anon_sym_match] = ACTIONS(4590), + [anon_sym_DOT_DOT] = ACTIONS(4590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4588), + [anon_sym_orelse] = ACTIONS(4590), + [anon_sym_or] = ACTIONS(4590), + [anon_sym_and] = ACTIONS(4590), + [anon_sym_EQ_EQ] = ACTIONS(4588), + [anon_sym_BANG_EQ] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_LT_EQ] = ACTIONS(4588), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_GT_EQ] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_xor] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4590), + [anon_sym_catch] = ACTIONS(4590), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_try] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4588), + [anon_sym_true] = ACTIONS(4590), + [anon_sym_false] = ACTIONS(4590), + [anon_sym_null] = ACTIONS(4590), + [anon_sym_unreachable] = ACTIONS(4590), + [anon_sym_undefined] = ACTIONS(4590), + [sym_sink] = ACTIONS(4590), + [sym_integer] = ACTIONS(4590), + [sym_float] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym_multiline_string] = ACTIONS(4588), + [sym_character] = ACTIONS(4588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4588), + }, + [STATE(3279)] = { + [sym_identifier] = ACTIONS(4594), + [anon_sym_func] = ACTIONS(4594), + [anon_sym_c_func] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_EQ] = ACTIONS(4594), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_RBRACE] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PIPE] = ACTIONS(4594), + [anon_sym_struct_type_BANG] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_AT] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_void] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_type] = ACTIONS(4594), + [anon_sym_anyopaque] = ACTIONS(4594), + [anon_sym_bool] = ACTIONS(4594), + [anon_sym_int] = ACTIONS(4594), + [anon_sym_uint] = ACTIONS(4594), + [anon_sym_float] = ACTIONS(4594), + [anon_sym_range] = ACTIONS(4594), + [anon_sym_i8] = ACTIONS(4594), + [anon_sym_i16] = ACTIONS(4594), + [anon_sym_i32] = ACTIONS(4594), + [anon_sym_i64] = ACTIONS(4594), + [anon_sym_u8] = ACTIONS(4594), + [anon_sym_u16] = ACTIONS(4594), + [anon_sym_u32] = ACTIONS(4594), + [anon_sym_u64] = ACTIONS(4594), + [anon_sym_isize] = ACTIONS(4594), + [anon_sym_usize] = ACTIONS(4594), + [anon_sym_f32] = ACTIONS(4594), + [anon_sym_f64] = ACTIONS(4594), + [anon_sym_c_char] = ACTIONS(4594), + [anon_sym_c_schar] = ACTIONS(4594), + [anon_sym_c_uchar] = ACTIONS(4594), + [anon_sym_c_short] = ACTIONS(4594), + [anon_sym_c_ushort] = ACTIONS(4594), + [anon_sym_c_int] = ACTIONS(4594), + [anon_sym_c_uint] = ACTIONS(4594), + [anon_sym_c_long] = ACTIONS(4594), + [anon_sym_c_ulong] = ACTIONS(4594), + [anon_sym_c_longlong] = ACTIONS(4594), + [anon_sym_c_ulonglong] = ACTIONS(4594), + [anon_sym_c_float] = ACTIONS(4594), + [anon_sym_c_double] = ACTIONS(4594), + [anon_sym_c_longdouble] = ACTIONS(4594), + [anon_sym_PLUS_EQ] = ACTIONS(4592), + [anon_sym_DASH_EQ] = ACTIONS(4592), + [anon_sym_STAR_EQ] = ACTIONS(4592), + [anon_sym_SLASH_EQ] = ACTIONS(4592), + [anon_sym_AMP_EQ] = ACTIONS(4592), + [anon_sym_PIPE_EQ] = ACTIONS(4592), + [anon_sym_xor_EQ] = ACTIONS(4592), + [anon_sym_LT_LT_EQ] = ACTIONS(4592), + [anon_sym_GT_GT_EQ] = ACTIONS(4592), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4592), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_continue] = ACTIONS(4594), + [anon_sym_defer] = ACTIONS(4594), + [anon_sym_errdefer] = ACTIONS(4594), + [anon_sym_if] = ACTIONS(4594), + [anon_sym_else] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_expand] = ACTIONS(4594), + [anon_sym_for] = ACTIONS(4594), + [anon_sym_match] = ACTIONS(4594), + [anon_sym_DOT_DOT] = ACTIONS(4594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4592), + [anon_sym_orelse] = ACTIONS(4594), + [anon_sym_or] = ACTIONS(4594), + [anon_sym_and] = ACTIONS(4594), + [anon_sym_EQ_EQ] = ACTIONS(4592), + [anon_sym_BANG_EQ] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_LT_EQ] = ACTIONS(4592), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_xor] = ACTIONS(4594), + [anon_sym_LT_LT] = ACTIONS(4594), + [anon_sym_GT_GT] = ACTIONS(4594), + [anon_sym_LT_LT_PIPE] = ACTIONS(4594), + [anon_sym_PLUS] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_catch] = ACTIONS(4594), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_try] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_true] = ACTIONS(4594), + [anon_sym_false] = ACTIONS(4594), + [anon_sym_null] = ACTIONS(4594), + [anon_sym_unreachable] = ACTIONS(4594), + [anon_sym_undefined] = ACTIONS(4594), + [sym_sink] = ACTIONS(4594), + [sym_integer] = ACTIONS(4594), + [sym_float] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [sym_multiline_string] = ACTIONS(4592), + [sym_character] = ACTIONS(4592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4592), + }, + [STATE(3280)] = { + [sym_identifier] = ACTIONS(4598), + [anon_sym_func] = ACTIONS(4598), + [anon_sym_c_func] = ACTIONS(4598), + [anon_sym_BANG] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4598), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4598), + [anon_sym_struct_type_BANG] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_AT] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_void] = ACTIONS(4598), + [anon_sym_noreturn] = ACTIONS(4598), + [anon_sym_type] = ACTIONS(4598), + [anon_sym_anyopaque] = ACTIONS(4598), + [anon_sym_bool] = ACTIONS(4598), + [anon_sym_int] = ACTIONS(4598), + [anon_sym_uint] = ACTIONS(4598), + [anon_sym_float] = ACTIONS(4598), + [anon_sym_range] = ACTIONS(4598), + [anon_sym_i8] = ACTIONS(4598), + [anon_sym_i16] = ACTIONS(4598), + [anon_sym_i32] = ACTIONS(4598), + [anon_sym_i64] = ACTIONS(4598), + [anon_sym_u8] = ACTIONS(4598), + [anon_sym_u16] = ACTIONS(4598), + [anon_sym_u32] = ACTIONS(4598), + [anon_sym_u64] = ACTIONS(4598), + [anon_sym_isize] = ACTIONS(4598), + [anon_sym_usize] = ACTIONS(4598), + [anon_sym_f32] = ACTIONS(4598), + [anon_sym_f64] = ACTIONS(4598), + [anon_sym_c_char] = ACTIONS(4598), + [anon_sym_c_schar] = ACTIONS(4598), + [anon_sym_c_uchar] = ACTIONS(4598), + [anon_sym_c_short] = ACTIONS(4598), + [anon_sym_c_ushort] = ACTIONS(4598), + [anon_sym_c_int] = ACTIONS(4598), + [anon_sym_c_uint] = ACTIONS(4598), + [anon_sym_c_long] = ACTIONS(4598), + [anon_sym_c_ulong] = ACTIONS(4598), + [anon_sym_c_longlong] = ACTIONS(4598), + [anon_sym_c_ulonglong] = ACTIONS(4598), + [anon_sym_c_float] = ACTIONS(4598), + [anon_sym_c_double] = ACTIONS(4598), + [anon_sym_c_longdouble] = ACTIONS(4598), + [anon_sym_PLUS_EQ] = ACTIONS(4596), + [anon_sym_DASH_EQ] = ACTIONS(4596), + [anon_sym_STAR_EQ] = ACTIONS(4596), + [anon_sym_SLASH_EQ] = ACTIONS(4596), + [anon_sym_AMP_EQ] = ACTIONS(4596), + [anon_sym_PIPE_EQ] = ACTIONS(4596), + [anon_sym_xor_EQ] = ACTIONS(4596), + [anon_sym_LT_LT_EQ] = ACTIONS(4596), + [anon_sym_GT_GT_EQ] = ACTIONS(4596), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4596), + [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_else] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_expand] = ACTIONS(4598), + [anon_sym_for] = ACTIONS(4598), + [anon_sym_match] = ACTIONS(4598), + [anon_sym_DOT_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4596), + [anon_sym_orelse] = ACTIONS(4598), + [anon_sym_or] = ACTIONS(4598), + [anon_sym_and] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_GT_EQ] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_xor] = ACTIONS(4598), + [anon_sym_LT_LT] = ACTIONS(4598), + [anon_sym_GT_GT] = ACTIONS(4598), + [anon_sym_LT_LT_PIPE] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4598), + [anon_sym_catch] = ACTIONS(4598), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_try] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_true] = ACTIONS(4598), + [anon_sym_false] = ACTIONS(4598), + [anon_sym_null] = ACTIONS(4598), + [anon_sym_unreachable] = ACTIONS(4598), + [anon_sym_undefined] = ACTIONS(4598), + [sym_sink] = ACTIONS(4598), + [sym_integer] = ACTIONS(4598), + [sym_float] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [sym_multiline_string] = ACTIONS(4596), + [sym_character] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4596), + }, + [STATE(3281)] = { + [sym_identifier] = ACTIONS(4602), + [anon_sym_func] = ACTIONS(4602), + [anon_sym_c_func] = ACTIONS(4602), + [anon_sym_BANG] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_struct] = ACTIONS(4602), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_struct_type_BANG] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_AT] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_void] = ACTIONS(4602), + [anon_sym_noreturn] = ACTIONS(4602), + [anon_sym_type] = ACTIONS(4602), + [anon_sym_anyopaque] = ACTIONS(4602), + [anon_sym_bool] = ACTIONS(4602), + [anon_sym_int] = ACTIONS(4602), + [anon_sym_uint] = ACTIONS(4602), + [anon_sym_float] = ACTIONS(4602), + [anon_sym_range] = ACTIONS(4602), + [anon_sym_i8] = ACTIONS(4602), + [anon_sym_i16] = ACTIONS(4602), + [anon_sym_i32] = ACTIONS(4602), + [anon_sym_i64] = ACTIONS(4602), + [anon_sym_u8] = ACTIONS(4602), + [anon_sym_u16] = ACTIONS(4602), + [anon_sym_u32] = ACTIONS(4602), + [anon_sym_u64] = ACTIONS(4602), + [anon_sym_isize] = ACTIONS(4602), + [anon_sym_usize] = ACTIONS(4602), + [anon_sym_f32] = ACTIONS(4602), + [anon_sym_f64] = ACTIONS(4602), + [anon_sym_c_char] = ACTIONS(4602), + [anon_sym_c_schar] = ACTIONS(4602), + [anon_sym_c_uchar] = ACTIONS(4602), + [anon_sym_c_short] = ACTIONS(4602), + [anon_sym_c_ushort] = ACTIONS(4602), + [anon_sym_c_int] = ACTIONS(4602), + [anon_sym_c_uint] = ACTIONS(4602), + [anon_sym_c_long] = ACTIONS(4602), + [anon_sym_c_ulong] = ACTIONS(4602), + [anon_sym_c_longlong] = ACTIONS(4602), + [anon_sym_c_ulonglong] = ACTIONS(4602), + [anon_sym_c_float] = ACTIONS(4602), + [anon_sym_c_double] = ACTIONS(4602), + [anon_sym_c_longdouble] = ACTIONS(4602), + [anon_sym_PLUS_EQ] = ACTIONS(4600), + [anon_sym_DASH_EQ] = ACTIONS(4600), + [anon_sym_STAR_EQ] = ACTIONS(4600), + [anon_sym_SLASH_EQ] = ACTIONS(4600), + [anon_sym_AMP_EQ] = ACTIONS(4600), + [anon_sym_PIPE_EQ] = ACTIONS(4600), + [anon_sym_xor_EQ] = ACTIONS(4600), + [anon_sym_LT_LT_EQ] = ACTIONS(4600), + [anon_sym_GT_GT_EQ] = ACTIONS(4600), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4600), + [anon_sym_return] = ACTIONS(4602), + [anon_sym_yield] = ACTIONS(4602), + [anon_sym_break] = ACTIONS(4602), + [anon_sym_continue] = ACTIONS(4602), + [anon_sym_defer] = ACTIONS(4602), + [anon_sym_errdefer] = ACTIONS(4602), + [anon_sym_if] = ACTIONS(4602), + [anon_sym_else] = ACTIONS(4602), + [anon_sym_while] = ACTIONS(4602), + [anon_sym_expand] = ACTIONS(4602), + [anon_sym_for] = ACTIONS(4602), + [anon_sym_match] = ACTIONS(4602), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4600), + [anon_sym_orelse] = ACTIONS(4602), + [anon_sym_or] = ACTIONS(4602), + [anon_sym_and] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4600), + [anon_sym_BANG_EQ] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_xor] = ACTIONS(4602), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4602), + [anon_sym_LT_LT_PIPE] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_catch] = ACTIONS(4602), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_try] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4600), + [anon_sym_true] = ACTIONS(4602), + [anon_sym_false] = ACTIONS(4602), + [anon_sym_null] = ACTIONS(4602), + [anon_sym_unreachable] = ACTIONS(4602), + [anon_sym_undefined] = ACTIONS(4602), + [sym_sink] = ACTIONS(4602), + [sym_integer] = ACTIONS(4602), + [sym_float] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [sym_multiline_string] = ACTIONS(4600), + [sym_character] = ACTIONS(4600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4600), + }, + [STATE(3282)] = { + [sym_identifier] = ACTIONS(4606), + [anon_sym_func] = ACTIONS(4606), + [anon_sym_c_func] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_struct] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_COMMA] = ACTIONS(4604), + [anon_sym_RBRACE] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_struct_type_BANG] = ACTIONS(4604), + [anon_sym_QMARK] = ACTIONS(4604), + [anon_sym_AT] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4604), + [anon_sym_void] = ACTIONS(4606), + [anon_sym_noreturn] = ACTIONS(4606), + [anon_sym_type] = ACTIONS(4606), + [anon_sym_anyopaque] = ACTIONS(4606), + [anon_sym_bool] = ACTIONS(4606), + [anon_sym_int] = ACTIONS(4606), + [anon_sym_uint] = ACTIONS(4606), + [anon_sym_float] = ACTIONS(4606), + [anon_sym_range] = ACTIONS(4606), + [anon_sym_i8] = ACTIONS(4606), + [anon_sym_i16] = ACTIONS(4606), + [anon_sym_i32] = ACTIONS(4606), + [anon_sym_i64] = ACTIONS(4606), + [anon_sym_u8] = ACTIONS(4606), + [anon_sym_u16] = ACTIONS(4606), + [anon_sym_u32] = ACTIONS(4606), + [anon_sym_u64] = ACTIONS(4606), + [anon_sym_isize] = ACTIONS(4606), + [anon_sym_usize] = ACTIONS(4606), + [anon_sym_f32] = ACTIONS(4606), + [anon_sym_f64] = ACTIONS(4606), + [anon_sym_c_char] = ACTIONS(4606), + [anon_sym_c_schar] = ACTIONS(4606), + [anon_sym_c_uchar] = ACTIONS(4606), + [anon_sym_c_short] = ACTIONS(4606), + [anon_sym_c_ushort] = ACTIONS(4606), + [anon_sym_c_int] = ACTIONS(4606), + [anon_sym_c_uint] = ACTIONS(4606), + [anon_sym_c_long] = ACTIONS(4606), + [anon_sym_c_ulong] = ACTIONS(4606), + [anon_sym_c_longlong] = ACTIONS(4606), + [anon_sym_c_ulonglong] = ACTIONS(4606), + [anon_sym_c_float] = ACTIONS(4606), + [anon_sym_c_double] = ACTIONS(4606), + [anon_sym_c_longdouble] = ACTIONS(4606), + [anon_sym_PLUS_EQ] = ACTIONS(4604), + [anon_sym_DASH_EQ] = ACTIONS(4604), + [anon_sym_STAR_EQ] = ACTIONS(4604), + [anon_sym_SLASH_EQ] = ACTIONS(4604), + [anon_sym_AMP_EQ] = ACTIONS(4604), + [anon_sym_PIPE_EQ] = ACTIONS(4604), + [anon_sym_xor_EQ] = ACTIONS(4604), + [anon_sym_LT_LT_EQ] = ACTIONS(4604), + [anon_sym_GT_GT_EQ] = ACTIONS(4604), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4604), + [anon_sym_return] = ACTIONS(4606), + [anon_sym_yield] = ACTIONS(4606), + [anon_sym_break] = ACTIONS(4606), + [anon_sym_continue] = ACTIONS(4606), + [anon_sym_defer] = ACTIONS(4606), + [anon_sym_errdefer] = ACTIONS(4606), + [anon_sym_if] = ACTIONS(4606), + [anon_sym_else] = ACTIONS(4606), + [anon_sym_while] = ACTIONS(4606), + [anon_sym_expand] = ACTIONS(4606), + [anon_sym_for] = ACTIONS(4606), + [anon_sym_match] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4604), + [anon_sym_orelse] = ACTIONS(4606), + [anon_sym_or] = ACTIONS(4606), + [anon_sym_and] = ACTIONS(4606), + [anon_sym_EQ_EQ] = ACTIONS(4604), + [anon_sym_BANG_EQ] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4606), + [anon_sym_LT_EQ] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_GT_EQ] = ACTIONS(4604), + [anon_sym_AMP] = ACTIONS(4606), + [anon_sym_xor] = ACTIONS(4606), + [anon_sym_LT_LT] = ACTIONS(4606), + [anon_sym_GT_GT] = ACTIONS(4606), + [anon_sym_LT_LT_PIPE] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_catch] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4604), + [anon_sym_try] = ACTIONS(4606), + [anon_sym_DOT] = ACTIONS(4606), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym_true] = ACTIONS(4606), + [anon_sym_false] = ACTIONS(4606), + [anon_sym_null] = ACTIONS(4606), + [anon_sym_unreachable] = ACTIONS(4606), + [anon_sym_undefined] = ACTIONS(4606), + [sym_sink] = ACTIONS(4606), + [sym_integer] = ACTIONS(4606), + [sym_float] = ACTIONS(4604), + [anon_sym_DQUOTE] = ACTIONS(4604), + [sym_multiline_string] = ACTIONS(4604), + [sym_character] = ACTIONS(4604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4604), + }, + [STATE(3283)] = { + [sym_identifier] = ACTIONS(5288), + [anon_sym_func] = ACTIONS(5288), + [anon_sym_c_func] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_EQ] = ACTIONS(5288), + [anon_sym_struct] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_struct_type_BANG] = ACTIONS(5286), + [anon_sym_QMARK] = ACTIONS(5286), + [anon_sym_AT] = ACTIONS(5286), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_void] = ACTIONS(5288), + [anon_sym_noreturn] = ACTIONS(5288), + [anon_sym_type] = ACTIONS(5288), + [anon_sym_anyopaque] = ACTIONS(5288), + [anon_sym_bool] = ACTIONS(5288), + [anon_sym_int] = ACTIONS(5288), + [anon_sym_uint] = ACTIONS(5288), + [anon_sym_float] = ACTIONS(5288), + [anon_sym_range] = ACTIONS(5288), + [anon_sym_i8] = ACTIONS(5288), + [anon_sym_i16] = ACTIONS(5288), + [anon_sym_i32] = ACTIONS(5288), + [anon_sym_i64] = ACTIONS(5288), + [anon_sym_u8] = ACTIONS(5288), + [anon_sym_u16] = ACTIONS(5288), + [anon_sym_u32] = ACTIONS(5288), + [anon_sym_u64] = ACTIONS(5288), + [anon_sym_isize] = ACTIONS(5288), + [anon_sym_usize] = ACTIONS(5288), + [anon_sym_f32] = ACTIONS(5288), + [anon_sym_f64] = ACTIONS(5288), + [anon_sym_c_char] = ACTIONS(5288), + [anon_sym_c_schar] = ACTIONS(5288), + [anon_sym_c_uchar] = ACTIONS(5288), + [anon_sym_c_short] = ACTIONS(5288), + [anon_sym_c_ushort] = ACTIONS(5288), + [anon_sym_c_int] = ACTIONS(5288), + [anon_sym_c_uint] = ACTIONS(5288), + [anon_sym_c_long] = ACTIONS(5288), + [anon_sym_c_ulong] = ACTIONS(5288), + [anon_sym_c_longlong] = ACTIONS(5288), + [anon_sym_c_ulonglong] = ACTIONS(5288), + [anon_sym_c_float] = ACTIONS(5288), + [anon_sym_c_double] = ACTIONS(5288), + [anon_sym_c_longdouble] = ACTIONS(5288), + [anon_sym_PLUS_EQ] = ACTIONS(5286), + [anon_sym_DASH_EQ] = ACTIONS(5286), + [anon_sym_STAR_EQ] = ACTIONS(5286), + [anon_sym_SLASH_EQ] = ACTIONS(5286), + [anon_sym_AMP_EQ] = ACTIONS(5286), + [anon_sym_PIPE_EQ] = ACTIONS(5286), + [anon_sym_xor_EQ] = ACTIONS(5286), + [anon_sym_LT_LT_EQ] = ACTIONS(5286), + [anon_sym_GT_GT_EQ] = ACTIONS(5286), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5286), + [anon_sym_return] = ACTIONS(5288), + [anon_sym_yield] = ACTIONS(5288), + [anon_sym_break] = ACTIONS(5288), + [anon_sym_continue] = ACTIONS(5288), + [anon_sym_defer] = ACTIONS(5288), + [anon_sym_errdefer] = ACTIONS(5288), + [anon_sym_if] = ACTIONS(5288), + [anon_sym_else] = ACTIONS(5288), + [anon_sym_while] = ACTIONS(5288), + [anon_sym_expand] = ACTIONS(5288), + [anon_sym_for] = ACTIONS(5288), + [anon_sym_match] = ACTIONS(5288), + [anon_sym_DOT_DOT] = ACTIONS(5288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5286), + [anon_sym_orelse] = ACTIONS(5288), + [anon_sym_or] = ACTIONS(5288), + [anon_sym_and] = ACTIONS(5288), + [anon_sym_EQ_EQ] = ACTIONS(5286), + [anon_sym_BANG_EQ] = ACTIONS(5286), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_LT_EQ] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_EQ] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), + [anon_sym_xor] = ACTIONS(5288), + [anon_sym_LT_LT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5288), + [anon_sym_LT_LT_PIPE] = ACTIONS(5288), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_catch] = ACTIONS(5288), + [anon_sym_TILDE] = ACTIONS(5286), + [anon_sym_try] = ACTIONS(5288), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5286), + [anon_sym_true] = ACTIONS(5288), + [anon_sym_false] = ACTIONS(5288), + [anon_sym_null] = ACTIONS(5288), + [anon_sym_unreachable] = ACTIONS(5288), + [anon_sym_undefined] = ACTIONS(5288), + [sym_sink] = ACTIONS(5288), + [sym_integer] = ACTIONS(5288), + [sym_float] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5286), + [sym_multiline_string] = ACTIONS(5286), + [sym_character] = ACTIONS(5286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5286), + }, + [STATE(3284)] = { + [sym_identifier] = ACTIONS(4614), + [anon_sym_func] = ACTIONS(4614), + [anon_sym_c_func] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_EQ] = ACTIONS(4614), + [anon_sym_struct] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [anon_sym_COMMA] = ACTIONS(4612), + [anon_sym_RBRACE] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_struct_type_BANG] = ACTIONS(4612), + [anon_sym_QMARK] = ACTIONS(4612), + [anon_sym_AT] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_void] = ACTIONS(4614), + [anon_sym_noreturn] = ACTIONS(4614), + [anon_sym_type] = ACTIONS(4614), + [anon_sym_anyopaque] = ACTIONS(4614), + [anon_sym_bool] = ACTIONS(4614), + [anon_sym_int] = ACTIONS(4614), + [anon_sym_uint] = ACTIONS(4614), + [anon_sym_float] = ACTIONS(4614), + [anon_sym_range] = ACTIONS(4614), + [anon_sym_i8] = ACTIONS(4614), + [anon_sym_i16] = ACTIONS(4614), + [anon_sym_i32] = ACTIONS(4614), + [anon_sym_i64] = ACTIONS(4614), + [anon_sym_u8] = ACTIONS(4614), + [anon_sym_u16] = ACTIONS(4614), + [anon_sym_u32] = ACTIONS(4614), + [anon_sym_u64] = ACTIONS(4614), + [anon_sym_isize] = ACTIONS(4614), + [anon_sym_usize] = ACTIONS(4614), + [anon_sym_f32] = ACTIONS(4614), + [anon_sym_f64] = ACTIONS(4614), + [anon_sym_c_char] = ACTIONS(4614), + [anon_sym_c_schar] = ACTIONS(4614), + [anon_sym_c_uchar] = ACTIONS(4614), + [anon_sym_c_short] = ACTIONS(4614), + [anon_sym_c_ushort] = ACTIONS(4614), + [anon_sym_c_int] = ACTIONS(4614), + [anon_sym_c_uint] = ACTIONS(4614), + [anon_sym_c_long] = ACTIONS(4614), + [anon_sym_c_ulong] = ACTIONS(4614), + [anon_sym_c_longlong] = ACTIONS(4614), + [anon_sym_c_ulonglong] = ACTIONS(4614), + [anon_sym_c_float] = ACTIONS(4614), + [anon_sym_c_double] = ACTIONS(4614), + [anon_sym_c_longdouble] = ACTIONS(4614), + [anon_sym_PLUS_EQ] = ACTIONS(4612), + [anon_sym_DASH_EQ] = ACTIONS(4612), + [anon_sym_STAR_EQ] = ACTIONS(4612), + [anon_sym_SLASH_EQ] = ACTIONS(4612), + [anon_sym_AMP_EQ] = ACTIONS(4612), + [anon_sym_PIPE_EQ] = ACTIONS(4612), + [anon_sym_xor_EQ] = ACTIONS(4612), + [anon_sym_LT_LT_EQ] = ACTIONS(4612), + [anon_sym_GT_GT_EQ] = ACTIONS(4612), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4612), + [anon_sym_return] = ACTIONS(4614), + [anon_sym_yield] = ACTIONS(4614), + [anon_sym_break] = ACTIONS(4614), + [anon_sym_continue] = ACTIONS(4614), + [anon_sym_defer] = ACTIONS(4614), + [anon_sym_errdefer] = ACTIONS(4614), + [anon_sym_if] = ACTIONS(4614), + [anon_sym_else] = ACTIONS(4614), + [anon_sym_while] = ACTIONS(4614), + [anon_sym_expand] = ACTIONS(4614), + [anon_sym_for] = ACTIONS(4614), + [anon_sym_match] = ACTIONS(4614), + [anon_sym_DOT_DOT] = ACTIONS(4614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4612), + [anon_sym_orelse] = ACTIONS(4614), + [anon_sym_or] = ACTIONS(4614), + [anon_sym_and] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4612), + [anon_sym_BANG_EQ] = ACTIONS(4612), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_LT_EQ] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4612), + [anon_sym_AMP] = ACTIONS(4614), + [anon_sym_xor] = ACTIONS(4614), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(4614), + [anon_sym_LT_LT_PIPE] = ACTIONS(4614), + [anon_sym_PLUS] = ACTIONS(4614), + [anon_sym_SLASH] = ACTIONS(4614), + [anon_sym_catch] = ACTIONS(4614), + [anon_sym_TILDE] = ACTIONS(4612), + [anon_sym_try] = ACTIONS(4614), + [anon_sym_DOT] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym_true] = ACTIONS(4614), + [anon_sym_false] = ACTIONS(4614), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_unreachable] = ACTIONS(4614), + [anon_sym_undefined] = ACTIONS(4614), + [sym_sink] = ACTIONS(4614), + [sym_integer] = ACTIONS(4614), + [sym_float] = ACTIONS(4612), + [anon_sym_DQUOTE] = ACTIONS(4612), + [sym_multiline_string] = ACTIONS(4612), + [sym_character] = ACTIONS(4612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4612), + }, + [STATE(3285)] = { + [sym_identifier] = ACTIONS(4618), + [anon_sym_func] = ACTIONS(4618), + [anon_sym_c_func] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_struct] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4616), + [anon_sym_LBRACE] = ACTIONS(4616), + [anon_sym_COMMA] = ACTIONS(4616), + [anon_sym_RBRACE] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_DOLLAR] = ACTIONS(4616), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_struct_type_BANG] = ACTIONS(4616), + [anon_sym_QMARK] = ACTIONS(4616), + [anon_sym_AT] = ACTIONS(4616), + [anon_sym_STAR] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4616), + [anon_sym_void] = ACTIONS(4618), + [anon_sym_noreturn] = ACTIONS(4618), + [anon_sym_type] = ACTIONS(4618), + [anon_sym_anyopaque] = ACTIONS(4618), + [anon_sym_bool] = ACTIONS(4618), + [anon_sym_int] = ACTIONS(4618), + [anon_sym_uint] = ACTIONS(4618), + [anon_sym_float] = ACTIONS(4618), + [anon_sym_range] = ACTIONS(4618), + [anon_sym_i8] = ACTIONS(4618), + [anon_sym_i16] = ACTIONS(4618), + [anon_sym_i32] = ACTIONS(4618), + [anon_sym_i64] = ACTIONS(4618), + [anon_sym_u8] = ACTIONS(4618), + [anon_sym_u16] = ACTIONS(4618), + [anon_sym_u32] = ACTIONS(4618), + [anon_sym_u64] = ACTIONS(4618), + [anon_sym_isize] = ACTIONS(4618), + [anon_sym_usize] = ACTIONS(4618), + [anon_sym_f32] = ACTIONS(4618), + [anon_sym_f64] = ACTIONS(4618), + [anon_sym_c_char] = ACTIONS(4618), + [anon_sym_c_schar] = ACTIONS(4618), + [anon_sym_c_uchar] = ACTIONS(4618), + [anon_sym_c_short] = ACTIONS(4618), + [anon_sym_c_ushort] = ACTIONS(4618), + [anon_sym_c_int] = ACTIONS(4618), + [anon_sym_c_uint] = ACTIONS(4618), + [anon_sym_c_long] = ACTIONS(4618), + [anon_sym_c_ulong] = ACTIONS(4618), + [anon_sym_c_longlong] = ACTIONS(4618), + [anon_sym_c_ulonglong] = ACTIONS(4618), + [anon_sym_c_float] = ACTIONS(4618), + [anon_sym_c_double] = ACTIONS(4618), + [anon_sym_c_longdouble] = ACTIONS(4618), + [anon_sym_PLUS_EQ] = ACTIONS(4616), + [anon_sym_DASH_EQ] = ACTIONS(4616), + [anon_sym_STAR_EQ] = ACTIONS(4616), + [anon_sym_SLASH_EQ] = ACTIONS(4616), + [anon_sym_AMP_EQ] = ACTIONS(4616), + [anon_sym_PIPE_EQ] = ACTIONS(4616), + [anon_sym_xor_EQ] = ACTIONS(4616), + [anon_sym_LT_LT_EQ] = ACTIONS(4616), + [anon_sym_GT_GT_EQ] = ACTIONS(4616), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4616), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_yield] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_defer] = ACTIONS(4618), + [anon_sym_errdefer] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_while] = ACTIONS(4618), + [anon_sym_expand] = ACTIONS(4618), + [anon_sym_for] = ACTIONS(4618), + [anon_sym_match] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4616), + [anon_sym_orelse] = ACTIONS(4618), + [anon_sym_or] = ACTIONS(4618), + [anon_sym_and] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4616), + [anon_sym_BANG_EQ] = ACTIONS(4616), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_LT_EQ] = ACTIONS(4616), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_EQ] = ACTIONS(4616), + [anon_sym_AMP] = ACTIONS(4618), + [anon_sym_xor] = ACTIONS(4618), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(4618), + [anon_sym_LT_LT_PIPE] = ACTIONS(4618), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_catch] = ACTIONS(4618), + [anon_sym_TILDE] = ACTIONS(4616), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_CARET] = ACTIONS(4616), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_unreachable] = ACTIONS(4618), + [anon_sym_undefined] = ACTIONS(4618), + [sym_sink] = ACTIONS(4618), + [sym_integer] = ACTIONS(4618), + [sym_float] = ACTIONS(4616), + [anon_sym_DQUOTE] = ACTIONS(4616), + [sym_multiline_string] = ACTIONS(4616), + [sym_character] = ACTIONS(4616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4616), + }, + [STATE(3286)] = { + [sym_identifier] = ACTIONS(4624), + [anon_sym_func] = ACTIONS(4624), + [anon_sym_c_func] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_EQ] = ACTIONS(4624), + [anon_sym_struct] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_RBRACE] = ACTIONS(4622), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_DOLLAR] = ACTIONS(4622), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_struct_type_BANG] = ACTIONS(4622), + [anon_sym_QMARK] = ACTIONS(4622), + [anon_sym_AT] = ACTIONS(4622), + [anon_sym_STAR] = ACTIONS(4624), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_void] = ACTIONS(4624), + [anon_sym_noreturn] = ACTIONS(4624), + [anon_sym_type] = ACTIONS(4624), + [anon_sym_anyopaque] = ACTIONS(4624), + [anon_sym_bool] = ACTIONS(4624), + [anon_sym_int] = ACTIONS(4624), + [anon_sym_uint] = ACTIONS(4624), + [anon_sym_float] = ACTIONS(4624), + [anon_sym_range] = ACTIONS(4624), + [anon_sym_i8] = ACTIONS(4624), + [anon_sym_i16] = ACTIONS(4624), + [anon_sym_i32] = ACTIONS(4624), + [anon_sym_i64] = ACTIONS(4624), + [anon_sym_u8] = ACTIONS(4624), + [anon_sym_u16] = ACTIONS(4624), + [anon_sym_u32] = ACTIONS(4624), + [anon_sym_u64] = ACTIONS(4624), + [anon_sym_isize] = ACTIONS(4624), + [anon_sym_usize] = ACTIONS(4624), + [anon_sym_f32] = ACTIONS(4624), + [anon_sym_f64] = ACTIONS(4624), + [anon_sym_c_char] = ACTIONS(4624), + [anon_sym_c_schar] = ACTIONS(4624), + [anon_sym_c_uchar] = ACTIONS(4624), + [anon_sym_c_short] = ACTIONS(4624), + [anon_sym_c_ushort] = ACTIONS(4624), + [anon_sym_c_int] = ACTIONS(4624), + [anon_sym_c_uint] = ACTIONS(4624), + [anon_sym_c_long] = ACTIONS(4624), + [anon_sym_c_ulong] = ACTIONS(4624), + [anon_sym_c_longlong] = ACTIONS(4624), + [anon_sym_c_ulonglong] = ACTIONS(4624), + [anon_sym_c_float] = ACTIONS(4624), + [anon_sym_c_double] = ACTIONS(4624), + [anon_sym_c_longdouble] = ACTIONS(4624), + [anon_sym_PLUS_EQ] = ACTIONS(4622), + [anon_sym_DASH_EQ] = ACTIONS(4622), + [anon_sym_STAR_EQ] = ACTIONS(4622), + [anon_sym_SLASH_EQ] = ACTIONS(4622), + [anon_sym_AMP_EQ] = ACTIONS(4622), + [anon_sym_PIPE_EQ] = ACTIONS(4622), + [anon_sym_xor_EQ] = ACTIONS(4622), + [anon_sym_LT_LT_EQ] = ACTIONS(4622), + [anon_sym_GT_GT_EQ] = ACTIONS(4622), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4622), + [anon_sym_return] = ACTIONS(4624), + [anon_sym_yield] = ACTIONS(4624), + [anon_sym_break] = ACTIONS(4624), + [anon_sym_continue] = ACTIONS(4624), + [anon_sym_defer] = ACTIONS(4624), + [anon_sym_errdefer] = ACTIONS(4624), + [anon_sym_if] = ACTIONS(4624), + [anon_sym_else] = ACTIONS(4624), + [anon_sym_while] = ACTIONS(4624), + [anon_sym_expand] = ACTIONS(4624), + [anon_sym_for] = ACTIONS(4624), + [anon_sym_match] = ACTIONS(4624), + [anon_sym_DOT_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4622), + [anon_sym_orelse] = ACTIONS(4624), + [anon_sym_or] = ACTIONS(4624), + [anon_sym_and] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_BANG_EQ] = ACTIONS(4622), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_LT_EQ] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_EQ] = ACTIONS(4622), + [anon_sym_AMP] = ACTIONS(4624), + [anon_sym_xor] = ACTIONS(4624), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(4624), + [anon_sym_LT_LT_PIPE] = ACTIONS(4624), + [anon_sym_PLUS] = ACTIONS(4624), + [anon_sym_SLASH] = ACTIONS(4624), + [anon_sym_catch] = ACTIONS(4624), + [anon_sym_TILDE] = ACTIONS(4622), + [anon_sym_try] = ACTIONS(4624), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4622), + [anon_sym_true] = ACTIONS(4624), + [anon_sym_false] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(4624), + [anon_sym_unreachable] = ACTIONS(4624), + [anon_sym_undefined] = ACTIONS(4624), + [sym_sink] = ACTIONS(4624), + [sym_integer] = ACTIONS(4624), + [sym_float] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(4622), + [sym_multiline_string] = ACTIONS(4622), + [sym_character] = ACTIONS(4622), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4622), + }, + [STATE(3287)] = { + [sym_identifier] = ACTIONS(4628), + [anon_sym_func] = ACTIONS(4628), + [anon_sym_c_func] = ACTIONS(4628), + [anon_sym_BANG] = ACTIONS(4628), + [anon_sym_EQ] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_LBRACE] = ACTIONS(4626), + [anon_sym_COMMA] = ACTIONS(4626), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_DASH] = ACTIONS(4628), + [anon_sym_DOLLAR] = ACTIONS(4626), + [anon_sym_PIPE] = ACTIONS(4628), + [anon_sym_struct_type_BANG] = ACTIONS(4626), + [anon_sym_QMARK] = ACTIONS(4626), + [anon_sym_AT] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4626), + [anon_sym_void] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym_type] = ACTIONS(4628), + [anon_sym_anyopaque] = ACTIONS(4628), + [anon_sym_bool] = ACTIONS(4628), + [anon_sym_int] = ACTIONS(4628), + [anon_sym_uint] = ACTIONS(4628), + [anon_sym_float] = ACTIONS(4628), + [anon_sym_range] = ACTIONS(4628), + [anon_sym_i8] = ACTIONS(4628), + [anon_sym_i16] = ACTIONS(4628), + [anon_sym_i32] = ACTIONS(4628), + [anon_sym_i64] = ACTIONS(4628), + [anon_sym_u8] = ACTIONS(4628), + [anon_sym_u16] = ACTIONS(4628), + [anon_sym_u32] = ACTIONS(4628), + [anon_sym_u64] = ACTIONS(4628), + [anon_sym_isize] = ACTIONS(4628), + [anon_sym_usize] = ACTIONS(4628), + [anon_sym_f32] = ACTIONS(4628), + [anon_sym_f64] = ACTIONS(4628), + [anon_sym_c_char] = ACTIONS(4628), + [anon_sym_c_schar] = ACTIONS(4628), + [anon_sym_c_uchar] = ACTIONS(4628), + [anon_sym_c_short] = ACTIONS(4628), + [anon_sym_c_ushort] = ACTIONS(4628), + [anon_sym_c_int] = ACTIONS(4628), + [anon_sym_c_uint] = ACTIONS(4628), + [anon_sym_c_long] = ACTIONS(4628), + [anon_sym_c_ulong] = ACTIONS(4628), + [anon_sym_c_longlong] = ACTIONS(4628), + [anon_sym_c_ulonglong] = ACTIONS(4628), + [anon_sym_c_float] = ACTIONS(4628), + [anon_sym_c_double] = ACTIONS(4628), + [anon_sym_c_longdouble] = ACTIONS(4628), + [anon_sym_PLUS_EQ] = ACTIONS(4626), + [anon_sym_DASH_EQ] = ACTIONS(4626), + [anon_sym_STAR_EQ] = ACTIONS(4626), + [anon_sym_SLASH_EQ] = ACTIONS(4626), + [anon_sym_AMP_EQ] = ACTIONS(4626), + [anon_sym_PIPE_EQ] = ACTIONS(4626), + [anon_sym_xor_EQ] = ACTIONS(4626), + [anon_sym_LT_LT_EQ] = ACTIONS(4626), + [anon_sym_GT_GT_EQ] = ACTIONS(4626), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4626), + [anon_sym_return] = ACTIONS(4628), + [anon_sym_yield] = ACTIONS(4628), + [anon_sym_break] = ACTIONS(4628), + [anon_sym_continue] = ACTIONS(4628), + [anon_sym_defer] = ACTIONS(4628), + [anon_sym_errdefer] = ACTIONS(4628), + [anon_sym_if] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(4628), + [anon_sym_expand] = ACTIONS(4628), + [anon_sym_for] = ACTIONS(4628), + [anon_sym_match] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4626), + [anon_sym_orelse] = ACTIONS(4628), + [anon_sym_or] = ACTIONS(4628), + [anon_sym_and] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4628), + [anon_sym_GT_EQ] = ACTIONS(4626), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_xor] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT_PIPE] = ACTIONS(4628), + [anon_sym_PLUS] = ACTIONS(4628), + [anon_sym_SLASH] = ACTIONS(4628), + [anon_sym_catch] = ACTIONS(4628), + [anon_sym_TILDE] = ACTIONS(4626), + [anon_sym_try] = ACTIONS(4628), + [anon_sym_DOT] = ACTIONS(4628), + [anon_sym_CARET] = ACTIONS(4626), + [anon_sym_true] = ACTIONS(4628), + [anon_sym_false] = ACTIONS(4628), + [anon_sym_null] = ACTIONS(4628), + [anon_sym_unreachable] = ACTIONS(4628), + [anon_sym_undefined] = ACTIONS(4628), + [sym_sink] = ACTIONS(4628), + [sym_integer] = ACTIONS(4628), + [sym_float] = ACTIONS(4626), + [anon_sym_DQUOTE] = ACTIONS(4626), + [sym_multiline_string] = ACTIONS(4626), + [sym_character] = ACTIONS(4626), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4626), + }, + [STATE(3288)] = { + [sym_identifier] = ACTIONS(5476), + [anon_sym_func] = ACTIONS(5476), + [anon_sym_c_func] = ACTIONS(5476), + [anon_sym_BANG] = ACTIONS(5476), + [anon_sym_EQ] = ACTIONS(5476), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_LPAREN] = ACTIONS(5474), + [anon_sym_LBRACE] = ACTIONS(5474), + [anon_sym_COMMA] = ACTIONS(5474), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5476), + [anon_sym_DOLLAR] = ACTIONS(5474), + [anon_sym_PIPE] = ACTIONS(5476), + [anon_sym_struct_type_BANG] = ACTIONS(5474), + [anon_sym_QMARK] = ACTIONS(5474), + [anon_sym_AT] = ACTIONS(5474), + [anon_sym_STAR] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(5474), + [anon_sym_void] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym_type] = ACTIONS(5476), + [anon_sym_anyopaque] = ACTIONS(5476), + [anon_sym_bool] = ACTIONS(5476), + [anon_sym_int] = ACTIONS(5476), + [anon_sym_uint] = ACTIONS(5476), + [anon_sym_float] = ACTIONS(5476), + [anon_sym_range] = ACTIONS(5476), + [anon_sym_i8] = ACTIONS(5476), + [anon_sym_i16] = ACTIONS(5476), + [anon_sym_i32] = ACTIONS(5476), + [anon_sym_i64] = ACTIONS(5476), + [anon_sym_u8] = ACTIONS(5476), + [anon_sym_u16] = ACTIONS(5476), + [anon_sym_u32] = ACTIONS(5476), + [anon_sym_u64] = ACTIONS(5476), + [anon_sym_isize] = ACTIONS(5476), + [anon_sym_usize] = ACTIONS(5476), + [anon_sym_f32] = ACTIONS(5476), + [anon_sym_f64] = ACTIONS(5476), + [anon_sym_c_char] = ACTIONS(5476), + [anon_sym_c_schar] = ACTIONS(5476), + [anon_sym_c_uchar] = ACTIONS(5476), + [anon_sym_c_short] = ACTIONS(5476), + [anon_sym_c_ushort] = ACTIONS(5476), + [anon_sym_c_int] = ACTIONS(5476), + [anon_sym_c_uint] = ACTIONS(5476), + [anon_sym_c_long] = ACTIONS(5476), + [anon_sym_c_ulong] = ACTIONS(5476), + [anon_sym_c_longlong] = ACTIONS(5476), + [anon_sym_c_ulonglong] = ACTIONS(5476), + [anon_sym_c_float] = ACTIONS(5476), + [anon_sym_c_double] = ACTIONS(5476), + [anon_sym_c_longdouble] = ACTIONS(5476), + [anon_sym_PLUS_EQ] = ACTIONS(5474), + [anon_sym_DASH_EQ] = ACTIONS(5474), + [anon_sym_STAR_EQ] = ACTIONS(5474), + [anon_sym_SLASH_EQ] = ACTIONS(5474), + [anon_sym_AMP_EQ] = ACTIONS(5474), + [anon_sym_PIPE_EQ] = ACTIONS(5474), + [anon_sym_xor_EQ] = ACTIONS(5474), + [anon_sym_LT_LT_EQ] = ACTIONS(5474), + [anon_sym_GT_GT_EQ] = ACTIONS(5474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5474), + [anon_sym_return] = ACTIONS(5476), + [anon_sym_yield] = ACTIONS(5476), + [anon_sym_break] = ACTIONS(5476), + [anon_sym_continue] = ACTIONS(5476), + [anon_sym_defer] = ACTIONS(5476), + [anon_sym_errdefer] = ACTIONS(5476), + [anon_sym_if] = ACTIONS(5476), + [anon_sym_else] = ACTIONS(5476), + [anon_sym_while] = ACTIONS(5476), + [anon_sym_expand] = ACTIONS(5476), + [anon_sym_for] = ACTIONS(5476), + [anon_sym_match] = ACTIONS(5476), + [anon_sym_DOT_DOT] = ACTIONS(5476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5474), + [anon_sym_orelse] = ACTIONS(5476), + [anon_sym_or] = ACTIONS(5476), + [anon_sym_and] = ACTIONS(5476), + [anon_sym_EQ_EQ] = ACTIONS(5474), + [anon_sym_BANG_EQ] = ACTIONS(5474), + [anon_sym_LT] = ACTIONS(5476), + [anon_sym_LT_EQ] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_xor] = ACTIONS(5476), + [anon_sym_LT_LT] = ACTIONS(5476), + [anon_sym_GT_GT] = ACTIONS(5476), + [anon_sym_LT_LT_PIPE] = ACTIONS(5476), + [anon_sym_PLUS] = ACTIONS(5476), + [anon_sym_SLASH] = ACTIONS(5476), + [anon_sym_catch] = ACTIONS(5476), + [anon_sym_TILDE] = ACTIONS(5474), + [anon_sym_try] = ACTIONS(5476), + [anon_sym_DOT] = ACTIONS(5476), + [anon_sym_CARET] = ACTIONS(5474), + [anon_sym_true] = ACTIONS(5476), + [anon_sym_false] = ACTIONS(5476), + [anon_sym_null] = ACTIONS(5476), + [anon_sym_unreachable] = ACTIONS(5476), + [anon_sym_undefined] = ACTIONS(5476), + [sym_sink] = ACTIONS(5476), + [sym_integer] = ACTIONS(5476), + [sym_float] = ACTIONS(5474), + [anon_sym_DQUOTE] = ACTIONS(5474), + [sym_multiline_string] = ACTIONS(5474), + [sym_character] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5474), + }, + [STATE(3289)] = { + [sym_identifier] = ACTIONS(5480), + [anon_sym_func] = ACTIONS(5480), + [anon_sym_c_func] = ACTIONS(5480), + [anon_sym_BANG] = ACTIONS(5480), + [anon_sym_EQ] = ACTIONS(5480), + [anon_sym_struct] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5478), + [anon_sym_LBRACE] = ACTIONS(5478), + [anon_sym_COMMA] = ACTIONS(5478), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_DOLLAR] = ACTIONS(5478), + [anon_sym_PIPE] = ACTIONS(5480), + [anon_sym_struct_type_BANG] = ACTIONS(5478), + [anon_sym_QMARK] = ACTIONS(5478), + [anon_sym_AT] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(5478), + [anon_sym_void] = ACTIONS(5480), + [anon_sym_noreturn] = ACTIONS(5480), + [anon_sym_type] = ACTIONS(5480), + [anon_sym_anyopaque] = ACTIONS(5480), + [anon_sym_bool] = ACTIONS(5480), + [anon_sym_int] = ACTIONS(5480), + [anon_sym_uint] = ACTIONS(5480), + [anon_sym_float] = ACTIONS(5480), + [anon_sym_range] = ACTIONS(5480), + [anon_sym_i8] = ACTIONS(5480), + [anon_sym_i16] = ACTIONS(5480), + [anon_sym_i32] = ACTIONS(5480), + [anon_sym_i64] = ACTIONS(5480), + [anon_sym_u8] = ACTIONS(5480), + [anon_sym_u16] = ACTIONS(5480), + [anon_sym_u32] = ACTIONS(5480), + [anon_sym_u64] = ACTIONS(5480), + [anon_sym_isize] = ACTIONS(5480), + [anon_sym_usize] = ACTIONS(5480), + [anon_sym_f32] = ACTIONS(5480), + [anon_sym_f64] = ACTIONS(5480), + [anon_sym_c_char] = ACTIONS(5480), + [anon_sym_c_schar] = ACTIONS(5480), + [anon_sym_c_uchar] = ACTIONS(5480), + [anon_sym_c_short] = ACTIONS(5480), + [anon_sym_c_ushort] = ACTIONS(5480), + [anon_sym_c_int] = ACTIONS(5480), + [anon_sym_c_uint] = ACTIONS(5480), + [anon_sym_c_long] = ACTIONS(5480), + [anon_sym_c_ulong] = ACTIONS(5480), + [anon_sym_c_longlong] = ACTIONS(5480), + [anon_sym_c_ulonglong] = ACTIONS(5480), + [anon_sym_c_float] = ACTIONS(5480), + [anon_sym_c_double] = ACTIONS(5480), + [anon_sym_c_longdouble] = ACTIONS(5480), + [anon_sym_PLUS_EQ] = ACTIONS(5478), + [anon_sym_DASH_EQ] = ACTIONS(5478), + [anon_sym_STAR_EQ] = ACTIONS(5478), + [anon_sym_SLASH_EQ] = ACTIONS(5478), + [anon_sym_AMP_EQ] = ACTIONS(5478), + [anon_sym_PIPE_EQ] = ACTIONS(5478), + [anon_sym_xor_EQ] = ACTIONS(5478), + [anon_sym_LT_LT_EQ] = ACTIONS(5478), + [anon_sym_GT_GT_EQ] = ACTIONS(5478), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5478), + [anon_sym_return] = ACTIONS(5480), + [anon_sym_yield] = ACTIONS(5480), + [anon_sym_break] = ACTIONS(5480), + [anon_sym_continue] = ACTIONS(5480), + [anon_sym_defer] = ACTIONS(5480), + [anon_sym_errdefer] = ACTIONS(5480), + [anon_sym_if] = ACTIONS(5480), + [anon_sym_else] = ACTIONS(5480), + [anon_sym_while] = ACTIONS(5480), + [anon_sym_expand] = ACTIONS(5480), + [anon_sym_for] = ACTIONS(5480), + [anon_sym_match] = ACTIONS(5480), + [anon_sym_DOT_DOT] = ACTIONS(5480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5478), + [anon_sym_orelse] = ACTIONS(5480), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_BANG_EQ] = ACTIONS(5478), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_xor] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5480), + [anon_sym_LT_LT_PIPE] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_SLASH] = ACTIONS(5480), + [anon_sym_catch] = ACTIONS(5480), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_try] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5478), + [anon_sym_true] = ACTIONS(5480), + [anon_sym_false] = ACTIONS(5480), + [anon_sym_null] = ACTIONS(5480), + [anon_sym_unreachable] = ACTIONS(5480), + [anon_sym_undefined] = ACTIONS(5480), + [sym_sink] = ACTIONS(5480), + [sym_integer] = ACTIONS(5480), + [sym_float] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(5478), + [sym_multiline_string] = ACTIONS(5478), + [sym_character] = ACTIONS(5478), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5478), + }, + [STATE(3290)] = { + [sym_identifier] = ACTIONS(4632), + [anon_sym_func] = ACTIONS(4632), + [anon_sym_c_func] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_COMMA] = ACTIONS(4630), + [anon_sym_RBRACE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_DOLLAR] = ACTIONS(4630), + [anon_sym_PIPE] = ACTIONS(4632), + [anon_sym_struct_type_BANG] = ACTIONS(4630), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4630), + [anon_sym_void] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym_type] = ACTIONS(4632), + [anon_sym_anyopaque] = ACTIONS(4632), + [anon_sym_bool] = ACTIONS(4632), + [anon_sym_int] = ACTIONS(4632), + [anon_sym_uint] = ACTIONS(4632), + [anon_sym_float] = ACTIONS(4632), + [anon_sym_range] = ACTIONS(4632), + [anon_sym_i8] = ACTIONS(4632), + [anon_sym_i16] = ACTIONS(4632), + [anon_sym_i32] = ACTIONS(4632), + [anon_sym_i64] = ACTIONS(4632), + [anon_sym_u8] = ACTIONS(4632), + [anon_sym_u16] = ACTIONS(4632), + [anon_sym_u32] = ACTIONS(4632), + [anon_sym_u64] = ACTIONS(4632), + [anon_sym_isize] = ACTIONS(4632), + [anon_sym_usize] = ACTIONS(4632), + [anon_sym_f32] = ACTIONS(4632), + [anon_sym_f64] = ACTIONS(4632), + [anon_sym_c_char] = ACTIONS(4632), + [anon_sym_c_schar] = ACTIONS(4632), + [anon_sym_c_uchar] = ACTIONS(4632), + [anon_sym_c_short] = ACTIONS(4632), + [anon_sym_c_ushort] = ACTIONS(4632), + [anon_sym_c_int] = ACTIONS(4632), + [anon_sym_c_uint] = ACTIONS(4632), + [anon_sym_c_long] = ACTIONS(4632), + [anon_sym_c_ulong] = ACTIONS(4632), + [anon_sym_c_longlong] = ACTIONS(4632), + [anon_sym_c_ulonglong] = ACTIONS(4632), + [anon_sym_c_float] = ACTIONS(4632), + [anon_sym_c_double] = ACTIONS(4632), + [anon_sym_c_longdouble] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4630), + [anon_sym_DASH_EQ] = ACTIONS(4630), + [anon_sym_STAR_EQ] = ACTIONS(4630), + [anon_sym_SLASH_EQ] = ACTIONS(4630), + [anon_sym_AMP_EQ] = ACTIONS(4630), + [anon_sym_PIPE_EQ] = ACTIONS(4630), + [anon_sym_xor_EQ] = ACTIONS(4630), + [anon_sym_LT_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_GT_EQ] = ACTIONS(4630), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4630), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_yield] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_defer] = ACTIONS(4632), + [anon_sym_errdefer] = ACTIONS(4632), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_expand] = ACTIONS(4632), + [anon_sym_for] = ACTIONS(4632), + [anon_sym_match] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4630), + [anon_sym_orelse] = ACTIONS(4632), + [anon_sym_or] = ACTIONS(4632), + [anon_sym_and] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_xor] = ACTIONS(4632), + [anon_sym_LT_LT] = ACTIONS(4632), + [anon_sym_GT_GT] = ACTIONS(4632), + [anon_sym_LT_LT_PIPE] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_catch] = ACTIONS(4632), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4632), + [anon_sym_unreachable] = ACTIONS(4632), + [anon_sym_undefined] = ACTIONS(4632), + [sym_sink] = ACTIONS(4632), + [sym_integer] = ACTIONS(4632), + [sym_float] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_multiline_string] = ACTIONS(4630), + [sym_character] = ACTIONS(4630), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4630), + }, + [STATE(3291)] = { + [sym_identifier] = ACTIONS(4636), + [anon_sym_func] = ACTIONS(4636), + [anon_sym_c_func] = ACTIONS(4636), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_struct_type_BANG] = ACTIONS(4634), + [anon_sym_QMARK] = ACTIONS(4634), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_void] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym_type] = ACTIONS(4636), + [anon_sym_anyopaque] = ACTIONS(4636), + [anon_sym_bool] = ACTIONS(4636), + [anon_sym_int] = ACTIONS(4636), + [anon_sym_uint] = ACTIONS(4636), + [anon_sym_float] = ACTIONS(4636), + [anon_sym_range] = ACTIONS(4636), + [anon_sym_i8] = ACTIONS(4636), + [anon_sym_i16] = ACTIONS(4636), + [anon_sym_i32] = ACTIONS(4636), + [anon_sym_i64] = ACTIONS(4636), + [anon_sym_u8] = ACTIONS(4636), + [anon_sym_u16] = ACTIONS(4636), + [anon_sym_u32] = ACTIONS(4636), + [anon_sym_u64] = ACTIONS(4636), + [anon_sym_isize] = ACTIONS(4636), + [anon_sym_usize] = ACTIONS(4636), + [anon_sym_f32] = ACTIONS(4636), + [anon_sym_f64] = ACTIONS(4636), + [anon_sym_c_char] = ACTIONS(4636), + [anon_sym_c_schar] = ACTIONS(4636), + [anon_sym_c_uchar] = ACTIONS(4636), + [anon_sym_c_short] = ACTIONS(4636), + [anon_sym_c_ushort] = ACTIONS(4636), + [anon_sym_c_int] = ACTIONS(4636), + [anon_sym_c_uint] = ACTIONS(4636), + [anon_sym_c_long] = ACTIONS(4636), + [anon_sym_c_ulong] = ACTIONS(4636), + [anon_sym_c_longlong] = ACTIONS(4636), + [anon_sym_c_ulonglong] = ACTIONS(4636), + [anon_sym_c_float] = ACTIONS(4636), + [anon_sym_c_double] = ACTIONS(4636), + [anon_sym_c_longdouble] = ACTIONS(4636), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_AMP_EQ] = ACTIONS(4634), + [anon_sym_PIPE_EQ] = ACTIONS(4634), + [anon_sym_xor_EQ] = ACTIONS(4634), + [anon_sym_LT_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_GT_EQ] = ACTIONS(4634), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4634), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_yield] = ACTIONS(4636), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_defer] = ACTIONS(4636), + [anon_sym_errdefer] = ACTIONS(4636), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_expand] = ACTIONS(4636), + [anon_sym_for] = ACTIONS(4636), + [anon_sym_match] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4634), + [anon_sym_orelse] = ACTIONS(4636), + [anon_sym_or] = ACTIONS(4636), + [anon_sym_and] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_xor] = ACTIONS(4636), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(4636), + [anon_sym_LT_LT_PIPE] = ACTIONS(4636), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_SLASH] = ACTIONS(4636), + [anon_sym_catch] = ACTIONS(4636), + [anon_sym_TILDE] = ACTIONS(4634), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4636), + [anon_sym_false] = ACTIONS(4636), + [anon_sym_null] = ACTIONS(4636), + [anon_sym_unreachable] = ACTIONS(4636), + [anon_sym_undefined] = ACTIONS(4636), + [sym_sink] = ACTIONS(4636), + [sym_integer] = ACTIONS(4636), + [sym_float] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4634), + [sym_multiline_string] = ACTIONS(4634), + [sym_character] = ACTIONS(4634), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4634), + }, + [STATE(3292)] = { + [sym_identifier] = ACTIONS(5484), + [anon_sym_func] = ACTIONS(5484), + [anon_sym_c_func] = ACTIONS(5484), + [anon_sym_BANG] = ACTIONS(5484), + [anon_sym_EQ] = ACTIONS(5484), + [anon_sym_struct] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5484), + [anon_sym_DOLLAR] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5484), + [anon_sym_struct_type_BANG] = ACTIONS(5482), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_AT] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_void] = ACTIONS(5484), + [anon_sym_noreturn] = ACTIONS(5484), + [anon_sym_type] = ACTIONS(5484), + [anon_sym_anyopaque] = ACTIONS(5484), + [anon_sym_bool] = ACTIONS(5484), + [anon_sym_int] = ACTIONS(5484), + [anon_sym_uint] = ACTIONS(5484), + [anon_sym_float] = ACTIONS(5484), + [anon_sym_range] = ACTIONS(5484), + [anon_sym_i8] = ACTIONS(5484), + [anon_sym_i16] = ACTIONS(5484), + [anon_sym_i32] = ACTIONS(5484), + [anon_sym_i64] = ACTIONS(5484), + [anon_sym_u8] = ACTIONS(5484), + [anon_sym_u16] = ACTIONS(5484), + [anon_sym_u32] = ACTIONS(5484), + [anon_sym_u64] = ACTIONS(5484), + [anon_sym_isize] = ACTIONS(5484), + [anon_sym_usize] = ACTIONS(5484), + [anon_sym_f32] = ACTIONS(5484), + [anon_sym_f64] = ACTIONS(5484), + [anon_sym_c_char] = ACTIONS(5484), + [anon_sym_c_schar] = ACTIONS(5484), + [anon_sym_c_uchar] = ACTIONS(5484), + [anon_sym_c_short] = ACTIONS(5484), + [anon_sym_c_ushort] = ACTIONS(5484), + [anon_sym_c_int] = ACTIONS(5484), + [anon_sym_c_uint] = ACTIONS(5484), + [anon_sym_c_long] = ACTIONS(5484), + [anon_sym_c_ulong] = ACTIONS(5484), + [anon_sym_c_longlong] = ACTIONS(5484), + [anon_sym_c_ulonglong] = ACTIONS(5484), + [anon_sym_c_float] = ACTIONS(5484), + [anon_sym_c_double] = ACTIONS(5484), + [anon_sym_c_longdouble] = ACTIONS(5484), + [anon_sym_PLUS_EQ] = ACTIONS(5482), + [anon_sym_DASH_EQ] = ACTIONS(5482), + [anon_sym_STAR_EQ] = ACTIONS(5482), + [anon_sym_SLASH_EQ] = ACTIONS(5482), + [anon_sym_AMP_EQ] = ACTIONS(5482), + [anon_sym_PIPE_EQ] = ACTIONS(5482), + [anon_sym_xor_EQ] = ACTIONS(5482), + [anon_sym_LT_LT_EQ] = ACTIONS(5482), + [anon_sym_GT_GT_EQ] = ACTIONS(5482), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5482), + [anon_sym_return] = ACTIONS(5484), + [anon_sym_yield] = ACTIONS(5484), + [anon_sym_break] = ACTIONS(5484), + [anon_sym_continue] = ACTIONS(5484), + [anon_sym_defer] = ACTIONS(5484), + [anon_sym_errdefer] = ACTIONS(5484), + [anon_sym_if] = ACTIONS(5484), + [anon_sym_else] = ACTIONS(5484), + [anon_sym_while] = ACTIONS(5484), + [anon_sym_expand] = ACTIONS(5484), + [anon_sym_for] = ACTIONS(5484), + [anon_sym_match] = ACTIONS(5484), + [anon_sym_DOT_DOT] = ACTIONS(5484), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5482), + [anon_sym_orelse] = ACTIONS(5484), + [anon_sym_or] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_LT] = ACTIONS(5484), + [anon_sym_LT_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_xor] = ACTIONS(5484), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5484), + [anon_sym_LT_LT_PIPE] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5484), + [anon_sym_SLASH] = ACTIONS(5484), + [anon_sym_catch] = ACTIONS(5484), + [anon_sym_TILDE] = ACTIONS(5482), + [anon_sym_try] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5482), + [anon_sym_true] = ACTIONS(5484), + [anon_sym_false] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), + [anon_sym_unreachable] = ACTIONS(5484), + [anon_sym_undefined] = ACTIONS(5484), + [sym_sink] = ACTIONS(5484), + [sym_integer] = ACTIONS(5484), + [sym_float] = ACTIONS(5482), + [anon_sym_DQUOTE] = ACTIONS(5482), + [sym_multiline_string] = ACTIONS(5482), + [sym_character] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5482), + }, + [STATE(3293)] = { + [sym_identifier] = ACTIONS(5292), + [anon_sym_func] = ACTIONS(5292), + [anon_sym_c_func] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_EQ] = ACTIONS(5292), + [anon_sym_struct] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_RBRACE] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_struct_type_BANG] = ACTIONS(5290), + [anon_sym_QMARK] = ACTIONS(5290), + [anon_sym_AT] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_void] = ACTIONS(5292), + [anon_sym_noreturn] = ACTIONS(5292), + [anon_sym_type] = ACTIONS(5292), + [anon_sym_anyopaque] = ACTIONS(5292), + [anon_sym_bool] = ACTIONS(5292), + [anon_sym_int] = ACTIONS(5292), + [anon_sym_uint] = ACTIONS(5292), + [anon_sym_float] = ACTIONS(5292), + [anon_sym_range] = ACTIONS(5292), + [anon_sym_i8] = ACTIONS(5292), + [anon_sym_i16] = ACTIONS(5292), + [anon_sym_i32] = ACTIONS(5292), + [anon_sym_i64] = ACTIONS(5292), + [anon_sym_u8] = ACTIONS(5292), + [anon_sym_u16] = ACTIONS(5292), + [anon_sym_u32] = ACTIONS(5292), + [anon_sym_u64] = ACTIONS(5292), + [anon_sym_isize] = ACTIONS(5292), + [anon_sym_usize] = ACTIONS(5292), + [anon_sym_f32] = ACTIONS(5292), + [anon_sym_f64] = ACTIONS(5292), + [anon_sym_c_char] = ACTIONS(5292), + [anon_sym_c_schar] = ACTIONS(5292), + [anon_sym_c_uchar] = ACTIONS(5292), + [anon_sym_c_short] = ACTIONS(5292), + [anon_sym_c_ushort] = ACTIONS(5292), + [anon_sym_c_int] = ACTIONS(5292), + [anon_sym_c_uint] = ACTIONS(5292), + [anon_sym_c_long] = ACTIONS(5292), + [anon_sym_c_ulong] = ACTIONS(5292), + [anon_sym_c_longlong] = ACTIONS(5292), + [anon_sym_c_ulonglong] = ACTIONS(5292), + [anon_sym_c_float] = ACTIONS(5292), + [anon_sym_c_double] = ACTIONS(5292), + [anon_sym_c_longdouble] = ACTIONS(5292), + [anon_sym_PLUS_EQ] = ACTIONS(5290), + [anon_sym_DASH_EQ] = ACTIONS(5290), + [anon_sym_STAR_EQ] = ACTIONS(5290), + [anon_sym_SLASH_EQ] = ACTIONS(5290), + [anon_sym_AMP_EQ] = ACTIONS(5290), + [anon_sym_PIPE_EQ] = ACTIONS(5290), + [anon_sym_xor_EQ] = ACTIONS(5290), + [anon_sym_LT_LT_EQ] = ACTIONS(5290), + [anon_sym_GT_GT_EQ] = ACTIONS(5290), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5290), + [anon_sym_return] = ACTIONS(5292), + [anon_sym_yield] = ACTIONS(5292), + [anon_sym_break] = ACTIONS(5292), + [anon_sym_continue] = ACTIONS(5292), + [anon_sym_defer] = ACTIONS(5292), + [anon_sym_errdefer] = ACTIONS(5292), + [anon_sym_if] = ACTIONS(5292), + [anon_sym_else] = ACTIONS(5292), + [anon_sym_while] = ACTIONS(5292), + [anon_sym_expand] = ACTIONS(5292), + [anon_sym_for] = ACTIONS(5292), + [anon_sym_match] = ACTIONS(5292), + [anon_sym_DOT_DOT] = ACTIONS(5292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5290), + [anon_sym_orelse] = ACTIONS(5292), + [anon_sym_or] = ACTIONS(5292), + [anon_sym_and] = ACTIONS(5292), + [anon_sym_EQ_EQ] = ACTIONS(5290), + [anon_sym_BANG_EQ] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_LT_EQ] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_EQ] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), + [anon_sym_xor] = ACTIONS(5292), + [anon_sym_LT_LT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5292), + [anon_sym_LT_LT_PIPE] = ACTIONS(5292), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_catch] = ACTIONS(5292), + [anon_sym_TILDE] = ACTIONS(5290), + [anon_sym_try] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5290), + [anon_sym_true] = ACTIONS(5292), + [anon_sym_false] = ACTIONS(5292), + [anon_sym_null] = ACTIONS(5292), + [anon_sym_unreachable] = ACTIONS(5292), + [anon_sym_undefined] = ACTIONS(5292), + [sym_sink] = ACTIONS(5292), + [sym_integer] = ACTIONS(5292), + [sym_float] = ACTIONS(5290), + [anon_sym_DQUOTE] = ACTIONS(5290), + [sym_multiline_string] = ACTIONS(5290), + [sym_character] = ACTIONS(5290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5290), + }, + [STATE(3294)] = { + [sym_identifier] = ACTIONS(5296), + [anon_sym_func] = ACTIONS(5296), + [anon_sym_c_func] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_EQ] = ACTIONS(5296), + [anon_sym_struct] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_DOLLAR] = ACTIONS(5294), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_struct_type_BANG] = ACTIONS(5294), + [anon_sym_QMARK] = ACTIONS(5294), + [anon_sym_AT] = ACTIONS(5294), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_void] = ACTIONS(5296), + [anon_sym_noreturn] = ACTIONS(5296), + [anon_sym_type] = ACTIONS(5296), + [anon_sym_anyopaque] = ACTIONS(5296), + [anon_sym_bool] = ACTIONS(5296), + [anon_sym_int] = ACTIONS(5296), + [anon_sym_uint] = ACTIONS(5296), + [anon_sym_float] = ACTIONS(5296), + [anon_sym_range] = ACTIONS(5296), + [anon_sym_i8] = ACTIONS(5296), + [anon_sym_i16] = ACTIONS(5296), + [anon_sym_i32] = ACTIONS(5296), + [anon_sym_i64] = ACTIONS(5296), + [anon_sym_u8] = ACTIONS(5296), + [anon_sym_u16] = ACTIONS(5296), + [anon_sym_u32] = ACTIONS(5296), + [anon_sym_u64] = ACTIONS(5296), + [anon_sym_isize] = ACTIONS(5296), + [anon_sym_usize] = ACTIONS(5296), + [anon_sym_f32] = ACTIONS(5296), + [anon_sym_f64] = ACTIONS(5296), + [anon_sym_c_char] = ACTIONS(5296), + [anon_sym_c_schar] = ACTIONS(5296), + [anon_sym_c_uchar] = ACTIONS(5296), + [anon_sym_c_short] = ACTIONS(5296), + [anon_sym_c_ushort] = ACTIONS(5296), + [anon_sym_c_int] = ACTIONS(5296), + [anon_sym_c_uint] = ACTIONS(5296), + [anon_sym_c_long] = ACTIONS(5296), + [anon_sym_c_ulong] = ACTIONS(5296), + [anon_sym_c_longlong] = ACTIONS(5296), + [anon_sym_c_ulonglong] = ACTIONS(5296), + [anon_sym_c_float] = ACTIONS(5296), + [anon_sym_c_double] = ACTIONS(5296), + [anon_sym_c_longdouble] = ACTIONS(5296), + [anon_sym_PLUS_EQ] = ACTIONS(5294), + [anon_sym_DASH_EQ] = ACTIONS(5294), + [anon_sym_STAR_EQ] = ACTIONS(5294), + [anon_sym_SLASH_EQ] = ACTIONS(5294), + [anon_sym_AMP_EQ] = ACTIONS(5294), + [anon_sym_PIPE_EQ] = ACTIONS(5294), + [anon_sym_xor_EQ] = ACTIONS(5294), + [anon_sym_LT_LT_EQ] = ACTIONS(5294), + [anon_sym_GT_GT_EQ] = ACTIONS(5294), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5294), + [anon_sym_return] = ACTIONS(5296), + [anon_sym_yield] = ACTIONS(5296), + [anon_sym_break] = ACTIONS(5296), + [anon_sym_continue] = ACTIONS(5296), + [anon_sym_defer] = ACTIONS(5296), + [anon_sym_errdefer] = ACTIONS(5296), + [anon_sym_if] = ACTIONS(5296), + [anon_sym_else] = ACTIONS(5296), + [anon_sym_while] = ACTIONS(5296), + [anon_sym_expand] = ACTIONS(5296), + [anon_sym_for] = ACTIONS(5296), + [anon_sym_match] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(5296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5294), + [anon_sym_orelse] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5294), + [anon_sym_BANG_EQ] = ACTIONS(5294), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_LT_EQ] = ACTIONS(5294), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_GT_EQ] = ACTIONS(5294), + [anon_sym_AMP] = ACTIONS(5296), + [anon_sym_xor] = ACTIONS(5296), + [anon_sym_LT_LT] = ACTIONS(5296), + [anon_sym_GT_GT] = ACTIONS(5296), + [anon_sym_LT_LT_PIPE] = ACTIONS(5296), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_catch] = ACTIONS(5296), + [anon_sym_TILDE] = ACTIONS(5294), + [anon_sym_try] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5294), + [anon_sym_true] = ACTIONS(5296), + [anon_sym_false] = ACTIONS(5296), + [anon_sym_null] = ACTIONS(5296), + [anon_sym_unreachable] = ACTIONS(5296), + [anon_sym_undefined] = ACTIONS(5296), + [sym_sink] = ACTIONS(5296), + [sym_integer] = ACTIONS(5296), + [sym_float] = ACTIONS(5294), + [anon_sym_DQUOTE] = ACTIONS(5294), + [sym_multiline_string] = ACTIONS(5294), + [sym_character] = ACTIONS(5294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5294), + }, + [STATE(3295)] = { + [sym_identifier] = ACTIONS(5300), + [anon_sym_func] = ACTIONS(5300), + [anon_sym_c_func] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_EQ] = ACTIONS(5300), + [anon_sym_struct] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_RBRACE] = ACTIONS(5298), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_DOLLAR] = ACTIONS(5298), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_struct_type_BANG] = ACTIONS(5298), + [anon_sym_QMARK] = ACTIONS(5298), + [anon_sym_AT] = ACTIONS(5298), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_void] = ACTIONS(5300), + [anon_sym_noreturn] = ACTIONS(5300), + [anon_sym_type] = ACTIONS(5300), + [anon_sym_anyopaque] = ACTIONS(5300), + [anon_sym_bool] = ACTIONS(5300), + [anon_sym_int] = ACTIONS(5300), + [anon_sym_uint] = ACTIONS(5300), + [anon_sym_float] = ACTIONS(5300), + [anon_sym_range] = ACTIONS(5300), + [anon_sym_i8] = ACTIONS(5300), + [anon_sym_i16] = ACTIONS(5300), + [anon_sym_i32] = ACTIONS(5300), + [anon_sym_i64] = ACTIONS(5300), + [anon_sym_u8] = ACTIONS(5300), + [anon_sym_u16] = ACTIONS(5300), + [anon_sym_u32] = ACTIONS(5300), + [anon_sym_u64] = ACTIONS(5300), + [anon_sym_isize] = ACTIONS(5300), + [anon_sym_usize] = ACTIONS(5300), + [anon_sym_f32] = ACTIONS(5300), + [anon_sym_f64] = ACTIONS(5300), + [anon_sym_c_char] = ACTIONS(5300), + [anon_sym_c_schar] = ACTIONS(5300), + [anon_sym_c_uchar] = ACTIONS(5300), + [anon_sym_c_short] = ACTIONS(5300), + [anon_sym_c_ushort] = ACTIONS(5300), + [anon_sym_c_int] = ACTIONS(5300), + [anon_sym_c_uint] = ACTIONS(5300), + [anon_sym_c_long] = ACTIONS(5300), + [anon_sym_c_ulong] = ACTIONS(5300), + [anon_sym_c_longlong] = ACTIONS(5300), + [anon_sym_c_ulonglong] = ACTIONS(5300), + [anon_sym_c_float] = ACTIONS(5300), + [anon_sym_c_double] = ACTIONS(5300), + [anon_sym_c_longdouble] = ACTIONS(5300), + [anon_sym_PLUS_EQ] = ACTIONS(5298), + [anon_sym_DASH_EQ] = ACTIONS(5298), + [anon_sym_STAR_EQ] = ACTIONS(5298), + [anon_sym_SLASH_EQ] = ACTIONS(5298), + [anon_sym_AMP_EQ] = ACTIONS(5298), + [anon_sym_PIPE_EQ] = ACTIONS(5298), + [anon_sym_xor_EQ] = ACTIONS(5298), + [anon_sym_LT_LT_EQ] = ACTIONS(5298), + [anon_sym_GT_GT_EQ] = ACTIONS(5298), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5298), + [anon_sym_return] = ACTIONS(5300), + [anon_sym_yield] = ACTIONS(5300), + [anon_sym_break] = ACTIONS(5300), + [anon_sym_continue] = ACTIONS(5300), + [anon_sym_defer] = ACTIONS(5300), + [anon_sym_errdefer] = ACTIONS(5300), + [anon_sym_if] = ACTIONS(5300), + [anon_sym_else] = ACTIONS(5300), + [anon_sym_while] = ACTIONS(5300), + [anon_sym_expand] = ACTIONS(5300), + [anon_sym_for] = ACTIONS(5300), + [anon_sym_match] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5298), + [anon_sym_orelse] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5298), + [anon_sym_BANG_EQ] = ACTIONS(5298), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_LT_EQ] = ACTIONS(5298), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5298), + [anon_sym_AMP] = ACTIONS(5300), + [anon_sym_xor] = ACTIONS(5300), + [anon_sym_LT_LT] = ACTIONS(5300), + [anon_sym_GT_GT] = ACTIONS(5300), + [anon_sym_LT_LT_PIPE] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_catch] = ACTIONS(5300), + [anon_sym_TILDE] = ACTIONS(5298), + [anon_sym_try] = ACTIONS(5300), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5298), + [anon_sym_true] = ACTIONS(5300), + [anon_sym_false] = ACTIONS(5300), + [anon_sym_null] = ACTIONS(5300), + [anon_sym_unreachable] = ACTIONS(5300), + [anon_sym_undefined] = ACTIONS(5300), + [sym_sink] = ACTIONS(5300), + [sym_integer] = ACTIONS(5300), + [sym_float] = ACTIONS(5298), + [anon_sym_DQUOTE] = ACTIONS(5298), + [sym_multiline_string] = ACTIONS(5298), + [sym_character] = ACTIONS(5298), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5298), + }, + [STATE(3296)] = { + [sym_identifier] = ACTIONS(5308), + [anon_sym_func] = ACTIONS(5308), + [anon_sym_c_func] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_EQ] = ACTIONS(5308), + [anon_sym_struct] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_DOLLAR] = ACTIONS(5306), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_struct_type_BANG] = ACTIONS(5306), + [anon_sym_QMARK] = ACTIONS(5306), + [anon_sym_AT] = ACTIONS(5306), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_void] = ACTIONS(5308), + [anon_sym_noreturn] = ACTIONS(5308), + [anon_sym_type] = ACTIONS(5308), + [anon_sym_anyopaque] = ACTIONS(5308), + [anon_sym_bool] = ACTIONS(5308), + [anon_sym_int] = ACTIONS(5308), + [anon_sym_uint] = ACTIONS(5308), + [anon_sym_float] = ACTIONS(5308), + [anon_sym_range] = ACTIONS(5308), + [anon_sym_i8] = ACTIONS(5308), + [anon_sym_i16] = ACTIONS(5308), + [anon_sym_i32] = ACTIONS(5308), + [anon_sym_i64] = ACTIONS(5308), + [anon_sym_u8] = ACTIONS(5308), + [anon_sym_u16] = ACTIONS(5308), + [anon_sym_u32] = ACTIONS(5308), + [anon_sym_u64] = ACTIONS(5308), + [anon_sym_isize] = ACTIONS(5308), + [anon_sym_usize] = ACTIONS(5308), + [anon_sym_f32] = ACTIONS(5308), + [anon_sym_f64] = ACTIONS(5308), + [anon_sym_c_char] = ACTIONS(5308), + [anon_sym_c_schar] = ACTIONS(5308), + [anon_sym_c_uchar] = ACTIONS(5308), + [anon_sym_c_short] = ACTIONS(5308), + [anon_sym_c_ushort] = ACTIONS(5308), + [anon_sym_c_int] = ACTIONS(5308), + [anon_sym_c_uint] = ACTIONS(5308), + [anon_sym_c_long] = ACTIONS(5308), + [anon_sym_c_ulong] = ACTIONS(5308), + [anon_sym_c_longlong] = ACTIONS(5308), + [anon_sym_c_ulonglong] = ACTIONS(5308), + [anon_sym_c_float] = ACTIONS(5308), + [anon_sym_c_double] = ACTIONS(5308), + [anon_sym_c_longdouble] = ACTIONS(5308), + [anon_sym_PLUS_EQ] = ACTIONS(5306), + [anon_sym_DASH_EQ] = ACTIONS(5306), + [anon_sym_STAR_EQ] = ACTIONS(5306), + [anon_sym_SLASH_EQ] = ACTIONS(5306), + [anon_sym_AMP_EQ] = ACTIONS(5306), + [anon_sym_PIPE_EQ] = ACTIONS(5306), + [anon_sym_xor_EQ] = ACTIONS(5306), + [anon_sym_LT_LT_EQ] = ACTIONS(5306), + [anon_sym_GT_GT_EQ] = ACTIONS(5306), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5306), + [anon_sym_return] = ACTIONS(5308), + [anon_sym_yield] = ACTIONS(5308), + [anon_sym_break] = ACTIONS(5308), + [anon_sym_continue] = ACTIONS(5308), + [anon_sym_defer] = ACTIONS(5308), + [anon_sym_errdefer] = ACTIONS(5308), + [anon_sym_if] = ACTIONS(5308), + [anon_sym_else] = ACTIONS(5308), + [anon_sym_while] = ACTIONS(5308), + [anon_sym_expand] = ACTIONS(5308), + [anon_sym_for] = ACTIONS(5308), + [anon_sym_match] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5306), + [anon_sym_orelse] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5306), + [anon_sym_BANG_EQ] = ACTIONS(5306), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5306), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5306), + [anon_sym_AMP] = ACTIONS(5308), + [anon_sym_xor] = ACTIONS(5308), + [anon_sym_LT_LT] = ACTIONS(5308), + [anon_sym_GT_GT] = ACTIONS(5308), + [anon_sym_LT_LT_PIPE] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_catch] = ACTIONS(5308), + [anon_sym_TILDE] = ACTIONS(5306), + [anon_sym_try] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5306), + [anon_sym_true] = ACTIONS(5308), + [anon_sym_false] = ACTIONS(5308), + [anon_sym_null] = ACTIONS(5308), + [anon_sym_unreachable] = ACTIONS(5308), + [anon_sym_undefined] = ACTIONS(5308), + [sym_sink] = ACTIONS(5308), + [sym_integer] = ACTIONS(5308), + [sym_float] = ACTIONS(5306), + [anon_sym_DQUOTE] = ACTIONS(5306), + [sym_multiline_string] = ACTIONS(5306), + [sym_character] = ACTIONS(5306), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5306), + }, + [STATE(3297)] = { + [sym_identifier] = ACTIONS(4640), + [anon_sym_func] = ACTIONS(4640), + [anon_sym_c_func] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_COMMA] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_DOLLAR] = ACTIONS(4638), + [anon_sym_PIPE] = ACTIONS(4640), + [anon_sym_struct_type_BANG] = ACTIONS(4638), + [anon_sym_QMARK] = ACTIONS(4638), + [anon_sym_AT] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_void] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym_type] = ACTIONS(4640), + [anon_sym_anyopaque] = ACTIONS(4640), + [anon_sym_bool] = ACTIONS(4640), + [anon_sym_int] = ACTIONS(4640), + [anon_sym_uint] = ACTIONS(4640), + [anon_sym_float] = ACTIONS(4640), + [anon_sym_range] = ACTIONS(4640), + [anon_sym_i8] = ACTIONS(4640), + [anon_sym_i16] = ACTIONS(4640), + [anon_sym_i32] = ACTIONS(4640), + [anon_sym_i64] = ACTIONS(4640), + [anon_sym_u8] = ACTIONS(4640), + [anon_sym_u16] = ACTIONS(4640), + [anon_sym_u32] = ACTIONS(4640), + [anon_sym_u64] = ACTIONS(4640), + [anon_sym_isize] = ACTIONS(4640), + [anon_sym_usize] = ACTIONS(4640), + [anon_sym_f32] = ACTIONS(4640), + [anon_sym_f64] = ACTIONS(4640), + [anon_sym_c_char] = ACTIONS(4640), + [anon_sym_c_schar] = ACTIONS(4640), + [anon_sym_c_uchar] = ACTIONS(4640), + [anon_sym_c_short] = ACTIONS(4640), + [anon_sym_c_ushort] = ACTIONS(4640), + [anon_sym_c_int] = ACTIONS(4640), + [anon_sym_c_uint] = ACTIONS(4640), + [anon_sym_c_long] = ACTIONS(4640), + [anon_sym_c_ulong] = ACTIONS(4640), + [anon_sym_c_longlong] = ACTIONS(4640), + [anon_sym_c_ulonglong] = ACTIONS(4640), + [anon_sym_c_float] = ACTIONS(4640), + [anon_sym_c_double] = ACTIONS(4640), + [anon_sym_c_longdouble] = ACTIONS(4640), + [anon_sym_PLUS_EQ] = ACTIONS(4638), + [anon_sym_DASH_EQ] = ACTIONS(4638), + [anon_sym_STAR_EQ] = ACTIONS(4638), + [anon_sym_SLASH_EQ] = ACTIONS(4638), + [anon_sym_AMP_EQ] = ACTIONS(4638), + [anon_sym_PIPE_EQ] = ACTIONS(4638), + [anon_sym_xor_EQ] = ACTIONS(4638), + [anon_sym_LT_LT_EQ] = ACTIONS(4638), + [anon_sym_GT_GT_EQ] = ACTIONS(4638), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4638), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_yield] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_defer] = ACTIONS(4640), + [anon_sym_errdefer] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_expand] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_match] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4638), + [anon_sym_orelse] = ACTIONS(4640), + [anon_sym_or] = ACTIONS(4640), + [anon_sym_and] = ACTIONS(4640), + [anon_sym_EQ_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4640), + [anon_sym_xor] = ACTIONS(4640), + [anon_sym_LT_LT] = ACTIONS(4640), + [anon_sym_GT_GT] = ACTIONS(4640), + [anon_sym_LT_LT_PIPE] = ACTIONS(4640), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_SLASH] = ACTIONS(4640), + [anon_sym_catch] = ACTIONS(4640), + [anon_sym_TILDE] = ACTIONS(4638), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_CARET] = ACTIONS(4638), + [anon_sym_true] = ACTIONS(4640), + [anon_sym_false] = ACTIONS(4640), + [anon_sym_null] = ACTIONS(4640), + [anon_sym_unreachable] = ACTIONS(4640), + [anon_sym_undefined] = ACTIONS(4640), + [sym_sink] = ACTIONS(4640), + [sym_integer] = ACTIONS(4640), + [sym_float] = ACTIONS(4638), + [anon_sym_DQUOTE] = ACTIONS(4638), + [sym_multiline_string] = ACTIONS(4638), + [sym_character] = ACTIONS(4638), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4638), + }, + [STATE(3298)] = { + [sym_identifier] = ACTIONS(5312), + [anon_sym_func] = ACTIONS(5312), + [anon_sym_c_func] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_struct] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_struct_type_BANG] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_AT] = ACTIONS(5310), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_void] = ACTIONS(5312), + [anon_sym_noreturn] = ACTIONS(5312), + [anon_sym_type] = ACTIONS(5312), + [anon_sym_anyopaque] = ACTIONS(5312), + [anon_sym_bool] = ACTIONS(5312), + [anon_sym_int] = ACTIONS(5312), + [anon_sym_uint] = ACTIONS(5312), + [anon_sym_float] = ACTIONS(5312), + [anon_sym_range] = ACTIONS(5312), + [anon_sym_i8] = ACTIONS(5312), + [anon_sym_i16] = ACTIONS(5312), + [anon_sym_i32] = ACTIONS(5312), + [anon_sym_i64] = ACTIONS(5312), + [anon_sym_u8] = ACTIONS(5312), + [anon_sym_u16] = ACTIONS(5312), + [anon_sym_u32] = ACTIONS(5312), + [anon_sym_u64] = ACTIONS(5312), + [anon_sym_isize] = ACTIONS(5312), + [anon_sym_usize] = ACTIONS(5312), + [anon_sym_f32] = ACTIONS(5312), + [anon_sym_f64] = ACTIONS(5312), + [anon_sym_c_char] = ACTIONS(5312), + [anon_sym_c_schar] = ACTIONS(5312), + [anon_sym_c_uchar] = ACTIONS(5312), + [anon_sym_c_short] = ACTIONS(5312), + [anon_sym_c_ushort] = ACTIONS(5312), + [anon_sym_c_int] = ACTIONS(5312), + [anon_sym_c_uint] = ACTIONS(5312), + [anon_sym_c_long] = ACTIONS(5312), + [anon_sym_c_ulong] = ACTIONS(5312), + [anon_sym_c_longlong] = ACTIONS(5312), + [anon_sym_c_ulonglong] = ACTIONS(5312), + [anon_sym_c_float] = ACTIONS(5312), + [anon_sym_c_double] = ACTIONS(5312), + [anon_sym_c_longdouble] = ACTIONS(5312), + [anon_sym_PLUS_EQ] = ACTIONS(5310), + [anon_sym_DASH_EQ] = ACTIONS(5310), + [anon_sym_STAR_EQ] = ACTIONS(5310), + [anon_sym_SLASH_EQ] = ACTIONS(5310), + [anon_sym_AMP_EQ] = ACTIONS(5310), + [anon_sym_PIPE_EQ] = ACTIONS(5310), + [anon_sym_xor_EQ] = ACTIONS(5310), + [anon_sym_LT_LT_EQ] = ACTIONS(5310), + [anon_sym_GT_GT_EQ] = ACTIONS(5310), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5310), + [anon_sym_return] = ACTIONS(5312), + [anon_sym_yield] = ACTIONS(5312), + [anon_sym_break] = ACTIONS(5312), + [anon_sym_continue] = ACTIONS(5312), + [anon_sym_defer] = ACTIONS(5312), + [anon_sym_errdefer] = ACTIONS(5312), + [anon_sym_if] = ACTIONS(5312), + [anon_sym_else] = ACTIONS(5312), + [anon_sym_while] = ACTIONS(5312), + [anon_sym_expand] = ACTIONS(5312), + [anon_sym_for] = ACTIONS(5312), + [anon_sym_match] = ACTIONS(5312), + [anon_sym_DOT_DOT] = ACTIONS(5312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5310), + [anon_sym_orelse] = ACTIONS(5312), + [anon_sym_or] = ACTIONS(5312), + [anon_sym_and] = ACTIONS(5312), + [anon_sym_EQ_EQ] = ACTIONS(5310), + [anon_sym_BANG_EQ] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_LT_EQ] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_EQ] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + [anon_sym_xor] = ACTIONS(5312), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5312), + [anon_sym_LT_LT_PIPE] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_catch] = ACTIONS(5312), + [anon_sym_TILDE] = ACTIONS(5310), + [anon_sym_try] = ACTIONS(5312), + [anon_sym_DOT] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5310), + [anon_sym_true] = ACTIONS(5312), + [anon_sym_false] = ACTIONS(5312), + [anon_sym_null] = ACTIONS(5312), + [anon_sym_unreachable] = ACTIONS(5312), + [anon_sym_undefined] = ACTIONS(5312), + [sym_sink] = ACTIONS(5312), + [sym_integer] = ACTIONS(5312), + [sym_float] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(5310), + [sym_multiline_string] = ACTIONS(5310), + [sym_character] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5310), + }, + [STATE(3299)] = { + [sym_identifier] = ACTIONS(4644), + [anon_sym_func] = ACTIONS(4644), + [anon_sym_c_func] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_struct_type_BANG] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_void] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym_type] = ACTIONS(4644), + [anon_sym_anyopaque] = ACTIONS(4644), + [anon_sym_bool] = ACTIONS(4644), + [anon_sym_int] = ACTIONS(4644), + [anon_sym_uint] = ACTIONS(4644), + [anon_sym_float] = ACTIONS(4644), + [anon_sym_range] = ACTIONS(4644), + [anon_sym_i8] = ACTIONS(4644), + [anon_sym_i16] = ACTIONS(4644), + [anon_sym_i32] = ACTIONS(4644), + [anon_sym_i64] = ACTIONS(4644), + [anon_sym_u8] = ACTIONS(4644), + [anon_sym_u16] = ACTIONS(4644), + [anon_sym_u32] = ACTIONS(4644), + [anon_sym_u64] = ACTIONS(4644), + [anon_sym_isize] = ACTIONS(4644), + [anon_sym_usize] = ACTIONS(4644), + [anon_sym_f32] = ACTIONS(4644), + [anon_sym_f64] = ACTIONS(4644), + [anon_sym_c_char] = ACTIONS(4644), + [anon_sym_c_schar] = ACTIONS(4644), + [anon_sym_c_uchar] = ACTIONS(4644), + [anon_sym_c_short] = ACTIONS(4644), + [anon_sym_c_ushort] = ACTIONS(4644), + [anon_sym_c_int] = ACTIONS(4644), + [anon_sym_c_uint] = ACTIONS(4644), + [anon_sym_c_long] = ACTIONS(4644), + [anon_sym_c_ulong] = ACTIONS(4644), + [anon_sym_c_longlong] = ACTIONS(4644), + [anon_sym_c_ulonglong] = ACTIONS(4644), + [anon_sym_c_float] = ACTIONS(4644), + [anon_sym_c_double] = ACTIONS(4644), + [anon_sym_c_longdouble] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4642), + [anon_sym_DASH_EQ] = ACTIONS(4642), + [anon_sym_STAR_EQ] = ACTIONS(4642), + [anon_sym_SLASH_EQ] = ACTIONS(4642), + [anon_sym_AMP_EQ] = ACTIONS(4642), + [anon_sym_PIPE_EQ] = ACTIONS(4642), + [anon_sym_xor_EQ] = ACTIONS(4642), + [anon_sym_LT_LT_EQ] = ACTIONS(4642), + [anon_sym_GT_GT_EQ] = ACTIONS(4642), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_yield] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_defer] = ACTIONS(4644), + [anon_sym_errdefer] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_expand] = ACTIONS(4644), + [anon_sym_for] = ACTIONS(4644), + [anon_sym_match] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4642), + [anon_sym_orelse] = ACTIONS(4644), + [anon_sym_or] = ACTIONS(4644), + [anon_sym_and] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_xor] = ACTIONS(4644), + [anon_sym_LT_LT] = ACTIONS(4644), + [anon_sym_GT_GT] = ACTIONS(4644), + [anon_sym_LT_LT_PIPE] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_catch] = ACTIONS(4644), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4642), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_unreachable] = ACTIONS(4644), + [anon_sym_undefined] = ACTIONS(4644), + [sym_sink] = ACTIONS(4644), + [sym_integer] = ACTIONS(4644), + [sym_float] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [sym_multiline_string] = ACTIONS(4642), + [sym_character] = ACTIONS(4642), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4642), + }, + [STATE(3300)] = { + [sym_identifier] = ACTIONS(4648), + [anon_sym_func] = ACTIONS(4648), + [anon_sym_c_func] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4646), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_struct_type_BANG] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_void] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym_type] = ACTIONS(4648), + [anon_sym_anyopaque] = ACTIONS(4648), + [anon_sym_bool] = ACTIONS(4648), + [anon_sym_int] = ACTIONS(4648), + [anon_sym_uint] = ACTIONS(4648), + [anon_sym_float] = ACTIONS(4648), + [anon_sym_range] = ACTIONS(4648), + [anon_sym_i8] = ACTIONS(4648), + [anon_sym_i16] = ACTIONS(4648), + [anon_sym_i32] = ACTIONS(4648), + [anon_sym_i64] = ACTIONS(4648), + [anon_sym_u8] = ACTIONS(4648), + [anon_sym_u16] = ACTIONS(4648), + [anon_sym_u32] = ACTIONS(4648), + [anon_sym_u64] = ACTIONS(4648), + [anon_sym_isize] = ACTIONS(4648), + [anon_sym_usize] = ACTIONS(4648), + [anon_sym_f32] = ACTIONS(4648), + [anon_sym_f64] = ACTIONS(4648), + [anon_sym_c_char] = ACTIONS(4648), + [anon_sym_c_schar] = ACTIONS(4648), + [anon_sym_c_uchar] = ACTIONS(4648), + [anon_sym_c_short] = ACTIONS(4648), + [anon_sym_c_ushort] = ACTIONS(4648), + [anon_sym_c_int] = ACTIONS(4648), + [anon_sym_c_uint] = ACTIONS(4648), + [anon_sym_c_long] = ACTIONS(4648), + [anon_sym_c_ulong] = ACTIONS(4648), + [anon_sym_c_longlong] = ACTIONS(4648), + [anon_sym_c_ulonglong] = ACTIONS(4648), + [anon_sym_c_float] = ACTIONS(4648), + [anon_sym_c_double] = ACTIONS(4648), + [anon_sym_c_longdouble] = ACTIONS(4648), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_AMP_EQ] = ACTIONS(4646), + [anon_sym_PIPE_EQ] = ACTIONS(4646), + [anon_sym_xor_EQ] = ACTIONS(4646), + [anon_sym_LT_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_GT_EQ] = ACTIONS(4646), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4646), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_yield] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_defer] = ACTIONS(4648), + [anon_sym_errdefer] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_expand] = ACTIONS(4648), + [anon_sym_for] = ACTIONS(4648), + [anon_sym_match] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4646), + [anon_sym_orelse] = ACTIONS(4648), + [anon_sym_or] = ACTIONS(4648), + [anon_sym_and] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_AMP] = ACTIONS(4648), + [anon_sym_xor] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [anon_sym_LT_LT_PIPE] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_catch] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4648), + [anon_sym_false] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4648), + [anon_sym_unreachable] = ACTIONS(4648), + [anon_sym_undefined] = ACTIONS(4648), + [sym_sink] = ACTIONS(4648), + [sym_integer] = ACTIONS(4648), + [sym_float] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym_multiline_string] = ACTIONS(4646), + [sym_character] = ACTIONS(4646), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4646), + }, + [STATE(3301)] = { + [sym_identifier] = ACTIONS(4652), + [anon_sym_func] = ACTIONS(4652), + [anon_sym_c_func] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_DOLLAR] = ACTIONS(4650), + [anon_sym_PIPE] = ACTIONS(4652), + [anon_sym_struct_type_BANG] = ACTIONS(4650), + [anon_sym_QMARK] = ACTIONS(4650), + [anon_sym_AT] = ACTIONS(4650), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_void] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym_type] = ACTIONS(4652), + [anon_sym_anyopaque] = ACTIONS(4652), + [anon_sym_bool] = ACTIONS(4652), + [anon_sym_int] = ACTIONS(4652), + [anon_sym_uint] = ACTIONS(4652), + [anon_sym_float] = ACTIONS(4652), + [anon_sym_range] = ACTIONS(4652), + [anon_sym_i8] = ACTIONS(4652), + [anon_sym_i16] = ACTIONS(4652), + [anon_sym_i32] = ACTIONS(4652), + [anon_sym_i64] = ACTIONS(4652), + [anon_sym_u8] = ACTIONS(4652), + [anon_sym_u16] = ACTIONS(4652), + [anon_sym_u32] = ACTIONS(4652), + [anon_sym_u64] = ACTIONS(4652), + [anon_sym_isize] = ACTIONS(4652), + [anon_sym_usize] = ACTIONS(4652), + [anon_sym_f32] = ACTIONS(4652), + [anon_sym_f64] = ACTIONS(4652), + [anon_sym_c_char] = ACTIONS(4652), + [anon_sym_c_schar] = ACTIONS(4652), + [anon_sym_c_uchar] = ACTIONS(4652), + [anon_sym_c_short] = ACTIONS(4652), + [anon_sym_c_ushort] = ACTIONS(4652), + [anon_sym_c_int] = ACTIONS(4652), + [anon_sym_c_uint] = ACTIONS(4652), + [anon_sym_c_long] = ACTIONS(4652), + [anon_sym_c_ulong] = ACTIONS(4652), + [anon_sym_c_longlong] = ACTIONS(4652), + [anon_sym_c_ulonglong] = ACTIONS(4652), + [anon_sym_c_float] = ACTIONS(4652), + [anon_sym_c_double] = ACTIONS(4652), + [anon_sym_c_longdouble] = ACTIONS(4652), + [anon_sym_PLUS_EQ] = ACTIONS(4650), + [anon_sym_DASH_EQ] = ACTIONS(4650), + [anon_sym_STAR_EQ] = ACTIONS(4650), + [anon_sym_SLASH_EQ] = ACTIONS(4650), + [anon_sym_AMP_EQ] = ACTIONS(4650), + [anon_sym_PIPE_EQ] = ACTIONS(4650), + [anon_sym_xor_EQ] = ACTIONS(4650), + [anon_sym_LT_LT_EQ] = ACTIONS(4650), + [anon_sym_GT_GT_EQ] = ACTIONS(4650), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4650), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_yield] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_defer] = ACTIONS(4652), + [anon_sym_errdefer] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_expand] = ACTIONS(4652), + [anon_sym_for] = ACTIONS(4652), + [anon_sym_match] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4650), + [anon_sym_orelse] = ACTIONS(4652), + [anon_sym_or] = ACTIONS(4652), + [anon_sym_and] = ACTIONS(4652), + [anon_sym_EQ_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4650), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_AMP] = ACTIONS(4652), + [anon_sym_xor] = ACTIONS(4652), + [anon_sym_LT_LT] = ACTIONS(4652), + [anon_sym_GT_GT] = ACTIONS(4652), + [anon_sym_LT_LT_PIPE] = ACTIONS(4652), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_catch] = ACTIONS(4652), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_unreachable] = ACTIONS(4652), + [anon_sym_undefined] = ACTIONS(4652), + [sym_sink] = ACTIONS(4652), + [sym_integer] = ACTIONS(4652), + [sym_float] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym_multiline_string] = ACTIONS(4650), + [sym_character] = ACTIONS(4650), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4650), + }, + [STATE(3302)] = { + [sym_identifier] = ACTIONS(4656), + [anon_sym_func] = ACTIONS(4656), + [anon_sym_c_func] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_DOLLAR] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_struct_type_BANG] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4654), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_void] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym_type] = ACTIONS(4656), + [anon_sym_anyopaque] = ACTIONS(4656), + [anon_sym_bool] = ACTIONS(4656), + [anon_sym_int] = ACTIONS(4656), + [anon_sym_uint] = ACTIONS(4656), + [anon_sym_float] = ACTIONS(4656), + [anon_sym_range] = ACTIONS(4656), + [anon_sym_i8] = ACTIONS(4656), + [anon_sym_i16] = ACTIONS(4656), + [anon_sym_i32] = ACTIONS(4656), + [anon_sym_i64] = ACTIONS(4656), + [anon_sym_u8] = ACTIONS(4656), + [anon_sym_u16] = ACTIONS(4656), + [anon_sym_u32] = ACTIONS(4656), + [anon_sym_u64] = ACTIONS(4656), + [anon_sym_isize] = ACTIONS(4656), + [anon_sym_usize] = ACTIONS(4656), + [anon_sym_f32] = ACTIONS(4656), + [anon_sym_f64] = ACTIONS(4656), + [anon_sym_c_char] = ACTIONS(4656), + [anon_sym_c_schar] = ACTIONS(4656), + [anon_sym_c_uchar] = ACTIONS(4656), + [anon_sym_c_short] = ACTIONS(4656), + [anon_sym_c_ushort] = ACTIONS(4656), + [anon_sym_c_int] = ACTIONS(4656), + [anon_sym_c_uint] = ACTIONS(4656), + [anon_sym_c_long] = ACTIONS(4656), + [anon_sym_c_ulong] = ACTIONS(4656), + [anon_sym_c_longlong] = ACTIONS(4656), + [anon_sym_c_ulonglong] = ACTIONS(4656), + [anon_sym_c_float] = ACTIONS(4656), + [anon_sym_c_double] = ACTIONS(4656), + [anon_sym_c_longdouble] = ACTIONS(4656), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_AMP_EQ] = ACTIONS(4654), + [anon_sym_PIPE_EQ] = ACTIONS(4654), + [anon_sym_xor_EQ] = ACTIONS(4654), + [anon_sym_LT_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_GT_EQ] = ACTIONS(4654), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4654), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_yield] = ACTIONS(4656), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_continue] = ACTIONS(4656), + [anon_sym_defer] = ACTIONS(4656), + [anon_sym_errdefer] = ACTIONS(4656), + [anon_sym_if] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_expand] = ACTIONS(4656), + [anon_sym_for] = ACTIONS(4656), + [anon_sym_match] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4656), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4654), + [anon_sym_orelse] = ACTIONS(4656), + [anon_sym_or] = ACTIONS(4656), + [anon_sym_and] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_AMP] = ACTIONS(4656), + [anon_sym_xor] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT_PIPE] = ACTIONS(4656), + [anon_sym_PLUS] = ACTIONS(4656), + [anon_sym_SLASH] = ACTIONS(4656), + [anon_sym_catch] = ACTIONS(4656), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_try] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4656), + [anon_sym_false] = ACTIONS(4656), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_unreachable] = ACTIONS(4656), + [anon_sym_undefined] = ACTIONS(4656), + [sym_sink] = ACTIONS(4656), + [sym_integer] = ACTIONS(4656), + [sym_float] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym_multiline_string] = ACTIONS(4654), + [sym_character] = ACTIONS(4654), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4654), + }, + [STATE(3303)] = { + [sym_identifier] = ACTIONS(4660), + [anon_sym_func] = ACTIONS(4660), + [anon_sym_c_func] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4658), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_COMMA] = ACTIONS(4658), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_DOLLAR] = ACTIONS(4658), + [anon_sym_PIPE] = ACTIONS(4660), + [anon_sym_struct_type_BANG] = ACTIONS(4658), + [anon_sym_QMARK] = ACTIONS(4658), + [anon_sym_AT] = ACTIONS(4658), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_void] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym_type] = ACTIONS(4660), + [anon_sym_anyopaque] = ACTIONS(4660), + [anon_sym_bool] = ACTIONS(4660), + [anon_sym_int] = ACTIONS(4660), + [anon_sym_uint] = ACTIONS(4660), + [anon_sym_float] = ACTIONS(4660), + [anon_sym_range] = ACTIONS(4660), + [anon_sym_i8] = ACTIONS(4660), + [anon_sym_i16] = ACTIONS(4660), + [anon_sym_i32] = ACTIONS(4660), + [anon_sym_i64] = ACTIONS(4660), + [anon_sym_u8] = ACTIONS(4660), + [anon_sym_u16] = ACTIONS(4660), + [anon_sym_u32] = ACTIONS(4660), + [anon_sym_u64] = ACTIONS(4660), + [anon_sym_isize] = ACTIONS(4660), + [anon_sym_usize] = ACTIONS(4660), + [anon_sym_f32] = ACTIONS(4660), + [anon_sym_f64] = ACTIONS(4660), + [anon_sym_c_char] = ACTIONS(4660), + [anon_sym_c_schar] = ACTIONS(4660), + [anon_sym_c_uchar] = ACTIONS(4660), + [anon_sym_c_short] = ACTIONS(4660), + [anon_sym_c_ushort] = ACTIONS(4660), + [anon_sym_c_int] = ACTIONS(4660), + [anon_sym_c_uint] = ACTIONS(4660), + [anon_sym_c_long] = ACTIONS(4660), + [anon_sym_c_ulong] = ACTIONS(4660), + [anon_sym_c_longlong] = ACTIONS(4660), + [anon_sym_c_ulonglong] = ACTIONS(4660), + [anon_sym_c_float] = ACTIONS(4660), + [anon_sym_c_double] = ACTIONS(4660), + [anon_sym_c_longdouble] = ACTIONS(4660), + [anon_sym_PLUS_EQ] = ACTIONS(4658), + [anon_sym_DASH_EQ] = ACTIONS(4658), + [anon_sym_STAR_EQ] = ACTIONS(4658), + [anon_sym_SLASH_EQ] = ACTIONS(4658), + [anon_sym_AMP_EQ] = ACTIONS(4658), + [anon_sym_PIPE_EQ] = ACTIONS(4658), + [anon_sym_xor_EQ] = ACTIONS(4658), + [anon_sym_LT_LT_EQ] = ACTIONS(4658), + [anon_sym_GT_GT_EQ] = ACTIONS(4658), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4658), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_defer] = ACTIONS(4660), + [anon_sym_errdefer] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_expand] = ACTIONS(4660), + [anon_sym_for] = ACTIONS(4660), + [anon_sym_match] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4658), + [anon_sym_orelse] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_EQ_EQ] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(4658), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4658), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4658), + [anon_sym_AMP] = ACTIONS(4660), + [anon_sym_xor] = ACTIONS(4660), + [anon_sym_LT_LT] = ACTIONS(4660), + [anon_sym_GT_GT] = ACTIONS(4660), + [anon_sym_LT_LT_PIPE] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_catch] = ACTIONS(4660), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_CARET] = ACTIONS(4658), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_unreachable] = ACTIONS(4660), + [anon_sym_undefined] = ACTIONS(4660), + [sym_sink] = ACTIONS(4660), + [sym_integer] = ACTIONS(4660), + [sym_float] = ACTIONS(4658), + [anon_sym_DQUOTE] = ACTIONS(4658), + [sym_multiline_string] = ACTIONS(4658), + [sym_character] = ACTIONS(4658), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4658), + }, + [STATE(3304)] = { + [sym_identifier] = ACTIONS(4668), + [anon_sym_func] = ACTIONS(4668), + [anon_sym_c_func] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4668), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_LPAREN] = ACTIONS(4666), + [anon_sym_LBRACE] = ACTIONS(4666), + [anon_sym_COMMA] = ACTIONS(4666), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4668), + [anon_sym_DOLLAR] = ACTIONS(4666), + [anon_sym_PIPE] = ACTIONS(4668), + [anon_sym_struct_type_BANG] = ACTIONS(4666), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4666), + [anon_sym_STAR] = ACTIONS(4668), + [anon_sym_LBRACK] = ACTIONS(4666), + [anon_sym_void] = ACTIONS(4668), + [anon_sym_noreturn] = ACTIONS(4668), + [anon_sym_type] = ACTIONS(4668), + [anon_sym_anyopaque] = ACTIONS(4668), + [anon_sym_bool] = ACTIONS(4668), + [anon_sym_int] = ACTIONS(4668), + [anon_sym_uint] = ACTIONS(4668), + [anon_sym_float] = ACTIONS(4668), + [anon_sym_range] = ACTIONS(4668), + [anon_sym_i8] = ACTIONS(4668), + [anon_sym_i16] = ACTIONS(4668), + [anon_sym_i32] = ACTIONS(4668), + [anon_sym_i64] = ACTIONS(4668), + [anon_sym_u8] = ACTIONS(4668), + [anon_sym_u16] = ACTIONS(4668), + [anon_sym_u32] = ACTIONS(4668), + [anon_sym_u64] = ACTIONS(4668), + [anon_sym_isize] = ACTIONS(4668), + [anon_sym_usize] = ACTIONS(4668), + [anon_sym_f32] = ACTIONS(4668), + [anon_sym_f64] = ACTIONS(4668), + [anon_sym_c_char] = ACTIONS(4668), + [anon_sym_c_schar] = ACTIONS(4668), + [anon_sym_c_uchar] = ACTIONS(4668), + [anon_sym_c_short] = ACTIONS(4668), + [anon_sym_c_ushort] = ACTIONS(4668), + [anon_sym_c_int] = ACTIONS(4668), + [anon_sym_c_uint] = ACTIONS(4668), + [anon_sym_c_long] = ACTIONS(4668), + [anon_sym_c_ulong] = ACTIONS(4668), + [anon_sym_c_longlong] = ACTIONS(4668), + [anon_sym_c_ulonglong] = ACTIONS(4668), + [anon_sym_c_float] = ACTIONS(4668), + [anon_sym_c_double] = ACTIONS(4668), + [anon_sym_c_longdouble] = ACTIONS(4668), + [anon_sym_PLUS_EQ] = ACTIONS(4666), + [anon_sym_DASH_EQ] = ACTIONS(4666), + [anon_sym_STAR_EQ] = ACTIONS(4666), + [anon_sym_SLASH_EQ] = ACTIONS(4666), + [anon_sym_AMP_EQ] = ACTIONS(4666), + [anon_sym_PIPE_EQ] = ACTIONS(4666), + [anon_sym_xor_EQ] = ACTIONS(4666), + [anon_sym_LT_LT_EQ] = ACTIONS(4666), + [anon_sym_GT_GT_EQ] = ACTIONS(4666), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4666), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_yield] = ACTIONS(4668), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_continue] = ACTIONS(4668), + [anon_sym_defer] = ACTIONS(4668), + [anon_sym_errdefer] = ACTIONS(4668), + [anon_sym_if] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_while] = ACTIONS(4668), + [anon_sym_expand] = ACTIONS(4668), + [anon_sym_for] = ACTIONS(4668), + [anon_sym_match] = ACTIONS(4668), + [anon_sym_DOT_DOT] = ACTIONS(4668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4666), + [anon_sym_orelse] = ACTIONS(4668), + [anon_sym_or] = ACTIONS(4668), + [anon_sym_and] = ACTIONS(4668), + [anon_sym_EQ_EQ] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(4666), + [anon_sym_LT] = ACTIONS(4668), + [anon_sym_LT_EQ] = ACTIONS(4666), + [anon_sym_GT] = ACTIONS(4668), + [anon_sym_GT_EQ] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4668), + [anon_sym_xor] = ACTIONS(4668), + [anon_sym_LT_LT] = ACTIONS(4668), + [anon_sym_GT_GT] = ACTIONS(4668), + [anon_sym_LT_LT_PIPE] = ACTIONS(4668), + [anon_sym_PLUS] = ACTIONS(4668), + [anon_sym_SLASH] = ACTIONS(4668), + [anon_sym_catch] = ACTIONS(4668), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_try] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_CARET] = ACTIONS(4666), + [anon_sym_true] = ACTIONS(4668), + [anon_sym_false] = ACTIONS(4668), + [anon_sym_null] = ACTIONS(4668), + [anon_sym_unreachable] = ACTIONS(4668), + [anon_sym_undefined] = ACTIONS(4668), + [sym_sink] = ACTIONS(4668), + [sym_integer] = ACTIONS(4668), + [sym_float] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(4666), + [sym_multiline_string] = ACTIONS(4666), + [sym_character] = ACTIONS(4666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4666), + }, + [STATE(3305)] = { + [sym_identifier] = ACTIONS(4672), + [anon_sym_func] = ACTIONS(4672), + [anon_sym_c_func] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_struct] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_DOLLAR] = ACTIONS(4670), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_struct_type_BANG] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_void] = ACTIONS(4672), + [anon_sym_noreturn] = ACTIONS(4672), + [anon_sym_type] = ACTIONS(4672), + [anon_sym_anyopaque] = ACTIONS(4672), + [anon_sym_bool] = ACTIONS(4672), + [anon_sym_int] = ACTIONS(4672), + [anon_sym_uint] = ACTIONS(4672), + [anon_sym_float] = ACTIONS(4672), + [anon_sym_range] = ACTIONS(4672), + [anon_sym_i8] = ACTIONS(4672), + [anon_sym_i16] = ACTIONS(4672), + [anon_sym_i32] = ACTIONS(4672), + [anon_sym_i64] = ACTIONS(4672), + [anon_sym_u8] = ACTIONS(4672), + [anon_sym_u16] = ACTIONS(4672), + [anon_sym_u32] = ACTIONS(4672), + [anon_sym_u64] = ACTIONS(4672), + [anon_sym_isize] = ACTIONS(4672), + [anon_sym_usize] = ACTIONS(4672), + [anon_sym_f32] = ACTIONS(4672), + [anon_sym_f64] = ACTIONS(4672), + [anon_sym_c_char] = ACTIONS(4672), + [anon_sym_c_schar] = ACTIONS(4672), + [anon_sym_c_uchar] = ACTIONS(4672), + [anon_sym_c_short] = ACTIONS(4672), + [anon_sym_c_ushort] = ACTIONS(4672), + [anon_sym_c_int] = ACTIONS(4672), + [anon_sym_c_uint] = ACTIONS(4672), + [anon_sym_c_long] = ACTIONS(4672), + [anon_sym_c_ulong] = ACTIONS(4672), + [anon_sym_c_longlong] = ACTIONS(4672), + [anon_sym_c_ulonglong] = ACTIONS(4672), + [anon_sym_c_float] = ACTIONS(4672), + [anon_sym_c_double] = ACTIONS(4672), + [anon_sym_c_longdouble] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_AMP_EQ] = ACTIONS(4670), + [anon_sym_PIPE_EQ] = ACTIONS(4670), + [anon_sym_xor_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_GT_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_yield] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_defer] = ACTIONS(4672), + [anon_sym_errdefer] = ACTIONS(4672), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_expand] = ACTIONS(4672), + [anon_sym_for] = ACTIONS(4672), + [anon_sym_match] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4670), + [anon_sym_orelse] = ACTIONS(4672), + [anon_sym_or] = ACTIONS(4672), + [anon_sym_and] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_AMP] = ACTIONS(4672), + [anon_sym_xor] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [anon_sym_LT_LT_PIPE] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_catch] = ACTIONS(4672), + [anon_sym_TILDE] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4670), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4672), + [anon_sym_unreachable] = ACTIONS(4672), + [anon_sym_undefined] = ACTIONS(4672), + [sym_sink] = ACTIONS(4672), + [sym_integer] = ACTIONS(4672), + [sym_float] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(4670), + [sym_multiline_string] = ACTIONS(4670), + [sym_character] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4670), + }, + [STATE(3306)] = { + [sym_identifier] = ACTIONS(4678), + [anon_sym_func] = ACTIONS(4678), + [anon_sym_c_func] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_struct] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_DOLLAR] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4678), + [anon_sym_struct_type_BANG] = ACTIONS(4676), + [anon_sym_QMARK] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_void] = ACTIONS(4678), + [anon_sym_noreturn] = ACTIONS(4678), + [anon_sym_type] = ACTIONS(4678), + [anon_sym_anyopaque] = ACTIONS(4678), + [anon_sym_bool] = ACTIONS(4678), + [anon_sym_int] = ACTIONS(4678), + [anon_sym_uint] = ACTIONS(4678), + [anon_sym_float] = ACTIONS(4678), + [anon_sym_range] = ACTIONS(4678), + [anon_sym_i8] = ACTIONS(4678), + [anon_sym_i16] = ACTIONS(4678), + [anon_sym_i32] = ACTIONS(4678), + [anon_sym_i64] = ACTIONS(4678), + [anon_sym_u8] = ACTIONS(4678), + [anon_sym_u16] = ACTIONS(4678), + [anon_sym_u32] = ACTIONS(4678), + [anon_sym_u64] = ACTIONS(4678), + [anon_sym_isize] = ACTIONS(4678), + [anon_sym_usize] = ACTIONS(4678), + [anon_sym_f32] = ACTIONS(4678), + [anon_sym_f64] = ACTIONS(4678), + [anon_sym_c_char] = ACTIONS(4678), + [anon_sym_c_schar] = ACTIONS(4678), + [anon_sym_c_uchar] = ACTIONS(4678), + [anon_sym_c_short] = ACTIONS(4678), + [anon_sym_c_ushort] = ACTIONS(4678), + [anon_sym_c_int] = ACTIONS(4678), + [anon_sym_c_uint] = ACTIONS(4678), + [anon_sym_c_long] = ACTIONS(4678), + [anon_sym_c_ulong] = ACTIONS(4678), + [anon_sym_c_longlong] = ACTIONS(4678), + [anon_sym_c_ulonglong] = ACTIONS(4678), + [anon_sym_c_float] = ACTIONS(4678), + [anon_sym_c_double] = ACTIONS(4678), + [anon_sym_c_longdouble] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_AMP_EQ] = ACTIONS(4676), + [anon_sym_PIPE_EQ] = ACTIONS(4676), + [anon_sym_xor_EQ] = ACTIONS(4676), + [anon_sym_LT_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_GT_EQ] = ACTIONS(4676), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_yield] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_defer] = ACTIONS(4678), + [anon_sym_errdefer] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_while] = ACTIONS(4678), + [anon_sym_expand] = ACTIONS(4678), + [anon_sym_for] = ACTIONS(4678), + [anon_sym_match] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4676), + [anon_sym_orelse] = ACTIONS(4678), + [anon_sym_or] = ACTIONS(4678), + [anon_sym_and] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4678), + [anon_sym_xor] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT_PIPE] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_catch] = ACTIONS(4678), + [anon_sym_TILDE] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_unreachable] = ACTIONS(4678), + [anon_sym_undefined] = ACTIONS(4678), + [sym_sink] = ACTIONS(4678), + [sym_integer] = ACTIONS(4678), + [sym_float] = ACTIONS(4676), + [anon_sym_DQUOTE] = ACTIONS(4676), + [sym_multiline_string] = ACTIONS(4676), + [sym_character] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4676), + }, + [STATE(3307)] = { + [sym_identifier] = ACTIONS(5318), + [anon_sym_func] = ACTIONS(5318), + [anon_sym_c_func] = ACTIONS(5318), + [anon_sym_BANG] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_struct] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_LBRACE] = ACTIONS(5316), + [anon_sym_COMMA] = ACTIONS(5316), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_struct_type_BANG] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_AT] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5316), + [anon_sym_void] = ACTIONS(5318), + [anon_sym_noreturn] = ACTIONS(5318), + [anon_sym_type] = ACTIONS(5318), + [anon_sym_anyopaque] = ACTIONS(5318), + [anon_sym_bool] = ACTIONS(5318), + [anon_sym_int] = ACTIONS(5318), + [anon_sym_uint] = ACTIONS(5318), + [anon_sym_float] = ACTIONS(5318), + [anon_sym_range] = ACTIONS(5318), + [anon_sym_i8] = ACTIONS(5318), + [anon_sym_i16] = ACTIONS(5318), + [anon_sym_i32] = ACTIONS(5318), + [anon_sym_i64] = ACTIONS(5318), + [anon_sym_u8] = ACTIONS(5318), + [anon_sym_u16] = ACTIONS(5318), + [anon_sym_u32] = ACTIONS(5318), + [anon_sym_u64] = ACTIONS(5318), + [anon_sym_isize] = ACTIONS(5318), + [anon_sym_usize] = ACTIONS(5318), + [anon_sym_f32] = ACTIONS(5318), + [anon_sym_f64] = ACTIONS(5318), + [anon_sym_c_char] = ACTIONS(5318), + [anon_sym_c_schar] = ACTIONS(5318), + [anon_sym_c_uchar] = ACTIONS(5318), + [anon_sym_c_short] = ACTIONS(5318), + [anon_sym_c_ushort] = ACTIONS(5318), + [anon_sym_c_int] = ACTIONS(5318), + [anon_sym_c_uint] = ACTIONS(5318), + [anon_sym_c_long] = ACTIONS(5318), + [anon_sym_c_ulong] = ACTIONS(5318), + [anon_sym_c_longlong] = ACTIONS(5318), + [anon_sym_c_ulonglong] = ACTIONS(5318), + [anon_sym_c_float] = ACTIONS(5318), + [anon_sym_c_double] = ACTIONS(5318), + [anon_sym_c_longdouble] = ACTIONS(5318), + [anon_sym_PLUS_EQ] = ACTIONS(5316), + [anon_sym_DASH_EQ] = ACTIONS(5316), + [anon_sym_STAR_EQ] = ACTIONS(5316), + [anon_sym_SLASH_EQ] = ACTIONS(5316), + [anon_sym_AMP_EQ] = ACTIONS(5316), + [anon_sym_PIPE_EQ] = ACTIONS(5316), + [anon_sym_xor_EQ] = ACTIONS(5316), + [anon_sym_LT_LT_EQ] = ACTIONS(5316), + [anon_sym_GT_GT_EQ] = ACTIONS(5316), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5316), + [anon_sym_return] = ACTIONS(5318), + [anon_sym_yield] = ACTIONS(5318), + [anon_sym_break] = ACTIONS(5318), + [anon_sym_continue] = ACTIONS(5318), + [anon_sym_defer] = ACTIONS(5318), + [anon_sym_errdefer] = ACTIONS(5318), + [anon_sym_if] = ACTIONS(5318), + [anon_sym_else] = ACTIONS(5318), + [anon_sym_while] = ACTIONS(5318), + [anon_sym_expand] = ACTIONS(5318), + [anon_sym_for] = ACTIONS(5318), + [anon_sym_match] = ACTIONS(5318), + [anon_sym_DOT_DOT] = ACTIONS(5318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5316), + [anon_sym_orelse] = ACTIONS(5318), + [anon_sym_or] = ACTIONS(5318), + [anon_sym_and] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5316), + [anon_sym_BANG_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_LT_EQ] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_EQ] = ACTIONS(5316), + [anon_sym_AMP] = ACTIONS(5318), + [anon_sym_xor] = ACTIONS(5318), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(5318), + [anon_sym_LT_LT_PIPE] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym_SLASH] = ACTIONS(5318), + [anon_sym_catch] = ACTIONS(5318), + [anon_sym_TILDE] = ACTIONS(5316), + [anon_sym_try] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym_true] = ACTIONS(5318), + [anon_sym_false] = ACTIONS(5318), + [anon_sym_null] = ACTIONS(5318), + [anon_sym_unreachable] = ACTIONS(5318), + [anon_sym_undefined] = ACTIONS(5318), + [sym_sink] = ACTIONS(5318), + [sym_integer] = ACTIONS(5318), + [sym_float] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [sym_multiline_string] = ACTIONS(5316), + [sym_character] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5316), + }, + [STATE(3308)] = { + [sym_identifier] = ACTIONS(5322), + [anon_sym_func] = ACTIONS(5322), + [anon_sym_c_func] = ACTIONS(5322), + [anon_sym_BANG] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5320), + [anon_sym_LBRACE] = ACTIONS(5320), + [anon_sym_COMMA] = ACTIONS(5320), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5322), + [anon_sym_struct_type_BANG] = ACTIONS(5320), + [anon_sym_QMARK] = ACTIONS(5320), + [anon_sym_AT] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5320), + [anon_sym_void] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_type] = ACTIONS(5322), + [anon_sym_anyopaque] = ACTIONS(5322), + [anon_sym_bool] = ACTIONS(5322), + [anon_sym_int] = ACTIONS(5322), + [anon_sym_uint] = ACTIONS(5322), + [anon_sym_float] = ACTIONS(5322), + [anon_sym_range] = ACTIONS(5322), + [anon_sym_i8] = ACTIONS(5322), + [anon_sym_i16] = ACTIONS(5322), + [anon_sym_i32] = ACTIONS(5322), + [anon_sym_i64] = ACTIONS(5322), + [anon_sym_u8] = ACTIONS(5322), + [anon_sym_u16] = ACTIONS(5322), + [anon_sym_u32] = ACTIONS(5322), + [anon_sym_u64] = ACTIONS(5322), + [anon_sym_isize] = ACTIONS(5322), + [anon_sym_usize] = ACTIONS(5322), + [anon_sym_f32] = ACTIONS(5322), + [anon_sym_f64] = ACTIONS(5322), + [anon_sym_c_char] = ACTIONS(5322), + [anon_sym_c_schar] = ACTIONS(5322), + [anon_sym_c_uchar] = ACTIONS(5322), + [anon_sym_c_short] = ACTIONS(5322), + [anon_sym_c_ushort] = ACTIONS(5322), + [anon_sym_c_int] = ACTIONS(5322), + [anon_sym_c_uint] = ACTIONS(5322), + [anon_sym_c_long] = ACTIONS(5322), + [anon_sym_c_ulong] = ACTIONS(5322), + [anon_sym_c_longlong] = ACTIONS(5322), + [anon_sym_c_ulonglong] = ACTIONS(5322), + [anon_sym_c_float] = ACTIONS(5322), + [anon_sym_c_double] = ACTIONS(5322), + [anon_sym_c_longdouble] = ACTIONS(5322), + [anon_sym_PLUS_EQ] = ACTIONS(5320), + [anon_sym_DASH_EQ] = ACTIONS(5320), + [anon_sym_STAR_EQ] = ACTIONS(5320), + [anon_sym_SLASH_EQ] = ACTIONS(5320), + [anon_sym_AMP_EQ] = ACTIONS(5320), + [anon_sym_PIPE_EQ] = ACTIONS(5320), + [anon_sym_xor_EQ] = ACTIONS(5320), + [anon_sym_LT_LT_EQ] = ACTIONS(5320), + [anon_sym_GT_GT_EQ] = ACTIONS(5320), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5320), + [anon_sym_return] = ACTIONS(5322), + [anon_sym_yield] = ACTIONS(5322), + [anon_sym_break] = ACTIONS(5322), + [anon_sym_continue] = ACTIONS(5322), + [anon_sym_defer] = ACTIONS(5322), + [anon_sym_errdefer] = ACTIONS(5322), + [anon_sym_if] = ACTIONS(5322), + [anon_sym_else] = ACTIONS(5322), + [anon_sym_while] = ACTIONS(5322), + [anon_sym_expand] = ACTIONS(5322), + [anon_sym_for] = ACTIONS(5322), + [anon_sym_match] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5320), + [anon_sym_orelse] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5320), + [anon_sym_BANG_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(5322), + [anon_sym_xor] = ACTIONS(5322), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5322), + [anon_sym_LT_LT_PIPE] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5322), + [anon_sym_catch] = ACTIONS(5322), + [anon_sym_TILDE] = ACTIONS(5320), + [anon_sym_try] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym_true] = ACTIONS(5322), + [anon_sym_false] = ACTIONS(5322), + [anon_sym_null] = ACTIONS(5322), + [anon_sym_unreachable] = ACTIONS(5322), + [anon_sym_undefined] = ACTIONS(5322), + [sym_sink] = ACTIONS(5322), + [sym_integer] = ACTIONS(5322), + [sym_float] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [sym_multiline_string] = ACTIONS(5320), + [sym_character] = ACTIONS(5320), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5320), + }, + [STATE(3309)] = { + [sym_identifier] = ACTIONS(4682), + [anon_sym_func] = ACTIONS(4682), + [anon_sym_c_func] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_struct] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_COMMA] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_DOLLAR] = ACTIONS(4680), + [anon_sym_PIPE] = ACTIONS(4682), + [anon_sym_struct_type_BANG] = ACTIONS(4680), + [anon_sym_QMARK] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_void] = ACTIONS(4682), + [anon_sym_noreturn] = ACTIONS(4682), + [anon_sym_type] = ACTIONS(4682), + [anon_sym_anyopaque] = ACTIONS(4682), + [anon_sym_bool] = ACTIONS(4682), + [anon_sym_int] = ACTIONS(4682), + [anon_sym_uint] = ACTIONS(4682), + [anon_sym_float] = ACTIONS(4682), + [anon_sym_range] = ACTIONS(4682), + [anon_sym_i8] = ACTIONS(4682), + [anon_sym_i16] = ACTIONS(4682), + [anon_sym_i32] = ACTIONS(4682), + [anon_sym_i64] = ACTIONS(4682), + [anon_sym_u8] = ACTIONS(4682), + [anon_sym_u16] = ACTIONS(4682), + [anon_sym_u32] = ACTIONS(4682), + [anon_sym_u64] = ACTIONS(4682), + [anon_sym_isize] = ACTIONS(4682), + [anon_sym_usize] = ACTIONS(4682), + [anon_sym_f32] = ACTIONS(4682), + [anon_sym_f64] = ACTIONS(4682), + [anon_sym_c_char] = ACTIONS(4682), + [anon_sym_c_schar] = ACTIONS(4682), + [anon_sym_c_uchar] = ACTIONS(4682), + [anon_sym_c_short] = ACTIONS(4682), + [anon_sym_c_ushort] = ACTIONS(4682), + [anon_sym_c_int] = ACTIONS(4682), + [anon_sym_c_uint] = ACTIONS(4682), + [anon_sym_c_long] = ACTIONS(4682), + [anon_sym_c_ulong] = ACTIONS(4682), + [anon_sym_c_longlong] = ACTIONS(4682), + [anon_sym_c_ulonglong] = ACTIONS(4682), + [anon_sym_c_float] = ACTIONS(4682), + [anon_sym_c_double] = ACTIONS(4682), + [anon_sym_c_longdouble] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4680), + [anon_sym_DASH_EQ] = ACTIONS(4680), + [anon_sym_STAR_EQ] = ACTIONS(4680), + [anon_sym_SLASH_EQ] = ACTIONS(4680), + [anon_sym_AMP_EQ] = ACTIONS(4680), + [anon_sym_PIPE_EQ] = ACTIONS(4680), + [anon_sym_xor_EQ] = ACTIONS(4680), + [anon_sym_LT_LT_EQ] = ACTIONS(4680), + [anon_sym_GT_GT_EQ] = ACTIONS(4680), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_yield] = ACTIONS(4682), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_defer] = ACTIONS(4682), + [anon_sym_errdefer] = ACTIONS(4682), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_while] = ACTIONS(4682), + [anon_sym_expand] = ACTIONS(4682), + [anon_sym_for] = ACTIONS(4682), + [anon_sym_match] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4680), + [anon_sym_orelse] = ACTIONS(4682), + [anon_sym_or] = ACTIONS(4682), + [anon_sym_and] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4680), + [anon_sym_AMP] = ACTIONS(4682), + [anon_sym_xor] = ACTIONS(4682), + [anon_sym_LT_LT] = ACTIONS(4682), + [anon_sym_GT_GT] = ACTIONS(4682), + [anon_sym_LT_LT_PIPE] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_catch] = ACTIONS(4682), + [anon_sym_TILDE] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_CARET] = ACTIONS(4680), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(4682), + [anon_sym_unreachable] = ACTIONS(4682), + [anon_sym_undefined] = ACTIONS(4682), + [sym_sink] = ACTIONS(4682), + [sym_integer] = ACTIONS(4682), + [sym_float] = ACTIONS(4680), + [anon_sym_DQUOTE] = ACTIONS(4680), + [sym_multiline_string] = ACTIONS(4680), + [sym_character] = ACTIONS(4680), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4680), + }, + [STATE(3310)] = { + [sym_identifier] = ACTIONS(5326), + [anon_sym_func] = ACTIONS(5326), + [anon_sym_c_func] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_struct] = ACTIONS(5326), + [anon_sym_LPAREN] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5324), + [anon_sym_COMMA] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5326), + [anon_sym_struct_type_BANG] = ACTIONS(5324), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_AT] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym_void] = ACTIONS(5326), + [anon_sym_noreturn] = ACTIONS(5326), + [anon_sym_type] = ACTIONS(5326), + [anon_sym_anyopaque] = ACTIONS(5326), + [anon_sym_bool] = ACTIONS(5326), + [anon_sym_int] = ACTIONS(5326), + [anon_sym_uint] = ACTIONS(5326), + [anon_sym_float] = ACTIONS(5326), + [anon_sym_range] = ACTIONS(5326), + [anon_sym_i8] = ACTIONS(5326), + [anon_sym_i16] = ACTIONS(5326), + [anon_sym_i32] = ACTIONS(5326), + [anon_sym_i64] = ACTIONS(5326), + [anon_sym_u8] = ACTIONS(5326), + [anon_sym_u16] = ACTIONS(5326), + [anon_sym_u32] = ACTIONS(5326), + [anon_sym_u64] = ACTIONS(5326), + [anon_sym_isize] = ACTIONS(5326), + [anon_sym_usize] = ACTIONS(5326), + [anon_sym_f32] = ACTIONS(5326), + [anon_sym_f64] = ACTIONS(5326), + [anon_sym_c_char] = ACTIONS(5326), + [anon_sym_c_schar] = ACTIONS(5326), + [anon_sym_c_uchar] = ACTIONS(5326), + [anon_sym_c_short] = ACTIONS(5326), + [anon_sym_c_ushort] = ACTIONS(5326), + [anon_sym_c_int] = ACTIONS(5326), + [anon_sym_c_uint] = ACTIONS(5326), + [anon_sym_c_long] = ACTIONS(5326), + [anon_sym_c_ulong] = ACTIONS(5326), + [anon_sym_c_longlong] = ACTIONS(5326), + [anon_sym_c_ulonglong] = ACTIONS(5326), + [anon_sym_c_float] = ACTIONS(5326), + [anon_sym_c_double] = ACTIONS(5326), + [anon_sym_c_longdouble] = ACTIONS(5326), + [anon_sym_PLUS_EQ] = ACTIONS(5324), + [anon_sym_DASH_EQ] = ACTIONS(5324), + [anon_sym_STAR_EQ] = ACTIONS(5324), + [anon_sym_SLASH_EQ] = ACTIONS(5324), + [anon_sym_AMP_EQ] = ACTIONS(5324), + [anon_sym_PIPE_EQ] = ACTIONS(5324), + [anon_sym_xor_EQ] = ACTIONS(5324), + [anon_sym_LT_LT_EQ] = ACTIONS(5324), + [anon_sym_GT_GT_EQ] = ACTIONS(5324), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5324), + [anon_sym_return] = ACTIONS(5326), + [anon_sym_yield] = ACTIONS(5326), + [anon_sym_break] = ACTIONS(5326), + [anon_sym_continue] = ACTIONS(5326), + [anon_sym_defer] = ACTIONS(5326), + [anon_sym_errdefer] = ACTIONS(5326), + [anon_sym_if] = ACTIONS(5326), + [anon_sym_else] = ACTIONS(5326), + [anon_sym_while] = ACTIONS(5326), + [anon_sym_expand] = ACTIONS(5326), + [anon_sym_for] = ACTIONS(5326), + [anon_sym_match] = ACTIONS(5326), + [anon_sym_DOT_DOT] = ACTIONS(5326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5324), + [anon_sym_orelse] = ACTIONS(5326), + [anon_sym_or] = ACTIONS(5326), + [anon_sym_and] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5324), + [anon_sym_BANG_EQ] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5326), + [anon_sym_GT_EQ] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5326), + [anon_sym_xor] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5326), + [anon_sym_GT_GT] = ACTIONS(5326), + [anon_sym_LT_LT_PIPE] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5326), + [anon_sym_SLASH] = ACTIONS(5326), + [anon_sym_catch] = ACTIONS(5326), + [anon_sym_TILDE] = ACTIONS(5324), + [anon_sym_try] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym_true] = ACTIONS(5326), + [anon_sym_false] = ACTIONS(5326), + [anon_sym_null] = ACTIONS(5326), + [anon_sym_unreachable] = ACTIONS(5326), + [anon_sym_undefined] = ACTIONS(5326), + [sym_sink] = ACTIONS(5326), + [sym_integer] = ACTIONS(5326), + [sym_float] = ACTIONS(5324), + [anon_sym_DQUOTE] = ACTIONS(5324), + [sym_multiline_string] = ACTIONS(5324), + [sym_character] = ACTIONS(5324), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5324), + }, + [STATE(3311)] = { + [sym_identifier] = ACTIONS(5330), + [anon_sym_func] = ACTIONS(5330), + [anon_sym_c_func] = ACTIONS(5330), + [anon_sym_BANG] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_struct] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_LBRACE] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5330), + [anon_sym_struct_type_BANG] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(5328), + [anon_sym_AT] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5328), + [anon_sym_void] = ACTIONS(5330), + [anon_sym_noreturn] = ACTIONS(5330), + [anon_sym_type] = ACTIONS(5330), + [anon_sym_anyopaque] = ACTIONS(5330), + [anon_sym_bool] = ACTIONS(5330), + [anon_sym_int] = ACTIONS(5330), + [anon_sym_uint] = ACTIONS(5330), + [anon_sym_float] = ACTIONS(5330), + [anon_sym_range] = ACTIONS(5330), + [anon_sym_i8] = ACTIONS(5330), + [anon_sym_i16] = ACTIONS(5330), + [anon_sym_i32] = ACTIONS(5330), + [anon_sym_i64] = ACTIONS(5330), + [anon_sym_u8] = ACTIONS(5330), + [anon_sym_u16] = ACTIONS(5330), + [anon_sym_u32] = ACTIONS(5330), + [anon_sym_u64] = ACTIONS(5330), + [anon_sym_isize] = ACTIONS(5330), + [anon_sym_usize] = ACTIONS(5330), + [anon_sym_f32] = ACTIONS(5330), + [anon_sym_f64] = ACTIONS(5330), + [anon_sym_c_char] = ACTIONS(5330), + [anon_sym_c_schar] = ACTIONS(5330), + [anon_sym_c_uchar] = ACTIONS(5330), + [anon_sym_c_short] = ACTIONS(5330), + [anon_sym_c_ushort] = ACTIONS(5330), + [anon_sym_c_int] = ACTIONS(5330), + [anon_sym_c_uint] = ACTIONS(5330), + [anon_sym_c_long] = ACTIONS(5330), + [anon_sym_c_ulong] = ACTIONS(5330), + [anon_sym_c_longlong] = ACTIONS(5330), + [anon_sym_c_ulonglong] = ACTIONS(5330), + [anon_sym_c_float] = ACTIONS(5330), + [anon_sym_c_double] = ACTIONS(5330), + [anon_sym_c_longdouble] = ACTIONS(5330), + [anon_sym_PLUS_EQ] = ACTIONS(5328), + [anon_sym_DASH_EQ] = ACTIONS(5328), + [anon_sym_STAR_EQ] = ACTIONS(5328), + [anon_sym_SLASH_EQ] = ACTIONS(5328), + [anon_sym_AMP_EQ] = ACTIONS(5328), + [anon_sym_PIPE_EQ] = ACTIONS(5328), + [anon_sym_xor_EQ] = ACTIONS(5328), + [anon_sym_LT_LT_EQ] = ACTIONS(5328), + [anon_sym_GT_GT_EQ] = ACTIONS(5328), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5328), + [anon_sym_return] = ACTIONS(5330), + [anon_sym_yield] = ACTIONS(5330), + [anon_sym_break] = ACTIONS(5330), + [anon_sym_continue] = ACTIONS(5330), + [anon_sym_defer] = ACTIONS(5330), + [anon_sym_errdefer] = ACTIONS(5330), + [anon_sym_if] = ACTIONS(5330), + [anon_sym_else] = ACTIONS(5330), + [anon_sym_while] = ACTIONS(5330), + [anon_sym_expand] = ACTIONS(5330), + [anon_sym_for] = ACTIONS(5330), + [anon_sym_match] = ACTIONS(5330), + [anon_sym_DOT_DOT] = ACTIONS(5330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5328), + [anon_sym_orelse] = ACTIONS(5330), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_and] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_BANG_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_EQ] = ACTIONS(5328), + [anon_sym_AMP] = ACTIONS(5330), + [anon_sym_xor] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5330), + [anon_sym_LT_LT_PIPE] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5330), + [anon_sym_SLASH] = ACTIONS(5330), + [anon_sym_catch] = ACTIONS(5330), + [anon_sym_TILDE] = ACTIONS(5328), + [anon_sym_try] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym_true] = ACTIONS(5330), + [anon_sym_false] = ACTIONS(5330), + [anon_sym_null] = ACTIONS(5330), + [anon_sym_unreachable] = ACTIONS(5330), + [anon_sym_undefined] = ACTIONS(5330), + [sym_sink] = ACTIONS(5330), + [sym_integer] = ACTIONS(5330), + [sym_float] = ACTIONS(5328), + [anon_sym_DQUOTE] = ACTIONS(5328), + [sym_multiline_string] = ACTIONS(5328), + [sym_character] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5328), + }, + [STATE(3312)] = { + [sym_identifier] = ACTIONS(4686), + [anon_sym_func] = ACTIONS(4686), + [anon_sym_c_func] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_struct] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_DOLLAR] = ACTIONS(4684), + [anon_sym_PIPE] = ACTIONS(4686), + [anon_sym_struct_type_BANG] = ACTIONS(4684), + [anon_sym_QMARK] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_void] = ACTIONS(4686), + [anon_sym_noreturn] = ACTIONS(4686), + [anon_sym_type] = ACTIONS(4686), + [anon_sym_anyopaque] = ACTIONS(4686), + [anon_sym_bool] = ACTIONS(4686), + [anon_sym_int] = ACTIONS(4686), + [anon_sym_uint] = ACTIONS(4686), + [anon_sym_float] = ACTIONS(4686), + [anon_sym_range] = ACTIONS(4686), + [anon_sym_i8] = ACTIONS(4686), + [anon_sym_i16] = ACTIONS(4686), + [anon_sym_i32] = ACTIONS(4686), + [anon_sym_i64] = ACTIONS(4686), + [anon_sym_u8] = ACTIONS(4686), + [anon_sym_u16] = ACTIONS(4686), + [anon_sym_u32] = ACTIONS(4686), + [anon_sym_u64] = ACTIONS(4686), + [anon_sym_isize] = ACTIONS(4686), + [anon_sym_usize] = ACTIONS(4686), + [anon_sym_f32] = ACTIONS(4686), + [anon_sym_f64] = ACTIONS(4686), + [anon_sym_c_char] = ACTIONS(4686), + [anon_sym_c_schar] = ACTIONS(4686), + [anon_sym_c_uchar] = ACTIONS(4686), + [anon_sym_c_short] = ACTIONS(4686), + [anon_sym_c_ushort] = ACTIONS(4686), + [anon_sym_c_int] = ACTIONS(4686), + [anon_sym_c_uint] = ACTIONS(4686), + [anon_sym_c_long] = ACTIONS(4686), + [anon_sym_c_ulong] = ACTIONS(4686), + [anon_sym_c_longlong] = ACTIONS(4686), + [anon_sym_c_ulonglong] = ACTIONS(4686), + [anon_sym_c_float] = ACTIONS(4686), + [anon_sym_c_double] = ACTIONS(4686), + [anon_sym_c_longdouble] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_AMP_EQ] = ACTIONS(4684), + [anon_sym_PIPE_EQ] = ACTIONS(4684), + [anon_sym_xor_EQ] = ACTIONS(4684), + [anon_sym_LT_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_GT_EQ] = ACTIONS(4684), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4686), + [anon_sym_yield] = ACTIONS(4686), + [anon_sym_break] = ACTIONS(4686), + [anon_sym_continue] = ACTIONS(4686), + [anon_sym_defer] = ACTIONS(4686), + [anon_sym_errdefer] = ACTIONS(4686), + [anon_sym_if] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_while] = ACTIONS(4686), + [anon_sym_expand] = ACTIONS(4686), + [anon_sym_for] = ACTIONS(4686), + [anon_sym_match] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4684), + [anon_sym_orelse] = ACTIONS(4686), + [anon_sym_or] = ACTIONS(4686), + [anon_sym_and] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_AMP] = ACTIONS(4686), + [anon_sym_xor] = ACTIONS(4686), + [anon_sym_LT_LT] = ACTIONS(4686), + [anon_sym_GT_GT] = ACTIONS(4686), + [anon_sym_LT_LT_PIPE] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_catch] = ACTIONS(4686), + [anon_sym_TILDE] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_CARET] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4686), + [anon_sym_false] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4686), + [anon_sym_unreachable] = ACTIONS(4686), + [anon_sym_undefined] = ACTIONS(4686), + [sym_sink] = ACTIONS(4686), + [sym_integer] = ACTIONS(4686), + [sym_float] = ACTIONS(4684), + [anon_sym_DQUOTE] = ACTIONS(4684), + [sym_multiline_string] = ACTIONS(4684), + [sym_character] = ACTIONS(4684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4684), + }, + [STATE(3313)] = { + [sym_identifier] = ACTIONS(4690), + [anon_sym_func] = ACTIONS(4690), + [anon_sym_c_func] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_struct] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_struct_type_BANG] = ACTIONS(4688), + [anon_sym_QMARK] = ACTIONS(4688), + [anon_sym_AT] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_void] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym_type] = ACTIONS(4690), + [anon_sym_anyopaque] = ACTIONS(4690), + [anon_sym_bool] = ACTIONS(4690), + [anon_sym_int] = ACTIONS(4690), + [anon_sym_uint] = ACTIONS(4690), + [anon_sym_float] = ACTIONS(4690), + [anon_sym_range] = ACTIONS(4690), + [anon_sym_i8] = ACTIONS(4690), + [anon_sym_i16] = ACTIONS(4690), + [anon_sym_i32] = ACTIONS(4690), + [anon_sym_i64] = ACTIONS(4690), + [anon_sym_u8] = ACTIONS(4690), + [anon_sym_u16] = ACTIONS(4690), + [anon_sym_u32] = ACTIONS(4690), + [anon_sym_u64] = ACTIONS(4690), + [anon_sym_isize] = ACTIONS(4690), + [anon_sym_usize] = ACTIONS(4690), + [anon_sym_f32] = ACTIONS(4690), + [anon_sym_f64] = ACTIONS(4690), + [anon_sym_c_char] = ACTIONS(4690), + [anon_sym_c_schar] = ACTIONS(4690), + [anon_sym_c_uchar] = ACTIONS(4690), + [anon_sym_c_short] = ACTIONS(4690), + [anon_sym_c_ushort] = ACTIONS(4690), + [anon_sym_c_int] = ACTIONS(4690), + [anon_sym_c_uint] = ACTIONS(4690), + [anon_sym_c_long] = ACTIONS(4690), + [anon_sym_c_ulong] = ACTIONS(4690), + [anon_sym_c_longlong] = ACTIONS(4690), + [anon_sym_c_ulonglong] = ACTIONS(4690), + [anon_sym_c_float] = ACTIONS(4690), + [anon_sym_c_double] = ACTIONS(4690), + [anon_sym_c_longdouble] = ACTIONS(4690), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_AMP_EQ] = ACTIONS(4688), + [anon_sym_PIPE_EQ] = ACTIONS(4688), + [anon_sym_xor_EQ] = ACTIONS(4688), + [anon_sym_LT_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_GT_EQ] = ACTIONS(4688), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4688), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_yield] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_defer] = ACTIONS(4690), + [anon_sym_errdefer] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_expand] = ACTIONS(4690), + [anon_sym_for] = ACTIONS(4690), + [anon_sym_match] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4688), + [anon_sym_orelse] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4690), + [anon_sym_and] = ACTIONS(4690), + [anon_sym_EQ_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4690), + [anon_sym_xor] = ACTIONS(4690), + [anon_sym_LT_LT] = ACTIONS(4690), + [anon_sym_GT_GT] = ACTIONS(4690), + [anon_sym_LT_LT_PIPE] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_catch] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4688), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_unreachable] = ACTIONS(4690), + [anon_sym_undefined] = ACTIONS(4690), + [sym_sink] = ACTIONS(4690), + [sym_integer] = ACTIONS(4690), + [sym_float] = ACTIONS(4688), + [anon_sym_DQUOTE] = ACTIONS(4688), + [sym_multiline_string] = ACTIONS(4688), + [sym_character] = ACTIONS(4688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4688), + }, + [STATE(3314)] = { + [sym_identifier] = ACTIONS(4694), + [anon_sym_func] = ACTIONS(4694), + [anon_sym_c_func] = ACTIONS(4694), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_DOLLAR] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4694), + [anon_sym_struct_type_BANG] = ACTIONS(4692), + [anon_sym_QMARK] = ACTIONS(4692), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_void] = ACTIONS(4694), + [anon_sym_noreturn] = ACTIONS(4694), + [anon_sym_type] = ACTIONS(4694), + [anon_sym_anyopaque] = ACTIONS(4694), + [anon_sym_bool] = ACTIONS(4694), + [anon_sym_int] = ACTIONS(4694), + [anon_sym_uint] = ACTIONS(4694), + [anon_sym_float] = ACTIONS(4694), + [anon_sym_range] = ACTIONS(4694), + [anon_sym_i8] = ACTIONS(4694), + [anon_sym_i16] = ACTIONS(4694), + [anon_sym_i32] = ACTIONS(4694), + [anon_sym_i64] = ACTIONS(4694), + [anon_sym_u8] = ACTIONS(4694), + [anon_sym_u16] = ACTIONS(4694), + [anon_sym_u32] = ACTIONS(4694), + [anon_sym_u64] = ACTIONS(4694), + [anon_sym_isize] = ACTIONS(4694), + [anon_sym_usize] = ACTIONS(4694), + [anon_sym_f32] = ACTIONS(4694), + [anon_sym_f64] = ACTIONS(4694), + [anon_sym_c_char] = ACTIONS(4694), + [anon_sym_c_schar] = ACTIONS(4694), + [anon_sym_c_uchar] = ACTIONS(4694), + [anon_sym_c_short] = ACTIONS(4694), + [anon_sym_c_ushort] = ACTIONS(4694), + [anon_sym_c_int] = ACTIONS(4694), + [anon_sym_c_uint] = ACTIONS(4694), + [anon_sym_c_long] = ACTIONS(4694), + [anon_sym_c_ulong] = ACTIONS(4694), + [anon_sym_c_longlong] = ACTIONS(4694), + [anon_sym_c_ulonglong] = ACTIONS(4694), + [anon_sym_c_float] = ACTIONS(4694), + [anon_sym_c_double] = ACTIONS(4694), + [anon_sym_c_longdouble] = ACTIONS(4694), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_AMP_EQ] = ACTIONS(4692), + [anon_sym_PIPE_EQ] = ACTIONS(4692), + [anon_sym_xor_EQ] = ACTIONS(4692), + [anon_sym_LT_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_GT_EQ] = ACTIONS(4692), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4692), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_yield] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_defer] = ACTIONS(4694), + [anon_sym_errdefer] = ACTIONS(4694), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_while] = ACTIONS(4694), + [anon_sym_expand] = ACTIONS(4694), + [anon_sym_for] = ACTIONS(4694), + [anon_sym_match] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4692), + [anon_sym_orelse] = ACTIONS(4694), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [anon_sym_EQ_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_xor] = ACTIONS(4694), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4694), + [anon_sym_LT_LT_PIPE] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_catch] = ACTIONS(4694), + [anon_sym_TILDE] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_null] = ACTIONS(4694), + [anon_sym_unreachable] = ACTIONS(4694), + [anon_sym_undefined] = ACTIONS(4694), + [sym_sink] = ACTIONS(4694), + [sym_integer] = ACTIONS(4694), + [sym_float] = ACTIONS(4692), + [anon_sym_DQUOTE] = ACTIONS(4692), + [sym_multiline_string] = ACTIONS(4692), + [sym_character] = ACTIONS(4692), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4692), + }, + [STATE(3315)] = { + [sym_identifier] = ACTIONS(4698), + [anon_sym_func] = ACTIONS(4698), + [anon_sym_c_func] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_struct] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_struct_type_BANG] = ACTIONS(4696), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_void] = ACTIONS(4698), + [anon_sym_noreturn] = ACTIONS(4698), + [anon_sym_type] = ACTIONS(4698), + [anon_sym_anyopaque] = ACTIONS(4698), + [anon_sym_bool] = ACTIONS(4698), + [anon_sym_int] = ACTIONS(4698), + [anon_sym_uint] = ACTIONS(4698), + [anon_sym_float] = ACTIONS(4698), + [anon_sym_range] = ACTIONS(4698), + [anon_sym_i8] = ACTIONS(4698), + [anon_sym_i16] = ACTIONS(4698), + [anon_sym_i32] = ACTIONS(4698), + [anon_sym_i64] = ACTIONS(4698), + [anon_sym_u8] = ACTIONS(4698), + [anon_sym_u16] = ACTIONS(4698), + [anon_sym_u32] = ACTIONS(4698), + [anon_sym_u64] = ACTIONS(4698), + [anon_sym_isize] = ACTIONS(4698), + [anon_sym_usize] = ACTIONS(4698), + [anon_sym_f32] = ACTIONS(4698), + [anon_sym_f64] = ACTIONS(4698), + [anon_sym_c_char] = ACTIONS(4698), + [anon_sym_c_schar] = ACTIONS(4698), + [anon_sym_c_uchar] = ACTIONS(4698), + [anon_sym_c_short] = ACTIONS(4698), + [anon_sym_c_ushort] = ACTIONS(4698), + [anon_sym_c_int] = ACTIONS(4698), + [anon_sym_c_uint] = ACTIONS(4698), + [anon_sym_c_long] = ACTIONS(4698), + [anon_sym_c_ulong] = ACTIONS(4698), + [anon_sym_c_longlong] = ACTIONS(4698), + [anon_sym_c_ulonglong] = ACTIONS(4698), + [anon_sym_c_float] = ACTIONS(4698), + [anon_sym_c_double] = ACTIONS(4698), + [anon_sym_c_longdouble] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_AMP_EQ] = ACTIONS(4696), + [anon_sym_PIPE_EQ] = ACTIONS(4696), + [anon_sym_xor_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_GT_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4698), + [anon_sym_yield] = ACTIONS(4698), + [anon_sym_break] = ACTIONS(4698), + [anon_sym_continue] = ACTIONS(4698), + [anon_sym_defer] = ACTIONS(4698), + [anon_sym_errdefer] = ACTIONS(4698), + [anon_sym_if] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_while] = ACTIONS(4698), + [anon_sym_expand] = ACTIONS(4698), + [anon_sym_for] = ACTIONS(4698), + [anon_sym_match] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4696), + [anon_sym_orelse] = ACTIONS(4698), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_xor] = ACTIONS(4698), + [anon_sym_LT_LT] = ACTIONS(4698), + [anon_sym_GT_GT] = ACTIONS(4698), + [anon_sym_LT_LT_PIPE] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_catch] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4698), + [anon_sym_false] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4698), + [anon_sym_unreachable] = ACTIONS(4698), + [anon_sym_undefined] = ACTIONS(4698), + [sym_sink] = ACTIONS(4698), + [sym_integer] = ACTIONS(4698), + [sym_float] = ACTIONS(4696), + [anon_sym_DQUOTE] = ACTIONS(4696), + [sym_multiline_string] = ACTIONS(4696), + [sym_character] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4696), + }, + [STATE(3316)] = { + [sym_identifier] = ACTIONS(4702), + [anon_sym_func] = ACTIONS(4702), + [anon_sym_c_func] = ACTIONS(4702), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_struct] = ACTIONS(4702), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_DOLLAR] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(4702), + [anon_sym_struct_type_BANG] = ACTIONS(4700), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_STAR] = ACTIONS(4702), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_void] = ACTIONS(4702), + [anon_sym_noreturn] = ACTIONS(4702), + [anon_sym_type] = ACTIONS(4702), + [anon_sym_anyopaque] = ACTIONS(4702), + [anon_sym_bool] = ACTIONS(4702), + [anon_sym_int] = ACTIONS(4702), + [anon_sym_uint] = ACTIONS(4702), + [anon_sym_float] = ACTIONS(4702), + [anon_sym_range] = ACTIONS(4702), + [anon_sym_i8] = ACTIONS(4702), + [anon_sym_i16] = ACTIONS(4702), + [anon_sym_i32] = ACTIONS(4702), + [anon_sym_i64] = ACTIONS(4702), + [anon_sym_u8] = ACTIONS(4702), + [anon_sym_u16] = ACTIONS(4702), + [anon_sym_u32] = ACTIONS(4702), + [anon_sym_u64] = ACTIONS(4702), + [anon_sym_isize] = ACTIONS(4702), + [anon_sym_usize] = ACTIONS(4702), + [anon_sym_f32] = ACTIONS(4702), + [anon_sym_f64] = ACTIONS(4702), + [anon_sym_c_char] = ACTIONS(4702), + [anon_sym_c_schar] = ACTIONS(4702), + [anon_sym_c_uchar] = ACTIONS(4702), + [anon_sym_c_short] = ACTIONS(4702), + [anon_sym_c_ushort] = ACTIONS(4702), + [anon_sym_c_int] = ACTIONS(4702), + [anon_sym_c_uint] = ACTIONS(4702), + [anon_sym_c_long] = ACTIONS(4702), + [anon_sym_c_ulong] = ACTIONS(4702), + [anon_sym_c_longlong] = ACTIONS(4702), + [anon_sym_c_ulonglong] = ACTIONS(4702), + [anon_sym_c_float] = ACTIONS(4702), + [anon_sym_c_double] = ACTIONS(4702), + [anon_sym_c_longdouble] = ACTIONS(4702), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_AMP_EQ] = ACTIONS(4700), + [anon_sym_PIPE_EQ] = ACTIONS(4700), + [anon_sym_xor_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4700), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_yield] = ACTIONS(4702), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_defer] = ACTIONS(4702), + [anon_sym_errdefer] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_while] = ACTIONS(4702), + [anon_sym_expand] = ACTIONS(4702), + [anon_sym_for] = ACTIONS(4702), + [anon_sym_match] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4700), + [anon_sym_orelse] = ACTIONS(4702), + [anon_sym_or] = ACTIONS(4702), + [anon_sym_and] = ACTIONS(4702), + [anon_sym_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(4702), + [anon_sym_xor] = ACTIONS(4702), + [anon_sym_LT_LT] = ACTIONS(4702), + [anon_sym_GT_GT] = ACTIONS(4702), + [anon_sym_LT_LT_PIPE] = ACTIONS(4702), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_catch] = ACTIONS(4702), + [anon_sym_TILDE] = ACTIONS(4700), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_unreachable] = ACTIONS(4702), + [anon_sym_undefined] = ACTIONS(4702), + [sym_sink] = ACTIONS(4702), + [sym_integer] = ACTIONS(4702), + [sym_float] = ACTIONS(4700), + [anon_sym_DQUOTE] = ACTIONS(4700), + [sym_multiline_string] = ACTIONS(4700), + [sym_character] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4700), + }, + [STATE(3317)] = { + [sym_identifier] = ACTIONS(4706), + [anon_sym_func] = ACTIONS(4706), + [anon_sym_c_func] = ACTIONS(4706), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_struct] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_struct_type_BANG] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_void] = ACTIONS(4706), + [anon_sym_noreturn] = ACTIONS(4706), + [anon_sym_type] = ACTIONS(4706), + [anon_sym_anyopaque] = ACTIONS(4706), + [anon_sym_bool] = ACTIONS(4706), + [anon_sym_int] = ACTIONS(4706), + [anon_sym_uint] = ACTIONS(4706), + [anon_sym_float] = ACTIONS(4706), + [anon_sym_range] = ACTIONS(4706), + [anon_sym_i8] = ACTIONS(4706), + [anon_sym_i16] = ACTIONS(4706), + [anon_sym_i32] = ACTIONS(4706), + [anon_sym_i64] = ACTIONS(4706), + [anon_sym_u8] = ACTIONS(4706), + [anon_sym_u16] = ACTIONS(4706), + [anon_sym_u32] = ACTIONS(4706), + [anon_sym_u64] = ACTIONS(4706), + [anon_sym_isize] = ACTIONS(4706), + [anon_sym_usize] = ACTIONS(4706), + [anon_sym_f32] = ACTIONS(4706), + [anon_sym_f64] = ACTIONS(4706), + [anon_sym_c_char] = ACTIONS(4706), + [anon_sym_c_schar] = ACTIONS(4706), + [anon_sym_c_uchar] = ACTIONS(4706), + [anon_sym_c_short] = ACTIONS(4706), + [anon_sym_c_ushort] = ACTIONS(4706), + [anon_sym_c_int] = ACTIONS(4706), + [anon_sym_c_uint] = ACTIONS(4706), + [anon_sym_c_long] = ACTIONS(4706), + [anon_sym_c_ulong] = ACTIONS(4706), + [anon_sym_c_longlong] = ACTIONS(4706), + [anon_sym_c_ulonglong] = ACTIONS(4706), + [anon_sym_c_float] = ACTIONS(4706), + [anon_sym_c_double] = ACTIONS(4706), + [anon_sym_c_longdouble] = ACTIONS(4706), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_AMP_EQ] = ACTIONS(4704), + [anon_sym_PIPE_EQ] = ACTIONS(4704), + [anon_sym_xor_EQ] = ACTIONS(4704), + [anon_sym_LT_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_GT_EQ] = ACTIONS(4704), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4704), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_yield] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_defer] = ACTIONS(4706), + [anon_sym_errdefer] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_expand] = ACTIONS(4706), + [anon_sym_for] = ACTIONS(4706), + [anon_sym_match] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4704), + [anon_sym_orelse] = ACTIONS(4706), + [anon_sym_or] = ACTIONS(4706), + [anon_sym_and] = ACTIONS(4706), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_xor] = ACTIONS(4706), + [anon_sym_LT_LT] = ACTIONS(4706), + [anon_sym_GT_GT] = ACTIONS(4706), + [anon_sym_LT_LT_PIPE] = ACTIONS(4706), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_catch] = ACTIONS(4706), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_unreachable] = ACTIONS(4706), + [anon_sym_undefined] = ACTIONS(4706), + [sym_sink] = ACTIONS(4706), + [sym_integer] = ACTIONS(4706), + [sym_float] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [sym_multiline_string] = ACTIONS(4704), + [sym_character] = ACTIONS(4704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4704), + }, + [STATE(3318)] = { + [sym_identifier] = ACTIONS(4710), + [anon_sym_func] = ACTIONS(4710), + [anon_sym_c_func] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_struct] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4708), + [anon_sym_PIPE] = ACTIONS(4710), + [anon_sym_struct_type_BANG] = ACTIONS(4708), + [anon_sym_QMARK] = ACTIONS(4708), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_void] = ACTIONS(4710), + [anon_sym_noreturn] = ACTIONS(4710), + [anon_sym_type] = ACTIONS(4710), + [anon_sym_anyopaque] = ACTIONS(4710), + [anon_sym_bool] = ACTIONS(4710), + [anon_sym_int] = ACTIONS(4710), + [anon_sym_uint] = ACTIONS(4710), + [anon_sym_float] = ACTIONS(4710), + [anon_sym_range] = ACTIONS(4710), + [anon_sym_i8] = ACTIONS(4710), + [anon_sym_i16] = ACTIONS(4710), + [anon_sym_i32] = ACTIONS(4710), + [anon_sym_i64] = ACTIONS(4710), + [anon_sym_u8] = ACTIONS(4710), + [anon_sym_u16] = ACTIONS(4710), + [anon_sym_u32] = ACTIONS(4710), + [anon_sym_u64] = ACTIONS(4710), + [anon_sym_isize] = ACTIONS(4710), + [anon_sym_usize] = ACTIONS(4710), + [anon_sym_f32] = ACTIONS(4710), + [anon_sym_f64] = ACTIONS(4710), + [anon_sym_c_char] = ACTIONS(4710), + [anon_sym_c_schar] = ACTIONS(4710), + [anon_sym_c_uchar] = ACTIONS(4710), + [anon_sym_c_short] = ACTIONS(4710), + [anon_sym_c_ushort] = ACTIONS(4710), + [anon_sym_c_int] = ACTIONS(4710), + [anon_sym_c_uint] = ACTIONS(4710), + [anon_sym_c_long] = ACTIONS(4710), + [anon_sym_c_ulong] = ACTIONS(4710), + [anon_sym_c_longlong] = ACTIONS(4710), + [anon_sym_c_ulonglong] = ACTIONS(4710), + [anon_sym_c_float] = ACTIONS(4710), + [anon_sym_c_double] = ACTIONS(4710), + [anon_sym_c_longdouble] = ACTIONS(4710), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_AMP_EQ] = ACTIONS(4708), + [anon_sym_PIPE_EQ] = ACTIONS(4708), + [anon_sym_xor_EQ] = ACTIONS(4708), + [anon_sym_LT_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_GT_EQ] = ACTIONS(4708), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4708), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_yield] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_defer] = ACTIONS(4710), + [anon_sym_errdefer] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_expand] = ACTIONS(4710), + [anon_sym_for] = ACTIONS(4710), + [anon_sym_match] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4708), + [anon_sym_orelse] = ACTIONS(4710), + [anon_sym_or] = ACTIONS(4710), + [anon_sym_and] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_xor] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4710), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_LT_LT_PIPE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_catch] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4708), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_unreachable] = ACTIONS(4710), + [anon_sym_undefined] = ACTIONS(4710), + [sym_sink] = ACTIONS(4710), + [sym_integer] = ACTIONS(4710), + [sym_float] = ACTIONS(4708), + [anon_sym_DQUOTE] = ACTIONS(4708), + [sym_multiline_string] = ACTIONS(4708), + [sym_character] = ACTIONS(4708), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4708), + }, + [STATE(3319)] = { + [sym_identifier] = ACTIONS(4714), + [anon_sym_func] = ACTIONS(4714), + [anon_sym_c_func] = ACTIONS(4714), + [anon_sym_BANG] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_struct] = ACTIONS(4714), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4714), + [anon_sym_struct_type_BANG] = ACTIONS(4712), + [anon_sym_QMARK] = ACTIONS(4712), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_void] = ACTIONS(4714), + [anon_sym_noreturn] = ACTIONS(4714), + [anon_sym_type] = ACTIONS(4714), + [anon_sym_anyopaque] = ACTIONS(4714), + [anon_sym_bool] = ACTIONS(4714), + [anon_sym_int] = ACTIONS(4714), + [anon_sym_uint] = ACTIONS(4714), + [anon_sym_float] = ACTIONS(4714), + [anon_sym_range] = ACTIONS(4714), + [anon_sym_i8] = ACTIONS(4714), + [anon_sym_i16] = ACTIONS(4714), + [anon_sym_i32] = ACTIONS(4714), + [anon_sym_i64] = ACTIONS(4714), + [anon_sym_u8] = ACTIONS(4714), + [anon_sym_u16] = ACTIONS(4714), + [anon_sym_u32] = ACTIONS(4714), + [anon_sym_u64] = ACTIONS(4714), + [anon_sym_isize] = ACTIONS(4714), + [anon_sym_usize] = ACTIONS(4714), + [anon_sym_f32] = ACTIONS(4714), + [anon_sym_f64] = ACTIONS(4714), + [anon_sym_c_char] = ACTIONS(4714), + [anon_sym_c_schar] = ACTIONS(4714), + [anon_sym_c_uchar] = ACTIONS(4714), + [anon_sym_c_short] = ACTIONS(4714), + [anon_sym_c_ushort] = ACTIONS(4714), + [anon_sym_c_int] = ACTIONS(4714), + [anon_sym_c_uint] = ACTIONS(4714), + [anon_sym_c_long] = ACTIONS(4714), + [anon_sym_c_ulong] = ACTIONS(4714), + [anon_sym_c_longlong] = ACTIONS(4714), + [anon_sym_c_ulonglong] = ACTIONS(4714), + [anon_sym_c_float] = ACTIONS(4714), + [anon_sym_c_double] = ACTIONS(4714), + [anon_sym_c_longdouble] = ACTIONS(4714), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_AMP_EQ] = ACTIONS(4712), + [anon_sym_PIPE_EQ] = ACTIONS(4712), + [anon_sym_xor_EQ] = ACTIONS(4712), + [anon_sym_LT_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_GT_EQ] = ACTIONS(4712), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4714), + [anon_sym_yield] = ACTIONS(4714), + [anon_sym_break] = ACTIONS(4714), + [anon_sym_continue] = ACTIONS(4714), + [anon_sym_defer] = ACTIONS(4714), + [anon_sym_errdefer] = ACTIONS(4714), + [anon_sym_if] = ACTIONS(4714), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_while] = ACTIONS(4714), + [anon_sym_expand] = ACTIONS(4714), + [anon_sym_for] = ACTIONS(4714), + [anon_sym_match] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4712), + [anon_sym_orelse] = ACTIONS(4714), + [anon_sym_or] = ACTIONS(4714), + [anon_sym_and] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4714), + [anon_sym_xor] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4714), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_LT_LT_PIPE] = ACTIONS(4714), + [anon_sym_PLUS] = ACTIONS(4714), + [anon_sym_SLASH] = ACTIONS(4714), + [anon_sym_catch] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4712), + [anon_sym_try] = ACTIONS(4714), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_CARET] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4714), + [anon_sym_false] = ACTIONS(4714), + [anon_sym_null] = ACTIONS(4714), + [anon_sym_unreachable] = ACTIONS(4714), + [anon_sym_undefined] = ACTIONS(4714), + [sym_sink] = ACTIONS(4714), + [sym_integer] = ACTIONS(4714), + [sym_float] = ACTIONS(4712), + [anon_sym_DQUOTE] = ACTIONS(4712), + [sym_multiline_string] = ACTIONS(4712), + [sym_character] = ACTIONS(4712), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4712), + }, + [STATE(3320)] = { + [sym_identifier] = ACTIONS(4718), + [anon_sym_func] = ACTIONS(4718), + [anon_sym_c_func] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_struct] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_struct_type_BANG] = ACTIONS(4716), + [anon_sym_QMARK] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_void] = ACTIONS(4718), + [anon_sym_noreturn] = ACTIONS(4718), + [anon_sym_type] = ACTIONS(4718), + [anon_sym_anyopaque] = ACTIONS(4718), + [anon_sym_bool] = ACTIONS(4718), + [anon_sym_int] = ACTIONS(4718), + [anon_sym_uint] = ACTIONS(4718), + [anon_sym_float] = ACTIONS(4718), + [anon_sym_range] = ACTIONS(4718), + [anon_sym_i8] = ACTIONS(4718), + [anon_sym_i16] = ACTIONS(4718), + [anon_sym_i32] = ACTIONS(4718), + [anon_sym_i64] = ACTIONS(4718), + [anon_sym_u8] = ACTIONS(4718), + [anon_sym_u16] = ACTIONS(4718), + [anon_sym_u32] = ACTIONS(4718), + [anon_sym_u64] = ACTIONS(4718), + [anon_sym_isize] = ACTIONS(4718), + [anon_sym_usize] = ACTIONS(4718), + [anon_sym_f32] = ACTIONS(4718), + [anon_sym_f64] = ACTIONS(4718), + [anon_sym_c_char] = ACTIONS(4718), + [anon_sym_c_schar] = ACTIONS(4718), + [anon_sym_c_uchar] = ACTIONS(4718), + [anon_sym_c_short] = ACTIONS(4718), + [anon_sym_c_ushort] = ACTIONS(4718), + [anon_sym_c_int] = ACTIONS(4718), + [anon_sym_c_uint] = ACTIONS(4718), + [anon_sym_c_long] = ACTIONS(4718), + [anon_sym_c_ulong] = ACTIONS(4718), + [anon_sym_c_longlong] = ACTIONS(4718), + [anon_sym_c_ulonglong] = ACTIONS(4718), + [anon_sym_c_float] = ACTIONS(4718), + [anon_sym_c_double] = ACTIONS(4718), + [anon_sym_c_longdouble] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4716), + [anon_sym_STAR_EQ] = ACTIONS(4716), + [anon_sym_SLASH_EQ] = ACTIONS(4716), + [anon_sym_AMP_EQ] = ACTIONS(4716), + [anon_sym_PIPE_EQ] = ACTIONS(4716), + [anon_sym_xor_EQ] = ACTIONS(4716), + [anon_sym_LT_LT_EQ] = ACTIONS(4716), + [anon_sym_GT_GT_EQ] = ACTIONS(4716), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_yield] = ACTIONS(4718), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_defer] = ACTIONS(4718), + [anon_sym_errdefer] = ACTIONS(4718), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_while] = ACTIONS(4718), + [anon_sym_expand] = ACTIONS(4718), + [anon_sym_for] = ACTIONS(4718), + [anon_sym_match] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4716), + [anon_sym_orelse] = ACTIONS(4718), + [anon_sym_or] = ACTIONS(4718), + [anon_sym_and] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_AMP] = ACTIONS(4718), + [anon_sym_xor] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4718), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_LT_LT_PIPE] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_catch] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_CARET] = ACTIONS(4716), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(4718), + [anon_sym_unreachable] = ACTIONS(4718), + [anon_sym_undefined] = ACTIONS(4718), + [sym_sink] = ACTIONS(4718), + [sym_integer] = ACTIONS(4718), + [sym_float] = ACTIONS(4716), + [anon_sym_DQUOTE] = ACTIONS(4716), + [sym_multiline_string] = ACTIONS(4716), + [sym_character] = ACTIONS(4716), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4716), + }, + [STATE(3321)] = { + [sym_identifier] = ACTIONS(4722), + [anon_sym_func] = ACTIONS(4722), + [anon_sym_c_func] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_struct_type_BANG] = ACTIONS(4720), + [anon_sym_QMARK] = ACTIONS(4720), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_void] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_type] = ACTIONS(4722), + [anon_sym_anyopaque] = ACTIONS(4722), + [anon_sym_bool] = ACTIONS(4722), + [anon_sym_int] = ACTIONS(4722), + [anon_sym_uint] = ACTIONS(4722), + [anon_sym_float] = ACTIONS(4722), + [anon_sym_range] = ACTIONS(4722), + [anon_sym_i8] = ACTIONS(4722), + [anon_sym_i16] = ACTIONS(4722), + [anon_sym_i32] = ACTIONS(4722), + [anon_sym_i64] = ACTIONS(4722), + [anon_sym_u8] = ACTIONS(4722), + [anon_sym_u16] = ACTIONS(4722), + [anon_sym_u32] = ACTIONS(4722), + [anon_sym_u64] = ACTIONS(4722), + [anon_sym_isize] = ACTIONS(4722), + [anon_sym_usize] = ACTIONS(4722), + [anon_sym_f32] = ACTIONS(4722), + [anon_sym_f64] = ACTIONS(4722), + [anon_sym_c_char] = ACTIONS(4722), + [anon_sym_c_schar] = ACTIONS(4722), + [anon_sym_c_uchar] = ACTIONS(4722), + [anon_sym_c_short] = ACTIONS(4722), + [anon_sym_c_ushort] = ACTIONS(4722), + [anon_sym_c_int] = ACTIONS(4722), + [anon_sym_c_uint] = ACTIONS(4722), + [anon_sym_c_long] = ACTIONS(4722), + [anon_sym_c_ulong] = ACTIONS(4722), + [anon_sym_c_longlong] = ACTIONS(4722), + [anon_sym_c_ulonglong] = ACTIONS(4722), + [anon_sym_c_float] = ACTIONS(4722), + [anon_sym_c_double] = ACTIONS(4722), + [anon_sym_c_longdouble] = ACTIONS(4722), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_AMP_EQ] = ACTIONS(4720), + [anon_sym_PIPE_EQ] = ACTIONS(4720), + [anon_sym_xor_EQ] = ACTIONS(4720), + [anon_sym_LT_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_GT_EQ] = ACTIONS(4720), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4720), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_yield] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_defer] = ACTIONS(4722), + [anon_sym_errdefer] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_while] = ACTIONS(4722), + [anon_sym_expand] = ACTIONS(4722), + [anon_sym_for] = ACTIONS(4722), + [anon_sym_match] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4720), + [anon_sym_orelse] = ACTIONS(4722), + [anon_sym_or] = ACTIONS(4722), + [anon_sym_and] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), + [anon_sym_xor] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT_PIPE] = ACTIONS(4722), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_catch] = ACTIONS(4722), + [anon_sym_TILDE] = ACTIONS(4720), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_unreachable] = ACTIONS(4722), + [anon_sym_undefined] = ACTIONS(4722), + [sym_sink] = ACTIONS(4722), + [sym_integer] = ACTIONS(4722), + [sym_float] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4720), + [sym_multiline_string] = ACTIONS(4720), + [sym_character] = ACTIONS(4720), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4720), + }, + [STATE(3322)] = { + [sym_identifier] = ACTIONS(5334), + [anon_sym_func] = ACTIONS(5334), + [anon_sym_c_func] = ACTIONS(5334), + [anon_sym_BANG] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5332), + [anon_sym_LBRACE] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5334), + [anon_sym_struct_type_BANG] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_AT] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5332), + [anon_sym_void] = ACTIONS(5334), + [anon_sym_noreturn] = ACTIONS(5334), + [anon_sym_type] = ACTIONS(5334), + [anon_sym_anyopaque] = ACTIONS(5334), + [anon_sym_bool] = ACTIONS(5334), + [anon_sym_int] = ACTIONS(5334), + [anon_sym_uint] = ACTIONS(5334), + [anon_sym_float] = ACTIONS(5334), + [anon_sym_range] = ACTIONS(5334), + [anon_sym_i8] = ACTIONS(5334), + [anon_sym_i16] = ACTIONS(5334), + [anon_sym_i32] = ACTIONS(5334), + [anon_sym_i64] = ACTIONS(5334), + [anon_sym_u8] = ACTIONS(5334), + [anon_sym_u16] = ACTIONS(5334), + [anon_sym_u32] = ACTIONS(5334), + [anon_sym_u64] = ACTIONS(5334), + [anon_sym_isize] = ACTIONS(5334), + [anon_sym_usize] = ACTIONS(5334), + [anon_sym_f32] = ACTIONS(5334), + [anon_sym_f64] = ACTIONS(5334), + [anon_sym_c_char] = ACTIONS(5334), + [anon_sym_c_schar] = ACTIONS(5334), + [anon_sym_c_uchar] = ACTIONS(5334), + [anon_sym_c_short] = ACTIONS(5334), + [anon_sym_c_ushort] = ACTIONS(5334), + [anon_sym_c_int] = ACTIONS(5334), + [anon_sym_c_uint] = ACTIONS(5334), + [anon_sym_c_long] = ACTIONS(5334), + [anon_sym_c_ulong] = ACTIONS(5334), + [anon_sym_c_longlong] = ACTIONS(5334), + [anon_sym_c_ulonglong] = ACTIONS(5334), + [anon_sym_c_float] = ACTIONS(5334), + [anon_sym_c_double] = ACTIONS(5334), + [anon_sym_c_longdouble] = ACTIONS(5334), + [anon_sym_PLUS_EQ] = ACTIONS(5332), + [anon_sym_DASH_EQ] = ACTIONS(5332), + [anon_sym_STAR_EQ] = ACTIONS(5332), + [anon_sym_SLASH_EQ] = ACTIONS(5332), + [anon_sym_AMP_EQ] = ACTIONS(5332), + [anon_sym_PIPE_EQ] = ACTIONS(5332), + [anon_sym_xor_EQ] = ACTIONS(5332), + [anon_sym_LT_LT_EQ] = ACTIONS(5332), + [anon_sym_GT_GT_EQ] = ACTIONS(5332), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5332), + [anon_sym_return] = ACTIONS(5334), + [anon_sym_yield] = ACTIONS(5334), + [anon_sym_break] = ACTIONS(5334), + [anon_sym_continue] = ACTIONS(5334), + [anon_sym_defer] = ACTIONS(5334), + [anon_sym_errdefer] = ACTIONS(5334), + [anon_sym_if] = ACTIONS(5334), + [anon_sym_else] = ACTIONS(5334), + [anon_sym_while] = ACTIONS(5334), + [anon_sym_expand] = ACTIONS(5334), + [anon_sym_for] = ACTIONS(5334), + [anon_sym_match] = ACTIONS(5334), + [anon_sym_DOT_DOT] = ACTIONS(5334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5332), + [anon_sym_orelse] = ACTIONS(5334), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_and] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5332), + [anon_sym_BANG_EQ] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5334), + [anon_sym_LT_EQ] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5334), + [anon_sym_GT_EQ] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5334), + [anon_sym_xor] = ACTIONS(5334), + [anon_sym_LT_LT] = ACTIONS(5334), + [anon_sym_GT_GT] = ACTIONS(5334), + [anon_sym_LT_LT_PIPE] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5334), + [anon_sym_SLASH] = ACTIONS(5334), + [anon_sym_catch] = ACTIONS(5334), + [anon_sym_TILDE] = ACTIONS(5332), + [anon_sym_try] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(5334), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym_true] = ACTIONS(5334), + [anon_sym_false] = ACTIONS(5334), + [anon_sym_null] = ACTIONS(5334), + [anon_sym_unreachable] = ACTIONS(5334), + [anon_sym_undefined] = ACTIONS(5334), + [sym_sink] = ACTIONS(5334), + [sym_integer] = ACTIONS(5334), + [sym_float] = ACTIONS(5332), + [anon_sym_DQUOTE] = ACTIONS(5332), + [sym_multiline_string] = ACTIONS(5332), + [sym_character] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5332), + }, + [STATE(3323)] = { + [sym_identifier] = ACTIONS(4730), + [anon_sym_func] = ACTIONS(4730), + [anon_sym_c_func] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_struct] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_struct_type_BANG] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_void] = ACTIONS(4730), + [anon_sym_noreturn] = ACTIONS(4730), + [anon_sym_type] = ACTIONS(4730), + [anon_sym_anyopaque] = ACTIONS(4730), + [anon_sym_bool] = ACTIONS(4730), + [anon_sym_int] = ACTIONS(4730), + [anon_sym_uint] = ACTIONS(4730), + [anon_sym_float] = ACTIONS(4730), + [anon_sym_range] = ACTIONS(4730), + [anon_sym_i8] = ACTIONS(4730), + [anon_sym_i16] = ACTIONS(4730), + [anon_sym_i32] = ACTIONS(4730), + [anon_sym_i64] = ACTIONS(4730), + [anon_sym_u8] = ACTIONS(4730), + [anon_sym_u16] = ACTIONS(4730), + [anon_sym_u32] = ACTIONS(4730), + [anon_sym_u64] = ACTIONS(4730), + [anon_sym_isize] = ACTIONS(4730), + [anon_sym_usize] = ACTIONS(4730), + [anon_sym_f32] = ACTIONS(4730), + [anon_sym_f64] = ACTIONS(4730), + [anon_sym_c_char] = ACTIONS(4730), + [anon_sym_c_schar] = ACTIONS(4730), + [anon_sym_c_uchar] = ACTIONS(4730), + [anon_sym_c_short] = ACTIONS(4730), + [anon_sym_c_ushort] = ACTIONS(4730), + [anon_sym_c_int] = ACTIONS(4730), + [anon_sym_c_uint] = ACTIONS(4730), + [anon_sym_c_long] = ACTIONS(4730), + [anon_sym_c_ulong] = ACTIONS(4730), + [anon_sym_c_longlong] = ACTIONS(4730), + [anon_sym_c_ulonglong] = ACTIONS(4730), + [anon_sym_c_float] = ACTIONS(4730), + [anon_sym_c_double] = ACTIONS(4730), + [anon_sym_c_longdouble] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_AMP_EQ] = ACTIONS(4728), + [anon_sym_PIPE_EQ] = ACTIONS(4728), + [anon_sym_xor_EQ] = ACTIONS(4728), + [anon_sym_LT_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_GT_EQ] = ACTIONS(4728), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4730), + [anon_sym_yield] = ACTIONS(4730), + [anon_sym_break] = ACTIONS(4730), + [anon_sym_continue] = ACTIONS(4730), + [anon_sym_defer] = ACTIONS(4730), + [anon_sym_errdefer] = ACTIONS(4730), + [anon_sym_if] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_while] = ACTIONS(4730), + [anon_sym_expand] = ACTIONS(4730), + [anon_sym_for] = ACTIONS(4730), + [anon_sym_match] = ACTIONS(4730), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4728), + [anon_sym_orelse] = ACTIONS(4730), + [anon_sym_or] = ACTIONS(4730), + [anon_sym_and] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_xor] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_LT_LT_PIPE] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4730), + [anon_sym_catch] = ACTIONS(4730), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4730), + [anon_sym_false] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4730), + [anon_sym_unreachable] = ACTIONS(4730), + [anon_sym_undefined] = ACTIONS(4730), + [sym_sink] = ACTIONS(4730), + [sym_integer] = ACTIONS(4730), + [sym_float] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [sym_multiline_string] = ACTIONS(4728), + [sym_character] = ACTIONS(4728), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4728), + }, + [STATE(3324)] = { + [sym_identifier] = ACTIONS(5338), + [anon_sym_func] = ACTIONS(5338), + [anon_sym_c_func] = ACTIONS(5338), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_struct] = ACTIONS(5338), + [anon_sym_LPAREN] = ACTIONS(5336), + [anon_sym_LBRACE] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5338), + [anon_sym_struct_type_BANG] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5336), + [anon_sym_AT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5336), + [anon_sym_void] = ACTIONS(5338), + [anon_sym_noreturn] = ACTIONS(5338), + [anon_sym_type] = ACTIONS(5338), + [anon_sym_anyopaque] = ACTIONS(5338), + [anon_sym_bool] = ACTIONS(5338), + [anon_sym_int] = ACTIONS(5338), + [anon_sym_uint] = ACTIONS(5338), + [anon_sym_float] = ACTIONS(5338), + [anon_sym_range] = ACTIONS(5338), + [anon_sym_i8] = ACTIONS(5338), + [anon_sym_i16] = ACTIONS(5338), + [anon_sym_i32] = ACTIONS(5338), + [anon_sym_i64] = ACTIONS(5338), + [anon_sym_u8] = ACTIONS(5338), + [anon_sym_u16] = ACTIONS(5338), + [anon_sym_u32] = ACTIONS(5338), + [anon_sym_u64] = ACTIONS(5338), + [anon_sym_isize] = ACTIONS(5338), + [anon_sym_usize] = ACTIONS(5338), + [anon_sym_f32] = ACTIONS(5338), + [anon_sym_f64] = ACTIONS(5338), + [anon_sym_c_char] = ACTIONS(5338), + [anon_sym_c_schar] = ACTIONS(5338), + [anon_sym_c_uchar] = ACTIONS(5338), + [anon_sym_c_short] = ACTIONS(5338), + [anon_sym_c_ushort] = ACTIONS(5338), + [anon_sym_c_int] = ACTIONS(5338), + [anon_sym_c_uint] = ACTIONS(5338), + [anon_sym_c_long] = ACTIONS(5338), + [anon_sym_c_ulong] = ACTIONS(5338), + [anon_sym_c_longlong] = ACTIONS(5338), + [anon_sym_c_ulonglong] = ACTIONS(5338), + [anon_sym_c_float] = ACTIONS(5338), + [anon_sym_c_double] = ACTIONS(5338), + [anon_sym_c_longdouble] = ACTIONS(5338), + [anon_sym_PLUS_EQ] = ACTIONS(5336), + [anon_sym_DASH_EQ] = ACTIONS(5336), + [anon_sym_STAR_EQ] = ACTIONS(5336), + [anon_sym_SLASH_EQ] = ACTIONS(5336), + [anon_sym_AMP_EQ] = ACTIONS(5336), + [anon_sym_PIPE_EQ] = ACTIONS(5336), + [anon_sym_xor_EQ] = ACTIONS(5336), + [anon_sym_LT_LT_EQ] = ACTIONS(5336), + [anon_sym_GT_GT_EQ] = ACTIONS(5336), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5336), + [anon_sym_return] = ACTIONS(5338), + [anon_sym_yield] = ACTIONS(5338), + [anon_sym_break] = ACTIONS(5338), + [anon_sym_continue] = ACTIONS(5338), + [anon_sym_defer] = ACTIONS(5338), + [anon_sym_errdefer] = ACTIONS(5338), + [anon_sym_if] = ACTIONS(5338), + [anon_sym_else] = ACTIONS(5338), + [anon_sym_while] = ACTIONS(5338), + [anon_sym_expand] = ACTIONS(5338), + [anon_sym_for] = ACTIONS(5338), + [anon_sym_match] = ACTIONS(5338), + [anon_sym_DOT_DOT] = ACTIONS(5338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5336), + [anon_sym_orelse] = ACTIONS(5338), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_and] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5338), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5338), + [anon_sym_xor] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5338), + [anon_sym_LT_LT_PIPE] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_SLASH] = ACTIONS(5338), + [anon_sym_catch] = ACTIONS(5338), + [anon_sym_TILDE] = ACTIONS(5336), + [anon_sym_try] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym_true] = ACTIONS(5338), + [anon_sym_false] = ACTIONS(5338), + [anon_sym_null] = ACTIONS(5338), + [anon_sym_unreachable] = ACTIONS(5338), + [anon_sym_undefined] = ACTIONS(5338), + [sym_sink] = ACTIONS(5338), + [sym_integer] = ACTIONS(5338), + [sym_float] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(5336), + [sym_multiline_string] = ACTIONS(5336), + [sym_character] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5336), + }, + [STATE(3325)] = { + [sym_identifier] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5342), + [anon_sym_c_func] = ACTIONS(5342), + [anon_sym_BANG] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_struct] = ACTIONS(5342), + [anon_sym_LPAREN] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5340), + [anon_sym_COMMA] = ACTIONS(5340), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5342), + [anon_sym_struct_type_BANG] = ACTIONS(5340), + [anon_sym_QMARK] = ACTIONS(5340), + [anon_sym_AT] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5340), + [anon_sym_void] = ACTIONS(5342), + [anon_sym_noreturn] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_anyopaque] = ACTIONS(5342), + [anon_sym_bool] = ACTIONS(5342), + [anon_sym_int] = ACTIONS(5342), + [anon_sym_uint] = ACTIONS(5342), + [anon_sym_float] = ACTIONS(5342), + [anon_sym_range] = ACTIONS(5342), + [anon_sym_i8] = ACTIONS(5342), + [anon_sym_i16] = ACTIONS(5342), + [anon_sym_i32] = ACTIONS(5342), + [anon_sym_i64] = ACTIONS(5342), + [anon_sym_u8] = ACTIONS(5342), + [anon_sym_u16] = ACTIONS(5342), + [anon_sym_u32] = ACTIONS(5342), + [anon_sym_u64] = ACTIONS(5342), + [anon_sym_isize] = ACTIONS(5342), + [anon_sym_usize] = ACTIONS(5342), + [anon_sym_f32] = ACTIONS(5342), + [anon_sym_f64] = ACTIONS(5342), + [anon_sym_c_char] = ACTIONS(5342), + [anon_sym_c_schar] = ACTIONS(5342), + [anon_sym_c_uchar] = ACTIONS(5342), + [anon_sym_c_short] = ACTIONS(5342), + [anon_sym_c_ushort] = ACTIONS(5342), + [anon_sym_c_int] = ACTIONS(5342), + [anon_sym_c_uint] = ACTIONS(5342), + [anon_sym_c_long] = ACTIONS(5342), + [anon_sym_c_ulong] = ACTIONS(5342), + [anon_sym_c_longlong] = ACTIONS(5342), + [anon_sym_c_ulonglong] = ACTIONS(5342), + [anon_sym_c_float] = ACTIONS(5342), + [anon_sym_c_double] = ACTIONS(5342), + [anon_sym_c_longdouble] = ACTIONS(5342), + [anon_sym_PLUS_EQ] = ACTIONS(5340), + [anon_sym_DASH_EQ] = ACTIONS(5340), + [anon_sym_STAR_EQ] = ACTIONS(5340), + [anon_sym_SLASH_EQ] = ACTIONS(5340), + [anon_sym_AMP_EQ] = ACTIONS(5340), + [anon_sym_PIPE_EQ] = ACTIONS(5340), + [anon_sym_xor_EQ] = ACTIONS(5340), + [anon_sym_LT_LT_EQ] = ACTIONS(5340), + [anon_sym_GT_GT_EQ] = ACTIONS(5340), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5340), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_break] = ACTIONS(5342), + [anon_sym_continue] = ACTIONS(5342), + [anon_sym_defer] = ACTIONS(5342), + [anon_sym_errdefer] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_else] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_expand] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_DOT_DOT] = ACTIONS(5342), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5340), + [anon_sym_orelse] = ACTIONS(5342), + [anon_sym_or] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_EQ_EQ] = ACTIONS(5340), + [anon_sym_BANG_EQ] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5342), + [anon_sym_LT_EQ] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5342), + [anon_sym_GT_EQ] = ACTIONS(5340), + [anon_sym_AMP] = ACTIONS(5342), + [anon_sym_xor] = ACTIONS(5342), + [anon_sym_LT_LT] = ACTIONS(5342), + [anon_sym_GT_GT] = ACTIONS(5342), + [anon_sym_LT_LT_PIPE] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_SLASH] = ACTIONS(5342), + [anon_sym_catch] = ACTIONS(5342), + [anon_sym_TILDE] = ACTIONS(5340), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_DOT] = ACTIONS(5342), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym_true] = ACTIONS(5342), + [anon_sym_false] = ACTIONS(5342), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_unreachable] = ACTIONS(5342), + [anon_sym_undefined] = ACTIONS(5342), + [sym_sink] = ACTIONS(5342), + [sym_integer] = ACTIONS(5342), + [sym_float] = ACTIONS(5340), + [anon_sym_DQUOTE] = ACTIONS(5340), + [sym_multiline_string] = ACTIONS(5340), + [sym_character] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5340), + }, + [STATE(3326)] = { + [sym_identifier] = ACTIONS(4744), + [anon_sym_func] = ACTIONS(4744), + [anon_sym_c_func] = ACTIONS(4744), + [anon_sym_BANG] = ACTIONS(4744), + [anon_sym_EQ] = ACTIONS(4744), + [anon_sym_struct] = ACTIONS(4744), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(4744), + [anon_sym_DOLLAR] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4744), + [anon_sym_struct_type_BANG] = ACTIONS(4742), + [anon_sym_QMARK] = ACTIONS(4742), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_STAR] = ACTIONS(4744), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_void] = ACTIONS(4744), + [anon_sym_noreturn] = ACTIONS(4744), + [anon_sym_type] = ACTIONS(4744), + [anon_sym_anyopaque] = ACTIONS(4744), + [anon_sym_bool] = ACTIONS(4744), + [anon_sym_int] = ACTIONS(4744), + [anon_sym_uint] = ACTIONS(4744), + [anon_sym_float] = ACTIONS(4744), + [anon_sym_range] = ACTIONS(4744), + [anon_sym_i8] = ACTIONS(4744), + [anon_sym_i16] = ACTIONS(4744), + [anon_sym_i32] = ACTIONS(4744), + [anon_sym_i64] = ACTIONS(4744), + [anon_sym_u8] = ACTIONS(4744), + [anon_sym_u16] = ACTIONS(4744), + [anon_sym_u32] = ACTIONS(4744), + [anon_sym_u64] = ACTIONS(4744), + [anon_sym_isize] = ACTIONS(4744), + [anon_sym_usize] = ACTIONS(4744), + [anon_sym_f32] = ACTIONS(4744), + [anon_sym_f64] = ACTIONS(4744), + [anon_sym_c_char] = ACTIONS(4744), + [anon_sym_c_schar] = ACTIONS(4744), + [anon_sym_c_uchar] = ACTIONS(4744), + [anon_sym_c_short] = ACTIONS(4744), + [anon_sym_c_ushort] = ACTIONS(4744), + [anon_sym_c_int] = ACTIONS(4744), + [anon_sym_c_uint] = ACTIONS(4744), + [anon_sym_c_long] = ACTIONS(4744), + [anon_sym_c_ulong] = ACTIONS(4744), + [anon_sym_c_longlong] = ACTIONS(4744), + [anon_sym_c_ulonglong] = ACTIONS(4744), + [anon_sym_c_float] = ACTIONS(4744), + [anon_sym_c_double] = ACTIONS(4744), + [anon_sym_c_longdouble] = ACTIONS(4744), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_AMP_EQ] = ACTIONS(4742), + [anon_sym_PIPE_EQ] = ACTIONS(4742), + [anon_sym_xor_EQ] = ACTIONS(4742), + [anon_sym_LT_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_GT_EQ] = ACTIONS(4742), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4742), + [anon_sym_return] = ACTIONS(4744), + [anon_sym_yield] = ACTIONS(4744), + [anon_sym_break] = ACTIONS(4744), + [anon_sym_continue] = ACTIONS(4744), + [anon_sym_defer] = ACTIONS(4744), + [anon_sym_errdefer] = ACTIONS(4744), + [anon_sym_if] = ACTIONS(4744), + [anon_sym_else] = ACTIONS(4744), + [anon_sym_while] = ACTIONS(4744), + [anon_sym_expand] = ACTIONS(4744), + [anon_sym_for] = ACTIONS(4744), + [anon_sym_match] = ACTIONS(4744), + [anon_sym_DOT_DOT] = ACTIONS(4744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4742), + [anon_sym_orelse] = ACTIONS(4744), + [anon_sym_or] = ACTIONS(4744), + [anon_sym_and] = ACTIONS(4744), + [anon_sym_EQ_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4744), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4744), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_AMP] = ACTIONS(4744), + [anon_sym_xor] = ACTIONS(4744), + [anon_sym_LT_LT] = ACTIONS(4744), + [anon_sym_GT_GT] = ACTIONS(4744), + [anon_sym_LT_LT_PIPE] = ACTIONS(4744), + [anon_sym_PLUS] = ACTIONS(4744), + [anon_sym_SLASH] = ACTIONS(4744), + [anon_sym_catch] = ACTIONS(4744), + [anon_sym_TILDE] = ACTIONS(4742), + [anon_sym_try] = ACTIONS(4744), + [anon_sym_DOT] = ACTIONS(4744), + [anon_sym_CARET] = ACTIONS(4742), + [anon_sym_true] = ACTIONS(4744), + [anon_sym_false] = ACTIONS(4744), + [anon_sym_null] = ACTIONS(4744), + [anon_sym_unreachable] = ACTIONS(4744), + [anon_sym_undefined] = ACTIONS(4744), + [sym_sink] = ACTIONS(4744), + [sym_integer] = ACTIONS(4744), + [sym_float] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [sym_multiline_string] = ACTIONS(4742), + [sym_character] = ACTIONS(4742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4742), + }, + [STATE(3327)] = { + [sym_identifier] = ACTIONS(4748), + [anon_sym_func] = ACTIONS(4748), + [anon_sym_c_func] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4748), + [anon_sym_struct] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_COMMA] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_DOLLAR] = ACTIONS(4746), + [anon_sym_PIPE] = ACTIONS(4748), + [anon_sym_struct_type_BANG] = ACTIONS(4746), + [anon_sym_QMARK] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_void] = ACTIONS(4748), + [anon_sym_noreturn] = ACTIONS(4748), + [anon_sym_type] = ACTIONS(4748), + [anon_sym_anyopaque] = ACTIONS(4748), + [anon_sym_bool] = ACTIONS(4748), + [anon_sym_int] = ACTIONS(4748), + [anon_sym_uint] = ACTIONS(4748), + [anon_sym_float] = ACTIONS(4748), + [anon_sym_range] = ACTIONS(4748), + [anon_sym_i8] = ACTIONS(4748), + [anon_sym_i16] = ACTIONS(4748), + [anon_sym_i32] = ACTIONS(4748), + [anon_sym_i64] = ACTIONS(4748), + [anon_sym_u8] = ACTIONS(4748), + [anon_sym_u16] = ACTIONS(4748), + [anon_sym_u32] = ACTIONS(4748), + [anon_sym_u64] = ACTIONS(4748), + [anon_sym_isize] = ACTIONS(4748), + [anon_sym_usize] = ACTIONS(4748), + [anon_sym_f32] = ACTIONS(4748), + [anon_sym_f64] = ACTIONS(4748), + [anon_sym_c_char] = ACTIONS(4748), + [anon_sym_c_schar] = ACTIONS(4748), + [anon_sym_c_uchar] = ACTIONS(4748), + [anon_sym_c_short] = ACTIONS(4748), + [anon_sym_c_ushort] = ACTIONS(4748), + [anon_sym_c_int] = ACTIONS(4748), + [anon_sym_c_uint] = ACTIONS(4748), + [anon_sym_c_long] = ACTIONS(4748), + [anon_sym_c_ulong] = ACTIONS(4748), + [anon_sym_c_longlong] = ACTIONS(4748), + [anon_sym_c_ulonglong] = ACTIONS(4748), + [anon_sym_c_float] = ACTIONS(4748), + [anon_sym_c_double] = ACTIONS(4748), + [anon_sym_c_longdouble] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4746), + [anon_sym_DASH_EQ] = ACTIONS(4746), + [anon_sym_STAR_EQ] = ACTIONS(4746), + [anon_sym_SLASH_EQ] = ACTIONS(4746), + [anon_sym_AMP_EQ] = ACTIONS(4746), + [anon_sym_PIPE_EQ] = ACTIONS(4746), + [anon_sym_xor_EQ] = ACTIONS(4746), + [anon_sym_LT_LT_EQ] = ACTIONS(4746), + [anon_sym_GT_GT_EQ] = ACTIONS(4746), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4748), + [anon_sym_yield] = ACTIONS(4748), + [anon_sym_break] = ACTIONS(4748), + [anon_sym_continue] = ACTIONS(4748), + [anon_sym_defer] = ACTIONS(4748), + [anon_sym_errdefer] = ACTIONS(4748), + [anon_sym_if] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_while] = ACTIONS(4748), + [anon_sym_expand] = ACTIONS(4748), + [anon_sym_for] = ACTIONS(4748), + [anon_sym_match] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4746), + [anon_sym_orelse] = ACTIONS(4748), + [anon_sym_or] = ACTIONS(4748), + [anon_sym_and] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_LT] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4746), + [anon_sym_AMP] = ACTIONS(4748), + [anon_sym_xor] = ACTIONS(4748), + [anon_sym_LT_LT] = ACTIONS(4748), + [anon_sym_GT_GT] = ACTIONS(4748), + [anon_sym_LT_LT_PIPE] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4748), + [anon_sym_SLASH] = ACTIONS(4748), + [anon_sym_catch] = ACTIONS(4748), + [anon_sym_TILDE] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_CARET] = ACTIONS(4746), + [anon_sym_true] = ACTIONS(4748), + [anon_sym_false] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4748), + [anon_sym_unreachable] = ACTIONS(4748), + [anon_sym_undefined] = ACTIONS(4748), + [sym_sink] = ACTIONS(4748), + [sym_integer] = ACTIONS(4748), + [sym_float] = ACTIONS(4746), + [anon_sym_DQUOTE] = ACTIONS(4746), + [sym_multiline_string] = ACTIONS(4746), + [sym_character] = ACTIONS(4746), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4746), + }, + [STATE(3328)] = { + [sym_identifier] = ACTIONS(5346), + [anon_sym_func] = ACTIONS(5346), + [anon_sym_c_func] = ACTIONS(5346), + [anon_sym_BANG] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_LPAREN] = ACTIONS(5344), + [anon_sym_LBRACE] = ACTIONS(5344), + [anon_sym_COMMA] = ACTIONS(5344), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5346), + [anon_sym_struct_type_BANG] = ACTIONS(5344), + [anon_sym_QMARK] = ACTIONS(5344), + [anon_sym_AT] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5344), + [anon_sym_void] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_type] = ACTIONS(5346), + [anon_sym_anyopaque] = ACTIONS(5346), + [anon_sym_bool] = ACTIONS(5346), + [anon_sym_int] = ACTIONS(5346), + [anon_sym_uint] = ACTIONS(5346), + [anon_sym_float] = ACTIONS(5346), + [anon_sym_range] = ACTIONS(5346), + [anon_sym_i8] = ACTIONS(5346), + [anon_sym_i16] = ACTIONS(5346), + [anon_sym_i32] = ACTIONS(5346), + [anon_sym_i64] = ACTIONS(5346), + [anon_sym_u8] = ACTIONS(5346), + [anon_sym_u16] = ACTIONS(5346), + [anon_sym_u32] = ACTIONS(5346), + [anon_sym_u64] = ACTIONS(5346), + [anon_sym_isize] = ACTIONS(5346), + [anon_sym_usize] = ACTIONS(5346), + [anon_sym_f32] = ACTIONS(5346), + [anon_sym_f64] = ACTIONS(5346), + [anon_sym_c_char] = ACTIONS(5346), + [anon_sym_c_schar] = ACTIONS(5346), + [anon_sym_c_uchar] = ACTIONS(5346), + [anon_sym_c_short] = ACTIONS(5346), + [anon_sym_c_ushort] = ACTIONS(5346), + [anon_sym_c_int] = ACTIONS(5346), + [anon_sym_c_uint] = ACTIONS(5346), + [anon_sym_c_long] = ACTIONS(5346), + [anon_sym_c_ulong] = ACTIONS(5346), + [anon_sym_c_longlong] = ACTIONS(5346), + [anon_sym_c_ulonglong] = ACTIONS(5346), + [anon_sym_c_float] = ACTIONS(5346), + [anon_sym_c_double] = ACTIONS(5346), + [anon_sym_c_longdouble] = ACTIONS(5346), + [anon_sym_PLUS_EQ] = ACTIONS(5344), + [anon_sym_DASH_EQ] = ACTIONS(5344), + [anon_sym_STAR_EQ] = ACTIONS(5344), + [anon_sym_SLASH_EQ] = ACTIONS(5344), + [anon_sym_AMP_EQ] = ACTIONS(5344), + [anon_sym_PIPE_EQ] = ACTIONS(5344), + [anon_sym_xor_EQ] = ACTIONS(5344), + [anon_sym_LT_LT_EQ] = ACTIONS(5344), + [anon_sym_GT_GT_EQ] = ACTIONS(5344), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5344), + [anon_sym_return] = ACTIONS(5346), + [anon_sym_yield] = ACTIONS(5346), + [anon_sym_break] = ACTIONS(5346), + [anon_sym_continue] = ACTIONS(5346), + [anon_sym_defer] = ACTIONS(5346), + [anon_sym_errdefer] = ACTIONS(5346), + [anon_sym_if] = ACTIONS(5346), + [anon_sym_else] = ACTIONS(5346), + [anon_sym_while] = ACTIONS(5346), + [anon_sym_expand] = ACTIONS(5346), + [anon_sym_for] = ACTIONS(5346), + [anon_sym_match] = ACTIONS(5346), + [anon_sym_DOT_DOT] = ACTIONS(5346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5344), + [anon_sym_orelse] = ACTIONS(5346), + [anon_sym_or] = ACTIONS(5346), + [anon_sym_and] = ACTIONS(5346), + [anon_sym_EQ_EQ] = ACTIONS(5344), + [anon_sym_BANG_EQ] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5346), + [anon_sym_LT_EQ] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5346), + [anon_sym_GT_EQ] = ACTIONS(5344), + [anon_sym_AMP] = ACTIONS(5346), + [anon_sym_xor] = ACTIONS(5346), + [anon_sym_LT_LT] = ACTIONS(5346), + [anon_sym_GT_GT] = ACTIONS(5346), + [anon_sym_LT_LT_PIPE] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5346), + [anon_sym_SLASH] = ACTIONS(5346), + [anon_sym_catch] = ACTIONS(5346), + [anon_sym_TILDE] = ACTIONS(5344), + [anon_sym_try] = ACTIONS(5346), + [anon_sym_DOT] = ACTIONS(5346), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym_true] = ACTIONS(5346), + [anon_sym_false] = ACTIONS(5346), + [anon_sym_null] = ACTIONS(5346), + [anon_sym_unreachable] = ACTIONS(5346), + [anon_sym_undefined] = ACTIONS(5346), + [sym_sink] = ACTIONS(5346), + [sym_integer] = ACTIONS(5346), + [sym_float] = ACTIONS(5344), + [anon_sym_DQUOTE] = ACTIONS(5344), + [sym_multiline_string] = ACTIONS(5344), + [sym_character] = ACTIONS(5344), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5344), + }, + [STATE(3329)] = { + [sym_identifier] = ACTIONS(5350), + [anon_sym_func] = ACTIONS(5350), + [anon_sym_c_func] = ACTIONS(5350), + [anon_sym_BANG] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_struct] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5348), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_struct_type_BANG] = ACTIONS(5348), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_AT] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_void] = ACTIONS(5350), + [anon_sym_noreturn] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_anyopaque] = ACTIONS(5350), + [anon_sym_bool] = ACTIONS(5350), + [anon_sym_int] = ACTIONS(5350), + [anon_sym_uint] = ACTIONS(5350), + [anon_sym_float] = ACTIONS(5350), + [anon_sym_range] = ACTIONS(5350), + [anon_sym_i8] = ACTIONS(5350), + [anon_sym_i16] = ACTIONS(5350), + [anon_sym_i32] = ACTIONS(5350), + [anon_sym_i64] = ACTIONS(5350), + [anon_sym_u8] = ACTIONS(5350), + [anon_sym_u16] = ACTIONS(5350), + [anon_sym_u32] = ACTIONS(5350), + [anon_sym_u64] = ACTIONS(5350), + [anon_sym_isize] = ACTIONS(5350), + [anon_sym_usize] = ACTIONS(5350), + [anon_sym_f32] = ACTIONS(5350), + [anon_sym_f64] = ACTIONS(5350), + [anon_sym_c_char] = ACTIONS(5350), + [anon_sym_c_schar] = ACTIONS(5350), + [anon_sym_c_uchar] = ACTIONS(5350), + [anon_sym_c_short] = ACTIONS(5350), + [anon_sym_c_ushort] = ACTIONS(5350), + [anon_sym_c_int] = ACTIONS(5350), + [anon_sym_c_uint] = ACTIONS(5350), + [anon_sym_c_long] = ACTIONS(5350), + [anon_sym_c_ulong] = ACTIONS(5350), + [anon_sym_c_longlong] = ACTIONS(5350), + [anon_sym_c_ulonglong] = ACTIONS(5350), + [anon_sym_c_float] = ACTIONS(5350), + [anon_sym_c_double] = ACTIONS(5350), + [anon_sym_c_longdouble] = ACTIONS(5350), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_xor_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5348), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_break] = ACTIONS(5350), + [anon_sym_continue] = ACTIONS(5350), + [anon_sym_defer] = ACTIONS(5350), + [anon_sym_errdefer] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_else] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_expand] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_DOT_DOT] = ACTIONS(5350), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5348), + [anon_sym_orelse] = ACTIONS(5350), + [anon_sym_or] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_xor] = ACTIONS(5350), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_LT_LT_PIPE] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_catch] = ACTIONS(5350), + [anon_sym_TILDE] = ACTIONS(5348), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_true] = ACTIONS(5350), + [anon_sym_false] = ACTIONS(5350), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_unreachable] = ACTIONS(5350), + [anon_sym_undefined] = ACTIONS(5350), + [sym_sink] = ACTIONS(5350), + [sym_integer] = ACTIONS(5350), + [sym_float] = ACTIONS(5348), + [anon_sym_DQUOTE] = ACTIONS(5348), + [sym_multiline_string] = ACTIONS(5348), + [sym_character] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5348), + }, + [STATE(3330)] = { + [sym_identifier] = ACTIONS(4752), + [anon_sym_func] = ACTIONS(4752), + [anon_sym_c_func] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4752), + [anon_sym_EQ] = ACTIONS(4752), + [anon_sym_struct] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4750), + [anon_sym_COMMA] = ACTIONS(4750), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4752), + [anon_sym_DOLLAR] = ACTIONS(4750), + [anon_sym_PIPE] = ACTIONS(4752), + [anon_sym_struct_type_BANG] = ACTIONS(4750), + [anon_sym_QMARK] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(4750), + [anon_sym_void] = ACTIONS(4752), + [anon_sym_noreturn] = ACTIONS(4752), + [anon_sym_type] = ACTIONS(4752), + [anon_sym_anyopaque] = ACTIONS(4752), + [anon_sym_bool] = ACTIONS(4752), + [anon_sym_int] = ACTIONS(4752), + [anon_sym_uint] = ACTIONS(4752), + [anon_sym_float] = ACTIONS(4752), + [anon_sym_range] = ACTIONS(4752), + [anon_sym_i8] = ACTIONS(4752), + [anon_sym_i16] = ACTIONS(4752), + [anon_sym_i32] = ACTIONS(4752), + [anon_sym_i64] = ACTIONS(4752), + [anon_sym_u8] = ACTIONS(4752), + [anon_sym_u16] = ACTIONS(4752), + [anon_sym_u32] = ACTIONS(4752), + [anon_sym_u64] = ACTIONS(4752), + [anon_sym_isize] = ACTIONS(4752), + [anon_sym_usize] = ACTIONS(4752), + [anon_sym_f32] = ACTIONS(4752), + [anon_sym_f64] = ACTIONS(4752), + [anon_sym_c_char] = ACTIONS(4752), + [anon_sym_c_schar] = ACTIONS(4752), + [anon_sym_c_uchar] = ACTIONS(4752), + [anon_sym_c_short] = ACTIONS(4752), + [anon_sym_c_ushort] = ACTIONS(4752), + [anon_sym_c_int] = ACTIONS(4752), + [anon_sym_c_uint] = ACTIONS(4752), + [anon_sym_c_long] = ACTIONS(4752), + [anon_sym_c_ulong] = ACTIONS(4752), + [anon_sym_c_longlong] = ACTIONS(4752), + [anon_sym_c_ulonglong] = ACTIONS(4752), + [anon_sym_c_float] = ACTIONS(4752), + [anon_sym_c_double] = ACTIONS(4752), + [anon_sym_c_longdouble] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4750), + [anon_sym_DASH_EQ] = ACTIONS(4750), + [anon_sym_STAR_EQ] = ACTIONS(4750), + [anon_sym_SLASH_EQ] = ACTIONS(4750), + [anon_sym_AMP_EQ] = ACTIONS(4750), + [anon_sym_PIPE_EQ] = ACTIONS(4750), + [anon_sym_xor_EQ] = ACTIONS(4750), + [anon_sym_LT_LT_EQ] = ACTIONS(4750), + [anon_sym_GT_GT_EQ] = ACTIONS(4750), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4752), + [anon_sym_yield] = ACTIONS(4752), + [anon_sym_break] = ACTIONS(4752), + [anon_sym_continue] = ACTIONS(4752), + [anon_sym_defer] = ACTIONS(4752), + [anon_sym_errdefer] = ACTIONS(4752), + [anon_sym_if] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4752), + [anon_sym_while] = ACTIONS(4752), + [anon_sym_expand] = ACTIONS(4752), + [anon_sym_for] = ACTIONS(4752), + [anon_sym_match] = ACTIONS(4752), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4750), + [anon_sym_orelse] = ACTIONS(4752), + [anon_sym_or] = ACTIONS(4752), + [anon_sym_and] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_LT] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4750), + [anon_sym_AMP] = ACTIONS(4752), + [anon_sym_xor] = ACTIONS(4752), + [anon_sym_LT_LT] = ACTIONS(4752), + [anon_sym_GT_GT] = ACTIONS(4752), + [anon_sym_LT_LT_PIPE] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4752), + [anon_sym_SLASH] = ACTIONS(4752), + [anon_sym_catch] = ACTIONS(4752), + [anon_sym_TILDE] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4752), + [anon_sym_CARET] = ACTIONS(4750), + [anon_sym_true] = ACTIONS(4752), + [anon_sym_false] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4752), + [anon_sym_unreachable] = ACTIONS(4752), + [anon_sym_undefined] = ACTIONS(4752), + [sym_sink] = ACTIONS(4752), + [sym_integer] = ACTIONS(4752), + [sym_float] = ACTIONS(4750), + [anon_sym_DQUOTE] = ACTIONS(4750), + [sym_multiline_string] = ACTIONS(4750), + [sym_character] = ACTIONS(4750), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4750), + }, + [STATE(3331)] = { + [sym_identifier] = ACTIONS(4756), + [anon_sym_func] = ACTIONS(4756), + [anon_sym_c_func] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_struct] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4754), + [anon_sym_COMMA] = ACTIONS(4754), + [anon_sym_RBRACE] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_struct_type_BANG] = ACTIONS(4754), + [anon_sym_QMARK] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4754), + [anon_sym_void] = ACTIONS(4756), + [anon_sym_noreturn] = ACTIONS(4756), + [anon_sym_type] = ACTIONS(4756), + [anon_sym_anyopaque] = ACTIONS(4756), + [anon_sym_bool] = ACTIONS(4756), + [anon_sym_int] = ACTIONS(4756), + [anon_sym_uint] = ACTIONS(4756), + [anon_sym_float] = ACTIONS(4756), + [anon_sym_range] = ACTIONS(4756), + [anon_sym_i8] = ACTIONS(4756), + [anon_sym_i16] = ACTIONS(4756), + [anon_sym_i32] = ACTIONS(4756), + [anon_sym_i64] = ACTIONS(4756), + [anon_sym_u8] = ACTIONS(4756), + [anon_sym_u16] = ACTIONS(4756), + [anon_sym_u32] = ACTIONS(4756), + [anon_sym_u64] = ACTIONS(4756), + [anon_sym_isize] = ACTIONS(4756), + [anon_sym_usize] = ACTIONS(4756), + [anon_sym_f32] = ACTIONS(4756), + [anon_sym_f64] = ACTIONS(4756), + [anon_sym_c_char] = ACTIONS(4756), + [anon_sym_c_schar] = ACTIONS(4756), + [anon_sym_c_uchar] = ACTIONS(4756), + [anon_sym_c_short] = ACTIONS(4756), + [anon_sym_c_ushort] = ACTIONS(4756), + [anon_sym_c_int] = ACTIONS(4756), + [anon_sym_c_uint] = ACTIONS(4756), + [anon_sym_c_long] = ACTIONS(4756), + [anon_sym_c_ulong] = ACTIONS(4756), + [anon_sym_c_longlong] = ACTIONS(4756), + [anon_sym_c_ulonglong] = ACTIONS(4756), + [anon_sym_c_float] = ACTIONS(4756), + [anon_sym_c_double] = ACTIONS(4756), + [anon_sym_c_longdouble] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4754), + [anon_sym_DASH_EQ] = ACTIONS(4754), + [anon_sym_STAR_EQ] = ACTIONS(4754), + [anon_sym_SLASH_EQ] = ACTIONS(4754), + [anon_sym_AMP_EQ] = ACTIONS(4754), + [anon_sym_PIPE_EQ] = ACTIONS(4754), + [anon_sym_xor_EQ] = ACTIONS(4754), + [anon_sym_LT_LT_EQ] = ACTIONS(4754), + [anon_sym_GT_GT_EQ] = ACTIONS(4754), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4756), + [anon_sym_yield] = ACTIONS(4756), + [anon_sym_break] = ACTIONS(4756), + [anon_sym_continue] = ACTIONS(4756), + [anon_sym_defer] = ACTIONS(4756), + [anon_sym_errdefer] = ACTIONS(4756), + [anon_sym_if] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4756), + [anon_sym_while] = ACTIONS(4756), + [anon_sym_expand] = ACTIONS(4756), + [anon_sym_for] = ACTIONS(4756), + [anon_sym_match] = ACTIONS(4756), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4754), + [anon_sym_orelse] = ACTIONS(4756), + [anon_sym_or] = ACTIONS(4756), + [anon_sym_and] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + [anon_sym_xor] = ACTIONS(4756), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4756), + [anon_sym_LT_LT_PIPE] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4756), + [anon_sym_SLASH] = ACTIONS(4756), + [anon_sym_catch] = ACTIONS(4756), + [anon_sym_TILDE] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4756), + [anon_sym_CARET] = ACTIONS(4754), + [anon_sym_true] = ACTIONS(4756), + [anon_sym_false] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4756), + [anon_sym_unreachable] = ACTIONS(4756), + [anon_sym_undefined] = ACTIONS(4756), + [sym_sink] = ACTIONS(4756), + [sym_integer] = ACTIONS(4756), + [sym_float] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [sym_multiline_string] = ACTIONS(4754), + [sym_character] = ACTIONS(4754), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4754), + }, + [STATE(3332)] = { + [sym_identifier] = ACTIONS(4760), + [anon_sym_func] = ACTIONS(4760), + [anon_sym_c_func] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4760), + [anon_sym_EQ] = ACTIONS(4760), + [anon_sym_struct] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4758), + [anon_sym_COMMA] = ACTIONS(4758), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4760), + [anon_sym_DOLLAR] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4760), + [anon_sym_struct_type_BANG] = ACTIONS(4758), + [anon_sym_QMARK] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_void] = ACTIONS(4760), + [anon_sym_noreturn] = ACTIONS(4760), + [anon_sym_type] = ACTIONS(4760), + [anon_sym_anyopaque] = ACTIONS(4760), + [anon_sym_bool] = ACTIONS(4760), + [anon_sym_int] = ACTIONS(4760), + [anon_sym_uint] = ACTIONS(4760), + [anon_sym_float] = ACTIONS(4760), + [anon_sym_range] = ACTIONS(4760), + [anon_sym_i8] = ACTIONS(4760), + [anon_sym_i16] = ACTIONS(4760), + [anon_sym_i32] = ACTIONS(4760), + [anon_sym_i64] = ACTIONS(4760), + [anon_sym_u8] = ACTIONS(4760), + [anon_sym_u16] = ACTIONS(4760), + [anon_sym_u32] = ACTIONS(4760), + [anon_sym_u64] = ACTIONS(4760), + [anon_sym_isize] = ACTIONS(4760), + [anon_sym_usize] = ACTIONS(4760), + [anon_sym_f32] = ACTIONS(4760), + [anon_sym_f64] = ACTIONS(4760), + [anon_sym_c_char] = ACTIONS(4760), + [anon_sym_c_schar] = ACTIONS(4760), + [anon_sym_c_uchar] = ACTIONS(4760), + [anon_sym_c_short] = ACTIONS(4760), + [anon_sym_c_ushort] = ACTIONS(4760), + [anon_sym_c_int] = ACTIONS(4760), + [anon_sym_c_uint] = ACTIONS(4760), + [anon_sym_c_long] = ACTIONS(4760), + [anon_sym_c_ulong] = ACTIONS(4760), + [anon_sym_c_longlong] = ACTIONS(4760), + [anon_sym_c_ulonglong] = ACTIONS(4760), + [anon_sym_c_float] = ACTIONS(4760), + [anon_sym_c_double] = ACTIONS(4760), + [anon_sym_c_longdouble] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4758), + [anon_sym_DASH_EQ] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(4758), + [anon_sym_SLASH_EQ] = ACTIONS(4758), + [anon_sym_AMP_EQ] = ACTIONS(4758), + [anon_sym_PIPE_EQ] = ACTIONS(4758), + [anon_sym_xor_EQ] = ACTIONS(4758), + [anon_sym_LT_LT_EQ] = ACTIONS(4758), + [anon_sym_GT_GT_EQ] = ACTIONS(4758), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4760), + [anon_sym_yield] = ACTIONS(4760), + [anon_sym_break] = ACTIONS(4760), + [anon_sym_continue] = ACTIONS(4760), + [anon_sym_defer] = ACTIONS(4760), + [anon_sym_errdefer] = ACTIONS(4760), + [anon_sym_if] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4760), + [anon_sym_while] = ACTIONS(4760), + [anon_sym_expand] = ACTIONS(4760), + [anon_sym_for] = ACTIONS(4760), + [anon_sym_match] = ACTIONS(4760), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4758), + [anon_sym_orelse] = ACTIONS(4760), + [anon_sym_or] = ACTIONS(4760), + [anon_sym_and] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4758), + [anon_sym_AMP] = ACTIONS(4760), + [anon_sym_xor] = ACTIONS(4760), + [anon_sym_LT_LT] = ACTIONS(4760), + [anon_sym_GT_GT] = ACTIONS(4760), + [anon_sym_LT_LT_PIPE] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_catch] = ACTIONS(4760), + [anon_sym_TILDE] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4760), + [anon_sym_CARET] = ACTIONS(4758), + [anon_sym_true] = ACTIONS(4760), + [anon_sym_false] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4760), + [anon_sym_unreachable] = ACTIONS(4760), + [anon_sym_undefined] = ACTIONS(4760), + [sym_sink] = ACTIONS(4760), + [sym_integer] = ACTIONS(4760), + [sym_float] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [sym_multiline_string] = ACTIONS(4758), + [sym_character] = ACTIONS(4758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4758), + }, + [STATE(3333)] = { + [sym_identifier] = ACTIONS(4764), + [anon_sym_func] = ACTIONS(4764), + [anon_sym_c_func] = ACTIONS(4764), + [anon_sym_BANG] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4764), + [anon_sym_struct] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4764), + [anon_sym_DOLLAR] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4764), + [anon_sym_struct_type_BANG] = ACTIONS(4762), + [anon_sym_QMARK] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4762), + [anon_sym_void] = ACTIONS(4764), + [anon_sym_noreturn] = ACTIONS(4764), + [anon_sym_type] = ACTIONS(4764), + [anon_sym_anyopaque] = ACTIONS(4764), + [anon_sym_bool] = ACTIONS(4764), + [anon_sym_int] = ACTIONS(4764), + [anon_sym_uint] = ACTIONS(4764), + [anon_sym_float] = ACTIONS(4764), + [anon_sym_range] = ACTIONS(4764), + [anon_sym_i8] = ACTIONS(4764), + [anon_sym_i16] = ACTIONS(4764), + [anon_sym_i32] = ACTIONS(4764), + [anon_sym_i64] = ACTIONS(4764), + [anon_sym_u8] = ACTIONS(4764), + [anon_sym_u16] = ACTIONS(4764), + [anon_sym_u32] = ACTIONS(4764), + [anon_sym_u64] = ACTIONS(4764), + [anon_sym_isize] = ACTIONS(4764), + [anon_sym_usize] = ACTIONS(4764), + [anon_sym_f32] = ACTIONS(4764), + [anon_sym_f64] = ACTIONS(4764), + [anon_sym_c_char] = ACTIONS(4764), + [anon_sym_c_schar] = ACTIONS(4764), + [anon_sym_c_uchar] = ACTIONS(4764), + [anon_sym_c_short] = ACTIONS(4764), + [anon_sym_c_ushort] = ACTIONS(4764), + [anon_sym_c_int] = ACTIONS(4764), + [anon_sym_c_uint] = ACTIONS(4764), + [anon_sym_c_long] = ACTIONS(4764), + [anon_sym_c_ulong] = ACTIONS(4764), + [anon_sym_c_longlong] = ACTIONS(4764), + [anon_sym_c_ulonglong] = ACTIONS(4764), + [anon_sym_c_float] = ACTIONS(4764), + [anon_sym_c_double] = ACTIONS(4764), + [anon_sym_c_longdouble] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4762), + [anon_sym_DASH_EQ] = ACTIONS(4762), + [anon_sym_STAR_EQ] = ACTIONS(4762), + [anon_sym_SLASH_EQ] = ACTIONS(4762), + [anon_sym_AMP_EQ] = ACTIONS(4762), + [anon_sym_PIPE_EQ] = ACTIONS(4762), + [anon_sym_xor_EQ] = ACTIONS(4762), + [anon_sym_LT_LT_EQ] = ACTIONS(4762), + [anon_sym_GT_GT_EQ] = ACTIONS(4762), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4764), + [anon_sym_yield] = ACTIONS(4764), + [anon_sym_break] = ACTIONS(4764), + [anon_sym_continue] = ACTIONS(4764), + [anon_sym_defer] = ACTIONS(4764), + [anon_sym_errdefer] = ACTIONS(4764), + [anon_sym_if] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4764), + [anon_sym_while] = ACTIONS(4764), + [anon_sym_expand] = ACTIONS(4764), + [anon_sym_for] = ACTIONS(4764), + [anon_sym_match] = ACTIONS(4764), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4762), + [anon_sym_orelse] = ACTIONS(4764), + [anon_sym_or] = ACTIONS(4764), + [anon_sym_and] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4764), + [anon_sym_xor] = ACTIONS(4764), + [anon_sym_LT_LT] = ACTIONS(4764), + [anon_sym_GT_GT] = ACTIONS(4764), + [anon_sym_LT_LT_PIPE] = ACTIONS(4764), + [anon_sym_PLUS] = ACTIONS(4764), + [anon_sym_SLASH] = ACTIONS(4764), + [anon_sym_catch] = ACTIONS(4764), + [anon_sym_TILDE] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4764), + [anon_sym_CARET] = ACTIONS(4762), + [anon_sym_true] = ACTIONS(4764), + [anon_sym_false] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(4764), + [anon_sym_unreachable] = ACTIONS(4764), + [anon_sym_undefined] = ACTIONS(4764), + [sym_sink] = ACTIONS(4764), + [sym_integer] = ACTIONS(4764), + [sym_float] = ACTIONS(4762), + [anon_sym_DQUOTE] = ACTIONS(4762), + [sym_multiline_string] = ACTIONS(4762), + [sym_character] = ACTIONS(4762), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4762), + }, + [STATE(3334)] = { + [sym_identifier] = ACTIONS(4768), + [anon_sym_func] = ACTIONS(4768), + [anon_sym_c_func] = ACTIONS(4768), + [anon_sym_BANG] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_struct] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4766), + [anon_sym_COMMA] = ACTIONS(4766), + [anon_sym_RBRACE] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4768), + [anon_sym_struct_type_BANG] = ACTIONS(4766), + [anon_sym_QMARK] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_void] = ACTIONS(4768), + [anon_sym_noreturn] = ACTIONS(4768), + [anon_sym_type] = ACTIONS(4768), + [anon_sym_anyopaque] = ACTIONS(4768), + [anon_sym_bool] = ACTIONS(4768), + [anon_sym_int] = ACTIONS(4768), + [anon_sym_uint] = ACTIONS(4768), + [anon_sym_float] = ACTIONS(4768), + [anon_sym_range] = ACTIONS(4768), + [anon_sym_i8] = ACTIONS(4768), + [anon_sym_i16] = ACTIONS(4768), + [anon_sym_i32] = ACTIONS(4768), + [anon_sym_i64] = ACTIONS(4768), + [anon_sym_u8] = ACTIONS(4768), + [anon_sym_u16] = ACTIONS(4768), + [anon_sym_u32] = ACTIONS(4768), + [anon_sym_u64] = ACTIONS(4768), + [anon_sym_isize] = ACTIONS(4768), + [anon_sym_usize] = ACTIONS(4768), + [anon_sym_f32] = ACTIONS(4768), + [anon_sym_f64] = ACTIONS(4768), + [anon_sym_c_char] = ACTIONS(4768), + [anon_sym_c_schar] = ACTIONS(4768), + [anon_sym_c_uchar] = ACTIONS(4768), + [anon_sym_c_short] = ACTIONS(4768), + [anon_sym_c_ushort] = ACTIONS(4768), + [anon_sym_c_int] = ACTIONS(4768), + [anon_sym_c_uint] = ACTIONS(4768), + [anon_sym_c_long] = ACTIONS(4768), + [anon_sym_c_ulong] = ACTIONS(4768), + [anon_sym_c_longlong] = ACTIONS(4768), + [anon_sym_c_ulonglong] = ACTIONS(4768), + [anon_sym_c_float] = ACTIONS(4768), + [anon_sym_c_double] = ACTIONS(4768), + [anon_sym_c_longdouble] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4766), + [anon_sym_DASH_EQ] = ACTIONS(4766), + [anon_sym_STAR_EQ] = ACTIONS(4766), + [anon_sym_SLASH_EQ] = ACTIONS(4766), + [anon_sym_AMP_EQ] = ACTIONS(4766), + [anon_sym_PIPE_EQ] = ACTIONS(4766), + [anon_sym_xor_EQ] = ACTIONS(4766), + [anon_sym_LT_LT_EQ] = ACTIONS(4766), + [anon_sym_GT_GT_EQ] = ACTIONS(4766), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4766), + [anon_sym_return] = ACTIONS(4768), + [anon_sym_yield] = ACTIONS(4768), + [anon_sym_break] = ACTIONS(4768), + [anon_sym_continue] = ACTIONS(4768), + [anon_sym_defer] = ACTIONS(4768), + [anon_sym_errdefer] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_while] = ACTIONS(4768), + [anon_sym_expand] = ACTIONS(4768), + [anon_sym_for] = ACTIONS(4768), + [anon_sym_match] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4766), + [anon_sym_orelse] = ACTIONS(4768), + [anon_sym_or] = ACTIONS(4768), + [anon_sym_and] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4766), + [anon_sym_AMP] = ACTIONS(4768), + [anon_sym_xor] = ACTIONS(4768), + [anon_sym_LT_LT] = ACTIONS(4768), + [anon_sym_GT_GT] = ACTIONS(4768), + [anon_sym_LT_LT_PIPE] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4768), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_catch] = ACTIONS(4768), + [anon_sym_TILDE] = ACTIONS(4766), + [anon_sym_try] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_CARET] = ACTIONS(4766), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_unreachable] = ACTIONS(4768), + [anon_sym_undefined] = ACTIONS(4768), + [sym_sink] = ACTIONS(4768), + [sym_integer] = ACTIONS(4768), + [sym_float] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [sym_multiline_string] = ACTIONS(4766), + [sym_character] = ACTIONS(4766), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4766), + }, + [STATE(3335)] = { + [sym_identifier] = ACTIONS(4772), + [anon_sym_func] = ACTIONS(4772), + [anon_sym_c_func] = ACTIONS(4772), + [anon_sym_BANG] = ACTIONS(4772), + [anon_sym_EQ] = ACTIONS(4772), + [anon_sym_struct] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4772), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4772), + [anon_sym_struct_type_BANG] = ACTIONS(4770), + [anon_sym_QMARK] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_void] = ACTIONS(4772), + [anon_sym_noreturn] = ACTIONS(4772), + [anon_sym_type] = ACTIONS(4772), + [anon_sym_anyopaque] = ACTIONS(4772), + [anon_sym_bool] = ACTIONS(4772), + [anon_sym_int] = ACTIONS(4772), + [anon_sym_uint] = ACTIONS(4772), + [anon_sym_float] = ACTIONS(4772), + [anon_sym_range] = ACTIONS(4772), + [anon_sym_i8] = ACTIONS(4772), + [anon_sym_i16] = ACTIONS(4772), + [anon_sym_i32] = ACTIONS(4772), + [anon_sym_i64] = ACTIONS(4772), + [anon_sym_u8] = ACTIONS(4772), + [anon_sym_u16] = ACTIONS(4772), + [anon_sym_u32] = ACTIONS(4772), + [anon_sym_u64] = ACTIONS(4772), + [anon_sym_isize] = ACTIONS(4772), + [anon_sym_usize] = ACTIONS(4772), + [anon_sym_f32] = ACTIONS(4772), + [anon_sym_f64] = ACTIONS(4772), + [anon_sym_c_char] = ACTIONS(4772), + [anon_sym_c_schar] = ACTIONS(4772), + [anon_sym_c_uchar] = ACTIONS(4772), + [anon_sym_c_short] = ACTIONS(4772), + [anon_sym_c_ushort] = ACTIONS(4772), + [anon_sym_c_int] = ACTIONS(4772), + [anon_sym_c_uint] = ACTIONS(4772), + [anon_sym_c_long] = ACTIONS(4772), + [anon_sym_c_ulong] = ACTIONS(4772), + [anon_sym_c_longlong] = ACTIONS(4772), + [anon_sym_c_ulonglong] = ACTIONS(4772), + [anon_sym_c_float] = ACTIONS(4772), + [anon_sym_c_double] = ACTIONS(4772), + [anon_sym_c_longdouble] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4770), + [anon_sym_DASH_EQ] = ACTIONS(4770), + [anon_sym_STAR_EQ] = ACTIONS(4770), + [anon_sym_SLASH_EQ] = ACTIONS(4770), + [anon_sym_AMP_EQ] = ACTIONS(4770), + [anon_sym_PIPE_EQ] = ACTIONS(4770), + [anon_sym_xor_EQ] = ACTIONS(4770), + [anon_sym_LT_LT_EQ] = ACTIONS(4770), + [anon_sym_GT_GT_EQ] = ACTIONS(4770), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4770), + [anon_sym_return] = ACTIONS(4772), + [anon_sym_yield] = ACTIONS(4772), + [anon_sym_break] = ACTIONS(4772), + [anon_sym_continue] = ACTIONS(4772), + [anon_sym_defer] = ACTIONS(4772), + [anon_sym_errdefer] = ACTIONS(4772), + [anon_sym_if] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4772), + [anon_sym_while] = ACTIONS(4772), + [anon_sym_expand] = ACTIONS(4772), + [anon_sym_for] = ACTIONS(4772), + [anon_sym_match] = ACTIONS(4772), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4770), + [anon_sym_orelse] = ACTIONS(4772), + [anon_sym_or] = ACTIONS(4772), + [anon_sym_and] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_AMP] = ACTIONS(4772), + [anon_sym_xor] = ACTIONS(4772), + [anon_sym_LT_LT] = ACTIONS(4772), + [anon_sym_GT_GT] = ACTIONS(4772), + [anon_sym_LT_LT_PIPE] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4772), + [anon_sym_SLASH] = ACTIONS(4772), + [anon_sym_catch] = ACTIONS(4772), + [anon_sym_TILDE] = ACTIONS(4770), + [anon_sym_try] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4772), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym_true] = ACTIONS(4772), + [anon_sym_false] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(4772), + [anon_sym_unreachable] = ACTIONS(4772), + [anon_sym_undefined] = ACTIONS(4772), + [sym_sink] = ACTIONS(4772), + [sym_integer] = ACTIONS(4772), + [sym_float] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [sym_multiline_string] = ACTIONS(4770), + [sym_character] = ACTIONS(4770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4770), + }, + [STATE(3336)] = { + [sym_identifier] = ACTIONS(4776), + [anon_sym_func] = ACTIONS(4776), + [anon_sym_c_func] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4776), + [anon_sym_struct] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4774), + [anon_sym_COMMA] = ACTIONS(4774), + [anon_sym_RBRACE] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4776), + [anon_sym_DOLLAR] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4776), + [anon_sym_struct_type_BANG] = ACTIONS(4774), + [anon_sym_QMARK] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4774), + [anon_sym_void] = ACTIONS(4776), + [anon_sym_noreturn] = ACTIONS(4776), + [anon_sym_type] = ACTIONS(4776), + [anon_sym_anyopaque] = ACTIONS(4776), + [anon_sym_bool] = ACTIONS(4776), + [anon_sym_int] = ACTIONS(4776), + [anon_sym_uint] = ACTIONS(4776), + [anon_sym_float] = ACTIONS(4776), + [anon_sym_range] = ACTIONS(4776), + [anon_sym_i8] = ACTIONS(4776), + [anon_sym_i16] = ACTIONS(4776), + [anon_sym_i32] = ACTIONS(4776), + [anon_sym_i64] = ACTIONS(4776), + [anon_sym_u8] = ACTIONS(4776), + [anon_sym_u16] = ACTIONS(4776), + [anon_sym_u32] = ACTIONS(4776), + [anon_sym_u64] = ACTIONS(4776), + [anon_sym_isize] = ACTIONS(4776), + [anon_sym_usize] = ACTIONS(4776), + [anon_sym_f32] = ACTIONS(4776), + [anon_sym_f64] = ACTIONS(4776), + [anon_sym_c_char] = ACTIONS(4776), + [anon_sym_c_schar] = ACTIONS(4776), + [anon_sym_c_uchar] = ACTIONS(4776), + [anon_sym_c_short] = ACTIONS(4776), + [anon_sym_c_ushort] = ACTIONS(4776), + [anon_sym_c_int] = ACTIONS(4776), + [anon_sym_c_uint] = ACTIONS(4776), + [anon_sym_c_long] = ACTIONS(4776), + [anon_sym_c_ulong] = ACTIONS(4776), + [anon_sym_c_longlong] = ACTIONS(4776), + [anon_sym_c_ulonglong] = ACTIONS(4776), + [anon_sym_c_float] = ACTIONS(4776), + [anon_sym_c_double] = ACTIONS(4776), + [anon_sym_c_longdouble] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4774), + [anon_sym_DASH_EQ] = ACTIONS(4774), + [anon_sym_STAR_EQ] = ACTIONS(4774), + [anon_sym_SLASH_EQ] = ACTIONS(4774), + [anon_sym_AMP_EQ] = ACTIONS(4774), + [anon_sym_PIPE_EQ] = ACTIONS(4774), + [anon_sym_xor_EQ] = ACTIONS(4774), + [anon_sym_LT_LT_EQ] = ACTIONS(4774), + [anon_sym_GT_GT_EQ] = ACTIONS(4774), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4776), + [anon_sym_yield] = ACTIONS(4776), + [anon_sym_break] = ACTIONS(4776), + [anon_sym_continue] = ACTIONS(4776), + [anon_sym_defer] = ACTIONS(4776), + [anon_sym_errdefer] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_expand] = ACTIONS(4776), + [anon_sym_for] = ACTIONS(4776), + [anon_sym_match] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4774), + [anon_sym_orelse] = ACTIONS(4776), + [anon_sym_or] = ACTIONS(4776), + [anon_sym_and] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4774), + [anon_sym_AMP] = ACTIONS(4776), + [anon_sym_xor] = ACTIONS(4776), + [anon_sym_LT_LT] = ACTIONS(4776), + [anon_sym_GT_GT] = ACTIONS(4776), + [anon_sym_LT_LT_PIPE] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4776), + [anon_sym_SLASH] = ACTIONS(4776), + [anon_sym_catch] = ACTIONS(4776), + [anon_sym_TILDE] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_CARET] = ACTIONS(4774), + [anon_sym_true] = ACTIONS(4776), + [anon_sym_false] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4776), + [anon_sym_unreachable] = ACTIONS(4776), + [anon_sym_undefined] = ACTIONS(4776), + [sym_sink] = ACTIONS(4776), + [sym_integer] = ACTIONS(4776), + [sym_float] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [sym_multiline_string] = ACTIONS(4774), + [sym_character] = ACTIONS(4774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4774), + }, + [STATE(3337)] = { + [sym_identifier] = ACTIONS(4780), + [anon_sym_func] = ACTIONS(4780), + [anon_sym_c_func] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_struct] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_struct_type_BANG] = ACTIONS(4778), + [anon_sym_QMARK] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_void] = ACTIONS(4780), + [anon_sym_noreturn] = ACTIONS(4780), + [anon_sym_type] = ACTIONS(4780), + [anon_sym_anyopaque] = ACTIONS(4780), + [anon_sym_bool] = ACTIONS(4780), + [anon_sym_int] = ACTIONS(4780), + [anon_sym_uint] = ACTIONS(4780), + [anon_sym_float] = ACTIONS(4780), + [anon_sym_range] = ACTIONS(4780), + [anon_sym_i8] = ACTIONS(4780), + [anon_sym_i16] = ACTIONS(4780), + [anon_sym_i32] = ACTIONS(4780), + [anon_sym_i64] = ACTIONS(4780), + [anon_sym_u8] = ACTIONS(4780), + [anon_sym_u16] = ACTIONS(4780), + [anon_sym_u32] = ACTIONS(4780), + [anon_sym_u64] = ACTIONS(4780), + [anon_sym_isize] = ACTIONS(4780), + [anon_sym_usize] = ACTIONS(4780), + [anon_sym_f32] = ACTIONS(4780), + [anon_sym_f64] = ACTIONS(4780), + [anon_sym_c_char] = ACTIONS(4780), + [anon_sym_c_schar] = ACTIONS(4780), + [anon_sym_c_uchar] = ACTIONS(4780), + [anon_sym_c_short] = ACTIONS(4780), + [anon_sym_c_ushort] = ACTIONS(4780), + [anon_sym_c_int] = ACTIONS(4780), + [anon_sym_c_uint] = ACTIONS(4780), + [anon_sym_c_long] = ACTIONS(4780), + [anon_sym_c_ulong] = ACTIONS(4780), + [anon_sym_c_longlong] = ACTIONS(4780), + [anon_sym_c_ulonglong] = ACTIONS(4780), + [anon_sym_c_float] = ACTIONS(4780), + [anon_sym_c_double] = ACTIONS(4780), + [anon_sym_c_longdouble] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4778), + [anon_sym_DASH_EQ] = ACTIONS(4778), + [anon_sym_STAR_EQ] = ACTIONS(4778), + [anon_sym_SLASH_EQ] = ACTIONS(4778), + [anon_sym_AMP_EQ] = ACTIONS(4778), + [anon_sym_PIPE_EQ] = ACTIONS(4778), + [anon_sym_xor_EQ] = ACTIONS(4778), + [anon_sym_LT_LT_EQ] = ACTIONS(4778), + [anon_sym_GT_GT_EQ] = ACTIONS(4778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4780), + [anon_sym_yield] = ACTIONS(4780), + [anon_sym_break] = ACTIONS(4780), + [anon_sym_continue] = ACTIONS(4780), + [anon_sym_defer] = ACTIONS(4780), + [anon_sym_errdefer] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_while] = ACTIONS(4780), + [anon_sym_expand] = ACTIONS(4780), + [anon_sym_for] = ACTIONS(4780), + [anon_sym_match] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4778), + [anon_sym_orelse] = ACTIONS(4780), + [anon_sym_or] = ACTIONS(4780), + [anon_sym_and] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + [anon_sym_xor] = ACTIONS(4780), + [anon_sym_LT_LT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4780), + [anon_sym_LT_LT_PIPE] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4780), + [anon_sym_SLASH] = ACTIONS(4780), + [anon_sym_catch] = ACTIONS(4780), + [anon_sym_TILDE] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_CARET] = ACTIONS(4778), + [anon_sym_true] = ACTIONS(4780), + [anon_sym_false] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4780), + [anon_sym_unreachable] = ACTIONS(4780), + [anon_sym_undefined] = ACTIONS(4780), + [sym_sink] = ACTIONS(4780), + [sym_integer] = ACTIONS(4780), + [sym_float] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(4778), + [sym_multiline_string] = ACTIONS(4778), + [sym_character] = ACTIONS(4778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4778), + }, + [STATE(3338)] = { + [sym_identifier] = ACTIONS(4784), + [anon_sym_func] = ACTIONS(4784), + [anon_sym_c_func] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_struct] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_COMMA] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4782), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_struct_type_BANG] = ACTIONS(4782), + [anon_sym_QMARK] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_void] = ACTIONS(4784), + [anon_sym_noreturn] = ACTIONS(4784), + [anon_sym_type] = ACTIONS(4784), + [anon_sym_anyopaque] = ACTIONS(4784), + [anon_sym_bool] = ACTIONS(4784), + [anon_sym_int] = ACTIONS(4784), + [anon_sym_uint] = ACTIONS(4784), + [anon_sym_float] = ACTIONS(4784), + [anon_sym_range] = ACTIONS(4784), + [anon_sym_i8] = ACTIONS(4784), + [anon_sym_i16] = ACTIONS(4784), + [anon_sym_i32] = ACTIONS(4784), + [anon_sym_i64] = ACTIONS(4784), + [anon_sym_u8] = ACTIONS(4784), + [anon_sym_u16] = ACTIONS(4784), + [anon_sym_u32] = ACTIONS(4784), + [anon_sym_u64] = ACTIONS(4784), + [anon_sym_isize] = ACTIONS(4784), + [anon_sym_usize] = ACTIONS(4784), + [anon_sym_f32] = ACTIONS(4784), + [anon_sym_f64] = ACTIONS(4784), + [anon_sym_c_char] = ACTIONS(4784), + [anon_sym_c_schar] = ACTIONS(4784), + [anon_sym_c_uchar] = ACTIONS(4784), + [anon_sym_c_short] = ACTIONS(4784), + [anon_sym_c_ushort] = ACTIONS(4784), + [anon_sym_c_int] = ACTIONS(4784), + [anon_sym_c_uint] = ACTIONS(4784), + [anon_sym_c_long] = ACTIONS(4784), + [anon_sym_c_ulong] = ACTIONS(4784), + [anon_sym_c_longlong] = ACTIONS(4784), + [anon_sym_c_ulonglong] = ACTIONS(4784), + [anon_sym_c_float] = ACTIONS(4784), + [anon_sym_c_double] = ACTIONS(4784), + [anon_sym_c_longdouble] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4782), + [anon_sym_DASH_EQ] = ACTIONS(4782), + [anon_sym_STAR_EQ] = ACTIONS(4782), + [anon_sym_SLASH_EQ] = ACTIONS(4782), + [anon_sym_AMP_EQ] = ACTIONS(4782), + [anon_sym_PIPE_EQ] = ACTIONS(4782), + [anon_sym_xor_EQ] = ACTIONS(4782), + [anon_sym_LT_LT_EQ] = ACTIONS(4782), + [anon_sym_GT_GT_EQ] = ACTIONS(4782), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4782), + [anon_sym_return] = ACTIONS(4784), + [anon_sym_yield] = ACTIONS(4784), + [anon_sym_break] = ACTIONS(4784), + [anon_sym_continue] = ACTIONS(4784), + [anon_sym_defer] = ACTIONS(4784), + [anon_sym_errdefer] = ACTIONS(4784), + [anon_sym_if] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_while] = ACTIONS(4784), + [anon_sym_expand] = ACTIONS(4784), + [anon_sym_for] = ACTIONS(4784), + [anon_sym_match] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4782), + [anon_sym_orelse] = ACTIONS(4784), + [anon_sym_or] = ACTIONS(4784), + [anon_sym_and] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), + [anon_sym_xor] = ACTIONS(4784), + [anon_sym_LT_LT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4784), + [anon_sym_LT_LT_PIPE] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4784), + [anon_sym_SLASH] = ACTIONS(4784), + [anon_sym_catch] = ACTIONS(4784), + [anon_sym_TILDE] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_true] = ACTIONS(4784), + [anon_sym_false] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4784), + [anon_sym_unreachable] = ACTIONS(4784), + [anon_sym_undefined] = ACTIONS(4784), + [sym_sink] = ACTIONS(4784), + [sym_integer] = ACTIONS(4784), + [sym_float] = ACTIONS(4782), + [anon_sym_DQUOTE] = ACTIONS(4782), + [sym_multiline_string] = ACTIONS(4782), + [sym_character] = ACTIONS(4782), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4782), + }, + [STATE(3339)] = { + [sym_identifier] = ACTIONS(5354), + [anon_sym_func] = ACTIONS(5354), + [anon_sym_c_func] = ACTIONS(5354), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5352), + [anon_sym_LBRACE] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5354), + [anon_sym_struct_type_BANG] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_AT] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_void] = ACTIONS(5354), + [anon_sym_noreturn] = ACTIONS(5354), + [anon_sym_type] = ACTIONS(5354), + [anon_sym_anyopaque] = ACTIONS(5354), + [anon_sym_bool] = ACTIONS(5354), + [anon_sym_int] = ACTIONS(5354), + [anon_sym_uint] = ACTIONS(5354), + [anon_sym_float] = ACTIONS(5354), + [anon_sym_range] = ACTIONS(5354), + [anon_sym_i8] = ACTIONS(5354), + [anon_sym_i16] = ACTIONS(5354), + [anon_sym_i32] = ACTIONS(5354), + [anon_sym_i64] = ACTIONS(5354), + [anon_sym_u8] = ACTIONS(5354), + [anon_sym_u16] = ACTIONS(5354), + [anon_sym_u32] = ACTIONS(5354), + [anon_sym_u64] = ACTIONS(5354), + [anon_sym_isize] = ACTIONS(5354), + [anon_sym_usize] = ACTIONS(5354), + [anon_sym_f32] = ACTIONS(5354), + [anon_sym_f64] = ACTIONS(5354), + [anon_sym_c_char] = ACTIONS(5354), + [anon_sym_c_schar] = ACTIONS(5354), + [anon_sym_c_uchar] = ACTIONS(5354), + [anon_sym_c_short] = ACTIONS(5354), + [anon_sym_c_ushort] = ACTIONS(5354), + [anon_sym_c_int] = ACTIONS(5354), + [anon_sym_c_uint] = ACTIONS(5354), + [anon_sym_c_long] = ACTIONS(5354), + [anon_sym_c_ulong] = ACTIONS(5354), + [anon_sym_c_longlong] = ACTIONS(5354), + [anon_sym_c_ulonglong] = ACTIONS(5354), + [anon_sym_c_float] = ACTIONS(5354), + [anon_sym_c_double] = ACTIONS(5354), + [anon_sym_c_longdouble] = ACTIONS(5354), + [anon_sym_PLUS_EQ] = ACTIONS(5352), + [anon_sym_DASH_EQ] = ACTIONS(5352), + [anon_sym_STAR_EQ] = ACTIONS(5352), + [anon_sym_SLASH_EQ] = ACTIONS(5352), + [anon_sym_AMP_EQ] = ACTIONS(5352), + [anon_sym_PIPE_EQ] = ACTIONS(5352), + [anon_sym_xor_EQ] = ACTIONS(5352), + [anon_sym_LT_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_GT_EQ] = ACTIONS(5352), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5354), + [anon_sym_yield] = ACTIONS(5354), + [anon_sym_break] = ACTIONS(5354), + [anon_sym_continue] = ACTIONS(5354), + [anon_sym_defer] = ACTIONS(5354), + [anon_sym_errdefer] = ACTIONS(5354), + [anon_sym_if] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5354), + [anon_sym_expand] = ACTIONS(5354), + [anon_sym_for] = ACTIONS(5354), + [anon_sym_match] = ACTIONS(5354), + [anon_sym_DOT_DOT] = ACTIONS(5354), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5352), + [anon_sym_orelse] = ACTIONS(5354), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_and] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [anon_sym_xor] = ACTIONS(5354), + [anon_sym_LT_LT] = ACTIONS(5354), + [anon_sym_GT_GT] = ACTIONS(5354), + [anon_sym_LT_LT_PIPE] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_SLASH] = ACTIONS(5354), + [anon_sym_catch] = ACTIONS(5354), + [anon_sym_TILDE] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym_true] = ACTIONS(5354), + [anon_sym_false] = ACTIONS(5354), + [anon_sym_null] = ACTIONS(5354), + [anon_sym_unreachable] = ACTIONS(5354), + [anon_sym_undefined] = ACTIONS(5354), + [sym_sink] = ACTIONS(5354), + [sym_integer] = ACTIONS(5354), + [sym_float] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5352), + [sym_multiline_string] = ACTIONS(5352), + [sym_character] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5352), + }, + [STATE(3340)] = { + [sym_identifier] = ACTIONS(5358), + [anon_sym_func] = ACTIONS(5358), + [anon_sym_c_func] = ACTIONS(5358), + [anon_sym_BANG] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_struct] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5356), + [anon_sym_LBRACE] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5358), + [anon_sym_struct_type_BANG] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_AT] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_void] = ACTIONS(5358), + [anon_sym_noreturn] = ACTIONS(5358), + [anon_sym_type] = ACTIONS(5358), + [anon_sym_anyopaque] = ACTIONS(5358), + [anon_sym_bool] = ACTIONS(5358), + [anon_sym_int] = ACTIONS(5358), + [anon_sym_uint] = ACTIONS(5358), + [anon_sym_float] = ACTIONS(5358), + [anon_sym_range] = ACTIONS(5358), + [anon_sym_i8] = ACTIONS(5358), + [anon_sym_i16] = ACTIONS(5358), + [anon_sym_i32] = ACTIONS(5358), + [anon_sym_i64] = ACTIONS(5358), + [anon_sym_u8] = ACTIONS(5358), + [anon_sym_u16] = ACTIONS(5358), + [anon_sym_u32] = ACTIONS(5358), + [anon_sym_u64] = ACTIONS(5358), + [anon_sym_isize] = ACTIONS(5358), + [anon_sym_usize] = ACTIONS(5358), + [anon_sym_f32] = ACTIONS(5358), + [anon_sym_f64] = ACTIONS(5358), + [anon_sym_c_char] = ACTIONS(5358), + [anon_sym_c_schar] = ACTIONS(5358), + [anon_sym_c_uchar] = ACTIONS(5358), + [anon_sym_c_short] = ACTIONS(5358), + [anon_sym_c_ushort] = ACTIONS(5358), + [anon_sym_c_int] = ACTIONS(5358), + [anon_sym_c_uint] = ACTIONS(5358), + [anon_sym_c_long] = ACTIONS(5358), + [anon_sym_c_ulong] = ACTIONS(5358), + [anon_sym_c_longlong] = ACTIONS(5358), + [anon_sym_c_ulonglong] = ACTIONS(5358), + [anon_sym_c_float] = ACTIONS(5358), + [anon_sym_c_double] = ACTIONS(5358), + [anon_sym_c_longdouble] = ACTIONS(5358), + [anon_sym_PLUS_EQ] = ACTIONS(5356), + [anon_sym_DASH_EQ] = ACTIONS(5356), + [anon_sym_STAR_EQ] = ACTIONS(5356), + [anon_sym_SLASH_EQ] = ACTIONS(5356), + [anon_sym_AMP_EQ] = ACTIONS(5356), + [anon_sym_PIPE_EQ] = ACTIONS(5356), + [anon_sym_xor_EQ] = ACTIONS(5356), + [anon_sym_LT_LT_EQ] = ACTIONS(5356), + [anon_sym_GT_GT_EQ] = ACTIONS(5356), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5356), + [anon_sym_return] = ACTIONS(5358), + [anon_sym_yield] = ACTIONS(5358), + [anon_sym_break] = ACTIONS(5358), + [anon_sym_continue] = ACTIONS(5358), + [anon_sym_defer] = ACTIONS(5358), + [anon_sym_errdefer] = ACTIONS(5358), + [anon_sym_if] = ACTIONS(5358), + [anon_sym_else] = ACTIONS(5358), + [anon_sym_while] = ACTIONS(5358), + [anon_sym_expand] = ACTIONS(5358), + [anon_sym_for] = ACTIONS(5358), + [anon_sym_match] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5356), + [anon_sym_orelse] = ACTIONS(5358), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5356), + [anon_sym_BANG_EQ] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5358), + [anon_sym_xor] = ACTIONS(5358), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5358), + [anon_sym_LT_LT_PIPE] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5358), + [anon_sym_SLASH] = ACTIONS(5358), + [anon_sym_catch] = ACTIONS(5358), + [anon_sym_TILDE] = ACTIONS(5356), + [anon_sym_try] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym_true] = ACTIONS(5358), + [anon_sym_false] = ACTIONS(5358), + [anon_sym_null] = ACTIONS(5358), + [anon_sym_unreachable] = ACTIONS(5358), + [anon_sym_undefined] = ACTIONS(5358), + [sym_sink] = ACTIONS(5358), + [sym_integer] = ACTIONS(5358), + [sym_float] = ACTIONS(5356), + [anon_sym_DQUOTE] = ACTIONS(5356), + [sym_multiline_string] = ACTIONS(5356), + [sym_character] = ACTIONS(5356), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5356), + }, + [STATE(3341)] = { + [sym_identifier] = ACTIONS(4788), + [anon_sym_func] = ACTIONS(4788), + [anon_sym_c_func] = ACTIONS(4788), + [anon_sym_BANG] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_struct] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_COMMA] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_DOLLAR] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4788), + [anon_sym_struct_type_BANG] = ACTIONS(4786), + [anon_sym_QMARK] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_void] = ACTIONS(4788), + [anon_sym_noreturn] = ACTIONS(4788), + [anon_sym_type] = ACTIONS(4788), + [anon_sym_anyopaque] = ACTIONS(4788), + [anon_sym_bool] = ACTIONS(4788), + [anon_sym_int] = ACTIONS(4788), + [anon_sym_uint] = ACTIONS(4788), + [anon_sym_float] = ACTIONS(4788), + [anon_sym_range] = ACTIONS(4788), + [anon_sym_i8] = ACTIONS(4788), + [anon_sym_i16] = ACTIONS(4788), + [anon_sym_i32] = ACTIONS(4788), + [anon_sym_i64] = ACTIONS(4788), + [anon_sym_u8] = ACTIONS(4788), + [anon_sym_u16] = ACTIONS(4788), + [anon_sym_u32] = ACTIONS(4788), + [anon_sym_u64] = ACTIONS(4788), + [anon_sym_isize] = ACTIONS(4788), + [anon_sym_usize] = ACTIONS(4788), + [anon_sym_f32] = ACTIONS(4788), + [anon_sym_f64] = ACTIONS(4788), + [anon_sym_c_char] = ACTIONS(4788), + [anon_sym_c_schar] = ACTIONS(4788), + [anon_sym_c_uchar] = ACTIONS(4788), + [anon_sym_c_short] = ACTIONS(4788), + [anon_sym_c_ushort] = ACTIONS(4788), + [anon_sym_c_int] = ACTIONS(4788), + [anon_sym_c_uint] = ACTIONS(4788), + [anon_sym_c_long] = ACTIONS(4788), + [anon_sym_c_ulong] = ACTIONS(4788), + [anon_sym_c_longlong] = ACTIONS(4788), + [anon_sym_c_ulonglong] = ACTIONS(4788), + [anon_sym_c_float] = ACTIONS(4788), + [anon_sym_c_double] = ACTIONS(4788), + [anon_sym_c_longdouble] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4786), + [anon_sym_DASH_EQ] = ACTIONS(4786), + [anon_sym_STAR_EQ] = ACTIONS(4786), + [anon_sym_SLASH_EQ] = ACTIONS(4786), + [anon_sym_AMP_EQ] = ACTIONS(4786), + [anon_sym_PIPE_EQ] = ACTIONS(4786), + [anon_sym_xor_EQ] = ACTIONS(4786), + [anon_sym_LT_LT_EQ] = ACTIONS(4786), + [anon_sym_GT_GT_EQ] = ACTIONS(4786), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4786), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_yield] = ACTIONS(4788), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_defer] = ACTIONS(4788), + [anon_sym_errdefer] = ACTIONS(4788), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_while] = ACTIONS(4788), + [anon_sym_expand] = ACTIONS(4788), + [anon_sym_for] = ACTIONS(4788), + [anon_sym_match] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4786), + [anon_sym_orelse] = ACTIONS(4788), + [anon_sym_or] = ACTIONS(4788), + [anon_sym_and] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_AMP] = ACTIONS(4788), + [anon_sym_xor] = ACTIONS(4788), + [anon_sym_LT_LT] = ACTIONS(4788), + [anon_sym_GT_GT] = ACTIONS(4788), + [anon_sym_LT_LT_PIPE] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_catch] = ACTIONS(4788), + [anon_sym_TILDE] = ACTIONS(4786), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_CARET] = ACTIONS(4786), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4788), + [anon_sym_unreachable] = ACTIONS(4788), + [anon_sym_undefined] = ACTIONS(4788), + [sym_sink] = ACTIONS(4788), + [sym_integer] = ACTIONS(4788), + [sym_float] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [sym_multiline_string] = ACTIONS(4786), + [sym_character] = ACTIONS(4786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4786), + }, + [STATE(3342)] = { + [sym_type] = STATE(3860), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [sym_identifier] = ACTIONS(6509), + [anon_sym_func] = ACTIONS(6512), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6518), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_mut] = ACTIONS(6580), + [anon_sym_LBRACK] = ACTIONS(6526), + [anon_sym_void] = ACTIONS(6529), + [anon_sym_noreturn] = ACTIONS(6529), + [anon_sym_type] = ACTIONS(6529), + [anon_sym_anyopaque] = ACTIONS(6529), + [anon_sym_bool] = ACTIONS(6529), + [anon_sym_int] = ACTIONS(6529), + [anon_sym_uint] = ACTIONS(6529), + [anon_sym_float] = ACTIONS(6529), + [anon_sym_range] = ACTIONS(6529), + [anon_sym_i8] = ACTIONS(6529), + [anon_sym_i16] = ACTIONS(6529), + [anon_sym_i32] = ACTIONS(6529), + [anon_sym_i64] = ACTIONS(6529), + [anon_sym_u8] = ACTIONS(6529), + [anon_sym_u16] = ACTIONS(6529), + [anon_sym_u32] = ACTIONS(6529), + [anon_sym_u64] = ACTIONS(6529), + [anon_sym_isize] = ACTIONS(6529), + [anon_sym_usize] = ACTIONS(6529), + [anon_sym_f32] = ACTIONS(6529), + [anon_sym_f64] = ACTIONS(6529), + [anon_sym_c_char] = ACTIONS(6529), + [anon_sym_c_schar] = ACTIONS(6529), + [anon_sym_c_uchar] = ACTIONS(6529), + [anon_sym_c_short] = ACTIONS(6529), + [anon_sym_c_ushort] = ACTIONS(6529), + [anon_sym_c_int] = ACTIONS(6529), + [anon_sym_c_uint] = ACTIONS(6529), + [anon_sym_c_long] = ACTIONS(6529), + [anon_sym_c_ulong] = ACTIONS(6529), + [anon_sym_c_longlong] = ACTIONS(6529), + [anon_sym_c_ulonglong] = ACTIONS(6529), + [anon_sym_c_float] = ACTIONS(6529), + [anon_sym_c_double] = ACTIONS(6529), + [anon_sym_c_longdouble] = ACTIONS(6529), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_defer] = ACTIONS(1164), + [anon_sym_errdefer] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_expand] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_unreachable] = ACTIONS(1164), + [anon_sym_undefined] = ACTIONS(1164), + [sym_sink] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [sym_float] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_multiline_string] = ACTIONS(1159), + [sym_character] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(3343)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(12957), + [aux_sym_match_arm_repeat1] = STATE(11471), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6584), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6594), + }, + [STATE(3344)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(12953), + [aux_sym_match_arm_repeat1] = STATE(11608), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6596), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6598), + }, + [STATE(3345)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(13896), + [aux_sym_match_arm_repeat1] = STATE(11954), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6602), + }, + [STATE(3346)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(12439), + [aux_sym_match_arm_repeat1] = STATE(11420), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6606), + }, + [STATE(3347)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(13186), + [aux_sym_match_arm_repeat1] = STATE(11740), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6610), + }, + [STATE(3348)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(12588), + [aux_sym_match_arm_repeat1] = STATE(11071), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6614), + }, + [STATE(3349)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(13782), + [aux_sym_match_arm_repeat1] = STATE(11908), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6618), + }, + [STATE(3350)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(12982), + [aux_sym_match_arm_repeat1] = STATE(11137), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6620), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6622), + }, + [STATE(3351)] = { + [sym_argument_list] = STATE(2530), + [aux_sym_import_declaration_repeat1] = STATE(13377), + [aux_sym_match_arm_repeat1] = STATE(11745), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(6624), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6626), + }, + [STATE(3352)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6628), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3353)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6628), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3354)] = { + [aux_sym_import_declaration_repeat1] = STATE(14397), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_COMMA] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_PLUS_EQ] = ACTIONS(4456), + [anon_sym_DASH_EQ] = ACTIONS(4456), + [anon_sym_STAR_EQ] = ACTIONS(4456), + [anon_sym_SLASH_EQ] = ACTIONS(4456), + [anon_sym_AMP_EQ] = ACTIONS(4456), + [anon_sym_PIPE_EQ] = ACTIONS(4456), + [anon_sym_xor_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_EQ] = ACTIONS(4456), + [anon_sym_GT_GT_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_COLON] = ACTIONS(4456), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(6630), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4458), + [anon_sym_LT_LT_PIPE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(4458), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6633), + }, + [STATE(3355)] = { + [aux_sym_import_declaration_repeat1] = STATE(14269), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4446), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_AMP_EQ] = ACTIONS(4444), + [anon_sym_PIPE_EQ] = ACTIONS(4444), + [anon_sym_xor_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_GT_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(6636), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT_PIPE] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6638), + }, + [STATE(3356)] = { + [aux_sym_import_declaration_repeat1] = STATE(14398), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_AMP_EQ] = ACTIONS(4474), + [anon_sym_PIPE_EQ] = ACTIONS(4474), + [anon_sym_xor_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_GT_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_yield] = ACTIONS(4476), + [anon_sym_COLON] = ACTIONS(4474), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_errdefer] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(6641), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_LT_LT_PIPE] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6644), + }, + [STATE(3357)] = { + [aux_sym_import_declaration_repeat1] = STATE(14232), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4428), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_AMP_EQ] = ACTIONS(4426), + [anon_sym_PIPE_EQ] = ACTIONS(4426), + [anon_sym_xor_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_GT_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4426), + [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(6647), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4428), + [anon_sym_LT_LT_PIPE] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_SLASH] = ACTIONS(4428), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(6649), + }, + [STATE(3358)] = { + [aux_sym_import_declaration_repeat1] = STATE(14231), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4406), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_AMP_EQ] = ACTIONS(4404), + [anon_sym_PIPE_EQ] = ACTIONS(4404), + [anon_sym_xor_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_GT_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(6652), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4406), + [anon_sym_LT_LT_PIPE] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6654), + }, + [STATE(3359)] = { + [aux_sym_import_declaration_repeat1] = STATE(14389), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4394), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_AMP_EQ] = ACTIONS(4392), + [anon_sym_PIPE_EQ] = ACTIONS(4392), + [anon_sym_xor_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_GT_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4392), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_COLON] = ACTIONS(4392), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(6657), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_LT_LT_PIPE] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6660), + }, + [STATE(3360)] = { + [aux_sym_import_declaration_repeat1] = STATE(14390), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4406), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_AMP_EQ] = ACTIONS(4404), + [anon_sym_PIPE_EQ] = ACTIONS(4404), + [anon_sym_xor_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_GT_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_COLON] = ACTIONS(4404), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(6663), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4406), + [anon_sym_LT_LT_PIPE] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6666), + }, + [STATE(3361)] = { + [aux_sym_import_declaration_repeat1] = STATE(14270), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_COMMA] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_PLUS_EQ] = ACTIONS(4456), + [anon_sym_DASH_EQ] = ACTIONS(4456), + [anon_sym_STAR_EQ] = ACTIONS(4456), + [anon_sym_SLASH_EQ] = ACTIONS(4456), + [anon_sym_AMP_EQ] = ACTIONS(4456), + [anon_sym_PIPE_EQ] = ACTIONS(4456), + [anon_sym_xor_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_EQ] = ACTIONS(4456), + [anon_sym_GT_GT_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(6669), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4458), + [anon_sym_LT_LT_PIPE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(4458), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6671), + }, + [STATE(3362)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6674), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6677), + [anon_sym_DASH_EQ] = ACTIONS(6677), + [anon_sym_STAR_EQ] = ACTIONS(6677), + [anon_sym_SLASH_EQ] = ACTIONS(6677), + [anon_sym_AMP_EQ] = ACTIONS(6677), + [anon_sym_PIPE_EQ] = ACTIONS(6677), + [anon_sym_xor_EQ] = ACTIONS(6677), + [anon_sym_LT_LT_EQ] = ACTIONS(6677), + [anon_sym_GT_GT_EQ] = ACTIONS(6677), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6677), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6682), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6628), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(3363)] = { + [aux_sym_import_declaration_repeat1] = STATE(14391), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4428), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_AMP_EQ] = ACTIONS(4426), + [anon_sym_PIPE_EQ] = ACTIONS(4426), + [anon_sym_xor_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_GT_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4428), + [anon_sym_yield] = ACTIONS(4428), + [anon_sym_COLON] = ACTIONS(4426), + [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(6684), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4428), + [anon_sym_LT_LT_PIPE] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_SLASH] = ACTIONS(4428), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(6687), + }, + [STATE(3364)] = { + [aux_sym_import_declaration_repeat1] = STATE(14393), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4446), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_AMP_EQ] = ACTIONS(4444), + [anon_sym_PIPE_EQ] = ACTIONS(4444), + [anon_sym_xor_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_GT_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(6690), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT_PIPE] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6693), + }, + [STATE(3365)] = { + [aux_sym_import_declaration_repeat1] = STATE(14288), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_AMP_EQ] = ACTIONS(4474), + [anon_sym_PIPE_EQ] = ACTIONS(4474), + [anon_sym_xor_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_GT_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_yield] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_errdefer] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(6696), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_LT_LT_PIPE] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6698), + }, + [STATE(3366)] = { + [aux_sym_import_declaration_repeat1] = STATE(14196), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4394), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_AMP_EQ] = ACTIONS(4392), + [anon_sym_PIPE_EQ] = ACTIONS(4392), + [anon_sym_xor_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_GT_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4392), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(6701), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_LT_LT_PIPE] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6703), + }, + [STATE(3367)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_PLUS_EQ] = ACTIONS(5706), + [anon_sym_DASH_EQ] = ACTIONS(5706), + [anon_sym_STAR_EQ] = ACTIONS(5706), + [anon_sym_SLASH_EQ] = ACTIONS(5706), + [anon_sym_AMP_EQ] = ACTIONS(5706), + [anon_sym_PIPE_EQ] = ACTIONS(5706), + [anon_sym_xor_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_GT_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5706), + [anon_sym_return] = ACTIONS(5708), + [anon_sym_yield] = ACTIONS(5708), + [anon_sym_COLON] = ACTIONS(5706), + [anon_sym_break] = ACTIONS(5708), + [anon_sym_continue] = ACTIONS(5708), + [anon_sym_defer] = ACTIONS(5708), + [anon_sym_errdefer] = ACTIONS(5708), + [anon_sym_if] = ACTIONS(5708), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_while] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_for] = ACTIONS(5708), + [anon_sym_match] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(6680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6682), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6628), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(3368)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6709), + [anon_sym_DASH_EQ] = ACTIONS(6709), + [anon_sym_STAR_EQ] = ACTIONS(6709), + [anon_sym_SLASH_EQ] = ACTIONS(6709), + [anon_sym_AMP_EQ] = ACTIONS(6709), + [anon_sym_PIPE_EQ] = ACTIONS(6709), + [anon_sym_xor_EQ] = ACTIONS(6709), + [anon_sym_LT_LT_EQ] = ACTIONS(6709), + [anon_sym_GT_GT_EQ] = ACTIONS(6709), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6709), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(3369)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2708), + [anon_sym_xor_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_defer] = ACTIONS(2708), + [anon_sym_errdefer] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_expand] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_PIPE2] = ACTIONS(2706), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_unreachable] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [sym_sink] = ACTIONS(2708), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [sym_multiline_string] = ACTIONS(2706), + [sym_character] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(3370)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2708), + [anon_sym_xor_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_defer] = ACTIONS(2708), + [anon_sym_errdefer] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_expand] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_PIPE2] = ACTIONS(2706), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_unreachable] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [sym_sink] = ACTIONS(2708), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [sym_multiline_string] = ACTIONS(2706), + [sym_character] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(3371)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3372)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3373)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3374)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(6734), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(3375)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_PLUS_EQ] = ACTIONS(2710), + [anon_sym_DASH_EQ] = ACTIONS(2710), + [anon_sym_STAR_EQ] = ACTIONS(2710), + [anon_sym_SLASH_EQ] = ACTIONS(2710), + [anon_sym_AMP_EQ] = ACTIONS(2710), + [anon_sym_PIPE_EQ] = ACTIONS(2712), + [anon_sym_xor_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_defer] = ACTIONS(2712), + [anon_sym_errdefer] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_expand] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_PIPE2] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_unreachable] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [sym_sink] = ACTIONS(2712), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [sym_multiline_string] = ACTIONS(2710), + [sym_character] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(3376)] = { + [aux_sym_type_repeat1] = STATE(3414), + [sym_identifier] = ACTIONS(3026), + [anon_sym_func] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_EQ] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_void] = ACTIONS(3026), + [anon_sym_noreturn] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_anyopaque] = ACTIONS(3026), + [anon_sym_bool] = ACTIONS(3026), + [anon_sym_int] = ACTIONS(3026), + [anon_sym_uint] = ACTIONS(3026), + [anon_sym_float] = ACTIONS(3026), + [anon_sym_range] = ACTIONS(3026), + [anon_sym_i8] = ACTIONS(3026), + [anon_sym_i16] = ACTIONS(3026), + [anon_sym_i32] = ACTIONS(3026), + [anon_sym_i64] = ACTIONS(3026), + [anon_sym_u8] = ACTIONS(3026), + [anon_sym_u16] = ACTIONS(3026), + [anon_sym_u32] = ACTIONS(3026), + [anon_sym_u64] = ACTIONS(3026), + [anon_sym_isize] = ACTIONS(3026), + [anon_sym_usize] = ACTIONS(3026), + [anon_sym_f32] = ACTIONS(3026), + [anon_sym_f64] = ACTIONS(3026), + [anon_sym_c_char] = ACTIONS(3026), + [anon_sym_c_schar] = ACTIONS(3026), + [anon_sym_c_uchar] = ACTIONS(3026), + [anon_sym_c_short] = ACTIONS(3026), + [anon_sym_c_ushort] = ACTIONS(3026), + [anon_sym_c_int] = ACTIONS(3026), + [anon_sym_c_uint] = ACTIONS(3026), + [anon_sym_c_long] = ACTIONS(3026), + [anon_sym_c_ulong] = ACTIONS(3026), + [anon_sym_c_longlong] = ACTIONS(3026), + [anon_sym_c_ulonglong] = ACTIONS(3026), + [anon_sym_c_float] = ACTIONS(3026), + [anon_sym_c_double] = ACTIONS(3026), + [anon_sym_c_longdouble] = ACTIONS(3026), + [anon_sym_PLUS_EQ] = ACTIONS(3024), + [anon_sym_DASH_EQ] = ACTIONS(3024), + [anon_sym_STAR_EQ] = ACTIONS(3024), + [anon_sym_SLASH_EQ] = ACTIONS(3024), + [anon_sym_AMP_EQ] = ACTIONS(3024), + [anon_sym_PIPE_EQ] = ACTIONS(3026), + [anon_sym_xor_EQ] = ACTIONS(3024), + [anon_sym_LT_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_GT_EQ] = ACTIONS(3024), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_defer] = ACTIONS(3026), + [anon_sym_errdefer] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_expand] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_PIPE2] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(3026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3024), + [anon_sym_orelse] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3026), + [anon_sym_and] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_xor] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_LT_LT_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_catch] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3026), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3026), + [anon_sym_unreachable] = ACTIONS(3026), + [anon_sym_undefined] = ACTIONS(3026), + [sym_sink] = ACTIONS(3026), + [sym_integer] = ACTIONS(3026), + [sym_float] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [sym_multiline_string] = ACTIONS(3024), + [sym_character] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3024), + }, + [STATE(3377)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3378)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2672), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3379)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_PLUS_EQ] = ACTIONS(2714), + [anon_sym_DASH_EQ] = ACTIONS(2714), + [anon_sym_STAR_EQ] = ACTIONS(2714), + [anon_sym_SLASH_EQ] = ACTIONS(2714), + [anon_sym_AMP_EQ] = ACTIONS(2714), + [anon_sym_PIPE_EQ] = ACTIONS(2716), + [anon_sym_xor_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_defer] = ACTIONS(2716), + [anon_sym_errdefer] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_expand] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_PIPE2] = ACTIONS(2714), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_unreachable] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [sym_sink] = ACTIONS(2716), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [sym_multiline_string] = ACTIONS(2714), + [sym_character] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(3380)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2672), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3381)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2672), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3382)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3383)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3384)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2672), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(6738), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(6740), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3385)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2672), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3386)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2692), + [anon_sym_xor_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_errdefer] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_expand] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_PIPE2] = ACTIONS(2690), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_unreachable] = ACTIONS(2692), + [anon_sym_undefined] = ACTIONS(2692), + [sym_sink] = ACTIONS(2692), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [sym_multiline_string] = ACTIONS(2690), + [sym_character] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(3387)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2692), + [anon_sym_xor_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_errdefer] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_expand] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_PIPE2] = ACTIONS(2690), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_unreachable] = ACTIONS(2692), + [anon_sym_undefined] = ACTIONS(2692), + [sym_sink] = ACTIONS(2692), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [sym_multiline_string] = ACTIONS(2690), + [sym_character] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(3388)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2672), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3389)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2672), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3390)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3391)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(6742), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(3392)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2696), + [anon_sym_xor_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_errdefer] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_expand] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_PIPE2] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_unreachable] = ACTIONS(2696), + [anon_sym_undefined] = ACTIONS(2696), + [sym_sink] = ACTIONS(2696), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [sym_multiline_string] = ACTIONS(2694), + [sym_character] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(3393)] = { + [sym_variant_payload] = STATE(3452), + [sym_identifier] = ACTIONS(2659), + [anon_sym_func] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(6745), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_DOLLAR] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_anyopaque] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_int] = ACTIONS(2659), + [anon_sym_uint] = ACTIONS(2659), + [anon_sym_float] = ACTIONS(2659), + [anon_sym_range] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_c_char] = ACTIONS(2659), + [anon_sym_c_schar] = ACTIONS(2659), + [anon_sym_c_uchar] = ACTIONS(2659), + [anon_sym_c_short] = ACTIONS(2659), + [anon_sym_c_ushort] = ACTIONS(2659), + [anon_sym_c_int] = ACTIONS(2659), + [anon_sym_c_uint] = ACTIONS(2659), + [anon_sym_c_long] = ACTIONS(2659), + [anon_sym_c_ulong] = ACTIONS(2659), + [anon_sym_c_longlong] = ACTIONS(2659), + [anon_sym_c_ulonglong] = ACTIONS(2659), + [anon_sym_c_float] = ACTIONS(2659), + [anon_sym_c_double] = ACTIONS(2659), + [anon_sym_c_longdouble] = ACTIONS(2659), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2659), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_defer] = ACTIONS(2659), + [anon_sym_errdefer] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_expand] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_PIPE2] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2657), + [anon_sym_orelse] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_xor] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_PIPE] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_null] = ACTIONS(2659), + [anon_sym_unreachable] = ACTIONS(2659), + [anon_sym_undefined] = ACTIONS(2659), + [sym_sink] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_multiline_string] = ACTIONS(2657), + [sym_character] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2657), + }, + [STATE(3394)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(229), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(3395)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2666), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_PIPE2] = ACTIONS(2664), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3396)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2666), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_PIPE2] = ACTIONS(2664), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3397)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3398)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_xor_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6754), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(5710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5712), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(5716), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(3399)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_PLUS_EQ] = ACTIONS(5706), + [anon_sym_DASH_EQ] = ACTIONS(5706), + [anon_sym_STAR_EQ] = ACTIONS(5706), + [anon_sym_SLASH_EQ] = ACTIONS(5706), + [anon_sym_AMP_EQ] = ACTIONS(5706), + [anon_sym_PIPE_EQ] = ACTIONS(5708), + [anon_sym_xor_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_GT_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5706), + [anon_sym_return] = ACTIONS(5708), + [anon_sym_yield] = ACTIONS(5708), + [anon_sym_break] = ACTIONS(5708), + [anon_sym_continue] = ACTIONS(5708), + [anon_sym_defer] = ACTIONS(5708), + [anon_sym_errdefer] = ACTIONS(5708), + [anon_sym_if] = ACTIONS(5708), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_while] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_for] = ACTIONS(5708), + [anon_sym_PIPE2] = ACTIONS(5706), + [anon_sym_match] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(6756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6758), + [anon_sym_orelse] = ACTIONS(6738), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(6740), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(3400)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_PLUS_EQ] = ACTIONS(5706), + [anon_sym_DASH_EQ] = ACTIONS(5706), + [anon_sym_STAR_EQ] = ACTIONS(5706), + [anon_sym_SLASH_EQ] = ACTIONS(5706), + [anon_sym_AMP_EQ] = ACTIONS(5706), + [anon_sym_PIPE_EQ] = ACTIONS(5706), + [anon_sym_xor_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_GT_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5706), + [anon_sym_return] = ACTIONS(5708), + [anon_sym_yield] = ACTIONS(5708), + [anon_sym_break] = ACTIONS(5708), + [anon_sym_continue] = ACTIONS(5708), + [anon_sym_defer] = ACTIONS(5708), + [anon_sym_errdefer] = ACTIONS(5708), + [anon_sym_if] = ACTIONS(5708), + [anon_sym_while] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_for] = ACTIONS(5708), + [anon_sym_match] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(3401)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3402)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2647), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3403)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2647), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_PIPE2] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3404)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3405)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2666), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2664), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3406)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2666), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2664), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3407)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2647), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_PIPE2] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3408)] = { + [sym_variant_payload] = STATE(9070), + [sym_identifier] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2659), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_PIPE2] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_LT_LT_PIPE] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(3409)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3410)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3411)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3412)] = { + [sym_identifier] = ACTIONS(4490), + [anon_sym_func] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_void] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym_type] = ACTIONS(4490), + [anon_sym_anyopaque] = ACTIONS(4490), + [anon_sym_bool] = ACTIONS(4490), + [anon_sym_int] = ACTIONS(4490), + [anon_sym_uint] = ACTIONS(4490), + [anon_sym_float] = ACTIONS(4490), + [anon_sym_range] = ACTIONS(4490), + [anon_sym_i8] = ACTIONS(4490), + [anon_sym_i16] = ACTIONS(4490), + [anon_sym_i32] = ACTIONS(4490), + [anon_sym_i64] = ACTIONS(4490), + [anon_sym_u8] = ACTIONS(4490), + [anon_sym_u16] = ACTIONS(4490), + [anon_sym_u32] = ACTIONS(4490), + [anon_sym_u64] = ACTIONS(4490), + [anon_sym_isize] = ACTIONS(4490), + [anon_sym_usize] = ACTIONS(4490), + [anon_sym_f32] = ACTIONS(4490), + [anon_sym_f64] = ACTIONS(4490), + [anon_sym_c_char] = ACTIONS(4490), + [anon_sym_c_schar] = ACTIONS(4490), + [anon_sym_c_uchar] = ACTIONS(4490), + [anon_sym_c_short] = ACTIONS(4490), + [anon_sym_c_ushort] = ACTIONS(4490), + [anon_sym_c_int] = ACTIONS(4490), + [anon_sym_c_uint] = ACTIONS(4490), + [anon_sym_c_long] = ACTIONS(4490), + [anon_sym_c_ulong] = ACTIONS(4490), + [anon_sym_c_longlong] = ACTIONS(4490), + [anon_sym_c_ulonglong] = ACTIONS(4490), + [anon_sym_c_float] = ACTIONS(4490), + [anon_sym_c_double] = ACTIONS(4490), + [anon_sym_c_longdouble] = ACTIONS(4490), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_AMP_EQ] = ACTIONS(4488), + [anon_sym_PIPE_EQ] = ACTIONS(4490), + [anon_sym_xor_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_GT_EQ] = ACTIONS(4488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_yield] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(6760), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_defer] = ACTIONS(4490), + [anon_sym_errdefer] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_else] = ACTIONS(4490), + [anon_sym_while] = ACTIONS(4490), + [anon_sym_expand] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_PIPE2] = ACTIONS(4488), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_DOT_DOT] = ACTIONS(4490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4488), + [anon_sym_orelse] = ACTIONS(4490), + [anon_sym_or] = ACTIONS(4490), + [anon_sym_and] = ACTIONS(4490), + [anon_sym_EQ_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4488), + [anon_sym_LT] = ACTIONS(4490), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT] = ACTIONS(4490), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_xor] = ACTIONS(4490), + [anon_sym_LT_LT] = ACTIONS(4490), + [anon_sym_GT_GT] = ACTIONS(4490), + [anon_sym_LT_LT_PIPE] = ACTIONS(4490), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_SLASH] = ACTIONS(4490), + [anon_sym_catch] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4490), + [anon_sym_false] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4490), + [anon_sym_unreachable] = ACTIONS(4490), + [anon_sym_undefined] = ACTIONS(4490), + [sym_sink] = ACTIONS(4490), + [sym_integer] = ACTIONS(4490), + [sym_float] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4488), + [sym_multiline_string] = ACTIONS(4488), + [sym_character] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4488), + }, + [STATE(3413)] = { + [sym_identifier] = ACTIONS(4496), + [anon_sym_func] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_DOLLAR] = ACTIONS(4494), + [anon_sym_PIPE] = ACTIONS(4496), + [anon_sym_QMARK] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4494), + [anon_sym_void] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_anyopaque] = ACTIONS(4496), + [anon_sym_bool] = ACTIONS(4496), + [anon_sym_int] = ACTIONS(4496), + [anon_sym_uint] = ACTIONS(4496), + [anon_sym_float] = ACTIONS(4496), + [anon_sym_range] = ACTIONS(4496), + [anon_sym_i8] = ACTIONS(4496), + [anon_sym_i16] = ACTIONS(4496), + [anon_sym_i32] = ACTIONS(4496), + [anon_sym_i64] = ACTIONS(4496), + [anon_sym_u8] = ACTIONS(4496), + [anon_sym_u16] = ACTIONS(4496), + [anon_sym_u32] = ACTIONS(4496), + [anon_sym_u64] = ACTIONS(4496), + [anon_sym_isize] = ACTIONS(4496), + [anon_sym_usize] = ACTIONS(4496), + [anon_sym_f32] = ACTIONS(4496), + [anon_sym_f64] = ACTIONS(4496), + [anon_sym_c_char] = ACTIONS(4496), + [anon_sym_c_schar] = ACTIONS(4496), + [anon_sym_c_uchar] = ACTIONS(4496), + [anon_sym_c_short] = ACTIONS(4496), + [anon_sym_c_ushort] = ACTIONS(4496), + [anon_sym_c_int] = ACTIONS(4496), + [anon_sym_c_uint] = ACTIONS(4496), + [anon_sym_c_long] = ACTIONS(4496), + [anon_sym_c_ulong] = ACTIONS(4496), + [anon_sym_c_longlong] = ACTIONS(4496), + [anon_sym_c_ulonglong] = ACTIONS(4496), + [anon_sym_c_float] = ACTIONS(4496), + [anon_sym_c_double] = ACTIONS(4496), + [anon_sym_c_longdouble] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4494), + [anon_sym_DASH_EQ] = ACTIONS(4494), + [anon_sym_STAR_EQ] = ACTIONS(4494), + [anon_sym_SLASH_EQ] = ACTIONS(4494), + [anon_sym_AMP_EQ] = ACTIONS(4494), + [anon_sym_PIPE_EQ] = ACTIONS(4496), + [anon_sym_xor_EQ] = ACTIONS(4494), + [anon_sym_LT_LT_EQ] = ACTIONS(4494), + [anon_sym_GT_GT_EQ] = ACTIONS(4494), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_yield] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_defer] = ACTIONS(4496), + [anon_sym_errdefer] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_expand] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_PIPE2] = ACTIONS(4494), + [anon_sym_match] = ACTIONS(4496), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4494), + [anon_sym_orelse] = ACTIONS(4496), + [anon_sym_or] = ACTIONS(4496), + [anon_sym_and] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_LT] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_xor] = ACTIONS(4496), + [anon_sym_LT_LT] = ACTIONS(4496), + [anon_sym_GT_GT] = ACTIONS(4496), + [anon_sym_LT_LT_PIPE] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_SLASH] = ACTIONS(4496), + [anon_sym_catch] = ACTIONS(4496), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_DOT] = ACTIONS(4496), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym_true] = ACTIONS(4496), + [anon_sym_false] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4496), + [anon_sym_unreachable] = ACTIONS(4496), + [anon_sym_undefined] = ACTIONS(4496), + [sym_sink] = ACTIONS(4496), + [sym_integer] = ACTIONS(4496), + [sym_float] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_multiline_string] = ACTIONS(4494), + [sym_character] = ACTIONS(4494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4494), + }, + [STATE(3414)] = { + [aux_sym_type_repeat1] = STATE(3421), + [sym_identifier] = ACTIONS(3058), + [anon_sym_func] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_void] = ACTIONS(3058), + [anon_sym_noreturn] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_anyopaque] = ACTIONS(3058), + [anon_sym_bool] = ACTIONS(3058), + [anon_sym_int] = ACTIONS(3058), + [anon_sym_uint] = ACTIONS(3058), + [anon_sym_float] = ACTIONS(3058), + [anon_sym_range] = ACTIONS(3058), + [anon_sym_i8] = ACTIONS(3058), + [anon_sym_i16] = ACTIONS(3058), + [anon_sym_i32] = ACTIONS(3058), + [anon_sym_i64] = ACTIONS(3058), + [anon_sym_u8] = ACTIONS(3058), + [anon_sym_u16] = ACTIONS(3058), + [anon_sym_u32] = ACTIONS(3058), + [anon_sym_u64] = ACTIONS(3058), + [anon_sym_isize] = ACTIONS(3058), + [anon_sym_usize] = ACTIONS(3058), + [anon_sym_f32] = ACTIONS(3058), + [anon_sym_f64] = ACTIONS(3058), + [anon_sym_c_char] = ACTIONS(3058), + [anon_sym_c_schar] = ACTIONS(3058), + [anon_sym_c_uchar] = ACTIONS(3058), + [anon_sym_c_short] = ACTIONS(3058), + [anon_sym_c_ushort] = ACTIONS(3058), + [anon_sym_c_int] = ACTIONS(3058), + [anon_sym_c_uint] = ACTIONS(3058), + [anon_sym_c_long] = ACTIONS(3058), + [anon_sym_c_ulong] = ACTIONS(3058), + [anon_sym_c_longlong] = ACTIONS(3058), + [anon_sym_c_ulonglong] = ACTIONS(3058), + [anon_sym_c_float] = ACTIONS(3058), + [anon_sym_c_double] = ACTIONS(3058), + [anon_sym_c_longdouble] = ACTIONS(3058), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_AMP_EQ] = ACTIONS(3056), + [anon_sym_PIPE_EQ] = ACTIONS(3058), + [anon_sym_xor_EQ] = ACTIONS(3056), + [anon_sym_LT_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_GT_EQ] = ACTIONS(3056), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_errdefer] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_expand] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_PIPE2] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3056), + [anon_sym_orelse] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_and] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_xor] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_LT_LT_PIPE] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_catch] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_unreachable] = ACTIONS(3058), + [anon_sym_undefined] = ACTIONS(3058), + [sym_sink] = ACTIONS(3058), + [sym_integer] = ACTIONS(3058), + [sym_float] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3056), + [sym_multiline_string] = ACTIONS(3056), + [sym_character] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3056), + }, + [STATE(3415)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2647), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_PIPE2] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3416)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2647), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_PIPE2] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3417)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(3418)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2726), + [anon_sym_xor_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_defer] = ACTIONS(2726), + [anon_sym_errdefer] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_expand] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_PIPE2] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2726), + [anon_sym_unreachable] = ACTIONS(2726), + [anon_sym_undefined] = ACTIONS(2726), + [sym_sink] = ACTIONS(2726), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [sym_multiline_string] = ACTIONS(2724), + [sym_character] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(3419)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2666), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_PIPE2] = ACTIONS(2664), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3420)] = { + [aux_sym_import_declaration_repeat1] = STATE(14404), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4394), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_AMP_EQ] = ACTIONS(4392), + [anon_sym_PIPE_EQ] = ACTIONS(4394), + [anon_sym_xor_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_GT_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4392), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(6764), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_PIPE2] = ACTIONS(4392), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_LT_LT_PIPE] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6767), + }, + [STATE(3421)] = { + [aux_sym_type_repeat1] = STATE(3421), + [sym_identifier] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(6770), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_PLUS_EQ] = ACTIONS(2901), + [anon_sym_DASH_EQ] = ACTIONS(2901), + [anon_sym_STAR_EQ] = ACTIONS(2901), + [anon_sym_SLASH_EQ] = ACTIONS(2901), + [anon_sym_AMP_EQ] = ACTIONS(2901), + [anon_sym_PIPE_EQ] = ACTIONS(2903), + [anon_sym_xor_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_GT_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_errdefer] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_expand] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_PIPE2] = ACTIONS(2901), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_LT_LT_PIPE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2903), + [anon_sym_unreachable] = ACTIONS(2903), + [anon_sym_undefined] = ACTIONS(2903), + [sym_sink] = ACTIONS(2903), + [sym_integer] = ACTIONS(2903), + [sym_float] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_multiline_string] = ACTIONS(2901), + [sym_character] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(3422)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3423)] = { + [aux_sym_import_declaration_repeat1] = STATE(14405), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4406), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_AMP_EQ] = ACTIONS(4404), + [anon_sym_PIPE_EQ] = ACTIONS(4406), + [anon_sym_xor_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_GT_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(6773), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_PIPE2] = ACTIONS(4404), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4406), + [anon_sym_LT_LT_PIPE] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6776), + }, + [STATE(3424)] = { + [aux_sym_import_declaration_repeat1] = STATE(14406), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4428), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_AMP_EQ] = ACTIONS(4426), + [anon_sym_PIPE_EQ] = ACTIONS(4428), + [anon_sym_xor_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_GT_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4426), + [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(6779), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_PIPE2] = ACTIONS(4426), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4428), + [anon_sym_LT_LT_PIPE] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_SLASH] = ACTIONS(4428), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(6782), + }, + [STATE(3425)] = { + [aux_sym_import_declaration_repeat1] = STATE(14408), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4446), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_AMP_EQ] = ACTIONS(4444), + [anon_sym_PIPE_EQ] = ACTIONS(4446), + [anon_sym_xor_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_GT_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(6785), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_PIPE2] = ACTIONS(4444), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT_PIPE] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6788), + }, + [STATE(3426)] = { + [aux_sym_import_declaration_repeat1] = STATE(14409), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_PLUS_EQ] = ACTIONS(4456), + [anon_sym_DASH_EQ] = ACTIONS(4456), + [anon_sym_STAR_EQ] = ACTIONS(4456), + [anon_sym_SLASH_EQ] = ACTIONS(4456), + [anon_sym_AMP_EQ] = ACTIONS(4456), + [anon_sym_PIPE_EQ] = ACTIONS(4458), + [anon_sym_xor_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_EQ] = ACTIONS(4456), + [anon_sym_GT_GT_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(6791), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_PIPE2] = ACTIONS(4456), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4458), + [anon_sym_LT_LT_PIPE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(4458), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6794), + }, + [STATE(3427)] = { + [aux_sym_import_declaration_repeat1] = STATE(14410), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_AMP_EQ] = ACTIONS(4474), + [anon_sym_PIPE_EQ] = ACTIONS(4476), + [anon_sym_xor_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_GT_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_yield] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_errdefer] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(6797), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_PIPE2] = ACTIONS(4474), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_LT_LT_PIPE] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6800), + }, + [STATE(3428)] = { + [sym_variant_payload] = STATE(3452), + [sym_identifier] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2659), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_PIPE2] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_LT_LT_PIPE] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(3429)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3430)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6806), + [anon_sym_DASH_EQ] = ACTIONS(6806), + [anon_sym_STAR_EQ] = ACTIONS(6806), + [anon_sym_SLASH_EQ] = ACTIONS(6806), + [anon_sym_AMP_EQ] = ACTIONS(6806), + [anon_sym_PIPE_EQ] = ACTIONS(6803), + [anon_sym_xor_EQ] = ACTIONS(6806), + [anon_sym_LT_LT_EQ] = ACTIONS(6806), + [anon_sym_GT_GT_EQ] = ACTIONS(6806), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6806), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_PIPE2] = ACTIONS(5748), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6758), + [anon_sym_orelse] = ACTIONS(6738), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(6740), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(3431)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3432)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6809), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6811), + [anon_sym_DASH_EQ] = ACTIONS(6811), + [anon_sym_STAR_EQ] = ACTIONS(6811), + [anon_sym_SLASH_EQ] = ACTIONS(6811), + [anon_sym_AMP_EQ] = ACTIONS(6811), + [anon_sym_PIPE_EQ] = ACTIONS(6811), + [anon_sym_xor_EQ] = ACTIONS(6811), + [anon_sym_LT_LT_EQ] = ACTIONS(6811), + [anon_sym_GT_GT_EQ] = ACTIONS(6811), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6811), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(5710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5712), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(5716), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(3433)] = { + [sym_argument_list] = STATE(3442), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(6722), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_PIPE2] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(6738), + [anon_sym_or] = ACTIONS(6736), + [anon_sym_and] = ACTIONS(6724), + [anon_sym_EQ_EQ] = ACTIONS(6726), + [anon_sym_BANG_EQ] = ACTIONS(6726), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_LT_EQ] = ACTIONS(6726), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_EQ] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(6730), + [anon_sym_LT_LT_PIPE] = ACTIONS(6730), + [anon_sym_PLUS] = ACTIONS(6714), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_catch] = ACTIONS(6740), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6732), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3434)] = { + [sym_argument_list] = STATE(3835), + [sym_identifier] = ACTIONS(2966), + [anon_sym_func] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_anyopaque] = ACTIONS(2966), + [anon_sym_bool] = ACTIONS(2966), + [anon_sym_int] = ACTIONS(2966), + [anon_sym_uint] = ACTIONS(2966), + [anon_sym_float] = ACTIONS(2966), + [anon_sym_range] = ACTIONS(2966), + [anon_sym_i8] = ACTIONS(2966), + [anon_sym_i16] = ACTIONS(2966), + [anon_sym_i32] = ACTIONS(2966), + [anon_sym_i64] = ACTIONS(2966), + [anon_sym_u8] = ACTIONS(2966), + [anon_sym_u16] = ACTIONS(2966), + [anon_sym_u32] = ACTIONS(2966), + [anon_sym_u64] = ACTIONS(2966), + [anon_sym_isize] = ACTIONS(2966), + [anon_sym_usize] = ACTIONS(2966), + [anon_sym_f32] = ACTIONS(2966), + [anon_sym_f64] = ACTIONS(2966), + [anon_sym_c_char] = ACTIONS(2966), + [anon_sym_c_schar] = ACTIONS(2966), + [anon_sym_c_uchar] = ACTIONS(2966), + [anon_sym_c_short] = ACTIONS(2966), + [anon_sym_c_ushort] = ACTIONS(2966), + [anon_sym_c_int] = ACTIONS(2966), + [anon_sym_c_uint] = ACTIONS(2966), + [anon_sym_c_long] = ACTIONS(2966), + [anon_sym_c_ulong] = ACTIONS(2966), + [anon_sym_c_longlong] = ACTIONS(2966), + [anon_sym_c_ulonglong] = ACTIONS(2966), + [anon_sym_c_float] = ACTIONS(2966), + [anon_sym_c_double] = ACTIONS(2966), + [anon_sym_c_longdouble] = ACTIONS(2966), + [anon_sym_PLUS_EQ] = ACTIONS(2964), + [anon_sym_DASH_EQ] = ACTIONS(2964), + [anon_sym_STAR_EQ] = ACTIONS(2964), + [anon_sym_SLASH_EQ] = ACTIONS(2964), + [anon_sym_AMP_EQ] = ACTIONS(2964), + [anon_sym_PIPE_EQ] = ACTIONS(2966), + [anon_sym_xor_EQ] = ACTIONS(2964), + [anon_sym_LT_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_GT_EQ] = ACTIONS(2964), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_defer] = ACTIONS(2966), + [anon_sym_errdefer] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_expand] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_PIPE2] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2964), + [anon_sym_orelse] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_and] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_xor] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_LT_LT_PIPE] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_catch] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2966), + [anon_sym_false] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_unreachable] = ACTIONS(2966), + [anon_sym_undefined] = ACTIONS(2966), + [sym_sink] = ACTIONS(2966), + [sym_integer] = ACTIONS(2966), + [sym_float] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_multiline_string] = ACTIONS(2964), + [sym_character] = ACTIONS(2964), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2964), + }, + [STATE(3435)] = { + [sym_identifier] = ACTIONS(5586), + [anon_sym_func] = ACTIONS(5586), + [anon_sym_BANG] = ACTIONS(5586), + [anon_sym_EQ] = ACTIONS(5586), + [anon_sym_struct] = ACTIONS(5586), + [anon_sym_LPAREN] = ACTIONS(5584), + [anon_sym_LBRACE] = ACTIONS(5584), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_DOLLAR] = ACTIONS(5584), + [anon_sym_PIPE] = ACTIONS(5586), + [anon_sym_QMARK] = ACTIONS(5584), + [anon_sym_STAR] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5584), + [anon_sym_void] = ACTIONS(5586), + [anon_sym_noreturn] = ACTIONS(5586), + [anon_sym_type] = ACTIONS(5586), + [anon_sym_anyopaque] = ACTIONS(5586), + [anon_sym_bool] = ACTIONS(5586), + [anon_sym_int] = ACTIONS(5586), + [anon_sym_uint] = ACTIONS(5586), + [anon_sym_float] = ACTIONS(5586), + [anon_sym_range] = ACTIONS(5586), + [anon_sym_i8] = ACTIONS(5586), + [anon_sym_i16] = ACTIONS(5586), + [anon_sym_i32] = ACTIONS(5586), + [anon_sym_i64] = ACTIONS(5586), + [anon_sym_u8] = ACTIONS(5586), + [anon_sym_u16] = ACTIONS(5586), + [anon_sym_u32] = ACTIONS(5586), + [anon_sym_u64] = ACTIONS(5586), + [anon_sym_isize] = ACTIONS(5586), + [anon_sym_usize] = ACTIONS(5586), + [anon_sym_f32] = ACTIONS(5586), + [anon_sym_f64] = ACTIONS(5586), + [anon_sym_c_char] = ACTIONS(5586), + [anon_sym_c_schar] = ACTIONS(5586), + [anon_sym_c_uchar] = ACTIONS(5586), + [anon_sym_c_short] = ACTIONS(5586), + [anon_sym_c_ushort] = ACTIONS(5586), + [anon_sym_c_int] = ACTIONS(5586), + [anon_sym_c_uint] = ACTIONS(5586), + [anon_sym_c_long] = ACTIONS(5586), + [anon_sym_c_ulong] = ACTIONS(5586), + [anon_sym_c_longlong] = ACTIONS(5586), + [anon_sym_c_ulonglong] = ACTIONS(5586), + [anon_sym_c_float] = ACTIONS(5586), + [anon_sym_c_double] = ACTIONS(5586), + [anon_sym_c_longdouble] = ACTIONS(5586), + [anon_sym_PLUS_EQ] = ACTIONS(5584), + [anon_sym_DASH_EQ] = ACTIONS(5584), + [anon_sym_STAR_EQ] = ACTIONS(5584), + [anon_sym_SLASH_EQ] = ACTIONS(5584), + [anon_sym_AMP_EQ] = ACTIONS(5584), + [anon_sym_PIPE_EQ] = ACTIONS(5586), + [anon_sym_xor_EQ] = ACTIONS(5584), + [anon_sym_LT_LT_EQ] = ACTIONS(5584), + [anon_sym_GT_GT_EQ] = ACTIONS(5584), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5584), + [anon_sym_return] = ACTIONS(5586), + [anon_sym_yield] = ACTIONS(5586), + [anon_sym_break] = ACTIONS(5586), + [anon_sym_continue] = ACTIONS(5586), + [anon_sym_defer] = ACTIONS(5586), + [anon_sym_errdefer] = ACTIONS(5586), + [anon_sym_if] = ACTIONS(5586), + [anon_sym_else] = ACTIONS(5586), + [anon_sym_while] = ACTIONS(5586), + [anon_sym_expand] = ACTIONS(5586), + [anon_sym_for] = ACTIONS(5586), + [anon_sym_PIPE2] = ACTIONS(5584), + [anon_sym_match] = ACTIONS(5586), + [anon_sym_DOT_DOT] = ACTIONS(5586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5584), + [anon_sym_orelse] = ACTIONS(5586), + [anon_sym_or] = ACTIONS(5586), + [anon_sym_and] = ACTIONS(5586), + [anon_sym_EQ_EQ] = ACTIONS(5584), + [anon_sym_BANG_EQ] = ACTIONS(5584), + [anon_sym_LT] = ACTIONS(5586), + [anon_sym_LT_EQ] = ACTIONS(5584), + [anon_sym_GT] = ACTIONS(5586), + [anon_sym_GT_EQ] = ACTIONS(5584), + [anon_sym_AMP] = ACTIONS(5586), + [anon_sym_xor] = ACTIONS(5586), + [anon_sym_LT_LT] = ACTIONS(5586), + [anon_sym_GT_GT] = ACTIONS(5586), + [anon_sym_LT_LT_PIPE] = ACTIONS(5586), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_SLASH] = ACTIONS(5586), + [anon_sym_catch] = ACTIONS(5586), + [anon_sym_TILDE] = ACTIONS(5584), + [anon_sym_try] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(5586), + [anon_sym_CARET] = ACTIONS(5584), + [anon_sym_true] = ACTIONS(5586), + [anon_sym_false] = ACTIONS(5586), + [anon_sym_null] = ACTIONS(5586), + [anon_sym_unreachable] = ACTIONS(5586), + [anon_sym_undefined] = ACTIONS(5586), + [sym_sink] = ACTIONS(5586), + [sym_integer] = ACTIONS(5586), + [sym_float] = ACTIONS(5584), + [anon_sym_DQUOTE] = ACTIONS(5584), + [sym_multiline_string] = ACTIONS(5584), + [sym_character] = ACTIONS(5584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5584), + }, + [STATE(3436)] = { + [sym_identifier] = ACTIONS(5908), + [anon_sym_func] = ACTIONS(5908), + [anon_sym_BANG] = ACTIONS(5908), + [anon_sym_EQ] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_LPAREN] = ACTIONS(5906), + [anon_sym_LBRACE] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(5908), + [anon_sym_DOLLAR] = ACTIONS(5906), + [anon_sym_PIPE] = ACTIONS(5908), + [anon_sym_QMARK] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5906), + [anon_sym_void] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_type] = ACTIONS(5908), + [anon_sym_anyopaque] = ACTIONS(5908), + [anon_sym_bool] = ACTIONS(5908), + [anon_sym_int] = ACTIONS(5908), + [anon_sym_uint] = ACTIONS(5908), + [anon_sym_float] = ACTIONS(5908), + [anon_sym_range] = ACTIONS(5908), + [anon_sym_i8] = ACTIONS(5908), + [anon_sym_i16] = ACTIONS(5908), + [anon_sym_i32] = ACTIONS(5908), + [anon_sym_i64] = ACTIONS(5908), + [anon_sym_u8] = ACTIONS(5908), + [anon_sym_u16] = ACTIONS(5908), + [anon_sym_u32] = ACTIONS(5908), + [anon_sym_u64] = ACTIONS(5908), + [anon_sym_isize] = ACTIONS(5908), + [anon_sym_usize] = ACTIONS(5908), + [anon_sym_f32] = ACTIONS(5908), + [anon_sym_f64] = ACTIONS(5908), + [anon_sym_c_char] = ACTIONS(5908), + [anon_sym_c_schar] = ACTIONS(5908), + [anon_sym_c_uchar] = ACTIONS(5908), + [anon_sym_c_short] = ACTIONS(5908), + [anon_sym_c_ushort] = ACTIONS(5908), + [anon_sym_c_int] = ACTIONS(5908), + [anon_sym_c_uint] = ACTIONS(5908), + [anon_sym_c_long] = ACTIONS(5908), + [anon_sym_c_ulong] = ACTIONS(5908), + [anon_sym_c_longlong] = ACTIONS(5908), + [anon_sym_c_ulonglong] = ACTIONS(5908), + [anon_sym_c_float] = ACTIONS(5908), + [anon_sym_c_double] = ACTIONS(5908), + [anon_sym_c_longdouble] = ACTIONS(5908), + [anon_sym_PLUS_EQ] = ACTIONS(5906), + [anon_sym_DASH_EQ] = ACTIONS(5906), + [anon_sym_STAR_EQ] = ACTIONS(5906), + [anon_sym_SLASH_EQ] = ACTIONS(5906), + [anon_sym_AMP_EQ] = ACTIONS(5906), + [anon_sym_PIPE_EQ] = ACTIONS(5908), + [anon_sym_xor_EQ] = ACTIONS(5906), + [anon_sym_LT_LT_EQ] = ACTIONS(5906), + [anon_sym_GT_GT_EQ] = ACTIONS(5906), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5906), + [anon_sym_return] = ACTIONS(5908), + [anon_sym_yield] = ACTIONS(5908), + [anon_sym_break] = ACTIONS(5908), + [anon_sym_continue] = ACTIONS(5908), + [anon_sym_defer] = ACTIONS(5908), + [anon_sym_errdefer] = ACTIONS(5908), + [anon_sym_if] = ACTIONS(5908), + [anon_sym_else] = ACTIONS(5908), + [anon_sym_while] = ACTIONS(5908), + [anon_sym_expand] = ACTIONS(5908), + [anon_sym_for] = ACTIONS(5908), + [anon_sym_PIPE2] = ACTIONS(5906), + [anon_sym_match] = ACTIONS(5908), + [anon_sym_DOT_DOT] = ACTIONS(5908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5906), + [anon_sym_orelse] = ACTIONS(5908), + [anon_sym_or] = ACTIONS(5908), + [anon_sym_and] = ACTIONS(5908), + [anon_sym_EQ_EQ] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(5908), + [anon_sym_LT_EQ] = ACTIONS(5906), + [anon_sym_GT] = ACTIONS(5908), + [anon_sym_GT_EQ] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5908), + [anon_sym_xor] = ACTIONS(5908), + [anon_sym_LT_LT] = ACTIONS(5908), + [anon_sym_GT_GT] = ACTIONS(5908), + [anon_sym_LT_LT_PIPE] = ACTIONS(5908), + [anon_sym_PLUS] = ACTIONS(5908), + [anon_sym_SLASH] = ACTIONS(5908), + [anon_sym_catch] = ACTIONS(5908), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_try] = ACTIONS(5908), + [anon_sym_DOT] = ACTIONS(5908), + [anon_sym_CARET] = ACTIONS(5906), + [anon_sym_true] = ACTIONS(5908), + [anon_sym_false] = ACTIONS(5908), + [anon_sym_null] = ACTIONS(5908), + [anon_sym_unreachable] = ACTIONS(5908), + [anon_sym_undefined] = ACTIONS(5908), + [sym_sink] = ACTIONS(5908), + [sym_integer] = ACTIONS(5908), + [sym_float] = ACTIONS(5906), + [anon_sym_DQUOTE] = ACTIONS(5906), + [sym_multiline_string] = ACTIONS(5906), + [sym_character] = ACTIONS(5906), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5906), + }, + [STATE(3437)] = { + [sym_identifier] = ACTIONS(5912), + [anon_sym_func] = ACTIONS(5912), + [anon_sym_BANG] = ACTIONS(5912), + [anon_sym_EQ] = ACTIONS(5912), + [anon_sym_struct] = ACTIONS(5912), + [anon_sym_LPAREN] = ACTIONS(5910), + [anon_sym_LBRACE] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5912), + [anon_sym_DOLLAR] = ACTIONS(5910), + [anon_sym_PIPE] = ACTIONS(5912), + [anon_sym_QMARK] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(5910), + [anon_sym_void] = ACTIONS(5912), + [anon_sym_noreturn] = ACTIONS(5912), + [anon_sym_type] = ACTIONS(5912), + [anon_sym_anyopaque] = ACTIONS(5912), + [anon_sym_bool] = ACTIONS(5912), + [anon_sym_int] = ACTIONS(5912), + [anon_sym_uint] = ACTIONS(5912), + [anon_sym_float] = ACTIONS(5912), + [anon_sym_range] = ACTIONS(5912), + [anon_sym_i8] = ACTIONS(5912), + [anon_sym_i16] = ACTIONS(5912), + [anon_sym_i32] = ACTIONS(5912), + [anon_sym_i64] = ACTIONS(5912), + [anon_sym_u8] = ACTIONS(5912), + [anon_sym_u16] = ACTIONS(5912), + [anon_sym_u32] = ACTIONS(5912), + [anon_sym_u64] = ACTIONS(5912), + [anon_sym_isize] = ACTIONS(5912), + [anon_sym_usize] = ACTIONS(5912), + [anon_sym_f32] = ACTIONS(5912), + [anon_sym_f64] = ACTIONS(5912), + [anon_sym_c_char] = ACTIONS(5912), + [anon_sym_c_schar] = ACTIONS(5912), + [anon_sym_c_uchar] = ACTIONS(5912), + [anon_sym_c_short] = ACTIONS(5912), + [anon_sym_c_ushort] = ACTIONS(5912), + [anon_sym_c_int] = ACTIONS(5912), + [anon_sym_c_uint] = ACTIONS(5912), + [anon_sym_c_long] = ACTIONS(5912), + [anon_sym_c_ulong] = ACTIONS(5912), + [anon_sym_c_longlong] = ACTIONS(5912), + [anon_sym_c_ulonglong] = ACTIONS(5912), + [anon_sym_c_float] = ACTIONS(5912), + [anon_sym_c_double] = ACTIONS(5912), + [anon_sym_c_longdouble] = ACTIONS(5912), + [anon_sym_PLUS_EQ] = ACTIONS(5910), + [anon_sym_DASH_EQ] = ACTIONS(5910), + [anon_sym_STAR_EQ] = ACTIONS(5910), + [anon_sym_SLASH_EQ] = ACTIONS(5910), + [anon_sym_AMP_EQ] = ACTIONS(5910), + [anon_sym_PIPE_EQ] = ACTIONS(5912), + [anon_sym_xor_EQ] = ACTIONS(5910), + [anon_sym_LT_LT_EQ] = ACTIONS(5910), + [anon_sym_GT_GT_EQ] = ACTIONS(5910), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5910), + [anon_sym_return] = ACTIONS(5912), + [anon_sym_yield] = ACTIONS(5912), + [anon_sym_break] = ACTIONS(5912), + [anon_sym_continue] = ACTIONS(5912), + [anon_sym_defer] = ACTIONS(5912), + [anon_sym_errdefer] = ACTIONS(5912), + [anon_sym_if] = ACTIONS(5912), + [anon_sym_else] = ACTIONS(5912), + [anon_sym_while] = ACTIONS(5912), + [anon_sym_expand] = ACTIONS(5912), + [anon_sym_for] = ACTIONS(5912), + [anon_sym_PIPE2] = ACTIONS(5910), + [anon_sym_match] = ACTIONS(5912), + [anon_sym_DOT_DOT] = ACTIONS(5912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5910), + [anon_sym_orelse] = ACTIONS(5912), + [anon_sym_or] = ACTIONS(5912), + [anon_sym_and] = ACTIONS(5912), + [anon_sym_EQ_EQ] = ACTIONS(5910), + [anon_sym_BANG_EQ] = ACTIONS(5910), + [anon_sym_LT] = ACTIONS(5912), + [anon_sym_LT_EQ] = ACTIONS(5910), + [anon_sym_GT] = ACTIONS(5912), + [anon_sym_GT_EQ] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5912), + [anon_sym_xor] = ACTIONS(5912), + [anon_sym_LT_LT] = ACTIONS(5912), + [anon_sym_GT_GT] = ACTIONS(5912), + [anon_sym_LT_LT_PIPE] = ACTIONS(5912), + [anon_sym_PLUS] = ACTIONS(5912), + [anon_sym_SLASH] = ACTIONS(5912), + [anon_sym_catch] = ACTIONS(5912), + [anon_sym_TILDE] = ACTIONS(5910), + [anon_sym_try] = ACTIONS(5912), + [anon_sym_DOT] = ACTIONS(5912), + [anon_sym_CARET] = ACTIONS(5910), + [anon_sym_true] = ACTIONS(5912), + [anon_sym_false] = ACTIONS(5912), + [anon_sym_null] = ACTIONS(5912), + [anon_sym_unreachable] = ACTIONS(5912), + [anon_sym_undefined] = ACTIONS(5912), + [sym_sink] = ACTIONS(5912), + [sym_integer] = ACTIONS(5912), + [sym_float] = ACTIONS(5910), + [anon_sym_DQUOTE] = ACTIONS(5910), + [sym_multiline_string] = ACTIONS(5910), + [sym_character] = ACTIONS(5910), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5910), + }, + [STATE(3438)] = { + [sym_identifier] = ACTIONS(5994), + [anon_sym_func] = ACTIONS(5994), + [anon_sym_BANG] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_struct] = ACTIONS(5994), + [anon_sym_LPAREN] = ACTIONS(5992), + [anon_sym_LBRACE] = ACTIONS(5992), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_DOLLAR] = ACTIONS(5992), + [anon_sym_PIPE] = ACTIONS(5994), + [anon_sym_QMARK] = ACTIONS(5992), + [anon_sym_STAR] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(5992), + [anon_sym_void] = ACTIONS(5994), + [anon_sym_noreturn] = ACTIONS(5994), + [anon_sym_type] = ACTIONS(5994), + [anon_sym_anyopaque] = ACTIONS(5994), + [anon_sym_bool] = ACTIONS(5994), + [anon_sym_int] = ACTIONS(5994), + [anon_sym_uint] = ACTIONS(5994), + [anon_sym_float] = ACTIONS(5994), + [anon_sym_range] = ACTIONS(5994), + [anon_sym_i8] = ACTIONS(5994), + [anon_sym_i16] = ACTIONS(5994), + [anon_sym_i32] = ACTIONS(5994), + [anon_sym_i64] = ACTIONS(5994), + [anon_sym_u8] = ACTIONS(5994), + [anon_sym_u16] = ACTIONS(5994), + [anon_sym_u32] = ACTIONS(5994), + [anon_sym_u64] = ACTIONS(5994), + [anon_sym_isize] = ACTIONS(5994), + [anon_sym_usize] = ACTIONS(5994), + [anon_sym_f32] = ACTIONS(5994), + [anon_sym_f64] = ACTIONS(5994), + [anon_sym_c_char] = ACTIONS(5994), + [anon_sym_c_schar] = ACTIONS(5994), + [anon_sym_c_uchar] = ACTIONS(5994), + [anon_sym_c_short] = ACTIONS(5994), + [anon_sym_c_ushort] = ACTIONS(5994), + [anon_sym_c_int] = ACTIONS(5994), + [anon_sym_c_uint] = ACTIONS(5994), + [anon_sym_c_long] = ACTIONS(5994), + [anon_sym_c_ulong] = ACTIONS(5994), + [anon_sym_c_longlong] = ACTIONS(5994), + [anon_sym_c_ulonglong] = ACTIONS(5994), + [anon_sym_c_float] = ACTIONS(5994), + [anon_sym_c_double] = ACTIONS(5994), + [anon_sym_c_longdouble] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5992), + [anon_sym_DASH_EQ] = ACTIONS(5992), + [anon_sym_STAR_EQ] = ACTIONS(5992), + [anon_sym_SLASH_EQ] = ACTIONS(5992), + [anon_sym_AMP_EQ] = ACTIONS(5992), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_xor_EQ] = ACTIONS(5992), + [anon_sym_LT_LT_EQ] = ACTIONS(5992), + [anon_sym_GT_GT_EQ] = ACTIONS(5992), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5992), + [anon_sym_return] = ACTIONS(5994), + [anon_sym_yield] = ACTIONS(5994), + [anon_sym_break] = ACTIONS(5994), + [anon_sym_continue] = ACTIONS(5994), + [anon_sym_defer] = ACTIONS(5994), + [anon_sym_errdefer] = ACTIONS(5994), + [anon_sym_if] = ACTIONS(5994), + [anon_sym_else] = ACTIONS(5994), + [anon_sym_while] = ACTIONS(5994), + [anon_sym_expand] = ACTIONS(5994), + [anon_sym_for] = ACTIONS(5994), + [anon_sym_PIPE2] = ACTIONS(5992), + [anon_sym_match] = ACTIONS(5994), + [anon_sym_DOT_DOT] = ACTIONS(5994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5992), + [anon_sym_orelse] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5994), + [anon_sym_and] = ACTIONS(5994), + [anon_sym_EQ_EQ] = ACTIONS(5992), + [anon_sym_BANG_EQ] = ACTIONS(5992), + [anon_sym_LT] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5992), + [anon_sym_GT] = ACTIONS(5994), + [anon_sym_GT_EQ] = ACTIONS(5992), + [anon_sym_AMP] = ACTIONS(5994), + [anon_sym_xor] = ACTIONS(5994), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym_LT_LT_PIPE] = ACTIONS(5994), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5994), + [anon_sym_catch] = ACTIONS(5994), + [anon_sym_TILDE] = ACTIONS(5992), + [anon_sym_try] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_CARET] = ACTIONS(5992), + [anon_sym_true] = ACTIONS(5994), + [anon_sym_false] = ACTIONS(5994), + [anon_sym_null] = ACTIONS(5994), + [anon_sym_unreachable] = ACTIONS(5994), + [anon_sym_undefined] = ACTIONS(5994), + [sym_sink] = ACTIONS(5994), + [sym_integer] = ACTIONS(5994), + [sym_float] = ACTIONS(5992), + [anon_sym_DQUOTE] = ACTIONS(5992), + [sym_multiline_string] = ACTIONS(5992), + [sym_character] = ACTIONS(5992), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5992), + }, + [STATE(3439)] = { + [sym_identifier] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_EQ] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_DOLLAR] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4504), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4502), + [anon_sym_DASH_EQ] = ACTIONS(4502), + [anon_sym_STAR_EQ] = ACTIONS(4502), + [anon_sym_SLASH_EQ] = ACTIONS(4502), + [anon_sym_AMP_EQ] = ACTIONS(4502), + [anon_sym_PIPE_EQ] = ACTIONS(4504), + [anon_sym_xor_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_EQ] = ACTIONS(4502), + [anon_sym_GT_GT_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_errdefer] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_expand] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_PIPE2] = ACTIONS(4502), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4504), + [anon_sym_LT_LT_PIPE] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_SLASH] = ACTIONS(4504), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [anon_sym_true] = ACTIONS(4504), + [anon_sym_false] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_unreachable] = ACTIONS(4504), + [anon_sym_undefined] = ACTIONS(4504), + [sym_sink] = ACTIONS(4504), + [sym_integer] = ACTIONS(4504), + [sym_float] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_multiline_string] = ACTIONS(4502), + [sym_character] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(3440)] = { + [sym_identifier] = ACTIONS(5732), + [anon_sym_func] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5732), + [anon_sym_EQ] = ACTIONS(5732), + [anon_sym_struct] = ACTIONS(5732), + [anon_sym_LPAREN] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_DASH] = ACTIONS(5732), + [anon_sym_DOLLAR] = ACTIONS(5730), + [anon_sym_PIPE] = ACTIONS(5732), + [anon_sym_QMARK] = ACTIONS(5730), + [anon_sym_STAR] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5730), + [anon_sym_void] = ACTIONS(5732), + [anon_sym_noreturn] = ACTIONS(5732), + [anon_sym_type] = ACTIONS(5732), + [anon_sym_anyopaque] = ACTIONS(5732), + [anon_sym_bool] = ACTIONS(5732), + [anon_sym_int] = ACTIONS(5732), + [anon_sym_uint] = ACTIONS(5732), + [anon_sym_float] = ACTIONS(5732), + [anon_sym_range] = ACTIONS(5732), + [anon_sym_i8] = ACTIONS(5732), + [anon_sym_i16] = ACTIONS(5732), + [anon_sym_i32] = ACTIONS(5732), + [anon_sym_i64] = ACTIONS(5732), + [anon_sym_u8] = ACTIONS(5732), + [anon_sym_u16] = ACTIONS(5732), + [anon_sym_u32] = ACTIONS(5732), + [anon_sym_u64] = ACTIONS(5732), + [anon_sym_isize] = ACTIONS(5732), + [anon_sym_usize] = ACTIONS(5732), + [anon_sym_f32] = ACTIONS(5732), + [anon_sym_f64] = ACTIONS(5732), + [anon_sym_c_char] = ACTIONS(5732), + [anon_sym_c_schar] = ACTIONS(5732), + [anon_sym_c_uchar] = ACTIONS(5732), + [anon_sym_c_short] = ACTIONS(5732), + [anon_sym_c_ushort] = ACTIONS(5732), + [anon_sym_c_int] = ACTIONS(5732), + [anon_sym_c_uint] = ACTIONS(5732), + [anon_sym_c_long] = ACTIONS(5732), + [anon_sym_c_ulong] = ACTIONS(5732), + [anon_sym_c_longlong] = ACTIONS(5732), + [anon_sym_c_ulonglong] = ACTIONS(5732), + [anon_sym_c_float] = ACTIONS(5732), + [anon_sym_c_double] = ACTIONS(5732), + [anon_sym_c_longdouble] = ACTIONS(5732), + [anon_sym_PLUS_EQ] = ACTIONS(5730), + [anon_sym_DASH_EQ] = ACTIONS(5730), + [anon_sym_STAR_EQ] = ACTIONS(5730), + [anon_sym_SLASH_EQ] = ACTIONS(5730), + [anon_sym_AMP_EQ] = ACTIONS(5730), + [anon_sym_PIPE_EQ] = ACTIONS(5732), + [anon_sym_xor_EQ] = ACTIONS(5730), + [anon_sym_LT_LT_EQ] = ACTIONS(5730), + [anon_sym_GT_GT_EQ] = ACTIONS(5730), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5730), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_yield] = ACTIONS(5732), + [anon_sym_break] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [anon_sym_defer] = ACTIONS(5732), + [anon_sym_errdefer] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [anon_sym_else] = ACTIONS(5732), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_expand] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [anon_sym_PIPE2] = ACTIONS(5730), + [anon_sym_match] = ACTIONS(5732), + [anon_sym_DOT_DOT] = ACTIONS(5732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5730), + [anon_sym_orelse] = ACTIONS(5732), + [anon_sym_or] = ACTIONS(5732), + [anon_sym_and] = ACTIONS(5732), + [anon_sym_EQ_EQ] = ACTIONS(5730), + [anon_sym_BANG_EQ] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(5732), + [anon_sym_LT_EQ] = ACTIONS(5730), + [anon_sym_GT] = ACTIONS(5732), + [anon_sym_GT_EQ] = ACTIONS(5730), + [anon_sym_AMP] = ACTIONS(5732), + [anon_sym_xor] = ACTIONS(5732), + [anon_sym_LT_LT] = ACTIONS(5732), + [anon_sym_GT_GT] = ACTIONS(5732), + [anon_sym_LT_LT_PIPE] = ACTIONS(5732), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_SLASH] = ACTIONS(5732), + [anon_sym_catch] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5730), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_DOT] = ACTIONS(5732), + [anon_sym_CARET] = ACTIONS(5730), + [anon_sym_true] = ACTIONS(5732), + [anon_sym_false] = ACTIONS(5732), + [anon_sym_null] = ACTIONS(5732), + [anon_sym_unreachable] = ACTIONS(5732), + [anon_sym_undefined] = ACTIONS(5732), + [sym_sink] = ACTIONS(5732), + [sym_integer] = ACTIONS(5732), + [sym_float] = ACTIONS(5730), + [anon_sym_DQUOTE] = ACTIONS(5730), + [sym_multiline_string] = ACTIONS(5730), + [sym_character] = ACTIONS(5730), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5730), + }, + [STATE(3441)] = { + [sym_identifier] = ACTIONS(5736), + [anon_sym_func] = ACTIONS(5736), + [anon_sym_BANG] = ACTIONS(5736), + [anon_sym_EQ] = ACTIONS(5736), + [anon_sym_struct] = ACTIONS(5736), + [anon_sym_LPAREN] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_DASH] = ACTIONS(5736), + [anon_sym_DOLLAR] = ACTIONS(5734), + [anon_sym_PIPE] = ACTIONS(5736), + [anon_sym_QMARK] = ACTIONS(5734), + [anon_sym_STAR] = ACTIONS(5736), + [anon_sym_LBRACK] = ACTIONS(5734), + [anon_sym_void] = ACTIONS(5736), + [anon_sym_noreturn] = ACTIONS(5736), + [anon_sym_type] = ACTIONS(5736), + [anon_sym_anyopaque] = ACTIONS(5736), + [anon_sym_bool] = ACTIONS(5736), + [anon_sym_int] = ACTIONS(5736), + [anon_sym_uint] = ACTIONS(5736), + [anon_sym_float] = ACTIONS(5736), + [anon_sym_range] = ACTIONS(5736), + [anon_sym_i8] = ACTIONS(5736), + [anon_sym_i16] = ACTIONS(5736), + [anon_sym_i32] = ACTIONS(5736), + [anon_sym_i64] = ACTIONS(5736), + [anon_sym_u8] = ACTIONS(5736), + [anon_sym_u16] = ACTIONS(5736), + [anon_sym_u32] = ACTIONS(5736), + [anon_sym_u64] = ACTIONS(5736), + [anon_sym_isize] = ACTIONS(5736), + [anon_sym_usize] = ACTIONS(5736), + [anon_sym_f32] = ACTIONS(5736), + [anon_sym_f64] = ACTIONS(5736), + [anon_sym_c_char] = ACTIONS(5736), + [anon_sym_c_schar] = ACTIONS(5736), + [anon_sym_c_uchar] = ACTIONS(5736), + [anon_sym_c_short] = ACTIONS(5736), + [anon_sym_c_ushort] = ACTIONS(5736), + [anon_sym_c_int] = ACTIONS(5736), + [anon_sym_c_uint] = ACTIONS(5736), + [anon_sym_c_long] = ACTIONS(5736), + [anon_sym_c_ulong] = ACTIONS(5736), + [anon_sym_c_longlong] = ACTIONS(5736), + [anon_sym_c_ulonglong] = ACTIONS(5736), + [anon_sym_c_float] = ACTIONS(5736), + [anon_sym_c_double] = ACTIONS(5736), + [anon_sym_c_longdouble] = ACTIONS(5736), + [anon_sym_PLUS_EQ] = ACTIONS(5734), + [anon_sym_DASH_EQ] = ACTIONS(5734), + [anon_sym_STAR_EQ] = ACTIONS(5734), + [anon_sym_SLASH_EQ] = ACTIONS(5734), + [anon_sym_AMP_EQ] = ACTIONS(5734), + [anon_sym_PIPE_EQ] = ACTIONS(5736), + [anon_sym_xor_EQ] = ACTIONS(5734), + [anon_sym_LT_LT_EQ] = ACTIONS(5734), + [anon_sym_GT_GT_EQ] = ACTIONS(5734), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5734), + [anon_sym_return] = ACTIONS(5736), + [anon_sym_yield] = ACTIONS(5736), + [anon_sym_break] = ACTIONS(5736), + [anon_sym_continue] = ACTIONS(5736), + [anon_sym_defer] = ACTIONS(5736), + [anon_sym_errdefer] = ACTIONS(5736), + [anon_sym_if] = ACTIONS(5736), + [anon_sym_else] = ACTIONS(5736), + [anon_sym_while] = ACTIONS(5736), + [anon_sym_expand] = ACTIONS(5736), + [anon_sym_for] = ACTIONS(5736), + [anon_sym_PIPE2] = ACTIONS(5734), + [anon_sym_match] = ACTIONS(5736), + [anon_sym_DOT_DOT] = ACTIONS(5736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5734), + [anon_sym_orelse] = ACTIONS(5736), + [anon_sym_or] = ACTIONS(5736), + [anon_sym_and] = ACTIONS(5736), + [anon_sym_EQ_EQ] = ACTIONS(5734), + [anon_sym_BANG_EQ] = ACTIONS(5734), + [anon_sym_LT] = ACTIONS(5736), + [anon_sym_LT_EQ] = ACTIONS(5734), + [anon_sym_GT] = ACTIONS(5736), + [anon_sym_GT_EQ] = ACTIONS(5734), + [anon_sym_AMP] = ACTIONS(5736), + [anon_sym_xor] = ACTIONS(5736), + [anon_sym_LT_LT] = ACTIONS(5736), + [anon_sym_GT_GT] = ACTIONS(5736), + [anon_sym_LT_LT_PIPE] = ACTIONS(5736), + [anon_sym_PLUS] = ACTIONS(5736), + [anon_sym_SLASH] = ACTIONS(5736), + [anon_sym_catch] = ACTIONS(5736), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_try] = ACTIONS(5736), + [anon_sym_DOT] = ACTIONS(5736), + [anon_sym_CARET] = ACTIONS(5734), + [anon_sym_true] = ACTIONS(5736), + [anon_sym_false] = ACTIONS(5736), + [anon_sym_null] = ACTIONS(5736), + [anon_sym_unreachable] = ACTIONS(5736), + [anon_sym_undefined] = ACTIONS(5736), + [sym_sink] = ACTIONS(5736), + [sym_integer] = ACTIONS(5736), + [sym_float] = ACTIONS(5734), + [anon_sym_DQUOTE] = ACTIONS(5734), + [sym_multiline_string] = ACTIONS(5734), + [sym_character] = ACTIONS(5734), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5734), + }, + [STATE(3442)] = { + [sym_identifier] = ACTIONS(5740), + [anon_sym_func] = ACTIONS(5740), + [anon_sym_BANG] = ACTIONS(5740), + [anon_sym_EQ] = ACTIONS(5740), + [anon_sym_struct] = ACTIONS(5740), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(5738), + [anon_sym_DASH] = ACTIONS(5740), + [anon_sym_DOLLAR] = ACTIONS(5738), + [anon_sym_PIPE] = ACTIONS(5740), + [anon_sym_QMARK] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5740), + [anon_sym_LBRACK] = ACTIONS(5738), + [anon_sym_void] = ACTIONS(5740), + [anon_sym_noreturn] = ACTIONS(5740), + [anon_sym_type] = ACTIONS(5740), + [anon_sym_anyopaque] = ACTIONS(5740), + [anon_sym_bool] = ACTIONS(5740), + [anon_sym_int] = ACTIONS(5740), + [anon_sym_uint] = ACTIONS(5740), + [anon_sym_float] = ACTIONS(5740), + [anon_sym_range] = ACTIONS(5740), + [anon_sym_i8] = ACTIONS(5740), + [anon_sym_i16] = ACTIONS(5740), + [anon_sym_i32] = ACTIONS(5740), + [anon_sym_i64] = ACTIONS(5740), + [anon_sym_u8] = ACTIONS(5740), + [anon_sym_u16] = ACTIONS(5740), + [anon_sym_u32] = ACTIONS(5740), + [anon_sym_u64] = ACTIONS(5740), + [anon_sym_isize] = ACTIONS(5740), + [anon_sym_usize] = ACTIONS(5740), + [anon_sym_f32] = ACTIONS(5740), + [anon_sym_f64] = ACTIONS(5740), + [anon_sym_c_char] = ACTIONS(5740), + [anon_sym_c_schar] = ACTIONS(5740), + [anon_sym_c_uchar] = ACTIONS(5740), + [anon_sym_c_short] = ACTIONS(5740), + [anon_sym_c_ushort] = ACTIONS(5740), + [anon_sym_c_int] = ACTIONS(5740), + [anon_sym_c_uint] = ACTIONS(5740), + [anon_sym_c_long] = ACTIONS(5740), + [anon_sym_c_ulong] = ACTIONS(5740), + [anon_sym_c_longlong] = ACTIONS(5740), + [anon_sym_c_ulonglong] = ACTIONS(5740), + [anon_sym_c_float] = ACTIONS(5740), + [anon_sym_c_double] = ACTIONS(5740), + [anon_sym_c_longdouble] = ACTIONS(5740), + [anon_sym_PLUS_EQ] = ACTIONS(5738), + [anon_sym_DASH_EQ] = ACTIONS(5738), + [anon_sym_STAR_EQ] = ACTIONS(5738), + [anon_sym_SLASH_EQ] = ACTIONS(5738), + [anon_sym_AMP_EQ] = ACTIONS(5738), + [anon_sym_PIPE_EQ] = ACTIONS(5740), + [anon_sym_xor_EQ] = ACTIONS(5738), + [anon_sym_LT_LT_EQ] = ACTIONS(5738), + [anon_sym_GT_GT_EQ] = ACTIONS(5738), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5738), + [anon_sym_return] = ACTIONS(5740), + [anon_sym_yield] = ACTIONS(5740), + [anon_sym_break] = ACTIONS(5740), + [anon_sym_continue] = ACTIONS(5740), + [anon_sym_defer] = ACTIONS(5740), + [anon_sym_errdefer] = ACTIONS(5740), + [anon_sym_if] = ACTIONS(5740), + [anon_sym_else] = ACTIONS(5740), + [anon_sym_while] = ACTIONS(5740), + [anon_sym_expand] = ACTIONS(5740), + [anon_sym_for] = ACTIONS(5740), + [anon_sym_PIPE2] = ACTIONS(5738), + [anon_sym_match] = ACTIONS(5740), + [anon_sym_DOT_DOT] = ACTIONS(5740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5738), + [anon_sym_orelse] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5740), + [anon_sym_and] = ACTIONS(5740), + [anon_sym_EQ_EQ] = ACTIONS(5738), + [anon_sym_BANG_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_GT] = ACTIONS(5740), + [anon_sym_GT_EQ] = ACTIONS(5738), + [anon_sym_AMP] = ACTIONS(5740), + [anon_sym_xor] = ACTIONS(5740), + [anon_sym_LT_LT] = ACTIONS(5740), + [anon_sym_GT_GT] = ACTIONS(5740), + [anon_sym_LT_LT_PIPE] = ACTIONS(5740), + [anon_sym_PLUS] = ACTIONS(5740), + [anon_sym_SLASH] = ACTIONS(5740), + [anon_sym_catch] = ACTIONS(5740), + [anon_sym_TILDE] = ACTIONS(5738), + [anon_sym_try] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5740), + [anon_sym_CARET] = ACTIONS(5738), + [anon_sym_true] = ACTIONS(5740), + [anon_sym_false] = ACTIONS(5740), + [anon_sym_null] = ACTIONS(5740), + [anon_sym_unreachable] = ACTIONS(5740), + [anon_sym_undefined] = ACTIONS(5740), + [sym_sink] = ACTIONS(5740), + [sym_integer] = ACTIONS(5740), + [sym_float] = ACTIONS(5738), + [anon_sym_DQUOTE] = ACTIONS(5738), + [sym_multiline_string] = ACTIONS(5738), + [sym_character] = ACTIONS(5738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5738), + }, + [STATE(3443)] = { + [sym_identifier] = ACTIONS(5744), + [anon_sym_func] = ACTIONS(5744), + [anon_sym_BANG] = ACTIONS(5744), + [anon_sym_EQ] = ACTIONS(5744), + [anon_sym_struct] = ACTIONS(5744), + [anon_sym_LPAREN] = ACTIONS(5742), + [anon_sym_LBRACE] = ACTIONS(5742), + [anon_sym_DASH] = ACTIONS(5744), + [anon_sym_DOLLAR] = ACTIONS(5742), + [anon_sym_PIPE] = ACTIONS(5744), + [anon_sym_QMARK] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5742), + [anon_sym_void] = ACTIONS(5744), + [anon_sym_noreturn] = ACTIONS(5744), + [anon_sym_type] = ACTIONS(5744), + [anon_sym_anyopaque] = ACTIONS(5744), + [anon_sym_bool] = ACTIONS(5744), + [anon_sym_int] = ACTIONS(5744), + [anon_sym_uint] = ACTIONS(5744), + [anon_sym_float] = ACTIONS(5744), + [anon_sym_range] = ACTIONS(5744), + [anon_sym_i8] = ACTIONS(5744), + [anon_sym_i16] = ACTIONS(5744), + [anon_sym_i32] = ACTIONS(5744), + [anon_sym_i64] = ACTIONS(5744), + [anon_sym_u8] = ACTIONS(5744), + [anon_sym_u16] = ACTIONS(5744), + [anon_sym_u32] = ACTIONS(5744), + [anon_sym_u64] = ACTIONS(5744), + [anon_sym_isize] = ACTIONS(5744), + [anon_sym_usize] = ACTIONS(5744), + [anon_sym_f32] = ACTIONS(5744), + [anon_sym_f64] = ACTIONS(5744), + [anon_sym_c_char] = ACTIONS(5744), + [anon_sym_c_schar] = ACTIONS(5744), + [anon_sym_c_uchar] = ACTIONS(5744), + [anon_sym_c_short] = ACTIONS(5744), + [anon_sym_c_ushort] = ACTIONS(5744), + [anon_sym_c_int] = ACTIONS(5744), + [anon_sym_c_uint] = ACTIONS(5744), + [anon_sym_c_long] = ACTIONS(5744), + [anon_sym_c_ulong] = ACTIONS(5744), + [anon_sym_c_longlong] = ACTIONS(5744), + [anon_sym_c_ulonglong] = ACTIONS(5744), + [anon_sym_c_float] = ACTIONS(5744), + [anon_sym_c_double] = ACTIONS(5744), + [anon_sym_c_longdouble] = ACTIONS(5744), + [anon_sym_PLUS_EQ] = ACTIONS(5742), + [anon_sym_DASH_EQ] = ACTIONS(5742), + [anon_sym_STAR_EQ] = ACTIONS(5742), + [anon_sym_SLASH_EQ] = ACTIONS(5742), + [anon_sym_AMP_EQ] = ACTIONS(5742), + [anon_sym_PIPE_EQ] = ACTIONS(5744), + [anon_sym_xor_EQ] = ACTIONS(5742), + [anon_sym_LT_LT_EQ] = ACTIONS(5742), + [anon_sym_GT_GT_EQ] = ACTIONS(5742), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5742), + [anon_sym_return] = ACTIONS(5744), + [anon_sym_yield] = ACTIONS(5744), + [anon_sym_break] = ACTIONS(5744), + [anon_sym_continue] = ACTIONS(5744), + [anon_sym_defer] = ACTIONS(5744), + [anon_sym_errdefer] = ACTIONS(5744), + [anon_sym_if] = ACTIONS(5744), + [anon_sym_else] = ACTIONS(5744), + [anon_sym_while] = ACTIONS(5744), + [anon_sym_expand] = ACTIONS(5744), + [anon_sym_for] = ACTIONS(5744), + [anon_sym_PIPE2] = ACTIONS(5742), + [anon_sym_match] = ACTIONS(5744), + [anon_sym_DOT_DOT] = ACTIONS(5744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5742), + [anon_sym_orelse] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5744), + [anon_sym_and] = ACTIONS(5744), + [anon_sym_EQ_EQ] = ACTIONS(5742), + [anon_sym_BANG_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_GT] = ACTIONS(5744), + [anon_sym_GT_EQ] = ACTIONS(5742), + [anon_sym_AMP] = ACTIONS(5744), + [anon_sym_xor] = ACTIONS(5744), + [anon_sym_LT_LT] = ACTIONS(5744), + [anon_sym_GT_GT] = ACTIONS(5744), + [anon_sym_LT_LT_PIPE] = ACTIONS(5744), + [anon_sym_PLUS] = ACTIONS(5744), + [anon_sym_SLASH] = ACTIONS(5744), + [anon_sym_catch] = ACTIONS(5744), + [anon_sym_TILDE] = ACTIONS(5742), + [anon_sym_try] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5744), + [anon_sym_CARET] = ACTIONS(5742), + [anon_sym_true] = ACTIONS(5744), + [anon_sym_false] = ACTIONS(5744), + [anon_sym_null] = ACTIONS(5744), + [anon_sym_unreachable] = ACTIONS(5744), + [anon_sym_undefined] = ACTIONS(5744), + [sym_sink] = ACTIONS(5744), + [sym_integer] = ACTIONS(5744), + [sym_float] = ACTIONS(5742), + [anon_sym_DQUOTE] = ACTIONS(5742), + [sym_multiline_string] = ACTIONS(5742), + [sym_character] = ACTIONS(5742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5742), + }, + [STATE(3444)] = { + [sym_identifier] = ACTIONS(4734), + [anon_sym_func] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4738), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_void] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_type] = ACTIONS(4734), + [anon_sym_anyopaque] = ACTIONS(4734), + [anon_sym_bool] = ACTIONS(4734), + [anon_sym_int] = ACTIONS(4734), + [anon_sym_uint] = ACTIONS(4734), + [anon_sym_float] = ACTIONS(4734), + [anon_sym_range] = ACTIONS(4734), + [anon_sym_i8] = ACTIONS(4734), + [anon_sym_i16] = ACTIONS(4734), + [anon_sym_i32] = ACTIONS(4734), + [anon_sym_i64] = ACTIONS(4734), + [anon_sym_u8] = ACTIONS(4734), + [anon_sym_u16] = ACTIONS(4734), + [anon_sym_u32] = ACTIONS(4734), + [anon_sym_u64] = ACTIONS(4734), + [anon_sym_isize] = ACTIONS(4734), + [anon_sym_usize] = ACTIONS(4734), + [anon_sym_f32] = ACTIONS(4734), + [anon_sym_f64] = ACTIONS(4734), + [anon_sym_c_char] = ACTIONS(4734), + [anon_sym_c_schar] = ACTIONS(4734), + [anon_sym_c_uchar] = ACTIONS(4734), + [anon_sym_c_short] = ACTIONS(4734), + [anon_sym_c_ushort] = ACTIONS(4734), + [anon_sym_c_int] = ACTIONS(4734), + [anon_sym_c_uint] = ACTIONS(4734), + [anon_sym_c_long] = ACTIONS(4734), + [anon_sym_c_ulong] = ACTIONS(4734), + [anon_sym_c_longlong] = ACTIONS(4734), + [anon_sym_c_ulonglong] = ACTIONS(4734), + [anon_sym_c_float] = ACTIONS(4734), + [anon_sym_c_double] = ACTIONS(4734), + [anon_sym_c_longdouble] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_AMP_EQ] = ACTIONS(4732), + [anon_sym_PIPE_EQ] = ACTIONS(4736), + [anon_sym_xor_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_GT_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_defer] = ACTIONS(4734), + [anon_sym_errdefer] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_expand] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_PIPE2] = ACTIONS(4732), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4738), + [anon_sym_orelse] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4734), + [anon_sym_xor] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_LT_LT_PIPE] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_catch] = ACTIONS(4734), + [anon_sym_TILDE] = ACTIONS(4738), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_unreachable] = ACTIONS(4734), + [anon_sym_undefined] = ACTIONS(4734), + [sym_sink] = ACTIONS(4734), + [sym_integer] = ACTIONS(4734), + [sym_float] = ACTIONS(4738), + [anon_sym_DQUOTE] = ACTIONS(4738), + [sym_multiline_string] = ACTIONS(4738), + [sym_character] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4738), + }, + [STATE(3445)] = { + [sym_identifier] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_EQ] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_DOLLAR] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4504), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4502), + [anon_sym_DASH_EQ] = ACTIONS(4502), + [anon_sym_STAR_EQ] = ACTIONS(4502), + [anon_sym_SLASH_EQ] = ACTIONS(4502), + [anon_sym_AMP_EQ] = ACTIONS(4502), + [anon_sym_PIPE_EQ] = ACTIONS(4504), + [anon_sym_xor_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_EQ] = ACTIONS(4502), + [anon_sym_GT_GT_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_errdefer] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_expand] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_PIPE2] = ACTIONS(4502), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4504), + [anon_sym_LT_LT_PIPE] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_SLASH] = ACTIONS(4504), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [anon_sym_true] = ACTIONS(4504), + [anon_sym_false] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_unreachable] = ACTIONS(4504), + [anon_sym_undefined] = ACTIONS(4504), + [sym_sink] = ACTIONS(4504), + [sym_integer] = ACTIONS(4504), + [sym_float] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_multiline_string] = ACTIONS(4502), + [sym_character] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(3446)] = { + [sym_identifier] = ACTIONS(5700), + [anon_sym_func] = ACTIONS(5700), + [anon_sym_BANG] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(5702), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_LPAREN] = ACTIONS(5704), + [anon_sym_LBRACE] = ACTIONS(5704), + [anon_sym_DASH] = ACTIONS(5700), + [anon_sym_DOLLAR] = ACTIONS(5704), + [anon_sym_PIPE] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5704), + [anon_sym_STAR] = ACTIONS(5700), + [anon_sym_LBRACK] = ACTIONS(5704), + [anon_sym_void] = ACTIONS(5700), + [anon_sym_noreturn] = ACTIONS(5700), + [anon_sym_type] = ACTIONS(5700), + [anon_sym_anyopaque] = ACTIONS(5700), + [anon_sym_bool] = ACTIONS(5700), + [anon_sym_int] = ACTIONS(5700), + [anon_sym_uint] = ACTIONS(5700), + [anon_sym_float] = ACTIONS(5700), + [anon_sym_range] = ACTIONS(5700), + [anon_sym_i8] = ACTIONS(5700), + [anon_sym_i16] = ACTIONS(5700), + [anon_sym_i32] = ACTIONS(5700), + [anon_sym_i64] = ACTIONS(5700), + [anon_sym_u8] = ACTIONS(5700), + [anon_sym_u16] = ACTIONS(5700), + [anon_sym_u32] = ACTIONS(5700), + [anon_sym_u64] = ACTIONS(5700), + [anon_sym_isize] = ACTIONS(5700), + [anon_sym_usize] = ACTIONS(5700), + [anon_sym_f32] = ACTIONS(5700), + [anon_sym_f64] = ACTIONS(5700), + [anon_sym_c_char] = ACTIONS(5700), + [anon_sym_c_schar] = ACTIONS(5700), + [anon_sym_c_uchar] = ACTIONS(5700), + [anon_sym_c_short] = ACTIONS(5700), + [anon_sym_c_ushort] = ACTIONS(5700), + [anon_sym_c_int] = ACTIONS(5700), + [anon_sym_c_uint] = ACTIONS(5700), + [anon_sym_c_long] = ACTIONS(5700), + [anon_sym_c_ulong] = ACTIONS(5700), + [anon_sym_c_longlong] = ACTIONS(5700), + [anon_sym_c_ulonglong] = ACTIONS(5700), + [anon_sym_c_float] = ACTIONS(5700), + [anon_sym_c_double] = ACTIONS(5700), + [anon_sym_c_longdouble] = ACTIONS(5700), + [anon_sym_PLUS_EQ] = ACTIONS(5698), + [anon_sym_DASH_EQ] = ACTIONS(5698), + [anon_sym_STAR_EQ] = ACTIONS(5698), + [anon_sym_SLASH_EQ] = ACTIONS(5698), + [anon_sym_AMP_EQ] = ACTIONS(5698), + [anon_sym_PIPE_EQ] = ACTIONS(5702), + [anon_sym_xor_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_EQ] = ACTIONS(5698), + [anon_sym_GT_GT_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5698), + [anon_sym_return] = ACTIONS(5700), + [anon_sym_yield] = ACTIONS(5700), + [anon_sym_break] = ACTIONS(5700), + [anon_sym_continue] = ACTIONS(5700), + [anon_sym_defer] = ACTIONS(5700), + [anon_sym_errdefer] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5700), + [anon_sym_else] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5700), + [anon_sym_expand] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5700), + [anon_sym_PIPE2] = ACTIONS(5698), + [anon_sym_match] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5704), + [anon_sym_orelse] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5700), + [anon_sym_and] = ACTIONS(5700), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5704), + [anon_sym_GT] = ACTIONS(5700), + [anon_sym_GT_EQ] = ACTIONS(5704), + [anon_sym_AMP] = ACTIONS(5700), + [anon_sym_xor] = ACTIONS(5700), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5700), + [anon_sym_LT_LT_PIPE] = ACTIONS(5700), + [anon_sym_PLUS] = ACTIONS(5700), + [anon_sym_SLASH] = ACTIONS(5700), + [anon_sym_catch] = ACTIONS(5700), + [anon_sym_TILDE] = ACTIONS(5704), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5700), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_true] = ACTIONS(5700), + [anon_sym_false] = ACTIONS(5700), + [anon_sym_null] = ACTIONS(5700), + [anon_sym_unreachable] = ACTIONS(5700), + [anon_sym_undefined] = ACTIONS(5700), + [sym_sink] = ACTIONS(5700), + [sym_integer] = ACTIONS(5700), + [sym_float] = ACTIONS(5704), + [anon_sym_DQUOTE] = ACTIONS(5704), + [sym_multiline_string] = ACTIONS(5704), + [sym_character] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5704), + }, + [STATE(3447)] = { + [sym_identifier] = ACTIONS(4736), + [anon_sym_func] = ACTIONS(4736), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_struct] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4732), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_QMARK] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_void] = ACTIONS(4736), + [anon_sym_noreturn] = ACTIONS(4736), + [anon_sym_type] = ACTIONS(4736), + [anon_sym_anyopaque] = ACTIONS(4736), + [anon_sym_bool] = ACTIONS(4736), + [anon_sym_int] = ACTIONS(4736), + [anon_sym_uint] = ACTIONS(4736), + [anon_sym_float] = ACTIONS(4736), + [anon_sym_range] = ACTIONS(4736), + [anon_sym_i8] = ACTIONS(4736), + [anon_sym_i16] = ACTIONS(4736), + [anon_sym_i32] = ACTIONS(4736), + [anon_sym_i64] = ACTIONS(4736), + [anon_sym_u8] = ACTIONS(4736), + [anon_sym_u16] = ACTIONS(4736), + [anon_sym_u32] = ACTIONS(4736), + [anon_sym_u64] = ACTIONS(4736), + [anon_sym_isize] = ACTIONS(4736), + [anon_sym_usize] = ACTIONS(4736), + [anon_sym_f32] = ACTIONS(4736), + [anon_sym_f64] = ACTIONS(4736), + [anon_sym_c_char] = ACTIONS(4736), + [anon_sym_c_schar] = ACTIONS(4736), + [anon_sym_c_uchar] = ACTIONS(4736), + [anon_sym_c_short] = ACTIONS(4736), + [anon_sym_c_ushort] = ACTIONS(4736), + [anon_sym_c_int] = ACTIONS(4736), + [anon_sym_c_uint] = ACTIONS(4736), + [anon_sym_c_long] = ACTIONS(4736), + [anon_sym_c_ulong] = ACTIONS(4736), + [anon_sym_c_longlong] = ACTIONS(4736), + [anon_sym_c_ulonglong] = ACTIONS(4736), + [anon_sym_c_float] = ACTIONS(4736), + [anon_sym_c_double] = ACTIONS(4736), + [anon_sym_c_longdouble] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_AMP_EQ] = ACTIONS(4732), + [anon_sym_PIPE_EQ] = ACTIONS(4736), + [anon_sym_xor_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_GT_EQ] = ACTIONS(4732), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_yield] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_defer] = ACTIONS(4736), + [anon_sym_errdefer] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_expand] = ACTIONS(4736), + [anon_sym_for] = ACTIONS(4736), + [anon_sym_PIPE2] = ACTIONS(4732), + [anon_sym_match] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4732), + [anon_sym_orelse] = ACTIONS(4736), + [anon_sym_or] = ACTIONS(4736), + [anon_sym_and] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4732), + [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_xor] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_LT_LT_PIPE] = ACTIONS(4736), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_catch] = ACTIONS(4736), + [anon_sym_TILDE] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4732), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_unreachable] = ACTIONS(4736), + [anon_sym_undefined] = ACTIONS(4736), + [sym_sink] = ACTIONS(4736), + [sym_integer] = ACTIONS(4736), + [sym_float] = ACTIONS(4732), + [anon_sym_DQUOTE] = ACTIONS(4732), + [sym_multiline_string] = ACTIONS(4732), + [sym_character] = ACTIONS(4732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4732), + }, + [STATE(3448)] = { + [sym_identifier] = ACTIONS(5772), + [anon_sym_func] = ACTIONS(5772), + [anon_sym_BANG] = ACTIONS(5772), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_struct] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5772), + [anon_sym_DOLLAR] = ACTIONS(5770), + [anon_sym_PIPE] = ACTIONS(5772), + [anon_sym_QMARK] = ACTIONS(5770), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_void] = ACTIONS(5772), + [anon_sym_noreturn] = ACTIONS(5772), + [anon_sym_type] = ACTIONS(5772), + [anon_sym_anyopaque] = ACTIONS(5772), + [anon_sym_bool] = ACTIONS(5772), + [anon_sym_int] = ACTIONS(5772), + [anon_sym_uint] = ACTIONS(5772), + [anon_sym_float] = ACTIONS(5772), + [anon_sym_range] = ACTIONS(5772), + [anon_sym_i8] = ACTIONS(5772), + [anon_sym_i16] = ACTIONS(5772), + [anon_sym_i32] = ACTIONS(5772), + [anon_sym_i64] = ACTIONS(5772), + [anon_sym_u8] = ACTIONS(5772), + [anon_sym_u16] = ACTIONS(5772), + [anon_sym_u32] = ACTIONS(5772), + [anon_sym_u64] = ACTIONS(5772), + [anon_sym_isize] = ACTIONS(5772), + [anon_sym_usize] = ACTIONS(5772), + [anon_sym_f32] = ACTIONS(5772), + [anon_sym_f64] = ACTIONS(5772), + [anon_sym_c_char] = ACTIONS(5772), + [anon_sym_c_schar] = ACTIONS(5772), + [anon_sym_c_uchar] = ACTIONS(5772), + [anon_sym_c_short] = ACTIONS(5772), + [anon_sym_c_ushort] = ACTIONS(5772), + [anon_sym_c_int] = ACTIONS(5772), + [anon_sym_c_uint] = ACTIONS(5772), + [anon_sym_c_long] = ACTIONS(5772), + [anon_sym_c_ulong] = ACTIONS(5772), + [anon_sym_c_longlong] = ACTIONS(5772), + [anon_sym_c_ulonglong] = ACTIONS(5772), + [anon_sym_c_float] = ACTIONS(5772), + [anon_sym_c_double] = ACTIONS(5772), + [anon_sym_c_longdouble] = ACTIONS(5772), + [anon_sym_PLUS_EQ] = ACTIONS(5770), + [anon_sym_DASH_EQ] = ACTIONS(5770), + [anon_sym_STAR_EQ] = ACTIONS(5770), + [anon_sym_SLASH_EQ] = ACTIONS(5770), + [anon_sym_AMP_EQ] = ACTIONS(5770), + [anon_sym_PIPE_EQ] = ACTIONS(5772), + [anon_sym_xor_EQ] = ACTIONS(5770), + [anon_sym_LT_LT_EQ] = ACTIONS(5770), + [anon_sym_GT_GT_EQ] = ACTIONS(5770), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5770), + [anon_sym_return] = ACTIONS(5772), + [anon_sym_yield] = ACTIONS(5772), + [anon_sym_break] = ACTIONS(5772), + [anon_sym_continue] = ACTIONS(5772), + [anon_sym_defer] = ACTIONS(5772), + [anon_sym_errdefer] = ACTIONS(5772), + [anon_sym_if] = ACTIONS(5772), + [anon_sym_else] = ACTIONS(5772), + [anon_sym_while] = ACTIONS(5772), + [anon_sym_expand] = ACTIONS(5772), + [anon_sym_for] = ACTIONS(5772), + [anon_sym_PIPE2] = ACTIONS(5770), + [anon_sym_match] = ACTIONS(5772), + [anon_sym_DOT_DOT] = ACTIONS(5772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5770), + [anon_sym_orelse] = ACTIONS(5772), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5770), + [anon_sym_BANG_EQ] = ACTIONS(5770), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_EQ] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5770), + [anon_sym_AMP] = ACTIONS(5772), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5772), + [anon_sym_GT_GT] = ACTIONS(5772), + [anon_sym_LT_LT_PIPE] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5772), + [anon_sym_SLASH] = ACTIONS(5772), + [anon_sym_catch] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(5770), + [anon_sym_try] = ACTIONS(5772), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5770), + [anon_sym_true] = ACTIONS(5772), + [anon_sym_false] = ACTIONS(5772), + [anon_sym_null] = ACTIONS(5772), + [anon_sym_unreachable] = ACTIONS(5772), + [anon_sym_undefined] = ACTIONS(5772), + [sym_sink] = ACTIONS(5772), + [sym_integer] = ACTIONS(5772), + [sym_float] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(5770), + [sym_multiline_string] = ACTIONS(5770), + [sym_character] = ACTIONS(5770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5770), + }, + [STATE(3449)] = { + [sym_identifier] = ACTIONS(5776), + [anon_sym_func] = ACTIONS(5776), + [anon_sym_BANG] = ACTIONS(5776), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_struct] = ACTIONS(5776), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_DOLLAR] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_STAR] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_void] = ACTIONS(5776), + [anon_sym_noreturn] = ACTIONS(5776), + [anon_sym_type] = ACTIONS(5776), + [anon_sym_anyopaque] = ACTIONS(5776), + [anon_sym_bool] = ACTIONS(5776), + [anon_sym_int] = ACTIONS(5776), + [anon_sym_uint] = ACTIONS(5776), + [anon_sym_float] = ACTIONS(5776), + [anon_sym_range] = ACTIONS(5776), + [anon_sym_i8] = ACTIONS(5776), + [anon_sym_i16] = ACTIONS(5776), + [anon_sym_i32] = ACTIONS(5776), + [anon_sym_i64] = ACTIONS(5776), + [anon_sym_u8] = ACTIONS(5776), + [anon_sym_u16] = ACTIONS(5776), + [anon_sym_u32] = ACTIONS(5776), + [anon_sym_u64] = ACTIONS(5776), + [anon_sym_isize] = ACTIONS(5776), + [anon_sym_usize] = ACTIONS(5776), + [anon_sym_f32] = ACTIONS(5776), + [anon_sym_f64] = ACTIONS(5776), + [anon_sym_c_char] = ACTIONS(5776), + [anon_sym_c_schar] = ACTIONS(5776), + [anon_sym_c_uchar] = ACTIONS(5776), + [anon_sym_c_short] = ACTIONS(5776), + [anon_sym_c_ushort] = ACTIONS(5776), + [anon_sym_c_int] = ACTIONS(5776), + [anon_sym_c_uint] = ACTIONS(5776), + [anon_sym_c_long] = ACTIONS(5776), + [anon_sym_c_ulong] = ACTIONS(5776), + [anon_sym_c_longlong] = ACTIONS(5776), + [anon_sym_c_ulonglong] = ACTIONS(5776), + [anon_sym_c_float] = ACTIONS(5776), + [anon_sym_c_double] = ACTIONS(5776), + [anon_sym_c_longdouble] = ACTIONS(5776), + [anon_sym_PLUS_EQ] = ACTIONS(5774), + [anon_sym_DASH_EQ] = ACTIONS(5774), + [anon_sym_STAR_EQ] = ACTIONS(5774), + [anon_sym_SLASH_EQ] = ACTIONS(5774), + [anon_sym_AMP_EQ] = ACTIONS(5774), + [anon_sym_PIPE_EQ] = ACTIONS(5776), + [anon_sym_xor_EQ] = ACTIONS(5774), + [anon_sym_LT_LT_EQ] = ACTIONS(5774), + [anon_sym_GT_GT_EQ] = ACTIONS(5774), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5774), + [anon_sym_return] = ACTIONS(5776), + [anon_sym_yield] = ACTIONS(5776), + [anon_sym_break] = ACTIONS(5776), + [anon_sym_continue] = ACTIONS(5776), + [anon_sym_defer] = ACTIONS(5776), + [anon_sym_errdefer] = ACTIONS(5776), + [anon_sym_if] = ACTIONS(5776), + [anon_sym_else] = ACTIONS(5776), + [anon_sym_while] = ACTIONS(5776), + [anon_sym_expand] = ACTIONS(5776), + [anon_sym_for] = ACTIONS(5776), + [anon_sym_PIPE2] = ACTIONS(5774), + [anon_sym_match] = ACTIONS(5776), + [anon_sym_DOT_DOT] = ACTIONS(5776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5774), + [anon_sym_orelse] = ACTIONS(5776), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5776), + [anon_sym_LT_LT_PIPE] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_catch] = ACTIONS(5776), + [anon_sym_TILDE] = ACTIONS(5774), + [anon_sym_try] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5774), + [anon_sym_true] = ACTIONS(5776), + [anon_sym_false] = ACTIONS(5776), + [anon_sym_null] = ACTIONS(5776), + [anon_sym_unreachable] = ACTIONS(5776), + [anon_sym_undefined] = ACTIONS(5776), + [sym_sink] = ACTIONS(5776), + [sym_integer] = ACTIONS(5776), + [sym_float] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(5774), + [sym_multiline_string] = ACTIONS(5774), + [sym_character] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5774), + }, + [STATE(3450)] = { + [sym_identifier] = ACTIONS(5788), + [anon_sym_func] = ACTIONS(5788), + [anon_sym_BANG] = ACTIONS(5788), + [anon_sym_EQ] = ACTIONS(5788), + [anon_sym_struct] = ACTIONS(5788), + [anon_sym_LPAREN] = ACTIONS(5786), + [anon_sym_LBRACE] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5788), + [anon_sym_DOLLAR] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5788), + [anon_sym_QMARK] = ACTIONS(5786), + [anon_sym_STAR] = ACTIONS(5788), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_void] = ACTIONS(5788), + [anon_sym_noreturn] = ACTIONS(5788), + [anon_sym_type] = ACTIONS(5788), + [anon_sym_anyopaque] = ACTIONS(5788), + [anon_sym_bool] = ACTIONS(5788), + [anon_sym_int] = ACTIONS(5788), + [anon_sym_uint] = ACTIONS(5788), + [anon_sym_float] = ACTIONS(5788), + [anon_sym_range] = ACTIONS(5788), + [anon_sym_i8] = ACTIONS(5788), + [anon_sym_i16] = ACTIONS(5788), + [anon_sym_i32] = ACTIONS(5788), + [anon_sym_i64] = ACTIONS(5788), + [anon_sym_u8] = ACTIONS(5788), + [anon_sym_u16] = ACTIONS(5788), + [anon_sym_u32] = ACTIONS(5788), + [anon_sym_u64] = ACTIONS(5788), + [anon_sym_isize] = ACTIONS(5788), + [anon_sym_usize] = ACTIONS(5788), + [anon_sym_f32] = ACTIONS(5788), + [anon_sym_f64] = ACTIONS(5788), + [anon_sym_c_char] = ACTIONS(5788), + [anon_sym_c_schar] = ACTIONS(5788), + [anon_sym_c_uchar] = ACTIONS(5788), + [anon_sym_c_short] = ACTIONS(5788), + [anon_sym_c_ushort] = ACTIONS(5788), + [anon_sym_c_int] = ACTIONS(5788), + [anon_sym_c_uint] = ACTIONS(5788), + [anon_sym_c_long] = ACTIONS(5788), + [anon_sym_c_ulong] = ACTIONS(5788), + [anon_sym_c_longlong] = ACTIONS(5788), + [anon_sym_c_ulonglong] = ACTIONS(5788), + [anon_sym_c_float] = ACTIONS(5788), + [anon_sym_c_double] = ACTIONS(5788), + [anon_sym_c_longdouble] = ACTIONS(5788), + [anon_sym_PLUS_EQ] = ACTIONS(5786), + [anon_sym_DASH_EQ] = ACTIONS(5786), + [anon_sym_STAR_EQ] = ACTIONS(5786), + [anon_sym_SLASH_EQ] = ACTIONS(5786), + [anon_sym_AMP_EQ] = ACTIONS(5786), + [anon_sym_PIPE_EQ] = ACTIONS(5788), + [anon_sym_xor_EQ] = ACTIONS(5786), + [anon_sym_LT_LT_EQ] = ACTIONS(5786), + [anon_sym_GT_GT_EQ] = ACTIONS(5786), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5786), + [anon_sym_return] = ACTIONS(5788), + [anon_sym_yield] = ACTIONS(5788), + [anon_sym_break] = ACTIONS(5788), + [anon_sym_continue] = ACTIONS(5788), + [anon_sym_defer] = ACTIONS(5788), + [anon_sym_errdefer] = ACTIONS(5788), + [anon_sym_if] = ACTIONS(5788), + [anon_sym_else] = ACTIONS(5788), + [anon_sym_while] = ACTIONS(5788), + [anon_sym_expand] = ACTIONS(5788), + [anon_sym_for] = ACTIONS(5788), + [anon_sym_PIPE2] = ACTIONS(5786), + [anon_sym_match] = ACTIONS(5788), + [anon_sym_DOT_DOT] = ACTIONS(5788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5786), + [anon_sym_orelse] = ACTIONS(5788), + [anon_sym_or] = ACTIONS(5788), + [anon_sym_and] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5786), + [anon_sym_BANG_EQ] = ACTIONS(5786), + [anon_sym_LT] = ACTIONS(5788), + [anon_sym_LT_EQ] = ACTIONS(5786), + [anon_sym_GT] = ACTIONS(5788), + [anon_sym_GT_EQ] = ACTIONS(5786), + [anon_sym_AMP] = ACTIONS(5788), + [anon_sym_xor] = ACTIONS(5788), + [anon_sym_LT_LT] = ACTIONS(5788), + [anon_sym_GT_GT] = ACTIONS(5788), + [anon_sym_LT_LT_PIPE] = ACTIONS(5788), + [anon_sym_PLUS] = ACTIONS(5788), + [anon_sym_SLASH] = ACTIONS(5788), + [anon_sym_catch] = ACTIONS(5788), + [anon_sym_TILDE] = ACTIONS(5786), + [anon_sym_try] = ACTIONS(5788), + [anon_sym_DOT] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5786), + [anon_sym_true] = ACTIONS(5788), + [anon_sym_false] = ACTIONS(5788), + [anon_sym_null] = ACTIONS(5788), + [anon_sym_unreachable] = ACTIONS(5788), + [anon_sym_undefined] = ACTIONS(5788), + [sym_sink] = ACTIONS(5788), + [sym_integer] = ACTIONS(5788), + [sym_float] = ACTIONS(5786), + [anon_sym_DQUOTE] = ACTIONS(5786), + [sym_multiline_string] = ACTIONS(5786), + [sym_character] = ACTIONS(5786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5786), + }, + [STATE(3451)] = { + [sym_identifier] = ACTIONS(5780), + [anon_sym_func] = ACTIONS(5780), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_EQ] = ACTIONS(5782), + [anon_sym_struct] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(5784), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5784), + [anon_sym_PIPE] = ACTIONS(5780), + [anon_sym_QMARK] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5784), + [anon_sym_void] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym_type] = ACTIONS(5780), + [anon_sym_anyopaque] = ACTIONS(5780), + [anon_sym_bool] = ACTIONS(5780), + [anon_sym_int] = ACTIONS(5780), + [anon_sym_uint] = ACTIONS(5780), + [anon_sym_float] = ACTIONS(5780), + [anon_sym_range] = ACTIONS(5780), + [anon_sym_i8] = ACTIONS(5780), + [anon_sym_i16] = ACTIONS(5780), + [anon_sym_i32] = ACTIONS(5780), + [anon_sym_i64] = ACTIONS(5780), + [anon_sym_u8] = ACTIONS(5780), + [anon_sym_u16] = ACTIONS(5780), + [anon_sym_u32] = ACTIONS(5780), + [anon_sym_u64] = ACTIONS(5780), + [anon_sym_isize] = ACTIONS(5780), + [anon_sym_usize] = ACTIONS(5780), + [anon_sym_f32] = ACTIONS(5780), + [anon_sym_f64] = ACTIONS(5780), + [anon_sym_c_char] = ACTIONS(5780), + [anon_sym_c_schar] = ACTIONS(5780), + [anon_sym_c_uchar] = ACTIONS(5780), + [anon_sym_c_short] = ACTIONS(5780), + [anon_sym_c_ushort] = ACTIONS(5780), + [anon_sym_c_int] = ACTIONS(5780), + [anon_sym_c_uint] = ACTIONS(5780), + [anon_sym_c_long] = ACTIONS(5780), + [anon_sym_c_ulong] = ACTIONS(5780), + [anon_sym_c_longlong] = ACTIONS(5780), + [anon_sym_c_ulonglong] = ACTIONS(5780), + [anon_sym_c_float] = ACTIONS(5780), + [anon_sym_c_double] = ACTIONS(5780), + [anon_sym_c_longdouble] = ACTIONS(5780), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5782), + [anon_sym_xor_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5778), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_defer] = ACTIONS(5780), + [anon_sym_errdefer] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_else] = ACTIONS(5782), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_expand] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_PIPE2] = ACTIONS(5778), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5784), + [anon_sym_orelse] = ACTIONS(5780), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5784), + [anon_sym_BANG_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5780), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5780), + [anon_sym_LT_LT_PIPE] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5780), + [anon_sym_SLASH] = ACTIONS(5780), + [anon_sym_catch] = ACTIONS(5780), + [anon_sym_TILDE] = ACTIONS(5784), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5784), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_unreachable] = ACTIONS(5780), + [anon_sym_undefined] = ACTIONS(5780), + [sym_sink] = ACTIONS(5780), + [sym_integer] = ACTIONS(5780), + [sym_float] = ACTIONS(5784), + [anon_sym_DQUOTE] = ACTIONS(5784), + [sym_multiline_string] = ACTIONS(5784), + [sym_character] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5784), + }, + [STATE(3452)] = { + [sym_identifier] = ACTIONS(5792), + [anon_sym_func] = ACTIONS(5792), + [anon_sym_BANG] = ACTIONS(5792), + [anon_sym_EQ] = ACTIONS(5792), + [anon_sym_struct] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_LBRACE] = ACTIONS(5790), + [anon_sym_DASH] = ACTIONS(5792), + [anon_sym_DOLLAR] = ACTIONS(5790), + [anon_sym_PIPE] = ACTIONS(5792), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_STAR] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(5790), + [anon_sym_void] = ACTIONS(5792), + [anon_sym_noreturn] = ACTIONS(5792), + [anon_sym_type] = ACTIONS(5792), + [anon_sym_anyopaque] = ACTIONS(5792), + [anon_sym_bool] = ACTIONS(5792), + [anon_sym_int] = ACTIONS(5792), + [anon_sym_uint] = ACTIONS(5792), + [anon_sym_float] = ACTIONS(5792), + [anon_sym_range] = ACTIONS(5792), + [anon_sym_i8] = ACTIONS(5792), + [anon_sym_i16] = ACTIONS(5792), + [anon_sym_i32] = ACTIONS(5792), + [anon_sym_i64] = ACTIONS(5792), + [anon_sym_u8] = ACTIONS(5792), + [anon_sym_u16] = ACTIONS(5792), + [anon_sym_u32] = ACTIONS(5792), + [anon_sym_u64] = ACTIONS(5792), + [anon_sym_isize] = ACTIONS(5792), + [anon_sym_usize] = ACTIONS(5792), + [anon_sym_f32] = ACTIONS(5792), + [anon_sym_f64] = ACTIONS(5792), + [anon_sym_c_char] = ACTIONS(5792), + [anon_sym_c_schar] = ACTIONS(5792), + [anon_sym_c_uchar] = ACTIONS(5792), + [anon_sym_c_short] = ACTIONS(5792), + [anon_sym_c_ushort] = ACTIONS(5792), + [anon_sym_c_int] = ACTIONS(5792), + [anon_sym_c_uint] = ACTIONS(5792), + [anon_sym_c_long] = ACTIONS(5792), + [anon_sym_c_ulong] = ACTIONS(5792), + [anon_sym_c_longlong] = ACTIONS(5792), + [anon_sym_c_ulonglong] = ACTIONS(5792), + [anon_sym_c_float] = ACTIONS(5792), + [anon_sym_c_double] = ACTIONS(5792), + [anon_sym_c_longdouble] = ACTIONS(5792), + [anon_sym_PLUS_EQ] = ACTIONS(5790), + [anon_sym_DASH_EQ] = ACTIONS(5790), + [anon_sym_STAR_EQ] = ACTIONS(5790), + [anon_sym_SLASH_EQ] = ACTIONS(5790), + [anon_sym_AMP_EQ] = ACTIONS(5790), + [anon_sym_PIPE_EQ] = ACTIONS(5792), + [anon_sym_xor_EQ] = ACTIONS(5790), + [anon_sym_LT_LT_EQ] = ACTIONS(5790), + [anon_sym_GT_GT_EQ] = ACTIONS(5790), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5790), + [anon_sym_return] = ACTIONS(5792), + [anon_sym_yield] = ACTIONS(5792), + [anon_sym_break] = ACTIONS(5792), + [anon_sym_continue] = ACTIONS(5792), + [anon_sym_defer] = ACTIONS(5792), + [anon_sym_errdefer] = ACTIONS(5792), + [anon_sym_if] = ACTIONS(5792), + [anon_sym_else] = ACTIONS(5792), + [anon_sym_while] = ACTIONS(5792), + [anon_sym_expand] = ACTIONS(5792), + [anon_sym_for] = ACTIONS(5792), + [anon_sym_PIPE2] = ACTIONS(5790), + [anon_sym_match] = ACTIONS(5792), + [anon_sym_DOT_DOT] = ACTIONS(5792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5790), + [anon_sym_orelse] = ACTIONS(5792), + [anon_sym_or] = ACTIONS(5792), + [anon_sym_and] = ACTIONS(5792), + [anon_sym_EQ_EQ] = ACTIONS(5790), + [anon_sym_BANG_EQ] = ACTIONS(5790), + [anon_sym_LT] = ACTIONS(5792), + [anon_sym_LT_EQ] = ACTIONS(5790), + [anon_sym_GT] = ACTIONS(5792), + [anon_sym_GT_EQ] = ACTIONS(5790), + [anon_sym_AMP] = ACTIONS(5792), + [anon_sym_xor] = ACTIONS(5792), + [anon_sym_LT_LT] = ACTIONS(5792), + [anon_sym_GT_GT] = ACTIONS(5792), + [anon_sym_LT_LT_PIPE] = ACTIONS(5792), + [anon_sym_PLUS] = ACTIONS(5792), + [anon_sym_SLASH] = ACTIONS(5792), + [anon_sym_catch] = ACTIONS(5792), + [anon_sym_TILDE] = ACTIONS(5790), + [anon_sym_try] = ACTIONS(5792), + [anon_sym_DOT] = ACTIONS(5792), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_true] = ACTIONS(5792), + [anon_sym_false] = ACTIONS(5792), + [anon_sym_null] = ACTIONS(5792), + [anon_sym_unreachable] = ACTIONS(5792), + [anon_sym_undefined] = ACTIONS(5792), + [sym_sink] = ACTIONS(5792), + [sym_integer] = ACTIONS(5792), + [sym_float] = ACTIONS(5790), + [anon_sym_DQUOTE] = ACTIONS(5790), + [sym_multiline_string] = ACTIONS(5790), + [sym_character] = ACTIONS(5790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5790), + }, + [STATE(3453)] = { + [sym_identifier] = ACTIONS(5796), + [anon_sym_func] = ACTIONS(5796), + [anon_sym_BANG] = ACTIONS(5796), + [anon_sym_EQ] = ACTIONS(5796), + [anon_sym_struct] = ACTIONS(5796), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(5794), + [anon_sym_DASH] = ACTIONS(5796), + [anon_sym_DOLLAR] = ACTIONS(5794), + [anon_sym_PIPE] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5794), + [anon_sym_STAR] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_void] = ACTIONS(5796), + [anon_sym_noreturn] = ACTIONS(5796), + [anon_sym_type] = ACTIONS(5796), + [anon_sym_anyopaque] = ACTIONS(5796), + [anon_sym_bool] = ACTIONS(5796), + [anon_sym_int] = ACTIONS(5796), + [anon_sym_uint] = ACTIONS(5796), + [anon_sym_float] = ACTIONS(5796), + [anon_sym_range] = ACTIONS(5796), + [anon_sym_i8] = ACTIONS(5796), + [anon_sym_i16] = ACTIONS(5796), + [anon_sym_i32] = ACTIONS(5796), + [anon_sym_i64] = ACTIONS(5796), + [anon_sym_u8] = ACTIONS(5796), + [anon_sym_u16] = ACTIONS(5796), + [anon_sym_u32] = ACTIONS(5796), + [anon_sym_u64] = ACTIONS(5796), + [anon_sym_isize] = ACTIONS(5796), + [anon_sym_usize] = ACTIONS(5796), + [anon_sym_f32] = ACTIONS(5796), + [anon_sym_f64] = ACTIONS(5796), + [anon_sym_c_char] = ACTIONS(5796), + [anon_sym_c_schar] = ACTIONS(5796), + [anon_sym_c_uchar] = ACTIONS(5796), + [anon_sym_c_short] = ACTIONS(5796), + [anon_sym_c_ushort] = ACTIONS(5796), + [anon_sym_c_int] = ACTIONS(5796), + [anon_sym_c_uint] = ACTIONS(5796), + [anon_sym_c_long] = ACTIONS(5796), + [anon_sym_c_ulong] = ACTIONS(5796), + [anon_sym_c_longlong] = ACTIONS(5796), + [anon_sym_c_ulonglong] = ACTIONS(5796), + [anon_sym_c_float] = ACTIONS(5796), + [anon_sym_c_double] = ACTIONS(5796), + [anon_sym_c_longdouble] = ACTIONS(5796), + [anon_sym_PLUS_EQ] = ACTIONS(5794), + [anon_sym_DASH_EQ] = ACTIONS(5794), + [anon_sym_STAR_EQ] = ACTIONS(5794), + [anon_sym_SLASH_EQ] = ACTIONS(5794), + [anon_sym_AMP_EQ] = ACTIONS(5794), + [anon_sym_PIPE_EQ] = ACTIONS(5796), + [anon_sym_xor_EQ] = ACTIONS(5794), + [anon_sym_LT_LT_EQ] = ACTIONS(5794), + [anon_sym_GT_GT_EQ] = ACTIONS(5794), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5794), + [anon_sym_return] = ACTIONS(5796), + [anon_sym_yield] = ACTIONS(5796), + [anon_sym_break] = ACTIONS(5796), + [anon_sym_continue] = ACTIONS(5796), + [anon_sym_defer] = ACTIONS(5796), + [anon_sym_errdefer] = ACTIONS(5796), + [anon_sym_if] = ACTIONS(5796), + [anon_sym_else] = ACTIONS(5796), + [anon_sym_while] = ACTIONS(5796), + [anon_sym_expand] = ACTIONS(5796), + [anon_sym_for] = ACTIONS(5796), + [anon_sym_PIPE2] = ACTIONS(5794), + [anon_sym_match] = ACTIONS(5796), + [anon_sym_DOT_DOT] = ACTIONS(5796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5794), + [anon_sym_orelse] = ACTIONS(5796), + [anon_sym_or] = ACTIONS(5796), + [anon_sym_and] = ACTIONS(5796), + [anon_sym_EQ_EQ] = ACTIONS(5794), + [anon_sym_BANG_EQ] = ACTIONS(5794), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_LT_EQ] = ACTIONS(5794), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_GT_EQ] = ACTIONS(5794), + [anon_sym_AMP] = ACTIONS(5796), + [anon_sym_xor] = ACTIONS(5796), + [anon_sym_LT_LT] = ACTIONS(5796), + [anon_sym_GT_GT] = ACTIONS(5796), + [anon_sym_LT_LT_PIPE] = ACTIONS(5796), + [anon_sym_PLUS] = ACTIONS(5796), + [anon_sym_SLASH] = ACTIONS(5796), + [anon_sym_catch] = ACTIONS(5796), + [anon_sym_TILDE] = ACTIONS(5794), + [anon_sym_try] = ACTIONS(5796), + [anon_sym_DOT] = ACTIONS(5796), + [anon_sym_CARET] = ACTIONS(5794), + [anon_sym_true] = ACTIONS(5796), + [anon_sym_false] = ACTIONS(5796), + [anon_sym_null] = ACTIONS(5796), + [anon_sym_unreachable] = ACTIONS(5796), + [anon_sym_undefined] = ACTIONS(5796), + [sym_sink] = ACTIONS(5796), + [sym_integer] = ACTIONS(5796), + [sym_float] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5794), + [sym_multiline_string] = ACTIONS(5794), + [sym_character] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5794), + }, + [STATE(3454)] = { + [sym_identifier] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2696), + [anon_sym_xor_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_errdefer] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_expand] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_PIPE2] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2696), + [anon_sym_and] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_xor] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_LT_LT_PIPE] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_unreachable] = ACTIONS(2696), + [anon_sym_undefined] = ACTIONS(2696), + [sym_sink] = ACTIONS(2696), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [sym_multiline_string] = ACTIONS(2694), + [sym_character] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(3455)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(3062), + [anon_sym_DASH_EQ] = ACTIONS(3062), + [anon_sym_STAR_EQ] = ACTIONS(3062), + [anon_sym_SLASH_EQ] = ACTIONS(3062), + [anon_sym_AMP_EQ] = ACTIONS(3062), + [anon_sym_PIPE_EQ] = ACTIONS(3060), + [anon_sym_xor_EQ] = ACTIONS(3062), + [anon_sym_LT_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_GT_EQ] = ACTIONS(3062), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_PIPE2] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_LT_LT_PIPE] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(3456)] = { + [sym_identifier] = ACTIONS(5800), + [anon_sym_func] = ACTIONS(5800), + [anon_sym_BANG] = ACTIONS(5800), + [anon_sym_EQ] = ACTIONS(5800), + [anon_sym_struct] = ACTIONS(5800), + [anon_sym_LPAREN] = ACTIONS(5798), + [anon_sym_LBRACE] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5800), + [anon_sym_DOLLAR] = ACTIONS(5798), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_STAR] = ACTIONS(5800), + [anon_sym_LBRACK] = ACTIONS(5798), + [anon_sym_void] = ACTIONS(5800), + [anon_sym_noreturn] = ACTIONS(5800), + [anon_sym_type] = ACTIONS(5800), + [anon_sym_anyopaque] = ACTIONS(5800), + [anon_sym_bool] = ACTIONS(5800), + [anon_sym_int] = ACTIONS(5800), + [anon_sym_uint] = ACTIONS(5800), + [anon_sym_float] = ACTIONS(5800), + [anon_sym_range] = ACTIONS(5800), + [anon_sym_i8] = ACTIONS(5800), + [anon_sym_i16] = ACTIONS(5800), + [anon_sym_i32] = ACTIONS(5800), + [anon_sym_i64] = ACTIONS(5800), + [anon_sym_u8] = ACTIONS(5800), + [anon_sym_u16] = ACTIONS(5800), + [anon_sym_u32] = ACTIONS(5800), + [anon_sym_u64] = ACTIONS(5800), + [anon_sym_isize] = ACTIONS(5800), + [anon_sym_usize] = ACTIONS(5800), + [anon_sym_f32] = ACTIONS(5800), + [anon_sym_f64] = ACTIONS(5800), + [anon_sym_c_char] = ACTIONS(5800), + [anon_sym_c_schar] = ACTIONS(5800), + [anon_sym_c_uchar] = ACTIONS(5800), + [anon_sym_c_short] = ACTIONS(5800), + [anon_sym_c_ushort] = ACTIONS(5800), + [anon_sym_c_int] = ACTIONS(5800), + [anon_sym_c_uint] = ACTIONS(5800), + [anon_sym_c_long] = ACTIONS(5800), + [anon_sym_c_ulong] = ACTIONS(5800), + [anon_sym_c_longlong] = ACTIONS(5800), + [anon_sym_c_ulonglong] = ACTIONS(5800), + [anon_sym_c_float] = ACTIONS(5800), + [anon_sym_c_double] = ACTIONS(5800), + [anon_sym_c_longdouble] = ACTIONS(5800), + [anon_sym_PLUS_EQ] = ACTIONS(5798), + [anon_sym_DASH_EQ] = ACTIONS(5798), + [anon_sym_STAR_EQ] = ACTIONS(5798), + [anon_sym_SLASH_EQ] = ACTIONS(5798), + [anon_sym_AMP_EQ] = ACTIONS(5798), + [anon_sym_PIPE_EQ] = ACTIONS(5800), + [anon_sym_xor_EQ] = ACTIONS(5798), + [anon_sym_LT_LT_EQ] = ACTIONS(5798), + [anon_sym_GT_GT_EQ] = ACTIONS(5798), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5798), + [anon_sym_return] = ACTIONS(5800), + [anon_sym_yield] = ACTIONS(5800), + [anon_sym_break] = ACTIONS(5800), + [anon_sym_continue] = ACTIONS(5800), + [anon_sym_defer] = ACTIONS(5800), + [anon_sym_errdefer] = ACTIONS(5800), + [anon_sym_if] = ACTIONS(5800), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_while] = ACTIONS(5800), + [anon_sym_expand] = ACTIONS(5800), + [anon_sym_for] = ACTIONS(5800), + [anon_sym_PIPE2] = ACTIONS(5798), + [anon_sym_match] = ACTIONS(5800), + [anon_sym_DOT_DOT] = ACTIONS(5800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5798), + [anon_sym_orelse] = ACTIONS(5800), + [anon_sym_or] = ACTIONS(5800), + [anon_sym_and] = ACTIONS(5800), + [anon_sym_EQ_EQ] = ACTIONS(5798), + [anon_sym_BANG_EQ] = ACTIONS(5798), + [anon_sym_LT] = ACTIONS(5800), + [anon_sym_LT_EQ] = ACTIONS(5798), + [anon_sym_GT] = ACTIONS(5800), + [anon_sym_GT_EQ] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [anon_sym_xor] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [anon_sym_LT_LT_PIPE] = ACTIONS(5800), + [anon_sym_PLUS] = ACTIONS(5800), + [anon_sym_SLASH] = ACTIONS(5800), + [anon_sym_catch] = ACTIONS(5800), + [anon_sym_TILDE] = ACTIONS(5798), + [anon_sym_try] = ACTIONS(5800), + [anon_sym_DOT] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5798), + [anon_sym_true] = ACTIONS(5800), + [anon_sym_false] = ACTIONS(5800), + [anon_sym_null] = ACTIONS(5800), + [anon_sym_unreachable] = ACTIONS(5800), + [anon_sym_undefined] = ACTIONS(5800), + [sym_sink] = ACTIONS(5800), + [sym_integer] = ACTIONS(5800), + [sym_float] = ACTIONS(5798), + [anon_sym_DQUOTE] = ACTIONS(5798), + [sym_multiline_string] = ACTIONS(5798), + [sym_character] = ACTIONS(5798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5798), + }, + [STATE(3457)] = { + [sym_identifier] = ACTIONS(5804), + [anon_sym_func] = ACTIONS(5804), + [anon_sym_BANG] = ACTIONS(5804), + [anon_sym_EQ] = ACTIONS(5804), + [anon_sym_struct] = ACTIONS(5804), + [anon_sym_LPAREN] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5804), + [anon_sym_DOLLAR] = ACTIONS(5802), + [anon_sym_PIPE] = ACTIONS(5804), + [anon_sym_QMARK] = ACTIONS(5802), + [anon_sym_STAR] = ACTIONS(5804), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_void] = ACTIONS(5804), + [anon_sym_noreturn] = ACTIONS(5804), + [anon_sym_type] = ACTIONS(5804), + [anon_sym_anyopaque] = ACTIONS(5804), + [anon_sym_bool] = ACTIONS(5804), + [anon_sym_int] = ACTIONS(5804), + [anon_sym_uint] = ACTIONS(5804), + [anon_sym_float] = ACTIONS(5804), + [anon_sym_range] = ACTIONS(5804), + [anon_sym_i8] = ACTIONS(5804), + [anon_sym_i16] = ACTIONS(5804), + [anon_sym_i32] = ACTIONS(5804), + [anon_sym_i64] = ACTIONS(5804), + [anon_sym_u8] = ACTIONS(5804), + [anon_sym_u16] = ACTIONS(5804), + [anon_sym_u32] = ACTIONS(5804), + [anon_sym_u64] = ACTIONS(5804), + [anon_sym_isize] = ACTIONS(5804), + [anon_sym_usize] = ACTIONS(5804), + [anon_sym_f32] = ACTIONS(5804), + [anon_sym_f64] = ACTIONS(5804), + [anon_sym_c_char] = ACTIONS(5804), + [anon_sym_c_schar] = ACTIONS(5804), + [anon_sym_c_uchar] = ACTIONS(5804), + [anon_sym_c_short] = ACTIONS(5804), + [anon_sym_c_ushort] = ACTIONS(5804), + [anon_sym_c_int] = ACTIONS(5804), + [anon_sym_c_uint] = ACTIONS(5804), + [anon_sym_c_long] = ACTIONS(5804), + [anon_sym_c_ulong] = ACTIONS(5804), + [anon_sym_c_longlong] = ACTIONS(5804), + [anon_sym_c_ulonglong] = ACTIONS(5804), + [anon_sym_c_float] = ACTIONS(5804), + [anon_sym_c_double] = ACTIONS(5804), + [anon_sym_c_longdouble] = ACTIONS(5804), + [anon_sym_PLUS_EQ] = ACTIONS(5802), + [anon_sym_DASH_EQ] = ACTIONS(5802), + [anon_sym_STAR_EQ] = ACTIONS(5802), + [anon_sym_SLASH_EQ] = ACTIONS(5802), + [anon_sym_AMP_EQ] = ACTIONS(5802), + [anon_sym_PIPE_EQ] = ACTIONS(5804), + [anon_sym_xor_EQ] = ACTIONS(5802), + [anon_sym_LT_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_GT_EQ] = ACTIONS(5802), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5802), + [anon_sym_return] = ACTIONS(5804), + [anon_sym_yield] = ACTIONS(5804), + [anon_sym_break] = ACTIONS(5804), + [anon_sym_continue] = ACTIONS(5804), + [anon_sym_defer] = ACTIONS(5804), + [anon_sym_errdefer] = ACTIONS(5804), + [anon_sym_if] = ACTIONS(5804), + [anon_sym_else] = ACTIONS(5804), + [anon_sym_while] = ACTIONS(5804), + [anon_sym_expand] = ACTIONS(5804), + [anon_sym_for] = ACTIONS(5804), + [anon_sym_PIPE2] = ACTIONS(5802), + [anon_sym_match] = ACTIONS(5804), + [anon_sym_DOT_DOT] = ACTIONS(5804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5802), + [anon_sym_orelse] = ACTIONS(5804), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5802), + [anon_sym_BANG_EQ] = ACTIONS(5802), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5804), + [anon_sym_GT_GT] = ACTIONS(5804), + [anon_sym_LT_LT_PIPE] = ACTIONS(5804), + [anon_sym_PLUS] = ACTIONS(5804), + [anon_sym_SLASH] = ACTIONS(5804), + [anon_sym_catch] = ACTIONS(5804), + [anon_sym_TILDE] = ACTIONS(5802), + [anon_sym_try] = ACTIONS(5804), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5802), + [anon_sym_true] = ACTIONS(5804), + [anon_sym_false] = ACTIONS(5804), + [anon_sym_null] = ACTIONS(5804), + [anon_sym_unreachable] = ACTIONS(5804), + [anon_sym_undefined] = ACTIONS(5804), + [sym_sink] = ACTIONS(5804), + [sym_integer] = ACTIONS(5804), + [sym_float] = ACTIONS(5802), + [anon_sym_DQUOTE] = ACTIONS(5802), + [sym_multiline_string] = ACTIONS(5802), + [sym_character] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5802), + }, + [STATE(3458)] = { + [sym_identifier] = ACTIONS(5808), + [anon_sym_func] = ACTIONS(5808), + [anon_sym_BANG] = ACTIONS(5808), + [anon_sym_EQ] = ACTIONS(5808), + [anon_sym_struct] = ACTIONS(5808), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_DOLLAR] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5808), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_STAR] = ACTIONS(5808), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_void] = ACTIONS(5808), + [anon_sym_noreturn] = ACTIONS(5808), + [anon_sym_type] = ACTIONS(5808), + [anon_sym_anyopaque] = ACTIONS(5808), + [anon_sym_bool] = ACTIONS(5808), + [anon_sym_int] = ACTIONS(5808), + [anon_sym_uint] = ACTIONS(5808), + [anon_sym_float] = ACTIONS(5808), + [anon_sym_range] = ACTIONS(5808), + [anon_sym_i8] = ACTIONS(5808), + [anon_sym_i16] = ACTIONS(5808), + [anon_sym_i32] = ACTIONS(5808), + [anon_sym_i64] = ACTIONS(5808), + [anon_sym_u8] = ACTIONS(5808), + [anon_sym_u16] = ACTIONS(5808), + [anon_sym_u32] = ACTIONS(5808), + [anon_sym_u64] = ACTIONS(5808), + [anon_sym_isize] = ACTIONS(5808), + [anon_sym_usize] = ACTIONS(5808), + [anon_sym_f32] = ACTIONS(5808), + [anon_sym_f64] = ACTIONS(5808), + [anon_sym_c_char] = ACTIONS(5808), + [anon_sym_c_schar] = ACTIONS(5808), + [anon_sym_c_uchar] = ACTIONS(5808), + [anon_sym_c_short] = ACTIONS(5808), + [anon_sym_c_ushort] = ACTIONS(5808), + [anon_sym_c_int] = ACTIONS(5808), + [anon_sym_c_uint] = ACTIONS(5808), + [anon_sym_c_long] = ACTIONS(5808), + [anon_sym_c_ulong] = ACTIONS(5808), + [anon_sym_c_longlong] = ACTIONS(5808), + [anon_sym_c_ulonglong] = ACTIONS(5808), + [anon_sym_c_float] = ACTIONS(5808), + [anon_sym_c_double] = ACTIONS(5808), + [anon_sym_c_longdouble] = ACTIONS(5808), + [anon_sym_PLUS_EQ] = ACTIONS(5806), + [anon_sym_DASH_EQ] = ACTIONS(5806), + [anon_sym_STAR_EQ] = ACTIONS(5806), + [anon_sym_SLASH_EQ] = ACTIONS(5806), + [anon_sym_AMP_EQ] = ACTIONS(5806), + [anon_sym_PIPE_EQ] = ACTIONS(5808), + [anon_sym_xor_EQ] = ACTIONS(5806), + [anon_sym_LT_LT_EQ] = ACTIONS(5806), + [anon_sym_GT_GT_EQ] = ACTIONS(5806), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5806), + [anon_sym_return] = ACTIONS(5808), + [anon_sym_yield] = ACTIONS(5808), + [anon_sym_break] = ACTIONS(5808), + [anon_sym_continue] = ACTIONS(5808), + [anon_sym_defer] = ACTIONS(5808), + [anon_sym_errdefer] = ACTIONS(5808), + [anon_sym_if] = ACTIONS(5808), + [anon_sym_else] = ACTIONS(5808), + [anon_sym_while] = ACTIONS(5808), + [anon_sym_expand] = ACTIONS(5808), + [anon_sym_for] = ACTIONS(5808), + [anon_sym_PIPE2] = ACTIONS(5806), + [anon_sym_match] = ACTIONS(5808), + [anon_sym_DOT_DOT] = ACTIONS(5808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5806), + [anon_sym_orelse] = ACTIONS(5808), + [anon_sym_or] = ACTIONS(5808), + [anon_sym_and] = ACTIONS(5808), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5808), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_AMP] = ACTIONS(5808), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_LT_LT] = ACTIONS(5808), + [anon_sym_GT_GT] = ACTIONS(5808), + [anon_sym_LT_LT_PIPE] = ACTIONS(5808), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_SLASH] = ACTIONS(5808), + [anon_sym_catch] = ACTIONS(5808), + [anon_sym_TILDE] = ACTIONS(5806), + [anon_sym_try] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(5808), + [anon_sym_CARET] = ACTIONS(5806), + [anon_sym_true] = ACTIONS(5808), + [anon_sym_false] = ACTIONS(5808), + [anon_sym_null] = ACTIONS(5808), + [anon_sym_unreachable] = ACTIONS(5808), + [anon_sym_undefined] = ACTIONS(5808), + [sym_sink] = ACTIONS(5808), + [sym_integer] = ACTIONS(5808), + [sym_float] = ACTIONS(5806), + [anon_sym_DQUOTE] = ACTIONS(5806), + [sym_multiline_string] = ACTIONS(5806), + [sym_character] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5806), + }, + [STATE(3459)] = { + [sym_identifier] = ACTIONS(5702), + [anon_sym_func] = ACTIONS(5702), + [anon_sym_BANG] = ACTIONS(5702), + [anon_sym_EQ] = ACTIONS(5702), + [anon_sym_struct] = ACTIONS(5702), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5702), + [anon_sym_DOLLAR] = ACTIONS(5698), + [anon_sym_PIPE] = ACTIONS(5702), + [anon_sym_QMARK] = ACTIONS(5698), + [anon_sym_STAR] = ACTIONS(5702), + [anon_sym_LBRACK] = ACTIONS(5698), + [anon_sym_void] = ACTIONS(5702), + [anon_sym_noreturn] = ACTIONS(5702), + [anon_sym_type] = ACTIONS(5702), + [anon_sym_anyopaque] = ACTIONS(5702), + [anon_sym_bool] = ACTIONS(5702), + [anon_sym_int] = ACTIONS(5702), + [anon_sym_uint] = ACTIONS(5702), + [anon_sym_float] = ACTIONS(5702), + [anon_sym_range] = ACTIONS(5702), + [anon_sym_i8] = ACTIONS(5702), + [anon_sym_i16] = ACTIONS(5702), + [anon_sym_i32] = ACTIONS(5702), + [anon_sym_i64] = ACTIONS(5702), + [anon_sym_u8] = ACTIONS(5702), + [anon_sym_u16] = ACTIONS(5702), + [anon_sym_u32] = ACTIONS(5702), + [anon_sym_u64] = ACTIONS(5702), + [anon_sym_isize] = ACTIONS(5702), + [anon_sym_usize] = ACTIONS(5702), + [anon_sym_f32] = ACTIONS(5702), + [anon_sym_f64] = ACTIONS(5702), + [anon_sym_c_char] = ACTIONS(5702), + [anon_sym_c_schar] = ACTIONS(5702), + [anon_sym_c_uchar] = ACTIONS(5702), + [anon_sym_c_short] = ACTIONS(5702), + [anon_sym_c_ushort] = ACTIONS(5702), + [anon_sym_c_int] = ACTIONS(5702), + [anon_sym_c_uint] = ACTIONS(5702), + [anon_sym_c_long] = ACTIONS(5702), + [anon_sym_c_ulong] = ACTIONS(5702), + [anon_sym_c_longlong] = ACTIONS(5702), + [anon_sym_c_ulonglong] = ACTIONS(5702), + [anon_sym_c_float] = ACTIONS(5702), + [anon_sym_c_double] = ACTIONS(5702), + [anon_sym_c_longdouble] = ACTIONS(5702), + [anon_sym_PLUS_EQ] = ACTIONS(5698), + [anon_sym_DASH_EQ] = ACTIONS(5698), + [anon_sym_STAR_EQ] = ACTIONS(5698), + [anon_sym_SLASH_EQ] = ACTIONS(5698), + [anon_sym_AMP_EQ] = ACTIONS(5698), + [anon_sym_PIPE_EQ] = ACTIONS(5702), + [anon_sym_xor_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_EQ] = ACTIONS(5698), + [anon_sym_GT_GT_EQ] = ACTIONS(5698), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5698), + [anon_sym_return] = ACTIONS(5702), + [anon_sym_yield] = ACTIONS(5702), + [anon_sym_break] = ACTIONS(5702), + [anon_sym_continue] = ACTIONS(5702), + [anon_sym_defer] = ACTIONS(5702), + [anon_sym_errdefer] = ACTIONS(5702), + [anon_sym_if] = ACTIONS(5702), + [anon_sym_else] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5702), + [anon_sym_expand] = ACTIONS(5702), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_PIPE2] = ACTIONS(5698), + [anon_sym_match] = ACTIONS(5702), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5698), + [anon_sym_orelse] = ACTIONS(5702), + [anon_sym_or] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5702), + [anon_sym_EQ_EQ] = ACTIONS(5698), + [anon_sym_BANG_EQ] = ACTIONS(5698), + [anon_sym_LT] = ACTIONS(5702), + [anon_sym_LT_EQ] = ACTIONS(5698), + [anon_sym_GT] = ACTIONS(5702), + [anon_sym_GT_EQ] = ACTIONS(5698), + [anon_sym_AMP] = ACTIONS(5702), + [anon_sym_xor] = ACTIONS(5702), + [anon_sym_LT_LT] = ACTIONS(5702), + [anon_sym_GT_GT] = ACTIONS(5702), + [anon_sym_LT_LT_PIPE] = ACTIONS(5702), + [anon_sym_PLUS] = ACTIONS(5702), + [anon_sym_SLASH] = ACTIONS(5702), + [anon_sym_catch] = ACTIONS(5702), + [anon_sym_TILDE] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5702), + [anon_sym_DOT] = ACTIONS(5702), + [anon_sym_CARET] = ACTIONS(5698), + [anon_sym_true] = ACTIONS(5702), + [anon_sym_false] = ACTIONS(5702), + [anon_sym_null] = ACTIONS(5702), + [anon_sym_unreachable] = ACTIONS(5702), + [anon_sym_undefined] = ACTIONS(5702), + [sym_sink] = ACTIONS(5702), + [sym_integer] = ACTIONS(5702), + [sym_float] = ACTIONS(5698), + [anon_sym_DQUOTE] = ACTIONS(5698), + [sym_multiline_string] = ACTIONS(5698), + [sym_character] = ACTIONS(5698), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5698), + }, + [STATE(3460)] = { + [sym_identifier] = ACTIONS(5856), + [anon_sym_func] = ACTIONS(5856), + [anon_sym_BANG] = ACTIONS(5856), + [anon_sym_EQ] = ACTIONS(5856), + [anon_sym_struct] = ACTIONS(5856), + [anon_sym_LPAREN] = ACTIONS(5854), + [anon_sym_LBRACE] = ACTIONS(5854), + [anon_sym_DASH] = ACTIONS(5856), + [anon_sym_DOLLAR] = ACTIONS(5854), + [anon_sym_PIPE] = ACTIONS(5856), + [anon_sym_QMARK] = ACTIONS(5854), + [anon_sym_STAR] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(5854), + [anon_sym_void] = ACTIONS(5856), + [anon_sym_noreturn] = ACTIONS(5856), + [anon_sym_type] = ACTIONS(5856), + [anon_sym_anyopaque] = ACTIONS(5856), + [anon_sym_bool] = ACTIONS(5856), + [anon_sym_int] = ACTIONS(5856), + [anon_sym_uint] = ACTIONS(5856), + [anon_sym_float] = ACTIONS(5856), + [anon_sym_range] = ACTIONS(5856), + [anon_sym_i8] = ACTIONS(5856), + [anon_sym_i16] = ACTIONS(5856), + [anon_sym_i32] = ACTIONS(5856), + [anon_sym_i64] = ACTIONS(5856), + [anon_sym_u8] = ACTIONS(5856), + [anon_sym_u16] = ACTIONS(5856), + [anon_sym_u32] = ACTIONS(5856), + [anon_sym_u64] = ACTIONS(5856), + [anon_sym_isize] = ACTIONS(5856), + [anon_sym_usize] = ACTIONS(5856), + [anon_sym_f32] = ACTIONS(5856), + [anon_sym_f64] = ACTIONS(5856), + [anon_sym_c_char] = ACTIONS(5856), + [anon_sym_c_schar] = ACTIONS(5856), + [anon_sym_c_uchar] = ACTIONS(5856), + [anon_sym_c_short] = ACTIONS(5856), + [anon_sym_c_ushort] = ACTIONS(5856), + [anon_sym_c_int] = ACTIONS(5856), + [anon_sym_c_uint] = ACTIONS(5856), + [anon_sym_c_long] = ACTIONS(5856), + [anon_sym_c_ulong] = ACTIONS(5856), + [anon_sym_c_longlong] = ACTIONS(5856), + [anon_sym_c_ulonglong] = ACTIONS(5856), + [anon_sym_c_float] = ACTIONS(5856), + [anon_sym_c_double] = ACTIONS(5856), + [anon_sym_c_longdouble] = ACTIONS(5856), + [anon_sym_PLUS_EQ] = ACTIONS(5854), + [anon_sym_DASH_EQ] = ACTIONS(5854), + [anon_sym_STAR_EQ] = ACTIONS(5854), + [anon_sym_SLASH_EQ] = ACTIONS(5854), + [anon_sym_AMP_EQ] = ACTIONS(5854), + [anon_sym_PIPE_EQ] = ACTIONS(5856), + [anon_sym_xor_EQ] = ACTIONS(5854), + [anon_sym_LT_LT_EQ] = ACTIONS(5854), + [anon_sym_GT_GT_EQ] = ACTIONS(5854), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5854), + [anon_sym_return] = ACTIONS(5856), + [anon_sym_yield] = ACTIONS(5856), + [anon_sym_break] = ACTIONS(5856), + [anon_sym_continue] = ACTIONS(5856), + [anon_sym_defer] = ACTIONS(5856), + [anon_sym_errdefer] = ACTIONS(5856), + [anon_sym_if] = ACTIONS(5856), + [anon_sym_else] = ACTIONS(5856), + [anon_sym_while] = ACTIONS(5856), + [anon_sym_expand] = ACTIONS(5856), + [anon_sym_for] = ACTIONS(5856), + [anon_sym_PIPE2] = ACTIONS(5854), + [anon_sym_match] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5854), + [anon_sym_orelse] = ACTIONS(5856), + [anon_sym_or] = ACTIONS(5856), + [anon_sym_and] = ACTIONS(5856), + [anon_sym_EQ_EQ] = ACTIONS(5854), + [anon_sym_BANG_EQ] = ACTIONS(5854), + [anon_sym_LT] = ACTIONS(5856), + [anon_sym_LT_EQ] = ACTIONS(5854), + [anon_sym_GT] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5854), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym_xor] = ACTIONS(5856), + [anon_sym_LT_LT] = ACTIONS(5856), + [anon_sym_GT_GT] = ACTIONS(5856), + [anon_sym_LT_LT_PIPE] = ACTIONS(5856), + [anon_sym_PLUS] = ACTIONS(5856), + [anon_sym_SLASH] = ACTIONS(5856), + [anon_sym_catch] = ACTIONS(5856), + [anon_sym_TILDE] = ACTIONS(5854), + [anon_sym_try] = ACTIONS(5856), + [anon_sym_DOT] = ACTIONS(5856), + [anon_sym_CARET] = ACTIONS(5854), + [anon_sym_true] = ACTIONS(5856), + [anon_sym_false] = ACTIONS(5856), + [anon_sym_null] = ACTIONS(5856), + [anon_sym_unreachable] = ACTIONS(5856), + [anon_sym_undefined] = ACTIONS(5856), + [sym_sink] = ACTIONS(5856), + [sym_integer] = ACTIONS(5856), + [sym_float] = ACTIONS(5854), + [anon_sym_DQUOTE] = ACTIONS(5854), + [sym_multiline_string] = ACTIONS(5854), + [sym_character] = ACTIONS(5854), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5854), + }, + [STATE(3461)] = { + [sym_identifier] = ACTIONS(5860), + [anon_sym_func] = ACTIONS(5860), + [anon_sym_BANG] = ACTIONS(5860), + [anon_sym_EQ] = ACTIONS(5860), + [anon_sym_struct] = ACTIONS(5860), + [anon_sym_LPAREN] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5858), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_QMARK] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5858), + [anon_sym_void] = ACTIONS(5860), + [anon_sym_noreturn] = ACTIONS(5860), + [anon_sym_type] = ACTIONS(5860), + [anon_sym_anyopaque] = ACTIONS(5860), + [anon_sym_bool] = ACTIONS(5860), + [anon_sym_int] = ACTIONS(5860), + [anon_sym_uint] = ACTIONS(5860), + [anon_sym_float] = ACTIONS(5860), + [anon_sym_range] = ACTIONS(5860), + [anon_sym_i8] = ACTIONS(5860), + [anon_sym_i16] = ACTIONS(5860), + [anon_sym_i32] = ACTIONS(5860), + [anon_sym_i64] = ACTIONS(5860), + [anon_sym_u8] = ACTIONS(5860), + [anon_sym_u16] = ACTIONS(5860), + [anon_sym_u32] = ACTIONS(5860), + [anon_sym_u64] = ACTIONS(5860), + [anon_sym_isize] = ACTIONS(5860), + [anon_sym_usize] = ACTIONS(5860), + [anon_sym_f32] = ACTIONS(5860), + [anon_sym_f64] = ACTIONS(5860), + [anon_sym_c_char] = ACTIONS(5860), + [anon_sym_c_schar] = ACTIONS(5860), + [anon_sym_c_uchar] = ACTIONS(5860), + [anon_sym_c_short] = ACTIONS(5860), + [anon_sym_c_ushort] = ACTIONS(5860), + [anon_sym_c_int] = ACTIONS(5860), + [anon_sym_c_uint] = ACTIONS(5860), + [anon_sym_c_long] = ACTIONS(5860), + [anon_sym_c_ulong] = ACTIONS(5860), + [anon_sym_c_longlong] = ACTIONS(5860), + [anon_sym_c_ulonglong] = ACTIONS(5860), + [anon_sym_c_float] = ACTIONS(5860), + [anon_sym_c_double] = ACTIONS(5860), + [anon_sym_c_longdouble] = ACTIONS(5860), + [anon_sym_PLUS_EQ] = ACTIONS(5858), + [anon_sym_DASH_EQ] = ACTIONS(5858), + [anon_sym_STAR_EQ] = ACTIONS(5858), + [anon_sym_SLASH_EQ] = ACTIONS(5858), + [anon_sym_AMP_EQ] = ACTIONS(5858), + [anon_sym_PIPE_EQ] = ACTIONS(5860), + [anon_sym_xor_EQ] = ACTIONS(5858), + [anon_sym_LT_LT_EQ] = ACTIONS(5858), + [anon_sym_GT_GT_EQ] = ACTIONS(5858), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5858), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_break] = ACTIONS(5860), + [anon_sym_continue] = ACTIONS(5860), + [anon_sym_defer] = ACTIONS(5860), + [anon_sym_errdefer] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_else] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_expand] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_PIPE2] = ACTIONS(5858), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_DOT_DOT] = ACTIONS(5860), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5858), + [anon_sym_orelse] = ACTIONS(5860), + [anon_sym_or] = ACTIONS(5860), + [anon_sym_and] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_BANG_EQ] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_LT_EQ] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_EQ] = ACTIONS(5858), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym_xor] = ACTIONS(5860), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(5860), + [anon_sym_LT_LT_PIPE] = ACTIONS(5860), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5860), + [anon_sym_catch] = ACTIONS(5860), + [anon_sym_TILDE] = ACTIONS(5858), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_DOT] = ACTIONS(5860), + [anon_sym_CARET] = ACTIONS(5858), + [anon_sym_true] = ACTIONS(5860), + [anon_sym_false] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_unreachable] = ACTIONS(5860), + [anon_sym_undefined] = ACTIONS(5860), + [sym_sink] = ACTIONS(5860), + [sym_integer] = ACTIONS(5860), + [sym_float] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(5858), + [sym_multiline_string] = ACTIONS(5858), + [sym_character] = ACTIONS(5858), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5858), + }, + [STATE(3462)] = { + [sym_identifier] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_anyopaque] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_int] = ACTIONS(1256), + [anon_sym_uint] = ACTIONS(1256), + [anon_sym_float] = ACTIONS(1256), + [anon_sym_range] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_c_char] = ACTIONS(1256), + [anon_sym_c_schar] = ACTIONS(1256), + [anon_sym_c_uchar] = ACTIONS(1256), + [anon_sym_c_short] = ACTIONS(1256), + [anon_sym_c_ushort] = ACTIONS(1256), + [anon_sym_c_int] = ACTIONS(1256), + [anon_sym_c_uint] = ACTIONS(1256), + [anon_sym_c_long] = ACTIONS(1256), + [anon_sym_c_ulong] = ACTIONS(1256), + [anon_sym_c_longlong] = ACTIONS(1256), + [anon_sym_c_ulonglong] = ACTIONS(1256), + [anon_sym_c_float] = ACTIONS(1256), + [anon_sym_c_double] = ACTIONS(1256), + [anon_sym_c_longdouble] = ACTIONS(1256), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(3463)] = { + [sym_identifier] = ACTIONS(5916), + [anon_sym_func] = ACTIONS(5916), + [anon_sym_BANG] = ACTIONS(5916), + [anon_sym_EQ] = ACTIONS(5916), + [anon_sym_struct] = ACTIONS(5916), + [anon_sym_LPAREN] = ACTIONS(5914), + [anon_sym_LBRACE] = ACTIONS(5914), + [anon_sym_DASH] = ACTIONS(5916), + [anon_sym_DOLLAR] = ACTIONS(5914), + [anon_sym_PIPE] = ACTIONS(5916), + [anon_sym_QMARK] = ACTIONS(5914), + [anon_sym_STAR] = ACTIONS(5916), + [anon_sym_LBRACK] = ACTIONS(5914), + [anon_sym_void] = ACTIONS(5916), + [anon_sym_noreturn] = ACTIONS(5916), + [anon_sym_type] = ACTIONS(5916), + [anon_sym_anyopaque] = ACTIONS(5916), + [anon_sym_bool] = ACTIONS(5916), + [anon_sym_int] = ACTIONS(5916), + [anon_sym_uint] = ACTIONS(5916), + [anon_sym_float] = ACTIONS(5916), + [anon_sym_range] = ACTIONS(5916), + [anon_sym_i8] = ACTIONS(5916), + [anon_sym_i16] = ACTIONS(5916), + [anon_sym_i32] = ACTIONS(5916), + [anon_sym_i64] = ACTIONS(5916), + [anon_sym_u8] = ACTIONS(5916), + [anon_sym_u16] = ACTIONS(5916), + [anon_sym_u32] = ACTIONS(5916), + [anon_sym_u64] = ACTIONS(5916), + [anon_sym_isize] = ACTIONS(5916), + [anon_sym_usize] = ACTIONS(5916), + [anon_sym_f32] = ACTIONS(5916), + [anon_sym_f64] = ACTIONS(5916), + [anon_sym_c_char] = ACTIONS(5916), + [anon_sym_c_schar] = ACTIONS(5916), + [anon_sym_c_uchar] = ACTIONS(5916), + [anon_sym_c_short] = ACTIONS(5916), + [anon_sym_c_ushort] = ACTIONS(5916), + [anon_sym_c_int] = ACTIONS(5916), + [anon_sym_c_uint] = ACTIONS(5916), + [anon_sym_c_long] = ACTIONS(5916), + [anon_sym_c_ulong] = ACTIONS(5916), + [anon_sym_c_longlong] = ACTIONS(5916), + [anon_sym_c_ulonglong] = ACTIONS(5916), + [anon_sym_c_float] = ACTIONS(5916), + [anon_sym_c_double] = ACTIONS(5916), + [anon_sym_c_longdouble] = ACTIONS(5916), + [anon_sym_PLUS_EQ] = ACTIONS(5914), + [anon_sym_DASH_EQ] = ACTIONS(5914), + [anon_sym_STAR_EQ] = ACTIONS(5914), + [anon_sym_SLASH_EQ] = ACTIONS(5914), + [anon_sym_AMP_EQ] = ACTIONS(5914), + [anon_sym_PIPE_EQ] = ACTIONS(5916), + [anon_sym_xor_EQ] = ACTIONS(5914), + [anon_sym_LT_LT_EQ] = ACTIONS(5914), + [anon_sym_GT_GT_EQ] = ACTIONS(5914), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5914), + [anon_sym_return] = ACTIONS(5916), + [anon_sym_yield] = ACTIONS(5916), + [anon_sym_break] = ACTIONS(5916), + [anon_sym_continue] = ACTIONS(5916), + [anon_sym_defer] = ACTIONS(5916), + [anon_sym_errdefer] = ACTIONS(5916), + [anon_sym_if] = ACTIONS(5916), + [anon_sym_else] = ACTIONS(5916), + [anon_sym_while] = ACTIONS(5916), + [anon_sym_expand] = ACTIONS(5916), + [anon_sym_for] = ACTIONS(5916), + [anon_sym_PIPE2] = ACTIONS(5914), + [anon_sym_match] = ACTIONS(5916), + [anon_sym_DOT_DOT] = ACTIONS(5916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5914), + [anon_sym_orelse] = ACTIONS(5916), + [anon_sym_or] = ACTIONS(5916), + [anon_sym_and] = ACTIONS(5916), + [anon_sym_EQ_EQ] = ACTIONS(5914), + [anon_sym_BANG_EQ] = ACTIONS(5914), + [anon_sym_LT] = ACTIONS(5916), + [anon_sym_LT_EQ] = ACTIONS(5914), + [anon_sym_GT] = ACTIONS(5916), + [anon_sym_GT_EQ] = ACTIONS(5914), + [anon_sym_AMP] = ACTIONS(5916), + [anon_sym_xor] = ACTIONS(5916), + [anon_sym_LT_LT] = ACTIONS(5916), + [anon_sym_GT_GT] = ACTIONS(5916), + [anon_sym_LT_LT_PIPE] = ACTIONS(5916), + [anon_sym_PLUS] = ACTIONS(5916), + [anon_sym_SLASH] = ACTIONS(5916), + [anon_sym_catch] = ACTIONS(5916), + [anon_sym_TILDE] = ACTIONS(5914), + [anon_sym_try] = ACTIONS(5916), + [anon_sym_DOT] = ACTIONS(5916), + [anon_sym_CARET] = ACTIONS(5914), + [anon_sym_true] = ACTIONS(5916), + [anon_sym_false] = ACTIONS(5916), + [anon_sym_null] = ACTIONS(5916), + [anon_sym_unreachable] = ACTIONS(5916), + [anon_sym_undefined] = ACTIONS(5916), + [sym_sink] = ACTIONS(5916), + [sym_integer] = ACTIONS(5916), + [sym_float] = ACTIONS(5914), + [anon_sym_DQUOTE] = ACTIONS(5914), + [sym_multiline_string] = ACTIONS(5914), + [sym_character] = ACTIONS(5914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5914), + }, + [STATE(3464)] = { + [sym_identifier] = ACTIONS(5920), + [anon_sym_func] = ACTIONS(5920), + [anon_sym_BANG] = ACTIONS(5920), + [anon_sym_EQ] = ACTIONS(5920), + [anon_sym_struct] = ACTIONS(5920), + [anon_sym_LPAREN] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5920), + [anon_sym_DOLLAR] = ACTIONS(5918), + [anon_sym_PIPE] = ACTIONS(5920), + [anon_sym_QMARK] = ACTIONS(5918), + [anon_sym_STAR] = ACTIONS(5920), + [anon_sym_LBRACK] = ACTIONS(5918), + [anon_sym_void] = ACTIONS(5920), + [anon_sym_noreturn] = ACTIONS(5920), + [anon_sym_type] = ACTIONS(5920), + [anon_sym_anyopaque] = ACTIONS(5920), + [anon_sym_bool] = ACTIONS(5920), + [anon_sym_int] = ACTIONS(5920), + [anon_sym_uint] = ACTIONS(5920), + [anon_sym_float] = ACTIONS(5920), + [anon_sym_range] = ACTIONS(5920), + [anon_sym_i8] = ACTIONS(5920), + [anon_sym_i16] = ACTIONS(5920), + [anon_sym_i32] = ACTIONS(5920), + [anon_sym_i64] = ACTIONS(5920), + [anon_sym_u8] = ACTIONS(5920), + [anon_sym_u16] = ACTIONS(5920), + [anon_sym_u32] = ACTIONS(5920), + [anon_sym_u64] = ACTIONS(5920), + [anon_sym_isize] = ACTIONS(5920), + [anon_sym_usize] = ACTIONS(5920), + [anon_sym_f32] = ACTIONS(5920), + [anon_sym_f64] = ACTIONS(5920), + [anon_sym_c_char] = ACTIONS(5920), + [anon_sym_c_schar] = ACTIONS(5920), + [anon_sym_c_uchar] = ACTIONS(5920), + [anon_sym_c_short] = ACTIONS(5920), + [anon_sym_c_ushort] = ACTIONS(5920), + [anon_sym_c_int] = ACTIONS(5920), + [anon_sym_c_uint] = ACTIONS(5920), + [anon_sym_c_long] = ACTIONS(5920), + [anon_sym_c_ulong] = ACTIONS(5920), + [anon_sym_c_longlong] = ACTIONS(5920), + [anon_sym_c_ulonglong] = ACTIONS(5920), + [anon_sym_c_float] = ACTIONS(5920), + [anon_sym_c_double] = ACTIONS(5920), + [anon_sym_c_longdouble] = ACTIONS(5920), + [anon_sym_PLUS_EQ] = ACTIONS(5918), + [anon_sym_DASH_EQ] = ACTIONS(5918), + [anon_sym_STAR_EQ] = ACTIONS(5918), + [anon_sym_SLASH_EQ] = ACTIONS(5918), + [anon_sym_AMP_EQ] = ACTIONS(5918), + [anon_sym_PIPE_EQ] = ACTIONS(5920), + [anon_sym_xor_EQ] = ACTIONS(5918), + [anon_sym_LT_LT_EQ] = ACTIONS(5918), + [anon_sym_GT_GT_EQ] = ACTIONS(5918), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5918), + [anon_sym_return] = ACTIONS(5920), + [anon_sym_yield] = ACTIONS(5920), + [anon_sym_break] = ACTIONS(5920), + [anon_sym_continue] = ACTIONS(5920), + [anon_sym_defer] = ACTIONS(5920), + [anon_sym_errdefer] = ACTIONS(5920), + [anon_sym_if] = ACTIONS(5920), + [anon_sym_else] = ACTIONS(5920), + [anon_sym_while] = ACTIONS(5920), + [anon_sym_expand] = ACTIONS(5920), + [anon_sym_for] = ACTIONS(5920), + [anon_sym_PIPE2] = ACTIONS(5918), + [anon_sym_match] = ACTIONS(5920), + [anon_sym_DOT_DOT] = ACTIONS(5920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5918), + [anon_sym_orelse] = ACTIONS(5920), + [anon_sym_or] = ACTIONS(5920), + [anon_sym_and] = ACTIONS(5920), + [anon_sym_EQ_EQ] = ACTIONS(5918), + [anon_sym_BANG_EQ] = ACTIONS(5918), + [anon_sym_LT] = ACTIONS(5920), + [anon_sym_LT_EQ] = ACTIONS(5918), + [anon_sym_GT] = ACTIONS(5920), + [anon_sym_GT_EQ] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5920), + [anon_sym_xor] = ACTIONS(5920), + [anon_sym_LT_LT] = ACTIONS(5920), + [anon_sym_GT_GT] = ACTIONS(5920), + [anon_sym_LT_LT_PIPE] = ACTIONS(5920), + [anon_sym_PLUS] = ACTIONS(5920), + [anon_sym_SLASH] = ACTIONS(5920), + [anon_sym_catch] = ACTIONS(5920), + [anon_sym_TILDE] = ACTIONS(5918), + [anon_sym_try] = ACTIONS(5920), + [anon_sym_DOT] = ACTIONS(5920), + [anon_sym_CARET] = ACTIONS(5918), + [anon_sym_true] = ACTIONS(5920), + [anon_sym_false] = ACTIONS(5920), + [anon_sym_null] = ACTIONS(5920), + [anon_sym_unreachable] = ACTIONS(5920), + [anon_sym_undefined] = ACTIONS(5920), + [sym_sink] = ACTIONS(5920), + [sym_integer] = ACTIONS(5920), + [sym_float] = ACTIONS(5918), + [anon_sym_DQUOTE] = ACTIONS(5918), + [sym_multiline_string] = ACTIONS(5918), + [sym_character] = ACTIONS(5918), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5918), + }, + [STATE(3465)] = { + [sym_identifier] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1335), + [anon_sym_DASH_EQ] = ACTIONS(1335), + [anon_sym_STAR_EQ] = ACTIONS(1335), + [anon_sym_SLASH_EQ] = ACTIONS(1335), + [anon_sym_AMP_EQ] = ACTIONS(1335), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_xor_EQ] = ACTIONS(1335), + [anon_sym_LT_LT_EQ] = ACTIONS(1335), + [anon_sym_GT_GT_EQ] = ACTIONS(1335), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_PIPE2] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_LT_LT_PIPE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1335), + }, + [STATE(3466)] = { + [sym_identifier] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_PLUS_EQ] = ACTIONS(2710), + [anon_sym_DASH_EQ] = ACTIONS(2710), + [anon_sym_STAR_EQ] = ACTIONS(2710), + [anon_sym_SLASH_EQ] = ACTIONS(2710), + [anon_sym_AMP_EQ] = ACTIONS(2710), + [anon_sym_PIPE_EQ] = ACTIONS(2712), + [anon_sym_xor_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_defer] = ACTIONS(2712), + [anon_sym_errdefer] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_expand] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_PIPE2] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(2712), + [anon_sym_and] = ACTIONS(2712), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2712), + [anon_sym_xor] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_LT_LT_PIPE] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_unreachable] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [sym_sink] = ACTIONS(2712), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [sym_multiline_string] = ACTIONS(2710), + [sym_character] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(3467)] = { + [sym_identifier] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_PLUS_EQ] = ACTIONS(2714), + [anon_sym_DASH_EQ] = ACTIONS(2714), + [anon_sym_STAR_EQ] = ACTIONS(2714), + [anon_sym_SLASH_EQ] = ACTIONS(2714), + [anon_sym_AMP_EQ] = ACTIONS(2714), + [anon_sym_PIPE_EQ] = ACTIONS(2716), + [anon_sym_xor_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_defer] = ACTIONS(2716), + [anon_sym_errdefer] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_expand] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_PIPE2] = ACTIONS(2714), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(2716), + [anon_sym_and] = ACTIONS(2716), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2716), + [anon_sym_xor] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2716), + [anon_sym_GT_GT] = ACTIONS(2716), + [anon_sym_LT_LT_PIPE] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_unreachable] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [sym_sink] = ACTIONS(2716), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [sym_multiline_string] = ACTIONS(2714), + [sym_character] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(3468)] = { + [sym_identifier] = ACTIONS(6018), + [anon_sym_func] = ACTIONS(6018), + [anon_sym_BANG] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_struct] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACE] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6018), + [anon_sym_DOLLAR] = ACTIONS(6016), + [anon_sym_PIPE] = ACTIONS(6018), + [anon_sym_QMARK] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6018), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_void] = ACTIONS(6018), + [anon_sym_noreturn] = ACTIONS(6018), + [anon_sym_type] = ACTIONS(6018), + [anon_sym_anyopaque] = ACTIONS(6018), + [anon_sym_bool] = ACTIONS(6018), + [anon_sym_int] = ACTIONS(6018), + [anon_sym_uint] = ACTIONS(6018), + [anon_sym_float] = ACTIONS(6018), + [anon_sym_range] = ACTIONS(6018), + [anon_sym_i8] = ACTIONS(6018), + [anon_sym_i16] = ACTIONS(6018), + [anon_sym_i32] = ACTIONS(6018), + [anon_sym_i64] = ACTIONS(6018), + [anon_sym_u8] = ACTIONS(6018), + [anon_sym_u16] = ACTIONS(6018), + [anon_sym_u32] = ACTIONS(6018), + [anon_sym_u64] = ACTIONS(6018), + [anon_sym_isize] = ACTIONS(6018), + [anon_sym_usize] = ACTIONS(6018), + [anon_sym_f32] = ACTIONS(6018), + [anon_sym_f64] = ACTIONS(6018), + [anon_sym_c_char] = ACTIONS(6018), + [anon_sym_c_schar] = ACTIONS(6018), + [anon_sym_c_uchar] = ACTIONS(6018), + [anon_sym_c_short] = ACTIONS(6018), + [anon_sym_c_ushort] = ACTIONS(6018), + [anon_sym_c_int] = ACTIONS(6018), + [anon_sym_c_uint] = ACTIONS(6018), + [anon_sym_c_long] = ACTIONS(6018), + [anon_sym_c_ulong] = ACTIONS(6018), + [anon_sym_c_longlong] = ACTIONS(6018), + [anon_sym_c_ulonglong] = ACTIONS(6018), + [anon_sym_c_float] = ACTIONS(6018), + [anon_sym_c_double] = ACTIONS(6018), + [anon_sym_c_longdouble] = ACTIONS(6018), + [anon_sym_PLUS_EQ] = ACTIONS(6016), + [anon_sym_DASH_EQ] = ACTIONS(6016), + [anon_sym_STAR_EQ] = ACTIONS(6016), + [anon_sym_SLASH_EQ] = ACTIONS(6016), + [anon_sym_AMP_EQ] = ACTIONS(6016), + [anon_sym_PIPE_EQ] = ACTIONS(6018), + [anon_sym_xor_EQ] = ACTIONS(6016), + [anon_sym_LT_LT_EQ] = ACTIONS(6016), + [anon_sym_GT_GT_EQ] = ACTIONS(6016), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6016), + [anon_sym_return] = ACTIONS(6018), + [anon_sym_yield] = ACTIONS(6018), + [anon_sym_break] = ACTIONS(6018), + [anon_sym_continue] = ACTIONS(6018), + [anon_sym_defer] = ACTIONS(6018), + [anon_sym_errdefer] = ACTIONS(6018), + [anon_sym_if] = ACTIONS(6018), + [anon_sym_else] = ACTIONS(6018), + [anon_sym_while] = ACTIONS(6018), + [anon_sym_expand] = ACTIONS(6018), + [anon_sym_for] = ACTIONS(6018), + [anon_sym_PIPE2] = ACTIONS(6016), + [anon_sym_match] = ACTIONS(6018), + [anon_sym_DOT_DOT] = ACTIONS(6018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6016), + [anon_sym_orelse] = ACTIONS(6018), + [anon_sym_or] = ACTIONS(6018), + [anon_sym_and] = ACTIONS(6018), + [anon_sym_EQ_EQ] = ACTIONS(6016), + [anon_sym_BANG_EQ] = ACTIONS(6016), + [anon_sym_LT] = ACTIONS(6018), + [anon_sym_LT_EQ] = ACTIONS(6016), + [anon_sym_GT] = ACTIONS(6018), + [anon_sym_GT_EQ] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6018), + [anon_sym_xor] = ACTIONS(6018), + [anon_sym_LT_LT] = ACTIONS(6018), + [anon_sym_GT_GT] = ACTIONS(6018), + [anon_sym_LT_LT_PIPE] = ACTIONS(6018), + [anon_sym_PLUS] = ACTIONS(6018), + [anon_sym_SLASH] = ACTIONS(6018), + [anon_sym_catch] = ACTIONS(6018), + [anon_sym_TILDE] = ACTIONS(6016), + [anon_sym_try] = ACTIONS(6018), + [anon_sym_DOT] = ACTIONS(6018), + [anon_sym_CARET] = ACTIONS(6016), + [anon_sym_true] = ACTIONS(6018), + [anon_sym_false] = ACTIONS(6018), + [anon_sym_null] = ACTIONS(6018), + [anon_sym_unreachable] = ACTIONS(6018), + [anon_sym_undefined] = ACTIONS(6018), + [sym_sink] = ACTIONS(6018), + [sym_integer] = ACTIONS(6018), + [sym_float] = ACTIONS(6016), + [anon_sym_DQUOTE] = ACTIONS(6016), + [sym_multiline_string] = ACTIONS(6016), + [sym_character] = ACTIONS(6016), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6016), + }, + [STATE(3469)] = { + [sym_identifier] = ACTIONS(5956), + [anon_sym_func] = ACTIONS(5956), + [anon_sym_BANG] = ACTIONS(5956), + [anon_sym_EQ] = ACTIONS(5956), + [anon_sym_struct] = ACTIONS(5956), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_DOLLAR] = ACTIONS(5954), + [anon_sym_PIPE] = ACTIONS(5956), + [anon_sym_QMARK] = ACTIONS(5954), + [anon_sym_STAR] = ACTIONS(5956), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_void] = ACTIONS(5956), + [anon_sym_noreturn] = ACTIONS(5956), + [anon_sym_type] = ACTIONS(5956), + [anon_sym_anyopaque] = ACTIONS(5956), + [anon_sym_bool] = ACTIONS(5956), + [anon_sym_int] = ACTIONS(5956), + [anon_sym_uint] = ACTIONS(5956), + [anon_sym_float] = ACTIONS(5956), + [anon_sym_range] = ACTIONS(5956), + [anon_sym_i8] = ACTIONS(5956), + [anon_sym_i16] = ACTIONS(5956), + [anon_sym_i32] = ACTIONS(5956), + [anon_sym_i64] = ACTIONS(5956), + [anon_sym_u8] = ACTIONS(5956), + [anon_sym_u16] = ACTIONS(5956), + [anon_sym_u32] = ACTIONS(5956), + [anon_sym_u64] = ACTIONS(5956), + [anon_sym_isize] = ACTIONS(5956), + [anon_sym_usize] = ACTIONS(5956), + [anon_sym_f32] = ACTIONS(5956), + [anon_sym_f64] = ACTIONS(5956), + [anon_sym_c_char] = ACTIONS(5956), + [anon_sym_c_schar] = ACTIONS(5956), + [anon_sym_c_uchar] = ACTIONS(5956), + [anon_sym_c_short] = ACTIONS(5956), + [anon_sym_c_ushort] = ACTIONS(5956), + [anon_sym_c_int] = ACTIONS(5956), + [anon_sym_c_uint] = ACTIONS(5956), + [anon_sym_c_long] = ACTIONS(5956), + [anon_sym_c_ulong] = ACTIONS(5956), + [anon_sym_c_longlong] = ACTIONS(5956), + [anon_sym_c_ulonglong] = ACTIONS(5956), + [anon_sym_c_float] = ACTIONS(5956), + [anon_sym_c_double] = ACTIONS(5956), + [anon_sym_c_longdouble] = ACTIONS(5956), + [anon_sym_PLUS_EQ] = ACTIONS(5954), + [anon_sym_DASH_EQ] = ACTIONS(5954), + [anon_sym_STAR_EQ] = ACTIONS(5954), + [anon_sym_SLASH_EQ] = ACTIONS(5954), + [anon_sym_AMP_EQ] = ACTIONS(5954), + [anon_sym_PIPE_EQ] = ACTIONS(5956), + [anon_sym_xor_EQ] = ACTIONS(5954), + [anon_sym_LT_LT_EQ] = ACTIONS(5954), + [anon_sym_GT_GT_EQ] = ACTIONS(5954), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5954), + [anon_sym_return] = ACTIONS(5956), + [anon_sym_yield] = ACTIONS(5956), + [anon_sym_break] = ACTIONS(5956), + [anon_sym_continue] = ACTIONS(5956), + [anon_sym_defer] = ACTIONS(5956), + [anon_sym_errdefer] = ACTIONS(5956), + [anon_sym_if] = ACTIONS(5956), + [anon_sym_else] = ACTIONS(5956), + [anon_sym_while] = ACTIONS(5956), + [anon_sym_expand] = ACTIONS(5956), + [anon_sym_for] = ACTIONS(5956), + [anon_sym_PIPE2] = ACTIONS(5954), + [anon_sym_match] = ACTIONS(5956), + [anon_sym_DOT_DOT] = ACTIONS(5956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_orelse] = ACTIONS(5956), + [anon_sym_or] = ACTIONS(5956), + [anon_sym_and] = ACTIONS(5956), + [anon_sym_EQ_EQ] = ACTIONS(5954), + [anon_sym_BANG_EQ] = ACTIONS(5954), + [anon_sym_LT] = ACTIONS(5956), + [anon_sym_LT_EQ] = ACTIONS(5954), + [anon_sym_GT] = ACTIONS(5956), + [anon_sym_GT_EQ] = ACTIONS(5954), + [anon_sym_AMP] = ACTIONS(5956), + [anon_sym_xor] = ACTIONS(5956), + [anon_sym_LT_LT] = ACTIONS(5956), + [anon_sym_GT_GT] = ACTIONS(5956), + [anon_sym_LT_LT_PIPE] = ACTIONS(5956), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5956), + [anon_sym_catch] = ACTIONS(5956), + [anon_sym_TILDE] = ACTIONS(5954), + [anon_sym_try] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(6813), + [anon_sym_CARET] = ACTIONS(5954), + [anon_sym_true] = ACTIONS(5956), + [anon_sym_false] = ACTIONS(5956), + [anon_sym_null] = ACTIONS(5956), + [anon_sym_unreachable] = ACTIONS(5956), + [anon_sym_undefined] = ACTIONS(5956), + [sym_sink] = ACTIONS(5956), + [sym_integer] = ACTIONS(5956), + [sym_float] = ACTIONS(5954), + [anon_sym_DQUOTE] = ACTIONS(5954), + [sym_multiline_string] = ACTIONS(5954), + [sym_character] = ACTIONS(5954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5954), + }, + [STATE(3470)] = { + [sym_identifier] = ACTIONS(6022), + [anon_sym_func] = ACTIONS(6022), + [anon_sym_BANG] = ACTIONS(6022), + [anon_sym_EQ] = ACTIONS(6022), + [anon_sym_struct] = ACTIONS(6022), + [anon_sym_LPAREN] = ACTIONS(6020), + [anon_sym_LBRACE] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6022), + [anon_sym_DOLLAR] = ACTIONS(6020), + [anon_sym_PIPE] = ACTIONS(6022), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_STAR] = ACTIONS(6022), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_void] = ACTIONS(6022), + [anon_sym_noreturn] = ACTIONS(6022), + [anon_sym_type] = ACTIONS(6022), + [anon_sym_anyopaque] = ACTIONS(6022), + [anon_sym_bool] = ACTIONS(6022), + [anon_sym_int] = ACTIONS(6022), + [anon_sym_uint] = ACTIONS(6022), + [anon_sym_float] = ACTIONS(6022), + [anon_sym_range] = ACTIONS(6022), + [anon_sym_i8] = ACTIONS(6022), + [anon_sym_i16] = ACTIONS(6022), + [anon_sym_i32] = ACTIONS(6022), + [anon_sym_i64] = ACTIONS(6022), + [anon_sym_u8] = ACTIONS(6022), + [anon_sym_u16] = ACTIONS(6022), + [anon_sym_u32] = ACTIONS(6022), + [anon_sym_u64] = ACTIONS(6022), + [anon_sym_isize] = ACTIONS(6022), + [anon_sym_usize] = ACTIONS(6022), + [anon_sym_f32] = ACTIONS(6022), + [anon_sym_f64] = ACTIONS(6022), + [anon_sym_c_char] = ACTIONS(6022), + [anon_sym_c_schar] = ACTIONS(6022), + [anon_sym_c_uchar] = ACTIONS(6022), + [anon_sym_c_short] = ACTIONS(6022), + [anon_sym_c_ushort] = ACTIONS(6022), + [anon_sym_c_int] = ACTIONS(6022), + [anon_sym_c_uint] = ACTIONS(6022), + [anon_sym_c_long] = ACTIONS(6022), + [anon_sym_c_ulong] = ACTIONS(6022), + [anon_sym_c_longlong] = ACTIONS(6022), + [anon_sym_c_ulonglong] = ACTIONS(6022), + [anon_sym_c_float] = ACTIONS(6022), + [anon_sym_c_double] = ACTIONS(6022), + [anon_sym_c_longdouble] = ACTIONS(6022), + [anon_sym_PLUS_EQ] = ACTIONS(6020), + [anon_sym_DASH_EQ] = ACTIONS(6020), + [anon_sym_STAR_EQ] = ACTIONS(6020), + [anon_sym_SLASH_EQ] = ACTIONS(6020), + [anon_sym_AMP_EQ] = ACTIONS(6020), + [anon_sym_PIPE_EQ] = ACTIONS(6022), + [anon_sym_xor_EQ] = ACTIONS(6020), + [anon_sym_LT_LT_EQ] = ACTIONS(6020), + [anon_sym_GT_GT_EQ] = ACTIONS(6020), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6020), + [anon_sym_return] = ACTIONS(6022), + [anon_sym_yield] = ACTIONS(6022), + [anon_sym_break] = ACTIONS(6022), + [anon_sym_continue] = ACTIONS(6022), + [anon_sym_defer] = ACTIONS(6022), + [anon_sym_errdefer] = ACTIONS(6022), + [anon_sym_if] = ACTIONS(6022), + [anon_sym_else] = ACTIONS(6022), + [anon_sym_while] = ACTIONS(6022), + [anon_sym_expand] = ACTIONS(6022), + [anon_sym_for] = ACTIONS(6022), + [anon_sym_PIPE2] = ACTIONS(6020), + [anon_sym_match] = ACTIONS(6022), + [anon_sym_DOT_DOT] = ACTIONS(6022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6020), + [anon_sym_orelse] = ACTIONS(6022), + [anon_sym_or] = ACTIONS(6022), + [anon_sym_and] = ACTIONS(6022), + [anon_sym_EQ_EQ] = ACTIONS(6020), + [anon_sym_BANG_EQ] = ACTIONS(6020), + [anon_sym_LT] = ACTIONS(6022), + [anon_sym_LT_EQ] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6022), + [anon_sym_GT_EQ] = ACTIONS(6020), + [anon_sym_AMP] = ACTIONS(6022), + [anon_sym_xor] = ACTIONS(6022), + [anon_sym_LT_LT] = ACTIONS(6022), + [anon_sym_GT_GT] = ACTIONS(6022), + [anon_sym_LT_LT_PIPE] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(6022), + [anon_sym_SLASH] = ACTIONS(6022), + [anon_sym_catch] = ACTIONS(6022), + [anon_sym_TILDE] = ACTIONS(6020), + [anon_sym_try] = ACTIONS(6022), + [anon_sym_DOT] = ACTIONS(6022), + [anon_sym_CARET] = ACTIONS(6020), + [anon_sym_true] = ACTIONS(6022), + [anon_sym_false] = ACTIONS(6022), + [anon_sym_null] = ACTIONS(6022), + [anon_sym_unreachable] = ACTIONS(6022), + [anon_sym_undefined] = ACTIONS(6022), + [sym_sink] = ACTIONS(6022), + [sym_integer] = ACTIONS(6022), + [sym_float] = ACTIONS(6020), + [anon_sym_DQUOTE] = ACTIONS(6020), + [sym_multiline_string] = ACTIONS(6020), + [sym_character] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6020), + }, + [STATE(3471)] = { + [sym_identifier] = ACTIONS(6042), + [anon_sym_func] = ACTIONS(6042), + [anon_sym_BANG] = ACTIONS(6042), + [anon_sym_EQ] = ACTIONS(6042), + [anon_sym_struct] = ACTIONS(6042), + [anon_sym_LPAREN] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(6040), + [anon_sym_DASH] = ACTIONS(6042), + [anon_sym_DOLLAR] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(6042), + [anon_sym_QMARK] = ACTIONS(6040), + [anon_sym_STAR] = ACTIONS(6042), + [anon_sym_LBRACK] = ACTIONS(6040), + [anon_sym_void] = ACTIONS(6042), + [anon_sym_noreturn] = ACTIONS(6042), + [anon_sym_type] = ACTIONS(6042), + [anon_sym_anyopaque] = ACTIONS(6042), + [anon_sym_bool] = ACTIONS(6042), + [anon_sym_int] = ACTIONS(6042), + [anon_sym_uint] = ACTIONS(6042), + [anon_sym_float] = ACTIONS(6042), + [anon_sym_range] = ACTIONS(6042), + [anon_sym_i8] = ACTIONS(6042), + [anon_sym_i16] = ACTIONS(6042), + [anon_sym_i32] = ACTIONS(6042), + [anon_sym_i64] = ACTIONS(6042), + [anon_sym_u8] = ACTIONS(6042), + [anon_sym_u16] = ACTIONS(6042), + [anon_sym_u32] = ACTIONS(6042), + [anon_sym_u64] = ACTIONS(6042), + [anon_sym_isize] = ACTIONS(6042), + [anon_sym_usize] = ACTIONS(6042), + [anon_sym_f32] = ACTIONS(6042), + [anon_sym_f64] = ACTIONS(6042), + [anon_sym_c_char] = ACTIONS(6042), + [anon_sym_c_schar] = ACTIONS(6042), + [anon_sym_c_uchar] = ACTIONS(6042), + [anon_sym_c_short] = ACTIONS(6042), + [anon_sym_c_ushort] = ACTIONS(6042), + [anon_sym_c_int] = ACTIONS(6042), + [anon_sym_c_uint] = ACTIONS(6042), + [anon_sym_c_long] = ACTIONS(6042), + [anon_sym_c_ulong] = ACTIONS(6042), + [anon_sym_c_longlong] = ACTIONS(6042), + [anon_sym_c_ulonglong] = ACTIONS(6042), + [anon_sym_c_float] = ACTIONS(6042), + [anon_sym_c_double] = ACTIONS(6042), + [anon_sym_c_longdouble] = ACTIONS(6042), + [anon_sym_PLUS_EQ] = ACTIONS(6040), + [anon_sym_DASH_EQ] = ACTIONS(6040), + [anon_sym_STAR_EQ] = ACTIONS(6040), + [anon_sym_SLASH_EQ] = ACTIONS(6040), + [anon_sym_AMP_EQ] = ACTIONS(6040), + [anon_sym_PIPE_EQ] = ACTIONS(6042), + [anon_sym_xor_EQ] = ACTIONS(6040), + [anon_sym_LT_LT_EQ] = ACTIONS(6040), + [anon_sym_GT_GT_EQ] = ACTIONS(6040), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6040), + [anon_sym_return] = ACTIONS(6042), + [anon_sym_yield] = ACTIONS(6042), + [anon_sym_break] = ACTIONS(6042), + [anon_sym_continue] = ACTIONS(6042), + [anon_sym_defer] = ACTIONS(6042), + [anon_sym_errdefer] = ACTIONS(6042), + [anon_sym_if] = ACTIONS(6042), + [anon_sym_else] = ACTIONS(6042), + [anon_sym_while] = ACTIONS(6042), + [anon_sym_expand] = ACTIONS(6042), + [anon_sym_for] = ACTIONS(6042), + [anon_sym_PIPE2] = ACTIONS(6040), + [anon_sym_match] = ACTIONS(6042), + [anon_sym_DOT_DOT] = ACTIONS(6042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6040), + [anon_sym_orelse] = ACTIONS(6042), + [anon_sym_or] = ACTIONS(6042), + [anon_sym_and] = ACTIONS(6042), + [anon_sym_EQ_EQ] = ACTIONS(6040), + [anon_sym_BANG_EQ] = ACTIONS(6040), + [anon_sym_LT] = ACTIONS(6042), + [anon_sym_LT_EQ] = ACTIONS(6040), + [anon_sym_GT] = ACTIONS(6042), + [anon_sym_GT_EQ] = ACTIONS(6040), + [anon_sym_AMP] = ACTIONS(6042), + [anon_sym_xor] = ACTIONS(6042), + [anon_sym_LT_LT] = ACTIONS(6042), + [anon_sym_GT_GT] = ACTIONS(6042), + [anon_sym_LT_LT_PIPE] = ACTIONS(6042), + [anon_sym_PLUS] = ACTIONS(6042), + [anon_sym_SLASH] = ACTIONS(6042), + [anon_sym_catch] = ACTIONS(6042), + [anon_sym_TILDE] = ACTIONS(6040), + [anon_sym_try] = ACTIONS(6042), + [anon_sym_DOT] = ACTIONS(6042), + [anon_sym_CARET] = ACTIONS(6040), + [anon_sym_true] = ACTIONS(6042), + [anon_sym_false] = ACTIONS(6042), + [anon_sym_null] = ACTIONS(6042), + [anon_sym_unreachable] = ACTIONS(6042), + [anon_sym_undefined] = ACTIONS(6042), + [sym_sink] = ACTIONS(6042), + [sym_integer] = ACTIONS(6042), + [sym_float] = ACTIONS(6040), + [anon_sym_DQUOTE] = ACTIONS(6040), + [sym_multiline_string] = ACTIONS(6040), + [sym_character] = ACTIONS(6040), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6040), + }, + [STATE(3472)] = { + [sym_identifier] = ACTIONS(5782), + [anon_sym_func] = ACTIONS(5782), + [anon_sym_BANG] = ACTIONS(5782), + [anon_sym_EQ] = ACTIONS(5782), + [anon_sym_struct] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5782), + [anon_sym_DOLLAR] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5782), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_STAR] = ACTIONS(5782), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_void] = ACTIONS(5782), + [anon_sym_noreturn] = ACTIONS(5782), + [anon_sym_type] = ACTIONS(5782), + [anon_sym_anyopaque] = ACTIONS(5782), + [anon_sym_bool] = ACTIONS(5782), + [anon_sym_int] = ACTIONS(5782), + [anon_sym_uint] = ACTIONS(5782), + [anon_sym_float] = ACTIONS(5782), + [anon_sym_range] = ACTIONS(5782), + [anon_sym_i8] = ACTIONS(5782), + [anon_sym_i16] = ACTIONS(5782), + [anon_sym_i32] = ACTIONS(5782), + [anon_sym_i64] = ACTIONS(5782), + [anon_sym_u8] = ACTIONS(5782), + [anon_sym_u16] = ACTIONS(5782), + [anon_sym_u32] = ACTIONS(5782), + [anon_sym_u64] = ACTIONS(5782), + [anon_sym_isize] = ACTIONS(5782), + [anon_sym_usize] = ACTIONS(5782), + [anon_sym_f32] = ACTIONS(5782), + [anon_sym_f64] = ACTIONS(5782), + [anon_sym_c_char] = ACTIONS(5782), + [anon_sym_c_schar] = ACTIONS(5782), + [anon_sym_c_uchar] = ACTIONS(5782), + [anon_sym_c_short] = ACTIONS(5782), + [anon_sym_c_ushort] = ACTIONS(5782), + [anon_sym_c_int] = ACTIONS(5782), + [anon_sym_c_uint] = ACTIONS(5782), + [anon_sym_c_long] = ACTIONS(5782), + [anon_sym_c_ulong] = ACTIONS(5782), + [anon_sym_c_longlong] = ACTIONS(5782), + [anon_sym_c_ulonglong] = ACTIONS(5782), + [anon_sym_c_float] = ACTIONS(5782), + [anon_sym_c_double] = ACTIONS(5782), + [anon_sym_c_longdouble] = ACTIONS(5782), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5782), + [anon_sym_xor_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5778), + [anon_sym_return] = ACTIONS(5782), + [anon_sym_yield] = ACTIONS(5782), + [anon_sym_break] = ACTIONS(5782), + [anon_sym_continue] = ACTIONS(5782), + [anon_sym_defer] = ACTIONS(5782), + [anon_sym_errdefer] = ACTIONS(5782), + [anon_sym_if] = ACTIONS(5782), + [anon_sym_else] = ACTIONS(5782), + [anon_sym_while] = ACTIONS(5782), + [anon_sym_expand] = ACTIONS(5782), + [anon_sym_for] = ACTIONS(5782), + [anon_sym_PIPE2] = ACTIONS(5778), + [anon_sym_match] = ACTIONS(5782), + [anon_sym_DOT_DOT] = ACTIONS(5782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5778), + [anon_sym_orelse] = ACTIONS(5782), + [anon_sym_or] = ACTIONS(5782), + [anon_sym_and] = ACTIONS(5782), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_LT] = ACTIONS(5782), + [anon_sym_LT_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5782), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5782), + [anon_sym_xor] = ACTIONS(5782), + [anon_sym_LT_LT] = ACTIONS(5782), + [anon_sym_GT_GT] = ACTIONS(5782), + [anon_sym_LT_LT_PIPE] = ACTIONS(5782), + [anon_sym_PLUS] = ACTIONS(5782), + [anon_sym_SLASH] = ACTIONS(5782), + [anon_sym_catch] = ACTIONS(5782), + [anon_sym_TILDE] = ACTIONS(5778), + [anon_sym_try] = ACTIONS(5782), + [anon_sym_DOT] = ACTIONS(5782), + [anon_sym_CARET] = ACTIONS(5778), + [anon_sym_true] = ACTIONS(5782), + [anon_sym_false] = ACTIONS(5782), + [anon_sym_null] = ACTIONS(5782), + [anon_sym_unreachable] = ACTIONS(5782), + [anon_sym_undefined] = ACTIONS(5782), + [sym_sink] = ACTIONS(5782), + [sym_integer] = ACTIONS(5782), + [sym_float] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(5778), + [sym_multiline_string] = ACTIONS(5778), + [sym_character] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5778), + }, + [STATE(3473)] = { + [sym_identifier] = ACTIONS(6056), + [anon_sym_func] = ACTIONS(6056), + [anon_sym_BANG] = ACTIONS(6056), + [anon_sym_EQ] = ACTIONS(6056), + [anon_sym_struct] = ACTIONS(6056), + [anon_sym_LPAREN] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6056), + [anon_sym_DOLLAR] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6056), + [anon_sym_QMARK] = ACTIONS(6054), + [anon_sym_STAR] = ACTIONS(6056), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_void] = ACTIONS(6056), + [anon_sym_noreturn] = ACTIONS(6056), + [anon_sym_type] = ACTIONS(6056), + [anon_sym_anyopaque] = ACTIONS(6056), + [anon_sym_bool] = ACTIONS(6056), + [anon_sym_int] = ACTIONS(6056), + [anon_sym_uint] = ACTIONS(6056), + [anon_sym_float] = ACTIONS(6056), + [anon_sym_range] = ACTIONS(6056), + [anon_sym_i8] = ACTIONS(6056), + [anon_sym_i16] = ACTIONS(6056), + [anon_sym_i32] = ACTIONS(6056), + [anon_sym_i64] = ACTIONS(6056), + [anon_sym_u8] = ACTIONS(6056), + [anon_sym_u16] = ACTIONS(6056), + [anon_sym_u32] = ACTIONS(6056), + [anon_sym_u64] = ACTIONS(6056), + [anon_sym_isize] = ACTIONS(6056), + [anon_sym_usize] = ACTIONS(6056), + [anon_sym_f32] = ACTIONS(6056), + [anon_sym_f64] = ACTIONS(6056), + [anon_sym_c_char] = ACTIONS(6056), + [anon_sym_c_schar] = ACTIONS(6056), + [anon_sym_c_uchar] = ACTIONS(6056), + [anon_sym_c_short] = ACTIONS(6056), + [anon_sym_c_ushort] = ACTIONS(6056), + [anon_sym_c_int] = ACTIONS(6056), + [anon_sym_c_uint] = ACTIONS(6056), + [anon_sym_c_long] = ACTIONS(6056), + [anon_sym_c_ulong] = ACTIONS(6056), + [anon_sym_c_longlong] = ACTIONS(6056), + [anon_sym_c_ulonglong] = ACTIONS(6056), + [anon_sym_c_float] = ACTIONS(6056), + [anon_sym_c_double] = ACTIONS(6056), + [anon_sym_c_longdouble] = ACTIONS(6056), + [anon_sym_PLUS_EQ] = ACTIONS(6054), + [anon_sym_DASH_EQ] = ACTIONS(6054), + [anon_sym_STAR_EQ] = ACTIONS(6054), + [anon_sym_SLASH_EQ] = ACTIONS(6054), + [anon_sym_AMP_EQ] = ACTIONS(6054), + [anon_sym_PIPE_EQ] = ACTIONS(6056), + [anon_sym_xor_EQ] = ACTIONS(6054), + [anon_sym_LT_LT_EQ] = ACTIONS(6054), + [anon_sym_GT_GT_EQ] = ACTIONS(6054), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6054), + [anon_sym_return] = ACTIONS(6056), + [anon_sym_yield] = ACTIONS(6056), + [anon_sym_break] = ACTIONS(6056), + [anon_sym_continue] = ACTIONS(6056), + [anon_sym_defer] = ACTIONS(6056), + [anon_sym_errdefer] = ACTIONS(6056), + [anon_sym_if] = ACTIONS(6056), + [anon_sym_else] = ACTIONS(6056), + [anon_sym_while] = ACTIONS(6056), + [anon_sym_expand] = ACTIONS(6056), + [anon_sym_for] = ACTIONS(6056), + [anon_sym_PIPE2] = ACTIONS(6054), + [anon_sym_match] = ACTIONS(6056), + [anon_sym_DOT_DOT] = ACTIONS(6056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6054), + [anon_sym_orelse] = ACTIONS(6056), + [anon_sym_or] = ACTIONS(6056), + [anon_sym_and] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6054), + [anon_sym_BANG_EQ] = ACTIONS(6054), + [anon_sym_LT] = ACTIONS(6056), + [anon_sym_LT_EQ] = ACTIONS(6054), + [anon_sym_GT] = ACTIONS(6056), + [anon_sym_GT_EQ] = ACTIONS(6054), + [anon_sym_AMP] = ACTIONS(6056), + [anon_sym_xor] = ACTIONS(6056), + [anon_sym_LT_LT] = ACTIONS(6056), + [anon_sym_GT_GT] = ACTIONS(6056), + [anon_sym_LT_LT_PIPE] = ACTIONS(6056), + [anon_sym_PLUS] = ACTIONS(6056), + [anon_sym_SLASH] = ACTIONS(6056), + [anon_sym_catch] = ACTIONS(6056), + [anon_sym_TILDE] = ACTIONS(6054), + [anon_sym_try] = ACTIONS(6056), + [anon_sym_DOT] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6054), + [anon_sym_true] = ACTIONS(6056), + [anon_sym_false] = ACTIONS(6056), + [anon_sym_null] = ACTIONS(6056), + [anon_sym_unreachable] = ACTIONS(6056), + [anon_sym_undefined] = ACTIONS(6056), + [sym_sink] = ACTIONS(6056), + [sym_integer] = ACTIONS(6056), + [sym_float] = ACTIONS(6054), + [anon_sym_DQUOTE] = ACTIONS(6054), + [sym_multiline_string] = ACTIONS(6054), + [sym_character] = ACTIONS(6054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6054), + }, + [STATE(3474)] = { + [sym_identifier] = ACTIONS(6060), + [anon_sym_func] = ACTIONS(6060), + [anon_sym_BANG] = ACTIONS(6060), + [anon_sym_EQ] = ACTIONS(6060), + [anon_sym_struct] = ACTIONS(6060), + [anon_sym_LPAREN] = ACTIONS(6058), + [anon_sym_LBRACE] = ACTIONS(6058), + [anon_sym_DASH] = ACTIONS(6060), + [anon_sym_DOLLAR] = ACTIONS(6058), + [anon_sym_PIPE] = ACTIONS(6060), + [anon_sym_QMARK] = ACTIONS(6058), + [anon_sym_STAR] = ACTIONS(6060), + [anon_sym_LBRACK] = ACTIONS(6058), + [anon_sym_void] = ACTIONS(6060), + [anon_sym_noreturn] = ACTIONS(6060), + [anon_sym_type] = ACTIONS(6060), + [anon_sym_anyopaque] = ACTIONS(6060), + [anon_sym_bool] = ACTIONS(6060), + [anon_sym_int] = ACTIONS(6060), + [anon_sym_uint] = ACTIONS(6060), + [anon_sym_float] = ACTIONS(6060), + [anon_sym_range] = ACTIONS(6060), + [anon_sym_i8] = ACTIONS(6060), + [anon_sym_i16] = ACTIONS(6060), + [anon_sym_i32] = ACTIONS(6060), + [anon_sym_i64] = ACTIONS(6060), + [anon_sym_u8] = ACTIONS(6060), + [anon_sym_u16] = ACTIONS(6060), + [anon_sym_u32] = ACTIONS(6060), + [anon_sym_u64] = ACTIONS(6060), + [anon_sym_isize] = ACTIONS(6060), + [anon_sym_usize] = ACTIONS(6060), + [anon_sym_f32] = ACTIONS(6060), + [anon_sym_f64] = ACTIONS(6060), + [anon_sym_c_char] = ACTIONS(6060), + [anon_sym_c_schar] = ACTIONS(6060), + [anon_sym_c_uchar] = ACTIONS(6060), + [anon_sym_c_short] = ACTIONS(6060), + [anon_sym_c_ushort] = ACTIONS(6060), + [anon_sym_c_int] = ACTIONS(6060), + [anon_sym_c_uint] = ACTIONS(6060), + [anon_sym_c_long] = ACTIONS(6060), + [anon_sym_c_ulong] = ACTIONS(6060), + [anon_sym_c_longlong] = ACTIONS(6060), + [anon_sym_c_ulonglong] = ACTIONS(6060), + [anon_sym_c_float] = ACTIONS(6060), + [anon_sym_c_double] = ACTIONS(6060), + [anon_sym_c_longdouble] = ACTIONS(6060), + [anon_sym_PLUS_EQ] = ACTIONS(6058), + [anon_sym_DASH_EQ] = ACTIONS(6058), + [anon_sym_STAR_EQ] = ACTIONS(6058), + [anon_sym_SLASH_EQ] = ACTIONS(6058), + [anon_sym_AMP_EQ] = ACTIONS(6058), + [anon_sym_PIPE_EQ] = ACTIONS(6060), + [anon_sym_xor_EQ] = ACTIONS(6058), + [anon_sym_LT_LT_EQ] = ACTIONS(6058), + [anon_sym_GT_GT_EQ] = ACTIONS(6058), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6058), + [anon_sym_return] = ACTIONS(6060), + [anon_sym_yield] = ACTIONS(6060), + [anon_sym_break] = ACTIONS(6060), + [anon_sym_continue] = ACTIONS(6060), + [anon_sym_defer] = ACTIONS(6060), + [anon_sym_errdefer] = ACTIONS(6060), + [anon_sym_if] = ACTIONS(6060), + [anon_sym_else] = ACTIONS(6060), + [anon_sym_while] = ACTIONS(6060), + [anon_sym_expand] = ACTIONS(6060), + [anon_sym_for] = ACTIONS(6060), + [anon_sym_PIPE2] = ACTIONS(6058), + [anon_sym_match] = ACTIONS(6060), + [anon_sym_DOT_DOT] = ACTIONS(6060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6058), + [anon_sym_orelse] = ACTIONS(6060), + [anon_sym_or] = ACTIONS(6060), + [anon_sym_and] = ACTIONS(6060), + [anon_sym_EQ_EQ] = ACTIONS(6058), + [anon_sym_BANG_EQ] = ACTIONS(6058), + [anon_sym_LT] = ACTIONS(6060), + [anon_sym_LT_EQ] = ACTIONS(6058), + [anon_sym_GT] = ACTIONS(6060), + [anon_sym_GT_EQ] = ACTIONS(6058), + [anon_sym_AMP] = ACTIONS(6060), + [anon_sym_xor] = ACTIONS(6060), + [anon_sym_LT_LT] = ACTIONS(6060), + [anon_sym_GT_GT] = ACTIONS(6060), + [anon_sym_LT_LT_PIPE] = ACTIONS(6060), + [anon_sym_PLUS] = ACTIONS(6060), + [anon_sym_SLASH] = ACTIONS(6060), + [anon_sym_catch] = ACTIONS(6060), + [anon_sym_TILDE] = ACTIONS(6058), + [anon_sym_try] = ACTIONS(6060), + [anon_sym_DOT] = ACTIONS(6060), + [anon_sym_CARET] = ACTIONS(6058), + [anon_sym_true] = ACTIONS(6060), + [anon_sym_false] = ACTIONS(6060), + [anon_sym_null] = ACTIONS(6060), + [anon_sym_unreachable] = ACTIONS(6060), + [anon_sym_undefined] = ACTIONS(6060), + [sym_sink] = ACTIONS(6060), + [sym_integer] = ACTIONS(6060), + [sym_float] = ACTIONS(6058), + [anon_sym_DQUOTE] = ACTIONS(6058), + [sym_multiline_string] = ACTIONS(6058), + [sym_character] = ACTIONS(6058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6058), + }, + [STATE(3475)] = { + [sym_identifier] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_anyopaque] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_int] = ACTIONS(1196), + [anon_sym_uint] = ACTIONS(1196), + [anon_sym_float] = ACTIONS(1196), + [anon_sym_range] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_c_char] = ACTIONS(1196), + [anon_sym_c_schar] = ACTIONS(1196), + [anon_sym_c_uchar] = ACTIONS(1196), + [anon_sym_c_short] = ACTIONS(1196), + [anon_sym_c_ushort] = ACTIONS(1196), + [anon_sym_c_int] = ACTIONS(1196), + [anon_sym_c_uint] = ACTIONS(1196), + [anon_sym_c_long] = ACTIONS(1196), + [anon_sym_c_ulong] = ACTIONS(1196), + [anon_sym_c_longlong] = ACTIONS(1196), + [anon_sym_c_ulonglong] = ACTIONS(1196), + [anon_sym_c_float] = ACTIONS(1196), + [anon_sym_c_double] = ACTIONS(1196), + [anon_sym_c_longdouble] = ACTIONS(1196), + [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(1196), + [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(1196), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_defer] = ACTIONS(1196), + [anon_sym_errdefer] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_expand] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_PIPE2] = ACTIONS(1192), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_unreachable] = ACTIONS(1196), + [anon_sym_undefined] = ACTIONS(1196), + [sym_sink] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [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(3476)] = { + [sym_identifier] = ACTIONS(5924), + [anon_sym_func] = ACTIONS(5924), + [anon_sym_BANG] = ACTIONS(5924), + [anon_sym_EQ] = ACTIONS(5924), + [anon_sym_struct] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5922), + [anon_sym_LBRACE] = ACTIONS(5922), + [anon_sym_DASH] = ACTIONS(5924), + [anon_sym_DOLLAR] = ACTIONS(5922), + [anon_sym_PIPE] = ACTIONS(5924), + [anon_sym_QMARK] = ACTIONS(5922), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(5922), + [anon_sym_void] = ACTIONS(5924), + [anon_sym_noreturn] = ACTIONS(5924), + [anon_sym_type] = ACTIONS(5924), + [anon_sym_anyopaque] = ACTIONS(5924), + [anon_sym_bool] = ACTIONS(5924), + [anon_sym_int] = ACTIONS(5924), + [anon_sym_uint] = ACTIONS(5924), + [anon_sym_float] = ACTIONS(5924), + [anon_sym_range] = ACTIONS(5924), + [anon_sym_i8] = ACTIONS(5924), + [anon_sym_i16] = ACTIONS(5924), + [anon_sym_i32] = ACTIONS(5924), + [anon_sym_i64] = ACTIONS(5924), + [anon_sym_u8] = ACTIONS(5924), + [anon_sym_u16] = ACTIONS(5924), + [anon_sym_u32] = ACTIONS(5924), + [anon_sym_u64] = ACTIONS(5924), + [anon_sym_isize] = ACTIONS(5924), + [anon_sym_usize] = ACTIONS(5924), + [anon_sym_f32] = ACTIONS(5924), + [anon_sym_f64] = ACTIONS(5924), + [anon_sym_c_char] = ACTIONS(5924), + [anon_sym_c_schar] = ACTIONS(5924), + [anon_sym_c_uchar] = ACTIONS(5924), + [anon_sym_c_short] = ACTIONS(5924), + [anon_sym_c_ushort] = ACTIONS(5924), + [anon_sym_c_int] = ACTIONS(5924), + [anon_sym_c_uint] = ACTIONS(5924), + [anon_sym_c_long] = ACTIONS(5924), + [anon_sym_c_ulong] = ACTIONS(5924), + [anon_sym_c_longlong] = ACTIONS(5924), + [anon_sym_c_ulonglong] = ACTIONS(5924), + [anon_sym_c_float] = ACTIONS(5924), + [anon_sym_c_double] = ACTIONS(5924), + [anon_sym_c_longdouble] = ACTIONS(5924), + [anon_sym_PLUS_EQ] = ACTIONS(5922), + [anon_sym_DASH_EQ] = ACTIONS(5922), + [anon_sym_STAR_EQ] = ACTIONS(5922), + [anon_sym_SLASH_EQ] = ACTIONS(5922), + [anon_sym_AMP_EQ] = ACTIONS(5922), + [anon_sym_PIPE_EQ] = ACTIONS(5924), + [anon_sym_xor_EQ] = ACTIONS(5922), + [anon_sym_LT_LT_EQ] = ACTIONS(5922), + [anon_sym_GT_GT_EQ] = ACTIONS(5922), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5922), + [anon_sym_return] = ACTIONS(5924), + [anon_sym_yield] = ACTIONS(5924), + [anon_sym_break] = ACTIONS(5924), + [anon_sym_continue] = ACTIONS(5924), + [anon_sym_defer] = ACTIONS(5924), + [anon_sym_errdefer] = ACTIONS(5924), + [anon_sym_if] = ACTIONS(5924), + [anon_sym_else] = ACTIONS(5924), + [anon_sym_while] = ACTIONS(5924), + [anon_sym_expand] = ACTIONS(5924), + [anon_sym_for] = ACTIONS(5924), + [anon_sym_PIPE2] = ACTIONS(5922), + [anon_sym_match] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(5924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5922), + [anon_sym_orelse] = ACTIONS(5924), + [anon_sym_or] = ACTIONS(5924), + [anon_sym_and] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5922), + [anon_sym_BANG_EQ] = ACTIONS(5922), + [anon_sym_LT] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5922), + [anon_sym_GT] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5922), + [anon_sym_AMP] = ACTIONS(5924), + [anon_sym_xor] = ACTIONS(5924), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5924), + [anon_sym_LT_LT_PIPE] = ACTIONS(5924), + [anon_sym_PLUS] = ACTIONS(5924), + [anon_sym_SLASH] = ACTIONS(5924), + [anon_sym_catch] = ACTIONS(5924), + [anon_sym_TILDE] = ACTIONS(5922), + [anon_sym_try] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5922), + [anon_sym_true] = ACTIONS(5924), + [anon_sym_false] = ACTIONS(5924), + [anon_sym_null] = ACTIONS(5924), + [anon_sym_unreachable] = ACTIONS(5924), + [anon_sym_undefined] = ACTIONS(5924), + [sym_sink] = ACTIONS(5924), + [sym_integer] = ACTIONS(5924), + [sym_float] = ACTIONS(5922), + [anon_sym_DQUOTE] = ACTIONS(5922), + [sym_multiline_string] = ACTIONS(5922), + [sym_character] = ACTIONS(5922), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5922), + }, + [STATE(3477)] = { + [sym_identifier] = ACTIONS(5928), + [anon_sym_func] = ACTIONS(5928), + [anon_sym_BANG] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(5928), + [anon_sym_struct] = ACTIONS(5928), + [anon_sym_LPAREN] = ACTIONS(5926), + [anon_sym_LBRACE] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5928), + [anon_sym_DOLLAR] = ACTIONS(5926), + [anon_sym_PIPE] = ACTIONS(5928), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5926), + [anon_sym_void] = ACTIONS(5928), + [anon_sym_noreturn] = ACTIONS(5928), + [anon_sym_type] = ACTIONS(5928), + [anon_sym_anyopaque] = ACTIONS(5928), + [anon_sym_bool] = ACTIONS(5928), + [anon_sym_int] = ACTIONS(5928), + [anon_sym_uint] = ACTIONS(5928), + [anon_sym_float] = ACTIONS(5928), + [anon_sym_range] = ACTIONS(5928), + [anon_sym_i8] = ACTIONS(5928), + [anon_sym_i16] = ACTIONS(5928), + [anon_sym_i32] = ACTIONS(5928), + [anon_sym_i64] = ACTIONS(5928), + [anon_sym_u8] = ACTIONS(5928), + [anon_sym_u16] = ACTIONS(5928), + [anon_sym_u32] = ACTIONS(5928), + [anon_sym_u64] = ACTIONS(5928), + [anon_sym_isize] = ACTIONS(5928), + [anon_sym_usize] = ACTIONS(5928), + [anon_sym_f32] = ACTIONS(5928), + [anon_sym_f64] = ACTIONS(5928), + [anon_sym_c_char] = ACTIONS(5928), + [anon_sym_c_schar] = ACTIONS(5928), + [anon_sym_c_uchar] = ACTIONS(5928), + [anon_sym_c_short] = ACTIONS(5928), + [anon_sym_c_ushort] = ACTIONS(5928), + [anon_sym_c_int] = ACTIONS(5928), + [anon_sym_c_uint] = ACTIONS(5928), + [anon_sym_c_long] = ACTIONS(5928), + [anon_sym_c_ulong] = ACTIONS(5928), + [anon_sym_c_longlong] = ACTIONS(5928), + [anon_sym_c_ulonglong] = ACTIONS(5928), + [anon_sym_c_float] = ACTIONS(5928), + [anon_sym_c_double] = ACTIONS(5928), + [anon_sym_c_longdouble] = ACTIONS(5928), + [anon_sym_PLUS_EQ] = ACTIONS(5926), + [anon_sym_DASH_EQ] = ACTIONS(5926), + [anon_sym_STAR_EQ] = ACTIONS(5926), + [anon_sym_SLASH_EQ] = ACTIONS(5926), + [anon_sym_AMP_EQ] = ACTIONS(5926), + [anon_sym_PIPE_EQ] = ACTIONS(5928), + [anon_sym_xor_EQ] = ACTIONS(5926), + [anon_sym_LT_LT_EQ] = ACTIONS(5926), + [anon_sym_GT_GT_EQ] = ACTIONS(5926), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5926), + [anon_sym_return] = ACTIONS(5928), + [anon_sym_yield] = ACTIONS(5928), + [anon_sym_break] = ACTIONS(5928), + [anon_sym_continue] = ACTIONS(5928), + [anon_sym_defer] = ACTIONS(5928), + [anon_sym_errdefer] = ACTIONS(5928), + [anon_sym_if] = ACTIONS(5928), + [anon_sym_else] = ACTIONS(5928), + [anon_sym_while] = ACTIONS(5928), + [anon_sym_expand] = ACTIONS(5928), + [anon_sym_for] = ACTIONS(5928), + [anon_sym_PIPE2] = ACTIONS(5926), + [anon_sym_match] = ACTIONS(5928), + [anon_sym_DOT_DOT] = ACTIONS(5928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5926), + [anon_sym_orelse] = ACTIONS(5928), + [anon_sym_or] = ACTIONS(5928), + [anon_sym_and] = ACTIONS(5928), + [anon_sym_EQ_EQ] = ACTIONS(5926), + [anon_sym_BANG_EQ] = ACTIONS(5926), + [anon_sym_LT] = ACTIONS(5928), + [anon_sym_LT_EQ] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5928), + [anon_sym_GT_EQ] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5928), + [anon_sym_xor] = ACTIONS(5928), + [anon_sym_LT_LT] = ACTIONS(5928), + [anon_sym_GT_GT] = ACTIONS(5928), + [anon_sym_LT_LT_PIPE] = ACTIONS(5928), + [anon_sym_PLUS] = ACTIONS(5928), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_catch] = ACTIONS(5928), + [anon_sym_TILDE] = ACTIONS(5926), + [anon_sym_try] = ACTIONS(5928), + [anon_sym_DOT] = ACTIONS(5928), + [anon_sym_CARET] = ACTIONS(5926), + [anon_sym_true] = ACTIONS(5928), + [anon_sym_false] = ACTIONS(5928), + [anon_sym_null] = ACTIONS(5928), + [anon_sym_unreachable] = ACTIONS(5928), + [anon_sym_undefined] = ACTIONS(5928), + [sym_sink] = ACTIONS(5928), + [sym_integer] = ACTIONS(5928), + [sym_float] = ACTIONS(5926), + [anon_sym_DQUOTE] = ACTIONS(5926), + [sym_multiline_string] = ACTIONS(5926), + [sym_character] = ACTIONS(5926), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5926), + }, + [STATE(3478)] = { + [sym_identifier] = ACTIONS(6074), + [anon_sym_func] = ACTIONS(6074), + [anon_sym_BANG] = ACTIONS(6074), + [anon_sym_EQ] = ACTIONS(6074), + [anon_sym_struct] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6072), + [anon_sym_LBRACE] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_DOLLAR] = ACTIONS(6072), + [anon_sym_PIPE] = ACTIONS(6074), + [anon_sym_QMARK] = ACTIONS(6072), + [anon_sym_STAR] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6072), + [anon_sym_void] = ACTIONS(6074), + [anon_sym_noreturn] = ACTIONS(6074), + [anon_sym_type] = ACTIONS(6074), + [anon_sym_anyopaque] = ACTIONS(6074), + [anon_sym_bool] = ACTIONS(6074), + [anon_sym_int] = ACTIONS(6074), + [anon_sym_uint] = ACTIONS(6074), + [anon_sym_float] = ACTIONS(6074), + [anon_sym_range] = ACTIONS(6074), + [anon_sym_i8] = ACTIONS(6074), + [anon_sym_i16] = ACTIONS(6074), + [anon_sym_i32] = ACTIONS(6074), + [anon_sym_i64] = ACTIONS(6074), + [anon_sym_u8] = ACTIONS(6074), + [anon_sym_u16] = ACTIONS(6074), + [anon_sym_u32] = ACTIONS(6074), + [anon_sym_u64] = ACTIONS(6074), + [anon_sym_isize] = ACTIONS(6074), + [anon_sym_usize] = ACTIONS(6074), + [anon_sym_f32] = ACTIONS(6074), + [anon_sym_f64] = ACTIONS(6074), + [anon_sym_c_char] = ACTIONS(6074), + [anon_sym_c_schar] = ACTIONS(6074), + [anon_sym_c_uchar] = ACTIONS(6074), + [anon_sym_c_short] = ACTIONS(6074), + [anon_sym_c_ushort] = ACTIONS(6074), + [anon_sym_c_int] = ACTIONS(6074), + [anon_sym_c_uint] = ACTIONS(6074), + [anon_sym_c_long] = ACTIONS(6074), + [anon_sym_c_ulong] = ACTIONS(6074), + [anon_sym_c_longlong] = ACTIONS(6074), + [anon_sym_c_ulonglong] = ACTIONS(6074), + [anon_sym_c_float] = ACTIONS(6074), + [anon_sym_c_double] = ACTIONS(6074), + [anon_sym_c_longdouble] = ACTIONS(6074), + [anon_sym_PLUS_EQ] = ACTIONS(6072), + [anon_sym_DASH_EQ] = ACTIONS(6072), + [anon_sym_STAR_EQ] = ACTIONS(6072), + [anon_sym_SLASH_EQ] = ACTIONS(6072), + [anon_sym_AMP_EQ] = ACTIONS(6072), + [anon_sym_PIPE_EQ] = ACTIONS(6074), + [anon_sym_xor_EQ] = ACTIONS(6072), + [anon_sym_LT_LT_EQ] = ACTIONS(6072), + [anon_sym_GT_GT_EQ] = ACTIONS(6072), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6072), + [anon_sym_return] = ACTIONS(6074), + [anon_sym_yield] = ACTIONS(6074), + [anon_sym_break] = ACTIONS(6074), + [anon_sym_continue] = ACTIONS(6074), + [anon_sym_defer] = ACTIONS(6074), + [anon_sym_errdefer] = ACTIONS(6074), + [anon_sym_if] = ACTIONS(6074), + [anon_sym_else] = ACTIONS(6074), + [anon_sym_while] = ACTIONS(6074), + [anon_sym_expand] = ACTIONS(6074), + [anon_sym_for] = ACTIONS(6074), + [anon_sym_PIPE2] = ACTIONS(6072), + [anon_sym_match] = ACTIONS(6074), + [anon_sym_DOT_DOT] = ACTIONS(6074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6072), + [anon_sym_orelse] = ACTIONS(6074), + [anon_sym_or] = ACTIONS(6074), + [anon_sym_and] = ACTIONS(6074), + [anon_sym_EQ_EQ] = ACTIONS(6072), + [anon_sym_BANG_EQ] = ACTIONS(6072), + [anon_sym_LT] = ACTIONS(6074), + [anon_sym_LT_EQ] = ACTIONS(6072), + [anon_sym_GT] = ACTIONS(6074), + [anon_sym_GT_EQ] = ACTIONS(6072), + [anon_sym_AMP] = ACTIONS(6074), + [anon_sym_xor] = ACTIONS(6074), + [anon_sym_LT_LT] = ACTIONS(6074), + [anon_sym_GT_GT] = ACTIONS(6074), + [anon_sym_LT_LT_PIPE] = ACTIONS(6074), + [anon_sym_PLUS] = ACTIONS(6074), + [anon_sym_SLASH] = ACTIONS(6074), + [anon_sym_catch] = ACTIONS(6074), + [anon_sym_TILDE] = ACTIONS(6072), + [anon_sym_try] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6074), + [anon_sym_CARET] = ACTIONS(6072), + [anon_sym_true] = ACTIONS(6074), + [anon_sym_false] = ACTIONS(6074), + [anon_sym_null] = ACTIONS(6074), + [anon_sym_unreachable] = ACTIONS(6074), + [anon_sym_undefined] = ACTIONS(6074), + [sym_sink] = ACTIONS(6074), + [sym_integer] = ACTIONS(6074), + [sym_float] = ACTIONS(6072), + [anon_sym_DQUOTE] = ACTIONS(6072), + [sym_multiline_string] = ACTIONS(6072), + [sym_character] = ACTIONS(6072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6072), + }, + [STATE(3479)] = { + [sym_identifier] = ACTIONS(6078), + [anon_sym_func] = ACTIONS(6078), + [anon_sym_BANG] = ACTIONS(6078), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_struct] = ACTIONS(6078), + [anon_sym_LPAREN] = ACTIONS(6076), + [anon_sym_LBRACE] = ACTIONS(6076), + [anon_sym_DASH] = ACTIONS(6078), + [anon_sym_DOLLAR] = ACTIONS(6076), + [anon_sym_PIPE] = ACTIONS(6078), + [anon_sym_QMARK] = ACTIONS(6076), + [anon_sym_STAR] = ACTIONS(6078), + [anon_sym_LBRACK] = ACTIONS(6076), + [anon_sym_void] = ACTIONS(6078), + [anon_sym_noreturn] = ACTIONS(6078), + [anon_sym_type] = ACTIONS(6078), + [anon_sym_anyopaque] = ACTIONS(6078), + [anon_sym_bool] = ACTIONS(6078), + [anon_sym_int] = ACTIONS(6078), + [anon_sym_uint] = ACTIONS(6078), + [anon_sym_float] = ACTIONS(6078), + [anon_sym_range] = ACTIONS(6078), + [anon_sym_i8] = ACTIONS(6078), + [anon_sym_i16] = ACTIONS(6078), + [anon_sym_i32] = ACTIONS(6078), + [anon_sym_i64] = ACTIONS(6078), + [anon_sym_u8] = ACTIONS(6078), + [anon_sym_u16] = ACTIONS(6078), + [anon_sym_u32] = ACTIONS(6078), + [anon_sym_u64] = ACTIONS(6078), + [anon_sym_isize] = ACTIONS(6078), + [anon_sym_usize] = ACTIONS(6078), + [anon_sym_f32] = ACTIONS(6078), + [anon_sym_f64] = ACTIONS(6078), + [anon_sym_c_char] = ACTIONS(6078), + [anon_sym_c_schar] = ACTIONS(6078), + [anon_sym_c_uchar] = ACTIONS(6078), + [anon_sym_c_short] = ACTIONS(6078), + [anon_sym_c_ushort] = ACTIONS(6078), + [anon_sym_c_int] = ACTIONS(6078), + [anon_sym_c_uint] = ACTIONS(6078), + [anon_sym_c_long] = ACTIONS(6078), + [anon_sym_c_ulong] = ACTIONS(6078), + [anon_sym_c_longlong] = ACTIONS(6078), + [anon_sym_c_ulonglong] = ACTIONS(6078), + [anon_sym_c_float] = ACTIONS(6078), + [anon_sym_c_double] = ACTIONS(6078), + [anon_sym_c_longdouble] = ACTIONS(6078), + [anon_sym_PLUS_EQ] = ACTIONS(6076), + [anon_sym_DASH_EQ] = ACTIONS(6076), + [anon_sym_STAR_EQ] = ACTIONS(6076), + [anon_sym_SLASH_EQ] = ACTIONS(6076), + [anon_sym_AMP_EQ] = ACTIONS(6076), + [anon_sym_PIPE_EQ] = ACTIONS(6078), + [anon_sym_xor_EQ] = ACTIONS(6076), + [anon_sym_LT_LT_EQ] = ACTIONS(6076), + [anon_sym_GT_GT_EQ] = ACTIONS(6076), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6076), + [anon_sym_return] = ACTIONS(6078), + [anon_sym_yield] = ACTIONS(6078), + [anon_sym_break] = ACTIONS(6078), + [anon_sym_continue] = ACTIONS(6078), + [anon_sym_defer] = ACTIONS(6078), + [anon_sym_errdefer] = ACTIONS(6078), + [anon_sym_if] = ACTIONS(6078), + [anon_sym_else] = ACTIONS(6078), + [anon_sym_while] = ACTIONS(6078), + [anon_sym_expand] = ACTIONS(6078), + [anon_sym_for] = ACTIONS(6078), + [anon_sym_PIPE2] = ACTIONS(6076), + [anon_sym_match] = ACTIONS(6078), + [anon_sym_DOT_DOT] = ACTIONS(6078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6076), + [anon_sym_orelse] = ACTIONS(6078), + [anon_sym_or] = ACTIONS(6078), + [anon_sym_and] = ACTIONS(6078), + [anon_sym_EQ_EQ] = ACTIONS(6076), + [anon_sym_BANG_EQ] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(6078), + [anon_sym_LT_EQ] = ACTIONS(6076), + [anon_sym_GT] = ACTIONS(6078), + [anon_sym_GT_EQ] = ACTIONS(6076), + [anon_sym_AMP] = ACTIONS(6078), + [anon_sym_xor] = ACTIONS(6078), + [anon_sym_LT_LT] = ACTIONS(6078), + [anon_sym_GT_GT] = ACTIONS(6078), + [anon_sym_LT_LT_PIPE] = ACTIONS(6078), + [anon_sym_PLUS] = ACTIONS(6078), + [anon_sym_SLASH] = ACTIONS(6078), + [anon_sym_catch] = ACTIONS(6078), + [anon_sym_TILDE] = ACTIONS(6076), + [anon_sym_try] = ACTIONS(6078), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_CARET] = ACTIONS(6076), + [anon_sym_true] = ACTIONS(6078), + [anon_sym_false] = ACTIONS(6078), + [anon_sym_null] = ACTIONS(6078), + [anon_sym_unreachable] = ACTIONS(6078), + [anon_sym_undefined] = ACTIONS(6078), + [sym_sink] = ACTIONS(6078), + [sym_integer] = ACTIONS(6078), + [sym_float] = ACTIONS(6076), + [anon_sym_DQUOTE] = ACTIONS(6076), + [sym_multiline_string] = ACTIONS(6076), + [sym_character] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6076), + }, + [STATE(3480)] = { + [sym_identifier] = ACTIONS(6082), + [anon_sym_func] = ACTIONS(6082), + [anon_sym_BANG] = ACTIONS(6082), + [anon_sym_EQ] = ACTIONS(6082), + [anon_sym_struct] = ACTIONS(6082), + [anon_sym_LPAREN] = ACTIONS(6080), + [anon_sym_LBRACE] = ACTIONS(6080), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_DOLLAR] = ACTIONS(6080), + [anon_sym_PIPE] = ACTIONS(6082), + [anon_sym_QMARK] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6080), + [anon_sym_void] = ACTIONS(6082), + [anon_sym_noreturn] = ACTIONS(6082), + [anon_sym_type] = ACTIONS(6082), + [anon_sym_anyopaque] = ACTIONS(6082), + [anon_sym_bool] = ACTIONS(6082), + [anon_sym_int] = ACTIONS(6082), + [anon_sym_uint] = ACTIONS(6082), + [anon_sym_float] = ACTIONS(6082), + [anon_sym_range] = ACTIONS(6082), + [anon_sym_i8] = ACTIONS(6082), + [anon_sym_i16] = ACTIONS(6082), + [anon_sym_i32] = ACTIONS(6082), + [anon_sym_i64] = ACTIONS(6082), + [anon_sym_u8] = ACTIONS(6082), + [anon_sym_u16] = ACTIONS(6082), + [anon_sym_u32] = ACTIONS(6082), + [anon_sym_u64] = ACTIONS(6082), + [anon_sym_isize] = ACTIONS(6082), + [anon_sym_usize] = ACTIONS(6082), + [anon_sym_f32] = ACTIONS(6082), + [anon_sym_f64] = ACTIONS(6082), + [anon_sym_c_char] = ACTIONS(6082), + [anon_sym_c_schar] = ACTIONS(6082), + [anon_sym_c_uchar] = ACTIONS(6082), + [anon_sym_c_short] = ACTIONS(6082), + [anon_sym_c_ushort] = ACTIONS(6082), + [anon_sym_c_int] = ACTIONS(6082), + [anon_sym_c_uint] = ACTIONS(6082), + [anon_sym_c_long] = ACTIONS(6082), + [anon_sym_c_ulong] = ACTIONS(6082), + [anon_sym_c_longlong] = ACTIONS(6082), + [anon_sym_c_ulonglong] = ACTIONS(6082), + [anon_sym_c_float] = ACTIONS(6082), + [anon_sym_c_double] = ACTIONS(6082), + [anon_sym_c_longdouble] = ACTIONS(6082), + [anon_sym_PLUS_EQ] = ACTIONS(6080), + [anon_sym_DASH_EQ] = ACTIONS(6080), + [anon_sym_STAR_EQ] = ACTIONS(6080), + [anon_sym_SLASH_EQ] = ACTIONS(6080), + [anon_sym_AMP_EQ] = ACTIONS(6080), + [anon_sym_PIPE_EQ] = ACTIONS(6082), + [anon_sym_xor_EQ] = ACTIONS(6080), + [anon_sym_LT_LT_EQ] = ACTIONS(6080), + [anon_sym_GT_GT_EQ] = ACTIONS(6080), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6080), + [anon_sym_return] = ACTIONS(6082), + [anon_sym_yield] = ACTIONS(6082), + [anon_sym_break] = ACTIONS(6082), + [anon_sym_continue] = ACTIONS(6082), + [anon_sym_defer] = ACTIONS(6082), + [anon_sym_errdefer] = ACTIONS(6082), + [anon_sym_if] = ACTIONS(6082), + [anon_sym_else] = ACTIONS(6082), + [anon_sym_while] = ACTIONS(6082), + [anon_sym_expand] = ACTIONS(6082), + [anon_sym_for] = ACTIONS(6082), + [anon_sym_PIPE2] = ACTIONS(6080), + [anon_sym_match] = ACTIONS(6082), + [anon_sym_DOT_DOT] = ACTIONS(6082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6080), + [anon_sym_orelse] = ACTIONS(6082), + [anon_sym_or] = ACTIONS(6082), + [anon_sym_and] = ACTIONS(6082), + [anon_sym_EQ_EQ] = ACTIONS(6080), + [anon_sym_BANG_EQ] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(6082), + [anon_sym_LT_EQ] = ACTIONS(6080), + [anon_sym_GT] = ACTIONS(6082), + [anon_sym_GT_EQ] = ACTIONS(6080), + [anon_sym_AMP] = ACTIONS(6082), + [anon_sym_xor] = ACTIONS(6082), + [anon_sym_LT_LT] = ACTIONS(6082), + [anon_sym_GT_GT] = ACTIONS(6082), + [anon_sym_LT_LT_PIPE] = ACTIONS(6082), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_SLASH] = ACTIONS(6082), + [anon_sym_catch] = ACTIONS(6082), + [anon_sym_TILDE] = ACTIONS(6080), + [anon_sym_try] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6082), + [anon_sym_CARET] = ACTIONS(6080), + [anon_sym_true] = ACTIONS(6082), + [anon_sym_false] = ACTIONS(6082), + [anon_sym_null] = ACTIONS(6082), + [anon_sym_unreachable] = ACTIONS(6082), + [anon_sym_undefined] = ACTIONS(6082), + [sym_sink] = ACTIONS(6082), + [sym_integer] = ACTIONS(6082), + [sym_float] = ACTIONS(6080), + [anon_sym_DQUOTE] = ACTIONS(6080), + [sym_multiline_string] = ACTIONS(6080), + [sym_character] = ACTIONS(6080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6080), + }, + [STATE(3481)] = { + [sym_identifier] = ACTIONS(6086), + [anon_sym_func] = ACTIONS(6086), + [anon_sym_BANG] = ACTIONS(6086), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_struct] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6084), + [anon_sym_LBRACE] = ACTIONS(6084), + [anon_sym_DASH] = ACTIONS(6086), + [anon_sym_DOLLAR] = ACTIONS(6084), + [anon_sym_PIPE] = ACTIONS(6086), + [anon_sym_QMARK] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(6086), + [anon_sym_LBRACK] = ACTIONS(6084), + [anon_sym_void] = ACTIONS(6086), + [anon_sym_noreturn] = ACTIONS(6086), + [anon_sym_type] = ACTIONS(6086), + [anon_sym_anyopaque] = ACTIONS(6086), + [anon_sym_bool] = ACTIONS(6086), + [anon_sym_int] = ACTIONS(6086), + [anon_sym_uint] = ACTIONS(6086), + [anon_sym_float] = ACTIONS(6086), + [anon_sym_range] = ACTIONS(6086), + [anon_sym_i8] = ACTIONS(6086), + [anon_sym_i16] = ACTIONS(6086), + [anon_sym_i32] = ACTIONS(6086), + [anon_sym_i64] = ACTIONS(6086), + [anon_sym_u8] = ACTIONS(6086), + [anon_sym_u16] = ACTIONS(6086), + [anon_sym_u32] = ACTIONS(6086), + [anon_sym_u64] = ACTIONS(6086), + [anon_sym_isize] = ACTIONS(6086), + [anon_sym_usize] = ACTIONS(6086), + [anon_sym_f32] = ACTIONS(6086), + [anon_sym_f64] = ACTIONS(6086), + [anon_sym_c_char] = ACTIONS(6086), + [anon_sym_c_schar] = ACTIONS(6086), + [anon_sym_c_uchar] = ACTIONS(6086), + [anon_sym_c_short] = ACTIONS(6086), + [anon_sym_c_ushort] = ACTIONS(6086), + [anon_sym_c_int] = ACTIONS(6086), + [anon_sym_c_uint] = ACTIONS(6086), + [anon_sym_c_long] = ACTIONS(6086), + [anon_sym_c_ulong] = ACTIONS(6086), + [anon_sym_c_longlong] = ACTIONS(6086), + [anon_sym_c_ulonglong] = ACTIONS(6086), + [anon_sym_c_float] = ACTIONS(6086), + [anon_sym_c_double] = ACTIONS(6086), + [anon_sym_c_longdouble] = ACTIONS(6086), + [anon_sym_PLUS_EQ] = ACTIONS(6084), + [anon_sym_DASH_EQ] = ACTIONS(6084), + [anon_sym_STAR_EQ] = ACTIONS(6084), + [anon_sym_SLASH_EQ] = ACTIONS(6084), + [anon_sym_AMP_EQ] = ACTIONS(6084), + [anon_sym_PIPE_EQ] = ACTIONS(6086), + [anon_sym_xor_EQ] = ACTIONS(6084), + [anon_sym_LT_LT_EQ] = ACTIONS(6084), + [anon_sym_GT_GT_EQ] = ACTIONS(6084), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6084), + [anon_sym_return] = ACTIONS(6086), + [anon_sym_yield] = ACTIONS(6086), + [anon_sym_break] = ACTIONS(6086), + [anon_sym_continue] = ACTIONS(6086), + [anon_sym_defer] = ACTIONS(6086), + [anon_sym_errdefer] = ACTIONS(6086), + [anon_sym_if] = ACTIONS(6086), + [anon_sym_else] = ACTIONS(6086), + [anon_sym_while] = ACTIONS(6086), + [anon_sym_expand] = ACTIONS(6086), + [anon_sym_for] = ACTIONS(6086), + [anon_sym_PIPE2] = ACTIONS(6084), + [anon_sym_match] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6084), + [anon_sym_orelse] = ACTIONS(6086), + [anon_sym_or] = ACTIONS(6086), + [anon_sym_and] = ACTIONS(6086), + [anon_sym_EQ_EQ] = ACTIONS(6084), + [anon_sym_BANG_EQ] = ACTIONS(6084), + [anon_sym_LT] = ACTIONS(6086), + [anon_sym_LT_EQ] = ACTIONS(6084), + [anon_sym_GT] = ACTIONS(6086), + [anon_sym_GT_EQ] = ACTIONS(6084), + [anon_sym_AMP] = ACTIONS(6086), + [anon_sym_xor] = ACTIONS(6086), + [anon_sym_LT_LT] = ACTIONS(6086), + [anon_sym_GT_GT] = ACTIONS(6086), + [anon_sym_LT_LT_PIPE] = ACTIONS(6086), + [anon_sym_PLUS] = ACTIONS(6086), + [anon_sym_SLASH] = ACTIONS(6086), + [anon_sym_catch] = ACTIONS(6086), + [anon_sym_TILDE] = ACTIONS(6084), + [anon_sym_try] = ACTIONS(6086), + [anon_sym_DOT] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6084), + [anon_sym_true] = ACTIONS(6086), + [anon_sym_false] = ACTIONS(6086), + [anon_sym_null] = ACTIONS(6086), + [anon_sym_unreachable] = ACTIONS(6086), + [anon_sym_undefined] = ACTIONS(6086), + [sym_sink] = ACTIONS(6086), + [sym_integer] = ACTIONS(6086), + [sym_float] = ACTIONS(6084), + [anon_sym_DQUOTE] = ACTIONS(6084), + [sym_multiline_string] = ACTIONS(6084), + [sym_character] = ACTIONS(6084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6084), + }, + [STATE(3482)] = { + [sym_identifier] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1331), + [anon_sym_DASH_EQ] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1331), + [anon_sym_SLASH_EQ] = ACTIONS(1331), + [anon_sym_AMP_EQ] = ACTIONS(1331), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [anon_sym_xor_EQ] = ACTIONS(1331), + [anon_sym_LT_LT_EQ] = ACTIONS(1331), + [anon_sym_GT_GT_EQ] = ACTIONS(1331), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_PIPE2] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_LT_LT_PIPE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1331), + }, + [STATE(3483)] = { + [sym_identifier] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1258), + [anon_sym_DASH_EQ] = ACTIONS(1258), + [anon_sym_STAR_EQ] = ACTIONS(1258), + [anon_sym_SLASH_EQ] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_PIPE_EQ] = ACTIONS(1254), + [anon_sym_xor_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_PIPE2] = ACTIONS(1258), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_LT_LT_PIPE] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1258), + }, + [STATE(3484)] = { + [sym_identifier] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_DOLLAR] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2726), + [anon_sym_xor_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_defer] = ACTIONS(2726), + [anon_sym_errdefer] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_expand] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_PIPE2] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(2726), + [anon_sym_and] = ACTIONS(2726), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2726), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_xor] = ACTIONS(2726), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2726), + [anon_sym_LT_LT_PIPE] = ACTIONS(2726), + [anon_sym_PLUS] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2726), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2726), + [anon_sym_unreachable] = ACTIONS(2726), + [anon_sym_undefined] = ACTIONS(2726), + [sym_sink] = ACTIONS(2726), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [sym_multiline_string] = ACTIONS(2724), + [sym_character] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(3485)] = { + [sym_identifier] = ACTIONS(6114), + [anon_sym_func] = ACTIONS(6114), + [anon_sym_BANG] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(6114), + [anon_sym_struct] = ACTIONS(6114), + [anon_sym_LPAREN] = ACTIONS(6112), + [anon_sym_LBRACE] = ACTIONS(6112), + [anon_sym_DASH] = ACTIONS(6114), + [anon_sym_DOLLAR] = ACTIONS(6112), + [anon_sym_PIPE] = ACTIONS(6114), + [anon_sym_QMARK] = ACTIONS(6112), + [anon_sym_STAR] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(6112), + [anon_sym_void] = ACTIONS(6114), + [anon_sym_noreturn] = ACTIONS(6114), + [anon_sym_type] = ACTIONS(6114), + [anon_sym_anyopaque] = ACTIONS(6114), + [anon_sym_bool] = ACTIONS(6114), + [anon_sym_int] = ACTIONS(6114), + [anon_sym_uint] = ACTIONS(6114), + [anon_sym_float] = ACTIONS(6114), + [anon_sym_range] = ACTIONS(6114), + [anon_sym_i8] = ACTIONS(6114), + [anon_sym_i16] = ACTIONS(6114), + [anon_sym_i32] = ACTIONS(6114), + [anon_sym_i64] = ACTIONS(6114), + [anon_sym_u8] = ACTIONS(6114), + [anon_sym_u16] = ACTIONS(6114), + [anon_sym_u32] = ACTIONS(6114), + [anon_sym_u64] = ACTIONS(6114), + [anon_sym_isize] = ACTIONS(6114), + [anon_sym_usize] = ACTIONS(6114), + [anon_sym_f32] = ACTIONS(6114), + [anon_sym_f64] = ACTIONS(6114), + [anon_sym_c_char] = ACTIONS(6114), + [anon_sym_c_schar] = ACTIONS(6114), + [anon_sym_c_uchar] = ACTIONS(6114), + [anon_sym_c_short] = ACTIONS(6114), + [anon_sym_c_ushort] = ACTIONS(6114), + [anon_sym_c_int] = ACTIONS(6114), + [anon_sym_c_uint] = ACTIONS(6114), + [anon_sym_c_long] = ACTIONS(6114), + [anon_sym_c_ulong] = ACTIONS(6114), + [anon_sym_c_longlong] = ACTIONS(6114), + [anon_sym_c_ulonglong] = ACTIONS(6114), + [anon_sym_c_float] = ACTIONS(6114), + [anon_sym_c_double] = ACTIONS(6114), + [anon_sym_c_longdouble] = ACTIONS(6114), + [anon_sym_PLUS_EQ] = ACTIONS(6112), + [anon_sym_DASH_EQ] = ACTIONS(6112), + [anon_sym_STAR_EQ] = ACTIONS(6112), + [anon_sym_SLASH_EQ] = ACTIONS(6112), + [anon_sym_AMP_EQ] = ACTIONS(6112), + [anon_sym_PIPE_EQ] = ACTIONS(6114), + [anon_sym_xor_EQ] = ACTIONS(6112), + [anon_sym_LT_LT_EQ] = ACTIONS(6112), + [anon_sym_GT_GT_EQ] = ACTIONS(6112), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6112), + [anon_sym_return] = ACTIONS(6114), + [anon_sym_yield] = ACTIONS(6114), + [anon_sym_break] = ACTIONS(6114), + [anon_sym_continue] = ACTIONS(6114), + [anon_sym_defer] = ACTIONS(6114), + [anon_sym_errdefer] = ACTIONS(6114), + [anon_sym_if] = ACTIONS(6114), + [anon_sym_else] = ACTIONS(6114), + [anon_sym_while] = ACTIONS(6114), + [anon_sym_expand] = ACTIONS(6114), + [anon_sym_for] = ACTIONS(6114), + [anon_sym_PIPE2] = ACTIONS(6112), + [anon_sym_match] = ACTIONS(6114), + [anon_sym_DOT_DOT] = ACTIONS(6114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6112), + [anon_sym_orelse] = ACTIONS(6114), + [anon_sym_or] = ACTIONS(6114), + [anon_sym_and] = ACTIONS(6114), + [anon_sym_EQ_EQ] = ACTIONS(6112), + [anon_sym_BANG_EQ] = ACTIONS(6112), + [anon_sym_LT] = ACTIONS(6114), + [anon_sym_LT_EQ] = ACTIONS(6112), + [anon_sym_GT] = ACTIONS(6114), + [anon_sym_GT_EQ] = ACTIONS(6112), + [anon_sym_AMP] = ACTIONS(6114), + [anon_sym_xor] = ACTIONS(6114), + [anon_sym_LT_LT] = ACTIONS(6114), + [anon_sym_GT_GT] = ACTIONS(6114), + [anon_sym_LT_LT_PIPE] = ACTIONS(6114), + [anon_sym_PLUS] = ACTIONS(6114), + [anon_sym_SLASH] = ACTIONS(6114), + [anon_sym_catch] = ACTIONS(6114), + [anon_sym_TILDE] = ACTIONS(6112), + [anon_sym_try] = ACTIONS(6114), + [anon_sym_DOT] = ACTIONS(6114), + [anon_sym_CARET] = ACTIONS(6112), + [anon_sym_true] = ACTIONS(6114), + [anon_sym_false] = ACTIONS(6114), + [anon_sym_null] = ACTIONS(6114), + [anon_sym_unreachable] = ACTIONS(6114), + [anon_sym_undefined] = ACTIONS(6114), + [sym_sink] = ACTIONS(6114), + [sym_integer] = ACTIONS(6114), + [sym_float] = ACTIONS(6112), + [anon_sym_DQUOTE] = ACTIONS(6112), + [sym_multiline_string] = ACTIONS(6112), + [sym_character] = ACTIONS(6112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6112), + }, + [STATE(3486)] = { + [sym_identifier] = ACTIONS(5932), + [anon_sym_func] = ACTIONS(5932), + [anon_sym_BANG] = ACTIONS(5932), + [anon_sym_EQ] = ACTIONS(5932), + [anon_sym_struct] = ACTIONS(5932), + [anon_sym_LPAREN] = ACTIONS(5930), + [anon_sym_LBRACE] = ACTIONS(5930), + [anon_sym_DASH] = ACTIONS(5932), + [anon_sym_DOLLAR] = ACTIONS(5930), + [anon_sym_PIPE] = ACTIONS(5932), + [anon_sym_QMARK] = ACTIONS(5930), + [anon_sym_STAR] = ACTIONS(5932), + [anon_sym_LBRACK] = ACTIONS(5930), + [anon_sym_void] = ACTIONS(5932), + [anon_sym_noreturn] = ACTIONS(5932), + [anon_sym_type] = ACTIONS(5932), + [anon_sym_anyopaque] = ACTIONS(5932), + [anon_sym_bool] = ACTIONS(5932), + [anon_sym_int] = ACTIONS(5932), + [anon_sym_uint] = ACTIONS(5932), + [anon_sym_float] = ACTIONS(5932), + [anon_sym_range] = ACTIONS(5932), + [anon_sym_i8] = ACTIONS(5932), + [anon_sym_i16] = ACTIONS(5932), + [anon_sym_i32] = ACTIONS(5932), + [anon_sym_i64] = ACTIONS(5932), + [anon_sym_u8] = ACTIONS(5932), + [anon_sym_u16] = ACTIONS(5932), + [anon_sym_u32] = ACTIONS(5932), + [anon_sym_u64] = ACTIONS(5932), + [anon_sym_isize] = ACTIONS(5932), + [anon_sym_usize] = ACTIONS(5932), + [anon_sym_f32] = ACTIONS(5932), + [anon_sym_f64] = ACTIONS(5932), + [anon_sym_c_char] = ACTIONS(5932), + [anon_sym_c_schar] = ACTIONS(5932), + [anon_sym_c_uchar] = ACTIONS(5932), + [anon_sym_c_short] = ACTIONS(5932), + [anon_sym_c_ushort] = ACTIONS(5932), + [anon_sym_c_int] = ACTIONS(5932), + [anon_sym_c_uint] = ACTIONS(5932), + [anon_sym_c_long] = ACTIONS(5932), + [anon_sym_c_ulong] = ACTIONS(5932), + [anon_sym_c_longlong] = ACTIONS(5932), + [anon_sym_c_ulonglong] = ACTIONS(5932), + [anon_sym_c_float] = ACTIONS(5932), + [anon_sym_c_double] = ACTIONS(5932), + [anon_sym_c_longdouble] = ACTIONS(5932), + [anon_sym_PLUS_EQ] = ACTIONS(5930), + [anon_sym_DASH_EQ] = ACTIONS(5930), + [anon_sym_STAR_EQ] = ACTIONS(5930), + [anon_sym_SLASH_EQ] = ACTIONS(5930), + [anon_sym_AMP_EQ] = ACTIONS(5930), + [anon_sym_PIPE_EQ] = ACTIONS(5932), + [anon_sym_xor_EQ] = ACTIONS(5930), + [anon_sym_LT_LT_EQ] = ACTIONS(5930), + [anon_sym_GT_GT_EQ] = ACTIONS(5930), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5930), + [anon_sym_return] = ACTIONS(5932), + [anon_sym_yield] = ACTIONS(5932), + [anon_sym_break] = ACTIONS(5932), + [anon_sym_continue] = ACTIONS(5932), + [anon_sym_defer] = ACTIONS(5932), + [anon_sym_errdefer] = ACTIONS(5932), + [anon_sym_if] = ACTIONS(5932), + [anon_sym_else] = ACTIONS(5932), + [anon_sym_while] = ACTIONS(5932), + [anon_sym_expand] = ACTIONS(5932), + [anon_sym_for] = ACTIONS(5932), + [anon_sym_PIPE2] = ACTIONS(5930), + [anon_sym_match] = ACTIONS(5932), + [anon_sym_DOT_DOT] = ACTIONS(5932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5930), + [anon_sym_orelse] = ACTIONS(5932), + [anon_sym_or] = ACTIONS(5932), + [anon_sym_and] = ACTIONS(5932), + [anon_sym_EQ_EQ] = ACTIONS(5930), + [anon_sym_BANG_EQ] = ACTIONS(5930), + [anon_sym_LT] = ACTIONS(5932), + [anon_sym_LT_EQ] = ACTIONS(5930), + [anon_sym_GT] = ACTIONS(5932), + [anon_sym_GT_EQ] = ACTIONS(5930), + [anon_sym_AMP] = ACTIONS(5932), + [anon_sym_xor] = ACTIONS(5932), + [anon_sym_LT_LT] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5932), + [anon_sym_LT_LT_PIPE] = ACTIONS(5932), + [anon_sym_PLUS] = ACTIONS(5932), + [anon_sym_SLASH] = ACTIONS(5932), + [anon_sym_catch] = ACTIONS(5932), + [anon_sym_TILDE] = ACTIONS(5930), + [anon_sym_try] = ACTIONS(5932), + [anon_sym_DOT] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5930), + [anon_sym_true] = ACTIONS(5932), + [anon_sym_false] = ACTIONS(5932), + [anon_sym_null] = ACTIONS(5932), + [anon_sym_unreachable] = ACTIONS(5932), + [anon_sym_undefined] = ACTIONS(5932), + [sym_sink] = ACTIONS(5932), + [sym_integer] = ACTIONS(5932), + [sym_float] = ACTIONS(5930), + [anon_sym_DQUOTE] = ACTIONS(5930), + [sym_multiline_string] = ACTIONS(5930), + [sym_character] = ACTIONS(5930), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5930), + }, + [STATE(3487)] = { + [sym_identifier] = ACTIONS(5936), + [anon_sym_func] = ACTIONS(5936), + [anon_sym_BANG] = ACTIONS(5936), + [anon_sym_EQ] = ACTIONS(5936), + [anon_sym_struct] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5934), + [anon_sym_LBRACE] = ACTIONS(5934), + [anon_sym_DASH] = ACTIONS(5936), + [anon_sym_DOLLAR] = ACTIONS(5934), + [anon_sym_PIPE] = ACTIONS(5936), + [anon_sym_QMARK] = ACTIONS(5934), + [anon_sym_STAR] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5934), + [anon_sym_void] = ACTIONS(5936), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_type] = ACTIONS(5936), + [anon_sym_anyopaque] = ACTIONS(5936), + [anon_sym_bool] = ACTIONS(5936), + [anon_sym_int] = ACTIONS(5936), + [anon_sym_uint] = ACTIONS(5936), + [anon_sym_float] = ACTIONS(5936), + [anon_sym_range] = ACTIONS(5936), + [anon_sym_i8] = ACTIONS(5936), + [anon_sym_i16] = ACTIONS(5936), + [anon_sym_i32] = ACTIONS(5936), + [anon_sym_i64] = ACTIONS(5936), + [anon_sym_u8] = ACTIONS(5936), + [anon_sym_u16] = ACTIONS(5936), + [anon_sym_u32] = ACTIONS(5936), + [anon_sym_u64] = ACTIONS(5936), + [anon_sym_isize] = ACTIONS(5936), + [anon_sym_usize] = ACTIONS(5936), + [anon_sym_f32] = ACTIONS(5936), + [anon_sym_f64] = ACTIONS(5936), + [anon_sym_c_char] = ACTIONS(5936), + [anon_sym_c_schar] = ACTIONS(5936), + [anon_sym_c_uchar] = ACTIONS(5936), + [anon_sym_c_short] = ACTIONS(5936), + [anon_sym_c_ushort] = ACTIONS(5936), + [anon_sym_c_int] = ACTIONS(5936), + [anon_sym_c_uint] = ACTIONS(5936), + [anon_sym_c_long] = ACTIONS(5936), + [anon_sym_c_ulong] = ACTIONS(5936), + [anon_sym_c_longlong] = ACTIONS(5936), + [anon_sym_c_ulonglong] = ACTIONS(5936), + [anon_sym_c_float] = ACTIONS(5936), + [anon_sym_c_double] = ACTIONS(5936), + [anon_sym_c_longdouble] = ACTIONS(5936), + [anon_sym_PLUS_EQ] = ACTIONS(5934), + [anon_sym_DASH_EQ] = ACTIONS(5934), + [anon_sym_STAR_EQ] = ACTIONS(5934), + [anon_sym_SLASH_EQ] = ACTIONS(5934), + [anon_sym_AMP_EQ] = ACTIONS(5934), + [anon_sym_PIPE_EQ] = ACTIONS(5936), + [anon_sym_xor_EQ] = ACTIONS(5934), + [anon_sym_LT_LT_EQ] = ACTIONS(5934), + [anon_sym_GT_GT_EQ] = ACTIONS(5934), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5934), + [anon_sym_return] = ACTIONS(5936), + [anon_sym_yield] = ACTIONS(5936), + [anon_sym_break] = ACTIONS(5936), + [anon_sym_continue] = ACTIONS(5936), + [anon_sym_defer] = ACTIONS(5936), + [anon_sym_errdefer] = ACTIONS(5936), + [anon_sym_if] = ACTIONS(5936), + [anon_sym_else] = ACTIONS(5936), + [anon_sym_while] = ACTIONS(5936), + [anon_sym_expand] = ACTIONS(5936), + [anon_sym_for] = ACTIONS(5936), + [anon_sym_PIPE2] = ACTIONS(5934), + [anon_sym_match] = ACTIONS(5936), + [anon_sym_DOT_DOT] = ACTIONS(5936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5934), + [anon_sym_orelse] = ACTIONS(5936), + [anon_sym_or] = ACTIONS(5936), + [anon_sym_and] = ACTIONS(5936), + [anon_sym_EQ_EQ] = ACTIONS(5934), + [anon_sym_BANG_EQ] = ACTIONS(5934), + [anon_sym_LT] = ACTIONS(5936), + [anon_sym_LT_EQ] = ACTIONS(5934), + [anon_sym_GT] = ACTIONS(5936), + [anon_sym_GT_EQ] = ACTIONS(5934), + [anon_sym_AMP] = ACTIONS(5936), + [anon_sym_xor] = ACTIONS(5936), + [anon_sym_LT_LT] = ACTIONS(5936), + [anon_sym_GT_GT] = ACTIONS(5936), + [anon_sym_LT_LT_PIPE] = ACTIONS(5936), + [anon_sym_PLUS] = ACTIONS(5936), + [anon_sym_SLASH] = ACTIONS(5936), + [anon_sym_catch] = ACTIONS(5936), + [anon_sym_TILDE] = ACTIONS(5934), + [anon_sym_try] = ACTIONS(5936), + [anon_sym_DOT] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5934), + [anon_sym_true] = ACTIONS(5936), + [anon_sym_false] = ACTIONS(5936), + [anon_sym_null] = ACTIONS(5936), + [anon_sym_unreachable] = ACTIONS(5936), + [anon_sym_undefined] = ACTIONS(5936), + [sym_sink] = ACTIONS(5936), + [sym_integer] = ACTIONS(5936), + [sym_float] = ACTIONS(5934), + [anon_sym_DQUOTE] = ACTIONS(5934), + [sym_multiline_string] = ACTIONS(5934), + [sym_character] = ACTIONS(5934), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5934), + }, + [STATE(3488)] = { + [sym_identifier] = ACTIONS(5940), + [anon_sym_func] = ACTIONS(5940), + [anon_sym_BANG] = ACTIONS(5940), + [anon_sym_EQ] = ACTIONS(5940), + [anon_sym_struct] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5938), + [anon_sym_LBRACE] = ACTIONS(5938), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5938), + [anon_sym_PIPE] = ACTIONS(5940), + [anon_sym_QMARK] = ACTIONS(5938), + [anon_sym_STAR] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5938), + [anon_sym_void] = ACTIONS(5940), + [anon_sym_noreturn] = ACTIONS(5940), + [anon_sym_type] = ACTIONS(5940), + [anon_sym_anyopaque] = ACTIONS(5940), + [anon_sym_bool] = ACTIONS(5940), + [anon_sym_int] = ACTIONS(5940), + [anon_sym_uint] = ACTIONS(5940), + [anon_sym_float] = ACTIONS(5940), + [anon_sym_range] = ACTIONS(5940), + [anon_sym_i8] = ACTIONS(5940), + [anon_sym_i16] = ACTIONS(5940), + [anon_sym_i32] = ACTIONS(5940), + [anon_sym_i64] = ACTIONS(5940), + [anon_sym_u8] = ACTIONS(5940), + [anon_sym_u16] = ACTIONS(5940), + [anon_sym_u32] = ACTIONS(5940), + [anon_sym_u64] = ACTIONS(5940), + [anon_sym_isize] = ACTIONS(5940), + [anon_sym_usize] = ACTIONS(5940), + [anon_sym_f32] = ACTIONS(5940), + [anon_sym_f64] = ACTIONS(5940), + [anon_sym_c_char] = ACTIONS(5940), + [anon_sym_c_schar] = ACTIONS(5940), + [anon_sym_c_uchar] = ACTIONS(5940), + [anon_sym_c_short] = ACTIONS(5940), + [anon_sym_c_ushort] = ACTIONS(5940), + [anon_sym_c_int] = ACTIONS(5940), + [anon_sym_c_uint] = ACTIONS(5940), + [anon_sym_c_long] = ACTIONS(5940), + [anon_sym_c_ulong] = ACTIONS(5940), + [anon_sym_c_longlong] = ACTIONS(5940), + [anon_sym_c_ulonglong] = ACTIONS(5940), + [anon_sym_c_float] = ACTIONS(5940), + [anon_sym_c_double] = ACTIONS(5940), + [anon_sym_c_longdouble] = ACTIONS(5940), + [anon_sym_PLUS_EQ] = ACTIONS(5938), + [anon_sym_DASH_EQ] = ACTIONS(5938), + [anon_sym_STAR_EQ] = ACTIONS(5938), + [anon_sym_SLASH_EQ] = ACTIONS(5938), + [anon_sym_AMP_EQ] = ACTIONS(5938), + [anon_sym_PIPE_EQ] = ACTIONS(5940), + [anon_sym_xor_EQ] = ACTIONS(5938), + [anon_sym_LT_LT_EQ] = ACTIONS(5938), + [anon_sym_GT_GT_EQ] = ACTIONS(5938), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5938), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_yield] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_defer] = ACTIONS(5940), + [anon_sym_errdefer] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_else] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_expand] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_PIPE2] = ACTIONS(5938), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5938), + [anon_sym_orelse] = ACTIONS(5940), + [anon_sym_or] = ACTIONS(5940), + [anon_sym_and] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5938), + [anon_sym_BANG_EQ] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(5940), + [anon_sym_LT_EQ] = ACTIONS(5938), + [anon_sym_GT] = ACTIONS(5940), + [anon_sym_GT_EQ] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5940), + [anon_sym_xor] = ACTIONS(5940), + [anon_sym_LT_LT] = ACTIONS(5940), + [anon_sym_GT_GT] = ACTIONS(5940), + [anon_sym_LT_LT_PIPE] = ACTIONS(5940), + [anon_sym_PLUS] = ACTIONS(5940), + [anon_sym_SLASH] = ACTIONS(5940), + [anon_sym_catch] = ACTIONS(5940), + [anon_sym_TILDE] = ACTIONS(5938), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_DOT] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5938), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_unreachable] = ACTIONS(5940), + [anon_sym_undefined] = ACTIONS(5940), + [sym_sink] = ACTIONS(5940), + [sym_integer] = ACTIONS(5940), + [sym_float] = ACTIONS(5938), + [anon_sym_DQUOTE] = ACTIONS(5938), + [sym_multiline_string] = ACTIONS(5938), + [sym_character] = ACTIONS(5938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5938), + }, + [STATE(3489)] = { + [sym_identifier] = ACTIONS(6124), + [anon_sym_func] = ACTIONS(6124), + [anon_sym_BANG] = ACTIONS(6124), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_struct] = ACTIONS(6124), + [anon_sym_LPAREN] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6124), + [anon_sym_DOLLAR] = ACTIONS(6122), + [anon_sym_PIPE] = ACTIONS(6124), + [anon_sym_QMARK] = ACTIONS(6122), + [anon_sym_STAR] = ACTIONS(6124), + [anon_sym_LBRACK] = ACTIONS(6122), + [anon_sym_void] = ACTIONS(6124), + [anon_sym_noreturn] = ACTIONS(6124), + [anon_sym_type] = ACTIONS(6124), + [anon_sym_anyopaque] = ACTIONS(6124), + [anon_sym_bool] = ACTIONS(6124), + [anon_sym_int] = ACTIONS(6124), + [anon_sym_uint] = ACTIONS(6124), + [anon_sym_float] = ACTIONS(6124), + [anon_sym_range] = ACTIONS(6124), + [anon_sym_i8] = ACTIONS(6124), + [anon_sym_i16] = ACTIONS(6124), + [anon_sym_i32] = ACTIONS(6124), + [anon_sym_i64] = ACTIONS(6124), + [anon_sym_u8] = ACTIONS(6124), + [anon_sym_u16] = ACTIONS(6124), + [anon_sym_u32] = ACTIONS(6124), + [anon_sym_u64] = ACTIONS(6124), + [anon_sym_isize] = ACTIONS(6124), + [anon_sym_usize] = ACTIONS(6124), + [anon_sym_f32] = ACTIONS(6124), + [anon_sym_f64] = ACTIONS(6124), + [anon_sym_c_char] = ACTIONS(6124), + [anon_sym_c_schar] = ACTIONS(6124), + [anon_sym_c_uchar] = ACTIONS(6124), + [anon_sym_c_short] = ACTIONS(6124), + [anon_sym_c_ushort] = ACTIONS(6124), + [anon_sym_c_int] = ACTIONS(6124), + [anon_sym_c_uint] = ACTIONS(6124), + [anon_sym_c_long] = ACTIONS(6124), + [anon_sym_c_ulong] = ACTIONS(6124), + [anon_sym_c_longlong] = ACTIONS(6124), + [anon_sym_c_ulonglong] = ACTIONS(6124), + [anon_sym_c_float] = ACTIONS(6124), + [anon_sym_c_double] = ACTIONS(6124), + [anon_sym_c_longdouble] = ACTIONS(6124), + [anon_sym_PLUS_EQ] = ACTIONS(6122), + [anon_sym_DASH_EQ] = ACTIONS(6122), + [anon_sym_STAR_EQ] = ACTIONS(6122), + [anon_sym_SLASH_EQ] = ACTIONS(6122), + [anon_sym_AMP_EQ] = ACTIONS(6122), + [anon_sym_PIPE_EQ] = ACTIONS(6124), + [anon_sym_xor_EQ] = ACTIONS(6122), + [anon_sym_LT_LT_EQ] = ACTIONS(6122), + [anon_sym_GT_GT_EQ] = ACTIONS(6122), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6122), + [anon_sym_return] = ACTIONS(6124), + [anon_sym_yield] = ACTIONS(6124), + [anon_sym_break] = ACTIONS(6124), + [anon_sym_continue] = ACTIONS(6124), + [anon_sym_defer] = ACTIONS(6124), + [anon_sym_errdefer] = ACTIONS(6124), + [anon_sym_if] = ACTIONS(6124), + [anon_sym_else] = ACTIONS(6124), + [anon_sym_while] = ACTIONS(6124), + [anon_sym_expand] = ACTIONS(6124), + [anon_sym_for] = ACTIONS(6124), + [anon_sym_PIPE2] = ACTIONS(6122), + [anon_sym_match] = ACTIONS(6124), + [anon_sym_DOT_DOT] = ACTIONS(6124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6122), + [anon_sym_orelse] = ACTIONS(6124), + [anon_sym_or] = ACTIONS(6124), + [anon_sym_and] = ACTIONS(6124), + [anon_sym_EQ_EQ] = ACTIONS(6122), + [anon_sym_BANG_EQ] = ACTIONS(6122), + [anon_sym_LT] = ACTIONS(6124), + [anon_sym_LT_EQ] = ACTIONS(6122), + [anon_sym_GT] = ACTIONS(6124), + [anon_sym_GT_EQ] = ACTIONS(6122), + [anon_sym_AMP] = ACTIONS(6124), + [anon_sym_xor] = ACTIONS(6124), + [anon_sym_LT_LT] = ACTIONS(6124), + [anon_sym_GT_GT] = ACTIONS(6124), + [anon_sym_LT_LT_PIPE] = ACTIONS(6124), + [anon_sym_PLUS] = ACTIONS(6124), + [anon_sym_SLASH] = ACTIONS(6124), + [anon_sym_catch] = ACTIONS(6124), + [anon_sym_TILDE] = ACTIONS(6122), + [anon_sym_try] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6124), + [anon_sym_CARET] = ACTIONS(6122), + [anon_sym_true] = ACTIONS(6124), + [anon_sym_false] = ACTIONS(6124), + [anon_sym_null] = ACTIONS(6124), + [anon_sym_unreachable] = ACTIONS(6124), + [anon_sym_undefined] = ACTIONS(6124), + [sym_sink] = ACTIONS(6124), + [sym_integer] = ACTIONS(6124), + [sym_float] = ACTIONS(6122), + [anon_sym_DQUOTE] = ACTIONS(6122), + [sym_multiline_string] = ACTIONS(6122), + [sym_character] = ACTIONS(6122), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6122), + }, + [STATE(3490)] = { + [sym_identifier] = ACTIONS(6134), + [anon_sym_func] = ACTIONS(6134), + [anon_sym_BANG] = ACTIONS(6134), + [anon_sym_EQ] = ACTIONS(6134), + [anon_sym_struct] = ACTIONS(6134), + [anon_sym_LPAREN] = ACTIONS(6132), + [anon_sym_LBRACE] = ACTIONS(6132), + [anon_sym_DASH] = ACTIONS(6134), + [anon_sym_DOLLAR] = ACTIONS(6132), + [anon_sym_PIPE] = ACTIONS(6134), + [anon_sym_QMARK] = ACTIONS(6132), + [anon_sym_STAR] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6132), + [anon_sym_void] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym_type] = ACTIONS(6134), + [anon_sym_anyopaque] = ACTIONS(6134), + [anon_sym_bool] = ACTIONS(6134), + [anon_sym_int] = ACTIONS(6134), + [anon_sym_uint] = ACTIONS(6134), + [anon_sym_float] = ACTIONS(6134), + [anon_sym_range] = ACTIONS(6134), + [anon_sym_i8] = ACTIONS(6134), + [anon_sym_i16] = ACTIONS(6134), + [anon_sym_i32] = ACTIONS(6134), + [anon_sym_i64] = ACTIONS(6134), + [anon_sym_u8] = ACTIONS(6134), + [anon_sym_u16] = ACTIONS(6134), + [anon_sym_u32] = ACTIONS(6134), + [anon_sym_u64] = ACTIONS(6134), + [anon_sym_isize] = ACTIONS(6134), + [anon_sym_usize] = ACTIONS(6134), + [anon_sym_f32] = ACTIONS(6134), + [anon_sym_f64] = ACTIONS(6134), + [anon_sym_c_char] = ACTIONS(6134), + [anon_sym_c_schar] = ACTIONS(6134), + [anon_sym_c_uchar] = ACTIONS(6134), + [anon_sym_c_short] = ACTIONS(6134), + [anon_sym_c_ushort] = ACTIONS(6134), + [anon_sym_c_int] = ACTIONS(6134), + [anon_sym_c_uint] = ACTIONS(6134), + [anon_sym_c_long] = ACTIONS(6134), + [anon_sym_c_ulong] = ACTIONS(6134), + [anon_sym_c_longlong] = ACTIONS(6134), + [anon_sym_c_ulonglong] = ACTIONS(6134), + [anon_sym_c_float] = ACTIONS(6134), + [anon_sym_c_double] = ACTIONS(6134), + [anon_sym_c_longdouble] = ACTIONS(6134), + [anon_sym_PLUS_EQ] = ACTIONS(6132), + [anon_sym_DASH_EQ] = ACTIONS(6132), + [anon_sym_STAR_EQ] = ACTIONS(6132), + [anon_sym_SLASH_EQ] = ACTIONS(6132), + [anon_sym_AMP_EQ] = ACTIONS(6132), + [anon_sym_PIPE_EQ] = ACTIONS(6134), + [anon_sym_xor_EQ] = ACTIONS(6132), + [anon_sym_LT_LT_EQ] = ACTIONS(6132), + [anon_sym_GT_GT_EQ] = ACTIONS(6132), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6132), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_yield] = ACTIONS(6134), + [anon_sym_break] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [anon_sym_defer] = ACTIONS(6134), + [anon_sym_errdefer] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [anon_sym_else] = ACTIONS(6134), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_expand] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [anon_sym_PIPE2] = ACTIONS(6132), + [anon_sym_match] = ACTIONS(6134), + [anon_sym_DOT_DOT] = ACTIONS(6134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6132), + [anon_sym_orelse] = ACTIONS(6134), + [anon_sym_or] = ACTIONS(6134), + [anon_sym_and] = ACTIONS(6134), + [anon_sym_EQ_EQ] = ACTIONS(6132), + [anon_sym_BANG_EQ] = ACTIONS(6132), + [anon_sym_LT] = ACTIONS(6134), + [anon_sym_LT_EQ] = ACTIONS(6132), + [anon_sym_GT] = ACTIONS(6134), + [anon_sym_GT_EQ] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_xor] = ACTIONS(6134), + [anon_sym_LT_LT] = ACTIONS(6134), + [anon_sym_GT_GT] = ACTIONS(6134), + [anon_sym_LT_LT_PIPE] = ACTIONS(6134), + [anon_sym_PLUS] = ACTIONS(6134), + [anon_sym_SLASH] = ACTIONS(6134), + [anon_sym_catch] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6132), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_DOT] = ACTIONS(6134), + [anon_sym_CARET] = ACTIONS(6132), + [anon_sym_true] = ACTIONS(6134), + [anon_sym_false] = ACTIONS(6134), + [anon_sym_null] = ACTIONS(6134), + [anon_sym_unreachable] = ACTIONS(6134), + [anon_sym_undefined] = ACTIONS(6134), + [sym_sink] = ACTIONS(6134), + [sym_integer] = ACTIONS(6134), + [sym_float] = ACTIONS(6132), + [anon_sym_DQUOTE] = ACTIONS(6132), + [sym_multiline_string] = ACTIONS(6132), + [sym_character] = ACTIONS(6132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6132), + }, + [STATE(3491)] = { + [sym_identifier] = ACTIONS(6138), + [anon_sym_func] = ACTIONS(6138), + [anon_sym_BANG] = ACTIONS(6138), + [anon_sym_EQ] = ACTIONS(6138), + [anon_sym_struct] = ACTIONS(6138), + [anon_sym_LPAREN] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(6136), + [anon_sym_DASH] = ACTIONS(6138), + [anon_sym_DOLLAR] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(6138), + [anon_sym_QMARK] = ACTIONS(6136), + [anon_sym_STAR] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(6136), + [anon_sym_void] = ACTIONS(6138), + [anon_sym_noreturn] = ACTIONS(6138), + [anon_sym_type] = ACTIONS(6138), + [anon_sym_anyopaque] = ACTIONS(6138), + [anon_sym_bool] = ACTIONS(6138), + [anon_sym_int] = ACTIONS(6138), + [anon_sym_uint] = ACTIONS(6138), + [anon_sym_float] = ACTIONS(6138), + [anon_sym_range] = ACTIONS(6138), + [anon_sym_i8] = ACTIONS(6138), + [anon_sym_i16] = ACTIONS(6138), + [anon_sym_i32] = ACTIONS(6138), + [anon_sym_i64] = ACTIONS(6138), + [anon_sym_u8] = ACTIONS(6138), + [anon_sym_u16] = ACTIONS(6138), + [anon_sym_u32] = ACTIONS(6138), + [anon_sym_u64] = ACTIONS(6138), + [anon_sym_isize] = ACTIONS(6138), + [anon_sym_usize] = ACTIONS(6138), + [anon_sym_f32] = ACTIONS(6138), + [anon_sym_f64] = ACTIONS(6138), + [anon_sym_c_char] = ACTIONS(6138), + [anon_sym_c_schar] = ACTIONS(6138), + [anon_sym_c_uchar] = ACTIONS(6138), + [anon_sym_c_short] = ACTIONS(6138), + [anon_sym_c_ushort] = ACTIONS(6138), + [anon_sym_c_int] = ACTIONS(6138), + [anon_sym_c_uint] = ACTIONS(6138), + [anon_sym_c_long] = ACTIONS(6138), + [anon_sym_c_ulong] = ACTIONS(6138), + [anon_sym_c_longlong] = ACTIONS(6138), + [anon_sym_c_ulonglong] = ACTIONS(6138), + [anon_sym_c_float] = ACTIONS(6138), + [anon_sym_c_double] = ACTIONS(6138), + [anon_sym_c_longdouble] = ACTIONS(6138), + [anon_sym_PLUS_EQ] = ACTIONS(6136), + [anon_sym_DASH_EQ] = ACTIONS(6136), + [anon_sym_STAR_EQ] = ACTIONS(6136), + [anon_sym_SLASH_EQ] = ACTIONS(6136), + [anon_sym_AMP_EQ] = ACTIONS(6136), + [anon_sym_PIPE_EQ] = ACTIONS(6138), + [anon_sym_xor_EQ] = ACTIONS(6136), + [anon_sym_LT_LT_EQ] = ACTIONS(6136), + [anon_sym_GT_GT_EQ] = ACTIONS(6136), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6136), + [anon_sym_return] = ACTIONS(6138), + [anon_sym_yield] = ACTIONS(6138), + [anon_sym_break] = ACTIONS(6138), + [anon_sym_continue] = ACTIONS(6138), + [anon_sym_defer] = ACTIONS(6138), + [anon_sym_errdefer] = ACTIONS(6138), + [anon_sym_if] = ACTIONS(6138), + [anon_sym_else] = ACTIONS(6138), + [anon_sym_while] = ACTIONS(6138), + [anon_sym_expand] = ACTIONS(6138), + [anon_sym_for] = ACTIONS(6138), + [anon_sym_PIPE2] = ACTIONS(6136), + [anon_sym_match] = ACTIONS(6138), + [anon_sym_DOT_DOT] = ACTIONS(6138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6136), + [anon_sym_orelse] = ACTIONS(6138), + [anon_sym_or] = ACTIONS(6138), + [anon_sym_and] = ACTIONS(6138), + [anon_sym_EQ_EQ] = ACTIONS(6136), + [anon_sym_BANG_EQ] = ACTIONS(6136), + [anon_sym_LT] = ACTIONS(6138), + [anon_sym_LT_EQ] = ACTIONS(6136), + [anon_sym_GT] = ACTIONS(6138), + [anon_sym_GT_EQ] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6138), + [anon_sym_xor] = ACTIONS(6138), + [anon_sym_LT_LT] = ACTIONS(6138), + [anon_sym_GT_GT] = ACTIONS(6138), + [anon_sym_LT_LT_PIPE] = ACTIONS(6138), + [anon_sym_PLUS] = ACTIONS(6138), + [anon_sym_SLASH] = ACTIONS(6138), + [anon_sym_catch] = ACTIONS(6138), + [anon_sym_TILDE] = ACTIONS(6136), + [anon_sym_try] = ACTIONS(6138), + [anon_sym_DOT] = ACTIONS(6138), + [anon_sym_CARET] = ACTIONS(6136), + [anon_sym_true] = ACTIONS(6138), + [anon_sym_false] = ACTIONS(6138), + [anon_sym_null] = ACTIONS(6138), + [anon_sym_unreachable] = ACTIONS(6138), + [anon_sym_undefined] = ACTIONS(6138), + [sym_sink] = ACTIONS(6138), + [sym_integer] = ACTIONS(6138), + [sym_float] = ACTIONS(6136), + [anon_sym_DQUOTE] = ACTIONS(6136), + [sym_multiline_string] = ACTIONS(6136), + [sym_character] = ACTIONS(6136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6136), + }, + [STATE(3492)] = { + [sym_identifier] = ACTIONS(6142), + [anon_sym_func] = ACTIONS(6142), + [anon_sym_BANG] = ACTIONS(6142), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_struct] = ACTIONS(6142), + [anon_sym_LPAREN] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(6140), + [anon_sym_DASH] = ACTIONS(6142), + [anon_sym_DOLLAR] = ACTIONS(6140), + [anon_sym_PIPE] = ACTIONS(6142), + [anon_sym_QMARK] = ACTIONS(6140), + [anon_sym_STAR] = ACTIONS(6142), + [anon_sym_LBRACK] = ACTIONS(6140), + [anon_sym_void] = ACTIONS(6142), + [anon_sym_noreturn] = ACTIONS(6142), + [anon_sym_type] = ACTIONS(6142), + [anon_sym_anyopaque] = ACTIONS(6142), + [anon_sym_bool] = ACTIONS(6142), + [anon_sym_int] = ACTIONS(6142), + [anon_sym_uint] = ACTIONS(6142), + [anon_sym_float] = ACTIONS(6142), + [anon_sym_range] = ACTIONS(6142), + [anon_sym_i8] = ACTIONS(6142), + [anon_sym_i16] = ACTIONS(6142), + [anon_sym_i32] = ACTIONS(6142), + [anon_sym_i64] = ACTIONS(6142), + [anon_sym_u8] = ACTIONS(6142), + [anon_sym_u16] = ACTIONS(6142), + [anon_sym_u32] = ACTIONS(6142), + [anon_sym_u64] = ACTIONS(6142), + [anon_sym_isize] = ACTIONS(6142), + [anon_sym_usize] = ACTIONS(6142), + [anon_sym_f32] = ACTIONS(6142), + [anon_sym_f64] = ACTIONS(6142), + [anon_sym_c_char] = ACTIONS(6142), + [anon_sym_c_schar] = ACTIONS(6142), + [anon_sym_c_uchar] = ACTIONS(6142), + [anon_sym_c_short] = ACTIONS(6142), + [anon_sym_c_ushort] = ACTIONS(6142), + [anon_sym_c_int] = ACTIONS(6142), + [anon_sym_c_uint] = ACTIONS(6142), + [anon_sym_c_long] = ACTIONS(6142), + [anon_sym_c_ulong] = ACTIONS(6142), + [anon_sym_c_longlong] = ACTIONS(6142), + [anon_sym_c_ulonglong] = ACTIONS(6142), + [anon_sym_c_float] = ACTIONS(6142), + [anon_sym_c_double] = ACTIONS(6142), + [anon_sym_c_longdouble] = ACTIONS(6142), + [anon_sym_PLUS_EQ] = ACTIONS(6140), + [anon_sym_DASH_EQ] = ACTIONS(6140), + [anon_sym_STAR_EQ] = ACTIONS(6140), + [anon_sym_SLASH_EQ] = ACTIONS(6140), + [anon_sym_AMP_EQ] = ACTIONS(6140), + [anon_sym_PIPE_EQ] = ACTIONS(6142), + [anon_sym_xor_EQ] = ACTIONS(6140), + [anon_sym_LT_LT_EQ] = ACTIONS(6140), + [anon_sym_GT_GT_EQ] = ACTIONS(6140), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6140), + [anon_sym_return] = ACTIONS(6142), + [anon_sym_yield] = ACTIONS(6142), + [anon_sym_break] = ACTIONS(6142), + [anon_sym_continue] = ACTIONS(6142), + [anon_sym_defer] = ACTIONS(6142), + [anon_sym_errdefer] = ACTIONS(6142), + [anon_sym_if] = ACTIONS(6142), + [anon_sym_else] = ACTIONS(6142), + [anon_sym_while] = ACTIONS(6142), + [anon_sym_expand] = ACTIONS(6142), + [anon_sym_for] = ACTIONS(6142), + [anon_sym_PIPE2] = ACTIONS(6140), + [anon_sym_match] = ACTIONS(6142), + [anon_sym_DOT_DOT] = ACTIONS(6142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6140), + [anon_sym_orelse] = ACTIONS(6142), + [anon_sym_or] = ACTIONS(6142), + [anon_sym_and] = ACTIONS(6142), + [anon_sym_EQ_EQ] = ACTIONS(6140), + [anon_sym_BANG_EQ] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(6142), + [anon_sym_LT_EQ] = ACTIONS(6140), + [anon_sym_GT] = ACTIONS(6142), + [anon_sym_GT_EQ] = ACTIONS(6140), + [anon_sym_AMP] = ACTIONS(6142), + [anon_sym_xor] = ACTIONS(6142), + [anon_sym_LT_LT] = ACTIONS(6142), + [anon_sym_GT_GT] = ACTIONS(6142), + [anon_sym_LT_LT_PIPE] = ACTIONS(6142), + [anon_sym_PLUS] = ACTIONS(6142), + [anon_sym_SLASH] = ACTIONS(6142), + [anon_sym_catch] = ACTIONS(6142), + [anon_sym_TILDE] = ACTIONS(6140), + [anon_sym_try] = ACTIONS(6142), + [anon_sym_DOT] = ACTIONS(6142), + [anon_sym_CARET] = ACTIONS(6140), + [anon_sym_true] = ACTIONS(6142), + [anon_sym_false] = ACTIONS(6142), + [anon_sym_null] = ACTIONS(6142), + [anon_sym_unreachable] = ACTIONS(6142), + [anon_sym_undefined] = ACTIONS(6142), + [sym_sink] = ACTIONS(6142), + [sym_integer] = ACTIONS(6142), + [sym_float] = ACTIONS(6140), + [anon_sym_DQUOTE] = ACTIONS(6140), + [sym_multiline_string] = ACTIONS(6140), + [sym_character] = ACTIONS(6140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6140), + }, + [STATE(3493)] = { + [sym_identifier] = ACTIONS(6152), + [anon_sym_func] = ACTIONS(6152), + [anon_sym_BANG] = ACTIONS(6152), + [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_struct] = ACTIONS(6152), + [anon_sym_LPAREN] = ACTIONS(6150), + [anon_sym_LBRACE] = ACTIONS(6150), + [anon_sym_DASH] = ACTIONS(6152), + [anon_sym_DOLLAR] = ACTIONS(6150), + [anon_sym_PIPE] = ACTIONS(6152), + [anon_sym_QMARK] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(6150), + [anon_sym_void] = ACTIONS(6152), + [anon_sym_noreturn] = ACTIONS(6152), + [anon_sym_type] = ACTIONS(6152), + [anon_sym_anyopaque] = ACTIONS(6152), + [anon_sym_bool] = ACTIONS(6152), + [anon_sym_int] = ACTIONS(6152), + [anon_sym_uint] = ACTIONS(6152), + [anon_sym_float] = ACTIONS(6152), + [anon_sym_range] = ACTIONS(6152), + [anon_sym_i8] = ACTIONS(6152), + [anon_sym_i16] = ACTIONS(6152), + [anon_sym_i32] = ACTIONS(6152), + [anon_sym_i64] = ACTIONS(6152), + [anon_sym_u8] = ACTIONS(6152), + [anon_sym_u16] = ACTIONS(6152), + [anon_sym_u32] = ACTIONS(6152), + [anon_sym_u64] = ACTIONS(6152), + [anon_sym_isize] = ACTIONS(6152), + [anon_sym_usize] = ACTIONS(6152), + [anon_sym_f32] = ACTIONS(6152), + [anon_sym_f64] = ACTIONS(6152), + [anon_sym_c_char] = ACTIONS(6152), + [anon_sym_c_schar] = ACTIONS(6152), + [anon_sym_c_uchar] = ACTIONS(6152), + [anon_sym_c_short] = ACTIONS(6152), + [anon_sym_c_ushort] = ACTIONS(6152), + [anon_sym_c_int] = ACTIONS(6152), + [anon_sym_c_uint] = ACTIONS(6152), + [anon_sym_c_long] = ACTIONS(6152), + [anon_sym_c_ulong] = ACTIONS(6152), + [anon_sym_c_longlong] = ACTIONS(6152), + [anon_sym_c_ulonglong] = ACTIONS(6152), + [anon_sym_c_float] = ACTIONS(6152), + [anon_sym_c_double] = ACTIONS(6152), + [anon_sym_c_longdouble] = ACTIONS(6152), + [anon_sym_PLUS_EQ] = ACTIONS(6150), + [anon_sym_DASH_EQ] = ACTIONS(6150), + [anon_sym_STAR_EQ] = ACTIONS(6150), + [anon_sym_SLASH_EQ] = ACTIONS(6150), + [anon_sym_AMP_EQ] = ACTIONS(6150), + [anon_sym_PIPE_EQ] = ACTIONS(6152), + [anon_sym_xor_EQ] = ACTIONS(6150), + [anon_sym_LT_LT_EQ] = ACTIONS(6150), + [anon_sym_GT_GT_EQ] = ACTIONS(6150), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6150), + [anon_sym_return] = ACTIONS(6152), + [anon_sym_yield] = ACTIONS(6152), + [anon_sym_break] = ACTIONS(6152), + [anon_sym_continue] = ACTIONS(6152), + [anon_sym_defer] = ACTIONS(6152), + [anon_sym_errdefer] = ACTIONS(6152), + [anon_sym_if] = ACTIONS(6152), + [anon_sym_else] = ACTIONS(6152), + [anon_sym_while] = ACTIONS(6152), + [anon_sym_expand] = ACTIONS(6152), + [anon_sym_for] = ACTIONS(6152), + [anon_sym_PIPE2] = ACTIONS(6150), + [anon_sym_match] = ACTIONS(6152), + [anon_sym_DOT_DOT] = ACTIONS(6152), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6150), + [anon_sym_orelse] = ACTIONS(6152), + [anon_sym_or] = ACTIONS(6152), + [anon_sym_and] = ACTIONS(6152), + [anon_sym_EQ_EQ] = ACTIONS(6150), + [anon_sym_BANG_EQ] = ACTIONS(6150), + [anon_sym_LT] = ACTIONS(6152), + [anon_sym_LT_EQ] = ACTIONS(6150), + [anon_sym_GT] = ACTIONS(6152), + [anon_sym_GT_EQ] = ACTIONS(6150), + [anon_sym_AMP] = ACTIONS(6152), + [anon_sym_xor] = ACTIONS(6152), + [anon_sym_LT_LT] = ACTIONS(6152), + [anon_sym_GT_GT] = ACTIONS(6152), + [anon_sym_LT_LT_PIPE] = ACTIONS(6152), + [anon_sym_PLUS] = ACTIONS(6152), + [anon_sym_SLASH] = ACTIONS(6152), + [anon_sym_catch] = ACTIONS(6152), + [anon_sym_TILDE] = ACTIONS(6150), + [anon_sym_try] = ACTIONS(6152), + [anon_sym_DOT] = ACTIONS(6152), + [anon_sym_CARET] = ACTIONS(6150), + [anon_sym_true] = ACTIONS(6152), + [anon_sym_false] = ACTIONS(6152), + [anon_sym_null] = ACTIONS(6152), + [anon_sym_unreachable] = ACTIONS(6152), + [anon_sym_undefined] = ACTIONS(6152), + [sym_sink] = ACTIONS(6152), + [sym_integer] = ACTIONS(6152), + [sym_float] = ACTIONS(6150), + [anon_sym_DQUOTE] = ACTIONS(6150), + [sym_multiline_string] = ACTIONS(6150), + [sym_character] = ACTIONS(6150), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6150), + }, + [STATE(3494)] = { + [sym_identifier] = ACTIONS(6168), + [anon_sym_func] = ACTIONS(6168), + [anon_sym_BANG] = ACTIONS(6168), + [anon_sym_EQ] = ACTIONS(6168), + [anon_sym_struct] = ACTIONS(6168), + [anon_sym_LPAREN] = ACTIONS(6166), + [anon_sym_LBRACE] = ACTIONS(6166), + [anon_sym_DASH] = ACTIONS(6168), + [anon_sym_DOLLAR] = ACTIONS(6166), + [anon_sym_PIPE] = ACTIONS(6168), + [anon_sym_QMARK] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(6168), + [anon_sym_LBRACK] = ACTIONS(6166), + [anon_sym_void] = ACTIONS(6168), + [anon_sym_noreturn] = ACTIONS(6168), + [anon_sym_type] = ACTIONS(6168), + [anon_sym_anyopaque] = ACTIONS(6168), + [anon_sym_bool] = ACTIONS(6168), + [anon_sym_int] = ACTIONS(6168), + [anon_sym_uint] = ACTIONS(6168), + [anon_sym_float] = ACTIONS(6168), + [anon_sym_range] = ACTIONS(6168), + [anon_sym_i8] = ACTIONS(6168), + [anon_sym_i16] = ACTIONS(6168), + [anon_sym_i32] = ACTIONS(6168), + [anon_sym_i64] = ACTIONS(6168), + [anon_sym_u8] = ACTIONS(6168), + [anon_sym_u16] = ACTIONS(6168), + [anon_sym_u32] = ACTIONS(6168), + [anon_sym_u64] = ACTIONS(6168), + [anon_sym_isize] = ACTIONS(6168), + [anon_sym_usize] = ACTIONS(6168), + [anon_sym_f32] = ACTIONS(6168), + [anon_sym_f64] = ACTIONS(6168), + [anon_sym_c_char] = ACTIONS(6168), + [anon_sym_c_schar] = ACTIONS(6168), + [anon_sym_c_uchar] = ACTIONS(6168), + [anon_sym_c_short] = ACTIONS(6168), + [anon_sym_c_ushort] = ACTIONS(6168), + [anon_sym_c_int] = ACTIONS(6168), + [anon_sym_c_uint] = ACTIONS(6168), + [anon_sym_c_long] = ACTIONS(6168), + [anon_sym_c_ulong] = ACTIONS(6168), + [anon_sym_c_longlong] = ACTIONS(6168), + [anon_sym_c_ulonglong] = ACTIONS(6168), + [anon_sym_c_float] = ACTIONS(6168), + [anon_sym_c_double] = ACTIONS(6168), + [anon_sym_c_longdouble] = ACTIONS(6168), + [anon_sym_PLUS_EQ] = ACTIONS(6166), + [anon_sym_DASH_EQ] = ACTIONS(6166), + [anon_sym_STAR_EQ] = ACTIONS(6166), + [anon_sym_SLASH_EQ] = ACTIONS(6166), + [anon_sym_AMP_EQ] = ACTIONS(6166), + [anon_sym_PIPE_EQ] = ACTIONS(6168), + [anon_sym_xor_EQ] = ACTIONS(6166), + [anon_sym_LT_LT_EQ] = ACTIONS(6166), + [anon_sym_GT_GT_EQ] = ACTIONS(6166), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6166), + [anon_sym_return] = ACTIONS(6168), + [anon_sym_yield] = ACTIONS(6168), + [anon_sym_break] = ACTIONS(6168), + [anon_sym_continue] = ACTIONS(6168), + [anon_sym_defer] = ACTIONS(6168), + [anon_sym_errdefer] = ACTIONS(6168), + [anon_sym_if] = ACTIONS(6168), + [anon_sym_else] = ACTIONS(6168), + [anon_sym_while] = ACTIONS(6168), + [anon_sym_expand] = ACTIONS(6168), + [anon_sym_for] = ACTIONS(6168), + [anon_sym_PIPE2] = ACTIONS(6166), + [anon_sym_match] = ACTIONS(6168), + [anon_sym_DOT_DOT] = ACTIONS(6168), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6166), + [anon_sym_orelse] = ACTIONS(6168), + [anon_sym_or] = ACTIONS(6168), + [anon_sym_and] = ACTIONS(6168), + [anon_sym_EQ_EQ] = ACTIONS(6166), + [anon_sym_BANG_EQ] = ACTIONS(6166), + [anon_sym_LT] = ACTIONS(6168), + [anon_sym_LT_EQ] = ACTIONS(6166), + [anon_sym_GT] = ACTIONS(6168), + [anon_sym_GT_EQ] = ACTIONS(6166), + [anon_sym_AMP] = ACTIONS(6168), + [anon_sym_xor] = ACTIONS(6168), + [anon_sym_LT_LT] = ACTIONS(6168), + [anon_sym_GT_GT] = ACTIONS(6168), + [anon_sym_LT_LT_PIPE] = ACTIONS(6168), + [anon_sym_PLUS] = ACTIONS(6168), + [anon_sym_SLASH] = ACTIONS(6168), + [anon_sym_catch] = ACTIONS(6168), + [anon_sym_TILDE] = ACTIONS(6166), + [anon_sym_try] = ACTIONS(6168), + [anon_sym_DOT] = ACTIONS(6168), + [anon_sym_CARET] = ACTIONS(6166), + [anon_sym_true] = ACTIONS(6168), + [anon_sym_false] = ACTIONS(6168), + [anon_sym_null] = ACTIONS(6168), + [anon_sym_unreachable] = ACTIONS(6168), + [anon_sym_undefined] = ACTIONS(6168), + [sym_sink] = ACTIONS(6168), + [sym_integer] = ACTIONS(6168), + [sym_float] = ACTIONS(6166), + [anon_sym_DQUOTE] = ACTIONS(6166), + [sym_multiline_string] = ACTIONS(6166), + [sym_character] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6166), + }, + [STATE(3495)] = { + [sym_identifier] = ACTIONS(6172), + [anon_sym_func] = ACTIONS(6172), + [anon_sym_BANG] = ACTIONS(6172), + [anon_sym_EQ] = ACTIONS(6172), + [anon_sym_struct] = ACTIONS(6172), + [anon_sym_LPAREN] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(6170), + [anon_sym_DASH] = ACTIONS(6172), + [anon_sym_DOLLAR] = ACTIONS(6170), + [anon_sym_PIPE] = ACTIONS(6172), + [anon_sym_QMARK] = ACTIONS(6170), + [anon_sym_STAR] = ACTIONS(6172), + [anon_sym_LBRACK] = ACTIONS(6170), + [anon_sym_void] = ACTIONS(6172), + [anon_sym_noreturn] = ACTIONS(6172), + [anon_sym_type] = ACTIONS(6172), + [anon_sym_anyopaque] = ACTIONS(6172), + [anon_sym_bool] = ACTIONS(6172), + [anon_sym_int] = ACTIONS(6172), + [anon_sym_uint] = ACTIONS(6172), + [anon_sym_float] = ACTIONS(6172), + [anon_sym_range] = ACTIONS(6172), + [anon_sym_i8] = ACTIONS(6172), + [anon_sym_i16] = ACTIONS(6172), + [anon_sym_i32] = ACTIONS(6172), + [anon_sym_i64] = ACTIONS(6172), + [anon_sym_u8] = ACTIONS(6172), + [anon_sym_u16] = ACTIONS(6172), + [anon_sym_u32] = ACTIONS(6172), + [anon_sym_u64] = ACTIONS(6172), + [anon_sym_isize] = ACTIONS(6172), + [anon_sym_usize] = ACTIONS(6172), + [anon_sym_f32] = ACTIONS(6172), + [anon_sym_f64] = ACTIONS(6172), + [anon_sym_c_char] = ACTIONS(6172), + [anon_sym_c_schar] = ACTIONS(6172), + [anon_sym_c_uchar] = ACTIONS(6172), + [anon_sym_c_short] = ACTIONS(6172), + [anon_sym_c_ushort] = ACTIONS(6172), + [anon_sym_c_int] = ACTIONS(6172), + [anon_sym_c_uint] = ACTIONS(6172), + [anon_sym_c_long] = ACTIONS(6172), + [anon_sym_c_ulong] = ACTIONS(6172), + [anon_sym_c_longlong] = ACTIONS(6172), + [anon_sym_c_ulonglong] = ACTIONS(6172), + [anon_sym_c_float] = ACTIONS(6172), + [anon_sym_c_double] = ACTIONS(6172), + [anon_sym_c_longdouble] = ACTIONS(6172), + [anon_sym_PLUS_EQ] = ACTIONS(6170), + [anon_sym_DASH_EQ] = ACTIONS(6170), + [anon_sym_STAR_EQ] = ACTIONS(6170), + [anon_sym_SLASH_EQ] = ACTIONS(6170), + [anon_sym_AMP_EQ] = ACTIONS(6170), + [anon_sym_PIPE_EQ] = ACTIONS(6172), + [anon_sym_xor_EQ] = ACTIONS(6170), + [anon_sym_LT_LT_EQ] = ACTIONS(6170), + [anon_sym_GT_GT_EQ] = ACTIONS(6170), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6170), + [anon_sym_return] = ACTIONS(6172), + [anon_sym_yield] = ACTIONS(6172), + [anon_sym_break] = ACTIONS(6172), + [anon_sym_continue] = ACTIONS(6172), + [anon_sym_defer] = ACTIONS(6172), + [anon_sym_errdefer] = ACTIONS(6172), + [anon_sym_if] = ACTIONS(6172), + [anon_sym_else] = ACTIONS(6172), + [anon_sym_while] = ACTIONS(6172), + [anon_sym_expand] = ACTIONS(6172), + [anon_sym_for] = ACTIONS(6172), + [anon_sym_PIPE2] = ACTIONS(6170), + [anon_sym_match] = ACTIONS(6172), + [anon_sym_DOT_DOT] = ACTIONS(6172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6170), + [anon_sym_orelse] = ACTIONS(6172), + [anon_sym_or] = ACTIONS(6172), + [anon_sym_and] = ACTIONS(6172), + [anon_sym_EQ_EQ] = ACTIONS(6170), + [anon_sym_BANG_EQ] = ACTIONS(6170), + [anon_sym_LT] = ACTIONS(6172), + [anon_sym_LT_EQ] = ACTIONS(6170), + [anon_sym_GT] = ACTIONS(6172), + [anon_sym_GT_EQ] = ACTIONS(6170), + [anon_sym_AMP] = ACTIONS(6172), + [anon_sym_xor] = ACTIONS(6172), + [anon_sym_LT_LT] = ACTIONS(6172), + [anon_sym_GT_GT] = ACTIONS(6172), + [anon_sym_LT_LT_PIPE] = ACTIONS(6172), + [anon_sym_PLUS] = ACTIONS(6172), + [anon_sym_SLASH] = ACTIONS(6172), + [anon_sym_catch] = ACTIONS(6172), + [anon_sym_TILDE] = ACTIONS(6170), + [anon_sym_try] = ACTIONS(6172), + [anon_sym_DOT] = ACTIONS(6172), + [anon_sym_CARET] = ACTIONS(6170), + [anon_sym_true] = ACTIONS(6172), + [anon_sym_false] = ACTIONS(6172), + [anon_sym_null] = ACTIONS(6172), + [anon_sym_unreachable] = ACTIONS(6172), + [anon_sym_undefined] = ACTIONS(6172), + [sym_sink] = ACTIONS(6172), + [sym_integer] = ACTIONS(6172), + [sym_float] = ACTIONS(6170), + [anon_sym_DQUOTE] = ACTIONS(6170), + [sym_multiline_string] = ACTIONS(6170), + [sym_character] = ACTIONS(6170), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6170), + }, + [STATE(3496)] = { + [sym_identifier] = ACTIONS(6176), + [anon_sym_func] = ACTIONS(6176), + [anon_sym_BANG] = ACTIONS(6176), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_struct] = ACTIONS(6176), + [anon_sym_LPAREN] = ACTIONS(6174), + [anon_sym_LBRACE] = ACTIONS(6174), + [anon_sym_DASH] = ACTIONS(6176), + [anon_sym_DOLLAR] = ACTIONS(6174), + [anon_sym_PIPE] = ACTIONS(6176), + [anon_sym_QMARK] = ACTIONS(6174), + [anon_sym_STAR] = ACTIONS(6176), + [anon_sym_LBRACK] = ACTIONS(6174), + [anon_sym_void] = ACTIONS(6176), + [anon_sym_noreturn] = ACTIONS(6176), + [anon_sym_type] = ACTIONS(6176), + [anon_sym_anyopaque] = ACTIONS(6176), + [anon_sym_bool] = ACTIONS(6176), + [anon_sym_int] = ACTIONS(6176), + [anon_sym_uint] = ACTIONS(6176), + [anon_sym_float] = ACTIONS(6176), + [anon_sym_range] = ACTIONS(6176), + [anon_sym_i8] = ACTIONS(6176), + [anon_sym_i16] = ACTIONS(6176), + [anon_sym_i32] = ACTIONS(6176), + [anon_sym_i64] = ACTIONS(6176), + [anon_sym_u8] = ACTIONS(6176), + [anon_sym_u16] = ACTIONS(6176), + [anon_sym_u32] = ACTIONS(6176), + [anon_sym_u64] = ACTIONS(6176), + [anon_sym_isize] = ACTIONS(6176), + [anon_sym_usize] = ACTIONS(6176), + [anon_sym_f32] = ACTIONS(6176), + [anon_sym_f64] = ACTIONS(6176), + [anon_sym_c_char] = ACTIONS(6176), + [anon_sym_c_schar] = ACTIONS(6176), + [anon_sym_c_uchar] = ACTIONS(6176), + [anon_sym_c_short] = ACTIONS(6176), + [anon_sym_c_ushort] = ACTIONS(6176), + [anon_sym_c_int] = ACTIONS(6176), + [anon_sym_c_uint] = ACTIONS(6176), + [anon_sym_c_long] = ACTIONS(6176), + [anon_sym_c_ulong] = ACTIONS(6176), + [anon_sym_c_longlong] = ACTIONS(6176), + [anon_sym_c_ulonglong] = ACTIONS(6176), + [anon_sym_c_float] = ACTIONS(6176), + [anon_sym_c_double] = ACTIONS(6176), + [anon_sym_c_longdouble] = ACTIONS(6176), + [anon_sym_PLUS_EQ] = ACTIONS(6174), + [anon_sym_DASH_EQ] = ACTIONS(6174), + [anon_sym_STAR_EQ] = ACTIONS(6174), + [anon_sym_SLASH_EQ] = ACTIONS(6174), + [anon_sym_AMP_EQ] = ACTIONS(6174), + [anon_sym_PIPE_EQ] = ACTIONS(6176), + [anon_sym_xor_EQ] = ACTIONS(6174), + [anon_sym_LT_LT_EQ] = ACTIONS(6174), + [anon_sym_GT_GT_EQ] = ACTIONS(6174), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6174), + [anon_sym_return] = ACTIONS(6176), + [anon_sym_yield] = ACTIONS(6176), + [anon_sym_break] = ACTIONS(6176), + [anon_sym_continue] = ACTIONS(6176), + [anon_sym_defer] = ACTIONS(6176), + [anon_sym_errdefer] = ACTIONS(6176), + [anon_sym_if] = ACTIONS(6176), + [anon_sym_else] = ACTIONS(6176), + [anon_sym_while] = ACTIONS(6176), + [anon_sym_expand] = ACTIONS(6176), + [anon_sym_for] = ACTIONS(6176), + [anon_sym_PIPE2] = ACTIONS(6174), + [anon_sym_match] = ACTIONS(6176), + [anon_sym_DOT_DOT] = ACTIONS(6176), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6174), + [anon_sym_orelse] = ACTIONS(6176), + [anon_sym_or] = ACTIONS(6176), + [anon_sym_and] = ACTIONS(6176), + [anon_sym_EQ_EQ] = ACTIONS(6174), + [anon_sym_BANG_EQ] = ACTIONS(6174), + [anon_sym_LT] = ACTIONS(6176), + [anon_sym_LT_EQ] = ACTIONS(6174), + [anon_sym_GT] = ACTIONS(6176), + [anon_sym_GT_EQ] = ACTIONS(6174), + [anon_sym_AMP] = ACTIONS(6176), + [anon_sym_xor] = ACTIONS(6176), + [anon_sym_LT_LT] = ACTIONS(6176), + [anon_sym_GT_GT] = ACTIONS(6176), + [anon_sym_LT_LT_PIPE] = ACTIONS(6176), + [anon_sym_PLUS] = ACTIONS(6176), + [anon_sym_SLASH] = ACTIONS(6176), + [anon_sym_catch] = ACTIONS(6176), + [anon_sym_TILDE] = ACTIONS(6174), + [anon_sym_try] = ACTIONS(6176), + [anon_sym_DOT] = ACTIONS(6176), + [anon_sym_CARET] = ACTIONS(6174), + [anon_sym_true] = ACTIONS(6176), + [anon_sym_false] = ACTIONS(6176), + [anon_sym_null] = ACTIONS(6176), + [anon_sym_unreachable] = ACTIONS(6176), + [anon_sym_undefined] = ACTIONS(6176), + [sym_sink] = ACTIONS(6176), + [sym_integer] = ACTIONS(6176), + [sym_float] = ACTIONS(6174), + [anon_sym_DQUOTE] = ACTIONS(6174), + [sym_multiline_string] = ACTIONS(6174), + [sym_character] = ACTIONS(6174), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6174), + }, + [STATE(3497)] = { + [sym_identifier] = ACTIONS(6186), + [anon_sym_func] = ACTIONS(6186), + [anon_sym_BANG] = ACTIONS(6186), + [anon_sym_EQ] = ACTIONS(6186), + [anon_sym_struct] = ACTIONS(6186), + [anon_sym_LPAREN] = ACTIONS(6184), + [anon_sym_LBRACE] = ACTIONS(6184), + [anon_sym_DASH] = ACTIONS(6186), + [anon_sym_DOLLAR] = ACTIONS(6184), + [anon_sym_PIPE] = ACTIONS(6186), + [anon_sym_QMARK] = ACTIONS(6184), + [anon_sym_STAR] = ACTIONS(6186), + [anon_sym_LBRACK] = ACTIONS(6184), + [anon_sym_void] = ACTIONS(6186), + [anon_sym_noreturn] = ACTIONS(6186), + [anon_sym_type] = ACTIONS(6186), + [anon_sym_anyopaque] = ACTIONS(6186), + [anon_sym_bool] = ACTIONS(6186), + [anon_sym_int] = ACTIONS(6186), + [anon_sym_uint] = ACTIONS(6186), + [anon_sym_float] = ACTIONS(6186), + [anon_sym_range] = ACTIONS(6186), + [anon_sym_i8] = ACTIONS(6186), + [anon_sym_i16] = ACTIONS(6186), + [anon_sym_i32] = ACTIONS(6186), + [anon_sym_i64] = ACTIONS(6186), + [anon_sym_u8] = ACTIONS(6186), + [anon_sym_u16] = ACTIONS(6186), + [anon_sym_u32] = ACTIONS(6186), + [anon_sym_u64] = ACTIONS(6186), + [anon_sym_isize] = ACTIONS(6186), + [anon_sym_usize] = ACTIONS(6186), + [anon_sym_f32] = ACTIONS(6186), + [anon_sym_f64] = ACTIONS(6186), + [anon_sym_c_char] = ACTIONS(6186), + [anon_sym_c_schar] = ACTIONS(6186), + [anon_sym_c_uchar] = ACTIONS(6186), + [anon_sym_c_short] = ACTIONS(6186), + [anon_sym_c_ushort] = ACTIONS(6186), + [anon_sym_c_int] = ACTIONS(6186), + [anon_sym_c_uint] = ACTIONS(6186), + [anon_sym_c_long] = ACTIONS(6186), + [anon_sym_c_ulong] = ACTIONS(6186), + [anon_sym_c_longlong] = ACTIONS(6186), + [anon_sym_c_ulonglong] = ACTIONS(6186), + [anon_sym_c_float] = ACTIONS(6186), + [anon_sym_c_double] = ACTIONS(6186), + [anon_sym_c_longdouble] = ACTIONS(6186), + [anon_sym_PLUS_EQ] = ACTIONS(6184), + [anon_sym_DASH_EQ] = ACTIONS(6184), + [anon_sym_STAR_EQ] = ACTIONS(6184), + [anon_sym_SLASH_EQ] = ACTIONS(6184), + [anon_sym_AMP_EQ] = ACTIONS(6184), + [anon_sym_PIPE_EQ] = ACTIONS(6186), + [anon_sym_xor_EQ] = ACTIONS(6184), + [anon_sym_LT_LT_EQ] = ACTIONS(6184), + [anon_sym_GT_GT_EQ] = ACTIONS(6184), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6184), + [anon_sym_return] = ACTIONS(6186), + [anon_sym_yield] = ACTIONS(6186), + [anon_sym_break] = ACTIONS(6186), + [anon_sym_continue] = ACTIONS(6186), + [anon_sym_defer] = ACTIONS(6186), + [anon_sym_errdefer] = ACTIONS(6186), + [anon_sym_if] = ACTIONS(6186), + [anon_sym_else] = ACTIONS(6186), + [anon_sym_while] = ACTIONS(6186), + [anon_sym_expand] = ACTIONS(6186), + [anon_sym_for] = ACTIONS(6186), + [anon_sym_PIPE2] = ACTIONS(6184), + [anon_sym_match] = ACTIONS(6186), + [anon_sym_DOT_DOT] = ACTIONS(6186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6184), + [anon_sym_orelse] = ACTIONS(6186), + [anon_sym_or] = ACTIONS(6186), + [anon_sym_and] = ACTIONS(6186), + [anon_sym_EQ_EQ] = ACTIONS(6184), + [anon_sym_BANG_EQ] = ACTIONS(6184), + [anon_sym_LT] = ACTIONS(6186), + [anon_sym_LT_EQ] = ACTIONS(6184), + [anon_sym_GT] = ACTIONS(6186), + [anon_sym_GT_EQ] = ACTIONS(6184), + [anon_sym_AMP] = ACTIONS(6186), + [anon_sym_xor] = ACTIONS(6186), + [anon_sym_LT_LT] = ACTIONS(6186), + [anon_sym_GT_GT] = ACTIONS(6186), + [anon_sym_LT_LT_PIPE] = ACTIONS(6186), + [anon_sym_PLUS] = ACTIONS(6186), + [anon_sym_SLASH] = ACTIONS(6186), + [anon_sym_catch] = ACTIONS(6186), + [anon_sym_TILDE] = ACTIONS(6184), + [anon_sym_try] = ACTIONS(6186), + [anon_sym_DOT] = ACTIONS(6186), + [anon_sym_CARET] = ACTIONS(6184), + [anon_sym_true] = ACTIONS(6186), + [anon_sym_false] = ACTIONS(6186), + [anon_sym_null] = ACTIONS(6186), + [anon_sym_unreachable] = ACTIONS(6186), + [anon_sym_undefined] = ACTIONS(6186), + [sym_sink] = ACTIONS(6186), + [sym_integer] = ACTIONS(6186), + [sym_float] = ACTIONS(6184), + [anon_sym_DQUOTE] = ACTIONS(6184), + [sym_multiline_string] = ACTIONS(6184), + [sym_character] = ACTIONS(6184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6184), + }, + [STATE(3498)] = { + [sym_identifier] = ACTIONS(6190), + [anon_sym_func] = ACTIONS(6190), + [anon_sym_BANG] = ACTIONS(6190), + [anon_sym_EQ] = ACTIONS(6190), + [anon_sym_struct] = ACTIONS(6190), + [anon_sym_LPAREN] = ACTIONS(6188), + [anon_sym_LBRACE] = ACTIONS(6188), + [anon_sym_DASH] = ACTIONS(6190), + [anon_sym_DOLLAR] = ACTIONS(6188), + [anon_sym_PIPE] = ACTIONS(6190), + [anon_sym_QMARK] = ACTIONS(6188), + [anon_sym_STAR] = ACTIONS(6190), + [anon_sym_LBRACK] = ACTIONS(6188), + [anon_sym_void] = ACTIONS(6190), + [anon_sym_noreturn] = ACTIONS(6190), + [anon_sym_type] = ACTIONS(6190), + [anon_sym_anyopaque] = ACTIONS(6190), + [anon_sym_bool] = ACTIONS(6190), + [anon_sym_int] = ACTIONS(6190), + [anon_sym_uint] = ACTIONS(6190), + [anon_sym_float] = ACTIONS(6190), + [anon_sym_range] = ACTIONS(6190), + [anon_sym_i8] = ACTIONS(6190), + [anon_sym_i16] = ACTIONS(6190), + [anon_sym_i32] = ACTIONS(6190), + [anon_sym_i64] = ACTIONS(6190), + [anon_sym_u8] = ACTIONS(6190), + [anon_sym_u16] = ACTIONS(6190), + [anon_sym_u32] = ACTIONS(6190), + [anon_sym_u64] = ACTIONS(6190), + [anon_sym_isize] = ACTIONS(6190), + [anon_sym_usize] = ACTIONS(6190), + [anon_sym_f32] = ACTIONS(6190), + [anon_sym_f64] = ACTIONS(6190), + [anon_sym_c_char] = ACTIONS(6190), + [anon_sym_c_schar] = ACTIONS(6190), + [anon_sym_c_uchar] = ACTIONS(6190), + [anon_sym_c_short] = ACTIONS(6190), + [anon_sym_c_ushort] = ACTIONS(6190), + [anon_sym_c_int] = ACTIONS(6190), + [anon_sym_c_uint] = ACTIONS(6190), + [anon_sym_c_long] = ACTIONS(6190), + [anon_sym_c_ulong] = ACTIONS(6190), + [anon_sym_c_longlong] = ACTIONS(6190), + [anon_sym_c_ulonglong] = ACTIONS(6190), + [anon_sym_c_float] = ACTIONS(6190), + [anon_sym_c_double] = ACTIONS(6190), + [anon_sym_c_longdouble] = ACTIONS(6190), + [anon_sym_PLUS_EQ] = ACTIONS(6188), + [anon_sym_DASH_EQ] = ACTIONS(6188), + [anon_sym_STAR_EQ] = ACTIONS(6188), + [anon_sym_SLASH_EQ] = ACTIONS(6188), + [anon_sym_AMP_EQ] = ACTIONS(6188), + [anon_sym_PIPE_EQ] = ACTIONS(6190), + [anon_sym_xor_EQ] = ACTIONS(6188), + [anon_sym_LT_LT_EQ] = ACTIONS(6188), + [anon_sym_GT_GT_EQ] = ACTIONS(6188), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6188), + [anon_sym_return] = ACTIONS(6190), + [anon_sym_yield] = ACTIONS(6190), + [anon_sym_break] = ACTIONS(6190), + [anon_sym_continue] = ACTIONS(6190), + [anon_sym_defer] = ACTIONS(6190), + [anon_sym_errdefer] = ACTIONS(6190), + [anon_sym_if] = ACTIONS(6190), + [anon_sym_else] = ACTIONS(6190), + [anon_sym_while] = ACTIONS(6190), + [anon_sym_expand] = ACTIONS(6190), + [anon_sym_for] = ACTIONS(6190), + [anon_sym_PIPE2] = ACTIONS(6188), + [anon_sym_match] = ACTIONS(6190), + [anon_sym_DOT_DOT] = ACTIONS(6190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6188), + [anon_sym_orelse] = ACTIONS(6190), + [anon_sym_or] = ACTIONS(6190), + [anon_sym_and] = ACTIONS(6190), + [anon_sym_EQ_EQ] = ACTIONS(6188), + [anon_sym_BANG_EQ] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(6190), + [anon_sym_LT_EQ] = ACTIONS(6188), + [anon_sym_GT] = ACTIONS(6190), + [anon_sym_GT_EQ] = ACTIONS(6188), + [anon_sym_AMP] = ACTIONS(6190), + [anon_sym_xor] = ACTIONS(6190), + [anon_sym_LT_LT] = ACTIONS(6190), + [anon_sym_GT_GT] = ACTIONS(6190), + [anon_sym_LT_LT_PIPE] = ACTIONS(6190), + [anon_sym_PLUS] = ACTIONS(6190), + [anon_sym_SLASH] = ACTIONS(6190), + [anon_sym_catch] = ACTIONS(6190), + [anon_sym_TILDE] = ACTIONS(6188), + [anon_sym_try] = ACTIONS(6190), + [anon_sym_DOT] = ACTIONS(6190), + [anon_sym_CARET] = ACTIONS(6188), + [anon_sym_true] = ACTIONS(6190), + [anon_sym_false] = ACTIONS(6190), + [anon_sym_null] = ACTIONS(6190), + [anon_sym_unreachable] = ACTIONS(6190), + [anon_sym_undefined] = ACTIONS(6190), + [sym_sink] = ACTIONS(6190), + [sym_integer] = ACTIONS(6190), + [sym_float] = ACTIONS(6188), + [anon_sym_DQUOTE] = ACTIONS(6188), + [sym_multiline_string] = ACTIONS(6188), + [sym_character] = ACTIONS(6188), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6188), + }, + [STATE(3499)] = { + [sym_identifier] = ACTIONS(6194), + [anon_sym_func] = ACTIONS(6194), + [anon_sym_BANG] = ACTIONS(6194), + [anon_sym_EQ] = ACTIONS(6194), + [anon_sym_struct] = ACTIONS(6194), + [anon_sym_LPAREN] = ACTIONS(6192), + [anon_sym_LBRACE] = ACTIONS(6192), + [anon_sym_DASH] = ACTIONS(6194), + [anon_sym_DOLLAR] = ACTIONS(6192), + [anon_sym_PIPE] = ACTIONS(6194), + [anon_sym_QMARK] = ACTIONS(6192), + [anon_sym_STAR] = ACTIONS(6194), + [anon_sym_LBRACK] = ACTIONS(6192), + [anon_sym_void] = ACTIONS(6194), + [anon_sym_noreturn] = ACTIONS(6194), + [anon_sym_type] = ACTIONS(6194), + [anon_sym_anyopaque] = ACTIONS(6194), + [anon_sym_bool] = ACTIONS(6194), + [anon_sym_int] = ACTIONS(6194), + [anon_sym_uint] = ACTIONS(6194), + [anon_sym_float] = ACTIONS(6194), + [anon_sym_range] = ACTIONS(6194), + [anon_sym_i8] = ACTIONS(6194), + [anon_sym_i16] = ACTIONS(6194), + [anon_sym_i32] = ACTIONS(6194), + [anon_sym_i64] = ACTIONS(6194), + [anon_sym_u8] = ACTIONS(6194), + [anon_sym_u16] = ACTIONS(6194), + [anon_sym_u32] = ACTIONS(6194), + [anon_sym_u64] = ACTIONS(6194), + [anon_sym_isize] = ACTIONS(6194), + [anon_sym_usize] = ACTIONS(6194), + [anon_sym_f32] = ACTIONS(6194), + [anon_sym_f64] = ACTIONS(6194), + [anon_sym_c_char] = ACTIONS(6194), + [anon_sym_c_schar] = ACTIONS(6194), + [anon_sym_c_uchar] = ACTIONS(6194), + [anon_sym_c_short] = ACTIONS(6194), + [anon_sym_c_ushort] = ACTIONS(6194), + [anon_sym_c_int] = ACTIONS(6194), + [anon_sym_c_uint] = ACTIONS(6194), + [anon_sym_c_long] = ACTIONS(6194), + [anon_sym_c_ulong] = ACTIONS(6194), + [anon_sym_c_longlong] = ACTIONS(6194), + [anon_sym_c_ulonglong] = ACTIONS(6194), + [anon_sym_c_float] = ACTIONS(6194), + [anon_sym_c_double] = ACTIONS(6194), + [anon_sym_c_longdouble] = ACTIONS(6194), + [anon_sym_PLUS_EQ] = ACTIONS(6192), + [anon_sym_DASH_EQ] = ACTIONS(6192), + [anon_sym_STAR_EQ] = ACTIONS(6192), + [anon_sym_SLASH_EQ] = ACTIONS(6192), + [anon_sym_AMP_EQ] = ACTIONS(6192), + [anon_sym_PIPE_EQ] = ACTIONS(6194), + [anon_sym_xor_EQ] = ACTIONS(6192), + [anon_sym_LT_LT_EQ] = ACTIONS(6192), + [anon_sym_GT_GT_EQ] = ACTIONS(6192), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6192), + [anon_sym_return] = ACTIONS(6194), + [anon_sym_yield] = ACTIONS(6194), + [anon_sym_break] = ACTIONS(6194), + [anon_sym_continue] = ACTIONS(6194), + [anon_sym_defer] = ACTIONS(6194), + [anon_sym_errdefer] = ACTIONS(6194), + [anon_sym_if] = ACTIONS(6194), + [anon_sym_else] = ACTIONS(6194), + [anon_sym_while] = ACTIONS(6194), + [anon_sym_expand] = ACTIONS(6194), + [anon_sym_for] = ACTIONS(6194), + [anon_sym_PIPE2] = ACTIONS(6192), + [anon_sym_match] = ACTIONS(6194), + [anon_sym_DOT_DOT] = ACTIONS(6194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6192), + [anon_sym_orelse] = ACTIONS(6194), + [anon_sym_or] = ACTIONS(6194), + [anon_sym_and] = ACTIONS(6194), + [anon_sym_EQ_EQ] = ACTIONS(6192), + [anon_sym_BANG_EQ] = ACTIONS(6192), + [anon_sym_LT] = ACTIONS(6194), + [anon_sym_LT_EQ] = ACTIONS(6192), + [anon_sym_GT] = ACTIONS(6194), + [anon_sym_GT_EQ] = ACTIONS(6192), + [anon_sym_AMP] = ACTIONS(6194), + [anon_sym_xor] = ACTIONS(6194), + [anon_sym_LT_LT] = ACTIONS(6194), + [anon_sym_GT_GT] = ACTIONS(6194), + [anon_sym_LT_LT_PIPE] = ACTIONS(6194), + [anon_sym_PLUS] = ACTIONS(6194), + [anon_sym_SLASH] = ACTIONS(6194), + [anon_sym_catch] = ACTIONS(6194), + [anon_sym_TILDE] = ACTIONS(6192), + [anon_sym_try] = ACTIONS(6194), + [anon_sym_DOT] = ACTIONS(6194), + [anon_sym_CARET] = ACTIONS(6192), + [anon_sym_true] = ACTIONS(6194), + [anon_sym_false] = ACTIONS(6194), + [anon_sym_null] = ACTIONS(6194), + [anon_sym_unreachable] = ACTIONS(6194), + [anon_sym_undefined] = ACTIONS(6194), + [sym_sink] = ACTIONS(6194), + [sym_integer] = ACTIONS(6194), + [sym_float] = ACTIONS(6192), + [anon_sym_DQUOTE] = ACTIONS(6192), + [sym_multiline_string] = ACTIONS(6192), + [sym_character] = ACTIONS(6192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6192), + }, + [STATE(3500)] = { + [sym_identifier] = ACTIONS(6198), + [anon_sym_func] = ACTIONS(6198), + [anon_sym_BANG] = ACTIONS(6198), + [anon_sym_EQ] = ACTIONS(6198), + [anon_sym_struct] = ACTIONS(6198), + [anon_sym_LPAREN] = ACTIONS(6196), + [anon_sym_LBRACE] = ACTIONS(6196), + [anon_sym_DASH] = ACTIONS(6198), + [anon_sym_DOLLAR] = ACTIONS(6196), + [anon_sym_PIPE] = ACTIONS(6198), + [anon_sym_QMARK] = ACTIONS(6196), + [anon_sym_STAR] = ACTIONS(6198), + [anon_sym_LBRACK] = ACTIONS(6196), + [anon_sym_void] = ACTIONS(6198), + [anon_sym_noreturn] = ACTIONS(6198), + [anon_sym_type] = ACTIONS(6198), + [anon_sym_anyopaque] = ACTIONS(6198), + [anon_sym_bool] = ACTIONS(6198), + [anon_sym_int] = ACTIONS(6198), + [anon_sym_uint] = ACTIONS(6198), + [anon_sym_float] = ACTIONS(6198), + [anon_sym_range] = ACTIONS(6198), + [anon_sym_i8] = ACTIONS(6198), + [anon_sym_i16] = ACTIONS(6198), + [anon_sym_i32] = ACTIONS(6198), + [anon_sym_i64] = ACTIONS(6198), + [anon_sym_u8] = ACTIONS(6198), + [anon_sym_u16] = ACTIONS(6198), + [anon_sym_u32] = ACTIONS(6198), + [anon_sym_u64] = ACTIONS(6198), + [anon_sym_isize] = ACTIONS(6198), + [anon_sym_usize] = ACTIONS(6198), + [anon_sym_f32] = ACTIONS(6198), + [anon_sym_f64] = ACTIONS(6198), + [anon_sym_c_char] = ACTIONS(6198), + [anon_sym_c_schar] = ACTIONS(6198), + [anon_sym_c_uchar] = ACTIONS(6198), + [anon_sym_c_short] = ACTIONS(6198), + [anon_sym_c_ushort] = ACTIONS(6198), + [anon_sym_c_int] = ACTIONS(6198), + [anon_sym_c_uint] = ACTIONS(6198), + [anon_sym_c_long] = ACTIONS(6198), + [anon_sym_c_ulong] = ACTIONS(6198), + [anon_sym_c_longlong] = ACTIONS(6198), + [anon_sym_c_ulonglong] = ACTIONS(6198), + [anon_sym_c_float] = ACTIONS(6198), + [anon_sym_c_double] = ACTIONS(6198), + [anon_sym_c_longdouble] = ACTIONS(6198), + [anon_sym_PLUS_EQ] = ACTIONS(6196), + [anon_sym_DASH_EQ] = ACTIONS(6196), + [anon_sym_STAR_EQ] = ACTIONS(6196), + [anon_sym_SLASH_EQ] = ACTIONS(6196), + [anon_sym_AMP_EQ] = ACTIONS(6196), + [anon_sym_PIPE_EQ] = ACTIONS(6198), + [anon_sym_xor_EQ] = ACTIONS(6196), + [anon_sym_LT_LT_EQ] = ACTIONS(6196), + [anon_sym_GT_GT_EQ] = ACTIONS(6196), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6196), + [anon_sym_return] = ACTIONS(6198), + [anon_sym_yield] = ACTIONS(6198), + [anon_sym_break] = ACTIONS(6198), + [anon_sym_continue] = ACTIONS(6198), + [anon_sym_defer] = ACTIONS(6198), + [anon_sym_errdefer] = ACTIONS(6198), + [anon_sym_if] = ACTIONS(6198), + [anon_sym_else] = ACTIONS(6198), + [anon_sym_while] = ACTIONS(6198), + [anon_sym_expand] = ACTIONS(6198), + [anon_sym_for] = ACTIONS(6198), + [anon_sym_PIPE2] = ACTIONS(6196), + [anon_sym_match] = ACTIONS(6198), + [anon_sym_DOT_DOT] = ACTIONS(6198), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6196), + [anon_sym_orelse] = ACTIONS(6198), + [anon_sym_or] = ACTIONS(6198), + [anon_sym_and] = ACTIONS(6198), + [anon_sym_EQ_EQ] = ACTIONS(6196), + [anon_sym_BANG_EQ] = ACTIONS(6196), + [anon_sym_LT] = ACTIONS(6198), + [anon_sym_LT_EQ] = ACTIONS(6196), + [anon_sym_GT] = ACTIONS(6198), + [anon_sym_GT_EQ] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6198), + [anon_sym_xor] = ACTIONS(6198), + [anon_sym_LT_LT] = ACTIONS(6198), + [anon_sym_GT_GT] = ACTIONS(6198), + [anon_sym_LT_LT_PIPE] = ACTIONS(6198), + [anon_sym_PLUS] = ACTIONS(6198), + [anon_sym_SLASH] = ACTIONS(6198), + [anon_sym_catch] = ACTIONS(6198), + [anon_sym_TILDE] = ACTIONS(6196), + [anon_sym_try] = ACTIONS(6198), + [anon_sym_DOT] = ACTIONS(6198), + [anon_sym_CARET] = ACTIONS(6196), + [anon_sym_true] = ACTIONS(6198), + [anon_sym_false] = ACTIONS(6198), + [anon_sym_null] = ACTIONS(6198), + [anon_sym_unreachable] = ACTIONS(6198), + [anon_sym_undefined] = ACTIONS(6198), + [sym_sink] = ACTIONS(6198), + [sym_integer] = ACTIONS(6198), + [sym_float] = ACTIONS(6196), + [anon_sym_DQUOTE] = ACTIONS(6196), + [sym_multiline_string] = ACTIONS(6196), + [sym_character] = ACTIONS(6196), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6196), + }, + [STATE(3501)] = { + [sym_identifier] = 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(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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(1198), + [anon_sym_DASH_EQ] = ACTIONS(1198), + [anon_sym_STAR_EQ] = ACTIONS(1198), + [anon_sym_SLASH_EQ] = ACTIONS(1198), + [anon_sym_AMP_EQ] = ACTIONS(1198), + [anon_sym_PIPE_EQ] = ACTIONS(1194), + [anon_sym_xor_EQ] = ACTIONS(1198), + [anon_sym_LT_LT_EQ] = ACTIONS(1198), + [anon_sym_GT_GT_EQ] = ACTIONS(1198), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1198), + [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_PIPE2] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(3502)] = { + [sym_identifier] = ACTIONS(6256), + [anon_sym_func] = ACTIONS(6256), + [anon_sym_BANG] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6256), + [anon_sym_struct] = ACTIONS(6256), + [anon_sym_LPAREN] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6254), + [anon_sym_DASH] = ACTIONS(6256), + [anon_sym_DOLLAR] = ACTIONS(6254), + [anon_sym_PIPE] = ACTIONS(6256), + [anon_sym_QMARK] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_void] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym_type] = ACTIONS(6256), + [anon_sym_anyopaque] = ACTIONS(6256), + [anon_sym_bool] = ACTIONS(6256), + [anon_sym_int] = ACTIONS(6256), + [anon_sym_uint] = ACTIONS(6256), + [anon_sym_float] = ACTIONS(6256), + [anon_sym_range] = ACTIONS(6256), + [anon_sym_i8] = ACTIONS(6256), + [anon_sym_i16] = ACTIONS(6256), + [anon_sym_i32] = ACTIONS(6256), + [anon_sym_i64] = ACTIONS(6256), + [anon_sym_u8] = ACTIONS(6256), + [anon_sym_u16] = ACTIONS(6256), + [anon_sym_u32] = ACTIONS(6256), + [anon_sym_u64] = ACTIONS(6256), + [anon_sym_isize] = ACTIONS(6256), + [anon_sym_usize] = ACTIONS(6256), + [anon_sym_f32] = ACTIONS(6256), + [anon_sym_f64] = ACTIONS(6256), + [anon_sym_c_char] = ACTIONS(6256), + [anon_sym_c_schar] = ACTIONS(6256), + [anon_sym_c_uchar] = ACTIONS(6256), + [anon_sym_c_short] = ACTIONS(6256), + [anon_sym_c_ushort] = ACTIONS(6256), + [anon_sym_c_int] = ACTIONS(6256), + [anon_sym_c_uint] = ACTIONS(6256), + [anon_sym_c_long] = ACTIONS(6256), + [anon_sym_c_ulong] = ACTIONS(6256), + [anon_sym_c_longlong] = ACTIONS(6256), + [anon_sym_c_ulonglong] = ACTIONS(6256), + [anon_sym_c_float] = ACTIONS(6256), + [anon_sym_c_double] = ACTIONS(6256), + [anon_sym_c_longdouble] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6254), + [anon_sym_DASH_EQ] = ACTIONS(6254), + [anon_sym_STAR_EQ] = ACTIONS(6254), + [anon_sym_SLASH_EQ] = ACTIONS(6254), + [anon_sym_AMP_EQ] = ACTIONS(6254), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_xor_EQ] = ACTIONS(6254), + [anon_sym_LT_LT_EQ] = ACTIONS(6254), + [anon_sym_GT_GT_EQ] = ACTIONS(6254), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6254), + [anon_sym_return] = ACTIONS(6256), + [anon_sym_yield] = ACTIONS(6256), + [anon_sym_break] = ACTIONS(6256), + [anon_sym_continue] = ACTIONS(6256), + [anon_sym_defer] = ACTIONS(6256), + [anon_sym_errdefer] = ACTIONS(6256), + [anon_sym_if] = ACTIONS(6256), + [anon_sym_else] = ACTIONS(6256), + [anon_sym_while] = ACTIONS(6256), + [anon_sym_expand] = ACTIONS(6256), + [anon_sym_for] = ACTIONS(6256), + [anon_sym_PIPE2] = ACTIONS(6254), + [anon_sym_match] = ACTIONS(6256), + [anon_sym_DOT_DOT] = ACTIONS(6256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6254), + [anon_sym_orelse] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6256), + [anon_sym_and] = ACTIONS(6256), + [anon_sym_EQ_EQ] = ACTIONS(6254), + [anon_sym_BANG_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_GT] = ACTIONS(6256), + [anon_sym_GT_EQ] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6256), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6256), + [anon_sym_LT_LT_PIPE] = ACTIONS(6256), + [anon_sym_PLUS] = ACTIONS(6256), + [anon_sym_SLASH] = ACTIONS(6256), + [anon_sym_catch] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6254), + [anon_sym_try] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6256), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_true] = ACTIONS(6256), + [anon_sym_false] = ACTIONS(6256), + [anon_sym_null] = ACTIONS(6256), + [anon_sym_unreachable] = ACTIONS(6256), + [anon_sym_undefined] = ACTIONS(6256), + [sym_sink] = ACTIONS(6256), + [sym_integer] = ACTIONS(6256), + [sym_float] = ACTIONS(6254), + [anon_sym_DQUOTE] = ACTIONS(6254), + [sym_multiline_string] = ACTIONS(6254), + [sym_character] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6254), + }, + [STATE(3503)] = { + [sym_identifier] = ACTIONS(6272), + [anon_sym_func] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6272), + [anon_sym_struct] = ACTIONS(6272), + [anon_sym_LPAREN] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6270), + [anon_sym_DASH] = ACTIONS(6272), + [anon_sym_DOLLAR] = ACTIONS(6270), + [anon_sym_PIPE] = ACTIONS(6272), + [anon_sym_QMARK] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_void] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym_type] = ACTIONS(6272), + [anon_sym_anyopaque] = ACTIONS(6272), + [anon_sym_bool] = ACTIONS(6272), + [anon_sym_int] = ACTIONS(6272), + [anon_sym_uint] = ACTIONS(6272), + [anon_sym_float] = ACTIONS(6272), + [anon_sym_range] = ACTIONS(6272), + [anon_sym_i8] = ACTIONS(6272), + [anon_sym_i16] = ACTIONS(6272), + [anon_sym_i32] = ACTIONS(6272), + [anon_sym_i64] = ACTIONS(6272), + [anon_sym_u8] = ACTIONS(6272), + [anon_sym_u16] = ACTIONS(6272), + [anon_sym_u32] = ACTIONS(6272), + [anon_sym_u64] = ACTIONS(6272), + [anon_sym_isize] = ACTIONS(6272), + [anon_sym_usize] = ACTIONS(6272), + [anon_sym_f32] = ACTIONS(6272), + [anon_sym_f64] = ACTIONS(6272), + [anon_sym_c_char] = ACTIONS(6272), + [anon_sym_c_schar] = ACTIONS(6272), + [anon_sym_c_uchar] = ACTIONS(6272), + [anon_sym_c_short] = ACTIONS(6272), + [anon_sym_c_ushort] = ACTIONS(6272), + [anon_sym_c_int] = ACTIONS(6272), + [anon_sym_c_uint] = ACTIONS(6272), + [anon_sym_c_long] = ACTIONS(6272), + [anon_sym_c_ulong] = ACTIONS(6272), + [anon_sym_c_longlong] = ACTIONS(6272), + [anon_sym_c_ulonglong] = ACTIONS(6272), + [anon_sym_c_float] = ACTIONS(6272), + [anon_sym_c_double] = ACTIONS(6272), + [anon_sym_c_longdouble] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6270), + [anon_sym_DASH_EQ] = ACTIONS(6270), + [anon_sym_STAR_EQ] = ACTIONS(6270), + [anon_sym_SLASH_EQ] = ACTIONS(6270), + [anon_sym_AMP_EQ] = ACTIONS(6270), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_xor_EQ] = ACTIONS(6270), + [anon_sym_LT_LT_EQ] = ACTIONS(6270), + [anon_sym_GT_GT_EQ] = ACTIONS(6270), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6270), + [anon_sym_return] = ACTIONS(6272), + [anon_sym_yield] = ACTIONS(6272), + [anon_sym_break] = ACTIONS(6272), + [anon_sym_continue] = ACTIONS(6272), + [anon_sym_defer] = ACTIONS(6272), + [anon_sym_errdefer] = ACTIONS(6272), + [anon_sym_if] = ACTIONS(6272), + [anon_sym_else] = ACTIONS(6272), + [anon_sym_while] = ACTIONS(6272), + [anon_sym_expand] = ACTIONS(6272), + [anon_sym_for] = ACTIONS(6272), + [anon_sym_PIPE2] = ACTIONS(6270), + [anon_sym_match] = ACTIONS(6272), + [anon_sym_DOT_DOT] = ACTIONS(6272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6270), + [anon_sym_orelse] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6272), + [anon_sym_and] = ACTIONS(6272), + [anon_sym_EQ_EQ] = ACTIONS(6270), + [anon_sym_BANG_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_GT] = ACTIONS(6272), + [anon_sym_GT_EQ] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6272), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6272), + [anon_sym_LT_LT_PIPE] = ACTIONS(6272), + [anon_sym_PLUS] = ACTIONS(6272), + [anon_sym_SLASH] = ACTIONS(6272), + [anon_sym_catch] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6270), + [anon_sym_try] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6272), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_true] = ACTIONS(6272), + [anon_sym_false] = ACTIONS(6272), + [anon_sym_null] = ACTIONS(6272), + [anon_sym_unreachable] = ACTIONS(6272), + [anon_sym_undefined] = ACTIONS(6272), + [sym_sink] = ACTIONS(6272), + [sym_integer] = ACTIONS(6272), + [sym_float] = ACTIONS(6270), + [anon_sym_DQUOTE] = ACTIONS(6270), + [sym_multiline_string] = ACTIONS(6270), + [sym_character] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6270), + }, + [STATE(3504)] = { + [sym_identifier] = ACTIONS(6276), + [anon_sym_func] = ACTIONS(6276), + [anon_sym_BANG] = ACTIONS(6276), + [anon_sym_EQ] = ACTIONS(6276), + [anon_sym_struct] = ACTIONS(6276), + [anon_sym_LPAREN] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6276), + [anon_sym_DOLLAR] = ACTIONS(6274), + [anon_sym_PIPE] = ACTIONS(6276), + [anon_sym_QMARK] = ACTIONS(6274), + [anon_sym_STAR] = ACTIONS(6276), + [anon_sym_LBRACK] = ACTIONS(6274), + [anon_sym_void] = ACTIONS(6276), + [anon_sym_noreturn] = ACTIONS(6276), + [anon_sym_type] = ACTIONS(6276), + [anon_sym_anyopaque] = ACTIONS(6276), + [anon_sym_bool] = ACTIONS(6276), + [anon_sym_int] = ACTIONS(6276), + [anon_sym_uint] = ACTIONS(6276), + [anon_sym_float] = ACTIONS(6276), + [anon_sym_range] = ACTIONS(6276), + [anon_sym_i8] = ACTIONS(6276), + [anon_sym_i16] = ACTIONS(6276), + [anon_sym_i32] = ACTIONS(6276), + [anon_sym_i64] = ACTIONS(6276), + [anon_sym_u8] = ACTIONS(6276), + [anon_sym_u16] = ACTIONS(6276), + [anon_sym_u32] = ACTIONS(6276), + [anon_sym_u64] = ACTIONS(6276), + [anon_sym_isize] = ACTIONS(6276), + [anon_sym_usize] = ACTIONS(6276), + [anon_sym_f32] = ACTIONS(6276), + [anon_sym_f64] = ACTIONS(6276), + [anon_sym_c_char] = ACTIONS(6276), + [anon_sym_c_schar] = ACTIONS(6276), + [anon_sym_c_uchar] = ACTIONS(6276), + [anon_sym_c_short] = ACTIONS(6276), + [anon_sym_c_ushort] = ACTIONS(6276), + [anon_sym_c_int] = ACTIONS(6276), + [anon_sym_c_uint] = ACTIONS(6276), + [anon_sym_c_long] = ACTIONS(6276), + [anon_sym_c_ulong] = ACTIONS(6276), + [anon_sym_c_longlong] = ACTIONS(6276), + [anon_sym_c_ulonglong] = ACTIONS(6276), + [anon_sym_c_float] = ACTIONS(6276), + [anon_sym_c_double] = ACTIONS(6276), + [anon_sym_c_longdouble] = ACTIONS(6276), + [anon_sym_PLUS_EQ] = ACTIONS(6274), + [anon_sym_DASH_EQ] = ACTIONS(6274), + [anon_sym_STAR_EQ] = ACTIONS(6274), + [anon_sym_SLASH_EQ] = ACTIONS(6274), + [anon_sym_AMP_EQ] = ACTIONS(6274), + [anon_sym_PIPE_EQ] = ACTIONS(6276), + [anon_sym_xor_EQ] = ACTIONS(6274), + [anon_sym_LT_LT_EQ] = ACTIONS(6274), + [anon_sym_GT_GT_EQ] = ACTIONS(6274), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6274), + [anon_sym_return] = ACTIONS(6276), + [anon_sym_yield] = ACTIONS(6276), + [anon_sym_break] = ACTIONS(6276), + [anon_sym_continue] = ACTIONS(6276), + [anon_sym_defer] = ACTIONS(6276), + [anon_sym_errdefer] = ACTIONS(6276), + [anon_sym_if] = ACTIONS(6276), + [anon_sym_else] = ACTIONS(6276), + [anon_sym_while] = ACTIONS(6276), + [anon_sym_expand] = ACTIONS(6276), + [anon_sym_for] = ACTIONS(6276), + [anon_sym_PIPE2] = ACTIONS(6274), + [anon_sym_match] = ACTIONS(6276), + [anon_sym_DOT_DOT] = ACTIONS(6276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6274), + [anon_sym_orelse] = ACTIONS(6276), + [anon_sym_or] = ACTIONS(6276), + [anon_sym_and] = ACTIONS(6276), + [anon_sym_EQ_EQ] = ACTIONS(6274), + [anon_sym_BANG_EQ] = ACTIONS(6274), + [anon_sym_LT] = ACTIONS(6276), + [anon_sym_LT_EQ] = ACTIONS(6274), + [anon_sym_GT] = ACTIONS(6276), + [anon_sym_GT_EQ] = ACTIONS(6274), + [anon_sym_AMP] = ACTIONS(6276), + [anon_sym_xor] = ACTIONS(6276), + [anon_sym_LT_LT] = ACTIONS(6276), + [anon_sym_GT_GT] = ACTIONS(6276), + [anon_sym_LT_LT_PIPE] = ACTIONS(6276), + [anon_sym_PLUS] = ACTIONS(6276), + [anon_sym_SLASH] = ACTIONS(6276), + [anon_sym_catch] = ACTIONS(6276), + [anon_sym_TILDE] = ACTIONS(6274), + [anon_sym_try] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(6276), + [anon_sym_CARET] = ACTIONS(6274), + [anon_sym_true] = ACTIONS(6276), + [anon_sym_false] = ACTIONS(6276), + [anon_sym_null] = ACTIONS(6276), + [anon_sym_unreachable] = ACTIONS(6276), + [anon_sym_undefined] = ACTIONS(6276), + [sym_sink] = ACTIONS(6276), + [sym_integer] = ACTIONS(6276), + [sym_float] = ACTIONS(6274), + [anon_sym_DQUOTE] = ACTIONS(6274), + [sym_multiline_string] = ACTIONS(6274), + [sym_character] = ACTIONS(6274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6274), + }, + [STATE(3505)] = { + [sym_identifier] = ACTIONS(6288), + [anon_sym_func] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(6288), + [anon_sym_EQ] = ACTIONS(6288), + [anon_sym_struct] = ACTIONS(6288), + [anon_sym_LPAREN] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6288), + [anon_sym_DOLLAR] = ACTIONS(6286), + [anon_sym_PIPE] = ACTIONS(6288), + [anon_sym_QMARK] = ACTIONS(6286), + [anon_sym_STAR] = ACTIONS(6288), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_void] = ACTIONS(6288), + [anon_sym_noreturn] = ACTIONS(6288), + [anon_sym_type] = ACTIONS(6288), + [anon_sym_anyopaque] = ACTIONS(6288), + [anon_sym_bool] = ACTIONS(6288), + [anon_sym_int] = ACTIONS(6288), + [anon_sym_uint] = ACTIONS(6288), + [anon_sym_float] = ACTIONS(6288), + [anon_sym_range] = ACTIONS(6288), + [anon_sym_i8] = ACTIONS(6288), + [anon_sym_i16] = ACTIONS(6288), + [anon_sym_i32] = ACTIONS(6288), + [anon_sym_i64] = ACTIONS(6288), + [anon_sym_u8] = ACTIONS(6288), + [anon_sym_u16] = ACTIONS(6288), + [anon_sym_u32] = ACTIONS(6288), + [anon_sym_u64] = ACTIONS(6288), + [anon_sym_isize] = ACTIONS(6288), + [anon_sym_usize] = ACTIONS(6288), + [anon_sym_f32] = ACTIONS(6288), + [anon_sym_f64] = ACTIONS(6288), + [anon_sym_c_char] = ACTIONS(6288), + [anon_sym_c_schar] = ACTIONS(6288), + [anon_sym_c_uchar] = ACTIONS(6288), + [anon_sym_c_short] = ACTIONS(6288), + [anon_sym_c_ushort] = ACTIONS(6288), + [anon_sym_c_int] = ACTIONS(6288), + [anon_sym_c_uint] = ACTIONS(6288), + [anon_sym_c_long] = ACTIONS(6288), + [anon_sym_c_ulong] = ACTIONS(6288), + [anon_sym_c_longlong] = ACTIONS(6288), + [anon_sym_c_ulonglong] = ACTIONS(6288), + [anon_sym_c_float] = ACTIONS(6288), + [anon_sym_c_double] = ACTIONS(6288), + [anon_sym_c_longdouble] = ACTIONS(6288), + [anon_sym_PLUS_EQ] = ACTIONS(6286), + [anon_sym_DASH_EQ] = ACTIONS(6286), + [anon_sym_STAR_EQ] = ACTIONS(6286), + [anon_sym_SLASH_EQ] = ACTIONS(6286), + [anon_sym_AMP_EQ] = ACTIONS(6286), + [anon_sym_PIPE_EQ] = ACTIONS(6288), + [anon_sym_xor_EQ] = ACTIONS(6286), + [anon_sym_LT_LT_EQ] = ACTIONS(6286), + [anon_sym_GT_GT_EQ] = ACTIONS(6286), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6286), + [anon_sym_return] = ACTIONS(6288), + [anon_sym_yield] = ACTIONS(6288), + [anon_sym_break] = ACTIONS(6288), + [anon_sym_continue] = ACTIONS(6288), + [anon_sym_defer] = ACTIONS(6288), + [anon_sym_errdefer] = ACTIONS(6288), + [anon_sym_if] = ACTIONS(6288), + [anon_sym_else] = ACTIONS(6288), + [anon_sym_while] = ACTIONS(6288), + [anon_sym_expand] = ACTIONS(6288), + [anon_sym_for] = ACTIONS(6288), + [anon_sym_PIPE2] = ACTIONS(6286), + [anon_sym_match] = ACTIONS(6288), + [anon_sym_DOT_DOT] = ACTIONS(6288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6286), + [anon_sym_orelse] = ACTIONS(6288), + [anon_sym_or] = ACTIONS(6288), + [anon_sym_and] = ACTIONS(6288), + [anon_sym_EQ_EQ] = ACTIONS(6286), + [anon_sym_BANG_EQ] = ACTIONS(6286), + [anon_sym_LT] = ACTIONS(6288), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6288), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_AMP] = ACTIONS(6288), + [anon_sym_xor] = ACTIONS(6288), + [anon_sym_LT_LT] = ACTIONS(6288), + [anon_sym_GT_GT] = ACTIONS(6288), + [anon_sym_LT_LT_PIPE] = ACTIONS(6288), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_SLASH] = ACTIONS(6288), + [anon_sym_catch] = ACTIONS(6288), + [anon_sym_TILDE] = ACTIONS(6286), + [anon_sym_try] = ACTIONS(6288), + [anon_sym_DOT] = ACTIONS(6288), + [anon_sym_CARET] = ACTIONS(6286), + [anon_sym_true] = ACTIONS(6288), + [anon_sym_false] = ACTIONS(6288), + [anon_sym_null] = ACTIONS(6288), + [anon_sym_unreachable] = ACTIONS(6288), + [anon_sym_undefined] = ACTIONS(6288), + [sym_sink] = ACTIONS(6288), + [sym_integer] = ACTIONS(6288), + [sym_float] = ACTIONS(6286), + [anon_sym_DQUOTE] = ACTIONS(6286), + [sym_multiline_string] = ACTIONS(6286), + [sym_character] = ACTIONS(6286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6286), + }, + [STATE(3506)] = { + [sym_identifier] = ACTIONS(6292), + [anon_sym_func] = ACTIONS(6292), + [anon_sym_BANG] = ACTIONS(6292), + [anon_sym_EQ] = ACTIONS(6292), + [anon_sym_struct] = ACTIONS(6292), + [anon_sym_LPAREN] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(6290), + [anon_sym_DASH] = ACTIONS(6292), + [anon_sym_DOLLAR] = ACTIONS(6290), + [anon_sym_PIPE] = ACTIONS(6292), + [anon_sym_QMARK] = ACTIONS(6290), + [anon_sym_STAR] = ACTIONS(6292), + [anon_sym_LBRACK] = ACTIONS(6290), + [anon_sym_void] = ACTIONS(6292), + [anon_sym_noreturn] = ACTIONS(6292), + [anon_sym_type] = ACTIONS(6292), + [anon_sym_anyopaque] = ACTIONS(6292), + [anon_sym_bool] = ACTIONS(6292), + [anon_sym_int] = ACTIONS(6292), + [anon_sym_uint] = ACTIONS(6292), + [anon_sym_float] = ACTIONS(6292), + [anon_sym_range] = ACTIONS(6292), + [anon_sym_i8] = ACTIONS(6292), + [anon_sym_i16] = ACTIONS(6292), + [anon_sym_i32] = ACTIONS(6292), + [anon_sym_i64] = ACTIONS(6292), + [anon_sym_u8] = ACTIONS(6292), + [anon_sym_u16] = ACTIONS(6292), + [anon_sym_u32] = ACTIONS(6292), + [anon_sym_u64] = ACTIONS(6292), + [anon_sym_isize] = ACTIONS(6292), + [anon_sym_usize] = ACTIONS(6292), + [anon_sym_f32] = ACTIONS(6292), + [anon_sym_f64] = ACTIONS(6292), + [anon_sym_c_char] = ACTIONS(6292), + [anon_sym_c_schar] = ACTIONS(6292), + [anon_sym_c_uchar] = ACTIONS(6292), + [anon_sym_c_short] = ACTIONS(6292), + [anon_sym_c_ushort] = ACTIONS(6292), + [anon_sym_c_int] = ACTIONS(6292), + [anon_sym_c_uint] = ACTIONS(6292), + [anon_sym_c_long] = ACTIONS(6292), + [anon_sym_c_ulong] = ACTIONS(6292), + [anon_sym_c_longlong] = ACTIONS(6292), + [anon_sym_c_ulonglong] = ACTIONS(6292), + [anon_sym_c_float] = ACTIONS(6292), + [anon_sym_c_double] = ACTIONS(6292), + [anon_sym_c_longdouble] = ACTIONS(6292), + [anon_sym_PLUS_EQ] = ACTIONS(6290), + [anon_sym_DASH_EQ] = ACTIONS(6290), + [anon_sym_STAR_EQ] = ACTIONS(6290), + [anon_sym_SLASH_EQ] = ACTIONS(6290), + [anon_sym_AMP_EQ] = ACTIONS(6290), + [anon_sym_PIPE_EQ] = ACTIONS(6292), + [anon_sym_xor_EQ] = ACTIONS(6290), + [anon_sym_LT_LT_EQ] = ACTIONS(6290), + [anon_sym_GT_GT_EQ] = ACTIONS(6290), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6290), + [anon_sym_return] = ACTIONS(6292), + [anon_sym_yield] = ACTIONS(6292), + [anon_sym_break] = ACTIONS(6292), + [anon_sym_continue] = ACTIONS(6292), + [anon_sym_defer] = ACTIONS(6292), + [anon_sym_errdefer] = ACTIONS(6292), + [anon_sym_if] = ACTIONS(6292), + [anon_sym_else] = ACTIONS(6292), + [anon_sym_while] = ACTIONS(6292), + [anon_sym_expand] = ACTIONS(6292), + [anon_sym_for] = ACTIONS(6292), + [anon_sym_PIPE2] = ACTIONS(6290), + [anon_sym_match] = ACTIONS(6292), + [anon_sym_DOT_DOT] = ACTIONS(6292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6290), + [anon_sym_orelse] = ACTIONS(6292), + [anon_sym_or] = ACTIONS(6292), + [anon_sym_and] = ACTIONS(6292), + [anon_sym_EQ_EQ] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6290), + [anon_sym_LT] = ACTIONS(6292), + [anon_sym_LT_EQ] = ACTIONS(6290), + [anon_sym_GT] = ACTIONS(6292), + [anon_sym_GT_EQ] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [anon_sym_xor] = ACTIONS(6292), + [anon_sym_LT_LT] = ACTIONS(6292), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_LT_LT_PIPE] = ACTIONS(6292), + [anon_sym_PLUS] = ACTIONS(6292), + [anon_sym_SLASH] = ACTIONS(6292), + [anon_sym_catch] = ACTIONS(6292), + [anon_sym_TILDE] = ACTIONS(6290), + [anon_sym_try] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_CARET] = ACTIONS(6290), + [anon_sym_true] = ACTIONS(6292), + [anon_sym_false] = ACTIONS(6292), + [anon_sym_null] = ACTIONS(6292), + [anon_sym_unreachable] = ACTIONS(6292), + [anon_sym_undefined] = ACTIONS(6292), + [sym_sink] = ACTIONS(6292), + [sym_integer] = ACTIONS(6292), + [sym_float] = ACTIONS(6290), + [anon_sym_DQUOTE] = ACTIONS(6290), + [sym_multiline_string] = ACTIONS(6290), + [sym_character] = ACTIONS(6290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6290), + }, + [STATE(3507)] = { + [sym_identifier] = ACTIONS(6296), + [anon_sym_func] = ACTIONS(6296), + [anon_sym_BANG] = ACTIONS(6296), + [anon_sym_EQ] = ACTIONS(6296), + [anon_sym_struct] = ACTIONS(6296), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6296), + [anon_sym_DOLLAR] = ACTIONS(6294), + [anon_sym_PIPE] = ACTIONS(6296), + [anon_sym_QMARK] = ACTIONS(6294), + [anon_sym_STAR] = ACTIONS(6296), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_void] = ACTIONS(6296), + [anon_sym_noreturn] = ACTIONS(6296), + [anon_sym_type] = ACTIONS(6296), + [anon_sym_anyopaque] = ACTIONS(6296), + [anon_sym_bool] = ACTIONS(6296), + [anon_sym_int] = ACTIONS(6296), + [anon_sym_uint] = ACTIONS(6296), + [anon_sym_float] = ACTIONS(6296), + [anon_sym_range] = ACTIONS(6296), + [anon_sym_i8] = ACTIONS(6296), + [anon_sym_i16] = ACTIONS(6296), + [anon_sym_i32] = ACTIONS(6296), + [anon_sym_i64] = ACTIONS(6296), + [anon_sym_u8] = ACTIONS(6296), + [anon_sym_u16] = ACTIONS(6296), + [anon_sym_u32] = ACTIONS(6296), + [anon_sym_u64] = ACTIONS(6296), + [anon_sym_isize] = ACTIONS(6296), + [anon_sym_usize] = ACTIONS(6296), + [anon_sym_f32] = ACTIONS(6296), + [anon_sym_f64] = ACTIONS(6296), + [anon_sym_c_char] = ACTIONS(6296), + [anon_sym_c_schar] = ACTIONS(6296), + [anon_sym_c_uchar] = ACTIONS(6296), + [anon_sym_c_short] = ACTIONS(6296), + [anon_sym_c_ushort] = ACTIONS(6296), + [anon_sym_c_int] = ACTIONS(6296), + [anon_sym_c_uint] = ACTIONS(6296), + [anon_sym_c_long] = ACTIONS(6296), + [anon_sym_c_ulong] = ACTIONS(6296), + [anon_sym_c_longlong] = ACTIONS(6296), + [anon_sym_c_ulonglong] = ACTIONS(6296), + [anon_sym_c_float] = ACTIONS(6296), + [anon_sym_c_double] = ACTIONS(6296), + [anon_sym_c_longdouble] = ACTIONS(6296), + [anon_sym_PLUS_EQ] = ACTIONS(6294), + [anon_sym_DASH_EQ] = ACTIONS(6294), + [anon_sym_STAR_EQ] = ACTIONS(6294), + [anon_sym_SLASH_EQ] = ACTIONS(6294), + [anon_sym_AMP_EQ] = ACTIONS(6294), + [anon_sym_PIPE_EQ] = ACTIONS(6296), + [anon_sym_xor_EQ] = ACTIONS(6294), + [anon_sym_LT_LT_EQ] = ACTIONS(6294), + [anon_sym_GT_GT_EQ] = ACTIONS(6294), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6294), + [anon_sym_return] = ACTIONS(6296), + [anon_sym_yield] = ACTIONS(6296), + [anon_sym_break] = ACTIONS(6296), + [anon_sym_continue] = ACTIONS(6296), + [anon_sym_defer] = ACTIONS(6296), + [anon_sym_errdefer] = ACTIONS(6296), + [anon_sym_if] = ACTIONS(6296), + [anon_sym_else] = ACTIONS(6296), + [anon_sym_while] = ACTIONS(6296), + [anon_sym_expand] = ACTIONS(6296), + [anon_sym_for] = ACTIONS(6296), + [anon_sym_PIPE2] = ACTIONS(6294), + [anon_sym_match] = ACTIONS(6296), + [anon_sym_DOT_DOT] = ACTIONS(6296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_orelse] = ACTIONS(6296), + [anon_sym_or] = ACTIONS(6296), + [anon_sym_and] = ACTIONS(6296), + [anon_sym_EQ_EQ] = ACTIONS(6294), + [anon_sym_BANG_EQ] = ACTIONS(6294), + [anon_sym_LT] = ACTIONS(6296), + [anon_sym_LT_EQ] = ACTIONS(6294), + [anon_sym_GT] = ACTIONS(6296), + [anon_sym_GT_EQ] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_xor] = ACTIONS(6296), + [anon_sym_LT_LT] = ACTIONS(6296), + [anon_sym_GT_GT] = ACTIONS(6296), + [anon_sym_LT_LT_PIPE] = ACTIONS(6296), + [anon_sym_PLUS] = ACTIONS(6296), + [anon_sym_SLASH] = ACTIONS(6296), + [anon_sym_catch] = ACTIONS(6296), + [anon_sym_TILDE] = ACTIONS(6294), + [anon_sym_try] = ACTIONS(6296), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6294), + [anon_sym_true] = ACTIONS(6296), + [anon_sym_false] = ACTIONS(6296), + [anon_sym_null] = ACTIONS(6296), + [anon_sym_unreachable] = ACTIONS(6296), + [anon_sym_undefined] = ACTIONS(6296), + [sym_sink] = ACTIONS(6296), + [sym_integer] = ACTIONS(6296), + [sym_float] = ACTIONS(6294), + [anon_sym_DQUOTE] = ACTIONS(6294), + [sym_multiline_string] = ACTIONS(6294), + [sym_character] = ACTIONS(6294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6294), + }, + [STATE(3508)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(21), + [anon_sym_break] = ACTIONS(21), + [anon_sym_continue] = ACTIONS(21), + [anon_sym_defer] = ACTIONS(21), + [anon_sym_errdefer] = ACTIONS(21), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(3509)] = { + [sym_identifier] = ACTIONS(6312), + [anon_sym_func] = ACTIONS(6312), + [anon_sym_BANG] = ACTIONS(6312), + [anon_sym_EQ] = ACTIONS(6312), + [anon_sym_struct] = ACTIONS(6312), + [anon_sym_LPAREN] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(6310), + [anon_sym_DASH] = ACTIONS(6312), + [anon_sym_DOLLAR] = ACTIONS(6310), + [anon_sym_PIPE] = ACTIONS(6312), + [anon_sym_QMARK] = ACTIONS(6310), + [anon_sym_STAR] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(6310), + [anon_sym_void] = ACTIONS(6312), + [anon_sym_noreturn] = ACTIONS(6312), + [anon_sym_type] = ACTIONS(6312), + [anon_sym_anyopaque] = ACTIONS(6312), + [anon_sym_bool] = ACTIONS(6312), + [anon_sym_int] = ACTIONS(6312), + [anon_sym_uint] = ACTIONS(6312), + [anon_sym_float] = ACTIONS(6312), + [anon_sym_range] = ACTIONS(6312), + [anon_sym_i8] = ACTIONS(6312), + [anon_sym_i16] = ACTIONS(6312), + [anon_sym_i32] = ACTIONS(6312), + [anon_sym_i64] = ACTIONS(6312), + [anon_sym_u8] = ACTIONS(6312), + [anon_sym_u16] = ACTIONS(6312), + [anon_sym_u32] = ACTIONS(6312), + [anon_sym_u64] = ACTIONS(6312), + [anon_sym_isize] = ACTIONS(6312), + [anon_sym_usize] = ACTIONS(6312), + [anon_sym_f32] = ACTIONS(6312), + [anon_sym_f64] = ACTIONS(6312), + [anon_sym_c_char] = ACTIONS(6312), + [anon_sym_c_schar] = ACTIONS(6312), + [anon_sym_c_uchar] = ACTIONS(6312), + [anon_sym_c_short] = ACTIONS(6312), + [anon_sym_c_ushort] = ACTIONS(6312), + [anon_sym_c_int] = ACTIONS(6312), + [anon_sym_c_uint] = ACTIONS(6312), + [anon_sym_c_long] = ACTIONS(6312), + [anon_sym_c_ulong] = ACTIONS(6312), + [anon_sym_c_longlong] = ACTIONS(6312), + [anon_sym_c_ulonglong] = ACTIONS(6312), + [anon_sym_c_float] = ACTIONS(6312), + [anon_sym_c_double] = ACTIONS(6312), + [anon_sym_c_longdouble] = ACTIONS(6312), + [anon_sym_PLUS_EQ] = ACTIONS(6310), + [anon_sym_DASH_EQ] = ACTIONS(6310), + [anon_sym_STAR_EQ] = ACTIONS(6310), + [anon_sym_SLASH_EQ] = ACTIONS(6310), + [anon_sym_AMP_EQ] = ACTIONS(6310), + [anon_sym_PIPE_EQ] = ACTIONS(6312), + [anon_sym_xor_EQ] = ACTIONS(6310), + [anon_sym_LT_LT_EQ] = ACTIONS(6310), + [anon_sym_GT_GT_EQ] = ACTIONS(6310), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6310), + [anon_sym_return] = ACTIONS(6312), + [anon_sym_yield] = ACTIONS(6312), + [anon_sym_break] = ACTIONS(6312), + [anon_sym_continue] = ACTIONS(6312), + [anon_sym_defer] = ACTIONS(6312), + [anon_sym_errdefer] = ACTIONS(6312), + [anon_sym_if] = ACTIONS(6312), + [anon_sym_else] = ACTIONS(6312), + [anon_sym_while] = ACTIONS(6312), + [anon_sym_expand] = ACTIONS(6312), + [anon_sym_for] = ACTIONS(6312), + [anon_sym_PIPE2] = ACTIONS(6310), + [anon_sym_match] = ACTIONS(6312), + [anon_sym_DOT_DOT] = ACTIONS(6312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6310), + [anon_sym_orelse] = ACTIONS(6312), + [anon_sym_or] = ACTIONS(6312), + [anon_sym_and] = ACTIONS(6312), + [anon_sym_EQ_EQ] = ACTIONS(6310), + [anon_sym_BANG_EQ] = ACTIONS(6310), + [anon_sym_LT] = ACTIONS(6312), + [anon_sym_LT_EQ] = ACTIONS(6310), + [anon_sym_GT] = ACTIONS(6312), + [anon_sym_GT_EQ] = ACTIONS(6310), + [anon_sym_AMP] = ACTIONS(6312), + [anon_sym_xor] = ACTIONS(6312), + [anon_sym_LT_LT] = ACTIONS(6312), + [anon_sym_GT_GT] = ACTIONS(6312), + [anon_sym_LT_LT_PIPE] = ACTIONS(6312), + [anon_sym_PLUS] = ACTIONS(6312), + [anon_sym_SLASH] = ACTIONS(6312), + [anon_sym_catch] = ACTIONS(6312), + [anon_sym_TILDE] = ACTIONS(6310), + [anon_sym_try] = ACTIONS(6312), + [anon_sym_DOT] = ACTIONS(6312), + [anon_sym_CARET] = ACTIONS(6310), + [anon_sym_true] = ACTIONS(6312), + [anon_sym_false] = ACTIONS(6312), + [anon_sym_null] = ACTIONS(6312), + [anon_sym_unreachable] = ACTIONS(6312), + [anon_sym_undefined] = ACTIONS(6312), + [sym_sink] = ACTIONS(6312), + [sym_integer] = ACTIONS(6312), + [sym_float] = ACTIONS(6310), + [anon_sym_DQUOTE] = ACTIONS(6310), + [sym_multiline_string] = ACTIONS(6310), + [sym_character] = ACTIONS(6310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6310), + }, + [STATE(3510)] = { + [sym_identifier] = ACTIONS(6316), + [anon_sym_func] = ACTIONS(6316), + [anon_sym_BANG] = ACTIONS(6316), + [anon_sym_EQ] = ACTIONS(6316), + [anon_sym_struct] = ACTIONS(6316), + [anon_sym_LPAREN] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(6314), + [anon_sym_DASH] = ACTIONS(6316), + [anon_sym_DOLLAR] = ACTIONS(6314), + [anon_sym_PIPE] = ACTIONS(6316), + [anon_sym_QMARK] = ACTIONS(6314), + [anon_sym_STAR] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(6314), + [anon_sym_void] = ACTIONS(6316), + [anon_sym_noreturn] = ACTIONS(6316), + [anon_sym_type] = ACTIONS(6316), + [anon_sym_anyopaque] = ACTIONS(6316), + [anon_sym_bool] = ACTIONS(6316), + [anon_sym_int] = ACTIONS(6316), + [anon_sym_uint] = ACTIONS(6316), + [anon_sym_float] = ACTIONS(6316), + [anon_sym_range] = ACTIONS(6316), + [anon_sym_i8] = ACTIONS(6316), + [anon_sym_i16] = ACTIONS(6316), + [anon_sym_i32] = ACTIONS(6316), + [anon_sym_i64] = ACTIONS(6316), + [anon_sym_u8] = ACTIONS(6316), + [anon_sym_u16] = ACTIONS(6316), + [anon_sym_u32] = ACTIONS(6316), + [anon_sym_u64] = ACTIONS(6316), + [anon_sym_isize] = ACTIONS(6316), + [anon_sym_usize] = ACTIONS(6316), + [anon_sym_f32] = ACTIONS(6316), + [anon_sym_f64] = ACTIONS(6316), + [anon_sym_c_char] = ACTIONS(6316), + [anon_sym_c_schar] = ACTIONS(6316), + [anon_sym_c_uchar] = ACTIONS(6316), + [anon_sym_c_short] = ACTIONS(6316), + [anon_sym_c_ushort] = ACTIONS(6316), + [anon_sym_c_int] = ACTIONS(6316), + [anon_sym_c_uint] = ACTIONS(6316), + [anon_sym_c_long] = ACTIONS(6316), + [anon_sym_c_ulong] = ACTIONS(6316), + [anon_sym_c_longlong] = ACTIONS(6316), + [anon_sym_c_ulonglong] = ACTIONS(6316), + [anon_sym_c_float] = ACTIONS(6316), + [anon_sym_c_double] = ACTIONS(6316), + [anon_sym_c_longdouble] = ACTIONS(6316), + [anon_sym_PLUS_EQ] = ACTIONS(6314), + [anon_sym_DASH_EQ] = ACTIONS(6314), + [anon_sym_STAR_EQ] = ACTIONS(6314), + [anon_sym_SLASH_EQ] = ACTIONS(6314), + [anon_sym_AMP_EQ] = ACTIONS(6314), + [anon_sym_PIPE_EQ] = ACTIONS(6316), + [anon_sym_xor_EQ] = ACTIONS(6314), + [anon_sym_LT_LT_EQ] = ACTIONS(6314), + [anon_sym_GT_GT_EQ] = ACTIONS(6314), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6314), + [anon_sym_return] = ACTIONS(6316), + [anon_sym_yield] = ACTIONS(6316), + [anon_sym_break] = ACTIONS(6316), + [anon_sym_continue] = ACTIONS(6316), + [anon_sym_defer] = ACTIONS(6316), + [anon_sym_errdefer] = ACTIONS(6316), + [anon_sym_if] = ACTIONS(6316), + [anon_sym_else] = ACTIONS(6316), + [anon_sym_while] = ACTIONS(6316), + [anon_sym_expand] = ACTIONS(6316), + [anon_sym_for] = ACTIONS(6316), + [anon_sym_PIPE2] = ACTIONS(6314), + [anon_sym_match] = ACTIONS(6316), + [anon_sym_DOT_DOT] = ACTIONS(6316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6314), + [anon_sym_orelse] = ACTIONS(6316), + [anon_sym_or] = ACTIONS(6316), + [anon_sym_and] = ACTIONS(6316), + [anon_sym_EQ_EQ] = ACTIONS(6314), + [anon_sym_BANG_EQ] = ACTIONS(6314), + [anon_sym_LT] = ACTIONS(6316), + [anon_sym_LT_EQ] = ACTIONS(6314), + [anon_sym_GT] = ACTIONS(6316), + [anon_sym_GT_EQ] = ACTIONS(6314), + [anon_sym_AMP] = ACTIONS(6316), + [anon_sym_xor] = ACTIONS(6316), + [anon_sym_LT_LT] = ACTIONS(6316), + [anon_sym_GT_GT] = ACTIONS(6316), + [anon_sym_LT_LT_PIPE] = ACTIONS(6316), + [anon_sym_PLUS] = ACTIONS(6316), + [anon_sym_SLASH] = ACTIONS(6316), + [anon_sym_catch] = ACTIONS(6316), + [anon_sym_TILDE] = ACTIONS(6314), + [anon_sym_try] = ACTIONS(6316), + [anon_sym_DOT] = ACTIONS(6316), + [anon_sym_CARET] = ACTIONS(6314), + [anon_sym_true] = ACTIONS(6316), + [anon_sym_false] = ACTIONS(6316), + [anon_sym_null] = ACTIONS(6316), + [anon_sym_unreachable] = ACTIONS(6316), + [anon_sym_undefined] = ACTIONS(6316), + [sym_sink] = ACTIONS(6316), + [sym_integer] = ACTIONS(6316), + [sym_float] = ACTIONS(6314), + [anon_sym_DQUOTE] = ACTIONS(6314), + [sym_multiline_string] = ACTIONS(6314), + [sym_character] = ACTIONS(6314), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6314), + }, + [STATE(3511)] = { + [sym_identifier] = ACTIONS(6320), + [anon_sym_func] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6320), + [anon_sym_EQ] = ACTIONS(6320), + [anon_sym_struct] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(6318), + [anon_sym_DASH] = ACTIONS(6320), + [anon_sym_DOLLAR] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(6320), + [anon_sym_QMARK] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(6318), + [anon_sym_void] = ACTIONS(6320), + [anon_sym_noreturn] = ACTIONS(6320), + [anon_sym_type] = ACTIONS(6320), + [anon_sym_anyopaque] = ACTIONS(6320), + [anon_sym_bool] = ACTIONS(6320), + [anon_sym_int] = ACTIONS(6320), + [anon_sym_uint] = ACTIONS(6320), + [anon_sym_float] = ACTIONS(6320), + [anon_sym_range] = ACTIONS(6320), + [anon_sym_i8] = ACTIONS(6320), + [anon_sym_i16] = ACTIONS(6320), + [anon_sym_i32] = ACTIONS(6320), + [anon_sym_i64] = ACTIONS(6320), + [anon_sym_u8] = ACTIONS(6320), + [anon_sym_u16] = ACTIONS(6320), + [anon_sym_u32] = ACTIONS(6320), + [anon_sym_u64] = ACTIONS(6320), + [anon_sym_isize] = ACTIONS(6320), + [anon_sym_usize] = ACTIONS(6320), + [anon_sym_f32] = ACTIONS(6320), + [anon_sym_f64] = ACTIONS(6320), + [anon_sym_c_char] = ACTIONS(6320), + [anon_sym_c_schar] = ACTIONS(6320), + [anon_sym_c_uchar] = ACTIONS(6320), + [anon_sym_c_short] = ACTIONS(6320), + [anon_sym_c_ushort] = ACTIONS(6320), + [anon_sym_c_int] = ACTIONS(6320), + [anon_sym_c_uint] = ACTIONS(6320), + [anon_sym_c_long] = ACTIONS(6320), + [anon_sym_c_ulong] = ACTIONS(6320), + [anon_sym_c_longlong] = ACTIONS(6320), + [anon_sym_c_ulonglong] = ACTIONS(6320), + [anon_sym_c_float] = ACTIONS(6320), + [anon_sym_c_double] = ACTIONS(6320), + [anon_sym_c_longdouble] = ACTIONS(6320), + [anon_sym_PLUS_EQ] = ACTIONS(6318), + [anon_sym_DASH_EQ] = ACTIONS(6318), + [anon_sym_STAR_EQ] = ACTIONS(6318), + [anon_sym_SLASH_EQ] = ACTIONS(6318), + [anon_sym_AMP_EQ] = ACTIONS(6318), + [anon_sym_PIPE_EQ] = ACTIONS(6320), + [anon_sym_xor_EQ] = ACTIONS(6318), + [anon_sym_LT_LT_EQ] = ACTIONS(6318), + [anon_sym_GT_GT_EQ] = ACTIONS(6318), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6318), + [anon_sym_return] = ACTIONS(6320), + [anon_sym_yield] = ACTIONS(6320), + [anon_sym_break] = ACTIONS(6320), + [anon_sym_continue] = ACTIONS(6320), + [anon_sym_defer] = ACTIONS(6320), + [anon_sym_errdefer] = ACTIONS(6320), + [anon_sym_if] = ACTIONS(6320), + [anon_sym_else] = ACTIONS(6320), + [anon_sym_while] = ACTIONS(6320), + [anon_sym_expand] = ACTIONS(6320), + [anon_sym_for] = ACTIONS(6320), + [anon_sym_PIPE2] = ACTIONS(6318), + [anon_sym_match] = ACTIONS(6320), + [anon_sym_DOT_DOT] = ACTIONS(6320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6318), + [anon_sym_orelse] = ACTIONS(6320), + [anon_sym_or] = ACTIONS(6320), + [anon_sym_and] = ACTIONS(6320), + [anon_sym_EQ_EQ] = ACTIONS(6318), + [anon_sym_BANG_EQ] = ACTIONS(6318), + [anon_sym_LT] = ACTIONS(6320), + [anon_sym_LT_EQ] = ACTIONS(6318), + [anon_sym_GT] = ACTIONS(6320), + [anon_sym_GT_EQ] = ACTIONS(6318), + [anon_sym_AMP] = ACTIONS(6320), + [anon_sym_xor] = ACTIONS(6320), + [anon_sym_LT_LT] = ACTIONS(6320), + [anon_sym_GT_GT] = ACTIONS(6320), + [anon_sym_LT_LT_PIPE] = ACTIONS(6320), + [anon_sym_PLUS] = ACTIONS(6320), + [anon_sym_SLASH] = ACTIONS(6320), + [anon_sym_catch] = ACTIONS(6320), + [anon_sym_TILDE] = ACTIONS(6318), + [anon_sym_try] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(6318), + [anon_sym_true] = ACTIONS(6320), + [anon_sym_false] = ACTIONS(6320), + [anon_sym_null] = ACTIONS(6320), + [anon_sym_unreachable] = ACTIONS(6320), + [anon_sym_undefined] = ACTIONS(6320), + [sym_sink] = ACTIONS(6320), + [sym_integer] = ACTIONS(6320), + [sym_float] = ACTIONS(6318), + [anon_sym_DQUOTE] = ACTIONS(6318), + [sym_multiline_string] = ACTIONS(6318), + [sym_character] = ACTIONS(6318), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6318), + }, + [STATE(3512)] = { + [sym_identifier] = ACTIONS(6324), + [anon_sym_func] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6324), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_struct] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6322), + [anon_sym_LBRACE] = ACTIONS(6322), + [anon_sym_DASH] = ACTIONS(6324), + [anon_sym_DOLLAR] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(6324), + [anon_sym_QMARK] = ACTIONS(6322), + [anon_sym_STAR] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6322), + [anon_sym_void] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym_type] = ACTIONS(6324), + [anon_sym_anyopaque] = ACTIONS(6324), + [anon_sym_bool] = ACTIONS(6324), + [anon_sym_int] = ACTIONS(6324), + [anon_sym_uint] = ACTIONS(6324), + [anon_sym_float] = ACTIONS(6324), + [anon_sym_range] = ACTIONS(6324), + [anon_sym_i8] = ACTIONS(6324), + [anon_sym_i16] = ACTIONS(6324), + [anon_sym_i32] = ACTIONS(6324), + [anon_sym_i64] = ACTIONS(6324), + [anon_sym_u8] = ACTIONS(6324), + [anon_sym_u16] = ACTIONS(6324), + [anon_sym_u32] = ACTIONS(6324), + [anon_sym_u64] = ACTIONS(6324), + [anon_sym_isize] = ACTIONS(6324), + [anon_sym_usize] = ACTIONS(6324), + [anon_sym_f32] = ACTIONS(6324), + [anon_sym_f64] = ACTIONS(6324), + [anon_sym_c_char] = ACTIONS(6324), + [anon_sym_c_schar] = ACTIONS(6324), + [anon_sym_c_uchar] = ACTIONS(6324), + [anon_sym_c_short] = ACTIONS(6324), + [anon_sym_c_ushort] = ACTIONS(6324), + [anon_sym_c_int] = ACTIONS(6324), + [anon_sym_c_uint] = ACTIONS(6324), + [anon_sym_c_long] = ACTIONS(6324), + [anon_sym_c_ulong] = ACTIONS(6324), + [anon_sym_c_longlong] = ACTIONS(6324), + [anon_sym_c_ulonglong] = ACTIONS(6324), + [anon_sym_c_float] = ACTIONS(6324), + [anon_sym_c_double] = ACTIONS(6324), + [anon_sym_c_longdouble] = ACTIONS(6324), + [anon_sym_PLUS_EQ] = ACTIONS(6322), + [anon_sym_DASH_EQ] = ACTIONS(6322), + [anon_sym_STAR_EQ] = ACTIONS(6322), + [anon_sym_SLASH_EQ] = ACTIONS(6322), + [anon_sym_AMP_EQ] = ACTIONS(6322), + [anon_sym_PIPE_EQ] = ACTIONS(6324), + [anon_sym_xor_EQ] = ACTIONS(6322), + [anon_sym_LT_LT_EQ] = ACTIONS(6322), + [anon_sym_GT_GT_EQ] = ACTIONS(6322), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6322), + [anon_sym_return] = ACTIONS(6324), + [anon_sym_yield] = ACTIONS(6324), + [anon_sym_break] = ACTIONS(6324), + [anon_sym_continue] = ACTIONS(6324), + [anon_sym_defer] = ACTIONS(6324), + [anon_sym_errdefer] = ACTIONS(6324), + [anon_sym_if] = ACTIONS(6324), + [anon_sym_else] = ACTIONS(6324), + [anon_sym_while] = ACTIONS(6324), + [anon_sym_expand] = ACTIONS(6324), + [anon_sym_for] = ACTIONS(6324), + [anon_sym_PIPE2] = ACTIONS(6322), + [anon_sym_match] = ACTIONS(6324), + [anon_sym_DOT_DOT] = ACTIONS(6324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6322), + [anon_sym_orelse] = ACTIONS(6324), + [anon_sym_or] = ACTIONS(6324), + [anon_sym_and] = ACTIONS(6324), + [anon_sym_EQ_EQ] = ACTIONS(6322), + [anon_sym_BANG_EQ] = ACTIONS(6322), + [anon_sym_LT] = ACTIONS(6324), + [anon_sym_LT_EQ] = ACTIONS(6322), + [anon_sym_GT] = ACTIONS(6324), + [anon_sym_GT_EQ] = ACTIONS(6322), + [anon_sym_AMP] = ACTIONS(6324), + [anon_sym_xor] = ACTIONS(6324), + [anon_sym_LT_LT] = ACTIONS(6324), + [anon_sym_GT_GT] = ACTIONS(6324), + [anon_sym_LT_LT_PIPE] = ACTIONS(6324), + [anon_sym_PLUS] = ACTIONS(6324), + [anon_sym_SLASH] = ACTIONS(6324), + [anon_sym_catch] = ACTIONS(6324), + [anon_sym_TILDE] = ACTIONS(6322), + [anon_sym_try] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(6322), + [anon_sym_true] = ACTIONS(6324), + [anon_sym_false] = ACTIONS(6324), + [anon_sym_null] = ACTIONS(6324), + [anon_sym_unreachable] = ACTIONS(6324), + [anon_sym_undefined] = ACTIONS(6324), + [sym_sink] = ACTIONS(6324), + [sym_integer] = ACTIONS(6324), + [sym_float] = ACTIONS(6322), + [anon_sym_DQUOTE] = ACTIONS(6322), + [sym_multiline_string] = ACTIONS(6322), + [sym_character] = ACTIONS(6322), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6322), + }, + [STATE(3513)] = { + [sym_identifier] = ACTIONS(6328), + [anon_sym_func] = ACTIONS(6328), + [anon_sym_BANG] = ACTIONS(6328), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_struct] = ACTIONS(6328), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(6326), + [anon_sym_DASH] = ACTIONS(6328), + [anon_sym_DOLLAR] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6328), + [anon_sym_QMARK] = ACTIONS(6326), + [anon_sym_STAR] = ACTIONS(6328), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_void] = ACTIONS(6328), + [anon_sym_noreturn] = ACTIONS(6328), + [anon_sym_type] = ACTIONS(6328), + [anon_sym_anyopaque] = ACTIONS(6328), + [anon_sym_bool] = ACTIONS(6328), + [anon_sym_int] = ACTIONS(6328), + [anon_sym_uint] = ACTIONS(6328), + [anon_sym_float] = ACTIONS(6328), + [anon_sym_range] = ACTIONS(6328), + [anon_sym_i8] = ACTIONS(6328), + [anon_sym_i16] = ACTIONS(6328), + [anon_sym_i32] = ACTIONS(6328), + [anon_sym_i64] = ACTIONS(6328), + [anon_sym_u8] = ACTIONS(6328), + [anon_sym_u16] = ACTIONS(6328), + [anon_sym_u32] = ACTIONS(6328), + [anon_sym_u64] = ACTIONS(6328), + [anon_sym_isize] = ACTIONS(6328), + [anon_sym_usize] = ACTIONS(6328), + [anon_sym_f32] = ACTIONS(6328), + [anon_sym_f64] = ACTIONS(6328), + [anon_sym_c_char] = ACTIONS(6328), + [anon_sym_c_schar] = ACTIONS(6328), + [anon_sym_c_uchar] = ACTIONS(6328), + [anon_sym_c_short] = ACTIONS(6328), + [anon_sym_c_ushort] = ACTIONS(6328), + [anon_sym_c_int] = ACTIONS(6328), + [anon_sym_c_uint] = ACTIONS(6328), + [anon_sym_c_long] = ACTIONS(6328), + [anon_sym_c_ulong] = ACTIONS(6328), + [anon_sym_c_longlong] = ACTIONS(6328), + [anon_sym_c_ulonglong] = ACTIONS(6328), + [anon_sym_c_float] = ACTIONS(6328), + [anon_sym_c_double] = ACTIONS(6328), + [anon_sym_c_longdouble] = ACTIONS(6328), + [anon_sym_PLUS_EQ] = ACTIONS(6326), + [anon_sym_DASH_EQ] = ACTIONS(6326), + [anon_sym_STAR_EQ] = ACTIONS(6326), + [anon_sym_SLASH_EQ] = ACTIONS(6326), + [anon_sym_AMP_EQ] = ACTIONS(6326), + [anon_sym_PIPE_EQ] = ACTIONS(6328), + [anon_sym_xor_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_EQ] = ACTIONS(6326), + [anon_sym_GT_GT_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6326), + [anon_sym_return] = ACTIONS(6328), + [anon_sym_yield] = ACTIONS(6328), + [anon_sym_break] = ACTIONS(6328), + [anon_sym_continue] = ACTIONS(6328), + [anon_sym_defer] = ACTIONS(6328), + [anon_sym_errdefer] = ACTIONS(6328), + [anon_sym_if] = ACTIONS(6328), + [anon_sym_else] = ACTIONS(6328), + [anon_sym_while] = ACTIONS(6328), + [anon_sym_expand] = ACTIONS(6328), + [anon_sym_for] = ACTIONS(6328), + [anon_sym_PIPE2] = ACTIONS(6326), + [anon_sym_match] = ACTIONS(6328), + [anon_sym_DOT_DOT] = ACTIONS(6328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6326), + [anon_sym_orelse] = ACTIONS(6328), + [anon_sym_or] = ACTIONS(6328), + [anon_sym_and] = ACTIONS(6328), + [anon_sym_EQ_EQ] = ACTIONS(6326), + [anon_sym_BANG_EQ] = ACTIONS(6326), + [anon_sym_LT] = ACTIONS(6328), + [anon_sym_LT_EQ] = ACTIONS(6326), + [anon_sym_GT] = ACTIONS(6328), + [anon_sym_GT_EQ] = ACTIONS(6326), + [anon_sym_AMP] = ACTIONS(6328), + [anon_sym_xor] = ACTIONS(6328), + [anon_sym_LT_LT] = ACTIONS(6328), + [anon_sym_GT_GT] = ACTIONS(6328), + [anon_sym_LT_LT_PIPE] = ACTIONS(6328), + [anon_sym_PLUS] = ACTIONS(6328), + [anon_sym_SLASH] = ACTIONS(6328), + [anon_sym_catch] = ACTIONS(6328), + [anon_sym_TILDE] = ACTIONS(6326), + [anon_sym_try] = ACTIONS(6328), + [anon_sym_DOT] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6326), + [anon_sym_true] = ACTIONS(6328), + [anon_sym_false] = ACTIONS(6328), + [anon_sym_null] = ACTIONS(6328), + [anon_sym_unreachable] = ACTIONS(6328), + [anon_sym_undefined] = ACTIONS(6328), + [sym_sink] = ACTIONS(6328), + [sym_integer] = ACTIONS(6328), + [sym_float] = ACTIONS(6326), + [anon_sym_DQUOTE] = ACTIONS(6326), + [sym_multiline_string] = ACTIONS(6326), + [sym_character] = ACTIONS(6326), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6326), + }, + [STATE(3514)] = { + [sym_identifier] = ACTIONS(6332), + [anon_sym_func] = ACTIONS(6332), + [anon_sym_BANG] = ACTIONS(6332), + [anon_sym_EQ] = ACTIONS(6332), + [anon_sym_struct] = ACTIONS(6332), + [anon_sym_LPAREN] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(6330), + [anon_sym_DASH] = ACTIONS(6332), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_PIPE] = ACTIONS(6332), + [anon_sym_QMARK] = ACTIONS(6330), + [anon_sym_STAR] = ACTIONS(6332), + [anon_sym_LBRACK] = ACTIONS(6330), + [anon_sym_void] = ACTIONS(6332), + [anon_sym_noreturn] = ACTIONS(6332), + [anon_sym_type] = ACTIONS(6332), + [anon_sym_anyopaque] = ACTIONS(6332), + [anon_sym_bool] = ACTIONS(6332), + [anon_sym_int] = ACTIONS(6332), + [anon_sym_uint] = ACTIONS(6332), + [anon_sym_float] = ACTIONS(6332), + [anon_sym_range] = ACTIONS(6332), + [anon_sym_i8] = ACTIONS(6332), + [anon_sym_i16] = ACTIONS(6332), + [anon_sym_i32] = ACTIONS(6332), + [anon_sym_i64] = ACTIONS(6332), + [anon_sym_u8] = ACTIONS(6332), + [anon_sym_u16] = ACTIONS(6332), + [anon_sym_u32] = ACTIONS(6332), + [anon_sym_u64] = ACTIONS(6332), + [anon_sym_isize] = ACTIONS(6332), + [anon_sym_usize] = ACTIONS(6332), + [anon_sym_f32] = ACTIONS(6332), + [anon_sym_f64] = ACTIONS(6332), + [anon_sym_c_char] = ACTIONS(6332), + [anon_sym_c_schar] = ACTIONS(6332), + [anon_sym_c_uchar] = ACTIONS(6332), + [anon_sym_c_short] = ACTIONS(6332), + [anon_sym_c_ushort] = ACTIONS(6332), + [anon_sym_c_int] = ACTIONS(6332), + [anon_sym_c_uint] = ACTIONS(6332), + [anon_sym_c_long] = ACTIONS(6332), + [anon_sym_c_ulong] = ACTIONS(6332), + [anon_sym_c_longlong] = ACTIONS(6332), + [anon_sym_c_ulonglong] = ACTIONS(6332), + [anon_sym_c_float] = ACTIONS(6332), + [anon_sym_c_double] = ACTIONS(6332), + [anon_sym_c_longdouble] = ACTIONS(6332), + [anon_sym_PLUS_EQ] = ACTIONS(6330), + [anon_sym_DASH_EQ] = ACTIONS(6330), + [anon_sym_STAR_EQ] = ACTIONS(6330), + [anon_sym_SLASH_EQ] = ACTIONS(6330), + [anon_sym_AMP_EQ] = ACTIONS(6330), + [anon_sym_PIPE_EQ] = ACTIONS(6332), + [anon_sym_xor_EQ] = ACTIONS(6330), + [anon_sym_LT_LT_EQ] = ACTIONS(6330), + [anon_sym_GT_GT_EQ] = ACTIONS(6330), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6330), + [anon_sym_return] = ACTIONS(6332), + [anon_sym_yield] = ACTIONS(6332), + [anon_sym_break] = ACTIONS(6332), + [anon_sym_continue] = ACTIONS(6332), + [anon_sym_defer] = ACTIONS(6332), + [anon_sym_errdefer] = ACTIONS(6332), + [anon_sym_if] = ACTIONS(6332), + [anon_sym_else] = ACTIONS(6332), + [anon_sym_while] = ACTIONS(6332), + [anon_sym_expand] = ACTIONS(6332), + [anon_sym_for] = ACTIONS(6332), + [anon_sym_PIPE2] = ACTIONS(6330), + [anon_sym_match] = ACTIONS(6332), + [anon_sym_DOT_DOT] = ACTIONS(6332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6330), + [anon_sym_orelse] = ACTIONS(6332), + [anon_sym_or] = ACTIONS(6332), + [anon_sym_and] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6330), + [anon_sym_BANG_EQ] = ACTIONS(6330), + [anon_sym_LT] = ACTIONS(6332), + [anon_sym_LT_EQ] = ACTIONS(6330), + [anon_sym_GT] = ACTIONS(6332), + [anon_sym_GT_EQ] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6332), + [anon_sym_xor] = ACTIONS(6332), + [anon_sym_LT_LT] = ACTIONS(6332), + [anon_sym_GT_GT] = ACTIONS(6332), + [anon_sym_LT_LT_PIPE] = ACTIONS(6332), + [anon_sym_PLUS] = ACTIONS(6332), + [anon_sym_SLASH] = ACTIONS(6332), + [anon_sym_catch] = ACTIONS(6332), + [anon_sym_TILDE] = ACTIONS(6330), + [anon_sym_try] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6332), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_true] = ACTIONS(6332), + [anon_sym_false] = ACTIONS(6332), + [anon_sym_null] = ACTIONS(6332), + [anon_sym_unreachable] = ACTIONS(6332), + [anon_sym_undefined] = ACTIONS(6332), + [sym_sink] = ACTIONS(6332), + [sym_integer] = ACTIONS(6332), + [sym_float] = ACTIONS(6330), + [anon_sym_DQUOTE] = ACTIONS(6330), + [sym_multiline_string] = ACTIONS(6330), + [sym_character] = ACTIONS(6330), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6330), + }, + [STATE(3515)] = { + [sym_identifier] = ACTIONS(6336), + [anon_sym_func] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6336), + [anon_sym_EQ] = ACTIONS(6336), + [anon_sym_struct] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(6334), + [anon_sym_DASH] = ACTIONS(6336), + [anon_sym_DOLLAR] = ACTIONS(6334), + [anon_sym_PIPE] = ACTIONS(6336), + [anon_sym_QMARK] = ACTIONS(6334), + [anon_sym_STAR] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(6334), + [anon_sym_void] = ACTIONS(6336), + [anon_sym_noreturn] = ACTIONS(6336), + [anon_sym_type] = ACTIONS(6336), + [anon_sym_anyopaque] = ACTIONS(6336), + [anon_sym_bool] = ACTIONS(6336), + [anon_sym_int] = ACTIONS(6336), + [anon_sym_uint] = ACTIONS(6336), + [anon_sym_float] = ACTIONS(6336), + [anon_sym_range] = ACTIONS(6336), + [anon_sym_i8] = ACTIONS(6336), + [anon_sym_i16] = ACTIONS(6336), + [anon_sym_i32] = ACTIONS(6336), + [anon_sym_i64] = ACTIONS(6336), + [anon_sym_u8] = ACTIONS(6336), + [anon_sym_u16] = ACTIONS(6336), + [anon_sym_u32] = ACTIONS(6336), + [anon_sym_u64] = ACTIONS(6336), + [anon_sym_isize] = ACTIONS(6336), + [anon_sym_usize] = ACTIONS(6336), + [anon_sym_f32] = ACTIONS(6336), + [anon_sym_f64] = ACTIONS(6336), + [anon_sym_c_char] = ACTIONS(6336), + [anon_sym_c_schar] = ACTIONS(6336), + [anon_sym_c_uchar] = ACTIONS(6336), + [anon_sym_c_short] = ACTIONS(6336), + [anon_sym_c_ushort] = ACTIONS(6336), + [anon_sym_c_int] = ACTIONS(6336), + [anon_sym_c_uint] = ACTIONS(6336), + [anon_sym_c_long] = ACTIONS(6336), + [anon_sym_c_ulong] = ACTIONS(6336), + [anon_sym_c_longlong] = ACTIONS(6336), + [anon_sym_c_ulonglong] = ACTIONS(6336), + [anon_sym_c_float] = ACTIONS(6336), + [anon_sym_c_double] = ACTIONS(6336), + [anon_sym_c_longdouble] = ACTIONS(6336), + [anon_sym_PLUS_EQ] = ACTIONS(6334), + [anon_sym_DASH_EQ] = ACTIONS(6334), + [anon_sym_STAR_EQ] = ACTIONS(6334), + [anon_sym_SLASH_EQ] = ACTIONS(6334), + [anon_sym_AMP_EQ] = ACTIONS(6334), + [anon_sym_PIPE_EQ] = ACTIONS(6336), + [anon_sym_xor_EQ] = ACTIONS(6334), + [anon_sym_LT_LT_EQ] = ACTIONS(6334), + [anon_sym_GT_GT_EQ] = ACTIONS(6334), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6334), + [anon_sym_return] = ACTIONS(6336), + [anon_sym_yield] = ACTIONS(6336), + [anon_sym_break] = ACTIONS(6336), + [anon_sym_continue] = ACTIONS(6336), + [anon_sym_defer] = ACTIONS(6336), + [anon_sym_errdefer] = ACTIONS(6336), + [anon_sym_if] = ACTIONS(6336), + [anon_sym_else] = ACTIONS(6336), + [anon_sym_while] = ACTIONS(6336), + [anon_sym_expand] = ACTIONS(6336), + [anon_sym_for] = ACTIONS(6336), + [anon_sym_PIPE2] = ACTIONS(6334), + [anon_sym_match] = ACTIONS(6336), + [anon_sym_DOT_DOT] = ACTIONS(6336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6334), + [anon_sym_orelse] = ACTIONS(6336), + [anon_sym_or] = ACTIONS(6336), + [anon_sym_and] = ACTIONS(6336), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6334), + [anon_sym_AMP] = ACTIONS(6336), + [anon_sym_xor] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6336), + [anon_sym_GT_GT] = ACTIONS(6336), + [anon_sym_LT_LT_PIPE] = ACTIONS(6336), + [anon_sym_PLUS] = ACTIONS(6336), + [anon_sym_SLASH] = ACTIONS(6336), + [anon_sym_catch] = ACTIONS(6336), + [anon_sym_TILDE] = ACTIONS(6334), + [anon_sym_try] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(6334), + [anon_sym_true] = ACTIONS(6336), + [anon_sym_false] = ACTIONS(6336), + [anon_sym_null] = ACTIONS(6336), + [anon_sym_unreachable] = ACTIONS(6336), + [anon_sym_undefined] = ACTIONS(6336), + [sym_sink] = ACTIONS(6336), + [sym_integer] = ACTIONS(6336), + [sym_float] = ACTIONS(6334), + [anon_sym_DQUOTE] = ACTIONS(6334), + [sym_multiline_string] = ACTIONS(6334), + [sym_character] = ACTIONS(6334), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6334), + }, + [STATE(3516)] = { + [sym_identifier] = ACTIONS(6340), + [anon_sym_func] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6340), + [anon_sym_EQ] = ACTIONS(6340), + [anon_sym_struct] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(6338), + [anon_sym_DASH] = ACTIONS(6340), + [anon_sym_DOLLAR] = ACTIONS(6338), + [anon_sym_PIPE] = ACTIONS(6340), + [anon_sym_QMARK] = ACTIONS(6338), + [anon_sym_STAR] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(6338), + [anon_sym_void] = ACTIONS(6340), + [anon_sym_noreturn] = ACTIONS(6340), + [anon_sym_type] = ACTIONS(6340), + [anon_sym_anyopaque] = ACTIONS(6340), + [anon_sym_bool] = ACTIONS(6340), + [anon_sym_int] = ACTIONS(6340), + [anon_sym_uint] = ACTIONS(6340), + [anon_sym_float] = ACTIONS(6340), + [anon_sym_range] = ACTIONS(6340), + [anon_sym_i8] = ACTIONS(6340), + [anon_sym_i16] = ACTIONS(6340), + [anon_sym_i32] = ACTIONS(6340), + [anon_sym_i64] = ACTIONS(6340), + [anon_sym_u8] = ACTIONS(6340), + [anon_sym_u16] = ACTIONS(6340), + [anon_sym_u32] = ACTIONS(6340), + [anon_sym_u64] = ACTIONS(6340), + [anon_sym_isize] = ACTIONS(6340), + [anon_sym_usize] = ACTIONS(6340), + [anon_sym_f32] = ACTIONS(6340), + [anon_sym_f64] = ACTIONS(6340), + [anon_sym_c_char] = ACTIONS(6340), + [anon_sym_c_schar] = ACTIONS(6340), + [anon_sym_c_uchar] = ACTIONS(6340), + [anon_sym_c_short] = ACTIONS(6340), + [anon_sym_c_ushort] = ACTIONS(6340), + [anon_sym_c_int] = ACTIONS(6340), + [anon_sym_c_uint] = ACTIONS(6340), + [anon_sym_c_long] = ACTIONS(6340), + [anon_sym_c_ulong] = ACTIONS(6340), + [anon_sym_c_longlong] = ACTIONS(6340), + [anon_sym_c_ulonglong] = ACTIONS(6340), + [anon_sym_c_float] = ACTIONS(6340), + [anon_sym_c_double] = ACTIONS(6340), + [anon_sym_c_longdouble] = ACTIONS(6340), + [anon_sym_PLUS_EQ] = ACTIONS(6338), + [anon_sym_DASH_EQ] = ACTIONS(6338), + [anon_sym_STAR_EQ] = ACTIONS(6338), + [anon_sym_SLASH_EQ] = ACTIONS(6338), + [anon_sym_AMP_EQ] = ACTIONS(6338), + [anon_sym_PIPE_EQ] = ACTIONS(6340), + [anon_sym_xor_EQ] = ACTIONS(6338), + [anon_sym_LT_LT_EQ] = ACTIONS(6338), + [anon_sym_GT_GT_EQ] = ACTIONS(6338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6338), + [anon_sym_return] = ACTIONS(6340), + [anon_sym_yield] = ACTIONS(6340), + [anon_sym_break] = ACTIONS(6340), + [anon_sym_continue] = ACTIONS(6340), + [anon_sym_defer] = ACTIONS(6340), + [anon_sym_errdefer] = ACTIONS(6340), + [anon_sym_if] = ACTIONS(6340), + [anon_sym_else] = ACTIONS(6340), + [anon_sym_while] = ACTIONS(6340), + [anon_sym_expand] = ACTIONS(6340), + [anon_sym_for] = ACTIONS(6340), + [anon_sym_PIPE2] = ACTIONS(6338), + [anon_sym_match] = ACTIONS(6340), + [anon_sym_DOT_DOT] = ACTIONS(6340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6338), + [anon_sym_orelse] = ACTIONS(6340), + [anon_sym_or] = ACTIONS(6340), + [anon_sym_and] = ACTIONS(6340), + [anon_sym_EQ_EQ] = ACTIONS(6338), + [anon_sym_BANG_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6340), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_GT] = ACTIONS(6340), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_AMP] = ACTIONS(6340), + [anon_sym_xor] = ACTIONS(6340), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6340), + [anon_sym_LT_LT_PIPE] = ACTIONS(6340), + [anon_sym_PLUS] = ACTIONS(6340), + [anon_sym_SLASH] = ACTIONS(6340), + [anon_sym_catch] = ACTIONS(6340), + [anon_sym_TILDE] = ACTIONS(6338), + [anon_sym_try] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6338), + [anon_sym_true] = ACTIONS(6340), + [anon_sym_false] = ACTIONS(6340), + [anon_sym_null] = ACTIONS(6340), + [anon_sym_unreachable] = ACTIONS(6340), + [anon_sym_undefined] = ACTIONS(6340), + [sym_sink] = ACTIONS(6340), + [sym_integer] = ACTIONS(6340), + [sym_float] = ACTIONS(6338), + [anon_sym_DQUOTE] = ACTIONS(6338), + [sym_multiline_string] = ACTIONS(6338), + [sym_character] = ACTIONS(6338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6338), + }, + [STATE(3517)] = { + [sym_identifier] = ACTIONS(6344), + [anon_sym_func] = ACTIONS(6344), + [anon_sym_BANG] = ACTIONS(6344), + [anon_sym_EQ] = ACTIONS(6344), + [anon_sym_struct] = ACTIONS(6344), + [anon_sym_LPAREN] = ACTIONS(6342), + [anon_sym_LBRACE] = ACTIONS(6342), + [anon_sym_DASH] = ACTIONS(6344), + [anon_sym_DOLLAR] = ACTIONS(6342), + [anon_sym_PIPE] = ACTIONS(6344), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_STAR] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(6342), + [anon_sym_void] = ACTIONS(6344), + [anon_sym_noreturn] = ACTIONS(6344), + [anon_sym_type] = ACTIONS(6344), + [anon_sym_anyopaque] = ACTIONS(6344), + [anon_sym_bool] = ACTIONS(6344), + [anon_sym_int] = ACTIONS(6344), + [anon_sym_uint] = ACTIONS(6344), + [anon_sym_float] = ACTIONS(6344), + [anon_sym_range] = ACTIONS(6344), + [anon_sym_i8] = ACTIONS(6344), + [anon_sym_i16] = ACTIONS(6344), + [anon_sym_i32] = ACTIONS(6344), + [anon_sym_i64] = ACTIONS(6344), + [anon_sym_u8] = ACTIONS(6344), + [anon_sym_u16] = ACTIONS(6344), + [anon_sym_u32] = ACTIONS(6344), + [anon_sym_u64] = ACTIONS(6344), + [anon_sym_isize] = ACTIONS(6344), + [anon_sym_usize] = ACTIONS(6344), + [anon_sym_f32] = ACTIONS(6344), + [anon_sym_f64] = ACTIONS(6344), + [anon_sym_c_char] = ACTIONS(6344), + [anon_sym_c_schar] = ACTIONS(6344), + [anon_sym_c_uchar] = ACTIONS(6344), + [anon_sym_c_short] = ACTIONS(6344), + [anon_sym_c_ushort] = ACTIONS(6344), + [anon_sym_c_int] = ACTIONS(6344), + [anon_sym_c_uint] = ACTIONS(6344), + [anon_sym_c_long] = ACTIONS(6344), + [anon_sym_c_ulong] = ACTIONS(6344), + [anon_sym_c_longlong] = ACTIONS(6344), + [anon_sym_c_ulonglong] = ACTIONS(6344), + [anon_sym_c_float] = ACTIONS(6344), + [anon_sym_c_double] = ACTIONS(6344), + [anon_sym_c_longdouble] = ACTIONS(6344), + [anon_sym_PLUS_EQ] = ACTIONS(6342), + [anon_sym_DASH_EQ] = ACTIONS(6342), + [anon_sym_STAR_EQ] = ACTIONS(6342), + [anon_sym_SLASH_EQ] = ACTIONS(6342), + [anon_sym_AMP_EQ] = ACTIONS(6342), + [anon_sym_PIPE_EQ] = ACTIONS(6344), + [anon_sym_xor_EQ] = ACTIONS(6342), + [anon_sym_LT_LT_EQ] = ACTIONS(6342), + [anon_sym_GT_GT_EQ] = ACTIONS(6342), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6342), + [anon_sym_return] = ACTIONS(6344), + [anon_sym_yield] = ACTIONS(6344), + [anon_sym_break] = ACTIONS(6344), + [anon_sym_continue] = ACTIONS(6344), + [anon_sym_defer] = ACTIONS(6344), + [anon_sym_errdefer] = ACTIONS(6344), + [anon_sym_if] = ACTIONS(6344), + [anon_sym_else] = ACTIONS(6344), + [anon_sym_while] = ACTIONS(6344), + [anon_sym_expand] = ACTIONS(6344), + [anon_sym_for] = ACTIONS(6344), + [anon_sym_PIPE2] = ACTIONS(6342), + [anon_sym_match] = ACTIONS(6344), + [anon_sym_DOT_DOT] = ACTIONS(6344), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6342), + [anon_sym_orelse] = ACTIONS(6344), + [anon_sym_or] = ACTIONS(6344), + [anon_sym_and] = ACTIONS(6344), + [anon_sym_EQ_EQ] = ACTIONS(6342), + [anon_sym_BANG_EQ] = ACTIONS(6342), + [anon_sym_LT] = ACTIONS(6344), + [anon_sym_LT_EQ] = ACTIONS(6342), + [anon_sym_GT] = ACTIONS(6344), + [anon_sym_GT_EQ] = ACTIONS(6342), + [anon_sym_AMP] = ACTIONS(6344), + [anon_sym_xor] = ACTIONS(6344), + [anon_sym_LT_LT] = ACTIONS(6344), + [anon_sym_GT_GT] = ACTIONS(6344), + [anon_sym_LT_LT_PIPE] = ACTIONS(6344), + [anon_sym_PLUS] = ACTIONS(6344), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_catch] = ACTIONS(6344), + [anon_sym_TILDE] = ACTIONS(6342), + [anon_sym_try] = ACTIONS(6344), + [anon_sym_DOT] = ACTIONS(6344), + [anon_sym_CARET] = ACTIONS(6342), + [anon_sym_true] = ACTIONS(6344), + [anon_sym_false] = ACTIONS(6344), + [anon_sym_null] = ACTIONS(6344), + [anon_sym_unreachable] = ACTIONS(6344), + [anon_sym_undefined] = ACTIONS(6344), + [sym_sink] = ACTIONS(6344), + [sym_integer] = ACTIONS(6344), + [sym_float] = ACTIONS(6342), + [anon_sym_DQUOTE] = ACTIONS(6342), + [sym_multiline_string] = ACTIONS(6342), + [sym_character] = ACTIONS(6342), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6342), + }, + [STATE(3518)] = { + [sym_identifier] = ACTIONS(6348), + [anon_sym_func] = ACTIONS(6348), + [anon_sym_BANG] = ACTIONS(6348), + [anon_sym_EQ] = ACTIONS(6348), + [anon_sym_struct] = ACTIONS(6348), + [anon_sym_LPAREN] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(6346), + [anon_sym_DASH] = ACTIONS(6348), + [anon_sym_DOLLAR] = ACTIONS(6346), + [anon_sym_PIPE] = ACTIONS(6348), + [anon_sym_QMARK] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6348), + [anon_sym_LBRACK] = ACTIONS(6346), + [anon_sym_void] = ACTIONS(6348), + [anon_sym_noreturn] = ACTIONS(6348), + [anon_sym_type] = ACTIONS(6348), + [anon_sym_anyopaque] = ACTIONS(6348), + [anon_sym_bool] = ACTIONS(6348), + [anon_sym_int] = ACTIONS(6348), + [anon_sym_uint] = ACTIONS(6348), + [anon_sym_float] = ACTIONS(6348), + [anon_sym_range] = ACTIONS(6348), + [anon_sym_i8] = ACTIONS(6348), + [anon_sym_i16] = ACTIONS(6348), + [anon_sym_i32] = ACTIONS(6348), + [anon_sym_i64] = ACTIONS(6348), + [anon_sym_u8] = ACTIONS(6348), + [anon_sym_u16] = ACTIONS(6348), + [anon_sym_u32] = ACTIONS(6348), + [anon_sym_u64] = ACTIONS(6348), + [anon_sym_isize] = ACTIONS(6348), + [anon_sym_usize] = ACTIONS(6348), + [anon_sym_f32] = ACTIONS(6348), + [anon_sym_f64] = ACTIONS(6348), + [anon_sym_c_char] = ACTIONS(6348), + [anon_sym_c_schar] = ACTIONS(6348), + [anon_sym_c_uchar] = ACTIONS(6348), + [anon_sym_c_short] = ACTIONS(6348), + [anon_sym_c_ushort] = ACTIONS(6348), + [anon_sym_c_int] = ACTIONS(6348), + [anon_sym_c_uint] = ACTIONS(6348), + [anon_sym_c_long] = ACTIONS(6348), + [anon_sym_c_ulong] = ACTIONS(6348), + [anon_sym_c_longlong] = ACTIONS(6348), + [anon_sym_c_ulonglong] = ACTIONS(6348), + [anon_sym_c_float] = ACTIONS(6348), + [anon_sym_c_double] = ACTIONS(6348), + [anon_sym_c_longdouble] = ACTIONS(6348), + [anon_sym_PLUS_EQ] = ACTIONS(6346), + [anon_sym_DASH_EQ] = ACTIONS(6346), + [anon_sym_STAR_EQ] = ACTIONS(6346), + [anon_sym_SLASH_EQ] = ACTIONS(6346), + [anon_sym_AMP_EQ] = ACTIONS(6346), + [anon_sym_PIPE_EQ] = ACTIONS(6348), + [anon_sym_xor_EQ] = ACTIONS(6346), + [anon_sym_LT_LT_EQ] = ACTIONS(6346), + [anon_sym_GT_GT_EQ] = ACTIONS(6346), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6346), + [anon_sym_return] = ACTIONS(6348), + [anon_sym_yield] = ACTIONS(6348), + [anon_sym_break] = ACTIONS(6348), + [anon_sym_continue] = ACTIONS(6348), + [anon_sym_defer] = ACTIONS(6348), + [anon_sym_errdefer] = ACTIONS(6348), + [anon_sym_if] = ACTIONS(6348), + [anon_sym_else] = ACTIONS(6348), + [anon_sym_while] = ACTIONS(6348), + [anon_sym_expand] = ACTIONS(6348), + [anon_sym_for] = ACTIONS(6348), + [anon_sym_PIPE2] = ACTIONS(6346), + [anon_sym_match] = ACTIONS(6348), + [anon_sym_DOT_DOT] = ACTIONS(6348), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6346), + [anon_sym_orelse] = ACTIONS(6348), + [anon_sym_or] = ACTIONS(6348), + [anon_sym_and] = ACTIONS(6348), + [anon_sym_EQ_EQ] = ACTIONS(6346), + [anon_sym_BANG_EQ] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6348), + [anon_sym_LT_EQ] = ACTIONS(6346), + [anon_sym_GT] = ACTIONS(6348), + [anon_sym_GT_EQ] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6348), + [anon_sym_xor] = ACTIONS(6348), + [anon_sym_LT_LT] = ACTIONS(6348), + [anon_sym_GT_GT] = ACTIONS(6348), + [anon_sym_LT_LT_PIPE] = ACTIONS(6348), + [anon_sym_PLUS] = ACTIONS(6348), + [anon_sym_SLASH] = ACTIONS(6348), + [anon_sym_catch] = ACTIONS(6348), + [anon_sym_TILDE] = ACTIONS(6346), + [anon_sym_try] = ACTIONS(6348), + [anon_sym_DOT] = ACTIONS(6348), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_true] = ACTIONS(6348), + [anon_sym_false] = ACTIONS(6348), + [anon_sym_null] = ACTIONS(6348), + [anon_sym_unreachable] = ACTIONS(6348), + [anon_sym_undefined] = ACTIONS(6348), + [sym_sink] = ACTIONS(6348), + [sym_integer] = ACTIONS(6348), + [sym_float] = ACTIONS(6346), + [anon_sym_DQUOTE] = ACTIONS(6346), + [sym_multiline_string] = ACTIONS(6346), + [sym_character] = ACTIONS(6346), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6346), + }, + [STATE(3519)] = { + [sym_identifier] = ACTIONS(4366), + [anon_sym_func] = ACTIONS(4366), + [anon_sym_BANG] = ACTIONS(4366), + [anon_sym_EQ] = ACTIONS(4366), + [anon_sym_struct] = ACTIONS(4366), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4366), + [anon_sym_DOLLAR] = ACTIONS(4364), + [anon_sym_PIPE] = ACTIONS(4366), + [anon_sym_QMARK] = ACTIONS(4364), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_void] = ACTIONS(4366), + [anon_sym_noreturn] = ACTIONS(4366), + [anon_sym_type] = ACTIONS(4366), + [anon_sym_anyopaque] = ACTIONS(4366), + [anon_sym_bool] = ACTIONS(4366), + [anon_sym_int] = ACTIONS(4366), + [anon_sym_uint] = ACTIONS(4366), + [anon_sym_float] = ACTIONS(4366), + [anon_sym_range] = ACTIONS(4366), + [anon_sym_i8] = ACTIONS(4366), + [anon_sym_i16] = ACTIONS(4366), + [anon_sym_i32] = ACTIONS(4366), + [anon_sym_i64] = ACTIONS(4366), + [anon_sym_u8] = ACTIONS(4366), + [anon_sym_u16] = ACTIONS(4366), + [anon_sym_u32] = ACTIONS(4366), + [anon_sym_u64] = ACTIONS(4366), + [anon_sym_isize] = ACTIONS(4366), + [anon_sym_usize] = ACTIONS(4366), + [anon_sym_f32] = ACTIONS(4366), + [anon_sym_f64] = ACTIONS(4366), + [anon_sym_c_char] = ACTIONS(4366), + [anon_sym_c_schar] = ACTIONS(4366), + [anon_sym_c_uchar] = ACTIONS(4366), + [anon_sym_c_short] = ACTIONS(4366), + [anon_sym_c_ushort] = ACTIONS(4366), + [anon_sym_c_int] = ACTIONS(4366), + [anon_sym_c_uint] = ACTIONS(4366), + [anon_sym_c_long] = ACTIONS(4366), + [anon_sym_c_ulong] = ACTIONS(4366), + [anon_sym_c_longlong] = ACTIONS(4366), + [anon_sym_c_ulonglong] = ACTIONS(4366), + [anon_sym_c_float] = ACTIONS(4366), + [anon_sym_c_double] = ACTIONS(4366), + [anon_sym_c_longdouble] = ACTIONS(4366), + [anon_sym_PLUS_EQ] = ACTIONS(4364), + [anon_sym_DASH_EQ] = ACTIONS(4364), + [anon_sym_STAR_EQ] = ACTIONS(4364), + [anon_sym_SLASH_EQ] = ACTIONS(4364), + [anon_sym_AMP_EQ] = ACTIONS(4364), + [anon_sym_PIPE_EQ] = ACTIONS(4366), + [anon_sym_xor_EQ] = ACTIONS(4364), + [anon_sym_LT_LT_EQ] = ACTIONS(4364), + [anon_sym_GT_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4364), + [anon_sym_return] = ACTIONS(4366), + [anon_sym_yield] = ACTIONS(4366), + [anon_sym_break] = ACTIONS(4366), + [anon_sym_continue] = ACTIONS(4366), + [anon_sym_defer] = ACTIONS(4366), + [anon_sym_errdefer] = ACTIONS(4366), + [anon_sym_if] = ACTIONS(4366), + [anon_sym_else] = ACTIONS(4366), + [anon_sym_while] = ACTIONS(4366), + [anon_sym_expand] = ACTIONS(4366), + [anon_sym_for] = ACTIONS(4366), + [anon_sym_PIPE2] = ACTIONS(4364), + [anon_sym_match] = ACTIONS(4366), + [anon_sym_DOT_DOT] = ACTIONS(4366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4364), + [anon_sym_orelse] = ACTIONS(4366), + [anon_sym_or] = ACTIONS(4366), + [anon_sym_and] = ACTIONS(4366), + [anon_sym_EQ_EQ] = ACTIONS(4364), + [anon_sym_BANG_EQ] = ACTIONS(4364), + [anon_sym_LT] = ACTIONS(4366), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4366), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym_xor] = ACTIONS(4366), + [anon_sym_LT_LT] = ACTIONS(4366), + [anon_sym_GT_GT] = ACTIONS(4366), + [anon_sym_LT_LT_PIPE] = ACTIONS(4366), + [anon_sym_PLUS] = ACTIONS(4366), + [anon_sym_SLASH] = ACTIONS(4366), + [anon_sym_catch] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4364), + [anon_sym_try] = ACTIONS(4366), + [anon_sym_DOT] = ACTIONS(4366), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4366), + [anon_sym_false] = ACTIONS(4366), + [anon_sym_null] = ACTIONS(4366), + [anon_sym_unreachable] = ACTIONS(4366), + [anon_sym_undefined] = ACTIONS(4366), + [sym_sink] = ACTIONS(4366), + [sym_integer] = ACTIONS(4366), + [sym_float] = ACTIONS(4364), + [anon_sym_DQUOTE] = ACTIONS(4364), + [sym_multiline_string] = ACTIONS(4364), + [sym_character] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4364), + }, + [STATE(3520)] = { + [sym_identifier] = ACTIONS(4370), + [anon_sym_func] = ACTIONS(4370), + [anon_sym_BANG] = ACTIONS(4370), + [anon_sym_EQ] = ACTIONS(4370), + [anon_sym_struct] = ACTIONS(4370), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_LBRACE] = ACTIONS(4368), + [anon_sym_DASH] = ACTIONS(4370), + [anon_sym_DOLLAR] = ACTIONS(4368), + [anon_sym_PIPE] = ACTIONS(4370), + [anon_sym_QMARK] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(4370), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_void] = ACTIONS(4370), + [anon_sym_noreturn] = ACTIONS(4370), + [anon_sym_type] = ACTIONS(4370), + [anon_sym_anyopaque] = ACTIONS(4370), + [anon_sym_bool] = ACTIONS(4370), + [anon_sym_int] = ACTIONS(4370), + [anon_sym_uint] = ACTIONS(4370), + [anon_sym_float] = ACTIONS(4370), + [anon_sym_range] = ACTIONS(4370), + [anon_sym_i8] = ACTIONS(4370), + [anon_sym_i16] = ACTIONS(4370), + [anon_sym_i32] = ACTIONS(4370), + [anon_sym_i64] = ACTIONS(4370), + [anon_sym_u8] = ACTIONS(4370), + [anon_sym_u16] = ACTIONS(4370), + [anon_sym_u32] = ACTIONS(4370), + [anon_sym_u64] = ACTIONS(4370), + [anon_sym_isize] = ACTIONS(4370), + [anon_sym_usize] = ACTIONS(4370), + [anon_sym_f32] = ACTIONS(4370), + [anon_sym_f64] = ACTIONS(4370), + [anon_sym_c_char] = ACTIONS(4370), + [anon_sym_c_schar] = ACTIONS(4370), + [anon_sym_c_uchar] = ACTIONS(4370), + [anon_sym_c_short] = ACTIONS(4370), + [anon_sym_c_ushort] = ACTIONS(4370), + [anon_sym_c_int] = ACTIONS(4370), + [anon_sym_c_uint] = ACTIONS(4370), + [anon_sym_c_long] = ACTIONS(4370), + [anon_sym_c_ulong] = ACTIONS(4370), + [anon_sym_c_longlong] = ACTIONS(4370), + [anon_sym_c_ulonglong] = ACTIONS(4370), + [anon_sym_c_float] = ACTIONS(4370), + [anon_sym_c_double] = ACTIONS(4370), + [anon_sym_c_longdouble] = ACTIONS(4370), + [anon_sym_PLUS_EQ] = ACTIONS(4368), + [anon_sym_DASH_EQ] = ACTIONS(4368), + [anon_sym_STAR_EQ] = ACTIONS(4368), + [anon_sym_SLASH_EQ] = ACTIONS(4368), + [anon_sym_AMP_EQ] = ACTIONS(4368), + [anon_sym_PIPE_EQ] = ACTIONS(4370), + [anon_sym_xor_EQ] = ACTIONS(4368), + [anon_sym_LT_LT_EQ] = ACTIONS(4368), + [anon_sym_GT_GT_EQ] = ACTIONS(4368), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4368), + [anon_sym_return] = ACTIONS(4370), + [anon_sym_yield] = ACTIONS(4370), + [anon_sym_break] = ACTIONS(4370), + [anon_sym_continue] = ACTIONS(4370), + [anon_sym_defer] = ACTIONS(4370), + [anon_sym_errdefer] = ACTIONS(4370), + [anon_sym_if] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(4370), + [anon_sym_while] = ACTIONS(4370), + [anon_sym_expand] = ACTIONS(4370), + [anon_sym_for] = ACTIONS(4370), + [anon_sym_PIPE2] = ACTIONS(4368), + [anon_sym_match] = ACTIONS(4370), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4368), + [anon_sym_orelse] = ACTIONS(4370), + [anon_sym_or] = ACTIONS(4370), + [anon_sym_and] = ACTIONS(4370), + [anon_sym_EQ_EQ] = ACTIONS(4368), + [anon_sym_BANG_EQ] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4370), + [anon_sym_LT_EQ] = ACTIONS(4368), + [anon_sym_GT] = ACTIONS(4370), + [anon_sym_GT_EQ] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4370), + [anon_sym_xor] = ACTIONS(4370), + [anon_sym_LT_LT] = ACTIONS(4370), + [anon_sym_GT_GT] = ACTIONS(4370), + [anon_sym_LT_LT_PIPE] = ACTIONS(4370), + [anon_sym_PLUS] = ACTIONS(4370), + [anon_sym_SLASH] = ACTIONS(4370), + [anon_sym_catch] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4368), + [anon_sym_try] = ACTIONS(4370), + [anon_sym_DOT] = ACTIONS(4370), + [anon_sym_CARET] = ACTIONS(4368), + [anon_sym_true] = ACTIONS(4370), + [anon_sym_false] = ACTIONS(4370), + [anon_sym_null] = ACTIONS(4370), + [anon_sym_unreachable] = ACTIONS(4370), + [anon_sym_undefined] = ACTIONS(4370), + [sym_sink] = ACTIONS(4370), + [sym_integer] = ACTIONS(4370), + [sym_float] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(4368), + [sym_multiline_string] = ACTIONS(4368), + [sym_character] = ACTIONS(4368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4368), + }, + [STATE(3521)] = { + [sym_identifier] = ACTIONS(4374), + [anon_sym_func] = ACTIONS(4374), + [anon_sym_BANG] = ACTIONS(4374), + [anon_sym_EQ] = ACTIONS(4374), + [anon_sym_struct] = ACTIONS(4374), + [anon_sym_LPAREN] = ACTIONS(4372), + [anon_sym_LBRACE] = ACTIONS(4372), + [anon_sym_DASH] = ACTIONS(4374), + [anon_sym_DOLLAR] = ACTIONS(4372), + [anon_sym_PIPE] = ACTIONS(4374), + [anon_sym_QMARK] = ACTIONS(4372), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_void] = ACTIONS(4374), + [anon_sym_noreturn] = ACTIONS(4374), + [anon_sym_type] = ACTIONS(4374), + [anon_sym_anyopaque] = ACTIONS(4374), + [anon_sym_bool] = ACTIONS(4374), + [anon_sym_int] = ACTIONS(4374), + [anon_sym_uint] = ACTIONS(4374), + [anon_sym_float] = ACTIONS(4374), + [anon_sym_range] = ACTIONS(4374), + [anon_sym_i8] = ACTIONS(4374), + [anon_sym_i16] = ACTIONS(4374), + [anon_sym_i32] = ACTIONS(4374), + [anon_sym_i64] = ACTIONS(4374), + [anon_sym_u8] = ACTIONS(4374), + [anon_sym_u16] = ACTIONS(4374), + [anon_sym_u32] = ACTIONS(4374), + [anon_sym_u64] = ACTIONS(4374), + [anon_sym_isize] = ACTIONS(4374), + [anon_sym_usize] = ACTIONS(4374), + [anon_sym_f32] = ACTIONS(4374), + [anon_sym_f64] = ACTIONS(4374), + [anon_sym_c_char] = ACTIONS(4374), + [anon_sym_c_schar] = ACTIONS(4374), + [anon_sym_c_uchar] = ACTIONS(4374), + [anon_sym_c_short] = ACTIONS(4374), + [anon_sym_c_ushort] = ACTIONS(4374), + [anon_sym_c_int] = ACTIONS(4374), + [anon_sym_c_uint] = ACTIONS(4374), + [anon_sym_c_long] = ACTIONS(4374), + [anon_sym_c_ulong] = ACTIONS(4374), + [anon_sym_c_longlong] = ACTIONS(4374), + [anon_sym_c_ulonglong] = ACTIONS(4374), + [anon_sym_c_float] = ACTIONS(4374), + [anon_sym_c_double] = ACTIONS(4374), + [anon_sym_c_longdouble] = ACTIONS(4374), + [anon_sym_PLUS_EQ] = ACTIONS(4372), + [anon_sym_DASH_EQ] = ACTIONS(4372), + [anon_sym_STAR_EQ] = ACTIONS(4372), + [anon_sym_SLASH_EQ] = ACTIONS(4372), + [anon_sym_AMP_EQ] = ACTIONS(4372), + [anon_sym_PIPE_EQ] = ACTIONS(4374), + [anon_sym_xor_EQ] = ACTIONS(4372), + [anon_sym_LT_LT_EQ] = ACTIONS(4372), + [anon_sym_GT_GT_EQ] = ACTIONS(4372), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4372), + [anon_sym_return] = ACTIONS(4374), + [anon_sym_yield] = ACTIONS(4374), + [anon_sym_break] = ACTIONS(4374), + [anon_sym_continue] = ACTIONS(4374), + [anon_sym_defer] = ACTIONS(4374), + [anon_sym_errdefer] = ACTIONS(4374), + [anon_sym_if] = ACTIONS(4374), + [anon_sym_else] = ACTIONS(4374), + [anon_sym_while] = ACTIONS(4374), + [anon_sym_expand] = ACTIONS(4374), + [anon_sym_for] = ACTIONS(4374), + [anon_sym_PIPE2] = ACTIONS(4372), + [anon_sym_match] = ACTIONS(4374), + [anon_sym_DOT_DOT] = ACTIONS(4374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_orelse] = ACTIONS(4374), + [anon_sym_or] = ACTIONS(4374), + [anon_sym_and] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_LT] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4372), + [anon_sym_GT] = ACTIONS(4374), + [anon_sym_GT_EQ] = ACTIONS(4372), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym_xor] = ACTIONS(4374), + [anon_sym_LT_LT] = ACTIONS(4374), + [anon_sym_GT_GT] = ACTIONS(4374), + [anon_sym_LT_LT_PIPE] = ACTIONS(4374), + [anon_sym_PLUS] = ACTIONS(4374), + [anon_sym_SLASH] = ACTIONS(4374), + [anon_sym_catch] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4372), + [anon_sym_try] = ACTIONS(4374), + [anon_sym_DOT] = ACTIONS(4374), + [anon_sym_CARET] = ACTIONS(4372), + [anon_sym_true] = ACTIONS(4374), + [anon_sym_false] = ACTIONS(4374), + [anon_sym_null] = ACTIONS(4374), + [anon_sym_unreachable] = ACTIONS(4374), + [anon_sym_undefined] = ACTIONS(4374), + [sym_sink] = ACTIONS(4374), + [sym_integer] = ACTIONS(4374), + [sym_float] = ACTIONS(4372), + [anon_sym_DQUOTE] = ACTIONS(4372), + [sym_multiline_string] = ACTIONS(4372), + [sym_character] = ACTIONS(4372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4372), + }, + [STATE(3522)] = { + [sym_identifier] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2903), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_PLUS_EQ] = ACTIONS(2901), + [anon_sym_DASH_EQ] = ACTIONS(2901), + [anon_sym_STAR_EQ] = ACTIONS(2901), + [anon_sym_SLASH_EQ] = ACTIONS(2901), + [anon_sym_AMP_EQ] = ACTIONS(2901), + [anon_sym_PIPE_EQ] = ACTIONS(2903), + [anon_sym_xor_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_GT_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_errdefer] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_expand] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_PIPE2] = ACTIONS(2901), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_LT_LT_PIPE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2903), + [anon_sym_unreachable] = ACTIONS(2903), + [anon_sym_undefined] = ACTIONS(2903), + [sym_sink] = ACTIONS(2903), + [sym_integer] = ACTIONS(2903), + [sym_float] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_multiline_string] = ACTIONS(2901), + [sym_character] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(3523)] = { + [sym_identifier] = ACTIONS(4382), + [anon_sym_func] = ACTIONS(4382), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_struct] = ACTIONS(4382), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_DOLLAR] = ACTIONS(4380), + [anon_sym_PIPE] = ACTIONS(4382), + [anon_sym_QMARK] = ACTIONS(4380), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_void] = ACTIONS(4382), + [anon_sym_noreturn] = ACTIONS(4382), + [anon_sym_type] = ACTIONS(4382), + [anon_sym_anyopaque] = ACTIONS(4382), + [anon_sym_bool] = ACTIONS(4382), + [anon_sym_int] = ACTIONS(4382), + [anon_sym_uint] = ACTIONS(4382), + [anon_sym_float] = ACTIONS(4382), + [anon_sym_range] = ACTIONS(4382), + [anon_sym_i8] = ACTIONS(4382), + [anon_sym_i16] = ACTIONS(4382), + [anon_sym_i32] = ACTIONS(4382), + [anon_sym_i64] = ACTIONS(4382), + [anon_sym_u8] = ACTIONS(4382), + [anon_sym_u16] = ACTIONS(4382), + [anon_sym_u32] = ACTIONS(4382), + [anon_sym_u64] = ACTIONS(4382), + [anon_sym_isize] = ACTIONS(4382), + [anon_sym_usize] = ACTIONS(4382), + [anon_sym_f32] = ACTIONS(4382), + [anon_sym_f64] = ACTIONS(4382), + [anon_sym_c_char] = ACTIONS(4382), + [anon_sym_c_schar] = ACTIONS(4382), + [anon_sym_c_uchar] = ACTIONS(4382), + [anon_sym_c_short] = ACTIONS(4382), + [anon_sym_c_ushort] = ACTIONS(4382), + [anon_sym_c_int] = ACTIONS(4382), + [anon_sym_c_uint] = ACTIONS(4382), + [anon_sym_c_long] = ACTIONS(4382), + [anon_sym_c_ulong] = ACTIONS(4382), + [anon_sym_c_longlong] = ACTIONS(4382), + [anon_sym_c_ulonglong] = ACTIONS(4382), + [anon_sym_c_float] = ACTIONS(4382), + [anon_sym_c_double] = ACTIONS(4382), + [anon_sym_c_longdouble] = ACTIONS(4382), + [anon_sym_PLUS_EQ] = ACTIONS(4380), + [anon_sym_DASH_EQ] = ACTIONS(4380), + [anon_sym_STAR_EQ] = ACTIONS(4380), + [anon_sym_SLASH_EQ] = ACTIONS(4380), + [anon_sym_AMP_EQ] = ACTIONS(4380), + [anon_sym_PIPE_EQ] = ACTIONS(4382), + [anon_sym_xor_EQ] = ACTIONS(4380), + [anon_sym_LT_LT_EQ] = ACTIONS(4380), + [anon_sym_GT_GT_EQ] = ACTIONS(4380), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4380), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_yield] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_defer] = ACTIONS(4382), + [anon_sym_errdefer] = ACTIONS(4382), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_expand] = ACTIONS(4382), + [anon_sym_for] = ACTIONS(4382), + [anon_sym_PIPE2] = ACTIONS(4380), + [anon_sym_match] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4380), + [anon_sym_orelse] = ACTIONS(4382), + [anon_sym_or] = ACTIONS(4382), + [anon_sym_and] = ACTIONS(4382), + [anon_sym_EQ_EQ] = ACTIONS(4380), + [anon_sym_BANG_EQ] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_LT_EQ] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_GT_EQ] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4382), + [anon_sym_xor] = ACTIONS(4382), + [anon_sym_LT_LT] = ACTIONS(4382), + [anon_sym_GT_GT] = ACTIONS(4382), + [anon_sym_LT_LT_PIPE] = ACTIONS(4382), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_catch] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4380), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_null] = ACTIONS(4382), + [anon_sym_unreachable] = ACTIONS(4382), + [anon_sym_undefined] = ACTIONS(4382), + [sym_sink] = ACTIONS(4382), + [sym_integer] = ACTIONS(4382), + [sym_float] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(4380), + [sym_multiline_string] = ACTIONS(4380), + [sym_character] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4380), + }, + [STATE(3524)] = { + [sym_identifier] = ACTIONS(4386), + [anon_sym_func] = ACTIONS(4386), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_struct] = ACTIONS(4386), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_DOLLAR] = ACTIONS(4384), + [anon_sym_PIPE] = ACTIONS(4386), + [anon_sym_QMARK] = ACTIONS(4384), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_void] = ACTIONS(4386), + [anon_sym_noreturn] = ACTIONS(4386), + [anon_sym_type] = ACTIONS(4386), + [anon_sym_anyopaque] = ACTIONS(4386), + [anon_sym_bool] = ACTIONS(4386), + [anon_sym_int] = ACTIONS(4386), + [anon_sym_uint] = ACTIONS(4386), + [anon_sym_float] = ACTIONS(4386), + [anon_sym_range] = ACTIONS(4386), + [anon_sym_i8] = ACTIONS(4386), + [anon_sym_i16] = ACTIONS(4386), + [anon_sym_i32] = ACTIONS(4386), + [anon_sym_i64] = ACTIONS(4386), + [anon_sym_u8] = ACTIONS(4386), + [anon_sym_u16] = ACTIONS(4386), + [anon_sym_u32] = ACTIONS(4386), + [anon_sym_u64] = ACTIONS(4386), + [anon_sym_isize] = ACTIONS(4386), + [anon_sym_usize] = ACTIONS(4386), + [anon_sym_f32] = ACTIONS(4386), + [anon_sym_f64] = ACTIONS(4386), + [anon_sym_c_char] = ACTIONS(4386), + [anon_sym_c_schar] = ACTIONS(4386), + [anon_sym_c_uchar] = ACTIONS(4386), + [anon_sym_c_short] = ACTIONS(4386), + [anon_sym_c_ushort] = ACTIONS(4386), + [anon_sym_c_int] = ACTIONS(4386), + [anon_sym_c_uint] = ACTIONS(4386), + [anon_sym_c_long] = ACTIONS(4386), + [anon_sym_c_ulong] = ACTIONS(4386), + [anon_sym_c_longlong] = ACTIONS(4386), + [anon_sym_c_ulonglong] = ACTIONS(4386), + [anon_sym_c_float] = ACTIONS(4386), + [anon_sym_c_double] = ACTIONS(4386), + [anon_sym_c_longdouble] = ACTIONS(4386), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_AMP_EQ] = ACTIONS(4384), + [anon_sym_PIPE_EQ] = ACTIONS(4386), + [anon_sym_xor_EQ] = ACTIONS(4384), + [anon_sym_LT_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_GT_EQ] = ACTIONS(4384), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4384), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_yield] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_defer] = ACTIONS(4386), + [anon_sym_errdefer] = ACTIONS(4386), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_while] = ACTIONS(4386), + [anon_sym_expand] = ACTIONS(4386), + [anon_sym_for] = ACTIONS(4386), + [anon_sym_PIPE2] = ACTIONS(4384), + [anon_sym_match] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4384), + [anon_sym_orelse] = ACTIONS(4386), + [anon_sym_or] = ACTIONS(4386), + [anon_sym_and] = ACTIONS(4386), + [anon_sym_EQ_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(4386), + [anon_sym_xor] = ACTIONS(4386), + [anon_sym_LT_LT] = ACTIONS(4386), + [anon_sym_GT_GT] = ACTIONS(4386), + [anon_sym_LT_LT_PIPE] = ACTIONS(4386), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_catch] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4384), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_CARET] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_null] = ACTIONS(4386), + [anon_sym_unreachable] = ACTIONS(4386), + [anon_sym_undefined] = ACTIONS(4386), + [sym_sink] = ACTIONS(4386), + [sym_integer] = ACTIONS(4386), + [sym_float] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym_multiline_string] = ACTIONS(4384), + [sym_character] = ACTIONS(4384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4384), + }, + [STATE(3525)] = { + [sym_identifier] = ACTIONS(4390), + [anon_sym_func] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_struct] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_DOLLAR] = ACTIONS(4388), + [anon_sym_PIPE] = ACTIONS(4390), + [anon_sym_QMARK] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_void] = ACTIONS(4390), + [anon_sym_noreturn] = ACTIONS(4390), + [anon_sym_type] = ACTIONS(4390), + [anon_sym_anyopaque] = ACTIONS(4390), + [anon_sym_bool] = ACTIONS(4390), + [anon_sym_int] = ACTIONS(4390), + [anon_sym_uint] = ACTIONS(4390), + [anon_sym_float] = ACTIONS(4390), + [anon_sym_range] = ACTIONS(4390), + [anon_sym_i8] = ACTIONS(4390), + [anon_sym_i16] = ACTIONS(4390), + [anon_sym_i32] = ACTIONS(4390), + [anon_sym_i64] = ACTIONS(4390), + [anon_sym_u8] = ACTIONS(4390), + [anon_sym_u16] = ACTIONS(4390), + [anon_sym_u32] = ACTIONS(4390), + [anon_sym_u64] = ACTIONS(4390), + [anon_sym_isize] = ACTIONS(4390), + [anon_sym_usize] = ACTIONS(4390), + [anon_sym_f32] = ACTIONS(4390), + [anon_sym_f64] = ACTIONS(4390), + [anon_sym_c_char] = ACTIONS(4390), + [anon_sym_c_schar] = ACTIONS(4390), + [anon_sym_c_uchar] = ACTIONS(4390), + [anon_sym_c_short] = ACTIONS(4390), + [anon_sym_c_ushort] = ACTIONS(4390), + [anon_sym_c_int] = ACTIONS(4390), + [anon_sym_c_uint] = ACTIONS(4390), + [anon_sym_c_long] = ACTIONS(4390), + [anon_sym_c_ulong] = ACTIONS(4390), + [anon_sym_c_longlong] = ACTIONS(4390), + [anon_sym_c_ulonglong] = ACTIONS(4390), + [anon_sym_c_float] = ACTIONS(4390), + [anon_sym_c_double] = ACTIONS(4390), + [anon_sym_c_longdouble] = ACTIONS(4390), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_AMP_EQ] = ACTIONS(4388), + [anon_sym_PIPE_EQ] = ACTIONS(4390), + [anon_sym_xor_EQ] = ACTIONS(4388), + [anon_sym_LT_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_GT_EQ] = ACTIONS(4388), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_yield] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_defer] = ACTIONS(4390), + [anon_sym_errdefer] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_expand] = ACTIONS(4390), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_PIPE2] = ACTIONS(4388), + [anon_sym_match] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4388), + [anon_sym_orelse] = ACTIONS(4390), + [anon_sym_or] = ACTIONS(4390), + [anon_sym_and] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4390), + [anon_sym_xor] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT_PIPE] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_catch] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4388), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_CARET] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_unreachable] = ACTIONS(4390), + [anon_sym_undefined] = ACTIONS(4390), + [sym_sink] = ACTIONS(4390), + [sym_integer] = ACTIONS(4390), + [sym_float] = ACTIONS(4388), + [anon_sym_DQUOTE] = ACTIONS(4388), + [sym_multiline_string] = ACTIONS(4388), + [sym_character] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4388), + }, + [STATE(3526)] = { + [sym_identifier] = ACTIONS(4416), + [anon_sym_func] = ACTIONS(4416), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_DOLLAR] = ACTIONS(4414), + [anon_sym_PIPE] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4416), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_void] = ACTIONS(4416), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_AMP_EQ] = ACTIONS(4414), + [anon_sym_PIPE_EQ] = ACTIONS(4416), + [anon_sym_xor_EQ] = ACTIONS(4414), + [anon_sym_LT_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_GT_EQ] = ACTIONS(4414), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4414), + [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_PIPE2] = ACTIONS(4414), + [anon_sym_match] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4416), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4414), + [anon_sym_orelse] = ACTIONS(4416), + [anon_sym_or] = ACTIONS(4416), + [anon_sym_and] = ACTIONS(4416), + [anon_sym_EQ_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_xor] = ACTIONS(4416), + [anon_sym_LT_LT] = ACTIONS(4416), + [anon_sym_GT_GT] = ACTIONS(4416), + [anon_sym_LT_LT_PIPE] = ACTIONS(4416), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_catch] = ACTIONS(4416), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_CARET] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_unreachable] = ACTIONS(4416), + [anon_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(3527)] = { + [sym_identifier] = ACTIONS(6026), + [anon_sym_func] = ACTIONS(6026), + [anon_sym_BANG] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6026), + [anon_sym_struct] = ACTIONS(6026), + [anon_sym_LPAREN] = ACTIONS(6024), + [anon_sym_LBRACE] = ACTIONS(6024), + [anon_sym_DASH] = ACTIONS(6026), + [anon_sym_DOLLAR] = ACTIONS(6024), + [anon_sym_PIPE] = ACTIONS(6026), + [anon_sym_QMARK] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(6026), + [anon_sym_LBRACK] = ACTIONS(6024), + [anon_sym_void] = ACTIONS(6026), + [anon_sym_noreturn] = ACTIONS(6026), + [anon_sym_type] = ACTIONS(6026), + [anon_sym_anyopaque] = ACTIONS(6026), + [anon_sym_bool] = ACTIONS(6026), + [anon_sym_int] = ACTIONS(6026), + [anon_sym_uint] = ACTIONS(6026), + [anon_sym_float] = ACTIONS(6026), + [anon_sym_range] = ACTIONS(6026), + [anon_sym_i8] = ACTIONS(6026), + [anon_sym_i16] = ACTIONS(6026), + [anon_sym_i32] = ACTIONS(6026), + [anon_sym_i64] = ACTIONS(6026), + [anon_sym_u8] = ACTIONS(6026), + [anon_sym_u16] = ACTIONS(6026), + [anon_sym_u32] = ACTIONS(6026), + [anon_sym_u64] = ACTIONS(6026), + [anon_sym_isize] = ACTIONS(6026), + [anon_sym_usize] = ACTIONS(6026), + [anon_sym_f32] = ACTIONS(6026), + [anon_sym_f64] = ACTIONS(6026), + [anon_sym_c_char] = ACTIONS(6026), + [anon_sym_c_schar] = ACTIONS(6026), + [anon_sym_c_uchar] = ACTIONS(6026), + [anon_sym_c_short] = ACTIONS(6026), + [anon_sym_c_ushort] = ACTIONS(6026), + [anon_sym_c_int] = ACTIONS(6026), + [anon_sym_c_uint] = ACTIONS(6026), + [anon_sym_c_long] = ACTIONS(6026), + [anon_sym_c_ulong] = ACTIONS(6026), + [anon_sym_c_longlong] = ACTIONS(6026), + [anon_sym_c_ulonglong] = ACTIONS(6026), + [anon_sym_c_float] = ACTIONS(6026), + [anon_sym_c_double] = ACTIONS(6026), + [anon_sym_c_longdouble] = ACTIONS(6026), + [anon_sym_PLUS_EQ] = ACTIONS(6024), + [anon_sym_DASH_EQ] = ACTIONS(6024), + [anon_sym_STAR_EQ] = ACTIONS(6024), + [anon_sym_SLASH_EQ] = ACTIONS(6024), + [anon_sym_AMP_EQ] = ACTIONS(6024), + [anon_sym_PIPE_EQ] = ACTIONS(6026), + [anon_sym_xor_EQ] = ACTIONS(6024), + [anon_sym_LT_LT_EQ] = ACTIONS(6024), + [anon_sym_GT_GT_EQ] = ACTIONS(6024), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6024), + [anon_sym_return] = ACTIONS(6026), + [anon_sym_yield] = ACTIONS(6026), + [anon_sym_break] = ACTIONS(6026), + [anon_sym_continue] = ACTIONS(6026), + [anon_sym_defer] = ACTIONS(6026), + [anon_sym_errdefer] = ACTIONS(6026), + [anon_sym_if] = ACTIONS(6026), + [anon_sym_else] = ACTIONS(6026), + [anon_sym_while] = ACTIONS(6026), + [anon_sym_expand] = ACTIONS(6026), + [anon_sym_for] = ACTIONS(6026), + [anon_sym_PIPE2] = ACTIONS(6024), + [anon_sym_match] = ACTIONS(6026), + [anon_sym_DOT_DOT] = ACTIONS(6026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6024), + [anon_sym_orelse] = ACTIONS(6026), + [anon_sym_or] = ACTIONS(6026), + [anon_sym_and] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(6024), + [anon_sym_BANG_EQ] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(6026), + [anon_sym_LT_EQ] = ACTIONS(6024), + [anon_sym_GT] = ACTIONS(6026), + [anon_sym_GT_EQ] = ACTIONS(6024), + [anon_sym_AMP] = ACTIONS(6026), + [anon_sym_xor] = ACTIONS(6026), + [anon_sym_LT_LT] = ACTIONS(6026), + [anon_sym_GT_GT] = ACTIONS(6026), + [anon_sym_LT_LT_PIPE] = ACTIONS(6026), + [anon_sym_PLUS] = ACTIONS(6026), + [anon_sym_SLASH] = ACTIONS(6026), + [anon_sym_catch] = ACTIONS(6026), + [anon_sym_TILDE] = ACTIONS(6024), + [anon_sym_try] = ACTIONS(6026), + [anon_sym_DOT] = ACTIONS(6026), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_true] = ACTIONS(6026), + [anon_sym_false] = ACTIONS(6026), + [anon_sym_null] = ACTIONS(6026), + [anon_sym_unreachable] = ACTIONS(6026), + [anon_sym_undefined] = ACTIONS(6026), + [sym_sink] = ACTIONS(6026), + [sym_integer] = ACTIONS(6026), + [sym_float] = ACTIONS(6024), + [anon_sym_DQUOTE] = ACTIONS(6024), + [sym_multiline_string] = ACTIONS(6024), + [sym_character] = ACTIONS(6024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6024), + }, + [STATE(3528)] = { + [sym_identifier] = ACTIONS(4468), + [anon_sym_func] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4468), + [anon_sym_QMARK] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_void] = ACTIONS(4468), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4466), + [anon_sym_DASH_EQ] = ACTIONS(4466), + [anon_sym_STAR_EQ] = ACTIONS(4466), + [anon_sym_SLASH_EQ] = ACTIONS(4466), + [anon_sym_AMP_EQ] = ACTIONS(4466), + [anon_sym_PIPE_EQ] = ACTIONS(4468), + [anon_sym_xor_EQ] = ACTIONS(4466), + [anon_sym_LT_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_GT_EQ] = ACTIONS(4466), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4466), + [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_PIPE2] = ACTIONS(4466), + [anon_sym_match] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4466), + [anon_sym_orelse] = ACTIONS(4468), + [anon_sym_or] = ACTIONS(4468), + [anon_sym_and] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_xor] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT_PIPE] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_SLASH] = ACTIONS(4468), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_CARET] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4468), + [anon_sym_false] = ACTIONS(4468), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_unreachable] = ACTIONS(4468), + [anon_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(3529)] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_func] = ACTIONS(5720), + [anon_sym_BANG] = ACTIONS(5720), + [anon_sym_EQ] = ACTIONS(5720), + [anon_sym_struct] = ACTIONS(5720), + [anon_sym_LPAREN] = ACTIONS(5718), + [anon_sym_LBRACE] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_DOLLAR] = ACTIONS(5718), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_QMARK] = ACTIONS(5718), + [anon_sym_STAR] = ACTIONS(5720), + [anon_sym_LBRACK] = ACTIONS(5718), + [anon_sym_void] = ACTIONS(5720), + [anon_sym_noreturn] = ACTIONS(5720), + [anon_sym_type] = ACTIONS(5720), + [anon_sym_anyopaque] = ACTIONS(5720), + [anon_sym_bool] = ACTIONS(5720), + [anon_sym_int] = ACTIONS(5720), + [anon_sym_uint] = ACTIONS(5720), + [anon_sym_float] = ACTIONS(5720), + [anon_sym_range] = ACTIONS(5720), + [anon_sym_i8] = ACTIONS(5720), + [anon_sym_i16] = ACTIONS(5720), + [anon_sym_i32] = ACTIONS(5720), + [anon_sym_i64] = ACTIONS(5720), + [anon_sym_u8] = ACTIONS(5720), + [anon_sym_u16] = ACTIONS(5720), + [anon_sym_u32] = ACTIONS(5720), + [anon_sym_u64] = ACTIONS(5720), + [anon_sym_isize] = ACTIONS(5720), + [anon_sym_usize] = ACTIONS(5720), + [anon_sym_f32] = ACTIONS(5720), + [anon_sym_f64] = ACTIONS(5720), + [anon_sym_c_char] = ACTIONS(5720), + [anon_sym_c_schar] = ACTIONS(5720), + [anon_sym_c_uchar] = ACTIONS(5720), + [anon_sym_c_short] = ACTIONS(5720), + [anon_sym_c_ushort] = ACTIONS(5720), + [anon_sym_c_int] = ACTIONS(5720), + [anon_sym_c_uint] = ACTIONS(5720), + [anon_sym_c_long] = ACTIONS(5720), + [anon_sym_c_ulong] = ACTIONS(5720), + [anon_sym_c_longlong] = ACTIONS(5720), + [anon_sym_c_ulonglong] = ACTIONS(5720), + [anon_sym_c_float] = ACTIONS(5720), + [anon_sym_c_double] = ACTIONS(5720), + [anon_sym_c_longdouble] = ACTIONS(5720), + [anon_sym_PLUS_EQ] = ACTIONS(5718), + [anon_sym_DASH_EQ] = ACTIONS(5718), + [anon_sym_STAR_EQ] = ACTIONS(5718), + [anon_sym_SLASH_EQ] = ACTIONS(5718), + [anon_sym_AMP_EQ] = ACTIONS(5718), + [anon_sym_PIPE_EQ] = ACTIONS(5720), + [anon_sym_xor_EQ] = ACTIONS(5718), + [anon_sym_LT_LT_EQ] = ACTIONS(5718), + [anon_sym_GT_GT_EQ] = ACTIONS(5718), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5718), + [anon_sym_return] = ACTIONS(5720), + [anon_sym_yield] = ACTIONS(5720), + [anon_sym_break] = ACTIONS(5720), + [anon_sym_continue] = ACTIONS(5720), + [anon_sym_defer] = ACTIONS(5720), + [anon_sym_errdefer] = ACTIONS(5720), + [anon_sym_if] = ACTIONS(5720), + [anon_sym_else] = ACTIONS(5720), + [anon_sym_while] = ACTIONS(5720), + [anon_sym_expand] = ACTIONS(5720), + [anon_sym_for] = ACTIONS(5720), + [anon_sym_PIPE2] = ACTIONS(5718), + [anon_sym_match] = ACTIONS(5720), + [anon_sym_DOT_DOT] = ACTIONS(5720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5718), + [anon_sym_orelse] = ACTIONS(5720), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5718), + [anon_sym_BANG_EQ] = ACTIONS(5718), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_EQ] = ACTIONS(5718), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5718), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5720), + [anon_sym_GT_GT] = ACTIONS(5720), + [anon_sym_LT_LT_PIPE] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_catch] = ACTIONS(5720), + [anon_sym_TILDE] = ACTIONS(5718), + [anon_sym_try] = ACTIONS(5720), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5718), + [anon_sym_true] = ACTIONS(5720), + [anon_sym_false] = ACTIONS(5720), + [anon_sym_null] = ACTIONS(5720), + [anon_sym_unreachable] = ACTIONS(5720), + [anon_sym_undefined] = ACTIONS(5720), + [sym_sink] = ACTIONS(5720), + [sym_integer] = ACTIONS(5720), + [sym_float] = ACTIONS(5718), + [anon_sym_DQUOTE] = ACTIONS(5718), + [sym_multiline_string] = ACTIONS(5718), + [sym_character] = ACTIONS(5718), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5718), + }, + [STATE(3530)] = { + [sym_identifier] = ACTIONS(6032), + [anon_sym_func] = ACTIONS(6032), + [anon_sym_BANG] = ACTIONS(6032), + [anon_sym_EQ] = ACTIONS(6032), + [anon_sym_struct] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(6030), + [anon_sym_DASH] = ACTIONS(6032), + [anon_sym_DOLLAR] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(6032), + [anon_sym_QMARK] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(6032), + [anon_sym_LBRACK] = ACTIONS(6030), + [anon_sym_void] = ACTIONS(6032), + [anon_sym_noreturn] = ACTIONS(6032), + [anon_sym_type] = ACTIONS(6032), + [anon_sym_anyopaque] = ACTIONS(6032), + [anon_sym_bool] = ACTIONS(6032), + [anon_sym_int] = ACTIONS(6032), + [anon_sym_uint] = ACTIONS(6032), + [anon_sym_float] = ACTIONS(6032), + [anon_sym_range] = ACTIONS(6032), + [anon_sym_i8] = ACTIONS(6032), + [anon_sym_i16] = ACTIONS(6032), + [anon_sym_i32] = ACTIONS(6032), + [anon_sym_i64] = ACTIONS(6032), + [anon_sym_u8] = ACTIONS(6032), + [anon_sym_u16] = ACTIONS(6032), + [anon_sym_u32] = ACTIONS(6032), + [anon_sym_u64] = ACTIONS(6032), + [anon_sym_isize] = ACTIONS(6032), + [anon_sym_usize] = ACTIONS(6032), + [anon_sym_f32] = ACTIONS(6032), + [anon_sym_f64] = ACTIONS(6032), + [anon_sym_c_char] = ACTIONS(6032), + [anon_sym_c_schar] = ACTIONS(6032), + [anon_sym_c_uchar] = ACTIONS(6032), + [anon_sym_c_short] = ACTIONS(6032), + [anon_sym_c_ushort] = ACTIONS(6032), + [anon_sym_c_int] = ACTIONS(6032), + [anon_sym_c_uint] = ACTIONS(6032), + [anon_sym_c_long] = ACTIONS(6032), + [anon_sym_c_ulong] = ACTIONS(6032), + [anon_sym_c_longlong] = ACTIONS(6032), + [anon_sym_c_ulonglong] = ACTIONS(6032), + [anon_sym_c_float] = ACTIONS(6032), + [anon_sym_c_double] = ACTIONS(6032), + [anon_sym_c_longdouble] = ACTIONS(6032), + [anon_sym_PLUS_EQ] = ACTIONS(6030), + [anon_sym_DASH_EQ] = ACTIONS(6030), + [anon_sym_STAR_EQ] = ACTIONS(6030), + [anon_sym_SLASH_EQ] = ACTIONS(6030), + [anon_sym_AMP_EQ] = ACTIONS(6030), + [anon_sym_PIPE_EQ] = ACTIONS(6032), + [anon_sym_xor_EQ] = ACTIONS(6030), + [anon_sym_LT_LT_EQ] = ACTIONS(6030), + [anon_sym_GT_GT_EQ] = ACTIONS(6030), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6030), + [anon_sym_return] = ACTIONS(6032), + [anon_sym_yield] = ACTIONS(6032), + [anon_sym_break] = ACTIONS(6032), + [anon_sym_continue] = ACTIONS(6032), + [anon_sym_defer] = ACTIONS(6032), + [anon_sym_errdefer] = ACTIONS(6032), + [anon_sym_if] = ACTIONS(6032), + [anon_sym_else] = ACTIONS(6032), + [anon_sym_while] = ACTIONS(6032), + [anon_sym_expand] = ACTIONS(6032), + [anon_sym_for] = ACTIONS(6032), + [anon_sym_PIPE2] = ACTIONS(6030), + [anon_sym_match] = ACTIONS(6032), + [anon_sym_DOT_DOT] = ACTIONS(6032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6030), + [anon_sym_orelse] = ACTIONS(6032), + [anon_sym_or] = ACTIONS(6032), + [anon_sym_and] = ACTIONS(6032), + [anon_sym_EQ_EQ] = ACTIONS(6030), + [anon_sym_BANG_EQ] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(6032), + [anon_sym_LT_EQ] = ACTIONS(6030), + [anon_sym_GT] = ACTIONS(6032), + [anon_sym_GT_EQ] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6032), + [anon_sym_xor] = ACTIONS(6032), + [anon_sym_LT_LT] = ACTIONS(6032), + [anon_sym_GT_GT] = ACTIONS(6032), + [anon_sym_LT_LT_PIPE] = ACTIONS(6032), + [anon_sym_PLUS] = ACTIONS(6032), + [anon_sym_SLASH] = ACTIONS(6032), + [anon_sym_catch] = ACTIONS(6032), + [anon_sym_TILDE] = ACTIONS(6030), + [anon_sym_try] = ACTIONS(6032), + [anon_sym_DOT] = ACTIONS(6032), + [anon_sym_CARET] = ACTIONS(6030), + [anon_sym_true] = ACTIONS(6032), + [anon_sym_false] = ACTIONS(6032), + [anon_sym_null] = ACTIONS(6032), + [anon_sym_unreachable] = ACTIONS(6032), + [anon_sym_undefined] = ACTIONS(6032), + [sym_sink] = ACTIONS(6032), + [sym_integer] = ACTIONS(6032), + [sym_float] = ACTIONS(6030), + [anon_sym_DQUOTE] = ACTIONS(6030), + [sym_multiline_string] = ACTIONS(6030), + [sym_character] = ACTIONS(6030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6030), + }, + [STATE(3531)] = { + [sym_identifier] = ACTIONS(4472), + [anon_sym_func] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4472), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_void] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym_type] = ACTIONS(4472), + [anon_sym_anyopaque] = ACTIONS(4472), + [anon_sym_bool] = ACTIONS(4472), + [anon_sym_int] = ACTIONS(4472), + [anon_sym_uint] = ACTIONS(4472), + [anon_sym_float] = ACTIONS(4472), + [anon_sym_range] = ACTIONS(4472), + [anon_sym_i8] = ACTIONS(4472), + [anon_sym_i16] = ACTIONS(4472), + [anon_sym_i32] = ACTIONS(4472), + [anon_sym_i64] = ACTIONS(4472), + [anon_sym_u8] = ACTIONS(4472), + [anon_sym_u16] = ACTIONS(4472), + [anon_sym_u32] = ACTIONS(4472), + [anon_sym_u64] = ACTIONS(4472), + [anon_sym_isize] = ACTIONS(4472), + [anon_sym_usize] = ACTIONS(4472), + [anon_sym_f32] = ACTIONS(4472), + [anon_sym_f64] = ACTIONS(4472), + [anon_sym_c_char] = ACTIONS(4472), + [anon_sym_c_schar] = ACTIONS(4472), + [anon_sym_c_uchar] = ACTIONS(4472), + [anon_sym_c_short] = ACTIONS(4472), + [anon_sym_c_ushort] = ACTIONS(4472), + [anon_sym_c_int] = ACTIONS(4472), + [anon_sym_c_uint] = ACTIONS(4472), + [anon_sym_c_long] = ACTIONS(4472), + [anon_sym_c_ulong] = ACTIONS(4472), + [anon_sym_c_longlong] = ACTIONS(4472), + [anon_sym_c_ulonglong] = ACTIONS(4472), + [anon_sym_c_float] = ACTIONS(4472), + [anon_sym_c_double] = ACTIONS(4472), + [anon_sym_c_longdouble] = ACTIONS(4472), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_AMP_EQ] = ACTIONS(4470), + [anon_sym_PIPE_EQ] = ACTIONS(4472), + [anon_sym_xor_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_GT_EQ] = ACTIONS(4470), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_defer] = ACTIONS(4472), + [anon_sym_errdefer] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_expand] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_PIPE2] = ACTIONS(4470), + [anon_sym_match] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4470), + [anon_sym_orelse] = ACTIONS(4472), + [anon_sym_or] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4472), + [anon_sym_EQ_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_xor] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(4472), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_LT_LT_PIPE] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_SLASH] = ACTIONS(4472), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_CARET] = ACTIONS(4470), + [anon_sym_true] = ACTIONS(4472), + [anon_sym_false] = ACTIONS(4472), + [anon_sym_null] = ACTIONS(4472), + [anon_sym_unreachable] = ACTIONS(4472), + [anon_sym_undefined] = ACTIONS(4472), + [sym_sink] = ACTIONS(4472), + [sym_integer] = ACTIONS(4472), + [sym_float] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_multiline_string] = ACTIONS(4470), + [sym_character] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4470), + }, + [STATE(3532)] = { + [sym_identifier] = ACTIONS(4486), + [anon_sym_func] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_void] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_type] = ACTIONS(4486), + [anon_sym_anyopaque] = ACTIONS(4486), + [anon_sym_bool] = ACTIONS(4486), + [anon_sym_int] = ACTIONS(4486), + [anon_sym_uint] = ACTIONS(4486), + [anon_sym_float] = ACTIONS(4486), + [anon_sym_range] = ACTIONS(4486), + [anon_sym_i8] = ACTIONS(4486), + [anon_sym_i16] = ACTIONS(4486), + [anon_sym_i32] = ACTIONS(4486), + [anon_sym_i64] = ACTIONS(4486), + [anon_sym_u8] = ACTIONS(4486), + [anon_sym_u16] = ACTIONS(4486), + [anon_sym_u32] = ACTIONS(4486), + [anon_sym_u64] = ACTIONS(4486), + [anon_sym_isize] = ACTIONS(4486), + [anon_sym_usize] = ACTIONS(4486), + [anon_sym_f32] = ACTIONS(4486), + [anon_sym_f64] = ACTIONS(4486), + [anon_sym_c_char] = ACTIONS(4486), + [anon_sym_c_schar] = ACTIONS(4486), + [anon_sym_c_uchar] = ACTIONS(4486), + [anon_sym_c_short] = ACTIONS(4486), + [anon_sym_c_ushort] = ACTIONS(4486), + [anon_sym_c_int] = ACTIONS(4486), + [anon_sym_c_uint] = ACTIONS(4486), + [anon_sym_c_long] = ACTIONS(4486), + [anon_sym_c_ulong] = ACTIONS(4486), + [anon_sym_c_longlong] = ACTIONS(4486), + [anon_sym_c_ulonglong] = ACTIONS(4486), + [anon_sym_c_float] = ACTIONS(4486), + [anon_sym_c_double] = ACTIONS(4486), + [anon_sym_c_longdouble] = ACTIONS(4486), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_AMP_EQ] = ACTIONS(4484), + [anon_sym_PIPE_EQ] = ACTIONS(4486), + [anon_sym_xor_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_GT_EQ] = ACTIONS(4484), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_yield] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_defer] = ACTIONS(4486), + [anon_sym_errdefer] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_while] = ACTIONS(4486), + [anon_sym_expand] = ACTIONS(4486), + [anon_sym_for] = ACTIONS(4486), + [anon_sym_PIPE2] = ACTIONS(4484), + [anon_sym_match] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4484), + [anon_sym_orelse] = ACTIONS(4486), + [anon_sym_or] = ACTIONS(4486), + [anon_sym_and] = ACTIONS(4486), + [anon_sym_EQ_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_AMP] = ACTIONS(4486), + [anon_sym_xor] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_LT_LT_PIPE] = ACTIONS(4486), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_SLASH] = ACTIONS(4486), + [anon_sym_catch] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_CARET] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_unreachable] = ACTIONS(4486), + [anon_sym_undefined] = ACTIONS(4486), + [sym_sink] = ACTIONS(4486), + [sym_integer] = ACTIONS(4486), + [sym_float] = ACTIONS(4484), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_multiline_string] = ACTIONS(4484), + [sym_character] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4484), + }, + [STATE(3533)] = { + [sym_identifier] = ACTIONS(5760), + [anon_sym_func] = ACTIONS(5760), + [anon_sym_BANG] = ACTIONS(5760), + [anon_sym_EQ] = ACTIONS(5760), + [anon_sym_struct] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_DASH] = ACTIONS(5760), + [anon_sym_DOLLAR] = ACTIONS(5758), + [anon_sym_PIPE] = ACTIONS(5760), + [anon_sym_QMARK] = ACTIONS(5758), + [anon_sym_STAR] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(5758), + [anon_sym_void] = ACTIONS(5760), + [anon_sym_noreturn] = ACTIONS(5760), + [anon_sym_type] = ACTIONS(5760), + [anon_sym_anyopaque] = ACTIONS(5760), + [anon_sym_bool] = ACTIONS(5760), + [anon_sym_int] = ACTIONS(5760), + [anon_sym_uint] = ACTIONS(5760), + [anon_sym_float] = ACTIONS(5760), + [anon_sym_range] = ACTIONS(5760), + [anon_sym_i8] = ACTIONS(5760), + [anon_sym_i16] = ACTIONS(5760), + [anon_sym_i32] = ACTIONS(5760), + [anon_sym_i64] = ACTIONS(5760), + [anon_sym_u8] = ACTIONS(5760), + [anon_sym_u16] = ACTIONS(5760), + [anon_sym_u32] = ACTIONS(5760), + [anon_sym_u64] = ACTIONS(5760), + [anon_sym_isize] = ACTIONS(5760), + [anon_sym_usize] = ACTIONS(5760), + [anon_sym_f32] = ACTIONS(5760), + [anon_sym_f64] = ACTIONS(5760), + [anon_sym_c_char] = ACTIONS(5760), + [anon_sym_c_schar] = ACTIONS(5760), + [anon_sym_c_uchar] = ACTIONS(5760), + [anon_sym_c_short] = ACTIONS(5760), + [anon_sym_c_ushort] = ACTIONS(5760), + [anon_sym_c_int] = ACTIONS(5760), + [anon_sym_c_uint] = ACTIONS(5760), + [anon_sym_c_long] = ACTIONS(5760), + [anon_sym_c_ulong] = ACTIONS(5760), + [anon_sym_c_longlong] = ACTIONS(5760), + [anon_sym_c_ulonglong] = ACTIONS(5760), + [anon_sym_c_float] = ACTIONS(5760), + [anon_sym_c_double] = ACTIONS(5760), + [anon_sym_c_longdouble] = ACTIONS(5760), + [anon_sym_PLUS_EQ] = ACTIONS(5758), + [anon_sym_DASH_EQ] = ACTIONS(5758), + [anon_sym_STAR_EQ] = ACTIONS(5758), + [anon_sym_SLASH_EQ] = ACTIONS(5758), + [anon_sym_AMP_EQ] = ACTIONS(5758), + [anon_sym_PIPE_EQ] = ACTIONS(5760), + [anon_sym_xor_EQ] = ACTIONS(5758), + [anon_sym_LT_LT_EQ] = ACTIONS(5758), + [anon_sym_GT_GT_EQ] = ACTIONS(5758), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5758), + [anon_sym_return] = ACTIONS(5760), + [anon_sym_yield] = ACTIONS(5760), + [anon_sym_break] = ACTIONS(5760), + [anon_sym_continue] = ACTIONS(5760), + [anon_sym_defer] = ACTIONS(5760), + [anon_sym_errdefer] = ACTIONS(5760), + [anon_sym_if] = ACTIONS(5760), + [anon_sym_else] = ACTIONS(5760), + [anon_sym_while] = ACTIONS(5760), + [anon_sym_expand] = ACTIONS(5760), + [anon_sym_for] = ACTIONS(5760), + [anon_sym_PIPE2] = ACTIONS(5758), + [anon_sym_match] = ACTIONS(5760), + [anon_sym_DOT_DOT] = ACTIONS(5760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5758), + [anon_sym_orelse] = ACTIONS(5760), + [anon_sym_or] = ACTIONS(5760), + [anon_sym_and] = ACTIONS(5760), + [anon_sym_EQ_EQ] = ACTIONS(5758), + [anon_sym_BANG_EQ] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_LT_EQ] = ACTIONS(5758), + [anon_sym_GT] = ACTIONS(5760), + [anon_sym_GT_EQ] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(5760), + [anon_sym_xor] = ACTIONS(5760), + [anon_sym_LT_LT] = ACTIONS(5760), + [anon_sym_GT_GT] = ACTIONS(5760), + [anon_sym_LT_LT_PIPE] = ACTIONS(5760), + [anon_sym_PLUS] = ACTIONS(5760), + [anon_sym_SLASH] = ACTIONS(5760), + [anon_sym_catch] = ACTIONS(5760), + [anon_sym_TILDE] = ACTIONS(5758), + [anon_sym_try] = ACTIONS(5760), + [anon_sym_DOT] = ACTIONS(5760), + [anon_sym_CARET] = ACTIONS(5758), + [anon_sym_true] = ACTIONS(5760), + [anon_sym_false] = ACTIONS(5760), + [anon_sym_null] = ACTIONS(5760), + [anon_sym_unreachable] = ACTIONS(5760), + [anon_sym_undefined] = ACTIONS(5760), + [sym_sink] = ACTIONS(5760), + [sym_integer] = ACTIONS(5760), + [sym_float] = ACTIONS(5758), + [anon_sym_DQUOTE] = ACTIONS(5758), + [sym_multiline_string] = ACTIONS(5758), + [sym_character] = ACTIONS(5758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5758), + }, + [STATE(3534)] = { + [sym_identifier] = ACTIONS(4518), + [anon_sym_func] = ACTIONS(4518), + [anon_sym_BANG] = ACTIONS(4518), + [anon_sym_EQ] = ACTIONS(4518), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4518), + [anon_sym_DOLLAR] = ACTIONS(4516), + [anon_sym_PIPE] = ACTIONS(4518), + [anon_sym_QMARK] = ACTIONS(4516), + [anon_sym_STAR] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_void] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym_type] = ACTIONS(4518), + [anon_sym_anyopaque] = ACTIONS(4518), + [anon_sym_bool] = ACTIONS(4518), + [anon_sym_int] = ACTIONS(4518), + [anon_sym_uint] = ACTIONS(4518), + [anon_sym_float] = ACTIONS(4518), + [anon_sym_range] = ACTIONS(4518), + [anon_sym_i8] = ACTIONS(4518), + [anon_sym_i16] = ACTIONS(4518), + [anon_sym_i32] = ACTIONS(4518), + [anon_sym_i64] = ACTIONS(4518), + [anon_sym_u8] = ACTIONS(4518), + [anon_sym_u16] = ACTIONS(4518), + [anon_sym_u32] = ACTIONS(4518), + [anon_sym_u64] = ACTIONS(4518), + [anon_sym_isize] = ACTIONS(4518), + [anon_sym_usize] = ACTIONS(4518), + [anon_sym_f32] = ACTIONS(4518), + [anon_sym_f64] = ACTIONS(4518), + [anon_sym_c_char] = ACTIONS(4518), + [anon_sym_c_schar] = ACTIONS(4518), + [anon_sym_c_uchar] = ACTIONS(4518), + [anon_sym_c_short] = ACTIONS(4518), + [anon_sym_c_ushort] = ACTIONS(4518), + [anon_sym_c_int] = ACTIONS(4518), + [anon_sym_c_uint] = ACTIONS(4518), + [anon_sym_c_long] = ACTIONS(4518), + [anon_sym_c_ulong] = ACTIONS(4518), + [anon_sym_c_longlong] = ACTIONS(4518), + [anon_sym_c_ulonglong] = ACTIONS(4518), + [anon_sym_c_float] = ACTIONS(4518), + [anon_sym_c_double] = ACTIONS(4518), + [anon_sym_c_longdouble] = ACTIONS(4518), + [anon_sym_PLUS_EQ] = ACTIONS(4516), + [anon_sym_DASH_EQ] = ACTIONS(4516), + [anon_sym_STAR_EQ] = ACTIONS(4516), + [anon_sym_SLASH_EQ] = ACTIONS(4516), + [anon_sym_AMP_EQ] = ACTIONS(4516), + [anon_sym_PIPE_EQ] = ACTIONS(4518), + [anon_sym_xor_EQ] = ACTIONS(4516), + [anon_sym_LT_LT_EQ] = ACTIONS(4516), + [anon_sym_GT_GT_EQ] = ACTIONS(4516), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4516), + [anon_sym_return] = ACTIONS(4518), + [anon_sym_yield] = ACTIONS(4518), + [anon_sym_break] = ACTIONS(4518), + [anon_sym_continue] = ACTIONS(4518), + [anon_sym_defer] = ACTIONS(4518), + [anon_sym_errdefer] = ACTIONS(4518), + [anon_sym_if] = ACTIONS(4518), + [anon_sym_else] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4518), + [anon_sym_expand] = ACTIONS(4518), + [anon_sym_for] = ACTIONS(4518), + [anon_sym_PIPE2] = ACTIONS(4516), + [anon_sym_match] = ACTIONS(4518), + [anon_sym_DOT_DOT] = ACTIONS(4518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4516), + [anon_sym_orelse] = ACTIONS(4518), + [anon_sym_or] = ACTIONS(4518), + [anon_sym_and] = ACTIONS(4518), + [anon_sym_EQ_EQ] = ACTIONS(4516), + [anon_sym_BANG_EQ] = ACTIONS(4516), + [anon_sym_LT] = ACTIONS(4518), + [anon_sym_LT_EQ] = ACTIONS(4516), + [anon_sym_GT] = ACTIONS(4518), + [anon_sym_GT_EQ] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4518), + [anon_sym_xor] = ACTIONS(4518), + [anon_sym_LT_LT] = ACTIONS(4518), + [anon_sym_GT_GT] = ACTIONS(4518), + [anon_sym_LT_LT_PIPE] = ACTIONS(4518), + [anon_sym_PLUS] = ACTIONS(4518), + [anon_sym_SLASH] = ACTIONS(4518), + [anon_sym_catch] = ACTIONS(4518), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_try] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4518), + [anon_sym_CARET] = ACTIONS(4516), + [anon_sym_true] = ACTIONS(4518), + [anon_sym_false] = ACTIONS(4518), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_unreachable] = ACTIONS(4518), + [anon_sym_undefined] = ACTIONS(4518), + [sym_sink] = ACTIONS(4518), + [sym_integer] = ACTIONS(4518), + [sym_float] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym_multiline_string] = ACTIONS(4516), + [sym_character] = ACTIONS(4516), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4516), + }, + [STATE(3535)] = { + [sym_identifier] = ACTIONS(4522), + [anon_sym_func] = ACTIONS(4522), + [anon_sym_BANG] = ACTIONS(4522), + [anon_sym_EQ] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_DOLLAR] = ACTIONS(4520), + [anon_sym_PIPE] = ACTIONS(4522), + [anon_sym_QMARK] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_void] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym_type] = ACTIONS(4522), + [anon_sym_anyopaque] = ACTIONS(4522), + [anon_sym_bool] = ACTIONS(4522), + [anon_sym_int] = ACTIONS(4522), + [anon_sym_uint] = ACTIONS(4522), + [anon_sym_float] = ACTIONS(4522), + [anon_sym_range] = ACTIONS(4522), + [anon_sym_i8] = ACTIONS(4522), + [anon_sym_i16] = ACTIONS(4522), + [anon_sym_i32] = ACTIONS(4522), + [anon_sym_i64] = ACTIONS(4522), + [anon_sym_u8] = ACTIONS(4522), + [anon_sym_u16] = ACTIONS(4522), + [anon_sym_u32] = ACTIONS(4522), + [anon_sym_u64] = ACTIONS(4522), + [anon_sym_isize] = ACTIONS(4522), + [anon_sym_usize] = ACTIONS(4522), + [anon_sym_f32] = ACTIONS(4522), + [anon_sym_f64] = ACTIONS(4522), + [anon_sym_c_char] = ACTIONS(4522), + [anon_sym_c_schar] = ACTIONS(4522), + [anon_sym_c_uchar] = ACTIONS(4522), + [anon_sym_c_short] = ACTIONS(4522), + [anon_sym_c_ushort] = ACTIONS(4522), + [anon_sym_c_int] = ACTIONS(4522), + [anon_sym_c_uint] = ACTIONS(4522), + [anon_sym_c_long] = ACTIONS(4522), + [anon_sym_c_ulong] = ACTIONS(4522), + [anon_sym_c_longlong] = ACTIONS(4522), + [anon_sym_c_ulonglong] = ACTIONS(4522), + [anon_sym_c_float] = ACTIONS(4522), + [anon_sym_c_double] = ACTIONS(4522), + [anon_sym_c_longdouble] = ACTIONS(4522), + [anon_sym_PLUS_EQ] = ACTIONS(4520), + [anon_sym_DASH_EQ] = ACTIONS(4520), + [anon_sym_STAR_EQ] = ACTIONS(4520), + [anon_sym_SLASH_EQ] = ACTIONS(4520), + [anon_sym_AMP_EQ] = ACTIONS(4520), + [anon_sym_PIPE_EQ] = ACTIONS(4522), + [anon_sym_xor_EQ] = ACTIONS(4520), + [anon_sym_LT_LT_EQ] = ACTIONS(4520), + [anon_sym_GT_GT_EQ] = ACTIONS(4520), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4520), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_yield] = ACTIONS(4522), + [anon_sym_break] = ACTIONS(4522), + [anon_sym_continue] = ACTIONS(4522), + [anon_sym_defer] = ACTIONS(4522), + [anon_sym_errdefer] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_else] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_expand] = ACTIONS(4522), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_PIPE2] = ACTIONS(4520), + [anon_sym_match] = ACTIONS(4522), + [anon_sym_DOT_DOT] = ACTIONS(4522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4520), + [anon_sym_orelse] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4522), + [anon_sym_and] = ACTIONS(4522), + [anon_sym_EQ_EQ] = ACTIONS(4520), + [anon_sym_BANG_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_GT] = ACTIONS(4522), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_xor] = ACTIONS(4522), + [anon_sym_LT_LT] = ACTIONS(4522), + [anon_sym_GT_GT] = ACTIONS(4522), + [anon_sym_LT_LT_PIPE] = ACTIONS(4522), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_SLASH] = ACTIONS(4522), + [anon_sym_catch] = ACTIONS(4522), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4522), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_true] = ACTIONS(4522), + [anon_sym_false] = ACTIONS(4522), + [anon_sym_null] = ACTIONS(4522), + [anon_sym_unreachable] = ACTIONS(4522), + [anon_sym_undefined] = ACTIONS(4522), + [sym_sink] = ACTIONS(4522), + [sym_integer] = ACTIONS(4522), + [sym_float] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [sym_multiline_string] = ACTIONS(4520), + [sym_character] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4520), + }, + [STATE(3536)] = { + [sym_identifier] = ACTIONS(4526), + [anon_sym_func] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_DOLLAR] = ACTIONS(4524), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_QMARK] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_void] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym_type] = ACTIONS(4526), + [anon_sym_anyopaque] = ACTIONS(4526), + [anon_sym_bool] = ACTIONS(4526), + [anon_sym_int] = ACTIONS(4526), + [anon_sym_uint] = ACTIONS(4526), + [anon_sym_float] = ACTIONS(4526), + [anon_sym_range] = ACTIONS(4526), + [anon_sym_i8] = ACTIONS(4526), + [anon_sym_i16] = ACTIONS(4526), + [anon_sym_i32] = ACTIONS(4526), + [anon_sym_i64] = ACTIONS(4526), + [anon_sym_u8] = ACTIONS(4526), + [anon_sym_u16] = ACTIONS(4526), + [anon_sym_u32] = ACTIONS(4526), + [anon_sym_u64] = ACTIONS(4526), + [anon_sym_isize] = ACTIONS(4526), + [anon_sym_usize] = ACTIONS(4526), + [anon_sym_f32] = ACTIONS(4526), + [anon_sym_f64] = ACTIONS(4526), + [anon_sym_c_char] = ACTIONS(4526), + [anon_sym_c_schar] = ACTIONS(4526), + [anon_sym_c_uchar] = ACTIONS(4526), + [anon_sym_c_short] = ACTIONS(4526), + [anon_sym_c_ushort] = ACTIONS(4526), + [anon_sym_c_int] = ACTIONS(4526), + [anon_sym_c_uint] = ACTIONS(4526), + [anon_sym_c_long] = ACTIONS(4526), + [anon_sym_c_ulong] = ACTIONS(4526), + [anon_sym_c_longlong] = ACTIONS(4526), + [anon_sym_c_ulonglong] = ACTIONS(4526), + [anon_sym_c_float] = ACTIONS(4526), + [anon_sym_c_double] = ACTIONS(4526), + [anon_sym_c_longdouble] = ACTIONS(4526), + [anon_sym_PLUS_EQ] = ACTIONS(4524), + [anon_sym_DASH_EQ] = ACTIONS(4524), + [anon_sym_STAR_EQ] = ACTIONS(4524), + [anon_sym_SLASH_EQ] = ACTIONS(4524), + [anon_sym_AMP_EQ] = ACTIONS(4524), + [anon_sym_PIPE_EQ] = ACTIONS(4526), + [anon_sym_xor_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_yield] = ACTIONS(4526), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_defer] = ACTIONS(4526), + [anon_sym_errdefer] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_else] = ACTIONS(4526), + [anon_sym_while] = ACTIONS(4526), + [anon_sym_expand] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_PIPE2] = ACTIONS(4524), + [anon_sym_match] = ACTIONS(4526), + [anon_sym_DOT_DOT] = ACTIONS(4526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4524), + [anon_sym_orelse] = ACTIONS(4526), + [anon_sym_or] = ACTIONS(4526), + [anon_sym_and] = ACTIONS(4526), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_xor] = ACTIONS(4526), + [anon_sym_LT_LT] = ACTIONS(4526), + [anon_sym_GT_GT] = ACTIONS(4526), + [anon_sym_LT_LT_PIPE] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_catch] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4524), + [anon_sym_try] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4524), + [anon_sym_true] = ACTIONS(4526), + [anon_sym_false] = ACTIONS(4526), + [anon_sym_null] = ACTIONS(4526), + [anon_sym_unreachable] = ACTIONS(4526), + [anon_sym_undefined] = ACTIONS(4526), + [sym_sink] = ACTIONS(4526), + [sym_integer] = ACTIONS(4526), + [sym_float] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4524), + [sym_multiline_string] = ACTIONS(4524), + [sym_character] = ACTIONS(4524), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4524), + }, + [STATE(3537)] = { + [sym_identifier] = ACTIONS(5812), + [anon_sym_func] = ACTIONS(5812), + [anon_sym_BANG] = ACTIONS(5812), + [anon_sym_EQ] = ACTIONS(6817), + [anon_sym_struct] = ACTIONS(5812), + [anon_sym_LPAREN] = ACTIONS(5810), + [anon_sym_LBRACE] = ACTIONS(5810), + [anon_sym_COMMA] = ACTIONS(5810), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5812), + [anon_sym_DOLLAR] = ACTIONS(5810), + [anon_sym_PIPE] = ACTIONS(5812), + [anon_sym_QMARK] = ACTIONS(5810), + [anon_sym_STAR] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(5810), + [anon_sym_void] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym_type] = ACTIONS(5812), + [anon_sym_anyopaque] = ACTIONS(5812), + [anon_sym_bool] = ACTIONS(5812), + [anon_sym_int] = ACTIONS(5812), + [anon_sym_uint] = ACTIONS(5812), + [anon_sym_float] = ACTIONS(5812), + [anon_sym_range] = ACTIONS(5812), + [anon_sym_i8] = ACTIONS(5812), + [anon_sym_i16] = ACTIONS(5812), + [anon_sym_i32] = ACTIONS(5812), + [anon_sym_i64] = ACTIONS(5812), + [anon_sym_u8] = ACTIONS(5812), + [anon_sym_u16] = ACTIONS(5812), + [anon_sym_u32] = ACTIONS(5812), + [anon_sym_u64] = ACTIONS(5812), + [anon_sym_isize] = ACTIONS(5812), + [anon_sym_usize] = ACTIONS(5812), + [anon_sym_f32] = ACTIONS(5812), + [anon_sym_f64] = ACTIONS(5812), + [anon_sym_c_char] = ACTIONS(5812), + [anon_sym_c_schar] = ACTIONS(5812), + [anon_sym_c_uchar] = ACTIONS(5812), + [anon_sym_c_short] = ACTIONS(5812), + [anon_sym_c_ushort] = ACTIONS(5812), + [anon_sym_c_int] = ACTIONS(5812), + [anon_sym_c_uint] = ACTIONS(5812), + [anon_sym_c_long] = ACTIONS(5812), + [anon_sym_c_ulong] = ACTIONS(5812), + [anon_sym_c_longlong] = ACTIONS(5812), + [anon_sym_c_ulonglong] = ACTIONS(5812), + [anon_sym_c_float] = ACTIONS(5812), + [anon_sym_c_double] = ACTIONS(5812), + [anon_sym_c_longdouble] = ACTIONS(5812), + [anon_sym_PLUS_EQ] = ACTIONS(5810), + [anon_sym_DASH_EQ] = ACTIONS(5810), + [anon_sym_STAR_EQ] = ACTIONS(5810), + [anon_sym_SLASH_EQ] = ACTIONS(5810), + [anon_sym_AMP_EQ] = ACTIONS(5810), + [anon_sym_PIPE_EQ] = ACTIONS(5810), + [anon_sym_xor_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_EQ] = ACTIONS(5810), + [anon_sym_GT_GT_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5810), + [anon_sym_return] = ACTIONS(5812), + [anon_sym_yield] = ACTIONS(5812), + [anon_sym_break] = ACTIONS(5812), + [anon_sym_continue] = ACTIONS(5812), + [anon_sym_defer] = ACTIONS(5812), + [anon_sym_errdefer] = ACTIONS(5812), + [anon_sym_if] = ACTIONS(5812), + [anon_sym_while] = ACTIONS(5812), + [anon_sym_expand] = ACTIONS(5812), + [anon_sym_for] = ACTIONS(5812), + [anon_sym_match] = ACTIONS(5812), + [anon_sym_DOT_DOT] = ACTIONS(5812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5810), + [anon_sym_orelse] = ACTIONS(5812), + [anon_sym_or] = ACTIONS(5812), + [anon_sym_and] = ACTIONS(5812), + [anon_sym_EQ_EQ] = ACTIONS(5810), + [anon_sym_BANG_EQ] = ACTIONS(5810), + [anon_sym_LT] = ACTIONS(5812), + [anon_sym_LT_EQ] = ACTIONS(5810), + [anon_sym_GT] = ACTIONS(5812), + [anon_sym_GT_EQ] = ACTIONS(5810), + [anon_sym_AMP] = ACTIONS(5812), + [anon_sym_xor] = ACTIONS(5812), + [anon_sym_LT_LT] = ACTIONS(5812), + [anon_sym_GT_GT] = ACTIONS(5812), + [anon_sym_LT_LT_PIPE] = ACTIONS(5812), + [anon_sym_PLUS] = ACTIONS(5812), + [anon_sym_SLASH] = ACTIONS(5812), + [anon_sym_catch] = ACTIONS(5812), + [anon_sym_TILDE] = ACTIONS(5810), + [anon_sym_try] = ACTIONS(5812), + [anon_sym_DOT] = ACTIONS(5812), + [anon_sym_CARET] = ACTIONS(5810), + [anon_sym_true] = ACTIONS(5812), + [anon_sym_false] = ACTIONS(5812), + [anon_sym_null] = ACTIONS(5812), + [anon_sym_unreachable] = ACTIONS(5812), + [anon_sym_undefined] = ACTIONS(5812), + [sym_sink] = ACTIONS(5812), + [sym_integer] = ACTIONS(5812), + [sym_float] = ACTIONS(5810), + [anon_sym_DQUOTE] = ACTIONS(5810), + [sym_multiline_string] = ACTIONS(5810), + [sym_character] = ACTIONS(5810), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5810), + }, + [STATE(3538)] = { + [sym_identifier] = ACTIONS(5700), + [anon_sym_func] = ACTIONS(5700), + [anon_sym_BANG] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(5700), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_LPAREN] = ACTIONS(5704), + [anon_sym_LBRACE] = ACTIONS(5704), + [anon_sym_DASH] = ACTIONS(5700), + [anon_sym_DOLLAR] = ACTIONS(5704), + [anon_sym_PIPE] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5704), + [anon_sym_STAR] = ACTIONS(5700), + [anon_sym_LBRACK] = ACTIONS(5704), + [anon_sym_void] = ACTIONS(5700), + [anon_sym_noreturn] = ACTIONS(5700), + [anon_sym_type] = ACTIONS(5700), + [anon_sym_anyopaque] = ACTIONS(5700), + [anon_sym_bool] = ACTIONS(5700), + [anon_sym_int] = ACTIONS(5700), + [anon_sym_uint] = ACTIONS(5700), + [anon_sym_float] = ACTIONS(5700), + [anon_sym_range] = ACTIONS(5700), + [anon_sym_i8] = ACTIONS(5700), + [anon_sym_i16] = ACTIONS(5700), + [anon_sym_i32] = ACTIONS(5700), + [anon_sym_i64] = ACTIONS(5700), + [anon_sym_u8] = ACTIONS(5700), + [anon_sym_u16] = ACTIONS(5700), + [anon_sym_u32] = ACTIONS(5700), + [anon_sym_u64] = ACTIONS(5700), + [anon_sym_isize] = ACTIONS(5700), + [anon_sym_usize] = ACTIONS(5700), + [anon_sym_f32] = ACTIONS(5700), + [anon_sym_f64] = ACTIONS(5700), + [anon_sym_c_char] = ACTIONS(5700), + [anon_sym_c_schar] = ACTIONS(5700), + [anon_sym_c_uchar] = ACTIONS(5700), + [anon_sym_c_short] = ACTIONS(5700), + [anon_sym_c_ushort] = ACTIONS(5700), + [anon_sym_c_int] = ACTIONS(5700), + [anon_sym_c_uint] = ACTIONS(5700), + [anon_sym_c_long] = ACTIONS(5700), + [anon_sym_c_ulong] = ACTIONS(5700), + [anon_sym_c_longlong] = ACTIONS(5700), + [anon_sym_c_ulonglong] = ACTIONS(5700), + [anon_sym_c_float] = ACTIONS(5700), + [anon_sym_c_double] = ACTIONS(5700), + [anon_sym_c_longdouble] = ACTIONS(5700), + [anon_sym_PLUS_EQ] = ACTIONS(5704), + [anon_sym_DASH_EQ] = ACTIONS(5704), + [anon_sym_STAR_EQ] = ACTIONS(5704), + [anon_sym_SLASH_EQ] = ACTIONS(5704), + [anon_sym_AMP_EQ] = ACTIONS(5704), + [anon_sym_PIPE_EQ] = ACTIONS(5700), + [anon_sym_xor_EQ] = ACTIONS(5704), + [anon_sym_LT_LT_EQ] = ACTIONS(5704), + [anon_sym_GT_GT_EQ] = ACTIONS(5704), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5704), + [anon_sym_return] = ACTIONS(5700), + [anon_sym_yield] = ACTIONS(5700), + [anon_sym_break] = ACTIONS(5700), + [anon_sym_continue] = ACTIONS(5700), + [anon_sym_defer] = ACTIONS(5700), + [anon_sym_errdefer] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5700), + [anon_sym_else] = ACTIONS(5700), + [anon_sym_while] = ACTIONS(5700), + [anon_sym_expand] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5700), + [anon_sym_PIPE2] = ACTIONS(5704), + [anon_sym_match] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5704), + [anon_sym_orelse] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5700), + [anon_sym_and] = ACTIONS(5700), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5704), + [anon_sym_GT] = ACTIONS(5700), + [anon_sym_GT_EQ] = ACTIONS(5704), + [anon_sym_AMP] = ACTIONS(5700), + [anon_sym_xor] = ACTIONS(5700), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5700), + [anon_sym_LT_LT_PIPE] = ACTIONS(5700), + [anon_sym_PLUS] = ACTIONS(5700), + [anon_sym_SLASH] = ACTIONS(5700), + [anon_sym_catch] = ACTIONS(5700), + [anon_sym_TILDE] = ACTIONS(5704), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5700), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_true] = ACTIONS(5700), + [anon_sym_false] = ACTIONS(5700), + [anon_sym_null] = ACTIONS(5700), + [anon_sym_unreachable] = ACTIONS(5700), + [anon_sym_undefined] = ACTIONS(5700), + [sym_sink] = ACTIONS(5700), + [sym_integer] = ACTIONS(5700), + [sym_float] = ACTIONS(5704), + [anon_sym_DQUOTE] = ACTIONS(5704), + [sym_multiline_string] = ACTIONS(5704), + [sym_character] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5704), + }, + [STATE(3539)] = { + [sym_identifier] = ACTIONS(4534), + [anon_sym_func] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4532), + [anon_sym_PIPE] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_void] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym_type] = ACTIONS(4534), + [anon_sym_anyopaque] = ACTIONS(4534), + [anon_sym_bool] = ACTIONS(4534), + [anon_sym_int] = ACTIONS(4534), + [anon_sym_uint] = ACTIONS(4534), + [anon_sym_float] = ACTIONS(4534), + [anon_sym_range] = ACTIONS(4534), + [anon_sym_i8] = ACTIONS(4534), + [anon_sym_i16] = ACTIONS(4534), + [anon_sym_i32] = ACTIONS(4534), + [anon_sym_i64] = ACTIONS(4534), + [anon_sym_u8] = ACTIONS(4534), + [anon_sym_u16] = ACTIONS(4534), + [anon_sym_u32] = ACTIONS(4534), + [anon_sym_u64] = ACTIONS(4534), + [anon_sym_isize] = ACTIONS(4534), + [anon_sym_usize] = ACTIONS(4534), + [anon_sym_f32] = ACTIONS(4534), + [anon_sym_f64] = ACTIONS(4534), + [anon_sym_c_char] = ACTIONS(4534), + [anon_sym_c_schar] = ACTIONS(4534), + [anon_sym_c_uchar] = ACTIONS(4534), + [anon_sym_c_short] = ACTIONS(4534), + [anon_sym_c_ushort] = ACTIONS(4534), + [anon_sym_c_int] = ACTIONS(4534), + [anon_sym_c_uint] = ACTIONS(4534), + [anon_sym_c_long] = ACTIONS(4534), + [anon_sym_c_ulong] = ACTIONS(4534), + [anon_sym_c_longlong] = ACTIONS(4534), + [anon_sym_c_ulonglong] = ACTIONS(4534), + [anon_sym_c_float] = ACTIONS(4534), + [anon_sym_c_double] = ACTIONS(4534), + [anon_sym_c_longdouble] = ACTIONS(4534), + [anon_sym_PLUS_EQ] = ACTIONS(4532), + [anon_sym_DASH_EQ] = ACTIONS(4532), + [anon_sym_STAR_EQ] = ACTIONS(4532), + [anon_sym_SLASH_EQ] = ACTIONS(4532), + [anon_sym_AMP_EQ] = ACTIONS(4532), + [anon_sym_PIPE_EQ] = ACTIONS(4534), + [anon_sym_xor_EQ] = ACTIONS(4532), + [anon_sym_LT_LT_EQ] = ACTIONS(4532), + [anon_sym_GT_GT_EQ] = ACTIONS(4532), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4532), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_yield] = ACTIONS(4534), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_defer] = ACTIONS(4534), + [anon_sym_errdefer] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_else] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4534), + [anon_sym_expand] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_PIPE2] = ACTIONS(4532), + [anon_sym_match] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4532), + [anon_sym_orelse] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_EQ_EQ] = ACTIONS(4532), + [anon_sym_BANG_EQ] = ACTIONS(4532), + [anon_sym_LT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_xor] = ACTIONS(4534), + [anon_sym_LT_LT] = ACTIONS(4534), + [anon_sym_GT_GT] = ACTIONS(4534), + [anon_sym_LT_LT_PIPE] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_SLASH] = ACTIONS(4534), + [anon_sym_catch] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4534), + [anon_sym_DOT] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4532), + [anon_sym_true] = ACTIONS(4534), + [anon_sym_false] = ACTIONS(4534), + [anon_sym_null] = ACTIONS(4534), + [anon_sym_unreachable] = ACTIONS(4534), + [anon_sym_undefined] = ACTIONS(4534), + [sym_sink] = ACTIONS(4534), + [sym_integer] = ACTIONS(4534), + [sym_float] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [sym_multiline_string] = ACTIONS(4532), + [sym_character] = ACTIONS(4532), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4532), + }, + [STATE(3540)] = { + [sym_identifier] = ACTIONS(5840), + [anon_sym_func] = ACTIONS(5840), + [anon_sym_BANG] = ACTIONS(5840), + [anon_sym_EQ] = ACTIONS(5840), + [anon_sym_struct] = ACTIONS(5840), + [anon_sym_LPAREN] = ACTIONS(5838), + [anon_sym_LBRACE] = ACTIONS(5838), + [anon_sym_DASH] = ACTIONS(5840), + [anon_sym_DOLLAR] = ACTIONS(5838), + [anon_sym_PIPE] = ACTIONS(5840), + [anon_sym_QMARK] = ACTIONS(5838), + [anon_sym_STAR] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(5838), + [anon_sym_void] = ACTIONS(5840), + [anon_sym_noreturn] = ACTIONS(5840), + [anon_sym_type] = ACTIONS(5840), + [anon_sym_anyopaque] = ACTIONS(5840), + [anon_sym_bool] = ACTIONS(5840), + [anon_sym_int] = ACTIONS(5840), + [anon_sym_uint] = ACTIONS(5840), + [anon_sym_float] = ACTIONS(5840), + [anon_sym_range] = ACTIONS(5840), + [anon_sym_i8] = ACTIONS(5840), + [anon_sym_i16] = ACTIONS(5840), + [anon_sym_i32] = ACTIONS(5840), + [anon_sym_i64] = ACTIONS(5840), + [anon_sym_u8] = ACTIONS(5840), + [anon_sym_u16] = ACTIONS(5840), + [anon_sym_u32] = ACTIONS(5840), + [anon_sym_u64] = ACTIONS(5840), + [anon_sym_isize] = ACTIONS(5840), + [anon_sym_usize] = ACTIONS(5840), + [anon_sym_f32] = ACTIONS(5840), + [anon_sym_f64] = ACTIONS(5840), + [anon_sym_c_char] = ACTIONS(5840), + [anon_sym_c_schar] = ACTIONS(5840), + [anon_sym_c_uchar] = ACTIONS(5840), + [anon_sym_c_short] = ACTIONS(5840), + [anon_sym_c_ushort] = ACTIONS(5840), + [anon_sym_c_int] = ACTIONS(5840), + [anon_sym_c_uint] = ACTIONS(5840), + [anon_sym_c_long] = ACTIONS(5840), + [anon_sym_c_ulong] = ACTIONS(5840), + [anon_sym_c_longlong] = ACTIONS(5840), + [anon_sym_c_ulonglong] = ACTIONS(5840), + [anon_sym_c_float] = ACTIONS(5840), + [anon_sym_c_double] = ACTIONS(5840), + [anon_sym_c_longdouble] = ACTIONS(5840), + [anon_sym_PLUS_EQ] = ACTIONS(5838), + [anon_sym_DASH_EQ] = ACTIONS(5838), + [anon_sym_STAR_EQ] = ACTIONS(5838), + [anon_sym_SLASH_EQ] = ACTIONS(5838), + [anon_sym_AMP_EQ] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(5840), + [anon_sym_xor_EQ] = ACTIONS(5838), + [anon_sym_LT_LT_EQ] = ACTIONS(5838), + [anon_sym_GT_GT_EQ] = ACTIONS(5838), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5838), + [anon_sym_return] = ACTIONS(5840), + [anon_sym_yield] = ACTIONS(5840), + [anon_sym_break] = ACTIONS(5840), + [anon_sym_continue] = ACTIONS(5840), + [anon_sym_defer] = ACTIONS(5840), + [anon_sym_errdefer] = ACTIONS(5840), + [anon_sym_if] = ACTIONS(5840), + [anon_sym_else] = ACTIONS(5840), + [anon_sym_while] = ACTIONS(5840), + [anon_sym_expand] = ACTIONS(5840), + [anon_sym_for] = ACTIONS(5840), + [anon_sym_PIPE2] = ACTIONS(5838), + [anon_sym_match] = ACTIONS(5840), + [anon_sym_DOT_DOT] = ACTIONS(5840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5838), + [anon_sym_orelse] = ACTIONS(5840), + [anon_sym_or] = ACTIONS(5840), + [anon_sym_and] = ACTIONS(5840), + [anon_sym_EQ_EQ] = ACTIONS(5838), + [anon_sym_BANG_EQ] = ACTIONS(5838), + [anon_sym_LT] = ACTIONS(5840), + [anon_sym_LT_EQ] = ACTIONS(5838), + [anon_sym_GT] = ACTIONS(5840), + [anon_sym_GT_EQ] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_xor] = ACTIONS(5840), + [anon_sym_LT_LT] = ACTIONS(5840), + [anon_sym_GT_GT] = ACTIONS(5840), + [anon_sym_LT_LT_PIPE] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5840), + [anon_sym_SLASH] = ACTIONS(5840), + [anon_sym_catch] = ACTIONS(5840), + [anon_sym_TILDE] = ACTIONS(5838), + [anon_sym_try] = ACTIONS(5840), + [anon_sym_DOT] = ACTIONS(5840), + [anon_sym_CARET] = ACTIONS(5838), + [anon_sym_true] = ACTIONS(5840), + [anon_sym_false] = ACTIONS(5840), + [anon_sym_null] = ACTIONS(5840), + [anon_sym_unreachable] = ACTIONS(5840), + [anon_sym_undefined] = ACTIONS(5840), + [sym_sink] = ACTIONS(5840), + [sym_integer] = ACTIONS(5840), + [sym_float] = ACTIONS(5838), + [anon_sym_DQUOTE] = ACTIONS(5838), + [sym_multiline_string] = ACTIONS(5838), + [sym_character] = ACTIONS(5838), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5838), + }, + [STATE(3541)] = { + [sym_identifier] = ACTIONS(4538), + [anon_sym_func] = ACTIONS(4538), + [anon_sym_BANG] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4536), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4538), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_void] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym_type] = ACTIONS(4538), + [anon_sym_anyopaque] = ACTIONS(4538), + [anon_sym_bool] = ACTIONS(4538), + [anon_sym_int] = ACTIONS(4538), + [anon_sym_uint] = ACTIONS(4538), + [anon_sym_float] = ACTIONS(4538), + [anon_sym_range] = ACTIONS(4538), + [anon_sym_i8] = ACTIONS(4538), + [anon_sym_i16] = ACTIONS(4538), + [anon_sym_i32] = ACTIONS(4538), + [anon_sym_i64] = ACTIONS(4538), + [anon_sym_u8] = ACTIONS(4538), + [anon_sym_u16] = ACTIONS(4538), + [anon_sym_u32] = ACTIONS(4538), + [anon_sym_u64] = ACTIONS(4538), + [anon_sym_isize] = ACTIONS(4538), + [anon_sym_usize] = ACTIONS(4538), + [anon_sym_f32] = ACTIONS(4538), + [anon_sym_f64] = ACTIONS(4538), + [anon_sym_c_char] = ACTIONS(4538), + [anon_sym_c_schar] = ACTIONS(4538), + [anon_sym_c_uchar] = ACTIONS(4538), + [anon_sym_c_short] = ACTIONS(4538), + [anon_sym_c_ushort] = ACTIONS(4538), + [anon_sym_c_int] = ACTIONS(4538), + [anon_sym_c_uint] = ACTIONS(4538), + [anon_sym_c_long] = ACTIONS(4538), + [anon_sym_c_ulong] = ACTIONS(4538), + [anon_sym_c_longlong] = ACTIONS(4538), + [anon_sym_c_ulonglong] = ACTIONS(4538), + [anon_sym_c_float] = ACTIONS(4538), + [anon_sym_c_double] = ACTIONS(4538), + [anon_sym_c_longdouble] = ACTIONS(4538), + [anon_sym_PLUS_EQ] = ACTIONS(4536), + [anon_sym_DASH_EQ] = ACTIONS(4536), + [anon_sym_STAR_EQ] = ACTIONS(4536), + [anon_sym_SLASH_EQ] = ACTIONS(4536), + [anon_sym_AMP_EQ] = ACTIONS(4536), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_xor_EQ] = ACTIONS(4536), + [anon_sym_LT_LT_EQ] = ACTIONS(4536), + [anon_sym_GT_GT_EQ] = ACTIONS(4536), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4536), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_yield] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_defer] = ACTIONS(4538), + [anon_sym_errdefer] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_else] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_expand] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_PIPE2] = ACTIONS(4536), + [anon_sym_match] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4536), + [anon_sym_orelse] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4536), + [anon_sym_BANG_EQ] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_xor] = ACTIONS(4538), + [anon_sym_LT_LT] = ACTIONS(4538), + [anon_sym_GT_GT] = ACTIONS(4538), + [anon_sym_LT_LT_PIPE] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_catch] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4536), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_DOT] = ACTIONS(4538), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_true] = ACTIONS(4538), + [anon_sym_false] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4538), + [anon_sym_unreachable] = ACTIONS(4538), + [anon_sym_undefined] = ACTIONS(4538), + [sym_sink] = ACTIONS(4538), + [sym_integer] = ACTIONS(4538), + [sym_float] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [sym_multiline_string] = ACTIONS(4536), + [sym_character] = ACTIONS(4536), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4536), + }, + [STATE(3542)] = { + [sym_identifier] = ACTIONS(4542), + [anon_sym_func] = ACTIONS(4542), + [anon_sym_BANG] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4542), + [anon_sym_struct] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4542), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4542), + [anon_sym_LBRACK] = ACTIONS(4540), + [anon_sym_void] = ACTIONS(4542), + [anon_sym_noreturn] = ACTIONS(4542), + [anon_sym_type] = ACTIONS(4542), + [anon_sym_anyopaque] = ACTIONS(4542), + [anon_sym_bool] = ACTIONS(4542), + [anon_sym_int] = ACTIONS(4542), + [anon_sym_uint] = ACTIONS(4542), + [anon_sym_float] = ACTIONS(4542), + [anon_sym_range] = ACTIONS(4542), + [anon_sym_i8] = ACTIONS(4542), + [anon_sym_i16] = ACTIONS(4542), + [anon_sym_i32] = ACTIONS(4542), + [anon_sym_i64] = ACTIONS(4542), + [anon_sym_u8] = ACTIONS(4542), + [anon_sym_u16] = ACTIONS(4542), + [anon_sym_u32] = ACTIONS(4542), + [anon_sym_u64] = ACTIONS(4542), + [anon_sym_isize] = ACTIONS(4542), + [anon_sym_usize] = ACTIONS(4542), + [anon_sym_f32] = ACTIONS(4542), + [anon_sym_f64] = ACTIONS(4542), + [anon_sym_c_char] = ACTIONS(4542), + [anon_sym_c_schar] = ACTIONS(4542), + [anon_sym_c_uchar] = ACTIONS(4542), + [anon_sym_c_short] = ACTIONS(4542), + [anon_sym_c_ushort] = ACTIONS(4542), + [anon_sym_c_int] = ACTIONS(4542), + [anon_sym_c_uint] = ACTIONS(4542), + [anon_sym_c_long] = ACTIONS(4542), + [anon_sym_c_ulong] = ACTIONS(4542), + [anon_sym_c_longlong] = ACTIONS(4542), + [anon_sym_c_ulonglong] = ACTIONS(4542), + [anon_sym_c_float] = ACTIONS(4542), + [anon_sym_c_double] = ACTIONS(4542), + [anon_sym_c_longdouble] = ACTIONS(4542), + [anon_sym_PLUS_EQ] = ACTIONS(4540), + [anon_sym_DASH_EQ] = ACTIONS(4540), + [anon_sym_STAR_EQ] = ACTIONS(4540), + [anon_sym_SLASH_EQ] = ACTIONS(4540), + [anon_sym_AMP_EQ] = ACTIONS(4540), + [anon_sym_PIPE_EQ] = ACTIONS(4542), + [anon_sym_xor_EQ] = ACTIONS(4540), + [anon_sym_LT_LT_EQ] = ACTIONS(4540), + [anon_sym_GT_GT_EQ] = ACTIONS(4540), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4540), + [anon_sym_return] = ACTIONS(4542), + [anon_sym_yield] = ACTIONS(4542), + [anon_sym_break] = ACTIONS(4542), + [anon_sym_continue] = ACTIONS(4542), + [anon_sym_defer] = ACTIONS(4542), + [anon_sym_errdefer] = ACTIONS(4542), + [anon_sym_if] = ACTIONS(4542), + [anon_sym_else] = ACTIONS(4542), + [anon_sym_while] = ACTIONS(4542), + [anon_sym_expand] = ACTIONS(4542), + [anon_sym_for] = ACTIONS(4542), + [anon_sym_PIPE2] = ACTIONS(4540), + [anon_sym_match] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4540), + [anon_sym_orelse] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4540), + [anon_sym_BANG_EQ] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_xor] = ACTIONS(4542), + [anon_sym_LT_LT] = ACTIONS(4542), + [anon_sym_GT_GT] = ACTIONS(4542), + [anon_sym_LT_LT_PIPE] = ACTIONS(4542), + [anon_sym_PLUS] = ACTIONS(4542), + [anon_sym_SLASH] = ACTIONS(4542), + [anon_sym_catch] = ACTIONS(4542), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_try] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym_true] = ACTIONS(4542), + [anon_sym_false] = ACTIONS(4542), + [anon_sym_null] = ACTIONS(4542), + [anon_sym_unreachable] = ACTIONS(4542), + [anon_sym_undefined] = ACTIONS(4542), + [sym_sink] = ACTIONS(4542), + [sym_integer] = ACTIONS(4542), + [sym_float] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym_multiline_string] = ACTIONS(4540), + [sym_character] = ACTIONS(4540), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4540), + }, + [STATE(3543)] = { + [sym_identifier] = ACTIONS(5844), + [anon_sym_func] = ACTIONS(5844), + [anon_sym_BANG] = ACTIONS(5844), + [anon_sym_EQ] = ACTIONS(5844), + [anon_sym_struct] = ACTIONS(5844), + [anon_sym_LPAREN] = ACTIONS(5842), + [anon_sym_LBRACE] = ACTIONS(5842), + [anon_sym_DASH] = ACTIONS(5844), + [anon_sym_DOLLAR] = ACTIONS(5842), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_QMARK] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(5842), + [anon_sym_void] = ACTIONS(5844), + [anon_sym_noreturn] = ACTIONS(5844), + [anon_sym_type] = ACTIONS(5844), + [anon_sym_anyopaque] = ACTIONS(5844), + [anon_sym_bool] = ACTIONS(5844), + [anon_sym_int] = ACTIONS(5844), + [anon_sym_uint] = ACTIONS(5844), + [anon_sym_float] = ACTIONS(5844), + [anon_sym_range] = ACTIONS(5844), + [anon_sym_i8] = ACTIONS(5844), + [anon_sym_i16] = ACTIONS(5844), + [anon_sym_i32] = ACTIONS(5844), + [anon_sym_i64] = ACTIONS(5844), + [anon_sym_u8] = ACTIONS(5844), + [anon_sym_u16] = ACTIONS(5844), + [anon_sym_u32] = ACTIONS(5844), + [anon_sym_u64] = ACTIONS(5844), + [anon_sym_isize] = ACTIONS(5844), + [anon_sym_usize] = ACTIONS(5844), + [anon_sym_f32] = ACTIONS(5844), + [anon_sym_f64] = ACTIONS(5844), + [anon_sym_c_char] = ACTIONS(5844), + [anon_sym_c_schar] = ACTIONS(5844), + [anon_sym_c_uchar] = ACTIONS(5844), + [anon_sym_c_short] = ACTIONS(5844), + [anon_sym_c_ushort] = ACTIONS(5844), + [anon_sym_c_int] = ACTIONS(5844), + [anon_sym_c_uint] = ACTIONS(5844), + [anon_sym_c_long] = ACTIONS(5844), + [anon_sym_c_ulong] = ACTIONS(5844), + [anon_sym_c_longlong] = ACTIONS(5844), + [anon_sym_c_ulonglong] = ACTIONS(5844), + [anon_sym_c_float] = ACTIONS(5844), + [anon_sym_c_double] = ACTIONS(5844), + [anon_sym_c_longdouble] = ACTIONS(5844), + [anon_sym_PLUS_EQ] = ACTIONS(5842), + [anon_sym_DASH_EQ] = ACTIONS(5842), + [anon_sym_STAR_EQ] = ACTIONS(5842), + [anon_sym_SLASH_EQ] = ACTIONS(5842), + [anon_sym_AMP_EQ] = ACTIONS(5842), + [anon_sym_PIPE_EQ] = ACTIONS(5844), + [anon_sym_xor_EQ] = ACTIONS(5842), + [anon_sym_LT_LT_EQ] = ACTIONS(5842), + [anon_sym_GT_GT_EQ] = ACTIONS(5842), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5842), + [anon_sym_return] = ACTIONS(5844), + [anon_sym_yield] = ACTIONS(5844), + [anon_sym_break] = ACTIONS(5844), + [anon_sym_continue] = ACTIONS(5844), + [anon_sym_defer] = ACTIONS(5844), + [anon_sym_errdefer] = ACTIONS(5844), + [anon_sym_if] = ACTIONS(5844), + [anon_sym_else] = ACTIONS(5844), + [anon_sym_while] = ACTIONS(5844), + [anon_sym_expand] = ACTIONS(5844), + [anon_sym_for] = ACTIONS(5844), + [anon_sym_PIPE2] = ACTIONS(5842), + [anon_sym_match] = ACTIONS(5844), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5842), + [anon_sym_orelse] = ACTIONS(5844), + [anon_sym_or] = ACTIONS(5844), + [anon_sym_and] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5842), + [anon_sym_BANG_EQ] = ACTIONS(5842), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym_xor] = ACTIONS(5844), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(5844), + [anon_sym_LT_LT_PIPE] = ACTIONS(5844), + [anon_sym_PLUS] = ACTIONS(5844), + [anon_sym_SLASH] = ACTIONS(5844), + [anon_sym_catch] = ACTIONS(5844), + [anon_sym_TILDE] = ACTIONS(5842), + [anon_sym_try] = ACTIONS(5844), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_CARET] = ACTIONS(5842), + [anon_sym_true] = ACTIONS(5844), + [anon_sym_false] = ACTIONS(5844), + [anon_sym_null] = ACTIONS(5844), + [anon_sym_unreachable] = ACTIONS(5844), + [anon_sym_undefined] = ACTIONS(5844), + [sym_sink] = ACTIONS(5844), + [sym_integer] = ACTIONS(5844), + [sym_float] = ACTIONS(5842), + [anon_sym_DQUOTE] = ACTIONS(5842), + [sym_multiline_string] = ACTIONS(5842), + [sym_character] = ACTIONS(5842), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5842), + }, + [STATE(3544)] = { + [sym_identifier] = ACTIONS(5848), + [anon_sym_func] = ACTIONS(5848), + [anon_sym_BANG] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(5848), + [anon_sym_struct] = ACTIONS(5848), + [anon_sym_LPAREN] = ACTIONS(5846), + [anon_sym_LBRACE] = ACTIONS(5846), + [anon_sym_DASH] = ACTIONS(5848), + [anon_sym_DOLLAR] = ACTIONS(5846), + [anon_sym_PIPE] = ACTIONS(5848), + [anon_sym_QMARK] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(5846), + [anon_sym_void] = ACTIONS(5848), + [anon_sym_noreturn] = ACTIONS(5848), + [anon_sym_type] = ACTIONS(5848), + [anon_sym_anyopaque] = ACTIONS(5848), + [anon_sym_bool] = ACTIONS(5848), + [anon_sym_int] = ACTIONS(5848), + [anon_sym_uint] = ACTIONS(5848), + [anon_sym_float] = ACTIONS(5848), + [anon_sym_range] = ACTIONS(5848), + [anon_sym_i8] = ACTIONS(5848), + [anon_sym_i16] = ACTIONS(5848), + [anon_sym_i32] = ACTIONS(5848), + [anon_sym_i64] = ACTIONS(5848), + [anon_sym_u8] = ACTIONS(5848), + [anon_sym_u16] = ACTIONS(5848), + [anon_sym_u32] = ACTIONS(5848), + [anon_sym_u64] = ACTIONS(5848), + [anon_sym_isize] = ACTIONS(5848), + [anon_sym_usize] = ACTIONS(5848), + [anon_sym_f32] = ACTIONS(5848), + [anon_sym_f64] = ACTIONS(5848), + [anon_sym_c_char] = ACTIONS(5848), + [anon_sym_c_schar] = ACTIONS(5848), + [anon_sym_c_uchar] = ACTIONS(5848), + [anon_sym_c_short] = ACTIONS(5848), + [anon_sym_c_ushort] = ACTIONS(5848), + [anon_sym_c_int] = ACTIONS(5848), + [anon_sym_c_uint] = ACTIONS(5848), + [anon_sym_c_long] = ACTIONS(5848), + [anon_sym_c_ulong] = ACTIONS(5848), + [anon_sym_c_longlong] = ACTIONS(5848), + [anon_sym_c_ulonglong] = ACTIONS(5848), + [anon_sym_c_float] = ACTIONS(5848), + [anon_sym_c_double] = ACTIONS(5848), + [anon_sym_c_longdouble] = ACTIONS(5848), + [anon_sym_PLUS_EQ] = ACTIONS(5846), + [anon_sym_DASH_EQ] = ACTIONS(5846), + [anon_sym_STAR_EQ] = ACTIONS(5846), + [anon_sym_SLASH_EQ] = ACTIONS(5846), + [anon_sym_AMP_EQ] = ACTIONS(5846), + [anon_sym_PIPE_EQ] = ACTIONS(5848), + [anon_sym_xor_EQ] = ACTIONS(5846), + [anon_sym_LT_LT_EQ] = ACTIONS(5846), + [anon_sym_GT_GT_EQ] = ACTIONS(5846), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5846), + [anon_sym_return] = ACTIONS(5848), + [anon_sym_yield] = ACTIONS(5848), + [anon_sym_break] = ACTIONS(5848), + [anon_sym_continue] = ACTIONS(5848), + [anon_sym_defer] = ACTIONS(5848), + [anon_sym_errdefer] = ACTIONS(5848), + [anon_sym_if] = ACTIONS(5848), + [anon_sym_else] = ACTIONS(5848), + [anon_sym_while] = ACTIONS(5848), + [anon_sym_expand] = ACTIONS(5848), + [anon_sym_for] = ACTIONS(5848), + [anon_sym_PIPE2] = ACTIONS(5846), + [anon_sym_match] = ACTIONS(5848), + [anon_sym_DOT_DOT] = ACTIONS(5848), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5846), + [anon_sym_orelse] = ACTIONS(5848), + [anon_sym_or] = ACTIONS(5848), + [anon_sym_and] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_BANG_EQ] = ACTIONS(5846), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_EQ] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5848), + [anon_sym_xor] = ACTIONS(5848), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(5848), + [anon_sym_LT_LT_PIPE] = ACTIONS(5848), + [anon_sym_PLUS] = ACTIONS(5848), + [anon_sym_SLASH] = ACTIONS(5848), + [anon_sym_catch] = ACTIONS(5848), + [anon_sym_TILDE] = ACTIONS(5846), + [anon_sym_try] = ACTIONS(5848), + [anon_sym_DOT] = ACTIONS(5848), + [anon_sym_CARET] = ACTIONS(5846), + [anon_sym_true] = ACTIONS(5848), + [anon_sym_false] = ACTIONS(5848), + [anon_sym_null] = ACTIONS(5848), + [anon_sym_unreachable] = ACTIONS(5848), + [anon_sym_undefined] = ACTIONS(5848), + [sym_sink] = ACTIONS(5848), + [sym_integer] = ACTIONS(5848), + [sym_float] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(5846), + [sym_multiline_string] = ACTIONS(5846), + [sym_character] = ACTIONS(5846), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5846), + }, + [STATE(3545)] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_func] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_struct] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_void] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_type] = ACTIONS(4550), + [anon_sym_anyopaque] = ACTIONS(4550), + [anon_sym_bool] = ACTIONS(4550), + [anon_sym_int] = ACTIONS(4550), + [anon_sym_uint] = ACTIONS(4550), + [anon_sym_float] = ACTIONS(4550), + [anon_sym_range] = ACTIONS(4550), + [anon_sym_i8] = ACTIONS(4550), + [anon_sym_i16] = ACTIONS(4550), + [anon_sym_i32] = ACTIONS(4550), + [anon_sym_i64] = ACTIONS(4550), + [anon_sym_u8] = ACTIONS(4550), + [anon_sym_u16] = ACTIONS(4550), + [anon_sym_u32] = ACTIONS(4550), + [anon_sym_u64] = ACTIONS(4550), + [anon_sym_isize] = ACTIONS(4550), + [anon_sym_usize] = ACTIONS(4550), + [anon_sym_f32] = ACTIONS(4550), + [anon_sym_f64] = ACTIONS(4550), + [anon_sym_c_char] = ACTIONS(4550), + [anon_sym_c_schar] = ACTIONS(4550), + [anon_sym_c_uchar] = ACTIONS(4550), + [anon_sym_c_short] = ACTIONS(4550), + [anon_sym_c_ushort] = ACTIONS(4550), + [anon_sym_c_int] = ACTIONS(4550), + [anon_sym_c_uint] = ACTIONS(4550), + [anon_sym_c_long] = ACTIONS(4550), + [anon_sym_c_ulong] = ACTIONS(4550), + [anon_sym_c_longlong] = ACTIONS(4550), + [anon_sym_c_ulonglong] = ACTIONS(4550), + [anon_sym_c_float] = ACTIONS(4550), + [anon_sym_c_double] = ACTIONS(4550), + [anon_sym_c_longdouble] = ACTIONS(4550), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4550), + [anon_sym_xor_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4548), + [anon_sym_return] = ACTIONS(4550), + [anon_sym_yield] = ACTIONS(4550), + [anon_sym_break] = ACTIONS(4550), + [anon_sym_continue] = ACTIONS(4550), + [anon_sym_defer] = ACTIONS(4550), + [anon_sym_errdefer] = ACTIONS(4550), + [anon_sym_if] = ACTIONS(4550), + [anon_sym_else] = ACTIONS(4550), + [anon_sym_while] = ACTIONS(4550), + [anon_sym_expand] = ACTIONS(4550), + [anon_sym_for] = ACTIONS(4550), + [anon_sym_PIPE2] = ACTIONS(4548), + [anon_sym_match] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4548), + [anon_sym_orelse] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP] = ACTIONS(4550), + [anon_sym_xor] = ACTIONS(4550), + [anon_sym_LT_LT] = ACTIONS(4550), + [anon_sym_GT_GT] = ACTIONS(4550), + [anon_sym_LT_LT_PIPE] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_catch] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_try] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym_true] = ACTIONS(4550), + [anon_sym_false] = ACTIONS(4550), + [anon_sym_null] = ACTIONS(4550), + [anon_sym_unreachable] = ACTIONS(4550), + [anon_sym_undefined] = ACTIONS(4550), + [sym_sink] = ACTIONS(4550), + [sym_integer] = ACTIONS(4550), + [sym_float] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(4548), + [sym_multiline_string] = ACTIONS(4548), + [sym_character] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4548), + }, + [STATE(3546)] = { + [sym_identifier] = ACTIONS(4554), + [anon_sym_func] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4554), + [anon_sym_struct] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_DOLLAR] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_void] = ACTIONS(4554), + [anon_sym_noreturn] = ACTIONS(4554), + [anon_sym_type] = ACTIONS(4554), + [anon_sym_anyopaque] = ACTIONS(4554), + [anon_sym_bool] = ACTIONS(4554), + [anon_sym_int] = ACTIONS(4554), + [anon_sym_uint] = ACTIONS(4554), + [anon_sym_float] = ACTIONS(4554), + [anon_sym_range] = ACTIONS(4554), + [anon_sym_i8] = ACTIONS(4554), + [anon_sym_i16] = ACTIONS(4554), + [anon_sym_i32] = ACTIONS(4554), + [anon_sym_i64] = ACTIONS(4554), + [anon_sym_u8] = ACTIONS(4554), + [anon_sym_u16] = ACTIONS(4554), + [anon_sym_u32] = ACTIONS(4554), + [anon_sym_u64] = ACTIONS(4554), + [anon_sym_isize] = ACTIONS(4554), + [anon_sym_usize] = ACTIONS(4554), + [anon_sym_f32] = ACTIONS(4554), + [anon_sym_f64] = ACTIONS(4554), + [anon_sym_c_char] = ACTIONS(4554), + [anon_sym_c_schar] = ACTIONS(4554), + [anon_sym_c_uchar] = ACTIONS(4554), + [anon_sym_c_short] = ACTIONS(4554), + [anon_sym_c_ushort] = ACTIONS(4554), + [anon_sym_c_int] = ACTIONS(4554), + [anon_sym_c_uint] = ACTIONS(4554), + [anon_sym_c_long] = ACTIONS(4554), + [anon_sym_c_ulong] = ACTIONS(4554), + [anon_sym_c_longlong] = ACTIONS(4554), + [anon_sym_c_ulonglong] = ACTIONS(4554), + [anon_sym_c_float] = ACTIONS(4554), + [anon_sym_c_double] = ACTIONS(4554), + [anon_sym_c_longdouble] = ACTIONS(4554), + [anon_sym_PLUS_EQ] = ACTIONS(4552), + [anon_sym_DASH_EQ] = ACTIONS(4552), + [anon_sym_STAR_EQ] = ACTIONS(4552), + [anon_sym_SLASH_EQ] = ACTIONS(4552), + [anon_sym_AMP_EQ] = ACTIONS(4552), + [anon_sym_PIPE_EQ] = ACTIONS(4554), + [anon_sym_xor_EQ] = ACTIONS(4552), + [anon_sym_LT_LT_EQ] = ACTIONS(4552), + [anon_sym_GT_GT_EQ] = ACTIONS(4552), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4552), + [anon_sym_return] = ACTIONS(4554), + [anon_sym_yield] = ACTIONS(4554), + [anon_sym_break] = ACTIONS(4554), + [anon_sym_continue] = ACTIONS(4554), + [anon_sym_defer] = ACTIONS(4554), + [anon_sym_errdefer] = ACTIONS(4554), + [anon_sym_if] = ACTIONS(4554), + [anon_sym_else] = ACTIONS(4554), + [anon_sym_while] = ACTIONS(4554), + [anon_sym_expand] = ACTIONS(4554), + [anon_sym_for] = ACTIONS(4554), + [anon_sym_PIPE2] = ACTIONS(4552), + [anon_sym_match] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4552), + [anon_sym_orelse] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4552), + [anon_sym_BANG_EQ] = ACTIONS(4552), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4552), + [anon_sym_AMP] = ACTIONS(4554), + [anon_sym_xor] = ACTIONS(4554), + [anon_sym_LT_LT] = ACTIONS(4554), + [anon_sym_GT_GT] = ACTIONS(4554), + [anon_sym_LT_LT_PIPE] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_catch] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4552), + [anon_sym_try] = ACTIONS(4554), + [anon_sym_DOT] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym_true] = ACTIONS(4554), + [anon_sym_false] = ACTIONS(4554), + [anon_sym_null] = ACTIONS(4554), + [anon_sym_unreachable] = ACTIONS(4554), + [anon_sym_undefined] = ACTIONS(4554), + [sym_sink] = ACTIONS(4554), + [sym_integer] = ACTIONS(4554), + [sym_float] = ACTIONS(4552), + [anon_sym_DQUOTE] = ACTIONS(4552), + [sym_multiline_string] = ACTIONS(4552), + [sym_character] = ACTIONS(4552), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4552), + }, + [STATE(3547)] = { + [sym_identifier] = ACTIONS(4558), + [anon_sym_func] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4558), + [anon_sym_struct] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_DOLLAR] = ACTIONS(4556), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_void] = ACTIONS(4558), + [anon_sym_noreturn] = ACTIONS(4558), + [anon_sym_type] = ACTIONS(4558), + [anon_sym_anyopaque] = ACTIONS(4558), + [anon_sym_bool] = ACTIONS(4558), + [anon_sym_int] = ACTIONS(4558), + [anon_sym_uint] = ACTIONS(4558), + [anon_sym_float] = ACTIONS(4558), + [anon_sym_range] = ACTIONS(4558), + [anon_sym_i8] = ACTIONS(4558), + [anon_sym_i16] = ACTIONS(4558), + [anon_sym_i32] = ACTIONS(4558), + [anon_sym_i64] = ACTIONS(4558), + [anon_sym_u8] = ACTIONS(4558), + [anon_sym_u16] = ACTIONS(4558), + [anon_sym_u32] = ACTIONS(4558), + [anon_sym_u64] = ACTIONS(4558), + [anon_sym_isize] = ACTIONS(4558), + [anon_sym_usize] = ACTIONS(4558), + [anon_sym_f32] = ACTIONS(4558), + [anon_sym_f64] = ACTIONS(4558), + [anon_sym_c_char] = ACTIONS(4558), + [anon_sym_c_schar] = ACTIONS(4558), + [anon_sym_c_uchar] = ACTIONS(4558), + [anon_sym_c_short] = ACTIONS(4558), + [anon_sym_c_ushort] = ACTIONS(4558), + [anon_sym_c_int] = ACTIONS(4558), + [anon_sym_c_uint] = ACTIONS(4558), + [anon_sym_c_long] = ACTIONS(4558), + [anon_sym_c_ulong] = ACTIONS(4558), + [anon_sym_c_longlong] = ACTIONS(4558), + [anon_sym_c_ulonglong] = ACTIONS(4558), + [anon_sym_c_float] = ACTIONS(4558), + [anon_sym_c_double] = ACTIONS(4558), + [anon_sym_c_longdouble] = ACTIONS(4558), + [anon_sym_PLUS_EQ] = ACTIONS(4556), + [anon_sym_DASH_EQ] = ACTIONS(4556), + [anon_sym_STAR_EQ] = ACTIONS(4556), + [anon_sym_SLASH_EQ] = ACTIONS(4556), + [anon_sym_AMP_EQ] = ACTIONS(4556), + [anon_sym_PIPE_EQ] = ACTIONS(4558), + [anon_sym_xor_EQ] = ACTIONS(4556), + [anon_sym_LT_LT_EQ] = ACTIONS(4556), + [anon_sym_GT_GT_EQ] = ACTIONS(4556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4556), + [anon_sym_return] = ACTIONS(4558), + [anon_sym_yield] = ACTIONS(4558), + [anon_sym_break] = ACTIONS(4558), + [anon_sym_continue] = ACTIONS(4558), + [anon_sym_defer] = ACTIONS(4558), + [anon_sym_errdefer] = ACTIONS(4558), + [anon_sym_if] = ACTIONS(4558), + [anon_sym_else] = ACTIONS(4558), + [anon_sym_while] = ACTIONS(4558), + [anon_sym_expand] = ACTIONS(4558), + [anon_sym_for] = ACTIONS(4558), + [anon_sym_PIPE2] = ACTIONS(4556), + [anon_sym_match] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4556), + [anon_sym_orelse] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4556), + [anon_sym_BANG_EQ] = ACTIONS(4556), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4556), + [anon_sym_AMP] = ACTIONS(4558), + [anon_sym_xor] = ACTIONS(4558), + [anon_sym_LT_LT] = ACTIONS(4558), + [anon_sym_GT_GT] = ACTIONS(4558), + [anon_sym_LT_LT_PIPE] = ACTIONS(4558), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_catch] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4556), + [anon_sym_try] = ACTIONS(4558), + [anon_sym_DOT] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym_true] = ACTIONS(4558), + [anon_sym_false] = ACTIONS(4558), + [anon_sym_null] = ACTIONS(4558), + [anon_sym_unreachable] = ACTIONS(4558), + [anon_sym_undefined] = ACTIONS(4558), + [sym_sink] = ACTIONS(4558), + [sym_integer] = ACTIONS(4558), + [sym_float] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(4556), + [sym_multiline_string] = ACTIONS(4556), + [sym_character] = ACTIONS(4556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4556), + }, + [STATE(3548)] = { + [sym_identifier] = ACTIONS(4562), + [anon_sym_func] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_struct] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_DOLLAR] = ACTIONS(4560), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_void] = ACTIONS(4562), + [anon_sym_noreturn] = ACTIONS(4562), + [anon_sym_type] = ACTIONS(4562), + [anon_sym_anyopaque] = ACTIONS(4562), + [anon_sym_bool] = ACTIONS(4562), + [anon_sym_int] = ACTIONS(4562), + [anon_sym_uint] = ACTIONS(4562), + [anon_sym_float] = ACTIONS(4562), + [anon_sym_range] = ACTIONS(4562), + [anon_sym_i8] = ACTIONS(4562), + [anon_sym_i16] = ACTIONS(4562), + [anon_sym_i32] = ACTIONS(4562), + [anon_sym_i64] = ACTIONS(4562), + [anon_sym_u8] = ACTIONS(4562), + [anon_sym_u16] = ACTIONS(4562), + [anon_sym_u32] = ACTIONS(4562), + [anon_sym_u64] = ACTIONS(4562), + [anon_sym_isize] = ACTIONS(4562), + [anon_sym_usize] = ACTIONS(4562), + [anon_sym_f32] = ACTIONS(4562), + [anon_sym_f64] = ACTIONS(4562), + [anon_sym_c_char] = ACTIONS(4562), + [anon_sym_c_schar] = ACTIONS(4562), + [anon_sym_c_uchar] = ACTIONS(4562), + [anon_sym_c_short] = ACTIONS(4562), + [anon_sym_c_ushort] = ACTIONS(4562), + [anon_sym_c_int] = ACTIONS(4562), + [anon_sym_c_uint] = ACTIONS(4562), + [anon_sym_c_long] = ACTIONS(4562), + [anon_sym_c_ulong] = ACTIONS(4562), + [anon_sym_c_longlong] = ACTIONS(4562), + [anon_sym_c_ulonglong] = ACTIONS(4562), + [anon_sym_c_float] = ACTIONS(4562), + [anon_sym_c_double] = ACTIONS(4562), + [anon_sym_c_longdouble] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4560), + [anon_sym_DASH_EQ] = ACTIONS(4560), + [anon_sym_STAR_EQ] = ACTIONS(4560), + [anon_sym_SLASH_EQ] = ACTIONS(4560), + [anon_sym_AMP_EQ] = ACTIONS(4560), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_xor_EQ] = ACTIONS(4560), + [anon_sym_LT_LT_EQ] = ACTIONS(4560), + [anon_sym_GT_GT_EQ] = ACTIONS(4560), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4560), + [anon_sym_return] = ACTIONS(4562), + [anon_sym_yield] = ACTIONS(4562), + [anon_sym_break] = ACTIONS(4562), + [anon_sym_continue] = ACTIONS(4562), + [anon_sym_defer] = ACTIONS(4562), + [anon_sym_errdefer] = ACTIONS(4562), + [anon_sym_if] = ACTIONS(4562), + [anon_sym_else] = ACTIONS(4562), + [anon_sym_while] = ACTIONS(4562), + [anon_sym_expand] = ACTIONS(4562), + [anon_sym_for] = ACTIONS(4562), + [anon_sym_PIPE2] = ACTIONS(4560), + [anon_sym_match] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4560), + [anon_sym_orelse] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4560), + [anon_sym_BANG_EQ] = ACTIONS(4560), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4562), + [anon_sym_xor] = ACTIONS(4562), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(4562), + [anon_sym_LT_LT_PIPE] = ACTIONS(4562), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_catch] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4560), + [anon_sym_try] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym_true] = ACTIONS(4562), + [anon_sym_false] = ACTIONS(4562), + [anon_sym_null] = ACTIONS(4562), + [anon_sym_unreachable] = ACTIONS(4562), + [anon_sym_undefined] = ACTIONS(4562), + [sym_sink] = ACTIONS(4562), + [sym_integer] = ACTIONS(4562), + [sym_float] = ACTIONS(4560), + [anon_sym_DQUOTE] = ACTIONS(4560), + [sym_multiline_string] = ACTIONS(4560), + [sym_character] = ACTIONS(4560), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4560), + }, + [STATE(3549)] = { + [sym_identifier] = ACTIONS(4572), + [anon_sym_func] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_struct] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_void] = ACTIONS(4572), + [anon_sym_noreturn] = ACTIONS(4572), + [anon_sym_type] = ACTIONS(4572), + [anon_sym_anyopaque] = ACTIONS(4572), + [anon_sym_bool] = ACTIONS(4572), + [anon_sym_int] = ACTIONS(4572), + [anon_sym_uint] = ACTIONS(4572), + [anon_sym_float] = ACTIONS(4572), + [anon_sym_range] = ACTIONS(4572), + [anon_sym_i8] = ACTIONS(4572), + [anon_sym_i16] = ACTIONS(4572), + [anon_sym_i32] = ACTIONS(4572), + [anon_sym_i64] = ACTIONS(4572), + [anon_sym_u8] = ACTIONS(4572), + [anon_sym_u16] = ACTIONS(4572), + [anon_sym_u32] = ACTIONS(4572), + [anon_sym_u64] = ACTIONS(4572), + [anon_sym_isize] = ACTIONS(4572), + [anon_sym_usize] = ACTIONS(4572), + [anon_sym_f32] = ACTIONS(4572), + [anon_sym_f64] = ACTIONS(4572), + [anon_sym_c_char] = ACTIONS(4572), + [anon_sym_c_schar] = ACTIONS(4572), + [anon_sym_c_uchar] = ACTIONS(4572), + [anon_sym_c_short] = ACTIONS(4572), + [anon_sym_c_ushort] = ACTIONS(4572), + [anon_sym_c_int] = ACTIONS(4572), + [anon_sym_c_uint] = ACTIONS(4572), + [anon_sym_c_long] = ACTIONS(4572), + [anon_sym_c_ulong] = ACTIONS(4572), + [anon_sym_c_longlong] = ACTIONS(4572), + [anon_sym_c_ulonglong] = ACTIONS(4572), + [anon_sym_c_float] = ACTIONS(4572), + [anon_sym_c_double] = ACTIONS(4572), + [anon_sym_c_longdouble] = ACTIONS(4572), + [anon_sym_PLUS_EQ] = ACTIONS(4570), + [anon_sym_DASH_EQ] = ACTIONS(4570), + [anon_sym_STAR_EQ] = ACTIONS(4570), + [anon_sym_SLASH_EQ] = ACTIONS(4570), + [anon_sym_AMP_EQ] = ACTIONS(4570), + [anon_sym_PIPE_EQ] = ACTIONS(4572), + [anon_sym_xor_EQ] = ACTIONS(4570), + [anon_sym_LT_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_GT_EQ] = ACTIONS(4570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4570), + [anon_sym_return] = ACTIONS(4572), + [anon_sym_yield] = ACTIONS(4572), + [anon_sym_break] = ACTIONS(4572), + [anon_sym_continue] = ACTIONS(4572), + [anon_sym_defer] = ACTIONS(4572), + [anon_sym_errdefer] = ACTIONS(4572), + [anon_sym_if] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_while] = ACTIONS(4572), + [anon_sym_expand] = ACTIONS(4572), + [anon_sym_for] = ACTIONS(4572), + [anon_sym_PIPE2] = ACTIONS(4570), + [anon_sym_match] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4570), + [anon_sym_orelse] = ACTIONS(4572), + [anon_sym_or] = ACTIONS(4572), + [anon_sym_and] = ACTIONS(4572), + [anon_sym_EQ_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4572), + [anon_sym_xor] = ACTIONS(4572), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(4572), + [anon_sym_LT_LT_PIPE] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_catch] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_try] = ACTIONS(4572), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_null] = ACTIONS(4572), + [anon_sym_unreachable] = ACTIONS(4572), + [anon_sym_undefined] = ACTIONS(4572), + [sym_sink] = ACTIONS(4572), + [sym_integer] = ACTIONS(4572), + [sym_float] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [sym_multiline_string] = ACTIONS(4570), + [sym_character] = ACTIONS(4570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4570), + }, + [STATE(3550)] = { + [sym_identifier] = ACTIONS(4578), + [anon_sym_func] = ACTIONS(4578), + [anon_sym_BANG] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4578), + [anon_sym_struct] = ACTIONS(4578), + [anon_sym_LPAREN] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PIPE] = ACTIONS(4578), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_void] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_type] = ACTIONS(4578), + [anon_sym_anyopaque] = ACTIONS(4578), + [anon_sym_bool] = ACTIONS(4578), + [anon_sym_int] = ACTIONS(4578), + [anon_sym_uint] = ACTIONS(4578), + [anon_sym_float] = ACTIONS(4578), + [anon_sym_range] = ACTIONS(4578), + [anon_sym_i8] = ACTIONS(4578), + [anon_sym_i16] = ACTIONS(4578), + [anon_sym_i32] = ACTIONS(4578), + [anon_sym_i64] = ACTIONS(4578), + [anon_sym_u8] = ACTIONS(4578), + [anon_sym_u16] = ACTIONS(4578), + [anon_sym_u32] = ACTIONS(4578), + [anon_sym_u64] = ACTIONS(4578), + [anon_sym_isize] = ACTIONS(4578), + [anon_sym_usize] = ACTIONS(4578), + [anon_sym_f32] = ACTIONS(4578), + [anon_sym_f64] = ACTIONS(4578), + [anon_sym_c_char] = ACTIONS(4578), + [anon_sym_c_schar] = ACTIONS(4578), + [anon_sym_c_uchar] = ACTIONS(4578), + [anon_sym_c_short] = ACTIONS(4578), + [anon_sym_c_ushort] = ACTIONS(4578), + [anon_sym_c_int] = ACTIONS(4578), + [anon_sym_c_uint] = ACTIONS(4578), + [anon_sym_c_long] = ACTIONS(4578), + [anon_sym_c_ulong] = ACTIONS(4578), + [anon_sym_c_longlong] = ACTIONS(4578), + [anon_sym_c_ulonglong] = ACTIONS(4578), + [anon_sym_c_float] = ACTIONS(4578), + [anon_sym_c_double] = ACTIONS(4578), + [anon_sym_c_longdouble] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4576), + [anon_sym_DASH_EQ] = ACTIONS(4576), + [anon_sym_STAR_EQ] = ACTIONS(4576), + [anon_sym_SLASH_EQ] = ACTIONS(4576), + [anon_sym_AMP_EQ] = ACTIONS(4576), + [anon_sym_PIPE_EQ] = ACTIONS(4578), + [anon_sym_xor_EQ] = ACTIONS(4576), + [anon_sym_LT_LT_EQ] = ACTIONS(4576), + [anon_sym_GT_GT_EQ] = ACTIONS(4576), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4576), + [anon_sym_return] = ACTIONS(4578), + [anon_sym_yield] = ACTIONS(4578), + [anon_sym_break] = ACTIONS(4578), + [anon_sym_continue] = ACTIONS(4578), + [anon_sym_defer] = ACTIONS(4578), + [anon_sym_errdefer] = ACTIONS(4578), + [anon_sym_if] = ACTIONS(4578), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_while] = ACTIONS(4578), + [anon_sym_expand] = ACTIONS(4578), + [anon_sym_for] = ACTIONS(4578), + [anon_sym_PIPE2] = ACTIONS(4576), + [anon_sym_match] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4576), + [anon_sym_orelse] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4578), + [anon_sym_EQ_EQ] = ACTIONS(4576), + [anon_sym_BANG_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_GT_EQ] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_xor] = ACTIONS(4578), + [anon_sym_LT_LT] = ACTIONS(4578), + [anon_sym_GT_GT] = ACTIONS(4578), + [anon_sym_LT_LT_PIPE] = ACTIONS(4578), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_catch] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_try] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_null] = ACTIONS(4578), + [anon_sym_unreachable] = ACTIONS(4578), + [anon_sym_undefined] = ACTIONS(4578), + [sym_sink] = ACTIONS(4578), + [sym_integer] = ACTIONS(4578), + [sym_float] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [sym_multiline_string] = ACTIONS(4576), + [sym_character] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4576), + }, + [STATE(3551)] = { + [sym_identifier] = ACTIONS(5852), + [anon_sym_func] = ACTIONS(5852), + [anon_sym_BANG] = ACTIONS(5852), + [anon_sym_EQ] = ACTIONS(5852), + [anon_sym_struct] = ACTIONS(5852), + [anon_sym_LPAREN] = ACTIONS(5850), + [anon_sym_LBRACE] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5852), + [anon_sym_DOLLAR] = ACTIONS(5850), + [anon_sym_PIPE] = ACTIONS(5852), + [anon_sym_QMARK] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5852), + [anon_sym_LBRACK] = ACTIONS(5850), + [anon_sym_void] = ACTIONS(5852), + [anon_sym_noreturn] = ACTIONS(5852), + [anon_sym_type] = ACTIONS(5852), + [anon_sym_anyopaque] = ACTIONS(5852), + [anon_sym_bool] = ACTIONS(5852), + [anon_sym_int] = ACTIONS(5852), + [anon_sym_uint] = ACTIONS(5852), + [anon_sym_float] = ACTIONS(5852), + [anon_sym_range] = ACTIONS(5852), + [anon_sym_i8] = ACTIONS(5852), + [anon_sym_i16] = ACTIONS(5852), + [anon_sym_i32] = ACTIONS(5852), + [anon_sym_i64] = ACTIONS(5852), + [anon_sym_u8] = ACTIONS(5852), + [anon_sym_u16] = ACTIONS(5852), + [anon_sym_u32] = ACTIONS(5852), + [anon_sym_u64] = ACTIONS(5852), + [anon_sym_isize] = ACTIONS(5852), + [anon_sym_usize] = ACTIONS(5852), + [anon_sym_f32] = ACTIONS(5852), + [anon_sym_f64] = ACTIONS(5852), + [anon_sym_c_char] = ACTIONS(5852), + [anon_sym_c_schar] = ACTIONS(5852), + [anon_sym_c_uchar] = ACTIONS(5852), + [anon_sym_c_short] = ACTIONS(5852), + [anon_sym_c_ushort] = ACTIONS(5852), + [anon_sym_c_int] = ACTIONS(5852), + [anon_sym_c_uint] = ACTIONS(5852), + [anon_sym_c_long] = ACTIONS(5852), + [anon_sym_c_ulong] = ACTIONS(5852), + [anon_sym_c_longlong] = ACTIONS(5852), + [anon_sym_c_ulonglong] = ACTIONS(5852), + [anon_sym_c_float] = ACTIONS(5852), + [anon_sym_c_double] = ACTIONS(5852), + [anon_sym_c_longdouble] = ACTIONS(5852), + [anon_sym_PLUS_EQ] = ACTIONS(5850), + [anon_sym_DASH_EQ] = ACTIONS(5850), + [anon_sym_STAR_EQ] = ACTIONS(5850), + [anon_sym_SLASH_EQ] = ACTIONS(5850), + [anon_sym_AMP_EQ] = ACTIONS(5850), + [anon_sym_PIPE_EQ] = ACTIONS(5852), + [anon_sym_xor_EQ] = ACTIONS(5850), + [anon_sym_LT_LT_EQ] = ACTIONS(5850), + [anon_sym_GT_GT_EQ] = ACTIONS(5850), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5850), + [anon_sym_return] = ACTIONS(5852), + [anon_sym_yield] = ACTIONS(5852), + [anon_sym_break] = ACTIONS(5852), + [anon_sym_continue] = ACTIONS(5852), + [anon_sym_defer] = ACTIONS(5852), + [anon_sym_errdefer] = ACTIONS(5852), + [anon_sym_if] = ACTIONS(5852), + [anon_sym_else] = ACTIONS(5852), + [anon_sym_while] = ACTIONS(5852), + [anon_sym_expand] = ACTIONS(5852), + [anon_sym_for] = ACTIONS(5852), + [anon_sym_PIPE2] = ACTIONS(5850), + [anon_sym_match] = ACTIONS(5852), + [anon_sym_DOT_DOT] = ACTIONS(5852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5850), + [anon_sym_orelse] = ACTIONS(5852), + [anon_sym_or] = ACTIONS(5852), + [anon_sym_and] = ACTIONS(5852), + [anon_sym_EQ_EQ] = ACTIONS(5850), + [anon_sym_BANG_EQ] = ACTIONS(5850), + [anon_sym_LT] = ACTIONS(5852), + [anon_sym_LT_EQ] = ACTIONS(5850), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_GT_EQ] = ACTIONS(5850), + [anon_sym_AMP] = ACTIONS(5852), + [anon_sym_xor] = ACTIONS(5852), + [anon_sym_LT_LT] = ACTIONS(5852), + [anon_sym_GT_GT] = ACTIONS(5852), + [anon_sym_LT_LT_PIPE] = ACTIONS(5852), + [anon_sym_PLUS] = ACTIONS(5852), + [anon_sym_SLASH] = ACTIONS(5852), + [anon_sym_catch] = ACTIONS(5852), + [anon_sym_TILDE] = ACTIONS(5850), + [anon_sym_try] = ACTIONS(5852), + [anon_sym_DOT] = ACTIONS(5852), + [anon_sym_CARET] = ACTIONS(5850), + [anon_sym_true] = ACTIONS(5852), + [anon_sym_false] = ACTIONS(5852), + [anon_sym_null] = ACTIONS(5852), + [anon_sym_unreachable] = ACTIONS(5852), + [anon_sym_undefined] = ACTIONS(5852), + [sym_sink] = ACTIONS(5852), + [sym_integer] = ACTIONS(5852), + [sym_float] = ACTIONS(5850), + [anon_sym_DQUOTE] = ACTIONS(5850), + [sym_multiline_string] = ACTIONS(5850), + [sym_character] = ACTIONS(5850), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5850), + }, + [STATE(3552)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6821), + [anon_sym_DASH_EQ] = ACTIONS(6821), + [anon_sym_STAR_EQ] = ACTIONS(6821), + [anon_sym_SLASH_EQ] = ACTIONS(6821), + [anon_sym_AMP_EQ] = ACTIONS(6821), + [anon_sym_PIPE_EQ] = ACTIONS(6821), + [anon_sym_xor_EQ] = ACTIONS(6821), + [anon_sym_LT_LT_EQ] = ACTIONS(6821), + [anon_sym_GT_GT_EQ] = ACTIONS(6821), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6821), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(3553)] = { + [sym_identifier] = ACTIONS(4582), + [anon_sym_func] = ACTIONS(4582), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_struct] = ACTIONS(4582), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_DOLLAR] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4582), + [anon_sym_QMARK] = ACTIONS(4580), + [anon_sym_STAR] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_void] = ACTIONS(4582), + [anon_sym_noreturn] = ACTIONS(4582), + [anon_sym_type] = ACTIONS(4582), + [anon_sym_anyopaque] = ACTIONS(4582), + [anon_sym_bool] = ACTIONS(4582), + [anon_sym_int] = ACTIONS(4582), + [anon_sym_uint] = ACTIONS(4582), + [anon_sym_float] = ACTIONS(4582), + [anon_sym_range] = ACTIONS(4582), + [anon_sym_i8] = ACTIONS(4582), + [anon_sym_i16] = ACTIONS(4582), + [anon_sym_i32] = ACTIONS(4582), + [anon_sym_i64] = ACTIONS(4582), + [anon_sym_u8] = ACTIONS(4582), + [anon_sym_u16] = ACTIONS(4582), + [anon_sym_u32] = ACTIONS(4582), + [anon_sym_u64] = ACTIONS(4582), + [anon_sym_isize] = ACTIONS(4582), + [anon_sym_usize] = ACTIONS(4582), + [anon_sym_f32] = ACTIONS(4582), + [anon_sym_f64] = ACTIONS(4582), + [anon_sym_c_char] = ACTIONS(4582), + [anon_sym_c_schar] = ACTIONS(4582), + [anon_sym_c_uchar] = ACTIONS(4582), + [anon_sym_c_short] = ACTIONS(4582), + [anon_sym_c_ushort] = ACTIONS(4582), + [anon_sym_c_int] = ACTIONS(4582), + [anon_sym_c_uint] = ACTIONS(4582), + [anon_sym_c_long] = ACTIONS(4582), + [anon_sym_c_ulong] = ACTIONS(4582), + [anon_sym_c_longlong] = ACTIONS(4582), + [anon_sym_c_ulonglong] = ACTIONS(4582), + [anon_sym_c_float] = ACTIONS(4582), + [anon_sym_c_double] = ACTIONS(4582), + [anon_sym_c_longdouble] = ACTIONS(4582), + [anon_sym_PLUS_EQ] = ACTIONS(4580), + [anon_sym_DASH_EQ] = ACTIONS(4580), + [anon_sym_STAR_EQ] = ACTIONS(4580), + [anon_sym_SLASH_EQ] = ACTIONS(4580), + [anon_sym_AMP_EQ] = ACTIONS(4580), + [anon_sym_PIPE_EQ] = ACTIONS(4582), + [anon_sym_xor_EQ] = ACTIONS(4580), + [anon_sym_LT_LT_EQ] = ACTIONS(4580), + [anon_sym_GT_GT_EQ] = ACTIONS(4580), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4580), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_yield] = ACTIONS(4582), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_defer] = ACTIONS(4582), + [anon_sym_errdefer] = ACTIONS(4582), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_while] = ACTIONS(4582), + [anon_sym_expand] = ACTIONS(4582), + [anon_sym_for] = ACTIONS(4582), + [anon_sym_PIPE2] = ACTIONS(4580), + [anon_sym_match] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4580), + [anon_sym_orelse] = ACTIONS(4582), + [anon_sym_or] = ACTIONS(4582), + [anon_sym_and] = ACTIONS(4582), + [anon_sym_EQ_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_AMP] = ACTIONS(4582), + [anon_sym_xor] = ACTIONS(4582), + [anon_sym_LT_LT] = ACTIONS(4582), + [anon_sym_GT_GT] = ACTIONS(4582), + [anon_sym_LT_LT_PIPE] = ACTIONS(4582), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_catch] = ACTIONS(4582), + [anon_sym_TILDE] = ACTIONS(4580), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_CARET] = ACTIONS(4580), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_null] = ACTIONS(4582), + [anon_sym_unreachable] = ACTIONS(4582), + [anon_sym_undefined] = ACTIONS(4582), + [sym_sink] = ACTIONS(4582), + [sym_integer] = ACTIONS(4582), + [sym_float] = ACTIONS(4580), + [anon_sym_DQUOTE] = ACTIONS(4580), + [sym_multiline_string] = ACTIONS(4580), + [sym_character] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4580), + }, + [STATE(3554)] = { + [sym_identifier] = ACTIONS(4586), + [anon_sym_func] = ACTIONS(4586), + [anon_sym_BANG] = ACTIONS(4586), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_struct] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_void] = ACTIONS(4586), + [anon_sym_noreturn] = ACTIONS(4586), + [anon_sym_type] = ACTIONS(4586), + [anon_sym_anyopaque] = ACTIONS(4586), + [anon_sym_bool] = ACTIONS(4586), + [anon_sym_int] = ACTIONS(4586), + [anon_sym_uint] = ACTIONS(4586), + [anon_sym_float] = ACTIONS(4586), + [anon_sym_range] = ACTIONS(4586), + [anon_sym_i8] = ACTIONS(4586), + [anon_sym_i16] = ACTIONS(4586), + [anon_sym_i32] = ACTIONS(4586), + [anon_sym_i64] = ACTIONS(4586), + [anon_sym_u8] = ACTIONS(4586), + [anon_sym_u16] = ACTIONS(4586), + [anon_sym_u32] = ACTIONS(4586), + [anon_sym_u64] = ACTIONS(4586), + [anon_sym_isize] = ACTIONS(4586), + [anon_sym_usize] = ACTIONS(4586), + [anon_sym_f32] = ACTIONS(4586), + [anon_sym_f64] = ACTIONS(4586), + [anon_sym_c_char] = ACTIONS(4586), + [anon_sym_c_schar] = ACTIONS(4586), + [anon_sym_c_uchar] = ACTIONS(4586), + [anon_sym_c_short] = ACTIONS(4586), + [anon_sym_c_ushort] = ACTIONS(4586), + [anon_sym_c_int] = ACTIONS(4586), + [anon_sym_c_uint] = ACTIONS(4586), + [anon_sym_c_long] = ACTIONS(4586), + [anon_sym_c_ulong] = ACTIONS(4586), + [anon_sym_c_longlong] = ACTIONS(4586), + [anon_sym_c_ulonglong] = ACTIONS(4586), + [anon_sym_c_float] = ACTIONS(4586), + [anon_sym_c_double] = ACTIONS(4586), + [anon_sym_c_longdouble] = ACTIONS(4586), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_AMP_EQ] = ACTIONS(4584), + [anon_sym_PIPE_EQ] = ACTIONS(4586), + [anon_sym_xor_EQ] = ACTIONS(4584), + [anon_sym_LT_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_GT_EQ] = ACTIONS(4584), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4584), + [anon_sym_return] = ACTIONS(4586), + [anon_sym_yield] = ACTIONS(4586), + [anon_sym_break] = ACTIONS(4586), + [anon_sym_continue] = ACTIONS(4586), + [anon_sym_defer] = ACTIONS(4586), + [anon_sym_errdefer] = ACTIONS(4586), + [anon_sym_if] = ACTIONS(4586), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_while] = ACTIONS(4586), + [anon_sym_expand] = ACTIONS(4586), + [anon_sym_for] = ACTIONS(4586), + [anon_sym_PIPE2] = ACTIONS(4584), + [anon_sym_match] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4584), + [anon_sym_orelse] = ACTIONS(4586), + [anon_sym_or] = ACTIONS(4586), + [anon_sym_and] = ACTIONS(4586), + [anon_sym_EQ_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4586), + [anon_sym_GT_GT] = ACTIONS(4586), + [anon_sym_LT_LT_PIPE] = ACTIONS(4586), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4586), + [anon_sym_catch] = ACTIONS(4586), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_try] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4586), + [anon_sym_false] = ACTIONS(4586), + [anon_sym_null] = ACTIONS(4586), + [anon_sym_unreachable] = ACTIONS(4586), + [anon_sym_undefined] = ACTIONS(4586), + [sym_sink] = ACTIONS(4586), + [sym_integer] = ACTIONS(4586), + [sym_float] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [sym_multiline_string] = ACTIONS(4584), + [sym_character] = ACTIONS(4584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4584), + }, + [STATE(3555)] = { + [sym_identifier] = ACTIONS(4590), + [anon_sym_func] = ACTIONS(4590), + [anon_sym_BANG] = ACTIONS(4590), + [anon_sym_EQ] = ACTIONS(4590), + [anon_sym_struct] = ACTIONS(4590), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4590), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4590), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_void] = ACTIONS(4590), + [anon_sym_noreturn] = ACTIONS(4590), + [anon_sym_type] = ACTIONS(4590), + [anon_sym_anyopaque] = ACTIONS(4590), + [anon_sym_bool] = ACTIONS(4590), + [anon_sym_int] = ACTIONS(4590), + [anon_sym_uint] = ACTIONS(4590), + [anon_sym_float] = ACTIONS(4590), + [anon_sym_range] = ACTIONS(4590), + [anon_sym_i8] = ACTIONS(4590), + [anon_sym_i16] = ACTIONS(4590), + [anon_sym_i32] = ACTIONS(4590), + [anon_sym_i64] = ACTIONS(4590), + [anon_sym_u8] = ACTIONS(4590), + [anon_sym_u16] = ACTIONS(4590), + [anon_sym_u32] = ACTIONS(4590), + [anon_sym_u64] = ACTIONS(4590), + [anon_sym_isize] = ACTIONS(4590), + [anon_sym_usize] = ACTIONS(4590), + [anon_sym_f32] = ACTIONS(4590), + [anon_sym_f64] = ACTIONS(4590), + [anon_sym_c_char] = ACTIONS(4590), + [anon_sym_c_schar] = ACTIONS(4590), + [anon_sym_c_uchar] = ACTIONS(4590), + [anon_sym_c_short] = ACTIONS(4590), + [anon_sym_c_ushort] = ACTIONS(4590), + [anon_sym_c_int] = ACTIONS(4590), + [anon_sym_c_uint] = ACTIONS(4590), + [anon_sym_c_long] = ACTIONS(4590), + [anon_sym_c_ulong] = ACTIONS(4590), + [anon_sym_c_longlong] = ACTIONS(4590), + [anon_sym_c_ulonglong] = ACTIONS(4590), + [anon_sym_c_float] = ACTIONS(4590), + [anon_sym_c_double] = ACTIONS(4590), + [anon_sym_c_longdouble] = ACTIONS(4590), + [anon_sym_PLUS_EQ] = ACTIONS(4588), + [anon_sym_DASH_EQ] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4588), + [anon_sym_SLASH_EQ] = ACTIONS(4588), + [anon_sym_AMP_EQ] = ACTIONS(4588), + [anon_sym_PIPE_EQ] = ACTIONS(4590), + [anon_sym_xor_EQ] = ACTIONS(4588), + [anon_sym_LT_LT_EQ] = ACTIONS(4588), + [anon_sym_GT_GT_EQ] = ACTIONS(4588), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4588), + [anon_sym_return] = ACTIONS(4590), + [anon_sym_yield] = ACTIONS(4590), + [anon_sym_break] = ACTIONS(4590), + [anon_sym_continue] = ACTIONS(4590), + [anon_sym_defer] = ACTIONS(4590), + [anon_sym_errdefer] = ACTIONS(4590), + [anon_sym_if] = ACTIONS(4590), + [anon_sym_else] = ACTIONS(4590), + [anon_sym_while] = ACTIONS(4590), + [anon_sym_expand] = ACTIONS(4590), + [anon_sym_for] = ACTIONS(4590), + [anon_sym_PIPE2] = ACTIONS(4588), + [anon_sym_match] = ACTIONS(4590), + [anon_sym_DOT_DOT] = ACTIONS(4590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4588), + [anon_sym_orelse] = ACTIONS(4590), + [anon_sym_or] = ACTIONS(4590), + [anon_sym_and] = ACTIONS(4590), + [anon_sym_EQ_EQ] = ACTIONS(4588), + [anon_sym_BANG_EQ] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_LT_EQ] = ACTIONS(4588), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_GT_EQ] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_xor] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4590), + [anon_sym_SLASH] = ACTIONS(4590), + [anon_sym_catch] = ACTIONS(4590), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_try] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4588), + [anon_sym_true] = ACTIONS(4590), + [anon_sym_false] = ACTIONS(4590), + [anon_sym_null] = ACTIONS(4590), + [anon_sym_unreachable] = ACTIONS(4590), + [anon_sym_undefined] = ACTIONS(4590), + [sym_sink] = ACTIONS(4590), + [sym_integer] = ACTIONS(4590), + [sym_float] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym_multiline_string] = ACTIONS(4588), + [sym_character] = ACTIONS(4588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4588), + }, + [STATE(3556)] = { + [sym_identifier] = ACTIONS(4594), + [anon_sym_func] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_EQ] = ACTIONS(4594), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PIPE] = ACTIONS(4594), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_void] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_type] = ACTIONS(4594), + [anon_sym_anyopaque] = ACTIONS(4594), + [anon_sym_bool] = ACTIONS(4594), + [anon_sym_int] = ACTIONS(4594), + [anon_sym_uint] = ACTIONS(4594), + [anon_sym_float] = ACTIONS(4594), + [anon_sym_range] = ACTIONS(4594), + [anon_sym_i8] = ACTIONS(4594), + [anon_sym_i16] = ACTIONS(4594), + [anon_sym_i32] = ACTIONS(4594), + [anon_sym_i64] = ACTIONS(4594), + [anon_sym_u8] = ACTIONS(4594), + [anon_sym_u16] = ACTIONS(4594), + [anon_sym_u32] = ACTIONS(4594), + [anon_sym_u64] = ACTIONS(4594), + [anon_sym_isize] = ACTIONS(4594), + [anon_sym_usize] = ACTIONS(4594), + [anon_sym_f32] = ACTIONS(4594), + [anon_sym_f64] = ACTIONS(4594), + [anon_sym_c_char] = ACTIONS(4594), + [anon_sym_c_schar] = ACTIONS(4594), + [anon_sym_c_uchar] = ACTIONS(4594), + [anon_sym_c_short] = ACTIONS(4594), + [anon_sym_c_ushort] = ACTIONS(4594), + [anon_sym_c_int] = ACTIONS(4594), + [anon_sym_c_uint] = ACTIONS(4594), + [anon_sym_c_long] = ACTIONS(4594), + [anon_sym_c_ulong] = ACTIONS(4594), + [anon_sym_c_longlong] = ACTIONS(4594), + [anon_sym_c_ulonglong] = ACTIONS(4594), + [anon_sym_c_float] = ACTIONS(4594), + [anon_sym_c_double] = ACTIONS(4594), + [anon_sym_c_longdouble] = ACTIONS(4594), + [anon_sym_PLUS_EQ] = ACTIONS(4592), + [anon_sym_DASH_EQ] = ACTIONS(4592), + [anon_sym_STAR_EQ] = ACTIONS(4592), + [anon_sym_SLASH_EQ] = ACTIONS(4592), + [anon_sym_AMP_EQ] = ACTIONS(4592), + [anon_sym_PIPE_EQ] = ACTIONS(4594), + [anon_sym_xor_EQ] = ACTIONS(4592), + [anon_sym_LT_LT_EQ] = ACTIONS(4592), + [anon_sym_GT_GT_EQ] = ACTIONS(4592), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4592), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_continue] = ACTIONS(4594), + [anon_sym_defer] = ACTIONS(4594), + [anon_sym_errdefer] = ACTIONS(4594), + [anon_sym_if] = ACTIONS(4594), + [anon_sym_else] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_expand] = ACTIONS(4594), + [anon_sym_for] = ACTIONS(4594), + [anon_sym_PIPE2] = ACTIONS(4592), + [anon_sym_match] = ACTIONS(4594), + [anon_sym_DOT_DOT] = ACTIONS(4594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4592), + [anon_sym_orelse] = ACTIONS(4594), + [anon_sym_or] = ACTIONS(4594), + [anon_sym_and] = ACTIONS(4594), + [anon_sym_EQ_EQ] = ACTIONS(4592), + [anon_sym_BANG_EQ] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_LT_EQ] = ACTIONS(4592), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_xor] = ACTIONS(4594), + [anon_sym_LT_LT] = ACTIONS(4594), + [anon_sym_GT_GT] = ACTIONS(4594), + [anon_sym_LT_LT_PIPE] = ACTIONS(4594), + [anon_sym_PLUS] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_catch] = ACTIONS(4594), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_try] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_true] = ACTIONS(4594), + [anon_sym_false] = ACTIONS(4594), + [anon_sym_null] = ACTIONS(4594), + [anon_sym_unreachable] = ACTIONS(4594), + [anon_sym_undefined] = ACTIONS(4594), + [sym_sink] = ACTIONS(4594), + [sym_integer] = ACTIONS(4594), + [sym_float] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [sym_multiline_string] = ACTIONS(4592), + [sym_character] = ACTIONS(4592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4592), + }, + [STATE(3557)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3558)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2645), + [anon_sym_DASH_EQ] = ACTIONS(2645), + [anon_sym_STAR_EQ] = ACTIONS(2645), + [anon_sym_SLASH_EQ] = ACTIONS(2645), + [anon_sym_AMP_EQ] = ACTIONS(2645), + [anon_sym_PIPE_EQ] = ACTIONS(2645), + [anon_sym_xor_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_GT_EQ] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_PIPE] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3559)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(3560)] = { + [sym_identifier] = ACTIONS(4598), + [anon_sym_func] = ACTIONS(4598), + [anon_sym_BANG] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4598), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4598), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_void] = ACTIONS(4598), + [anon_sym_noreturn] = ACTIONS(4598), + [anon_sym_type] = ACTIONS(4598), + [anon_sym_anyopaque] = ACTIONS(4598), + [anon_sym_bool] = ACTIONS(4598), + [anon_sym_int] = ACTIONS(4598), + [anon_sym_uint] = ACTIONS(4598), + [anon_sym_float] = ACTIONS(4598), + [anon_sym_range] = ACTIONS(4598), + [anon_sym_i8] = ACTIONS(4598), + [anon_sym_i16] = ACTIONS(4598), + [anon_sym_i32] = ACTIONS(4598), + [anon_sym_i64] = ACTIONS(4598), + [anon_sym_u8] = ACTIONS(4598), + [anon_sym_u16] = ACTIONS(4598), + [anon_sym_u32] = ACTIONS(4598), + [anon_sym_u64] = ACTIONS(4598), + [anon_sym_isize] = ACTIONS(4598), + [anon_sym_usize] = ACTIONS(4598), + [anon_sym_f32] = ACTIONS(4598), + [anon_sym_f64] = ACTIONS(4598), + [anon_sym_c_char] = ACTIONS(4598), + [anon_sym_c_schar] = ACTIONS(4598), + [anon_sym_c_uchar] = ACTIONS(4598), + [anon_sym_c_short] = ACTIONS(4598), + [anon_sym_c_ushort] = ACTIONS(4598), + [anon_sym_c_int] = ACTIONS(4598), + [anon_sym_c_uint] = ACTIONS(4598), + [anon_sym_c_long] = ACTIONS(4598), + [anon_sym_c_ulong] = ACTIONS(4598), + [anon_sym_c_longlong] = ACTIONS(4598), + [anon_sym_c_ulonglong] = ACTIONS(4598), + [anon_sym_c_float] = ACTIONS(4598), + [anon_sym_c_double] = ACTIONS(4598), + [anon_sym_c_longdouble] = ACTIONS(4598), + [anon_sym_PLUS_EQ] = ACTIONS(4596), + [anon_sym_DASH_EQ] = ACTIONS(4596), + [anon_sym_STAR_EQ] = ACTIONS(4596), + [anon_sym_SLASH_EQ] = ACTIONS(4596), + [anon_sym_AMP_EQ] = ACTIONS(4596), + [anon_sym_PIPE_EQ] = ACTIONS(4598), + [anon_sym_xor_EQ] = ACTIONS(4596), + [anon_sym_LT_LT_EQ] = ACTIONS(4596), + [anon_sym_GT_GT_EQ] = ACTIONS(4596), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4596), + [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_else] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_expand] = ACTIONS(4598), + [anon_sym_for] = ACTIONS(4598), + [anon_sym_PIPE2] = ACTIONS(4596), + [anon_sym_match] = ACTIONS(4598), + [anon_sym_DOT_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4596), + [anon_sym_orelse] = ACTIONS(4598), + [anon_sym_or] = ACTIONS(4598), + [anon_sym_and] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_GT_EQ] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_xor] = ACTIONS(4598), + [anon_sym_LT_LT] = ACTIONS(4598), + [anon_sym_GT_GT] = ACTIONS(4598), + [anon_sym_LT_LT_PIPE] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4598), + [anon_sym_catch] = ACTIONS(4598), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_try] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_true] = ACTIONS(4598), + [anon_sym_false] = ACTIONS(4598), + [anon_sym_null] = ACTIONS(4598), + [anon_sym_unreachable] = ACTIONS(4598), + [anon_sym_undefined] = ACTIONS(4598), + [sym_sink] = ACTIONS(4598), + [sym_integer] = ACTIONS(4598), + [sym_float] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [sym_multiline_string] = ACTIONS(4596), + [sym_character] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4596), + }, + [STATE(3561)] = { + [sym_identifier] = ACTIONS(4602), + [anon_sym_func] = ACTIONS(4602), + [anon_sym_BANG] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_struct] = ACTIONS(4602), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4602), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_void] = ACTIONS(4602), + [anon_sym_noreturn] = ACTIONS(4602), + [anon_sym_type] = ACTIONS(4602), + [anon_sym_anyopaque] = ACTIONS(4602), + [anon_sym_bool] = ACTIONS(4602), + [anon_sym_int] = ACTIONS(4602), + [anon_sym_uint] = ACTIONS(4602), + [anon_sym_float] = ACTIONS(4602), + [anon_sym_range] = ACTIONS(4602), + [anon_sym_i8] = ACTIONS(4602), + [anon_sym_i16] = ACTIONS(4602), + [anon_sym_i32] = ACTIONS(4602), + [anon_sym_i64] = ACTIONS(4602), + [anon_sym_u8] = ACTIONS(4602), + [anon_sym_u16] = ACTIONS(4602), + [anon_sym_u32] = ACTIONS(4602), + [anon_sym_u64] = ACTIONS(4602), + [anon_sym_isize] = ACTIONS(4602), + [anon_sym_usize] = ACTIONS(4602), + [anon_sym_f32] = ACTIONS(4602), + [anon_sym_f64] = ACTIONS(4602), + [anon_sym_c_char] = ACTIONS(4602), + [anon_sym_c_schar] = ACTIONS(4602), + [anon_sym_c_uchar] = ACTIONS(4602), + [anon_sym_c_short] = ACTIONS(4602), + [anon_sym_c_ushort] = ACTIONS(4602), + [anon_sym_c_int] = ACTIONS(4602), + [anon_sym_c_uint] = ACTIONS(4602), + [anon_sym_c_long] = ACTIONS(4602), + [anon_sym_c_ulong] = ACTIONS(4602), + [anon_sym_c_longlong] = ACTIONS(4602), + [anon_sym_c_ulonglong] = ACTIONS(4602), + [anon_sym_c_float] = ACTIONS(4602), + [anon_sym_c_double] = ACTIONS(4602), + [anon_sym_c_longdouble] = ACTIONS(4602), + [anon_sym_PLUS_EQ] = ACTIONS(4600), + [anon_sym_DASH_EQ] = ACTIONS(4600), + [anon_sym_STAR_EQ] = ACTIONS(4600), + [anon_sym_SLASH_EQ] = ACTIONS(4600), + [anon_sym_AMP_EQ] = ACTIONS(4600), + [anon_sym_PIPE_EQ] = ACTIONS(4602), + [anon_sym_xor_EQ] = ACTIONS(4600), + [anon_sym_LT_LT_EQ] = ACTIONS(4600), + [anon_sym_GT_GT_EQ] = ACTIONS(4600), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4600), + [anon_sym_return] = ACTIONS(4602), + [anon_sym_yield] = ACTIONS(4602), + [anon_sym_break] = ACTIONS(4602), + [anon_sym_continue] = ACTIONS(4602), + [anon_sym_defer] = ACTIONS(4602), + [anon_sym_errdefer] = ACTIONS(4602), + [anon_sym_if] = ACTIONS(4602), + [anon_sym_else] = ACTIONS(4602), + [anon_sym_while] = ACTIONS(4602), + [anon_sym_expand] = ACTIONS(4602), + [anon_sym_for] = ACTIONS(4602), + [anon_sym_PIPE2] = ACTIONS(4600), + [anon_sym_match] = ACTIONS(4602), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4600), + [anon_sym_orelse] = ACTIONS(4602), + [anon_sym_or] = ACTIONS(4602), + [anon_sym_and] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4600), + [anon_sym_BANG_EQ] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4602), + [anon_sym_xor] = ACTIONS(4602), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4602), + [anon_sym_LT_LT_PIPE] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_catch] = ACTIONS(4602), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_try] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4600), + [anon_sym_true] = ACTIONS(4602), + [anon_sym_false] = ACTIONS(4602), + [anon_sym_null] = ACTIONS(4602), + [anon_sym_unreachable] = ACTIONS(4602), + [anon_sym_undefined] = ACTIONS(4602), + [sym_sink] = ACTIONS(4602), + [sym_integer] = ACTIONS(4602), + [sym_float] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [sym_multiline_string] = ACTIONS(4600), + [sym_character] = ACTIONS(4600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4600), + }, + [STATE(3562)] = { + [sym_identifier] = ACTIONS(4606), + [anon_sym_func] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_struct] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4604), + [anon_sym_void] = ACTIONS(4606), + [anon_sym_noreturn] = ACTIONS(4606), + [anon_sym_type] = ACTIONS(4606), + [anon_sym_anyopaque] = ACTIONS(4606), + [anon_sym_bool] = ACTIONS(4606), + [anon_sym_int] = ACTIONS(4606), + [anon_sym_uint] = ACTIONS(4606), + [anon_sym_float] = ACTIONS(4606), + [anon_sym_range] = ACTIONS(4606), + [anon_sym_i8] = ACTIONS(4606), + [anon_sym_i16] = ACTIONS(4606), + [anon_sym_i32] = ACTIONS(4606), + [anon_sym_i64] = ACTIONS(4606), + [anon_sym_u8] = ACTIONS(4606), + [anon_sym_u16] = ACTIONS(4606), + [anon_sym_u32] = ACTIONS(4606), + [anon_sym_u64] = ACTIONS(4606), + [anon_sym_isize] = ACTIONS(4606), + [anon_sym_usize] = ACTIONS(4606), + [anon_sym_f32] = ACTIONS(4606), + [anon_sym_f64] = ACTIONS(4606), + [anon_sym_c_char] = ACTIONS(4606), + [anon_sym_c_schar] = ACTIONS(4606), + [anon_sym_c_uchar] = ACTIONS(4606), + [anon_sym_c_short] = ACTIONS(4606), + [anon_sym_c_ushort] = ACTIONS(4606), + [anon_sym_c_int] = ACTIONS(4606), + [anon_sym_c_uint] = ACTIONS(4606), + [anon_sym_c_long] = ACTIONS(4606), + [anon_sym_c_ulong] = ACTIONS(4606), + [anon_sym_c_longlong] = ACTIONS(4606), + [anon_sym_c_ulonglong] = ACTIONS(4606), + [anon_sym_c_float] = ACTIONS(4606), + [anon_sym_c_double] = ACTIONS(4606), + [anon_sym_c_longdouble] = ACTIONS(4606), + [anon_sym_PLUS_EQ] = ACTIONS(4604), + [anon_sym_DASH_EQ] = ACTIONS(4604), + [anon_sym_STAR_EQ] = ACTIONS(4604), + [anon_sym_SLASH_EQ] = ACTIONS(4604), + [anon_sym_AMP_EQ] = ACTIONS(4604), + [anon_sym_PIPE_EQ] = ACTIONS(4606), + [anon_sym_xor_EQ] = ACTIONS(4604), + [anon_sym_LT_LT_EQ] = ACTIONS(4604), + [anon_sym_GT_GT_EQ] = ACTIONS(4604), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4604), + [anon_sym_return] = ACTIONS(4606), + [anon_sym_yield] = ACTIONS(4606), + [anon_sym_break] = ACTIONS(4606), + [anon_sym_continue] = ACTIONS(4606), + [anon_sym_defer] = ACTIONS(4606), + [anon_sym_errdefer] = ACTIONS(4606), + [anon_sym_if] = ACTIONS(4606), + [anon_sym_else] = ACTIONS(4606), + [anon_sym_while] = ACTIONS(4606), + [anon_sym_expand] = ACTIONS(4606), + [anon_sym_for] = ACTIONS(4606), + [anon_sym_PIPE2] = ACTIONS(4604), + [anon_sym_match] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4604), + [anon_sym_orelse] = ACTIONS(4606), + [anon_sym_or] = ACTIONS(4606), + [anon_sym_and] = ACTIONS(4606), + [anon_sym_EQ_EQ] = ACTIONS(4604), + [anon_sym_BANG_EQ] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4606), + [anon_sym_LT_EQ] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_GT_EQ] = ACTIONS(4604), + [anon_sym_AMP] = ACTIONS(4606), + [anon_sym_xor] = ACTIONS(4606), + [anon_sym_LT_LT] = ACTIONS(4606), + [anon_sym_GT_GT] = ACTIONS(4606), + [anon_sym_LT_LT_PIPE] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_catch] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4604), + [anon_sym_try] = ACTIONS(4606), + [anon_sym_DOT] = ACTIONS(4606), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym_true] = ACTIONS(4606), + [anon_sym_false] = ACTIONS(4606), + [anon_sym_null] = ACTIONS(4606), + [anon_sym_unreachable] = ACTIONS(4606), + [anon_sym_undefined] = ACTIONS(4606), + [sym_sink] = ACTIONS(4606), + [sym_integer] = ACTIONS(4606), + [sym_float] = ACTIONS(4604), + [anon_sym_DQUOTE] = ACTIONS(4604), + [sym_multiline_string] = ACTIONS(4604), + [sym_character] = ACTIONS(4604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4604), + }, + [STATE(3563)] = { + [sym_identifier] = ACTIONS(4614), + [anon_sym_func] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_EQ] = ACTIONS(4614), + [anon_sym_struct] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_QMARK] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_void] = ACTIONS(4614), + [anon_sym_noreturn] = ACTIONS(4614), + [anon_sym_type] = ACTIONS(4614), + [anon_sym_anyopaque] = ACTIONS(4614), + [anon_sym_bool] = ACTIONS(4614), + [anon_sym_int] = ACTIONS(4614), + [anon_sym_uint] = ACTIONS(4614), + [anon_sym_float] = ACTIONS(4614), + [anon_sym_range] = ACTIONS(4614), + [anon_sym_i8] = ACTIONS(4614), + [anon_sym_i16] = ACTIONS(4614), + [anon_sym_i32] = ACTIONS(4614), + [anon_sym_i64] = ACTIONS(4614), + [anon_sym_u8] = ACTIONS(4614), + [anon_sym_u16] = ACTIONS(4614), + [anon_sym_u32] = ACTIONS(4614), + [anon_sym_u64] = ACTIONS(4614), + [anon_sym_isize] = ACTIONS(4614), + [anon_sym_usize] = ACTIONS(4614), + [anon_sym_f32] = ACTIONS(4614), + [anon_sym_f64] = ACTIONS(4614), + [anon_sym_c_char] = ACTIONS(4614), + [anon_sym_c_schar] = ACTIONS(4614), + [anon_sym_c_uchar] = ACTIONS(4614), + [anon_sym_c_short] = ACTIONS(4614), + [anon_sym_c_ushort] = ACTIONS(4614), + [anon_sym_c_int] = ACTIONS(4614), + [anon_sym_c_uint] = ACTIONS(4614), + [anon_sym_c_long] = ACTIONS(4614), + [anon_sym_c_ulong] = ACTIONS(4614), + [anon_sym_c_longlong] = ACTIONS(4614), + [anon_sym_c_ulonglong] = ACTIONS(4614), + [anon_sym_c_float] = ACTIONS(4614), + [anon_sym_c_double] = ACTIONS(4614), + [anon_sym_c_longdouble] = ACTIONS(4614), + [anon_sym_PLUS_EQ] = ACTIONS(4612), + [anon_sym_DASH_EQ] = ACTIONS(4612), + [anon_sym_STAR_EQ] = ACTIONS(4612), + [anon_sym_SLASH_EQ] = ACTIONS(4612), + [anon_sym_AMP_EQ] = ACTIONS(4612), + [anon_sym_PIPE_EQ] = ACTIONS(4614), + [anon_sym_xor_EQ] = ACTIONS(4612), + [anon_sym_LT_LT_EQ] = ACTIONS(4612), + [anon_sym_GT_GT_EQ] = ACTIONS(4612), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4612), + [anon_sym_return] = ACTIONS(4614), + [anon_sym_yield] = ACTIONS(4614), + [anon_sym_break] = ACTIONS(4614), + [anon_sym_continue] = ACTIONS(4614), + [anon_sym_defer] = ACTIONS(4614), + [anon_sym_errdefer] = ACTIONS(4614), + [anon_sym_if] = ACTIONS(4614), + [anon_sym_else] = ACTIONS(4614), + [anon_sym_while] = ACTIONS(4614), + [anon_sym_expand] = ACTIONS(4614), + [anon_sym_for] = ACTIONS(4614), + [anon_sym_PIPE2] = ACTIONS(4612), + [anon_sym_match] = ACTIONS(4614), + [anon_sym_DOT_DOT] = ACTIONS(4614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4612), + [anon_sym_orelse] = ACTIONS(4614), + [anon_sym_or] = ACTIONS(4614), + [anon_sym_and] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4612), + [anon_sym_BANG_EQ] = ACTIONS(4612), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_LT_EQ] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4612), + [anon_sym_AMP] = ACTIONS(4614), + [anon_sym_xor] = ACTIONS(4614), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(4614), + [anon_sym_LT_LT_PIPE] = ACTIONS(4614), + [anon_sym_PLUS] = ACTIONS(4614), + [anon_sym_SLASH] = ACTIONS(4614), + [anon_sym_catch] = ACTIONS(4614), + [anon_sym_TILDE] = ACTIONS(4612), + [anon_sym_try] = ACTIONS(4614), + [anon_sym_DOT] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym_true] = ACTIONS(4614), + [anon_sym_false] = ACTIONS(4614), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_unreachable] = ACTIONS(4614), + [anon_sym_undefined] = ACTIONS(4614), + [sym_sink] = ACTIONS(4614), + [sym_integer] = ACTIONS(4614), + [sym_float] = ACTIONS(4612), + [anon_sym_DQUOTE] = ACTIONS(4612), + [sym_multiline_string] = ACTIONS(4612), + [sym_character] = ACTIONS(4612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4612), + }, + [STATE(3564)] = { + [sym_identifier] = ACTIONS(4618), + [anon_sym_func] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_struct] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4616), + [anon_sym_LBRACE] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_DOLLAR] = ACTIONS(4616), + [anon_sym_PIPE] = ACTIONS(4618), + [anon_sym_QMARK] = ACTIONS(4616), + [anon_sym_STAR] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4616), + [anon_sym_void] = ACTIONS(4618), + [anon_sym_noreturn] = ACTIONS(4618), + [anon_sym_type] = ACTIONS(4618), + [anon_sym_anyopaque] = ACTIONS(4618), + [anon_sym_bool] = ACTIONS(4618), + [anon_sym_int] = ACTIONS(4618), + [anon_sym_uint] = ACTIONS(4618), + [anon_sym_float] = ACTIONS(4618), + [anon_sym_range] = ACTIONS(4618), + [anon_sym_i8] = ACTIONS(4618), + [anon_sym_i16] = ACTIONS(4618), + [anon_sym_i32] = ACTIONS(4618), + [anon_sym_i64] = ACTIONS(4618), + [anon_sym_u8] = ACTIONS(4618), + [anon_sym_u16] = ACTIONS(4618), + [anon_sym_u32] = ACTIONS(4618), + [anon_sym_u64] = ACTIONS(4618), + [anon_sym_isize] = ACTIONS(4618), + [anon_sym_usize] = ACTIONS(4618), + [anon_sym_f32] = ACTIONS(4618), + [anon_sym_f64] = ACTIONS(4618), + [anon_sym_c_char] = ACTIONS(4618), + [anon_sym_c_schar] = ACTIONS(4618), + [anon_sym_c_uchar] = ACTIONS(4618), + [anon_sym_c_short] = ACTIONS(4618), + [anon_sym_c_ushort] = ACTIONS(4618), + [anon_sym_c_int] = ACTIONS(4618), + [anon_sym_c_uint] = ACTIONS(4618), + [anon_sym_c_long] = ACTIONS(4618), + [anon_sym_c_ulong] = ACTIONS(4618), + [anon_sym_c_longlong] = ACTIONS(4618), + [anon_sym_c_ulonglong] = ACTIONS(4618), + [anon_sym_c_float] = ACTIONS(4618), + [anon_sym_c_double] = ACTIONS(4618), + [anon_sym_c_longdouble] = ACTIONS(4618), + [anon_sym_PLUS_EQ] = ACTIONS(4616), + [anon_sym_DASH_EQ] = ACTIONS(4616), + [anon_sym_STAR_EQ] = ACTIONS(4616), + [anon_sym_SLASH_EQ] = ACTIONS(4616), + [anon_sym_AMP_EQ] = ACTIONS(4616), + [anon_sym_PIPE_EQ] = ACTIONS(4618), + [anon_sym_xor_EQ] = ACTIONS(4616), + [anon_sym_LT_LT_EQ] = ACTIONS(4616), + [anon_sym_GT_GT_EQ] = ACTIONS(4616), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4616), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_yield] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_defer] = ACTIONS(4618), + [anon_sym_errdefer] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_while] = ACTIONS(4618), + [anon_sym_expand] = ACTIONS(4618), + [anon_sym_for] = ACTIONS(4618), + [anon_sym_PIPE2] = ACTIONS(4616), + [anon_sym_match] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4616), + [anon_sym_orelse] = ACTIONS(4618), + [anon_sym_or] = ACTIONS(4618), + [anon_sym_and] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4616), + [anon_sym_BANG_EQ] = ACTIONS(4616), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_LT_EQ] = ACTIONS(4616), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_EQ] = ACTIONS(4616), + [anon_sym_AMP] = ACTIONS(4618), + [anon_sym_xor] = ACTIONS(4618), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(4618), + [anon_sym_LT_LT_PIPE] = ACTIONS(4618), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_catch] = ACTIONS(4618), + [anon_sym_TILDE] = ACTIONS(4616), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_CARET] = ACTIONS(4616), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_unreachable] = ACTIONS(4618), + [anon_sym_undefined] = ACTIONS(4618), + [sym_sink] = ACTIONS(4618), + [sym_integer] = ACTIONS(4618), + [sym_float] = ACTIONS(4616), + [anon_sym_DQUOTE] = ACTIONS(4616), + [sym_multiline_string] = ACTIONS(4616), + [sym_character] = ACTIONS(4616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4616), + }, + [STATE(3565)] = { + [sym_identifier] = ACTIONS(4624), + [anon_sym_func] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_EQ] = ACTIONS(4624), + [anon_sym_struct] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_DOLLAR] = ACTIONS(4622), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_QMARK] = ACTIONS(4622), + [anon_sym_STAR] = ACTIONS(4624), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_void] = ACTIONS(4624), + [anon_sym_noreturn] = ACTIONS(4624), + [anon_sym_type] = ACTIONS(4624), + [anon_sym_anyopaque] = ACTIONS(4624), + [anon_sym_bool] = ACTIONS(4624), + [anon_sym_int] = ACTIONS(4624), + [anon_sym_uint] = ACTIONS(4624), + [anon_sym_float] = ACTIONS(4624), + [anon_sym_range] = ACTIONS(4624), + [anon_sym_i8] = ACTIONS(4624), + [anon_sym_i16] = ACTIONS(4624), + [anon_sym_i32] = ACTIONS(4624), + [anon_sym_i64] = ACTIONS(4624), + [anon_sym_u8] = ACTIONS(4624), + [anon_sym_u16] = ACTIONS(4624), + [anon_sym_u32] = ACTIONS(4624), + [anon_sym_u64] = ACTIONS(4624), + [anon_sym_isize] = ACTIONS(4624), + [anon_sym_usize] = ACTIONS(4624), + [anon_sym_f32] = ACTIONS(4624), + [anon_sym_f64] = ACTIONS(4624), + [anon_sym_c_char] = ACTIONS(4624), + [anon_sym_c_schar] = ACTIONS(4624), + [anon_sym_c_uchar] = ACTIONS(4624), + [anon_sym_c_short] = ACTIONS(4624), + [anon_sym_c_ushort] = ACTIONS(4624), + [anon_sym_c_int] = ACTIONS(4624), + [anon_sym_c_uint] = ACTIONS(4624), + [anon_sym_c_long] = ACTIONS(4624), + [anon_sym_c_ulong] = ACTIONS(4624), + [anon_sym_c_longlong] = ACTIONS(4624), + [anon_sym_c_ulonglong] = ACTIONS(4624), + [anon_sym_c_float] = ACTIONS(4624), + [anon_sym_c_double] = ACTIONS(4624), + [anon_sym_c_longdouble] = ACTIONS(4624), + [anon_sym_PLUS_EQ] = ACTIONS(4622), + [anon_sym_DASH_EQ] = ACTIONS(4622), + [anon_sym_STAR_EQ] = ACTIONS(4622), + [anon_sym_SLASH_EQ] = ACTIONS(4622), + [anon_sym_AMP_EQ] = ACTIONS(4622), + [anon_sym_PIPE_EQ] = ACTIONS(4624), + [anon_sym_xor_EQ] = ACTIONS(4622), + [anon_sym_LT_LT_EQ] = ACTIONS(4622), + [anon_sym_GT_GT_EQ] = ACTIONS(4622), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4622), + [anon_sym_return] = ACTIONS(4624), + [anon_sym_yield] = ACTIONS(4624), + [anon_sym_break] = ACTIONS(4624), + [anon_sym_continue] = ACTIONS(4624), + [anon_sym_defer] = ACTIONS(4624), + [anon_sym_errdefer] = ACTIONS(4624), + [anon_sym_if] = ACTIONS(4624), + [anon_sym_else] = ACTIONS(4624), + [anon_sym_while] = ACTIONS(4624), + [anon_sym_expand] = ACTIONS(4624), + [anon_sym_for] = ACTIONS(4624), + [anon_sym_PIPE2] = ACTIONS(4622), + [anon_sym_match] = ACTIONS(4624), + [anon_sym_DOT_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4622), + [anon_sym_orelse] = ACTIONS(4624), + [anon_sym_or] = ACTIONS(4624), + [anon_sym_and] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_BANG_EQ] = ACTIONS(4622), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_LT_EQ] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_EQ] = ACTIONS(4622), + [anon_sym_AMP] = ACTIONS(4624), + [anon_sym_xor] = ACTIONS(4624), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(4624), + [anon_sym_LT_LT_PIPE] = ACTIONS(4624), + [anon_sym_PLUS] = ACTIONS(4624), + [anon_sym_SLASH] = ACTIONS(4624), + [anon_sym_catch] = ACTIONS(4624), + [anon_sym_TILDE] = ACTIONS(4622), + [anon_sym_try] = ACTIONS(4624), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4622), + [anon_sym_true] = ACTIONS(4624), + [anon_sym_false] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(4624), + [anon_sym_unreachable] = ACTIONS(4624), + [anon_sym_undefined] = ACTIONS(4624), + [sym_sink] = ACTIONS(4624), + [sym_integer] = ACTIONS(4624), + [sym_float] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(4622), + [sym_multiline_string] = ACTIONS(4622), + [sym_character] = ACTIONS(4622), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4622), + }, + [STATE(3566)] = { + [sym_identifier] = ACTIONS(4628), + [anon_sym_func] = ACTIONS(4628), + [anon_sym_BANG] = ACTIONS(4628), + [anon_sym_EQ] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_LBRACE] = ACTIONS(4626), + [anon_sym_DASH] = ACTIONS(4628), + [anon_sym_DOLLAR] = ACTIONS(4626), + [anon_sym_PIPE] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4626), + [anon_sym_void] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym_type] = ACTIONS(4628), + [anon_sym_anyopaque] = ACTIONS(4628), + [anon_sym_bool] = ACTIONS(4628), + [anon_sym_int] = ACTIONS(4628), + [anon_sym_uint] = ACTIONS(4628), + [anon_sym_float] = ACTIONS(4628), + [anon_sym_range] = ACTIONS(4628), + [anon_sym_i8] = ACTIONS(4628), + [anon_sym_i16] = ACTIONS(4628), + [anon_sym_i32] = ACTIONS(4628), + [anon_sym_i64] = ACTIONS(4628), + [anon_sym_u8] = ACTIONS(4628), + [anon_sym_u16] = ACTIONS(4628), + [anon_sym_u32] = ACTIONS(4628), + [anon_sym_u64] = ACTIONS(4628), + [anon_sym_isize] = ACTIONS(4628), + [anon_sym_usize] = ACTIONS(4628), + [anon_sym_f32] = ACTIONS(4628), + [anon_sym_f64] = ACTIONS(4628), + [anon_sym_c_char] = ACTIONS(4628), + [anon_sym_c_schar] = ACTIONS(4628), + [anon_sym_c_uchar] = ACTIONS(4628), + [anon_sym_c_short] = ACTIONS(4628), + [anon_sym_c_ushort] = ACTIONS(4628), + [anon_sym_c_int] = ACTIONS(4628), + [anon_sym_c_uint] = ACTIONS(4628), + [anon_sym_c_long] = ACTIONS(4628), + [anon_sym_c_ulong] = ACTIONS(4628), + [anon_sym_c_longlong] = ACTIONS(4628), + [anon_sym_c_ulonglong] = ACTIONS(4628), + [anon_sym_c_float] = ACTIONS(4628), + [anon_sym_c_double] = ACTIONS(4628), + [anon_sym_c_longdouble] = ACTIONS(4628), + [anon_sym_PLUS_EQ] = ACTIONS(4626), + [anon_sym_DASH_EQ] = ACTIONS(4626), + [anon_sym_STAR_EQ] = ACTIONS(4626), + [anon_sym_SLASH_EQ] = ACTIONS(4626), + [anon_sym_AMP_EQ] = ACTIONS(4626), + [anon_sym_PIPE_EQ] = ACTIONS(4628), + [anon_sym_xor_EQ] = ACTIONS(4626), + [anon_sym_LT_LT_EQ] = ACTIONS(4626), + [anon_sym_GT_GT_EQ] = ACTIONS(4626), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4626), + [anon_sym_return] = ACTIONS(4628), + [anon_sym_yield] = ACTIONS(4628), + [anon_sym_break] = ACTIONS(4628), + [anon_sym_continue] = ACTIONS(4628), + [anon_sym_defer] = ACTIONS(4628), + [anon_sym_errdefer] = ACTIONS(4628), + [anon_sym_if] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(4628), + [anon_sym_expand] = ACTIONS(4628), + [anon_sym_for] = ACTIONS(4628), + [anon_sym_PIPE2] = ACTIONS(4626), + [anon_sym_match] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4626), + [anon_sym_orelse] = ACTIONS(4628), + [anon_sym_or] = ACTIONS(4628), + [anon_sym_and] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4628), + [anon_sym_GT_EQ] = ACTIONS(4626), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_xor] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT_PIPE] = ACTIONS(4628), + [anon_sym_PLUS] = ACTIONS(4628), + [anon_sym_SLASH] = ACTIONS(4628), + [anon_sym_catch] = ACTIONS(4628), + [anon_sym_TILDE] = ACTIONS(4626), + [anon_sym_try] = ACTIONS(4628), + [anon_sym_DOT] = ACTIONS(4628), + [anon_sym_CARET] = ACTIONS(4626), + [anon_sym_true] = ACTIONS(4628), + [anon_sym_false] = ACTIONS(4628), + [anon_sym_null] = ACTIONS(4628), + [anon_sym_unreachable] = ACTIONS(4628), + [anon_sym_undefined] = ACTIONS(4628), + [sym_sink] = ACTIONS(4628), + [sym_integer] = ACTIONS(4628), + [sym_float] = ACTIONS(4626), + [anon_sym_DQUOTE] = ACTIONS(4626), + [sym_multiline_string] = ACTIONS(4626), + [sym_character] = ACTIONS(4626), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4626), + }, + [STATE(3567)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3568)] = { + [sym_identifier] = ACTIONS(4632), + [anon_sym_func] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_DOLLAR] = ACTIONS(4630), + [anon_sym_PIPE] = ACTIONS(4632), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4630), + [anon_sym_void] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym_type] = ACTIONS(4632), + [anon_sym_anyopaque] = ACTIONS(4632), + [anon_sym_bool] = ACTIONS(4632), + [anon_sym_int] = ACTIONS(4632), + [anon_sym_uint] = ACTIONS(4632), + [anon_sym_float] = ACTIONS(4632), + [anon_sym_range] = ACTIONS(4632), + [anon_sym_i8] = ACTIONS(4632), + [anon_sym_i16] = ACTIONS(4632), + [anon_sym_i32] = ACTIONS(4632), + [anon_sym_i64] = ACTIONS(4632), + [anon_sym_u8] = ACTIONS(4632), + [anon_sym_u16] = ACTIONS(4632), + [anon_sym_u32] = ACTIONS(4632), + [anon_sym_u64] = ACTIONS(4632), + [anon_sym_isize] = ACTIONS(4632), + [anon_sym_usize] = ACTIONS(4632), + [anon_sym_f32] = ACTIONS(4632), + [anon_sym_f64] = ACTIONS(4632), + [anon_sym_c_char] = ACTIONS(4632), + [anon_sym_c_schar] = ACTIONS(4632), + [anon_sym_c_uchar] = ACTIONS(4632), + [anon_sym_c_short] = ACTIONS(4632), + [anon_sym_c_ushort] = ACTIONS(4632), + [anon_sym_c_int] = ACTIONS(4632), + [anon_sym_c_uint] = ACTIONS(4632), + [anon_sym_c_long] = ACTIONS(4632), + [anon_sym_c_ulong] = ACTIONS(4632), + [anon_sym_c_longlong] = ACTIONS(4632), + [anon_sym_c_ulonglong] = ACTIONS(4632), + [anon_sym_c_float] = ACTIONS(4632), + [anon_sym_c_double] = ACTIONS(4632), + [anon_sym_c_longdouble] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4630), + [anon_sym_DASH_EQ] = ACTIONS(4630), + [anon_sym_STAR_EQ] = ACTIONS(4630), + [anon_sym_SLASH_EQ] = ACTIONS(4630), + [anon_sym_AMP_EQ] = ACTIONS(4630), + [anon_sym_PIPE_EQ] = ACTIONS(4632), + [anon_sym_xor_EQ] = ACTIONS(4630), + [anon_sym_LT_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_GT_EQ] = ACTIONS(4630), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4630), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_yield] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_defer] = ACTIONS(4632), + [anon_sym_errdefer] = ACTIONS(4632), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_expand] = ACTIONS(4632), + [anon_sym_for] = ACTIONS(4632), + [anon_sym_PIPE2] = ACTIONS(4630), + [anon_sym_match] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4630), + [anon_sym_orelse] = ACTIONS(4632), + [anon_sym_or] = ACTIONS(4632), + [anon_sym_and] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_xor] = ACTIONS(4632), + [anon_sym_LT_LT] = ACTIONS(4632), + [anon_sym_GT_GT] = ACTIONS(4632), + [anon_sym_LT_LT_PIPE] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_catch] = ACTIONS(4632), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4632), + [anon_sym_unreachable] = ACTIONS(4632), + [anon_sym_undefined] = ACTIONS(4632), + [sym_sink] = ACTIONS(4632), + [sym_integer] = ACTIONS(4632), + [sym_float] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_multiline_string] = ACTIONS(4630), + [sym_character] = ACTIONS(4630), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4630), + }, + [STATE(3569)] = { + [sym_identifier] = ACTIONS(4636), + [anon_sym_func] = ACTIONS(4636), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_QMARK] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_void] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym_type] = ACTIONS(4636), + [anon_sym_anyopaque] = ACTIONS(4636), + [anon_sym_bool] = ACTIONS(4636), + [anon_sym_int] = ACTIONS(4636), + [anon_sym_uint] = ACTIONS(4636), + [anon_sym_float] = ACTIONS(4636), + [anon_sym_range] = ACTIONS(4636), + [anon_sym_i8] = ACTIONS(4636), + [anon_sym_i16] = ACTIONS(4636), + [anon_sym_i32] = ACTIONS(4636), + [anon_sym_i64] = ACTIONS(4636), + [anon_sym_u8] = ACTIONS(4636), + [anon_sym_u16] = ACTIONS(4636), + [anon_sym_u32] = ACTIONS(4636), + [anon_sym_u64] = ACTIONS(4636), + [anon_sym_isize] = ACTIONS(4636), + [anon_sym_usize] = ACTIONS(4636), + [anon_sym_f32] = ACTIONS(4636), + [anon_sym_f64] = ACTIONS(4636), + [anon_sym_c_char] = ACTIONS(4636), + [anon_sym_c_schar] = ACTIONS(4636), + [anon_sym_c_uchar] = ACTIONS(4636), + [anon_sym_c_short] = ACTIONS(4636), + [anon_sym_c_ushort] = ACTIONS(4636), + [anon_sym_c_int] = ACTIONS(4636), + [anon_sym_c_uint] = ACTIONS(4636), + [anon_sym_c_long] = ACTIONS(4636), + [anon_sym_c_ulong] = ACTIONS(4636), + [anon_sym_c_longlong] = ACTIONS(4636), + [anon_sym_c_ulonglong] = ACTIONS(4636), + [anon_sym_c_float] = ACTIONS(4636), + [anon_sym_c_double] = ACTIONS(4636), + [anon_sym_c_longdouble] = ACTIONS(4636), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_AMP_EQ] = ACTIONS(4634), + [anon_sym_PIPE_EQ] = ACTIONS(4636), + [anon_sym_xor_EQ] = ACTIONS(4634), + [anon_sym_LT_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_GT_EQ] = ACTIONS(4634), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4634), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_yield] = ACTIONS(4636), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_defer] = ACTIONS(4636), + [anon_sym_errdefer] = ACTIONS(4636), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_expand] = ACTIONS(4636), + [anon_sym_for] = ACTIONS(4636), + [anon_sym_PIPE2] = ACTIONS(4634), + [anon_sym_match] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4634), + [anon_sym_orelse] = ACTIONS(4636), + [anon_sym_or] = ACTIONS(4636), + [anon_sym_and] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_xor] = ACTIONS(4636), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(4636), + [anon_sym_LT_LT_PIPE] = ACTIONS(4636), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_SLASH] = ACTIONS(4636), + [anon_sym_catch] = ACTIONS(4636), + [anon_sym_TILDE] = ACTIONS(4634), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4636), + [anon_sym_false] = ACTIONS(4636), + [anon_sym_null] = ACTIONS(4636), + [anon_sym_unreachable] = ACTIONS(4636), + [anon_sym_undefined] = ACTIONS(4636), + [sym_sink] = ACTIONS(4636), + [sym_integer] = ACTIONS(4636), + [sym_float] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4634), + [sym_multiline_string] = ACTIONS(4634), + [sym_character] = ACTIONS(4634), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4634), + }, + [STATE(3570)] = { + [sym_identifier] = ACTIONS(4640), + [anon_sym_func] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_DOLLAR] = ACTIONS(4638), + [anon_sym_PIPE] = ACTIONS(4640), + [anon_sym_QMARK] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_void] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym_type] = ACTIONS(4640), + [anon_sym_anyopaque] = ACTIONS(4640), + [anon_sym_bool] = ACTIONS(4640), + [anon_sym_int] = ACTIONS(4640), + [anon_sym_uint] = ACTIONS(4640), + [anon_sym_float] = ACTIONS(4640), + [anon_sym_range] = ACTIONS(4640), + [anon_sym_i8] = ACTIONS(4640), + [anon_sym_i16] = ACTIONS(4640), + [anon_sym_i32] = ACTIONS(4640), + [anon_sym_i64] = ACTIONS(4640), + [anon_sym_u8] = ACTIONS(4640), + [anon_sym_u16] = ACTIONS(4640), + [anon_sym_u32] = ACTIONS(4640), + [anon_sym_u64] = ACTIONS(4640), + [anon_sym_isize] = ACTIONS(4640), + [anon_sym_usize] = ACTIONS(4640), + [anon_sym_f32] = ACTIONS(4640), + [anon_sym_f64] = ACTIONS(4640), + [anon_sym_c_char] = ACTIONS(4640), + [anon_sym_c_schar] = ACTIONS(4640), + [anon_sym_c_uchar] = ACTIONS(4640), + [anon_sym_c_short] = ACTIONS(4640), + [anon_sym_c_ushort] = ACTIONS(4640), + [anon_sym_c_int] = ACTIONS(4640), + [anon_sym_c_uint] = ACTIONS(4640), + [anon_sym_c_long] = ACTIONS(4640), + [anon_sym_c_ulong] = ACTIONS(4640), + [anon_sym_c_longlong] = ACTIONS(4640), + [anon_sym_c_ulonglong] = ACTIONS(4640), + [anon_sym_c_float] = ACTIONS(4640), + [anon_sym_c_double] = ACTIONS(4640), + [anon_sym_c_longdouble] = ACTIONS(4640), + [anon_sym_PLUS_EQ] = ACTIONS(4638), + [anon_sym_DASH_EQ] = ACTIONS(4638), + [anon_sym_STAR_EQ] = ACTIONS(4638), + [anon_sym_SLASH_EQ] = ACTIONS(4638), + [anon_sym_AMP_EQ] = ACTIONS(4638), + [anon_sym_PIPE_EQ] = ACTIONS(4640), + [anon_sym_xor_EQ] = ACTIONS(4638), + [anon_sym_LT_LT_EQ] = ACTIONS(4638), + [anon_sym_GT_GT_EQ] = ACTIONS(4638), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4638), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_yield] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_defer] = ACTIONS(4640), + [anon_sym_errdefer] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_expand] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_PIPE2] = ACTIONS(4638), + [anon_sym_match] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4638), + [anon_sym_orelse] = ACTIONS(4640), + [anon_sym_or] = ACTIONS(4640), + [anon_sym_and] = ACTIONS(4640), + [anon_sym_EQ_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4640), + [anon_sym_xor] = ACTIONS(4640), + [anon_sym_LT_LT] = ACTIONS(4640), + [anon_sym_GT_GT] = ACTIONS(4640), + [anon_sym_LT_LT_PIPE] = ACTIONS(4640), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_SLASH] = ACTIONS(4640), + [anon_sym_catch] = ACTIONS(4640), + [anon_sym_TILDE] = ACTIONS(4638), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_CARET] = ACTIONS(4638), + [anon_sym_true] = ACTIONS(4640), + [anon_sym_false] = ACTIONS(4640), + [anon_sym_null] = ACTIONS(4640), + [anon_sym_unreachable] = ACTIONS(4640), + [anon_sym_undefined] = ACTIONS(4640), + [sym_sink] = ACTIONS(4640), + [sym_integer] = ACTIONS(4640), + [sym_float] = ACTIONS(4638), + [anon_sym_DQUOTE] = ACTIONS(4638), + [sym_multiline_string] = ACTIONS(4638), + [sym_character] = ACTIONS(4638), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4638), + }, + [STATE(3571)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2664), + [anon_sym_DASH_EQ] = ACTIONS(2664), + [anon_sym_STAR_EQ] = ACTIONS(2664), + [anon_sym_SLASH_EQ] = ACTIONS(2664), + [anon_sym_AMP_EQ] = ACTIONS(2664), + [anon_sym_PIPE_EQ] = ACTIONS(2664), + [anon_sym_xor_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_GT_EQ] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_LT_LT_PIPE] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3572)] = { + [sym_identifier] = ACTIONS(4644), + [anon_sym_func] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_void] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym_type] = ACTIONS(4644), + [anon_sym_anyopaque] = ACTIONS(4644), + [anon_sym_bool] = ACTIONS(4644), + [anon_sym_int] = ACTIONS(4644), + [anon_sym_uint] = ACTIONS(4644), + [anon_sym_float] = ACTIONS(4644), + [anon_sym_range] = ACTIONS(4644), + [anon_sym_i8] = ACTIONS(4644), + [anon_sym_i16] = ACTIONS(4644), + [anon_sym_i32] = ACTIONS(4644), + [anon_sym_i64] = ACTIONS(4644), + [anon_sym_u8] = ACTIONS(4644), + [anon_sym_u16] = ACTIONS(4644), + [anon_sym_u32] = ACTIONS(4644), + [anon_sym_u64] = ACTIONS(4644), + [anon_sym_isize] = ACTIONS(4644), + [anon_sym_usize] = ACTIONS(4644), + [anon_sym_f32] = ACTIONS(4644), + [anon_sym_f64] = ACTIONS(4644), + [anon_sym_c_char] = ACTIONS(4644), + [anon_sym_c_schar] = ACTIONS(4644), + [anon_sym_c_uchar] = ACTIONS(4644), + [anon_sym_c_short] = ACTIONS(4644), + [anon_sym_c_ushort] = ACTIONS(4644), + [anon_sym_c_int] = ACTIONS(4644), + [anon_sym_c_uint] = ACTIONS(4644), + [anon_sym_c_long] = ACTIONS(4644), + [anon_sym_c_ulong] = ACTIONS(4644), + [anon_sym_c_longlong] = ACTIONS(4644), + [anon_sym_c_ulonglong] = ACTIONS(4644), + [anon_sym_c_float] = ACTIONS(4644), + [anon_sym_c_double] = ACTIONS(4644), + [anon_sym_c_longdouble] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4642), + [anon_sym_DASH_EQ] = ACTIONS(4642), + [anon_sym_STAR_EQ] = ACTIONS(4642), + [anon_sym_SLASH_EQ] = ACTIONS(4642), + [anon_sym_AMP_EQ] = ACTIONS(4642), + [anon_sym_PIPE_EQ] = ACTIONS(4644), + [anon_sym_xor_EQ] = ACTIONS(4642), + [anon_sym_LT_LT_EQ] = ACTIONS(4642), + [anon_sym_GT_GT_EQ] = ACTIONS(4642), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_yield] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_defer] = ACTIONS(4644), + [anon_sym_errdefer] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_expand] = ACTIONS(4644), + [anon_sym_for] = ACTIONS(4644), + [anon_sym_PIPE2] = ACTIONS(4642), + [anon_sym_match] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4642), + [anon_sym_orelse] = ACTIONS(4644), + [anon_sym_or] = ACTIONS(4644), + [anon_sym_and] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_xor] = ACTIONS(4644), + [anon_sym_LT_LT] = ACTIONS(4644), + [anon_sym_GT_GT] = ACTIONS(4644), + [anon_sym_LT_LT_PIPE] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_catch] = ACTIONS(4644), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4642), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_unreachable] = ACTIONS(4644), + [anon_sym_undefined] = ACTIONS(4644), + [sym_sink] = ACTIONS(4644), + [sym_integer] = ACTIONS(4644), + [sym_float] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [sym_multiline_string] = ACTIONS(4642), + [sym_character] = ACTIONS(4642), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4642), + }, + [STATE(3573)] = { + [sym_identifier] = ACTIONS(4648), + [anon_sym_func] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4646), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_void] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym_type] = ACTIONS(4648), + [anon_sym_anyopaque] = ACTIONS(4648), + [anon_sym_bool] = ACTIONS(4648), + [anon_sym_int] = ACTIONS(4648), + [anon_sym_uint] = ACTIONS(4648), + [anon_sym_float] = ACTIONS(4648), + [anon_sym_range] = ACTIONS(4648), + [anon_sym_i8] = ACTIONS(4648), + [anon_sym_i16] = ACTIONS(4648), + [anon_sym_i32] = ACTIONS(4648), + [anon_sym_i64] = ACTIONS(4648), + [anon_sym_u8] = ACTIONS(4648), + [anon_sym_u16] = ACTIONS(4648), + [anon_sym_u32] = ACTIONS(4648), + [anon_sym_u64] = ACTIONS(4648), + [anon_sym_isize] = ACTIONS(4648), + [anon_sym_usize] = ACTIONS(4648), + [anon_sym_f32] = ACTIONS(4648), + [anon_sym_f64] = ACTIONS(4648), + [anon_sym_c_char] = ACTIONS(4648), + [anon_sym_c_schar] = ACTIONS(4648), + [anon_sym_c_uchar] = ACTIONS(4648), + [anon_sym_c_short] = ACTIONS(4648), + [anon_sym_c_ushort] = ACTIONS(4648), + [anon_sym_c_int] = ACTIONS(4648), + [anon_sym_c_uint] = ACTIONS(4648), + [anon_sym_c_long] = ACTIONS(4648), + [anon_sym_c_ulong] = ACTIONS(4648), + [anon_sym_c_longlong] = ACTIONS(4648), + [anon_sym_c_ulonglong] = ACTIONS(4648), + [anon_sym_c_float] = ACTIONS(4648), + [anon_sym_c_double] = ACTIONS(4648), + [anon_sym_c_longdouble] = ACTIONS(4648), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_AMP_EQ] = ACTIONS(4646), + [anon_sym_PIPE_EQ] = ACTIONS(4648), + [anon_sym_xor_EQ] = ACTIONS(4646), + [anon_sym_LT_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_GT_EQ] = ACTIONS(4646), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4646), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_yield] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_defer] = ACTIONS(4648), + [anon_sym_errdefer] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_expand] = ACTIONS(4648), + [anon_sym_for] = ACTIONS(4648), + [anon_sym_PIPE2] = ACTIONS(4646), + [anon_sym_match] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4646), + [anon_sym_orelse] = ACTIONS(4648), + [anon_sym_or] = ACTIONS(4648), + [anon_sym_and] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_AMP] = ACTIONS(4648), + [anon_sym_xor] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [anon_sym_LT_LT_PIPE] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_catch] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4648), + [anon_sym_false] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4648), + [anon_sym_unreachable] = ACTIONS(4648), + [anon_sym_undefined] = ACTIONS(4648), + [sym_sink] = ACTIONS(4648), + [sym_integer] = ACTIONS(4648), + [sym_float] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym_multiline_string] = ACTIONS(4646), + [sym_character] = ACTIONS(4646), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4646), + }, + [STATE(3574)] = { + [sym_identifier] = ACTIONS(4652), + [anon_sym_func] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_DOLLAR] = ACTIONS(4650), + [anon_sym_PIPE] = ACTIONS(4652), + [anon_sym_QMARK] = ACTIONS(4650), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_void] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym_type] = ACTIONS(4652), + [anon_sym_anyopaque] = ACTIONS(4652), + [anon_sym_bool] = ACTIONS(4652), + [anon_sym_int] = ACTIONS(4652), + [anon_sym_uint] = ACTIONS(4652), + [anon_sym_float] = ACTIONS(4652), + [anon_sym_range] = ACTIONS(4652), + [anon_sym_i8] = ACTIONS(4652), + [anon_sym_i16] = ACTIONS(4652), + [anon_sym_i32] = ACTIONS(4652), + [anon_sym_i64] = ACTIONS(4652), + [anon_sym_u8] = ACTIONS(4652), + [anon_sym_u16] = ACTIONS(4652), + [anon_sym_u32] = ACTIONS(4652), + [anon_sym_u64] = ACTIONS(4652), + [anon_sym_isize] = ACTIONS(4652), + [anon_sym_usize] = ACTIONS(4652), + [anon_sym_f32] = ACTIONS(4652), + [anon_sym_f64] = ACTIONS(4652), + [anon_sym_c_char] = ACTIONS(4652), + [anon_sym_c_schar] = ACTIONS(4652), + [anon_sym_c_uchar] = ACTIONS(4652), + [anon_sym_c_short] = ACTIONS(4652), + [anon_sym_c_ushort] = ACTIONS(4652), + [anon_sym_c_int] = ACTIONS(4652), + [anon_sym_c_uint] = ACTIONS(4652), + [anon_sym_c_long] = ACTIONS(4652), + [anon_sym_c_ulong] = ACTIONS(4652), + [anon_sym_c_longlong] = ACTIONS(4652), + [anon_sym_c_ulonglong] = ACTIONS(4652), + [anon_sym_c_float] = ACTIONS(4652), + [anon_sym_c_double] = ACTIONS(4652), + [anon_sym_c_longdouble] = ACTIONS(4652), + [anon_sym_PLUS_EQ] = ACTIONS(4650), + [anon_sym_DASH_EQ] = ACTIONS(4650), + [anon_sym_STAR_EQ] = ACTIONS(4650), + [anon_sym_SLASH_EQ] = ACTIONS(4650), + [anon_sym_AMP_EQ] = ACTIONS(4650), + [anon_sym_PIPE_EQ] = ACTIONS(4652), + [anon_sym_xor_EQ] = ACTIONS(4650), + [anon_sym_LT_LT_EQ] = ACTIONS(4650), + [anon_sym_GT_GT_EQ] = ACTIONS(4650), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4650), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_yield] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_defer] = ACTIONS(4652), + [anon_sym_errdefer] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_expand] = ACTIONS(4652), + [anon_sym_for] = ACTIONS(4652), + [anon_sym_PIPE2] = ACTIONS(4650), + [anon_sym_match] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4650), + [anon_sym_orelse] = ACTIONS(4652), + [anon_sym_or] = ACTIONS(4652), + [anon_sym_and] = ACTIONS(4652), + [anon_sym_EQ_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4650), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_AMP] = ACTIONS(4652), + [anon_sym_xor] = ACTIONS(4652), + [anon_sym_LT_LT] = ACTIONS(4652), + [anon_sym_GT_GT] = ACTIONS(4652), + [anon_sym_LT_LT_PIPE] = ACTIONS(4652), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_catch] = ACTIONS(4652), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_unreachable] = ACTIONS(4652), + [anon_sym_undefined] = ACTIONS(4652), + [sym_sink] = ACTIONS(4652), + [sym_integer] = ACTIONS(4652), + [sym_float] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym_multiline_string] = ACTIONS(4650), + [sym_character] = ACTIONS(4650), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4650), + }, + [STATE(3575)] = { + [sym_identifier] = ACTIONS(5964), + [anon_sym_func] = ACTIONS(5964), + [anon_sym_BANG] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(5964), + [anon_sym_struct] = ACTIONS(5964), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_DOLLAR] = ACTIONS(5962), + [anon_sym_PIPE] = ACTIONS(5964), + [anon_sym_QMARK] = ACTIONS(5962), + [anon_sym_STAR] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_void] = ACTIONS(5964), + [anon_sym_noreturn] = ACTIONS(5964), + [anon_sym_type] = ACTIONS(5964), + [anon_sym_anyopaque] = ACTIONS(5964), + [anon_sym_bool] = ACTIONS(5964), + [anon_sym_int] = ACTIONS(5964), + [anon_sym_uint] = ACTIONS(5964), + [anon_sym_float] = ACTIONS(5964), + [anon_sym_range] = ACTIONS(5964), + [anon_sym_i8] = ACTIONS(5964), + [anon_sym_i16] = ACTIONS(5964), + [anon_sym_i32] = ACTIONS(5964), + [anon_sym_i64] = ACTIONS(5964), + [anon_sym_u8] = ACTIONS(5964), + [anon_sym_u16] = ACTIONS(5964), + [anon_sym_u32] = ACTIONS(5964), + [anon_sym_u64] = ACTIONS(5964), + [anon_sym_isize] = ACTIONS(5964), + [anon_sym_usize] = ACTIONS(5964), + [anon_sym_f32] = ACTIONS(5964), + [anon_sym_f64] = ACTIONS(5964), + [anon_sym_c_char] = ACTIONS(5964), + [anon_sym_c_schar] = ACTIONS(5964), + [anon_sym_c_uchar] = ACTIONS(5964), + [anon_sym_c_short] = ACTIONS(5964), + [anon_sym_c_ushort] = ACTIONS(5964), + [anon_sym_c_int] = ACTIONS(5964), + [anon_sym_c_uint] = ACTIONS(5964), + [anon_sym_c_long] = ACTIONS(5964), + [anon_sym_c_ulong] = ACTIONS(5964), + [anon_sym_c_longlong] = ACTIONS(5964), + [anon_sym_c_ulonglong] = ACTIONS(5964), + [anon_sym_c_float] = ACTIONS(5964), + [anon_sym_c_double] = ACTIONS(5964), + [anon_sym_c_longdouble] = ACTIONS(5964), + [anon_sym_PLUS_EQ] = ACTIONS(5962), + [anon_sym_DASH_EQ] = ACTIONS(5962), + [anon_sym_STAR_EQ] = ACTIONS(5962), + [anon_sym_SLASH_EQ] = ACTIONS(5962), + [anon_sym_AMP_EQ] = ACTIONS(5962), + [anon_sym_PIPE_EQ] = ACTIONS(5964), + [anon_sym_xor_EQ] = ACTIONS(5962), + [anon_sym_LT_LT_EQ] = ACTIONS(5962), + [anon_sym_GT_GT_EQ] = ACTIONS(5962), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5962), + [anon_sym_return] = ACTIONS(5964), + [anon_sym_yield] = ACTIONS(5964), + [anon_sym_break] = ACTIONS(5964), + [anon_sym_continue] = ACTIONS(5964), + [anon_sym_defer] = ACTIONS(5964), + [anon_sym_errdefer] = ACTIONS(5964), + [anon_sym_if] = ACTIONS(5964), + [anon_sym_else] = ACTIONS(5964), + [anon_sym_while] = ACTIONS(5964), + [anon_sym_expand] = ACTIONS(5964), + [anon_sym_for] = ACTIONS(5964), + [anon_sym_PIPE2] = ACTIONS(5962), + [anon_sym_match] = ACTIONS(5964), + [anon_sym_DOT_DOT] = ACTIONS(5964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_orelse] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5964), + [anon_sym_and] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5962), + [anon_sym_BANG_EQ] = ACTIONS(5962), + [anon_sym_LT] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5962), + [anon_sym_GT] = ACTIONS(5964), + [anon_sym_GT_EQ] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5964), + [anon_sym_xor] = ACTIONS(5964), + [anon_sym_LT_LT] = ACTIONS(5964), + [anon_sym_GT_GT] = ACTIONS(5964), + [anon_sym_LT_LT_PIPE] = ACTIONS(5964), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_SLASH] = ACTIONS(5964), + [anon_sym_catch] = ACTIONS(5964), + [anon_sym_TILDE] = ACTIONS(5962), + [anon_sym_try] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_true] = ACTIONS(5964), + [anon_sym_false] = ACTIONS(5964), + [anon_sym_null] = ACTIONS(5964), + [anon_sym_unreachable] = ACTIONS(5964), + [anon_sym_undefined] = ACTIONS(5964), + [sym_sink] = ACTIONS(5964), + [sym_integer] = ACTIONS(5964), + [sym_float] = ACTIONS(5962), + [anon_sym_DQUOTE] = ACTIONS(5962), + [sym_multiline_string] = ACTIONS(5962), + [sym_character] = ACTIONS(5962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5962), + }, + [STATE(3576)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(6582), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(6586), + [anon_sym_DASH_EQ] = ACTIONS(6586), + [anon_sym_STAR_EQ] = ACTIONS(6586), + [anon_sym_SLASH_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6586), + [anon_sym_PIPE_EQ] = ACTIONS(6586), + [anon_sym_xor_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_EQ] = ACTIONS(6586), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6586), + [anon_sym_return] = ACTIONS(5750), + [anon_sym_yield] = ACTIONS(5750), + [anon_sym_break] = ACTIONS(5750), + [anon_sym_continue] = ACTIONS(5750), + [anon_sym_defer] = ACTIONS(5750), + [anon_sym_errdefer] = ACTIONS(5750), + [anon_sym_if] = ACTIONS(5750), + [anon_sym_while] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_for] = ACTIONS(5750), + [anon_sym_match] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(6588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6590), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(3577)] = { + [sym_identifier] = ACTIONS(4656), + [anon_sym_func] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_DOLLAR] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_QMARK] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_void] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym_type] = ACTIONS(4656), + [anon_sym_anyopaque] = ACTIONS(4656), + [anon_sym_bool] = ACTIONS(4656), + [anon_sym_int] = ACTIONS(4656), + [anon_sym_uint] = ACTIONS(4656), + [anon_sym_float] = ACTIONS(4656), + [anon_sym_range] = ACTIONS(4656), + [anon_sym_i8] = ACTIONS(4656), + [anon_sym_i16] = ACTIONS(4656), + [anon_sym_i32] = ACTIONS(4656), + [anon_sym_i64] = ACTIONS(4656), + [anon_sym_u8] = ACTIONS(4656), + [anon_sym_u16] = ACTIONS(4656), + [anon_sym_u32] = ACTIONS(4656), + [anon_sym_u64] = ACTIONS(4656), + [anon_sym_isize] = ACTIONS(4656), + [anon_sym_usize] = ACTIONS(4656), + [anon_sym_f32] = ACTIONS(4656), + [anon_sym_f64] = ACTIONS(4656), + [anon_sym_c_char] = ACTIONS(4656), + [anon_sym_c_schar] = ACTIONS(4656), + [anon_sym_c_uchar] = ACTIONS(4656), + [anon_sym_c_short] = ACTIONS(4656), + [anon_sym_c_ushort] = ACTIONS(4656), + [anon_sym_c_int] = ACTIONS(4656), + [anon_sym_c_uint] = ACTIONS(4656), + [anon_sym_c_long] = ACTIONS(4656), + [anon_sym_c_ulong] = ACTIONS(4656), + [anon_sym_c_longlong] = ACTIONS(4656), + [anon_sym_c_ulonglong] = ACTIONS(4656), + [anon_sym_c_float] = ACTIONS(4656), + [anon_sym_c_double] = ACTIONS(4656), + [anon_sym_c_longdouble] = ACTIONS(4656), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_AMP_EQ] = ACTIONS(4654), + [anon_sym_PIPE_EQ] = ACTIONS(4656), + [anon_sym_xor_EQ] = ACTIONS(4654), + [anon_sym_LT_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_GT_EQ] = ACTIONS(4654), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4654), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_yield] = ACTIONS(4656), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_continue] = ACTIONS(4656), + [anon_sym_defer] = ACTIONS(4656), + [anon_sym_errdefer] = ACTIONS(4656), + [anon_sym_if] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_expand] = ACTIONS(4656), + [anon_sym_for] = ACTIONS(4656), + [anon_sym_PIPE2] = ACTIONS(4654), + [anon_sym_match] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4656), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4654), + [anon_sym_orelse] = ACTIONS(4656), + [anon_sym_or] = ACTIONS(4656), + [anon_sym_and] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_AMP] = ACTIONS(4656), + [anon_sym_xor] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT_PIPE] = ACTIONS(4656), + [anon_sym_PLUS] = ACTIONS(4656), + [anon_sym_SLASH] = ACTIONS(4656), + [anon_sym_catch] = ACTIONS(4656), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_try] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4656), + [anon_sym_false] = ACTIONS(4656), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_unreachable] = ACTIONS(4656), + [anon_sym_undefined] = ACTIONS(4656), + [sym_sink] = ACTIONS(4656), + [sym_integer] = ACTIONS(4656), + [sym_float] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym_multiline_string] = ACTIONS(4654), + [sym_character] = ACTIONS(4654), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4654), + }, + [STATE(3578)] = { + [sym_identifier] = ACTIONS(4660), + [anon_sym_func] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4658), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_DOLLAR] = ACTIONS(4658), + [anon_sym_PIPE] = ACTIONS(4660), + [anon_sym_QMARK] = ACTIONS(4658), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_void] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym_type] = ACTIONS(4660), + [anon_sym_anyopaque] = ACTIONS(4660), + [anon_sym_bool] = ACTIONS(4660), + [anon_sym_int] = ACTIONS(4660), + [anon_sym_uint] = ACTIONS(4660), + [anon_sym_float] = ACTIONS(4660), + [anon_sym_range] = ACTIONS(4660), + [anon_sym_i8] = ACTIONS(4660), + [anon_sym_i16] = ACTIONS(4660), + [anon_sym_i32] = ACTIONS(4660), + [anon_sym_i64] = ACTIONS(4660), + [anon_sym_u8] = ACTIONS(4660), + [anon_sym_u16] = ACTIONS(4660), + [anon_sym_u32] = ACTIONS(4660), + [anon_sym_u64] = ACTIONS(4660), + [anon_sym_isize] = ACTIONS(4660), + [anon_sym_usize] = ACTIONS(4660), + [anon_sym_f32] = ACTIONS(4660), + [anon_sym_f64] = ACTIONS(4660), + [anon_sym_c_char] = ACTIONS(4660), + [anon_sym_c_schar] = ACTIONS(4660), + [anon_sym_c_uchar] = ACTIONS(4660), + [anon_sym_c_short] = ACTIONS(4660), + [anon_sym_c_ushort] = ACTIONS(4660), + [anon_sym_c_int] = ACTIONS(4660), + [anon_sym_c_uint] = ACTIONS(4660), + [anon_sym_c_long] = ACTIONS(4660), + [anon_sym_c_ulong] = ACTIONS(4660), + [anon_sym_c_longlong] = ACTIONS(4660), + [anon_sym_c_ulonglong] = ACTIONS(4660), + [anon_sym_c_float] = ACTIONS(4660), + [anon_sym_c_double] = ACTIONS(4660), + [anon_sym_c_longdouble] = ACTIONS(4660), + [anon_sym_PLUS_EQ] = ACTIONS(4658), + [anon_sym_DASH_EQ] = ACTIONS(4658), + [anon_sym_STAR_EQ] = ACTIONS(4658), + [anon_sym_SLASH_EQ] = ACTIONS(4658), + [anon_sym_AMP_EQ] = ACTIONS(4658), + [anon_sym_PIPE_EQ] = ACTIONS(4660), + [anon_sym_xor_EQ] = ACTIONS(4658), + [anon_sym_LT_LT_EQ] = ACTIONS(4658), + [anon_sym_GT_GT_EQ] = ACTIONS(4658), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4658), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_defer] = ACTIONS(4660), + [anon_sym_errdefer] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_expand] = ACTIONS(4660), + [anon_sym_for] = ACTIONS(4660), + [anon_sym_PIPE2] = ACTIONS(4658), + [anon_sym_match] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4658), + [anon_sym_orelse] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_EQ_EQ] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(4658), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4658), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4658), + [anon_sym_AMP] = ACTIONS(4660), + [anon_sym_xor] = ACTIONS(4660), + [anon_sym_LT_LT] = ACTIONS(4660), + [anon_sym_GT_GT] = ACTIONS(4660), + [anon_sym_LT_LT_PIPE] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_catch] = ACTIONS(4660), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_CARET] = ACTIONS(4658), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_unreachable] = ACTIONS(4660), + [anon_sym_undefined] = ACTIONS(4660), + [sym_sink] = ACTIONS(4660), + [sym_integer] = ACTIONS(4660), + [sym_float] = ACTIONS(4658), + [anon_sym_DQUOTE] = ACTIONS(4658), + [sym_multiline_string] = ACTIONS(4658), + [sym_character] = ACTIONS(4658), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4658), + }, + [STATE(3579)] = { + [sym_identifier] = ACTIONS(4668), + [anon_sym_func] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4668), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_LPAREN] = ACTIONS(4666), + [anon_sym_LBRACE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4668), + [anon_sym_DOLLAR] = ACTIONS(4666), + [anon_sym_PIPE] = ACTIONS(4668), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_STAR] = ACTIONS(4668), + [anon_sym_LBRACK] = ACTIONS(4666), + [anon_sym_void] = ACTIONS(4668), + [anon_sym_noreturn] = ACTIONS(4668), + [anon_sym_type] = ACTIONS(4668), + [anon_sym_anyopaque] = ACTIONS(4668), + [anon_sym_bool] = ACTIONS(4668), + [anon_sym_int] = ACTIONS(4668), + [anon_sym_uint] = ACTIONS(4668), + [anon_sym_float] = ACTIONS(4668), + [anon_sym_range] = ACTIONS(4668), + [anon_sym_i8] = ACTIONS(4668), + [anon_sym_i16] = ACTIONS(4668), + [anon_sym_i32] = ACTIONS(4668), + [anon_sym_i64] = ACTIONS(4668), + [anon_sym_u8] = ACTIONS(4668), + [anon_sym_u16] = ACTIONS(4668), + [anon_sym_u32] = ACTIONS(4668), + [anon_sym_u64] = ACTIONS(4668), + [anon_sym_isize] = ACTIONS(4668), + [anon_sym_usize] = ACTIONS(4668), + [anon_sym_f32] = ACTIONS(4668), + [anon_sym_f64] = ACTIONS(4668), + [anon_sym_c_char] = ACTIONS(4668), + [anon_sym_c_schar] = ACTIONS(4668), + [anon_sym_c_uchar] = ACTIONS(4668), + [anon_sym_c_short] = ACTIONS(4668), + [anon_sym_c_ushort] = ACTIONS(4668), + [anon_sym_c_int] = ACTIONS(4668), + [anon_sym_c_uint] = ACTIONS(4668), + [anon_sym_c_long] = ACTIONS(4668), + [anon_sym_c_ulong] = ACTIONS(4668), + [anon_sym_c_longlong] = ACTIONS(4668), + [anon_sym_c_ulonglong] = ACTIONS(4668), + [anon_sym_c_float] = ACTIONS(4668), + [anon_sym_c_double] = ACTIONS(4668), + [anon_sym_c_longdouble] = ACTIONS(4668), + [anon_sym_PLUS_EQ] = ACTIONS(4666), + [anon_sym_DASH_EQ] = ACTIONS(4666), + [anon_sym_STAR_EQ] = ACTIONS(4666), + [anon_sym_SLASH_EQ] = ACTIONS(4666), + [anon_sym_AMP_EQ] = ACTIONS(4666), + [anon_sym_PIPE_EQ] = ACTIONS(4668), + [anon_sym_xor_EQ] = ACTIONS(4666), + [anon_sym_LT_LT_EQ] = ACTIONS(4666), + [anon_sym_GT_GT_EQ] = ACTIONS(4666), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4666), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_yield] = ACTIONS(4668), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_continue] = ACTIONS(4668), + [anon_sym_defer] = ACTIONS(4668), + [anon_sym_errdefer] = ACTIONS(4668), + [anon_sym_if] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_while] = ACTIONS(4668), + [anon_sym_expand] = ACTIONS(4668), + [anon_sym_for] = ACTIONS(4668), + [anon_sym_PIPE2] = ACTIONS(4666), + [anon_sym_match] = ACTIONS(4668), + [anon_sym_DOT_DOT] = ACTIONS(4668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4666), + [anon_sym_orelse] = ACTIONS(4668), + [anon_sym_or] = ACTIONS(4668), + [anon_sym_and] = ACTIONS(4668), + [anon_sym_EQ_EQ] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(4666), + [anon_sym_LT] = ACTIONS(4668), + [anon_sym_LT_EQ] = ACTIONS(4666), + [anon_sym_GT] = ACTIONS(4668), + [anon_sym_GT_EQ] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4668), + [anon_sym_xor] = ACTIONS(4668), + [anon_sym_LT_LT] = ACTIONS(4668), + [anon_sym_GT_GT] = ACTIONS(4668), + [anon_sym_LT_LT_PIPE] = ACTIONS(4668), + [anon_sym_PLUS] = ACTIONS(4668), + [anon_sym_SLASH] = ACTIONS(4668), + [anon_sym_catch] = ACTIONS(4668), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_try] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_CARET] = ACTIONS(4666), + [anon_sym_true] = ACTIONS(4668), + [anon_sym_false] = ACTIONS(4668), + [anon_sym_null] = ACTIONS(4668), + [anon_sym_unreachable] = ACTIONS(4668), + [anon_sym_undefined] = ACTIONS(4668), + [sym_sink] = ACTIONS(4668), + [sym_integer] = ACTIONS(4668), + [sym_float] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(4666), + [sym_multiline_string] = ACTIONS(4666), + [sym_character] = ACTIONS(4666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4666), + }, + [STATE(3580)] = { + [sym_identifier] = ACTIONS(5970), + [anon_sym_func] = ACTIONS(5970), + [anon_sym_BANG] = ACTIONS(5970), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_struct] = ACTIONS(5970), + [anon_sym_LPAREN] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_DOLLAR] = ACTIONS(5968), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5970), + [anon_sym_LBRACK] = ACTIONS(5968), + [anon_sym_void] = ACTIONS(5970), + [anon_sym_noreturn] = ACTIONS(5970), + [anon_sym_type] = ACTIONS(5970), + [anon_sym_anyopaque] = ACTIONS(5970), + [anon_sym_bool] = ACTIONS(5970), + [anon_sym_int] = ACTIONS(5970), + [anon_sym_uint] = ACTIONS(5970), + [anon_sym_float] = ACTIONS(5970), + [anon_sym_range] = ACTIONS(5970), + [anon_sym_i8] = ACTIONS(5970), + [anon_sym_i16] = ACTIONS(5970), + [anon_sym_i32] = ACTIONS(5970), + [anon_sym_i64] = ACTIONS(5970), + [anon_sym_u8] = ACTIONS(5970), + [anon_sym_u16] = ACTIONS(5970), + [anon_sym_u32] = ACTIONS(5970), + [anon_sym_u64] = ACTIONS(5970), + [anon_sym_isize] = ACTIONS(5970), + [anon_sym_usize] = ACTIONS(5970), + [anon_sym_f32] = ACTIONS(5970), + [anon_sym_f64] = ACTIONS(5970), + [anon_sym_c_char] = ACTIONS(5970), + [anon_sym_c_schar] = ACTIONS(5970), + [anon_sym_c_uchar] = ACTIONS(5970), + [anon_sym_c_short] = ACTIONS(5970), + [anon_sym_c_ushort] = ACTIONS(5970), + [anon_sym_c_int] = ACTIONS(5970), + [anon_sym_c_uint] = ACTIONS(5970), + [anon_sym_c_long] = ACTIONS(5970), + [anon_sym_c_ulong] = ACTIONS(5970), + [anon_sym_c_longlong] = ACTIONS(5970), + [anon_sym_c_ulonglong] = ACTIONS(5970), + [anon_sym_c_float] = ACTIONS(5970), + [anon_sym_c_double] = ACTIONS(5970), + [anon_sym_c_longdouble] = ACTIONS(5970), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5970), + [anon_sym_xor_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5968), + [anon_sym_return] = ACTIONS(5970), + [anon_sym_yield] = ACTIONS(5970), + [anon_sym_break] = ACTIONS(5970), + [anon_sym_continue] = ACTIONS(5970), + [anon_sym_defer] = ACTIONS(5970), + [anon_sym_errdefer] = ACTIONS(5970), + [anon_sym_if] = ACTIONS(5970), + [anon_sym_else] = ACTIONS(5970), + [anon_sym_while] = ACTIONS(5970), + [anon_sym_expand] = ACTIONS(5970), + [anon_sym_for] = ACTIONS(5970), + [anon_sym_PIPE2] = ACTIONS(5968), + [anon_sym_match] = ACTIONS(5970), + [anon_sym_DOT_DOT] = ACTIONS(5970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5968), + [anon_sym_orelse] = ACTIONS(5970), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_LT_LT_PIPE] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_catch] = ACTIONS(5970), + [anon_sym_TILDE] = ACTIONS(5968), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_true] = ACTIONS(5970), + [anon_sym_false] = ACTIONS(5970), + [anon_sym_null] = ACTIONS(5970), + [anon_sym_unreachable] = ACTIONS(5970), + [anon_sym_undefined] = ACTIONS(5970), + [sym_sink] = ACTIONS(5970), + [sym_integer] = ACTIONS(5970), + [sym_float] = ACTIONS(5968), + [anon_sym_DQUOTE] = ACTIONS(5968), + [sym_multiline_string] = ACTIONS(5968), + [sym_character] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5968), + }, + [STATE(3581)] = { + [sym_identifier] = ACTIONS(4672), + [anon_sym_func] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_struct] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_DOLLAR] = ACTIONS(4670), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_QMARK] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_void] = ACTIONS(4672), + [anon_sym_noreturn] = ACTIONS(4672), + [anon_sym_type] = ACTIONS(4672), + [anon_sym_anyopaque] = ACTIONS(4672), + [anon_sym_bool] = ACTIONS(4672), + [anon_sym_int] = ACTIONS(4672), + [anon_sym_uint] = ACTIONS(4672), + [anon_sym_float] = ACTIONS(4672), + [anon_sym_range] = ACTIONS(4672), + [anon_sym_i8] = ACTIONS(4672), + [anon_sym_i16] = ACTIONS(4672), + [anon_sym_i32] = ACTIONS(4672), + [anon_sym_i64] = ACTIONS(4672), + [anon_sym_u8] = ACTIONS(4672), + [anon_sym_u16] = ACTIONS(4672), + [anon_sym_u32] = ACTIONS(4672), + [anon_sym_u64] = ACTIONS(4672), + [anon_sym_isize] = ACTIONS(4672), + [anon_sym_usize] = ACTIONS(4672), + [anon_sym_f32] = ACTIONS(4672), + [anon_sym_f64] = ACTIONS(4672), + [anon_sym_c_char] = ACTIONS(4672), + [anon_sym_c_schar] = ACTIONS(4672), + [anon_sym_c_uchar] = ACTIONS(4672), + [anon_sym_c_short] = ACTIONS(4672), + [anon_sym_c_ushort] = ACTIONS(4672), + [anon_sym_c_int] = ACTIONS(4672), + [anon_sym_c_uint] = ACTIONS(4672), + [anon_sym_c_long] = ACTIONS(4672), + [anon_sym_c_ulong] = ACTIONS(4672), + [anon_sym_c_longlong] = ACTIONS(4672), + [anon_sym_c_ulonglong] = ACTIONS(4672), + [anon_sym_c_float] = ACTIONS(4672), + [anon_sym_c_double] = ACTIONS(4672), + [anon_sym_c_longdouble] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_AMP_EQ] = ACTIONS(4670), + [anon_sym_PIPE_EQ] = ACTIONS(4672), + [anon_sym_xor_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_GT_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_yield] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_defer] = ACTIONS(4672), + [anon_sym_errdefer] = ACTIONS(4672), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_expand] = ACTIONS(4672), + [anon_sym_for] = ACTIONS(4672), + [anon_sym_PIPE2] = ACTIONS(4670), + [anon_sym_match] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4670), + [anon_sym_orelse] = ACTIONS(4672), + [anon_sym_or] = ACTIONS(4672), + [anon_sym_and] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_AMP] = ACTIONS(4672), + [anon_sym_xor] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [anon_sym_LT_LT_PIPE] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_catch] = ACTIONS(4672), + [anon_sym_TILDE] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4670), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4672), + [anon_sym_unreachable] = ACTIONS(4672), + [anon_sym_undefined] = ACTIONS(4672), + [sym_sink] = ACTIONS(4672), + [sym_integer] = ACTIONS(4672), + [sym_float] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(4670), + [sym_multiline_string] = ACTIONS(4670), + [sym_character] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4670), + }, + [STATE(3582)] = { + [sym_identifier] = ACTIONS(5974), + [anon_sym_func] = ACTIONS(5974), + [anon_sym_BANG] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_struct] = ACTIONS(5974), + [anon_sym_LPAREN] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_DOLLAR] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5974), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_void] = ACTIONS(5974), + [anon_sym_noreturn] = ACTIONS(5974), + [anon_sym_type] = ACTIONS(5974), + [anon_sym_anyopaque] = ACTIONS(5974), + [anon_sym_bool] = ACTIONS(5974), + [anon_sym_int] = ACTIONS(5974), + [anon_sym_uint] = ACTIONS(5974), + [anon_sym_float] = ACTIONS(5974), + [anon_sym_range] = ACTIONS(5974), + [anon_sym_i8] = ACTIONS(5974), + [anon_sym_i16] = ACTIONS(5974), + [anon_sym_i32] = ACTIONS(5974), + [anon_sym_i64] = ACTIONS(5974), + [anon_sym_u8] = ACTIONS(5974), + [anon_sym_u16] = ACTIONS(5974), + [anon_sym_u32] = ACTIONS(5974), + [anon_sym_u64] = ACTIONS(5974), + [anon_sym_isize] = ACTIONS(5974), + [anon_sym_usize] = ACTIONS(5974), + [anon_sym_f32] = ACTIONS(5974), + [anon_sym_f64] = ACTIONS(5974), + [anon_sym_c_char] = ACTIONS(5974), + [anon_sym_c_schar] = ACTIONS(5974), + [anon_sym_c_uchar] = ACTIONS(5974), + [anon_sym_c_short] = ACTIONS(5974), + [anon_sym_c_ushort] = ACTIONS(5974), + [anon_sym_c_int] = ACTIONS(5974), + [anon_sym_c_uint] = ACTIONS(5974), + [anon_sym_c_long] = ACTIONS(5974), + [anon_sym_c_ulong] = ACTIONS(5974), + [anon_sym_c_longlong] = ACTIONS(5974), + [anon_sym_c_ulonglong] = ACTIONS(5974), + [anon_sym_c_float] = ACTIONS(5974), + [anon_sym_c_double] = ACTIONS(5974), + [anon_sym_c_longdouble] = ACTIONS(5974), + [anon_sym_PLUS_EQ] = ACTIONS(5972), + [anon_sym_DASH_EQ] = ACTIONS(5972), + [anon_sym_STAR_EQ] = ACTIONS(5972), + [anon_sym_SLASH_EQ] = ACTIONS(5972), + [anon_sym_AMP_EQ] = ACTIONS(5972), + [anon_sym_PIPE_EQ] = ACTIONS(5974), + [anon_sym_xor_EQ] = ACTIONS(5972), + [anon_sym_LT_LT_EQ] = ACTIONS(5972), + [anon_sym_GT_GT_EQ] = ACTIONS(5972), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5972), + [anon_sym_return] = ACTIONS(5974), + [anon_sym_yield] = ACTIONS(5974), + [anon_sym_break] = ACTIONS(5974), + [anon_sym_continue] = ACTIONS(5974), + [anon_sym_defer] = ACTIONS(5974), + [anon_sym_errdefer] = ACTIONS(5974), + [anon_sym_if] = ACTIONS(5974), + [anon_sym_else] = ACTIONS(5974), + [anon_sym_while] = ACTIONS(5974), + [anon_sym_expand] = ACTIONS(5974), + [anon_sym_for] = ACTIONS(5974), + [anon_sym_PIPE2] = ACTIONS(5972), + [anon_sym_match] = ACTIONS(5974), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5972), + [anon_sym_orelse] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5974), + [anon_sym_and] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_AMP] = ACTIONS(5974), + [anon_sym_xor] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym_LT_LT_PIPE] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5974), + [anon_sym_catch] = ACTIONS(5974), + [anon_sym_TILDE] = ACTIONS(5972), + [anon_sym_try] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5972), + [anon_sym_true] = ACTIONS(5974), + [anon_sym_false] = ACTIONS(5974), + [anon_sym_null] = ACTIONS(5974), + [anon_sym_unreachable] = ACTIONS(5974), + [anon_sym_undefined] = ACTIONS(5974), + [sym_sink] = ACTIONS(5974), + [sym_integer] = ACTIONS(5974), + [sym_float] = ACTIONS(5972), + [anon_sym_DQUOTE] = ACTIONS(5972), + [sym_multiline_string] = ACTIONS(5972), + [sym_character] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5972), + }, + [STATE(3583)] = { + [sym_identifier] = ACTIONS(4678), + [anon_sym_func] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_struct] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_DOLLAR] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4678), + [anon_sym_QMARK] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_void] = ACTIONS(4678), + [anon_sym_noreturn] = ACTIONS(4678), + [anon_sym_type] = ACTIONS(4678), + [anon_sym_anyopaque] = ACTIONS(4678), + [anon_sym_bool] = ACTIONS(4678), + [anon_sym_int] = ACTIONS(4678), + [anon_sym_uint] = ACTIONS(4678), + [anon_sym_float] = ACTIONS(4678), + [anon_sym_range] = ACTIONS(4678), + [anon_sym_i8] = ACTIONS(4678), + [anon_sym_i16] = ACTIONS(4678), + [anon_sym_i32] = ACTIONS(4678), + [anon_sym_i64] = ACTIONS(4678), + [anon_sym_u8] = ACTIONS(4678), + [anon_sym_u16] = ACTIONS(4678), + [anon_sym_u32] = ACTIONS(4678), + [anon_sym_u64] = ACTIONS(4678), + [anon_sym_isize] = ACTIONS(4678), + [anon_sym_usize] = ACTIONS(4678), + [anon_sym_f32] = ACTIONS(4678), + [anon_sym_f64] = ACTIONS(4678), + [anon_sym_c_char] = ACTIONS(4678), + [anon_sym_c_schar] = ACTIONS(4678), + [anon_sym_c_uchar] = ACTIONS(4678), + [anon_sym_c_short] = ACTIONS(4678), + [anon_sym_c_ushort] = ACTIONS(4678), + [anon_sym_c_int] = ACTIONS(4678), + [anon_sym_c_uint] = ACTIONS(4678), + [anon_sym_c_long] = ACTIONS(4678), + [anon_sym_c_ulong] = ACTIONS(4678), + [anon_sym_c_longlong] = ACTIONS(4678), + [anon_sym_c_ulonglong] = ACTIONS(4678), + [anon_sym_c_float] = ACTIONS(4678), + [anon_sym_c_double] = ACTIONS(4678), + [anon_sym_c_longdouble] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_AMP_EQ] = ACTIONS(4676), + [anon_sym_PIPE_EQ] = ACTIONS(4678), + [anon_sym_xor_EQ] = ACTIONS(4676), + [anon_sym_LT_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_GT_EQ] = ACTIONS(4676), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_yield] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_defer] = ACTIONS(4678), + [anon_sym_errdefer] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_while] = ACTIONS(4678), + [anon_sym_expand] = ACTIONS(4678), + [anon_sym_for] = ACTIONS(4678), + [anon_sym_PIPE2] = ACTIONS(4676), + [anon_sym_match] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4676), + [anon_sym_orelse] = ACTIONS(4678), + [anon_sym_or] = ACTIONS(4678), + [anon_sym_and] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4678), + [anon_sym_xor] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT_PIPE] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_catch] = ACTIONS(4678), + [anon_sym_TILDE] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_unreachable] = ACTIONS(4678), + [anon_sym_undefined] = ACTIONS(4678), + [sym_sink] = ACTIONS(4678), + [sym_integer] = ACTIONS(4678), + [sym_float] = ACTIONS(4676), + [anon_sym_DQUOTE] = ACTIONS(4676), + [sym_multiline_string] = ACTIONS(4676), + [sym_character] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4676), + }, + [STATE(3584)] = { + [sym_identifier] = ACTIONS(4682), + [anon_sym_func] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_struct] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_DOLLAR] = ACTIONS(4680), + [anon_sym_PIPE] = ACTIONS(4682), + [anon_sym_QMARK] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_void] = ACTIONS(4682), + [anon_sym_noreturn] = ACTIONS(4682), + [anon_sym_type] = ACTIONS(4682), + [anon_sym_anyopaque] = ACTIONS(4682), + [anon_sym_bool] = ACTIONS(4682), + [anon_sym_int] = ACTIONS(4682), + [anon_sym_uint] = ACTIONS(4682), + [anon_sym_float] = ACTIONS(4682), + [anon_sym_range] = ACTIONS(4682), + [anon_sym_i8] = ACTIONS(4682), + [anon_sym_i16] = ACTIONS(4682), + [anon_sym_i32] = ACTIONS(4682), + [anon_sym_i64] = ACTIONS(4682), + [anon_sym_u8] = ACTIONS(4682), + [anon_sym_u16] = ACTIONS(4682), + [anon_sym_u32] = ACTIONS(4682), + [anon_sym_u64] = ACTIONS(4682), + [anon_sym_isize] = ACTIONS(4682), + [anon_sym_usize] = ACTIONS(4682), + [anon_sym_f32] = ACTIONS(4682), + [anon_sym_f64] = ACTIONS(4682), + [anon_sym_c_char] = ACTIONS(4682), + [anon_sym_c_schar] = ACTIONS(4682), + [anon_sym_c_uchar] = ACTIONS(4682), + [anon_sym_c_short] = ACTIONS(4682), + [anon_sym_c_ushort] = ACTIONS(4682), + [anon_sym_c_int] = ACTIONS(4682), + [anon_sym_c_uint] = ACTIONS(4682), + [anon_sym_c_long] = ACTIONS(4682), + [anon_sym_c_ulong] = ACTIONS(4682), + [anon_sym_c_longlong] = ACTIONS(4682), + [anon_sym_c_ulonglong] = ACTIONS(4682), + [anon_sym_c_float] = ACTIONS(4682), + [anon_sym_c_double] = ACTIONS(4682), + [anon_sym_c_longdouble] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4680), + [anon_sym_DASH_EQ] = ACTIONS(4680), + [anon_sym_STAR_EQ] = ACTIONS(4680), + [anon_sym_SLASH_EQ] = ACTIONS(4680), + [anon_sym_AMP_EQ] = ACTIONS(4680), + [anon_sym_PIPE_EQ] = ACTIONS(4682), + [anon_sym_xor_EQ] = ACTIONS(4680), + [anon_sym_LT_LT_EQ] = ACTIONS(4680), + [anon_sym_GT_GT_EQ] = ACTIONS(4680), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_yield] = ACTIONS(4682), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_defer] = ACTIONS(4682), + [anon_sym_errdefer] = ACTIONS(4682), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_while] = ACTIONS(4682), + [anon_sym_expand] = ACTIONS(4682), + [anon_sym_for] = ACTIONS(4682), + [anon_sym_PIPE2] = ACTIONS(4680), + [anon_sym_match] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4680), + [anon_sym_orelse] = ACTIONS(4682), + [anon_sym_or] = ACTIONS(4682), + [anon_sym_and] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4680), + [anon_sym_AMP] = ACTIONS(4682), + [anon_sym_xor] = ACTIONS(4682), + [anon_sym_LT_LT] = ACTIONS(4682), + [anon_sym_GT_GT] = ACTIONS(4682), + [anon_sym_LT_LT_PIPE] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_catch] = ACTIONS(4682), + [anon_sym_TILDE] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_CARET] = ACTIONS(4680), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(4682), + [anon_sym_unreachable] = ACTIONS(4682), + [anon_sym_undefined] = ACTIONS(4682), + [sym_sink] = ACTIONS(4682), + [sym_integer] = ACTIONS(4682), + [sym_float] = ACTIONS(4680), + [anon_sym_DQUOTE] = ACTIONS(4680), + [sym_multiline_string] = ACTIONS(4680), + [sym_character] = ACTIONS(4680), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4680), + }, + [STATE(3585)] = { + [sym_identifier] = ACTIONS(4686), + [anon_sym_func] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_struct] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_DOLLAR] = ACTIONS(4684), + [anon_sym_PIPE] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_void] = ACTIONS(4686), + [anon_sym_noreturn] = ACTIONS(4686), + [anon_sym_type] = ACTIONS(4686), + [anon_sym_anyopaque] = ACTIONS(4686), + [anon_sym_bool] = ACTIONS(4686), + [anon_sym_int] = ACTIONS(4686), + [anon_sym_uint] = ACTIONS(4686), + [anon_sym_float] = ACTIONS(4686), + [anon_sym_range] = ACTIONS(4686), + [anon_sym_i8] = ACTIONS(4686), + [anon_sym_i16] = ACTIONS(4686), + [anon_sym_i32] = ACTIONS(4686), + [anon_sym_i64] = ACTIONS(4686), + [anon_sym_u8] = ACTIONS(4686), + [anon_sym_u16] = ACTIONS(4686), + [anon_sym_u32] = ACTIONS(4686), + [anon_sym_u64] = ACTIONS(4686), + [anon_sym_isize] = ACTIONS(4686), + [anon_sym_usize] = ACTIONS(4686), + [anon_sym_f32] = ACTIONS(4686), + [anon_sym_f64] = ACTIONS(4686), + [anon_sym_c_char] = ACTIONS(4686), + [anon_sym_c_schar] = ACTIONS(4686), + [anon_sym_c_uchar] = ACTIONS(4686), + [anon_sym_c_short] = ACTIONS(4686), + [anon_sym_c_ushort] = ACTIONS(4686), + [anon_sym_c_int] = ACTIONS(4686), + [anon_sym_c_uint] = ACTIONS(4686), + [anon_sym_c_long] = ACTIONS(4686), + [anon_sym_c_ulong] = ACTIONS(4686), + [anon_sym_c_longlong] = ACTIONS(4686), + [anon_sym_c_ulonglong] = ACTIONS(4686), + [anon_sym_c_float] = ACTIONS(4686), + [anon_sym_c_double] = ACTIONS(4686), + [anon_sym_c_longdouble] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_AMP_EQ] = ACTIONS(4684), + [anon_sym_PIPE_EQ] = ACTIONS(4686), + [anon_sym_xor_EQ] = ACTIONS(4684), + [anon_sym_LT_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_GT_EQ] = ACTIONS(4684), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4686), + [anon_sym_yield] = ACTIONS(4686), + [anon_sym_break] = ACTIONS(4686), + [anon_sym_continue] = ACTIONS(4686), + [anon_sym_defer] = ACTIONS(4686), + [anon_sym_errdefer] = ACTIONS(4686), + [anon_sym_if] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_while] = ACTIONS(4686), + [anon_sym_expand] = ACTIONS(4686), + [anon_sym_for] = ACTIONS(4686), + [anon_sym_PIPE2] = ACTIONS(4684), + [anon_sym_match] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4684), + [anon_sym_orelse] = ACTIONS(4686), + [anon_sym_or] = ACTIONS(4686), + [anon_sym_and] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_AMP] = ACTIONS(4686), + [anon_sym_xor] = ACTIONS(4686), + [anon_sym_LT_LT] = ACTIONS(4686), + [anon_sym_GT_GT] = ACTIONS(4686), + [anon_sym_LT_LT_PIPE] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_catch] = ACTIONS(4686), + [anon_sym_TILDE] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_CARET] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4686), + [anon_sym_false] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4686), + [anon_sym_unreachable] = ACTIONS(4686), + [anon_sym_undefined] = ACTIONS(4686), + [sym_sink] = ACTIONS(4686), + [sym_integer] = ACTIONS(4686), + [sym_float] = ACTIONS(4684), + [anon_sym_DQUOTE] = ACTIONS(4684), + [sym_multiline_string] = ACTIONS(4684), + [sym_character] = ACTIONS(4684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4684), + }, + [STATE(3586)] = { + [sym_identifier] = ACTIONS(4690), + [anon_sym_func] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_struct] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_DOLLAR] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_void] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym_type] = ACTIONS(4690), + [anon_sym_anyopaque] = ACTIONS(4690), + [anon_sym_bool] = ACTIONS(4690), + [anon_sym_int] = ACTIONS(4690), + [anon_sym_uint] = ACTIONS(4690), + [anon_sym_float] = ACTIONS(4690), + [anon_sym_range] = ACTIONS(4690), + [anon_sym_i8] = ACTIONS(4690), + [anon_sym_i16] = ACTIONS(4690), + [anon_sym_i32] = ACTIONS(4690), + [anon_sym_i64] = ACTIONS(4690), + [anon_sym_u8] = ACTIONS(4690), + [anon_sym_u16] = ACTIONS(4690), + [anon_sym_u32] = ACTIONS(4690), + [anon_sym_u64] = ACTIONS(4690), + [anon_sym_isize] = ACTIONS(4690), + [anon_sym_usize] = ACTIONS(4690), + [anon_sym_f32] = ACTIONS(4690), + [anon_sym_f64] = ACTIONS(4690), + [anon_sym_c_char] = ACTIONS(4690), + [anon_sym_c_schar] = ACTIONS(4690), + [anon_sym_c_uchar] = ACTIONS(4690), + [anon_sym_c_short] = ACTIONS(4690), + [anon_sym_c_ushort] = ACTIONS(4690), + [anon_sym_c_int] = ACTIONS(4690), + [anon_sym_c_uint] = ACTIONS(4690), + [anon_sym_c_long] = ACTIONS(4690), + [anon_sym_c_ulong] = ACTIONS(4690), + [anon_sym_c_longlong] = ACTIONS(4690), + [anon_sym_c_ulonglong] = ACTIONS(4690), + [anon_sym_c_float] = ACTIONS(4690), + [anon_sym_c_double] = ACTIONS(4690), + [anon_sym_c_longdouble] = ACTIONS(4690), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_AMP_EQ] = ACTIONS(4688), + [anon_sym_PIPE_EQ] = ACTIONS(4690), + [anon_sym_xor_EQ] = ACTIONS(4688), + [anon_sym_LT_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_GT_EQ] = ACTIONS(4688), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4688), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_yield] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_defer] = ACTIONS(4690), + [anon_sym_errdefer] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_expand] = ACTIONS(4690), + [anon_sym_for] = ACTIONS(4690), + [anon_sym_PIPE2] = ACTIONS(4688), + [anon_sym_match] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4688), + [anon_sym_orelse] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4690), + [anon_sym_and] = ACTIONS(4690), + [anon_sym_EQ_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4690), + [anon_sym_xor] = ACTIONS(4690), + [anon_sym_LT_LT] = ACTIONS(4690), + [anon_sym_GT_GT] = ACTIONS(4690), + [anon_sym_LT_LT_PIPE] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_catch] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4688), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_unreachable] = ACTIONS(4690), + [anon_sym_undefined] = ACTIONS(4690), + [sym_sink] = ACTIONS(4690), + [sym_integer] = ACTIONS(4690), + [sym_float] = ACTIONS(4688), + [anon_sym_DQUOTE] = ACTIONS(4688), + [sym_multiline_string] = ACTIONS(4688), + [sym_character] = ACTIONS(4688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4688), + }, + [STATE(3587)] = { + [sym_identifier] = ACTIONS(4694), + [anon_sym_func] = ACTIONS(4694), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_DOLLAR] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4694), + [anon_sym_QMARK] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_void] = ACTIONS(4694), + [anon_sym_noreturn] = ACTIONS(4694), + [anon_sym_type] = ACTIONS(4694), + [anon_sym_anyopaque] = ACTIONS(4694), + [anon_sym_bool] = ACTIONS(4694), + [anon_sym_int] = ACTIONS(4694), + [anon_sym_uint] = ACTIONS(4694), + [anon_sym_float] = ACTIONS(4694), + [anon_sym_range] = ACTIONS(4694), + [anon_sym_i8] = ACTIONS(4694), + [anon_sym_i16] = ACTIONS(4694), + [anon_sym_i32] = ACTIONS(4694), + [anon_sym_i64] = ACTIONS(4694), + [anon_sym_u8] = ACTIONS(4694), + [anon_sym_u16] = ACTIONS(4694), + [anon_sym_u32] = ACTIONS(4694), + [anon_sym_u64] = ACTIONS(4694), + [anon_sym_isize] = ACTIONS(4694), + [anon_sym_usize] = ACTIONS(4694), + [anon_sym_f32] = ACTIONS(4694), + [anon_sym_f64] = ACTIONS(4694), + [anon_sym_c_char] = ACTIONS(4694), + [anon_sym_c_schar] = ACTIONS(4694), + [anon_sym_c_uchar] = ACTIONS(4694), + [anon_sym_c_short] = ACTIONS(4694), + [anon_sym_c_ushort] = ACTIONS(4694), + [anon_sym_c_int] = ACTIONS(4694), + [anon_sym_c_uint] = ACTIONS(4694), + [anon_sym_c_long] = ACTIONS(4694), + [anon_sym_c_ulong] = ACTIONS(4694), + [anon_sym_c_longlong] = ACTIONS(4694), + [anon_sym_c_ulonglong] = ACTIONS(4694), + [anon_sym_c_float] = ACTIONS(4694), + [anon_sym_c_double] = ACTIONS(4694), + [anon_sym_c_longdouble] = ACTIONS(4694), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_AMP_EQ] = ACTIONS(4692), + [anon_sym_PIPE_EQ] = ACTIONS(4694), + [anon_sym_xor_EQ] = ACTIONS(4692), + [anon_sym_LT_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_GT_EQ] = ACTIONS(4692), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4692), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_yield] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_defer] = ACTIONS(4694), + [anon_sym_errdefer] = ACTIONS(4694), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_while] = ACTIONS(4694), + [anon_sym_expand] = ACTIONS(4694), + [anon_sym_for] = ACTIONS(4694), + [anon_sym_PIPE2] = ACTIONS(4692), + [anon_sym_match] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4692), + [anon_sym_orelse] = ACTIONS(4694), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [anon_sym_EQ_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_xor] = ACTIONS(4694), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4694), + [anon_sym_LT_LT_PIPE] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_catch] = ACTIONS(4694), + [anon_sym_TILDE] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_null] = ACTIONS(4694), + [anon_sym_unreachable] = ACTIONS(4694), + [anon_sym_undefined] = ACTIONS(4694), + [sym_sink] = ACTIONS(4694), + [sym_integer] = ACTIONS(4694), + [sym_float] = ACTIONS(4692), + [anon_sym_DQUOTE] = ACTIONS(4692), + [sym_multiline_string] = ACTIONS(4692), + [sym_character] = ACTIONS(4692), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4692), + }, + [STATE(3588)] = { + [sym_identifier] = ACTIONS(4698), + [anon_sym_func] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_struct] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_DOLLAR] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_void] = ACTIONS(4698), + [anon_sym_noreturn] = ACTIONS(4698), + [anon_sym_type] = ACTIONS(4698), + [anon_sym_anyopaque] = ACTIONS(4698), + [anon_sym_bool] = ACTIONS(4698), + [anon_sym_int] = ACTIONS(4698), + [anon_sym_uint] = ACTIONS(4698), + [anon_sym_float] = ACTIONS(4698), + [anon_sym_range] = ACTIONS(4698), + [anon_sym_i8] = ACTIONS(4698), + [anon_sym_i16] = ACTIONS(4698), + [anon_sym_i32] = ACTIONS(4698), + [anon_sym_i64] = ACTIONS(4698), + [anon_sym_u8] = ACTIONS(4698), + [anon_sym_u16] = ACTIONS(4698), + [anon_sym_u32] = ACTIONS(4698), + [anon_sym_u64] = ACTIONS(4698), + [anon_sym_isize] = ACTIONS(4698), + [anon_sym_usize] = ACTIONS(4698), + [anon_sym_f32] = ACTIONS(4698), + [anon_sym_f64] = ACTIONS(4698), + [anon_sym_c_char] = ACTIONS(4698), + [anon_sym_c_schar] = ACTIONS(4698), + [anon_sym_c_uchar] = ACTIONS(4698), + [anon_sym_c_short] = ACTIONS(4698), + [anon_sym_c_ushort] = ACTIONS(4698), + [anon_sym_c_int] = ACTIONS(4698), + [anon_sym_c_uint] = ACTIONS(4698), + [anon_sym_c_long] = ACTIONS(4698), + [anon_sym_c_ulong] = ACTIONS(4698), + [anon_sym_c_longlong] = ACTIONS(4698), + [anon_sym_c_ulonglong] = ACTIONS(4698), + [anon_sym_c_float] = ACTIONS(4698), + [anon_sym_c_double] = ACTIONS(4698), + [anon_sym_c_longdouble] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_AMP_EQ] = ACTIONS(4696), + [anon_sym_PIPE_EQ] = ACTIONS(4698), + [anon_sym_xor_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_GT_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4698), + [anon_sym_yield] = ACTIONS(4698), + [anon_sym_break] = ACTIONS(4698), + [anon_sym_continue] = ACTIONS(4698), + [anon_sym_defer] = ACTIONS(4698), + [anon_sym_errdefer] = ACTIONS(4698), + [anon_sym_if] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_while] = ACTIONS(4698), + [anon_sym_expand] = ACTIONS(4698), + [anon_sym_for] = ACTIONS(4698), + [anon_sym_PIPE2] = ACTIONS(4696), + [anon_sym_match] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4696), + [anon_sym_orelse] = ACTIONS(4698), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_xor] = ACTIONS(4698), + [anon_sym_LT_LT] = ACTIONS(4698), + [anon_sym_GT_GT] = ACTIONS(4698), + [anon_sym_LT_LT_PIPE] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_catch] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4698), + [anon_sym_false] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4698), + [anon_sym_unreachable] = ACTIONS(4698), + [anon_sym_undefined] = ACTIONS(4698), + [sym_sink] = ACTIONS(4698), + [sym_integer] = ACTIONS(4698), + [sym_float] = ACTIONS(4696), + [anon_sym_DQUOTE] = ACTIONS(4696), + [sym_multiline_string] = ACTIONS(4696), + [sym_character] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4696), + }, + [STATE(3589)] = { + [sym_identifier] = ACTIONS(4702), + [anon_sym_func] = ACTIONS(4702), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_struct] = ACTIONS(4702), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_DOLLAR] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(4702), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_STAR] = ACTIONS(4702), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_void] = ACTIONS(4702), + [anon_sym_noreturn] = ACTIONS(4702), + [anon_sym_type] = ACTIONS(4702), + [anon_sym_anyopaque] = ACTIONS(4702), + [anon_sym_bool] = ACTIONS(4702), + [anon_sym_int] = ACTIONS(4702), + [anon_sym_uint] = ACTIONS(4702), + [anon_sym_float] = ACTIONS(4702), + [anon_sym_range] = ACTIONS(4702), + [anon_sym_i8] = ACTIONS(4702), + [anon_sym_i16] = ACTIONS(4702), + [anon_sym_i32] = ACTIONS(4702), + [anon_sym_i64] = ACTIONS(4702), + [anon_sym_u8] = ACTIONS(4702), + [anon_sym_u16] = ACTIONS(4702), + [anon_sym_u32] = ACTIONS(4702), + [anon_sym_u64] = ACTIONS(4702), + [anon_sym_isize] = ACTIONS(4702), + [anon_sym_usize] = ACTIONS(4702), + [anon_sym_f32] = ACTIONS(4702), + [anon_sym_f64] = ACTIONS(4702), + [anon_sym_c_char] = ACTIONS(4702), + [anon_sym_c_schar] = ACTIONS(4702), + [anon_sym_c_uchar] = ACTIONS(4702), + [anon_sym_c_short] = ACTIONS(4702), + [anon_sym_c_ushort] = ACTIONS(4702), + [anon_sym_c_int] = ACTIONS(4702), + [anon_sym_c_uint] = ACTIONS(4702), + [anon_sym_c_long] = ACTIONS(4702), + [anon_sym_c_ulong] = ACTIONS(4702), + [anon_sym_c_longlong] = ACTIONS(4702), + [anon_sym_c_ulonglong] = ACTIONS(4702), + [anon_sym_c_float] = ACTIONS(4702), + [anon_sym_c_double] = ACTIONS(4702), + [anon_sym_c_longdouble] = ACTIONS(4702), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_AMP_EQ] = ACTIONS(4700), + [anon_sym_PIPE_EQ] = ACTIONS(4702), + [anon_sym_xor_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4700), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_yield] = ACTIONS(4702), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_defer] = ACTIONS(4702), + [anon_sym_errdefer] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_while] = ACTIONS(4702), + [anon_sym_expand] = ACTIONS(4702), + [anon_sym_for] = ACTIONS(4702), + [anon_sym_PIPE2] = ACTIONS(4700), + [anon_sym_match] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4700), + [anon_sym_orelse] = ACTIONS(4702), + [anon_sym_or] = ACTIONS(4702), + [anon_sym_and] = ACTIONS(4702), + [anon_sym_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(4702), + [anon_sym_xor] = ACTIONS(4702), + [anon_sym_LT_LT] = ACTIONS(4702), + [anon_sym_GT_GT] = ACTIONS(4702), + [anon_sym_LT_LT_PIPE] = ACTIONS(4702), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_catch] = ACTIONS(4702), + [anon_sym_TILDE] = ACTIONS(4700), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_unreachable] = ACTIONS(4702), + [anon_sym_undefined] = ACTIONS(4702), + [sym_sink] = ACTIONS(4702), + [sym_integer] = ACTIONS(4702), + [sym_float] = ACTIONS(4700), + [anon_sym_DQUOTE] = ACTIONS(4700), + [sym_multiline_string] = ACTIONS(4700), + [sym_character] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4700), + }, + [STATE(3590)] = { + [sym_identifier] = ACTIONS(4706), + [anon_sym_func] = ACTIONS(4706), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_struct] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_void] = ACTIONS(4706), + [anon_sym_noreturn] = ACTIONS(4706), + [anon_sym_type] = ACTIONS(4706), + [anon_sym_anyopaque] = ACTIONS(4706), + [anon_sym_bool] = ACTIONS(4706), + [anon_sym_int] = ACTIONS(4706), + [anon_sym_uint] = ACTIONS(4706), + [anon_sym_float] = ACTIONS(4706), + [anon_sym_range] = ACTIONS(4706), + [anon_sym_i8] = ACTIONS(4706), + [anon_sym_i16] = ACTIONS(4706), + [anon_sym_i32] = ACTIONS(4706), + [anon_sym_i64] = ACTIONS(4706), + [anon_sym_u8] = ACTIONS(4706), + [anon_sym_u16] = ACTIONS(4706), + [anon_sym_u32] = ACTIONS(4706), + [anon_sym_u64] = ACTIONS(4706), + [anon_sym_isize] = ACTIONS(4706), + [anon_sym_usize] = ACTIONS(4706), + [anon_sym_f32] = ACTIONS(4706), + [anon_sym_f64] = ACTIONS(4706), + [anon_sym_c_char] = ACTIONS(4706), + [anon_sym_c_schar] = ACTIONS(4706), + [anon_sym_c_uchar] = ACTIONS(4706), + [anon_sym_c_short] = ACTIONS(4706), + [anon_sym_c_ushort] = ACTIONS(4706), + [anon_sym_c_int] = ACTIONS(4706), + [anon_sym_c_uint] = ACTIONS(4706), + [anon_sym_c_long] = ACTIONS(4706), + [anon_sym_c_ulong] = ACTIONS(4706), + [anon_sym_c_longlong] = ACTIONS(4706), + [anon_sym_c_ulonglong] = ACTIONS(4706), + [anon_sym_c_float] = ACTIONS(4706), + [anon_sym_c_double] = ACTIONS(4706), + [anon_sym_c_longdouble] = ACTIONS(4706), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_AMP_EQ] = ACTIONS(4704), + [anon_sym_PIPE_EQ] = ACTIONS(4706), + [anon_sym_xor_EQ] = ACTIONS(4704), + [anon_sym_LT_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_GT_EQ] = ACTIONS(4704), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4704), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_yield] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_defer] = ACTIONS(4706), + [anon_sym_errdefer] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_expand] = ACTIONS(4706), + [anon_sym_for] = ACTIONS(4706), + [anon_sym_PIPE2] = ACTIONS(4704), + [anon_sym_match] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4704), + [anon_sym_orelse] = ACTIONS(4706), + [anon_sym_or] = ACTIONS(4706), + [anon_sym_and] = ACTIONS(4706), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_xor] = ACTIONS(4706), + [anon_sym_LT_LT] = ACTIONS(4706), + [anon_sym_GT_GT] = ACTIONS(4706), + [anon_sym_LT_LT_PIPE] = ACTIONS(4706), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_catch] = ACTIONS(4706), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_unreachable] = ACTIONS(4706), + [anon_sym_undefined] = ACTIONS(4706), + [sym_sink] = ACTIONS(4706), + [sym_integer] = ACTIONS(4706), + [sym_float] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [sym_multiline_string] = ACTIONS(4704), + [sym_character] = ACTIONS(4704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4704), + }, + [STATE(3591)] = { + [sym_identifier] = ACTIONS(4710), + [anon_sym_func] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_struct] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4708), + [anon_sym_PIPE] = ACTIONS(4710), + [anon_sym_QMARK] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_void] = ACTIONS(4710), + [anon_sym_noreturn] = ACTIONS(4710), + [anon_sym_type] = ACTIONS(4710), + [anon_sym_anyopaque] = ACTIONS(4710), + [anon_sym_bool] = ACTIONS(4710), + [anon_sym_int] = ACTIONS(4710), + [anon_sym_uint] = ACTIONS(4710), + [anon_sym_float] = ACTIONS(4710), + [anon_sym_range] = ACTIONS(4710), + [anon_sym_i8] = ACTIONS(4710), + [anon_sym_i16] = ACTIONS(4710), + [anon_sym_i32] = ACTIONS(4710), + [anon_sym_i64] = ACTIONS(4710), + [anon_sym_u8] = ACTIONS(4710), + [anon_sym_u16] = ACTIONS(4710), + [anon_sym_u32] = ACTIONS(4710), + [anon_sym_u64] = ACTIONS(4710), + [anon_sym_isize] = ACTIONS(4710), + [anon_sym_usize] = ACTIONS(4710), + [anon_sym_f32] = ACTIONS(4710), + [anon_sym_f64] = ACTIONS(4710), + [anon_sym_c_char] = ACTIONS(4710), + [anon_sym_c_schar] = ACTIONS(4710), + [anon_sym_c_uchar] = ACTIONS(4710), + [anon_sym_c_short] = ACTIONS(4710), + [anon_sym_c_ushort] = ACTIONS(4710), + [anon_sym_c_int] = ACTIONS(4710), + [anon_sym_c_uint] = ACTIONS(4710), + [anon_sym_c_long] = ACTIONS(4710), + [anon_sym_c_ulong] = ACTIONS(4710), + [anon_sym_c_longlong] = ACTIONS(4710), + [anon_sym_c_ulonglong] = ACTIONS(4710), + [anon_sym_c_float] = ACTIONS(4710), + [anon_sym_c_double] = ACTIONS(4710), + [anon_sym_c_longdouble] = ACTIONS(4710), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_AMP_EQ] = ACTIONS(4708), + [anon_sym_PIPE_EQ] = ACTIONS(4710), + [anon_sym_xor_EQ] = ACTIONS(4708), + [anon_sym_LT_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_GT_EQ] = ACTIONS(4708), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4708), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_yield] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_defer] = ACTIONS(4710), + [anon_sym_errdefer] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_expand] = ACTIONS(4710), + [anon_sym_for] = ACTIONS(4710), + [anon_sym_PIPE2] = ACTIONS(4708), + [anon_sym_match] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4708), + [anon_sym_orelse] = ACTIONS(4710), + [anon_sym_or] = ACTIONS(4710), + [anon_sym_and] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_xor] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4710), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_LT_LT_PIPE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_catch] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4708), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_unreachable] = ACTIONS(4710), + [anon_sym_undefined] = ACTIONS(4710), + [sym_sink] = ACTIONS(4710), + [sym_integer] = ACTIONS(4710), + [sym_float] = ACTIONS(4708), + [anon_sym_DQUOTE] = ACTIONS(4708), + [sym_multiline_string] = ACTIONS(4708), + [sym_character] = ACTIONS(4708), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4708), + }, + [STATE(3592)] = { + [sym_identifier] = ACTIONS(4714), + [anon_sym_func] = ACTIONS(4714), + [anon_sym_BANG] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_struct] = ACTIONS(4714), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4714), + [anon_sym_QMARK] = ACTIONS(4712), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_void] = ACTIONS(4714), + [anon_sym_noreturn] = ACTIONS(4714), + [anon_sym_type] = ACTIONS(4714), + [anon_sym_anyopaque] = ACTIONS(4714), + [anon_sym_bool] = ACTIONS(4714), + [anon_sym_int] = ACTIONS(4714), + [anon_sym_uint] = ACTIONS(4714), + [anon_sym_float] = ACTIONS(4714), + [anon_sym_range] = ACTIONS(4714), + [anon_sym_i8] = ACTIONS(4714), + [anon_sym_i16] = ACTIONS(4714), + [anon_sym_i32] = ACTIONS(4714), + [anon_sym_i64] = ACTIONS(4714), + [anon_sym_u8] = ACTIONS(4714), + [anon_sym_u16] = ACTIONS(4714), + [anon_sym_u32] = ACTIONS(4714), + [anon_sym_u64] = ACTIONS(4714), + [anon_sym_isize] = ACTIONS(4714), + [anon_sym_usize] = ACTIONS(4714), + [anon_sym_f32] = ACTIONS(4714), + [anon_sym_f64] = ACTIONS(4714), + [anon_sym_c_char] = ACTIONS(4714), + [anon_sym_c_schar] = ACTIONS(4714), + [anon_sym_c_uchar] = ACTIONS(4714), + [anon_sym_c_short] = ACTIONS(4714), + [anon_sym_c_ushort] = ACTIONS(4714), + [anon_sym_c_int] = ACTIONS(4714), + [anon_sym_c_uint] = ACTIONS(4714), + [anon_sym_c_long] = ACTIONS(4714), + [anon_sym_c_ulong] = ACTIONS(4714), + [anon_sym_c_longlong] = ACTIONS(4714), + [anon_sym_c_ulonglong] = ACTIONS(4714), + [anon_sym_c_float] = ACTIONS(4714), + [anon_sym_c_double] = ACTIONS(4714), + [anon_sym_c_longdouble] = ACTIONS(4714), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_AMP_EQ] = ACTIONS(4712), + [anon_sym_PIPE_EQ] = ACTIONS(4714), + [anon_sym_xor_EQ] = ACTIONS(4712), + [anon_sym_LT_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_GT_EQ] = ACTIONS(4712), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4714), + [anon_sym_yield] = ACTIONS(4714), + [anon_sym_break] = ACTIONS(4714), + [anon_sym_continue] = ACTIONS(4714), + [anon_sym_defer] = ACTIONS(4714), + [anon_sym_errdefer] = ACTIONS(4714), + [anon_sym_if] = ACTIONS(4714), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_while] = ACTIONS(4714), + [anon_sym_expand] = ACTIONS(4714), + [anon_sym_for] = ACTIONS(4714), + [anon_sym_PIPE2] = ACTIONS(4712), + [anon_sym_match] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4712), + [anon_sym_orelse] = ACTIONS(4714), + [anon_sym_or] = ACTIONS(4714), + [anon_sym_and] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4714), + [anon_sym_xor] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4714), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_LT_LT_PIPE] = ACTIONS(4714), + [anon_sym_PLUS] = ACTIONS(4714), + [anon_sym_SLASH] = ACTIONS(4714), + [anon_sym_catch] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4712), + [anon_sym_try] = ACTIONS(4714), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_CARET] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4714), + [anon_sym_false] = ACTIONS(4714), + [anon_sym_null] = ACTIONS(4714), + [anon_sym_unreachable] = ACTIONS(4714), + [anon_sym_undefined] = ACTIONS(4714), + [sym_sink] = ACTIONS(4714), + [sym_integer] = ACTIONS(4714), + [sym_float] = ACTIONS(4712), + [anon_sym_DQUOTE] = ACTIONS(4712), + [sym_multiline_string] = ACTIONS(4712), + [sym_character] = ACTIONS(4712), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4712), + }, + [STATE(3593)] = { + [sym_identifier] = ACTIONS(4718), + [anon_sym_func] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_struct] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_QMARK] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_void] = ACTIONS(4718), + [anon_sym_noreturn] = ACTIONS(4718), + [anon_sym_type] = ACTIONS(4718), + [anon_sym_anyopaque] = ACTIONS(4718), + [anon_sym_bool] = ACTIONS(4718), + [anon_sym_int] = ACTIONS(4718), + [anon_sym_uint] = ACTIONS(4718), + [anon_sym_float] = ACTIONS(4718), + [anon_sym_range] = ACTIONS(4718), + [anon_sym_i8] = ACTIONS(4718), + [anon_sym_i16] = ACTIONS(4718), + [anon_sym_i32] = ACTIONS(4718), + [anon_sym_i64] = ACTIONS(4718), + [anon_sym_u8] = ACTIONS(4718), + [anon_sym_u16] = ACTIONS(4718), + [anon_sym_u32] = ACTIONS(4718), + [anon_sym_u64] = ACTIONS(4718), + [anon_sym_isize] = ACTIONS(4718), + [anon_sym_usize] = ACTIONS(4718), + [anon_sym_f32] = ACTIONS(4718), + [anon_sym_f64] = ACTIONS(4718), + [anon_sym_c_char] = ACTIONS(4718), + [anon_sym_c_schar] = ACTIONS(4718), + [anon_sym_c_uchar] = ACTIONS(4718), + [anon_sym_c_short] = ACTIONS(4718), + [anon_sym_c_ushort] = ACTIONS(4718), + [anon_sym_c_int] = ACTIONS(4718), + [anon_sym_c_uint] = ACTIONS(4718), + [anon_sym_c_long] = ACTIONS(4718), + [anon_sym_c_ulong] = ACTIONS(4718), + [anon_sym_c_longlong] = ACTIONS(4718), + [anon_sym_c_ulonglong] = ACTIONS(4718), + [anon_sym_c_float] = ACTIONS(4718), + [anon_sym_c_double] = ACTIONS(4718), + [anon_sym_c_longdouble] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4716), + [anon_sym_STAR_EQ] = ACTIONS(4716), + [anon_sym_SLASH_EQ] = ACTIONS(4716), + [anon_sym_AMP_EQ] = ACTIONS(4716), + [anon_sym_PIPE_EQ] = ACTIONS(4718), + [anon_sym_xor_EQ] = ACTIONS(4716), + [anon_sym_LT_LT_EQ] = ACTIONS(4716), + [anon_sym_GT_GT_EQ] = ACTIONS(4716), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_yield] = ACTIONS(4718), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_defer] = ACTIONS(4718), + [anon_sym_errdefer] = ACTIONS(4718), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_while] = ACTIONS(4718), + [anon_sym_expand] = ACTIONS(4718), + [anon_sym_for] = ACTIONS(4718), + [anon_sym_PIPE2] = ACTIONS(4716), + [anon_sym_match] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4716), + [anon_sym_orelse] = ACTIONS(4718), + [anon_sym_or] = ACTIONS(4718), + [anon_sym_and] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_AMP] = ACTIONS(4718), + [anon_sym_xor] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4718), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_LT_LT_PIPE] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_catch] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_CARET] = ACTIONS(4716), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(4718), + [anon_sym_unreachable] = ACTIONS(4718), + [anon_sym_undefined] = ACTIONS(4718), + [sym_sink] = ACTIONS(4718), + [sym_integer] = ACTIONS(4718), + [sym_float] = ACTIONS(4716), + [anon_sym_DQUOTE] = ACTIONS(4716), + [sym_multiline_string] = ACTIONS(4716), + [sym_character] = ACTIONS(4716), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4716), + }, + [STATE(3594)] = { + [sym_identifier] = ACTIONS(5944), + [anon_sym_func] = ACTIONS(5944), + [anon_sym_BANG] = ACTIONS(5944), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_struct] = ACTIONS(5944), + [anon_sym_LPAREN] = ACTIONS(5942), + [anon_sym_LBRACE] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5944), + [anon_sym_DOLLAR] = ACTIONS(5942), + [anon_sym_PIPE] = ACTIONS(5944), + [anon_sym_QMARK] = ACTIONS(5942), + [anon_sym_STAR] = ACTIONS(5944), + [anon_sym_LBRACK] = ACTIONS(5942), + [anon_sym_void] = ACTIONS(5944), + [anon_sym_noreturn] = ACTIONS(5944), + [anon_sym_type] = ACTIONS(5944), + [anon_sym_anyopaque] = ACTIONS(5944), + [anon_sym_bool] = ACTIONS(5944), + [anon_sym_int] = ACTIONS(5944), + [anon_sym_uint] = ACTIONS(5944), + [anon_sym_float] = ACTIONS(5944), + [anon_sym_range] = ACTIONS(5944), + [anon_sym_i8] = ACTIONS(5944), + [anon_sym_i16] = ACTIONS(5944), + [anon_sym_i32] = ACTIONS(5944), + [anon_sym_i64] = ACTIONS(5944), + [anon_sym_u8] = ACTIONS(5944), + [anon_sym_u16] = ACTIONS(5944), + [anon_sym_u32] = ACTIONS(5944), + [anon_sym_u64] = ACTIONS(5944), + [anon_sym_isize] = ACTIONS(5944), + [anon_sym_usize] = ACTIONS(5944), + [anon_sym_f32] = ACTIONS(5944), + [anon_sym_f64] = ACTIONS(5944), + [anon_sym_c_char] = ACTIONS(5944), + [anon_sym_c_schar] = ACTIONS(5944), + [anon_sym_c_uchar] = ACTIONS(5944), + [anon_sym_c_short] = ACTIONS(5944), + [anon_sym_c_ushort] = ACTIONS(5944), + [anon_sym_c_int] = ACTIONS(5944), + [anon_sym_c_uint] = ACTIONS(5944), + [anon_sym_c_long] = ACTIONS(5944), + [anon_sym_c_ulong] = ACTIONS(5944), + [anon_sym_c_longlong] = ACTIONS(5944), + [anon_sym_c_ulonglong] = ACTIONS(5944), + [anon_sym_c_float] = ACTIONS(5944), + [anon_sym_c_double] = ACTIONS(5944), + [anon_sym_c_longdouble] = ACTIONS(5944), + [anon_sym_PLUS_EQ] = ACTIONS(5942), + [anon_sym_DASH_EQ] = ACTIONS(5942), + [anon_sym_STAR_EQ] = ACTIONS(5942), + [anon_sym_SLASH_EQ] = ACTIONS(5942), + [anon_sym_AMP_EQ] = ACTIONS(5942), + [anon_sym_PIPE_EQ] = ACTIONS(5944), + [anon_sym_xor_EQ] = ACTIONS(5942), + [anon_sym_LT_LT_EQ] = ACTIONS(5942), + [anon_sym_GT_GT_EQ] = ACTIONS(5942), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5942), + [anon_sym_return] = ACTIONS(5944), + [anon_sym_yield] = ACTIONS(5944), + [anon_sym_break] = ACTIONS(5944), + [anon_sym_continue] = ACTIONS(5944), + [anon_sym_defer] = ACTIONS(5944), + [anon_sym_errdefer] = ACTIONS(5944), + [anon_sym_if] = ACTIONS(5944), + [anon_sym_else] = ACTIONS(5944), + [anon_sym_while] = ACTIONS(5944), + [anon_sym_expand] = ACTIONS(5944), + [anon_sym_for] = ACTIONS(5944), + [anon_sym_PIPE2] = ACTIONS(5942), + [anon_sym_match] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5942), + [anon_sym_orelse] = ACTIONS(5944), + [anon_sym_or] = ACTIONS(5944), + [anon_sym_and] = ACTIONS(5944), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_LT] = ACTIONS(5944), + [anon_sym_LT_EQ] = ACTIONS(5942), + [anon_sym_GT] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5942), + [anon_sym_AMP] = ACTIONS(5944), + [anon_sym_xor] = ACTIONS(5944), + [anon_sym_LT_LT] = ACTIONS(5944), + [anon_sym_GT_GT] = ACTIONS(5944), + [anon_sym_LT_LT_PIPE] = ACTIONS(5944), + [anon_sym_PLUS] = ACTIONS(5944), + [anon_sym_SLASH] = ACTIONS(5944), + [anon_sym_catch] = ACTIONS(5944), + [anon_sym_TILDE] = ACTIONS(5942), + [anon_sym_try] = ACTIONS(5944), + [anon_sym_DOT] = ACTIONS(5944), + [anon_sym_CARET] = ACTIONS(5942), + [anon_sym_true] = ACTIONS(5944), + [anon_sym_false] = ACTIONS(5944), + [anon_sym_null] = ACTIONS(5944), + [anon_sym_unreachable] = ACTIONS(5944), + [anon_sym_undefined] = ACTIONS(5944), + [sym_sink] = ACTIONS(5944), + [sym_integer] = ACTIONS(5944), + [sym_float] = ACTIONS(5942), + [anon_sym_DQUOTE] = ACTIONS(5942), + [sym_multiline_string] = ACTIONS(5942), + [sym_character] = ACTIONS(5942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5942), + }, + [STATE(3595)] = { + [sym_identifier] = ACTIONS(5948), + [anon_sym_func] = ACTIONS(5948), + [anon_sym_BANG] = ACTIONS(5948), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_struct] = ACTIONS(5948), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5948), + [anon_sym_DOLLAR] = ACTIONS(5946), + [anon_sym_PIPE] = ACTIONS(5948), + [anon_sym_QMARK] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_void] = ACTIONS(5948), + [anon_sym_noreturn] = ACTIONS(5948), + [anon_sym_type] = ACTIONS(5948), + [anon_sym_anyopaque] = ACTIONS(5948), + [anon_sym_bool] = ACTIONS(5948), + [anon_sym_int] = ACTIONS(5948), + [anon_sym_uint] = ACTIONS(5948), + [anon_sym_float] = ACTIONS(5948), + [anon_sym_range] = ACTIONS(5948), + [anon_sym_i8] = ACTIONS(5948), + [anon_sym_i16] = ACTIONS(5948), + [anon_sym_i32] = ACTIONS(5948), + [anon_sym_i64] = ACTIONS(5948), + [anon_sym_u8] = ACTIONS(5948), + [anon_sym_u16] = ACTIONS(5948), + [anon_sym_u32] = ACTIONS(5948), + [anon_sym_u64] = ACTIONS(5948), + [anon_sym_isize] = ACTIONS(5948), + [anon_sym_usize] = ACTIONS(5948), + [anon_sym_f32] = ACTIONS(5948), + [anon_sym_f64] = ACTIONS(5948), + [anon_sym_c_char] = ACTIONS(5948), + [anon_sym_c_schar] = ACTIONS(5948), + [anon_sym_c_uchar] = ACTIONS(5948), + [anon_sym_c_short] = ACTIONS(5948), + [anon_sym_c_ushort] = ACTIONS(5948), + [anon_sym_c_int] = ACTIONS(5948), + [anon_sym_c_uint] = ACTIONS(5948), + [anon_sym_c_long] = ACTIONS(5948), + [anon_sym_c_ulong] = ACTIONS(5948), + [anon_sym_c_longlong] = ACTIONS(5948), + [anon_sym_c_ulonglong] = ACTIONS(5948), + [anon_sym_c_float] = ACTIONS(5948), + [anon_sym_c_double] = ACTIONS(5948), + [anon_sym_c_longdouble] = ACTIONS(5948), + [anon_sym_PLUS_EQ] = ACTIONS(5946), + [anon_sym_DASH_EQ] = ACTIONS(5946), + [anon_sym_STAR_EQ] = ACTIONS(5946), + [anon_sym_SLASH_EQ] = ACTIONS(5946), + [anon_sym_AMP_EQ] = ACTIONS(5946), + [anon_sym_PIPE_EQ] = ACTIONS(5948), + [anon_sym_xor_EQ] = ACTIONS(5946), + [anon_sym_LT_LT_EQ] = ACTIONS(5946), + [anon_sym_GT_GT_EQ] = ACTIONS(5946), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5946), + [anon_sym_return] = ACTIONS(5948), + [anon_sym_yield] = ACTIONS(5948), + [anon_sym_break] = ACTIONS(5948), + [anon_sym_continue] = ACTIONS(5948), + [anon_sym_defer] = ACTIONS(5948), + [anon_sym_errdefer] = ACTIONS(5948), + [anon_sym_if] = ACTIONS(5948), + [anon_sym_else] = ACTIONS(5948), + [anon_sym_while] = ACTIONS(5948), + [anon_sym_expand] = ACTIONS(5948), + [anon_sym_for] = ACTIONS(5948), + [anon_sym_PIPE2] = ACTIONS(5946), + [anon_sym_match] = ACTIONS(5948), + [anon_sym_DOT_DOT] = ACTIONS(5948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_orelse] = ACTIONS(5948), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5946), + [anon_sym_BANG_EQ] = ACTIONS(5946), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_EQ] = ACTIONS(5946), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5946), + [anon_sym_AMP] = ACTIONS(5948), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT_PIPE] = ACTIONS(5948), + [anon_sym_PLUS] = ACTIONS(5948), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_catch] = ACTIONS(5948), + [anon_sym_TILDE] = ACTIONS(5946), + [anon_sym_try] = ACTIONS(5948), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5946), + [anon_sym_true] = ACTIONS(5948), + [anon_sym_false] = ACTIONS(5948), + [anon_sym_null] = ACTIONS(5948), + [anon_sym_unreachable] = ACTIONS(5948), + [anon_sym_undefined] = ACTIONS(5948), + [sym_sink] = ACTIONS(5948), + [sym_integer] = ACTIONS(5948), + [sym_float] = ACTIONS(5946), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym_multiline_string] = ACTIONS(5946), + [sym_character] = ACTIONS(5946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5946), + }, + [STATE(3596)] = { + [sym_identifier] = ACTIONS(5952), + [anon_sym_func] = ACTIONS(5952), + [anon_sym_BANG] = ACTIONS(5952), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_struct] = ACTIONS(5952), + [anon_sym_LPAREN] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5952), + [anon_sym_DOLLAR] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5952), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_STAR] = ACTIONS(5952), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_void] = ACTIONS(5952), + [anon_sym_noreturn] = ACTIONS(5952), + [anon_sym_type] = ACTIONS(5952), + [anon_sym_anyopaque] = ACTIONS(5952), + [anon_sym_bool] = ACTIONS(5952), + [anon_sym_int] = ACTIONS(5952), + [anon_sym_uint] = ACTIONS(5952), + [anon_sym_float] = ACTIONS(5952), + [anon_sym_range] = ACTIONS(5952), + [anon_sym_i8] = ACTIONS(5952), + [anon_sym_i16] = ACTIONS(5952), + [anon_sym_i32] = ACTIONS(5952), + [anon_sym_i64] = ACTIONS(5952), + [anon_sym_u8] = ACTIONS(5952), + [anon_sym_u16] = ACTIONS(5952), + [anon_sym_u32] = ACTIONS(5952), + [anon_sym_u64] = ACTIONS(5952), + [anon_sym_isize] = ACTIONS(5952), + [anon_sym_usize] = ACTIONS(5952), + [anon_sym_f32] = ACTIONS(5952), + [anon_sym_f64] = ACTIONS(5952), + [anon_sym_c_char] = ACTIONS(5952), + [anon_sym_c_schar] = ACTIONS(5952), + [anon_sym_c_uchar] = ACTIONS(5952), + [anon_sym_c_short] = ACTIONS(5952), + [anon_sym_c_ushort] = ACTIONS(5952), + [anon_sym_c_int] = ACTIONS(5952), + [anon_sym_c_uint] = ACTIONS(5952), + [anon_sym_c_long] = ACTIONS(5952), + [anon_sym_c_ulong] = ACTIONS(5952), + [anon_sym_c_longlong] = ACTIONS(5952), + [anon_sym_c_ulonglong] = ACTIONS(5952), + [anon_sym_c_float] = ACTIONS(5952), + [anon_sym_c_double] = ACTIONS(5952), + [anon_sym_c_longdouble] = ACTIONS(5952), + [anon_sym_PLUS_EQ] = ACTIONS(5950), + [anon_sym_DASH_EQ] = ACTIONS(5950), + [anon_sym_STAR_EQ] = ACTIONS(5950), + [anon_sym_SLASH_EQ] = ACTIONS(5950), + [anon_sym_AMP_EQ] = ACTIONS(5950), + [anon_sym_PIPE_EQ] = ACTIONS(5952), + [anon_sym_xor_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_EQ] = ACTIONS(5950), + [anon_sym_GT_GT_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5950), + [anon_sym_return] = ACTIONS(5952), + [anon_sym_yield] = ACTIONS(5952), + [anon_sym_break] = ACTIONS(5952), + [anon_sym_continue] = ACTIONS(5952), + [anon_sym_defer] = ACTIONS(5952), + [anon_sym_errdefer] = ACTIONS(5952), + [anon_sym_if] = ACTIONS(5952), + [anon_sym_else] = ACTIONS(5952), + [anon_sym_while] = ACTIONS(5952), + [anon_sym_expand] = ACTIONS(5952), + [anon_sym_for] = ACTIONS(5952), + [anon_sym_PIPE2] = ACTIONS(5950), + [anon_sym_match] = ACTIONS(5952), + [anon_sym_DOT_DOT] = ACTIONS(5952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5950), + [anon_sym_orelse] = ACTIONS(5952), + [anon_sym_or] = ACTIONS(5952), + [anon_sym_and] = ACTIONS(5952), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_LT] = ACTIONS(5952), + [anon_sym_LT_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5952), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP] = ACTIONS(5952), + [anon_sym_xor] = ACTIONS(5952), + [anon_sym_LT_LT] = ACTIONS(5952), + [anon_sym_GT_GT] = ACTIONS(5952), + [anon_sym_LT_LT_PIPE] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5952), + [anon_sym_SLASH] = ACTIONS(5952), + [anon_sym_catch] = ACTIONS(5952), + [anon_sym_TILDE] = ACTIONS(5950), + [anon_sym_try] = ACTIONS(5952), + [anon_sym_DOT] = ACTIONS(5952), + [anon_sym_CARET] = ACTIONS(5950), + [anon_sym_true] = ACTIONS(5952), + [anon_sym_false] = ACTIONS(5952), + [anon_sym_null] = ACTIONS(5952), + [anon_sym_unreachable] = ACTIONS(5952), + [anon_sym_undefined] = ACTIONS(5952), + [sym_sink] = ACTIONS(5952), + [sym_integer] = ACTIONS(5952), + [sym_float] = ACTIONS(5950), + [anon_sym_DQUOTE] = ACTIONS(5950), + [sym_multiline_string] = ACTIONS(5950), + [sym_character] = ACTIONS(5950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5950), + }, + [STATE(3597)] = { + [sym_identifier] = ACTIONS(4722), + [anon_sym_func] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_QMARK] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_void] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_type] = ACTIONS(4722), + [anon_sym_anyopaque] = ACTIONS(4722), + [anon_sym_bool] = ACTIONS(4722), + [anon_sym_int] = ACTIONS(4722), + [anon_sym_uint] = ACTIONS(4722), + [anon_sym_float] = ACTIONS(4722), + [anon_sym_range] = ACTIONS(4722), + [anon_sym_i8] = ACTIONS(4722), + [anon_sym_i16] = ACTIONS(4722), + [anon_sym_i32] = ACTIONS(4722), + [anon_sym_i64] = ACTIONS(4722), + [anon_sym_u8] = ACTIONS(4722), + [anon_sym_u16] = ACTIONS(4722), + [anon_sym_u32] = ACTIONS(4722), + [anon_sym_u64] = ACTIONS(4722), + [anon_sym_isize] = ACTIONS(4722), + [anon_sym_usize] = ACTIONS(4722), + [anon_sym_f32] = ACTIONS(4722), + [anon_sym_f64] = ACTIONS(4722), + [anon_sym_c_char] = ACTIONS(4722), + [anon_sym_c_schar] = ACTIONS(4722), + [anon_sym_c_uchar] = ACTIONS(4722), + [anon_sym_c_short] = ACTIONS(4722), + [anon_sym_c_ushort] = ACTIONS(4722), + [anon_sym_c_int] = ACTIONS(4722), + [anon_sym_c_uint] = ACTIONS(4722), + [anon_sym_c_long] = ACTIONS(4722), + [anon_sym_c_ulong] = ACTIONS(4722), + [anon_sym_c_longlong] = ACTIONS(4722), + [anon_sym_c_ulonglong] = ACTIONS(4722), + [anon_sym_c_float] = ACTIONS(4722), + [anon_sym_c_double] = ACTIONS(4722), + [anon_sym_c_longdouble] = ACTIONS(4722), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_AMP_EQ] = ACTIONS(4720), + [anon_sym_PIPE_EQ] = ACTIONS(4722), + [anon_sym_xor_EQ] = ACTIONS(4720), + [anon_sym_LT_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_GT_EQ] = ACTIONS(4720), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4720), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_yield] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_defer] = ACTIONS(4722), + [anon_sym_errdefer] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_while] = ACTIONS(4722), + [anon_sym_expand] = ACTIONS(4722), + [anon_sym_for] = ACTIONS(4722), + [anon_sym_PIPE2] = ACTIONS(4720), + [anon_sym_match] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4720), + [anon_sym_orelse] = ACTIONS(4722), + [anon_sym_or] = ACTIONS(4722), + [anon_sym_and] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), + [anon_sym_xor] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT_PIPE] = ACTIONS(4722), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_catch] = ACTIONS(4722), + [anon_sym_TILDE] = ACTIONS(4720), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_unreachable] = ACTIONS(4722), + [anon_sym_undefined] = ACTIONS(4722), + [sym_sink] = ACTIONS(4722), + [sym_integer] = ACTIONS(4722), + [sym_float] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4720), + [sym_multiline_string] = ACTIONS(4720), + [sym_character] = ACTIONS(4720), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4720), + }, + [STATE(3598)] = { + [sym_identifier] = ACTIONS(4730), + [anon_sym_func] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_struct] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_void] = ACTIONS(4730), + [anon_sym_noreturn] = ACTIONS(4730), + [anon_sym_type] = ACTIONS(4730), + [anon_sym_anyopaque] = ACTIONS(4730), + [anon_sym_bool] = ACTIONS(4730), + [anon_sym_int] = ACTIONS(4730), + [anon_sym_uint] = ACTIONS(4730), + [anon_sym_float] = ACTIONS(4730), + [anon_sym_range] = ACTIONS(4730), + [anon_sym_i8] = ACTIONS(4730), + [anon_sym_i16] = ACTIONS(4730), + [anon_sym_i32] = ACTIONS(4730), + [anon_sym_i64] = ACTIONS(4730), + [anon_sym_u8] = ACTIONS(4730), + [anon_sym_u16] = ACTIONS(4730), + [anon_sym_u32] = ACTIONS(4730), + [anon_sym_u64] = ACTIONS(4730), + [anon_sym_isize] = ACTIONS(4730), + [anon_sym_usize] = ACTIONS(4730), + [anon_sym_f32] = ACTIONS(4730), + [anon_sym_f64] = ACTIONS(4730), + [anon_sym_c_char] = ACTIONS(4730), + [anon_sym_c_schar] = ACTIONS(4730), + [anon_sym_c_uchar] = ACTIONS(4730), + [anon_sym_c_short] = ACTIONS(4730), + [anon_sym_c_ushort] = ACTIONS(4730), + [anon_sym_c_int] = ACTIONS(4730), + [anon_sym_c_uint] = ACTIONS(4730), + [anon_sym_c_long] = ACTIONS(4730), + [anon_sym_c_ulong] = ACTIONS(4730), + [anon_sym_c_longlong] = ACTIONS(4730), + [anon_sym_c_ulonglong] = ACTIONS(4730), + [anon_sym_c_float] = ACTIONS(4730), + [anon_sym_c_double] = ACTIONS(4730), + [anon_sym_c_longdouble] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_AMP_EQ] = ACTIONS(4728), + [anon_sym_PIPE_EQ] = ACTIONS(4730), + [anon_sym_xor_EQ] = ACTIONS(4728), + [anon_sym_LT_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_GT_EQ] = ACTIONS(4728), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4730), + [anon_sym_yield] = ACTIONS(4730), + [anon_sym_break] = ACTIONS(4730), + [anon_sym_continue] = ACTIONS(4730), + [anon_sym_defer] = ACTIONS(4730), + [anon_sym_errdefer] = ACTIONS(4730), + [anon_sym_if] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_while] = ACTIONS(4730), + [anon_sym_expand] = ACTIONS(4730), + [anon_sym_for] = ACTIONS(4730), + [anon_sym_PIPE2] = ACTIONS(4728), + [anon_sym_match] = ACTIONS(4730), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4728), + [anon_sym_orelse] = ACTIONS(4730), + [anon_sym_or] = ACTIONS(4730), + [anon_sym_and] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_xor] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_LT_LT_PIPE] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4730), + [anon_sym_catch] = ACTIONS(4730), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4730), + [anon_sym_false] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4730), + [anon_sym_unreachable] = ACTIONS(4730), + [anon_sym_undefined] = ACTIONS(4730), + [sym_sink] = ACTIONS(4730), + [sym_integer] = ACTIONS(4730), + [sym_float] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [sym_multiline_string] = ACTIONS(4728), + [sym_character] = ACTIONS(4728), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4728), + }, + [STATE(3599)] = { + [sym_identifier] = ACTIONS(4744), + [anon_sym_func] = ACTIONS(4744), + [anon_sym_BANG] = ACTIONS(4744), + [anon_sym_EQ] = ACTIONS(4744), + [anon_sym_struct] = ACTIONS(4744), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(4744), + [anon_sym_DOLLAR] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4744), + [anon_sym_QMARK] = ACTIONS(4742), + [anon_sym_STAR] = ACTIONS(4744), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_void] = ACTIONS(4744), + [anon_sym_noreturn] = ACTIONS(4744), + [anon_sym_type] = ACTIONS(4744), + [anon_sym_anyopaque] = ACTIONS(4744), + [anon_sym_bool] = ACTIONS(4744), + [anon_sym_int] = ACTIONS(4744), + [anon_sym_uint] = ACTIONS(4744), + [anon_sym_float] = ACTIONS(4744), + [anon_sym_range] = ACTIONS(4744), + [anon_sym_i8] = ACTIONS(4744), + [anon_sym_i16] = ACTIONS(4744), + [anon_sym_i32] = ACTIONS(4744), + [anon_sym_i64] = ACTIONS(4744), + [anon_sym_u8] = ACTIONS(4744), + [anon_sym_u16] = ACTIONS(4744), + [anon_sym_u32] = ACTIONS(4744), + [anon_sym_u64] = ACTIONS(4744), + [anon_sym_isize] = ACTIONS(4744), + [anon_sym_usize] = ACTIONS(4744), + [anon_sym_f32] = ACTIONS(4744), + [anon_sym_f64] = ACTIONS(4744), + [anon_sym_c_char] = ACTIONS(4744), + [anon_sym_c_schar] = ACTIONS(4744), + [anon_sym_c_uchar] = ACTIONS(4744), + [anon_sym_c_short] = ACTIONS(4744), + [anon_sym_c_ushort] = ACTIONS(4744), + [anon_sym_c_int] = ACTIONS(4744), + [anon_sym_c_uint] = ACTIONS(4744), + [anon_sym_c_long] = ACTIONS(4744), + [anon_sym_c_ulong] = ACTIONS(4744), + [anon_sym_c_longlong] = ACTIONS(4744), + [anon_sym_c_ulonglong] = ACTIONS(4744), + [anon_sym_c_float] = ACTIONS(4744), + [anon_sym_c_double] = ACTIONS(4744), + [anon_sym_c_longdouble] = ACTIONS(4744), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_AMP_EQ] = ACTIONS(4742), + [anon_sym_PIPE_EQ] = ACTIONS(4744), + [anon_sym_xor_EQ] = ACTIONS(4742), + [anon_sym_LT_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_GT_EQ] = ACTIONS(4742), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4742), + [anon_sym_return] = ACTIONS(4744), + [anon_sym_yield] = ACTIONS(4744), + [anon_sym_break] = ACTIONS(4744), + [anon_sym_continue] = ACTIONS(4744), + [anon_sym_defer] = ACTIONS(4744), + [anon_sym_errdefer] = ACTIONS(4744), + [anon_sym_if] = ACTIONS(4744), + [anon_sym_else] = ACTIONS(4744), + [anon_sym_while] = ACTIONS(4744), + [anon_sym_expand] = ACTIONS(4744), + [anon_sym_for] = ACTIONS(4744), + [anon_sym_PIPE2] = ACTIONS(4742), + [anon_sym_match] = ACTIONS(4744), + [anon_sym_DOT_DOT] = ACTIONS(4744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4742), + [anon_sym_orelse] = ACTIONS(4744), + [anon_sym_or] = ACTIONS(4744), + [anon_sym_and] = ACTIONS(4744), + [anon_sym_EQ_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4744), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4744), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_AMP] = ACTIONS(4744), + [anon_sym_xor] = ACTIONS(4744), + [anon_sym_LT_LT] = ACTIONS(4744), + [anon_sym_GT_GT] = ACTIONS(4744), + [anon_sym_LT_LT_PIPE] = ACTIONS(4744), + [anon_sym_PLUS] = ACTIONS(4744), + [anon_sym_SLASH] = ACTIONS(4744), + [anon_sym_catch] = ACTIONS(4744), + [anon_sym_TILDE] = ACTIONS(4742), + [anon_sym_try] = ACTIONS(4744), + [anon_sym_DOT] = ACTIONS(4744), + [anon_sym_CARET] = ACTIONS(4742), + [anon_sym_true] = ACTIONS(4744), + [anon_sym_false] = ACTIONS(4744), + [anon_sym_null] = ACTIONS(4744), + [anon_sym_unreachable] = ACTIONS(4744), + [anon_sym_undefined] = ACTIONS(4744), + [sym_sink] = ACTIONS(4744), + [sym_integer] = ACTIONS(4744), + [sym_float] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [sym_multiline_string] = ACTIONS(4742), + [sym_character] = ACTIONS(4742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4742), + }, + [STATE(3600)] = { + [sym_identifier] = ACTIONS(4748), + [anon_sym_func] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4748), + [anon_sym_struct] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_DOLLAR] = ACTIONS(4746), + [anon_sym_PIPE] = ACTIONS(4748), + [anon_sym_QMARK] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_void] = ACTIONS(4748), + [anon_sym_noreturn] = ACTIONS(4748), + [anon_sym_type] = ACTIONS(4748), + [anon_sym_anyopaque] = ACTIONS(4748), + [anon_sym_bool] = ACTIONS(4748), + [anon_sym_int] = ACTIONS(4748), + [anon_sym_uint] = ACTIONS(4748), + [anon_sym_float] = ACTIONS(4748), + [anon_sym_range] = ACTIONS(4748), + [anon_sym_i8] = ACTIONS(4748), + [anon_sym_i16] = ACTIONS(4748), + [anon_sym_i32] = ACTIONS(4748), + [anon_sym_i64] = ACTIONS(4748), + [anon_sym_u8] = ACTIONS(4748), + [anon_sym_u16] = ACTIONS(4748), + [anon_sym_u32] = ACTIONS(4748), + [anon_sym_u64] = ACTIONS(4748), + [anon_sym_isize] = ACTIONS(4748), + [anon_sym_usize] = ACTIONS(4748), + [anon_sym_f32] = ACTIONS(4748), + [anon_sym_f64] = ACTIONS(4748), + [anon_sym_c_char] = ACTIONS(4748), + [anon_sym_c_schar] = ACTIONS(4748), + [anon_sym_c_uchar] = ACTIONS(4748), + [anon_sym_c_short] = ACTIONS(4748), + [anon_sym_c_ushort] = ACTIONS(4748), + [anon_sym_c_int] = ACTIONS(4748), + [anon_sym_c_uint] = ACTIONS(4748), + [anon_sym_c_long] = ACTIONS(4748), + [anon_sym_c_ulong] = ACTIONS(4748), + [anon_sym_c_longlong] = ACTIONS(4748), + [anon_sym_c_ulonglong] = ACTIONS(4748), + [anon_sym_c_float] = ACTIONS(4748), + [anon_sym_c_double] = ACTIONS(4748), + [anon_sym_c_longdouble] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4746), + [anon_sym_DASH_EQ] = ACTIONS(4746), + [anon_sym_STAR_EQ] = ACTIONS(4746), + [anon_sym_SLASH_EQ] = ACTIONS(4746), + [anon_sym_AMP_EQ] = ACTIONS(4746), + [anon_sym_PIPE_EQ] = ACTIONS(4748), + [anon_sym_xor_EQ] = ACTIONS(4746), + [anon_sym_LT_LT_EQ] = ACTIONS(4746), + [anon_sym_GT_GT_EQ] = ACTIONS(4746), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4748), + [anon_sym_yield] = ACTIONS(4748), + [anon_sym_break] = ACTIONS(4748), + [anon_sym_continue] = ACTIONS(4748), + [anon_sym_defer] = ACTIONS(4748), + [anon_sym_errdefer] = ACTIONS(4748), + [anon_sym_if] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_while] = ACTIONS(4748), + [anon_sym_expand] = ACTIONS(4748), + [anon_sym_for] = ACTIONS(4748), + [anon_sym_PIPE2] = ACTIONS(4746), + [anon_sym_match] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4746), + [anon_sym_orelse] = ACTIONS(4748), + [anon_sym_or] = ACTIONS(4748), + [anon_sym_and] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_LT] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4746), + [anon_sym_AMP] = ACTIONS(4748), + [anon_sym_xor] = ACTIONS(4748), + [anon_sym_LT_LT] = ACTIONS(4748), + [anon_sym_GT_GT] = ACTIONS(4748), + [anon_sym_LT_LT_PIPE] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4748), + [anon_sym_SLASH] = ACTIONS(4748), + [anon_sym_catch] = ACTIONS(4748), + [anon_sym_TILDE] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_CARET] = ACTIONS(4746), + [anon_sym_true] = ACTIONS(4748), + [anon_sym_false] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4748), + [anon_sym_unreachable] = ACTIONS(4748), + [anon_sym_undefined] = ACTIONS(4748), + [sym_sink] = ACTIONS(4748), + [sym_integer] = ACTIONS(4748), + [sym_float] = ACTIONS(4746), + [anon_sym_DQUOTE] = ACTIONS(4746), + [sym_multiline_string] = ACTIONS(4746), + [sym_character] = ACTIONS(4746), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4746), + }, + [STATE(3601)] = { + [sym_identifier] = ACTIONS(4752), + [anon_sym_func] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4752), + [anon_sym_EQ] = ACTIONS(4752), + [anon_sym_struct] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4752), + [anon_sym_DOLLAR] = ACTIONS(4750), + [anon_sym_PIPE] = ACTIONS(4752), + [anon_sym_QMARK] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(4750), + [anon_sym_void] = ACTIONS(4752), + [anon_sym_noreturn] = ACTIONS(4752), + [anon_sym_type] = ACTIONS(4752), + [anon_sym_anyopaque] = ACTIONS(4752), + [anon_sym_bool] = ACTIONS(4752), + [anon_sym_int] = ACTIONS(4752), + [anon_sym_uint] = ACTIONS(4752), + [anon_sym_float] = ACTIONS(4752), + [anon_sym_range] = ACTIONS(4752), + [anon_sym_i8] = ACTIONS(4752), + [anon_sym_i16] = ACTIONS(4752), + [anon_sym_i32] = ACTIONS(4752), + [anon_sym_i64] = ACTIONS(4752), + [anon_sym_u8] = ACTIONS(4752), + [anon_sym_u16] = ACTIONS(4752), + [anon_sym_u32] = ACTIONS(4752), + [anon_sym_u64] = ACTIONS(4752), + [anon_sym_isize] = ACTIONS(4752), + [anon_sym_usize] = ACTIONS(4752), + [anon_sym_f32] = ACTIONS(4752), + [anon_sym_f64] = ACTIONS(4752), + [anon_sym_c_char] = ACTIONS(4752), + [anon_sym_c_schar] = ACTIONS(4752), + [anon_sym_c_uchar] = ACTIONS(4752), + [anon_sym_c_short] = ACTIONS(4752), + [anon_sym_c_ushort] = ACTIONS(4752), + [anon_sym_c_int] = ACTIONS(4752), + [anon_sym_c_uint] = ACTIONS(4752), + [anon_sym_c_long] = ACTIONS(4752), + [anon_sym_c_ulong] = ACTIONS(4752), + [anon_sym_c_longlong] = ACTIONS(4752), + [anon_sym_c_ulonglong] = ACTIONS(4752), + [anon_sym_c_float] = ACTIONS(4752), + [anon_sym_c_double] = ACTIONS(4752), + [anon_sym_c_longdouble] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4750), + [anon_sym_DASH_EQ] = ACTIONS(4750), + [anon_sym_STAR_EQ] = ACTIONS(4750), + [anon_sym_SLASH_EQ] = ACTIONS(4750), + [anon_sym_AMP_EQ] = ACTIONS(4750), + [anon_sym_PIPE_EQ] = ACTIONS(4752), + [anon_sym_xor_EQ] = ACTIONS(4750), + [anon_sym_LT_LT_EQ] = ACTIONS(4750), + [anon_sym_GT_GT_EQ] = ACTIONS(4750), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4752), + [anon_sym_yield] = ACTIONS(4752), + [anon_sym_break] = ACTIONS(4752), + [anon_sym_continue] = ACTIONS(4752), + [anon_sym_defer] = ACTIONS(4752), + [anon_sym_errdefer] = ACTIONS(4752), + [anon_sym_if] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4752), + [anon_sym_while] = ACTIONS(4752), + [anon_sym_expand] = ACTIONS(4752), + [anon_sym_for] = ACTIONS(4752), + [anon_sym_PIPE2] = ACTIONS(4750), + [anon_sym_match] = ACTIONS(4752), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4750), + [anon_sym_orelse] = ACTIONS(4752), + [anon_sym_or] = ACTIONS(4752), + [anon_sym_and] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_LT] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4750), + [anon_sym_AMP] = ACTIONS(4752), + [anon_sym_xor] = ACTIONS(4752), + [anon_sym_LT_LT] = ACTIONS(4752), + [anon_sym_GT_GT] = ACTIONS(4752), + [anon_sym_LT_LT_PIPE] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4752), + [anon_sym_SLASH] = ACTIONS(4752), + [anon_sym_catch] = ACTIONS(4752), + [anon_sym_TILDE] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4752), + [anon_sym_CARET] = ACTIONS(4750), + [anon_sym_true] = ACTIONS(4752), + [anon_sym_false] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4752), + [anon_sym_unreachable] = ACTIONS(4752), + [anon_sym_undefined] = ACTIONS(4752), + [sym_sink] = ACTIONS(4752), + [sym_integer] = ACTIONS(4752), + [sym_float] = ACTIONS(4750), + [anon_sym_DQUOTE] = ACTIONS(4750), + [sym_multiline_string] = ACTIONS(4750), + [sym_character] = ACTIONS(4750), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4750), + }, + [STATE(3602)] = { + [sym_identifier] = ACTIONS(4756), + [anon_sym_func] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_struct] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_QMARK] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4754), + [anon_sym_void] = ACTIONS(4756), + [anon_sym_noreturn] = ACTIONS(4756), + [anon_sym_type] = ACTIONS(4756), + [anon_sym_anyopaque] = ACTIONS(4756), + [anon_sym_bool] = ACTIONS(4756), + [anon_sym_int] = ACTIONS(4756), + [anon_sym_uint] = ACTIONS(4756), + [anon_sym_float] = ACTIONS(4756), + [anon_sym_range] = ACTIONS(4756), + [anon_sym_i8] = ACTIONS(4756), + [anon_sym_i16] = ACTIONS(4756), + [anon_sym_i32] = ACTIONS(4756), + [anon_sym_i64] = ACTIONS(4756), + [anon_sym_u8] = ACTIONS(4756), + [anon_sym_u16] = ACTIONS(4756), + [anon_sym_u32] = ACTIONS(4756), + [anon_sym_u64] = ACTIONS(4756), + [anon_sym_isize] = ACTIONS(4756), + [anon_sym_usize] = ACTIONS(4756), + [anon_sym_f32] = ACTIONS(4756), + [anon_sym_f64] = ACTIONS(4756), + [anon_sym_c_char] = ACTIONS(4756), + [anon_sym_c_schar] = ACTIONS(4756), + [anon_sym_c_uchar] = ACTIONS(4756), + [anon_sym_c_short] = ACTIONS(4756), + [anon_sym_c_ushort] = ACTIONS(4756), + [anon_sym_c_int] = ACTIONS(4756), + [anon_sym_c_uint] = ACTIONS(4756), + [anon_sym_c_long] = ACTIONS(4756), + [anon_sym_c_ulong] = ACTIONS(4756), + [anon_sym_c_longlong] = ACTIONS(4756), + [anon_sym_c_ulonglong] = ACTIONS(4756), + [anon_sym_c_float] = ACTIONS(4756), + [anon_sym_c_double] = ACTIONS(4756), + [anon_sym_c_longdouble] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4754), + [anon_sym_DASH_EQ] = ACTIONS(4754), + [anon_sym_STAR_EQ] = ACTIONS(4754), + [anon_sym_SLASH_EQ] = ACTIONS(4754), + [anon_sym_AMP_EQ] = ACTIONS(4754), + [anon_sym_PIPE_EQ] = ACTIONS(4756), + [anon_sym_xor_EQ] = ACTIONS(4754), + [anon_sym_LT_LT_EQ] = ACTIONS(4754), + [anon_sym_GT_GT_EQ] = ACTIONS(4754), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4756), + [anon_sym_yield] = ACTIONS(4756), + [anon_sym_break] = ACTIONS(4756), + [anon_sym_continue] = ACTIONS(4756), + [anon_sym_defer] = ACTIONS(4756), + [anon_sym_errdefer] = ACTIONS(4756), + [anon_sym_if] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4756), + [anon_sym_while] = ACTIONS(4756), + [anon_sym_expand] = ACTIONS(4756), + [anon_sym_for] = ACTIONS(4756), + [anon_sym_PIPE2] = ACTIONS(4754), + [anon_sym_match] = ACTIONS(4756), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4754), + [anon_sym_orelse] = ACTIONS(4756), + [anon_sym_or] = ACTIONS(4756), + [anon_sym_and] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + [anon_sym_xor] = ACTIONS(4756), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4756), + [anon_sym_LT_LT_PIPE] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4756), + [anon_sym_SLASH] = ACTIONS(4756), + [anon_sym_catch] = ACTIONS(4756), + [anon_sym_TILDE] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4756), + [anon_sym_CARET] = ACTIONS(4754), + [anon_sym_true] = ACTIONS(4756), + [anon_sym_false] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4756), + [anon_sym_unreachable] = ACTIONS(4756), + [anon_sym_undefined] = ACTIONS(4756), + [sym_sink] = ACTIONS(4756), + [sym_integer] = ACTIONS(4756), + [sym_float] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [sym_multiline_string] = ACTIONS(4754), + [sym_character] = ACTIONS(4754), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4754), + }, + [STATE(3603)] = { + [sym_identifier] = ACTIONS(4760), + [anon_sym_func] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4760), + [anon_sym_EQ] = ACTIONS(4760), + [anon_sym_struct] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4760), + [anon_sym_DOLLAR] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4760), + [anon_sym_QMARK] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_void] = ACTIONS(4760), + [anon_sym_noreturn] = ACTIONS(4760), + [anon_sym_type] = ACTIONS(4760), + [anon_sym_anyopaque] = ACTIONS(4760), + [anon_sym_bool] = ACTIONS(4760), + [anon_sym_int] = ACTIONS(4760), + [anon_sym_uint] = ACTIONS(4760), + [anon_sym_float] = ACTIONS(4760), + [anon_sym_range] = ACTIONS(4760), + [anon_sym_i8] = ACTIONS(4760), + [anon_sym_i16] = ACTIONS(4760), + [anon_sym_i32] = ACTIONS(4760), + [anon_sym_i64] = ACTIONS(4760), + [anon_sym_u8] = ACTIONS(4760), + [anon_sym_u16] = ACTIONS(4760), + [anon_sym_u32] = ACTIONS(4760), + [anon_sym_u64] = ACTIONS(4760), + [anon_sym_isize] = ACTIONS(4760), + [anon_sym_usize] = ACTIONS(4760), + [anon_sym_f32] = ACTIONS(4760), + [anon_sym_f64] = ACTIONS(4760), + [anon_sym_c_char] = ACTIONS(4760), + [anon_sym_c_schar] = ACTIONS(4760), + [anon_sym_c_uchar] = ACTIONS(4760), + [anon_sym_c_short] = ACTIONS(4760), + [anon_sym_c_ushort] = ACTIONS(4760), + [anon_sym_c_int] = ACTIONS(4760), + [anon_sym_c_uint] = ACTIONS(4760), + [anon_sym_c_long] = ACTIONS(4760), + [anon_sym_c_ulong] = ACTIONS(4760), + [anon_sym_c_longlong] = ACTIONS(4760), + [anon_sym_c_ulonglong] = ACTIONS(4760), + [anon_sym_c_float] = ACTIONS(4760), + [anon_sym_c_double] = ACTIONS(4760), + [anon_sym_c_longdouble] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4758), + [anon_sym_DASH_EQ] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(4758), + [anon_sym_SLASH_EQ] = ACTIONS(4758), + [anon_sym_AMP_EQ] = ACTIONS(4758), + [anon_sym_PIPE_EQ] = ACTIONS(4760), + [anon_sym_xor_EQ] = ACTIONS(4758), + [anon_sym_LT_LT_EQ] = ACTIONS(4758), + [anon_sym_GT_GT_EQ] = ACTIONS(4758), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4760), + [anon_sym_yield] = ACTIONS(4760), + [anon_sym_break] = ACTIONS(4760), + [anon_sym_continue] = ACTIONS(4760), + [anon_sym_defer] = ACTIONS(4760), + [anon_sym_errdefer] = ACTIONS(4760), + [anon_sym_if] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4760), + [anon_sym_while] = ACTIONS(4760), + [anon_sym_expand] = ACTIONS(4760), + [anon_sym_for] = ACTIONS(4760), + [anon_sym_PIPE2] = ACTIONS(4758), + [anon_sym_match] = ACTIONS(4760), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4758), + [anon_sym_orelse] = ACTIONS(4760), + [anon_sym_or] = ACTIONS(4760), + [anon_sym_and] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4758), + [anon_sym_AMP] = ACTIONS(4760), + [anon_sym_xor] = ACTIONS(4760), + [anon_sym_LT_LT] = ACTIONS(4760), + [anon_sym_GT_GT] = ACTIONS(4760), + [anon_sym_LT_LT_PIPE] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_catch] = ACTIONS(4760), + [anon_sym_TILDE] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4760), + [anon_sym_CARET] = ACTIONS(4758), + [anon_sym_true] = ACTIONS(4760), + [anon_sym_false] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4760), + [anon_sym_unreachable] = ACTIONS(4760), + [anon_sym_undefined] = ACTIONS(4760), + [sym_sink] = ACTIONS(4760), + [sym_integer] = ACTIONS(4760), + [sym_float] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [sym_multiline_string] = ACTIONS(4758), + [sym_character] = ACTIONS(4758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4758), + }, + [STATE(3604)] = { + [sym_identifier] = ACTIONS(4764), + [anon_sym_func] = ACTIONS(4764), + [anon_sym_BANG] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4764), + [anon_sym_struct] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4764), + [anon_sym_DOLLAR] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4764), + [anon_sym_QMARK] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4762), + [anon_sym_void] = ACTIONS(4764), + [anon_sym_noreturn] = ACTIONS(4764), + [anon_sym_type] = ACTIONS(4764), + [anon_sym_anyopaque] = ACTIONS(4764), + [anon_sym_bool] = ACTIONS(4764), + [anon_sym_int] = ACTIONS(4764), + [anon_sym_uint] = ACTIONS(4764), + [anon_sym_float] = ACTIONS(4764), + [anon_sym_range] = ACTIONS(4764), + [anon_sym_i8] = ACTIONS(4764), + [anon_sym_i16] = ACTIONS(4764), + [anon_sym_i32] = ACTIONS(4764), + [anon_sym_i64] = ACTIONS(4764), + [anon_sym_u8] = ACTIONS(4764), + [anon_sym_u16] = ACTIONS(4764), + [anon_sym_u32] = ACTIONS(4764), + [anon_sym_u64] = ACTIONS(4764), + [anon_sym_isize] = ACTIONS(4764), + [anon_sym_usize] = ACTIONS(4764), + [anon_sym_f32] = ACTIONS(4764), + [anon_sym_f64] = ACTIONS(4764), + [anon_sym_c_char] = ACTIONS(4764), + [anon_sym_c_schar] = ACTIONS(4764), + [anon_sym_c_uchar] = ACTIONS(4764), + [anon_sym_c_short] = ACTIONS(4764), + [anon_sym_c_ushort] = ACTIONS(4764), + [anon_sym_c_int] = ACTIONS(4764), + [anon_sym_c_uint] = ACTIONS(4764), + [anon_sym_c_long] = ACTIONS(4764), + [anon_sym_c_ulong] = ACTIONS(4764), + [anon_sym_c_longlong] = ACTIONS(4764), + [anon_sym_c_ulonglong] = ACTIONS(4764), + [anon_sym_c_float] = ACTIONS(4764), + [anon_sym_c_double] = ACTIONS(4764), + [anon_sym_c_longdouble] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4762), + [anon_sym_DASH_EQ] = ACTIONS(4762), + [anon_sym_STAR_EQ] = ACTIONS(4762), + [anon_sym_SLASH_EQ] = ACTIONS(4762), + [anon_sym_AMP_EQ] = ACTIONS(4762), + [anon_sym_PIPE_EQ] = ACTIONS(4764), + [anon_sym_xor_EQ] = ACTIONS(4762), + [anon_sym_LT_LT_EQ] = ACTIONS(4762), + [anon_sym_GT_GT_EQ] = ACTIONS(4762), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4764), + [anon_sym_yield] = ACTIONS(4764), + [anon_sym_break] = ACTIONS(4764), + [anon_sym_continue] = ACTIONS(4764), + [anon_sym_defer] = ACTIONS(4764), + [anon_sym_errdefer] = ACTIONS(4764), + [anon_sym_if] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4764), + [anon_sym_while] = ACTIONS(4764), + [anon_sym_expand] = ACTIONS(4764), + [anon_sym_for] = ACTIONS(4764), + [anon_sym_PIPE2] = ACTIONS(4762), + [anon_sym_match] = ACTIONS(4764), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4762), + [anon_sym_orelse] = ACTIONS(4764), + [anon_sym_or] = ACTIONS(4764), + [anon_sym_and] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4764), + [anon_sym_xor] = ACTIONS(4764), + [anon_sym_LT_LT] = ACTIONS(4764), + [anon_sym_GT_GT] = ACTIONS(4764), + [anon_sym_LT_LT_PIPE] = ACTIONS(4764), + [anon_sym_PLUS] = ACTIONS(4764), + [anon_sym_SLASH] = ACTIONS(4764), + [anon_sym_catch] = ACTIONS(4764), + [anon_sym_TILDE] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4764), + [anon_sym_CARET] = ACTIONS(4762), + [anon_sym_true] = ACTIONS(4764), + [anon_sym_false] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(4764), + [anon_sym_unreachable] = ACTIONS(4764), + [anon_sym_undefined] = ACTIONS(4764), + [sym_sink] = ACTIONS(4764), + [sym_integer] = ACTIONS(4764), + [sym_float] = ACTIONS(4762), + [anon_sym_DQUOTE] = ACTIONS(4762), + [sym_multiline_string] = ACTIONS(4762), + [sym_character] = ACTIONS(4762), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4762), + }, + [STATE(3605)] = { + [sym_identifier] = ACTIONS(4768), + [anon_sym_func] = ACTIONS(4768), + [anon_sym_BANG] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_struct] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4768), + [anon_sym_QMARK] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_void] = ACTIONS(4768), + [anon_sym_noreturn] = ACTIONS(4768), + [anon_sym_type] = ACTIONS(4768), + [anon_sym_anyopaque] = ACTIONS(4768), + [anon_sym_bool] = ACTIONS(4768), + [anon_sym_int] = ACTIONS(4768), + [anon_sym_uint] = ACTIONS(4768), + [anon_sym_float] = ACTIONS(4768), + [anon_sym_range] = ACTIONS(4768), + [anon_sym_i8] = ACTIONS(4768), + [anon_sym_i16] = ACTIONS(4768), + [anon_sym_i32] = ACTIONS(4768), + [anon_sym_i64] = ACTIONS(4768), + [anon_sym_u8] = ACTIONS(4768), + [anon_sym_u16] = ACTIONS(4768), + [anon_sym_u32] = ACTIONS(4768), + [anon_sym_u64] = ACTIONS(4768), + [anon_sym_isize] = ACTIONS(4768), + [anon_sym_usize] = ACTIONS(4768), + [anon_sym_f32] = ACTIONS(4768), + [anon_sym_f64] = ACTIONS(4768), + [anon_sym_c_char] = ACTIONS(4768), + [anon_sym_c_schar] = ACTIONS(4768), + [anon_sym_c_uchar] = ACTIONS(4768), + [anon_sym_c_short] = ACTIONS(4768), + [anon_sym_c_ushort] = ACTIONS(4768), + [anon_sym_c_int] = ACTIONS(4768), + [anon_sym_c_uint] = ACTIONS(4768), + [anon_sym_c_long] = ACTIONS(4768), + [anon_sym_c_ulong] = ACTIONS(4768), + [anon_sym_c_longlong] = ACTIONS(4768), + [anon_sym_c_ulonglong] = ACTIONS(4768), + [anon_sym_c_float] = ACTIONS(4768), + [anon_sym_c_double] = ACTIONS(4768), + [anon_sym_c_longdouble] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4766), + [anon_sym_DASH_EQ] = ACTIONS(4766), + [anon_sym_STAR_EQ] = ACTIONS(4766), + [anon_sym_SLASH_EQ] = ACTIONS(4766), + [anon_sym_AMP_EQ] = ACTIONS(4766), + [anon_sym_PIPE_EQ] = ACTIONS(4768), + [anon_sym_xor_EQ] = ACTIONS(4766), + [anon_sym_LT_LT_EQ] = ACTIONS(4766), + [anon_sym_GT_GT_EQ] = ACTIONS(4766), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4766), + [anon_sym_return] = ACTIONS(4768), + [anon_sym_yield] = ACTIONS(4768), + [anon_sym_break] = ACTIONS(4768), + [anon_sym_continue] = ACTIONS(4768), + [anon_sym_defer] = ACTIONS(4768), + [anon_sym_errdefer] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_while] = ACTIONS(4768), + [anon_sym_expand] = ACTIONS(4768), + [anon_sym_for] = ACTIONS(4768), + [anon_sym_PIPE2] = ACTIONS(4766), + [anon_sym_match] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4766), + [anon_sym_orelse] = ACTIONS(4768), + [anon_sym_or] = ACTIONS(4768), + [anon_sym_and] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4766), + [anon_sym_AMP] = ACTIONS(4768), + [anon_sym_xor] = ACTIONS(4768), + [anon_sym_LT_LT] = ACTIONS(4768), + [anon_sym_GT_GT] = ACTIONS(4768), + [anon_sym_LT_LT_PIPE] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4768), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_catch] = ACTIONS(4768), + [anon_sym_TILDE] = ACTIONS(4766), + [anon_sym_try] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_CARET] = ACTIONS(4766), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_unreachable] = ACTIONS(4768), + [anon_sym_undefined] = ACTIONS(4768), + [sym_sink] = ACTIONS(4768), + [sym_integer] = ACTIONS(4768), + [sym_float] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [sym_multiline_string] = ACTIONS(4766), + [sym_character] = ACTIONS(4766), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4766), + }, + [STATE(3606)] = { + [sym_identifier] = ACTIONS(4772), + [anon_sym_func] = ACTIONS(4772), + [anon_sym_BANG] = ACTIONS(4772), + [anon_sym_EQ] = ACTIONS(4772), + [anon_sym_struct] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4772), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4772), + [anon_sym_QMARK] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_void] = ACTIONS(4772), + [anon_sym_noreturn] = ACTIONS(4772), + [anon_sym_type] = ACTIONS(4772), + [anon_sym_anyopaque] = ACTIONS(4772), + [anon_sym_bool] = ACTIONS(4772), + [anon_sym_int] = ACTIONS(4772), + [anon_sym_uint] = ACTIONS(4772), + [anon_sym_float] = ACTIONS(4772), + [anon_sym_range] = ACTIONS(4772), + [anon_sym_i8] = ACTIONS(4772), + [anon_sym_i16] = ACTIONS(4772), + [anon_sym_i32] = ACTIONS(4772), + [anon_sym_i64] = ACTIONS(4772), + [anon_sym_u8] = ACTIONS(4772), + [anon_sym_u16] = ACTIONS(4772), + [anon_sym_u32] = ACTIONS(4772), + [anon_sym_u64] = ACTIONS(4772), + [anon_sym_isize] = ACTIONS(4772), + [anon_sym_usize] = ACTIONS(4772), + [anon_sym_f32] = ACTIONS(4772), + [anon_sym_f64] = ACTIONS(4772), + [anon_sym_c_char] = ACTIONS(4772), + [anon_sym_c_schar] = ACTIONS(4772), + [anon_sym_c_uchar] = ACTIONS(4772), + [anon_sym_c_short] = ACTIONS(4772), + [anon_sym_c_ushort] = ACTIONS(4772), + [anon_sym_c_int] = ACTIONS(4772), + [anon_sym_c_uint] = ACTIONS(4772), + [anon_sym_c_long] = ACTIONS(4772), + [anon_sym_c_ulong] = ACTIONS(4772), + [anon_sym_c_longlong] = ACTIONS(4772), + [anon_sym_c_ulonglong] = ACTIONS(4772), + [anon_sym_c_float] = ACTIONS(4772), + [anon_sym_c_double] = ACTIONS(4772), + [anon_sym_c_longdouble] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4770), + [anon_sym_DASH_EQ] = ACTIONS(4770), + [anon_sym_STAR_EQ] = ACTIONS(4770), + [anon_sym_SLASH_EQ] = ACTIONS(4770), + [anon_sym_AMP_EQ] = ACTIONS(4770), + [anon_sym_PIPE_EQ] = ACTIONS(4772), + [anon_sym_xor_EQ] = ACTIONS(4770), + [anon_sym_LT_LT_EQ] = ACTIONS(4770), + [anon_sym_GT_GT_EQ] = ACTIONS(4770), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4770), + [anon_sym_return] = ACTIONS(4772), + [anon_sym_yield] = ACTIONS(4772), + [anon_sym_break] = ACTIONS(4772), + [anon_sym_continue] = ACTIONS(4772), + [anon_sym_defer] = ACTIONS(4772), + [anon_sym_errdefer] = ACTIONS(4772), + [anon_sym_if] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4772), + [anon_sym_while] = ACTIONS(4772), + [anon_sym_expand] = ACTIONS(4772), + [anon_sym_for] = ACTIONS(4772), + [anon_sym_PIPE2] = ACTIONS(4770), + [anon_sym_match] = ACTIONS(4772), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4770), + [anon_sym_orelse] = ACTIONS(4772), + [anon_sym_or] = ACTIONS(4772), + [anon_sym_and] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_AMP] = ACTIONS(4772), + [anon_sym_xor] = ACTIONS(4772), + [anon_sym_LT_LT] = ACTIONS(4772), + [anon_sym_GT_GT] = ACTIONS(4772), + [anon_sym_LT_LT_PIPE] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4772), + [anon_sym_SLASH] = ACTIONS(4772), + [anon_sym_catch] = ACTIONS(4772), + [anon_sym_TILDE] = ACTIONS(4770), + [anon_sym_try] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4772), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym_true] = ACTIONS(4772), + [anon_sym_false] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(4772), + [anon_sym_unreachable] = ACTIONS(4772), + [anon_sym_undefined] = ACTIONS(4772), + [sym_sink] = ACTIONS(4772), + [sym_integer] = ACTIONS(4772), + [sym_float] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [sym_multiline_string] = ACTIONS(4770), + [sym_character] = ACTIONS(4770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4770), + }, + [STATE(3607)] = { + [sym_identifier] = ACTIONS(4776), + [anon_sym_func] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4776), + [anon_sym_struct] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4776), + [anon_sym_DOLLAR] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4776), + [anon_sym_QMARK] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4774), + [anon_sym_void] = ACTIONS(4776), + [anon_sym_noreturn] = ACTIONS(4776), + [anon_sym_type] = ACTIONS(4776), + [anon_sym_anyopaque] = ACTIONS(4776), + [anon_sym_bool] = ACTIONS(4776), + [anon_sym_int] = ACTIONS(4776), + [anon_sym_uint] = ACTIONS(4776), + [anon_sym_float] = ACTIONS(4776), + [anon_sym_range] = ACTIONS(4776), + [anon_sym_i8] = ACTIONS(4776), + [anon_sym_i16] = ACTIONS(4776), + [anon_sym_i32] = ACTIONS(4776), + [anon_sym_i64] = ACTIONS(4776), + [anon_sym_u8] = ACTIONS(4776), + [anon_sym_u16] = ACTIONS(4776), + [anon_sym_u32] = ACTIONS(4776), + [anon_sym_u64] = ACTIONS(4776), + [anon_sym_isize] = ACTIONS(4776), + [anon_sym_usize] = ACTIONS(4776), + [anon_sym_f32] = ACTIONS(4776), + [anon_sym_f64] = ACTIONS(4776), + [anon_sym_c_char] = ACTIONS(4776), + [anon_sym_c_schar] = ACTIONS(4776), + [anon_sym_c_uchar] = ACTIONS(4776), + [anon_sym_c_short] = ACTIONS(4776), + [anon_sym_c_ushort] = ACTIONS(4776), + [anon_sym_c_int] = ACTIONS(4776), + [anon_sym_c_uint] = ACTIONS(4776), + [anon_sym_c_long] = ACTIONS(4776), + [anon_sym_c_ulong] = ACTIONS(4776), + [anon_sym_c_longlong] = ACTIONS(4776), + [anon_sym_c_ulonglong] = ACTIONS(4776), + [anon_sym_c_float] = ACTIONS(4776), + [anon_sym_c_double] = ACTIONS(4776), + [anon_sym_c_longdouble] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4774), + [anon_sym_DASH_EQ] = ACTIONS(4774), + [anon_sym_STAR_EQ] = ACTIONS(4774), + [anon_sym_SLASH_EQ] = ACTIONS(4774), + [anon_sym_AMP_EQ] = ACTIONS(4774), + [anon_sym_PIPE_EQ] = ACTIONS(4776), + [anon_sym_xor_EQ] = ACTIONS(4774), + [anon_sym_LT_LT_EQ] = ACTIONS(4774), + [anon_sym_GT_GT_EQ] = ACTIONS(4774), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4776), + [anon_sym_yield] = ACTIONS(4776), + [anon_sym_break] = ACTIONS(4776), + [anon_sym_continue] = ACTIONS(4776), + [anon_sym_defer] = ACTIONS(4776), + [anon_sym_errdefer] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_expand] = ACTIONS(4776), + [anon_sym_for] = ACTIONS(4776), + [anon_sym_PIPE2] = ACTIONS(4774), + [anon_sym_match] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4774), + [anon_sym_orelse] = ACTIONS(4776), + [anon_sym_or] = ACTIONS(4776), + [anon_sym_and] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4774), + [anon_sym_AMP] = ACTIONS(4776), + [anon_sym_xor] = ACTIONS(4776), + [anon_sym_LT_LT] = ACTIONS(4776), + [anon_sym_GT_GT] = ACTIONS(4776), + [anon_sym_LT_LT_PIPE] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4776), + [anon_sym_SLASH] = ACTIONS(4776), + [anon_sym_catch] = ACTIONS(4776), + [anon_sym_TILDE] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_CARET] = ACTIONS(4774), + [anon_sym_true] = ACTIONS(4776), + [anon_sym_false] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4776), + [anon_sym_unreachable] = ACTIONS(4776), + [anon_sym_undefined] = ACTIONS(4776), + [sym_sink] = ACTIONS(4776), + [sym_integer] = ACTIONS(4776), + [sym_float] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [sym_multiline_string] = ACTIONS(4774), + [sym_character] = ACTIONS(4774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4774), + }, + [STATE(3608)] = { + [sym_identifier] = ACTIONS(4780), + [anon_sym_func] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_struct] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_QMARK] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_void] = ACTIONS(4780), + [anon_sym_noreturn] = ACTIONS(4780), + [anon_sym_type] = ACTIONS(4780), + [anon_sym_anyopaque] = ACTIONS(4780), + [anon_sym_bool] = ACTIONS(4780), + [anon_sym_int] = ACTIONS(4780), + [anon_sym_uint] = ACTIONS(4780), + [anon_sym_float] = ACTIONS(4780), + [anon_sym_range] = ACTIONS(4780), + [anon_sym_i8] = ACTIONS(4780), + [anon_sym_i16] = ACTIONS(4780), + [anon_sym_i32] = ACTIONS(4780), + [anon_sym_i64] = ACTIONS(4780), + [anon_sym_u8] = ACTIONS(4780), + [anon_sym_u16] = ACTIONS(4780), + [anon_sym_u32] = ACTIONS(4780), + [anon_sym_u64] = ACTIONS(4780), + [anon_sym_isize] = ACTIONS(4780), + [anon_sym_usize] = ACTIONS(4780), + [anon_sym_f32] = ACTIONS(4780), + [anon_sym_f64] = ACTIONS(4780), + [anon_sym_c_char] = ACTIONS(4780), + [anon_sym_c_schar] = ACTIONS(4780), + [anon_sym_c_uchar] = ACTIONS(4780), + [anon_sym_c_short] = ACTIONS(4780), + [anon_sym_c_ushort] = ACTIONS(4780), + [anon_sym_c_int] = ACTIONS(4780), + [anon_sym_c_uint] = ACTIONS(4780), + [anon_sym_c_long] = ACTIONS(4780), + [anon_sym_c_ulong] = ACTIONS(4780), + [anon_sym_c_longlong] = ACTIONS(4780), + [anon_sym_c_ulonglong] = ACTIONS(4780), + [anon_sym_c_float] = ACTIONS(4780), + [anon_sym_c_double] = ACTIONS(4780), + [anon_sym_c_longdouble] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4778), + [anon_sym_DASH_EQ] = ACTIONS(4778), + [anon_sym_STAR_EQ] = ACTIONS(4778), + [anon_sym_SLASH_EQ] = ACTIONS(4778), + [anon_sym_AMP_EQ] = ACTIONS(4778), + [anon_sym_PIPE_EQ] = ACTIONS(4780), + [anon_sym_xor_EQ] = ACTIONS(4778), + [anon_sym_LT_LT_EQ] = ACTIONS(4778), + [anon_sym_GT_GT_EQ] = ACTIONS(4778), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4780), + [anon_sym_yield] = ACTIONS(4780), + [anon_sym_break] = ACTIONS(4780), + [anon_sym_continue] = ACTIONS(4780), + [anon_sym_defer] = ACTIONS(4780), + [anon_sym_errdefer] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_while] = ACTIONS(4780), + [anon_sym_expand] = ACTIONS(4780), + [anon_sym_for] = ACTIONS(4780), + [anon_sym_PIPE2] = ACTIONS(4778), + [anon_sym_match] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4778), + [anon_sym_orelse] = ACTIONS(4780), + [anon_sym_or] = ACTIONS(4780), + [anon_sym_and] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + [anon_sym_xor] = ACTIONS(4780), + [anon_sym_LT_LT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4780), + [anon_sym_LT_LT_PIPE] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4780), + [anon_sym_SLASH] = ACTIONS(4780), + [anon_sym_catch] = ACTIONS(4780), + [anon_sym_TILDE] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_CARET] = ACTIONS(4778), + [anon_sym_true] = ACTIONS(4780), + [anon_sym_false] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4780), + [anon_sym_unreachable] = ACTIONS(4780), + [anon_sym_undefined] = ACTIONS(4780), + [sym_sink] = ACTIONS(4780), + [sym_integer] = ACTIONS(4780), + [sym_float] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(4778), + [sym_multiline_string] = ACTIONS(4778), + [sym_character] = ACTIONS(4778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4778), + }, + [STATE(3609)] = { + [sym_identifier] = ACTIONS(4784), + [anon_sym_func] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_struct] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4782), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_QMARK] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_void] = ACTIONS(4784), + [anon_sym_noreturn] = ACTIONS(4784), + [anon_sym_type] = ACTIONS(4784), + [anon_sym_anyopaque] = ACTIONS(4784), + [anon_sym_bool] = ACTIONS(4784), + [anon_sym_int] = ACTIONS(4784), + [anon_sym_uint] = ACTIONS(4784), + [anon_sym_float] = ACTIONS(4784), + [anon_sym_range] = ACTIONS(4784), + [anon_sym_i8] = ACTIONS(4784), + [anon_sym_i16] = ACTIONS(4784), + [anon_sym_i32] = ACTIONS(4784), + [anon_sym_i64] = ACTIONS(4784), + [anon_sym_u8] = ACTIONS(4784), + [anon_sym_u16] = ACTIONS(4784), + [anon_sym_u32] = ACTIONS(4784), + [anon_sym_u64] = ACTIONS(4784), + [anon_sym_isize] = ACTIONS(4784), + [anon_sym_usize] = ACTIONS(4784), + [anon_sym_f32] = ACTIONS(4784), + [anon_sym_f64] = ACTIONS(4784), + [anon_sym_c_char] = ACTIONS(4784), + [anon_sym_c_schar] = ACTIONS(4784), + [anon_sym_c_uchar] = ACTIONS(4784), + [anon_sym_c_short] = ACTIONS(4784), + [anon_sym_c_ushort] = ACTIONS(4784), + [anon_sym_c_int] = ACTIONS(4784), + [anon_sym_c_uint] = ACTIONS(4784), + [anon_sym_c_long] = ACTIONS(4784), + [anon_sym_c_ulong] = ACTIONS(4784), + [anon_sym_c_longlong] = ACTIONS(4784), + [anon_sym_c_ulonglong] = ACTIONS(4784), + [anon_sym_c_float] = ACTIONS(4784), + [anon_sym_c_double] = ACTIONS(4784), + [anon_sym_c_longdouble] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4782), + [anon_sym_DASH_EQ] = ACTIONS(4782), + [anon_sym_STAR_EQ] = ACTIONS(4782), + [anon_sym_SLASH_EQ] = ACTIONS(4782), + [anon_sym_AMP_EQ] = ACTIONS(4782), + [anon_sym_PIPE_EQ] = ACTIONS(4784), + [anon_sym_xor_EQ] = ACTIONS(4782), + [anon_sym_LT_LT_EQ] = ACTIONS(4782), + [anon_sym_GT_GT_EQ] = ACTIONS(4782), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4782), + [anon_sym_return] = ACTIONS(4784), + [anon_sym_yield] = ACTIONS(4784), + [anon_sym_break] = ACTIONS(4784), + [anon_sym_continue] = ACTIONS(4784), + [anon_sym_defer] = ACTIONS(4784), + [anon_sym_errdefer] = ACTIONS(4784), + [anon_sym_if] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_while] = ACTIONS(4784), + [anon_sym_expand] = ACTIONS(4784), + [anon_sym_for] = ACTIONS(4784), + [anon_sym_PIPE2] = ACTIONS(4782), + [anon_sym_match] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4782), + [anon_sym_orelse] = ACTIONS(4784), + [anon_sym_or] = ACTIONS(4784), + [anon_sym_and] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), + [anon_sym_xor] = ACTIONS(4784), + [anon_sym_LT_LT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4784), + [anon_sym_LT_LT_PIPE] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4784), + [anon_sym_SLASH] = ACTIONS(4784), + [anon_sym_catch] = ACTIONS(4784), + [anon_sym_TILDE] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_true] = ACTIONS(4784), + [anon_sym_false] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4784), + [anon_sym_unreachable] = ACTIONS(4784), + [anon_sym_undefined] = ACTIONS(4784), + [sym_sink] = ACTIONS(4784), + [sym_integer] = ACTIONS(4784), + [sym_float] = ACTIONS(4782), + [anon_sym_DQUOTE] = ACTIONS(4782), + [sym_multiline_string] = ACTIONS(4782), + [sym_character] = ACTIONS(4782), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4782), + }, + [STATE(3610)] = { + [sym_identifier] = ACTIONS(4788), + [anon_sym_func] = ACTIONS(4788), + [anon_sym_BANG] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_struct] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_DOLLAR] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4788), + [anon_sym_QMARK] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_void] = ACTIONS(4788), + [anon_sym_noreturn] = ACTIONS(4788), + [anon_sym_type] = ACTIONS(4788), + [anon_sym_anyopaque] = ACTIONS(4788), + [anon_sym_bool] = ACTIONS(4788), + [anon_sym_int] = ACTIONS(4788), + [anon_sym_uint] = ACTIONS(4788), + [anon_sym_float] = ACTIONS(4788), + [anon_sym_range] = ACTIONS(4788), + [anon_sym_i8] = ACTIONS(4788), + [anon_sym_i16] = ACTIONS(4788), + [anon_sym_i32] = ACTIONS(4788), + [anon_sym_i64] = ACTIONS(4788), + [anon_sym_u8] = ACTIONS(4788), + [anon_sym_u16] = ACTIONS(4788), + [anon_sym_u32] = ACTIONS(4788), + [anon_sym_u64] = ACTIONS(4788), + [anon_sym_isize] = ACTIONS(4788), + [anon_sym_usize] = ACTIONS(4788), + [anon_sym_f32] = ACTIONS(4788), + [anon_sym_f64] = ACTIONS(4788), + [anon_sym_c_char] = ACTIONS(4788), + [anon_sym_c_schar] = ACTIONS(4788), + [anon_sym_c_uchar] = ACTIONS(4788), + [anon_sym_c_short] = ACTIONS(4788), + [anon_sym_c_ushort] = ACTIONS(4788), + [anon_sym_c_int] = ACTIONS(4788), + [anon_sym_c_uint] = ACTIONS(4788), + [anon_sym_c_long] = ACTIONS(4788), + [anon_sym_c_ulong] = ACTIONS(4788), + [anon_sym_c_longlong] = ACTIONS(4788), + [anon_sym_c_ulonglong] = ACTIONS(4788), + [anon_sym_c_float] = ACTIONS(4788), + [anon_sym_c_double] = ACTIONS(4788), + [anon_sym_c_longdouble] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4786), + [anon_sym_DASH_EQ] = ACTIONS(4786), + [anon_sym_STAR_EQ] = ACTIONS(4786), + [anon_sym_SLASH_EQ] = ACTIONS(4786), + [anon_sym_AMP_EQ] = ACTIONS(4786), + [anon_sym_PIPE_EQ] = ACTIONS(4788), + [anon_sym_xor_EQ] = ACTIONS(4786), + [anon_sym_LT_LT_EQ] = ACTIONS(4786), + [anon_sym_GT_GT_EQ] = ACTIONS(4786), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4786), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_yield] = ACTIONS(4788), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_defer] = ACTIONS(4788), + [anon_sym_errdefer] = ACTIONS(4788), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_while] = ACTIONS(4788), + [anon_sym_expand] = ACTIONS(4788), + [anon_sym_for] = ACTIONS(4788), + [anon_sym_PIPE2] = ACTIONS(4786), + [anon_sym_match] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4786), + [anon_sym_orelse] = ACTIONS(4788), + [anon_sym_or] = ACTIONS(4788), + [anon_sym_and] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_AMP] = ACTIONS(4788), + [anon_sym_xor] = ACTIONS(4788), + [anon_sym_LT_LT] = ACTIONS(4788), + [anon_sym_GT_GT] = ACTIONS(4788), + [anon_sym_LT_LT_PIPE] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_catch] = ACTIONS(4788), + [anon_sym_TILDE] = ACTIONS(4786), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_CARET] = ACTIONS(4786), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4788), + [anon_sym_unreachable] = ACTIONS(4788), + [anon_sym_undefined] = ACTIONS(4788), + [sym_sink] = ACTIONS(4788), + [sym_integer] = ACTIONS(4788), + [sym_float] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [sym_multiline_string] = ACTIONS(4786), + [sym_character] = ACTIONS(4786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4786), + }, + [STATE(3611)] = { + [sym_identifier] = ACTIONS(4792), + [anon_sym_func] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_struct] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_void] = ACTIONS(4792), + [anon_sym_noreturn] = ACTIONS(4792), + [anon_sym_type] = ACTIONS(4792), + [anon_sym_anyopaque] = ACTIONS(4792), + [anon_sym_bool] = ACTIONS(4792), + [anon_sym_int] = ACTIONS(4792), + [anon_sym_uint] = ACTIONS(4792), + [anon_sym_float] = ACTIONS(4792), + [anon_sym_range] = ACTIONS(4792), + [anon_sym_i8] = ACTIONS(4792), + [anon_sym_i16] = ACTIONS(4792), + [anon_sym_i32] = ACTIONS(4792), + [anon_sym_i64] = ACTIONS(4792), + [anon_sym_u8] = ACTIONS(4792), + [anon_sym_u16] = ACTIONS(4792), + [anon_sym_u32] = ACTIONS(4792), + [anon_sym_u64] = ACTIONS(4792), + [anon_sym_isize] = ACTIONS(4792), + [anon_sym_usize] = ACTIONS(4792), + [anon_sym_f32] = ACTIONS(4792), + [anon_sym_f64] = ACTIONS(4792), + [anon_sym_c_char] = ACTIONS(4792), + [anon_sym_c_schar] = ACTIONS(4792), + [anon_sym_c_uchar] = ACTIONS(4792), + [anon_sym_c_short] = ACTIONS(4792), + [anon_sym_c_ushort] = ACTIONS(4792), + [anon_sym_c_int] = ACTIONS(4792), + [anon_sym_c_uint] = ACTIONS(4792), + [anon_sym_c_long] = ACTIONS(4792), + [anon_sym_c_ulong] = ACTIONS(4792), + [anon_sym_c_longlong] = ACTIONS(4792), + [anon_sym_c_ulonglong] = ACTIONS(4792), + [anon_sym_c_float] = ACTIONS(4792), + [anon_sym_c_double] = ACTIONS(4792), + [anon_sym_c_longdouble] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_AMP_EQ] = ACTIONS(4790), + [anon_sym_PIPE_EQ] = ACTIONS(4792), + [anon_sym_xor_EQ] = ACTIONS(4790), + [anon_sym_LT_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_GT_EQ] = ACTIONS(4790), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4790), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_yield] = ACTIONS(4792), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_defer] = ACTIONS(4792), + [anon_sym_errdefer] = ACTIONS(4792), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_while] = ACTIONS(4792), + [anon_sym_expand] = ACTIONS(4792), + [anon_sym_for] = ACTIONS(4792), + [anon_sym_PIPE2] = ACTIONS(4790), + [anon_sym_match] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4790), + [anon_sym_orelse] = ACTIONS(4792), + [anon_sym_or] = ACTIONS(4792), + [anon_sym_and] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + [anon_sym_xor] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_LT_LT_PIPE] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_catch] = ACTIONS(4792), + [anon_sym_TILDE] = ACTIONS(4790), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_CARET] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4792), + [anon_sym_unreachable] = ACTIONS(4792), + [anon_sym_undefined] = ACTIONS(4792), + [sym_sink] = ACTIONS(4792), + [sym_integer] = ACTIONS(4792), + [sym_float] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4790), + [sym_multiline_string] = ACTIONS(4790), + [sym_character] = ACTIONS(4790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4790), + }, + [STATE(3612)] = { + [sym_identifier] = ACTIONS(4796), + [anon_sym_func] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_struct] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4794), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_QMARK] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_void] = ACTIONS(4796), + [anon_sym_noreturn] = ACTIONS(4796), + [anon_sym_type] = ACTIONS(4796), + [anon_sym_anyopaque] = ACTIONS(4796), + [anon_sym_bool] = ACTIONS(4796), + [anon_sym_int] = ACTIONS(4796), + [anon_sym_uint] = ACTIONS(4796), + [anon_sym_float] = ACTIONS(4796), + [anon_sym_range] = ACTIONS(4796), + [anon_sym_i8] = ACTIONS(4796), + [anon_sym_i16] = ACTIONS(4796), + [anon_sym_i32] = ACTIONS(4796), + [anon_sym_i64] = ACTIONS(4796), + [anon_sym_u8] = ACTIONS(4796), + [anon_sym_u16] = ACTIONS(4796), + [anon_sym_u32] = ACTIONS(4796), + [anon_sym_u64] = ACTIONS(4796), + [anon_sym_isize] = ACTIONS(4796), + [anon_sym_usize] = ACTIONS(4796), + [anon_sym_f32] = ACTIONS(4796), + [anon_sym_f64] = ACTIONS(4796), + [anon_sym_c_char] = ACTIONS(4796), + [anon_sym_c_schar] = ACTIONS(4796), + [anon_sym_c_uchar] = ACTIONS(4796), + [anon_sym_c_short] = ACTIONS(4796), + [anon_sym_c_ushort] = ACTIONS(4796), + [anon_sym_c_int] = ACTIONS(4796), + [anon_sym_c_uint] = ACTIONS(4796), + [anon_sym_c_long] = ACTIONS(4796), + [anon_sym_c_ulong] = ACTIONS(4796), + [anon_sym_c_longlong] = ACTIONS(4796), + [anon_sym_c_ulonglong] = ACTIONS(4796), + [anon_sym_c_float] = ACTIONS(4796), + [anon_sym_c_double] = ACTIONS(4796), + [anon_sym_c_longdouble] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_AMP_EQ] = ACTIONS(4794), + [anon_sym_PIPE_EQ] = ACTIONS(4796), + [anon_sym_xor_EQ] = ACTIONS(4794), + [anon_sym_LT_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_GT_EQ] = ACTIONS(4794), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_yield] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_defer] = ACTIONS(4796), + [anon_sym_errdefer] = ACTIONS(4796), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_expand] = ACTIONS(4796), + [anon_sym_for] = ACTIONS(4796), + [anon_sym_PIPE2] = ACTIONS(4794), + [anon_sym_match] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4794), + [anon_sym_orelse] = ACTIONS(4796), + [anon_sym_or] = ACTIONS(4796), + [anon_sym_and] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + [anon_sym_xor] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_LT_LT_PIPE] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_catch] = ACTIONS(4796), + [anon_sym_TILDE] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_CARET] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4796), + [anon_sym_unreachable] = ACTIONS(4796), + [anon_sym_undefined] = ACTIONS(4796), + [sym_sink] = ACTIONS(4796), + [sym_integer] = ACTIONS(4796), + [sym_float] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(4794), + [sym_multiline_string] = ACTIONS(4794), + [sym_character] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4794), + }, + [STATE(3613)] = { + [sym_identifier] = ACTIONS(4800), + [anon_sym_func] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4800), + [anon_sym_EQ] = ACTIONS(4800), + [anon_sym_struct] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4800), + [anon_sym_DOLLAR] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4800), + [anon_sym_QMARK] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_void] = ACTIONS(4800), + [anon_sym_noreturn] = ACTIONS(4800), + [anon_sym_type] = ACTIONS(4800), + [anon_sym_anyopaque] = ACTIONS(4800), + [anon_sym_bool] = ACTIONS(4800), + [anon_sym_int] = ACTIONS(4800), + [anon_sym_uint] = ACTIONS(4800), + [anon_sym_float] = ACTIONS(4800), + [anon_sym_range] = ACTIONS(4800), + [anon_sym_i8] = ACTIONS(4800), + [anon_sym_i16] = ACTIONS(4800), + [anon_sym_i32] = ACTIONS(4800), + [anon_sym_i64] = ACTIONS(4800), + [anon_sym_u8] = ACTIONS(4800), + [anon_sym_u16] = ACTIONS(4800), + [anon_sym_u32] = ACTIONS(4800), + [anon_sym_u64] = ACTIONS(4800), + [anon_sym_isize] = ACTIONS(4800), + [anon_sym_usize] = ACTIONS(4800), + [anon_sym_f32] = ACTIONS(4800), + [anon_sym_f64] = ACTIONS(4800), + [anon_sym_c_char] = ACTIONS(4800), + [anon_sym_c_schar] = ACTIONS(4800), + [anon_sym_c_uchar] = ACTIONS(4800), + [anon_sym_c_short] = ACTIONS(4800), + [anon_sym_c_ushort] = ACTIONS(4800), + [anon_sym_c_int] = ACTIONS(4800), + [anon_sym_c_uint] = ACTIONS(4800), + [anon_sym_c_long] = ACTIONS(4800), + [anon_sym_c_ulong] = ACTIONS(4800), + [anon_sym_c_longlong] = ACTIONS(4800), + [anon_sym_c_ulonglong] = ACTIONS(4800), + [anon_sym_c_float] = ACTIONS(4800), + [anon_sym_c_double] = ACTIONS(4800), + [anon_sym_c_longdouble] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_AMP_EQ] = ACTIONS(4798), + [anon_sym_PIPE_EQ] = ACTIONS(4800), + [anon_sym_xor_EQ] = ACTIONS(4798), + [anon_sym_LT_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_GT_EQ] = ACTIONS(4798), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4800), + [anon_sym_yield] = ACTIONS(4800), + [anon_sym_break] = ACTIONS(4800), + [anon_sym_continue] = ACTIONS(4800), + [anon_sym_defer] = ACTIONS(4800), + [anon_sym_errdefer] = ACTIONS(4800), + [anon_sym_if] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4800), + [anon_sym_while] = ACTIONS(4800), + [anon_sym_expand] = ACTIONS(4800), + [anon_sym_for] = ACTIONS(4800), + [anon_sym_PIPE2] = ACTIONS(4798), + [anon_sym_match] = ACTIONS(4800), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4798), + [anon_sym_orelse] = ACTIONS(4800), + [anon_sym_or] = ACTIONS(4800), + [anon_sym_and] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4800), + [anon_sym_xor] = ACTIONS(4800), + [anon_sym_LT_LT] = ACTIONS(4800), + [anon_sym_GT_GT] = ACTIONS(4800), + [anon_sym_LT_LT_PIPE] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4800), + [anon_sym_SLASH] = ACTIONS(4800), + [anon_sym_catch] = ACTIONS(4800), + [anon_sym_TILDE] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4800), + [anon_sym_CARET] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4800), + [anon_sym_false] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4800), + [anon_sym_unreachable] = ACTIONS(4800), + [anon_sym_undefined] = ACTIONS(4800), + [sym_sink] = ACTIONS(4800), + [sym_integer] = ACTIONS(4800), + [sym_float] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [sym_multiline_string] = ACTIONS(4798), + [sym_character] = ACTIONS(4798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4798), + }, + [STATE(3614)] = { + [sym_identifier] = ACTIONS(4804), + [anon_sym_func] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_struct] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_QMARK] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4802), + [anon_sym_void] = ACTIONS(4804), + [anon_sym_noreturn] = ACTIONS(4804), + [anon_sym_type] = ACTIONS(4804), + [anon_sym_anyopaque] = ACTIONS(4804), + [anon_sym_bool] = ACTIONS(4804), + [anon_sym_int] = ACTIONS(4804), + [anon_sym_uint] = ACTIONS(4804), + [anon_sym_float] = ACTIONS(4804), + [anon_sym_range] = ACTIONS(4804), + [anon_sym_i8] = ACTIONS(4804), + [anon_sym_i16] = ACTIONS(4804), + [anon_sym_i32] = ACTIONS(4804), + [anon_sym_i64] = ACTIONS(4804), + [anon_sym_u8] = ACTIONS(4804), + [anon_sym_u16] = ACTIONS(4804), + [anon_sym_u32] = ACTIONS(4804), + [anon_sym_u64] = ACTIONS(4804), + [anon_sym_isize] = ACTIONS(4804), + [anon_sym_usize] = ACTIONS(4804), + [anon_sym_f32] = ACTIONS(4804), + [anon_sym_f64] = ACTIONS(4804), + [anon_sym_c_char] = ACTIONS(4804), + [anon_sym_c_schar] = ACTIONS(4804), + [anon_sym_c_uchar] = ACTIONS(4804), + [anon_sym_c_short] = ACTIONS(4804), + [anon_sym_c_ushort] = ACTIONS(4804), + [anon_sym_c_int] = ACTIONS(4804), + [anon_sym_c_uint] = ACTIONS(4804), + [anon_sym_c_long] = ACTIONS(4804), + [anon_sym_c_ulong] = ACTIONS(4804), + [anon_sym_c_longlong] = ACTIONS(4804), + [anon_sym_c_ulonglong] = ACTIONS(4804), + [anon_sym_c_float] = ACTIONS(4804), + [anon_sym_c_double] = ACTIONS(4804), + [anon_sym_c_longdouble] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4802), + [anon_sym_DASH_EQ] = ACTIONS(4802), + [anon_sym_STAR_EQ] = ACTIONS(4802), + [anon_sym_SLASH_EQ] = ACTIONS(4802), + [anon_sym_AMP_EQ] = ACTIONS(4802), + [anon_sym_PIPE_EQ] = ACTIONS(4804), + [anon_sym_xor_EQ] = ACTIONS(4802), + [anon_sym_LT_LT_EQ] = ACTIONS(4802), + [anon_sym_GT_GT_EQ] = ACTIONS(4802), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_yield] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_defer] = ACTIONS(4804), + [anon_sym_errdefer] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_expand] = ACTIONS(4804), + [anon_sym_for] = ACTIONS(4804), + [anon_sym_PIPE2] = ACTIONS(4802), + [anon_sym_match] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4802), + [anon_sym_orelse] = ACTIONS(4804), + [anon_sym_or] = ACTIONS(4804), + [anon_sym_and] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_AMP] = ACTIONS(4804), + [anon_sym_xor] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_LT_LT_PIPE] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_catch] = ACTIONS(4804), + [anon_sym_TILDE] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_unreachable] = ACTIONS(4804), + [anon_sym_undefined] = ACTIONS(4804), + [sym_sink] = ACTIONS(4804), + [sym_integer] = ACTIONS(4804), + [sym_float] = ACTIONS(4802), + [anon_sym_DQUOTE] = ACTIONS(4802), + [sym_multiline_string] = ACTIONS(4802), + [sym_character] = ACTIONS(4802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4802), + }, + [STATE(3615)] = { + [sym_identifier] = ACTIONS(4808), + [anon_sym_func] = ACTIONS(4808), + [anon_sym_BANG] = ACTIONS(4808), + [anon_sym_EQ] = ACTIONS(4808), + [anon_sym_struct] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(4806), + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_QMARK] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_void] = ACTIONS(4808), + [anon_sym_noreturn] = ACTIONS(4808), + [anon_sym_type] = ACTIONS(4808), + [anon_sym_anyopaque] = ACTIONS(4808), + [anon_sym_bool] = ACTIONS(4808), + [anon_sym_int] = ACTIONS(4808), + [anon_sym_uint] = ACTIONS(4808), + [anon_sym_float] = ACTIONS(4808), + [anon_sym_range] = ACTIONS(4808), + [anon_sym_i8] = ACTIONS(4808), + [anon_sym_i16] = ACTIONS(4808), + [anon_sym_i32] = ACTIONS(4808), + [anon_sym_i64] = ACTIONS(4808), + [anon_sym_u8] = ACTIONS(4808), + [anon_sym_u16] = ACTIONS(4808), + [anon_sym_u32] = ACTIONS(4808), + [anon_sym_u64] = ACTIONS(4808), + [anon_sym_isize] = ACTIONS(4808), + [anon_sym_usize] = ACTIONS(4808), + [anon_sym_f32] = ACTIONS(4808), + [anon_sym_f64] = ACTIONS(4808), + [anon_sym_c_char] = ACTIONS(4808), + [anon_sym_c_schar] = ACTIONS(4808), + [anon_sym_c_uchar] = ACTIONS(4808), + [anon_sym_c_short] = ACTIONS(4808), + [anon_sym_c_ushort] = ACTIONS(4808), + [anon_sym_c_int] = ACTIONS(4808), + [anon_sym_c_uint] = ACTIONS(4808), + [anon_sym_c_long] = ACTIONS(4808), + [anon_sym_c_ulong] = ACTIONS(4808), + [anon_sym_c_longlong] = ACTIONS(4808), + [anon_sym_c_ulonglong] = ACTIONS(4808), + [anon_sym_c_float] = ACTIONS(4808), + [anon_sym_c_double] = ACTIONS(4808), + [anon_sym_c_longdouble] = ACTIONS(4808), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_AMP_EQ] = ACTIONS(4806), + [anon_sym_PIPE_EQ] = ACTIONS(4808), + [anon_sym_xor_EQ] = ACTIONS(4806), + [anon_sym_LT_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_GT_EQ] = ACTIONS(4806), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4806), + [anon_sym_return] = ACTIONS(4808), + [anon_sym_yield] = ACTIONS(4808), + [anon_sym_break] = ACTIONS(4808), + [anon_sym_continue] = ACTIONS(4808), + [anon_sym_defer] = ACTIONS(4808), + [anon_sym_errdefer] = ACTIONS(4808), + [anon_sym_if] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_while] = ACTIONS(4808), + [anon_sym_expand] = ACTIONS(4808), + [anon_sym_for] = ACTIONS(4808), + [anon_sym_PIPE2] = ACTIONS(4806), + [anon_sym_match] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4806), + [anon_sym_orelse] = ACTIONS(4808), + [anon_sym_or] = ACTIONS(4808), + [anon_sym_and] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_AMP] = ACTIONS(4808), + [anon_sym_xor] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(4808), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_LT_LT_PIPE] = ACTIONS(4808), + [anon_sym_PLUS] = ACTIONS(4808), + [anon_sym_SLASH] = ACTIONS(4808), + [anon_sym_catch] = ACTIONS(4808), + [anon_sym_TILDE] = ACTIONS(4806), + [anon_sym_try] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_CARET] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), + [anon_sym_unreachable] = ACTIONS(4808), + [anon_sym_undefined] = ACTIONS(4808), + [sym_sink] = ACTIONS(4808), + [sym_integer] = ACTIONS(4808), + [sym_float] = ACTIONS(4806), + [anon_sym_DQUOTE] = ACTIONS(4806), + [sym_multiline_string] = ACTIONS(4806), + [sym_character] = ACTIONS(4806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4806), + }, + [STATE(3616)] = { + [sym_identifier] = ACTIONS(4816), + [anon_sym_func] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_struct] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(4814), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_QMARK] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_void] = ACTIONS(4816), + [anon_sym_noreturn] = ACTIONS(4816), + [anon_sym_type] = ACTIONS(4816), + [anon_sym_anyopaque] = ACTIONS(4816), + [anon_sym_bool] = ACTIONS(4816), + [anon_sym_int] = ACTIONS(4816), + [anon_sym_uint] = ACTIONS(4816), + [anon_sym_float] = ACTIONS(4816), + [anon_sym_range] = ACTIONS(4816), + [anon_sym_i8] = ACTIONS(4816), + [anon_sym_i16] = ACTIONS(4816), + [anon_sym_i32] = ACTIONS(4816), + [anon_sym_i64] = ACTIONS(4816), + [anon_sym_u8] = ACTIONS(4816), + [anon_sym_u16] = ACTIONS(4816), + [anon_sym_u32] = ACTIONS(4816), + [anon_sym_u64] = ACTIONS(4816), + [anon_sym_isize] = ACTIONS(4816), + [anon_sym_usize] = ACTIONS(4816), + [anon_sym_f32] = ACTIONS(4816), + [anon_sym_f64] = ACTIONS(4816), + [anon_sym_c_char] = ACTIONS(4816), + [anon_sym_c_schar] = ACTIONS(4816), + [anon_sym_c_uchar] = ACTIONS(4816), + [anon_sym_c_short] = ACTIONS(4816), + [anon_sym_c_ushort] = ACTIONS(4816), + [anon_sym_c_int] = ACTIONS(4816), + [anon_sym_c_uint] = ACTIONS(4816), + [anon_sym_c_long] = ACTIONS(4816), + [anon_sym_c_ulong] = ACTIONS(4816), + [anon_sym_c_longlong] = ACTIONS(4816), + [anon_sym_c_ulonglong] = ACTIONS(4816), + [anon_sym_c_float] = ACTIONS(4816), + [anon_sym_c_double] = ACTIONS(4816), + [anon_sym_c_longdouble] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_AMP_EQ] = ACTIONS(4814), + [anon_sym_PIPE_EQ] = ACTIONS(4816), + [anon_sym_xor_EQ] = ACTIONS(4814), + [anon_sym_LT_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_GT_EQ] = ACTIONS(4814), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4814), + [anon_sym_return] = ACTIONS(4816), + [anon_sym_yield] = ACTIONS(4816), + [anon_sym_break] = ACTIONS(4816), + [anon_sym_continue] = ACTIONS(4816), + [anon_sym_defer] = ACTIONS(4816), + [anon_sym_errdefer] = ACTIONS(4816), + [anon_sym_if] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_while] = ACTIONS(4816), + [anon_sym_expand] = ACTIONS(4816), + [anon_sym_for] = ACTIONS(4816), + [anon_sym_PIPE2] = ACTIONS(4814), + [anon_sym_match] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4814), + [anon_sym_orelse] = ACTIONS(4816), + [anon_sym_or] = ACTIONS(4816), + [anon_sym_and] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4816), + [anon_sym_xor] = ACTIONS(4816), + [anon_sym_LT_LT] = ACTIONS(4816), + [anon_sym_GT_GT] = ACTIONS(4816), + [anon_sym_LT_LT_PIPE] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_catch] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4816), + [anon_sym_false] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4816), + [anon_sym_unreachable] = ACTIONS(4816), + [anon_sym_undefined] = ACTIONS(4816), + [sym_sink] = ACTIONS(4816), + [sym_integer] = ACTIONS(4816), + [sym_float] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(4814), + [sym_multiline_string] = ACTIONS(4814), + [sym_character] = ACTIONS(4814), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4814), + }, + [STATE(3617)] = { + [sym_identifier] = ACTIONS(4822), + [anon_sym_func] = ACTIONS(4822), + [anon_sym_BANG] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_struct] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4822), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_void] = ACTIONS(4822), + [anon_sym_noreturn] = ACTIONS(4822), + [anon_sym_type] = ACTIONS(4822), + [anon_sym_anyopaque] = ACTIONS(4822), + [anon_sym_bool] = ACTIONS(4822), + [anon_sym_int] = ACTIONS(4822), + [anon_sym_uint] = ACTIONS(4822), + [anon_sym_float] = ACTIONS(4822), + [anon_sym_range] = ACTIONS(4822), + [anon_sym_i8] = ACTIONS(4822), + [anon_sym_i16] = ACTIONS(4822), + [anon_sym_i32] = ACTIONS(4822), + [anon_sym_i64] = ACTIONS(4822), + [anon_sym_u8] = ACTIONS(4822), + [anon_sym_u16] = ACTIONS(4822), + [anon_sym_u32] = ACTIONS(4822), + [anon_sym_u64] = ACTIONS(4822), + [anon_sym_isize] = ACTIONS(4822), + [anon_sym_usize] = ACTIONS(4822), + [anon_sym_f32] = ACTIONS(4822), + [anon_sym_f64] = ACTIONS(4822), + [anon_sym_c_char] = ACTIONS(4822), + [anon_sym_c_schar] = ACTIONS(4822), + [anon_sym_c_uchar] = ACTIONS(4822), + [anon_sym_c_short] = ACTIONS(4822), + [anon_sym_c_ushort] = ACTIONS(4822), + [anon_sym_c_int] = ACTIONS(4822), + [anon_sym_c_uint] = ACTIONS(4822), + [anon_sym_c_long] = ACTIONS(4822), + [anon_sym_c_ulong] = ACTIONS(4822), + [anon_sym_c_longlong] = ACTIONS(4822), + [anon_sym_c_ulonglong] = ACTIONS(4822), + [anon_sym_c_float] = ACTIONS(4822), + [anon_sym_c_double] = ACTIONS(4822), + [anon_sym_c_longdouble] = ACTIONS(4822), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_AMP_EQ] = ACTIONS(4820), + [anon_sym_PIPE_EQ] = ACTIONS(4822), + [anon_sym_xor_EQ] = ACTIONS(4820), + [anon_sym_LT_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_GT_EQ] = ACTIONS(4820), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4820), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_yield] = ACTIONS(4822), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_defer] = ACTIONS(4822), + [anon_sym_errdefer] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_while] = ACTIONS(4822), + [anon_sym_expand] = ACTIONS(4822), + [anon_sym_for] = ACTIONS(4822), + [anon_sym_PIPE2] = ACTIONS(4820), + [anon_sym_match] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4820), + [anon_sym_orelse] = ACTIONS(4822), + [anon_sym_or] = ACTIONS(4822), + [anon_sym_and] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4822), + [anon_sym_xor] = ACTIONS(4822), + [anon_sym_LT_LT] = ACTIONS(4822), + [anon_sym_GT_GT] = ACTIONS(4822), + [anon_sym_LT_LT_PIPE] = ACTIONS(4822), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_catch] = ACTIONS(4822), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_unreachable] = ACTIONS(4822), + [anon_sym_undefined] = ACTIONS(4822), + [sym_sink] = ACTIONS(4822), + [sym_integer] = ACTIONS(4822), + [sym_float] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [sym_multiline_string] = ACTIONS(4820), + [sym_character] = ACTIONS(4820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4820), + }, + [STATE(3618)] = { + [sym_identifier] = ACTIONS(4826), + [anon_sym_func] = ACTIONS(4826), + [anon_sym_BANG] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_struct] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4826), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_void] = ACTIONS(4826), + [anon_sym_noreturn] = ACTIONS(4826), + [anon_sym_type] = ACTIONS(4826), + [anon_sym_anyopaque] = ACTIONS(4826), + [anon_sym_bool] = ACTIONS(4826), + [anon_sym_int] = ACTIONS(4826), + [anon_sym_uint] = ACTIONS(4826), + [anon_sym_float] = ACTIONS(4826), + [anon_sym_range] = ACTIONS(4826), + [anon_sym_i8] = ACTIONS(4826), + [anon_sym_i16] = ACTIONS(4826), + [anon_sym_i32] = ACTIONS(4826), + [anon_sym_i64] = ACTIONS(4826), + [anon_sym_u8] = ACTIONS(4826), + [anon_sym_u16] = ACTIONS(4826), + [anon_sym_u32] = ACTIONS(4826), + [anon_sym_u64] = ACTIONS(4826), + [anon_sym_isize] = ACTIONS(4826), + [anon_sym_usize] = ACTIONS(4826), + [anon_sym_f32] = ACTIONS(4826), + [anon_sym_f64] = ACTIONS(4826), + [anon_sym_c_char] = ACTIONS(4826), + [anon_sym_c_schar] = ACTIONS(4826), + [anon_sym_c_uchar] = ACTIONS(4826), + [anon_sym_c_short] = ACTIONS(4826), + [anon_sym_c_ushort] = ACTIONS(4826), + [anon_sym_c_int] = ACTIONS(4826), + [anon_sym_c_uint] = ACTIONS(4826), + [anon_sym_c_long] = ACTIONS(4826), + [anon_sym_c_ulong] = ACTIONS(4826), + [anon_sym_c_longlong] = ACTIONS(4826), + [anon_sym_c_ulonglong] = ACTIONS(4826), + [anon_sym_c_float] = ACTIONS(4826), + [anon_sym_c_double] = ACTIONS(4826), + [anon_sym_c_longdouble] = ACTIONS(4826), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_AMP_EQ] = ACTIONS(4824), + [anon_sym_PIPE_EQ] = ACTIONS(4826), + [anon_sym_xor_EQ] = ACTIONS(4824), + [anon_sym_LT_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_GT_EQ] = ACTIONS(4824), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4824), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_yield] = ACTIONS(4826), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_defer] = ACTIONS(4826), + [anon_sym_errdefer] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_while] = ACTIONS(4826), + [anon_sym_expand] = ACTIONS(4826), + [anon_sym_for] = ACTIONS(4826), + [anon_sym_PIPE2] = ACTIONS(4824), + [anon_sym_match] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4824), + [anon_sym_orelse] = ACTIONS(4826), + [anon_sym_or] = ACTIONS(4826), + [anon_sym_and] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4826), + [anon_sym_xor] = ACTIONS(4826), + [anon_sym_LT_LT] = ACTIONS(4826), + [anon_sym_GT_GT] = ACTIONS(4826), + [anon_sym_LT_LT_PIPE] = ACTIONS(4826), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_catch] = ACTIONS(4826), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_unreachable] = ACTIONS(4826), + [anon_sym_undefined] = ACTIONS(4826), + [sym_sink] = ACTIONS(4826), + [sym_integer] = ACTIONS(4826), + [sym_float] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [sym_multiline_string] = ACTIONS(4824), + [sym_character] = ACTIONS(4824), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4824), + }, + [STATE(3619)] = { + [sym_identifier] = ACTIONS(4830), + [anon_sym_func] = ACTIONS(4830), + [anon_sym_BANG] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_struct] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4830), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_void] = ACTIONS(4830), + [anon_sym_noreturn] = ACTIONS(4830), + [anon_sym_type] = ACTIONS(4830), + [anon_sym_anyopaque] = ACTIONS(4830), + [anon_sym_bool] = ACTIONS(4830), + [anon_sym_int] = ACTIONS(4830), + [anon_sym_uint] = ACTIONS(4830), + [anon_sym_float] = ACTIONS(4830), + [anon_sym_range] = ACTIONS(4830), + [anon_sym_i8] = ACTIONS(4830), + [anon_sym_i16] = ACTIONS(4830), + [anon_sym_i32] = ACTIONS(4830), + [anon_sym_i64] = ACTIONS(4830), + [anon_sym_u8] = ACTIONS(4830), + [anon_sym_u16] = ACTIONS(4830), + [anon_sym_u32] = ACTIONS(4830), + [anon_sym_u64] = ACTIONS(4830), + [anon_sym_isize] = ACTIONS(4830), + [anon_sym_usize] = ACTIONS(4830), + [anon_sym_f32] = ACTIONS(4830), + [anon_sym_f64] = ACTIONS(4830), + [anon_sym_c_char] = ACTIONS(4830), + [anon_sym_c_schar] = ACTIONS(4830), + [anon_sym_c_uchar] = ACTIONS(4830), + [anon_sym_c_short] = ACTIONS(4830), + [anon_sym_c_ushort] = ACTIONS(4830), + [anon_sym_c_int] = ACTIONS(4830), + [anon_sym_c_uint] = ACTIONS(4830), + [anon_sym_c_long] = ACTIONS(4830), + [anon_sym_c_ulong] = ACTIONS(4830), + [anon_sym_c_longlong] = ACTIONS(4830), + [anon_sym_c_ulonglong] = ACTIONS(4830), + [anon_sym_c_float] = ACTIONS(4830), + [anon_sym_c_double] = ACTIONS(4830), + [anon_sym_c_longdouble] = ACTIONS(4830), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_AMP_EQ] = ACTIONS(4828), + [anon_sym_PIPE_EQ] = ACTIONS(4830), + [anon_sym_xor_EQ] = ACTIONS(4828), + [anon_sym_LT_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_GT_EQ] = ACTIONS(4828), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4828), + [anon_sym_return] = ACTIONS(4830), + [anon_sym_yield] = ACTIONS(4830), + [anon_sym_break] = ACTIONS(4830), + [anon_sym_continue] = ACTIONS(4830), + [anon_sym_defer] = ACTIONS(4830), + [anon_sym_errdefer] = ACTIONS(4830), + [anon_sym_if] = ACTIONS(4830), + [anon_sym_else] = ACTIONS(4830), + [anon_sym_while] = ACTIONS(4830), + [anon_sym_expand] = ACTIONS(4830), + [anon_sym_for] = ACTIONS(4830), + [anon_sym_PIPE2] = ACTIONS(4828), + [anon_sym_match] = ACTIONS(4830), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_orelse] = ACTIONS(4830), + [anon_sym_or] = ACTIONS(4830), + [anon_sym_and] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4830), + [anon_sym_xor] = ACTIONS(4830), + [anon_sym_LT_LT] = ACTIONS(4830), + [anon_sym_GT_GT] = ACTIONS(4830), + [anon_sym_LT_LT_PIPE] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4830), + [anon_sym_catch] = ACTIONS(4830), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_try] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4830), + [anon_sym_false] = ACTIONS(4830), + [anon_sym_null] = ACTIONS(4830), + [anon_sym_unreachable] = ACTIONS(4830), + [anon_sym_undefined] = ACTIONS(4830), + [sym_sink] = ACTIONS(4830), + [sym_integer] = ACTIONS(4830), + [sym_float] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [sym_multiline_string] = ACTIONS(4828), + [sym_character] = ACTIONS(4828), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4828), + }, + [STATE(3620)] = { + [sym_identifier] = ACTIONS(6052), + [anon_sym_func] = ACTIONS(6052), + [anon_sym_BANG] = ACTIONS(6052), + [anon_sym_EQ] = ACTIONS(6052), + [anon_sym_struct] = ACTIONS(6052), + [anon_sym_LPAREN] = ACTIONS(6050), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_DASH] = ACTIONS(6052), + [anon_sym_DOLLAR] = ACTIONS(6050), + [anon_sym_PIPE] = ACTIONS(6052), + [anon_sym_QMARK] = ACTIONS(6050), + [anon_sym_STAR] = ACTIONS(6052), + [anon_sym_LBRACK] = ACTIONS(6050), + [anon_sym_void] = ACTIONS(6052), + [anon_sym_noreturn] = ACTIONS(6052), + [anon_sym_type] = ACTIONS(6052), + [anon_sym_anyopaque] = ACTIONS(6052), + [anon_sym_bool] = ACTIONS(6052), + [anon_sym_int] = ACTIONS(6052), + [anon_sym_uint] = ACTIONS(6052), + [anon_sym_float] = ACTIONS(6052), + [anon_sym_range] = ACTIONS(6052), + [anon_sym_i8] = ACTIONS(6052), + [anon_sym_i16] = ACTIONS(6052), + [anon_sym_i32] = ACTIONS(6052), + [anon_sym_i64] = ACTIONS(6052), + [anon_sym_u8] = ACTIONS(6052), + [anon_sym_u16] = ACTIONS(6052), + [anon_sym_u32] = ACTIONS(6052), + [anon_sym_u64] = ACTIONS(6052), + [anon_sym_isize] = ACTIONS(6052), + [anon_sym_usize] = ACTIONS(6052), + [anon_sym_f32] = ACTIONS(6052), + [anon_sym_f64] = ACTIONS(6052), + [anon_sym_c_char] = ACTIONS(6052), + [anon_sym_c_schar] = ACTIONS(6052), + [anon_sym_c_uchar] = ACTIONS(6052), + [anon_sym_c_short] = ACTIONS(6052), + [anon_sym_c_ushort] = ACTIONS(6052), + [anon_sym_c_int] = ACTIONS(6052), + [anon_sym_c_uint] = ACTIONS(6052), + [anon_sym_c_long] = ACTIONS(6052), + [anon_sym_c_ulong] = ACTIONS(6052), + [anon_sym_c_longlong] = ACTIONS(6052), + [anon_sym_c_ulonglong] = ACTIONS(6052), + [anon_sym_c_float] = ACTIONS(6052), + [anon_sym_c_double] = ACTIONS(6052), + [anon_sym_c_longdouble] = ACTIONS(6052), + [anon_sym_PLUS_EQ] = ACTIONS(6050), + [anon_sym_DASH_EQ] = ACTIONS(6050), + [anon_sym_STAR_EQ] = ACTIONS(6050), + [anon_sym_SLASH_EQ] = ACTIONS(6050), + [anon_sym_AMP_EQ] = ACTIONS(6050), + [anon_sym_PIPE_EQ] = ACTIONS(6052), + [anon_sym_xor_EQ] = ACTIONS(6050), + [anon_sym_LT_LT_EQ] = ACTIONS(6050), + [anon_sym_GT_GT_EQ] = ACTIONS(6050), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6050), + [anon_sym_return] = ACTIONS(6052), + [anon_sym_yield] = ACTIONS(6052), + [anon_sym_break] = ACTIONS(6052), + [anon_sym_continue] = ACTIONS(6052), + [anon_sym_defer] = ACTIONS(6052), + [anon_sym_errdefer] = ACTIONS(6052), + [anon_sym_if] = ACTIONS(6052), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_while] = ACTIONS(6052), + [anon_sym_expand] = ACTIONS(6052), + [anon_sym_for] = ACTIONS(6052), + [anon_sym_PIPE2] = ACTIONS(6050), + [anon_sym_match] = ACTIONS(6052), + [anon_sym_DOT_DOT] = ACTIONS(6052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6050), + [anon_sym_orelse] = ACTIONS(6052), + [anon_sym_or] = ACTIONS(6052), + [anon_sym_and] = ACTIONS(6052), + [anon_sym_EQ_EQ] = ACTIONS(6050), + [anon_sym_BANG_EQ] = ACTIONS(6050), + [anon_sym_LT] = ACTIONS(6052), + [anon_sym_LT_EQ] = ACTIONS(6050), + [anon_sym_GT] = ACTIONS(6052), + [anon_sym_GT_EQ] = ACTIONS(6050), + [anon_sym_AMP] = ACTIONS(6052), + [anon_sym_xor] = ACTIONS(6052), + [anon_sym_LT_LT] = ACTIONS(6052), + [anon_sym_GT_GT] = ACTIONS(6052), + [anon_sym_LT_LT_PIPE] = ACTIONS(6052), + [anon_sym_PLUS] = ACTIONS(6052), + [anon_sym_SLASH] = ACTIONS(6052), + [anon_sym_catch] = ACTIONS(6052), + [anon_sym_TILDE] = ACTIONS(6050), + [anon_sym_try] = ACTIONS(6052), + [anon_sym_DOT] = ACTIONS(6052), + [anon_sym_CARET] = ACTIONS(6050), + [anon_sym_true] = ACTIONS(6052), + [anon_sym_false] = ACTIONS(6052), + [anon_sym_null] = ACTIONS(6052), + [anon_sym_unreachable] = ACTIONS(6052), + [anon_sym_undefined] = ACTIONS(6052), + [sym_sink] = ACTIONS(6052), + [sym_integer] = ACTIONS(6052), + [sym_float] = ACTIONS(6050), + [anon_sym_DQUOTE] = ACTIONS(6050), + [sym_multiline_string] = ACTIONS(6050), + [sym_character] = ACTIONS(6050), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6050), + }, + [STATE(3621)] = { + [sym_identifier] = ACTIONS(4834), + [anon_sym_func] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4834), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4832), + [anon_sym_void] = ACTIONS(4834), + [anon_sym_noreturn] = ACTIONS(4834), + [anon_sym_type] = ACTIONS(4834), + [anon_sym_anyopaque] = ACTIONS(4834), + [anon_sym_bool] = ACTIONS(4834), + [anon_sym_int] = ACTIONS(4834), + [anon_sym_uint] = ACTIONS(4834), + [anon_sym_float] = ACTIONS(4834), + [anon_sym_range] = ACTIONS(4834), + [anon_sym_i8] = ACTIONS(4834), + [anon_sym_i16] = ACTIONS(4834), + [anon_sym_i32] = ACTIONS(4834), + [anon_sym_i64] = ACTIONS(4834), + [anon_sym_u8] = ACTIONS(4834), + [anon_sym_u16] = ACTIONS(4834), + [anon_sym_u32] = ACTIONS(4834), + [anon_sym_u64] = ACTIONS(4834), + [anon_sym_isize] = ACTIONS(4834), + [anon_sym_usize] = ACTIONS(4834), + [anon_sym_f32] = ACTIONS(4834), + [anon_sym_f64] = ACTIONS(4834), + [anon_sym_c_char] = ACTIONS(4834), + [anon_sym_c_schar] = ACTIONS(4834), + [anon_sym_c_uchar] = ACTIONS(4834), + [anon_sym_c_short] = ACTIONS(4834), + [anon_sym_c_ushort] = ACTIONS(4834), + [anon_sym_c_int] = ACTIONS(4834), + [anon_sym_c_uint] = ACTIONS(4834), + [anon_sym_c_long] = ACTIONS(4834), + [anon_sym_c_ulong] = ACTIONS(4834), + [anon_sym_c_longlong] = ACTIONS(4834), + [anon_sym_c_ulonglong] = ACTIONS(4834), + [anon_sym_c_float] = ACTIONS(4834), + [anon_sym_c_double] = ACTIONS(4834), + [anon_sym_c_longdouble] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4832), + [anon_sym_DASH_EQ] = ACTIONS(4832), + [anon_sym_STAR_EQ] = ACTIONS(4832), + [anon_sym_SLASH_EQ] = ACTIONS(4832), + [anon_sym_AMP_EQ] = ACTIONS(4832), + [anon_sym_PIPE_EQ] = ACTIONS(4834), + [anon_sym_xor_EQ] = ACTIONS(4832), + [anon_sym_LT_LT_EQ] = ACTIONS(4832), + [anon_sym_GT_GT_EQ] = ACTIONS(4832), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4832), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_yield] = ACTIONS(4834), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_defer] = ACTIONS(4834), + [anon_sym_errdefer] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_while] = ACTIONS(4834), + [anon_sym_expand] = ACTIONS(4834), + [anon_sym_for] = ACTIONS(4834), + [anon_sym_PIPE2] = ACTIONS(4832), + [anon_sym_match] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4832), + [anon_sym_orelse] = ACTIONS(4834), + [anon_sym_or] = ACTIONS(4834), + [anon_sym_and] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4834), + [anon_sym_xor] = ACTIONS(4834), + [anon_sym_LT_LT] = ACTIONS(4834), + [anon_sym_GT_GT] = ACTIONS(4834), + [anon_sym_LT_LT_PIPE] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_catch] = ACTIONS(4834), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_unreachable] = ACTIONS(4834), + [anon_sym_undefined] = ACTIONS(4834), + [sym_sink] = ACTIONS(4834), + [sym_integer] = ACTIONS(4834), + [sym_float] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [sym_multiline_string] = ACTIONS(4832), + [sym_character] = ACTIONS(4832), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4832), + }, + [STATE(3622)] = { + [sym_identifier] = ACTIONS(4838), + [anon_sym_func] = ACTIONS(4838), + [anon_sym_BANG] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_struct] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_void] = ACTIONS(4838), + [anon_sym_noreturn] = ACTIONS(4838), + [anon_sym_type] = ACTIONS(4838), + [anon_sym_anyopaque] = ACTIONS(4838), + [anon_sym_bool] = ACTIONS(4838), + [anon_sym_int] = ACTIONS(4838), + [anon_sym_uint] = ACTIONS(4838), + [anon_sym_float] = ACTIONS(4838), + [anon_sym_range] = ACTIONS(4838), + [anon_sym_i8] = ACTIONS(4838), + [anon_sym_i16] = ACTIONS(4838), + [anon_sym_i32] = ACTIONS(4838), + [anon_sym_i64] = ACTIONS(4838), + [anon_sym_u8] = ACTIONS(4838), + [anon_sym_u16] = ACTIONS(4838), + [anon_sym_u32] = ACTIONS(4838), + [anon_sym_u64] = ACTIONS(4838), + [anon_sym_isize] = ACTIONS(4838), + [anon_sym_usize] = ACTIONS(4838), + [anon_sym_f32] = ACTIONS(4838), + [anon_sym_f64] = ACTIONS(4838), + [anon_sym_c_char] = ACTIONS(4838), + [anon_sym_c_schar] = ACTIONS(4838), + [anon_sym_c_uchar] = ACTIONS(4838), + [anon_sym_c_short] = ACTIONS(4838), + [anon_sym_c_ushort] = ACTIONS(4838), + [anon_sym_c_int] = ACTIONS(4838), + [anon_sym_c_uint] = ACTIONS(4838), + [anon_sym_c_long] = ACTIONS(4838), + [anon_sym_c_ulong] = ACTIONS(4838), + [anon_sym_c_longlong] = ACTIONS(4838), + [anon_sym_c_ulonglong] = ACTIONS(4838), + [anon_sym_c_float] = ACTIONS(4838), + [anon_sym_c_double] = ACTIONS(4838), + [anon_sym_c_longdouble] = ACTIONS(4838), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_AMP_EQ] = ACTIONS(4836), + [anon_sym_PIPE_EQ] = ACTIONS(4838), + [anon_sym_xor_EQ] = ACTIONS(4836), + [anon_sym_LT_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_GT_EQ] = ACTIONS(4836), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4836), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_yield] = ACTIONS(4838), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_defer] = ACTIONS(4838), + [anon_sym_errdefer] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_expand] = ACTIONS(4838), + [anon_sym_for] = ACTIONS(4838), + [anon_sym_PIPE2] = ACTIONS(4836), + [anon_sym_match] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4836), + [anon_sym_orelse] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_xor] = ACTIONS(4838), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4838), + [anon_sym_LT_LT_PIPE] = ACTIONS(4838), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_catch] = ACTIONS(4838), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_unreachable] = ACTIONS(4838), + [anon_sym_undefined] = ACTIONS(4838), + [sym_sink] = ACTIONS(4838), + [sym_integer] = ACTIONS(4838), + [sym_float] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [sym_multiline_string] = ACTIONS(4836), + [sym_character] = ACTIONS(4836), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4836), + }, + [STATE(3623)] = { + [sym_identifier] = ACTIONS(4842), + [anon_sym_func] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_struct] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_void] = ACTIONS(4842), + [anon_sym_noreturn] = ACTIONS(4842), + [anon_sym_type] = ACTIONS(4842), + [anon_sym_anyopaque] = ACTIONS(4842), + [anon_sym_bool] = ACTIONS(4842), + [anon_sym_int] = ACTIONS(4842), + [anon_sym_uint] = ACTIONS(4842), + [anon_sym_float] = ACTIONS(4842), + [anon_sym_range] = ACTIONS(4842), + [anon_sym_i8] = ACTIONS(4842), + [anon_sym_i16] = ACTIONS(4842), + [anon_sym_i32] = ACTIONS(4842), + [anon_sym_i64] = ACTIONS(4842), + [anon_sym_u8] = ACTIONS(4842), + [anon_sym_u16] = ACTIONS(4842), + [anon_sym_u32] = ACTIONS(4842), + [anon_sym_u64] = ACTIONS(4842), + [anon_sym_isize] = ACTIONS(4842), + [anon_sym_usize] = ACTIONS(4842), + [anon_sym_f32] = ACTIONS(4842), + [anon_sym_f64] = ACTIONS(4842), + [anon_sym_c_char] = ACTIONS(4842), + [anon_sym_c_schar] = ACTIONS(4842), + [anon_sym_c_uchar] = ACTIONS(4842), + [anon_sym_c_short] = ACTIONS(4842), + [anon_sym_c_ushort] = ACTIONS(4842), + [anon_sym_c_int] = ACTIONS(4842), + [anon_sym_c_uint] = ACTIONS(4842), + [anon_sym_c_long] = ACTIONS(4842), + [anon_sym_c_ulong] = ACTIONS(4842), + [anon_sym_c_longlong] = ACTIONS(4842), + [anon_sym_c_ulonglong] = ACTIONS(4842), + [anon_sym_c_float] = ACTIONS(4842), + [anon_sym_c_double] = ACTIONS(4842), + [anon_sym_c_longdouble] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_AMP_EQ] = ACTIONS(4840), + [anon_sym_PIPE_EQ] = ACTIONS(4842), + [anon_sym_xor_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_yield] = ACTIONS(4842), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_defer] = ACTIONS(4842), + [anon_sym_errdefer] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_while] = ACTIONS(4842), + [anon_sym_expand] = ACTIONS(4842), + [anon_sym_for] = ACTIONS(4842), + [anon_sym_PIPE2] = ACTIONS(4840), + [anon_sym_match] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4840), + [anon_sym_orelse] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4842), + [anon_sym_LT_LT_PIPE] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_catch] = ACTIONS(4842), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_unreachable] = ACTIONS(4842), + [anon_sym_undefined] = ACTIONS(4842), + [sym_sink] = ACTIONS(4842), + [sym_integer] = ACTIONS(4842), + [sym_float] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [sym_multiline_string] = ACTIONS(4840), + [sym_character] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4840), + }, + [STATE(3624)] = { + [sym_identifier] = ACTIONS(4846), + [anon_sym_func] = ACTIONS(4846), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_struct] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4846), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_void] = ACTIONS(4846), + [anon_sym_noreturn] = ACTIONS(4846), + [anon_sym_type] = ACTIONS(4846), + [anon_sym_anyopaque] = ACTIONS(4846), + [anon_sym_bool] = ACTIONS(4846), + [anon_sym_int] = ACTIONS(4846), + [anon_sym_uint] = ACTIONS(4846), + [anon_sym_float] = ACTIONS(4846), + [anon_sym_range] = ACTIONS(4846), + [anon_sym_i8] = ACTIONS(4846), + [anon_sym_i16] = ACTIONS(4846), + [anon_sym_i32] = ACTIONS(4846), + [anon_sym_i64] = ACTIONS(4846), + [anon_sym_u8] = ACTIONS(4846), + [anon_sym_u16] = ACTIONS(4846), + [anon_sym_u32] = ACTIONS(4846), + [anon_sym_u64] = ACTIONS(4846), + [anon_sym_isize] = ACTIONS(4846), + [anon_sym_usize] = ACTIONS(4846), + [anon_sym_f32] = ACTIONS(4846), + [anon_sym_f64] = ACTIONS(4846), + [anon_sym_c_char] = ACTIONS(4846), + [anon_sym_c_schar] = ACTIONS(4846), + [anon_sym_c_uchar] = ACTIONS(4846), + [anon_sym_c_short] = ACTIONS(4846), + [anon_sym_c_ushort] = ACTIONS(4846), + [anon_sym_c_int] = ACTIONS(4846), + [anon_sym_c_uint] = ACTIONS(4846), + [anon_sym_c_long] = ACTIONS(4846), + [anon_sym_c_ulong] = ACTIONS(4846), + [anon_sym_c_longlong] = ACTIONS(4846), + [anon_sym_c_ulonglong] = ACTIONS(4846), + [anon_sym_c_float] = ACTIONS(4846), + [anon_sym_c_double] = ACTIONS(4846), + [anon_sym_c_longdouble] = ACTIONS(4846), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_AMP_EQ] = ACTIONS(4844), + [anon_sym_PIPE_EQ] = ACTIONS(4846), + [anon_sym_xor_EQ] = ACTIONS(4844), + [anon_sym_LT_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_GT_EQ] = ACTIONS(4844), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4844), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_yield] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_defer] = ACTIONS(4846), + [anon_sym_errdefer] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_while] = ACTIONS(4846), + [anon_sym_expand] = ACTIONS(4846), + [anon_sym_for] = ACTIONS(4846), + [anon_sym_PIPE2] = ACTIONS(4844), + [anon_sym_match] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), + [anon_sym_orelse] = ACTIONS(4846), + [anon_sym_or] = ACTIONS(4846), + [anon_sym_and] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_xor] = ACTIONS(4846), + [anon_sym_LT_LT] = ACTIONS(4846), + [anon_sym_GT_GT] = ACTIONS(4846), + [anon_sym_LT_LT_PIPE] = ACTIONS(4846), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_catch] = ACTIONS(4846), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_unreachable] = ACTIONS(4846), + [anon_sym_undefined] = ACTIONS(4846), + [sym_sink] = ACTIONS(4846), + [sym_integer] = ACTIONS(4846), + [sym_float] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [sym_multiline_string] = ACTIONS(4844), + [sym_character] = ACTIONS(4844), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4844), + }, + [STATE(3625)] = { + [sym_identifier] = ACTIONS(4850), + [anon_sym_func] = ACTIONS(4850), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_struct] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4850), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_void] = ACTIONS(4850), + [anon_sym_noreturn] = ACTIONS(4850), + [anon_sym_type] = ACTIONS(4850), + [anon_sym_anyopaque] = ACTIONS(4850), + [anon_sym_bool] = ACTIONS(4850), + [anon_sym_int] = ACTIONS(4850), + [anon_sym_uint] = ACTIONS(4850), + [anon_sym_float] = ACTIONS(4850), + [anon_sym_range] = ACTIONS(4850), + [anon_sym_i8] = ACTIONS(4850), + [anon_sym_i16] = ACTIONS(4850), + [anon_sym_i32] = ACTIONS(4850), + [anon_sym_i64] = ACTIONS(4850), + [anon_sym_u8] = ACTIONS(4850), + [anon_sym_u16] = ACTIONS(4850), + [anon_sym_u32] = ACTIONS(4850), + [anon_sym_u64] = ACTIONS(4850), + [anon_sym_isize] = ACTIONS(4850), + [anon_sym_usize] = ACTIONS(4850), + [anon_sym_f32] = ACTIONS(4850), + [anon_sym_f64] = ACTIONS(4850), + [anon_sym_c_char] = ACTIONS(4850), + [anon_sym_c_schar] = ACTIONS(4850), + [anon_sym_c_uchar] = ACTIONS(4850), + [anon_sym_c_short] = ACTIONS(4850), + [anon_sym_c_ushort] = ACTIONS(4850), + [anon_sym_c_int] = ACTIONS(4850), + [anon_sym_c_uint] = ACTIONS(4850), + [anon_sym_c_long] = ACTIONS(4850), + [anon_sym_c_ulong] = ACTIONS(4850), + [anon_sym_c_longlong] = ACTIONS(4850), + [anon_sym_c_ulonglong] = ACTIONS(4850), + [anon_sym_c_float] = ACTIONS(4850), + [anon_sym_c_double] = ACTIONS(4850), + [anon_sym_c_longdouble] = ACTIONS(4850), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_AMP_EQ] = ACTIONS(4848), + [anon_sym_PIPE_EQ] = ACTIONS(4850), + [anon_sym_xor_EQ] = ACTIONS(4848), + [anon_sym_LT_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_GT_EQ] = ACTIONS(4848), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4848), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_yield] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_defer] = ACTIONS(4850), + [anon_sym_errdefer] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_expand] = ACTIONS(4850), + [anon_sym_for] = ACTIONS(4850), + [anon_sym_PIPE2] = ACTIONS(4848), + [anon_sym_match] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_orelse] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_xor] = ACTIONS(4850), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4850), + [anon_sym_LT_LT_PIPE] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_catch] = ACTIONS(4850), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_unreachable] = ACTIONS(4850), + [anon_sym_undefined] = ACTIONS(4850), + [sym_sink] = ACTIONS(4850), + [sym_integer] = ACTIONS(4850), + [sym_float] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym_multiline_string] = ACTIONS(4848), + [sym_character] = ACTIONS(4848), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4848), + }, + [STATE(3626)] = { + [sym_identifier] = ACTIONS(4854), + [anon_sym_func] = ACTIONS(4854), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4854), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_void] = ACTIONS(4854), + [anon_sym_noreturn] = ACTIONS(4854), + [anon_sym_type] = ACTIONS(4854), + [anon_sym_anyopaque] = ACTIONS(4854), + [anon_sym_bool] = ACTIONS(4854), + [anon_sym_int] = ACTIONS(4854), + [anon_sym_uint] = ACTIONS(4854), + [anon_sym_float] = ACTIONS(4854), + [anon_sym_range] = ACTIONS(4854), + [anon_sym_i8] = ACTIONS(4854), + [anon_sym_i16] = ACTIONS(4854), + [anon_sym_i32] = ACTIONS(4854), + [anon_sym_i64] = ACTIONS(4854), + [anon_sym_u8] = ACTIONS(4854), + [anon_sym_u16] = ACTIONS(4854), + [anon_sym_u32] = ACTIONS(4854), + [anon_sym_u64] = ACTIONS(4854), + [anon_sym_isize] = ACTIONS(4854), + [anon_sym_usize] = ACTIONS(4854), + [anon_sym_f32] = ACTIONS(4854), + [anon_sym_f64] = ACTIONS(4854), + [anon_sym_c_char] = ACTIONS(4854), + [anon_sym_c_schar] = ACTIONS(4854), + [anon_sym_c_uchar] = ACTIONS(4854), + [anon_sym_c_short] = ACTIONS(4854), + [anon_sym_c_ushort] = ACTIONS(4854), + [anon_sym_c_int] = ACTIONS(4854), + [anon_sym_c_uint] = ACTIONS(4854), + [anon_sym_c_long] = ACTIONS(4854), + [anon_sym_c_ulong] = ACTIONS(4854), + [anon_sym_c_longlong] = ACTIONS(4854), + [anon_sym_c_ulonglong] = ACTIONS(4854), + [anon_sym_c_float] = ACTIONS(4854), + [anon_sym_c_double] = ACTIONS(4854), + [anon_sym_c_longdouble] = ACTIONS(4854), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_AMP_EQ] = ACTIONS(4852), + [anon_sym_PIPE_EQ] = ACTIONS(4854), + [anon_sym_xor_EQ] = ACTIONS(4852), + [anon_sym_LT_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_GT_EQ] = ACTIONS(4852), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4852), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_yield] = ACTIONS(4854), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_defer] = ACTIONS(4854), + [anon_sym_errdefer] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4854), + [anon_sym_expand] = ACTIONS(4854), + [anon_sym_for] = ACTIONS(4854), + [anon_sym_PIPE2] = ACTIONS(4852), + [anon_sym_match] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4852), + [anon_sym_orelse] = ACTIONS(4854), + [anon_sym_or] = ACTIONS(4854), + [anon_sym_and] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_xor] = ACTIONS(4854), + [anon_sym_LT_LT] = ACTIONS(4854), + [anon_sym_GT_GT] = ACTIONS(4854), + [anon_sym_LT_LT_PIPE] = ACTIONS(4854), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_catch] = ACTIONS(4854), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_unreachable] = ACTIONS(4854), + [anon_sym_undefined] = ACTIONS(4854), + [sym_sink] = ACTIONS(4854), + [sym_integer] = ACTIONS(4854), + [sym_float] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [sym_multiline_string] = ACTIONS(4852), + [sym_character] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4852), + }, + [STATE(3627)] = { + [sym_identifier] = ACTIONS(4858), + [anon_sym_func] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4858), + [anon_sym_EQ] = ACTIONS(4858), + [anon_sym_struct] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4858), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_void] = ACTIONS(4858), + [anon_sym_noreturn] = ACTIONS(4858), + [anon_sym_type] = ACTIONS(4858), + [anon_sym_anyopaque] = ACTIONS(4858), + [anon_sym_bool] = ACTIONS(4858), + [anon_sym_int] = ACTIONS(4858), + [anon_sym_uint] = ACTIONS(4858), + [anon_sym_float] = ACTIONS(4858), + [anon_sym_range] = ACTIONS(4858), + [anon_sym_i8] = ACTIONS(4858), + [anon_sym_i16] = ACTIONS(4858), + [anon_sym_i32] = ACTIONS(4858), + [anon_sym_i64] = ACTIONS(4858), + [anon_sym_u8] = ACTIONS(4858), + [anon_sym_u16] = ACTIONS(4858), + [anon_sym_u32] = ACTIONS(4858), + [anon_sym_u64] = ACTIONS(4858), + [anon_sym_isize] = ACTIONS(4858), + [anon_sym_usize] = ACTIONS(4858), + [anon_sym_f32] = ACTIONS(4858), + [anon_sym_f64] = ACTIONS(4858), + [anon_sym_c_char] = ACTIONS(4858), + [anon_sym_c_schar] = ACTIONS(4858), + [anon_sym_c_uchar] = ACTIONS(4858), + [anon_sym_c_short] = ACTIONS(4858), + [anon_sym_c_ushort] = ACTIONS(4858), + [anon_sym_c_int] = ACTIONS(4858), + [anon_sym_c_uint] = ACTIONS(4858), + [anon_sym_c_long] = ACTIONS(4858), + [anon_sym_c_ulong] = ACTIONS(4858), + [anon_sym_c_longlong] = ACTIONS(4858), + [anon_sym_c_ulonglong] = ACTIONS(4858), + [anon_sym_c_float] = ACTIONS(4858), + [anon_sym_c_double] = ACTIONS(4858), + [anon_sym_c_longdouble] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_AMP_EQ] = ACTIONS(4856), + [anon_sym_PIPE_EQ] = ACTIONS(4858), + [anon_sym_xor_EQ] = ACTIONS(4856), + [anon_sym_LT_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_GT_EQ] = ACTIONS(4856), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4858), + [anon_sym_yield] = ACTIONS(4858), + [anon_sym_break] = ACTIONS(4858), + [anon_sym_continue] = ACTIONS(4858), + [anon_sym_defer] = ACTIONS(4858), + [anon_sym_errdefer] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_while] = ACTIONS(4858), + [anon_sym_expand] = ACTIONS(4858), + [anon_sym_for] = ACTIONS(4858), + [anon_sym_PIPE2] = ACTIONS(4856), + [anon_sym_match] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4856), + [anon_sym_orelse] = ACTIONS(4858), + [anon_sym_or] = ACTIONS(4858), + [anon_sym_and] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4858), + [anon_sym_xor] = ACTIONS(4858), + [anon_sym_LT_LT] = ACTIONS(4858), + [anon_sym_GT_GT] = ACTIONS(4858), + [anon_sym_LT_LT_PIPE] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4858), + [anon_sym_catch] = ACTIONS(4858), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_unreachable] = ACTIONS(4858), + [anon_sym_undefined] = ACTIONS(4858), + [sym_sink] = ACTIONS(4858), + [sym_integer] = ACTIONS(4858), + [sym_float] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [sym_multiline_string] = ACTIONS(4856), + [sym_character] = ACTIONS(4856), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4856), + }, + [STATE(3628)] = { + [sym_identifier] = ACTIONS(4862), + [anon_sym_func] = ACTIONS(4862), + [anon_sym_BANG] = ACTIONS(4862), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_struct] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4862), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4862), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_void] = ACTIONS(4862), + [anon_sym_noreturn] = ACTIONS(4862), + [anon_sym_type] = ACTIONS(4862), + [anon_sym_anyopaque] = ACTIONS(4862), + [anon_sym_bool] = ACTIONS(4862), + [anon_sym_int] = ACTIONS(4862), + [anon_sym_uint] = ACTIONS(4862), + [anon_sym_float] = ACTIONS(4862), + [anon_sym_range] = ACTIONS(4862), + [anon_sym_i8] = ACTIONS(4862), + [anon_sym_i16] = ACTIONS(4862), + [anon_sym_i32] = ACTIONS(4862), + [anon_sym_i64] = ACTIONS(4862), + [anon_sym_u8] = ACTIONS(4862), + [anon_sym_u16] = ACTIONS(4862), + [anon_sym_u32] = ACTIONS(4862), + [anon_sym_u64] = ACTIONS(4862), + [anon_sym_isize] = ACTIONS(4862), + [anon_sym_usize] = ACTIONS(4862), + [anon_sym_f32] = ACTIONS(4862), + [anon_sym_f64] = ACTIONS(4862), + [anon_sym_c_char] = ACTIONS(4862), + [anon_sym_c_schar] = ACTIONS(4862), + [anon_sym_c_uchar] = ACTIONS(4862), + [anon_sym_c_short] = ACTIONS(4862), + [anon_sym_c_ushort] = ACTIONS(4862), + [anon_sym_c_int] = ACTIONS(4862), + [anon_sym_c_uint] = ACTIONS(4862), + [anon_sym_c_long] = ACTIONS(4862), + [anon_sym_c_ulong] = ACTIONS(4862), + [anon_sym_c_longlong] = ACTIONS(4862), + [anon_sym_c_ulonglong] = ACTIONS(4862), + [anon_sym_c_float] = ACTIONS(4862), + [anon_sym_c_double] = ACTIONS(4862), + [anon_sym_c_longdouble] = ACTIONS(4862), + [anon_sym_PLUS_EQ] = ACTIONS(4860), + [anon_sym_DASH_EQ] = ACTIONS(4860), + [anon_sym_STAR_EQ] = ACTIONS(4860), + [anon_sym_SLASH_EQ] = ACTIONS(4860), + [anon_sym_AMP_EQ] = ACTIONS(4860), + [anon_sym_PIPE_EQ] = ACTIONS(4862), + [anon_sym_xor_EQ] = ACTIONS(4860), + [anon_sym_LT_LT_EQ] = ACTIONS(4860), + [anon_sym_GT_GT_EQ] = ACTIONS(4860), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4860), + [anon_sym_return] = ACTIONS(4862), + [anon_sym_yield] = ACTIONS(4862), + [anon_sym_break] = ACTIONS(4862), + [anon_sym_continue] = ACTIONS(4862), + [anon_sym_defer] = ACTIONS(4862), + [anon_sym_errdefer] = ACTIONS(4862), + [anon_sym_if] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_while] = ACTIONS(4862), + [anon_sym_expand] = ACTIONS(4862), + [anon_sym_for] = ACTIONS(4862), + [anon_sym_PIPE2] = ACTIONS(4860), + [anon_sym_match] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4860), + [anon_sym_orelse] = ACTIONS(4862), + [anon_sym_or] = ACTIONS(4862), + [anon_sym_and] = ACTIONS(4862), + [anon_sym_EQ_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_xor] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4862), + [anon_sym_GT_GT] = ACTIONS(4862), + [anon_sym_LT_LT_PIPE] = ACTIONS(4862), + [anon_sym_PLUS] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4862), + [anon_sym_catch] = ACTIONS(4862), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_try] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4860), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_unreachable] = ACTIONS(4862), + [anon_sym_undefined] = ACTIONS(4862), + [sym_sink] = ACTIONS(4862), + [sym_integer] = ACTIONS(4862), + [sym_float] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [sym_multiline_string] = ACTIONS(4860), + [sym_character] = ACTIONS(4860), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4860), + }, + [STATE(3629)] = { + [sym_identifier] = ACTIONS(4866), + [anon_sym_func] = ACTIONS(4866), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_struct] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4866), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4866), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_void] = ACTIONS(4866), + [anon_sym_noreturn] = ACTIONS(4866), + [anon_sym_type] = ACTIONS(4866), + [anon_sym_anyopaque] = ACTIONS(4866), + [anon_sym_bool] = ACTIONS(4866), + [anon_sym_int] = ACTIONS(4866), + [anon_sym_uint] = ACTIONS(4866), + [anon_sym_float] = ACTIONS(4866), + [anon_sym_range] = ACTIONS(4866), + [anon_sym_i8] = ACTIONS(4866), + [anon_sym_i16] = ACTIONS(4866), + [anon_sym_i32] = ACTIONS(4866), + [anon_sym_i64] = ACTIONS(4866), + [anon_sym_u8] = ACTIONS(4866), + [anon_sym_u16] = ACTIONS(4866), + [anon_sym_u32] = ACTIONS(4866), + [anon_sym_u64] = ACTIONS(4866), + [anon_sym_isize] = ACTIONS(4866), + [anon_sym_usize] = ACTIONS(4866), + [anon_sym_f32] = ACTIONS(4866), + [anon_sym_f64] = ACTIONS(4866), + [anon_sym_c_char] = ACTIONS(4866), + [anon_sym_c_schar] = ACTIONS(4866), + [anon_sym_c_uchar] = ACTIONS(4866), + [anon_sym_c_short] = ACTIONS(4866), + [anon_sym_c_ushort] = ACTIONS(4866), + [anon_sym_c_int] = ACTIONS(4866), + [anon_sym_c_uint] = ACTIONS(4866), + [anon_sym_c_long] = ACTIONS(4866), + [anon_sym_c_ulong] = ACTIONS(4866), + [anon_sym_c_longlong] = ACTIONS(4866), + [anon_sym_c_ulonglong] = ACTIONS(4866), + [anon_sym_c_float] = ACTIONS(4866), + [anon_sym_c_double] = ACTIONS(4866), + [anon_sym_c_longdouble] = ACTIONS(4866), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_AMP_EQ] = ACTIONS(4864), + [anon_sym_PIPE_EQ] = ACTIONS(4866), + [anon_sym_xor_EQ] = ACTIONS(4864), + [anon_sym_LT_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_GT_EQ] = ACTIONS(4864), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4864), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_yield] = ACTIONS(4866), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_defer] = ACTIONS(4866), + [anon_sym_errdefer] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_while] = ACTIONS(4866), + [anon_sym_expand] = ACTIONS(4866), + [anon_sym_for] = ACTIONS(4866), + [anon_sym_PIPE2] = ACTIONS(4864), + [anon_sym_match] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4864), + [anon_sym_orelse] = ACTIONS(4866), + [anon_sym_or] = ACTIONS(4866), + [anon_sym_and] = ACTIONS(4866), + [anon_sym_EQ_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_xor] = ACTIONS(4866), + [anon_sym_LT_LT] = ACTIONS(4866), + [anon_sym_GT_GT] = ACTIONS(4866), + [anon_sym_LT_LT_PIPE] = ACTIONS(4866), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_catch] = ACTIONS(4866), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_unreachable] = ACTIONS(4866), + [anon_sym_undefined] = ACTIONS(4866), + [sym_sink] = ACTIONS(4866), + [sym_integer] = ACTIONS(4866), + [sym_float] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [sym_multiline_string] = ACTIONS(4864), + [sym_character] = ACTIONS(4864), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4864), + }, + [STATE(3630)] = { + [sym_identifier] = ACTIONS(4870), + [anon_sym_func] = ACTIONS(4870), + [anon_sym_BANG] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_struct] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4870), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4870), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_void] = ACTIONS(4870), + [anon_sym_noreturn] = ACTIONS(4870), + [anon_sym_type] = ACTIONS(4870), + [anon_sym_anyopaque] = ACTIONS(4870), + [anon_sym_bool] = ACTIONS(4870), + [anon_sym_int] = ACTIONS(4870), + [anon_sym_uint] = ACTIONS(4870), + [anon_sym_float] = ACTIONS(4870), + [anon_sym_range] = ACTIONS(4870), + [anon_sym_i8] = ACTIONS(4870), + [anon_sym_i16] = ACTIONS(4870), + [anon_sym_i32] = ACTIONS(4870), + [anon_sym_i64] = ACTIONS(4870), + [anon_sym_u8] = ACTIONS(4870), + [anon_sym_u16] = ACTIONS(4870), + [anon_sym_u32] = ACTIONS(4870), + [anon_sym_u64] = ACTIONS(4870), + [anon_sym_isize] = ACTIONS(4870), + [anon_sym_usize] = ACTIONS(4870), + [anon_sym_f32] = ACTIONS(4870), + [anon_sym_f64] = ACTIONS(4870), + [anon_sym_c_char] = ACTIONS(4870), + [anon_sym_c_schar] = ACTIONS(4870), + [anon_sym_c_uchar] = ACTIONS(4870), + [anon_sym_c_short] = ACTIONS(4870), + [anon_sym_c_ushort] = ACTIONS(4870), + [anon_sym_c_int] = ACTIONS(4870), + [anon_sym_c_uint] = ACTIONS(4870), + [anon_sym_c_long] = ACTIONS(4870), + [anon_sym_c_ulong] = ACTIONS(4870), + [anon_sym_c_longlong] = ACTIONS(4870), + [anon_sym_c_ulonglong] = ACTIONS(4870), + [anon_sym_c_float] = ACTIONS(4870), + [anon_sym_c_double] = ACTIONS(4870), + [anon_sym_c_longdouble] = ACTIONS(4870), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_AMP_EQ] = ACTIONS(4868), + [anon_sym_PIPE_EQ] = ACTIONS(4870), + [anon_sym_xor_EQ] = ACTIONS(4868), + [anon_sym_LT_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_GT_EQ] = ACTIONS(4868), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4868), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_yield] = ACTIONS(4870), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_defer] = ACTIONS(4870), + [anon_sym_errdefer] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_while] = ACTIONS(4870), + [anon_sym_expand] = ACTIONS(4870), + [anon_sym_for] = ACTIONS(4870), + [anon_sym_PIPE2] = ACTIONS(4868), + [anon_sym_match] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4868), + [anon_sym_orelse] = ACTIONS(4870), + [anon_sym_or] = ACTIONS(4870), + [anon_sym_and] = ACTIONS(4870), + [anon_sym_EQ_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_xor] = ACTIONS(4870), + [anon_sym_LT_LT] = ACTIONS(4870), + [anon_sym_GT_GT] = ACTIONS(4870), + [anon_sym_LT_LT_PIPE] = ACTIONS(4870), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_catch] = ACTIONS(4870), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_unreachable] = ACTIONS(4870), + [anon_sym_undefined] = ACTIONS(4870), + [sym_sink] = ACTIONS(4870), + [sym_integer] = ACTIONS(4870), + [sym_float] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [sym_multiline_string] = ACTIONS(4868), + [sym_character] = ACTIONS(4868), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4868), + }, + [STATE(3631)] = { + [sym_identifier] = ACTIONS(4874), + [anon_sym_func] = ACTIONS(4874), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_struct] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4874), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_void] = ACTIONS(4874), + [anon_sym_noreturn] = ACTIONS(4874), + [anon_sym_type] = ACTIONS(4874), + [anon_sym_anyopaque] = ACTIONS(4874), + [anon_sym_bool] = ACTIONS(4874), + [anon_sym_int] = ACTIONS(4874), + [anon_sym_uint] = ACTIONS(4874), + [anon_sym_float] = ACTIONS(4874), + [anon_sym_range] = ACTIONS(4874), + [anon_sym_i8] = ACTIONS(4874), + [anon_sym_i16] = ACTIONS(4874), + [anon_sym_i32] = ACTIONS(4874), + [anon_sym_i64] = ACTIONS(4874), + [anon_sym_u8] = ACTIONS(4874), + [anon_sym_u16] = ACTIONS(4874), + [anon_sym_u32] = ACTIONS(4874), + [anon_sym_u64] = ACTIONS(4874), + [anon_sym_isize] = ACTIONS(4874), + [anon_sym_usize] = ACTIONS(4874), + [anon_sym_f32] = ACTIONS(4874), + [anon_sym_f64] = ACTIONS(4874), + [anon_sym_c_char] = ACTIONS(4874), + [anon_sym_c_schar] = ACTIONS(4874), + [anon_sym_c_uchar] = ACTIONS(4874), + [anon_sym_c_short] = ACTIONS(4874), + [anon_sym_c_ushort] = ACTIONS(4874), + [anon_sym_c_int] = ACTIONS(4874), + [anon_sym_c_uint] = ACTIONS(4874), + [anon_sym_c_long] = ACTIONS(4874), + [anon_sym_c_ulong] = ACTIONS(4874), + [anon_sym_c_longlong] = ACTIONS(4874), + [anon_sym_c_ulonglong] = ACTIONS(4874), + [anon_sym_c_float] = ACTIONS(4874), + [anon_sym_c_double] = ACTIONS(4874), + [anon_sym_c_longdouble] = ACTIONS(4874), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_AMP_EQ] = ACTIONS(4872), + [anon_sym_PIPE_EQ] = ACTIONS(4874), + [anon_sym_xor_EQ] = ACTIONS(4872), + [anon_sym_LT_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_GT_EQ] = ACTIONS(4872), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4872), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_yield] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_defer] = ACTIONS(4874), + [anon_sym_errdefer] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_expand] = ACTIONS(4874), + [anon_sym_for] = ACTIONS(4874), + [anon_sym_PIPE2] = ACTIONS(4872), + [anon_sym_match] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4872), + [anon_sym_orelse] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4874), + [anon_sym_xor] = ACTIONS(4874), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4874), + [anon_sym_LT_LT_PIPE] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_catch] = ACTIONS(4874), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_unreachable] = ACTIONS(4874), + [anon_sym_undefined] = ACTIONS(4874), + [sym_sink] = ACTIONS(4874), + [sym_integer] = ACTIONS(4874), + [sym_float] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [sym_multiline_string] = ACTIONS(4872), + [sym_character] = ACTIONS(4872), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4872), + }, + [STATE(3632)] = { + [sym_identifier] = ACTIONS(4878), + [anon_sym_func] = ACTIONS(4878), + [anon_sym_BANG] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_struct] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4878), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_void] = ACTIONS(4878), + [anon_sym_noreturn] = ACTIONS(4878), + [anon_sym_type] = ACTIONS(4878), + [anon_sym_anyopaque] = ACTIONS(4878), + [anon_sym_bool] = ACTIONS(4878), + [anon_sym_int] = ACTIONS(4878), + [anon_sym_uint] = ACTIONS(4878), + [anon_sym_float] = ACTIONS(4878), + [anon_sym_range] = ACTIONS(4878), + [anon_sym_i8] = ACTIONS(4878), + [anon_sym_i16] = ACTIONS(4878), + [anon_sym_i32] = ACTIONS(4878), + [anon_sym_i64] = ACTIONS(4878), + [anon_sym_u8] = ACTIONS(4878), + [anon_sym_u16] = ACTIONS(4878), + [anon_sym_u32] = ACTIONS(4878), + [anon_sym_u64] = ACTIONS(4878), + [anon_sym_isize] = ACTIONS(4878), + [anon_sym_usize] = ACTIONS(4878), + [anon_sym_f32] = ACTIONS(4878), + [anon_sym_f64] = ACTIONS(4878), + [anon_sym_c_char] = ACTIONS(4878), + [anon_sym_c_schar] = ACTIONS(4878), + [anon_sym_c_uchar] = ACTIONS(4878), + [anon_sym_c_short] = ACTIONS(4878), + [anon_sym_c_ushort] = ACTIONS(4878), + [anon_sym_c_int] = ACTIONS(4878), + [anon_sym_c_uint] = ACTIONS(4878), + [anon_sym_c_long] = ACTIONS(4878), + [anon_sym_c_ulong] = ACTIONS(4878), + [anon_sym_c_longlong] = ACTIONS(4878), + [anon_sym_c_ulonglong] = ACTIONS(4878), + [anon_sym_c_float] = ACTIONS(4878), + [anon_sym_c_double] = ACTIONS(4878), + [anon_sym_c_longdouble] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_AMP_EQ] = ACTIONS(4876), + [anon_sym_PIPE_EQ] = ACTIONS(4878), + [anon_sym_xor_EQ] = ACTIONS(4876), + [anon_sym_LT_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_GT_EQ] = ACTIONS(4876), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4876), + [anon_sym_return] = ACTIONS(4878), + [anon_sym_yield] = ACTIONS(4878), + [anon_sym_break] = ACTIONS(4878), + [anon_sym_continue] = ACTIONS(4878), + [anon_sym_defer] = ACTIONS(4878), + [anon_sym_errdefer] = ACTIONS(4878), + [anon_sym_if] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_while] = ACTIONS(4878), + [anon_sym_expand] = ACTIONS(4878), + [anon_sym_for] = ACTIONS(4878), + [anon_sym_PIPE2] = ACTIONS(4876), + [anon_sym_match] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4876), + [anon_sym_orelse] = ACTIONS(4878), + [anon_sym_or] = ACTIONS(4878), + [anon_sym_and] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_xor] = ACTIONS(4878), + [anon_sym_LT_LT] = ACTIONS(4878), + [anon_sym_GT_GT] = ACTIONS(4878), + [anon_sym_LT_LT_PIPE] = ACTIONS(4878), + [anon_sym_PLUS] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4878), + [anon_sym_catch] = ACTIONS(4878), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_try] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4878), + [anon_sym_false] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4878), + [anon_sym_unreachable] = ACTIONS(4878), + [anon_sym_undefined] = ACTIONS(4878), + [sym_sink] = ACTIONS(4878), + [sym_integer] = ACTIONS(4878), + [sym_float] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [sym_multiline_string] = ACTIONS(4876), + [sym_character] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4876), + }, + [STATE(3633)] = { + [sym_identifier] = ACTIONS(4882), + [anon_sym_func] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_struct] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_void] = ACTIONS(4882), + [anon_sym_noreturn] = ACTIONS(4882), + [anon_sym_type] = ACTIONS(4882), + [anon_sym_anyopaque] = ACTIONS(4882), + [anon_sym_bool] = ACTIONS(4882), + [anon_sym_int] = ACTIONS(4882), + [anon_sym_uint] = ACTIONS(4882), + [anon_sym_float] = ACTIONS(4882), + [anon_sym_range] = ACTIONS(4882), + [anon_sym_i8] = ACTIONS(4882), + [anon_sym_i16] = ACTIONS(4882), + [anon_sym_i32] = ACTIONS(4882), + [anon_sym_i64] = ACTIONS(4882), + [anon_sym_u8] = ACTIONS(4882), + [anon_sym_u16] = ACTIONS(4882), + [anon_sym_u32] = ACTIONS(4882), + [anon_sym_u64] = ACTIONS(4882), + [anon_sym_isize] = ACTIONS(4882), + [anon_sym_usize] = ACTIONS(4882), + [anon_sym_f32] = ACTIONS(4882), + [anon_sym_f64] = ACTIONS(4882), + [anon_sym_c_char] = ACTIONS(4882), + [anon_sym_c_schar] = ACTIONS(4882), + [anon_sym_c_uchar] = ACTIONS(4882), + [anon_sym_c_short] = ACTIONS(4882), + [anon_sym_c_ushort] = ACTIONS(4882), + [anon_sym_c_int] = ACTIONS(4882), + [anon_sym_c_uint] = ACTIONS(4882), + [anon_sym_c_long] = ACTIONS(4882), + [anon_sym_c_ulong] = ACTIONS(4882), + [anon_sym_c_longlong] = ACTIONS(4882), + [anon_sym_c_ulonglong] = ACTIONS(4882), + [anon_sym_c_float] = ACTIONS(4882), + [anon_sym_c_double] = ACTIONS(4882), + [anon_sym_c_longdouble] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_AMP_EQ] = ACTIONS(4880), + [anon_sym_PIPE_EQ] = ACTIONS(4882), + [anon_sym_xor_EQ] = ACTIONS(4880), + [anon_sym_LT_LT_EQ] = ACTIONS(4880), + [anon_sym_GT_GT_EQ] = ACTIONS(4880), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4882), + [anon_sym_yield] = ACTIONS(4882), + [anon_sym_break] = ACTIONS(4882), + [anon_sym_continue] = ACTIONS(4882), + [anon_sym_defer] = ACTIONS(4882), + [anon_sym_errdefer] = ACTIONS(4882), + [anon_sym_if] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_while] = ACTIONS(4882), + [anon_sym_expand] = ACTIONS(4882), + [anon_sym_for] = ACTIONS(4882), + [anon_sym_PIPE2] = ACTIONS(4880), + [anon_sym_match] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4880), + [anon_sym_orelse] = ACTIONS(4882), + [anon_sym_or] = ACTIONS(4882), + [anon_sym_and] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_xor] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4882), + [anon_sym_GT_GT] = ACTIONS(4882), + [anon_sym_LT_LT_PIPE] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_catch] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_unreachable] = ACTIONS(4882), + [anon_sym_undefined] = ACTIONS(4882), + [sym_sink] = ACTIONS(4882), + [sym_integer] = ACTIONS(4882), + [sym_float] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [sym_multiline_string] = ACTIONS(4880), + [sym_character] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4880), + }, + [STATE(3634)] = { + [sym_identifier] = ACTIONS(4886), + [anon_sym_func] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4886), + [anon_sym_struct] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4886), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_void] = ACTIONS(4886), + [anon_sym_noreturn] = ACTIONS(4886), + [anon_sym_type] = ACTIONS(4886), + [anon_sym_anyopaque] = ACTIONS(4886), + [anon_sym_bool] = ACTIONS(4886), + [anon_sym_int] = ACTIONS(4886), + [anon_sym_uint] = ACTIONS(4886), + [anon_sym_float] = ACTIONS(4886), + [anon_sym_range] = ACTIONS(4886), + [anon_sym_i8] = ACTIONS(4886), + [anon_sym_i16] = ACTIONS(4886), + [anon_sym_i32] = ACTIONS(4886), + [anon_sym_i64] = ACTIONS(4886), + [anon_sym_u8] = ACTIONS(4886), + [anon_sym_u16] = ACTIONS(4886), + [anon_sym_u32] = ACTIONS(4886), + [anon_sym_u64] = ACTIONS(4886), + [anon_sym_isize] = ACTIONS(4886), + [anon_sym_usize] = ACTIONS(4886), + [anon_sym_f32] = ACTIONS(4886), + [anon_sym_f64] = ACTIONS(4886), + [anon_sym_c_char] = ACTIONS(4886), + [anon_sym_c_schar] = ACTIONS(4886), + [anon_sym_c_uchar] = ACTIONS(4886), + [anon_sym_c_short] = ACTIONS(4886), + [anon_sym_c_ushort] = ACTIONS(4886), + [anon_sym_c_int] = ACTIONS(4886), + [anon_sym_c_uint] = ACTIONS(4886), + [anon_sym_c_long] = ACTIONS(4886), + [anon_sym_c_ulong] = ACTIONS(4886), + [anon_sym_c_longlong] = ACTIONS(4886), + [anon_sym_c_ulonglong] = ACTIONS(4886), + [anon_sym_c_float] = ACTIONS(4886), + [anon_sym_c_double] = ACTIONS(4886), + [anon_sym_c_longdouble] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4884), + [anon_sym_DASH_EQ] = ACTIONS(4884), + [anon_sym_STAR_EQ] = ACTIONS(4884), + [anon_sym_SLASH_EQ] = ACTIONS(4884), + [anon_sym_AMP_EQ] = ACTIONS(4884), + [anon_sym_PIPE_EQ] = ACTIONS(4886), + [anon_sym_xor_EQ] = ACTIONS(4884), + [anon_sym_LT_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_GT_EQ] = ACTIONS(4884), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4886), + [anon_sym_yield] = ACTIONS(4886), + [anon_sym_break] = ACTIONS(4886), + [anon_sym_continue] = ACTIONS(4886), + [anon_sym_defer] = ACTIONS(4886), + [anon_sym_errdefer] = ACTIONS(4886), + [anon_sym_if] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_while] = ACTIONS(4886), + [anon_sym_expand] = ACTIONS(4886), + [anon_sym_for] = ACTIONS(4886), + [anon_sym_PIPE2] = ACTIONS(4884), + [anon_sym_match] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), + [anon_sym_orelse] = ACTIONS(4886), + [anon_sym_or] = ACTIONS(4886), + [anon_sym_and] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_xor] = ACTIONS(4886), + [anon_sym_LT_LT] = ACTIONS(4886), + [anon_sym_GT_GT] = ACTIONS(4886), + [anon_sym_LT_LT_PIPE] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_catch] = ACTIONS(4886), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4884), + [anon_sym_true] = ACTIONS(4886), + [anon_sym_false] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4886), + [anon_sym_unreachable] = ACTIONS(4886), + [anon_sym_undefined] = ACTIONS(4886), + [sym_sink] = ACTIONS(4886), + [sym_integer] = ACTIONS(4886), + [sym_float] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [sym_multiline_string] = ACTIONS(4884), + [sym_character] = ACTIONS(4884), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4884), + }, + [STATE(3635)] = { + [sym_identifier] = ACTIONS(4890), + [anon_sym_func] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4890), + [anon_sym_EQ] = ACTIONS(4890), + [anon_sym_struct] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4890), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_void] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym_type] = ACTIONS(4890), + [anon_sym_anyopaque] = ACTIONS(4890), + [anon_sym_bool] = ACTIONS(4890), + [anon_sym_int] = ACTIONS(4890), + [anon_sym_uint] = ACTIONS(4890), + [anon_sym_float] = ACTIONS(4890), + [anon_sym_range] = ACTIONS(4890), + [anon_sym_i8] = ACTIONS(4890), + [anon_sym_i16] = ACTIONS(4890), + [anon_sym_i32] = ACTIONS(4890), + [anon_sym_i64] = ACTIONS(4890), + [anon_sym_u8] = ACTIONS(4890), + [anon_sym_u16] = ACTIONS(4890), + [anon_sym_u32] = ACTIONS(4890), + [anon_sym_u64] = ACTIONS(4890), + [anon_sym_isize] = ACTIONS(4890), + [anon_sym_usize] = ACTIONS(4890), + [anon_sym_f32] = ACTIONS(4890), + [anon_sym_f64] = ACTIONS(4890), + [anon_sym_c_char] = ACTIONS(4890), + [anon_sym_c_schar] = ACTIONS(4890), + [anon_sym_c_uchar] = ACTIONS(4890), + [anon_sym_c_short] = ACTIONS(4890), + [anon_sym_c_ushort] = ACTIONS(4890), + [anon_sym_c_int] = ACTIONS(4890), + [anon_sym_c_uint] = ACTIONS(4890), + [anon_sym_c_long] = ACTIONS(4890), + [anon_sym_c_ulong] = ACTIONS(4890), + [anon_sym_c_longlong] = ACTIONS(4890), + [anon_sym_c_ulonglong] = ACTIONS(4890), + [anon_sym_c_float] = ACTIONS(4890), + [anon_sym_c_double] = ACTIONS(4890), + [anon_sym_c_longdouble] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4888), + [anon_sym_DASH_EQ] = ACTIONS(4888), + [anon_sym_STAR_EQ] = ACTIONS(4888), + [anon_sym_SLASH_EQ] = ACTIONS(4888), + [anon_sym_AMP_EQ] = ACTIONS(4888), + [anon_sym_PIPE_EQ] = ACTIONS(4890), + [anon_sym_xor_EQ] = ACTIONS(4888), + [anon_sym_LT_LT_EQ] = ACTIONS(4888), + [anon_sym_GT_GT_EQ] = ACTIONS(4888), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4888), + [anon_sym_return] = ACTIONS(4890), + [anon_sym_yield] = ACTIONS(4890), + [anon_sym_break] = ACTIONS(4890), + [anon_sym_continue] = ACTIONS(4890), + [anon_sym_defer] = ACTIONS(4890), + [anon_sym_errdefer] = ACTIONS(4890), + [anon_sym_if] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_while] = ACTIONS(4890), + [anon_sym_expand] = ACTIONS(4890), + [anon_sym_for] = ACTIONS(4890), + [anon_sym_PIPE2] = ACTIONS(4888), + [anon_sym_match] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), + [anon_sym_orelse] = ACTIONS(4890), + [anon_sym_or] = ACTIONS(4890), + [anon_sym_and] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_xor] = ACTIONS(4890), + [anon_sym_LT_LT] = ACTIONS(4890), + [anon_sym_GT_GT] = ACTIONS(4890), + [anon_sym_LT_LT_PIPE] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_catch] = ACTIONS(4890), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4888), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_unreachable] = ACTIONS(4890), + [anon_sym_undefined] = ACTIONS(4890), + [sym_sink] = ACTIONS(4890), + [sym_integer] = ACTIONS(4890), + [sym_float] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [sym_multiline_string] = ACTIONS(4888), + [sym_character] = ACTIONS(4888), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4888), + }, + [STATE(3636)] = { + [sym_identifier] = ACTIONS(4894), + [anon_sym_func] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_struct] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_void] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym_type] = ACTIONS(4894), + [anon_sym_anyopaque] = ACTIONS(4894), + [anon_sym_bool] = ACTIONS(4894), + [anon_sym_int] = ACTIONS(4894), + [anon_sym_uint] = ACTIONS(4894), + [anon_sym_float] = ACTIONS(4894), + [anon_sym_range] = ACTIONS(4894), + [anon_sym_i8] = ACTIONS(4894), + [anon_sym_i16] = ACTIONS(4894), + [anon_sym_i32] = ACTIONS(4894), + [anon_sym_i64] = ACTIONS(4894), + [anon_sym_u8] = ACTIONS(4894), + [anon_sym_u16] = ACTIONS(4894), + [anon_sym_u32] = ACTIONS(4894), + [anon_sym_u64] = ACTIONS(4894), + [anon_sym_isize] = ACTIONS(4894), + [anon_sym_usize] = ACTIONS(4894), + [anon_sym_f32] = ACTIONS(4894), + [anon_sym_f64] = ACTIONS(4894), + [anon_sym_c_char] = ACTIONS(4894), + [anon_sym_c_schar] = ACTIONS(4894), + [anon_sym_c_uchar] = ACTIONS(4894), + [anon_sym_c_short] = ACTIONS(4894), + [anon_sym_c_ushort] = ACTIONS(4894), + [anon_sym_c_int] = ACTIONS(4894), + [anon_sym_c_uint] = ACTIONS(4894), + [anon_sym_c_long] = ACTIONS(4894), + [anon_sym_c_ulong] = ACTIONS(4894), + [anon_sym_c_longlong] = ACTIONS(4894), + [anon_sym_c_ulonglong] = ACTIONS(4894), + [anon_sym_c_float] = ACTIONS(4894), + [anon_sym_c_double] = ACTIONS(4894), + [anon_sym_c_longdouble] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4892), + [anon_sym_DASH_EQ] = ACTIONS(4892), + [anon_sym_STAR_EQ] = ACTIONS(4892), + [anon_sym_SLASH_EQ] = ACTIONS(4892), + [anon_sym_AMP_EQ] = ACTIONS(4892), + [anon_sym_PIPE_EQ] = ACTIONS(4894), + [anon_sym_xor_EQ] = ACTIONS(4892), + [anon_sym_LT_LT_EQ] = ACTIONS(4892), + [anon_sym_GT_GT_EQ] = ACTIONS(4892), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4894), + [anon_sym_yield] = ACTIONS(4894), + [anon_sym_break] = ACTIONS(4894), + [anon_sym_continue] = ACTIONS(4894), + [anon_sym_defer] = ACTIONS(4894), + [anon_sym_errdefer] = ACTIONS(4894), + [anon_sym_if] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4894), + [anon_sym_while] = ACTIONS(4894), + [anon_sym_expand] = ACTIONS(4894), + [anon_sym_for] = ACTIONS(4894), + [anon_sym_PIPE2] = ACTIONS(4892), + [anon_sym_match] = ACTIONS(4894), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4892), + [anon_sym_orelse] = ACTIONS(4894), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_and] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_xor] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4894), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_LT_LT_PIPE] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_catch] = ACTIONS(4894), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4892), + [anon_sym_true] = ACTIONS(4894), + [anon_sym_false] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4894), + [anon_sym_unreachable] = ACTIONS(4894), + [anon_sym_undefined] = ACTIONS(4894), + [sym_sink] = ACTIONS(4894), + [sym_integer] = ACTIONS(4894), + [sym_float] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [sym_multiline_string] = ACTIONS(4892), + [sym_character] = ACTIONS(4892), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4892), + }, + [STATE(3637)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_func] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_struct] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_void] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym_type] = ACTIONS(4898), + [anon_sym_anyopaque] = ACTIONS(4898), + [anon_sym_bool] = ACTIONS(4898), + [anon_sym_int] = ACTIONS(4898), + [anon_sym_uint] = ACTIONS(4898), + [anon_sym_float] = ACTIONS(4898), + [anon_sym_range] = ACTIONS(4898), + [anon_sym_i8] = ACTIONS(4898), + [anon_sym_i16] = ACTIONS(4898), + [anon_sym_i32] = ACTIONS(4898), + [anon_sym_i64] = ACTIONS(4898), + [anon_sym_u8] = ACTIONS(4898), + [anon_sym_u16] = ACTIONS(4898), + [anon_sym_u32] = ACTIONS(4898), + [anon_sym_u64] = ACTIONS(4898), + [anon_sym_isize] = ACTIONS(4898), + [anon_sym_usize] = ACTIONS(4898), + [anon_sym_f32] = ACTIONS(4898), + [anon_sym_f64] = ACTIONS(4898), + [anon_sym_c_char] = ACTIONS(4898), + [anon_sym_c_schar] = ACTIONS(4898), + [anon_sym_c_uchar] = ACTIONS(4898), + [anon_sym_c_short] = ACTIONS(4898), + [anon_sym_c_ushort] = ACTIONS(4898), + [anon_sym_c_int] = ACTIONS(4898), + [anon_sym_c_uint] = ACTIONS(4898), + [anon_sym_c_long] = ACTIONS(4898), + [anon_sym_c_ulong] = ACTIONS(4898), + [anon_sym_c_longlong] = ACTIONS(4898), + [anon_sym_c_ulonglong] = ACTIONS(4898), + [anon_sym_c_float] = ACTIONS(4898), + [anon_sym_c_double] = ACTIONS(4898), + [anon_sym_c_longdouble] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4896), + [anon_sym_DASH_EQ] = ACTIONS(4896), + [anon_sym_STAR_EQ] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(4896), + [anon_sym_AMP_EQ] = ACTIONS(4896), + [anon_sym_PIPE_EQ] = ACTIONS(4898), + [anon_sym_xor_EQ] = ACTIONS(4896), + [anon_sym_LT_LT_EQ] = ACTIONS(4896), + [anon_sym_GT_GT_EQ] = ACTIONS(4896), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4896), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_yield] = ACTIONS(4898), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_continue] = ACTIONS(4898), + [anon_sym_defer] = ACTIONS(4898), + [anon_sym_errdefer] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_while] = ACTIONS(4898), + [anon_sym_expand] = ACTIONS(4898), + [anon_sym_for] = ACTIONS(4898), + [anon_sym_PIPE2] = ACTIONS(4896), + [anon_sym_match] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4896), + [anon_sym_orelse] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4898), + [anon_sym_LT_LT_PIPE] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_catch] = ACTIONS(4898), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_unreachable] = ACTIONS(4898), + [anon_sym_undefined] = ACTIONS(4898), + [sym_sink] = ACTIONS(4898), + [sym_integer] = ACTIONS(4898), + [sym_float] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [sym_multiline_string] = ACTIONS(4896), + [sym_character] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4896), + }, + [STATE(3638)] = { + [sym_identifier] = ACTIONS(4902), + [anon_sym_func] = ACTIONS(4902), + [anon_sym_BANG] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_struct] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4902), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_void] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym_type] = ACTIONS(4902), + [anon_sym_anyopaque] = ACTIONS(4902), + [anon_sym_bool] = ACTIONS(4902), + [anon_sym_int] = ACTIONS(4902), + [anon_sym_uint] = ACTIONS(4902), + [anon_sym_float] = ACTIONS(4902), + [anon_sym_range] = ACTIONS(4902), + [anon_sym_i8] = ACTIONS(4902), + [anon_sym_i16] = ACTIONS(4902), + [anon_sym_i32] = ACTIONS(4902), + [anon_sym_i64] = ACTIONS(4902), + [anon_sym_u8] = ACTIONS(4902), + [anon_sym_u16] = ACTIONS(4902), + [anon_sym_u32] = ACTIONS(4902), + [anon_sym_u64] = ACTIONS(4902), + [anon_sym_isize] = ACTIONS(4902), + [anon_sym_usize] = ACTIONS(4902), + [anon_sym_f32] = ACTIONS(4902), + [anon_sym_f64] = ACTIONS(4902), + [anon_sym_c_char] = ACTIONS(4902), + [anon_sym_c_schar] = ACTIONS(4902), + [anon_sym_c_uchar] = ACTIONS(4902), + [anon_sym_c_short] = ACTIONS(4902), + [anon_sym_c_ushort] = ACTIONS(4902), + [anon_sym_c_int] = ACTIONS(4902), + [anon_sym_c_uint] = ACTIONS(4902), + [anon_sym_c_long] = ACTIONS(4902), + [anon_sym_c_ulong] = ACTIONS(4902), + [anon_sym_c_longlong] = ACTIONS(4902), + [anon_sym_c_ulonglong] = ACTIONS(4902), + [anon_sym_c_float] = ACTIONS(4902), + [anon_sym_c_double] = ACTIONS(4902), + [anon_sym_c_longdouble] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_AMP_EQ] = ACTIONS(4900), + [anon_sym_PIPE_EQ] = ACTIONS(4902), + [anon_sym_xor_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4900), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_yield] = ACTIONS(4902), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_continue] = ACTIONS(4902), + [anon_sym_defer] = ACTIONS(4902), + [anon_sym_errdefer] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_while] = ACTIONS(4902), + [anon_sym_expand] = ACTIONS(4902), + [anon_sym_for] = ACTIONS(4902), + [anon_sym_PIPE2] = ACTIONS(4900), + [anon_sym_match] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4900), + [anon_sym_orelse] = ACTIONS(4902), + [anon_sym_or] = ACTIONS(4902), + [anon_sym_and] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_xor] = ACTIONS(4902), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_LT_LT_PIPE] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_catch] = ACTIONS(4902), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4902), + [anon_sym_false] = ACTIONS(4902), + [anon_sym_null] = ACTIONS(4902), + [anon_sym_unreachable] = ACTIONS(4902), + [anon_sym_undefined] = ACTIONS(4902), + [sym_sink] = ACTIONS(4902), + [sym_integer] = ACTIONS(4902), + [sym_float] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [sym_multiline_string] = ACTIONS(4900), + [sym_character] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4900), + }, + [STATE(3639)] = { + [sym_identifier] = ACTIONS(4906), + [anon_sym_func] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_void] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym_type] = ACTIONS(4906), + [anon_sym_anyopaque] = ACTIONS(4906), + [anon_sym_bool] = ACTIONS(4906), + [anon_sym_int] = ACTIONS(4906), + [anon_sym_uint] = ACTIONS(4906), + [anon_sym_float] = ACTIONS(4906), + [anon_sym_range] = ACTIONS(4906), + [anon_sym_i8] = ACTIONS(4906), + [anon_sym_i16] = ACTIONS(4906), + [anon_sym_i32] = ACTIONS(4906), + [anon_sym_i64] = ACTIONS(4906), + [anon_sym_u8] = ACTIONS(4906), + [anon_sym_u16] = ACTIONS(4906), + [anon_sym_u32] = ACTIONS(4906), + [anon_sym_u64] = ACTIONS(4906), + [anon_sym_isize] = ACTIONS(4906), + [anon_sym_usize] = ACTIONS(4906), + [anon_sym_f32] = ACTIONS(4906), + [anon_sym_f64] = ACTIONS(4906), + [anon_sym_c_char] = ACTIONS(4906), + [anon_sym_c_schar] = ACTIONS(4906), + [anon_sym_c_uchar] = ACTIONS(4906), + [anon_sym_c_short] = ACTIONS(4906), + [anon_sym_c_ushort] = ACTIONS(4906), + [anon_sym_c_int] = ACTIONS(4906), + [anon_sym_c_uint] = ACTIONS(4906), + [anon_sym_c_long] = ACTIONS(4906), + [anon_sym_c_ulong] = ACTIONS(4906), + [anon_sym_c_longlong] = ACTIONS(4906), + [anon_sym_c_ulonglong] = ACTIONS(4906), + [anon_sym_c_float] = ACTIONS(4906), + [anon_sym_c_double] = ACTIONS(4906), + [anon_sym_c_longdouble] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_AMP_EQ] = ACTIONS(4904), + [anon_sym_PIPE_EQ] = ACTIONS(4906), + [anon_sym_xor_EQ] = ACTIONS(4904), + [anon_sym_LT_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4904), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_yield] = ACTIONS(4906), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_continue] = ACTIONS(4906), + [anon_sym_defer] = ACTIONS(4906), + [anon_sym_errdefer] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_expand] = ACTIONS(4906), + [anon_sym_for] = ACTIONS(4906), + [anon_sym_PIPE2] = ACTIONS(4904), + [anon_sym_match] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4904), + [anon_sym_orelse] = ACTIONS(4906), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_and] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_xor] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4906), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_LT_LT_PIPE] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_catch] = ACTIONS(4906), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_unreachable] = ACTIONS(4906), + [anon_sym_undefined] = ACTIONS(4906), + [sym_sink] = ACTIONS(4906), + [sym_integer] = ACTIONS(4906), + [sym_float] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [sym_multiline_string] = ACTIONS(4904), + [sym_character] = ACTIONS(4904), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4904), + }, + [STATE(3640)] = { + [sym_identifier] = ACTIONS(5780), + [anon_sym_func] = ACTIONS(5780), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_EQ] = ACTIONS(5780), + [anon_sym_struct] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(5784), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5784), + [anon_sym_PIPE] = ACTIONS(5780), + [anon_sym_QMARK] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5784), + [anon_sym_void] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym_type] = ACTIONS(5780), + [anon_sym_anyopaque] = ACTIONS(5780), + [anon_sym_bool] = ACTIONS(5780), + [anon_sym_int] = ACTIONS(5780), + [anon_sym_uint] = ACTIONS(5780), + [anon_sym_float] = ACTIONS(5780), + [anon_sym_range] = ACTIONS(5780), + [anon_sym_i8] = ACTIONS(5780), + [anon_sym_i16] = ACTIONS(5780), + [anon_sym_i32] = ACTIONS(5780), + [anon_sym_i64] = ACTIONS(5780), + [anon_sym_u8] = ACTIONS(5780), + [anon_sym_u16] = ACTIONS(5780), + [anon_sym_u32] = ACTIONS(5780), + [anon_sym_u64] = ACTIONS(5780), + [anon_sym_isize] = ACTIONS(5780), + [anon_sym_usize] = ACTIONS(5780), + [anon_sym_f32] = ACTIONS(5780), + [anon_sym_f64] = ACTIONS(5780), + [anon_sym_c_char] = ACTIONS(5780), + [anon_sym_c_schar] = ACTIONS(5780), + [anon_sym_c_uchar] = ACTIONS(5780), + [anon_sym_c_short] = ACTIONS(5780), + [anon_sym_c_ushort] = ACTIONS(5780), + [anon_sym_c_int] = ACTIONS(5780), + [anon_sym_c_uint] = ACTIONS(5780), + [anon_sym_c_long] = ACTIONS(5780), + [anon_sym_c_ulong] = ACTIONS(5780), + [anon_sym_c_longlong] = ACTIONS(5780), + [anon_sym_c_ulonglong] = ACTIONS(5780), + [anon_sym_c_float] = ACTIONS(5780), + [anon_sym_c_double] = ACTIONS(5780), + [anon_sym_c_longdouble] = ACTIONS(5780), + [anon_sym_PLUS_EQ] = ACTIONS(5784), + [anon_sym_DASH_EQ] = ACTIONS(5784), + [anon_sym_STAR_EQ] = ACTIONS(5784), + [anon_sym_SLASH_EQ] = ACTIONS(5784), + [anon_sym_AMP_EQ] = ACTIONS(5784), + [anon_sym_PIPE_EQ] = ACTIONS(5780), + [anon_sym_xor_EQ] = ACTIONS(5784), + [anon_sym_LT_LT_EQ] = ACTIONS(5784), + [anon_sym_GT_GT_EQ] = ACTIONS(5784), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5784), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_defer] = ACTIONS(5780), + [anon_sym_errdefer] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_else] = ACTIONS(5780), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_expand] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_PIPE2] = ACTIONS(5784), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5784), + [anon_sym_orelse] = ACTIONS(5780), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5784), + [anon_sym_BANG_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5780), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5780), + [anon_sym_LT_LT_PIPE] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5780), + [anon_sym_SLASH] = ACTIONS(5780), + [anon_sym_catch] = ACTIONS(5780), + [anon_sym_TILDE] = ACTIONS(5784), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5784), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_unreachable] = ACTIONS(5780), + [anon_sym_undefined] = ACTIONS(5780), + [sym_sink] = ACTIONS(5780), + [sym_integer] = ACTIONS(5780), + [sym_float] = ACTIONS(5784), + [anon_sym_DQUOTE] = ACTIONS(5784), + [sym_multiline_string] = ACTIONS(5784), + [sym_character] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5784), + }, + [STATE(3641)] = { + [sym_identifier] = ACTIONS(5864), + [anon_sym_func] = ACTIONS(5864), + [anon_sym_BANG] = ACTIONS(5864), + [anon_sym_EQ] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_LPAREN] = ACTIONS(5862), + [anon_sym_LBRACE] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5864), + [anon_sym_DOLLAR] = ACTIONS(5862), + [anon_sym_PIPE] = ACTIONS(5864), + [anon_sym_QMARK] = ACTIONS(5862), + [anon_sym_STAR] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5862), + [anon_sym_void] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_type] = ACTIONS(5864), + [anon_sym_anyopaque] = ACTIONS(5864), + [anon_sym_bool] = ACTIONS(5864), + [anon_sym_int] = ACTIONS(5864), + [anon_sym_uint] = ACTIONS(5864), + [anon_sym_float] = ACTIONS(5864), + [anon_sym_range] = ACTIONS(5864), + [anon_sym_i8] = ACTIONS(5864), + [anon_sym_i16] = ACTIONS(5864), + [anon_sym_i32] = ACTIONS(5864), + [anon_sym_i64] = ACTIONS(5864), + [anon_sym_u8] = ACTIONS(5864), + [anon_sym_u16] = ACTIONS(5864), + [anon_sym_u32] = ACTIONS(5864), + [anon_sym_u64] = ACTIONS(5864), + [anon_sym_isize] = ACTIONS(5864), + [anon_sym_usize] = ACTIONS(5864), + [anon_sym_f32] = ACTIONS(5864), + [anon_sym_f64] = ACTIONS(5864), + [anon_sym_c_char] = ACTIONS(5864), + [anon_sym_c_schar] = ACTIONS(5864), + [anon_sym_c_uchar] = ACTIONS(5864), + [anon_sym_c_short] = ACTIONS(5864), + [anon_sym_c_ushort] = ACTIONS(5864), + [anon_sym_c_int] = ACTIONS(5864), + [anon_sym_c_uint] = ACTIONS(5864), + [anon_sym_c_long] = ACTIONS(5864), + [anon_sym_c_ulong] = ACTIONS(5864), + [anon_sym_c_longlong] = ACTIONS(5864), + [anon_sym_c_ulonglong] = ACTIONS(5864), + [anon_sym_c_float] = ACTIONS(5864), + [anon_sym_c_double] = ACTIONS(5864), + [anon_sym_c_longdouble] = ACTIONS(5864), + [anon_sym_PLUS_EQ] = ACTIONS(5862), + [anon_sym_DASH_EQ] = ACTIONS(5862), + [anon_sym_STAR_EQ] = ACTIONS(5862), + [anon_sym_SLASH_EQ] = ACTIONS(5862), + [anon_sym_AMP_EQ] = ACTIONS(5862), + [anon_sym_PIPE_EQ] = ACTIONS(5864), + [anon_sym_xor_EQ] = ACTIONS(5862), + [anon_sym_LT_LT_EQ] = ACTIONS(5862), + [anon_sym_GT_GT_EQ] = ACTIONS(5862), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5862), + [anon_sym_return] = ACTIONS(5864), + [anon_sym_yield] = ACTIONS(5864), + [anon_sym_break] = ACTIONS(5864), + [anon_sym_continue] = ACTIONS(5864), + [anon_sym_defer] = ACTIONS(5864), + [anon_sym_errdefer] = ACTIONS(5864), + [anon_sym_if] = ACTIONS(5864), + [anon_sym_else] = ACTIONS(5864), + [anon_sym_while] = ACTIONS(5864), + [anon_sym_expand] = ACTIONS(5864), + [anon_sym_for] = ACTIONS(5864), + [anon_sym_PIPE2] = ACTIONS(5862), + [anon_sym_match] = ACTIONS(5864), + [anon_sym_DOT_DOT] = ACTIONS(5864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5862), + [anon_sym_orelse] = ACTIONS(5864), + [anon_sym_or] = ACTIONS(5864), + [anon_sym_and] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_BANG_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_LT_EQ] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5864), + [anon_sym_GT_EQ] = ACTIONS(5862), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym_xor] = ACTIONS(5864), + [anon_sym_LT_LT] = ACTIONS(5864), + [anon_sym_GT_GT] = ACTIONS(5864), + [anon_sym_LT_LT_PIPE] = ACTIONS(5864), + [anon_sym_PLUS] = ACTIONS(5864), + [anon_sym_SLASH] = ACTIONS(5864), + [anon_sym_catch] = ACTIONS(5864), + [anon_sym_TILDE] = ACTIONS(5862), + [anon_sym_try] = ACTIONS(5864), + [anon_sym_DOT] = ACTIONS(5864), + [anon_sym_CARET] = ACTIONS(5862), + [anon_sym_true] = ACTIONS(5864), + [anon_sym_false] = ACTIONS(5864), + [anon_sym_null] = ACTIONS(5864), + [anon_sym_unreachable] = ACTIONS(5864), + [anon_sym_undefined] = ACTIONS(5864), + [sym_sink] = ACTIONS(5864), + [sym_integer] = ACTIONS(5864), + [sym_float] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(5862), + [sym_multiline_string] = ACTIONS(5862), + [sym_character] = ACTIONS(5862), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5862), + }, + [STATE(3642)] = { + [sym_identifier] = ACTIONS(5868), + [anon_sym_func] = ACTIONS(5868), + [anon_sym_BANG] = ACTIONS(5868), + [anon_sym_EQ] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5868), + [anon_sym_LPAREN] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5868), + [anon_sym_QMARK] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5866), + [anon_sym_void] = ACTIONS(5868), + [anon_sym_noreturn] = ACTIONS(5868), + [anon_sym_type] = ACTIONS(5868), + [anon_sym_anyopaque] = ACTIONS(5868), + [anon_sym_bool] = ACTIONS(5868), + [anon_sym_int] = ACTIONS(5868), + [anon_sym_uint] = ACTIONS(5868), + [anon_sym_float] = ACTIONS(5868), + [anon_sym_range] = ACTIONS(5868), + [anon_sym_i8] = ACTIONS(5868), + [anon_sym_i16] = ACTIONS(5868), + [anon_sym_i32] = ACTIONS(5868), + [anon_sym_i64] = ACTIONS(5868), + [anon_sym_u8] = ACTIONS(5868), + [anon_sym_u16] = ACTIONS(5868), + [anon_sym_u32] = ACTIONS(5868), + [anon_sym_u64] = ACTIONS(5868), + [anon_sym_isize] = ACTIONS(5868), + [anon_sym_usize] = ACTIONS(5868), + [anon_sym_f32] = ACTIONS(5868), + [anon_sym_f64] = ACTIONS(5868), + [anon_sym_c_char] = ACTIONS(5868), + [anon_sym_c_schar] = ACTIONS(5868), + [anon_sym_c_uchar] = ACTIONS(5868), + [anon_sym_c_short] = ACTIONS(5868), + [anon_sym_c_ushort] = ACTIONS(5868), + [anon_sym_c_int] = ACTIONS(5868), + [anon_sym_c_uint] = ACTIONS(5868), + [anon_sym_c_long] = ACTIONS(5868), + [anon_sym_c_ulong] = ACTIONS(5868), + [anon_sym_c_longlong] = ACTIONS(5868), + [anon_sym_c_ulonglong] = ACTIONS(5868), + [anon_sym_c_float] = ACTIONS(5868), + [anon_sym_c_double] = ACTIONS(5868), + [anon_sym_c_longdouble] = ACTIONS(5868), + [anon_sym_PLUS_EQ] = ACTIONS(5866), + [anon_sym_DASH_EQ] = ACTIONS(5866), + [anon_sym_STAR_EQ] = ACTIONS(5866), + [anon_sym_SLASH_EQ] = ACTIONS(5866), + [anon_sym_AMP_EQ] = ACTIONS(5866), + [anon_sym_PIPE_EQ] = ACTIONS(5868), + [anon_sym_xor_EQ] = ACTIONS(5866), + [anon_sym_LT_LT_EQ] = ACTIONS(5866), + [anon_sym_GT_GT_EQ] = ACTIONS(5866), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5866), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_break] = ACTIONS(5868), + [anon_sym_continue] = ACTIONS(5868), + [anon_sym_defer] = ACTIONS(5868), + [anon_sym_errdefer] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_else] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_expand] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_PIPE2] = ACTIONS(5866), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_DOT_DOT] = ACTIONS(5868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5866), + [anon_sym_orelse] = ACTIONS(5868), + [anon_sym_or] = ACTIONS(5868), + [anon_sym_and] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_EQ] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_xor] = ACTIONS(5868), + [anon_sym_LT_LT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5868), + [anon_sym_LT_LT_PIPE] = ACTIONS(5868), + [anon_sym_PLUS] = ACTIONS(5868), + [anon_sym_SLASH] = ACTIONS(5868), + [anon_sym_catch] = ACTIONS(5868), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_DOT] = ACTIONS(5868), + [anon_sym_CARET] = ACTIONS(5866), + [anon_sym_true] = ACTIONS(5868), + [anon_sym_false] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_unreachable] = ACTIONS(5868), + [anon_sym_undefined] = ACTIONS(5868), + [sym_sink] = ACTIONS(5868), + [sym_integer] = ACTIONS(5868), + [sym_float] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(5866), + [sym_multiline_string] = ACTIONS(5866), + [sym_character] = ACTIONS(5866), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5866), + }, + [STATE(3643)] = { + [sym_identifier] = ACTIONS(4910), + [anon_sym_func] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_struct] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_void] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym_type] = ACTIONS(4910), + [anon_sym_anyopaque] = ACTIONS(4910), + [anon_sym_bool] = ACTIONS(4910), + [anon_sym_int] = ACTIONS(4910), + [anon_sym_uint] = ACTIONS(4910), + [anon_sym_float] = ACTIONS(4910), + [anon_sym_range] = ACTIONS(4910), + [anon_sym_i8] = ACTIONS(4910), + [anon_sym_i16] = ACTIONS(4910), + [anon_sym_i32] = ACTIONS(4910), + [anon_sym_i64] = ACTIONS(4910), + [anon_sym_u8] = ACTIONS(4910), + [anon_sym_u16] = ACTIONS(4910), + [anon_sym_u32] = ACTIONS(4910), + [anon_sym_u64] = ACTIONS(4910), + [anon_sym_isize] = ACTIONS(4910), + [anon_sym_usize] = ACTIONS(4910), + [anon_sym_f32] = ACTIONS(4910), + [anon_sym_f64] = ACTIONS(4910), + [anon_sym_c_char] = ACTIONS(4910), + [anon_sym_c_schar] = ACTIONS(4910), + [anon_sym_c_uchar] = ACTIONS(4910), + [anon_sym_c_short] = ACTIONS(4910), + [anon_sym_c_ushort] = ACTIONS(4910), + [anon_sym_c_int] = ACTIONS(4910), + [anon_sym_c_uint] = ACTIONS(4910), + [anon_sym_c_long] = ACTIONS(4910), + [anon_sym_c_ulong] = ACTIONS(4910), + [anon_sym_c_longlong] = ACTIONS(4910), + [anon_sym_c_ulonglong] = ACTIONS(4910), + [anon_sym_c_float] = ACTIONS(4910), + [anon_sym_c_double] = ACTIONS(4910), + [anon_sym_c_longdouble] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_AMP_EQ] = ACTIONS(4908), + [anon_sym_PIPE_EQ] = ACTIONS(4910), + [anon_sym_xor_EQ] = ACTIONS(4908), + [anon_sym_LT_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4908), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_yield] = ACTIONS(4910), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_defer] = ACTIONS(4910), + [anon_sym_errdefer] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_expand] = ACTIONS(4910), + [anon_sym_for] = ACTIONS(4910), + [anon_sym_PIPE2] = ACTIONS(4908), + [anon_sym_match] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4908), + [anon_sym_orelse] = ACTIONS(4910), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_and] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_xor] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4910), + [anon_sym_GT_GT] = ACTIONS(4910), + [anon_sym_LT_LT_PIPE] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_catch] = ACTIONS(4910), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_unreachable] = ACTIONS(4910), + [anon_sym_undefined] = ACTIONS(4910), + [sym_sink] = ACTIONS(4910), + [sym_integer] = ACTIONS(4910), + [sym_float] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [sym_multiline_string] = ACTIONS(4908), + [sym_character] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4908), + }, + [STATE(3644)] = { + [sym_identifier] = ACTIONS(4916), + [anon_sym_func] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_struct] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4914), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_void] = ACTIONS(4916), + [anon_sym_noreturn] = ACTIONS(4916), + [anon_sym_type] = ACTIONS(4916), + [anon_sym_anyopaque] = ACTIONS(4916), + [anon_sym_bool] = ACTIONS(4916), + [anon_sym_int] = ACTIONS(4916), + [anon_sym_uint] = ACTIONS(4916), + [anon_sym_float] = ACTIONS(4916), + [anon_sym_range] = ACTIONS(4916), + [anon_sym_i8] = ACTIONS(4916), + [anon_sym_i16] = ACTIONS(4916), + [anon_sym_i32] = ACTIONS(4916), + [anon_sym_i64] = ACTIONS(4916), + [anon_sym_u8] = ACTIONS(4916), + [anon_sym_u16] = ACTIONS(4916), + [anon_sym_u32] = ACTIONS(4916), + [anon_sym_u64] = ACTIONS(4916), + [anon_sym_isize] = ACTIONS(4916), + [anon_sym_usize] = ACTIONS(4916), + [anon_sym_f32] = ACTIONS(4916), + [anon_sym_f64] = ACTIONS(4916), + [anon_sym_c_char] = ACTIONS(4916), + [anon_sym_c_schar] = ACTIONS(4916), + [anon_sym_c_uchar] = ACTIONS(4916), + [anon_sym_c_short] = ACTIONS(4916), + [anon_sym_c_ushort] = ACTIONS(4916), + [anon_sym_c_int] = ACTIONS(4916), + [anon_sym_c_uint] = ACTIONS(4916), + [anon_sym_c_long] = ACTIONS(4916), + [anon_sym_c_ulong] = ACTIONS(4916), + [anon_sym_c_longlong] = ACTIONS(4916), + [anon_sym_c_ulonglong] = ACTIONS(4916), + [anon_sym_c_float] = ACTIONS(4916), + [anon_sym_c_double] = ACTIONS(4916), + [anon_sym_c_longdouble] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_AMP_EQ] = ACTIONS(4914), + [anon_sym_PIPE_EQ] = ACTIONS(4916), + [anon_sym_xor_EQ] = ACTIONS(4914), + [anon_sym_LT_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_GT_EQ] = ACTIONS(4914), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4914), + [anon_sym_return] = ACTIONS(4916), + [anon_sym_yield] = ACTIONS(4916), + [anon_sym_break] = ACTIONS(4916), + [anon_sym_continue] = ACTIONS(4916), + [anon_sym_defer] = ACTIONS(4916), + [anon_sym_errdefer] = ACTIONS(4916), + [anon_sym_if] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_while] = ACTIONS(4916), + [anon_sym_expand] = ACTIONS(4916), + [anon_sym_for] = ACTIONS(4916), + [anon_sym_PIPE2] = ACTIONS(4914), + [anon_sym_match] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), + [anon_sym_orelse] = ACTIONS(4916), + [anon_sym_or] = ACTIONS(4916), + [anon_sym_and] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_AMP] = ACTIONS(4916), + [anon_sym_xor] = ACTIONS(4916), + [anon_sym_LT_LT] = ACTIONS(4916), + [anon_sym_GT_GT] = ACTIONS(4916), + [anon_sym_LT_LT_PIPE] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_catch] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4916), + [anon_sym_false] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4916), + [anon_sym_unreachable] = ACTIONS(4916), + [anon_sym_undefined] = ACTIONS(4916), + [sym_sink] = ACTIONS(4916), + [sym_integer] = ACTIONS(4916), + [sym_float] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(4914), + [sym_multiline_string] = ACTIONS(4914), + [sym_character] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4914), + }, + [STATE(3645)] = { + [sym_identifier] = ACTIONS(4922), + [anon_sym_func] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_struct] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4922), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_void] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym_type] = ACTIONS(4922), + [anon_sym_anyopaque] = ACTIONS(4922), + [anon_sym_bool] = ACTIONS(4922), + [anon_sym_int] = ACTIONS(4922), + [anon_sym_uint] = ACTIONS(4922), + [anon_sym_float] = ACTIONS(4922), + [anon_sym_range] = ACTIONS(4922), + [anon_sym_i8] = ACTIONS(4922), + [anon_sym_i16] = ACTIONS(4922), + [anon_sym_i32] = ACTIONS(4922), + [anon_sym_i64] = ACTIONS(4922), + [anon_sym_u8] = ACTIONS(4922), + [anon_sym_u16] = ACTIONS(4922), + [anon_sym_u32] = ACTIONS(4922), + [anon_sym_u64] = ACTIONS(4922), + [anon_sym_isize] = ACTIONS(4922), + [anon_sym_usize] = ACTIONS(4922), + [anon_sym_f32] = ACTIONS(4922), + [anon_sym_f64] = ACTIONS(4922), + [anon_sym_c_char] = ACTIONS(4922), + [anon_sym_c_schar] = ACTIONS(4922), + [anon_sym_c_uchar] = ACTIONS(4922), + [anon_sym_c_short] = ACTIONS(4922), + [anon_sym_c_ushort] = ACTIONS(4922), + [anon_sym_c_int] = ACTIONS(4922), + [anon_sym_c_uint] = ACTIONS(4922), + [anon_sym_c_long] = ACTIONS(4922), + [anon_sym_c_ulong] = ACTIONS(4922), + [anon_sym_c_longlong] = ACTIONS(4922), + [anon_sym_c_ulonglong] = ACTIONS(4922), + [anon_sym_c_float] = ACTIONS(4922), + [anon_sym_c_double] = ACTIONS(4922), + [anon_sym_c_longdouble] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_AMP_EQ] = ACTIONS(4920), + [anon_sym_PIPE_EQ] = ACTIONS(4922), + [anon_sym_xor_EQ] = ACTIONS(4920), + [anon_sym_LT_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4920), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_yield] = ACTIONS(4922), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_continue] = ACTIONS(4922), + [anon_sym_defer] = ACTIONS(4922), + [anon_sym_errdefer] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_expand] = ACTIONS(4922), + [anon_sym_for] = ACTIONS(4922), + [anon_sym_PIPE2] = ACTIONS(4920), + [anon_sym_match] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), + [anon_sym_orelse] = ACTIONS(4922), + [anon_sym_or] = ACTIONS(4922), + [anon_sym_and] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_xor] = ACTIONS(4922), + [anon_sym_LT_LT] = ACTIONS(4922), + [anon_sym_GT_GT] = ACTIONS(4922), + [anon_sym_LT_LT_PIPE] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_catch] = ACTIONS(4922), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_unreachable] = ACTIONS(4922), + [anon_sym_undefined] = ACTIONS(4922), + [sym_sink] = ACTIONS(4922), + [sym_integer] = ACTIONS(4922), + [sym_float] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [sym_multiline_string] = ACTIONS(4920), + [sym_character] = ACTIONS(4920), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4920), + }, + [STATE(3646)] = { + [sym_identifier] = ACTIONS(4926), + [anon_sym_func] = ACTIONS(4926), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_struct] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_void] = ACTIONS(4926), + [anon_sym_noreturn] = ACTIONS(4926), + [anon_sym_type] = ACTIONS(4926), + [anon_sym_anyopaque] = ACTIONS(4926), + [anon_sym_bool] = ACTIONS(4926), + [anon_sym_int] = ACTIONS(4926), + [anon_sym_uint] = ACTIONS(4926), + [anon_sym_float] = ACTIONS(4926), + [anon_sym_range] = ACTIONS(4926), + [anon_sym_i8] = ACTIONS(4926), + [anon_sym_i16] = ACTIONS(4926), + [anon_sym_i32] = ACTIONS(4926), + [anon_sym_i64] = ACTIONS(4926), + [anon_sym_u8] = ACTIONS(4926), + [anon_sym_u16] = ACTIONS(4926), + [anon_sym_u32] = ACTIONS(4926), + [anon_sym_u64] = ACTIONS(4926), + [anon_sym_isize] = ACTIONS(4926), + [anon_sym_usize] = ACTIONS(4926), + [anon_sym_f32] = ACTIONS(4926), + [anon_sym_f64] = ACTIONS(4926), + [anon_sym_c_char] = ACTIONS(4926), + [anon_sym_c_schar] = ACTIONS(4926), + [anon_sym_c_uchar] = ACTIONS(4926), + [anon_sym_c_short] = ACTIONS(4926), + [anon_sym_c_ushort] = ACTIONS(4926), + [anon_sym_c_int] = ACTIONS(4926), + [anon_sym_c_uint] = ACTIONS(4926), + [anon_sym_c_long] = ACTIONS(4926), + [anon_sym_c_ulong] = ACTIONS(4926), + [anon_sym_c_longlong] = ACTIONS(4926), + [anon_sym_c_ulonglong] = ACTIONS(4926), + [anon_sym_c_float] = ACTIONS(4926), + [anon_sym_c_double] = ACTIONS(4926), + [anon_sym_c_longdouble] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_AMP_EQ] = ACTIONS(4924), + [anon_sym_PIPE_EQ] = ACTIONS(4926), + [anon_sym_xor_EQ] = ACTIONS(4924), + [anon_sym_LT_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_GT_EQ] = ACTIONS(4924), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4924), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_yield] = ACTIONS(4926), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_continue] = ACTIONS(4926), + [anon_sym_defer] = ACTIONS(4926), + [anon_sym_errdefer] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_while] = ACTIONS(4926), + [anon_sym_expand] = ACTIONS(4926), + [anon_sym_for] = ACTIONS(4926), + [anon_sym_PIPE2] = ACTIONS(4924), + [anon_sym_match] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4924), + [anon_sym_orelse] = ACTIONS(4926), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_and] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_xor] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4926), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_LT_LT_PIPE] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_catch] = ACTIONS(4926), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_unreachable] = ACTIONS(4926), + [anon_sym_undefined] = ACTIONS(4926), + [sym_sink] = ACTIONS(4926), + [sym_integer] = ACTIONS(4926), + [sym_float] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [sym_multiline_string] = ACTIONS(4924), + [sym_character] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4924), + }, + [STATE(3647)] = { + [sym_identifier] = ACTIONS(4930), + [anon_sym_func] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_struct] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4930), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_void] = ACTIONS(4930), + [anon_sym_noreturn] = ACTIONS(4930), + [anon_sym_type] = ACTIONS(4930), + [anon_sym_anyopaque] = ACTIONS(4930), + [anon_sym_bool] = ACTIONS(4930), + [anon_sym_int] = ACTIONS(4930), + [anon_sym_uint] = ACTIONS(4930), + [anon_sym_float] = ACTIONS(4930), + [anon_sym_range] = ACTIONS(4930), + [anon_sym_i8] = ACTIONS(4930), + [anon_sym_i16] = ACTIONS(4930), + [anon_sym_i32] = ACTIONS(4930), + [anon_sym_i64] = ACTIONS(4930), + [anon_sym_u8] = ACTIONS(4930), + [anon_sym_u16] = ACTIONS(4930), + [anon_sym_u32] = ACTIONS(4930), + [anon_sym_u64] = ACTIONS(4930), + [anon_sym_isize] = ACTIONS(4930), + [anon_sym_usize] = ACTIONS(4930), + [anon_sym_f32] = ACTIONS(4930), + [anon_sym_f64] = ACTIONS(4930), + [anon_sym_c_char] = ACTIONS(4930), + [anon_sym_c_schar] = ACTIONS(4930), + [anon_sym_c_uchar] = ACTIONS(4930), + [anon_sym_c_short] = ACTIONS(4930), + [anon_sym_c_ushort] = ACTIONS(4930), + [anon_sym_c_int] = ACTIONS(4930), + [anon_sym_c_uint] = ACTIONS(4930), + [anon_sym_c_long] = ACTIONS(4930), + [anon_sym_c_ulong] = ACTIONS(4930), + [anon_sym_c_longlong] = ACTIONS(4930), + [anon_sym_c_ulonglong] = ACTIONS(4930), + [anon_sym_c_float] = ACTIONS(4930), + [anon_sym_c_double] = ACTIONS(4930), + [anon_sym_c_longdouble] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_AMP_EQ] = ACTIONS(4928), + [anon_sym_PIPE_EQ] = ACTIONS(4930), + [anon_sym_xor_EQ] = ACTIONS(4928), + [anon_sym_LT_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_GT_EQ] = ACTIONS(4928), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4928), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_yield] = ACTIONS(4930), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_defer] = ACTIONS(4930), + [anon_sym_errdefer] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_expand] = ACTIONS(4930), + [anon_sym_for] = ACTIONS(4930), + [anon_sym_PIPE2] = ACTIONS(4928), + [anon_sym_match] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), + [anon_sym_orelse] = ACTIONS(4930), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_and] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_xor] = ACTIONS(4930), + [anon_sym_LT_LT] = ACTIONS(4930), + [anon_sym_GT_GT] = ACTIONS(4930), + [anon_sym_LT_LT_PIPE] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_catch] = ACTIONS(4930), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_unreachable] = ACTIONS(4930), + [anon_sym_undefined] = ACTIONS(4930), + [sym_sink] = ACTIONS(4930), + [sym_integer] = ACTIONS(4930), + [sym_float] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [sym_multiline_string] = ACTIONS(4928), + [sym_character] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4928), + }, + [STATE(3648)] = { + [sym_identifier] = ACTIONS(4934), + [anon_sym_func] = ACTIONS(4934), + [anon_sym_BANG] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_struct] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_void] = ACTIONS(4934), + [anon_sym_noreturn] = ACTIONS(4934), + [anon_sym_type] = ACTIONS(4934), + [anon_sym_anyopaque] = ACTIONS(4934), + [anon_sym_bool] = ACTIONS(4934), + [anon_sym_int] = ACTIONS(4934), + [anon_sym_uint] = ACTIONS(4934), + [anon_sym_float] = ACTIONS(4934), + [anon_sym_range] = ACTIONS(4934), + [anon_sym_i8] = ACTIONS(4934), + [anon_sym_i16] = ACTIONS(4934), + [anon_sym_i32] = ACTIONS(4934), + [anon_sym_i64] = ACTIONS(4934), + [anon_sym_u8] = ACTIONS(4934), + [anon_sym_u16] = ACTIONS(4934), + [anon_sym_u32] = ACTIONS(4934), + [anon_sym_u64] = ACTIONS(4934), + [anon_sym_isize] = ACTIONS(4934), + [anon_sym_usize] = ACTIONS(4934), + [anon_sym_f32] = ACTIONS(4934), + [anon_sym_f64] = ACTIONS(4934), + [anon_sym_c_char] = ACTIONS(4934), + [anon_sym_c_schar] = ACTIONS(4934), + [anon_sym_c_uchar] = ACTIONS(4934), + [anon_sym_c_short] = ACTIONS(4934), + [anon_sym_c_ushort] = ACTIONS(4934), + [anon_sym_c_int] = ACTIONS(4934), + [anon_sym_c_uint] = ACTIONS(4934), + [anon_sym_c_long] = ACTIONS(4934), + [anon_sym_c_ulong] = ACTIONS(4934), + [anon_sym_c_longlong] = ACTIONS(4934), + [anon_sym_c_ulonglong] = ACTIONS(4934), + [anon_sym_c_float] = ACTIONS(4934), + [anon_sym_c_double] = ACTIONS(4934), + [anon_sym_c_longdouble] = ACTIONS(4934), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_AMP_EQ] = ACTIONS(4932), + [anon_sym_PIPE_EQ] = ACTIONS(4934), + [anon_sym_xor_EQ] = ACTIONS(4932), + [anon_sym_LT_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_GT_EQ] = ACTIONS(4932), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4932), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_yield] = ACTIONS(4934), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_continue] = ACTIONS(4934), + [anon_sym_defer] = ACTIONS(4934), + [anon_sym_errdefer] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_while] = ACTIONS(4934), + [anon_sym_expand] = ACTIONS(4934), + [anon_sym_for] = ACTIONS(4934), + [anon_sym_PIPE2] = ACTIONS(4932), + [anon_sym_match] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), + [anon_sym_orelse] = ACTIONS(4934), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym_LT_LT_PIPE] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_catch] = ACTIONS(4934), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4934), + [anon_sym_false] = ACTIONS(4934), + [anon_sym_null] = ACTIONS(4934), + [anon_sym_unreachable] = ACTIONS(4934), + [anon_sym_undefined] = ACTIONS(4934), + [sym_sink] = ACTIONS(4934), + [sym_integer] = ACTIONS(4934), + [sym_float] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [sym_multiline_string] = ACTIONS(4932), + [sym_character] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4932), + }, + [STATE(3649)] = { + [sym_identifier] = ACTIONS(4940), + [anon_sym_func] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_struct] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_void] = ACTIONS(4940), + [anon_sym_noreturn] = ACTIONS(4940), + [anon_sym_type] = ACTIONS(4940), + [anon_sym_anyopaque] = ACTIONS(4940), + [anon_sym_bool] = ACTIONS(4940), + [anon_sym_int] = ACTIONS(4940), + [anon_sym_uint] = ACTIONS(4940), + [anon_sym_float] = ACTIONS(4940), + [anon_sym_range] = ACTIONS(4940), + [anon_sym_i8] = ACTIONS(4940), + [anon_sym_i16] = ACTIONS(4940), + [anon_sym_i32] = ACTIONS(4940), + [anon_sym_i64] = ACTIONS(4940), + [anon_sym_u8] = ACTIONS(4940), + [anon_sym_u16] = ACTIONS(4940), + [anon_sym_u32] = ACTIONS(4940), + [anon_sym_u64] = ACTIONS(4940), + [anon_sym_isize] = ACTIONS(4940), + [anon_sym_usize] = ACTIONS(4940), + [anon_sym_f32] = ACTIONS(4940), + [anon_sym_f64] = ACTIONS(4940), + [anon_sym_c_char] = ACTIONS(4940), + [anon_sym_c_schar] = ACTIONS(4940), + [anon_sym_c_uchar] = ACTIONS(4940), + [anon_sym_c_short] = ACTIONS(4940), + [anon_sym_c_ushort] = ACTIONS(4940), + [anon_sym_c_int] = ACTIONS(4940), + [anon_sym_c_uint] = ACTIONS(4940), + [anon_sym_c_long] = ACTIONS(4940), + [anon_sym_c_ulong] = ACTIONS(4940), + [anon_sym_c_longlong] = ACTIONS(4940), + [anon_sym_c_ulonglong] = ACTIONS(4940), + [anon_sym_c_float] = ACTIONS(4940), + [anon_sym_c_double] = ACTIONS(4940), + [anon_sym_c_longdouble] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_AMP_EQ] = ACTIONS(4938), + [anon_sym_PIPE_EQ] = ACTIONS(4940), + [anon_sym_xor_EQ] = ACTIONS(4938), + [anon_sym_LT_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_GT_EQ] = ACTIONS(4938), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4938), + [anon_sym_return] = ACTIONS(4940), + [anon_sym_yield] = ACTIONS(4940), + [anon_sym_break] = ACTIONS(4940), + [anon_sym_continue] = ACTIONS(4940), + [anon_sym_defer] = ACTIONS(4940), + [anon_sym_errdefer] = ACTIONS(4940), + [anon_sym_if] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_while] = ACTIONS(4940), + [anon_sym_expand] = ACTIONS(4940), + [anon_sym_for] = ACTIONS(4940), + [anon_sym_PIPE2] = ACTIONS(4938), + [anon_sym_match] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), + [anon_sym_orelse] = ACTIONS(4940), + [anon_sym_or] = ACTIONS(4940), + [anon_sym_and] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_AMP] = ACTIONS(4940), + [anon_sym_xor] = ACTIONS(4940), + [anon_sym_LT_LT] = ACTIONS(4940), + [anon_sym_GT_GT] = ACTIONS(4940), + [anon_sym_LT_LT_PIPE] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_catch] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_unreachable] = ACTIONS(4940), + [anon_sym_undefined] = ACTIONS(4940), + [sym_sink] = ACTIONS(4940), + [sym_integer] = ACTIONS(4940), + [sym_float] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(4938), + [sym_multiline_string] = ACTIONS(4938), + [sym_character] = ACTIONS(4938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4938), + }, + [STATE(3650)] = { + [sym_identifier] = ACTIONS(4944), + [anon_sym_func] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_struct] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_void] = ACTIONS(4944), + [anon_sym_noreturn] = ACTIONS(4944), + [anon_sym_type] = ACTIONS(4944), + [anon_sym_anyopaque] = ACTIONS(4944), + [anon_sym_bool] = ACTIONS(4944), + [anon_sym_int] = ACTIONS(4944), + [anon_sym_uint] = ACTIONS(4944), + [anon_sym_float] = ACTIONS(4944), + [anon_sym_range] = ACTIONS(4944), + [anon_sym_i8] = ACTIONS(4944), + [anon_sym_i16] = ACTIONS(4944), + [anon_sym_i32] = ACTIONS(4944), + [anon_sym_i64] = ACTIONS(4944), + [anon_sym_u8] = ACTIONS(4944), + [anon_sym_u16] = ACTIONS(4944), + [anon_sym_u32] = ACTIONS(4944), + [anon_sym_u64] = ACTIONS(4944), + [anon_sym_isize] = ACTIONS(4944), + [anon_sym_usize] = ACTIONS(4944), + [anon_sym_f32] = ACTIONS(4944), + [anon_sym_f64] = ACTIONS(4944), + [anon_sym_c_char] = ACTIONS(4944), + [anon_sym_c_schar] = ACTIONS(4944), + [anon_sym_c_uchar] = ACTIONS(4944), + [anon_sym_c_short] = ACTIONS(4944), + [anon_sym_c_ushort] = ACTIONS(4944), + [anon_sym_c_int] = ACTIONS(4944), + [anon_sym_c_uint] = ACTIONS(4944), + [anon_sym_c_long] = ACTIONS(4944), + [anon_sym_c_ulong] = ACTIONS(4944), + [anon_sym_c_longlong] = ACTIONS(4944), + [anon_sym_c_ulonglong] = ACTIONS(4944), + [anon_sym_c_float] = ACTIONS(4944), + [anon_sym_c_double] = ACTIONS(4944), + [anon_sym_c_longdouble] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_AMP_EQ] = ACTIONS(4942), + [anon_sym_PIPE_EQ] = ACTIONS(4944), + [anon_sym_xor_EQ] = ACTIONS(4942), + [anon_sym_LT_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_GT_EQ] = ACTIONS(4942), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4942), + [anon_sym_return] = ACTIONS(4944), + [anon_sym_yield] = ACTIONS(4944), + [anon_sym_break] = ACTIONS(4944), + [anon_sym_continue] = ACTIONS(4944), + [anon_sym_defer] = ACTIONS(4944), + [anon_sym_errdefer] = ACTIONS(4944), + [anon_sym_if] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_while] = ACTIONS(4944), + [anon_sym_expand] = ACTIONS(4944), + [anon_sym_for] = ACTIONS(4944), + [anon_sym_PIPE2] = ACTIONS(4942), + [anon_sym_match] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4942), + [anon_sym_orelse] = ACTIONS(4944), + [anon_sym_or] = ACTIONS(4944), + [anon_sym_and] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_AMP] = ACTIONS(4944), + [anon_sym_xor] = ACTIONS(4944), + [anon_sym_LT_LT] = ACTIONS(4944), + [anon_sym_GT_GT] = ACTIONS(4944), + [anon_sym_LT_LT_PIPE] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_catch] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym_true] = ACTIONS(4944), + [anon_sym_false] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4944), + [anon_sym_unreachable] = ACTIONS(4944), + [anon_sym_undefined] = ACTIONS(4944), + [sym_sink] = ACTIONS(4944), + [sym_integer] = ACTIONS(4944), + [sym_float] = ACTIONS(4942), + [anon_sym_DQUOTE] = ACTIONS(4942), + [sym_multiline_string] = ACTIONS(4942), + [sym_character] = ACTIONS(4942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4942), + }, + [STATE(3651)] = { + [sym_identifier] = ACTIONS(4948), + [anon_sym_func] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_struct] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(4946), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_void] = ACTIONS(4948), + [anon_sym_noreturn] = ACTIONS(4948), + [anon_sym_type] = ACTIONS(4948), + [anon_sym_anyopaque] = ACTIONS(4948), + [anon_sym_bool] = ACTIONS(4948), + [anon_sym_int] = ACTIONS(4948), + [anon_sym_uint] = ACTIONS(4948), + [anon_sym_float] = ACTIONS(4948), + [anon_sym_range] = ACTIONS(4948), + [anon_sym_i8] = ACTIONS(4948), + [anon_sym_i16] = ACTIONS(4948), + [anon_sym_i32] = ACTIONS(4948), + [anon_sym_i64] = ACTIONS(4948), + [anon_sym_u8] = ACTIONS(4948), + [anon_sym_u16] = ACTIONS(4948), + [anon_sym_u32] = ACTIONS(4948), + [anon_sym_u64] = ACTIONS(4948), + [anon_sym_isize] = ACTIONS(4948), + [anon_sym_usize] = ACTIONS(4948), + [anon_sym_f32] = ACTIONS(4948), + [anon_sym_f64] = ACTIONS(4948), + [anon_sym_c_char] = ACTIONS(4948), + [anon_sym_c_schar] = ACTIONS(4948), + [anon_sym_c_uchar] = ACTIONS(4948), + [anon_sym_c_short] = ACTIONS(4948), + [anon_sym_c_ushort] = ACTIONS(4948), + [anon_sym_c_int] = ACTIONS(4948), + [anon_sym_c_uint] = ACTIONS(4948), + [anon_sym_c_long] = ACTIONS(4948), + [anon_sym_c_ulong] = ACTIONS(4948), + [anon_sym_c_longlong] = ACTIONS(4948), + [anon_sym_c_ulonglong] = ACTIONS(4948), + [anon_sym_c_float] = ACTIONS(4948), + [anon_sym_c_double] = ACTIONS(4948), + [anon_sym_c_longdouble] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_AMP_EQ] = ACTIONS(4946), + [anon_sym_PIPE_EQ] = ACTIONS(4948), + [anon_sym_xor_EQ] = ACTIONS(4946), + [anon_sym_LT_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_GT_EQ] = ACTIONS(4946), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4946), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_yield] = ACTIONS(4948), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_defer] = ACTIONS(4948), + [anon_sym_errdefer] = ACTIONS(4948), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_while] = ACTIONS(4948), + [anon_sym_expand] = ACTIONS(4948), + [anon_sym_for] = ACTIONS(4948), + [anon_sym_PIPE2] = ACTIONS(4946), + [anon_sym_match] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4946), + [anon_sym_orelse] = ACTIONS(4948), + [anon_sym_or] = ACTIONS(4948), + [anon_sym_and] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_AMP] = ACTIONS(4948), + [anon_sym_xor] = ACTIONS(4948), + [anon_sym_LT_LT] = ACTIONS(4948), + [anon_sym_GT_GT] = ACTIONS(4948), + [anon_sym_LT_LT_PIPE] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_catch] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4948), + [anon_sym_unreachable] = ACTIONS(4948), + [anon_sym_undefined] = ACTIONS(4948), + [sym_sink] = ACTIONS(4948), + [sym_integer] = ACTIONS(4948), + [sym_float] = ACTIONS(4946), + [anon_sym_DQUOTE] = ACTIONS(4946), + [sym_multiline_string] = ACTIONS(4946), + [sym_character] = ACTIONS(4946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4946), + }, + [STATE(3652)] = { + [sym_identifier] = ACTIONS(4952), + [anon_sym_func] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_struct] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4950), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_void] = ACTIONS(4952), + [anon_sym_noreturn] = ACTIONS(4952), + [anon_sym_type] = ACTIONS(4952), + [anon_sym_anyopaque] = ACTIONS(4952), + [anon_sym_bool] = ACTIONS(4952), + [anon_sym_int] = ACTIONS(4952), + [anon_sym_uint] = ACTIONS(4952), + [anon_sym_float] = ACTIONS(4952), + [anon_sym_range] = ACTIONS(4952), + [anon_sym_i8] = ACTIONS(4952), + [anon_sym_i16] = ACTIONS(4952), + [anon_sym_i32] = ACTIONS(4952), + [anon_sym_i64] = ACTIONS(4952), + [anon_sym_u8] = ACTIONS(4952), + [anon_sym_u16] = ACTIONS(4952), + [anon_sym_u32] = ACTIONS(4952), + [anon_sym_u64] = ACTIONS(4952), + [anon_sym_isize] = ACTIONS(4952), + [anon_sym_usize] = ACTIONS(4952), + [anon_sym_f32] = ACTIONS(4952), + [anon_sym_f64] = ACTIONS(4952), + [anon_sym_c_char] = ACTIONS(4952), + [anon_sym_c_schar] = ACTIONS(4952), + [anon_sym_c_uchar] = ACTIONS(4952), + [anon_sym_c_short] = ACTIONS(4952), + [anon_sym_c_ushort] = ACTIONS(4952), + [anon_sym_c_int] = ACTIONS(4952), + [anon_sym_c_uint] = ACTIONS(4952), + [anon_sym_c_long] = ACTIONS(4952), + [anon_sym_c_ulong] = ACTIONS(4952), + [anon_sym_c_longlong] = ACTIONS(4952), + [anon_sym_c_ulonglong] = ACTIONS(4952), + [anon_sym_c_float] = ACTIONS(4952), + [anon_sym_c_double] = ACTIONS(4952), + [anon_sym_c_longdouble] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_AMP_EQ] = ACTIONS(4950), + [anon_sym_PIPE_EQ] = ACTIONS(4952), + [anon_sym_xor_EQ] = ACTIONS(4950), + [anon_sym_LT_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_GT_EQ] = ACTIONS(4950), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4950), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_yield] = ACTIONS(4952), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_defer] = ACTIONS(4952), + [anon_sym_errdefer] = ACTIONS(4952), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_while] = ACTIONS(4952), + [anon_sym_expand] = ACTIONS(4952), + [anon_sym_for] = ACTIONS(4952), + [anon_sym_PIPE2] = ACTIONS(4950), + [anon_sym_match] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4950), + [anon_sym_orelse] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_AMP] = ACTIONS(4952), + [anon_sym_xor] = ACTIONS(4952), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4952), + [anon_sym_LT_LT_PIPE] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_catch] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_unreachable] = ACTIONS(4952), + [anon_sym_undefined] = ACTIONS(4952), + [sym_sink] = ACTIONS(4952), + [sym_integer] = ACTIONS(4952), + [sym_float] = ACTIONS(4950), + [anon_sym_DQUOTE] = ACTIONS(4950), + [sym_multiline_string] = ACTIONS(4950), + [sym_character] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4950), + }, + [STATE(3653)] = { + [sym_identifier] = ACTIONS(4956), + [anon_sym_func] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_struct] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4954), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_void] = ACTIONS(4956), + [anon_sym_noreturn] = ACTIONS(4956), + [anon_sym_type] = ACTIONS(4956), + [anon_sym_anyopaque] = ACTIONS(4956), + [anon_sym_bool] = ACTIONS(4956), + [anon_sym_int] = ACTIONS(4956), + [anon_sym_uint] = ACTIONS(4956), + [anon_sym_float] = ACTIONS(4956), + [anon_sym_range] = ACTIONS(4956), + [anon_sym_i8] = ACTIONS(4956), + [anon_sym_i16] = ACTIONS(4956), + [anon_sym_i32] = ACTIONS(4956), + [anon_sym_i64] = ACTIONS(4956), + [anon_sym_u8] = ACTIONS(4956), + [anon_sym_u16] = ACTIONS(4956), + [anon_sym_u32] = ACTIONS(4956), + [anon_sym_u64] = ACTIONS(4956), + [anon_sym_isize] = ACTIONS(4956), + [anon_sym_usize] = ACTIONS(4956), + [anon_sym_f32] = ACTIONS(4956), + [anon_sym_f64] = ACTIONS(4956), + [anon_sym_c_char] = ACTIONS(4956), + [anon_sym_c_schar] = ACTIONS(4956), + [anon_sym_c_uchar] = ACTIONS(4956), + [anon_sym_c_short] = ACTIONS(4956), + [anon_sym_c_ushort] = ACTIONS(4956), + [anon_sym_c_int] = ACTIONS(4956), + [anon_sym_c_uint] = ACTIONS(4956), + [anon_sym_c_long] = ACTIONS(4956), + [anon_sym_c_ulong] = ACTIONS(4956), + [anon_sym_c_longlong] = ACTIONS(4956), + [anon_sym_c_ulonglong] = ACTIONS(4956), + [anon_sym_c_float] = ACTIONS(4956), + [anon_sym_c_double] = ACTIONS(4956), + [anon_sym_c_longdouble] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_AMP_EQ] = ACTIONS(4954), + [anon_sym_PIPE_EQ] = ACTIONS(4956), + [anon_sym_xor_EQ] = ACTIONS(4954), + [anon_sym_LT_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_GT_EQ] = ACTIONS(4954), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4954), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_yield] = ACTIONS(4956), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_defer] = ACTIONS(4956), + [anon_sym_errdefer] = ACTIONS(4956), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_while] = ACTIONS(4956), + [anon_sym_expand] = ACTIONS(4956), + [anon_sym_for] = ACTIONS(4956), + [anon_sym_PIPE2] = ACTIONS(4954), + [anon_sym_match] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), + [anon_sym_orelse] = ACTIONS(4956), + [anon_sym_or] = ACTIONS(4956), + [anon_sym_and] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4956), + [anon_sym_xor] = ACTIONS(4956), + [anon_sym_LT_LT] = ACTIONS(4956), + [anon_sym_GT_GT] = ACTIONS(4956), + [anon_sym_LT_LT_PIPE] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_catch] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4956), + [anon_sym_unreachable] = ACTIONS(4956), + [anon_sym_undefined] = ACTIONS(4956), + [sym_sink] = ACTIONS(4956), + [sym_integer] = ACTIONS(4956), + [sym_float] = ACTIONS(4954), + [anon_sym_DQUOTE] = ACTIONS(4954), + [sym_multiline_string] = ACTIONS(4954), + [sym_character] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4954), + }, + [STATE(3654)] = { + [sym_identifier] = ACTIONS(4960), + [anon_sym_func] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_struct] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_void] = ACTIONS(4960), + [anon_sym_noreturn] = ACTIONS(4960), + [anon_sym_type] = ACTIONS(4960), + [anon_sym_anyopaque] = ACTIONS(4960), + [anon_sym_bool] = ACTIONS(4960), + [anon_sym_int] = ACTIONS(4960), + [anon_sym_uint] = ACTIONS(4960), + [anon_sym_float] = ACTIONS(4960), + [anon_sym_range] = ACTIONS(4960), + [anon_sym_i8] = ACTIONS(4960), + [anon_sym_i16] = ACTIONS(4960), + [anon_sym_i32] = ACTIONS(4960), + [anon_sym_i64] = ACTIONS(4960), + [anon_sym_u8] = ACTIONS(4960), + [anon_sym_u16] = ACTIONS(4960), + [anon_sym_u32] = ACTIONS(4960), + [anon_sym_u64] = ACTIONS(4960), + [anon_sym_isize] = ACTIONS(4960), + [anon_sym_usize] = ACTIONS(4960), + [anon_sym_f32] = ACTIONS(4960), + [anon_sym_f64] = ACTIONS(4960), + [anon_sym_c_char] = ACTIONS(4960), + [anon_sym_c_schar] = ACTIONS(4960), + [anon_sym_c_uchar] = ACTIONS(4960), + [anon_sym_c_short] = ACTIONS(4960), + [anon_sym_c_ushort] = ACTIONS(4960), + [anon_sym_c_int] = ACTIONS(4960), + [anon_sym_c_uint] = ACTIONS(4960), + [anon_sym_c_long] = ACTIONS(4960), + [anon_sym_c_ulong] = ACTIONS(4960), + [anon_sym_c_longlong] = ACTIONS(4960), + [anon_sym_c_ulonglong] = ACTIONS(4960), + [anon_sym_c_float] = ACTIONS(4960), + [anon_sym_c_double] = ACTIONS(4960), + [anon_sym_c_longdouble] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_AMP_EQ] = ACTIONS(4958), + [anon_sym_PIPE_EQ] = ACTIONS(4960), + [anon_sym_xor_EQ] = ACTIONS(4958), + [anon_sym_LT_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_GT_EQ] = ACTIONS(4958), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_defer] = ACTIONS(4960), + [anon_sym_errdefer] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_expand] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_PIPE2] = ACTIONS(4958), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4958), + [anon_sym_orelse] = ACTIONS(4960), + [anon_sym_or] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_xor] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4960), + [anon_sym_GT_GT] = ACTIONS(4960), + [anon_sym_LT_LT_PIPE] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_catch] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_unreachable] = ACTIONS(4960), + [anon_sym_undefined] = ACTIONS(4960), + [sym_sink] = ACTIONS(4960), + [sym_integer] = ACTIONS(4960), + [sym_float] = ACTIONS(4958), + [anon_sym_DQUOTE] = ACTIONS(4958), + [sym_multiline_string] = ACTIONS(4958), + [sym_character] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4958), + }, + [STATE(3655)] = { + [sym_identifier] = ACTIONS(4964), + [anon_sym_func] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_struct] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_void] = ACTIONS(4964), + [anon_sym_noreturn] = ACTIONS(4964), + [anon_sym_type] = ACTIONS(4964), + [anon_sym_anyopaque] = ACTIONS(4964), + [anon_sym_bool] = ACTIONS(4964), + [anon_sym_int] = ACTIONS(4964), + [anon_sym_uint] = ACTIONS(4964), + [anon_sym_float] = ACTIONS(4964), + [anon_sym_range] = ACTIONS(4964), + [anon_sym_i8] = ACTIONS(4964), + [anon_sym_i16] = ACTIONS(4964), + [anon_sym_i32] = ACTIONS(4964), + [anon_sym_i64] = ACTIONS(4964), + [anon_sym_u8] = ACTIONS(4964), + [anon_sym_u16] = ACTIONS(4964), + [anon_sym_u32] = ACTIONS(4964), + [anon_sym_u64] = ACTIONS(4964), + [anon_sym_isize] = ACTIONS(4964), + [anon_sym_usize] = ACTIONS(4964), + [anon_sym_f32] = ACTIONS(4964), + [anon_sym_f64] = ACTIONS(4964), + [anon_sym_c_char] = ACTIONS(4964), + [anon_sym_c_schar] = ACTIONS(4964), + [anon_sym_c_uchar] = ACTIONS(4964), + [anon_sym_c_short] = ACTIONS(4964), + [anon_sym_c_ushort] = ACTIONS(4964), + [anon_sym_c_int] = ACTIONS(4964), + [anon_sym_c_uint] = ACTIONS(4964), + [anon_sym_c_long] = ACTIONS(4964), + [anon_sym_c_ulong] = ACTIONS(4964), + [anon_sym_c_longlong] = ACTIONS(4964), + [anon_sym_c_ulonglong] = ACTIONS(4964), + [anon_sym_c_float] = ACTIONS(4964), + [anon_sym_c_double] = ACTIONS(4964), + [anon_sym_c_longdouble] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_AMP_EQ] = ACTIONS(4962), + [anon_sym_PIPE_EQ] = ACTIONS(4964), + [anon_sym_xor_EQ] = ACTIONS(4962), + [anon_sym_LT_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_GT_EQ] = ACTIONS(4962), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_yield] = ACTIONS(4964), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_defer] = ACTIONS(4964), + [anon_sym_errdefer] = ACTIONS(4964), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_while] = ACTIONS(4964), + [anon_sym_expand] = ACTIONS(4964), + [anon_sym_for] = ACTIONS(4964), + [anon_sym_PIPE2] = ACTIONS(4962), + [anon_sym_match] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), + [anon_sym_orelse] = ACTIONS(4964), + [anon_sym_or] = ACTIONS(4964), + [anon_sym_and] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_AMP] = ACTIONS(4964), + [anon_sym_xor] = ACTIONS(4964), + [anon_sym_LT_LT] = ACTIONS(4964), + [anon_sym_GT_GT] = ACTIONS(4964), + [anon_sym_LT_LT_PIPE] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_catch] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4964), + [anon_sym_unreachable] = ACTIONS(4964), + [anon_sym_undefined] = ACTIONS(4964), + [sym_sink] = ACTIONS(4964), + [sym_integer] = ACTIONS(4964), + [sym_float] = ACTIONS(4962), + [anon_sym_DQUOTE] = ACTIONS(4962), + [sym_multiline_string] = ACTIONS(4962), + [sym_character] = ACTIONS(4962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4962), + }, + [STATE(3656)] = { + [sym_identifier] = ACTIONS(4968), + [anon_sym_func] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_struct] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_void] = ACTIONS(4968), + [anon_sym_noreturn] = ACTIONS(4968), + [anon_sym_type] = ACTIONS(4968), + [anon_sym_anyopaque] = ACTIONS(4968), + [anon_sym_bool] = ACTIONS(4968), + [anon_sym_int] = ACTIONS(4968), + [anon_sym_uint] = ACTIONS(4968), + [anon_sym_float] = ACTIONS(4968), + [anon_sym_range] = ACTIONS(4968), + [anon_sym_i8] = ACTIONS(4968), + [anon_sym_i16] = ACTIONS(4968), + [anon_sym_i32] = ACTIONS(4968), + [anon_sym_i64] = ACTIONS(4968), + [anon_sym_u8] = ACTIONS(4968), + [anon_sym_u16] = ACTIONS(4968), + [anon_sym_u32] = ACTIONS(4968), + [anon_sym_u64] = ACTIONS(4968), + [anon_sym_isize] = ACTIONS(4968), + [anon_sym_usize] = ACTIONS(4968), + [anon_sym_f32] = ACTIONS(4968), + [anon_sym_f64] = ACTIONS(4968), + [anon_sym_c_char] = ACTIONS(4968), + [anon_sym_c_schar] = ACTIONS(4968), + [anon_sym_c_uchar] = ACTIONS(4968), + [anon_sym_c_short] = ACTIONS(4968), + [anon_sym_c_ushort] = ACTIONS(4968), + [anon_sym_c_int] = ACTIONS(4968), + [anon_sym_c_uint] = ACTIONS(4968), + [anon_sym_c_long] = ACTIONS(4968), + [anon_sym_c_ulong] = ACTIONS(4968), + [anon_sym_c_longlong] = ACTIONS(4968), + [anon_sym_c_ulonglong] = ACTIONS(4968), + [anon_sym_c_float] = ACTIONS(4968), + [anon_sym_c_double] = ACTIONS(4968), + [anon_sym_c_longdouble] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_AMP_EQ] = ACTIONS(4966), + [anon_sym_PIPE_EQ] = ACTIONS(4968), + [anon_sym_xor_EQ] = ACTIONS(4966), + [anon_sym_LT_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_GT_EQ] = ACTIONS(4966), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4966), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_yield] = ACTIONS(4968), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_defer] = ACTIONS(4968), + [anon_sym_errdefer] = ACTIONS(4968), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_while] = ACTIONS(4968), + [anon_sym_expand] = ACTIONS(4968), + [anon_sym_for] = ACTIONS(4968), + [anon_sym_PIPE2] = ACTIONS(4966), + [anon_sym_match] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4966), + [anon_sym_orelse] = ACTIONS(4968), + [anon_sym_or] = ACTIONS(4968), + [anon_sym_and] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4968), + [anon_sym_xor] = ACTIONS(4968), + [anon_sym_LT_LT] = ACTIONS(4968), + [anon_sym_GT_GT] = ACTIONS(4968), + [anon_sym_LT_LT_PIPE] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_catch] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4968), + [anon_sym_unreachable] = ACTIONS(4968), + [anon_sym_undefined] = ACTIONS(4968), + [sym_sink] = ACTIONS(4968), + [sym_integer] = ACTIONS(4968), + [sym_float] = ACTIONS(4966), + [anon_sym_DQUOTE] = ACTIONS(4966), + [sym_multiline_string] = ACTIONS(4966), + [sym_character] = ACTIONS(4966), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4966), + }, + [STATE(3657)] = { + [sym_identifier] = ACTIONS(4972), + [anon_sym_func] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_struct] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_void] = ACTIONS(4972), + [anon_sym_noreturn] = ACTIONS(4972), + [anon_sym_type] = ACTIONS(4972), + [anon_sym_anyopaque] = ACTIONS(4972), + [anon_sym_bool] = ACTIONS(4972), + [anon_sym_int] = ACTIONS(4972), + [anon_sym_uint] = ACTIONS(4972), + [anon_sym_float] = ACTIONS(4972), + [anon_sym_range] = ACTIONS(4972), + [anon_sym_i8] = ACTIONS(4972), + [anon_sym_i16] = ACTIONS(4972), + [anon_sym_i32] = ACTIONS(4972), + [anon_sym_i64] = ACTIONS(4972), + [anon_sym_u8] = ACTIONS(4972), + [anon_sym_u16] = ACTIONS(4972), + [anon_sym_u32] = ACTIONS(4972), + [anon_sym_u64] = ACTIONS(4972), + [anon_sym_isize] = ACTIONS(4972), + [anon_sym_usize] = ACTIONS(4972), + [anon_sym_f32] = ACTIONS(4972), + [anon_sym_f64] = ACTIONS(4972), + [anon_sym_c_char] = ACTIONS(4972), + [anon_sym_c_schar] = ACTIONS(4972), + [anon_sym_c_uchar] = ACTIONS(4972), + [anon_sym_c_short] = ACTIONS(4972), + [anon_sym_c_ushort] = ACTIONS(4972), + [anon_sym_c_int] = ACTIONS(4972), + [anon_sym_c_uint] = ACTIONS(4972), + [anon_sym_c_long] = ACTIONS(4972), + [anon_sym_c_ulong] = ACTIONS(4972), + [anon_sym_c_longlong] = ACTIONS(4972), + [anon_sym_c_ulonglong] = ACTIONS(4972), + [anon_sym_c_float] = ACTIONS(4972), + [anon_sym_c_double] = ACTIONS(4972), + [anon_sym_c_longdouble] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_AMP_EQ] = ACTIONS(4970), + [anon_sym_PIPE_EQ] = ACTIONS(4972), + [anon_sym_xor_EQ] = ACTIONS(4970), + [anon_sym_LT_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_GT_EQ] = ACTIONS(4970), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_defer] = ACTIONS(4972), + [anon_sym_errdefer] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_expand] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_PIPE2] = ACTIONS(4970), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4970), + [anon_sym_orelse] = ACTIONS(4972), + [anon_sym_or] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_xor] = ACTIONS(4972), + [anon_sym_LT_LT] = ACTIONS(4972), + [anon_sym_GT_GT] = ACTIONS(4972), + [anon_sym_LT_LT_PIPE] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_catch] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_unreachable] = ACTIONS(4972), + [anon_sym_undefined] = ACTIONS(4972), + [sym_sink] = ACTIONS(4972), + [sym_integer] = ACTIONS(4972), + [sym_float] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(4970), + [sym_multiline_string] = ACTIONS(4970), + [sym_character] = ACTIONS(4970), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4970), + }, + [STATE(3658)] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_func] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_DOLLAR] = ACTIONS(4974), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_void] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym_type] = ACTIONS(4976), + [anon_sym_anyopaque] = ACTIONS(4976), + [anon_sym_bool] = ACTIONS(4976), + [anon_sym_int] = ACTIONS(4976), + [anon_sym_uint] = ACTIONS(4976), + [anon_sym_float] = ACTIONS(4976), + [anon_sym_range] = ACTIONS(4976), + [anon_sym_i8] = ACTIONS(4976), + [anon_sym_i16] = ACTIONS(4976), + [anon_sym_i32] = ACTIONS(4976), + [anon_sym_i64] = ACTIONS(4976), + [anon_sym_u8] = ACTIONS(4976), + [anon_sym_u16] = ACTIONS(4976), + [anon_sym_u32] = ACTIONS(4976), + [anon_sym_u64] = ACTIONS(4976), + [anon_sym_isize] = ACTIONS(4976), + [anon_sym_usize] = ACTIONS(4976), + [anon_sym_f32] = ACTIONS(4976), + [anon_sym_f64] = ACTIONS(4976), + [anon_sym_c_char] = ACTIONS(4976), + [anon_sym_c_schar] = ACTIONS(4976), + [anon_sym_c_uchar] = ACTIONS(4976), + [anon_sym_c_short] = ACTIONS(4976), + [anon_sym_c_ushort] = ACTIONS(4976), + [anon_sym_c_int] = ACTIONS(4976), + [anon_sym_c_uint] = ACTIONS(4976), + [anon_sym_c_long] = ACTIONS(4976), + [anon_sym_c_ulong] = ACTIONS(4976), + [anon_sym_c_longlong] = ACTIONS(4976), + [anon_sym_c_ulonglong] = ACTIONS(4976), + [anon_sym_c_float] = ACTIONS(4976), + [anon_sym_c_double] = ACTIONS(4976), + [anon_sym_c_longdouble] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_AMP_EQ] = ACTIONS(4974), + [anon_sym_PIPE_EQ] = ACTIONS(4976), + [anon_sym_xor_EQ] = ACTIONS(4974), + [anon_sym_LT_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_GT_EQ] = ACTIONS(4974), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4974), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_yield] = ACTIONS(4976), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_defer] = ACTIONS(4976), + [anon_sym_errdefer] = ACTIONS(4976), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_while] = ACTIONS(4976), + [anon_sym_expand] = ACTIONS(4976), + [anon_sym_for] = ACTIONS(4976), + [anon_sym_PIPE2] = ACTIONS(4974), + [anon_sym_match] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), + [anon_sym_orelse] = ACTIONS(4976), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym_LT_LT_PIPE] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_catch] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_unreachable] = ACTIONS(4976), + [anon_sym_undefined] = ACTIONS(4976), + [sym_sink] = ACTIONS(4976), + [sym_integer] = ACTIONS(4976), + [sym_float] = ACTIONS(4974), + [anon_sym_DQUOTE] = ACTIONS(4974), + [sym_multiline_string] = ACTIONS(4974), + [sym_character] = ACTIONS(4974), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4974), + }, + [STATE(3659)] = { + [sym_identifier] = ACTIONS(4980), + [anon_sym_func] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_struct] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_DOLLAR] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_void] = ACTIONS(4980), + [anon_sym_noreturn] = ACTIONS(4980), + [anon_sym_type] = ACTIONS(4980), + [anon_sym_anyopaque] = ACTIONS(4980), + [anon_sym_bool] = ACTIONS(4980), + [anon_sym_int] = ACTIONS(4980), + [anon_sym_uint] = ACTIONS(4980), + [anon_sym_float] = ACTIONS(4980), + [anon_sym_range] = ACTIONS(4980), + [anon_sym_i8] = ACTIONS(4980), + [anon_sym_i16] = ACTIONS(4980), + [anon_sym_i32] = ACTIONS(4980), + [anon_sym_i64] = ACTIONS(4980), + [anon_sym_u8] = ACTIONS(4980), + [anon_sym_u16] = ACTIONS(4980), + [anon_sym_u32] = ACTIONS(4980), + [anon_sym_u64] = ACTIONS(4980), + [anon_sym_isize] = ACTIONS(4980), + [anon_sym_usize] = ACTIONS(4980), + [anon_sym_f32] = ACTIONS(4980), + [anon_sym_f64] = ACTIONS(4980), + [anon_sym_c_char] = ACTIONS(4980), + [anon_sym_c_schar] = ACTIONS(4980), + [anon_sym_c_uchar] = ACTIONS(4980), + [anon_sym_c_short] = ACTIONS(4980), + [anon_sym_c_ushort] = ACTIONS(4980), + [anon_sym_c_int] = ACTIONS(4980), + [anon_sym_c_uint] = ACTIONS(4980), + [anon_sym_c_long] = ACTIONS(4980), + [anon_sym_c_ulong] = ACTIONS(4980), + [anon_sym_c_longlong] = ACTIONS(4980), + [anon_sym_c_ulonglong] = ACTIONS(4980), + [anon_sym_c_float] = ACTIONS(4980), + [anon_sym_c_double] = ACTIONS(4980), + [anon_sym_c_longdouble] = ACTIONS(4980), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4980), + [anon_sym_xor_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4978), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_yield] = ACTIONS(4980), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_defer] = ACTIONS(4980), + [anon_sym_errdefer] = ACTIONS(4980), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_while] = ACTIONS(4980), + [anon_sym_expand] = ACTIONS(4980), + [anon_sym_for] = ACTIONS(4980), + [anon_sym_PIPE2] = ACTIONS(4978), + [anon_sym_match] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4978), + [anon_sym_orelse] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4980), + [anon_sym_xor] = ACTIONS(4980), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4980), + [anon_sym_LT_LT_PIPE] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_catch] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_null] = ACTIONS(4980), + [anon_sym_unreachable] = ACTIONS(4980), + [anon_sym_undefined] = ACTIONS(4980), + [sym_sink] = ACTIONS(4980), + [sym_integer] = ACTIONS(4980), + [sym_float] = ACTIONS(4978), + [anon_sym_DQUOTE] = ACTIONS(4978), + [sym_multiline_string] = ACTIONS(4978), + [sym_character] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4978), + }, + [STATE(3660)] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_func] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_DOLLAR] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_void] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym_type] = ACTIONS(4984), + [anon_sym_anyopaque] = ACTIONS(4984), + [anon_sym_bool] = ACTIONS(4984), + [anon_sym_int] = ACTIONS(4984), + [anon_sym_uint] = ACTIONS(4984), + [anon_sym_float] = ACTIONS(4984), + [anon_sym_range] = ACTIONS(4984), + [anon_sym_i8] = ACTIONS(4984), + [anon_sym_i16] = ACTIONS(4984), + [anon_sym_i32] = ACTIONS(4984), + [anon_sym_i64] = ACTIONS(4984), + [anon_sym_u8] = ACTIONS(4984), + [anon_sym_u16] = ACTIONS(4984), + [anon_sym_u32] = ACTIONS(4984), + [anon_sym_u64] = ACTIONS(4984), + [anon_sym_isize] = ACTIONS(4984), + [anon_sym_usize] = ACTIONS(4984), + [anon_sym_f32] = ACTIONS(4984), + [anon_sym_f64] = ACTIONS(4984), + [anon_sym_c_char] = ACTIONS(4984), + [anon_sym_c_schar] = ACTIONS(4984), + [anon_sym_c_uchar] = ACTIONS(4984), + [anon_sym_c_short] = ACTIONS(4984), + [anon_sym_c_ushort] = ACTIONS(4984), + [anon_sym_c_int] = ACTIONS(4984), + [anon_sym_c_uint] = ACTIONS(4984), + [anon_sym_c_long] = ACTIONS(4984), + [anon_sym_c_ulong] = ACTIONS(4984), + [anon_sym_c_longlong] = ACTIONS(4984), + [anon_sym_c_ulonglong] = ACTIONS(4984), + [anon_sym_c_float] = ACTIONS(4984), + [anon_sym_c_double] = ACTIONS(4984), + [anon_sym_c_longdouble] = ACTIONS(4984), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_AMP_EQ] = ACTIONS(4982), + [anon_sym_PIPE_EQ] = ACTIONS(4984), + [anon_sym_xor_EQ] = ACTIONS(4982), + [anon_sym_LT_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_GT_EQ] = ACTIONS(4982), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4982), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_yield] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_defer] = ACTIONS(4984), + [anon_sym_errdefer] = ACTIONS(4984), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_expand] = ACTIONS(4984), + [anon_sym_for] = ACTIONS(4984), + [anon_sym_PIPE2] = ACTIONS(4982), + [anon_sym_match] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4982), + [anon_sym_orelse] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4984), + [anon_sym_and] = ACTIONS(4984), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_xor] = ACTIONS(4984), + [anon_sym_LT_LT] = ACTIONS(4984), + [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_LT_LT_PIPE] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_catch] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4982), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_null] = ACTIONS(4984), + [anon_sym_unreachable] = ACTIONS(4984), + [anon_sym_undefined] = ACTIONS(4984), + [sym_sink] = ACTIONS(4984), + [sym_integer] = ACTIONS(4984), + [sym_float] = ACTIONS(4982), + [anon_sym_DQUOTE] = ACTIONS(4982), + [sym_multiline_string] = ACTIONS(4982), + [sym_character] = ACTIONS(4982), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4982), + }, + [STATE(3661)] = { + [sym_identifier] = ACTIONS(4988), + [anon_sym_func] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_void] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym_type] = ACTIONS(4988), + [anon_sym_anyopaque] = ACTIONS(4988), + [anon_sym_bool] = ACTIONS(4988), + [anon_sym_int] = ACTIONS(4988), + [anon_sym_uint] = ACTIONS(4988), + [anon_sym_float] = ACTIONS(4988), + [anon_sym_range] = ACTIONS(4988), + [anon_sym_i8] = ACTIONS(4988), + [anon_sym_i16] = ACTIONS(4988), + [anon_sym_i32] = ACTIONS(4988), + [anon_sym_i64] = ACTIONS(4988), + [anon_sym_u8] = ACTIONS(4988), + [anon_sym_u16] = ACTIONS(4988), + [anon_sym_u32] = ACTIONS(4988), + [anon_sym_u64] = ACTIONS(4988), + [anon_sym_isize] = ACTIONS(4988), + [anon_sym_usize] = ACTIONS(4988), + [anon_sym_f32] = ACTIONS(4988), + [anon_sym_f64] = ACTIONS(4988), + [anon_sym_c_char] = ACTIONS(4988), + [anon_sym_c_schar] = ACTIONS(4988), + [anon_sym_c_uchar] = ACTIONS(4988), + [anon_sym_c_short] = ACTIONS(4988), + [anon_sym_c_ushort] = ACTIONS(4988), + [anon_sym_c_int] = ACTIONS(4988), + [anon_sym_c_uint] = ACTIONS(4988), + [anon_sym_c_long] = ACTIONS(4988), + [anon_sym_c_ulong] = ACTIONS(4988), + [anon_sym_c_longlong] = ACTIONS(4988), + [anon_sym_c_ulonglong] = ACTIONS(4988), + [anon_sym_c_float] = ACTIONS(4988), + [anon_sym_c_double] = ACTIONS(4988), + [anon_sym_c_longdouble] = ACTIONS(4988), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4988), + [anon_sym_xor_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4986), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_defer] = ACTIONS(4988), + [anon_sym_errdefer] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_while] = ACTIONS(4988), + [anon_sym_expand] = ACTIONS(4988), + [anon_sym_for] = ACTIONS(4988), + [anon_sym_PIPE2] = ACTIONS(4986), + [anon_sym_match] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), + [anon_sym_orelse] = ACTIONS(4988), + [anon_sym_or] = ACTIONS(4988), + [anon_sym_and] = ACTIONS(4988), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4988), + [anon_sym_xor] = ACTIONS(4988), + [anon_sym_LT_LT] = ACTIONS(4988), + [anon_sym_GT_GT] = ACTIONS(4988), + [anon_sym_LT_LT_PIPE] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_catch] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4986), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_null] = ACTIONS(4988), + [anon_sym_unreachable] = ACTIONS(4988), + [anon_sym_undefined] = ACTIONS(4988), + [sym_sink] = ACTIONS(4988), + [sym_integer] = ACTIONS(4988), + [sym_float] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(4986), + [sym_multiline_string] = ACTIONS(4986), + [sym_character] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4986), + }, + [STATE(3662)] = { + [sym_identifier] = ACTIONS(4992), + [anon_sym_func] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_struct] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4990), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4990), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_void] = ACTIONS(4992), + [anon_sym_noreturn] = ACTIONS(4992), + [anon_sym_type] = ACTIONS(4992), + [anon_sym_anyopaque] = ACTIONS(4992), + [anon_sym_bool] = ACTIONS(4992), + [anon_sym_int] = ACTIONS(4992), + [anon_sym_uint] = ACTIONS(4992), + [anon_sym_float] = ACTIONS(4992), + [anon_sym_range] = ACTIONS(4992), + [anon_sym_i8] = ACTIONS(4992), + [anon_sym_i16] = ACTIONS(4992), + [anon_sym_i32] = ACTIONS(4992), + [anon_sym_i64] = ACTIONS(4992), + [anon_sym_u8] = ACTIONS(4992), + [anon_sym_u16] = ACTIONS(4992), + [anon_sym_u32] = ACTIONS(4992), + [anon_sym_u64] = ACTIONS(4992), + [anon_sym_isize] = ACTIONS(4992), + [anon_sym_usize] = ACTIONS(4992), + [anon_sym_f32] = ACTIONS(4992), + [anon_sym_f64] = ACTIONS(4992), + [anon_sym_c_char] = ACTIONS(4992), + [anon_sym_c_schar] = ACTIONS(4992), + [anon_sym_c_uchar] = ACTIONS(4992), + [anon_sym_c_short] = ACTIONS(4992), + [anon_sym_c_ushort] = ACTIONS(4992), + [anon_sym_c_int] = ACTIONS(4992), + [anon_sym_c_uint] = ACTIONS(4992), + [anon_sym_c_long] = ACTIONS(4992), + [anon_sym_c_ulong] = ACTIONS(4992), + [anon_sym_c_longlong] = ACTIONS(4992), + [anon_sym_c_ulonglong] = ACTIONS(4992), + [anon_sym_c_float] = ACTIONS(4992), + [anon_sym_c_double] = ACTIONS(4992), + [anon_sym_c_longdouble] = ACTIONS(4992), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_AMP_EQ] = ACTIONS(4990), + [anon_sym_PIPE_EQ] = ACTIONS(4992), + [anon_sym_xor_EQ] = ACTIONS(4990), + [anon_sym_LT_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_GT_EQ] = ACTIONS(4990), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4990), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_yield] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_defer] = ACTIONS(4992), + [anon_sym_errdefer] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_while] = ACTIONS(4992), + [anon_sym_expand] = ACTIONS(4992), + [anon_sym_for] = ACTIONS(4992), + [anon_sym_PIPE2] = ACTIONS(4990), + [anon_sym_match] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4990), + [anon_sym_orelse] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_AMP] = ACTIONS(4992), + [anon_sym_xor] = ACTIONS(4992), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4992), + [anon_sym_LT_LT_PIPE] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_catch] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4990), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_unreachable] = ACTIONS(4992), + [anon_sym_undefined] = ACTIONS(4992), + [sym_sink] = ACTIONS(4992), + [sym_integer] = ACTIONS(4992), + [sym_float] = ACTIONS(4990), + [anon_sym_DQUOTE] = ACTIONS(4990), + [sym_multiline_string] = ACTIONS(4990), + [sym_character] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4990), + }, + [STATE(3663)] = { + [sym_identifier] = ACTIONS(4996), + [anon_sym_func] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_struct] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4994), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_void] = ACTIONS(4996), + [anon_sym_noreturn] = ACTIONS(4996), + [anon_sym_type] = ACTIONS(4996), + [anon_sym_anyopaque] = ACTIONS(4996), + [anon_sym_bool] = ACTIONS(4996), + [anon_sym_int] = ACTIONS(4996), + [anon_sym_uint] = ACTIONS(4996), + [anon_sym_float] = ACTIONS(4996), + [anon_sym_range] = ACTIONS(4996), + [anon_sym_i8] = ACTIONS(4996), + [anon_sym_i16] = ACTIONS(4996), + [anon_sym_i32] = ACTIONS(4996), + [anon_sym_i64] = ACTIONS(4996), + [anon_sym_u8] = ACTIONS(4996), + [anon_sym_u16] = ACTIONS(4996), + [anon_sym_u32] = ACTIONS(4996), + [anon_sym_u64] = ACTIONS(4996), + [anon_sym_isize] = ACTIONS(4996), + [anon_sym_usize] = ACTIONS(4996), + [anon_sym_f32] = ACTIONS(4996), + [anon_sym_f64] = ACTIONS(4996), + [anon_sym_c_char] = ACTIONS(4996), + [anon_sym_c_schar] = ACTIONS(4996), + [anon_sym_c_uchar] = ACTIONS(4996), + [anon_sym_c_short] = ACTIONS(4996), + [anon_sym_c_ushort] = ACTIONS(4996), + [anon_sym_c_int] = ACTIONS(4996), + [anon_sym_c_uint] = ACTIONS(4996), + [anon_sym_c_long] = ACTIONS(4996), + [anon_sym_c_ulong] = ACTIONS(4996), + [anon_sym_c_longlong] = ACTIONS(4996), + [anon_sym_c_ulonglong] = ACTIONS(4996), + [anon_sym_c_float] = ACTIONS(4996), + [anon_sym_c_double] = ACTIONS(4996), + [anon_sym_c_longdouble] = ACTIONS(4996), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_AMP_EQ] = ACTIONS(4994), + [anon_sym_PIPE_EQ] = ACTIONS(4996), + [anon_sym_xor_EQ] = ACTIONS(4994), + [anon_sym_LT_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_GT_EQ] = ACTIONS(4994), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4994), + [anon_sym_return] = ACTIONS(4996), + [anon_sym_yield] = ACTIONS(4996), + [anon_sym_break] = ACTIONS(4996), + [anon_sym_continue] = ACTIONS(4996), + [anon_sym_defer] = ACTIONS(4996), + [anon_sym_errdefer] = ACTIONS(4996), + [anon_sym_if] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_while] = ACTIONS(4996), + [anon_sym_expand] = ACTIONS(4996), + [anon_sym_for] = ACTIONS(4996), + [anon_sym_PIPE2] = ACTIONS(4994), + [anon_sym_match] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4994), + [anon_sym_orelse] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_xor] = ACTIONS(4996), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4996), + [anon_sym_LT_LT_PIPE] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_catch] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4996), + [anon_sym_unreachable] = ACTIONS(4996), + [anon_sym_undefined] = ACTIONS(4996), + [sym_sink] = ACTIONS(4996), + [sym_integer] = ACTIONS(4996), + [sym_float] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(4994), + [sym_multiline_string] = ACTIONS(4994), + [sym_character] = ACTIONS(4994), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4994), + }, + [STATE(3664)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_func] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_void] = ACTIONS(5000), + [anon_sym_noreturn] = ACTIONS(5000), + [anon_sym_type] = ACTIONS(5000), + [anon_sym_anyopaque] = ACTIONS(5000), + [anon_sym_bool] = ACTIONS(5000), + [anon_sym_int] = ACTIONS(5000), + [anon_sym_uint] = ACTIONS(5000), + [anon_sym_float] = ACTIONS(5000), + [anon_sym_range] = ACTIONS(5000), + [anon_sym_i8] = ACTIONS(5000), + [anon_sym_i16] = ACTIONS(5000), + [anon_sym_i32] = ACTIONS(5000), + [anon_sym_i64] = ACTIONS(5000), + [anon_sym_u8] = ACTIONS(5000), + [anon_sym_u16] = ACTIONS(5000), + [anon_sym_u32] = ACTIONS(5000), + [anon_sym_u64] = ACTIONS(5000), + [anon_sym_isize] = ACTIONS(5000), + [anon_sym_usize] = ACTIONS(5000), + [anon_sym_f32] = ACTIONS(5000), + [anon_sym_f64] = ACTIONS(5000), + [anon_sym_c_char] = ACTIONS(5000), + [anon_sym_c_schar] = ACTIONS(5000), + [anon_sym_c_uchar] = ACTIONS(5000), + [anon_sym_c_short] = ACTIONS(5000), + [anon_sym_c_ushort] = ACTIONS(5000), + [anon_sym_c_int] = ACTIONS(5000), + [anon_sym_c_uint] = ACTIONS(5000), + [anon_sym_c_long] = ACTIONS(5000), + [anon_sym_c_ulong] = ACTIONS(5000), + [anon_sym_c_longlong] = ACTIONS(5000), + [anon_sym_c_ulonglong] = ACTIONS(5000), + [anon_sym_c_float] = ACTIONS(5000), + [anon_sym_c_double] = ACTIONS(5000), + [anon_sym_c_longdouble] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(4998), + [anon_sym_DASH_EQ] = ACTIONS(4998), + [anon_sym_STAR_EQ] = ACTIONS(4998), + [anon_sym_SLASH_EQ] = ACTIONS(4998), + [anon_sym_AMP_EQ] = ACTIONS(4998), + [anon_sym_PIPE_EQ] = ACTIONS(5000), + [anon_sym_xor_EQ] = ACTIONS(4998), + [anon_sym_LT_LT_EQ] = ACTIONS(4998), + [anon_sym_GT_GT_EQ] = ACTIONS(4998), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4998), + [anon_sym_return] = ACTIONS(5000), + [anon_sym_yield] = ACTIONS(5000), + [anon_sym_break] = ACTIONS(5000), + [anon_sym_continue] = ACTIONS(5000), + [anon_sym_defer] = ACTIONS(5000), + [anon_sym_errdefer] = ACTIONS(5000), + [anon_sym_if] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_while] = ACTIONS(5000), + [anon_sym_expand] = ACTIONS(5000), + [anon_sym_for] = ACTIONS(5000), + [anon_sym_PIPE2] = ACTIONS(4998), + [anon_sym_match] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4998), + [anon_sym_orelse] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(5000), + [anon_sym_and] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(5000), + [anon_sym_xor] = ACTIONS(5000), + [anon_sym_LT_LT] = ACTIONS(5000), + [anon_sym_GT_GT] = ACTIONS(5000), + [anon_sym_LT_LT_PIPE] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_catch] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_try] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_true] = ACTIONS(5000), + [anon_sym_false] = ACTIONS(5000), + [anon_sym_null] = ACTIONS(5000), + [anon_sym_unreachable] = ACTIONS(5000), + [anon_sym_undefined] = ACTIONS(5000), + [sym_sink] = ACTIONS(5000), + [sym_integer] = ACTIONS(5000), + [sym_float] = ACTIONS(4998), + [anon_sym_DQUOTE] = ACTIONS(4998), + [sym_multiline_string] = ACTIONS(4998), + [sym_character] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4998), + }, + [STATE(3665)] = { + [sym_identifier] = ACTIONS(5008), + [anon_sym_func] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_struct] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_DOLLAR] = ACTIONS(5006), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_void] = ACTIONS(5008), + [anon_sym_noreturn] = ACTIONS(5008), + [anon_sym_type] = ACTIONS(5008), + [anon_sym_anyopaque] = ACTIONS(5008), + [anon_sym_bool] = ACTIONS(5008), + [anon_sym_int] = ACTIONS(5008), + [anon_sym_uint] = ACTIONS(5008), + [anon_sym_float] = ACTIONS(5008), + [anon_sym_range] = ACTIONS(5008), + [anon_sym_i8] = ACTIONS(5008), + [anon_sym_i16] = ACTIONS(5008), + [anon_sym_i32] = ACTIONS(5008), + [anon_sym_i64] = ACTIONS(5008), + [anon_sym_u8] = ACTIONS(5008), + [anon_sym_u16] = ACTIONS(5008), + [anon_sym_u32] = ACTIONS(5008), + [anon_sym_u64] = ACTIONS(5008), + [anon_sym_isize] = ACTIONS(5008), + [anon_sym_usize] = ACTIONS(5008), + [anon_sym_f32] = ACTIONS(5008), + [anon_sym_f64] = ACTIONS(5008), + [anon_sym_c_char] = ACTIONS(5008), + [anon_sym_c_schar] = ACTIONS(5008), + [anon_sym_c_uchar] = ACTIONS(5008), + [anon_sym_c_short] = ACTIONS(5008), + [anon_sym_c_ushort] = ACTIONS(5008), + [anon_sym_c_int] = ACTIONS(5008), + [anon_sym_c_uint] = ACTIONS(5008), + [anon_sym_c_long] = ACTIONS(5008), + [anon_sym_c_ulong] = ACTIONS(5008), + [anon_sym_c_longlong] = ACTIONS(5008), + [anon_sym_c_ulonglong] = ACTIONS(5008), + [anon_sym_c_float] = ACTIONS(5008), + [anon_sym_c_double] = ACTIONS(5008), + [anon_sym_c_longdouble] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5006), + [anon_sym_DASH_EQ] = ACTIONS(5006), + [anon_sym_STAR_EQ] = ACTIONS(5006), + [anon_sym_SLASH_EQ] = ACTIONS(5006), + [anon_sym_AMP_EQ] = ACTIONS(5006), + [anon_sym_PIPE_EQ] = ACTIONS(5008), + [anon_sym_xor_EQ] = ACTIONS(5006), + [anon_sym_LT_LT_EQ] = ACTIONS(5006), + [anon_sym_GT_GT_EQ] = ACTIONS(5006), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5006), + [anon_sym_return] = ACTIONS(5008), + [anon_sym_yield] = ACTIONS(5008), + [anon_sym_break] = ACTIONS(5008), + [anon_sym_continue] = ACTIONS(5008), + [anon_sym_defer] = ACTIONS(5008), + [anon_sym_errdefer] = ACTIONS(5008), + [anon_sym_if] = ACTIONS(5008), + [anon_sym_else] = ACTIONS(5008), + [anon_sym_while] = ACTIONS(5008), + [anon_sym_expand] = ACTIONS(5008), + [anon_sym_for] = ACTIONS(5008), + [anon_sym_PIPE2] = ACTIONS(5006), + [anon_sym_match] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_orelse] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5006), + [anon_sym_BANG_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5008), + [anon_sym_xor] = ACTIONS(5008), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5008), + [anon_sym_LT_LT_PIPE] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_catch] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5006), + [anon_sym_try] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_true] = ACTIONS(5008), + [anon_sym_false] = ACTIONS(5008), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_unreachable] = ACTIONS(5008), + [anon_sym_undefined] = ACTIONS(5008), + [sym_sink] = ACTIONS(5008), + [sym_integer] = ACTIONS(5008), + [sym_float] = ACTIONS(5006), + [anon_sym_DQUOTE] = ACTIONS(5006), + [sym_multiline_string] = ACTIONS(5006), + [sym_character] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5006), + }, + [STATE(3666)] = { + [sym_identifier] = ACTIONS(5872), + [anon_sym_func] = ACTIONS(5872), + [anon_sym_BANG] = ACTIONS(5872), + [anon_sym_EQ] = ACTIONS(5872), + [anon_sym_struct] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5870), + [anon_sym_LBRACE] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(5872), + [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5872), + [anon_sym_QMARK] = ACTIONS(5870), + [anon_sym_STAR] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5870), + [anon_sym_void] = ACTIONS(5872), + [anon_sym_noreturn] = ACTIONS(5872), + [anon_sym_type] = ACTIONS(5872), + [anon_sym_anyopaque] = ACTIONS(5872), + [anon_sym_bool] = ACTIONS(5872), + [anon_sym_int] = ACTIONS(5872), + [anon_sym_uint] = ACTIONS(5872), + [anon_sym_float] = ACTIONS(5872), + [anon_sym_range] = ACTIONS(5872), + [anon_sym_i8] = ACTIONS(5872), + [anon_sym_i16] = ACTIONS(5872), + [anon_sym_i32] = ACTIONS(5872), + [anon_sym_i64] = ACTIONS(5872), + [anon_sym_u8] = ACTIONS(5872), + [anon_sym_u16] = ACTIONS(5872), + [anon_sym_u32] = ACTIONS(5872), + [anon_sym_u64] = ACTIONS(5872), + [anon_sym_isize] = ACTIONS(5872), + [anon_sym_usize] = ACTIONS(5872), + [anon_sym_f32] = ACTIONS(5872), + [anon_sym_f64] = ACTIONS(5872), + [anon_sym_c_char] = ACTIONS(5872), + [anon_sym_c_schar] = ACTIONS(5872), + [anon_sym_c_uchar] = ACTIONS(5872), + [anon_sym_c_short] = ACTIONS(5872), + [anon_sym_c_ushort] = ACTIONS(5872), + [anon_sym_c_int] = ACTIONS(5872), + [anon_sym_c_uint] = ACTIONS(5872), + [anon_sym_c_long] = ACTIONS(5872), + [anon_sym_c_ulong] = ACTIONS(5872), + [anon_sym_c_longlong] = ACTIONS(5872), + [anon_sym_c_ulonglong] = ACTIONS(5872), + [anon_sym_c_float] = ACTIONS(5872), + [anon_sym_c_double] = ACTIONS(5872), + [anon_sym_c_longdouble] = ACTIONS(5872), + [anon_sym_PLUS_EQ] = ACTIONS(5870), + [anon_sym_DASH_EQ] = ACTIONS(5870), + [anon_sym_STAR_EQ] = ACTIONS(5870), + [anon_sym_SLASH_EQ] = ACTIONS(5870), + [anon_sym_AMP_EQ] = ACTIONS(5870), + [anon_sym_PIPE_EQ] = ACTIONS(5872), + [anon_sym_xor_EQ] = ACTIONS(5870), + [anon_sym_LT_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_GT_EQ] = ACTIONS(5870), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5870), + [anon_sym_return] = ACTIONS(5872), + [anon_sym_yield] = ACTIONS(5872), + [anon_sym_break] = ACTIONS(5872), + [anon_sym_continue] = ACTIONS(5872), + [anon_sym_defer] = ACTIONS(5872), + [anon_sym_errdefer] = ACTIONS(5872), + [anon_sym_if] = ACTIONS(5872), + [anon_sym_else] = ACTIONS(5872), + [anon_sym_while] = ACTIONS(5872), + [anon_sym_expand] = ACTIONS(5872), + [anon_sym_for] = ACTIONS(5872), + [anon_sym_PIPE2] = ACTIONS(5870), + [anon_sym_match] = ACTIONS(5872), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5870), + [anon_sym_orelse] = ACTIONS(5872), + [anon_sym_or] = ACTIONS(5872), + [anon_sym_and] = ACTIONS(5872), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_BANG_EQ] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5872), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5872), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_AMP] = ACTIONS(5872), + [anon_sym_xor] = ACTIONS(5872), + [anon_sym_LT_LT] = ACTIONS(5872), + [anon_sym_GT_GT] = ACTIONS(5872), + [anon_sym_LT_LT_PIPE] = ACTIONS(5872), + [anon_sym_PLUS] = ACTIONS(5872), + [anon_sym_SLASH] = ACTIONS(5872), + [anon_sym_catch] = ACTIONS(5872), + [anon_sym_TILDE] = ACTIONS(5870), + [anon_sym_try] = ACTIONS(5872), + [anon_sym_DOT] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5870), + [anon_sym_true] = ACTIONS(5872), + [anon_sym_false] = ACTIONS(5872), + [anon_sym_null] = ACTIONS(5872), + [anon_sym_unreachable] = ACTIONS(5872), + [anon_sym_undefined] = ACTIONS(5872), + [sym_sink] = ACTIONS(5872), + [sym_integer] = ACTIONS(5872), + [sym_float] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(5870), + [sym_multiline_string] = ACTIONS(5870), + [sym_character] = ACTIONS(5870), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5870), + }, + [STATE(3667)] = { + [sym_identifier] = ACTIONS(5012), + [anon_sym_func] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_struct] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5010), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_void] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_type] = ACTIONS(5012), + [anon_sym_anyopaque] = ACTIONS(5012), + [anon_sym_bool] = ACTIONS(5012), + [anon_sym_int] = ACTIONS(5012), + [anon_sym_uint] = ACTIONS(5012), + [anon_sym_float] = ACTIONS(5012), + [anon_sym_range] = ACTIONS(5012), + [anon_sym_i8] = ACTIONS(5012), + [anon_sym_i16] = ACTIONS(5012), + [anon_sym_i32] = ACTIONS(5012), + [anon_sym_i64] = ACTIONS(5012), + [anon_sym_u8] = ACTIONS(5012), + [anon_sym_u16] = ACTIONS(5012), + [anon_sym_u32] = ACTIONS(5012), + [anon_sym_u64] = ACTIONS(5012), + [anon_sym_isize] = ACTIONS(5012), + [anon_sym_usize] = ACTIONS(5012), + [anon_sym_f32] = ACTIONS(5012), + [anon_sym_f64] = ACTIONS(5012), + [anon_sym_c_char] = ACTIONS(5012), + [anon_sym_c_schar] = ACTIONS(5012), + [anon_sym_c_uchar] = ACTIONS(5012), + [anon_sym_c_short] = ACTIONS(5012), + [anon_sym_c_ushort] = ACTIONS(5012), + [anon_sym_c_int] = ACTIONS(5012), + [anon_sym_c_uint] = ACTIONS(5012), + [anon_sym_c_long] = ACTIONS(5012), + [anon_sym_c_ulong] = ACTIONS(5012), + [anon_sym_c_longlong] = ACTIONS(5012), + [anon_sym_c_ulonglong] = ACTIONS(5012), + [anon_sym_c_float] = ACTIONS(5012), + [anon_sym_c_double] = ACTIONS(5012), + [anon_sym_c_longdouble] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5010), + [anon_sym_DASH_EQ] = ACTIONS(5010), + [anon_sym_STAR_EQ] = ACTIONS(5010), + [anon_sym_SLASH_EQ] = ACTIONS(5010), + [anon_sym_AMP_EQ] = ACTIONS(5010), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_xor_EQ] = ACTIONS(5010), + [anon_sym_LT_LT_EQ] = ACTIONS(5010), + [anon_sym_GT_GT_EQ] = ACTIONS(5010), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5010), + [anon_sym_return] = ACTIONS(5012), + [anon_sym_yield] = ACTIONS(5012), + [anon_sym_break] = ACTIONS(5012), + [anon_sym_continue] = ACTIONS(5012), + [anon_sym_defer] = ACTIONS(5012), + [anon_sym_errdefer] = ACTIONS(5012), + [anon_sym_if] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5012), + [anon_sym_while] = ACTIONS(5012), + [anon_sym_expand] = ACTIONS(5012), + [anon_sym_for] = ACTIONS(5012), + [anon_sym_PIPE2] = ACTIONS(5010), + [anon_sym_match] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), + [anon_sym_orelse] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5012), + [anon_sym_and] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5012), + [anon_sym_xor] = ACTIONS(5012), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5012), + [anon_sym_LT_LT_PIPE] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5012), + [anon_sym_catch] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_true] = ACTIONS(5012), + [anon_sym_false] = ACTIONS(5012), + [anon_sym_null] = ACTIONS(5012), + [anon_sym_unreachable] = ACTIONS(5012), + [anon_sym_undefined] = ACTIONS(5012), + [sym_sink] = ACTIONS(5012), + [sym_integer] = ACTIONS(5012), + [sym_float] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(5010), + [sym_multiline_string] = ACTIONS(5010), + [sym_character] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5010), + }, + [STATE(3668)] = { + [sym_identifier] = ACTIONS(5016), + [anon_sym_func] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_struct] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_void] = ACTIONS(5016), + [anon_sym_noreturn] = ACTIONS(5016), + [anon_sym_type] = ACTIONS(5016), + [anon_sym_anyopaque] = ACTIONS(5016), + [anon_sym_bool] = ACTIONS(5016), + [anon_sym_int] = ACTIONS(5016), + [anon_sym_uint] = ACTIONS(5016), + [anon_sym_float] = ACTIONS(5016), + [anon_sym_range] = ACTIONS(5016), + [anon_sym_i8] = ACTIONS(5016), + [anon_sym_i16] = ACTIONS(5016), + [anon_sym_i32] = ACTIONS(5016), + [anon_sym_i64] = ACTIONS(5016), + [anon_sym_u8] = ACTIONS(5016), + [anon_sym_u16] = ACTIONS(5016), + [anon_sym_u32] = ACTIONS(5016), + [anon_sym_u64] = ACTIONS(5016), + [anon_sym_isize] = ACTIONS(5016), + [anon_sym_usize] = ACTIONS(5016), + [anon_sym_f32] = ACTIONS(5016), + [anon_sym_f64] = ACTIONS(5016), + [anon_sym_c_char] = ACTIONS(5016), + [anon_sym_c_schar] = ACTIONS(5016), + [anon_sym_c_uchar] = ACTIONS(5016), + [anon_sym_c_short] = ACTIONS(5016), + [anon_sym_c_ushort] = ACTIONS(5016), + [anon_sym_c_int] = ACTIONS(5016), + [anon_sym_c_uint] = ACTIONS(5016), + [anon_sym_c_long] = ACTIONS(5016), + [anon_sym_c_ulong] = ACTIONS(5016), + [anon_sym_c_longlong] = ACTIONS(5016), + [anon_sym_c_ulonglong] = ACTIONS(5016), + [anon_sym_c_float] = ACTIONS(5016), + [anon_sym_c_double] = ACTIONS(5016), + [anon_sym_c_longdouble] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5014), + [anon_sym_DASH_EQ] = ACTIONS(5014), + [anon_sym_STAR_EQ] = ACTIONS(5014), + [anon_sym_SLASH_EQ] = ACTIONS(5014), + [anon_sym_AMP_EQ] = ACTIONS(5014), + [anon_sym_PIPE_EQ] = ACTIONS(5016), + [anon_sym_xor_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_EQ] = ACTIONS(5014), + [anon_sym_GT_GT_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5014), + [anon_sym_return] = ACTIONS(5016), + [anon_sym_yield] = ACTIONS(5016), + [anon_sym_break] = ACTIONS(5016), + [anon_sym_continue] = ACTIONS(5016), + [anon_sym_defer] = ACTIONS(5016), + [anon_sym_errdefer] = ACTIONS(5016), + [anon_sym_if] = ACTIONS(5016), + [anon_sym_else] = ACTIONS(5016), + [anon_sym_while] = ACTIONS(5016), + [anon_sym_expand] = ACTIONS(5016), + [anon_sym_for] = ACTIONS(5016), + [anon_sym_PIPE2] = ACTIONS(5014), + [anon_sym_match] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5014), + [anon_sym_orelse] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5016), + [anon_sym_and] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_xor] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_LT_LT_PIPE] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_catch] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_true] = ACTIONS(5016), + [anon_sym_false] = ACTIONS(5016), + [anon_sym_null] = ACTIONS(5016), + [anon_sym_unreachable] = ACTIONS(5016), + [anon_sym_undefined] = ACTIONS(5016), + [sym_sink] = ACTIONS(5016), + [sym_integer] = ACTIONS(5016), + [sym_float] = ACTIONS(5014), + [anon_sym_DQUOTE] = ACTIONS(5014), + [sym_multiline_string] = ACTIONS(5014), + [sym_character] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5014), + }, + [STATE(3669)] = { + [sym_identifier] = ACTIONS(5876), + [anon_sym_func] = ACTIONS(5876), + [anon_sym_BANG] = ACTIONS(5876), + [anon_sym_EQ] = ACTIONS(5876), + [anon_sym_struct] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(5874), + [anon_sym_LBRACE] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5876), + [anon_sym_DOLLAR] = ACTIONS(5874), + [anon_sym_PIPE] = ACTIONS(5876), + [anon_sym_QMARK] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(5874), + [anon_sym_void] = ACTIONS(5876), + [anon_sym_noreturn] = ACTIONS(5876), + [anon_sym_type] = ACTIONS(5876), + [anon_sym_anyopaque] = ACTIONS(5876), + [anon_sym_bool] = ACTIONS(5876), + [anon_sym_int] = ACTIONS(5876), + [anon_sym_uint] = ACTIONS(5876), + [anon_sym_float] = ACTIONS(5876), + [anon_sym_range] = ACTIONS(5876), + [anon_sym_i8] = ACTIONS(5876), + [anon_sym_i16] = ACTIONS(5876), + [anon_sym_i32] = ACTIONS(5876), + [anon_sym_i64] = ACTIONS(5876), + [anon_sym_u8] = ACTIONS(5876), + [anon_sym_u16] = ACTIONS(5876), + [anon_sym_u32] = ACTIONS(5876), + [anon_sym_u64] = ACTIONS(5876), + [anon_sym_isize] = ACTIONS(5876), + [anon_sym_usize] = ACTIONS(5876), + [anon_sym_f32] = ACTIONS(5876), + [anon_sym_f64] = ACTIONS(5876), + [anon_sym_c_char] = ACTIONS(5876), + [anon_sym_c_schar] = ACTIONS(5876), + [anon_sym_c_uchar] = ACTIONS(5876), + [anon_sym_c_short] = ACTIONS(5876), + [anon_sym_c_ushort] = ACTIONS(5876), + [anon_sym_c_int] = ACTIONS(5876), + [anon_sym_c_uint] = ACTIONS(5876), + [anon_sym_c_long] = ACTIONS(5876), + [anon_sym_c_ulong] = ACTIONS(5876), + [anon_sym_c_longlong] = ACTIONS(5876), + [anon_sym_c_ulonglong] = ACTIONS(5876), + [anon_sym_c_float] = ACTIONS(5876), + [anon_sym_c_double] = ACTIONS(5876), + [anon_sym_c_longdouble] = ACTIONS(5876), + [anon_sym_PLUS_EQ] = ACTIONS(5874), + [anon_sym_DASH_EQ] = ACTIONS(5874), + [anon_sym_STAR_EQ] = ACTIONS(5874), + [anon_sym_SLASH_EQ] = ACTIONS(5874), + [anon_sym_AMP_EQ] = ACTIONS(5874), + [anon_sym_PIPE_EQ] = ACTIONS(5876), + [anon_sym_xor_EQ] = ACTIONS(5874), + [anon_sym_LT_LT_EQ] = ACTIONS(5874), + [anon_sym_GT_GT_EQ] = ACTIONS(5874), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5874), + [anon_sym_return] = ACTIONS(5876), + [anon_sym_yield] = ACTIONS(5876), + [anon_sym_break] = ACTIONS(5876), + [anon_sym_continue] = ACTIONS(5876), + [anon_sym_defer] = ACTIONS(5876), + [anon_sym_errdefer] = ACTIONS(5876), + [anon_sym_if] = ACTIONS(5876), + [anon_sym_else] = ACTIONS(5876), + [anon_sym_while] = ACTIONS(5876), + [anon_sym_expand] = ACTIONS(5876), + [anon_sym_for] = ACTIONS(5876), + [anon_sym_PIPE2] = ACTIONS(5874), + [anon_sym_match] = ACTIONS(5876), + [anon_sym_DOT_DOT] = ACTIONS(5876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5874), + [anon_sym_orelse] = ACTIONS(5876), + [anon_sym_or] = ACTIONS(5876), + [anon_sym_and] = ACTIONS(5876), + [anon_sym_EQ_EQ] = ACTIONS(5874), + [anon_sym_BANG_EQ] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(5876), + [anon_sym_LT_EQ] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5876), + [anon_sym_GT_EQ] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5876), + [anon_sym_xor] = ACTIONS(5876), + [anon_sym_LT_LT] = ACTIONS(5876), + [anon_sym_GT_GT] = ACTIONS(5876), + [anon_sym_LT_LT_PIPE] = ACTIONS(5876), + [anon_sym_PLUS] = ACTIONS(5876), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_catch] = ACTIONS(5876), + [anon_sym_TILDE] = ACTIONS(5874), + [anon_sym_try] = ACTIONS(5876), + [anon_sym_DOT] = ACTIONS(5876), + [anon_sym_CARET] = ACTIONS(5874), + [anon_sym_true] = ACTIONS(5876), + [anon_sym_false] = ACTIONS(5876), + [anon_sym_null] = ACTIONS(5876), + [anon_sym_unreachable] = ACTIONS(5876), + [anon_sym_undefined] = ACTIONS(5876), + [sym_sink] = ACTIONS(5876), + [sym_integer] = ACTIONS(5876), + [sym_float] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(5874), + [sym_multiline_string] = ACTIONS(5874), + [sym_character] = ACTIONS(5874), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5874), + }, + [STATE(3670)] = { + [sym_identifier] = ACTIONS(5020), + [anon_sym_func] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_void] = ACTIONS(5020), + [anon_sym_noreturn] = ACTIONS(5020), + [anon_sym_type] = ACTIONS(5020), + [anon_sym_anyopaque] = ACTIONS(5020), + [anon_sym_bool] = ACTIONS(5020), + [anon_sym_int] = ACTIONS(5020), + [anon_sym_uint] = ACTIONS(5020), + [anon_sym_float] = ACTIONS(5020), + [anon_sym_range] = ACTIONS(5020), + [anon_sym_i8] = ACTIONS(5020), + [anon_sym_i16] = ACTIONS(5020), + [anon_sym_i32] = ACTIONS(5020), + [anon_sym_i64] = ACTIONS(5020), + [anon_sym_u8] = ACTIONS(5020), + [anon_sym_u16] = ACTIONS(5020), + [anon_sym_u32] = ACTIONS(5020), + [anon_sym_u64] = ACTIONS(5020), + [anon_sym_isize] = ACTIONS(5020), + [anon_sym_usize] = ACTIONS(5020), + [anon_sym_f32] = ACTIONS(5020), + [anon_sym_f64] = ACTIONS(5020), + [anon_sym_c_char] = ACTIONS(5020), + [anon_sym_c_schar] = ACTIONS(5020), + [anon_sym_c_uchar] = ACTIONS(5020), + [anon_sym_c_short] = ACTIONS(5020), + [anon_sym_c_ushort] = ACTIONS(5020), + [anon_sym_c_int] = ACTIONS(5020), + [anon_sym_c_uint] = ACTIONS(5020), + [anon_sym_c_long] = ACTIONS(5020), + [anon_sym_c_ulong] = ACTIONS(5020), + [anon_sym_c_longlong] = ACTIONS(5020), + [anon_sym_c_ulonglong] = ACTIONS(5020), + [anon_sym_c_float] = ACTIONS(5020), + [anon_sym_c_double] = ACTIONS(5020), + [anon_sym_c_longdouble] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5018), + [anon_sym_DASH_EQ] = ACTIONS(5018), + [anon_sym_STAR_EQ] = ACTIONS(5018), + [anon_sym_SLASH_EQ] = ACTIONS(5018), + [anon_sym_AMP_EQ] = ACTIONS(5018), + [anon_sym_PIPE_EQ] = ACTIONS(5020), + [anon_sym_xor_EQ] = ACTIONS(5018), + [anon_sym_LT_LT_EQ] = ACTIONS(5018), + [anon_sym_GT_GT_EQ] = ACTIONS(5018), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5018), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_continue] = ACTIONS(5020), + [anon_sym_defer] = ACTIONS(5020), + [anon_sym_errdefer] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_expand] = ACTIONS(5020), + [anon_sym_for] = ACTIONS(5020), + [anon_sym_PIPE2] = ACTIONS(5018), + [anon_sym_match] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5018), + [anon_sym_orelse] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5020), + [anon_sym_xor] = ACTIONS(5020), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5020), + [anon_sym_LT_LT_PIPE] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_catch] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5018), + [anon_sym_try] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_true] = ACTIONS(5020), + [anon_sym_false] = ACTIONS(5020), + [anon_sym_null] = ACTIONS(5020), + [anon_sym_unreachable] = ACTIONS(5020), + [anon_sym_undefined] = ACTIONS(5020), + [sym_sink] = ACTIONS(5020), + [sym_integer] = ACTIONS(5020), + [sym_float] = ACTIONS(5018), + [anon_sym_DQUOTE] = ACTIONS(5018), + [sym_multiline_string] = ACTIONS(5018), + [sym_character] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5018), + }, + [STATE(3671)] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_func] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_struct] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_void] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_type] = ACTIONS(5024), + [anon_sym_anyopaque] = ACTIONS(5024), + [anon_sym_bool] = ACTIONS(5024), + [anon_sym_int] = ACTIONS(5024), + [anon_sym_uint] = ACTIONS(5024), + [anon_sym_float] = ACTIONS(5024), + [anon_sym_range] = ACTIONS(5024), + [anon_sym_i8] = ACTIONS(5024), + [anon_sym_i16] = ACTIONS(5024), + [anon_sym_i32] = ACTIONS(5024), + [anon_sym_i64] = ACTIONS(5024), + [anon_sym_u8] = ACTIONS(5024), + [anon_sym_u16] = ACTIONS(5024), + [anon_sym_u32] = ACTIONS(5024), + [anon_sym_u64] = ACTIONS(5024), + [anon_sym_isize] = ACTIONS(5024), + [anon_sym_usize] = ACTIONS(5024), + [anon_sym_f32] = ACTIONS(5024), + [anon_sym_f64] = ACTIONS(5024), + [anon_sym_c_char] = ACTIONS(5024), + [anon_sym_c_schar] = ACTIONS(5024), + [anon_sym_c_uchar] = ACTIONS(5024), + [anon_sym_c_short] = ACTIONS(5024), + [anon_sym_c_ushort] = ACTIONS(5024), + [anon_sym_c_int] = ACTIONS(5024), + [anon_sym_c_uint] = ACTIONS(5024), + [anon_sym_c_long] = ACTIONS(5024), + [anon_sym_c_ulong] = ACTIONS(5024), + [anon_sym_c_longlong] = ACTIONS(5024), + [anon_sym_c_ulonglong] = ACTIONS(5024), + [anon_sym_c_float] = ACTIONS(5024), + [anon_sym_c_double] = ACTIONS(5024), + [anon_sym_c_longdouble] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_AMP_EQ] = ACTIONS(5022), + [anon_sym_PIPE_EQ] = ACTIONS(5024), + [anon_sym_xor_EQ] = ACTIONS(5022), + [anon_sym_LT_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_GT_EQ] = ACTIONS(5022), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5022), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_yield] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_defer] = ACTIONS(5024), + [anon_sym_errdefer] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_while] = ACTIONS(5024), + [anon_sym_expand] = ACTIONS(5024), + [anon_sym_for] = ACTIONS(5024), + [anon_sym_PIPE2] = ACTIONS(5022), + [anon_sym_match] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5022), + [anon_sym_orelse] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym_LT_LT_PIPE] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_catch] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_unreachable] = ACTIONS(5024), + [anon_sym_undefined] = ACTIONS(5024), + [sym_sink] = ACTIONS(5024), + [sym_integer] = ACTIONS(5024), + [sym_float] = ACTIONS(5022), + [anon_sym_DQUOTE] = ACTIONS(5022), + [sym_multiline_string] = ACTIONS(5022), + [sym_character] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5022), + }, + [STATE(3672)] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_func] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_void] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_type] = ACTIONS(5028), + [anon_sym_anyopaque] = ACTIONS(5028), + [anon_sym_bool] = ACTIONS(5028), + [anon_sym_int] = ACTIONS(5028), + [anon_sym_uint] = ACTIONS(5028), + [anon_sym_float] = ACTIONS(5028), + [anon_sym_range] = ACTIONS(5028), + [anon_sym_i8] = ACTIONS(5028), + [anon_sym_i16] = ACTIONS(5028), + [anon_sym_i32] = ACTIONS(5028), + [anon_sym_i64] = ACTIONS(5028), + [anon_sym_u8] = ACTIONS(5028), + [anon_sym_u16] = ACTIONS(5028), + [anon_sym_u32] = ACTIONS(5028), + [anon_sym_u64] = ACTIONS(5028), + [anon_sym_isize] = ACTIONS(5028), + [anon_sym_usize] = ACTIONS(5028), + [anon_sym_f32] = ACTIONS(5028), + [anon_sym_f64] = ACTIONS(5028), + [anon_sym_c_char] = ACTIONS(5028), + [anon_sym_c_schar] = ACTIONS(5028), + [anon_sym_c_uchar] = ACTIONS(5028), + [anon_sym_c_short] = ACTIONS(5028), + [anon_sym_c_ushort] = ACTIONS(5028), + [anon_sym_c_int] = ACTIONS(5028), + [anon_sym_c_uint] = ACTIONS(5028), + [anon_sym_c_long] = ACTIONS(5028), + [anon_sym_c_ulong] = ACTIONS(5028), + [anon_sym_c_longlong] = ACTIONS(5028), + [anon_sym_c_ulonglong] = ACTIONS(5028), + [anon_sym_c_float] = ACTIONS(5028), + [anon_sym_c_double] = ACTIONS(5028), + [anon_sym_c_longdouble] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5028), + [anon_sym_xor_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5026), + [anon_sym_return] = ACTIONS(5028), + [anon_sym_yield] = ACTIONS(5028), + [anon_sym_break] = ACTIONS(5028), + [anon_sym_continue] = ACTIONS(5028), + [anon_sym_defer] = ACTIONS(5028), + [anon_sym_errdefer] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5028), + [anon_sym_while] = ACTIONS(5028), + [anon_sym_expand] = ACTIONS(5028), + [anon_sym_for] = ACTIONS(5028), + [anon_sym_PIPE2] = ACTIONS(5026), + [anon_sym_match] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5026), + [anon_sym_orelse] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym_LT_LT_PIPE] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_catch] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5028), + [anon_sym_false] = ACTIONS(5028), + [anon_sym_null] = ACTIONS(5028), + [anon_sym_unreachable] = ACTIONS(5028), + [anon_sym_undefined] = ACTIONS(5028), + [sym_sink] = ACTIONS(5028), + [sym_integer] = ACTIONS(5028), + [sym_float] = ACTIONS(5026), + [anon_sym_DQUOTE] = ACTIONS(5026), + [sym_multiline_string] = ACTIONS(5026), + [sym_character] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5026), + }, + [STATE(3673)] = { + [sym_identifier] = ACTIONS(5032), + [anon_sym_func] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_struct] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_void] = ACTIONS(5032), + [anon_sym_noreturn] = ACTIONS(5032), + [anon_sym_type] = ACTIONS(5032), + [anon_sym_anyopaque] = ACTIONS(5032), + [anon_sym_bool] = ACTIONS(5032), + [anon_sym_int] = ACTIONS(5032), + [anon_sym_uint] = ACTIONS(5032), + [anon_sym_float] = ACTIONS(5032), + [anon_sym_range] = ACTIONS(5032), + [anon_sym_i8] = ACTIONS(5032), + [anon_sym_i16] = ACTIONS(5032), + [anon_sym_i32] = ACTIONS(5032), + [anon_sym_i64] = ACTIONS(5032), + [anon_sym_u8] = ACTIONS(5032), + [anon_sym_u16] = ACTIONS(5032), + [anon_sym_u32] = ACTIONS(5032), + [anon_sym_u64] = ACTIONS(5032), + [anon_sym_isize] = ACTIONS(5032), + [anon_sym_usize] = ACTIONS(5032), + [anon_sym_f32] = ACTIONS(5032), + [anon_sym_f64] = ACTIONS(5032), + [anon_sym_c_char] = ACTIONS(5032), + [anon_sym_c_schar] = ACTIONS(5032), + [anon_sym_c_uchar] = ACTIONS(5032), + [anon_sym_c_short] = ACTIONS(5032), + [anon_sym_c_ushort] = ACTIONS(5032), + [anon_sym_c_int] = ACTIONS(5032), + [anon_sym_c_uint] = ACTIONS(5032), + [anon_sym_c_long] = ACTIONS(5032), + [anon_sym_c_ulong] = ACTIONS(5032), + [anon_sym_c_longlong] = ACTIONS(5032), + [anon_sym_c_ulonglong] = ACTIONS(5032), + [anon_sym_c_float] = ACTIONS(5032), + [anon_sym_c_double] = ACTIONS(5032), + [anon_sym_c_longdouble] = ACTIONS(5032), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5032), + [anon_sym_xor_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5030), + [anon_sym_return] = ACTIONS(5032), + [anon_sym_yield] = ACTIONS(5032), + [anon_sym_break] = ACTIONS(5032), + [anon_sym_continue] = ACTIONS(5032), + [anon_sym_defer] = ACTIONS(5032), + [anon_sym_errdefer] = ACTIONS(5032), + [anon_sym_if] = ACTIONS(5032), + [anon_sym_else] = ACTIONS(5032), + [anon_sym_while] = ACTIONS(5032), + [anon_sym_expand] = ACTIONS(5032), + [anon_sym_for] = ACTIONS(5032), + [anon_sym_PIPE2] = ACTIONS(5030), + [anon_sym_match] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5030), + [anon_sym_orelse] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5032), + [anon_sym_xor] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5032), + [anon_sym_LT_LT_PIPE] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_catch] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_try] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_true] = ACTIONS(5032), + [anon_sym_false] = ACTIONS(5032), + [anon_sym_null] = ACTIONS(5032), + [anon_sym_unreachable] = ACTIONS(5032), + [anon_sym_undefined] = ACTIONS(5032), + [sym_sink] = ACTIONS(5032), + [sym_integer] = ACTIONS(5032), + [sym_float] = ACTIONS(5030), + [anon_sym_DQUOTE] = ACTIONS(5030), + [sym_multiline_string] = ACTIONS(5030), + [sym_character] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5030), + }, + [STATE(3674)] = { + [sym_identifier] = ACTIONS(5036), + [anon_sym_func] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_struct] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_void] = ACTIONS(5036), + [anon_sym_noreturn] = ACTIONS(5036), + [anon_sym_type] = ACTIONS(5036), + [anon_sym_anyopaque] = ACTIONS(5036), + [anon_sym_bool] = ACTIONS(5036), + [anon_sym_int] = ACTIONS(5036), + [anon_sym_uint] = ACTIONS(5036), + [anon_sym_float] = ACTIONS(5036), + [anon_sym_range] = ACTIONS(5036), + [anon_sym_i8] = ACTIONS(5036), + [anon_sym_i16] = ACTIONS(5036), + [anon_sym_i32] = ACTIONS(5036), + [anon_sym_i64] = ACTIONS(5036), + [anon_sym_u8] = ACTIONS(5036), + [anon_sym_u16] = ACTIONS(5036), + [anon_sym_u32] = ACTIONS(5036), + [anon_sym_u64] = ACTIONS(5036), + [anon_sym_isize] = ACTIONS(5036), + [anon_sym_usize] = ACTIONS(5036), + [anon_sym_f32] = ACTIONS(5036), + [anon_sym_f64] = ACTIONS(5036), + [anon_sym_c_char] = ACTIONS(5036), + [anon_sym_c_schar] = ACTIONS(5036), + [anon_sym_c_uchar] = ACTIONS(5036), + [anon_sym_c_short] = ACTIONS(5036), + [anon_sym_c_ushort] = ACTIONS(5036), + [anon_sym_c_int] = ACTIONS(5036), + [anon_sym_c_uint] = ACTIONS(5036), + [anon_sym_c_long] = ACTIONS(5036), + [anon_sym_c_ulong] = ACTIONS(5036), + [anon_sym_c_longlong] = ACTIONS(5036), + [anon_sym_c_ulonglong] = ACTIONS(5036), + [anon_sym_c_float] = ACTIONS(5036), + [anon_sym_c_double] = ACTIONS(5036), + [anon_sym_c_longdouble] = ACTIONS(5036), + [anon_sym_PLUS_EQ] = ACTIONS(5034), + [anon_sym_DASH_EQ] = ACTIONS(5034), + [anon_sym_STAR_EQ] = ACTIONS(5034), + [anon_sym_SLASH_EQ] = ACTIONS(5034), + [anon_sym_AMP_EQ] = ACTIONS(5034), + [anon_sym_PIPE_EQ] = ACTIONS(5036), + [anon_sym_xor_EQ] = ACTIONS(5034), + [anon_sym_LT_LT_EQ] = ACTIONS(5034), + [anon_sym_GT_GT_EQ] = ACTIONS(5034), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5034), + [anon_sym_return] = ACTIONS(5036), + [anon_sym_yield] = ACTIONS(5036), + [anon_sym_break] = ACTIONS(5036), + [anon_sym_continue] = ACTIONS(5036), + [anon_sym_defer] = ACTIONS(5036), + [anon_sym_errdefer] = ACTIONS(5036), + [anon_sym_if] = ACTIONS(5036), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_while] = ACTIONS(5036), + [anon_sym_expand] = ACTIONS(5036), + [anon_sym_for] = ACTIONS(5036), + [anon_sym_PIPE2] = ACTIONS(5034), + [anon_sym_match] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5034), + [anon_sym_orelse] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5036), + [anon_sym_xor] = ACTIONS(5036), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5036), + [anon_sym_LT_LT_PIPE] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_catch] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5034), + [anon_sym_try] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym_true] = ACTIONS(5036), + [anon_sym_false] = ACTIONS(5036), + [anon_sym_null] = ACTIONS(5036), + [anon_sym_unreachable] = ACTIONS(5036), + [anon_sym_undefined] = ACTIONS(5036), + [sym_sink] = ACTIONS(5036), + [sym_integer] = ACTIONS(5036), + [sym_float] = ACTIONS(5034), + [anon_sym_DQUOTE] = ACTIONS(5034), + [sym_multiline_string] = ACTIONS(5034), + [sym_character] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5034), + }, + [STATE(3675)] = { + [sym_identifier] = ACTIONS(5040), + [anon_sym_func] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_struct] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_void] = ACTIONS(5040), + [anon_sym_noreturn] = ACTIONS(5040), + [anon_sym_type] = ACTIONS(5040), + [anon_sym_anyopaque] = ACTIONS(5040), + [anon_sym_bool] = ACTIONS(5040), + [anon_sym_int] = ACTIONS(5040), + [anon_sym_uint] = ACTIONS(5040), + [anon_sym_float] = ACTIONS(5040), + [anon_sym_range] = ACTIONS(5040), + [anon_sym_i8] = ACTIONS(5040), + [anon_sym_i16] = ACTIONS(5040), + [anon_sym_i32] = ACTIONS(5040), + [anon_sym_i64] = ACTIONS(5040), + [anon_sym_u8] = ACTIONS(5040), + [anon_sym_u16] = ACTIONS(5040), + [anon_sym_u32] = ACTIONS(5040), + [anon_sym_u64] = ACTIONS(5040), + [anon_sym_isize] = ACTIONS(5040), + [anon_sym_usize] = ACTIONS(5040), + [anon_sym_f32] = ACTIONS(5040), + [anon_sym_f64] = ACTIONS(5040), + [anon_sym_c_char] = ACTIONS(5040), + [anon_sym_c_schar] = ACTIONS(5040), + [anon_sym_c_uchar] = ACTIONS(5040), + [anon_sym_c_short] = ACTIONS(5040), + [anon_sym_c_ushort] = ACTIONS(5040), + [anon_sym_c_int] = ACTIONS(5040), + [anon_sym_c_uint] = ACTIONS(5040), + [anon_sym_c_long] = ACTIONS(5040), + [anon_sym_c_ulong] = ACTIONS(5040), + [anon_sym_c_longlong] = ACTIONS(5040), + [anon_sym_c_ulonglong] = ACTIONS(5040), + [anon_sym_c_float] = ACTIONS(5040), + [anon_sym_c_double] = ACTIONS(5040), + [anon_sym_c_longdouble] = ACTIONS(5040), + [anon_sym_PLUS_EQ] = ACTIONS(5038), + [anon_sym_DASH_EQ] = ACTIONS(5038), + [anon_sym_STAR_EQ] = ACTIONS(5038), + [anon_sym_SLASH_EQ] = ACTIONS(5038), + [anon_sym_AMP_EQ] = ACTIONS(5038), + [anon_sym_PIPE_EQ] = ACTIONS(5040), + [anon_sym_xor_EQ] = ACTIONS(5038), + [anon_sym_LT_LT_EQ] = ACTIONS(5038), + [anon_sym_GT_GT_EQ] = ACTIONS(5038), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5038), + [anon_sym_return] = ACTIONS(5040), + [anon_sym_yield] = ACTIONS(5040), + [anon_sym_break] = ACTIONS(5040), + [anon_sym_continue] = ACTIONS(5040), + [anon_sym_defer] = ACTIONS(5040), + [anon_sym_errdefer] = ACTIONS(5040), + [anon_sym_if] = ACTIONS(5040), + [anon_sym_else] = ACTIONS(5040), + [anon_sym_while] = ACTIONS(5040), + [anon_sym_expand] = ACTIONS(5040), + [anon_sym_for] = ACTIONS(5040), + [anon_sym_PIPE2] = ACTIONS(5038), + [anon_sym_match] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5038), + [anon_sym_orelse] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5040), + [anon_sym_and] = ACTIONS(5040), + [anon_sym_EQ_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5040), + [anon_sym_xor] = ACTIONS(5040), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5040), + [anon_sym_LT_LT_PIPE] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_catch] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5038), + [anon_sym_try] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym_true] = ACTIONS(5040), + [anon_sym_false] = ACTIONS(5040), + [anon_sym_null] = ACTIONS(5040), + [anon_sym_unreachable] = ACTIONS(5040), + [anon_sym_undefined] = ACTIONS(5040), + [sym_sink] = ACTIONS(5040), + [sym_integer] = ACTIONS(5040), + [sym_float] = ACTIONS(5038), + [anon_sym_DQUOTE] = ACTIONS(5038), + [sym_multiline_string] = ACTIONS(5038), + [sym_character] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5038), + }, + [STATE(3676)] = { + [sym_identifier] = ACTIONS(5044), + [anon_sym_func] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_struct] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_void] = ACTIONS(5044), + [anon_sym_noreturn] = ACTIONS(5044), + [anon_sym_type] = ACTIONS(5044), + [anon_sym_anyopaque] = ACTIONS(5044), + [anon_sym_bool] = ACTIONS(5044), + [anon_sym_int] = ACTIONS(5044), + [anon_sym_uint] = ACTIONS(5044), + [anon_sym_float] = ACTIONS(5044), + [anon_sym_range] = ACTIONS(5044), + [anon_sym_i8] = ACTIONS(5044), + [anon_sym_i16] = ACTIONS(5044), + [anon_sym_i32] = ACTIONS(5044), + [anon_sym_i64] = ACTIONS(5044), + [anon_sym_u8] = ACTIONS(5044), + [anon_sym_u16] = ACTIONS(5044), + [anon_sym_u32] = ACTIONS(5044), + [anon_sym_u64] = ACTIONS(5044), + [anon_sym_isize] = ACTIONS(5044), + [anon_sym_usize] = ACTIONS(5044), + [anon_sym_f32] = ACTIONS(5044), + [anon_sym_f64] = ACTIONS(5044), + [anon_sym_c_char] = ACTIONS(5044), + [anon_sym_c_schar] = ACTIONS(5044), + [anon_sym_c_uchar] = ACTIONS(5044), + [anon_sym_c_short] = ACTIONS(5044), + [anon_sym_c_ushort] = ACTIONS(5044), + [anon_sym_c_int] = ACTIONS(5044), + [anon_sym_c_uint] = ACTIONS(5044), + [anon_sym_c_long] = ACTIONS(5044), + [anon_sym_c_ulong] = ACTIONS(5044), + [anon_sym_c_longlong] = ACTIONS(5044), + [anon_sym_c_ulonglong] = ACTIONS(5044), + [anon_sym_c_float] = ACTIONS(5044), + [anon_sym_c_double] = ACTIONS(5044), + [anon_sym_c_longdouble] = ACTIONS(5044), + [anon_sym_PLUS_EQ] = ACTIONS(5042), + [anon_sym_DASH_EQ] = ACTIONS(5042), + [anon_sym_STAR_EQ] = ACTIONS(5042), + [anon_sym_SLASH_EQ] = ACTIONS(5042), + [anon_sym_AMP_EQ] = ACTIONS(5042), + [anon_sym_PIPE_EQ] = ACTIONS(5044), + [anon_sym_xor_EQ] = ACTIONS(5042), + [anon_sym_LT_LT_EQ] = ACTIONS(5042), + [anon_sym_GT_GT_EQ] = ACTIONS(5042), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5042), + [anon_sym_return] = ACTIONS(5044), + [anon_sym_yield] = ACTIONS(5044), + [anon_sym_break] = ACTIONS(5044), + [anon_sym_continue] = ACTIONS(5044), + [anon_sym_defer] = ACTIONS(5044), + [anon_sym_errdefer] = ACTIONS(5044), + [anon_sym_if] = ACTIONS(5044), + [anon_sym_else] = ACTIONS(5044), + [anon_sym_while] = ACTIONS(5044), + [anon_sym_expand] = ACTIONS(5044), + [anon_sym_for] = ACTIONS(5044), + [anon_sym_PIPE2] = ACTIONS(5042), + [anon_sym_match] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5042), + [anon_sym_orelse] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5042), + [anon_sym_BANG_EQ] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5044), + [anon_sym_xor] = ACTIONS(5044), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5044), + [anon_sym_LT_LT_PIPE] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_catch] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5042), + [anon_sym_try] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym_true] = ACTIONS(5044), + [anon_sym_false] = ACTIONS(5044), + [anon_sym_null] = ACTIONS(5044), + [anon_sym_unreachable] = ACTIONS(5044), + [anon_sym_undefined] = ACTIONS(5044), + [sym_sink] = ACTIONS(5044), + [sym_integer] = ACTIONS(5044), + [sym_float] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5042), + [sym_multiline_string] = ACTIONS(5042), + [sym_character] = ACTIONS(5042), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5042), + }, + [STATE(3677)] = { + [sym_identifier] = ACTIONS(5048), + [anon_sym_func] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_DOLLAR] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_void] = ACTIONS(5048), + [anon_sym_noreturn] = ACTIONS(5048), + [anon_sym_type] = ACTIONS(5048), + [anon_sym_anyopaque] = ACTIONS(5048), + [anon_sym_bool] = ACTIONS(5048), + [anon_sym_int] = ACTIONS(5048), + [anon_sym_uint] = ACTIONS(5048), + [anon_sym_float] = ACTIONS(5048), + [anon_sym_range] = ACTIONS(5048), + [anon_sym_i8] = ACTIONS(5048), + [anon_sym_i16] = ACTIONS(5048), + [anon_sym_i32] = ACTIONS(5048), + [anon_sym_i64] = ACTIONS(5048), + [anon_sym_u8] = ACTIONS(5048), + [anon_sym_u16] = ACTIONS(5048), + [anon_sym_u32] = ACTIONS(5048), + [anon_sym_u64] = ACTIONS(5048), + [anon_sym_isize] = ACTIONS(5048), + [anon_sym_usize] = ACTIONS(5048), + [anon_sym_f32] = ACTIONS(5048), + [anon_sym_f64] = ACTIONS(5048), + [anon_sym_c_char] = ACTIONS(5048), + [anon_sym_c_schar] = ACTIONS(5048), + [anon_sym_c_uchar] = ACTIONS(5048), + [anon_sym_c_short] = ACTIONS(5048), + [anon_sym_c_ushort] = ACTIONS(5048), + [anon_sym_c_int] = ACTIONS(5048), + [anon_sym_c_uint] = ACTIONS(5048), + [anon_sym_c_long] = ACTIONS(5048), + [anon_sym_c_ulong] = ACTIONS(5048), + [anon_sym_c_longlong] = ACTIONS(5048), + [anon_sym_c_ulonglong] = ACTIONS(5048), + [anon_sym_c_float] = ACTIONS(5048), + [anon_sym_c_double] = ACTIONS(5048), + [anon_sym_c_longdouble] = ACTIONS(5048), + [anon_sym_PLUS_EQ] = ACTIONS(5046), + [anon_sym_DASH_EQ] = ACTIONS(5046), + [anon_sym_STAR_EQ] = ACTIONS(5046), + [anon_sym_SLASH_EQ] = ACTIONS(5046), + [anon_sym_AMP_EQ] = ACTIONS(5046), + [anon_sym_PIPE_EQ] = ACTIONS(5048), + [anon_sym_xor_EQ] = ACTIONS(5046), + [anon_sym_LT_LT_EQ] = ACTIONS(5046), + [anon_sym_GT_GT_EQ] = ACTIONS(5046), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5046), + [anon_sym_return] = ACTIONS(5048), + [anon_sym_yield] = ACTIONS(5048), + [anon_sym_break] = ACTIONS(5048), + [anon_sym_continue] = ACTIONS(5048), + [anon_sym_defer] = ACTIONS(5048), + [anon_sym_errdefer] = ACTIONS(5048), + [anon_sym_if] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5048), + [anon_sym_while] = ACTIONS(5048), + [anon_sym_expand] = ACTIONS(5048), + [anon_sym_for] = ACTIONS(5048), + [anon_sym_PIPE2] = ACTIONS(5046), + [anon_sym_match] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5046), + [anon_sym_orelse] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym_LT_LT_PIPE] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_catch] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_try] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym_true] = ACTIONS(5048), + [anon_sym_false] = ACTIONS(5048), + [anon_sym_null] = ACTIONS(5048), + [anon_sym_unreachable] = ACTIONS(5048), + [anon_sym_undefined] = ACTIONS(5048), + [sym_sink] = ACTIONS(5048), + [sym_integer] = ACTIONS(5048), + [sym_float] = ACTIONS(5046), + [anon_sym_DQUOTE] = ACTIONS(5046), + [sym_multiline_string] = ACTIONS(5046), + [sym_character] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5046), + }, + [STATE(3678)] = { + [sym_identifier] = ACTIONS(5056), + [anon_sym_func] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_struct] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5054), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_void] = ACTIONS(5056), + [anon_sym_noreturn] = ACTIONS(5056), + [anon_sym_type] = ACTIONS(5056), + [anon_sym_anyopaque] = ACTIONS(5056), + [anon_sym_bool] = ACTIONS(5056), + [anon_sym_int] = ACTIONS(5056), + [anon_sym_uint] = ACTIONS(5056), + [anon_sym_float] = ACTIONS(5056), + [anon_sym_range] = ACTIONS(5056), + [anon_sym_i8] = ACTIONS(5056), + [anon_sym_i16] = ACTIONS(5056), + [anon_sym_i32] = ACTIONS(5056), + [anon_sym_i64] = ACTIONS(5056), + [anon_sym_u8] = ACTIONS(5056), + [anon_sym_u16] = ACTIONS(5056), + [anon_sym_u32] = ACTIONS(5056), + [anon_sym_u64] = ACTIONS(5056), + [anon_sym_isize] = ACTIONS(5056), + [anon_sym_usize] = ACTIONS(5056), + [anon_sym_f32] = ACTIONS(5056), + [anon_sym_f64] = ACTIONS(5056), + [anon_sym_c_char] = ACTIONS(5056), + [anon_sym_c_schar] = ACTIONS(5056), + [anon_sym_c_uchar] = ACTIONS(5056), + [anon_sym_c_short] = ACTIONS(5056), + [anon_sym_c_ushort] = ACTIONS(5056), + [anon_sym_c_int] = ACTIONS(5056), + [anon_sym_c_uint] = ACTIONS(5056), + [anon_sym_c_long] = ACTIONS(5056), + [anon_sym_c_ulong] = ACTIONS(5056), + [anon_sym_c_longlong] = ACTIONS(5056), + [anon_sym_c_ulonglong] = ACTIONS(5056), + [anon_sym_c_float] = ACTIONS(5056), + [anon_sym_c_double] = ACTIONS(5056), + [anon_sym_c_longdouble] = ACTIONS(5056), + [anon_sym_PLUS_EQ] = ACTIONS(5054), + [anon_sym_DASH_EQ] = ACTIONS(5054), + [anon_sym_STAR_EQ] = ACTIONS(5054), + [anon_sym_SLASH_EQ] = ACTIONS(5054), + [anon_sym_AMP_EQ] = ACTIONS(5054), + [anon_sym_PIPE_EQ] = ACTIONS(5056), + [anon_sym_xor_EQ] = ACTIONS(5054), + [anon_sym_LT_LT_EQ] = ACTIONS(5054), + [anon_sym_GT_GT_EQ] = ACTIONS(5054), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5054), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_yield] = ACTIONS(5056), + [anon_sym_break] = ACTIONS(5056), + [anon_sym_continue] = ACTIONS(5056), + [anon_sym_defer] = ACTIONS(5056), + [anon_sym_errdefer] = ACTIONS(5056), + [anon_sym_if] = ACTIONS(5056), + [anon_sym_else] = ACTIONS(5056), + [anon_sym_while] = ACTIONS(5056), + [anon_sym_expand] = ACTIONS(5056), + [anon_sym_for] = ACTIONS(5056), + [anon_sym_PIPE2] = ACTIONS(5054), + [anon_sym_match] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5054), + [anon_sym_orelse] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_LT] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_xor] = ACTIONS(5056), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5056), + [anon_sym_LT_LT_PIPE] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5056), + [anon_sym_catch] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5054), + [anon_sym_try] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym_true] = ACTIONS(5056), + [anon_sym_false] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_unreachable] = ACTIONS(5056), + [anon_sym_undefined] = ACTIONS(5056), + [sym_sink] = ACTIONS(5056), + [sym_integer] = ACTIONS(5056), + [sym_float] = ACTIONS(5054), + [anon_sym_DQUOTE] = ACTIONS(5054), + [sym_multiline_string] = ACTIONS(5054), + [sym_character] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5054), + }, + [STATE(3679)] = { + [sym_identifier] = ACTIONS(5060), + [anon_sym_func] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_struct] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5058), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_void] = ACTIONS(5060), + [anon_sym_noreturn] = ACTIONS(5060), + [anon_sym_type] = ACTIONS(5060), + [anon_sym_anyopaque] = ACTIONS(5060), + [anon_sym_bool] = ACTIONS(5060), + [anon_sym_int] = ACTIONS(5060), + [anon_sym_uint] = ACTIONS(5060), + [anon_sym_float] = ACTIONS(5060), + [anon_sym_range] = ACTIONS(5060), + [anon_sym_i8] = ACTIONS(5060), + [anon_sym_i16] = ACTIONS(5060), + [anon_sym_i32] = ACTIONS(5060), + [anon_sym_i64] = ACTIONS(5060), + [anon_sym_u8] = ACTIONS(5060), + [anon_sym_u16] = ACTIONS(5060), + [anon_sym_u32] = ACTIONS(5060), + [anon_sym_u64] = ACTIONS(5060), + [anon_sym_isize] = ACTIONS(5060), + [anon_sym_usize] = ACTIONS(5060), + [anon_sym_f32] = ACTIONS(5060), + [anon_sym_f64] = ACTIONS(5060), + [anon_sym_c_char] = ACTIONS(5060), + [anon_sym_c_schar] = ACTIONS(5060), + [anon_sym_c_uchar] = ACTIONS(5060), + [anon_sym_c_short] = ACTIONS(5060), + [anon_sym_c_ushort] = ACTIONS(5060), + [anon_sym_c_int] = ACTIONS(5060), + [anon_sym_c_uint] = ACTIONS(5060), + [anon_sym_c_long] = ACTIONS(5060), + [anon_sym_c_ulong] = ACTIONS(5060), + [anon_sym_c_longlong] = ACTIONS(5060), + [anon_sym_c_ulonglong] = ACTIONS(5060), + [anon_sym_c_float] = ACTIONS(5060), + [anon_sym_c_double] = ACTIONS(5060), + [anon_sym_c_longdouble] = ACTIONS(5060), + [anon_sym_PLUS_EQ] = ACTIONS(5058), + [anon_sym_DASH_EQ] = ACTIONS(5058), + [anon_sym_STAR_EQ] = ACTIONS(5058), + [anon_sym_SLASH_EQ] = ACTIONS(5058), + [anon_sym_AMP_EQ] = ACTIONS(5058), + [anon_sym_PIPE_EQ] = ACTIONS(5060), + [anon_sym_xor_EQ] = ACTIONS(5058), + [anon_sym_LT_LT_EQ] = ACTIONS(5058), + [anon_sym_GT_GT_EQ] = ACTIONS(5058), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5058), + [anon_sym_return] = ACTIONS(5060), + [anon_sym_yield] = ACTIONS(5060), + [anon_sym_break] = ACTIONS(5060), + [anon_sym_continue] = ACTIONS(5060), + [anon_sym_defer] = ACTIONS(5060), + [anon_sym_errdefer] = ACTIONS(5060), + [anon_sym_if] = ACTIONS(5060), + [anon_sym_else] = ACTIONS(5060), + [anon_sym_while] = ACTIONS(5060), + [anon_sym_expand] = ACTIONS(5060), + [anon_sym_for] = ACTIONS(5060), + [anon_sym_PIPE2] = ACTIONS(5058), + [anon_sym_match] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5058), + [anon_sym_orelse] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5058), + [anon_sym_BANG_EQ] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym_LT_LT_PIPE] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_catch] = ACTIONS(5060), + [anon_sym_TILDE] = ACTIONS(5058), + [anon_sym_try] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym_true] = ACTIONS(5060), + [anon_sym_false] = ACTIONS(5060), + [anon_sym_null] = ACTIONS(5060), + [anon_sym_unreachable] = ACTIONS(5060), + [anon_sym_undefined] = ACTIONS(5060), + [sym_sink] = ACTIONS(5060), + [sym_integer] = ACTIONS(5060), + [sym_float] = ACTIONS(5058), + [anon_sym_DQUOTE] = ACTIONS(5058), + [sym_multiline_string] = ACTIONS(5058), + [sym_character] = ACTIONS(5058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5058), + }, + [STATE(3680)] = { + [sym_identifier] = ACTIONS(5066), + [anon_sym_func] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5066), + [anon_sym_struct] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_void] = ACTIONS(5066), + [anon_sym_noreturn] = ACTIONS(5066), + [anon_sym_type] = ACTIONS(5066), + [anon_sym_anyopaque] = ACTIONS(5066), + [anon_sym_bool] = ACTIONS(5066), + [anon_sym_int] = ACTIONS(5066), + [anon_sym_uint] = ACTIONS(5066), + [anon_sym_float] = ACTIONS(5066), + [anon_sym_range] = ACTIONS(5066), + [anon_sym_i8] = ACTIONS(5066), + [anon_sym_i16] = ACTIONS(5066), + [anon_sym_i32] = ACTIONS(5066), + [anon_sym_i64] = ACTIONS(5066), + [anon_sym_u8] = ACTIONS(5066), + [anon_sym_u16] = ACTIONS(5066), + [anon_sym_u32] = ACTIONS(5066), + [anon_sym_u64] = ACTIONS(5066), + [anon_sym_isize] = ACTIONS(5066), + [anon_sym_usize] = ACTIONS(5066), + [anon_sym_f32] = ACTIONS(5066), + [anon_sym_f64] = ACTIONS(5066), + [anon_sym_c_char] = ACTIONS(5066), + [anon_sym_c_schar] = ACTIONS(5066), + [anon_sym_c_uchar] = ACTIONS(5066), + [anon_sym_c_short] = ACTIONS(5066), + [anon_sym_c_ushort] = ACTIONS(5066), + [anon_sym_c_int] = ACTIONS(5066), + [anon_sym_c_uint] = ACTIONS(5066), + [anon_sym_c_long] = ACTIONS(5066), + [anon_sym_c_ulong] = ACTIONS(5066), + [anon_sym_c_longlong] = ACTIONS(5066), + [anon_sym_c_ulonglong] = ACTIONS(5066), + [anon_sym_c_float] = ACTIONS(5066), + [anon_sym_c_double] = ACTIONS(5066), + [anon_sym_c_longdouble] = ACTIONS(5066), + [anon_sym_PLUS_EQ] = ACTIONS(5064), + [anon_sym_DASH_EQ] = ACTIONS(5064), + [anon_sym_STAR_EQ] = ACTIONS(5064), + [anon_sym_SLASH_EQ] = ACTIONS(5064), + [anon_sym_AMP_EQ] = ACTIONS(5064), + [anon_sym_PIPE_EQ] = ACTIONS(5066), + [anon_sym_xor_EQ] = ACTIONS(5064), + [anon_sym_LT_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5064), + [anon_sym_return] = ACTIONS(5066), + [anon_sym_yield] = ACTIONS(5066), + [anon_sym_break] = ACTIONS(5066), + [anon_sym_continue] = ACTIONS(5066), + [anon_sym_defer] = ACTIONS(5066), + [anon_sym_errdefer] = ACTIONS(5066), + [anon_sym_if] = ACTIONS(5066), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_while] = ACTIONS(5066), + [anon_sym_expand] = ACTIONS(5066), + [anon_sym_for] = ACTIONS(5066), + [anon_sym_PIPE2] = ACTIONS(5064), + [anon_sym_match] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5064), + [anon_sym_orelse] = ACTIONS(5066), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_and] = ACTIONS(5066), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_xor] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5066), + [anon_sym_GT_GT] = ACTIONS(5066), + [anon_sym_LT_LT_PIPE] = ACTIONS(5066), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_catch] = ACTIONS(5066), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_try] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_true] = ACTIONS(5066), + [anon_sym_false] = ACTIONS(5066), + [anon_sym_null] = ACTIONS(5066), + [anon_sym_unreachable] = ACTIONS(5066), + [anon_sym_undefined] = ACTIONS(5066), + [sym_sink] = ACTIONS(5066), + [sym_integer] = ACTIONS(5066), + [sym_float] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [sym_multiline_string] = ACTIONS(5064), + [sym_character] = ACTIONS(5064), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5064), + }, + [STATE(3681)] = { + [sym_identifier] = ACTIONS(5070), + [anon_sym_func] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_struct] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_DOLLAR] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_QMARK] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_void] = ACTIONS(5070), + [anon_sym_noreturn] = ACTIONS(5070), + [anon_sym_type] = ACTIONS(5070), + [anon_sym_anyopaque] = ACTIONS(5070), + [anon_sym_bool] = ACTIONS(5070), + [anon_sym_int] = ACTIONS(5070), + [anon_sym_uint] = ACTIONS(5070), + [anon_sym_float] = ACTIONS(5070), + [anon_sym_range] = ACTIONS(5070), + [anon_sym_i8] = ACTIONS(5070), + [anon_sym_i16] = ACTIONS(5070), + [anon_sym_i32] = ACTIONS(5070), + [anon_sym_i64] = ACTIONS(5070), + [anon_sym_u8] = ACTIONS(5070), + [anon_sym_u16] = ACTIONS(5070), + [anon_sym_u32] = ACTIONS(5070), + [anon_sym_u64] = ACTIONS(5070), + [anon_sym_isize] = ACTIONS(5070), + [anon_sym_usize] = ACTIONS(5070), + [anon_sym_f32] = ACTIONS(5070), + [anon_sym_f64] = ACTIONS(5070), + [anon_sym_c_char] = ACTIONS(5070), + [anon_sym_c_schar] = ACTIONS(5070), + [anon_sym_c_uchar] = ACTIONS(5070), + [anon_sym_c_short] = ACTIONS(5070), + [anon_sym_c_ushort] = ACTIONS(5070), + [anon_sym_c_int] = ACTIONS(5070), + [anon_sym_c_uint] = ACTIONS(5070), + [anon_sym_c_long] = ACTIONS(5070), + [anon_sym_c_ulong] = ACTIONS(5070), + [anon_sym_c_longlong] = ACTIONS(5070), + [anon_sym_c_ulonglong] = ACTIONS(5070), + [anon_sym_c_float] = ACTIONS(5070), + [anon_sym_c_double] = ACTIONS(5070), + [anon_sym_c_longdouble] = ACTIONS(5070), + [anon_sym_PLUS_EQ] = ACTIONS(5068), + [anon_sym_DASH_EQ] = ACTIONS(5068), + [anon_sym_STAR_EQ] = ACTIONS(5068), + [anon_sym_SLASH_EQ] = ACTIONS(5068), + [anon_sym_AMP_EQ] = ACTIONS(5068), + [anon_sym_PIPE_EQ] = ACTIONS(5070), + [anon_sym_xor_EQ] = ACTIONS(5068), + [anon_sym_LT_LT_EQ] = ACTIONS(5068), + [anon_sym_GT_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5068), + [anon_sym_return] = ACTIONS(5070), + [anon_sym_yield] = ACTIONS(5070), + [anon_sym_break] = ACTIONS(5070), + [anon_sym_continue] = ACTIONS(5070), + [anon_sym_defer] = ACTIONS(5070), + [anon_sym_errdefer] = ACTIONS(5070), + [anon_sym_if] = ACTIONS(5070), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_while] = ACTIONS(5070), + [anon_sym_expand] = ACTIONS(5070), + [anon_sym_for] = ACTIONS(5070), + [anon_sym_PIPE2] = ACTIONS(5068), + [anon_sym_match] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5068), + [anon_sym_orelse] = ACTIONS(5070), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5070), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_xor] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5070), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym_LT_LT_PIPE] = ACTIONS(5070), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_catch] = ACTIONS(5070), + [anon_sym_TILDE] = ACTIONS(5068), + [anon_sym_try] = ACTIONS(5070), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_true] = ACTIONS(5070), + [anon_sym_false] = ACTIONS(5070), + [anon_sym_null] = ACTIONS(5070), + [anon_sym_unreachable] = ACTIONS(5070), + [anon_sym_undefined] = ACTIONS(5070), + [sym_sink] = ACTIONS(5070), + [sym_integer] = ACTIONS(5070), + [sym_float] = ACTIONS(5068), + [anon_sym_DQUOTE] = ACTIONS(5068), + [sym_multiline_string] = ACTIONS(5068), + [sym_character] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5068), + }, + [STATE(3682)] = { + [sym_identifier] = ACTIONS(5074), + [anon_sym_func] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5074), + [anon_sym_struct] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_DOLLAR] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_QMARK] = ACTIONS(5072), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_void] = ACTIONS(5074), + [anon_sym_noreturn] = ACTIONS(5074), + [anon_sym_type] = ACTIONS(5074), + [anon_sym_anyopaque] = ACTIONS(5074), + [anon_sym_bool] = ACTIONS(5074), + [anon_sym_int] = ACTIONS(5074), + [anon_sym_uint] = ACTIONS(5074), + [anon_sym_float] = ACTIONS(5074), + [anon_sym_range] = ACTIONS(5074), + [anon_sym_i8] = ACTIONS(5074), + [anon_sym_i16] = ACTIONS(5074), + [anon_sym_i32] = ACTIONS(5074), + [anon_sym_i64] = ACTIONS(5074), + [anon_sym_u8] = ACTIONS(5074), + [anon_sym_u16] = ACTIONS(5074), + [anon_sym_u32] = ACTIONS(5074), + [anon_sym_u64] = ACTIONS(5074), + [anon_sym_isize] = ACTIONS(5074), + [anon_sym_usize] = ACTIONS(5074), + [anon_sym_f32] = ACTIONS(5074), + [anon_sym_f64] = ACTIONS(5074), + [anon_sym_c_char] = ACTIONS(5074), + [anon_sym_c_schar] = ACTIONS(5074), + [anon_sym_c_uchar] = ACTIONS(5074), + [anon_sym_c_short] = ACTIONS(5074), + [anon_sym_c_ushort] = ACTIONS(5074), + [anon_sym_c_int] = ACTIONS(5074), + [anon_sym_c_uint] = ACTIONS(5074), + [anon_sym_c_long] = ACTIONS(5074), + [anon_sym_c_ulong] = ACTIONS(5074), + [anon_sym_c_longlong] = ACTIONS(5074), + [anon_sym_c_ulonglong] = ACTIONS(5074), + [anon_sym_c_float] = ACTIONS(5074), + [anon_sym_c_double] = ACTIONS(5074), + [anon_sym_c_longdouble] = ACTIONS(5074), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_AMP_EQ] = ACTIONS(5072), + [anon_sym_PIPE_EQ] = ACTIONS(5074), + [anon_sym_xor_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5072), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_yield] = ACTIONS(5074), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_defer] = ACTIONS(5074), + [anon_sym_errdefer] = ACTIONS(5074), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_while] = ACTIONS(5074), + [anon_sym_expand] = ACTIONS(5074), + [anon_sym_for] = ACTIONS(5074), + [anon_sym_PIPE2] = ACTIONS(5072), + [anon_sym_match] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5072), + [anon_sym_orelse] = ACTIONS(5074), + [anon_sym_or] = ACTIONS(5074), + [anon_sym_and] = ACTIONS(5074), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_xor] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5074), + [anon_sym_GT_GT] = ACTIONS(5074), + [anon_sym_LT_LT_PIPE] = ACTIONS(5074), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_catch] = ACTIONS(5074), + [anon_sym_TILDE] = ACTIONS(5072), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5072), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_null] = ACTIONS(5074), + [anon_sym_unreachable] = ACTIONS(5074), + [anon_sym_undefined] = ACTIONS(5074), + [sym_sink] = ACTIONS(5074), + [sym_integer] = ACTIONS(5074), + [sym_float] = ACTIONS(5072), + [anon_sym_DQUOTE] = ACTIONS(5072), + [sym_multiline_string] = ACTIONS(5072), + [sym_character] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5072), + }, + [STATE(3683)] = { + [sym_identifier] = ACTIONS(5078), + [anon_sym_func] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_struct] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_DOLLAR] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5076), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_void] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym_type] = ACTIONS(5078), + [anon_sym_anyopaque] = ACTIONS(5078), + [anon_sym_bool] = ACTIONS(5078), + [anon_sym_int] = ACTIONS(5078), + [anon_sym_uint] = ACTIONS(5078), + [anon_sym_float] = ACTIONS(5078), + [anon_sym_range] = ACTIONS(5078), + [anon_sym_i8] = ACTIONS(5078), + [anon_sym_i16] = ACTIONS(5078), + [anon_sym_i32] = ACTIONS(5078), + [anon_sym_i64] = ACTIONS(5078), + [anon_sym_u8] = ACTIONS(5078), + [anon_sym_u16] = ACTIONS(5078), + [anon_sym_u32] = ACTIONS(5078), + [anon_sym_u64] = ACTIONS(5078), + [anon_sym_isize] = ACTIONS(5078), + [anon_sym_usize] = ACTIONS(5078), + [anon_sym_f32] = ACTIONS(5078), + [anon_sym_f64] = ACTIONS(5078), + [anon_sym_c_char] = ACTIONS(5078), + [anon_sym_c_schar] = ACTIONS(5078), + [anon_sym_c_uchar] = ACTIONS(5078), + [anon_sym_c_short] = ACTIONS(5078), + [anon_sym_c_ushort] = ACTIONS(5078), + [anon_sym_c_int] = ACTIONS(5078), + [anon_sym_c_uint] = ACTIONS(5078), + [anon_sym_c_long] = ACTIONS(5078), + [anon_sym_c_ulong] = ACTIONS(5078), + [anon_sym_c_longlong] = ACTIONS(5078), + [anon_sym_c_ulonglong] = ACTIONS(5078), + [anon_sym_c_float] = ACTIONS(5078), + [anon_sym_c_double] = ACTIONS(5078), + [anon_sym_c_longdouble] = ACTIONS(5078), + [anon_sym_PLUS_EQ] = ACTIONS(5076), + [anon_sym_DASH_EQ] = ACTIONS(5076), + [anon_sym_STAR_EQ] = ACTIONS(5076), + [anon_sym_SLASH_EQ] = ACTIONS(5076), + [anon_sym_AMP_EQ] = ACTIONS(5076), + [anon_sym_PIPE_EQ] = ACTIONS(5078), + [anon_sym_xor_EQ] = ACTIONS(5076), + [anon_sym_LT_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_GT_EQ] = ACTIONS(5076), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5076), + [anon_sym_return] = ACTIONS(5078), + [anon_sym_yield] = ACTIONS(5078), + [anon_sym_break] = ACTIONS(5078), + [anon_sym_continue] = ACTIONS(5078), + [anon_sym_defer] = ACTIONS(5078), + [anon_sym_errdefer] = ACTIONS(5078), + [anon_sym_if] = ACTIONS(5078), + [anon_sym_else] = ACTIONS(5078), + [anon_sym_while] = ACTIONS(5078), + [anon_sym_expand] = ACTIONS(5078), + [anon_sym_for] = ACTIONS(5078), + [anon_sym_PIPE2] = ACTIONS(5076), + [anon_sym_match] = ACTIONS(5078), + [anon_sym_DOT_DOT] = ACTIONS(5078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5076), + [anon_sym_orelse] = ACTIONS(5078), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym_LT_LT_PIPE] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_catch] = ACTIONS(5078), + [anon_sym_TILDE] = ACTIONS(5076), + [anon_sym_try] = ACTIONS(5078), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5078), + [anon_sym_false] = ACTIONS(5078), + [anon_sym_null] = ACTIONS(5078), + [anon_sym_unreachable] = ACTIONS(5078), + [anon_sym_undefined] = ACTIONS(5078), + [sym_sink] = ACTIONS(5078), + [sym_integer] = ACTIONS(5078), + [sym_float] = ACTIONS(5076), + [anon_sym_DQUOTE] = ACTIONS(5076), + [sym_multiline_string] = ACTIONS(5076), + [sym_character] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5076), + }, + [STATE(3684)] = { + [sym_identifier] = ACTIONS(5082), + [anon_sym_func] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_EQ] = ACTIONS(5082), + [anon_sym_struct] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_DOLLAR] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_void] = ACTIONS(5082), + [anon_sym_noreturn] = ACTIONS(5082), + [anon_sym_type] = ACTIONS(5082), + [anon_sym_anyopaque] = ACTIONS(5082), + [anon_sym_bool] = ACTIONS(5082), + [anon_sym_int] = ACTIONS(5082), + [anon_sym_uint] = ACTIONS(5082), + [anon_sym_float] = ACTIONS(5082), + [anon_sym_range] = ACTIONS(5082), + [anon_sym_i8] = ACTIONS(5082), + [anon_sym_i16] = ACTIONS(5082), + [anon_sym_i32] = ACTIONS(5082), + [anon_sym_i64] = ACTIONS(5082), + [anon_sym_u8] = ACTIONS(5082), + [anon_sym_u16] = ACTIONS(5082), + [anon_sym_u32] = ACTIONS(5082), + [anon_sym_u64] = ACTIONS(5082), + [anon_sym_isize] = ACTIONS(5082), + [anon_sym_usize] = ACTIONS(5082), + [anon_sym_f32] = ACTIONS(5082), + [anon_sym_f64] = ACTIONS(5082), + [anon_sym_c_char] = ACTIONS(5082), + [anon_sym_c_schar] = ACTIONS(5082), + [anon_sym_c_uchar] = ACTIONS(5082), + [anon_sym_c_short] = ACTIONS(5082), + [anon_sym_c_ushort] = ACTIONS(5082), + [anon_sym_c_int] = ACTIONS(5082), + [anon_sym_c_uint] = ACTIONS(5082), + [anon_sym_c_long] = ACTIONS(5082), + [anon_sym_c_ulong] = ACTIONS(5082), + [anon_sym_c_longlong] = ACTIONS(5082), + [anon_sym_c_ulonglong] = ACTIONS(5082), + [anon_sym_c_float] = ACTIONS(5082), + [anon_sym_c_double] = ACTIONS(5082), + [anon_sym_c_longdouble] = ACTIONS(5082), + [anon_sym_PLUS_EQ] = ACTIONS(5080), + [anon_sym_DASH_EQ] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5080), + [anon_sym_SLASH_EQ] = ACTIONS(5080), + [anon_sym_AMP_EQ] = ACTIONS(5080), + [anon_sym_PIPE_EQ] = ACTIONS(5082), + [anon_sym_xor_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_EQ] = ACTIONS(5080), + [anon_sym_GT_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5080), + [anon_sym_return] = ACTIONS(5082), + [anon_sym_yield] = ACTIONS(5082), + [anon_sym_break] = ACTIONS(5082), + [anon_sym_continue] = ACTIONS(5082), + [anon_sym_defer] = ACTIONS(5082), + [anon_sym_errdefer] = ACTIONS(5082), + [anon_sym_if] = ACTIONS(5082), + [anon_sym_else] = ACTIONS(5082), + [anon_sym_while] = ACTIONS(5082), + [anon_sym_expand] = ACTIONS(5082), + [anon_sym_for] = ACTIONS(5082), + [anon_sym_PIPE2] = ACTIONS(5080), + [anon_sym_match] = ACTIONS(5082), + [anon_sym_DOT_DOT] = ACTIONS(5082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5080), + [anon_sym_orelse] = ACTIONS(5082), + [anon_sym_or] = ACTIONS(5082), + [anon_sym_and] = ACTIONS(5082), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_xor] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_LT_LT_PIPE] = ACTIONS(5082), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_catch] = ACTIONS(5082), + [anon_sym_TILDE] = ACTIONS(5080), + [anon_sym_try] = ACTIONS(5082), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_true] = ACTIONS(5082), + [anon_sym_false] = ACTIONS(5082), + [anon_sym_null] = ACTIONS(5082), + [anon_sym_unreachable] = ACTIONS(5082), + [anon_sym_undefined] = ACTIONS(5082), + [sym_sink] = ACTIONS(5082), + [sym_integer] = ACTIONS(5082), + [sym_float] = ACTIONS(5080), + [anon_sym_DQUOTE] = ACTIONS(5080), + [sym_multiline_string] = ACTIONS(5080), + [sym_character] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5080), + }, + [STATE(3685)] = { + [sym_identifier] = ACTIONS(5086), + [anon_sym_func] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_EQ] = ACTIONS(5086), + [anon_sym_struct] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_DOLLAR] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(5084), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_void] = ACTIONS(5086), + [anon_sym_noreturn] = ACTIONS(5086), + [anon_sym_type] = ACTIONS(5086), + [anon_sym_anyopaque] = ACTIONS(5086), + [anon_sym_bool] = ACTIONS(5086), + [anon_sym_int] = ACTIONS(5086), + [anon_sym_uint] = ACTIONS(5086), + [anon_sym_float] = ACTIONS(5086), + [anon_sym_range] = ACTIONS(5086), + [anon_sym_i8] = ACTIONS(5086), + [anon_sym_i16] = ACTIONS(5086), + [anon_sym_i32] = ACTIONS(5086), + [anon_sym_i64] = ACTIONS(5086), + [anon_sym_u8] = ACTIONS(5086), + [anon_sym_u16] = ACTIONS(5086), + [anon_sym_u32] = ACTIONS(5086), + [anon_sym_u64] = ACTIONS(5086), + [anon_sym_isize] = ACTIONS(5086), + [anon_sym_usize] = ACTIONS(5086), + [anon_sym_f32] = ACTIONS(5086), + [anon_sym_f64] = ACTIONS(5086), + [anon_sym_c_char] = ACTIONS(5086), + [anon_sym_c_schar] = ACTIONS(5086), + [anon_sym_c_uchar] = ACTIONS(5086), + [anon_sym_c_short] = ACTIONS(5086), + [anon_sym_c_ushort] = ACTIONS(5086), + [anon_sym_c_int] = ACTIONS(5086), + [anon_sym_c_uint] = ACTIONS(5086), + [anon_sym_c_long] = ACTIONS(5086), + [anon_sym_c_ulong] = ACTIONS(5086), + [anon_sym_c_longlong] = ACTIONS(5086), + [anon_sym_c_ulonglong] = ACTIONS(5086), + [anon_sym_c_float] = ACTIONS(5086), + [anon_sym_c_double] = ACTIONS(5086), + [anon_sym_c_longdouble] = ACTIONS(5086), + [anon_sym_PLUS_EQ] = ACTIONS(5084), + [anon_sym_DASH_EQ] = ACTIONS(5084), + [anon_sym_STAR_EQ] = ACTIONS(5084), + [anon_sym_SLASH_EQ] = ACTIONS(5084), + [anon_sym_AMP_EQ] = ACTIONS(5084), + [anon_sym_PIPE_EQ] = ACTIONS(5086), + [anon_sym_xor_EQ] = ACTIONS(5084), + [anon_sym_LT_LT_EQ] = ACTIONS(5084), + [anon_sym_GT_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5084), + [anon_sym_return] = ACTIONS(5086), + [anon_sym_yield] = ACTIONS(5086), + [anon_sym_break] = ACTIONS(5086), + [anon_sym_continue] = ACTIONS(5086), + [anon_sym_defer] = ACTIONS(5086), + [anon_sym_errdefer] = ACTIONS(5086), + [anon_sym_if] = ACTIONS(5086), + [anon_sym_else] = ACTIONS(5086), + [anon_sym_while] = ACTIONS(5086), + [anon_sym_expand] = ACTIONS(5086), + [anon_sym_for] = ACTIONS(5086), + [anon_sym_PIPE2] = ACTIONS(5084), + [anon_sym_match] = ACTIONS(5086), + [anon_sym_DOT_DOT] = ACTIONS(5086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5084), + [anon_sym_orelse] = ACTIONS(5086), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_and] = ACTIONS(5086), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_xor] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5086), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_LT_LT_PIPE] = ACTIONS(5086), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_catch] = ACTIONS(5086), + [anon_sym_TILDE] = ACTIONS(5084), + [anon_sym_try] = ACTIONS(5086), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_true] = ACTIONS(5086), + [anon_sym_false] = ACTIONS(5086), + [anon_sym_null] = ACTIONS(5086), + [anon_sym_unreachable] = ACTIONS(5086), + [anon_sym_undefined] = ACTIONS(5086), + [sym_sink] = ACTIONS(5086), + [sym_integer] = ACTIONS(5086), + [sym_float] = ACTIONS(5084), + [anon_sym_DQUOTE] = ACTIONS(5084), + [sym_multiline_string] = ACTIONS(5084), + [sym_character] = ACTIONS(5084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5084), + }, + [STATE(3686)] = { + [sym_identifier] = ACTIONS(5090), + [anon_sym_func] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_struct] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_void] = ACTIONS(5090), + [anon_sym_noreturn] = ACTIONS(5090), + [anon_sym_type] = ACTIONS(5090), + [anon_sym_anyopaque] = ACTIONS(5090), + [anon_sym_bool] = ACTIONS(5090), + [anon_sym_int] = ACTIONS(5090), + [anon_sym_uint] = ACTIONS(5090), + [anon_sym_float] = ACTIONS(5090), + [anon_sym_range] = ACTIONS(5090), + [anon_sym_i8] = ACTIONS(5090), + [anon_sym_i16] = ACTIONS(5090), + [anon_sym_i32] = ACTIONS(5090), + [anon_sym_i64] = ACTIONS(5090), + [anon_sym_u8] = ACTIONS(5090), + [anon_sym_u16] = ACTIONS(5090), + [anon_sym_u32] = ACTIONS(5090), + [anon_sym_u64] = ACTIONS(5090), + [anon_sym_isize] = ACTIONS(5090), + [anon_sym_usize] = ACTIONS(5090), + [anon_sym_f32] = ACTIONS(5090), + [anon_sym_f64] = ACTIONS(5090), + [anon_sym_c_char] = ACTIONS(5090), + [anon_sym_c_schar] = ACTIONS(5090), + [anon_sym_c_uchar] = ACTIONS(5090), + [anon_sym_c_short] = ACTIONS(5090), + [anon_sym_c_ushort] = ACTIONS(5090), + [anon_sym_c_int] = ACTIONS(5090), + [anon_sym_c_uint] = ACTIONS(5090), + [anon_sym_c_long] = ACTIONS(5090), + [anon_sym_c_ulong] = ACTIONS(5090), + [anon_sym_c_longlong] = ACTIONS(5090), + [anon_sym_c_ulonglong] = ACTIONS(5090), + [anon_sym_c_float] = ACTIONS(5090), + [anon_sym_c_double] = ACTIONS(5090), + [anon_sym_c_longdouble] = ACTIONS(5090), + [anon_sym_PLUS_EQ] = ACTIONS(5088), + [anon_sym_DASH_EQ] = ACTIONS(5088), + [anon_sym_STAR_EQ] = ACTIONS(5088), + [anon_sym_SLASH_EQ] = ACTIONS(5088), + [anon_sym_AMP_EQ] = ACTIONS(5088), + [anon_sym_PIPE_EQ] = ACTIONS(5090), + [anon_sym_xor_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_EQ] = ACTIONS(5088), + [anon_sym_GT_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5088), + [anon_sym_return] = ACTIONS(5090), + [anon_sym_yield] = ACTIONS(5090), + [anon_sym_break] = ACTIONS(5090), + [anon_sym_continue] = ACTIONS(5090), + [anon_sym_defer] = ACTIONS(5090), + [anon_sym_errdefer] = ACTIONS(5090), + [anon_sym_if] = ACTIONS(5090), + [anon_sym_else] = ACTIONS(5090), + [anon_sym_while] = ACTIONS(5090), + [anon_sym_expand] = ACTIONS(5090), + [anon_sym_for] = ACTIONS(5090), + [anon_sym_PIPE2] = ACTIONS(5088), + [anon_sym_match] = ACTIONS(5090), + [anon_sym_DOT_DOT] = ACTIONS(5090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5088), + [anon_sym_orelse] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_and] = ACTIONS(5090), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_xor] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_LT_LT_PIPE] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_catch] = ACTIONS(5090), + [anon_sym_TILDE] = ACTIONS(5088), + [anon_sym_try] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_true] = ACTIONS(5090), + [anon_sym_false] = ACTIONS(5090), + [anon_sym_null] = ACTIONS(5090), + [anon_sym_unreachable] = ACTIONS(5090), + [anon_sym_undefined] = ACTIONS(5090), + [sym_sink] = ACTIONS(5090), + [sym_integer] = ACTIONS(5090), + [sym_float] = ACTIONS(5088), + [anon_sym_DQUOTE] = ACTIONS(5088), + [sym_multiline_string] = ACTIONS(5088), + [sym_character] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5088), + }, + [STATE(3687)] = { + [sym_identifier] = ACTIONS(5094), + [anon_sym_func] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_LBRACE] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_QMARK] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_void] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_type] = ACTIONS(5094), + [anon_sym_anyopaque] = ACTIONS(5094), + [anon_sym_bool] = ACTIONS(5094), + [anon_sym_int] = ACTIONS(5094), + [anon_sym_uint] = ACTIONS(5094), + [anon_sym_float] = ACTIONS(5094), + [anon_sym_range] = ACTIONS(5094), + [anon_sym_i8] = ACTIONS(5094), + [anon_sym_i16] = ACTIONS(5094), + [anon_sym_i32] = ACTIONS(5094), + [anon_sym_i64] = ACTIONS(5094), + [anon_sym_u8] = ACTIONS(5094), + [anon_sym_u16] = ACTIONS(5094), + [anon_sym_u32] = ACTIONS(5094), + [anon_sym_u64] = ACTIONS(5094), + [anon_sym_isize] = ACTIONS(5094), + [anon_sym_usize] = ACTIONS(5094), + [anon_sym_f32] = ACTIONS(5094), + [anon_sym_f64] = ACTIONS(5094), + [anon_sym_c_char] = ACTIONS(5094), + [anon_sym_c_schar] = ACTIONS(5094), + [anon_sym_c_uchar] = ACTIONS(5094), + [anon_sym_c_short] = ACTIONS(5094), + [anon_sym_c_ushort] = ACTIONS(5094), + [anon_sym_c_int] = ACTIONS(5094), + [anon_sym_c_uint] = ACTIONS(5094), + [anon_sym_c_long] = ACTIONS(5094), + [anon_sym_c_ulong] = ACTIONS(5094), + [anon_sym_c_longlong] = ACTIONS(5094), + [anon_sym_c_ulonglong] = ACTIONS(5094), + [anon_sym_c_float] = ACTIONS(5094), + [anon_sym_c_double] = ACTIONS(5094), + [anon_sym_c_longdouble] = ACTIONS(5094), + [anon_sym_PLUS_EQ] = ACTIONS(5092), + [anon_sym_DASH_EQ] = ACTIONS(5092), + [anon_sym_STAR_EQ] = ACTIONS(5092), + [anon_sym_SLASH_EQ] = ACTIONS(5092), + [anon_sym_AMP_EQ] = ACTIONS(5092), + [anon_sym_PIPE_EQ] = ACTIONS(5094), + [anon_sym_xor_EQ] = ACTIONS(5092), + [anon_sym_LT_LT_EQ] = ACTIONS(5092), + [anon_sym_GT_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5092), + [anon_sym_return] = ACTIONS(5094), + [anon_sym_yield] = ACTIONS(5094), + [anon_sym_break] = ACTIONS(5094), + [anon_sym_continue] = ACTIONS(5094), + [anon_sym_defer] = ACTIONS(5094), + [anon_sym_errdefer] = ACTIONS(5094), + [anon_sym_if] = ACTIONS(5094), + [anon_sym_else] = ACTIONS(5094), + [anon_sym_while] = ACTIONS(5094), + [anon_sym_expand] = ACTIONS(5094), + [anon_sym_for] = ACTIONS(5094), + [anon_sym_PIPE2] = ACTIONS(5092), + [anon_sym_match] = ACTIONS(5094), + [anon_sym_DOT_DOT] = ACTIONS(5094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5092), + [anon_sym_orelse] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_and] = ACTIONS(5094), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_xor] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5094), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_LT_LT_PIPE] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_catch] = ACTIONS(5094), + [anon_sym_TILDE] = ACTIONS(5092), + [anon_sym_try] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_true] = ACTIONS(5094), + [anon_sym_false] = ACTIONS(5094), + [anon_sym_null] = ACTIONS(5094), + [anon_sym_unreachable] = ACTIONS(5094), + [anon_sym_undefined] = ACTIONS(5094), + [sym_sink] = ACTIONS(5094), + [sym_integer] = ACTIONS(5094), + [sym_float] = ACTIONS(5092), + [anon_sym_DQUOTE] = ACTIONS(5092), + [sym_multiline_string] = ACTIONS(5092), + [sym_character] = ACTIONS(5092), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5092), + }, + [STATE(3688)] = { + [sym_identifier] = ACTIONS(5098), + [anon_sym_func] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_struct] = ACTIONS(5098), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_QMARK] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_void] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym_type] = ACTIONS(5098), + [anon_sym_anyopaque] = ACTIONS(5098), + [anon_sym_bool] = ACTIONS(5098), + [anon_sym_int] = ACTIONS(5098), + [anon_sym_uint] = ACTIONS(5098), + [anon_sym_float] = ACTIONS(5098), + [anon_sym_range] = ACTIONS(5098), + [anon_sym_i8] = ACTIONS(5098), + [anon_sym_i16] = ACTIONS(5098), + [anon_sym_i32] = ACTIONS(5098), + [anon_sym_i64] = ACTIONS(5098), + [anon_sym_u8] = ACTIONS(5098), + [anon_sym_u16] = ACTIONS(5098), + [anon_sym_u32] = ACTIONS(5098), + [anon_sym_u64] = ACTIONS(5098), + [anon_sym_isize] = ACTIONS(5098), + [anon_sym_usize] = ACTIONS(5098), + [anon_sym_f32] = ACTIONS(5098), + [anon_sym_f64] = ACTIONS(5098), + [anon_sym_c_char] = ACTIONS(5098), + [anon_sym_c_schar] = ACTIONS(5098), + [anon_sym_c_uchar] = ACTIONS(5098), + [anon_sym_c_short] = ACTIONS(5098), + [anon_sym_c_ushort] = ACTIONS(5098), + [anon_sym_c_int] = ACTIONS(5098), + [anon_sym_c_uint] = ACTIONS(5098), + [anon_sym_c_long] = ACTIONS(5098), + [anon_sym_c_ulong] = ACTIONS(5098), + [anon_sym_c_longlong] = ACTIONS(5098), + [anon_sym_c_ulonglong] = ACTIONS(5098), + [anon_sym_c_float] = ACTIONS(5098), + [anon_sym_c_double] = ACTIONS(5098), + [anon_sym_c_longdouble] = ACTIONS(5098), + [anon_sym_PLUS_EQ] = ACTIONS(5096), + [anon_sym_DASH_EQ] = ACTIONS(5096), + [anon_sym_STAR_EQ] = ACTIONS(5096), + [anon_sym_SLASH_EQ] = ACTIONS(5096), + [anon_sym_AMP_EQ] = ACTIONS(5096), + [anon_sym_PIPE_EQ] = ACTIONS(5098), + [anon_sym_xor_EQ] = ACTIONS(5096), + [anon_sym_LT_LT_EQ] = ACTIONS(5096), + [anon_sym_GT_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5096), + [anon_sym_return] = ACTIONS(5098), + [anon_sym_yield] = ACTIONS(5098), + [anon_sym_break] = ACTIONS(5098), + [anon_sym_continue] = ACTIONS(5098), + [anon_sym_defer] = ACTIONS(5098), + [anon_sym_errdefer] = ACTIONS(5098), + [anon_sym_if] = ACTIONS(5098), + [anon_sym_else] = ACTIONS(5098), + [anon_sym_while] = ACTIONS(5098), + [anon_sym_expand] = ACTIONS(5098), + [anon_sym_for] = ACTIONS(5098), + [anon_sym_PIPE2] = ACTIONS(5096), + [anon_sym_match] = ACTIONS(5098), + [anon_sym_DOT_DOT] = ACTIONS(5098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5096), + [anon_sym_orelse] = ACTIONS(5098), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_and] = ACTIONS(5098), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_xor] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5098), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_LT_LT_PIPE] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_catch] = ACTIONS(5098), + [anon_sym_TILDE] = ACTIONS(5096), + [anon_sym_try] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_true] = ACTIONS(5098), + [anon_sym_false] = ACTIONS(5098), + [anon_sym_null] = ACTIONS(5098), + [anon_sym_unreachable] = ACTIONS(5098), + [anon_sym_undefined] = ACTIONS(5098), + [sym_sink] = ACTIONS(5098), + [sym_integer] = ACTIONS(5098), + [sym_float] = ACTIONS(5096), + [anon_sym_DQUOTE] = ACTIONS(5096), + [sym_multiline_string] = ACTIONS(5096), + [sym_character] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5096), + }, + [STATE(3689)] = { + [sym_identifier] = ACTIONS(5102), + [anon_sym_func] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_struct] = ACTIONS(5102), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_QMARK] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_void] = ACTIONS(5102), + [anon_sym_noreturn] = ACTIONS(5102), + [anon_sym_type] = ACTIONS(5102), + [anon_sym_anyopaque] = ACTIONS(5102), + [anon_sym_bool] = ACTIONS(5102), + [anon_sym_int] = ACTIONS(5102), + [anon_sym_uint] = ACTIONS(5102), + [anon_sym_float] = ACTIONS(5102), + [anon_sym_range] = ACTIONS(5102), + [anon_sym_i8] = ACTIONS(5102), + [anon_sym_i16] = ACTIONS(5102), + [anon_sym_i32] = ACTIONS(5102), + [anon_sym_i64] = ACTIONS(5102), + [anon_sym_u8] = ACTIONS(5102), + [anon_sym_u16] = ACTIONS(5102), + [anon_sym_u32] = ACTIONS(5102), + [anon_sym_u64] = ACTIONS(5102), + [anon_sym_isize] = ACTIONS(5102), + [anon_sym_usize] = ACTIONS(5102), + [anon_sym_f32] = ACTIONS(5102), + [anon_sym_f64] = ACTIONS(5102), + [anon_sym_c_char] = ACTIONS(5102), + [anon_sym_c_schar] = ACTIONS(5102), + [anon_sym_c_uchar] = ACTIONS(5102), + [anon_sym_c_short] = ACTIONS(5102), + [anon_sym_c_ushort] = ACTIONS(5102), + [anon_sym_c_int] = ACTIONS(5102), + [anon_sym_c_uint] = ACTIONS(5102), + [anon_sym_c_long] = ACTIONS(5102), + [anon_sym_c_ulong] = ACTIONS(5102), + [anon_sym_c_longlong] = ACTIONS(5102), + [anon_sym_c_ulonglong] = ACTIONS(5102), + [anon_sym_c_float] = ACTIONS(5102), + [anon_sym_c_double] = ACTIONS(5102), + [anon_sym_c_longdouble] = ACTIONS(5102), + [anon_sym_PLUS_EQ] = ACTIONS(5100), + [anon_sym_DASH_EQ] = ACTIONS(5100), + [anon_sym_STAR_EQ] = ACTIONS(5100), + [anon_sym_SLASH_EQ] = ACTIONS(5100), + [anon_sym_AMP_EQ] = ACTIONS(5100), + [anon_sym_PIPE_EQ] = ACTIONS(5102), + [anon_sym_xor_EQ] = ACTIONS(5100), + [anon_sym_LT_LT_EQ] = ACTIONS(5100), + [anon_sym_GT_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5100), + [anon_sym_return] = ACTIONS(5102), + [anon_sym_yield] = ACTIONS(5102), + [anon_sym_break] = ACTIONS(5102), + [anon_sym_continue] = ACTIONS(5102), + [anon_sym_defer] = ACTIONS(5102), + [anon_sym_errdefer] = ACTIONS(5102), + [anon_sym_if] = ACTIONS(5102), + [anon_sym_else] = ACTIONS(5102), + [anon_sym_while] = ACTIONS(5102), + [anon_sym_expand] = ACTIONS(5102), + [anon_sym_for] = ACTIONS(5102), + [anon_sym_PIPE2] = ACTIONS(5100), + [anon_sym_match] = ACTIONS(5102), + [anon_sym_DOT_DOT] = ACTIONS(5102), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5100), + [anon_sym_orelse] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5102), + [anon_sym_and] = ACTIONS(5102), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_AMP] = ACTIONS(5102), + [anon_sym_xor] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5102), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_LT_LT_PIPE] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5102), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_catch] = ACTIONS(5102), + [anon_sym_TILDE] = ACTIONS(5100), + [anon_sym_try] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_true] = ACTIONS(5102), + [anon_sym_false] = ACTIONS(5102), + [anon_sym_null] = ACTIONS(5102), + [anon_sym_unreachable] = ACTIONS(5102), + [anon_sym_undefined] = ACTIONS(5102), + [sym_sink] = ACTIONS(5102), + [sym_integer] = ACTIONS(5102), + [sym_float] = ACTIONS(5100), + [anon_sym_DQUOTE] = ACTIONS(5100), + [sym_multiline_string] = ACTIONS(5100), + [sym_character] = ACTIONS(5100), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5100), + }, + [STATE(3690)] = { + [sym_identifier] = ACTIONS(5880), + [anon_sym_func] = ACTIONS(5880), + [anon_sym_BANG] = ACTIONS(5880), + [anon_sym_EQ] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_LPAREN] = ACTIONS(5878), + [anon_sym_LBRACE] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(5880), + [anon_sym_DOLLAR] = ACTIONS(5878), + [anon_sym_PIPE] = ACTIONS(5880), + [anon_sym_QMARK] = ACTIONS(5878), + [anon_sym_STAR] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5878), + [anon_sym_void] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_type] = ACTIONS(5880), + [anon_sym_anyopaque] = ACTIONS(5880), + [anon_sym_bool] = ACTIONS(5880), + [anon_sym_int] = ACTIONS(5880), + [anon_sym_uint] = ACTIONS(5880), + [anon_sym_float] = ACTIONS(5880), + [anon_sym_range] = ACTIONS(5880), + [anon_sym_i8] = ACTIONS(5880), + [anon_sym_i16] = ACTIONS(5880), + [anon_sym_i32] = ACTIONS(5880), + [anon_sym_i64] = ACTIONS(5880), + [anon_sym_u8] = ACTIONS(5880), + [anon_sym_u16] = ACTIONS(5880), + [anon_sym_u32] = ACTIONS(5880), + [anon_sym_u64] = ACTIONS(5880), + [anon_sym_isize] = ACTIONS(5880), + [anon_sym_usize] = ACTIONS(5880), + [anon_sym_f32] = ACTIONS(5880), + [anon_sym_f64] = ACTIONS(5880), + [anon_sym_c_char] = ACTIONS(5880), + [anon_sym_c_schar] = ACTIONS(5880), + [anon_sym_c_uchar] = ACTIONS(5880), + [anon_sym_c_short] = ACTIONS(5880), + [anon_sym_c_ushort] = ACTIONS(5880), + [anon_sym_c_int] = ACTIONS(5880), + [anon_sym_c_uint] = ACTIONS(5880), + [anon_sym_c_long] = ACTIONS(5880), + [anon_sym_c_ulong] = ACTIONS(5880), + [anon_sym_c_longlong] = ACTIONS(5880), + [anon_sym_c_ulonglong] = ACTIONS(5880), + [anon_sym_c_float] = ACTIONS(5880), + [anon_sym_c_double] = ACTIONS(5880), + [anon_sym_c_longdouble] = ACTIONS(5880), + [anon_sym_PLUS_EQ] = ACTIONS(5878), + [anon_sym_DASH_EQ] = ACTIONS(5878), + [anon_sym_STAR_EQ] = ACTIONS(5878), + [anon_sym_SLASH_EQ] = ACTIONS(5878), + [anon_sym_AMP_EQ] = ACTIONS(5878), + [anon_sym_PIPE_EQ] = ACTIONS(5880), + [anon_sym_xor_EQ] = ACTIONS(5878), + [anon_sym_LT_LT_EQ] = ACTIONS(5878), + [anon_sym_GT_GT_EQ] = ACTIONS(5878), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5878), + [anon_sym_return] = ACTIONS(5880), + [anon_sym_yield] = ACTIONS(5880), + [anon_sym_break] = ACTIONS(5880), + [anon_sym_continue] = ACTIONS(5880), + [anon_sym_defer] = ACTIONS(5880), + [anon_sym_errdefer] = ACTIONS(5880), + [anon_sym_if] = ACTIONS(5880), + [anon_sym_else] = ACTIONS(5880), + [anon_sym_while] = ACTIONS(5880), + [anon_sym_expand] = ACTIONS(5880), + [anon_sym_for] = ACTIONS(5880), + [anon_sym_PIPE2] = ACTIONS(5878), + [anon_sym_match] = ACTIONS(5880), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5878), + [anon_sym_orelse] = ACTIONS(5880), + [anon_sym_or] = ACTIONS(5880), + [anon_sym_and] = ACTIONS(5880), + [anon_sym_EQ_EQ] = ACTIONS(5878), + [anon_sym_BANG_EQ] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(5880), + [anon_sym_LT_EQ] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5880), + [anon_sym_GT_EQ] = ACTIONS(5878), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym_xor] = ACTIONS(5880), + [anon_sym_LT_LT] = ACTIONS(5880), + [anon_sym_GT_GT] = ACTIONS(5880), + [anon_sym_LT_LT_PIPE] = ACTIONS(5880), + [anon_sym_PLUS] = ACTIONS(5880), + [anon_sym_SLASH] = ACTIONS(5880), + [anon_sym_catch] = ACTIONS(5880), + [anon_sym_TILDE] = ACTIONS(5878), + [anon_sym_try] = ACTIONS(5880), + [anon_sym_DOT] = ACTIONS(5880), + [anon_sym_CARET] = ACTIONS(5878), + [anon_sym_true] = ACTIONS(5880), + [anon_sym_false] = ACTIONS(5880), + [anon_sym_null] = ACTIONS(5880), + [anon_sym_unreachable] = ACTIONS(5880), + [anon_sym_undefined] = ACTIONS(5880), + [sym_sink] = ACTIONS(5880), + [sym_integer] = ACTIONS(5880), + [sym_float] = ACTIONS(5878), + [anon_sym_DQUOTE] = ACTIONS(5878), + [sym_multiline_string] = ACTIONS(5878), + [sym_character] = ACTIONS(5878), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5878), + }, + [STATE(3691)] = { + [sym_identifier] = ACTIONS(5884), + [anon_sym_func] = ACTIONS(5884), + [anon_sym_BANG] = ACTIONS(5884), + [anon_sym_EQ] = ACTIONS(5884), + [anon_sym_struct] = ACTIONS(5884), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_LBRACE] = ACTIONS(5882), + [anon_sym_DASH] = ACTIONS(5884), + [anon_sym_DOLLAR] = ACTIONS(5882), + [anon_sym_PIPE] = ACTIONS(5884), + [anon_sym_QMARK] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(5882), + [anon_sym_void] = ACTIONS(5884), + [anon_sym_noreturn] = ACTIONS(5884), + [anon_sym_type] = ACTIONS(5884), + [anon_sym_anyopaque] = ACTIONS(5884), + [anon_sym_bool] = ACTIONS(5884), + [anon_sym_int] = ACTIONS(5884), + [anon_sym_uint] = ACTIONS(5884), + [anon_sym_float] = ACTIONS(5884), + [anon_sym_range] = ACTIONS(5884), + [anon_sym_i8] = ACTIONS(5884), + [anon_sym_i16] = ACTIONS(5884), + [anon_sym_i32] = ACTIONS(5884), + [anon_sym_i64] = ACTIONS(5884), + [anon_sym_u8] = ACTIONS(5884), + [anon_sym_u16] = ACTIONS(5884), + [anon_sym_u32] = ACTIONS(5884), + [anon_sym_u64] = ACTIONS(5884), + [anon_sym_isize] = ACTIONS(5884), + [anon_sym_usize] = ACTIONS(5884), + [anon_sym_f32] = ACTIONS(5884), + [anon_sym_f64] = ACTIONS(5884), + [anon_sym_c_char] = ACTIONS(5884), + [anon_sym_c_schar] = ACTIONS(5884), + [anon_sym_c_uchar] = ACTIONS(5884), + [anon_sym_c_short] = ACTIONS(5884), + [anon_sym_c_ushort] = ACTIONS(5884), + [anon_sym_c_int] = ACTIONS(5884), + [anon_sym_c_uint] = ACTIONS(5884), + [anon_sym_c_long] = ACTIONS(5884), + [anon_sym_c_ulong] = ACTIONS(5884), + [anon_sym_c_longlong] = ACTIONS(5884), + [anon_sym_c_ulonglong] = ACTIONS(5884), + [anon_sym_c_float] = ACTIONS(5884), + [anon_sym_c_double] = ACTIONS(5884), + [anon_sym_c_longdouble] = ACTIONS(5884), + [anon_sym_PLUS_EQ] = ACTIONS(5882), + [anon_sym_DASH_EQ] = ACTIONS(5882), + [anon_sym_STAR_EQ] = ACTIONS(5882), + [anon_sym_SLASH_EQ] = ACTIONS(5882), + [anon_sym_AMP_EQ] = ACTIONS(5882), + [anon_sym_PIPE_EQ] = ACTIONS(5884), + [anon_sym_xor_EQ] = ACTIONS(5882), + [anon_sym_LT_LT_EQ] = ACTIONS(5882), + [anon_sym_GT_GT_EQ] = ACTIONS(5882), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5882), + [anon_sym_return] = ACTIONS(5884), + [anon_sym_yield] = ACTIONS(5884), + [anon_sym_break] = ACTIONS(5884), + [anon_sym_continue] = ACTIONS(5884), + [anon_sym_defer] = ACTIONS(5884), + [anon_sym_errdefer] = ACTIONS(5884), + [anon_sym_if] = ACTIONS(5884), + [anon_sym_else] = ACTIONS(5884), + [anon_sym_while] = ACTIONS(5884), + [anon_sym_expand] = ACTIONS(5884), + [anon_sym_for] = ACTIONS(5884), + [anon_sym_PIPE2] = ACTIONS(5882), + [anon_sym_match] = ACTIONS(5884), + [anon_sym_DOT_DOT] = ACTIONS(5884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5882), + [anon_sym_orelse] = ACTIONS(5884), + [anon_sym_or] = ACTIONS(5884), + [anon_sym_and] = ACTIONS(5884), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_BANG_EQ] = ACTIONS(5882), + [anon_sym_LT] = ACTIONS(5884), + [anon_sym_LT_EQ] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5884), + [anon_sym_GT_EQ] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5884), + [anon_sym_xor] = ACTIONS(5884), + [anon_sym_LT_LT] = ACTIONS(5884), + [anon_sym_GT_GT] = ACTIONS(5884), + [anon_sym_LT_LT_PIPE] = ACTIONS(5884), + [anon_sym_PLUS] = ACTIONS(5884), + [anon_sym_SLASH] = ACTIONS(5884), + [anon_sym_catch] = ACTIONS(5884), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_try] = ACTIONS(5884), + [anon_sym_DOT] = ACTIONS(5884), + [anon_sym_CARET] = ACTIONS(5882), + [anon_sym_true] = ACTIONS(5884), + [anon_sym_false] = ACTIONS(5884), + [anon_sym_null] = ACTIONS(5884), + [anon_sym_unreachable] = ACTIONS(5884), + [anon_sym_undefined] = ACTIONS(5884), + [sym_sink] = ACTIONS(5884), + [sym_integer] = ACTIONS(5884), + [sym_float] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(5882), + [sym_multiline_string] = ACTIONS(5882), + [sym_character] = ACTIONS(5882), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5882), + }, + [STATE(3692)] = { + [sym_identifier] = ACTIONS(5986), + [anon_sym_func] = ACTIONS(5986), + [anon_sym_BANG] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_struct] = ACTIONS(5986), + [anon_sym_LPAREN] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_DOLLAR] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_void] = ACTIONS(5986), + [anon_sym_noreturn] = ACTIONS(5986), + [anon_sym_type] = ACTIONS(5986), + [anon_sym_anyopaque] = ACTIONS(5986), + [anon_sym_bool] = ACTIONS(5986), + [anon_sym_int] = ACTIONS(5986), + [anon_sym_uint] = ACTIONS(5986), + [anon_sym_float] = ACTIONS(5986), + [anon_sym_range] = ACTIONS(5986), + [anon_sym_i8] = ACTIONS(5986), + [anon_sym_i16] = ACTIONS(5986), + [anon_sym_i32] = ACTIONS(5986), + [anon_sym_i64] = ACTIONS(5986), + [anon_sym_u8] = ACTIONS(5986), + [anon_sym_u16] = ACTIONS(5986), + [anon_sym_u32] = ACTIONS(5986), + [anon_sym_u64] = ACTIONS(5986), + [anon_sym_isize] = ACTIONS(5986), + [anon_sym_usize] = ACTIONS(5986), + [anon_sym_f32] = ACTIONS(5986), + [anon_sym_f64] = ACTIONS(5986), + [anon_sym_c_char] = ACTIONS(5986), + [anon_sym_c_schar] = ACTIONS(5986), + [anon_sym_c_uchar] = ACTIONS(5986), + [anon_sym_c_short] = ACTIONS(5986), + [anon_sym_c_ushort] = ACTIONS(5986), + [anon_sym_c_int] = ACTIONS(5986), + [anon_sym_c_uint] = ACTIONS(5986), + [anon_sym_c_long] = ACTIONS(5986), + [anon_sym_c_ulong] = ACTIONS(5986), + [anon_sym_c_longlong] = ACTIONS(5986), + [anon_sym_c_ulonglong] = ACTIONS(5986), + [anon_sym_c_float] = ACTIONS(5986), + [anon_sym_c_double] = ACTIONS(5986), + [anon_sym_c_longdouble] = ACTIONS(5986), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5986), + [anon_sym_xor_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5984), + [anon_sym_return] = ACTIONS(5986), + [anon_sym_yield] = ACTIONS(5986), + [anon_sym_break] = ACTIONS(5986), + [anon_sym_continue] = ACTIONS(5986), + [anon_sym_defer] = ACTIONS(5986), + [anon_sym_errdefer] = ACTIONS(5986), + [anon_sym_if] = ACTIONS(5986), + [anon_sym_else] = ACTIONS(5986), + [anon_sym_while] = ACTIONS(5986), + [anon_sym_expand] = ACTIONS(5986), + [anon_sym_for] = ACTIONS(5986), + [anon_sym_PIPE2] = ACTIONS(5984), + [anon_sym_match] = ACTIONS(5986), + [anon_sym_DOT_DOT] = ACTIONS(5986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5984), + [anon_sym_orelse] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT_PIPE] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_catch] = ACTIONS(5986), + [anon_sym_TILDE] = ACTIONS(5984), + [anon_sym_try] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5984), + [anon_sym_true] = ACTIONS(5986), + [anon_sym_false] = ACTIONS(5986), + [anon_sym_null] = ACTIONS(5986), + [anon_sym_unreachable] = ACTIONS(5986), + [anon_sym_undefined] = ACTIONS(5986), + [sym_sink] = ACTIONS(5986), + [sym_integer] = ACTIONS(5986), + [sym_float] = ACTIONS(5984), + [anon_sym_DQUOTE] = ACTIONS(5984), + [sym_multiline_string] = ACTIONS(5984), + [sym_character] = ACTIONS(5984), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5984), + }, + [STATE(3693)] = { + [sym_identifier] = ACTIONS(5106), + [anon_sym_func] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_struct] = ACTIONS(5106), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5106), + [anon_sym_QMARK] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_void] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym_type] = ACTIONS(5106), + [anon_sym_anyopaque] = ACTIONS(5106), + [anon_sym_bool] = ACTIONS(5106), + [anon_sym_int] = ACTIONS(5106), + [anon_sym_uint] = ACTIONS(5106), + [anon_sym_float] = ACTIONS(5106), + [anon_sym_range] = ACTIONS(5106), + [anon_sym_i8] = ACTIONS(5106), + [anon_sym_i16] = ACTIONS(5106), + [anon_sym_i32] = ACTIONS(5106), + [anon_sym_i64] = ACTIONS(5106), + [anon_sym_u8] = ACTIONS(5106), + [anon_sym_u16] = ACTIONS(5106), + [anon_sym_u32] = ACTIONS(5106), + [anon_sym_u64] = ACTIONS(5106), + [anon_sym_isize] = ACTIONS(5106), + [anon_sym_usize] = ACTIONS(5106), + [anon_sym_f32] = ACTIONS(5106), + [anon_sym_f64] = ACTIONS(5106), + [anon_sym_c_char] = ACTIONS(5106), + [anon_sym_c_schar] = ACTIONS(5106), + [anon_sym_c_uchar] = ACTIONS(5106), + [anon_sym_c_short] = ACTIONS(5106), + [anon_sym_c_ushort] = ACTIONS(5106), + [anon_sym_c_int] = ACTIONS(5106), + [anon_sym_c_uint] = ACTIONS(5106), + [anon_sym_c_long] = ACTIONS(5106), + [anon_sym_c_ulong] = ACTIONS(5106), + [anon_sym_c_longlong] = ACTIONS(5106), + [anon_sym_c_ulonglong] = ACTIONS(5106), + [anon_sym_c_float] = ACTIONS(5106), + [anon_sym_c_double] = ACTIONS(5106), + [anon_sym_c_longdouble] = ACTIONS(5106), + [anon_sym_PLUS_EQ] = ACTIONS(5104), + [anon_sym_DASH_EQ] = ACTIONS(5104), + [anon_sym_STAR_EQ] = ACTIONS(5104), + [anon_sym_SLASH_EQ] = ACTIONS(5104), + [anon_sym_AMP_EQ] = ACTIONS(5104), + [anon_sym_PIPE_EQ] = ACTIONS(5106), + [anon_sym_xor_EQ] = ACTIONS(5104), + [anon_sym_LT_LT_EQ] = ACTIONS(5104), + [anon_sym_GT_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5104), + [anon_sym_return] = ACTIONS(5106), + [anon_sym_yield] = ACTIONS(5106), + [anon_sym_break] = ACTIONS(5106), + [anon_sym_continue] = ACTIONS(5106), + [anon_sym_defer] = ACTIONS(5106), + [anon_sym_errdefer] = ACTIONS(5106), + [anon_sym_if] = ACTIONS(5106), + [anon_sym_else] = ACTIONS(5106), + [anon_sym_while] = ACTIONS(5106), + [anon_sym_expand] = ACTIONS(5106), + [anon_sym_for] = ACTIONS(5106), + [anon_sym_PIPE2] = ACTIONS(5104), + [anon_sym_match] = ACTIONS(5106), + [anon_sym_DOT_DOT] = ACTIONS(5106), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5104), + [anon_sym_orelse] = ACTIONS(5106), + [anon_sym_or] = ACTIONS(5106), + [anon_sym_and] = ACTIONS(5106), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5106), + [anon_sym_xor] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5106), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_LT_LT_PIPE] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5106), + [anon_sym_SLASH] = ACTIONS(5106), + [anon_sym_catch] = ACTIONS(5106), + [anon_sym_TILDE] = ACTIONS(5104), + [anon_sym_try] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_true] = ACTIONS(5106), + [anon_sym_false] = ACTIONS(5106), + [anon_sym_null] = ACTIONS(5106), + [anon_sym_unreachable] = ACTIONS(5106), + [anon_sym_undefined] = ACTIONS(5106), + [sym_sink] = ACTIONS(5106), + [sym_integer] = ACTIONS(5106), + [sym_float] = ACTIONS(5104), + [anon_sym_DQUOTE] = ACTIONS(5104), + [sym_multiline_string] = ACTIONS(5104), + [sym_character] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5104), + }, + [STATE(3694)] = { + [sym_identifier] = ACTIONS(6000), + [anon_sym_func] = ACTIONS(6000), + [anon_sym_BANG] = ACTIONS(6823), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_struct] = ACTIONS(6000), + [anon_sym_LPAREN] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(5998), + [anon_sym_DASH] = ACTIONS(6000), + [anon_sym_DOLLAR] = ACTIONS(5998), + [anon_sym_PIPE] = ACTIONS(6000), + [anon_sym_QMARK] = ACTIONS(5998), + [anon_sym_STAR] = ACTIONS(6000), + [anon_sym_LBRACK] = ACTIONS(5998), + [anon_sym_void] = ACTIONS(6000), + [anon_sym_noreturn] = ACTIONS(6000), + [anon_sym_type] = ACTIONS(6000), + [anon_sym_anyopaque] = ACTIONS(6000), + [anon_sym_bool] = ACTIONS(6000), + [anon_sym_int] = ACTIONS(6000), + [anon_sym_uint] = ACTIONS(6000), + [anon_sym_float] = ACTIONS(6000), + [anon_sym_range] = ACTIONS(6000), + [anon_sym_i8] = ACTIONS(6000), + [anon_sym_i16] = ACTIONS(6000), + [anon_sym_i32] = ACTIONS(6000), + [anon_sym_i64] = ACTIONS(6000), + [anon_sym_u8] = ACTIONS(6000), + [anon_sym_u16] = ACTIONS(6000), + [anon_sym_u32] = ACTIONS(6000), + [anon_sym_u64] = ACTIONS(6000), + [anon_sym_isize] = ACTIONS(6000), + [anon_sym_usize] = ACTIONS(6000), + [anon_sym_f32] = ACTIONS(6000), + [anon_sym_f64] = ACTIONS(6000), + [anon_sym_c_char] = ACTIONS(6000), + [anon_sym_c_schar] = ACTIONS(6000), + [anon_sym_c_uchar] = ACTIONS(6000), + [anon_sym_c_short] = ACTIONS(6000), + [anon_sym_c_ushort] = ACTIONS(6000), + [anon_sym_c_int] = ACTIONS(6000), + [anon_sym_c_uint] = ACTIONS(6000), + [anon_sym_c_long] = ACTIONS(6000), + [anon_sym_c_ulong] = ACTIONS(6000), + [anon_sym_c_longlong] = ACTIONS(6000), + [anon_sym_c_ulonglong] = ACTIONS(6000), + [anon_sym_c_float] = ACTIONS(6000), + [anon_sym_c_double] = ACTIONS(6000), + [anon_sym_c_longdouble] = ACTIONS(6000), + [anon_sym_PLUS_EQ] = ACTIONS(5998), + [anon_sym_DASH_EQ] = ACTIONS(5998), + [anon_sym_STAR_EQ] = ACTIONS(5998), + [anon_sym_SLASH_EQ] = ACTIONS(5998), + [anon_sym_AMP_EQ] = ACTIONS(5998), + [anon_sym_PIPE_EQ] = ACTIONS(6000), + [anon_sym_xor_EQ] = ACTIONS(5998), + [anon_sym_LT_LT_EQ] = ACTIONS(5998), + [anon_sym_GT_GT_EQ] = ACTIONS(5998), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5998), + [anon_sym_return] = ACTIONS(6000), + [anon_sym_yield] = ACTIONS(6000), + [anon_sym_break] = ACTIONS(6000), + [anon_sym_continue] = ACTIONS(6000), + [anon_sym_defer] = ACTIONS(6000), + [anon_sym_errdefer] = ACTIONS(6000), + [anon_sym_if] = ACTIONS(6000), + [anon_sym_else] = ACTIONS(6000), + [anon_sym_while] = ACTIONS(6000), + [anon_sym_expand] = ACTIONS(6000), + [anon_sym_for] = ACTIONS(6000), + [anon_sym_PIPE2] = ACTIONS(5998), + [anon_sym_match] = ACTIONS(6000), + [anon_sym_DOT_DOT] = ACTIONS(6000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5998), + [anon_sym_orelse] = ACTIONS(6000), + [anon_sym_or] = ACTIONS(6000), + [anon_sym_and] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5998), + [anon_sym_BANG_EQ] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(6000), + [anon_sym_LT_EQ] = ACTIONS(5998), + [anon_sym_GT] = ACTIONS(6000), + [anon_sym_GT_EQ] = ACTIONS(5998), + [anon_sym_AMP] = ACTIONS(6000), + [anon_sym_xor] = ACTIONS(6000), + [anon_sym_LT_LT] = ACTIONS(6000), + [anon_sym_GT_GT] = ACTIONS(6000), + [anon_sym_LT_LT_PIPE] = ACTIONS(6000), + [anon_sym_PLUS] = ACTIONS(6000), + [anon_sym_SLASH] = ACTIONS(6000), + [anon_sym_catch] = ACTIONS(6000), + [anon_sym_TILDE] = ACTIONS(5998), + [anon_sym_try] = ACTIONS(6000), + [anon_sym_DOT] = ACTIONS(6000), + [anon_sym_CARET] = ACTIONS(5998), + [anon_sym_true] = ACTIONS(6000), + [anon_sym_false] = ACTIONS(6000), + [anon_sym_null] = ACTIONS(6000), + [anon_sym_unreachable] = ACTIONS(6000), + [anon_sym_undefined] = ACTIONS(6000), + [sym_sink] = ACTIONS(6000), + [sym_integer] = ACTIONS(6000), + [sym_float] = ACTIONS(5998), + [anon_sym_DQUOTE] = ACTIONS(5998), + [sym_multiline_string] = ACTIONS(5998), + [sym_character] = ACTIONS(5998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5998), + }, + [STATE(3695)] = { + [sym_identifier] = ACTIONS(5110), + [anon_sym_func] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_struct] = ACTIONS(5110), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_LBRACE] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_QMARK] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_void] = ACTIONS(5110), + [anon_sym_noreturn] = ACTIONS(5110), + [anon_sym_type] = ACTIONS(5110), + [anon_sym_anyopaque] = ACTIONS(5110), + [anon_sym_bool] = ACTIONS(5110), + [anon_sym_int] = ACTIONS(5110), + [anon_sym_uint] = ACTIONS(5110), + [anon_sym_float] = ACTIONS(5110), + [anon_sym_range] = ACTIONS(5110), + [anon_sym_i8] = ACTIONS(5110), + [anon_sym_i16] = ACTIONS(5110), + [anon_sym_i32] = ACTIONS(5110), + [anon_sym_i64] = ACTIONS(5110), + [anon_sym_u8] = ACTIONS(5110), + [anon_sym_u16] = ACTIONS(5110), + [anon_sym_u32] = ACTIONS(5110), + [anon_sym_u64] = ACTIONS(5110), + [anon_sym_isize] = ACTIONS(5110), + [anon_sym_usize] = ACTIONS(5110), + [anon_sym_f32] = ACTIONS(5110), + [anon_sym_f64] = ACTIONS(5110), + [anon_sym_c_char] = ACTIONS(5110), + [anon_sym_c_schar] = ACTIONS(5110), + [anon_sym_c_uchar] = ACTIONS(5110), + [anon_sym_c_short] = ACTIONS(5110), + [anon_sym_c_ushort] = ACTIONS(5110), + [anon_sym_c_int] = ACTIONS(5110), + [anon_sym_c_uint] = ACTIONS(5110), + [anon_sym_c_long] = ACTIONS(5110), + [anon_sym_c_ulong] = ACTIONS(5110), + [anon_sym_c_longlong] = ACTIONS(5110), + [anon_sym_c_ulonglong] = ACTIONS(5110), + [anon_sym_c_float] = ACTIONS(5110), + [anon_sym_c_double] = ACTIONS(5110), + [anon_sym_c_longdouble] = ACTIONS(5110), + [anon_sym_PLUS_EQ] = ACTIONS(5108), + [anon_sym_DASH_EQ] = ACTIONS(5108), + [anon_sym_STAR_EQ] = ACTIONS(5108), + [anon_sym_SLASH_EQ] = ACTIONS(5108), + [anon_sym_AMP_EQ] = ACTIONS(5108), + [anon_sym_PIPE_EQ] = ACTIONS(5110), + [anon_sym_xor_EQ] = ACTIONS(5108), + [anon_sym_LT_LT_EQ] = ACTIONS(5108), + [anon_sym_GT_GT_EQ] = ACTIONS(5108), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5108), + [anon_sym_return] = ACTIONS(5110), + [anon_sym_yield] = ACTIONS(5110), + [anon_sym_break] = ACTIONS(5110), + [anon_sym_continue] = ACTIONS(5110), + [anon_sym_defer] = ACTIONS(5110), + [anon_sym_errdefer] = ACTIONS(5110), + [anon_sym_if] = ACTIONS(5110), + [anon_sym_else] = ACTIONS(5110), + [anon_sym_while] = ACTIONS(5110), + [anon_sym_expand] = ACTIONS(5110), + [anon_sym_for] = ACTIONS(5110), + [anon_sym_PIPE2] = ACTIONS(5108), + [anon_sym_match] = ACTIONS(5110), + [anon_sym_DOT_DOT] = ACTIONS(5110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5108), + [anon_sym_orelse] = ACTIONS(5110), + [anon_sym_or] = ACTIONS(5110), + [anon_sym_and] = ACTIONS(5110), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_xor] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_LT_LT_PIPE] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_catch] = ACTIONS(5110), + [anon_sym_TILDE] = ACTIONS(5108), + [anon_sym_try] = ACTIONS(5110), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_true] = ACTIONS(5110), + [anon_sym_false] = ACTIONS(5110), + [anon_sym_null] = ACTIONS(5110), + [anon_sym_unreachable] = ACTIONS(5110), + [anon_sym_undefined] = ACTIONS(5110), + [sym_sink] = ACTIONS(5110), + [sym_integer] = ACTIONS(5110), + [sym_float] = ACTIONS(5108), + [anon_sym_DQUOTE] = ACTIONS(5108), + [sym_multiline_string] = ACTIONS(5108), + [sym_character] = ACTIONS(5108), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5108), + }, + [STATE(3696)] = { + [sym_identifier] = ACTIONS(5114), + [anon_sym_func] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_struct] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_LBRACE] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_QMARK] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_void] = ACTIONS(5114), + [anon_sym_noreturn] = ACTIONS(5114), + [anon_sym_type] = ACTIONS(5114), + [anon_sym_anyopaque] = ACTIONS(5114), + [anon_sym_bool] = ACTIONS(5114), + [anon_sym_int] = ACTIONS(5114), + [anon_sym_uint] = ACTIONS(5114), + [anon_sym_float] = ACTIONS(5114), + [anon_sym_range] = ACTIONS(5114), + [anon_sym_i8] = ACTIONS(5114), + [anon_sym_i16] = ACTIONS(5114), + [anon_sym_i32] = ACTIONS(5114), + [anon_sym_i64] = ACTIONS(5114), + [anon_sym_u8] = ACTIONS(5114), + [anon_sym_u16] = ACTIONS(5114), + [anon_sym_u32] = ACTIONS(5114), + [anon_sym_u64] = ACTIONS(5114), + [anon_sym_isize] = ACTIONS(5114), + [anon_sym_usize] = ACTIONS(5114), + [anon_sym_f32] = ACTIONS(5114), + [anon_sym_f64] = ACTIONS(5114), + [anon_sym_c_char] = ACTIONS(5114), + [anon_sym_c_schar] = ACTIONS(5114), + [anon_sym_c_uchar] = ACTIONS(5114), + [anon_sym_c_short] = ACTIONS(5114), + [anon_sym_c_ushort] = ACTIONS(5114), + [anon_sym_c_int] = ACTIONS(5114), + [anon_sym_c_uint] = ACTIONS(5114), + [anon_sym_c_long] = ACTIONS(5114), + [anon_sym_c_ulong] = ACTIONS(5114), + [anon_sym_c_longlong] = ACTIONS(5114), + [anon_sym_c_ulonglong] = ACTIONS(5114), + [anon_sym_c_float] = ACTIONS(5114), + [anon_sym_c_double] = ACTIONS(5114), + [anon_sym_c_longdouble] = ACTIONS(5114), + [anon_sym_PLUS_EQ] = ACTIONS(5112), + [anon_sym_DASH_EQ] = ACTIONS(5112), + [anon_sym_STAR_EQ] = ACTIONS(5112), + [anon_sym_SLASH_EQ] = ACTIONS(5112), + [anon_sym_AMP_EQ] = ACTIONS(5112), + [anon_sym_PIPE_EQ] = ACTIONS(5114), + [anon_sym_xor_EQ] = ACTIONS(5112), + [anon_sym_LT_LT_EQ] = ACTIONS(5112), + [anon_sym_GT_GT_EQ] = ACTIONS(5112), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5112), + [anon_sym_return] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5114), + [anon_sym_break] = ACTIONS(5114), + [anon_sym_continue] = ACTIONS(5114), + [anon_sym_defer] = ACTIONS(5114), + [anon_sym_errdefer] = ACTIONS(5114), + [anon_sym_if] = ACTIONS(5114), + [anon_sym_else] = ACTIONS(5114), + [anon_sym_while] = ACTIONS(5114), + [anon_sym_expand] = ACTIONS(5114), + [anon_sym_for] = ACTIONS(5114), + [anon_sym_PIPE2] = ACTIONS(5112), + [anon_sym_match] = ACTIONS(5114), + [anon_sym_DOT_DOT] = ACTIONS(5114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5112), + [anon_sym_orelse] = ACTIONS(5114), + [anon_sym_or] = ACTIONS(5114), + [anon_sym_and] = ACTIONS(5114), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_xor] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_LT_LT_PIPE] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_catch] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5112), + [anon_sym_try] = ACTIONS(5114), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_true] = ACTIONS(5114), + [anon_sym_false] = ACTIONS(5114), + [anon_sym_null] = ACTIONS(5114), + [anon_sym_unreachable] = ACTIONS(5114), + [anon_sym_undefined] = ACTIONS(5114), + [sym_sink] = ACTIONS(5114), + [sym_integer] = ACTIONS(5114), + [sym_float] = ACTIONS(5112), + [anon_sym_DQUOTE] = ACTIONS(5112), + [sym_multiline_string] = ACTIONS(5112), + [sym_character] = ACTIONS(5112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5112), + }, + [STATE(3697)] = { + [sym_identifier] = ACTIONS(5118), + [anon_sym_func] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_struct] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_QMARK] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_void] = ACTIONS(5118), + [anon_sym_noreturn] = ACTIONS(5118), + [anon_sym_type] = ACTIONS(5118), + [anon_sym_anyopaque] = ACTIONS(5118), + [anon_sym_bool] = ACTIONS(5118), + [anon_sym_int] = ACTIONS(5118), + [anon_sym_uint] = ACTIONS(5118), + [anon_sym_float] = ACTIONS(5118), + [anon_sym_range] = ACTIONS(5118), + [anon_sym_i8] = ACTIONS(5118), + [anon_sym_i16] = ACTIONS(5118), + [anon_sym_i32] = ACTIONS(5118), + [anon_sym_i64] = ACTIONS(5118), + [anon_sym_u8] = ACTIONS(5118), + [anon_sym_u16] = ACTIONS(5118), + [anon_sym_u32] = ACTIONS(5118), + [anon_sym_u64] = ACTIONS(5118), + [anon_sym_isize] = ACTIONS(5118), + [anon_sym_usize] = ACTIONS(5118), + [anon_sym_f32] = ACTIONS(5118), + [anon_sym_f64] = ACTIONS(5118), + [anon_sym_c_char] = ACTIONS(5118), + [anon_sym_c_schar] = ACTIONS(5118), + [anon_sym_c_uchar] = ACTIONS(5118), + [anon_sym_c_short] = ACTIONS(5118), + [anon_sym_c_ushort] = ACTIONS(5118), + [anon_sym_c_int] = ACTIONS(5118), + [anon_sym_c_uint] = ACTIONS(5118), + [anon_sym_c_long] = ACTIONS(5118), + [anon_sym_c_ulong] = ACTIONS(5118), + [anon_sym_c_longlong] = ACTIONS(5118), + [anon_sym_c_ulonglong] = ACTIONS(5118), + [anon_sym_c_float] = ACTIONS(5118), + [anon_sym_c_double] = ACTIONS(5118), + [anon_sym_c_longdouble] = ACTIONS(5118), + [anon_sym_PLUS_EQ] = ACTIONS(5116), + [anon_sym_DASH_EQ] = ACTIONS(5116), + [anon_sym_STAR_EQ] = ACTIONS(5116), + [anon_sym_SLASH_EQ] = ACTIONS(5116), + [anon_sym_AMP_EQ] = ACTIONS(5116), + [anon_sym_PIPE_EQ] = ACTIONS(5118), + [anon_sym_xor_EQ] = ACTIONS(5116), + [anon_sym_LT_LT_EQ] = ACTIONS(5116), + [anon_sym_GT_GT_EQ] = ACTIONS(5116), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5116), + [anon_sym_return] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5118), + [anon_sym_break] = ACTIONS(5118), + [anon_sym_continue] = ACTIONS(5118), + [anon_sym_defer] = ACTIONS(5118), + [anon_sym_errdefer] = ACTIONS(5118), + [anon_sym_if] = ACTIONS(5118), + [anon_sym_else] = ACTIONS(5118), + [anon_sym_while] = ACTIONS(5118), + [anon_sym_expand] = ACTIONS(5118), + [anon_sym_for] = ACTIONS(5118), + [anon_sym_PIPE2] = ACTIONS(5116), + [anon_sym_match] = ACTIONS(5118), + [anon_sym_DOT_DOT] = ACTIONS(5118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5116), + [anon_sym_orelse] = ACTIONS(5118), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_and] = ACTIONS(5118), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_xor] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_LT_LT_PIPE] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_catch] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_true] = ACTIONS(5118), + [anon_sym_false] = ACTIONS(5118), + [anon_sym_null] = ACTIONS(5118), + [anon_sym_unreachable] = ACTIONS(5118), + [anon_sym_undefined] = ACTIONS(5118), + [sym_sink] = ACTIONS(5118), + [sym_integer] = ACTIONS(5118), + [sym_float] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [sym_multiline_string] = ACTIONS(5116), + [sym_character] = ACTIONS(5116), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5116), + }, + [STATE(3698)] = { + [sym_identifier] = ACTIONS(5122), + [anon_sym_func] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_struct] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_QMARK] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_void] = ACTIONS(5122), + [anon_sym_noreturn] = ACTIONS(5122), + [anon_sym_type] = ACTIONS(5122), + [anon_sym_anyopaque] = ACTIONS(5122), + [anon_sym_bool] = ACTIONS(5122), + [anon_sym_int] = ACTIONS(5122), + [anon_sym_uint] = ACTIONS(5122), + [anon_sym_float] = ACTIONS(5122), + [anon_sym_range] = ACTIONS(5122), + [anon_sym_i8] = ACTIONS(5122), + [anon_sym_i16] = ACTIONS(5122), + [anon_sym_i32] = ACTIONS(5122), + [anon_sym_i64] = ACTIONS(5122), + [anon_sym_u8] = ACTIONS(5122), + [anon_sym_u16] = ACTIONS(5122), + [anon_sym_u32] = ACTIONS(5122), + [anon_sym_u64] = ACTIONS(5122), + [anon_sym_isize] = ACTIONS(5122), + [anon_sym_usize] = ACTIONS(5122), + [anon_sym_f32] = ACTIONS(5122), + [anon_sym_f64] = ACTIONS(5122), + [anon_sym_c_char] = ACTIONS(5122), + [anon_sym_c_schar] = ACTIONS(5122), + [anon_sym_c_uchar] = ACTIONS(5122), + [anon_sym_c_short] = ACTIONS(5122), + [anon_sym_c_ushort] = ACTIONS(5122), + [anon_sym_c_int] = ACTIONS(5122), + [anon_sym_c_uint] = ACTIONS(5122), + [anon_sym_c_long] = ACTIONS(5122), + [anon_sym_c_ulong] = ACTIONS(5122), + [anon_sym_c_longlong] = ACTIONS(5122), + [anon_sym_c_ulonglong] = ACTIONS(5122), + [anon_sym_c_float] = ACTIONS(5122), + [anon_sym_c_double] = ACTIONS(5122), + [anon_sym_c_longdouble] = ACTIONS(5122), + [anon_sym_PLUS_EQ] = ACTIONS(5120), + [anon_sym_DASH_EQ] = ACTIONS(5120), + [anon_sym_STAR_EQ] = ACTIONS(5120), + [anon_sym_SLASH_EQ] = ACTIONS(5120), + [anon_sym_AMP_EQ] = ACTIONS(5120), + [anon_sym_PIPE_EQ] = ACTIONS(5122), + [anon_sym_xor_EQ] = ACTIONS(5120), + [anon_sym_LT_LT_EQ] = ACTIONS(5120), + [anon_sym_GT_GT_EQ] = ACTIONS(5120), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5120), + [anon_sym_return] = ACTIONS(5122), + [anon_sym_yield] = ACTIONS(5122), + [anon_sym_break] = ACTIONS(5122), + [anon_sym_continue] = ACTIONS(5122), + [anon_sym_defer] = ACTIONS(5122), + [anon_sym_errdefer] = ACTIONS(5122), + [anon_sym_if] = ACTIONS(5122), + [anon_sym_else] = ACTIONS(5122), + [anon_sym_while] = ACTIONS(5122), + [anon_sym_expand] = ACTIONS(5122), + [anon_sym_for] = ACTIONS(5122), + [anon_sym_PIPE2] = ACTIONS(5120), + [anon_sym_match] = ACTIONS(5122), + [anon_sym_DOT_DOT] = ACTIONS(5122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5120), + [anon_sym_orelse] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_and] = ACTIONS(5122), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_xor] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_LT_LT_PIPE] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_catch] = ACTIONS(5122), + [anon_sym_TILDE] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_true] = ACTIONS(5122), + [anon_sym_false] = ACTIONS(5122), + [anon_sym_null] = ACTIONS(5122), + [anon_sym_unreachable] = ACTIONS(5122), + [anon_sym_undefined] = ACTIONS(5122), + [sym_sink] = ACTIONS(5122), + [sym_integer] = ACTIONS(5122), + [sym_float] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [sym_multiline_string] = ACTIONS(5120), + [sym_character] = ACTIONS(5120), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5120), + }, + [STATE(3699)] = { + [sym_identifier] = ACTIONS(5126), + [anon_sym_func] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_struct] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_QMARK] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_void] = ACTIONS(5126), + [anon_sym_noreturn] = ACTIONS(5126), + [anon_sym_type] = ACTIONS(5126), + [anon_sym_anyopaque] = ACTIONS(5126), + [anon_sym_bool] = ACTIONS(5126), + [anon_sym_int] = ACTIONS(5126), + [anon_sym_uint] = ACTIONS(5126), + [anon_sym_float] = ACTIONS(5126), + [anon_sym_range] = ACTIONS(5126), + [anon_sym_i8] = ACTIONS(5126), + [anon_sym_i16] = ACTIONS(5126), + [anon_sym_i32] = ACTIONS(5126), + [anon_sym_i64] = ACTIONS(5126), + [anon_sym_u8] = ACTIONS(5126), + [anon_sym_u16] = ACTIONS(5126), + [anon_sym_u32] = ACTIONS(5126), + [anon_sym_u64] = ACTIONS(5126), + [anon_sym_isize] = ACTIONS(5126), + [anon_sym_usize] = ACTIONS(5126), + [anon_sym_f32] = ACTIONS(5126), + [anon_sym_f64] = ACTIONS(5126), + [anon_sym_c_char] = ACTIONS(5126), + [anon_sym_c_schar] = ACTIONS(5126), + [anon_sym_c_uchar] = ACTIONS(5126), + [anon_sym_c_short] = ACTIONS(5126), + [anon_sym_c_ushort] = ACTIONS(5126), + [anon_sym_c_int] = ACTIONS(5126), + [anon_sym_c_uint] = ACTIONS(5126), + [anon_sym_c_long] = ACTIONS(5126), + [anon_sym_c_ulong] = ACTIONS(5126), + [anon_sym_c_longlong] = ACTIONS(5126), + [anon_sym_c_ulonglong] = ACTIONS(5126), + [anon_sym_c_float] = ACTIONS(5126), + [anon_sym_c_double] = ACTIONS(5126), + [anon_sym_c_longdouble] = ACTIONS(5126), + [anon_sym_PLUS_EQ] = ACTIONS(5124), + [anon_sym_DASH_EQ] = ACTIONS(5124), + [anon_sym_STAR_EQ] = ACTIONS(5124), + [anon_sym_SLASH_EQ] = ACTIONS(5124), + [anon_sym_AMP_EQ] = ACTIONS(5124), + [anon_sym_PIPE_EQ] = ACTIONS(5126), + [anon_sym_xor_EQ] = ACTIONS(5124), + [anon_sym_LT_LT_EQ] = ACTIONS(5124), + [anon_sym_GT_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5124), + [anon_sym_return] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5126), + [anon_sym_break] = ACTIONS(5126), + [anon_sym_continue] = ACTIONS(5126), + [anon_sym_defer] = ACTIONS(5126), + [anon_sym_errdefer] = ACTIONS(5126), + [anon_sym_if] = ACTIONS(5126), + [anon_sym_else] = ACTIONS(5126), + [anon_sym_while] = ACTIONS(5126), + [anon_sym_expand] = ACTIONS(5126), + [anon_sym_for] = ACTIONS(5126), + [anon_sym_PIPE2] = ACTIONS(5124), + [anon_sym_match] = ACTIONS(5126), + [anon_sym_DOT_DOT] = ACTIONS(5126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5124), + [anon_sym_orelse] = ACTIONS(5126), + [anon_sym_or] = ACTIONS(5126), + [anon_sym_and] = ACTIONS(5126), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_xor] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5126), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_LT_LT_PIPE] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_catch] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5124), + [anon_sym_try] = ACTIONS(5126), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_true] = ACTIONS(5126), + [anon_sym_false] = ACTIONS(5126), + [anon_sym_null] = ACTIONS(5126), + [anon_sym_unreachable] = ACTIONS(5126), + [anon_sym_undefined] = ACTIONS(5126), + [sym_sink] = ACTIONS(5126), + [sym_integer] = ACTIONS(5126), + [sym_float] = ACTIONS(5124), + [anon_sym_DQUOTE] = ACTIONS(5124), + [sym_multiline_string] = ACTIONS(5124), + [sym_character] = ACTIONS(5124), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5124), + }, + [STATE(3700)] = { + [sym_identifier] = ACTIONS(5130), + [anon_sym_func] = ACTIONS(5130), + [anon_sym_BANG] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_struct] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5130), + [anon_sym_QMARK] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_void] = ACTIONS(5130), + [anon_sym_noreturn] = ACTIONS(5130), + [anon_sym_type] = ACTIONS(5130), + [anon_sym_anyopaque] = ACTIONS(5130), + [anon_sym_bool] = ACTIONS(5130), + [anon_sym_int] = ACTIONS(5130), + [anon_sym_uint] = ACTIONS(5130), + [anon_sym_float] = ACTIONS(5130), + [anon_sym_range] = ACTIONS(5130), + [anon_sym_i8] = ACTIONS(5130), + [anon_sym_i16] = ACTIONS(5130), + [anon_sym_i32] = ACTIONS(5130), + [anon_sym_i64] = ACTIONS(5130), + [anon_sym_u8] = ACTIONS(5130), + [anon_sym_u16] = ACTIONS(5130), + [anon_sym_u32] = ACTIONS(5130), + [anon_sym_u64] = ACTIONS(5130), + [anon_sym_isize] = ACTIONS(5130), + [anon_sym_usize] = ACTIONS(5130), + [anon_sym_f32] = ACTIONS(5130), + [anon_sym_f64] = ACTIONS(5130), + [anon_sym_c_char] = ACTIONS(5130), + [anon_sym_c_schar] = ACTIONS(5130), + [anon_sym_c_uchar] = ACTIONS(5130), + [anon_sym_c_short] = ACTIONS(5130), + [anon_sym_c_ushort] = ACTIONS(5130), + [anon_sym_c_int] = ACTIONS(5130), + [anon_sym_c_uint] = ACTIONS(5130), + [anon_sym_c_long] = ACTIONS(5130), + [anon_sym_c_ulong] = ACTIONS(5130), + [anon_sym_c_longlong] = ACTIONS(5130), + [anon_sym_c_ulonglong] = ACTIONS(5130), + [anon_sym_c_float] = ACTIONS(5130), + [anon_sym_c_double] = ACTIONS(5130), + [anon_sym_c_longdouble] = ACTIONS(5130), + [anon_sym_PLUS_EQ] = ACTIONS(5128), + [anon_sym_DASH_EQ] = ACTIONS(5128), + [anon_sym_STAR_EQ] = ACTIONS(5128), + [anon_sym_SLASH_EQ] = ACTIONS(5128), + [anon_sym_AMP_EQ] = ACTIONS(5128), + [anon_sym_PIPE_EQ] = ACTIONS(5130), + [anon_sym_xor_EQ] = ACTIONS(5128), + [anon_sym_LT_LT_EQ] = ACTIONS(5128), + [anon_sym_GT_GT_EQ] = ACTIONS(5128), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5128), + [anon_sym_return] = ACTIONS(5130), + [anon_sym_yield] = ACTIONS(5130), + [anon_sym_break] = ACTIONS(5130), + [anon_sym_continue] = ACTIONS(5130), + [anon_sym_defer] = ACTIONS(5130), + [anon_sym_errdefer] = ACTIONS(5130), + [anon_sym_if] = ACTIONS(5130), + [anon_sym_else] = ACTIONS(5130), + [anon_sym_while] = ACTIONS(5130), + [anon_sym_expand] = ACTIONS(5130), + [anon_sym_for] = ACTIONS(5130), + [anon_sym_PIPE2] = ACTIONS(5128), + [anon_sym_match] = ACTIONS(5130), + [anon_sym_DOT_DOT] = ACTIONS(5130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5128), + [anon_sym_orelse] = ACTIONS(5130), + [anon_sym_or] = ACTIONS(5130), + [anon_sym_and] = ACTIONS(5130), + [anon_sym_EQ_EQ] = ACTIONS(5128), + [anon_sym_BANG_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5130), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5130), + [anon_sym_GT_EQ] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5130), + [anon_sym_xor] = ACTIONS(5130), + [anon_sym_LT_LT] = ACTIONS(5130), + [anon_sym_GT_GT] = ACTIONS(5130), + [anon_sym_LT_LT_PIPE] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5130), + [anon_sym_SLASH] = ACTIONS(5130), + [anon_sym_catch] = ACTIONS(5130), + [anon_sym_TILDE] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5130), + [anon_sym_DOT] = ACTIONS(5130), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_true] = ACTIONS(5130), + [anon_sym_false] = ACTIONS(5130), + [anon_sym_null] = ACTIONS(5130), + [anon_sym_unreachable] = ACTIONS(5130), + [anon_sym_undefined] = ACTIONS(5130), + [sym_sink] = ACTIONS(5130), + [sym_integer] = ACTIONS(5130), + [sym_float] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [sym_multiline_string] = ACTIONS(5128), + [sym_character] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5128), + }, + [STATE(3701)] = { + [sym_identifier] = ACTIONS(5134), + [anon_sym_func] = ACTIONS(5134), + [anon_sym_BANG] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_struct] = ACTIONS(5134), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_QMARK] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_void] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym_type] = ACTIONS(5134), + [anon_sym_anyopaque] = ACTIONS(5134), + [anon_sym_bool] = ACTIONS(5134), + [anon_sym_int] = ACTIONS(5134), + [anon_sym_uint] = ACTIONS(5134), + [anon_sym_float] = ACTIONS(5134), + [anon_sym_range] = ACTIONS(5134), + [anon_sym_i8] = ACTIONS(5134), + [anon_sym_i16] = ACTIONS(5134), + [anon_sym_i32] = ACTIONS(5134), + [anon_sym_i64] = ACTIONS(5134), + [anon_sym_u8] = ACTIONS(5134), + [anon_sym_u16] = ACTIONS(5134), + [anon_sym_u32] = ACTIONS(5134), + [anon_sym_u64] = ACTIONS(5134), + [anon_sym_isize] = ACTIONS(5134), + [anon_sym_usize] = ACTIONS(5134), + [anon_sym_f32] = ACTIONS(5134), + [anon_sym_f64] = ACTIONS(5134), + [anon_sym_c_char] = ACTIONS(5134), + [anon_sym_c_schar] = ACTIONS(5134), + [anon_sym_c_uchar] = ACTIONS(5134), + [anon_sym_c_short] = ACTIONS(5134), + [anon_sym_c_ushort] = ACTIONS(5134), + [anon_sym_c_int] = ACTIONS(5134), + [anon_sym_c_uint] = ACTIONS(5134), + [anon_sym_c_long] = ACTIONS(5134), + [anon_sym_c_ulong] = ACTIONS(5134), + [anon_sym_c_longlong] = ACTIONS(5134), + [anon_sym_c_ulonglong] = ACTIONS(5134), + [anon_sym_c_float] = ACTIONS(5134), + [anon_sym_c_double] = ACTIONS(5134), + [anon_sym_c_longdouble] = ACTIONS(5134), + [anon_sym_PLUS_EQ] = ACTIONS(5132), + [anon_sym_DASH_EQ] = ACTIONS(5132), + [anon_sym_STAR_EQ] = ACTIONS(5132), + [anon_sym_SLASH_EQ] = ACTIONS(5132), + [anon_sym_AMP_EQ] = ACTIONS(5132), + [anon_sym_PIPE_EQ] = ACTIONS(5134), + [anon_sym_xor_EQ] = ACTIONS(5132), + [anon_sym_LT_LT_EQ] = ACTIONS(5132), + [anon_sym_GT_GT_EQ] = ACTIONS(5132), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5132), + [anon_sym_return] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_break] = ACTIONS(5134), + [anon_sym_continue] = ACTIONS(5134), + [anon_sym_defer] = ACTIONS(5134), + [anon_sym_errdefer] = ACTIONS(5134), + [anon_sym_if] = ACTIONS(5134), + [anon_sym_else] = ACTIONS(5134), + [anon_sym_while] = ACTIONS(5134), + [anon_sym_expand] = ACTIONS(5134), + [anon_sym_for] = ACTIONS(5134), + [anon_sym_PIPE2] = ACTIONS(5132), + [anon_sym_match] = ACTIONS(5134), + [anon_sym_DOT_DOT] = ACTIONS(5134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5132), + [anon_sym_orelse] = ACTIONS(5134), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5132), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5134), + [anon_sym_LT_LT_PIPE] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_catch] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5132), + [anon_sym_try] = ACTIONS(5134), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym_true] = ACTIONS(5134), + [anon_sym_false] = ACTIONS(5134), + [anon_sym_null] = ACTIONS(5134), + [anon_sym_unreachable] = ACTIONS(5134), + [anon_sym_undefined] = ACTIONS(5134), + [sym_sink] = ACTIONS(5134), + [sym_integer] = ACTIONS(5134), + [sym_float] = ACTIONS(5132), + [anon_sym_DQUOTE] = ACTIONS(5132), + [sym_multiline_string] = ACTIONS(5132), + [sym_character] = ACTIONS(5132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5132), + }, + [STATE(3702)] = { + [sym_identifier] = ACTIONS(5138), + [anon_sym_func] = ACTIONS(5138), + [anon_sym_BANG] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_struct] = ACTIONS(5138), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_void] = ACTIONS(5138), + [anon_sym_noreturn] = ACTIONS(5138), + [anon_sym_type] = ACTIONS(5138), + [anon_sym_anyopaque] = ACTIONS(5138), + [anon_sym_bool] = ACTIONS(5138), + [anon_sym_int] = ACTIONS(5138), + [anon_sym_uint] = ACTIONS(5138), + [anon_sym_float] = ACTIONS(5138), + [anon_sym_range] = ACTIONS(5138), + [anon_sym_i8] = ACTIONS(5138), + [anon_sym_i16] = ACTIONS(5138), + [anon_sym_i32] = ACTIONS(5138), + [anon_sym_i64] = ACTIONS(5138), + [anon_sym_u8] = ACTIONS(5138), + [anon_sym_u16] = ACTIONS(5138), + [anon_sym_u32] = ACTIONS(5138), + [anon_sym_u64] = ACTIONS(5138), + [anon_sym_isize] = ACTIONS(5138), + [anon_sym_usize] = ACTIONS(5138), + [anon_sym_f32] = ACTIONS(5138), + [anon_sym_f64] = ACTIONS(5138), + [anon_sym_c_char] = ACTIONS(5138), + [anon_sym_c_schar] = ACTIONS(5138), + [anon_sym_c_uchar] = ACTIONS(5138), + [anon_sym_c_short] = ACTIONS(5138), + [anon_sym_c_ushort] = ACTIONS(5138), + [anon_sym_c_int] = ACTIONS(5138), + [anon_sym_c_uint] = ACTIONS(5138), + [anon_sym_c_long] = ACTIONS(5138), + [anon_sym_c_ulong] = ACTIONS(5138), + [anon_sym_c_longlong] = ACTIONS(5138), + [anon_sym_c_ulonglong] = ACTIONS(5138), + [anon_sym_c_float] = ACTIONS(5138), + [anon_sym_c_double] = ACTIONS(5138), + [anon_sym_c_longdouble] = ACTIONS(5138), + [anon_sym_PLUS_EQ] = ACTIONS(5136), + [anon_sym_DASH_EQ] = ACTIONS(5136), + [anon_sym_STAR_EQ] = ACTIONS(5136), + [anon_sym_SLASH_EQ] = ACTIONS(5136), + [anon_sym_AMP_EQ] = ACTIONS(5136), + [anon_sym_PIPE_EQ] = ACTIONS(5138), + [anon_sym_xor_EQ] = ACTIONS(5136), + [anon_sym_LT_LT_EQ] = ACTIONS(5136), + [anon_sym_GT_GT_EQ] = ACTIONS(5136), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5136), + [anon_sym_return] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_break] = ACTIONS(5138), + [anon_sym_continue] = ACTIONS(5138), + [anon_sym_defer] = ACTIONS(5138), + [anon_sym_errdefer] = ACTIONS(5138), + [anon_sym_if] = ACTIONS(5138), + [anon_sym_else] = ACTIONS(5138), + [anon_sym_while] = ACTIONS(5138), + [anon_sym_expand] = ACTIONS(5138), + [anon_sym_for] = ACTIONS(5138), + [anon_sym_PIPE2] = ACTIONS(5136), + [anon_sym_match] = ACTIONS(5138), + [anon_sym_DOT_DOT] = ACTIONS(5138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5136), + [anon_sym_orelse] = ACTIONS(5138), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_EQ] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym_LT_LT_PIPE] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_catch] = ACTIONS(5138), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_try] = ACTIONS(5138), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym_true] = ACTIONS(5138), + [anon_sym_false] = ACTIONS(5138), + [anon_sym_null] = ACTIONS(5138), + [anon_sym_unreachable] = ACTIONS(5138), + [anon_sym_undefined] = ACTIONS(5138), + [sym_sink] = ACTIONS(5138), + [sym_integer] = ACTIONS(5138), + [sym_float] = ACTIONS(5136), + [anon_sym_DQUOTE] = ACTIONS(5136), + [sym_multiline_string] = ACTIONS(5136), + [sym_character] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5136), + }, + [STATE(3703)] = { + [sym_identifier] = ACTIONS(5142), + [anon_sym_func] = ACTIONS(5142), + [anon_sym_BANG] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5142), + [anon_sym_QMARK] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_void] = ACTIONS(5142), + [anon_sym_noreturn] = ACTIONS(5142), + [anon_sym_type] = ACTIONS(5142), + [anon_sym_anyopaque] = ACTIONS(5142), + [anon_sym_bool] = ACTIONS(5142), + [anon_sym_int] = ACTIONS(5142), + [anon_sym_uint] = ACTIONS(5142), + [anon_sym_float] = ACTIONS(5142), + [anon_sym_range] = ACTIONS(5142), + [anon_sym_i8] = ACTIONS(5142), + [anon_sym_i16] = ACTIONS(5142), + [anon_sym_i32] = ACTIONS(5142), + [anon_sym_i64] = ACTIONS(5142), + [anon_sym_u8] = ACTIONS(5142), + [anon_sym_u16] = ACTIONS(5142), + [anon_sym_u32] = ACTIONS(5142), + [anon_sym_u64] = ACTIONS(5142), + [anon_sym_isize] = ACTIONS(5142), + [anon_sym_usize] = ACTIONS(5142), + [anon_sym_f32] = ACTIONS(5142), + [anon_sym_f64] = ACTIONS(5142), + [anon_sym_c_char] = ACTIONS(5142), + [anon_sym_c_schar] = ACTIONS(5142), + [anon_sym_c_uchar] = ACTIONS(5142), + [anon_sym_c_short] = ACTIONS(5142), + [anon_sym_c_ushort] = ACTIONS(5142), + [anon_sym_c_int] = ACTIONS(5142), + [anon_sym_c_uint] = ACTIONS(5142), + [anon_sym_c_long] = ACTIONS(5142), + [anon_sym_c_ulong] = ACTIONS(5142), + [anon_sym_c_longlong] = ACTIONS(5142), + [anon_sym_c_ulonglong] = ACTIONS(5142), + [anon_sym_c_float] = ACTIONS(5142), + [anon_sym_c_double] = ACTIONS(5142), + [anon_sym_c_longdouble] = ACTIONS(5142), + [anon_sym_PLUS_EQ] = ACTIONS(5140), + [anon_sym_DASH_EQ] = ACTIONS(5140), + [anon_sym_STAR_EQ] = ACTIONS(5140), + [anon_sym_SLASH_EQ] = ACTIONS(5140), + [anon_sym_AMP_EQ] = ACTIONS(5140), + [anon_sym_PIPE_EQ] = ACTIONS(5142), + [anon_sym_xor_EQ] = ACTIONS(5140), + [anon_sym_LT_LT_EQ] = ACTIONS(5140), + [anon_sym_GT_GT_EQ] = ACTIONS(5140), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5140), + [anon_sym_return] = ACTIONS(5142), + [anon_sym_yield] = ACTIONS(5142), + [anon_sym_break] = ACTIONS(5142), + [anon_sym_continue] = ACTIONS(5142), + [anon_sym_defer] = ACTIONS(5142), + [anon_sym_errdefer] = ACTIONS(5142), + [anon_sym_if] = ACTIONS(5142), + [anon_sym_else] = ACTIONS(5142), + [anon_sym_while] = ACTIONS(5142), + [anon_sym_expand] = ACTIONS(5142), + [anon_sym_for] = ACTIONS(5142), + [anon_sym_PIPE2] = ACTIONS(5140), + [anon_sym_match] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5140), + [anon_sym_orelse] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5140), + [anon_sym_BANG_EQ] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5140), + [anon_sym_AMP] = ACTIONS(5142), + [anon_sym_xor] = ACTIONS(5142), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5142), + [anon_sym_LT_LT_PIPE] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5142), + [anon_sym_catch] = ACTIONS(5142), + [anon_sym_TILDE] = ACTIONS(5140), + [anon_sym_try] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym_true] = ACTIONS(5142), + [anon_sym_false] = ACTIONS(5142), + [anon_sym_null] = ACTIONS(5142), + [anon_sym_unreachable] = ACTIONS(5142), + [anon_sym_undefined] = ACTIONS(5142), + [sym_sink] = ACTIONS(5142), + [sym_integer] = ACTIONS(5142), + [sym_float] = ACTIONS(5140), + [anon_sym_DQUOTE] = ACTIONS(5140), + [sym_multiline_string] = ACTIONS(5140), + [sym_character] = ACTIONS(5140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5140), + }, + [STATE(3704)] = { + [sym_identifier] = ACTIONS(5146), + [anon_sym_func] = ACTIONS(5146), + [anon_sym_BANG] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5146), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5146), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_void] = ACTIONS(5146), + [anon_sym_noreturn] = ACTIONS(5146), + [anon_sym_type] = ACTIONS(5146), + [anon_sym_anyopaque] = ACTIONS(5146), + [anon_sym_bool] = ACTIONS(5146), + [anon_sym_int] = ACTIONS(5146), + [anon_sym_uint] = ACTIONS(5146), + [anon_sym_float] = ACTIONS(5146), + [anon_sym_range] = ACTIONS(5146), + [anon_sym_i8] = ACTIONS(5146), + [anon_sym_i16] = ACTIONS(5146), + [anon_sym_i32] = ACTIONS(5146), + [anon_sym_i64] = ACTIONS(5146), + [anon_sym_u8] = ACTIONS(5146), + [anon_sym_u16] = ACTIONS(5146), + [anon_sym_u32] = ACTIONS(5146), + [anon_sym_u64] = ACTIONS(5146), + [anon_sym_isize] = ACTIONS(5146), + [anon_sym_usize] = ACTIONS(5146), + [anon_sym_f32] = ACTIONS(5146), + [anon_sym_f64] = ACTIONS(5146), + [anon_sym_c_char] = ACTIONS(5146), + [anon_sym_c_schar] = ACTIONS(5146), + [anon_sym_c_uchar] = ACTIONS(5146), + [anon_sym_c_short] = ACTIONS(5146), + [anon_sym_c_ushort] = ACTIONS(5146), + [anon_sym_c_int] = ACTIONS(5146), + [anon_sym_c_uint] = ACTIONS(5146), + [anon_sym_c_long] = ACTIONS(5146), + [anon_sym_c_ulong] = ACTIONS(5146), + [anon_sym_c_longlong] = ACTIONS(5146), + [anon_sym_c_ulonglong] = ACTIONS(5146), + [anon_sym_c_float] = ACTIONS(5146), + [anon_sym_c_double] = ACTIONS(5146), + [anon_sym_c_longdouble] = ACTIONS(5146), + [anon_sym_PLUS_EQ] = ACTIONS(5144), + [anon_sym_DASH_EQ] = ACTIONS(5144), + [anon_sym_STAR_EQ] = ACTIONS(5144), + [anon_sym_SLASH_EQ] = ACTIONS(5144), + [anon_sym_AMP_EQ] = ACTIONS(5144), + [anon_sym_PIPE_EQ] = ACTIONS(5146), + [anon_sym_xor_EQ] = ACTIONS(5144), + [anon_sym_LT_LT_EQ] = ACTIONS(5144), + [anon_sym_GT_GT_EQ] = ACTIONS(5144), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5144), + [anon_sym_return] = ACTIONS(5146), + [anon_sym_yield] = ACTIONS(5146), + [anon_sym_break] = ACTIONS(5146), + [anon_sym_continue] = ACTIONS(5146), + [anon_sym_defer] = ACTIONS(5146), + [anon_sym_errdefer] = ACTIONS(5146), + [anon_sym_if] = ACTIONS(5146), + [anon_sym_else] = ACTIONS(5146), + [anon_sym_while] = ACTIONS(5146), + [anon_sym_expand] = ACTIONS(5146), + [anon_sym_for] = ACTIONS(5146), + [anon_sym_PIPE2] = ACTIONS(5144), + [anon_sym_match] = ACTIONS(5146), + [anon_sym_DOT_DOT] = ACTIONS(5146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5144), + [anon_sym_orelse] = ACTIONS(5146), + [anon_sym_or] = ACTIONS(5146), + [anon_sym_and] = ACTIONS(5146), + [anon_sym_EQ_EQ] = ACTIONS(5144), + [anon_sym_BANG_EQ] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5146), + [anon_sym_LT_EQ] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5146), + [anon_sym_GT_EQ] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5146), + [anon_sym_xor] = ACTIONS(5146), + [anon_sym_LT_LT] = ACTIONS(5146), + [anon_sym_GT_GT] = ACTIONS(5146), + [anon_sym_LT_LT_PIPE] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5146), + [anon_sym_SLASH] = ACTIONS(5146), + [anon_sym_catch] = ACTIONS(5146), + [anon_sym_TILDE] = ACTIONS(5144), + [anon_sym_try] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5146), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym_true] = ACTIONS(5146), + [anon_sym_false] = ACTIONS(5146), + [anon_sym_null] = ACTIONS(5146), + [anon_sym_unreachable] = ACTIONS(5146), + [anon_sym_undefined] = ACTIONS(5146), + [sym_sink] = ACTIONS(5146), + [sym_integer] = ACTIONS(5146), + [sym_float] = ACTIONS(5144), + [anon_sym_DQUOTE] = ACTIONS(5144), + [sym_multiline_string] = ACTIONS(5144), + [sym_character] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5144), + }, + [STATE(3705)] = { + [sym_identifier] = ACTIONS(5150), + [anon_sym_func] = ACTIONS(5150), + [anon_sym_BANG] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5150), + [anon_sym_QMARK] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_void] = ACTIONS(5150), + [anon_sym_noreturn] = ACTIONS(5150), + [anon_sym_type] = ACTIONS(5150), + [anon_sym_anyopaque] = ACTIONS(5150), + [anon_sym_bool] = ACTIONS(5150), + [anon_sym_int] = ACTIONS(5150), + [anon_sym_uint] = ACTIONS(5150), + [anon_sym_float] = ACTIONS(5150), + [anon_sym_range] = ACTIONS(5150), + [anon_sym_i8] = ACTIONS(5150), + [anon_sym_i16] = ACTIONS(5150), + [anon_sym_i32] = ACTIONS(5150), + [anon_sym_i64] = ACTIONS(5150), + [anon_sym_u8] = ACTIONS(5150), + [anon_sym_u16] = ACTIONS(5150), + [anon_sym_u32] = ACTIONS(5150), + [anon_sym_u64] = ACTIONS(5150), + [anon_sym_isize] = ACTIONS(5150), + [anon_sym_usize] = ACTIONS(5150), + [anon_sym_f32] = ACTIONS(5150), + [anon_sym_f64] = ACTIONS(5150), + [anon_sym_c_char] = ACTIONS(5150), + [anon_sym_c_schar] = ACTIONS(5150), + [anon_sym_c_uchar] = ACTIONS(5150), + [anon_sym_c_short] = ACTIONS(5150), + [anon_sym_c_ushort] = ACTIONS(5150), + [anon_sym_c_int] = ACTIONS(5150), + [anon_sym_c_uint] = ACTIONS(5150), + [anon_sym_c_long] = ACTIONS(5150), + [anon_sym_c_ulong] = ACTIONS(5150), + [anon_sym_c_longlong] = ACTIONS(5150), + [anon_sym_c_ulonglong] = ACTIONS(5150), + [anon_sym_c_float] = ACTIONS(5150), + [anon_sym_c_double] = ACTIONS(5150), + [anon_sym_c_longdouble] = ACTIONS(5150), + [anon_sym_PLUS_EQ] = ACTIONS(5148), + [anon_sym_DASH_EQ] = ACTIONS(5148), + [anon_sym_STAR_EQ] = ACTIONS(5148), + [anon_sym_SLASH_EQ] = ACTIONS(5148), + [anon_sym_AMP_EQ] = ACTIONS(5148), + [anon_sym_PIPE_EQ] = ACTIONS(5150), + [anon_sym_xor_EQ] = ACTIONS(5148), + [anon_sym_LT_LT_EQ] = ACTIONS(5148), + [anon_sym_GT_GT_EQ] = ACTIONS(5148), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5148), + [anon_sym_return] = ACTIONS(5150), + [anon_sym_yield] = ACTIONS(5150), + [anon_sym_break] = ACTIONS(5150), + [anon_sym_continue] = ACTIONS(5150), + [anon_sym_defer] = ACTIONS(5150), + [anon_sym_errdefer] = ACTIONS(5150), + [anon_sym_if] = ACTIONS(5150), + [anon_sym_else] = ACTIONS(5150), + [anon_sym_while] = ACTIONS(5150), + [anon_sym_expand] = ACTIONS(5150), + [anon_sym_for] = ACTIONS(5150), + [anon_sym_PIPE2] = ACTIONS(5148), + [anon_sym_match] = ACTIONS(5150), + [anon_sym_DOT_DOT] = ACTIONS(5150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5148), + [anon_sym_orelse] = ACTIONS(5150), + [anon_sym_or] = ACTIONS(5150), + [anon_sym_and] = ACTIONS(5150), + [anon_sym_EQ_EQ] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5150), + [anon_sym_LT_EQ] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_GT_EQ] = ACTIONS(5148), + [anon_sym_AMP] = ACTIONS(5150), + [anon_sym_xor] = ACTIONS(5150), + [anon_sym_LT_LT] = ACTIONS(5150), + [anon_sym_GT_GT] = ACTIONS(5150), + [anon_sym_LT_LT_PIPE] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5150), + [anon_sym_SLASH] = ACTIONS(5150), + [anon_sym_catch] = ACTIONS(5150), + [anon_sym_TILDE] = ACTIONS(5148), + [anon_sym_try] = ACTIONS(5150), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym_true] = ACTIONS(5150), + [anon_sym_false] = ACTIONS(5150), + [anon_sym_null] = ACTIONS(5150), + [anon_sym_unreachable] = ACTIONS(5150), + [anon_sym_undefined] = ACTIONS(5150), + [sym_sink] = ACTIONS(5150), + [sym_integer] = ACTIONS(5150), + [sym_float] = ACTIONS(5148), + [anon_sym_DQUOTE] = ACTIONS(5148), + [sym_multiline_string] = ACTIONS(5148), + [sym_character] = ACTIONS(5148), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5148), + }, + [STATE(3706)] = { + [sym_identifier] = ACTIONS(5154), + [anon_sym_func] = ACTIONS(5154), + [anon_sym_BANG] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_struct] = ACTIONS(5154), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5154), + [anon_sym_QMARK] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_void] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym_type] = ACTIONS(5154), + [anon_sym_anyopaque] = ACTIONS(5154), + [anon_sym_bool] = ACTIONS(5154), + [anon_sym_int] = ACTIONS(5154), + [anon_sym_uint] = ACTIONS(5154), + [anon_sym_float] = ACTIONS(5154), + [anon_sym_range] = ACTIONS(5154), + [anon_sym_i8] = ACTIONS(5154), + [anon_sym_i16] = ACTIONS(5154), + [anon_sym_i32] = ACTIONS(5154), + [anon_sym_i64] = ACTIONS(5154), + [anon_sym_u8] = ACTIONS(5154), + [anon_sym_u16] = ACTIONS(5154), + [anon_sym_u32] = ACTIONS(5154), + [anon_sym_u64] = ACTIONS(5154), + [anon_sym_isize] = ACTIONS(5154), + [anon_sym_usize] = ACTIONS(5154), + [anon_sym_f32] = ACTIONS(5154), + [anon_sym_f64] = ACTIONS(5154), + [anon_sym_c_char] = ACTIONS(5154), + [anon_sym_c_schar] = ACTIONS(5154), + [anon_sym_c_uchar] = ACTIONS(5154), + [anon_sym_c_short] = ACTIONS(5154), + [anon_sym_c_ushort] = ACTIONS(5154), + [anon_sym_c_int] = ACTIONS(5154), + [anon_sym_c_uint] = ACTIONS(5154), + [anon_sym_c_long] = ACTIONS(5154), + [anon_sym_c_ulong] = ACTIONS(5154), + [anon_sym_c_longlong] = ACTIONS(5154), + [anon_sym_c_ulonglong] = ACTIONS(5154), + [anon_sym_c_float] = ACTIONS(5154), + [anon_sym_c_double] = ACTIONS(5154), + [anon_sym_c_longdouble] = ACTIONS(5154), + [anon_sym_PLUS_EQ] = ACTIONS(5152), + [anon_sym_DASH_EQ] = ACTIONS(5152), + [anon_sym_STAR_EQ] = ACTIONS(5152), + [anon_sym_SLASH_EQ] = ACTIONS(5152), + [anon_sym_AMP_EQ] = ACTIONS(5152), + [anon_sym_PIPE_EQ] = ACTIONS(5154), + [anon_sym_xor_EQ] = ACTIONS(5152), + [anon_sym_LT_LT_EQ] = ACTIONS(5152), + [anon_sym_GT_GT_EQ] = ACTIONS(5152), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5152), + [anon_sym_return] = ACTIONS(5154), + [anon_sym_yield] = ACTIONS(5154), + [anon_sym_break] = ACTIONS(5154), + [anon_sym_continue] = ACTIONS(5154), + [anon_sym_defer] = ACTIONS(5154), + [anon_sym_errdefer] = ACTIONS(5154), + [anon_sym_if] = ACTIONS(5154), + [anon_sym_else] = ACTIONS(5154), + [anon_sym_while] = ACTIONS(5154), + [anon_sym_expand] = ACTIONS(5154), + [anon_sym_for] = ACTIONS(5154), + [anon_sym_PIPE2] = ACTIONS(5152), + [anon_sym_match] = ACTIONS(5154), + [anon_sym_DOT_DOT] = ACTIONS(5154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5152), + [anon_sym_orelse] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5154), + [anon_sym_and] = ACTIONS(5154), + [anon_sym_EQ_EQ] = ACTIONS(5152), + [anon_sym_BANG_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5154), + [anon_sym_GT_EQ] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5154), + [anon_sym_xor] = ACTIONS(5154), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5154), + [anon_sym_LT_LT_PIPE] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(5154), + [anon_sym_SLASH] = ACTIONS(5154), + [anon_sym_catch] = ACTIONS(5154), + [anon_sym_TILDE] = ACTIONS(5152), + [anon_sym_try] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5154), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym_true] = ACTIONS(5154), + [anon_sym_false] = ACTIONS(5154), + [anon_sym_null] = ACTIONS(5154), + [anon_sym_unreachable] = ACTIONS(5154), + [anon_sym_undefined] = ACTIONS(5154), + [sym_sink] = ACTIONS(5154), + [sym_integer] = ACTIONS(5154), + [sym_float] = ACTIONS(5152), + [anon_sym_DQUOTE] = ACTIONS(5152), + [sym_multiline_string] = ACTIONS(5152), + [sym_character] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5152), + }, + [STATE(3707)] = { + [sym_identifier] = ACTIONS(5158), + [anon_sym_func] = ACTIONS(5158), + [anon_sym_BANG] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_struct] = ACTIONS(5158), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5158), + [anon_sym_QMARK] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_void] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym_type] = ACTIONS(5158), + [anon_sym_anyopaque] = ACTIONS(5158), + [anon_sym_bool] = ACTIONS(5158), + [anon_sym_int] = ACTIONS(5158), + [anon_sym_uint] = ACTIONS(5158), + [anon_sym_float] = ACTIONS(5158), + [anon_sym_range] = ACTIONS(5158), + [anon_sym_i8] = ACTIONS(5158), + [anon_sym_i16] = ACTIONS(5158), + [anon_sym_i32] = ACTIONS(5158), + [anon_sym_i64] = ACTIONS(5158), + [anon_sym_u8] = ACTIONS(5158), + [anon_sym_u16] = ACTIONS(5158), + [anon_sym_u32] = ACTIONS(5158), + [anon_sym_u64] = ACTIONS(5158), + [anon_sym_isize] = ACTIONS(5158), + [anon_sym_usize] = ACTIONS(5158), + [anon_sym_f32] = ACTIONS(5158), + [anon_sym_f64] = ACTIONS(5158), + [anon_sym_c_char] = ACTIONS(5158), + [anon_sym_c_schar] = ACTIONS(5158), + [anon_sym_c_uchar] = ACTIONS(5158), + [anon_sym_c_short] = ACTIONS(5158), + [anon_sym_c_ushort] = ACTIONS(5158), + [anon_sym_c_int] = ACTIONS(5158), + [anon_sym_c_uint] = ACTIONS(5158), + [anon_sym_c_long] = ACTIONS(5158), + [anon_sym_c_ulong] = ACTIONS(5158), + [anon_sym_c_longlong] = ACTIONS(5158), + [anon_sym_c_ulonglong] = ACTIONS(5158), + [anon_sym_c_float] = ACTIONS(5158), + [anon_sym_c_double] = ACTIONS(5158), + [anon_sym_c_longdouble] = ACTIONS(5158), + [anon_sym_PLUS_EQ] = ACTIONS(5156), + [anon_sym_DASH_EQ] = ACTIONS(5156), + [anon_sym_STAR_EQ] = ACTIONS(5156), + [anon_sym_SLASH_EQ] = ACTIONS(5156), + [anon_sym_AMP_EQ] = ACTIONS(5156), + [anon_sym_PIPE_EQ] = ACTIONS(5158), + [anon_sym_xor_EQ] = ACTIONS(5156), + [anon_sym_LT_LT_EQ] = ACTIONS(5156), + [anon_sym_GT_GT_EQ] = ACTIONS(5156), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5156), + [anon_sym_return] = ACTIONS(5158), + [anon_sym_yield] = ACTIONS(5158), + [anon_sym_break] = ACTIONS(5158), + [anon_sym_continue] = ACTIONS(5158), + [anon_sym_defer] = ACTIONS(5158), + [anon_sym_errdefer] = ACTIONS(5158), + [anon_sym_if] = ACTIONS(5158), + [anon_sym_else] = ACTIONS(5158), + [anon_sym_while] = ACTIONS(5158), + [anon_sym_expand] = ACTIONS(5158), + [anon_sym_for] = ACTIONS(5158), + [anon_sym_PIPE2] = ACTIONS(5156), + [anon_sym_match] = ACTIONS(5158), + [anon_sym_DOT_DOT] = ACTIONS(5158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5156), + [anon_sym_orelse] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_and] = ACTIONS(5158), + [anon_sym_EQ_EQ] = ACTIONS(5156), + [anon_sym_BANG_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5158), + [anon_sym_GT_EQ] = ACTIONS(5156), + [anon_sym_AMP] = ACTIONS(5158), + [anon_sym_xor] = ACTIONS(5158), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5158), + [anon_sym_LT_LT_PIPE] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5158), + [anon_sym_SLASH] = ACTIONS(5158), + [anon_sym_catch] = ACTIONS(5158), + [anon_sym_TILDE] = ACTIONS(5156), + [anon_sym_try] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5158), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym_true] = ACTIONS(5158), + [anon_sym_false] = ACTIONS(5158), + [anon_sym_null] = ACTIONS(5158), + [anon_sym_unreachable] = ACTIONS(5158), + [anon_sym_undefined] = ACTIONS(5158), + [sym_sink] = ACTIONS(5158), + [sym_integer] = ACTIONS(5158), + [sym_float] = ACTIONS(5156), + [anon_sym_DQUOTE] = ACTIONS(5156), + [sym_multiline_string] = ACTIONS(5156), + [sym_character] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5156), + }, + [STATE(3708)] = { + [sym_identifier] = ACTIONS(5162), + [anon_sym_func] = ACTIONS(5162), + [anon_sym_BANG] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_struct] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_void] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym_type] = ACTIONS(5162), + [anon_sym_anyopaque] = ACTIONS(5162), + [anon_sym_bool] = ACTIONS(5162), + [anon_sym_int] = ACTIONS(5162), + [anon_sym_uint] = ACTIONS(5162), + [anon_sym_float] = ACTIONS(5162), + [anon_sym_range] = ACTIONS(5162), + [anon_sym_i8] = ACTIONS(5162), + [anon_sym_i16] = ACTIONS(5162), + [anon_sym_i32] = ACTIONS(5162), + [anon_sym_i64] = ACTIONS(5162), + [anon_sym_u8] = ACTIONS(5162), + [anon_sym_u16] = ACTIONS(5162), + [anon_sym_u32] = ACTIONS(5162), + [anon_sym_u64] = ACTIONS(5162), + [anon_sym_isize] = ACTIONS(5162), + [anon_sym_usize] = ACTIONS(5162), + [anon_sym_f32] = ACTIONS(5162), + [anon_sym_f64] = ACTIONS(5162), + [anon_sym_c_char] = ACTIONS(5162), + [anon_sym_c_schar] = ACTIONS(5162), + [anon_sym_c_uchar] = ACTIONS(5162), + [anon_sym_c_short] = ACTIONS(5162), + [anon_sym_c_ushort] = ACTIONS(5162), + [anon_sym_c_int] = ACTIONS(5162), + [anon_sym_c_uint] = ACTIONS(5162), + [anon_sym_c_long] = ACTIONS(5162), + [anon_sym_c_ulong] = ACTIONS(5162), + [anon_sym_c_longlong] = ACTIONS(5162), + [anon_sym_c_ulonglong] = ACTIONS(5162), + [anon_sym_c_float] = ACTIONS(5162), + [anon_sym_c_double] = ACTIONS(5162), + [anon_sym_c_longdouble] = ACTIONS(5162), + [anon_sym_PLUS_EQ] = ACTIONS(5160), + [anon_sym_DASH_EQ] = ACTIONS(5160), + [anon_sym_STAR_EQ] = ACTIONS(5160), + [anon_sym_SLASH_EQ] = ACTIONS(5160), + [anon_sym_AMP_EQ] = ACTIONS(5160), + [anon_sym_PIPE_EQ] = ACTIONS(5162), + [anon_sym_xor_EQ] = ACTIONS(5160), + [anon_sym_LT_LT_EQ] = ACTIONS(5160), + [anon_sym_GT_GT_EQ] = ACTIONS(5160), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5160), + [anon_sym_return] = ACTIONS(5162), + [anon_sym_yield] = ACTIONS(5162), + [anon_sym_break] = ACTIONS(5162), + [anon_sym_continue] = ACTIONS(5162), + [anon_sym_defer] = ACTIONS(5162), + [anon_sym_errdefer] = ACTIONS(5162), + [anon_sym_if] = ACTIONS(5162), + [anon_sym_else] = ACTIONS(5162), + [anon_sym_while] = ACTIONS(5162), + [anon_sym_expand] = ACTIONS(5162), + [anon_sym_for] = ACTIONS(5162), + [anon_sym_PIPE2] = ACTIONS(5160), + [anon_sym_match] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5160), + [anon_sym_orelse] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5160), + [anon_sym_BANG_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5162), + [anon_sym_xor] = ACTIONS(5162), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5162), + [anon_sym_LT_LT_PIPE] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5162), + [anon_sym_catch] = ACTIONS(5162), + [anon_sym_TILDE] = ACTIONS(5160), + [anon_sym_try] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym_true] = ACTIONS(5162), + [anon_sym_false] = ACTIONS(5162), + [anon_sym_null] = ACTIONS(5162), + [anon_sym_unreachable] = ACTIONS(5162), + [anon_sym_undefined] = ACTIONS(5162), + [sym_sink] = ACTIONS(5162), + [sym_integer] = ACTIONS(5162), + [sym_float] = ACTIONS(5160), + [anon_sym_DQUOTE] = ACTIONS(5160), + [sym_multiline_string] = ACTIONS(5160), + [sym_character] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5160), + }, + [STATE(3709)] = { + [sym_identifier] = ACTIONS(5166), + [anon_sym_func] = ACTIONS(5166), + [anon_sym_BANG] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_struct] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5166), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_void] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym_type] = ACTIONS(5166), + [anon_sym_anyopaque] = ACTIONS(5166), + [anon_sym_bool] = ACTIONS(5166), + [anon_sym_int] = ACTIONS(5166), + [anon_sym_uint] = ACTIONS(5166), + [anon_sym_float] = ACTIONS(5166), + [anon_sym_range] = ACTIONS(5166), + [anon_sym_i8] = ACTIONS(5166), + [anon_sym_i16] = ACTIONS(5166), + [anon_sym_i32] = ACTIONS(5166), + [anon_sym_i64] = ACTIONS(5166), + [anon_sym_u8] = ACTIONS(5166), + [anon_sym_u16] = ACTIONS(5166), + [anon_sym_u32] = ACTIONS(5166), + [anon_sym_u64] = ACTIONS(5166), + [anon_sym_isize] = ACTIONS(5166), + [anon_sym_usize] = ACTIONS(5166), + [anon_sym_f32] = ACTIONS(5166), + [anon_sym_f64] = ACTIONS(5166), + [anon_sym_c_char] = ACTIONS(5166), + [anon_sym_c_schar] = ACTIONS(5166), + [anon_sym_c_uchar] = ACTIONS(5166), + [anon_sym_c_short] = ACTIONS(5166), + [anon_sym_c_ushort] = ACTIONS(5166), + [anon_sym_c_int] = ACTIONS(5166), + [anon_sym_c_uint] = ACTIONS(5166), + [anon_sym_c_long] = ACTIONS(5166), + [anon_sym_c_ulong] = ACTIONS(5166), + [anon_sym_c_longlong] = ACTIONS(5166), + [anon_sym_c_ulonglong] = ACTIONS(5166), + [anon_sym_c_float] = ACTIONS(5166), + [anon_sym_c_double] = ACTIONS(5166), + [anon_sym_c_longdouble] = ACTIONS(5166), + [anon_sym_PLUS_EQ] = ACTIONS(5164), + [anon_sym_DASH_EQ] = ACTIONS(5164), + [anon_sym_STAR_EQ] = ACTIONS(5164), + [anon_sym_SLASH_EQ] = ACTIONS(5164), + [anon_sym_AMP_EQ] = ACTIONS(5164), + [anon_sym_PIPE_EQ] = ACTIONS(5166), + [anon_sym_xor_EQ] = ACTIONS(5164), + [anon_sym_LT_LT_EQ] = ACTIONS(5164), + [anon_sym_GT_GT_EQ] = ACTIONS(5164), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5164), + [anon_sym_return] = ACTIONS(5166), + [anon_sym_yield] = ACTIONS(5166), + [anon_sym_break] = ACTIONS(5166), + [anon_sym_continue] = ACTIONS(5166), + [anon_sym_defer] = ACTIONS(5166), + [anon_sym_errdefer] = ACTIONS(5166), + [anon_sym_if] = ACTIONS(5166), + [anon_sym_else] = ACTIONS(5166), + [anon_sym_while] = ACTIONS(5166), + [anon_sym_expand] = ACTIONS(5166), + [anon_sym_for] = ACTIONS(5166), + [anon_sym_PIPE2] = ACTIONS(5164), + [anon_sym_match] = ACTIONS(5166), + [anon_sym_DOT_DOT] = ACTIONS(5166), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5164), + [anon_sym_orelse] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5166), + [anon_sym_and] = ACTIONS(5166), + [anon_sym_EQ_EQ] = ACTIONS(5164), + [anon_sym_BANG_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5166), + [anon_sym_GT_EQ] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5166), + [anon_sym_xor] = ACTIONS(5166), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5166), + [anon_sym_LT_LT_PIPE] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5166), + [anon_sym_SLASH] = ACTIONS(5166), + [anon_sym_catch] = ACTIONS(5166), + [anon_sym_TILDE] = ACTIONS(5164), + [anon_sym_try] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5166), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_true] = ACTIONS(5166), + [anon_sym_false] = ACTIONS(5166), + [anon_sym_null] = ACTIONS(5166), + [anon_sym_unreachable] = ACTIONS(5166), + [anon_sym_undefined] = ACTIONS(5166), + [sym_sink] = ACTIONS(5166), + [sym_integer] = ACTIONS(5166), + [sym_float] = ACTIONS(5164), + [anon_sym_DQUOTE] = ACTIONS(5164), + [sym_multiline_string] = ACTIONS(5164), + [sym_character] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5164), + }, + [STATE(3710)] = { + [sym_identifier] = ACTIONS(5170), + [anon_sym_func] = ACTIONS(5170), + [anon_sym_BANG] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_struct] = ACTIONS(5170), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_QMARK] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_void] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym_type] = ACTIONS(5170), + [anon_sym_anyopaque] = ACTIONS(5170), + [anon_sym_bool] = ACTIONS(5170), + [anon_sym_int] = ACTIONS(5170), + [anon_sym_uint] = ACTIONS(5170), + [anon_sym_float] = ACTIONS(5170), + [anon_sym_range] = ACTIONS(5170), + [anon_sym_i8] = ACTIONS(5170), + [anon_sym_i16] = ACTIONS(5170), + [anon_sym_i32] = ACTIONS(5170), + [anon_sym_i64] = ACTIONS(5170), + [anon_sym_u8] = ACTIONS(5170), + [anon_sym_u16] = ACTIONS(5170), + [anon_sym_u32] = ACTIONS(5170), + [anon_sym_u64] = ACTIONS(5170), + [anon_sym_isize] = ACTIONS(5170), + [anon_sym_usize] = ACTIONS(5170), + [anon_sym_f32] = ACTIONS(5170), + [anon_sym_f64] = ACTIONS(5170), + [anon_sym_c_char] = ACTIONS(5170), + [anon_sym_c_schar] = ACTIONS(5170), + [anon_sym_c_uchar] = ACTIONS(5170), + [anon_sym_c_short] = ACTIONS(5170), + [anon_sym_c_ushort] = ACTIONS(5170), + [anon_sym_c_int] = ACTIONS(5170), + [anon_sym_c_uint] = ACTIONS(5170), + [anon_sym_c_long] = ACTIONS(5170), + [anon_sym_c_ulong] = ACTIONS(5170), + [anon_sym_c_longlong] = ACTIONS(5170), + [anon_sym_c_ulonglong] = ACTIONS(5170), + [anon_sym_c_float] = ACTIONS(5170), + [anon_sym_c_double] = ACTIONS(5170), + [anon_sym_c_longdouble] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_STAR_EQ] = ACTIONS(5168), + [anon_sym_SLASH_EQ] = ACTIONS(5168), + [anon_sym_AMP_EQ] = ACTIONS(5168), + [anon_sym_PIPE_EQ] = ACTIONS(5170), + [anon_sym_xor_EQ] = ACTIONS(5168), + [anon_sym_LT_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_GT_EQ] = ACTIONS(5168), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5168), + [anon_sym_return] = ACTIONS(5170), + [anon_sym_yield] = ACTIONS(5170), + [anon_sym_break] = ACTIONS(5170), + [anon_sym_continue] = ACTIONS(5170), + [anon_sym_defer] = ACTIONS(5170), + [anon_sym_errdefer] = ACTIONS(5170), + [anon_sym_if] = ACTIONS(5170), + [anon_sym_else] = ACTIONS(5170), + [anon_sym_while] = ACTIONS(5170), + [anon_sym_expand] = ACTIONS(5170), + [anon_sym_for] = ACTIONS(5170), + [anon_sym_PIPE2] = ACTIONS(5168), + [anon_sym_match] = ACTIONS(5170), + [anon_sym_DOT_DOT] = ACTIONS(5170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5168), + [anon_sym_orelse] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), + [anon_sym_xor] = ACTIONS(5170), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5170), + [anon_sym_LT_LT_PIPE] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_SLASH] = ACTIONS(5170), + [anon_sym_catch] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5168), + [anon_sym_try] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym_true] = ACTIONS(5170), + [anon_sym_false] = ACTIONS(5170), + [anon_sym_null] = ACTIONS(5170), + [anon_sym_unreachable] = ACTIONS(5170), + [anon_sym_undefined] = ACTIONS(5170), + [sym_sink] = ACTIONS(5170), + [sym_integer] = ACTIONS(5170), + [sym_float] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [sym_multiline_string] = ACTIONS(5168), + [sym_character] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5168), + }, + [STATE(3711)] = { + [sym_identifier] = ACTIONS(5174), + [anon_sym_func] = ACTIONS(5174), + [anon_sym_BANG] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_QMARK] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_void] = ACTIONS(5174), + [anon_sym_noreturn] = ACTIONS(5174), + [anon_sym_type] = ACTIONS(5174), + [anon_sym_anyopaque] = ACTIONS(5174), + [anon_sym_bool] = ACTIONS(5174), + [anon_sym_int] = ACTIONS(5174), + [anon_sym_uint] = ACTIONS(5174), + [anon_sym_float] = ACTIONS(5174), + [anon_sym_range] = ACTIONS(5174), + [anon_sym_i8] = ACTIONS(5174), + [anon_sym_i16] = ACTIONS(5174), + [anon_sym_i32] = ACTIONS(5174), + [anon_sym_i64] = ACTIONS(5174), + [anon_sym_u8] = ACTIONS(5174), + [anon_sym_u16] = ACTIONS(5174), + [anon_sym_u32] = ACTIONS(5174), + [anon_sym_u64] = ACTIONS(5174), + [anon_sym_isize] = ACTIONS(5174), + [anon_sym_usize] = ACTIONS(5174), + [anon_sym_f32] = ACTIONS(5174), + [anon_sym_f64] = ACTIONS(5174), + [anon_sym_c_char] = ACTIONS(5174), + [anon_sym_c_schar] = ACTIONS(5174), + [anon_sym_c_uchar] = ACTIONS(5174), + [anon_sym_c_short] = ACTIONS(5174), + [anon_sym_c_ushort] = ACTIONS(5174), + [anon_sym_c_int] = ACTIONS(5174), + [anon_sym_c_uint] = ACTIONS(5174), + [anon_sym_c_long] = ACTIONS(5174), + [anon_sym_c_ulong] = ACTIONS(5174), + [anon_sym_c_longlong] = ACTIONS(5174), + [anon_sym_c_ulonglong] = ACTIONS(5174), + [anon_sym_c_float] = ACTIONS(5174), + [anon_sym_c_double] = ACTIONS(5174), + [anon_sym_c_longdouble] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5172), + [anon_sym_DASH_EQ] = ACTIONS(5172), + [anon_sym_STAR_EQ] = ACTIONS(5172), + [anon_sym_SLASH_EQ] = ACTIONS(5172), + [anon_sym_AMP_EQ] = ACTIONS(5172), + [anon_sym_PIPE_EQ] = ACTIONS(5174), + [anon_sym_xor_EQ] = ACTIONS(5172), + [anon_sym_LT_LT_EQ] = ACTIONS(5172), + [anon_sym_GT_GT_EQ] = ACTIONS(5172), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5172), + [anon_sym_return] = ACTIONS(5174), + [anon_sym_yield] = ACTIONS(5174), + [anon_sym_break] = ACTIONS(5174), + [anon_sym_continue] = ACTIONS(5174), + [anon_sym_defer] = ACTIONS(5174), + [anon_sym_errdefer] = ACTIONS(5174), + [anon_sym_if] = ACTIONS(5174), + [anon_sym_else] = ACTIONS(5174), + [anon_sym_while] = ACTIONS(5174), + [anon_sym_expand] = ACTIONS(5174), + [anon_sym_for] = ACTIONS(5174), + [anon_sym_PIPE2] = ACTIONS(5172), + [anon_sym_match] = ACTIONS(5174), + [anon_sym_DOT_DOT] = ACTIONS(5174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5172), + [anon_sym_orelse] = ACTIONS(5174), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5174), + [anon_sym_LT_LT_PIPE] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_catch] = ACTIONS(5174), + [anon_sym_TILDE] = ACTIONS(5172), + [anon_sym_try] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym_true] = ACTIONS(5174), + [anon_sym_false] = ACTIONS(5174), + [anon_sym_null] = ACTIONS(5174), + [anon_sym_unreachable] = ACTIONS(5174), + [anon_sym_undefined] = ACTIONS(5174), + [sym_sink] = ACTIONS(5174), + [sym_integer] = ACTIONS(5174), + [sym_float] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [sym_multiline_string] = ACTIONS(5172), + [sym_character] = ACTIONS(5172), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5172), + }, + [STATE(3712)] = { + [sym_identifier] = ACTIONS(5182), + [anon_sym_func] = ACTIONS(5182), + [anon_sym_BANG] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_LPAREN] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_QMARK] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_void] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym_type] = ACTIONS(5182), + [anon_sym_anyopaque] = ACTIONS(5182), + [anon_sym_bool] = ACTIONS(5182), + [anon_sym_int] = ACTIONS(5182), + [anon_sym_uint] = ACTIONS(5182), + [anon_sym_float] = ACTIONS(5182), + [anon_sym_range] = ACTIONS(5182), + [anon_sym_i8] = ACTIONS(5182), + [anon_sym_i16] = ACTIONS(5182), + [anon_sym_i32] = ACTIONS(5182), + [anon_sym_i64] = ACTIONS(5182), + [anon_sym_u8] = ACTIONS(5182), + [anon_sym_u16] = ACTIONS(5182), + [anon_sym_u32] = ACTIONS(5182), + [anon_sym_u64] = ACTIONS(5182), + [anon_sym_isize] = ACTIONS(5182), + [anon_sym_usize] = ACTIONS(5182), + [anon_sym_f32] = ACTIONS(5182), + [anon_sym_f64] = ACTIONS(5182), + [anon_sym_c_char] = ACTIONS(5182), + [anon_sym_c_schar] = ACTIONS(5182), + [anon_sym_c_uchar] = ACTIONS(5182), + [anon_sym_c_short] = ACTIONS(5182), + [anon_sym_c_ushort] = ACTIONS(5182), + [anon_sym_c_int] = ACTIONS(5182), + [anon_sym_c_uint] = ACTIONS(5182), + [anon_sym_c_long] = ACTIONS(5182), + [anon_sym_c_ulong] = ACTIONS(5182), + [anon_sym_c_longlong] = ACTIONS(5182), + [anon_sym_c_ulonglong] = ACTIONS(5182), + [anon_sym_c_float] = ACTIONS(5182), + [anon_sym_c_double] = ACTIONS(5182), + [anon_sym_c_longdouble] = ACTIONS(5182), + [anon_sym_PLUS_EQ] = ACTIONS(5180), + [anon_sym_DASH_EQ] = ACTIONS(5180), + [anon_sym_STAR_EQ] = ACTIONS(5180), + [anon_sym_SLASH_EQ] = ACTIONS(5180), + [anon_sym_AMP_EQ] = ACTIONS(5180), + [anon_sym_PIPE_EQ] = ACTIONS(5182), + [anon_sym_xor_EQ] = ACTIONS(5180), + [anon_sym_LT_LT_EQ] = ACTIONS(5180), + [anon_sym_GT_GT_EQ] = ACTIONS(5180), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5180), + [anon_sym_return] = ACTIONS(5182), + [anon_sym_yield] = ACTIONS(5182), + [anon_sym_break] = ACTIONS(5182), + [anon_sym_continue] = ACTIONS(5182), + [anon_sym_defer] = ACTIONS(5182), + [anon_sym_errdefer] = ACTIONS(5182), + [anon_sym_if] = ACTIONS(5182), + [anon_sym_else] = ACTIONS(5182), + [anon_sym_while] = ACTIONS(5182), + [anon_sym_expand] = ACTIONS(5182), + [anon_sym_for] = ACTIONS(5182), + [anon_sym_PIPE2] = ACTIONS(5180), + [anon_sym_match] = ACTIONS(5182), + [anon_sym_DOT_DOT] = ACTIONS(5182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5180), + [anon_sym_orelse] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_BANG_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5182), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5182), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5182), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5182), + [anon_sym_LT_LT_PIPE] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5182), + [anon_sym_catch] = ACTIONS(5182), + [anon_sym_TILDE] = ACTIONS(5180), + [anon_sym_try] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5182), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_true] = ACTIONS(5182), + [anon_sym_false] = ACTIONS(5182), + [anon_sym_null] = ACTIONS(5182), + [anon_sym_unreachable] = ACTIONS(5182), + [anon_sym_undefined] = ACTIONS(5182), + [sym_sink] = ACTIONS(5182), + [sym_integer] = ACTIONS(5182), + [sym_float] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [sym_multiline_string] = ACTIONS(5180), + [sym_character] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5180), + }, + [STATE(3713)] = { + [sym_identifier] = ACTIONS(5186), + [anon_sym_func] = ACTIONS(5186), + [anon_sym_BANG] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_struct] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_QMARK] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_void] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym_type] = ACTIONS(5186), + [anon_sym_anyopaque] = ACTIONS(5186), + [anon_sym_bool] = ACTIONS(5186), + [anon_sym_int] = ACTIONS(5186), + [anon_sym_uint] = ACTIONS(5186), + [anon_sym_float] = ACTIONS(5186), + [anon_sym_range] = ACTIONS(5186), + [anon_sym_i8] = ACTIONS(5186), + [anon_sym_i16] = ACTIONS(5186), + [anon_sym_i32] = ACTIONS(5186), + [anon_sym_i64] = ACTIONS(5186), + [anon_sym_u8] = ACTIONS(5186), + [anon_sym_u16] = ACTIONS(5186), + [anon_sym_u32] = ACTIONS(5186), + [anon_sym_u64] = ACTIONS(5186), + [anon_sym_isize] = ACTIONS(5186), + [anon_sym_usize] = ACTIONS(5186), + [anon_sym_f32] = ACTIONS(5186), + [anon_sym_f64] = ACTIONS(5186), + [anon_sym_c_char] = ACTIONS(5186), + [anon_sym_c_schar] = ACTIONS(5186), + [anon_sym_c_uchar] = ACTIONS(5186), + [anon_sym_c_short] = ACTIONS(5186), + [anon_sym_c_ushort] = ACTIONS(5186), + [anon_sym_c_int] = ACTIONS(5186), + [anon_sym_c_uint] = ACTIONS(5186), + [anon_sym_c_long] = ACTIONS(5186), + [anon_sym_c_ulong] = ACTIONS(5186), + [anon_sym_c_longlong] = ACTIONS(5186), + [anon_sym_c_ulonglong] = ACTIONS(5186), + [anon_sym_c_float] = ACTIONS(5186), + [anon_sym_c_double] = ACTIONS(5186), + [anon_sym_c_longdouble] = ACTIONS(5186), + [anon_sym_PLUS_EQ] = ACTIONS(5184), + [anon_sym_DASH_EQ] = ACTIONS(5184), + [anon_sym_STAR_EQ] = ACTIONS(5184), + [anon_sym_SLASH_EQ] = ACTIONS(5184), + [anon_sym_AMP_EQ] = ACTIONS(5184), + [anon_sym_PIPE_EQ] = ACTIONS(5186), + [anon_sym_xor_EQ] = ACTIONS(5184), + [anon_sym_LT_LT_EQ] = ACTIONS(5184), + [anon_sym_GT_GT_EQ] = ACTIONS(5184), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5184), + [anon_sym_return] = ACTIONS(5186), + [anon_sym_yield] = ACTIONS(5186), + [anon_sym_break] = ACTIONS(5186), + [anon_sym_continue] = ACTIONS(5186), + [anon_sym_defer] = ACTIONS(5186), + [anon_sym_errdefer] = ACTIONS(5186), + [anon_sym_if] = ACTIONS(5186), + [anon_sym_else] = ACTIONS(5186), + [anon_sym_while] = ACTIONS(5186), + [anon_sym_expand] = ACTIONS(5186), + [anon_sym_for] = ACTIONS(5186), + [anon_sym_PIPE2] = ACTIONS(5184), + [anon_sym_match] = ACTIONS(5186), + [anon_sym_DOT_DOT] = ACTIONS(5186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5184), + [anon_sym_orelse] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5186), + [anon_sym_and] = ACTIONS(5186), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5186), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5186), + [anon_sym_xor] = ACTIONS(5186), + [anon_sym_LT_LT] = ACTIONS(5186), + [anon_sym_GT_GT] = ACTIONS(5186), + [anon_sym_LT_LT_PIPE] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5186), + [anon_sym_SLASH] = ACTIONS(5186), + [anon_sym_catch] = ACTIONS(5186), + [anon_sym_TILDE] = ACTIONS(5184), + [anon_sym_try] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5186), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_true] = ACTIONS(5186), + [anon_sym_false] = ACTIONS(5186), + [anon_sym_null] = ACTIONS(5186), + [anon_sym_unreachable] = ACTIONS(5186), + [anon_sym_undefined] = ACTIONS(5186), + [sym_sink] = ACTIONS(5186), + [sym_integer] = ACTIONS(5186), + [sym_float] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [sym_multiline_string] = ACTIONS(5184), + [sym_character] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5184), + }, + [STATE(3714)] = { + [sym_identifier] = ACTIONS(5192), + [anon_sym_func] = ACTIONS(5192), + [anon_sym_BANG] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_struct] = ACTIONS(5192), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5192), + [anon_sym_DOLLAR] = ACTIONS(5190), + [anon_sym_PIPE] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_void] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym_type] = ACTIONS(5192), + [anon_sym_anyopaque] = ACTIONS(5192), + [anon_sym_bool] = ACTIONS(5192), + [anon_sym_int] = ACTIONS(5192), + [anon_sym_uint] = ACTIONS(5192), + [anon_sym_float] = ACTIONS(5192), + [anon_sym_range] = ACTIONS(5192), + [anon_sym_i8] = ACTIONS(5192), + [anon_sym_i16] = ACTIONS(5192), + [anon_sym_i32] = ACTIONS(5192), + [anon_sym_i64] = ACTIONS(5192), + [anon_sym_u8] = ACTIONS(5192), + [anon_sym_u16] = ACTIONS(5192), + [anon_sym_u32] = ACTIONS(5192), + [anon_sym_u64] = ACTIONS(5192), + [anon_sym_isize] = ACTIONS(5192), + [anon_sym_usize] = ACTIONS(5192), + [anon_sym_f32] = ACTIONS(5192), + [anon_sym_f64] = ACTIONS(5192), + [anon_sym_c_char] = ACTIONS(5192), + [anon_sym_c_schar] = ACTIONS(5192), + [anon_sym_c_uchar] = ACTIONS(5192), + [anon_sym_c_short] = ACTIONS(5192), + [anon_sym_c_ushort] = ACTIONS(5192), + [anon_sym_c_int] = ACTIONS(5192), + [anon_sym_c_uint] = ACTIONS(5192), + [anon_sym_c_long] = ACTIONS(5192), + [anon_sym_c_ulong] = ACTIONS(5192), + [anon_sym_c_longlong] = ACTIONS(5192), + [anon_sym_c_ulonglong] = ACTIONS(5192), + [anon_sym_c_float] = ACTIONS(5192), + [anon_sym_c_double] = ACTIONS(5192), + [anon_sym_c_longdouble] = ACTIONS(5192), + [anon_sym_PLUS_EQ] = ACTIONS(5190), + [anon_sym_DASH_EQ] = ACTIONS(5190), + [anon_sym_STAR_EQ] = ACTIONS(5190), + [anon_sym_SLASH_EQ] = ACTIONS(5190), + [anon_sym_AMP_EQ] = ACTIONS(5190), + [anon_sym_PIPE_EQ] = ACTIONS(5192), + [anon_sym_xor_EQ] = ACTIONS(5190), + [anon_sym_LT_LT_EQ] = ACTIONS(5190), + [anon_sym_GT_GT_EQ] = ACTIONS(5190), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5190), + [anon_sym_return] = ACTIONS(5192), + [anon_sym_yield] = ACTIONS(5192), + [anon_sym_break] = ACTIONS(5192), + [anon_sym_continue] = ACTIONS(5192), + [anon_sym_defer] = ACTIONS(5192), + [anon_sym_errdefer] = ACTIONS(5192), + [anon_sym_if] = ACTIONS(5192), + [anon_sym_else] = ACTIONS(5192), + [anon_sym_while] = ACTIONS(5192), + [anon_sym_expand] = ACTIONS(5192), + [anon_sym_for] = ACTIONS(5192), + [anon_sym_PIPE2] = ACTIONS(5190), + [anon_sym_match] = ACTIONS(5192), + [anon_sym_DOT_DOT] = ACTIONS(5192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5190), + [anon_sym_orelse] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_EQ_EQ] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_GT] = ACTIONS(5192), + [anon_sym_GT_EQ] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5192), + [anon_sym_xor] = ACTIONS(5192), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5192), + [anon_sym_LT_LT_PIPE] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5192), + [anon_sym_SLASH] = ACTIONS(5192), + [anon_sym_catch] = ACTIONS(5192), + [anon_sym_TILDE] = ACTIONS(5190), + [anon_sym_try] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5192), + [anon_sym_CARET] = ACTIONS(5190), + [anon_sym_true] = ACTIONS(5192), + [anon_sym_false] = ACTIONS(5192), + [anon_sym_null] = ACTIONS(5192), + [anon_sym_unreachable] = ACTIONS(5192), + [anon_sym_undefined] = ACTIONS(5192), + [sym_sink] = ACTIONS(5192), + [sym_integer] = ACTIONS(5192), + [sym_float] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(5190), + [sym_multiline_string] = ACTIONS(5190), + [sym_character] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5190), + }, + [STATE(3715)] = { + [sym_identifier] = ACTIONS(5196), + [anon_sym_func] = ACTIONS(5196), + [anon_sym_BANG] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_QMARK] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_void] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym_type] = ACTIONS(5196), + [anon_sym_anyopaque] = ACTIONS(5196), + [anon_sym_bool] = ACTIONS(5196), + [anon_sym_int] = ACTIONS(5196), + [anon_sym_uint] = ACTIONS(5196), + [anon_sym_float] = ACTIONS(5196), + [anon_sym_range] = ACTIONS(5196), + [anon_sym_i8] = ACTIONS(5196), + [anon_sym_i16] = ACTIONS(5196), + [anon_sym_i32] = ACTIONS(5196), + [anon_sym_i64] = ACTIONS(5196), + [anon_sym_u8] = ACTIONS(5196), + [anon_sym_u16] = ACTIONS(5196), + [anon_sym_u32] = ACTIONS(5196), + [anon_sym_u64] = ACTIONS(5196), + [anon_sym_isize] = ACTIONS(5196), + [anon_sym_usize] = ACTIONS(5196), + [anon_sym_f32] = ACTIONS(5196), + [anon_sym_f64] = ACTIONS(5196), + [anon_sym_c_char] = ACTIONS(5196), + [anon_sym_c_schar] = ACTIONS(5196), + [anon_sym_c_uchar] = ACTIONS(5196), + [anon_sym_c_short] = ACTIONS(5196), + [anon_sym_c_ushort] = ACTIONS(5196), + [anon_sym_c_int] = ACTIONS(5196), + [anon_sym_c_uint] = ACTIONS(5196), + [anon_sym_c_long] = ACTIONS(5196), + [anon_sym_c_ulong] = ACTIONS(5196), + [anon_sym_c_longlong] = ACTIONS(5196), + [anon_sym_c_ulonglong] = ACTIONS(5196), + [anon_sym_c_float] = ACTIONS(5196), + [anon_sym_c_double] = ACTIONS(5196), + [anon_sym_c_longdouble] = ACTIONS(5196), + [anon_sym_PLUS_EQ] = ACTIONS(5194), + [anon_sym_DASH_EQ] = ACTIONS(5194), + [anon_sym_STAR_EQ] = ACTIONS(5194), + [anon_sym_SLASH_EQ] = ACTIONS(5194), + [anon_sym_AMP_EQ] = ACTIONS(5194), + [anon_sym_PIPE_EQ] = ACTIONS(5196), + [anon_sym_xor_EQ] = ACTIONS(5194), + [anon_sym_LT_LT_EQ] = ACTIONS(5194), + [anon_sym_GT_GT_EQ] = ACTIONS(5194), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5194), + [anon_sym_return] = ACTIONS(5196), + [anon_sym_yield] = ACTIONS(5196), + [anon_sym_break] = ACTIONS(5196), + [anon_sym_continue] = ACTIONS(5196), + [anon_sym_defer] = ACTIONS(5196), + [anon_sym_errdefer] = ACTIONS(5196), + [anon_sym_if] = ACTIONS(5196), + [anon_sym_else] = ACTIONS(5196), + [anon_sym_while] = ACTIONS(5196), + [anon_sym_expand] = ACTIONS(5196), + [anon_sym_for] = ACTIONS(5196), + [anon_sym_PIPE2] = ACTIONS(5194), + [anon_sym_match] = ACTIONS(5196), + [anon_sym_DOT_DOT] = ACTIONS(5196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5194), + [anon_sym_orelse] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_EQ_EQ] = ACTIONS(5194), + [anon_sym_BANG_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5196), + [anon_sym_GT_EQ] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_xor] = ACTIONS(5196), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5196), + [anon_sym_LT_LT_PIPE] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5196), + [anon_sym_SLASH] = ACTIONS(5196), + [anon_sym_catch] = ACTIONS(5196), + [anon_sym_TILDE] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5196), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym_true] = ACTIONS(5196), + [anon_sym_false] = ACTIONS(5196), + [anon_sym_null] = ACTIONS(5196), + [anon_sym_unreachable] = ACTIONS(5196), + [anon_sym_undefined] = ACTIONS(5196), + [sym_sink] = ACTIONS(5196), + [sym_integer] = ACTIONS(5196), + [sym_float] = ACTIONS(5194), + [anon_sym_DQUOTE] = ACTIONS(5194), + [sym_multiline_string] = ACTIONS(5194), + [sym_character] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5194), + }, + [STATE(3716)] = { + [sym_identifier] = ACTIONS(5200), + [anon_sym_func] = ACTIONS(5200), + [anon_sym_BANG] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_struct] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_QMARK] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_void] = ACTIONS(5200), + [anon_sym_noreturn] = ACTIONS(5200), + [anon_sym_type] = ACTIONS(5200), + [anon_sym_anyopaque] = ACTIONS(5200), + [anon_sym_bool] = ACTIONS(5200), + [anon_sym_int] = ACTIONS(5200), + [anon_sym_uint] = ACTIONS(5200), + [anon_sym_float] = ACTIONS(5200), + [anon_sym_range] = ACTIONS(5200), + [anon_sym_i8] = ACTIONS(5200), + [anon_sym_i16] = ACTIONS(5200), + [anon_sym_i32] = ACTIONS(5200), + [anon_sym_i64] = ACTIONS(5200), + [anon_sym_u8] = ACTIONS(5200), + [anon_sym_u16] = ACTIONS(5200), + [anon_sym_u32] = ACTIONS(5200), + [anon_sym_u64] = ACTIONS(5200), + [anon_sym_isize] = ACTIONS(5200), + [anon_sym_usize] = ACTIONS(5200), + [anon_sym_f32] = ACTIONS(5200), + [anon_sym_f64] = ACTIONS(5200), + [anon_sym_c_char] = ACTIONS(5200), + [anon_sym_c_schar] = ACTIONS(5200), + [anon_sym_c_uchar] = ACTIONS(5200), + [anon_sym_c_short] = ACTIONS(5200), + [anon_sym_c_ushort] = ACTIONS(5200), + [anon_sym_c_int] = ACTIONS(5200), + [anon_sym_c_uint] = ACTIONS(5200), + [anon_sym_c_long] = ACTIONS(5200), + [anon_sym_c_ulong] = ACTIONS(5200), + [anon_sym_c_longlong] = ACTIONS(5200), + [anon_sym_c_ulonglong] = ACTIONS(5200), + [anon_sym_c_float] = ACTIONS(5200), + [anon_sym_c_double] = ACTIONS(5200), + [anon_sym_c_longdouble] = ACTIONS(5200), + [anon_sym_PLUS_EQ] = ACTIONS(5198), + [anon_sym_DASH_EQ] = ACTIONS(5198), + [anon_sym_STAR_EQ] = ACTIONS(5198), + [anon_sym_SLASH_EQ] = ACTIONS(5198), + [anon_sym_AMP_EQ] = ACTIONS(5198), + [anon_sym_PIPE_EQ] = ACTIONS(5200), + [anon_sym_xor_EQ] = ACTIONS(5198), + [anon_sym_LT_LT_EQ] = ACTIONS(5198), + [anon_sym_GT_GT_EQ] = ACTIONS(5198), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5198), + [anon_sym_return] = ACTIONS(5200), + [anon_sym_yield] = ACTIONS(5200), + [anon_sym_break] = ACTIONS(5200), + [anon_sym_continue] = ACTIONS(5200), + [anon_sym_defer] = ACTIONS(5200), + [anon_sym_errdefer] = ACTIONS(5200), + [anon_sym_if] = ACTIONS(5200), + [anon_sym_else] = ACTIONS(5200), + [anon_sym_while] = ACTIONS(5200), + [anon_sym_expand] = ACTIONS(5200), + [anon_sym_for] = ACTIONS(5200), + [anon_sym_PIPE2] = ACTIONS(5198), + [anon_sym_match] = ACTIONS(5200), + [anon_sym_DOT_DOT] = ACTIONS(5200), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5198), + [anon_sym_orelse] = ACTIONS(5200), + [anon_sym_or] = ACTIONS(5200), + [anon_sym_and] = ACTIONS(5200), + [anon_sym_EQ_EQ] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5200), + [anon_sym_xor] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5200), + [anon_sym_LT_LT_PIPE] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5200), + [anon_sym_SLASH] = ACTIONS(5200), + [anon_sym_catch] = ACTIONS(5200), + [anon_sym_TILDE] = ACTIONS(5198), + [anon_sym_try] = ACTIONS(5200), + [anon_sym_DOT] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_true] = ACTIONS(5200), + [anon_sym_false] = ACTIONS(5200), + [anon_sym_null] = ACTIONS(5200), + [anon_sym_unreachable] = ACTIONS(5200), + [anon_sym_undefined] = ACTIONS(5200), + [sym_sink] = ACTIONS(5200), + [sym_integer] = ACTIONS(5200), + [sym_float] = ACTIONS(5198), + [anon_sym_DQUOTE] = ACTIONS(5198), + [sym_multiline_string] = ACTIONS(5198), + [sym_character] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5198), + }, + [STATE(3717)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_func] = ACTIONS(5204), + [anon_sym_BANG] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5202), + [anon_sym_LBRACE] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_QMARK] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_void] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym_type] = ACTIONS(5204), + [anon_sym_anyopaque] = ACTIONS(5204), + [anon_sym_bool] = ACTIONS(5204), + [anon_sym_int] = ACTIONS(5204), + [anon_sym_uint] = ACTIONS(5204), + [anon_sym_float] = ACTIONS(5204), + [anon_sym_range] = ACTIONS(5204), + [anon_sym_i8] = ACTIONS(5204), + [anon_sym_i16] = ACTIONS(5204), + [anon_sym_i32] = ACTIONS(5204), + [anon_sym_i64] = ACTIONS(5204), + [anon_sym_u8] = ACTIONS(5204), + [anon_sym_u16] = ACTIONS(5204), + [anon_sym_u32] = ACTIONS(5204), + [anon_sym_u64] = ACTIONS(5204), + [anon_sym_isize] = ACTIONS(5204), + [anon_sym_usize] = ACTIONS(5204), + [anon_sym_f32] = ACTIONS(5204), + [anon_sym_f64] = ACTIONS(5204), + [anon_sym_c_char] = ACTIONS(5204), + [anon_sym_c_schar] = ACTIONS(5204), + [anon_sym_c_uchar] = ACTIONS(5204), + [anon_sym_c_short] = ACTIONS(5204), + [anon_sym_c_ushort] = ACTIONS(5204), + [anon_sym_c_int] = ACTIONS(5204), + [anon_sym_c_uint] = ACTIONS(5204), + [anon_sym_c_long] = ACTIONS(5204), + [anon_sym_c_ulong] = ACTIONS(5204), + [anon_sym_c_longlong] = ACTIONS(5204), + [anon_sym_c_ulonglong] = ACTIONS(5204), + [anon_sym_c_float] = ACTIONS(5204), + [anon_sym_c_double] = ACTIONS(5204), + [anon_sym_c_longdouble] = ACTIONS(5204), + [anon_sym_PLUS_EQ] = ACTIONS(5202), + [anon_sym_DASH_EQ] = ACTIONS(5202), + [anon_sym_STAR_EQ] = ACTIONS(5202), + [anon_sym_SLASH_EQ] = ACTIONS(5202), + [anon_sym_AMP_EQ] = ACTIONS(5202), + [anon_sym_PIPE_EQ] = ACTIONS(5204), + [anon_sym_xor_EQ] = ACTIONS(5202), + [anon_sym_LT_LT_EQ] = ACTIONS(5202), + [anon_sym_GT_GT_EQ] = ACTIONS(5202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5202), + [anon_sym_return] = ACTIONS(5204), + [anon_sym_yield] = ACTIONS(5204), + [anon_sym_break] = ACTIONS(5204), + [anon_sym_continue] = ACTIONS(5204), + [anon_sym_defer] = ACTIONS(5204), + [anon_sym_errdefer] = ACTIONS(5204), + [anon_sym_if] = ACTIONS(5204), + [anon_sym_else] = ACTIONS(5204), + [anon_sym_while] = ACTIONS(5204), + [anon_sym_expand] = ACTIONS(5204), + [anon_sym_for] = ACTIONS(5204), + [anon_sym_PIPE2] = ACTIONS(5202), + [anon_sym_match] = ACTIONS(5204), + [anon_sym_DOT_DOT] = ACTIONS(5204), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5202), + [anon_sym_orelse] = ACTIONS(5204), + [anon_sym_or] = ACTIONS(5204), + [anon_sym_and] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym_xor] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5204), + [anon_sym_LT_LT_PIPE] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_SLASH] = ACTIONS(5204), + [anon_sym_catch] = ACTIONS(5204), + [anon_sym_TILDE] = ACTIONS(5202), + [anon_sym_try] = ACTIONS(5204), + [anon_sym_DOT] = ACTIONS(5204), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym_true] = ACTIONS(5204), + [anon_sym_false] = ACTIONS(5204), + [anon_sym_null] = ACTIONS(5204), + [anon_sym_unreachable] = ACTIONS(5204), + [anon_sym_undefined] = ACTIONS(5204), + [sym_sink] = ACTIONS(5204), + [sym_integer] = ACTIONS(5204), + [sym_float] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [sym_multiline_string] = ACTIONS(5202), + [sym_character] = ACTIONS(5202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5202), + }, + [STATE(3718)] = { + [sym_identifier] = ACTIONS(5208), + [anon_sym_func] = ACTIONS(5208), + [anon_sym_BANG] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_struct] = ACTIONS(5208), + [anon_sym_LPAREN] = ACTIONS(5206), + [anon_sym_LBRACE] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_QMARK] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5206), + [anon_sym_void] = ACTIONS(5208), + [anon_sym_noreturn] = ACTIONS(5208), + [anon_sym_type] = ACTIONS(5208), + [anon_sym_anyopaque] = ACTIONS(5208), + [anon_sym_bool] = ACTIONS(5208), + [anon_sym_int] = ACTIONS(5208), + [anon_sym_uint] = ACTIONS(5208), + [anon_sym_float] = ACTIONS(5208), + [anon_sym_range] = ACTIONS(5208), + [anon_sym_i8] = ACTIONS(5208), + [anon_sym_i16] = ACTIONS(5208), + [anon_sym_i32] = ACTIONS(5208), + [anon_sym_i64] = ACTIONS(5208), + [anon_sym_u8] = ACTIONS(5208), + [anon_sym_u16] = ACTIONS(5208), + [anon_sym_u32] = ACTIONS(5208), + [anon_sym_u64] = ACTIONS(5208), + [anon_sym_isize] = ACTIONS(5208), + [anon_sym_usize] = ACTIONS(5208), + [anon_sym_f32] = ACTIONS(5208), + [anon_sym_f64] = ACTIONS(5208), + [anon_sym_c_char] = ACTIONS(5208), + [anon_sym_c_schar] = ACTIONS(5208), + [anon_sym_c_uchar] = ACTIONS(5208), + [anon_sym_c_short] = ACTIONS(5208), + [anon_sym_c_ushort] = ACTIONS(5208), + [anon_sym_c_int] = ACTIONS(5208), + [anon_sym_c_uint] = ACTIONS(5208), + [anon_sym_c_long] = ACTIONS(5208), + [anon_sym_c_ulong] = ACTIONS(5208), + [anon_sym_c_longlong] = ACTIONS(5208), + [anon_sym_c_ulonglong] = ACTIONS(5208), + [anon_sym_c_float] = ACTIONS(5208), + [anon_sym_c_double] = ACTIONS(5208), + [anon_sym_c_longdouble] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5206), + [anon_sym_DASH_EQ] = ACTIONS(5206), + [anon_sym_STAR_EQ] = ACTIONS(5206), + [anon_sym_SLASH_EQ] = ACTIONS(5206), + [anon_sym_AMP_EQ] = ACTIONS(5206), + [anon_sym_PIPE_EQ] = ACTIONS(5208), + [anon_sym_xor_EQ] = ACTIONS(5206), + [anon_sym_LT_LT_EQ] = ACTIONS(5206), + [anon_sym_GT_GT_EQ] = ACTIONS(5206), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5206), + [anon_sym_return] = ACTIONS(5208), + [anon_sym_yield] = ACTIONS(5208), + [anon_sym_break] = ACTIONS(5208), + [anon_sym_continue] = ACTIONS(5208), + [anon_sym_defer] = ACTIONS(5208), + [anon_sym_errdefer] = ACTIONS(5208), + [anon_sym_if] = ACTIONS(5208), + [anon_sym_else] = ACTIONS(5208), + [anon_sym_while] = ACTIONS(5208), + [anon_sym_expand] = ACTIONS(5208), + [anon_sym_for] = ACTIONS(5208), + [anon_sym_PIPE2] = ACTIONS(5206), + [anon_sym_match] = ACTIONS(5208), + [anon_sym_DOT_DOT] = ACTIONS(5208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5206), + [anon_sym_orelse] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5208), + [anon_sym_and] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + [anon_sym_xor] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5208), + [anon_sym_LT_LT_PIPE] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_SLASH] = ACTIONS(5208), + [anon_sym_catch] = ACTIONS(5208), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_try] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym_true] = ACTIONS(5208), + [anon_sym_false] = ACTIONS(5208), + [anon_sym_null] = ACTIONS(5208), + [anon_sym_unreachable] = ACTIONS(5208), + [anon_sym_undefined] = ACTIONS(5208), + [sym_sink] = ACTIONS(5208), + [sym_integer] = ACTIONS(5208), + [sym_float] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [sym_multiline_string] = ACTIONS(5206), + [sym_character] = ACTIONS(5206), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5206), + }, + [STATE(3719)] = { + [sym_identifier] = ACTIONS(5212), + [anon_sym_func] = ACTIONS(5212), + [anon_sym_BANG] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_struct] = ACTIONS(5212), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_LBRACE] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5210), + [anon_sym_void] = ACTIONS(5212), + [anon_sym_noreturn] = ACTIONS(5212), + [anon_sym_type] = ACTIONS(5212), + [anon_sym_anyopaque] = ACTIONS(5212), + [anon_sym_bool] = ACTIONS(5212), + [anon_sym_int] = ACTIONS(5212), + [anon_sym_uint] = ACTIONS(5212), + [anon_sym_float] = ACTIONS(5212), + [anon_sym_range] = ACTIONS(5212), + [anon_sym_i8] = ACTIONS(5212), + [anon_sym_i16] = ACTIONS(5212), + [anon_sym_i32] = ACTIONS(5212), + [anon_sym_i64] = ACTIONS(5212), + [anon_sym_u8] = ACTIONS(5212), + [anon_sym_u16] = ACTIONS(5212), + [anon_sym_u32] = ACTIONS(5212), + [anon_sym_u64] = ACTIONS(5212), + [anon_sym_isize] = ACTIONS(5212), + [anon_sym_usize] = ACTIONS(5212), + [anon_sym_f32] = ACTIONS(5212), + [anon_sym_f64] = ACTIONS(5212), + [anon_sym_c_char] = ACTIONS(5212), + [anon_sym_c_schar] = ACTIONS(5212), + [anon_sym_c_uchar] = ACTIONS(5212), + [anon_sym_c_short] = ACTIONS(5212), + [anon_sym_c_ushort] = ACTIONS(5212), + [anon_sym_c_int] = ACTIONS(5212), + [anon_sym_c_uint] = ACTIONS(5212), + [anon_sym_c_long] = ACTIONS(5212), + [anon_sym_c_ulong] = ACTIONS(5212), + [anon_sym_c_longlong] = ACTIONS(5212), + [anon_sym_c_ulonglong] = ACTIONS(5212), + [anon_sym_c_float] = ACTIONS(5212), + [anon_sym_c_double] = ACTIONS(5212), + [anon_sym_c_longdouble] = ACTIONS(5212), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5212), + [anon_sym_xor_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5210), + [anon_sym_return] = ACTIONS(5212), + [anon_sym_yield] = ACTIONS(5212), + [anon_sym_break] = ACTIONS(5212), + [anon_sym_continue] = ACTIONS(5212), + [anon_sym_defer] = ACTIONS(5212), + [anon_sym_errdefer] = ACTIONS(5212), + [anon_sym_if] = ACTIONS(5212), + [anon_sym_else] = ACTIONS(5212), + [anon_sym_while] = ACTIONS(5212), + [anon_sym_expand] = ACTIONS(5212), + [anon_sym_for] = ACTIONS(5212), + [anon_sym_PIPE2] = ACTIONS(5210), + [anon_sym_match] = ACTIONS(5212), + [anon_sym_DOT_DOT] = ACTIONS(5212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5210), + [anon_sym_orelse] = ACTIONS(5212), + [anon_sym_or] = ACTIONS(5212), + [anon_sym_and] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5212), + [anon_sym_xor] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_LT_LT_PIPE] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_catch] = ACTIONS(5212), + [anon_sym_TILDE] = ACTIONS(5210), + [anon_sym_try] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_true] = ACTIONS(5212), + [anon_sym_false] = ACTIONS(5212), + [anon_sym_null] = ACTIONS(5212), + [anon_sym_unreachable] = ACTIONS(5212), + [anon_sym_undefined] = ACTIONS(5212), + [sym_sink] = ACTIONS(5212), + [sym_integer] = ACTIONS(5212), + [sym_float] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [sym_multiline_string] = ACTIONS(5210), + [sym_character] = ACTIONS(5210), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5210), + }, + [STATE(3720)] = { + [sym_identifier] = ACTIONS(5216), + [anon_sym_func] = ACTIONS(5216), + [anon_sym_BANG] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_struct] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_LBRACE] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_QMARK] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_void] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym_type] = ACTIONS(5216), + [anon_sym_anyopaque] = ACTIONS(5216), + [anon_sym_bool] = ACTIONS(5216), + [anon_sym_int] = ACTIONS(5216), + [anon_sym_uint] = ACTIONS(5216), + [anon_sym_float] = ACTIONS(5216), + [anon_sym_range] = ACTIONS(5216), + [anon_sym_i8] = ACTIONS(5216), + [anon_sym_i16] = ACTIONS(5216), + [anon_sym_i32] = ACTIONS(5216), + [anon_sym_i64] = ACTIONS(5216), + [anon_sym_u8] = ACTIONS(5216), + [anon_sym_u16] = ACTIONS(5216), + [anon_sym_u32] = ACTIONS(5216), + [anon_sym_u64] = ACTIONS(5216), + [anon_sym_isize] = ACTIONS(5216), + [anon_sym_usize] = ACTIONS(5216), + [anon_sym_f32] = ACTIONS(5216), + [anon_sym_f64] = ACTIONS(5216), + [anon_sym_c_char] = ACTIONS(5216), + [anon_sym_c_schar] = ACTIONS(5216), + [anon_sym_c_uchar] = ACTIONS(5216), + [anon_sym_c_short] = ACTIONS(5216), + [anon_sym_c_ushort] = ACTIONS(5216), + [anon_sym_c_int] = ACTIONS(5216), + [anon_sym_c_uint] = ACTIONS(5216), + [anon_sym_c_long] = ACTIONS(5216), + [anon_sym_c_ulong] = ACTIONS(5216), + [anon_sym_c_longlong] = ACTIONS(5216), + [anon_sym_c_ulonglong] = ACTIONS(5216), + [anon_sym_c_float] = ACTIONS(5216), + [anon_sym_c_double] = ACTIONS(5216), + [anon_sym_c_longdouble] = ACTIONS(5216), + [anon_sym_PLUS_EQ] = ACTIONS(5214), + [anon_sym_DASH_EQ] = ACTIONS(5214), + [anon_sym_STAR_EQ] = ACTIONS(5214), + [anon_sym_SLASH_EQ] = ACTIONS(5214), + [anon_sym_AMP_EQ] = ACTIONS(5214), + [anon_sym_PIPE_EQ] = ACTIONS(5216), + [anon_sym_xor_EQ] = ACTIONS(5214), + [anon_sym_LT_LT_EQ] = ACTIONS(5214), + [anon_sym_GT_GT_EQ] = ACTIONS(5214), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5214), + [anon_sym_return] = ACTIONS(5216), + [anon_sym_yield] = ACTIONS(5216), + [anon_sym_break] = ACTIONS(5216), + [anon_sym_continue] = ACTIONS(5216), + [anon_sym_defer] = ACTIONS(5216), + [anon_sym_errdefer] = ACTIONS(5216), + [anon_sym_if] = ACTIONS(5216), + [anon_sym_else] = ACTIONS(5216), + [anon_sym_while] = ACTIONS(5216), + [anon_sym_expand] = ACTIONS(5216), + [anon_sym_for] = ACTIONS(5216), + [anon_sym_PIPE2] = ACTIONS(5214), + [anon_sym_match] = ACTIONS(5216), + [anon_sym_DOT_DOT] = ACTIONS(5216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5214), + [anon_sym_orelse] = ACTIONS(5216), + [anon_sym_or] = ACTIONS(5216), + [anon_sym_and] = ACTIONS(5216), + [anon_sym_EQ_EQ] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_LT_EQ] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_EQ] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5216), + [anon_sym_xor] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5216), + [anon_sym_LT_LT_PIPE] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5216), + [anon_sym_SLASH] = ACTIONS(5216), + [anon_sym_catch] = ACTIONS(5216), + [anon_sym_TILDE] = ACTIONS(5214), + [anon_sym_try] = ACTIONS(5216), + [anon_sym_DOT] = ACTIONS(5216), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym_true] = ACTIONS(5216), + [anon_sym_false] = ACTIONS(5216), + [anon_sym_null] = ACTIONS(5216), + [anon_sym_unreachable] = ACTIONS(5216), + [anon_sym_undefined] = ACTIONS(5216), + [sym_sink] = ACTIONS(5216), + [sym_integer] = ACTIONS(5216), + [sym_float] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [sym_multiline_string] = ACTIONS(5214), + [sym_character] = ACTIONS(5214), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5214), + }, + [STATE(3721)] = { + [sym_identifier] = ACTIONS(5220), + [anon_sym_func] = ACTIONS(5220), + [anon_sym_BANG] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5220), + [anon_sym_struct] = ACTIONS(5220), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_LBRACE] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_QMARK] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5220), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_void] = ACTIONS(5220), + [anon_sym_noreturn] = ACTIONS(5220), + [anon_sym_type] = ACTIONS(5220), + [anon_sym_anyopaque] = ACTIONS(5220), + [anon_sym_bool] = ACTIONS(5220), + [anon_sym_int] = ACTIONS(5220), + [anon_sym_uint] = ACTIONS(5220), + [anon_sym_float] = ACTIONS(5220), + [anon_sym_range] = ACTIONS(5220), + [anon_sym_i8] = ACTIONS(5220), + [anon_sym_i16] = ACTIONS(5220), + [anon_sym_i32] = ACTIONS(5220), + [anon_sym_i64] = ACTIONS(5220), + [anon_sym_u8] = ACTIONS(5220), + [anon_sym_u16] = ACTIONS(5220), + [anon_sym_u32] = ACTIONS(5220), + [anon_sym_u64] = ACTIONS(5220), + [anon_sym_isize] = ACTIONS(5220), + [anon_sym_usize] = ACTIONS(5220), + [anon_sym_f32] = ACTIONS(5220), + [anon_sym_f64] = ACTIONS(5220), + [anon_sym_c_char] = ACTIONS(5220), + [anon_sym_c_schar] = ACTIONS(5220), + [anon_sym_c_uchar] = ACTIONS(5220), + [anon_sym_c_short] = ACTIONS(5220), + [anon_sym_c_ushort] = ACTIONS(5220), + [anon_sym_c_int] = ACTIONS(5220), + [anon_sym_c_uint] = ACTIONS(5220), + [anon_sym_c_long] = ACTIONS(5220), + [anon_sym_c_ulong] = ACTIONS(5220), + [anon_sym_c_longlong] = ACTIONS(5220), + [anon_sym_c_ulonglong] = ACTIONS(5220), + [anon_sym_c_float] = ACTIONS(5220), + [anon_sym_c_double] = ACTIONS(5220), + [anon_sym_c_longdouble] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5218), + [anon_sym_DASH_EQ] = ACTIONS(5218), + [anon_sym_STAR_EQ] = ACTIONS(5218), + [anon_sym_SLASH_EQ] = ACTIONS(5218), + [anon_sym_AMP_EQ] = ACTIONS(5218), + [anon_sym_PIPE_EQ] = ACTIONS(5220), + [anon_sym_xor_EQ] = ACTIONS(5218), + [anon_sym_LT_LT_EQ] = ACTIONS(5218), + [anon_sym_GT_GT_EQ] = ACTIONS(5218), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5218), + [anon_sym_return] = ACTIONS(5220), + [anon_sym_yield] = ACTIONS(5220), + [anon_sym_break] = ACTIONS(5220), + [anon_sym_continue] = ACTIONS(5220), + [anon_sym_defer] = ACTIONS(5220), + [anon_sym_errdefer] = ACTIONS(5220), + [anon_sym_if] = ACTIONS(5220), + [anon_sym_else] = ACTIONS(5220), + [anon_sym_while] = ACTIONS(5220), + [anon_sym_expand] = ACTIONS(5220), + [anon_sym_for] = ACTIONS(5220), + [anon_sym_PIPE2] = ACTIONS(5218), + [anon_sym_match] = ACTIONS(5220), + [anon_sym_DOT_DOT] = ACTIONS(5220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5218), + [anon_sym_orelse] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5220), + [anon_sym_and] = ACTIONS(5220), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_AMP] = ACTIONS(5220), + [anon_sym_xor] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5220), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_LT_LT_PIPE] = ACTIONS(5220), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_catch] = ACTIONS(5220), + [anon_sym_TILDE] = ACTIONS(5218), + [anon_sym_try] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym_true] = ACTIONS(5220), + [anon_sym_false] = ACTIONS(5220), + [anon_sym_null] = ACTIONS(5220), + [anon_sym_unreachable] = ACTIONS(5220), + [anon_sym_undefined] = ACTIONS(5220), + [sym_sink] = ACTIONS(5220), + [sym_integer] = ACTIONS(5220), + [sym_float] = ACTIONS(5218), + [anon_sym_DQUOTE] = ACTIONS(5218), + [sym_multiline_string] = ACTIONS(5218), + [sym_character] = ACTIONS(5218), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5218), + }, + [STATE(3722)] = { + [sym_identifier] = ACTIONS(5224), + [anon_sym_func] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(5224), + [anon_sym_struct] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_DOLLAR] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_QMARK] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_void] = ACTIONS(5224), + [anon_sym_noreturn] = ACTIONS(5224), + [anon_sym_type] = ACTIONS(5224), + [anon_sym_anyopaque] = ACTIONS(5224), + [anon_sym_bool] = ACTIONS(5224), + [anon_sym_int] = ACTIONS(5224), + [anon_sym_uint] = ACTIONS(5224), + [anon_sym_float] = ACTIONS(5224), + [anon_sym_range] = ACTIONS(5224), + [anon_sym_i8] = ACTIONS(5224), + [anon_sym_i16] = ACTIONS(5224), + [anon_sym_i32] = ACTIONS(5224), + [anon_sym_i64] = ACTIONS(5224), + [anon_sym_u8] = ACTIONS(5224), + [anon_sym_u16] = ACTIONS(5224), + [anon_sym_u32] = ACTIONS(5224), + [anon_sym_u64] = ACTIONS(5224), + [anon_sym_isize] = ACTIONS(5224), + [anon_sym_usize] = ACTIONS(5224), + [anon_sym_f32] = ACTIONS(5224), + [anon_sym_f64] = ACTIONS(5224), + [anon_sym_c_char] = ACTIONS(5224), + [anon_sym_c_schar] = ACTIONS(5224), + [anon_sym_c_uchar] = ACTIONS(5224), + [anon_sym_c_short] = ACTIONS(5224), + [anon_sym_c_ushort] = ACTIONS(5224), + [anon_sym_c_int] = ACTIONS(5224), + [anon_sym_c_uint] = ACTIONS(5224), + [anon_sym_c_long] = ACTIONS(5224), + [anon_sym_c_ulong] = ACTIONS(5224), + [anon_sym_c_longlong] = ACTIONS(5224), + [anon_sym_c_ulonglong] = ACTIONS(5224), + [anon_sym_c_float] = ACTIONS(5224), + [anon_sym_c_double] = ACTIONS(5224), + [anon_sym_c_longdouble] = ACTIONS(5224), + [anon_sym_PLUS_EQ] = ACTIONS(5222), + [anon_sym_DASH_EQ] = ACTIONS(5222), + [anon_sym_STAR_EQ] = ACTIONS(5222), + [anon_sym_SLASH_EQ] = ACTIONS(5222), + [anon_sym_AMP_EQ] = ACTIONS(5222), + [anon_sym_PIPE_EQ] = ACTIONS(5224), + [anon_sym_xor_EQ] = ACTIONS(5222), + [anon_sym_LT_LT_EQ] = ACTIONS(5222), + [anon_sym_GT_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5222), + [anon_sym_return] = ACTIONS(5224), + [anon_sym_yield] = ACTIONS(5224), + [anon_sym_break] = ACTIONS(5224), + [anon_sym_continue] = ACTIONS(5224), + [anon_sym_defer] = ACTIONS(5224), + [anon_sym_errdefer] = ACTIONS(5224), + [anon_sym_if] = ACTIONS(5224), + [anon_sym_else] = ACTIONS(5224), + [anon_sym_while] = ACTIONS(5224), + [anon_sym_expand] = ACTIONS(5224), + [anon_sym_for] = ACTIONS(5224), + [anon_sym_PIPE2] = ACTIONS(5222), + [anon_sym_match] = ACTIONS(5224), + [anon_sym_DOT_DOT] = ACTIONS(5224), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5222), + [anon_sym_orelse] = ACTIONS(5224), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_and] = ACTIONS(5224), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_xor] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5224), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_LT_LT_PIPE] = ACTIONS(5224), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_catch] = ACTIONS(5224), + [anon_sym_TILDE] = ACTIONS(5222), + [anon_sym_try] = ACTIONS(5224), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_true] = ACTIONS(5224), + [anon_sym_false] = ACTIONS(5224), + [anon_sym_null] = ACTIONS(5224), + [anon_sym_unreachable] = ACTIONS(5224), + [anon_sym_undefined] = ACTIONS(5224), + [sym_sink] = ACTIONS(5224), + [sym_integer] = ACTIONS(5224), + [sym_float] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [sym_multiline_string] = ACTIONS(5222), + [sym_character] = ACTIONS(5222), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5222), + }, + [STATE(3723)] = { + [sym_identifier] = ACTIONS(5228), + [anon_sym_func] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(5228), + [anon_sym_struct] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_DOLLAR] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_QMARK] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_void] = ACTIONS(5228), + [anon_sym_noreturn] = ACTIONS(5228), + [anon_sym_type] = ACTIONS(5228), + [anon_sym_anyopaque] = ACTIONS(5228), + [anon_sym_bool] = ACTIONS(5228), + [anon_sym_int] = ACTIONS(5228), + [anon_sym_uint] = ACTIONS(5228), + [anon_sym_float] = ACTIONS(5228), + [anon_sym_range] = ACTIONS(5228), + [anon_sym_i8] = ACTIONS(5228), + [anon_sym_i16] = ACTIONS(5228), + [anon_sym_i32] = ACTIONS(5228), + [anon_sym_i64] = ACTIONS(5228), + [anon_sym_u8] = ACTIONS(5228), + [anon_sym_u16] = ACTIONS(5228), + [anon_sym_u32] = ACTIONS(5228), + [anon_sym_u64] = ACTIONS(5228), + [anon_sym_isize] = ACTIONS(5228), + [anon_sym_usize] = ACTIONS(5228), + [anon_sym_f32] = ACTIONS(5228), + [anon_sym_f64] = ACTIONS(5228), + [anon_sym_c_char] = ACTIONS(5228), + [anon_sym_c_schar] = ACTIONS(5228), + [anon_sym_c_uchar] = ACTIONS(5228), + [anon_sym_c_short] = ACTIONS(5228), + [anon_sym_c_ushort] = ACTIONS(5228), + [anon_sym_c_int] = ACTIONS(5228), + [anon_sym_c_uint] = ACTIONS(5228), + [anon_sym_c_long] = ACTIONS(5228), + [anon_sym_c_ulong] = ACTIONS(5228), + [anon_sym_c_longlong] = ACTIONS(5228), + [anon_sym_c_ulonglong] = ACTIONS(5228), + [anon_sym_c_float] = ACTIONS(5228), + [anon_sym_c_double] = ACTIONS(5228), + [anon_sym_c_longdouble] = ACTIONS(5228), + [anon_sym_PLUS_EQ] = ACTIONS(5226), + [anon_sym_DASH_EQ] = ACTIONS(5226), + [anon_sym_STAR_EQ] = ACTIONS(5226), + [anon_sym_SLASH_EQ] = ACTIONS(5226), + [anon_sym_AMP_EQ] = ACTIONS(5226), + [anon_sym_PIPE_EQ] = ACTIONS(5228), + [anon_sym_xor_EQ] = ACTIONS(5226), + [anon_sym_LT_LT_EQ] = ACTIONS(5226), + [anon_sym_GT_GT_EQ] = ACTIONS(5226), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5226), + [anon_sym_return] = ACTIONS(5228), + [anon_sym_yield] = ACTIONS(5228), + [anon_sym_break] = ACTIONS(5228), + [anon_sym_continue] = ACTIONS(5228), + [anon_sym_defer] = ACTIONS(5228), + [anon_sym_errdefer] = ACTIONS(5228), + [anon_sym_if] = ACTIONS(5228), + [anon_sym_else] = ACTIONS(5228), + [anon_sym_while] = ACTIONS(5228), + [anon_sym_expand] = ACTIONS(5228), + [anon_sym_for] = ACTIONS(5228), + [anon_sym_PIPE2] = ACTIONS(5226), + [anon_sym_match] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5226), + [anon_sym_orelse] = ACTIONS(5228), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_and] = ACTIONS(5228), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_xor] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_LT_LT_PIPE] = ACTIONS(5228), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_catch] = ACTIONS(5228), + [anon_sym_TILDE] = ACTIONS(5226), + [anon_sym_try] = ACTIONS(5228), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_true] = ACTIONS(5228), + [anon_sym_false] = ACTIONS(5228), + [anon_sym_null] = ACTIONS(5228), + [anon_sym_unreachable] = ACTIONS(5228), + [anon_sym_undefined] = ACTIONS(5228), + [sym_sink] = ACTIONS(5228), + [sym_integer] = ACTIONS(5228), + [sym_float] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [sym_multiline_string] = ACTIONS(5226), + [sym_character] = ACTIONS(5226), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5226), + }, + [STATE(3724)] = { + [sym_identifier] = ACTIONS(5232), + [anon_sym_func] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5232), + [anon_sym_struct] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(5230), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_QMARK] = ACTIONS(5230), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_void] = ACTIONS(5232), + [anon_sym_noreturn] = ACTIONS(5232), + [anon_sym_type] = ACTIONS(5232), + [anon_sym_anyopaque] = ACTIONS(5232), + [anon_sym_bool] = ACTIONS(5232), + [anon_sym_int] = ACTIONS(5232), + [anon_sym_uint] = ACTIONS(5232), + [anon_sym_float] = ACTIONS(5232), + [anon_sym_range] = ACTIONS(5232), + [anon_sym_i8] = ACTIONS(5232), + [anon_sym_i16] = ACTIONS(5232), + [anon_sym_i32] = ACTIONS(5232), + [anon_sym_i64] = ACTIONS(5232), + [anon_sym_u8] = ACTIONS(5232), + [anon_sym_u16] = ACTIONS(5232), + [anon_sym_u32] = ACTIONS(5232), + [anon_sym_u64] = ACTIONS(5232), + [anon_sym_isize] = ACTIONS(5232), + [anon_sym_usize] = ACTIONS(5232), + [anon_sym_f32] = ACTIONS(5232), + [anon_sym_f64] = ACTIONS(5232), + [anon_sym_c_char] = ACTIONS(5232), + [anon_sym_c_schar] = ACTIONS(5232), + [anon_sym_c_uchar] = ACTIONS(5232), + [anon_sym_c_short] = ACTIONS(5232), + [anon_sym_c_ushort] = ACTIONS(5232), + [anon_sym_c_int] = ACTIONS(5232), + [anon_sym_c_uint] = ACTIONS(5232), + [anon_sym_c_long] = ACTIONS(5232), + [anon_sym_c_ulong] = ACTIONS(5232), + [anon_sym_c_longlong] = ACTIONS(5232), + [anon_sym_c_ulonglong] = ACTIONS(5232), + [anon_sym_c_float] = ACTIONS(5232), + [anon_sym_c_double] = ACTIONS(5232), + [anon_sym_c_longdouble] = ACTIONS(5232), + [anon_sym_PLUS_EQ] = ACTIONS(5230), + [anon_sym_DASH_EQ] = ACTIONS(5230), + [anon_sym_STAR_EQ] = ACTIONS(5230), + [anon_sym_SLASH_EQ] = ACTIONS(5230), + [anon_sym_AMP_EQ] = ACTIONS(5230), + [anon_sym_PIPE_EQ] = ACTIONS(5232), + [anon_sym_xor_EQ] = ACTIONS(5230), + [anon_sym_LT_LT_EQ] = ACTIONS(5230), + [anon_sym_GT_GT_EQ] = ACTIONS(5230), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5230), + [anon_sym_return] = ACTIONS(5232), + [anon_sym_yield] = ACTIONS(5232), + [anon_sym_break] = ACTIONS(5232), + [anon_sym_continue] = ACTIONS(5232), + [anon_sym_defer] = ACTIONS(5232), + [anon_sym_errdefer] = ACTIONS(5232), + [anon_sym_if] = ACTIONS(5232), + [anon_sym_else] = ACTIONS(5232), + [anon_sym_while] = ACTIONS(5232), + [anon_sym_expand] = ACTIONS(5232), + [anon_sym_for] = ACTIONS(5232), + [anon_sym_PIPE2] = ACTIONS(5230), + [anon_sym_match] = ACTIONS(5232), + [anon_sym_DOT_DOT] = ACTIONS(5232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5230), + [anon_sym_orelse] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5230), + [anon_sym_BANG_EQ] = ACTIONS(5230), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_LT_EQ] = ACTIONS(5230), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_GT_EQ] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(5232), + [anon_sym_xor] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5232), + [anon_sym_GT_GT] = ACTIONS(5232), + [anon_sym_LT_LT_PIPE] = ACTIONS(5232), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_catch] = ACTIONS(5232), + [anon_sym_TILDE] = ACTIONS(5230), + [anon_sym_try] = ACTIONS(5232), + [anon_sym_DOT] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5230), + [anon_sym_true] = ACTIONS(5232), + [anon_sym_false] = ACTIONS(5232), + [anon_sym_null] = ACTIONS(5232), + [anon_sym_unreachable] = ACTIONS(5232), + [anon_sym_undefined] = ACTIONS(5232), + [sym_sink] = ACTIONS(5232), + [sym_integer] = ACTIONS(5232), + [sym_float] = ACTIONS(5230), + [anon_sym_DQUOTE] = ACTIONS(5230), + [sym_multiline_string] = ACTIONS(5230), + [sym_character] = ACTIONS(5230), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5230), + }, + [STATE(3725)] = { + [sym_identifier] = ACTIONS(5236), + [anon_sym_func] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_struct] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_void] = ACTIONS(5236), + [anon_sym_noreturn] = ACTIONS(5236), + [anon_sym_type] = ACTIONS(5236), + [anon_sym_anyopaque] = ACTIONS(5236), + [anon_sym_bool] = ACTIONS(5236), + [anon_sym_int] = ACTIONS(5236), + [anon_sym_uint] = ACTIONS(5236), + [anon_sym_float] = ACTIONS(5236), + [anon_sym_range] = ACTIONS(5236), + [anon_sym_i8] = ACTIONS(5236), + [anon_sym_i16] = ACTIONS(5236), + [anon_sym_i32] = ACTIONS(5236), + [anon_sym_i64] = ACTIONS(5236), + [anon_sym_u8] = ACTIONS(5236), + [anon_sym_u16] = ACTIONS(5236), + [anon_sym_u32] = ACTIONS(5236), + [anon_sym_u64] = ACTIONS(5236), + [anon_sym_isize] = ACTIONS(5236), + [anon_sym_usize] = ACTIONS(5236), + [anon_sym_f32] = ACTIONS(5236), + [anon_sym_f64] = ACTIONS(5236), + [anon_sym_c_char] = ACTIONS(5236), + [anon_sym_c_schar] = ACTIONS(5236), + [anon_sym_c_uchar] = ACTIONS(5236), + [anon_sym_c_short] = ACTIONS(5236), + [anon_sym_c_ushort] = ACTIONS(5236), + [anon_sym_c_int] = ACTIONS(5236), + [anon_sym_c_uint] = ACTIONS(5236), + [anon_sym_c_long] = ACTIONS(5236), + [anon_sym_c_ulong] = ACTIONS(5236), + [anon_sym_c_longlong] = ACTIONS(5236), + [anon_sym_c_ulonglong] = ACTIONS(5236), + [anon_sym_c_float] = ACTIONS(5236), + [anon_sym_c_double] = ACTIONS(5236), + [anon_sym_c_longdouble] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [anon_sym_DASH_EQ] = ACTIONS(5234), + [anon_sym_STAR_EQ] = ACTIONS(5234), + [anon_sym_SLASH_EQ] = ACTIONS(5234), + [anon_sym_AMP_EQ] = ACTIONS(5234), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_xor_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_EQ] = ACTIONS(5234), + [anon_sym_GT_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5234), + [anon_sym_return] = ACTIONS(5236), + [anon_sym_yield] = ACTIONS(5236), + [anon_sym_break] = ACTIONS(5236), + [anon_sym_continue] = ACTIONS(5236), + [anon_sym_defer] = ACTIONS(5236), + [anon_sym_errdefer] = ACTIONS(5236), + [anon_sym_if] = ACTIONS(5236), + [anon_sym_else] = ACTIONS(5236), + [anon_sym_while] = ACTIONS(5236), + [anon_sym_expand] = ACTIONS(5236), + [anon_sym_for] = ACTIONS(5236), + [anon_sym_PIPE2] = ACTIONS(5234), + [anon_sym_match] = ACTIONS(5236), + [anon_sym_DOT_DOT] = ACTIONS(5236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5234), + [anon_sym_orelse] = ACTIONS(5236), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_LT_LT_PIPE] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_catch] = ACTIONS(5236), + [anon_sym_TILDE] = ACTIONS(5234), + [anon_sym_try] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_true] = ACTIONS(5236), + [anon_sym_false] = ACTIONS(5236), + [anon_sym_null] = ACTIONS(5236), + [anon_sym_unreachable] = ACTIONS(5236), + [anon_sym_undefined] = ACTIONS(5236), + [sym_sink] = ACTIONS(5236), + [sym_integer] = ACTIONS(5236), + [sym_float] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [sym_multiline_string] = ACTIONS(5234), + [sym_character] = ACTIONS(5234), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5234), + }, + [STATE(3726)] = { + [sym_identifier] = ACTIONS(5240), + [anon_sym_func] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_EQ] = ACTIONS(5240), + [anon_sym_struct] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_DOLLAR] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_QMARK] = ACTIONS(5238), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_void] = ACTIONS(5240), + [anon_sym_noreturn] = ACTIONS(5240), + [anon_sym_type] = ACTIONS(5240), + [anon_sym_anyopaque] = ACTIONS(5240), + [anon_sym_bool] = ACTIONS(5240), + [anon_sym_int] = ACTIONS(5240), + [anon_sym_uint] = ACTIONS(5240), + [anon_sym_float] = ACTIONS(5240), + [anon_sym_range] = ACTIONS(5240), + [anon_sym_i8] = ACTIONS(5240), + [anon_sym_i16] = ACTIONS(5240), + [anon_sym_i32] = ACTIONS(5240), + [anon_sym_i64] = ACTIONS(5240), + [anon_sym_u8] = ACTIONS(5240), + [anon_sym_u16] = ACTIONS(5240), + [anon_sym_u32] = ACTIONS(5240), + [anon_sym_u64] = ACTIONS(5240), + [anon_sym_isize] = ACTIONS(5240), + [anon_sym_usize] = ACTIONS(5240), + [anon_sym_f32] = ACTIONS(5240), + [anon_sym_f64] = ACTIONS(5240), + [anon_sym_c_char] = ACTIONS(5240), + [anon_sym_c_schar] = ACTIONS(5240), + [anon_sym_c_uchar] = ACTIONS(5240), + [anon_sym_c_short] = ACTIONS(5240), + [anon_sym_c_ushort] = ACTIONS(5240), + [anon_sym_c_int] = ACTIONS(5240), + [anon_sym_c_uint] = ACTIONS(5240), + [anon_sym_c_long] = ACTIONS(5240), + [anon_sym_c_ulong] = ACTIONS(5240), + [anon_sym_c_longlong] = ACTIONS(5240), + [anon_sym_c_ulonglong] = ACTIONS(5240), + [anon_sym_c_float] = ACTIONS(5240), + [anon_sym_c_double] = ACTIONS(5240), + [anon_sym_c_longdouble] = ACTIONS(5240), + [anon_sym_PLUS_EQ] = ACTIONS(5238), + [anon_sym_DASH_EQ] = ACTIONS(5238), + [anon_sym_STAR_EQ] = ACTIONS(5238), + [anon_sym_SLASH_EQ] = ACTIONS(5238), + [anon_sym_AMP_EQ] = ACTIONS(5238), + [anon_sym_PIPE_EQ] = ACTIONS(5240), + [anon_sym_xor_EQ] = ACTIONS(5238), + [anon_sym_LT_LT_EQ] = ACTIONS(5238), + [anon_sym_GT_GT_EQ] = ACTIONS(5238), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5238), + [anon_sym_return] = ACTIONS(5240), + [anon_sym_yield] = ACTIONS(5240), + [anon_sym_break] = ACTIONS(5240), + [anon_sym_continue] = ACTIONS(5240), + [anon_sym_defer] = ACTIONS(5240), + [anon_sym_errdefer] = ACTIONS(5240), + [anon_sym_if] = ACTIONS(5240), + [anon_sym_else] = ACTIONS(5240), + [anon_sym_while] = ACTIONS(5240), + [anon_sym_expand] = ACTIONS(5240), + [anon_sym_for] = ACTIONS(5240), + [anon_sym_PIPE2] = ACTIONS(5238), + [anon_sym_match] = ACTIONS(5240), + [anon_sym_DOT_DOT] = ACTIONS(5240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5238), + [anon_sym_orelse] = ACTIONS(5240), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_and] = ACTIONS(5240), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(5240), + [anon_sym_xor] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5240), + [anon_sym_GT_GT] = ACTIONS(5240), + [anon_sym_LT_LT_PIPE] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_catch] = ACTIONS(5240), + [anon_sym_TILDE] = ACTIONS(5238), + [anon_sym_try] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_true] = ACTIONS(5240), + [anon_sym_false] = ACTIONS(5240), + [anon_sym_null] = ACTIONS(5240), + [anon_sym_unreachable] = ACTIONS(5240), + [anon_sym_undefined] = ACTIONS(5240), + [sym_sink] = ACTIONS(5240), + [sym_integer] = ACTIONS(5240), + [sym_float] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [sym_multiline_string] = ACTIONS(5238), + [sym_character] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5238), + }, + [STATE(3727)] = { + [sym_identifier] = ACTIONS(5244), + [anon_sym_func] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_EQ] = ACTIONS(5244), + [anon_sym_struct] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_DOLLAR] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_QMARK] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_void] = ACTIONS(5244), + [anon_sym_noreturn] = ACTIONS(5244), + [anon_sym_type] = ACTIONS(5244), + [anon_sym_anyopaque] = ACTIONS(5244), + [anon_sym_bool] = ACTIONS(5244), + [anon_sym_int] = ACTIONS(5244), + [anon_sym_uint] = ACTIONS(5244), + [anon_sym_float] = ACTIONS(5244), + [anon_sym_range] = ACTIONS(5244), + [anon_sym_i8] = ACTIONS(5244), + [anon_sym_i16] = ACTIONS(5244), + [anon_sym_i32] = ACTIONS(5244), + [anon_sym_i64] = ACTIONS(5244), + [anon_sym_u8] = ACTIONS(5244), + [anon_sym_u16] = ACTIONS(5244), + [anon_sym_u32] = ACTIONS(5244), + [anon_sym_u64] = ACTIONS(5244), + [anon_sym_isize] = ACTIONS(5244), + [anon_sym_usize] = ACTIONS(5244), + [anon_sym_f32] = ACTIONS(5244), + [anon_sym_f64] = ACTIONS(5244), + [anon_sym_c_char] = ACTIONS(5244), + [anon_sym_c_schar] = ACTIONS(5244), + [anon_sym_c_uchar] = ACTIONS(5244), + [anon_sym_c_short] = ACTIONS(5244), + [anon_sym_c_ushort] = ACTIONS(5244), + [anon_sym_c_int] = ACTIONS(5244), + [anon_sym_c_uint] = ACTIONS(5244), + [anon_sym_c_long] = ACTIONS(5244), + [anon_sym_c_ulong] = ACTIONS(5244), + [anon_sym_c_longlong] = ACTIONS(5244), + [anon_sym_c_ulonglong] = ACTIONS(5244), + [anon_sym_c_float] = ACTIONS(5244), + [anon_sym_c_double] = ACTIONS(5244), + [anon_sym_c_longdouble] = ACTIONS(5244), + [anon_sym_PLUS_EQ] = ACTIONS(5242), + [anon_sym_DASH_EQ] = ACTIONS(5242), + [anon_sym_STAR_EQ] = ACTIONS(5242), + [anon_sym_SLASH_EQ] = ACTIONS(5242), + [anon_sym_AMP_EQ] = ACTIONS(5242), + [anon_sym_PIPE_EQ] = ACTIONS(5244), + [anon_sym_xor_EQ] = ACTIONS(5242), + [anon_sym_LT_LT_EQ] = ACTIONS(5242), + [anon_sym_GT_GT_EQ] = ACTIONS(5242), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5242), + [anon_sym_return] = ACTIONS(5244), + [anon_sym_yield] = ACTIONS(5244), + [anon_sym_break] = ACTIONS(5244), + [anon_sym_continue] = ACTIONS(5244), + [anon_sym_defer] = ACTIONS(5244), + [anon_sym_errdefer] = ACTIONS(5244), + [anon_sym_if] = ACTIONS(5244), + [anon_sym_else] = ACTIONS(5244), + [anon_sym_while] = ACTIONS(5244), + [anon_sym_expand] = ACTIONS(5244), + [anon_sym_for] = ACTIONS(5244), + [anon_sym_PIPE2] = ACTIONS(5242), + [anon_sym_match] = ACTIONS(5244), + [anon_sym_DOT_DOT] = ACTIONS(5244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5242), + [anon_sym_orelse] = ACTIONS(5244), + [anon_sym_or] = ACTIONS(5244), + [anon_sym_and] = ACTIONS(5244), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_xor] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5244), + [anon_sym_GT_GT] = ACTIONS(5244), + [anon_sym_LT_LT_PIPE] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_catch] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5242), + [anon_sym_try] = ACTIONS(5244), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_true] = ACTIONS(5244), + [anon_sym_false] = ACTIONS(5244), + [anon_sym_null] = ACTIONS(5244), + [anon_sym_unreachable] = ACTIONS(5244), + [anon_sym_undefined] = ACTIONS(5244), + [sym_sink] = ACTIONS(5244), + [sym_integer] = ACTIONS(5244), + [sym_float] = ACTIONS(5242), + [anon_sym_DQUOTE] = ACTIONS(5242), + [sym_multiline_string] = ACTIONS(5242), + [sym_character] = ACTIONS(5242), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5242), + }, + [STATE(3728)] = { + [sym_identifier] = ACTIONS(5248), + [anon_sym_func] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_EQ] = ACTIONS(5248), + [anon_sym_struct] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_DOLLAR] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_QMARK] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_void] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym_type] = ACTIONS(5248), + [anon_sym_anyopaque] = ACTIONS(5248), + [anon_sym_bool] = ACTIONS(5248), + [anon_sym_int] = ACTIONS(5248), + [anon_sym_uint] = ACTIONS(5248), + [anon_sym_float] = ACTIONS(5248), + [anon_sym_range] = ACTIONS(5248), + [anon_sym_i8] = ACTIONS(5248), + [anon_sym_i16] = ACTIONS(5248), + [anon_sym_i32] = ACTIONS(5248), + [anon_sym_i64] = ACTIONS(5248), + [anon_sym_u8] = ACTIONS(5248), + [anon_sym_u16] = ACTIONS(5248), + [anon_sym_u32] = ACTIONS(5248), + [anon_sym_u64] = ACTIONS(5248), + [anon_sym_isize] = ACTIONS(5248), + [anon_sym_usize] = ACTIONS(5248), + [anon_sym_f32] = ACTIONS(5248), + [anon_sym_f64] = ACTIONS(5248), + [anon_sym_c_char] = ACTIONS(5248), + [anon_sym_c_schar] = ACTIONS(5248), + [anon_sym_c_uchar] = ACTIONS(5248), + [anon_sym_c_short] = ACTIONS(5248), + [anon_sym_c_ushort] = ACTIONS(5248), + [anon_sym_c_int] = ACTIONS(5248), + [anon_sym_c_uint] = ACTIONS(5248), + [anon_sym_c_long] = ACTIONS(5248), + [anon_sym_c_ulong] = ACTIONS(5248), + [anon_sym_c_longlong] = ACTIONS(5248), + [anon_sym_c_ulonglong] = ACTIONS(5248), + [anon_sym_c_float] = ACTIONS(5248), + [anon_sym_c_double] = ACTIONS(5248), + [anon_sym_c_longdouble] = ACTIONS(5248), + [anon_sym_PLUS_EQ] = ACTIONS(5246), + [anon_sym_DASH_EQ] = ACTIONS(5246), + [anon_sym_STAR_EQ] = ACTIONS(5246), + [anon_sym_SLASH_EQ] = ACTIONS(5246), + [anon_sym_AMP_EQ] = ACTIONS(5246), + [anon_sym_PIPE_EQ] = ACTIONS(5248), + [anon_sym_xor_EQ] = ACTIONS(5246), + [anon_sym_LT_LT_EQ] = ACTIONS(5246), + [anon_sym_GT_GT_EQ] = ACTIONS(5246), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5246), + [anon_sym_return] = ACTIONS(5248), + [anon_sym_yield] = ACTIONS(5248), + [anon_sym_break] = ACTIONS(5248), + [anon_sym_continue] = ACTIONS(5248), + [anon_sym_defer] = ACTIONS(5248), + [anon_sym_errdefer] = ACTIONS(5248), + [anon_sym_if] = ACTIONS(5248), + [anon_sym_else] = ACTIONS(5248), + [anon_sym_while] = ACTIONS(5248), + [anon_sym_expand] = ACTIONS(5248), + [anon_sym_for] = ACTIONS(5248), + [anon_sym_PIPE2] = ACTIONS(5246), + [anon_sym_match] = ACTIONS(5248), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5246), + [anon_sym_orelse] = ACTIONS(5248), + [anon_sym_or] = ACTIONS(5248), + [anon_sym_and] = ACTIONS(5248), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5248), + [anon_sym_xor] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5248), + [anon_sym_GT_GT] = ACTIONS(5248), + [anon_sym_LT_LT_PIPE] = ACTIONS(5248), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_catch] = ACTIONS(5248), + [anon_sym_TILDE] = ACTIONS(5246), + [anon_sym_try] = ACTIONS(5248), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_true] = ACTIONS(5248), + [anon_sym_false] = ACTIONS(5248), + [anon_sym_null] = ACTIONS(5248), + [anon_sym_unreachable] = ACTIONS(5248), + [anon_sym_undefined] = ACTIONS(5248), + [sym_sink] = ACTIONS(5248), + [sym_integer] = ACTIONS(5248), + [sym_float] = ACTIONS(5246), + [anon_sym_DQUOTE] = ACTIONS(5246), + [sym_multiline_string] = ACTIONS(5246), + [sym_character] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5246), + }, + [STATE(3729)] = { + [sym_identifier] = ACTIONS(5252), + [anon_sym_func] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5252), + [anon_sym_EQ] = ACTIONS(5252), + [anon_sym_struct] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5252), + [anon_sym_DOLLAR] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5252), + [anon_sym_QMARK] = ACTIONS(5250), + [anon_sym_STAR] = ACTIONS(5252), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_void] = ACTIONS(5252), + [anon_sym_noreturn] = ACTIONS(5252), + [anon_sym_type] = ACTIONS(5252), + [anon_sym_anyopaque] = ACTIONS(5252), + [anon_sym_bool] = ACTIONS(5252), + [anon_sym_int] = ACTIONS(5252), + [anon_sym_uint] = ACTIONS(5252), + [anon_sym_float] = ACTIONS(5252), + [anon_sym_range] = ACTIONS(5252), + [anon_sym_i8] = ACTIONS(5252), + [anon_sym_i16] = ACTIONS(5252), + [anon_sym_i32] = ACTIONS(5252), + [anon_sym_i64] = ACTIONS(5252), + [anon_sym_u8] = ACTIONS(5252), + [anon_sym_u16] = ACTIONS(5252), + [anon_sym_u32] = ACTIONS(5252), + [anon_sym_u64] = ACTIONS(5252), + [anon_sym_isize] = ACTIONS(5252), + [anon_sym_usize] = ACTIONS(5252), + [anon_sym_f32] = ACTIONS(5252), + [anon_sym_f64] = ACTIONS(5252), + [anon_sym_c_char] = ACTIONS(5252), + [anon_sym_c_schar] = ACTIONS(5252), + [anon_sym_c_uchar] = ACTIONS(5252), + [anon_sym_c_short] = ACTIONS(5252), + [anon_sym_c_ushort] = ACTIONS(5252), + [anon_sym_c_int] = ACTIONS(5252), + [anon_sym_c_uint] = ACTIONS(5252), + [anon_sym_c_long] = ACTIONS(5252), + [anon_sym_c_ulong] = ACTIONS(5252), + [anon_sym_c_longlong] = ACTIONS(5252), + [anon_sym_c_ulonglong] = ACTIONS(5252), + [anon_sym_c_float] = ACTIONS(5252), + [anon_sym_c_double] = ACTIONS(5252), + [anon_sym_c_longdouble] = ACTIONS(5252), + [anon_sym_PLUS_EQ] = ACTIONS(5250), + [anon_sym_DASH_EQ] = ACTIONS(5250), + [anon_sym_STAR_EQ] = ACTIONS(5250), + [anon_sym_SLASH_EQ] = ACTIONS(5250), + [anon_sym_AMP_EQ] = ACTIONS(5250), + [anon_sym_PIPE_EQ] = ACTIONS(5252), + [anon_sym_xor_EQ] = ACTIONS(5250), + [anon_sym_LT_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_GT_EQ] = ACTIONS(5250), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5250), + [anon_sym_return] = ACTIONS(5252), + [anon_sym_yield] = ACTIONS(5252), + [anon_sym_break] = ACTIONS(5252), + [anon_sym_continue] = ACTIONS(5252), + [anon_sym_defer] = ACTIONS(5252), + [anon_sym_errdefer] = ACTIONS(5252), + [anon_sym_if] = ACTIONS(5252), + [anon_sym_else] = ACTIONS(5252), + [anon_sym_while] = ACTIONS(5252), + [anon_sym_expand] = ACTIONS(5252), + [anon_sym_for] = ACTIONS(5252), + [anon_sym_PIPE2] = ACTIONS(5250), + [anon_sym_match] = ACTIONS(5252), + [anon_sym_DOT_DOT] = ACTIONS(5252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5250), + [anon_sym_orelse] = ACTIONS(5252), + [anon_sym_or] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_xor] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5252), + [anon_sym_GT_GT] = ACTIONS(5252), + [anon_sym_LT_LT_PIPE] = ACTIONS(5252), + [anon_sym_PLUS] = ACTIONS(5252), + [anon_sym_SLASH] = ACTIONS(5252), + [anon_sym_catch] = ACTIONS(5252), + [anon_sym_TILDE] = ACTIONS(5250), + [anon_sym_try] = ACTIONS(5252), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_true] = ACTIONS(5252), + [anon_sym_false] = ACTIONS(5252), + [anon_sym_null] = ACTIONS(5252), + [anon_sym_unreachable] = ACTIONS(5252), + [anon_sym_undefined] = ACTIONS(5252), + [sym_sink] = ACTIONS(5252), + [sym_integer] = ACTIONS(5252), + [sym_float] = ACTIONS(5250), + [anon_sym_DQUOTE] = ACTIONS(5250), + [sym_multiline_string] = ACTIONS(5250), + [sym_character] = ACTIONS(5250), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5250), + }, + [STATE(3730)] = { + [sym_identifier] = ACTIONS(5256), + [anon_sym_func] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_EQ] = ACTIONS(5256), + [anon_sym_struct] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_DOLLAR] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_QMARK] = ACTIONS(5254), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_void] = ACTIONS(5256), + [anon_sym_noreturn] = ACTIONS(5256), + [anon_sym_type] = ACTIONS(5256), + [anon_sym_anyopaque] = ACTIONS(5256), + [anon_sym_bool] = ACTIONS(5256), + [anon_sym_int] = ACTIONS(5256), + [anon_sym_uint] = ACTIONS(5256), + [anon_sym_float] = ACTIONS(5256), + [anon_sym_range] = ACTIONS(5256), + [anon_sym_i8] = ACTIONS(5256), + [anon_sym_i16] = ACTIONS(5256), + [anon_sym_i32] = ACTIONS(5256), + [anon_sym_i64] = ACTIONS(5256), + [anon_sym_u8] = ACTIONS(5256), + [anon_sym_u16] = ACTIONS(5256), + [anon_sym_u32] = ACTIONS(5256), + [anon_sym_u64] = ACTIONS(5256), + [anon_sym_isize] = ACTIONS(5256), + [anon_sym_usize] = ACTIONS(5256), + [anon_sym_f32] = ACTIONS(5256), + [anon_sym_f64] = ACTIONS(5256), + [anon_sym_c_char] = ACTIONS(5256), + [anon_sym_c_schar] = ACTIONS(5256), + [anon_sym_c_uchar] = ACTIONS(5256), + [anon_sym_c_short] = ACTIONS(5256), + [anon_sym_c_ushort] = ACTIONS(5256), + [anon_sym_c_int] = ACTIONS(5256), + [anon_sym_c_uint] = ACTIONS(5256), + [anon_sym_c_long] = ACTIONS(5256), + [anon_sym_c_ulong] = ACTIONS(5256), + [anon_sym_c_longlong] = ACTIONS(5256), + [anon_sym_c_ulonglong] = ACTIONS(5256), + [anon_sym_c_float] = ACTIONS(5256), + [anon_sym_c_double] = ACTIONS(5256), + [anon_sym_c_longdouble] = ACTIONS(5256), + [anon_sym_PLUS_EQ] = ACTIONS(5254), + [anon_sym_DASH_EQ] = ACTIONS(5254), + [anon_sym_STAR_EQ] = ACTIONS(5254), + [anon_sym_SLASH_EQ] = ACTIONS(5254), + [anon_sym_AMP_EQ] = ACTIONS(5254), + [anon_sym_PIPE_EQ] = ACTIONS(5256), + [anon_sym_xor_EQ] = ACTIONS(5254), + [anon_sym_LT_LT_EQ] = ACTIONS(5254), + [anon_sym_GT_GT_EQ] = ACTIONS(5254), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5254), + [anon_sym_return] = ACTIONS(5256), + [anon_sym_yield] = ACTIONS(5256), + [anon_sym_break] = ACTIONS(5256), + [anon_sym_continue] = ACTIONS(5256), + [anon_sym_defer] = ACTIONS(5256), + [anon_sym_errdefer] = ACTIONS(5256), + [anon_sym_if] = ACTIONS(5256), + [anon_sym_else] = ACTIONS(5256), + [anon_sym_while] = ACTIONS(5256), + [anon_sym_expand] = ACTIONS(5256), + [anon_sym_for] = ACTIONS(5256), + [anon_sym_PIPE2] = ACTIONS(5254), + [anon_sym_match] = ACTIONS(5256), + [anon_sym_DOT_DOT] = ACTIONS(5256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5254), + [anon_sym_orelse] = ACTIONS(5256), + [anon_sym_or] = ACTIONS(5256), + [anon_sym_and] = ACTIONS(5256), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_xor] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5256), + [anon_sym_GT_GT] = ACTIONS(5256), + [anon_sym_LT_LT_PIPE] = ACTIONS(5256), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_catch] = ACTIONS(5256), + [anon_sym_TILDE] = ACTIONS(5254), + [anon_sym_try] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_true] = ACTIONS(5256), + [anon_sym_false] = ACTIONS(5256), + [anon_sym_null] = ACTIONS(5256), + [anon_sym_unreachable] = ACTIONS(5256), + [anon_sym_undefined] = ACTIONS(5256), + [sym_sink] = ACTIONS(5256), + [sym_integer] = ACTIONS(5256), + [sym_float] = ACTIONS(5254), + [anon_sym_DQUOTE] = ACTIONS(5254), + [sym_multiline_string] = ACTIONS(5254), + [sym_character] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5254), + }, + [STATE(3731)] = { + [sym_identifier] = ACTIONS(5260), + [anon_sym_func] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_struct] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_DOLLAR] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_void] = ACTIONS(5260), + [anon_sym_noreturn] = ACTIONS(5260), + [anon_sym_type] = ACTIONS(5260), + [anon_sym_anyopaque] = ACTIONS(5260), + [anon_sym_bool] = ACTIONS(5260), + [anon_sym_int] = ACTIONS(5260), + [anon_sym_uint] = ACTIONS(5260), + [anon_sym_float] = ACTIONS(5260), + [anon_sym_range] = ACTIONS(5260), + [anon_sym_i8] = ACTIONS(5260), + [anon_sym_i16] = ACTIONS(5260), + [anon_sym_i32] = ACTIONS(5260), + [anon_sym_i64] = ACTIONS(5260), + [anon_sym_u8] = ACTIONS(5260), + [anon_sym_u16] = ACTIONS(5260), + [anon_sym_u32] = ACTIONS(5260), + [anon_sym_u64] = ACTIONS(5260), + [anon_sym_isize] = ACTIONS(5260), + [anon_sym_usize] = ACTIONS(5260), + [anon_sym_f32] = ACTIONS(5260), + [anon_sym_f64] = ACTIONS(5260), + [anon_sym_c_char] = ACTIONS(5260), + [anon_sym_c_schar] = ACTIONS(5260), + [anon_sym_c_uchar] = ACTIONS(5260), + [anon_sym_c_short] = ACTIONS(5260), + [anon_sym_c_ushort] = ACTIONS(5260), + [anon_sym_c_int] = ACTIONS(5260), + [anon_sym_c_uint] = ACTIONS(5260), + [anon_sym_c_long] = ACTIONS(5260), + [anon_sym_c_ulong] = ACTIONS(5260), + [anon_sym_c_longlong] = ACTIONS(5260), + [anon_sym_c_ulonglong] = ACTIONS(5260), + [anon_sym_c_float] = ACTIONS(5260), + [anon_sym_c_double] = ACTIONS(5260), + [anon_sym_c_longdouble] = ACTIONS(5260), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5260), + [anon_sym_xor_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5258), + [anon_sym_return] = ACTIONS(5260), + [anon_sym_yield] = ACTIONS(5260), + [anon_sym_break] = ACTIONS(5260), + [anon_sym_continue] = ACTIONS(5260), + [anon_sym_defer] = ACTIONS(5260), + [anon_sym_errdefer] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(5260), + [anon_sym_else] = ACTIONS(5260), + [anon_sym_while] = ACTIONS(5260), + [anon_sym_expand] = ACTIONS(5260), + [anon_sym_for] = ACTIONS(5260), + [anon_sym_PIPE2] = ACTIONS(5258), + [anon_sym_match] = ACTIONS(5260), + [anon_sym_DOT_DOT] = ACTIONS(5260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5258), + [anon_sym_orelse] = ACTIONS(5260), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_LT_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_LT_LT_PIPE] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_catch] = ACTIONS(5260), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_try] = ACTIONS(5260), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_true] = ACTIONS(5260), + [anon_sym_false] = ACTIONS(5260), + [anon_sym_null] = ACTIONS(5260), + [anon_sym_unreachable] = ACTIONS(5260), + [anon_sym_undefined] = ACTIONS(5260), + [sym_sink] = ACTIONS(5260), + [sym_integer] = ACTIONS(5260), + [sym_float] = ACTIONS(5258), + [anon_sym_DQUOTE] = ACTIONS(5258), + [sym_multiline_string] = ACTIONS(5258), + [sym_character] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5258), + }, + [STATE(3732)] = { + [sym_identifier] = ACTIONS(5264), + [anon_sym_func] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_EQ] = ACTIONS(5264), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_DOLLAR] = ACTIONS(5262), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_QMARK] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_void] = ACTIONS(5264), + [anon_sym_noreturn] = ACTIONS(5264), + [anon_sym_type] = ACTIONS(5264), + [anon_sym_anyopaque] = ACTIONS(5264), + [anon_sym_bool] = ACTIONS(5264), + [anon_sym_int] = ACTIONS(5264), + [anon_sym_uint] = ACTIONS(5264), + [anon_sym_float] = ACTIONS(5264), + [anon_sym_range] = ACTIONS(5264), + [anon_sym_i8] = ACTIONS(5264), + [anon_sym_i16] = ACTIONS(5264), + [anon_sym_i32] = ACTIONS(5264), + [anon_sym_i64] = ACTIONS(5264), + [anon_sym_u8] = ACTIONS(5264), + [anon_sym_u16] = ACTIONS(5264), + [anon_sym_u32] = ACTIONS(5264), + [anon_sym_u64] = ACTIONS(5264), + [anon_sym_isize] = ACTIONS(5264), + [anon_sym_usize] = ACTIONS(5264), + [anon_sym_f32] = ACTIONS(5264), + [anon_sym_f64] = ACTIONS(5264), + [anon_sym_c_char] = ACTIONS(5264), + [anon_sym_c_schar] = ACTIONS(5264), + [anon_sym_c_uchar] = ACTIONS(5264), + [anon_sym_c_short] = ACTIONS(5264), + [anon_sym_c_ushort] = ACTIONS(5264), + [anon_sym_c_int] = ACTIONS(5264), + [anon_sym_c_uint] = ACTIONS(5264), + [anon_sym_c_long] = ACTIONS(5264), + [anon_sym_c_ulong] = ACTIONS(5264), + [anon_sym_c_longlong] = ACTIONS(5264), + [anon_sym_c_ulonglong] = ACTIONS(5264), + [anon_sym_c_float] = ACTIONS(5264), + [anon_sym_c_double] = ACTIONS(5264), + [anon_sym_c_longdouble] = ACTIONS(5264), + [anon_sym_PLUS_EQ] = ACTIONS(5262), + [anon_sym_DASH_EQ] = ACTIONS(5262), + [anon_sym_STAR_EQ] = ACTIONS(5262), + [anon_sym_SLASH_EQ] = ACTIONS(5262), + [anon_sym_AMP_EQ] = ACTIONS(5262), + [anon_sym_PIPE_EQ] = ACTIONS(5264), + [anon_sym_xor_EQ] = ACTIONS(5262), + [anon_sym_LT_LT_EQ] = ACTIONS(5262), + [anon_sym_GT_GT_EQ] = ACTIONS(5262), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5262), + [anon_sym_return] = ACTIONS(5264), + [anon_sym_yield] = ACTIONS(5264), + [anon_sym_break] = ACTIONS(5264), + [anon_sym_continue] = ACTIONS(5264), + [anon_sym_defer] = ACTIONS(5264), + [anon_sym_errdefer] = ACTIONS(5264), + [anon_sym_if] = ACTIONS(5264), + [anon_sym_else] = ACTIONS(5264), + [anon_sym_while] = ACTIONS(5264), + [anon_sym_expand] = ACTIONS(5264), + [anon_sym_for] = ACTIONS(5264), + [anon_sym_PIPE2] = ACTIONS(5262), + [anon_sym_match] = ACTIONS(5264), + [anon_sym_DOT_DOT] = ACTIONS(5264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5262), + [anon_sym_orelse] = ACTIONS(5264), + [anon_sym_or] = ACTIONS(5264), + [anon_sym_and] = ACTIONS(5264), + [anon_sym_EQ_EQ] = ACTIONS(5262), + [anon_sym_BANG_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [anon_sym_xor] = ACTIONS(5264), + [anon_sym_LT_LT] = ACTIONS(5264), + [anon_sym_GT_GT] = ACTIONS(5264), + [anon_sym_LT_LT_PIPE] = ACTIONS(5264), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_catch] = ACTIONS(5264), + [anon_sym_TILDE] = ACTIONS(5262), + [anon_sym_try] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_true] = ACTIONS(5264), + [anon_sym_false] = ACTIONS(5264), + [anon_sym_null] = ACTIONS(5264), + [anon_sym_unreachable] = ACTIONS(5264), + [anon_sym_undefined] = ACTIONS(5264), + [sym_sink] = ACTIONS(5264), + [sym_integer] = ACTIONS(5264), + [sym_float] = ACTIONS(5262), + [anon_sym_DQUOTE] = ACTIONS(5262), + [sym_multiline_string] = ACTIONS(5262), + [sym_character] = ACTIONS(5262), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5262), + }, + [STATE(3733)] = { + [sym_identifier] = ACTIONS(5268), + [anon_sym_func] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5268), + [anon_sym_struct] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(5266), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_void] = ACTIONS(5268), + [anon_sym_noreturn] = ACTIONS(5268), + [anon_sym_type] = ACTIONS(5268), + [anon_sym_anyopaque] = ACTIONS(5268), + [anon_sym_bool] = ACTIONS(5268), + [anon_sym_int] = ACTIONS(5268), + [anon_sym_uint] = ACTIONS(5268), + [anon_sym_float] = ACTIONS(5268), + [anon_sym_range] = ACTIONS(5268), + [anon_sym_i8] = ACTIONS(5268), + [anon_sym_i16] = ACTIONS(5268), + [anon_sym_i32] = ACTIONS(5268), + [anon_sym_i64] = ACTIONS(5268), + [anon_sym_u8] = ACTIONS(5268), + [anon_sym_u16] = ACTIONS(5268), + [anon_sym_u32] = ACTIONS(5268), + [anon_sym_u64] = ACTIONS(5268), + [anon_sym_isize] = ACTIONS(5268), + [anon_sym_usize] = ACTIONS(5268), + [anon_sym_f32] = ACTIONS(5268), + [anon_sym_f64] = ACTIONS(5268), + [anon_sym_c_char] = ACTIONS(5268), + [anon_sym_c_schar] = ACTIONS(5268), + [anon_sym_c_uchar] = ACTIONS(5268), + [anon_sym_c_short] = ACTIONS(5268), + [anon_sym_c_ushort] = ACTIONS(5268), + [anon_sym_c_int] = ACTIONS(5268), + [anon_sym_c_uint] = ACTIONS(5268), + [anon_sym_c_long] = ACTIONS(5268), + [anon_sym_c_ulong] = ACTIONS(5268), + [anon_sym_c_longlong] = ACTIONS(5268), + [anon_sym_c_ulonglong] = ACTIONS(5268), + [anon_sym_c_float] = ACTIONS(5268), + [anon_sym_c_double] = ACTIONS(5268), + [anon_sym_c_longdouble] = ACTIONS(5268), + [anon_sym_PLUS_EQ] = ACTIONS(5266), + [anon_sym_DASH_EQ] = ACTIONS(5266), + [anon_sym_STAR_EQ] = ACTIONS(5266), + [anon_sym_SLASH_EQ] = ACTIONS(5266), + [anon_sym_AMP_EQ] = ACTIONS(5266), + [anon_sym_PIPE_EQ] = ACTIONS(5268), + [anon_sym_xor_EQ] = ACTIONS(5266), + [anon_sym_LT_LT_EQ] = ACTIONS(5266), + [anon_sym_GT_GT_EQ] = ACTIONS(5266), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5266), + [anon_sym_return] = ACTIONS(5268), + [anon_sym_yield] = ACTIONS(5268), + [anon_sym_break] = ACTIONS(5268), + [anon_sym_continue] = ACTIONS(5268), + [anon_sym_defer] = ACTIONS(5268), + [anon_sym_errdefer] = ACTIONS(5268), + [anon_sym_if] = ACTIONS(5268), + [anon_sym_else] = ACTIONS(5268), + [anon_sym_while] = ACTIONS(5268), + [anon_sym_expand] = ACTIONS(5268), + [anon_sym_for] = ACTIONS(5268), + [anon_sym_PIPE2] = ACTIONS(5266), + [anon_sym_match] = ACTIONS(5268), + [anon_sym_DOT_DOT] = ACTIONS(5268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5266), + [anon_sym_orelse] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5268), + [anon_sym_and] = ACTIONS(5268), + [anon_sym_EQ_EQ] = ACTIONS(5266), + [anon_sym_BANG_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_GT_EQ] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5268), + [anon_sym_xor] = ACTIONS(5268), + [anon_sym_LT_LT] = ACTIONS(5268), + [anon_sym_GT_GT] = ACTIONS(5268), + [anon_sym_LT_LT_PIPE] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_catch] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(5266), + [anon_sym_try] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_true] = ACTIONS(5268), + [anon_sym_false] = ACTIONS(5268), + [anon_sym_null] = ACTIONS(5268), + [anon_sym_unreachable] = ACTIONS(5268), + [anon_sym_undefined] = ACTIONS(5268), + [sym_sink] = ACTIONS(5268), + [sym_integer] = ACTIONS(5268), + [sym_float] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5266), + [sym_multiline_string] = ACTIONS(5266), + [sym_character] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5266), + }, + [STATE(3734)] = { + [sym_identifier] = ACTIONS(5272), + [anon_sym_func] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(5272), + [anon_sym_struct] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_DOLLAR] = ACTIONS(5270), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_QMARK] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_void] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym_type] = ACTIONS(5272), + [anon_sym_anyopaque] = ACTIONS(5272), + [anon_sym_bool] = ACTIONS(5272), + [anon_sym_int] = ACTIONS(5272), + [anon_sym_uint] = ACTIONS(5272), + [anon_sym_float] = ACTIONS(5272), + [anon_sym_range] = ACTIONS(5272), + [anon_sym_i8] = ACTIONS(5272), + [anon_sym_i16] = ACTIONS(5272), + [anon_sym_i32] = ACTIONS(5272), + [anon_sym_i64] = ACTIONS(5272), + [anon_sym_u8] = ACTIONS(5272), + [anon_sym_u16] = ACTIONS(5272), + [anon_sym_u32] = ACTIONS(5272), + [anon_sym_u64] = ACTIONS(5272), + [anon_sym_isize] = ACTIONS(5272), + [anon_sym_usize] = ACTIONS(5272), + [anon_sym_f32] = ACTIONS(5272), + [anon_sym_f64] = ACTIONS(5272), + [anon_sym_c_char] = ACTIONS(5272), + [anon_sym_c_schar] = ACTIONS(5272), + [anon_sym_c_uchar] = ACTIONS(5272), + [anon_sym_c_short] = ACTIONS(5272), + [anon_sym_c_ushort] = ACTIONS(5272), + [anon_sym_c_int] = ACTIONS(5272), + [anon_sym_c_uint] = ACTIONS(5272), + [anon_sym_c_long] = ACTIONS(5272), + [anon_sym_c_ulong] = ACTIONS(5272), + [anon_sym_c_longlong] = ACTIONS(5272), + [anon_sym_c_ulonglong] = ACTIONS(5272), + [anon_sym_c_float] = ACTIONS(5272), + [anon_sym_c_double] = ACTIONS(5272), + [anon_sym_c_longdouble] = ACTIONS(5272), + [anon_sym_PLUS_EQ] = ACTIONS(5270), + [anon_sym_DASH_EQ] = ACTIONS(5270), + [anon_sym_STAR_EQ] = ACTIONS(5270), + [anon_sym_SLASH_EQ] = ACTIONS(5270), + [anon_sym_AMP_EQ] = ACTIONS(5270), + [anon_sym_PIPE_EQ] = ACTIONS(5272), + [anon_sym_xor_EQ] = ACTIONS(5270), + [anon_sym_LT_LT_EQ] = ACTIONS(5270), + [anon_sym_GT_GT_EQ] = ACTIONS(5270), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5270), + [anon_sym_return] = ACTIONS(5272), + [anon_sym_yield] = ACTIONS(5272), + [anon_sym_break] = ACTIONS(5272), + [anon_sym_continue] = ACTIONS(5272), + [anon_sym_defer] = ACTIONS(5272), + [anon_sym_errdefer] = ACTIONS(5272), + [anon_sym_if] = ACTIONS(5272), + [anon_sym_else] = ACTIONS(5272), + [anon_sym_while] = ACTIONS(5272), + [anon_sym_expand] = ACTIONS(5272), + [anon_sym_for] = ACTIONS(5272), + [anon_sym_PIPE2] = ACTIONS(5270), + [anon_sym_match] = ACTIONS(5272), + [anon_sym_DOT_DOT] = ACTIONS(5272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5270), + [anon_sym_orelse] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5272), + [anon_sym_and] = ACTIONS(5272), + [anon_sym_EQ_EQ] = ACTIONS(5270), + [anon_sym_BANG_EQ] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_GT_EQ] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5272), + [anon_sym_xor] = ACTIONS(5272), + [anon_sym_LT_LT] = ACTIONS(5272), + [anon_sym_GT_GT] = ACTIONS(5272), + [anon_sym_LT_LT_PIPE] = ACTIONS(5272), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_catch] = ACTIONS(5272), + [anon_sym_TILDE] = ACTIONS(5270), + [anon_sym_try] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_true] = ACTIONS(5272), + [anon_sym_false] = ACTIONS(5272), + [anon_sym_null] = ACTIONS(5272), + [anon_sym_unreachable] = ACTIONS(5272), + [anon_sym_undefined] = ACTIONS(5272), + [sym_sink] = ACTIONS(5272), + [sym_integer] = ACTIONS(5272), + [sym_float] = ACTIONS(5270), + [anon_sym_DQUOTE] = ACTIONS(5270), + [sym_multiline_string] = ACTIONS(5270), + [sym_character] = ACTIONS(5270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5270), + }, + [STATE(3735)] = { + [sym_identifier] = ACTIONS(5276), + [anon_sym_func] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_struct] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_DOLLAR] = ACTIONS(5274), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5274), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_void] = ACTIONS(5276), + [anon_sym_noreturn] = ACTIONS(5276), + [anon_sym_type] = ACTIONS(5276), + [anon_sym_anyopaque] = ACTIONS(5276), + [anon_sym_bool] = ACTIONS(5276), + [anon_sym_int] = ACTIONS(5276), + [anon_sym_uint] = ACTIONS(5276), + [anon_sym_float] = ACTIONS(5276), + [anon_sym_range] = ACTIONS(5276), + [anon_sym_i8] = ACTIONS(5276), + [anon_sym_i16] = ACTIONS(5276), + [anon_sym_i32] = ACTIONS(5276), + [anon_sym_i64] = ACTIONS(5276), + [anon_sym_u8] = ACTIONS(5276), + [anon_sym_u16] = ACTIONS(5276), + [anon_sym_u32] = ACTIONS(5276), + [anon_sym_u64] = ACTIONS(5276), + [anon_sym_isize] = ACTIONS(5276), + [anon_sym_usize] = ACTIONS(5276), + [anon_sym_f32] = ACTIONS(5276), + [anon_sym_f64] = ACTIONS(5276), + [anon_sym_c_char] = ACTIONS(5276), + [anon_sym_c_schar] = ACTIONS(5276), + [anon_sym_c_uchar] = ACTIONS(5276), + [anon_sym_c_short] = ACTIONS(5276), + [anon_sym_c_ushort] = ACTIONS(5276), + [anon_sym_c_int] = ACTIONS(5276), + [anon_sym_c_uint] = ACTIONS(5276), + [anon_sym_c_long] = ACTIONS(5276), + [anon_sym_c_ulong] = ACTIONS(5276), + [anon_sym_c_longlong] = ACTIONS(5276), + [anon_sym_c_ulonglong] = ACTIONS(5276), + [anon_sym_c_float] = ACTIONS(5276), + [anon_sym_c_double] = ACTIONS(5276), + [anon_sym_c_longdouble] = ACTIONS(5276), + [anon_sym_PLUS_EQ] = ACTIONS(5274), + [anon_sym_DASH_EQ] = ACTIONS(5274), + [anon_sym_STAR_EQ] = ACTIONS(5274), + [anon_sym_SLASH_EQ] = ACTIONS(5274), + [anon_sym_AMP_EQ] = ACTIONS(5274), + [anon_sym_PIPE_EQ] = ACTIONS(5276), + [anon_sym_xor_EQ] = ACTIONS(5274), + [anon_sym_LT_LT_EQ] = ACTIONS(5274), + [anon_sym_GT_GT_EQ] = ACTIONS(5274), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5274), + [anon_sym_return] = ACTIONS(5276), + [anon_sym_yield] = ACTIONS(5276), + [anon_sym_break] = ACTIONS(5276), + [anon_sym_continue] = ACTIONS(5276), + [anon_sym_defer] = ACTIONS(5276), + [anon_sym_errdefer] = ACTIONS(5276), + [anon_sym_if] = ACTIONS(5276), + [anon_sym_else] = ACTIONS(5276), + [anon_sym_while] = ACTIONS(5276), + [anon_sym_expand] = ACTIONS(5276), + [anon_sym_for] = ACTIONS(5276), + [anon_sym_PIPE2] = ACTIONS(5274), + [anon_sym_match] = ACTIONS(5276), + [anon_sym_DOT_DOT] = ACTIONS(5276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5274), + [anon_sym_orelse] = ACTIONS(5276), + [anon_sym_or] = ACTIONS(5276), + [anon_sym_and] = ACTIONS(5276), + [anon_sym_EQ_EQ] = ACTIONS(5274), + [anon_sym_BANG_EQ] = ACTIONS(5274), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_LT_EQ] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_GT_EQ] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(5276), + [anon_sym_xor] = ACTIONS(5276), + [anon_sym_LT_LT] = ACTIONS(5276), + [anon_sym_GT_GT] = ACTIONS(5276), + [anon_sym_LT_LT_PIPE] = ACTIONS(5276), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_catch] = ACTIONS(5276), + [anon_sym_TILDE] = ACTIONS(5274), + [anon_sym_try] = ACTIONS(5276), + [anon_sym_DOT] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5274), + [anon_sym_true] = ACTIONS(5276), + [anon_sym_false] = ACTIONS(5276), + [anon_sym_null] = ACTIONS(5276), + [anon_sym_unreachable] = ACTIONS(5276), + [anon_sym_undefined] = ACTIONS(5276), + [sym_sink] = ACTIONS(5276), + [sym_integer] = ACTIONS(5276), + [sym_float] = ACTIONS(5274), + [anon_sym_DQUOTE] = ACTIONS(5274), + [sym_multiline_string] = ACTIONS(5274), + [sym_character] = ACTIONS(5274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5274), + }, + [STATE(3736)] = { + [sym_identifier] = ACTIONS(5280), + [anon_sym_func] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_EQ] = ACTIONS(5280), + [anon_sym_struct] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_DOLLAR] = ACTIONS(5278), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_QMARK] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_void] = ACTIONS(5280), + [anon_sym_noreturn] = ACTIONS(5280), + [anon_sym_type] = ACTIONS(5280), + [anon_sym_anyopaque] = ACTIONS(5280), + [anon_sym_bool] = ACTIONS(5280), + [anon_sym_int] = ACTIONS(5280), + [anon_sym_uint] = ACTIONS(5280), + [anon_sym_float] = ACTIONS(5280), + [anon_sym_range] = ACTIONS(5280), + [anon_sym_i8] = ACTIONS(5280), + [anon_sym_i16] = ACTIONS(5280), + [anon_sym_i32] = ACTIONS(5280), + [anon_sym_i64] = ACTIONS(5280), + [anon_sym_u8] = ACTIONS(5280), + [anon_sym_u16] = ACTIONS(5280), + [anon_sym_u32] = ACTIONS(5280), + [anon_sym_u64] = ACTIONS(5280), + [anon_sym_isize] = ACTIONS(5280), + [anon_sym_usize] = ACTIONS(5280), + [anon_sym_f32] = ACTIONS(5280), + [anon_sym_f64] = ACTIONS(5280), + [anon_sym_c_char] = ACTIONS(5280), + [anon_sym_c_schar] = ACTIONS(5280), + [anon_sym_c_uchar] = ACTIONS(5280), + [anon_sym_c_short] = ACTIONS(5280), + [anon_sym_c_ushort] = ACTIONS(5280), + [anon_sym_c_int] = ACTIONS(5280), + [anon_sym_c_uint] = ACTIONS(5280), + [anon_sym_c_long] = ACTIONS(5280), + [anon_sym_c_ulong] = ACTIONS(5280), + [anon_sym_c_longlong] = ACTIONS(5280), + [anon_sym_c_ulonglong] = ACTIONS(5280), + [anon_sym_c_float] = ACTIONS(5280), + [anon_sym_c_double] = ACTIONS(5280), + [anon_sym_c_longdouble] = ACTIONS(5280), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5280), + [anon_sym_xor_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5278), + [anon_sym_return] = ACTIONS(5280), + [anon_sym_yield] = ACTIONS(5280), + [anon_sym_break] = ACTIONS(5280), + [anon_sym_continue] = ACTIONS(5280), + [anon_sym_defer] = ACTIONS(5280), + [anon_sym_errdefer] = ACTIONS(5280), + [anon_sym_if] = ACTIONS(5280), + [anon_sym_else] = ACTIONS(5280), + [anon_sym_while] = ACTIONS(5280), + [anon_sym_expand] = ACTIONS(5280), + [anon_sym_for] = ACTIONS(5280), + [anon_sym_PIPE2] = ACTIONS(5278), + [anon_sym_match] = ACTIONS(5280), + [anon_sym_DOT_DOT] = ACTIONS(5280), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5278), + [anon_sym_orelse] = ACTIONS(5280), + [anon_sym_or] = ACTIONS(5280), + [anon_sym_and] = ACTIONS(5280), + [anon_sym_EQ_EQ] = ACTIONS(5278), + [anon_sym_BANG_EQ] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5280), + [anon_sym_xor] = ACTIONS(5280), + [anon_sym_LT_LT] = ACTIONS(5280), + [anon_sym_GT_GT] = ACTIONS(5280), + [anon_sym_LT_LT_PIPE] = ACTIONS(5280), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_catch] = ACTIONS(5280), + [anon_sym_TILDE] = ACTIONS(5278), + [anon_sym_try] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5278), + [anon_sym_true] = ACTIONS(5280), + [anon_sym_false] = ACTIONS(5280), + [anon_sym_null] = ACTIONS(5280), + [anon_sym_unreachable] = ACTIONS(5280), + [anon_sym_undefined] = ACTIONS(5280), + [sym_sink] = ACTIONS(5280), + [sym_integer] = ACTIONS(5280), + [sym_float] = ACTIONS(5278), + [anon_sym_DQUOTE] = ACTIONS(5278), + [sym_multiline_string] = ACTIONS(5278), + [sym_character] = ACTIONS(5278), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5278), + }, + [STATE(3737)] = { + [sym_identifier] = ACTIONS(5284), + [anon_sym_func] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_EQ] = ACTIONS(5284), + [anon_sym_struct] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_QMARK] = ACTIONS(5282), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_void] = ACTIONS(5284), + [anon_sym_noreturn] = ACTIONS(5284), + [anon_sym_type] = ACTIONS(5284), + [anon_sym_anyopaque] = ACTIONS(5284), + [anon_sym_bool] = ACTIONS(5284), + [anon_sym_int] = ACTIONS(5284), + [anon_sym_uint] = ACTIONS(5284), + [anon_sym_float] = ACTIONS(5284), + [anon_sym_range] = ACTIONS(5284), + [anon_sym_i8] = ACTIONS(5284), + [anon_sym_i16] = ACTIONS(5284), + [anon_sym_i32] = ACTIONS(5284), + [anon_sym_i64] = ACTIONS(5284), + [anon_sym_u8] = ACTIONS(5284), + [anon_sym_u16] = ACTIONS(5284), + [anon_sym_u32] = ACTIONS(5284), + [anon_sym_u64] = ACTIONS(5284), + [anon_sym_isize] = ACTIONS(5284), + [anon_sym_usize] = ACTIONS(5284), + [anon_sym_f32] = ACTIONS(5284), + [anon_sym_f64] = ACTIONS(5284), + [anon_sym_c_char] = ACTIONS(5284), + [anon_sym_c_schar] = ACTIONS(5284), + [anon_sym_c_uchar] = ACTIONS(5284), + [anon_sym_c_short] = ACTIONS(5284), + [anon_sym_c_ushort] = ACTIONS(5284), + [anon_sym_c_int] = ACTIONS(5284), + [anon_sym_c_uint] = ACTIONS(5284), + [anon_sym_c_long] = ACTIONS(5284), + [anon_sym_c_ulong] = ACTIONS(5284), + [anon_sym_c_longlong] = ACTIONS(5284), + [anon_sym_c_ulonglong] = ACTIONS(5284), + [anon_sym_c_float] = ACTIONS(5284), + [anon_sym_c_double] = ACTIONS(5284), + [anon_sym_c_longdouble] = ACTIONS(5284), + [anon_sym_PLUS_EQ] = ACTIONS(5282), + [anon_sym_DASH_EQ] = ACTIONS(5282), + [anon_sym_STAR_EQ] = ACTIONS(5282), + [anon_sym_SLASH_EQ] = ACTIONS(5282), + [anon_sym_AMP_EQ] = ACTIONS(5282), + [anon_sym_PIPE_EQ] = ACTIONS(5284), + [anon_sym_xor_EQ] = ACTIONS(5282), + [anon_sym_LT_LT_EQ] = ACTIONS(5282), + [anon_sym_GT_GT_EQ] = ACTIONS(5282), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5282), + [anon_sym_return] = ACTIONS(5284), + [anon_sym_yield] = ACTIONS(5284), + [anon_sym_break] = ACTIONS(5284), + [anon_sym_continue] = ACTIONS(5284), + [anon_sym_defer] = ACTIONS(5284), + [anon_sym_errdefer] = ACTIONS(5284), + [anon_sym_if] = ACTIONS(5284), + [anon_sym_else] = ACTIONS(5284), + [anon_sym_while] = ACTIONS(5284), + [anon_sym_expand] = ACTIONS(5284), + [anon_sym_for] = ACTIONS(5284), + [anon_sym_PIPE2] = ACTIONS(5282), + [anon_sym_match] = ACTIONS(5284), + [anon_sym_DOT_DOT] = ACTIONS(5284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5282), + [anon_sym_orelse] = ACTIONS(5284), + [anon_sym_or] = ACTIONS(5284), + [anon_sym_and] = ACTIONS(5284), + [anon_sym_EQ_EQ] = ACTIONS(5282), + [anon_sym_BANG_EQ] = ACTIONS(5282), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_LT_EQ] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_EQ] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), + [anon_sym_xor] = ACTIONS(5284), + [anon_sym_LT_LT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5284), + [anon_sym_LT_LT_PIPE] = ACTIONS(5284), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_catch] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5282), + [anon_sym_try] = ACTIONS(5284), + [anon_sym_DOT] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5282), + [anon_sym_true] = ACTIONS(5284), + [anon_sym_false] = ACTIONS(5284), + [anon_sym_null] = ACTIONS(5284), + [anon_sym_unreachable] = ACTIONS(5284), + [anon_sym_undefined] = ACTIONS(5284), + [sym_sink] = ACTIONS(5284), + [sym_integer] = ACTIONS(5284), + [sym_float] = ACTIONS(5282), + [anon_sym_DQUOTE] = ACTIONS(5282), + [sym_multiline_string] = ACTIONS(5282), + [sym_character] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5282), + }, + [STATE(3738)] = { + [sym_identifier] = ACTIONS(5288), + [anon_sym_func] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_EQ] = ACTIONS(5288), + [anon_sym_struct] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_QMARK] = ACTIONS(5286), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_void] = ACTIONS(5288), + [anon_sym_noreturn] = ACTIONS(5288), + [anon_sym_type] = ACTIONS(5288), + [anon_sym_anyopaque] = ACTIONS(5288), + [anon_sym_bool] = ACTIONS(5288), + [anon_sym_int] = ACTIONS(5288), + [anon_sym_uint] = ACTIONS(5288), + [anon_sym_float] = ACTIONS(5288), + [anon_sym_range] = ACTIONS(5288), + [anon_sym_i8] = ACTIONS(5288), + [anon_sym_i16] = ACTIONS(5288), + [anon_sym_i32] = ACTIONS(5288), + [anon_sym_i64] = ACTIONS(5288), + [anon_sym_u8] = ACTIONS(5288), + [anon_sym_u16] = ACTIONS(5288), + [anon_sym_u32] = ACTIONS(5288), + [anon_sym_u64] = ACTIONS(5288), + [anon_sym_isize] = ACTIONS(5288), + [anon_sym_usize] = ACTIONS(5288), + [anon_sym_f32] = ACTIONS(5288), + [anon_sym_f64] = ACTIONS(5288), + [anon_sym_c_char] = ACTIONS(5288), + [anon_sym_c_schar] = ACTIONS(5288), + [anon_sym_c_uchar] = ACTIONS(5288), + [anon_sym_c_short] = ACTIONS(5288), + [anon_sym_c_ushort] = ACTIONS(5288), + [anon_sym_c_int] = ACTIONS(5288), + [anon_sym_c_uint] = ACTIONS(5288), + [anon_sym_c_long] = ACTIONS(5288), + [anon_sym_c_ulong] = ACTIONS(5288), + [anon_sym_c_longlong] = ACTIONS(5288), + [anon_sym_c_ulonglong] = ACTIONS(5288), + [anon_sym_c_float] = ACTIONS(5288), + [anon_sym_c_double] = ACTIONS(5288), + [anon_sym_c_longdouble] = ACTIONS(5288), + [anon_sym_PLUS_EQ] = ACTIONS(5286), + [anon_sym_DASH_EQ] = ACTIONS(5286), + [anon_sym_STAR_EQ] = ACTIONS(5286), + [anon_sym_SLASH_EQ] = ACTIONS(5286), + [anon_sym_AMP_EQ] = ACTIONS(5286), + [anon_sym_PIPE_EQ] = ACTIONS(5288), + [anon_sym_xor_EQ] = ACTIONS(5286), + [anon_sym_LT_LT_EQ] = ACTIONS(5286), + [anon_sym_GT_GT_EQ] = ACTIONS(5286), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5286), + [anon_sym_return] = ACTIONS(5288), + [anon_sym_yield] = ACTIONS(5288), + [anon_sym_break] = ACTIONS(5288), + [anon_sym_continue] = ACTIONS(5288), + [anon_sym_defer] = ACTIONS(5288), + [anon_sym_errdefer] = ACTIONS(5288), + [anon_sym_if] = ACTIONS(5288), + [anon_sym_else] = ACTIONS(5288), + [anon_sym_while] = ACTIONS(5288), + [anon_sym_expand] = ACTIONS(5288), + [anon_sym_for] = ACTIONS(5288), + [anon_sym_PIPE2] = ACTIONS(5286), + [anon_sym_match] = ACTIONS(5288), + [anon_sym_DOT_DOT] = ACTIONS(5288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5286), + [anon_sym_orelse] = ACTIONS(5288), + [anon_sym_or] = ACTIONS(5288), + [anon_sym_and] = ACTIONS(5288), + [anon_sym_EQ_EQ] = ACTIONS(5286), + [anon_sym_BANG_EQ] = ACTIONS(5286), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_LT_EQ] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_EQ] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), + [anon_sym_xor] = ACTIONS(5288), + [anon_sym_LT_LT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5288), + [anon_sym_LT_LT_PIPE] = ACTIONS(5288), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_catch] = ACTIONS(5288), + [anon_sym_TILDE] = ACTIONS(5286), + [anon_sym_try] = ACTIONS(5288), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5286), + [anon_sym_true] = ACTIONS(5288), + [anon_sym_false] = ACTIONS(5288), + [anon_sym_null] = ACTIONS(5288), + [anon_sym_unreachable] = ACTIONS(5288), + [anon_sym_undefined] = ACTIONS(5288), + [sym_sink] = ACTIONS(5288), + [sym_integer] = ACTIONS(5288), + [sym_float] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5286), + [sym_multiline_string] = ACTIONS(5286), + [sym_character] = ACTIONS(5286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5286), + }, + [STATE(3739)] = { + [sym_identifier] = ACTIONS(5292), + [anon_sym_func] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_EQ] = ACTIONS(5292), + [anon_sym_struct] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_QMARK] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_void] = ACTIONS(5292), + [anon_sym_noreturn] = ACTIONS(5292), + [anon_sym_type] = ACTIONS(5292), + [anon_sym_anyopaque] = ACTIONS(5292), + [anon_sym_bool] = ACTIONS(5292), + [anon_sym_int] = ACTIONS(5292), + [anon_sym_uint] = ACTIONS(5292), + [anon_sym_float] = ACTIONS(5292), + [anon_sym_range] = ACTIONS(5292), + [anon_sym_i8] = ACTIONS(5292), + [anon_sym_i16] = ACTIONS(5292), + [anon_sym_i32] = ACTIONS(5292), + [anon_sym_i64] = ACTIONS(5292), + [anon_sym_u8] = ACTIONS(5292), + [anon_sym_u16] = ACTIONS(5292), + [anon_sym_u32] = ACTIONS(5292), + [anon_sym_u64] = ACTIONS(5292), + [anon_sym_isize] = ACTIONS(5292), + [anon_sym_usize] = ACTIONS(5292), + [anon_sym_f32] = ACTIONS(5292), + [anon_sym_f64] = ACTIONS(5292), + [anon_sym_c_char] = ACTIONS(5292), + [anon_sym_c_schar] = ACTIONS(5292), + [anon_sym_c_uchar] = ACTIONS(5292), + [anon_sym_c_short] = ACTIONS(5292), + [anon_sym_c_ushort] = ACTIONS(5292), + [anon_sym_c_int] = ACTIONS(5292), + [anon_sym_c_uint] = ACTIONS(5292), + [anon_sym_c_long] = ACTIONS(5292), + [anon_sym_c_ulong] = ACTIONS(5292), + [anon_sym_c_longlong] = ACTIONS(5292), + [anon_sym_c_ulonglong] = ACTIONS(5292), + [anon_sym_c_float] = ACTIONS(5292), + [anon_sym_c_double] = ACTIONS(5292), + [anon_sym_c_longdouble] = ACTIONS(5292), + [anon_sym_PLUS_EQ] = ACTIONS(5290), + [anon_sym_DASH_EQ] = ACTIONS(5290), + [anon_sym_STAR_EQ] = ACTIONS(5290), + [anon_sym_SLASH_EQ] = ACTIONS(5290), + [anon_sym_AMP_EQ] = ACTIONS(5290), + [anon_sym_PIPE_EQ] = ACTIONS(5292), + [anon_sym_xor_EQ] = ACTIONS(5290), + [anon_sym_LT_LT_EQ] = ACTIONS(5290), + [anon_sym_GT_GT_EQ] = ACTIONS(5290), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5290), + [anon_sym_return] = ACTIONS(5292), + [anon_sym_yield] = ACTIONS(5292), + [anon_sym_break] = ACTIONS(5292), + [anon_sym_continue] = ACTIONS(5292), + [anon_sym_defer] = ACTIONS(5292), + [anon_sym_errdefer] = ACTIONS(5292), + [anon_sym_if] = ACTIONS(5292), + [anon_sym_else] = ACTIONS(5292), + [anon_sym_while] = ACTIONS(5292), + [anon_sym_expand] = ACTIONS(5292), + [anon_sym_for] = ACTIONS(5292), + [anon_sym_PIPE2] = ACTIONS(5290), + [anon_sym_match] = ACTIONS(5292), + [anon_sym_DOT_DOT] = ACTIONS(5292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5290), + [anon_sym_orelse] = ACTIONS(5292), + [anon_sym_or] = ACTIONS(5292), + [anon_sym_and] = ACTIONS(5292), + [anon_sym_EQ_EQ] = ACTIONS(5290), + [anon_sym_BANG_EQ] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_LT_EQ] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_EQ] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), + [anon_sym_xor] = ACTIONS(5292), + [anon_sym_LT_LT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5292), + [anon_sym_LT_LT_PIPE] = ACTIONS(5292), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_catch] = ACTIONS(5292), + [anon_sym_TILDE] = ACTIONS(5290), + [anon_sym_try] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5290), + [anon_sym_true] = ACTIONS(5292), + [anon_sym_false] = ACTIONS(5292), + [anon_sym_null] = ACTIONS(5292), + [anon_sym_unreachable] = ACTIONS(5292), + [anon_sym_undefined] = ACTIONS(5292), + [sym_sink] = ACTIONS(5292), + [sym_integer] = ACTIONS(5292), + [sym_float] = ACTIONS(5290), + [anon_sym_DQUOTE] = ACTIONS(5290), + [sym_multiline_string] = ACTIONS(5290), + [sym_character] = ACTIONS(5290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5290), + }, + [STATE(3740)] = { + [sym_identifier] = ACTIONS(5296), + [anon_sym_func] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_EQ] = ACTIONS(5296), + [anon_sym_struct] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_DOLLAR] = ACTIONS(5294), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5294), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_void] = ACTIONS(5296), + [anon_sym_noreturn] = ACTIONS(5296), + [anon_sym_type] = ACTIONS(5296), + [anon_sym_anyopaque] = ACTIONS(5296), + [anon_sym_bool] = ACTIONS(5296), + [anon_sym_int] = ACTIONS(5296), + [anon_sym_uint] = ACTIONS(5296), + [anon_sym_float] = ACTIONS(5296), + [anon_sym_range] = ACTIONS(5296), + [anon_sym_i8] = ACTIONS(5296), + [anon_sym_i16] = ACTIONS(5296), + [anon_sym_i32] = ACTIONS(5296), + [anon_sym_i64] = ACTIONS(5296), + [anon_sym_u8] = ACTIONS(5296), + [anon_sym_u16] = ACTIONS(5296), + [anon_sym_u32] = ACTIONS(5296), + [anon_sym_u64] = ACTIONS(5296), + [anon_sym_isize] = ACTIONS(5296), + [anon_sym_usize] = ACTIONS(5296), + [anon_sym_f32] = ACTIONS(5296), + [anon_sym_f64] = ACTIONS(5296), + [anon_sym_c_char] = ACTIONS(5296), + [anon_sym_c_schar] = ACTIONS(5296), + [anon_sym_c_uchar] = ACTIONS(5296), + [anon_sym_c_short] = ACTIONS(5296), + [anon_sym_c_ushort] = ACTIONS(5296), + [anon_sym_c_int] = ACTIONS(5296), + [anon_sym_c_uint] = ACTIONS(5296), + [anon_sym_c_long] = ACTIONS(5296), + [anon_sym_c_ulong] = ACTIONS(5296), + [anon_sym_c_longlong] = ACTIONS(5296), + [anon_sym_c_ulonglong] = ACTIONS(5296), + [anon_sym_c_float] = ACTIONS(5296), + [anon_sym_c_double] = ACTIONS(5296), + [anon_sym_c_longdouble] = ACTIONS(5296), + [anon_sym_PLUS_EQ] = ACTIONS(5294), + [anon_sym_DASH_EQ] = ACTIONS(5294), + [anon_sym_STAR_EQ] = ACTIONS(5294), + [anon_sym_SLASH_EQ] = ACTIONS(5294), + [anon_sym_AMP_EQ] = ACTIONS(5294), + [anon_sym_PIPE_EQ] = ACTIONS(5296), + [anon_sym_xor_EQ] = ACTIONS(5294), + [anon_sym_LT_LT_EQ] = ACTIONS(5294), + [anon_sym_GT_GT_EQ] = ACTIONS(5294), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5294), + [anon_sym_return] = ACTIONS(5296), + [anon_sym_yield] = ACTIONS(5296), + [anon_sym_break] = ACTIONS(5296), + [anon_sym_continue] = ACTIONS(5296), + [anon_sym_defer] = ACTIONS(5296), + [anon_sym_errdefer] = ACTIONS(5296), + [anon_sym_if] = ACTIONS(5296), + [anon_sym_else] = ACTIONS(5296), + [anon_sym_while] = ACTIONS(5296), + [anon_sym_expand] = ACTIONS(5296), + [anon_sym_for] = ACTIONS(5296), + [anon_sym_PIPE2] = ACTIONS(5294), + [anon_sym_match] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(5296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5294), + [anon_sym_orelse] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5294), + [anon_sym_BANG_EQ] = ACTIONS(5294), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_LT_EQ] = ACTIONS(5294), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_GT_EQ] = ACTIONS(5294), + [anon_sym_AMP] = ACTIONS(5296), + [anon_sym_xor] = ACTIONS(5296), + [anon_sym_LT_LT] = ACTIONS(5296), + [anon_sym_GT_GT] = ACTIONS(5296), + [anon_sym_LT_LT_PIPE] = ACTIONS(5296), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_catch] = ACTIONS(5296), + [anon_sym_TILDE] = ACTIONS(5294), + [anon_sym_try] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5294), + [anon_sym_true] = ACTIONS(5296), + [anon_sym_false] = ACTIONS(5296), + [anon_sym_null] = ACTIONS(5296), + [anon_sym_unreachable] = ACTIONS(5296), + [anon_sym_undefined] = ACTIONS(5296), + [sym_sink] = ACTIONS(5296), + [sym_integer] = ACTIONS(5296), + [sym_float] = ACTIONS(5294), + [anon_sym_DQUOTE] = ACTIONS(5294), + [sym_multiline_string] = ACTIONS(5294), + [sym_character] = ACTIONS(5294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5294), + }, + [STATE(3741)] = { + [sym_identifier] = ACTIONS(6006), + [anon_sym_func] = ACTIONS(6006), + [anon_sym_BANG] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_struct] = ACTIONS(6006), + [anon_sym_LPAREN] = ACTIONS(6004), + [anon_sym_LBRACE] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(6006), + [anon_sym_DOLLAR] = ACTIONS(6004), + [anon_sym_PIPE] = ACTIONS(6006), + [anon_sym_QMARK] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(6004), + [anon_sym_void] = ACTIONS(6006), + [anon_sym_noreturn] = ACTIONS(6006), + [anon_sym_type] = ACTIONS(6006), + [anon_sym_anyopaque] = ACTIONS(6006), + [anon_sym_bool] = ACTIONS(6006), + [anon_sym_int] = ACTIONS(6006), + [anon_sym_uint] = ACTIONS(6006), + [anon_sym_float] = ACTIONS(6006), + [anon_sym_range] = ACTIONS(6006), + [anon_sym_i8] = ACTIONS(6006), + [anon_sym_i16] = ACTIONS(6006), + [anon_sym_i32] = ACTIONS(6006), + [anon_sym_i64] = ACTIONS(6006), + [anon_sym_u8] = ACTIONS(6006), + [anon_sym_u16] = ACTIONS(6006), + [anon_sym_u32] = ACTIONS(6006), + [anon_sym_u64] = ACTIONS(6006), + [anon_sym_isize] = ACTIONS(6006), + [anon_sym_usize] = ACTIONS(6006), + [anon_sym_f32] = ACTIONS(6006), + [anon_sym_f64] = ACTIONS(6006), + [anon_sym_c_char] = ACTIONS(6006), + [anon_sym_c_schar] = ACTIONS(6006), + [anon_sym_c_uchar] = ACTIONS(6006), + [anon_sym_c_short] = ACTIONS(6006), + [anon_sym_c_ushort] = ACTIONS(6006), + [anon_sym_c_int] = ACTIONS(6006), + [anon_sym_c_uint] = ACTIONS(6006), + [anon_sym_c_long] = ACTIONS(6006), + [anon_sym_c_ulong] = ACTIONS(6006), + [anon_sym_c_longlong] = ACTIONS(6006), + [anon_sym_c_ulonglong] = ACTIONS(6006), + [anon_sym_c_float] = ACTIONS(6006), + [anon_sym_c_double] = ACTIONS(6006), + [anon_sym_c_longdouble] = ACTIONS(6006), + [anon_sym_PLUS_EQ] = ACTIONS(6004), + [anon_sym_DASH_EQ] = ACTIONS(6004), + [anon_sym_STAR_EQ] = ACTIONS(6004), + [anon_sym_SLASH_EQ] = ACTIONS(6004), + [anon_sym_AMP_EQ] = ACTIONS(6004), + [anon_sym_PIPE_EQ] = ACTIONS(6006), + [anon_sym_xor_EQ] = ACTIONS(6004), + [anon_sym_LT_LT_EQ] = ACTIONS(6004), + [anon_sym_GT_GT_EQ] = ACTIONS(6004), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6004), + [anon_sym_return] = ACTIONS(6006), + [anon_sym_yield] = ACTIONS(6006), + [anon_sym_break] = ACTIONS(6006), + [anon_sym_continue] = ACTIONS(6006), + [anon_sym_defer] = ACTIONS(6006), + [anon_sym_errdefer] = ACTIONS(6006), + [anon_sym_if] = ACTIONS(6006), + [anon_sym_else] = ACTIONS(6006), + [anon_sym_while] = ACTIONS(6006), + [anon_sym_expand] = ACTIONS(6006), + [anon_sym_for] = ACTIONS(6006), + [anon_sym_PIPE2] = ACTIONS(6004), + [anon_sym_match] = ACTIONS(6006), + [anon_sym_DOT_DOT] = ACTIONS(6006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6004), + [anon_sym_orelse] = ACTIONS(6006), + [anon_sym_or] = ACTIONS(6006), + [anon_sym_and] = ACTIONS(6006), + [anon_sym_EQ_EQ] = ACTIONS(6004), + [anon_sym_BANG_EQ] = ACTIONS(6004), + [anon_sym_LT] = ACTIONS(6006), + [anon_sym_LT_EQ] = ACTIONS(6004), + [anon_sym_GT] = ACTIONS(6006), + [anon_sym_GT_EQ] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6006), + [anon_sym_xor] = ACTIONS(6006), + [anon_sym_LT_LT] = ACTIONS(6006), + [anon_sym_GT_GT] = ACTIONS(6006), + [anon_sym_LT_LT_PIPE] = ACTIONS(6006), + [anon_sym_PLUS] = ACTIONS(6006), + [anon_sym_SLASH] = ACTIONS(6006), + [anon_sym_catch] = ACTIONS(6006), + [anon_sym_TILDE] = ACTIONS(6004), + [anon_sym_try] = ACTIONS(6006), + [anon_sym_DOT] = ACTIONS(6006), + [anon_sym_CARET] = ACTIONS(6004), + [anon_sym_true] = ACTIONS(6006), + [anon_sym_false] = ACTIONS(6006), + [anon_sym_null] = ACTIONS(6006), + [anon_sym_unreachable] = ACTIONS(6006), + [anon_sym_undefined] = ACTIONS(6006), + [sym_sink] = ACTIONS(6006), + [sym_integer] = ACTIONS(6006), + [sym_float] = ACTIONS(6004), + [anon_sym_DQUOTE] = ACTIONS(6004), + [sym_multiline_string] = ACTIONS(6004), + [sym_character] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6004), + }, + [STATE(3742)] = { + [sym_identifier] = ACTIONS(5300), + [anon_sym_func] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_EQ] = ACTIONS(5300), + [anon_sym_struct] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_DOLLAR] = ACTIONS(5298), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5298), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_void] = ACTIONS(5300), + [anon_sym_noreturn] = ACTIONS(5300), + [anon_sym_type] = ACTIONS(5300), + [anon_sym_anyopaque] = ACTIONS(5300), + [anon_sym_bool] = ACTIONS(5300), + [anon_sym_int] = ACTIONS(5300), + [anon_sym_uint] = ACTIONS(5300), + [anon_sym_float] = ACTIONS(5300), + [anon_sym_range] = ACTIONS(5300), + [anon_sym_i8] = ACTIONS(5300), + [anon_sym_i16] = ACTIONS(5300), + [anon_sym_i32] = ACTIONS(5300), + [anon_sym_i64] = ACTIONS(5300), + [anon_sym_u8] = ACTIONS(5300), + [anon_sym_u16] = ACTIONS(5300), + [anon_sym_u32] = ACTIONS(5300), + [anon_sym_u64] = ACTIONS(5300), + [anon_sym_isize] = ACTIONS(5300), + [anon_sym_usize] = ACTIONS(5300), + [anon_sym_f32] = ACTIONS(5300), + [anon_sym_f64] = ACTIONS(5300), + [anon_sym_c_char] = ACTIONS(5300), + [anon_sym_c_schar] = ACTIONS(5300), + [anon_sym_c_uchar] = ACTIONS(5300), + [anon_sym_c_short] = ACTIONS(5300), + [anon_sym_c_ushort] = ACTIONS(5300), + [anon_sym_c_int] = ACTIONS(5300), + [anon_sym_c_uint] = ACTIONS(5300), + [anon_sym_c_long] = ACTIONS(5300), + [anon_sym_c_ulong] = ACTIONS(5300), + [anon_sym_c_longlong] = ACTIONS(5300), + [anon_sym_c_ulonglong] = ACTIONS(5300), + [anon_sym_c_float] = ACTIONS(5300), + [anon_sym_c_double] = ACTIONS(5300), + [anon_sym_c_longdouble] = ACTIONS(5300), + [anon_sym_PLUS_EQ] = ACTIONS(5298), + [anon_sym_DASH_EQ] = ACTIONS(5298), + [anon_sym_STAR_EQ] = ACTIONS(5298), + [anon_sym_SLASH_EQ] = ACTIONS(5298), + [anon_sym_AMP_EQ] = ACTIONS(5298), + [anon_sym_PIPE_EQ] = ACTIONS(5300), + [anon_sym_xor_EQ] = ACTIONS(5298), + [anon_sym_LT_LT_EQ] = ACTIONS(5298), + [anon_sym_GT_GT_EQ] = ACTIONS(5298), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5298), + [anon_sym_return] = ACTIONS(5300), + [anon_sym_yield] = ACTIONS(5300), + [anon_sym_break] = ACTIONS(5300), + [anon_sym_continue] = ACTIONS(5300), + [anon_sym_defer] = ACTIONS(5300), + [anon_sym_errdefer] = ACTIONS(5300), + [anon_sym_if] = ACTIONS(5300), + [anon_sym_else] = ACTIONS(5300), + [anon_sym_while] = ACTIONS(5300), + [anon_sym_expand] = ACTIONS(5300), + [anon_sym_for] = ACTIONS(5300), + [anon_sym_PIPE2] = ACTIONS(5298), + [anon_sym_match] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5298), + [anon_sym_orelse] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5298), + [anon_sym_BANG_EQ] = ACTIONS(5298), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_LT_EQ] = ACTIONS(5298), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5298), + [anon_sym_AMP] = ACTIONS(5300), + [anon_sym_xor] = ACTIONS(5300), + [anon_sym_LT_LT] = ACTIONS(5300), + [anon_sym_GT_GT] = ACTIONS(5300), + [anon_sym_LT_LT_PIPE] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_catch] = ACTIONS(5300), + [anon_sym_TILDE] = ACTIONS(5298), + [anon_sym_try] = ACTIONS(5300), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5298), + [anon_sym_true] = ACTIONS(5300), + [anon_sym_false] = ACTIONS(5300), + [anon_sym_null] = ACTIONS(5300), + [anon_sym_unreachable] = ACTIONS(5300), + [anon_sym_undefined] = ACTIONS(5300), + [sym_sink] = ACTIONS(5300), + [sym_integer] = ACTIONS(5300), + [sym_float] = ACTIONS(5298), + [anon_sym_DQUOTE] = ACTIONS(5298), + [sym_multiline_string] = ACTIONS(5298), + [sym_character] = ACTIONS(5298), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5298), + }, + [STATE(3743)] = { + [sym_identifier] = ACTIONS(5308), + [anon_sym_func] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_EQ] = ACTIONS(5308), + [anon_sym_struct] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_DOLLAR] = ACTIONS(5306), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5306), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_void] = ACTIONS(5308), + [anon_sym_noreturn] = ACTIONS(5308), + [anon_sym_type] = ACTIONS(5308), + [anon_sym_anyopaque] = ACTIONS(5308), + [anon_sym_bool] = ACTIONS(5308), + [anon_sym_int] = ACTIONS(5308), + [anon_sym_uint] = ACTIONS(5308), + [anon_sym_float] = ACTIONS(5308), + [anon_sym_range] = ACTIONS(5308), + [anon_sym_i8] = ACTIONS(5308), + [anon_sym_i16] = ACTIONS(5308), + [anon_sym_i32] = ACTIONS(5308), + [anon_sym_i64] = ACTIONS(5308), + [anon_sym_u8] = ACTIONS(5308), + [anon_sym_u16] = ACTIONS(5308), + [anon_sym_u32] = ACTIONS(5308), + [anon_sym_u64] = ACTIONS(5308), + [anon_sym_isize] = ACTIONS(5308), + [anon_sym_usize] = ACTIONS(5308), + [anon_sym_f32] = ACTIONS(5308), + [anon_sym_f64] = ACTIONS(5308), + [anon_sym_c_char] = ACTIONS(5308), + [anon_sym_c_schar] = ACTIONS(5308), + [anon_sym_c_uchar] = ACTIONS(5308), + [anon_sym_c_short] = ACTIONS(5308), + [anon_sym_c_ushort] = ACTIONS(5308), + [anon_sym_c_int] = ACTIONS(5308), + [anon_sym_c_uint] = ACTIONS(5308), + [anon_sym_c_long] = ACTIONS(5308), + [anon_sym_c_ulong] = ACTIONS(5308), + [anon_sym_c_longlong] = ACTIONS(5308), + [anon_sym_c_ulonglong] = ACTIONS(5308), + [anon_sym_c_float] = ACTIONS(5308), + [anon_sym_c_double] = ACTIONS(5308), + [anon_sym_c_longdouble] = ACTIONS(5308), + [anon_sym_PLUS_EQ] = ACTIONS(5306), + [anon_sym_DASH_EQ] = ACTIONS(5306), + [anon_sym_STAR_EQ] = ACTIONS(5306), + [anon_sym_SLASH_EQ] = ACTIONS(5306), + [anon_sym_AMP_EQ] = ACTIONS(5306), + [anon_sym_PIPE_EQ] = ACTIONS(5308), + [anon_sym_xor_EQ] = ACTIONS(5306), + [anon_sym_LT_LT_EQ] = ACTIONS(5306), + [anon_sym_GT_GT_EQ] = ACTIONS(5306), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5306), + [anon_sym_return] = ACTIONS(5308), + [anon_sym_yield] = ACTIONS(5308), + [anon_sym_break] = ACTIONS(5308), + [anon_sym_continue] = ACTIONS(5308), + [anon_sym_defer] = ACTIONS(5308), + [anon_sym_errdefer] = ACTIONS(5308), + [anon_sym_if] = ACTIONS(5308), + [anon_sym_else] = ACTIONS(5308), + [anon_sym_while] = ACTIONS(5308), + [anon_sym_expand] = ACTIONS(5308), + [anon_sym_for] = ACTIONS(5308), + [anon_sym_PIPE2] = ACTIONS(5306), + [anon_sym_match] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5306), + [anon_sym_orelse] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5306), + [anon_sym_BANG_EQ] = ACTIONS(5306), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5306), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5306), + [anon_sym_AMP] = ACTIONS(5308), + [anon_sym_xor] = ACTIONS(5308), + [anon_sym_LT_LT] = ACTIONS(5308), + [anon_sym_GT_GT] = ACTIONS(5308), + [anon_sym_LT_LT_PIPE] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_catch] = ACTIONS(5308), + [anon_sym_TILDE] = ACTIONS(5306), + [anon_sym_try] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5306), + [anon_sym_true] = ACTIONS(5308), + [anon_sym_false] = ACTIONS(5308), + [anon_sym_null] = ACTIONS(5308), + [anon_sym_unreachable] = ACTIONS(5308), + [anon_sym_undefined] = ACTIONS(5308), + [sym_sink] = ACTIONS(5308), + [sym_integer] = ACTIONS(5308), + [sym_float] = ACTIONS(5306), + [anon_sym_DQUOTE] = ACTIONS(5306), + [sym_multiline_string] = ACTIONS(5306), + [sym_character] = ACTIONS(5306), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5306), + }, + [STATE(3744)] = { + [sym_identifier] = ACTIONS(5312), + [anon_sym_func] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_struct] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_void] = ACTIONS(5312), + [anon_sym_noreturn] = ACTIONS(5312), + [anon_sym_type] = ACTIONS(5312), + [anon_sym_anyopaque] = ACTIONS(5312), + [anon_sym_bool] = ACTIONS(5312), + [anon_sym_int] = ACTIONS(5312), + [anon_sym_uint] = ACTIONS(5312), + [anon_sym_float] = ACTIONS(5312), + [anon_sym_range] = ACTIONS(5312), + [anon_sym_i8] = ACTIONS(5312), + [anon_sym_i16] = ACTIONS(5312), + [anon_sym_i32] = ACTIONS(5312), + [anon_sym_i64] = ACTIONS(5312), + [anon_sym_u8] = ACTIONS(5312), + [anon_sym_u16] = ACTIONS(5312), + [anon_sym_u32] = ACTIONS(5312), + [anon_sym_u64] = ACTIONS(5312), + [anon_sym_isize] = ACTIONS(5312), + [anon_sym_usize] = ACTIONS(5312), + [anon_sym_f32] = ACTIONS(5312), + [anon_sym_f64] = ACTIONS(5312), + [anon_sym_c_char] = ACTIONS(5312), + [anon_sym_c_schar] = ACTIONS(5312), + [anon_sym_c_uchar] = ACTIONS(5312), + [anon_sym_c_short] = ACTIONS(5312), + [anon_sym_c_ushort] = ACTIONS(5312), + [anon_sym_c_int] = ACTIONS(5312), + [anon_sym_c_uint] = ACTIONS(5312), + [anon_sym_c_long] = ACTIONS(5312), + [anon_sym_c_ulong] = ACTIONS(5312), + [anon_sym_c_longlong] = ACTIONS(5312), + [anon_sym_c_ulonglong] = ACTIONS(5312), + [anon_sym_c_float] = ACTIONS(5312), + [anon_sym_c_double] = ACTIONS(5312), + [anon_sym_c_longdouble] = ACTIONS(5312), + [anon_sym_PLUS_EQ] = ACTIONS(5310), + [anon_sym_DASH_EQ] = ACTIONS(5310), + [anon_sym_STAR_EQ] = ACTIONS(5310), + [anon_sym_SLASH_EQ] = ACTIONS(5310), + [anon_sym_AMP_EQ] = ACTIONS(5310), + [anon_sym_PIPE_EQ] = ACTIONS(5312), + [anon_sym_xor_EQ] = ACTIONS(5310), + [anon_sym_LT_LT_EQ] = ACTIONS(5310), + [anon_sym_GT_GT_EQ] = ACTIONS(5310), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5310), + [anon_sym_return] = ACTIONS(5312), + [anon_sym_yield] = ACTIONS(5312), + [anon_sym_break] = ACTIONS(5312), + [anon_sym_continue] = ACTIONS(5312), + [anon_sym_defer] = ACTIONS(5312), + [anon_sym_errdefer] = ACTIONS(5312), + [anon_sym_if] = ACTIONS(5312), + [anon_sym_else] = ACTIONS(5312), + [anon_sym_while] = ACTIONS(5312), + [anon_sym_expand] = ACTIONS(5312), + [anon_sym_for] = ACTIONS(5312), + [anon_sym_PIPE2] = ACTIONS(5310), + [anon_sym_match] = ACTIONS(5312), + [anon_sym_DOT_DOT] = ACTIONS(5312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5310), + [anon_sym_orelse] = ACTIONS(5312), + [anon_sym_or] = ACTIONS(5312), + [anon_sym_and] = ACTIONS(5312), + [anon_sym_EQ_EQ] = ACTIONS(5310), + [anon_sym_BANG_EQ] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_LT_EQ] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_EQ] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + [anon_sym_xor] = ACTIONS(5312), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5312), + [anon_sym_LT_LT_PIPE] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_catch] = ACTIONS(5312), + [anon_sym_TILDE] = ACTIONS(5310), + [anon_sym_try] = ACTIONS(5312), + [anon_sym_DOT] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5310), + [anon_sym_true] = ACTIONS(5312), + [anon_sym_false] = ACTIONS(5312), + [anon_sym_null] = ACTIONS(5312), + [anon_sym_unreachable] = ACTIONS(5312), + [anon_sym_undefined] = ACTIONS(5312), + [sym_sink] = ACTIONS(5312), + [sym_integer] = ACTIONS(5312), + [sym_float] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(5310), + [sym_multiline_string] = ACTIONS(5310), + [sym_character] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5310), + }, + [STATE(3745)] = { + [sym_identifier] = ACTIONS(5318), + [anon_sym_func] = ACTIONS(5318), + [anon_sym_BANG] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_struct] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_LBRACE] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5316), + [anon_sym_void] = ACTIONS(5318), + [anon_sym_noreturn] = ACTIONS(5318), + [anon_sym_type] = ACTIONS(5318), + [anon_sym_anyopaque] = ACTIONS(5318), + [anon_sym_bool] = ACTIONS(5318), + [anon_sym_int] = ACTIONS(5318), + [anon_sym_uint] = ACTIONS(5318), + [anon_sym_float] = ACTIONS(5318), + [anon_sym_range] = ACTIONS(5318), + [anon_sym_i8] = ACTIONS(5318), + [anon_sym_i16] = ACTIONS(5318), + [anon_sym_i32] = ACTIONS(5318), + [anon_sym_i64] = ACTIONS(5318), + [anon_sym_u8] = ACTIONS(5318), + [anon_sym_u16] = ACTIONS(5318), + [anon_sym_u32] = ACTIONS(5318), + [anon_sym_u64] = ACTIONS(5318), + [anon_sym_isize] = ACTIONS(5318), + [anon_sym_usize] = ACTIONS(5318), + [anon_sym_f32] = ACTIONS(5318), + [anon_sym_f64] = ACTIONS(5318), + [anon_sym_c_char] = ACTIONS(5318), + [anon_sym_c_schar] = ACTIONS(5318), + [anon_sym_c_uchar] = ACTIONS(5318), + [anon_sym_c_short] = ACTIONS(5318), + [anon_sym_c_ushort] = ACTIONS(5318), + [anon_sym_c_int] = ACTIONS(5318), + [anon_sym_c_uint] = ACTIONS(5318), + [anon_sym_c_long] = ACTIONS(5318), + [anon_sym_c_ulong] = ACTIONS(5318), + [anon_sym_c_longlong] = ACTIONS(5318), + [anon_sym_c_ulonglong] = ACTIONS(5318), + [anon_sym_c_float] = ACTIONS(5318), + [anon_sym_c_double] = ACTIONS(5318), + [anon_sym_c_longdouble] = ACTIONS(5318), + [anon_sym_PLUS_EQ] = ACTIONS(5316), + [anon_sym_DASH_EQ] = ACTIONS(5316), + [anon_sym_STAR_EQ] = ACTIONS(5316), + [anon_sym_SLASH_EQ] = ACTIONS(5316), + [anon_sym_AMP_EQ] = ACTIONS(5316), + [anon_sym_PIPE_EQ] = ACTIONS(5318), + [anon_sym_xor_EQ] = ACTIONS(5316), + [anon_sym_LT_LT_EQ] = ACTIONS(5316), + [anon_sym_GT_GT_EQ] = ACTIONS(5316), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5316), + [anon_sym_return] = ACTIONS(5318), + [anon_sym_yield] = ACTIONS(5318), + [anon_sym_break] = ACTIONS(5318), + [anon_sym_continue] = ACTIONS(5318), + [anon_sym_defer] = ACTIONS(5318), + [anon_sym_errdefer] = ACTIONS(5318), + [anon_sym_if] = ACTIONS(5318), + [anon_sym_else] = ACTIONS(5318), + [anon_sym_while] = ACTIONS(5318), + [anon_sym_expand] = ACTIONS(5318), + [anon_sym_for] = ACTIONS(5318), + [anon_sym_PIPE2] = ACTIONS(5316), + [anon_sym_match] = ACTIONS(5318), + [anon_sym_DOT_DOT] = ACTIONS(5318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5316), + [anon_sym_orelse] = ACTIONS(5318), + [anon_sym_or] = ACTIONS(5318), + [anon_sym_and] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5316), + [anon_sym_BANG_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_LT_EQ] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_EQ] = ACTIONS(5316), + [anon_sym_AMP] = ACTIONS(5318), + [anon_sym_xor] = ACTIONS(5318), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(5318), + [anon_sym_LT_LT_PIPE] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5318), + [anon_sym_SLASH] = ACTIONS(5318), + [anon_sym_catch] = ACTIONS(5318), + [anon_sym_TILDE] = ACTIONS(5316), + [anon_sym_try] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym_true] = ACTIONS(5318), + [anon_sym_false] = ACTIONS(5318), + [anon_sym_null] = ACTIONS(5318), + [anon_sym_unreachable] = ACTIONS(5318), + [anon_sym_undefined] = ACTIONS(5318), + [sym_sink] = ACTIONS(5318), + [sym_integer] = ACTIONS(5318), + [sym_float] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [sym_multiline_string] = ACTIONS(5316), + [sym_character] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5316), + }, + [STATE(3746)] = { + [sym_identifier] = ACTIONS(5322), + [anon_sym_func] = ACTIONS(5322), + [anon_sym_BANG] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5320), + [anon_sym_LBRACE] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5322), + [anon_sym_QMARK] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5320), + [anon_sym_void] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_type] = ACTIONS(5322), + [anon_sym_anyopaque] = ACTIONS(5322), + [anon_sym_bool] = ACTIONS(5322), + [anon_sym_int] = ACTIONS(5322), + [anon_sym_uint] = ACTIONS(5322), + [anon_sym_float] = ACTIONS(5322), + [anon_sym_range] = ACTIONS(5322), + [anon_sym_i8] = ACTIONS(5322), + [anon_sym_i16] = ACTIONS(5322), + [anon_sym_i32] = ACTIONS(5322), + [anon_sym_i64] = ACTIONS(5322), + [anon_sym_u8] = ACTIONS(5322), + [anon_sym_u16] = ACTIONS(5322), + [anon_sym_u32] = ACTIONS(5322), + [anon_sym_u64] = ACTIONS(5322), + [anon_sym_isize] = ACTIONS(5322), + [anon_sym_usize] = ACTIONS(5322), + [anon_sym_f32] = ACTIONS(5322), + [anon_sym_f64] = ACTIONS(5322), + [anon_sym_c_char] = ACTIONS(5322), + [anon_sym_c_schar] = ACTIONS(5322), + [anon_sym_c_uchar] = ACTIONS(5322), + [anon_sym_c_short] = ACTIONS(5322), + [anon_sym_c_ushort] = ACTIONS(5322), + [anon_sym_c_int] = ACTIONS(5322), + [anon_sym_c_uint] = ACTIONS(5322), + [anon_sym_c_long] = ACTIONS(5322), + [anon_sym_c_ulong] = ACTIONS(5322), + [anon_sym_c_longlong] = ACTIONS(5322), + [anon_sym_c_ulonglong] = ACTIONS(5322), + [anon_sym_c_float] = ACTIONS(5322), + [anon_sym_c_double] = ACTIONS(5322), + [anon_sym_c_longdouble] = ACTIONS(5322), + [anon_sym_PLUS_EQ] = ACTIONS(5320), + [anon_sym_DASH_EQ] = ACTIONS(5320), + [anon_sym_STAR_EQ] = ACTIONS(5320), + [anon_sym_SLASH_EQ] = ACTIONS(5320), + [anon_sym_AMP_EQ] = ACTIONS(5320), + [anon_sym_PIPE_EQ] = ACTIONS(5322), + [anon_sym_xor_EQ] = ACTIONS(5320), + [anon_sym_LT_LT_EQ] = ACTIONS(5320), + [anon_sym_GT_GT_EQ] = ACTIONS(5320), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5320), + [anon_sym_return] = ACTIONS(5322), + [anon_sym_yield] = ACTIONS(5322), + [anon_sym_break] = ACTIONS(5322), + [anon_sym_continue] = ACTIONS(5322), + [anon_sym_defer] = ACTIONS(5322), + [anon_sym_errdefer] = ACTIONS(5322), + [anon_sym_if] = ACTIONS(5322), + [anon_sym_else] = ACTIONS(5322), + [anon_sym_while] = ACTIONS(5322), + [anon_sym_expand] = ACTIONS(5322), + [anon_sym_for] = ACTIONS(5322), + [anon_sym_PIPE2] = ACTIONS(5320), + [anon_sym_match] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5320), + [anon_sym_orelse] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5320), + [anon_sym_BANG_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(5322), + [anon_sym_xor] = ACTIONS(5322), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5322), + [anon_sym_LT_LT_PIPE] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5322), + [anon_sym_catch] = ACTIONS(5322), + [anon_sym_TILDE] = ACTIONS(5320), + [anon_sym_try] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym_true] = ACTIONS(5322), + [anon_sym_false] = ACTIONS(5322), + [anon_sym_null] = ACTIONS(5322), + [anon_sym_unreachable] = ACTIONS(5322), + [anon_sym_undefined] = ACTIONS(5322), + [sym_sink] = ACTIONS(5322), + [sym_integer] = ACTIONS(5322), + [sym_float] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [sym_multiline_string] = ACTIONS(5320), + [sym_character] = ACTIONS(5320), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5320), + }, + [STATE(3747)] = { + [sym_identifier] = ACTIONS(5326), + [anon_sym_func] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_struct] = ACTIONS(5326), + [anon_sym_LPAREN] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5326), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym_void] = ACTIONS(5326), + [anon_sym_noreturn] = ACTIONS(5326), + [anon_sym_type] = ACTIONS(5326), + [anon_sym_anyopaque] = ACTIONS(5326), + [anon_sym_bool] = ACTIONS(5326), + [anon_sym_int] = ACTIONS(5326), + [anon_sym_uint] = ACTIONS(5326), + [anon_sym_float] = ACTIONS(5326), + [anon_sym_range] = ACTIONS(5326), + [anon_sym_i8] = ACTIONS(5326), + [anon_sym_i16] = ACTIONS(5326), + [anon_sym_i32] = ACTIONS(5326), + [anon_sym_i64] = ACTIONS(5326), + [anon_sym_u8] = ACTIONS(5326), + [anon_sym_u16] = ACTIONS(5326), + [anon_sym_u32] = ACTIONS(5326), + [anon_sym_u64] = ACTIONS(5326), + [anon_sym_isize] = ACTIONS(5326), + [anon_sym_usize] = ACTIONS(5326), + [anon_sym_f32] = ACTIONS(5326), + [anon_sym_f64] = ACTIONS(5326), + [anon_sym_c_char] = ACTIONS(5326), + [anon_sym_c_schar] = ACTIONS(5326), + [anon_sym_c_uchar] = ACTIONS(5326), + [anon_sym_c_short] = ACTIONS(5326), + [anon_sym_c_ushort] = ACTIONS(5326), + [anon_sym_c_int] = ACTIONS(5326), + [anon_sym_c_uint] = ACTIONS(5326), + [anon_sym_c_long] = ACTIONS(5326), + [anon_sym_c_ulong] = ACTIONS(5326), + [anon_sym_c_longlong] = ACTIONS(5326), + [anon_sym_c_ulonglong] = ACTIONS(5326), + [anon_sym_c_float] = ACTIONS(5326), + [anon_sym_c_double] = ACTIONS(5326), + [anon_sym_c_longdouble] = ACTIONS(5326), + [anon_sym_PLUS_EQ] = ACTIONS(5324), + [anon_sym_DASH_EQ] = ACTIONS(5324), + [anon_sym_STAR_EQ] = ACTIONS(5324), + [anon_sym_SLASH_EQ] = ACTIONS(5324), + [anon_sym_AMP_EQ] = ACTIONS(5324), + [anon_sym_PIPE_EQ] = ACTIONS(5326), + [anon_sym_xor_EQ] = ACTIONS(5324), + [anon_sym_LT_LT_EQ] = ACTIONS(5324), + [anon_sym_GT_GT_EQ] = ACTIONS(5324), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5324), + [anon_sym_return] = ACTIONS(5326), + [anon_sym_yield] = ACTIONS(5326), + [anon_sym_break] = ACTIONS(5326), + [anon_sym_continue] = ACTIONS(5326), + [anon_sym_defer] = ACTIONS(5326), + [anon_sym_errdefer] = ACTIONS(5326), + [anon_sym_if] = ACTIONS(5326), + [anon_sym_else] = ACTIONS(5326), + [anon_sym_while] = ACTIONS(5326), + [anon_sym_expand] = ACTIONS(5326), + [anon_sym_for] = ACTIONS(5326), + [anon_sym_PIPE2] = ACTIONS(5324), + [anon_sym_match] = ACTIONS(5326), + [anon_sym_DOT_DOT] = ACTIONS(5326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5324), + [anon_sym_orelse] = ACTIONS(5326), + [anon_sym_or] = ACTIONS(5326), + [anon_sym_and] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5324), + [anon_sym_BANG_EQ] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5326), + [anon_sym_GT_EQ] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5326), + [anon_sym_xor] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5326), + [anon_sym_GT_GT] = ACTIONS(5326), + [anon_sym_LT_LT_PIPE] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5326), + [anon_sym_SLASH] = ACTIONS(5326), + [anon_sym_catch] = ACTIONS(5326), + [anon_sym_TILDE] = ACTIONS(5324), + [anon_sym_try] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym_true] = ACTIONS(5326), + [anon_sym_false] = ACTIONS(5326), + [anon_sym_null] = ACTIONS(5326), + [anon_sym_unreachable] = ACTIONS(5326), + [anon_sym_undefined] = ACTIONS(5326), + [sym_sink] = ACTIONS(5326), + [sym_integer] = ACTIONS(5326), + [sym_float] = ACTIONS(5324), + [anon_sym_DQUOTE] = ACTIONS(5324), + [sym_multiline_string] = ACTIONS(5324), + [sym_character] = ACTIONS(5324), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5324), + }, + [STATE(3748)] = { + [sym_identifier] = ACTIONS(5330), + [anon_sym_func] = ACTIONS(5330), + [anon_sym_BANG] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_struct] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_LBRACE] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5330), + [anon_sym_QMARK] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5328), + [anon_sym_void] = ACTIONS(5330), + [anon_sym_noreturn] = ACTIONS(5330), + [anon_sym_type] = ACTIONS(5330), + [anon_sym_anyopaque] = ACTIONS(5330), + [anon_sym_bool] = ACTIONS(5330), + [anon_sym_int] = ACTIONS(5330), + [anon_sym_uint] = ACTIONS(5330), + [anon_sym_float] = ACTIONS(5330), + [anon_sym_range] = ACTIONS(5330), + [anon_sym_i8] = ACTIONS(5330), + [anon_sym_i16] = ACTIONS(5330), + [anon_sym_i32] = ACTIONS(5330), + [anon_sym_i64] = ACTIONS(5330), + [anon_sym_u8] = ACTIONS(5330), + [anon_sym_u16] = ACTIONS(5330), + [anon_sym_u32] = ACTIONS(5330), + [anon_sym_u64] = ACTIONS(5330), + [anon_sym_isize] = ACTIONS(5330), + [anon_sym_usize] = ACTIONS(5330), + [anon_sym_f32] = ACTIONS(5330), + [anon_sym_f64] = ACTIONS(5330), + [anon_sym_c_char] = ACTIONS(5330), + [anon_sym_c_schar] = ACTIONS(5330), + [anon_sym_c_uchar] = ACTIONS(5330), + [anon_sym_c_short] = ACTIONS(5330), + [anon_sym_c_ushort] = ACTIONS(5330), + [anon_sym_c_int] = ACTIONS(5330), + [anon_sym_c_uint] = ACTIONS(5330), + [anon_sym_c_long] = ACTIONS(5330), + [anon_sym_c_ulong] = ACTIONS(5330), + [anon_sym_c_longlong] = ACTIONS(5330), + [anon_sym_c_ulonglong] = ACTIONS(5330), + [anon_sym_c_float] = ACTIONS(5330), + [anon_sym_c_double] = ACTIONS(5330), + [anon_sym_c_longdouble] = ACTIONS(5330), + [anon_sym_PLUS_EQ] = ACTIONS(5328), + [anon_sym_DASH_EQ] = ACTIONS(5328), + [anon_sym_STAR_EQ] = ACTIONS(5328), + [anon_sym_SLASH_EQ] = ACTIONS(5328), + [anon_sym_AMP_EQ] = ACTIONS(5328), + [anon_sym_PIPE_EQ] = ACTIONS(5330), + [anon_sym_xor_EQ] = ACTIONS(5328), + [anon_sym_LT_LT_EQ] = ACTIONS(5328), + [anon_sym_GT_GT_EQ] = ACTIONS(5328), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5328), + [anon_sym_return] = ACTIONS(5330), + [anon_sym_yield] = ACTIONS(5330), + [anon_sym_break] = ACTIONS(5330), + [anon_sym_continue] = ACTIONS(5330), + [anon_sym_defer] = ACTIONS(5330), + [anon_sym_errdefer] = ACTIONS(5330), + [anon_sym_if] = ACTIONS(5330), + [anon_sym_else] = ACTIONS(5330), + [anon_sym_while] = ACTIONS(5330), + [anon_sym_expand] = ACTIONS(5330), + [anon_sym_for] = ACTIONS(5330), + [anon_sym_PIPE2] = ACTIONS(5328), + [anon_sym_match] = ACTIONS(5330), + [anon_sym_DOT_DOT] = ACTIONS(5330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5328), + [anon_sym_orelse] = ACTIONS(5330), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_and] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_BANG_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_EQ] = ACTIONS(5328), + [anon_sym_AMP] = ACTIONS(5330), + [anon_sym_xor] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5330), + [anon_sym_LT_LT_PIPE] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5330), + [anon_sym_SLASH] = ACTIONS(5330), + [anon_sym_catch] = ACTIONS(5330), + [anon_sym_TILDE] = ACTIONS(5328), + [anon_sym_try] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym_true] = ACTIONS(5330), + [anon_sym_false] = ACTIONS(5330), + [anon_sym_null] = ACTIONS(5330), + [anon_sym_unreachable] = ACTIONS(5330), + [anon_sym_undefined] = ACTIONS(5330), + [sym_sink] = ACTIONS(5330), + [sym_integer] = ACTIONS(5330), + [sym_float] = ACTIONS(5328), + [anon_sym_DQUOTE] = ACTIONS(5328), + [sym_multiline_string] = ACTIONS(5328), + [sym_character] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5328), + }, + [STATE(3749)] = { + [sym_identifier] = ACTIONS(5334), + [anon_sym_func] = ACTIONS(5334), + [anon_sym_BANG] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5332), + [anon_sym_LBRACE] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5334), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5332), + [anon_sym_void] = ACTIONS(5334), + [anon_sym_noreturn] = ACTIONS(5334), + [anon_sym_type] = ACTIONS(5334), + [anon_sym_anyopaque] = ACTIONS(5334), + [anon_sym_bool] = ACTIONS(5334), + [anon_sym_int] = ACTIONS(5334), + [anon_sym_uint] = ACTIONS(5334), + [anon_sym_float] = ACTIONS(5334), + [anon_sym_range] = ACTIONS(5334), + [anon_sym_i8] = ACTIONS(5334), + [anon_sym_i16] = ACTIONS(5334), + [anon_sym_i32] = ACTIONS(5334), + [anon_sym_i64] = ACTIONS(5334), + [anon_sym_u8] = ACTIONS(5334), + [anon_sym_u16] = ACTIONS(5334), + [anon_sym_u32] = ACTIONS(5334), + [anon_sym_u64] = ACTIONS(5334), + [anon_sym_isize] = ACTIONS(5334), + [anon_sym_usize] = ACTIONS(5334), + [anon_sym_f32] = ACTIONS(5334), + [anon_sym_f64] = ACTIONS(5334), + [anon_sym_c_char] = ACTIONS(5334), + [anon_sym_c_schar] = ACTIONS(5334), + [anon_sym_c_uchar] = ACTIONS(5334), + [anon_sym_c_short] = ACTIONS(5334), + [anon_sym_c_ushort] = ACTIONS(5334), + [anon_sym_c_int] = ACTIONS(5334), + [anon_sym_c_uint] = ACTIONS(5334), + [anon_sym_c_long] = ACTIONS(5334), + [anon_sym_c_ulong] = ACTIONS(5334), + [anon_sym_c_longlong] = ACTIONS(5334), + [anon_sym_c_ulonglong] = ACTIONS(5334), + [anon_sym_c_float] = ACTIONS(5334), + [anon_sym_c_double] = ACTIONS(5334), + [anon_sym_c_longdouble] = ACTIONS(5334), + [anon_sym_PLUS_EQ] = ACTIONS(5332), + [anon_sym_DASH_EQ] = ACTIONS(5332), + [anon_sym_STAR_EQ] = ACTIONS(5332), + [anon_sym_SLASH_EQ] = ACTIONS(5332), + [anon_sym_AMP_EQ] = ACTIONS(5332), + [anon_sym_PIPE_EQ] = ACTIONS(5334), + [anon_sym_xor_EQ] = ACTIONS(5332), + [anon_sym_LT_LT_EQ] = ACTIONS(5332), + [anon_sym_GT_GT_EQ] = ACTIONS(5332), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5332), + [anon_sym_return] = ACTIONS(5334), + [anon_sym_yield] = ACTIONS(5334), + [anon_sym_break] = ACTIONS(5334), + [anon_sym_continue] = ACTIONS(5334), + [anon_sym_defer] = ACTIONS(5334), + [anon_sym_errdefer] = ACTIONS(5334), + [anon_sym_if] = ACTIONS(5334), + [anon_sym_else] = ACTIONS(5334), + [anon_sym_while] = ACTIONS(5334), + [anon_sym_expand] = ACTIONS(5334), + [anon_sym_for] = ACTIONS(5334), + [anon_sym_PIPE2] = ACTIONS(5332), + [anon_sym_match] = ACTIONS(5334), + [anon_sym_DOT_DOT] = ACTIONS(5334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5332), + [anon_sym_orelse] = ACTIONS(5334), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_and] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5332), + [anon_sym_BANG_EQ] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5334), + [anon_sym_LT_EQ] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5334), + [anon_sym_GT_EQ] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5334), + [anon_sym_xor] = ACTIONS(5334), + [anon_sym_LT_LT] = ACTIONS(5334), + [anon_sym_GT_GT] = ACTIONS(5334), + [anon_sym_LT_LT_PIPE] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5334), + [anon_sym_SLASH] = ACTIONS(5334), + [anon_sym_catch] = ACTIONS(5334), + [anon_sym_TILDE] = ACTIONS(5332), + [anon_sym_try] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(5334), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym_true] = ACTIONS(5334), + [anon_sym_false] = ACTIONS(5334), + [anon_sym_null] = ACTIONS(5334), + [anon_sym_unreachable] = ACTIONS(5334), + [anon_sym_undefined] = ACTIONS(5334), + [sym_sink] = ACTIONS(5334), + [sym_integer] = ACTIONS(5334), + [sym_float] = ACTIONS(5332), + [anon_sym_DQUOTE] = ACTIONS(5332), + [sym_multiline_string] = ACTIONS(5332), + [sym_character] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5332), + }, + [STATE(3750)] = { + [sym_identifier] = ACTIONS(5338), + [anon_sym_func] = ACTIONS(5338), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_struct] = ACTIONS(5338), + [anon_sym_LPAREN] = ACTIONS(5336), + [anon_sym_LBRACE] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5338), + [anon_sym_QMARK] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5336), + [anon_sym_void] = ACTIONS(5338), + [anon_sym_noreturn] = ACTIONS(5338), + [anon_sym_type] = ACTIONS(5338), + [anon_sym_anyopaque] = ACTIONS(5338), + [anon_sym_bool] = ACTIONS(5338), + [anon_sym_int] = ACTIONS(5338), + [anon_sym_uint] = ACTIONS(5338), + [anon_sym_float] = ACTIONS(5338), + [anon_sym_range] = ACTIONS(5338), + [anon_sym_i8] = ACTIONS(5338), + [anon_sym_i16] = ACTIONS(5338), + [anon_sym_i32] = ACTIONS(5338), + [anon_sym_i64] = ACTIONS(5338), + [anon_sym_u8] = ACTIONS(5338), + [anon_sym_u16] = ACTIONS(5338), + [anon_sym_u32] = ACTIONS(5338), + [anon_sym_u64] = ACTIONS(5338), + [anon_sym_isize] = ACTIONS(5338), + [anon_sym_usize] = ACTIONS(5338), + [anon_sym_f32] = ACTIONS(5338), + [anon_sym_f64] = ACTIONS(5338), + [anon_sym_c_char] = ACTIONS(5338), + [anon_sym_c_schar] = ACTIONS(5338), + [anon_sym_c_uchar] = ACTIONS(5338), + [anon_sym_c_short] = ACTIONS(5338), + [anon_sym_c_ushort] = ACTIONS(5338), + [anon_sym_c_int] = ACTIONS(5338), + [anon_sym_c_uint] = ACTIONS(5338), + [anon_sym_c_long] = ACTIONS(5338), + [anon_sym_c_ulong] = ACTIONS(5338), + [anon_sym_c_longlong] = ACTIONS(5338), + [anon_sym_c_ulonglong] = ACTIONS(5338), + [anon_sym_c_float] = ACTIONS(5338), + [anon_sym_c_double] = ACTIONS(5338), + [anon_sym_c_longdouble] = ACTIONS(5338), + [anon_sym_PLUS_EQ] = ACTIONS(5336), + [anon_sym_DASH_EQ] = ACTIONS(5336), + [anon_sym_STAR_EQ] = ACTIONS(5336), + [anon_sym_SLASH_EQ] = ACTIONS(5336), + [anon_sym_AMP_EQ] = ACTIONS(5336), + [anon_sym_PIPE_EQ] = ACTIONS(5338), + [anon_sym_xor_EQ] = ACTIONS(5336), + [anon_sym_LT_LT_EQ] = ACTIONS(5336), + [anon_sym_GT_GT_EQ] = ACTIONS(5336), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5336), + [anon_sym_return] = ACTIONS(5338), + [anon_sym_yield] = ACTIONS(5338), + [anon_sym_break] = ACTIONS(5338), + [anon_sym_continue] = ACTIONS(5338), + [anon_sym_defer] = ACTIONS(5338), + [anon_sym_errdefer] = ACTIONS(5338), + [anon_sym_if] = ACTIONS(5338), + [anon_sym_else] = ACTIONS(5338), + [anon_sym_while] = ACTIONS(5338), + [anon_sym_expand] = ACTIONS(5338), + [anon_sym_for] = ACTIONS(5338), + [anon_sym_PIPE2] = ACTIONS(5336), + [anon_sym_match] = ACTIONS(5338), + [anon_sym_DOT_DOT] = ACTIONS(5338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5336), + [anon_sym_orelse] = ACTIONS(5338), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_and] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5338), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5338), + [anon_sym_xor] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5338), + [anon_sym_LT_LT_PIPE] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_SLASH] = ACTIONS(5338), + [anon_sym_catch] = ACTIONS(5338), + [anon_sym_TILDE] = ACTIONS(5336), + [anon_sym_try] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym_true] = ACTIONS(5338), + [anon_sym_false] = ACTIONS(5338), + [anon_sym_null] = ACTIONS(5338), + [anon_sym_unreachable] = ACTIONS(5338), + [anon_sym_undefined] = ACTIONS(5338), + [sym_sink] = ACTIONS(5338), + [sym_integer] = ACTIONS(5338), + [sym_float] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(5336), + [sym_multiline_string] = ACTIONS(5336), + [sym_character] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5336), + }, + [STATE(3751)] = { + [sym_identifier] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5342), + [anon_sym_BANG] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_struct] = ACTIONS(5342), + [anon_sym_LPAREN] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5342), + [anon_sym_QMARK] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5340), + [anon_sym_void] = ACTIONS(5342), + [anon_sym_noreturn] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_anyopaque] = ACTIONS(5342), + [anon_sym_bool] = ACTIONS(5342), + [anon_sym_int] = ACTIONS(5342), + [anon_sym_uint] = ACTIONS(5342), + [anon_sym_float] = ACTIONS(5342), + [anon_sym_range] = ACTIONS(5342), + [anon_sym_i8] = ACTIONS(5342), + [anon_sym_i16] = ACTIONS(5342), + [anon_sym_i32] = ACTIONS(5342), + [anon_sym_i64] = ACTIONS(5342), + [anon_sym_u8] = ACTIONS(5342), + [anon_sym_u16] = ACTIONS(5342), + [anon_sym_u32] = ACTIONS(5342), + [anon_sym_u64] = ACTIONS(5342), + [anon_sym_isize] = ACTIONS(5342), + [anon_sym_usize] = ACTIONS(5342), + [anon_sym_f32] = ACTIONS(5342), + [anon_sym_f64] = ACTIONS(5342), + [anon_sym_c_char] = ACTIONS(5342), + [anon_sym_c_schar] = ACTIONS(5342), + [anon_sym_c_uchar] = ACTIONS(5342), + [anon_sym_c_short] = ACTIONS(5342), + [anon_sym_c_ushort] = ACTIONS(5342), + [anon_sym_c_int] = ACTIONS(5342), + [anon_sym_c_uint] = ACTIONS(5342), + [anon_sym_c_long] = ACTIONS(5342), + [anon_sym_c_ulong] = ACTIONS(5342), + [anon_sym_c_longlong] = ACTIONS(5342), + [anon_sym_c_ulonglong] = ACTIONS(5342), + [anon_sym_c_float] = ACTIONS(5342), + [anon_sym_c_double] = ACTIONS(5342), + [anon_sym_c_longdouble] = ACTIONS(5342), + [anon_sym_PLUS_EQ] = ACTIONS(5340), + [anon_sym_DASH_EQ] = ACTIONS(5340), + [anon_sym_STAR_EQ] = ACTIONS(5340), + [anon_sym_SLASH_EQ] = ACTIONS(5340), + [anon_sym_AMP_EQ] = ACTIONS(5340), + [anon_sym_PIPE_EQ] = ACTIONS(5342), + [anon_sym_xor_EQ] = ACTIONS(5340), + [anon_sym_LT_LT_EQ] = ACTIONS(5340), + [anon_sym_GT_GT_EQ] = ACTIONS(5340), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5340), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_break] = ACTIONS(5342), + [anon_sym_continue] = ACTIONS(5342), + [anon_sym_defer] = ACTIONS(5342), + [anon_sym_errdefer] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_else] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_expand] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_PIPE2] = ACTIONS(5340), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_DOT_DOT] = ACTIONS(5342), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5340), + [anon_sym_orelse] = ACTIONS(5342), + [anon_sym_or] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_EQ_EQ] = ACTIONS(5340), + [anon_sym_BANG_EQ] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5342), + [anon_sym_LT_EQ] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5342), + [anon_sym_GT_EQ] = ACTIONS(5340), + [anon_sym_AMP] = ACTIONS(5342), + [anon_sym_xor] = ACTIONS(5342), + [anon_sym_LT_LT] = ACTIONS(5342), + [anon_sym_GT_GT] = ACTIONS(5342), + [anon_sym_LT_LT_PIPE] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_SLASH] = ACTIONS(5342), + [anon_sym_catch] = ACTIONS(5342), + [anon_sym_TILDE] = ACTIONS(5340), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_DOT] = ACTIONS(5342), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym_true] = ACTIONS(5342), + [anon_sym_false] = ACTIONS(5342), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_unreachable] = ACTIONS(5342), + [anon_sym_undefined] = ACTIONS(5342), + [sym_sink] = ACTIONS(5342), + [sym_integer] = ACTIONS(5342), + [sym_float] = ACTIONS(5340), + [anon_sym_DQUOTE] = ACTIONS(5340), + [sym_multiline_string] = ACTIONS(5340), + [sym_character] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5340), + }, + [STATE(3752)] = { + [sym_identifier] = ACTIONS(5346), + [anon_sym_func] = ACTIONS(5346), + [anon_sym_BANG] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_LPAREN] = ACTIONS(5344), + [anon_sym_LBRACE] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5346), + [anon_sym_QMARK] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5344), + [anon_sym_void] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_type] = ACTIONS(5346), + [anon_sym_anyopaque] = ACTIONS(5346), + [anon_sym_bool] = ACTIONS(5346), + [anon_sym_int] = ACTIONS(5346), + [anon_sym_uint] = ACTIONS(5346), + [anon_sym_float] = ACTIONS(5346), + [anon_sym_range] = ACTIONS(5346), + [anon_sym_i8] = ACTIONS(5346), + [anon_sym_i16] = ACTIONS(5346), + [anon_sym_i32] = ACTIONS(5346), + [anon_sym_i64] = ACTIONS(5346), + [anon_sym_u8] = ACTIONS(5346), + [anon_sym_u16] = ACTIONS(5346), + [anon_sym_u32] = ACTIONS(5346), + [anon_sym_u64] = ACTIONS(5346), + [anon_sym_isize] = ACTIONS(5346), + [anon_sym_usize] = ACTIONS(5346), + [anon_sym_f32] = ACTIONS(5346), + [anon_sym_f64] = ACTIONS(5346), + [anon_sym_c_char] = ACTIONS(5346), + [anon_sym_c_schar] = ACTIONS(5346), + [anon_sym_c_uchar] = ACTIONS(5346), + [anon_sym_c_short] = ACTIONS(5346), + [anon_sym_c_ushort] = ACTIONS(5346), + [anon_sym_c_int] = ACTIONS(5346), + [anon_sym_c_uint] = ACTIONS(5346), + [anon_sym_c_long] = ACTIONS(5346), + [anon_sym_c_ulong] = ACTIONS(5346), + [anon_sym_c_longlong] = ACTIONS(5346), + [anon_sym_c_ulonglong] = ACTIONS(5346), + [anon_sym_c_float] = ACTIONS(5346), + [anon_sym_c_double] = ACTIONS(5346), + [anon_sym_c_longdouble] = ACTIONS(5346), + [anon_sym_PLUS_EQ] = ACTIONS(5344), + [anon_sym_DASH_EQ] = ACTIONS(5344), + [anon_sym_STAR_EQ] = ACTIONS(5344), + [anon_sym_SLASH_EQ] = ACTIONS(5344), + [anon_sym_AMP_EQ] = ACTIONS(5344), + [anon_sym_PIPE_EQ] = ACTIONS(5346), + [anon_sym_xor_EQ] = ACTIONS(5344), + [anon_sym_LT_LT_EQ] = ACTIONS(5344), + [anon_sym_GT_GT_EQ] = ACTIONS(5344), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5344), + [anon_sym_return] = ACTIONS(5346), + [anon_sym_yield] = ACTIONS(5346), + [anon_sym_break] = ACTIONS(5346), + [anon_sym_continue] = ACTIONS(5346), + [anon_sym_defer] = ACTIONS(5346), + [anon_sym_errdefer] = ACTIONS(5346), + [anon_sym_if] = ACTIONS(5346), + [anon_sym_else] = ACTIONS(5346), + [anon_sym_while] = ACTIONS(5346), + [anon_sym_expand] = ACTIONS(5346), + [anon_sym_for] = ACTIONS(5346), + [anon_sym_PIPE2] = ACTIONS(5344), + [anon_sym_match] = ACTIONS(5346), + [anon_sym_DOT_DOT] = ACTIONS(5346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5344), + [anon_sym_orelse] = ACTIONS(5346), + [anon_sym_or] = ACTIONS(5346), + [anon_sym_and] = ACTIONS(5346), + [anon_sym_EQ_EQ] = ACTIONS(5344), + [anon_sym_BANG_EQ] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5346), + [anon_sym_LT_EQ] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5346), + [anon_sym_GT_EQ] = ACTIONS(5344), + [anon_sym_AMP] = ACTIONS(5346), + [anon_sym_xor] = ACTIONS(5346), + [anon_sym_LT_LT] = ACTIONS(5346), + [anon_sym_GT_GT] = ACTIONS(5346), + [anon_sym_LT_LT_PIPE] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5346), + [anon_sym_SLASH] = ACTIONS(5346), + [anon_sym_catch] = ACTIONS(5346), + [anon_sym_TILDE] = ACTIONS(5344), + [anon_sym_try] = ACTIONS(5346), + [anon_sym_DOT] = ACTIONS(5346), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym_true] = ACTIONS(5346), + [anon_sym_false] = ACTIONS(5346), + [anon_sym_null] = ACTIONS(5346), + [anon_sym_unreachable] = ACTIONS(5346), + [anon_sym_undefined] = ACTIONS(5346), + [sym_sink] = ACTIONS(5346), + [sym_integer] = ACTIONS(5346), + [sym_float] = ACTIONS(5344), + [anon_sym_DQUOTE] = ACTIONS(5344), + [sym_multiline_string] = ACTIONS(5344), + [sym_character] = ACTIONS(5344), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5344), + }, + [STATE(3753)] = { + [sym_identifier] = ACTIONS(5350), + [anon_sym_func] = ACTIONS(5350), + [anon_sym_BANG] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_struct] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_void] = ACTIONS(5350), + [anon_sym_noreturn] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_anyopaque] = ACTIONS(5350), + [anon_sym_bool] = ACTIONS(5350), + [anon_sym_int] = ACTIONS(5350), + [anon_sym_uint] = ACTIONS(5350), + [anon_sym_float] = ACTIONS(5350), + [anon_sym_range] = ACTIONS(5350), + [anon_sym_i8] = ACTIONS(5350), + [anon_sym_i16] = ACTIONS(5350), + [anon_sym_i32] = ACTIONS(5350), + [anon_sym_i64] = ACTIONS(5350), + [anon_sym_u8] = ACTIONS(5350), + [anon_sym_u16] = ACTIONS(5350), + [anon_sym_u32] = ACTIONS(5350), + [anon_sym_u64] = ACTIONS(5350), + [anon_sym_isize] = ACTIONS(5350), + [anon_sym_usize] = ACTIONS(5350), + [anon_sym_f32] = ACTIONS(5350), + [anon_sym_f64] = ACTIONS(5350), + [anon_sym_c_char] = ACTIONS(5350), + [anon_sym_c_schar] = ACTIONS(5350), + [anon_sym_c_uchar] = ACTIONS(5350), + [anon_sym_c_short] = ACTIONS(5350), + [anon_sym_c_ushort] = ACTIONS(5350), + [anon_sym_c_int] = ACTIONS(5350), + [anon_sym_c_uint] = ACTIONS(5350), + [anon_sym_c_long] = ACTIONS(5350), + [anon_sym_c_ulong] = ACTIONS(5350), + [anon_sym_c_longlong] = ACTIONS(5350), + [anon_sym_c_ulonglong] = ACTIONS(5350), + [anon_sym_c_float] = ACTIONS(5350), + [anon_sym_c_double] = ACTIONS(5350), + [anon_sym_c_longdouble] = ACTIONS(5350), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_PIPE_EQ] = ACTIONS(5350), + [anon_sym_xor_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5348), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_break] = ACTIONS(5350), + [anon_sym_continue] = ACTIONS(5350), + [anon_sym_defer] = ACTIONS(5350), + [anon_sym_errdefer] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_else] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_expand] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_PIPE2] = ACTIONS(5348), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_DOT_DOT] = ACTIONS(5350), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5348), + [anon_sym_orelse] = ACTIONS(5350), + [anon_sym_or] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_xor] = ACTIONS(5350), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_LT_LT_PIPE] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_catch] = ACTIONS(5350), + [anon_sym_TILDE] = ACTIONS(5348), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_true] = ACTIONS(5350), + [anon_sym_false] = ACTIONS(5350), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_unreachable] = ACTIONS(5350), + [anon_sym_undefined] = ACTIONS(5350), + [sym_sink] = ACTIONS(5350), + [sym_integer] = ACTIONS(5350), + [sym_float] = ACTIONS(5348), + [anon_sym_DQUOTE] = ACTIONS(5348), + [sym_multiline_string] = ACTIONS(5348), + [sym_character] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5348), + }, + [STATE(3754)] = { + [sym_identifier] = ACTIONS(5354), + [anon_sym_func] = ACTIONS(5354), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5352), + [anon_sym_LBRACE] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_void] = ACTIONS(5354), + [anon_sym_noreturn] = ACTIONS(5354), + [anon_sym_type] = ACTIONS(5354), + [anon_sym_anyopaque] = ACTIONS(5354), + [anon_sym_bool] = ACTIONS(5354), + [anon_sym_int] = ACTIONS(5354), + [anon_sym_uint] = ACTIONS(5354), + [anon_sym_float] = ACTIONS(5354), + [anon_sym_range] = ACTIONS(5354), + [anon_sym_i8] = ACTIONS(5354), + [anon_sym_i16] = ACTIONS(5354), + [anon_sym_i32] = ACTIONS(5354), + [anon_sym_i64] = ACTIONS(5354), + [anon_sym_u8] = ACTIONS(5354), + [anon_sym_u16] = ACTIONS(5354), + [anon_sym_u32] = ACTIONS(5354), + [anon_sym_u64] = ACTIONS(5354), + [anon_sym_isize] = ACTIONS(5354), + [anon_sym_usize] = ACTIONS(5354), + [anon_sym_f32] = ACTIONS(5354), + [anon_sym_f64] = ACTIONS(5354), + [anon_sym_c_char] = ACTIONS(5354), + [anon_sym_c_schar] = ACTIONS(5354), + [anon_sym_c_uchar] = ACTIONS(5354), + [anon_sym_c_short] = ACTIONS(5354), + [anon_sym_c_ushort] = ACTIONS(5354), + [anon_sym_c_int] = ACTIONS(5354), + [anon_sym_c_uint] = ACTIONS(5354), + [anon_sym_c_long] = ACTIONS(5354), + [anon_sym_c_ulong] = ACTIONS(5354), + [anon_sym_c_longlong] = ACTIONS(5354), + [anon_sym_c_ulonglong] = ACTIONS(5354), + [anon_sym_c_float] = ACTIONS(5354), + [anon_sym_c_double] = ACTIONS(5354), + [anon_sym_c_longdouble] = ACTIONS(5354), + [anon_sym_PLUS_EQ] = ACTIONS(5352), + [anon_sym_DASH_EQ] = ACTIONS(5352), + [anon_sym_STAR_EQ] = ACTIONS(5352), + [anon_sym_SLASH_EQ] = ACTIONS(5352), + [anon_sym_AMP_EQ] = ACTIONS(5352), + [anon_sym_PIPE_EQ] = ACTIONS(5354), + [anon_sym_xor_EQ] = ACTIONS(5352), + [anon_sym_LT_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_GT_EQ] = ACTIONS(5352), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5354), + [anon_sym_yield] = ACTIONS(5354), + [anon_sym_break] = ACTIONS(5354), + [anon_sym_continue] = ACTIONS(5354), + [anon_sym_defer] = ACTIONS(5354), + [anon_sym_errdefer] = ACTIONS(5354), + [anon_sym_if] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5354), + [anon_sym_expand] = ACTIONS(5354), + [anon_sym_for] = ACTIONS(5354), + [anon_sym_PIPE2] = ACTIONS(5352), + [anon_sym_match] = ACTIONS(5354), + [anon_sym_DOT_DOT] = ACTIONS(5354), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5352), + [anon_sym_orelse] = ACTIONS(5354), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_and] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [anon_sym_xor] = ACTIONS(5354), + [anon_sym_LT_LT] = ACTIONS(5354), + [anon_sym_GT_GT] = ACTIONS(5354), + [anon_sym_LT_LT_PIPE] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_SLASH] = ACTIONS(5354), + [anon_sym_catch] = ACTIONS(5354), + [anon_sym_TILDE] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym_true] = ACTIONS(5354), + [anon_sym_false] = ACTIONS(5354), + [anon_sym_null] = ACTIONS(5354), + [anon_sym_unreachable] = ACTIONS(5354), + [anon_sym_undefined] = ACTIONS(5354), + [sym_sink] = ACTIONS(5354), + [sym_integer] = ACTIONS(5354), + [sym_float] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5352), + [sym_multiline_string] = ACTIONS(5352), + [sym_character] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5352), + }, + [STATE(3755)] = { + [sym_identifier] = ACTIONS(5358), + [anon_sym_func] = ACTIONS(5358), + [anon_sym_BANG] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_struct] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5356), + [anon_sym_LBRACE] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5358), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_void] = ACTIONS(5358), + [anon_sym_noreturn] = ACTIONS(5358), + [anon_sym_type] = ACTIONS(5358), + [anon_sym_anyopaque] = ACTIONS(5358), + [anon_sym_bool] = ACTIONS(5358), + [anon_sym_int] = ACTIONS(5358), + [anon_sym_uint] = ACTIONS(5358), + [anon_sym_float] = ACTIONS(5358), + [anon_sym_range] = ACTIONS(5358), + [anon_sym_i8] = ACTIONS(5358), + [anon_sym_i16] = ACTIONS(5358), + [anon_sym_i32] = ACTIONS(5358), + [anon_sym_i64] = ACTIONS(5358), + [anon_sym_u8] = ACTIONS(5358), + [anon_sym_u16] = ACTIONS(5358), + [anon_sym_u32] = ACTIONS(5358), + [anon_sym_u64] = ACTIONS(5358), + [anon_sym_isize] = ACTIONS(5358), + [anon_sym_usize] = ACTIONS(5358), + [anon_sym_f32] = ACTIONS(5358), + [anon_sym_f64] = ACTIONS(5358), + [anon_sym_c_char] = ACTIONS(5358), + [anon_sym_c_schar] = ACTIONS(5358), + [anon_sym_c_uchar] = ACTIONS(5358), + [anon_sym_c_short] = ACTIONS(5358), + [anon_sym_c_ushort] = ACTIONS(5358), + [anon_sym_c_int] = ACTIONS(5358), + [anon_sym_c_uint] = ACTIONS(5358), + [anon_sym_c_long] = ACTIONS(5358), + [anon_sym_c_ulong] = ACTIONS(5358), + [anon_sym_c_longlong] = ACTIONS(5358), + [anon_sym_c_ulonglong] = ACTIONS(5358), + [anon_sym_c_float] = ACTIONS(5358), + [anon_sym_c_double] = ACTIONS(5358), + [anon_sym_c_longdouble] = ACTIONS(5358), + [anon_sym_PLUS_EQ] = ACTIONS(5356), + [anon_sym_DASH_EQ] = ACTIONS(5356), + [anon_sym_STAR_EQ] = ACTIONS(5356), + [anon_sym_SLASH_EQ] = ACTIONS(5356), + [anon_sym_AMP_EQ] = ACTIONS(5356), + [anon_sym_PIPE_EQ] = ACTIONS(5358), + [anon_sym_xor_EQ] = ACTIONS(5356), + [anon_sym_LT_LT_EQ] = ACTIONS(5356), + [anon_sym_GT_GT_EQ] = ACTIONS(5356), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5356), + [anon_sym_return] = ACTIONS(5358), + [anon_sym_yield] = ACTIONS(5358), + [anon_sym_break] = ACTIONS(5358), + [anon_sym_continue] = ACTIONS(5358), + [anon_sym_defer] = ACTIONS(5358), + [anon_sym_errdefer] = ACTIONS(5358), + [anon_sym_if] = ACTIONS(5358), + [anon_sym_else] = ACTIONS(5358), + [anon_sym_while] = ACTIONS(5358), + [anon_sym_expand] = ACTIONS(5358), + [anon_sym_for] = ACTIONS(5358), + [anon_sym_PIPE2] = ACTIONS(5356), + [anon_sym_match] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5356), + [anon_sym_orelse] = ACTIONS(5358), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5356), + [anon_sym_BANG_EQ] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5358), + [anon_sym_xor] = ACTIONS(5358), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5358), + [anon_sym_LT_LT_PIPE] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5358), + [anon_sym_SLASH] = ACTIONS(5358), + [anon_sym_catch] = ACTIONS(5358), + [anon_sym_TILDE] = ACTIONS(5356), + [anon_sym_try] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym_true] = ACTIONS(5358), + [anon_sym_false] = ACTIONS(5358), + [anon_sym_null] = ACTIONS(5358), + [anon_sym_unreachable] = ACTIONS(5358), + [anon_sym_undefined] = ACTIONS(5358), + [sym_sink] = ACTIONS(5358), + [sym_integer] = ACTIONS(5358), + [sym_float] = ACTIONS(5356), + [anon_sym_DQUOTE] = ACTIONS(5356), + [sym_multiline_string] = ACTIONS(5356), + [sym_character] = ACTIONS(5356), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5356), + }, + [STATE(3756)] = { + [sym_identifier] = ACTIONS(5362), + [anon_sym_func] = ACTIONS(5362), + [anon_sym_BANG] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_struct] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5360), + [anon_sym_LBRACE] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5360), + [anon_sym_void] = ACTIONS(5362), + [anon_sym_noreturn] = ACTIONS(5362), + [anon_sym_type] = ACTIONS(5362), + [anon_sym_anyopaque] = ACTIONS(5362), + [anon_sym_bool] = ACTIONS(5362), + [anon_sym_int] = ACTIONS(5362), + [anon_sym_uint] = ACTIONS(5362), + [anon_sym_float] = ACTIONS(5362), + [anon_sym_range] = ACTIONS(5362), + [anon_sym_i8] = ACTIONS(5362), + [anon_sym_i16] = ACTIONS(5362), + [anon_sym_i32] = ACTIONS(5362), + [anon_sym_i64] = ACTIONS(5362), + [anon_sym_u8] = ACTIONS(5362), + [anon_sym_u16] = ACTIONS(5362), + [anon_sym_u32] = ACTIONS(5362), + [anon_sym_u64] = ACTIONS(5362), + [anon_sym_isize] = ACTIONS(5362), + [anon_sym_usize] = ACTIONS(5362), + [anon_sym_f32] = ACTIONS(5362), + [anon_sym_f64] = ACTIONS(5362), + [anon_sym_c_char] = ACTIONS(5362), + [anon_sym_c_schar] = ACTIONS(5362), + [anon_sym_c_uchar] = ACTIONS(5362), + [anon_sym_c_short] = ACTIONS(5362), + [anon_sym_c_ushort] = ACTIONS(5362), + [anon_sym_c_int] = ACTIONS(5362), + [anon_sym_c_uint] = ACTIONS(5362), + [anon_sym_c_long] = ACTIONS(5362), + [anon_sym_c_ulong] = ACTIONS(5362), + [anon_sym_c_longlong] = ACTIONS(5362), + [anon_sym_c_ulonglong] = ACTIONS(5362), + [anon_sym_c_float] = ACTIONS(5362), + [anon_sym_c_double] = ACTIONS(5362), + [anon_sym_c_longdouble] = ACTIONS(5362), + [anon_sym_PLUS_EQ] = ACTIONS(5360), + [anon_sym_DASH_EQ] = ACTIONS(5360), + [anon_sym_STAR_EQ] = ACTIONS(5360), + [anon_sym_SLASH_EQ] = ACTIONS(5360), + [anon_sym_AMP_EQ] = ACTIONS(5360), + [anon_sym_PIPE_EQ] = ACTIONS(5362), + [anon_sym_xor_EQ] = ACTIONS(5360), + [anon_sym_LT_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_GT_EQ] = ACTIONS(5360), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5360), + [anon_sym_return] = ACTIONS(5362), + [anon_sym_yield] = ACTIONS(5362), + [anon_sym_break] = ACTIONS(5362), + [anon_sym_continue] = ACTIONS(5362), + [anon_sym_defer] = ACTIONS(5362), + [anon_sym_errdefer] = ACTIONS(5362), + [anon_sym_if] = ACTIONS(5362), + [anon_sym_else] = ACTIONS(5362), + [anon_sym_while] = ACTIONS(5362), + [anon_sym_expand] = ACTIONS(5362), + [anon_sym_for] = ACTIONS(5362), + [anon_sym_PIPE2] = ACTIONS(5360), + [anon_sym_match] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5360), + [anon_sym_orelse] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [anon_sym_xor] = ACTIONS(5362), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5362), + [anon_sym_LT_LT_PIPE] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5362), + [anon_sym_catch] = ACTIONS(5362), + [anon_sym_TILDE] = ACTIONS(5360), + [anon_sym_try] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym_true] = ACTIONS(5362), + [anon_sym_false] = ACTIONS(5362), + [anon_sym_null] = ACTIONS(5362), + [anon_sym_unreachable] = ACTIONS(5362), + [anon_sym_undefined] = ACTIONS(5362), + [sym_sink] = ACTIONS(5362), + [sym_integer] = ACTIONS(5362), + [sym_float] = ACTIONS(5360), + [anon_sym_DQUOTE] = ACTIONS(5360), + [sym_multiline_string] = ACTIONS(5360), + [sym_character] = ACTIONS(5360), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5360), + }, + [STATE(3757)] = { + [sym_identifier] = ACTIONS(5366), + [anon_sym_func] = ACTIONS(5366), + [anon_sym_BANG] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_struct] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5364), + [anon_sym_LBRACE] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5366), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5364), + [anon_sym_void] = ACTIONS(5366), + [anon_sym_noreturn] = ACTIONS(5366), + [anon_sym_type] = ACTIONS(5366), + [anon_sym_anyopaque] = ACTIONS(5366), + [anon_sym_bool] = ACTIONS(5366), + [anon_sym_int] = ACTIONS(5366), + [anon_sym_uint] = ACTIONS(5366), + [anon_sym_float] = ACTIONS(5366), + [anon_sym_range] = ACTIONS(5366), + [anon_sym_i8] = ACTIONS(5366), + [anon_sym_i16] = ACTIONS(5366), + [anon_sym_i32] = ACTIONS(5366), + [anon_sym_i64] = ACTIONS(5366), + [anon_sym_u8] = ACTIONS(5366), + [anon_sym_u16] = ACTIONS(5366), + [anon_sym_u32] = ACTIONS(5366), + [anon_sym_u64] = ACTIONS(5366), + [anon_sym_isize] = ACTIONS(5366), + [anon_sym_usize] = ACTIONS(5366), + [anon_sym_f32] = ACTIONS(5366), + [anon_sym_f64] = ACTIONS(5366), + [anon_sym_c_char] = ACTIONS(5366), + [anon_sym_c_schar] = ACTIONS(5366), + [anon_sym_c_uchar] = ACTIONS(5366), + [anon_sym_c_short] = ACTIONS(5366), + [anon_sym_c_ushort] = ACTIONS(5366), + [anon_sym_c_int] = ACTIONS(5366), + [anon_sym_c_uint] = ACTIONS(5366), + [anon_sym_c_long] = ACTIONS(5366), + [anon_sym_c_ulong] = ACTIONS(5366), + [anon_sym_c_longlong] = ACTIONS(5366), + [anon_sym_c_ulonglong] = ACTIONS(5366), + [anon_sym_c_float] = ACTIONS(5366), + [anon_sym_c_double] = ACTIONS(5366), + [anon_sym_c_longdouble] = ACTIONS(5366), + [anon_sym_PLUS_EQ] = ACTIONS(5364), + [anon_sym_DASH_EQ] = ACTIONS(5364), + [anon_sym_STAR_EQ] = ACTIONS(5364), + [anon_sym_SLASH_EQ] = ACTIONS(5364), + [anon_sym_AMP_EQ] = ACTIONS(5364), + [anon_sym_PIPE_EQ] = ACTIONS(5366), + [anon_sym_xor_EQ] = ACTIONS(5364), + [anon_sym_LT_LT_EQ] = ACTIONS(5364), + [anon_sym_GT_GT_EQ] = ACTIONS(5364), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5364), + [anon_sym_return] = ACTIONS(5366), + [anon_sym_yield] = ACTIONS(5366), + [anon_sym_break] = ACTIONS(5366), + [anon_sym_continue] = ACTIONS(5366), + [anon_sym_defer] = ACTIONS(5366), + [anon_sym_errdefer] = ACTIONS(5366), + [anon_sym_if] = ACTIONS(5366), + [anon_sym_else] = ACTIONS(5366), + [anon_sym_while] = ACTIONS(5366), + [anon_sym_expand] = ACTIONS(5366), + [anon_sym_for] = ACTIONS(5366), + [anon_sym_PIPE2] = ACTIONS(5364), + [anon_sym_match] = ACTIONS(5366), + [anon_sym_DOT_DOT] = ACTIONS(5366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5364), + [anon_sym_orelse] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_and] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5364), + [anon_sym_BANG_EQ] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5366), + [anon_sym_GT_EQ] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5366), + [anon_sym_xor] = ACTIONS(5366), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5366), + [anon_sym_LT_LT_PIPE] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5366), + [anon_sym_SLASH] = ACTIONS(5366), + [anon_sym_catch] = ACTIONS(5366), + [anon_sym_TILDE] = ACTIONS(5364), + [anon_sym_try] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5366), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym_true] = ACTIONS(5366), + [anon_sym_false] = ACTIONS(5366), + [anon_sym_null] = ACTIONS(5366), + [anon_sym_unreachable] = ACTIONS(5366), + [anon_sym_undefined] = ACTIONS(5366), + [sym_sink] = ACTIONS(5366), + [sym_integer] = ACTIONS(5366), + [sym_float] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(5364), + [sym_multiline_string] = ACTIONS(5364), + [sym_character] = ACTIONS(5364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5364), + }, + [STATE(3758)] = { + [sym_identifier] = ACTIONS(5370), + [anon_sym_func] = ACTIONS(5370), + [anon_sym_BANG] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_struct] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5368), + [anon_sym_LBRACE] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5370), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5368), + [anon_sym_void] = ACTIONS(5370), + [anon_sym_noreturn] = ACTIONS(5370), + [anon_sym_type] = ACTIONS(5370), + [anon_sym_anyopaque] = ACTIONS(5370), + [anon_sym_bool] = ACTIONS(5370), + [anon_sym_int] = ACTIONS(5370), + [anon_sym_uint] = ACTIONS(5370), + [anon_sym_float] = ACTIONS(5370), + [anon_sym_range] = ACTIONS(5370), + [anon_sym_i8] = ACTIONS(5370), + [anon_sym_i16] = ACTIONS(5370), + [anon_sym_i32] = ACTIONS(5370), + [anon_sym_i64] = ACTIONS(5370), + [anon_sym_u8] = ACTIONS(5370), + [anon_sym_u16] = ACTIONS(5370), + [anon_sym_u32] = ACTIONS(5370), + [anon_sym_u64] = ACTIONS(5370), + [anon_sym_isize] = ACTIONS(5370), + [anon_sym_usize] = ACTIONS(5370), + [anon_sym_f32] = ACTIONS(5370), + [anon_sym_f64] = ACTIONS(5370), + [anon_sym_c_char] = ACTIONS(5370), + [anon_sym_c_schar] = ACTIONS(5370), + [anon_sym_c_uchar] = ACTIONS(5370), + [anon_sym_c_short] = ACTIONS(5370), + [anon_sym_c_ushort] = ACTIONS(5370), + [anon_sym_c_int] = ACTIONS(5370), + [anon_sym_c_uint] = ACTIONS(5370), + [anon_sym_c_long] = ACTIONS(5370), + [anon_sym_c_ulong] = ACTIONS(5370), + [anon_sym_c_longlong] = ACTIONS(5370), + [anon_sym_c_ulonglong] = ACTIONS(5370), + [anon_sym_c_float] = ACTIONS(5370), + [anon_sym_c_double] = ACTIONS(5370), + [anon_sym_c_longdouble] = ACTIONS(5370), + [anon_sym_PLUS_EQ] = ACTIONS(5368), + [anon_sym_DASH_EQ] = ACTIONS(5368), + [anon_sym_STAR_EQ] = ACTIONS(5368), + [anon_sym_SLASH_EQ] = ACTIONS(5368), + [anon_sym_AMP_EQ] = ACTIONS(5368), + [anon_sym_PIPE_EQ] = ACTIONS(5370), + [anon_sym_xor_EQ] = ACTIONS(5368), + [anon_sym_LT_LT_EQ] = ACTIONS(5368), + [anon_sym_GT_GT_EQ] = ACTIONS(5368), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5368), + [anon_sym_return] = ACTIONS(5370), + [anon_sym_yield] = ACTIONS(5370), + [anon_sym_break] = ACTIONS(5370), + [anon_sym_continue] = ACTIONS(5370), + [anon_sym_defer] = ACTIONS(5370), + [anon_sym_errdefer] = ACTIONS(5370), + [anon_sym_if] = ACTIONS(5370), + [anon_sym_else] = ACTIONS(5370), + [anon_sym_while] = ACTIONS(5370), + [anon_sym_expand] = ACTIONS(5370), + [anon_sym_for] = ACTIONS(5370), + [anon_sym_PIPE2] = ACTIONS(5368), + [anon_sym_match] = ACTIONS(5370), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5368), + [anon_sym_orelse] = ACTIONS(5370), + [anon_sym_or] = ACTIONS(5370), + [anon_sym_and] = ACTIONS(5370), + [anon_sym_EQ_EQ] = ACTIONS(5368), + [anon_sym_BANG_EQ] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5370), + [anon_sym_xor] = ACTIONS(5370), + [anon_sym_LT_LT] = ACTIONS(5370), + [anon_sym_GT_GT] = ACTIONS(5370), + [anon_sym_LT_LT_PIPE] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5370), + [anon_sym_SLASH] = ACTIONS(5370), + [anon_sym_catch] = ACTIONS(5370), + [anon_sym_TILDE] = ACTIONS(5368), + [anon_sym_try] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5370), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym_true] = ACTIONS(5370), + [anon_sym_false] = ACTIONS(5370), + [anon_sym_null] = ACTIONS(5370), + [anon_sym_unreachable] = ACTIONS(5370), + [anon_sym_undefined] = ACTIONS(5370), + [sym_sink] = ACTIONS(5370), + [sym_integer] = ACTIONS(5370), + [sym_float] = ACTIONS(5368), + [anon_sym_DQUOTE] = ACTIONS(5368), + [sym_multiline_string] = ACTIONS(5368), + [sym_character] = ACTIONS(5368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5368), + }, + [STATE(3759)] = { + [sym_identifier] = ACTIONS(5374), + [anon_sym_func] = ACTIONS(5374), + [anon_sym_BANG] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_struct] = ACTIONS(5374), + [anon_sym_LPAREN] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5374), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5372), + [anon_sym_void] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_anyopaque] = ACTIONS(5374), + [anon_sym_bool] = ACTIONS(5374), + [anon_sym_int] = ACTIONS(5374), + [anon_sym_uint] = ACTIONS(5374), + [anon_sym_float] = ACTIONS(5374), + [anon_sym_range] = ACTIONS(5374), + [anon_sym_i8] = ACTIONS(5374), + [anon_sym_i16] = ACTIONS(5374), + [anon_sym_i32] = ACTIONS(5374), + [anon_sym_i64] = ACTIONS(5374), + [anon_sym_u8] = ACTIONS(5374), + [anon_sym_u16] = ACTIONS(5374), + [anon_sym_u32] = ACTIONS(5374), + [anon_sym_u64] = ACTIONS(5374), + [anon_sym_isize] = ACTIONS(5374), + [anon_sym_usize] = ACTIONS(5374), + [anon_sym_f32] = ACTIONS(5374), + [anon_sym_f64] = ACTIONS(5374), + [anon_sym_c_char] = ACTIONS(5374), + [anon_sym_c_schar] = ACTIONS(5374), + [anon_sym_c_uchar] = ACTIONS(5374), + [anon_sym_c_short] = ACTIONS(5374), + [anon_sym_c_ushort] = ACTIONS(5374), + [anon_sym_c_int] = ACTIONS(5374), + [anon_sym_c_uint] = ACTIONS(5374), + [anon_sym_c_long] = ACTIONS(5374), + [anon_sym_c_ulong] = ACTIONS(5374), + [anon_sym_c_longlong] = ACTIONS(5374), + [anon_sym_c_ulonglong] = ACTIONS(5374), + [anon_sym_c_float] = ACTIONS(5374), + [anon_sym_c_double] = ACTIONS(5374), + [anon_sym_c_longdouble] = ACTIONS(5374), + [anon_sym_PLUS_EQ] = ACTIONS(5372), + [anon_sym_DASH_EQ] = ACTIONS(5372), + [anon_sym_STAR_EQ] = ACTIONS(5372), + [anon_sym_SLASH_EQ] = ACTIONS(5372), + [anon_sym_AMP_EQ] = ACTIONS(5372), + [anon_sym_PIPE_EQ] = ACTIONS(5374), + [anon_sym_xor_EQ] = ACTIONS(5372), + [anon_sym_LT_LT_EQ] = ACTIONS(5372), + [anon_sym_GT_GT_EQ] = ACTIONS(5372), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5372), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_break] = ACTIONS(5374), + [anon_sym_continue] = ACTIONS(5374), + [anon_sym_defer] = ACTIONS(5374), + [anon_sym_errdefer] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_else] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_expand] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_PIPE2] = ACTIONS(5372), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_DOT_DOT] = ACTIONS(5374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5372), + [anon_sym_orelse] = ACTIONS(5374), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_EQ_EQ] = ACTIONS(5372), + [anon_sym_BANG_EQ] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5374), + [anon_sym_LT_EQ] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_xor] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(5374), + [anon_sym_GT_GT] = ACTIONS(5374), + [anon_sym_LT_LT_PIPE] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_SLASH] = ACTIONS(5374), + [anon_sym_catch] = ACTIONS(5374), + [anon_sym_TILDE] = ACTIONS(5372), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_DOT] = ACTIONS(5374), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym_true] = ACTIONS(5374), + [anon_sym_false] = ACTIONS(5374), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_unreachable] = ACTIONS(5374), + [anon_sym_undefined] = ACTIONS(5374), + [sym_sink] = ACTIONS(5374), + [sym_integer] = ACTIONS(5374), + [sym_float] = ACTIONS(5372), + [anon_sym_DQUOTE] = ACTIONS(5372), + [sym_multiline_string] = ACTIONS(5372), + [sym_character] = ACTIONS(5372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5372), + }, + [STATE(3760)] = { + [sym_identifier] = ACTIONS(5378), + [anon_sym_func] = ACTIONS(5378), + [anon_sym_BANG] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_struct] = ACTIONS(5378), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_LBRACE] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5378), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_void] = ACTIONS(5378), + [anon_sym_noreturn] = ACTIONS(5378), + [anon_sym_type] = ACTIONS(5378), + [anon_sym_anyopaque] = ACTIONS(5378), + [anon_sym_bool] = ACTIONS(5378), + [anon_sym_int] = ACTIONS(5378), + [anon_sym_uint] = ACTIONS(5378), + [anon_sym_float] = ACTIONS(5378), + [anon_sym_range] = ACTIONS(5378), + [anon_sym_i8] = ACTIONS(5378), + [anon_sym_i16] = ACTIONS(5378), + [anon_sym_i32] = ACTIONS(5378), + [anon_sym_i64] = ACTIONS(5378), + [anon_sym_u8] = ACTIONS(5378), + [anon_sym_u16] = ACTIONS(5378), + [anon_sym_u32] = ACTIONS(5378), + [anon_sym_u64] = ACTIONS(5378), + [anon_sym_isize] = ACTIONS(5378), + [anon_sym_usize] = ACTIONS(5378), + [anon_sym_f32] = ACTIONS(5378), + [anon_sym_f64] = ACTIONS(5378), + [anon_sym_c_char] = ACTIONS(5378), + [anon_sym_c_schar] = ACTIONS(5378), + [anon_sym_c_uchar] = ACTIONS(5378), + [anon_sym_c_short] = ACTIONS(5378), + [anon_sym_c_ushort] = ACTIONS(5378), + [anon_sym_c_int] = ACTIONS(5378), + [anon_sym_c_uint] = ACTIONS(5378), + [anon_sym_c_long] = ACTIONS(5378), + [anon_sym_c_ulong] = ACTIONS(5378), + [anon_sym_c_longlong] = ACTIONS(5378), + [anon_sym_c_ulonglong] = ACTIONS(5378), + [anon_sym_c_float] = ACTIONS(5378), + [anon_sym_c_double] = ACTIONS(5378), + [anon_sym_c_longdouble] = ACTIONS(5378), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5378), + [anon_sym_xor_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5376), + [anon_sym_return] = ACTIONS(5378), + [anon_sym_yield] = ACTIONS(5378), + [anon_sym_break] = ACTIONS(5378), + [anon_sym_continue] = ACTIONS(5378), + [anon_sym_defer] = ACTIONS(5378), + [anon_sym_errdefer] = ACTIONS(5378), + [anon_sym_if] = ACTIONS(5378), + [anon_sym_else] = ACTIONS(5378), + [anon_sym_while] = ACTIONS(5378), + [anon_sym_expand] = ACTIONS(5378), + [anon_sym_for] = ACTIONS(5378), + [anon_sym_PIPE2] = ACTIONS(5376), + [anon_sym_match] = ACTIONS(5378), + [anon_sym_DOT_DOT] = ACTIONS(5378), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5376), + [anon_sym_orelse] = ACTIONS(5378), + [anon_sym_or] = ACTIONS(5378), + [anon_sym_and] = ACTIONS(5378), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5378), + [anon_sym_LT_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5378), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP] = ACTIONS(5378), + [anon_sym_xor] = ACTIONS(5378), + [anon_sym_LT_LT] = ACTIONS(5378), + [anon_sym_GT_GT] = ACTIONS(5378), + [anon_sym_LT_LT_PIPE] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5378), + [anon_sym_SLASH] = ACTIONS(5378), + [anon_sym_catch] = ACTIONS(5378), + [anon_sym_TILDE] = ACTIONS(5376), + [anon_sym_try] = ACTIONS(5378), + [anon_sym_DOT] = ACTIONS(5378), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym_true] = ACTIONS(5378), + [anon_sym_false] = ACTIONS(5378), + [anon_sym_null] = ACTIONS(5378), + [anon_sym_unreachable] = ACTIONS(5378), + [anon_sym_undefined] = ACTIONS(5378), + [sym_sink] = ACTIONS(5378), + [sym_integer] = ACTIONS(5378), + [sym_float] = ACTIONS(5376), + [anon_sym_DQUOTE] = ACTIONS(5376), + [sym_multiline_string] = ACTIONS(5376), + [sym_character] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5376), + }, + [STATE(3761)] = { + [sym_identifier] = ACTIONS(5382), + [anon_sym_func] = ACTIONS(5382), + [anon_sym_BANG] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_struct] = ACTIONS(5382), + [anon_sym_LPAREN] = ACTIONS(5380), + [anon_sym_LBRACE] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5382), + [anon_sym_QMARK] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5380), + [anon_sym_void] = ACTIONS(5382), + [anon_sym_noreturn] = ACTIONS(5382), + [anon_sym_type] = ACTIONS(5382), + [anon_sym_anyopaque] = ACTIONS(5382), + [anon_sym_bool] = ACTIONS(5382), + [anon_sym_int] = ACTIONS(5382), + [anon_sym_uint] = ACTIONS(5382), + [anon_sym_float] = ACTIONS(5382), + [anon_sym_range] = ACTIONS(5382), + [anon_sym_i8] = ACTIONS(5382), + [anon_sym_i16] = ACTIONS(5382), + [anon_sym_i32] = ACTIONS(5382), + [anon_sym_i64] = ACTIONS(5382), + [anon_sym_u8] = ACTIONS(5382), + [anon_sym_u16] = ACTIONS(5382), + [anon_sym_u32] = ACTIONS(5382), + [anon_sym_u64] = ACTIONS(5382), + [anon_sym_isize] = ACTIONS(5382), + [anon_sym_usize] = ACTIONS(5382), + [anon_sym_f32] = ACTIONS(5382), + [anon_sym_f64] = ACTIONS(5382), + [anon_sym_c_char] = ACTIONS(5382), + [anon_sym_c_schar] = ACTIONS(5382), + [anon_sym_c_uchar] = ACTIONS(5382), + [anon_sym_c_short] = ACTIONS(5382), + [anon_sym_c_ushort] = ACTIONS(5382), + [anon_sym_c_int] = ACTIONS(5382), + [anon_sym_c_uint] = ACTIONS(5382), + [anon_sym_c_long] = ACTIONS(5382), + [anon_sym_c_ulong] = ACTIONS(5382), + [anon_sym_c_longlong] = ACTIONS(5382), + [anon_sym_c_ulonglong] = ACTIONS(5382), + [anon_sym_c_float] = ACTIONS(5382), + [anon_sym_c_double] = ACTIONS(5382), + [anon_sym_c_longdouble] = ACTIONS(5382), + [anon_sym_PLUS_EQ] = ACTIONS(5380), + [anon_sym_DASH_EQ] = ACTIONS(5380), + [anon_sym_STAR_EQ] = ACTIONS(5380), + [anon_sym_SLASH_EQ] = ACTIONS(5380), + [anon_sym_AMP_EQ] = ACTIONS(5380), + [anon_sym_PIPE_EQ] = ACTIONS(5382), + [anon_sym_xor_EQ] = ACTIONS(5380), + [anon_sym_LT_LT_EQ] = ACTIONS(5380), + [anon_sym_GT_GT_EQ] = ACTIONS(5380), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5380), + [anon_sym_return] = ACTIONS(5382), + [anon_sym_yield] = ACTIONS(5382), + [anon_sym_break] = ACTIONS(5382), + [anon_sym_continue] = ACTIONS(5382), + [anon_sym_defer] = ACTIONS(5382), + [anon_sym_errdefer] = ACTIONS(5382), + [anon_sym_if] = ACTIONS(5382), + [anon_sym_else] = ACTIONS(5382), + [anon_sym_while] = ACTIONS(5382), + [anon_sym_expand] = ACTIONS(5382), + [anon_sym_for] = ACTIONS(5382), + [anon_sym_PIPE2] = ACTIONS(5380), + [anon_sym_match] = ACTIONS(5382), + [anon_sym_DOT_DOT] = ACTIONS(5382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5380), + [anon_sym_orelse] = ACTIONS(5382), + [anon_sym_or] = ACTIONS(5382), + [anon_sym_and] = ACTIONS(5382), + [anon_sym_EQ_EQ] = ACTIONS(5380), + [anon_sym_BANG_EQ] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5382), + [anon_sym_LT_EQ] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5382), + [anon_sym_GT_EQ] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(5382), + [anon_sym_xor] = ACTIONS(5382), + [anon_sym_LT_LT] = ACTIONS(5382), + [anon_sym_GT_GT] = ACTIONS(5382), + [anon_sym_LT_LT_PIPE] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5382), + [anon_sym_SLASH] = ACTIONS(5382), + [anon_sym_catch] = ACTIONS(5382), + [anon_sym_TILDE] = ACTIONS(5380), + [anon_sym_try] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5382), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym_true] = ACTIONS(5382), + [anon_sym_false] = ACTIONS(5382), + [anon_sym_null] = ACTIONS(5382), + [anon_sym_unreachable] = ACTIONS(5382), + [anon_sym_undefined] = ACTIONS(5382), + [sym_sink] = ACTIONS(5382), + [sym_integer] = ACTIONS(5382), + [sym_float] = ACTIONS(5380), + [anon_sym_DQUOTE] = ACTIONS(5380), + [sym_multiline_string] = ACTIONS(5380), + [sym_character] = ACTIONS(5380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5380), + }, + [STATE(3762)] = { + [sym_identifier] = ACTIONS(5386), + [anon_sym_func] = ACTIONS(5386), + [anon_sym_BANG] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_struct] = ACTIONS(5386), + [anon_sym_LPAREN] = ACTIONS(5384), + [anon_sym_LBRACE] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5386), + [anon_sym_QMARK] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5384), + [anon_sym_void] = ACTIONS(5386), + [anon_sym_noreturn] = ACTIONS(5386), + [anon_sym_type] = ACTIONS(5386), + [anon_sym_anyopaque] = ACTIONS(5386), + [anon_sym_bool] = ACTIONS(5386), + [anon_sym_int] = ACTIONS(5386), + [anon_sym_uint] = ACTIONS(5386), + [anon_sym_float] = ACTIONS(5386), + [anon_sym_range] = ACTIONS(5386), + [anon_sym_i8] = ACTIONS(5386), + [anon_sym_i16] = ACTIONS(5386), + [anon_sym_i32] = ACTIONS(5386), + [anon_sym_i64] = ACTIONS(5386), + [anon_sym_u8] = ACTIONS(5386), + [anon_sym_u16] = ACTIONS(5386), + [anon_sym_u32] = ACTIONS(5386), + [anon_sym_u64] = ACTIONS(5386), + [anon_sym_isize] = ACTIONS(5386), + [anon_sym_usize] = ACTIONS(5386), + [anon_sym_f32] = ACTIONS(5386), + [anon_sym_f64] = ACTIONS(5386), + [anon_sym_c_char] = ACTIONS(5386), + [anon_sym_c_schar] = ACTIONS(5386), + [anon_sym_c_uchar] = ACTIONS(5386), + [anon_sym_c_short] = ACTIONS(5386), + [anon_sym_c_ushort] = ACTIONS(5386), + [anon_sym_c_int] = ACTIONS(5386), + [anon_sym_c_uint] = ACTIONS(5386), + [anon_sym_c_long] = ACTIONS(5386), + [anon_sym_c_ulong] = ACTIONS(5386), + [anon_sym_c_longlong] = ACTIONS(5386), + [anon_sym_c_ulonglong] = ACTIONS(5386), + [anon_sym_c_float] = ACTIONS(5386), + [anon_sym_c_double] = ACTIONS(5386), + [anon_sym_c_longdouble] = ACTIONS(5386), + [anon_sym_PLUS_EQ] = ACTIONS(5384), + [anon_sym_DASH_EQ] = ACTIONS(5384), + [anon_sym_STAR_EQ] = ACTIONS(5384), + [anon_sym_SLASH_EQ] = ACTIONS(5384), + [anon_sym_AMP_EQ] = ACTIONS(5384), + [anon_sym_PIPE_EQ] = ACTIONS(5386), + [anon_sym_xor_EQ] = ACTIONS(5384), + [anon_sym_LT_LT_EQ] = ACTIONS(5384), + [anon_sym_GT_GT_EQ] = ACTIONS(5384), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5384), + [anon_sym_return] = ACTIONS(5386), + [anon_sym_yield] = ACTIONS(5386), + [anon_sym_break] = ACTIONS(5386), + [anon_sym_continue] = ACTIONS(5386), + [anon_sym_defer] = ACTIONS(5386), + [anon_sym_errdefer] = ACTIONS(5386), + [anon_sym_if] = ACTIONS(5386), + [anon_sym_else] = ACTIONS(5386), + [anon_sym_while] = ACTIONS(5386), + [anon_sym_expand] = ACTIONS(5386), + [anon_sym_for] = ACTIONS(5386), + [anon_sym_PIPE2] = ACTIONS(5384), + [anon_sym_match] = ACTIONS(5386), + [anon_sym_DOT_DOT] = ACTIONS(5386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5384), + [anon_sym_orelse] = ACTIONS(5386), + [anon_sym_or] = ACTIONS(5386), + [anon_sym_and] = ACTIONS(5386), + [anon_sym_EQ_EQ] = ACTIONS(5384), + [anon_sym_BANG_EQ] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_EQ] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5386), + [anon_sym_GT_EQ] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(5386), + [anon_sym_xor] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(5386), + [anon_sym_GT_GT] = ACTIONS(5386), + [anon_sym_LT_LT_PIPE] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5386), + [anon_sym_SLASH] = ACTIONS(5386), + [anon_sym_catch] = ACTIONS(5386), + [anon_sym_TILDE] = ACTIONS(5384), + [anon_sym_try] = ACTIONS(5386), + [anon_sym_DOT] = ACTIONS(5386), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym_true] = ACTIONS(5386), + [anon_sym_false] = ACTIONS(5386), + [anon_sym_null] = ACTIONS(5386), + [anon_sym_unreachable] = ACTIONS(5386), + [anon_sym_undefined] = ACTIONS(5386), + [sym_sink] = ACTIONS(5386), + [sym_integer] = ACTIONS(5386), + [sym_float] = ACTIONS(5384), + [anon_sym_DQUOTE] = ACTIONS(5384), + [sym_multiline_string] = ACTIONS(5384), + [sym_character] = ACTIONS(5384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5384), + }, + [STATE(3763)] = { + [sym_identifier] = ACTIONS(5390), + [anon_sym_func] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_struct] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_LBRACE] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_void] = ACTIONS(5390), + [anon_sym_noreturn] = ACTIONS(5390), + [anon_sym_type] = ACTIONS(5390), + [anon_sym_anyopaque] = ACTIONS(5390), + [anon_sym_bool] = ACTIONS(5390), + [anon_sym_int] = ACTIONS(5390), + [anon_sym_uint] = ACTIONS(5390), + [anon_sym_float] = ACTIONS(5390), + [anon_sym_range] = ACTIONS(5390), + [anon_sym_i8] = ACTIONS(5390), + [anon_sym_i16] = ACTIONS(5390), + [anon_sym_i32] = ACTIONS(5390), + [anon_sym_i64] = ACTIONS(5390), + [anon_sym_u8] = ACTIONS(5390), + [anon_sym_u16] = ACTIONS(5390), + [anon_sym_u32] = ACTIONS(5390), + [anon_sym_u64] = ACTIONS(5390), + [anon_sym_isize] = ACTIONS(5390), + [anon_sym_usize] = ACTIONS(5390), + [anon_sym_f32] = ACTIONS(5390), + [anon_sym_f64] = ACTIONS(5390), + [anon_sym_c_char] = ACTIONS(5390), + [anon_sym_c_schar] = ACTIONS(5390), + [anon_sym_c_uchar] = ACTIONS(5390), + [anon_sym_c_short] = ACTIONS(5390), + [anon_sym_c_ushort] = ACTIONS(5390), + [anon_sym_c_int] = ACTIONS(5390), + [anon_sym_c_uint] = ACTIONS(5390), + [anon_sym_c_long] = ACTIONS(5390), + [anon_sym_c_ulong] = ACTIONS(5390), + [anon_sym_c_longlong] = ACTIONS(5390), + [anon_sym_c_ulonglong] = ACTIONS(5390), + [anon_sym_c_float] = ACTIONS(5390), + [anon_sym_c_double] = ACTIONS(5390), + [anon_sym_c_longdouble] = ACTIONS(5390), + [anon_sym_PLUS_EQ] = ACTIONS(5388), + [anon_sym_DASH_EQ] = ACTIONS(5388), + [anon_sym_STAR_EQ] = ACTIONS(5388), + [anon_sym_SLASH_EQ] = ACTIONS(5388), + [anon_sym_AMP_EQ] = ACTIONS(5388), + [anon_sym_PIPE_EQ] = ACTIONS(5390), + [anon_sym_xor_EQ] = ACTIONS(5388), + [anon_sym_LT_LT_EQ] = ACTIONS(5388), + [anon_sym_GT_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5388), + [anon_sym_return] = ACTIONS(5390), + [anon_sym_yield] = ACTIONS(5390), + [anon_sym_break] = ACTIONS(5390), + [anon_sym_continue] = ACTIONS(5390), + [anon_sym_defer] = ACTIONS(5390), + [anon_sym_errdefer] = ACTIONS(5390), + [anon_sym_if] = ACTIONS(5390), + [anon_sym_else] = ACTIONS(5390), + [anon_sym_while] = ACTIONS(5390), + [anon_sym_expand] = ACTIONS(5390), + [anon_sym_for] = ACTIONS(5390), + [anon_sym_PIPE2] = ACTIONS(5388), + [anon_sym_match] = ACTIONS(5390), + [anon_sym_DOT_DOT] = ACTIONS(5390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5388), + [anon_sym_orelse] = ACTIONS(5390), + [anon_sym_or] = ACTIONS(5390), + [anon_sym_and] = ACTIONS(5390), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_xor] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5390), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_LT_LT_PIPE] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_catch] = ACTIONS(5390), + [anon_sym_TILDE] = ACTIONS(5388), + [anon_sym_try] = ACTIONS(5390), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_true] = ACTIONS(5390), + [anon_sym_false] = ACTIONS(5390), + [anon_sym_null] = ACTIONS(5390), + [anon_sym_unreachable] = ACTIONS(5390), + [anon_sym_undefined] = ACTIONS(5390), + [sym_sink] = ACTIONS(5390), + [sym_integer] = ACTIONS(5390), + [sym_float] = ACTIONS(5388), + [anon_sym_DQUOTE] = ACTIONS(5388), + [sym_multiline_string] = ACTIONS(5388), + [sym_character] = ACTIONS(5388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5388), + }, + [STATE(3764)] = { + [sym_identifier] = ACTIONS(5394), + [anon_sym_func] = ACTIONS(5394), + [anon_sym_BANG] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_struct] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5392), + [anon_sym_LBRACE] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(5392), + [anon_sym_void] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_type] = ACTIONS(5394), + [anon_sym_anyopaque] = ACTIONS(5394), + [anon_sym_bool] = ACTIONS(5394), + [anon_sym_int] = ACTIONS(5394), + [anon_sym_uint] = ACTIONS(5394), + [anon_sym_float] = ACTIONS(5394), + [anon_sym_range] = ACTIONS(5394), + [anon_sym_i8] = ACTIONS(5394), + [anon_sym_i16] = ACTIONS(5394), + [anon_sym_i32] = ACTIONS(5394), + [anon_sym_i64] = ACTIONS(5394), + [anon_sym_u8] = ACTIONS(5394), + [anon_sym_u16] = ACTIONS(5394), + [anon_sym_u32] = ACTIONS(5394), + [anon_sym_u64] = ACTIONS(5394), + [anon_sym_isize] = ACTIONS(5394), + [anon_sym_usize] = ACTIONS(5394), + [anon_sym_f32] = ACTIONS(5394), + [anon_sym_f64] = ACTIONS(5394), + [anon_sym_c_char] = ACTIONS(5394), + [anon_sym_c_schar] = ACTIONS(5394), + [anon_sym_c_uchar] = ACTIONS(5394), + [anon_sym_c_short] = ACTIONS(5394), + [anon_sym_c_ushort] = ACTIONS(5394), + [anon_sym_c_int] = ACTIONS(5394), + [anon_sym_c_uint] = ACTIONS(5394), + [anon_sym_c_long] = ACTIONS(5394), + [anon_sym_c_ulong] = ACTIONS(5394), + [anon_sym_c_longlong] = ACTIONS(5394), + [anon_sym_c_ulonglong] = ACTIONS(5394), + [anon_sym_c_float] = ACTIONS(5394), + [anon_sym_c_double] = ACTIONS(5394), + [anon_sym_c_longdouble] = ACTIONS(5394), + [anon_sym_PLUS_EQ] = ACTIONS(5392), + [anon_sym_DASH_EQ] = ACTIONS(5392), + [anon_sym_STAR_EQ] = ACTIONS(5392), + [anon_sym_SLASH_EQ] = ACTIONS(5392), + [anon_sym_AMP_EQ] = ACTIONS(5392), + [anon_sym_PIPE_EQ] = ACTIONS(5394), + [anon_sym_xor_EQ] = ACTIONS(5392), + [anon_sym_LT_LT_EQ] = ACTIONS(5392), + [anon_sym_GT_GT_EQ] = ACTIONS(5392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5392), + [anon_sym_return] = ACTIONS(5394), + [anon_sym_yield] = ACTIONS(5394), + [anon_sym_break] = ACTIONS(5394), + [anon_sym_continue] = ACTIONS(5394), + [anon_sym_defer] = ACTIONS(5394), + [anon_sym_errdefer] = ACTIONS(5394), + [anon_sym_if] = ACTIONS(5394), + [anon_sym_else] = ACTIONS(5394), + [anon_sym_while] = ACTIONS(5394), + [anon_sym_expand] = ACTIONS(5394), + [anon_sym_for] = ACTIONS(5394), + [anon_sym_PIPE2] = ACTIONS(5392), + [anon_sym_match] = ACTIONS(5394), + [anon_sym_DOT_DOT] = ACTIONS(5394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5392), + [anon_sym_orelse] = ACTIONS(5394), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5392), + [anon_sym_BANG_EQ] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_EQ] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5392), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym_LT_LT_PIPE] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_catch] = ACTIONS(5394), + [anon_sym_TILDE] = ACTIONS(5392), + [anon_sym_try] = ACTIONS(5394), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym_true] = ACTIONS(5394), + [anon_sym_false] = ACTIONS(5394), + [anon_sym_null] = ACTIONS(5394), + [anon_sym_unreachable] = ACTIONS(5394), + [anon_sym_undefined] = ACTIONS(5394), + [sym_sink] = ACTIONS(5394), + [sym_integer] = ACTIONS(5394), + [sym_float] = ACTIONS(5392), + [anon_sym_DQUOTE] = ACTIONS(5392), + [sym_multiline_string] = ACTIONS(5392), + [sym_character] = ACTIONS(5392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5392), + }, + [STATE(3765)] = { + [sym_identifier] = ACTIONS(5398), + [anon_sym_func] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_struct] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_DOLLAR] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_void] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_type] = ACTIONS(5398), + [anon_sym_anyopaque] = ACTIONS(5398), + [anon_sym_bool] = ACTIONS(5398), + [anon_sym_int] = ACTIONS(5398), + [anon_sym_uint] = ACTIONS(5398), + [anon_sym_float] = ACTIONS(5398), + [anon_sym_range] = ACTIONS(5398), + [anon_sym_i8] = ACTIONS(5398), + [anon_sym_i16] = ACTIONS(5398), + [anon_sym_i32] = ACTIONS(5398), + [anon_sym_i64] = ACTIONS(5398), + [anon_sym_u8] = ACTIONS(5398), + [anon_sym_u16] = ACTIONS(5398), + [anon_sym_u32] = ACTIONS(5398), + [anon_sym_u64] = ACTIONS(5398), + [anon_sym_isize] = ACTIONS(5398), + [anon_sym_usize] = ACTIONS(5398), + [anon_sym_f32] = ACTIONS(5398), + [anon_sym_f64] = ACTIONS(5398), + [anon_sym_c_char] = ACTIONS(5398), + [anon_sym_c_schar] = ACTIONS(5398), + [anon_sym_c_uchar] = ACTIONS(5398), + [anon_sym_c_short] = ACTIONS(5398), + [anon_sym_c_ushort] = ACTIONS(5398), + [anon_sym_c_int] = ACTIONS(5398), + [anon_sym_c_uint] = ACTIONS(5398), + [anon_sym_c_long] = ACTIONS(5398), + [anon_sym_c_ulong] = ACTIONS(5398), + [anon_sym_c_longlong] = ACTIONS(5398), + [anon_sym_c_ulonglong] = ACTIONS(5398), + [anon_sym_c_float] = ACTIONS(5398), + [anon_sym_c_double] = ACTIONS(5398), + [anon_sym_c_longdouble] = ACTIONS(5398), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5398), + [anon_sym_xor_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5396), + [anon_sym_return] = ACTIONS(5398), + [anon_sym_yield] = ACTIONS(5398), + [anon_sym_break] = ACTIONS(5398), + [anon_sym_continue] = ACTIONS(5398), + [anon_sym_defer] = ACTIONS(5398), + [anon_sym_errdefer] = ACTIONS(5398), + [anon_sym_if] = ACTIONS(5398), + [anon_sym_else] = ACTIONS(5398), + [anon_sym_while] = ACTIONS(5398), + [anon_sym_expand] = ACTIONS(5398), + [anon_sym_for] = ACTIONS(5398), + [anon_sym_PIPE2] = ACTIONS(5396), + [anon_sym_match] = ACTIONS(5398), + [anon_sym_DOT_DOT] = ACTIONS(5398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5396), + [anon_sym_orelse] = ACTIONS(5398), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym_LT_LT_PIPE] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_catch] = ACTIONS(5398), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_try] = ACTIONS(5398), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_true] = ACTIONS(5398), + [anon_sym_false] = ACTIONS(5398), + [anon_sym_null] = ACTIONS(5398), + [anon_sym_unreachable] = ACTIONS(5398), + [anon_sym_undefined] = ACTIONS(5398), + [sym_sink] = ACTIONS(5398), + [sym_integer] = ACTIONS(5398), + [sym_float] = ACTIONS(5396), + [anon_sym_DQUOTE] = ACTIONS(5396), + [sym_multiline_string] = ACTIONS(5396), + [sym_character] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5396), + }, + [STATE(3766)] = { + [sym_identifier] = ACTIONS(4734), + [anon_sym_func] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4738), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_void] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_type] = ACTIONS(4734), + [anon_sym_anyopaque] = ACTIONS(4734), + [anon_sym_bool] = ACTIONS(4734), + [anon_sym_int] = ACTIONS(4734), + [anon_sym_uint] = ACTIONS(4734), + [anon_sym_float] = ACTIONS(4734), + [anon_sym_range] = ACTIONS(4734), + [anon_sym_i8] = ACTIONS(4734), + [anon_sym_i16] = ACTIONS(4734), + [anon_sym_i32] = ACTIONS(4734), + [anon_sym_i64] = ACTIONS(4734), + [anon_sym_u8] = ACTIONS(4734), + [anon_sym_u16] = ACTIONS(4734), + [anon_sym_u32] = ACTIONS(4734), + [anon_sym_u64] = ACTIONS(4734), + [anon_sym_isize] = ACTIONS(4734), + [anon_sym_usize] = ACTIONS(4734), + [anon_sym_f32] = ACTIONS(4734), + [anon_sym_f64] = ACTIONS(4734), + [anon_sym_c_char] = ACTIONS(4734), + [anon_sym_c_schar] = ACTIONS(4734), + [anon_sym_c_uchar] = ACTIONS(4734), + [anon_sym_c_short] = ACTIONS(4734), + [anon_sym_c_ushort] = ACTIONS(4734), + [anon_sym_c_int] = ACTIONS(4734), + [anon_sym_c_uint] = ACTIONS(4734), + [anon_sym_c_long] = ACTIONS(4734), + [anon_sym_c_ulong] = ACTIONS(4734), + [anon_sym_c_longlong] = ACTIONS(4734), + [anon_sym_c_ulonglong] = ACTIONS(4734), + [anon_sym_c_float] = ACTIONS(4734), + [anon_sym_c_double] = ACTIONS(4734), + [anon_sym_c_longdouble] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_AMP_EQ] = ACTIONS(4738), + [anon_sym_PIPE_EQ] = ACTIONS(4734), + [anon_sym_xor_EQ] = ACTIONS(4738), + [anon_sym_LT_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_GT_EQ] = ACTIONS(4738), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4738), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_defer] = ACTIONS(4734), + [anon_sym_errdefer] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_expand] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_PIPE2] = ACTIONS(4738), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4738), + [anon_sym_orelse] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4734), + [anon_sym_xor] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_LT_LT_PIPE] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_catch] = ACTIONS(4734), + [anon_sym_TILDE] = ACTIONS(4738), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_unreachable] = ACTIONS(4734), + [anon_sym_undefined] = ACTIONS(4734), + [sym_sink] = ACTIONS(4734), + [sym_integer] = ACTIONS(4734), + [sym_float] = ACTIONS(4738), + [anon_sym_DQUOTE] = ACTIONS(4738), + [sym_multiline_string] = ACTIONS(4738), + [sym_character] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4738), + }, + [STATE(3767)] = { + [sym_identifier] = ACTIONS(5828), + [anon_sym_func] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(5828), + [anon_sym_struct] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_LBRACE] = ACTIONS(5826), + [anon_sym_DASH] = ACTIONS(5828), + [anon_sym_DOLLAR] = ACTIONS(5826), + [anon_sym_PIPE] = ACTIONS(5828), + [anon_sym_QMARK] = ACTIONS(5826), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(5826), + [anon_sym_void] = ACTIONS(5828), + [anon_sym_noreturn] = ACTIONS(5828), + [anon_sym_type] = ACTIONS(5828), + [anon_sym_anyopaque] = ACTIONS(5828), + [anon_sym_bool] = ACTIONS(5828), + [anon_sym_int] = ACTIONS(5828), + [anon_sym_uint] = ACTIONS(5828), + [anon_sym_float] = ACTIONS(5828), + [anon_sym_range] = ACTIONS(5828), + [anon_sym_i8] = ACTIONS(5828), + [anon_sym_i16] = ACTIONS(5828), + [anon_sym_i32] = ACTIONS(5828), + [anon_sym_i64] = ACTIONS(5828), + [anon_sym_u8] = ACTIONS(5828), + [anon_sym_u16] = ACTIONS(5828), + [anon_sym_u32] = ACTIONS(5828), + [anon_sym_u64] = ACTIONS(5828), + [anon_sym_isize] = ACTIONS(5828), + [anon_sym_usize] = ACTIONS(5828), + [anon_sym_f32] = ACTIONS(5828), + [anon_sym_f64] = ACTIONS(5828), + [anon_sym_c_char] = ACTIONS(5828), + [anon_sym_c_schar] = ACTIONS(5828), + [anon_sym_c_uchar] = ACTIONS(5828), + [anon_sym_c_short] = ACTIONS(5828), + [anon_sym_c_ushort] = ACTIONS(5828), + [anon_sym_c_int] = ACTIONS(5828), + [anon_sym_c_uint] = ACTIONS(5828), + [anon_sym_c_long] = ACTIONS(5828), + [anon_sym_c_ulong] = ACTIONS(5828), + [anon_sym_c_longlong] = ACTIONS(5828), + [anon_sym_c_ulonglong] = ACTIONS(5828), + [anon_sym_c_float] = ACTIONS(5828), + [anon_sym_c_double] = ACTIONS(5828), + [anon_sym_c_longdouble] = ACTIONS(5828), + [anon_sym_PLUS_EQ] = ACTIONS(5826), + [anon_sym_DASH_EQ] = ACTIONS(5826), + [anon_sym_STAR_EQ] = ACTIONS(5826), + [anon_sym_SLASH_EQ] = ACTIONS(5826), + [anon_sym_AMP_EQ] = ACTIONS(5826), + [anon_sym_PIPE_EQ] = ACTIONS(5828), + [anon_sym_xor_EQ] = ACTIONS(5826), + [anon_sym_LT_LT_EQ] = ACTIONS(5826), + [anon_sym_GT_GT_EQ] = ACTIONS(5826), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5826), + [anon_sym_return] = ACTIONS(5828), + [anon_sym_yield] = ACTIONS(5828), + [anon_sym_break] = ACTIONS(5828), + [anon_sym_continue] = ACTIONS(5828), + [anon_sym_defer] = ACTIONS(5828), + [anon_sym_errdefer] = ACTIONS(5828), + [anon_sym_if] = ACTIONS(5828), + [anon_sym_else] = ACTIONS(5828), + [anon_sym_while] = ACTIONS(5828), + [anon_sym_expand] = ACTIONS(5828), + [anon_sym_for] = ACTIONS(5828), + [anon_sym_PIPE2] = ACTIONS(5826), + [anon_sym_match] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5826), + [anon_sym_orelse] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_EQ_EQ] = ACTIONS(5826), + [anon_sym_BANG_EQ] = ACTIONS(5826), + [anon_sym_LT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5826), + [anon_sym_GT] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5828), + [anon_sym_xor] = ACTIONS(5828), + [anon_sym_LT_LT] = ACTIONS(5828), + [anon_sym_GT_GT] = ACTIONS(5828), + [anon_sym_LT_LT_PIPE] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5828), + [anon_sym_SLASH] = ACTIONS(5828), + [anon_sym_catch] = ACTIONS(5828), + [anon_sym_TILDE] = ACTIONS(5826), + [anon_sym_try] = ACTIONS(5828), + [anon_sym_DOT] = ACTIONS(5828), + [anon_sym_CARET] = ACTIONS(5826), + [anon_sym_true] = ACTIONS(5828), + [anon_sym_false] = ACTIONS(5828), + [anon_sym_null] = ACTIONS(5828), + [anon_sym_unreachable] = ACTIONS(5828), + [anon_sym_undefined] = ACTIONS(5828), + [sym_sink] = ACTIONS(5828), + [sym_integer] = ACTIONS(5828), + [sym_float] = ACTIONS(5826), + [anon_sym_DQUOTE] = ACTIONS(5826), + [sym_multiline_string] = ACTIONS(5826), + [sym_character] = ACTIONS(5826), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5826), + }, + [STATE(3768)] = { + [sym_identifier] = ACTIONS(5832), + [anon_sym_func] = ACTIONS(5832), + [anon_sym_BANG] = ACTIONS(5832), + [anon_sym_EQ] = ACTIONS(5832), + [anon_sym_struct] = ACTIONS(5832), + [anon_sym_LPAREN] = ACTIONS(5830), + [anon_sym_LBRACE] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5832), + [anon_sym_DOLLAR] = ACTIONS(5830), + [anon_sym_PIPE] = ACTIONS(5832), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_STAR] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(5830), + [anon_sym_void] = ACTIONS(5832), + [anon_sym_noreturn] = ACTIONS(5832), + [anon_sym_type] = ACTIONS(5832), + [anon_sym_anyopaque] = ACTIONS(5832), + [anon_sym_bool] = ACTIONS(5832), + [anon_sym_int] = ACTIONS(5832), + [anon_sym_uint] = ACTIONS(5832), + [anon_sym_float] = ACTIONS(5832), + [anon_sym_range] = ACTIONS(5832), + [anon_sym_i8] = ACTIONS(5832), + [anon_sym_i16] = ACTIONS(5832), + [anon_sym_i32] = ACTIONS(5832), + [anon_sym_i64] = ACTIONS(5832), + [anon_sym_u8] = ACTIONS(5832), + [anon_sym_u16] = ACTIONS(5832), + [anon_sym_u32] = ACTIONS(5832), + [anon_sym_u64] = ACTIONS(5832), + [anon_sym_isize] = ACTIONS(5832), + [anon_sym_usize] = ACTIONS(5832), + [anon_sym_f32] = ACTIONS(5832), + [anon_sym_f64] = ACTIONS(5832), + [anon_sym_c_char] = ACTIONS(5832), + [anon_sym_c_schar] = ACTIONS(5832), + [anon_sym_c_uchar] = ACTIONS(5832), + [anon_sym_c_short] = ACTIONS(5832), + [anon_sym_c_ushort] = ACTIONS(5832), + [anon_sym_c_int] = ACTIONS(5832), + [anon_sym_c_uint] = ACTIONS(5832), + [anon_sym_c_long] = ACTIONS(5832), + [anon_sym_c_ulong] = ACTIONS(5832), + [anon_sym_c_longlong] = ACTIONS(5832), + [anon_sym_c_ulonglong] = ACTIONS(5832), + [anon_sym_c_float] = ACTIONS(5832), + [anon_sym_c_double] = ACTIONS(5832), + [anon_sym_c_longdouble] = ACTIONS(5832), + [anon_sym_PLUS_EQ] = ACTIONS(5830), + [anon_sym_DASH_EQ] = ACTIONS(5830), + [anon_sym_STAR_EQ] = ACTIONS(5830), + [anon_sym_SLASH_EQ] = ACTIONS(5830), + [anon_sym_AMP_EQ] = ACTIONS(5830), + [anon_sym_PIPE_EQ] = ACTIONS(5832), + [anon_sym_xor_EQ] = ACTIONS(5830), + [anon_sym_LT_LT_EQ] = ACTIONS(5830), + [anon_sym_GT_GT_EQ] = ACTIONS(5830), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5830), + [anon_sym_return] = ACTIONS(5832), + [anon_sym_yield] = ACTIONS(5832), + [anon_sym_break] = ACTIONS(5832), + [anon_sym_continue] = ACTIONS(5832), + [anon_sym_defer] = ACTIONS(5832), + [anon_sym_errdefer] = ACTIONS(5832), + [anon_sym_if] = ACTIONS(5832), + [anon_sym_else] = ACTIONS(5832), + [anon_sym_while] = ACTIONS(5832), + [anon_sym_expand] = ACTIONS(5832), + [anon_sym_for] = ACTIONS(5832), + [anon_sym_PIPE2] = ACTIONS(5830), + [anon_sym_match] = ACTIONS(5832), + [anon_sym_DOT_DOT] = ACTIONS(5832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5830), + [anon_sym_orelse] = ACTIONS(5832), + [anon_sym_or] = ACTIONS(5832), + [anon_sym_and] = ACTIONS(5832), + [anon_sym_EQ_EQ] = ACTIONS(5830), + [anon_sym_BANG_EQ] = ACTIONS(5830), + [anon_sym_LT] = ACTIONS(5832), + [anon_sym_LT_EQ] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5832), + [anon_sym_xor] = ACTIONS(5832), + [anon_sym_LT_LT] = ACTIONS(5832), + [anon_sym_GT_GT] = ACTIONS(5832), + [anon_sym_LT_LT_PIPE] = ACTIONS(5832), + [anon_sym_PLUS] = ACTIONS(5832), + [anon_sym_SLASH] = ACTIONS(5832), + [anon_sym_catch] = ACTIONS(5832), + [anon_sym_TILDE] = ACTIONS(5830), + [anon_sym_try] = ACTIONS(5832), + [anon_sym_DOT] = ACTIONS(5832), + [anon_sym_CARET] = ACTIONS(5830), + [anon_sym_true] = ACTIONS(5832), + [anon_sym_false] = ACTIONS(5832), + [anon_sym_null] = ACTIONS(5832), + [anon_sym_unreachable] = ACTIONS(5832), + [anon_sym_undefined] = ACTIONS(5832), + [sym_sink] = ACTIONS(5832), + [sym_integer] = ACTIONS(5832), + [sym_float] = ACTIONS(5830), + [anon_sym_DQUOTE] = ACTIONS(5830), + [sym_multiline_string] = ACTIONS(5830), + [sym_character] = ACTIONS(5830), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5830), + }, + [STATE(3769)] = { + [sym_identifier] = ACTIONS(5402), + [anon_sym_func] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_struct] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_DOLLAR] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_void] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_type] = ACTIONS(5402), + [anon_sym_anyopaque] = ACTIONS(5402), + [anon_sym_bool] = ACTIONS(5402), + [anon_sym_int] = ACTIONS(5402), + [anon_sym_uint] = ACTIONS(5402), + [anon_sym_float] = ACTIONS(5402), + [anon_sym_range] = ACTIONS(5402), + [anon_sym_i8] = ACTIONS(5402), + [anon_sym_i16] = ACTIONS(5402), + [anon_sym_i32] = ACTIONS(5402), + [anon_sym_i64] = ACTIONS(5402), + [anon_sym_u8] = ACTIONS(5402), + [anon_sym_u16] = ACTIONS(5402), + [anon_sym_u32] = ACTIONS(5402), + [anon_sym_u64] = ACTIONS(5402), + [anon_sym_isize] = ACTIONS(5402), + [anon_sym_usize] = ACTIONS(5402), + [anon_sym_f32] = ACTIONS(5402), + [anon_sym_f64] = ACTIONS(5402), + [anon_sym_c_char] = ACTIONS(5402), + [anon_sym_c_schar] = ACTIONS(5402), + [anon_sym_c_uchar] = ACTIONS(5402), + [anon_sym_c_short] = ACTIONS(5402), + [anon_sym_c_ushort] = ACTIONS(5402), + [anon_sym_c_int] = ACTIONS(5402), + [anon_sym_c_uint] = ACTIONS(5402), + [anon_sym_c_long] = ACTIONS(5402), + [anon_sym_c_ulong] = ACTIONS(5402), + [anon_sym_c_longlong] = ACTIONS(5402), + [anon_sym_c_ulonglong] = ACTIONS(5402), + [anon_sym_c_float] = ACTIONS(5402), + [anon_sym_c_double] = ACTIONS(5402), + [anon_sym_c_longdouble] = ACTIONS(5402), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5402), + [anon_sym_xor_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5400), + [anon_sym_return] = ACTIONS(5402), + [anon_sym_yield] = ACTIONS(5402), + [anon_sym_break] = ACTIONS(5402), + [anon_sym_continue] = ACTIONS(5402), + [anon_sym_defer] = ACTIONS(5402), + [anon_sym_errdefer] = ACTIONS(5402), + [anon_sym_if] = ACTIONS(5402), + [anon_sym_else] = ACTIONS(5402), + [anon_sym_while] = ACTIONS(5402), + [anon_sym_expand] = ACTIONS(5402), + [anon_sym_for] = ACTIONS(5402), + [anon_sym_PIPE2] = ACTIONS(5400), + [anon_sym_match] = ACTIONS(5402), + [anon_sym_DOT_DOT] = ACTIONS(5402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5400), + [anon_sym_orelse] = ACTIONS(5402), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym_LT_LT_PIPE] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_catch] = ACTIONS(5402), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_try] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5400), + [anon_sym_true] = ACTIONS(5402), + [anon_sym_false] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5402), + [anon_sym_unreachable] = ACTIONS(5402), + [anon_sym_undefined] = ACTIONS(5402), + [sym_sink] = ACTIONS(5402), + [sym_integer] = ACTIONS(5402), + [sym_float] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [sym_multiline_string] = ACTIONS(5400), + [sym_character] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5400), + }, + [STATE(3770)] = { + [sym_identifier] = ACTIONS(5406), + [anon_sym_func] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_EQ] = ACTIONS(5406), + [anon_sym_struct] = ACTIONS(5406), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_DOLLAR] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR] = ACTIONS(5406), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_void] = ACTIONS(5406), + [anon_sym_noreturn] = ACTIONS(5406), + [anon_sym_type] = ACTIONS(5406), + [anon_sym_anyopaque] = ACTIONS(5406), + [anon_sym_bool] = ACTIONS(5406), + [anon_sym_int] = ACTIONS(5406), + [anon_sym_uint] = ACTIONS(5406), + [anon_sym_float] = ACTIONS(5406), + [anon_sym_range] = ACTIONS(5406), + [anon_sym_i8] = ACTIONS(5406), + [anon_sym_i16] = ACTIONS(5406), + [anon_sym_i32] = ACTIONS(5406), + [anon_sym_i64] = ACTIONS(5406), + [anon_sym_u8] = ACTIONS(5406), + [anon_sym_u16] = ACTIONS(5406), + [anon_sym_u32] = ACTIONS(5406), + [anon_sym_u64] = ACTIONS(5406), + [anon_sym_isize] = ACTIONS(5406), + [anon_sym_usize] = ACTIONS(5406), + [anon_sym_f32] = ACTIONS(5406), + [anon_sym_f64] = ACTIONS(5406), + [anon_sym_c_char] = ACTIONS(5406), + [anon_sym_c_schar] = ACTIONS(5406), + [anon_sym_c_uchar] = ACTIONS(5406), + [anon_sym_c_short] = ACTIONS(5406), + [anon_sym_c_ushort] = ACTIONS(5406), + [anon_sym_c_int] = ACTIONS(5406), + [anon_sym_c_uint] = ACTIONS(5406), + [anon_sym_c_long] = ACTIONS(5406), + [anon_sym_c_ulong] = ACTIONS(5406), + [anon_sym_c_longlong] = ACTIONS(5406), + [anon_sym_c_ulonglong] = ACTIONS(5406), + [anon_sym_c_float] = ACTIONS(5406), + [anon_sym_c_double] = ACTIONS(5406), + [anon_sym_c_longdouble] = ACTIONS(5406), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5406), + [anon_sym_xor_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5404), + [anon_sym_return] = ACTIONS(5406), + [anon_sym_yield] = ACTIONS(5406), + [anon_sym_break] = ACTIONS(5406), + [anon_sym_continue] = ACTIONS(5406), + [anon_sym_defer] = ACTIONS(5406), + [anon_sym_errdefer] = ACTIONS(5406), + [anon_sym_if] = ACTIONS(5406), + [anon_sym_else] = ACTIONS(5406), + [anon_sym_while] = ACTIONS(5406), + [anon_sym_expand] = ACTIONS(5406), + [anon_sym_for] = ACTIONS(5406), + [anon_sym_PIPE2] = ACTIONS(5404), + [anon_sym_match] = ACTIONS(5406), + [anon_sym_DOT_DOT] = ACTIONS(5406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5404), + [anon_sym_orelse] = ACTIONS(5406), + [anon_sym_or] = ACTIONS(5406), + [anon_sym_and] = ACTIONS(5406), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_LT_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_xor] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(5406), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_LT_LT_PIPE] = ACTIONS(5406), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_catch] = ACTIONS(5406), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_try] = ACTIONS(5406), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_CARET] = ACTIONS(5404), + [anon_sym_true] = ACTIONS(5406), + [anon_sym_false] = ACTIONS(5406), + [anon_sym_null] = ACTIONS(5406), + [anon_sym_unreachable] = ACTIONS(5406), + [anon_sym_undefined] = ACTIONS(5406), + [sym_sink] = ACTIONS(5406), + [sym_integer] = ACTIONS(5406), + [sym_float] = ACTIONS(5404), + [anon_sym_DQUOTE] = ACTIONS(5404), + [sym_multiline_string] = ACTIONS(5404), + [sym_character] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5404), + }, + [STATE(3771)] = { + [sym_identifier] = ACTIONS(5410), + [anon_sym_func] = ACTIONS(5410), + [anon_sym_BANG] = ACTIONS(5410), + [anon_sym_EQ] = ACTIONS(5410), + [anon_sym_struct] = ACTIONS(5410), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5408), + [anon_sym_DASH] = ACTIONS(5410), + [anon_sym_DOLLAR] = ACTIONS(5408), + [anon_sym_PIPE] = ACTIONS(5410), + [anon_sym_QMARK] = ACTIONS(5408), + [anon_sym_STAR] = ACTIONS(5410), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_void] = ACTIONS(5410), + [anon_sym_noreturn] = ACTIONS(5410), + [anon_sym_type] = ACTIONS(5410), + [anon_sym_anyopaque] = ACTIONS(5410), + [anon_sym_bool] = ACTIONS(5410), + [anon_sym_int] = ACTIONS(5410), + [anon_sym_uint] = ACTIONS(5410), + [anon_sym_float] = ACTIONS(5410), + [anon_sym_range] = ACTIONS(5410), + [anon_sym_i8] = ACTIONS(5410), + [anon_sym_i16] = ACTIONS(5410), + [anon_sym_i32] = ACTIONS(5410), + [anon_sym_i64] = ACTIONS(5410), + [anon_sym_u8] = ACTIONS(5410), + [anon_sym_u16] = ACTIONS(5410), + [anon_sym_u32] = ACTIONS(5410), + [anon_sym_u64] = ACTIONS(5410), + [anon_sym_isize] = ACTIONS(5410), + [anon_sym_usize] = ACTIONS(5410), + [anon_sym_f32] = ACTIONS(5410), + [anon_sym_f64] = ACTIONS(5410), + [anon_sym_c_char] = ACTIONS(5410), + [anon_sym_c_schar] = ACTIONS(5410), + [anon_sym_c_uchar] = ACTIONS(5410), + [anon_sym_c_short] = ACTIONS(5410), + [anon_sym_c_ushort] = ACTIONS(5410), + [anon_sym_c_int] = ACTIONS(5410), + [anon_sym_c_uint] = ACTIONS(5410), + [anon_sym_c_long] = ACTIONS(5410), + [anon_sym_c_ulong] = ACTIONS(5410), + [anon_sym_c_longlong] = ACTIONS(5410), + [anon_sym_c_ulonglong] = ACTIONS(5410), + [anon_sym_c_float] = ACTIONS(5410), + [anon_sym_c_double] = ACTIONS(5410), + [anon_sym_c_longdouble] = ACTIONS(5410), + [anon_sym_PLUS_EQ] = ACTIONS(5408), + [anon_sym_DASH_EQ] = ACTIONS(5408), + [anon_sym_STAR_EQ] = ACTIONS(5408), + [anon_sym_SLASH_EQ] = ACTIONS(5408), + [anon_sym_AMP_EQ] = ACTIONS(5408), + [anon_sym_PIPE_EQ] = ACTIONS(5410), + [anon_sym_xor_EQ] = ACTIONS(5408), + [anon_sym_LT_LT_EQ] = ACTIONS(5408), + [anon_sym_GT_GT_EQ] = ACTIONS(5408), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5408), + [anon_sym_return] = ACTIONS(5410), + [anon_sym_yield] = ACTIONS(5410), + [anon_sym_break] = ACTIONS(5410), + [anon_sym_continue] = ACTIONS(5410), + [anon_sym_defer] = ACTIONS(5410), + [anon_sym_errdefer] = ACTIONS(5410), + [anon_sym_if] = ACTIONS(5410), + [anon_sym_else] = ACTIONS(5410), + [anon_sym_while] = ACTIONS(5410), + [anon_sym_expand] = ACTIONS(5410), + [anon_sym_for] = ACTIONS(5410), + [anon_sym_PIPE2] = ACTIONS(5408), + [anon_sym_match] = ACTIONS(5410), + [anon_sym_DOT_DOT] = ACTIONS(5410), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5408), + [anon_sym_orelse] = ACTIONS(5410), + [anon_sym_or] = ACTIONS(5410), + [anon_sym_and] = ACTIONS(5410), + [anon_sym_EQ_EQ] = ACTIONS(5408), + [anon_sym_BANG_EQ] = ACTIONS(5408), + [anon_sym_LT] = ACTIONS(5410), + [anon_sym_LT_EQ] = ACTIONS(5408), + [anon_sym_GT] = ACTIONS(5410), + [anon_sym_GT_EQ] = ACTIONS(5408), + [anon_sym_AMP] = ACTIONS(5410), + [anon_sym_xor] = ACTIONS(5410), + [anon_sym_LT_LT] = ACTIONS(5410), + [anon_sym_GT_GT] = ACTIONS(5410), + [anon_sym_LT_LT_PIPE] = ACTIONS(5410), + [anon_sym_PLUS] = ACTIONS(5410), + [anon_sym_SLASH] = ACTIONS(5410), + [anon_sym_catch] = ACTIONS(5410), + [anon_sym_TILDE] = ACTIONS(5408), + [anon_sym_try] = ACTIONS(5410), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_CARET] = ACTIONS(5408), + [anon_sym_true] = ACTIONS(5410), + [anon_sym_false] = ACTIONS(5410), + [anon_sym_null] = ACTIONS(5410), + [anon_sym_unreachable] = ACTIONS(5410), + [anon_sym_undefined] = ACTIONS(5410), + [sym_sink] = ACTIONS(5410), + [sym_integer] = ACTIONS(5410), + [sym_float] = ACTIONS(5408), + [anon_sym_DQUOTE] = ACTIONS(5408), + [sym_multiline_string] = ACTIONS(5408), + [sym_character] = ACTIONS(5408), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5408), + }, + [STATE(3772)] = { + [sym_identifier] = ACTIONS(5414), + [anon_sym_func] = ACTIONS(5414), + [anon_sym_BANG] = ACTIONS(5414), + [anon_sym_EQ] = ACTIONS(5414), + [anon_sym_struct] = ACTIONS(5414), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_LBRACE] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5414), + [anon_sym_DOLLAR] = ACTIONS(5412), + [anon_sym_PIPE] = ACTIONS(5414), + [anon_sym_QMARK] = ACTIONS(5412), + [anon_sym_STAR] = ACTIONS(5414), + [anon_sym_LBRACK] = ACTIONS(5412), + [anon_sym_void] = ACTIONS(5414), + [anon_sym_noreturn] = ACTIONS(5414), + [anon_sym_type] = ACTIONS(5414), + [anon_sym_anyopaque] = ACTIONS(5414), + [anon_sym_bool] = ACTIONS(5414), + [anon_sym_int] = ACTIONS(5414), + [anon_sym_uint] = ACTIONS(5414), + [anon_sym_float] = ACTIONS(5414), + [anon_sym_range] = ACTIONS(5414), + [anon_sym_i8] = ACTIONS(5414), + [anon_sym_i16] = ACTIONS(5414), + [anon_sym_i32] = ACTIONS(5414), + [anon_sym_i64] = ACTIONS(5414), + [anon_sym_u8] = ACTIONS(5414), + [anon_sym_u16] = ACTIONS(5414), + [anon_sym_u32] = ACTIONS(5414), + [anon_sym_u64] = ACTIONS(5414), + [anon_sym_isize] = ACTIONS(5414), + [anon_sym_usize] = ACTIONS(5414), + [anon_sym_f32] = ACTIONS(5414), + [anon_sym_f64] = ACTIONS(5414), + [anon_sym_c_char] = ACTIONS(5414), + [anon_sym_c_schar] = ACTIONS(5414), + [anon_sym_c_uchar] = ACTIONS(5414), + [anon_sym_c_short] = ACTIONS(5414), + [anon_sym_c_ushort] = ACTIONS(5414), + [anon_sym_c_int] = ACTIONS(5414), + [anon_sym_c_uint] = ACTIONS(5414), + [anon_sym_c_long] = ACTIONS(5414), + [anon_sym_c_ulong] = ACTIONS(5414), + [anon_sym_c_longlong] = ACTIONS(5414), + [anon_sym_c_ulonglong] = ACTIONS(5414), + [anon_sym_c_float] = ACTIONS(5414), + [anon_sym_c_double] = ACTIONS(5414), + [anon_sym_c_longdouble] = ACTIONS(5414), + [anon_sym_PLUS_EQ] = ACTIONS(5412), + [anon_sym_DASH_EQ] = ACTIONS(5412), + [anon_sym_STAR_EQ] = ACTIONS(5412), + [anon_sym_SLASH_EQ] = ACTIONS(5412), + [anon_sym_AMP_EQ] = ACTIONS(5412), + [anon_sym_PIPE_EQ] = ACTIONS(5414), + [anon_sym_xor_EQ] = ACTIONS(5412), + [anon_sym_LT_LT_EQ] = ACTIONS(5412), + [anon_sym_GT_GT_EQ] = ACTIONS(5412), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5412), + [anon_sym_return] = ACTIONS(5414), + [anon_sym_yield] = ACTIONS(5414), + [anon_sym_break] = ACTIONS(5414), + [anon_sym_continue] = ACTIONS(5414), + [anon_sym_defer] = ACTIONS(5414), + [anon_sym_errdefer] = ACTIONS(5414), + [anon_sym_if] = ACTIONS(5414), + [anon_sym_else] = ACTIONS(5414), + [anon_sym_while] = ACTIONS(5414), + [anon_sym_expand] = ACTIONS(5414), + [anon_sym_for] = ACTIONS(5414), + [anon_sym_PIPE2] = ACTIONS(5412), + [anon_sym_match] = ACTIONS(5414), + [anon_sym_DOT_DOT] = ACTIONS(5414), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5412), + [anon_sym_orelse] = ACTIONS(5414), + [anon_sym_or] = ACTIONS(5414), + [anon_sym_and] = ACTIONS(5414), + [anon_sym_EQ_EQ] = ACTIONS(5412), + [anon_sym_BANG_EQ] = ACTIONS(5412), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_LT_EQ] = ACTIONS(5412), + [anon_sym_GT] = ACTIONS(5414), + [anon_sym_GT_EQ] = ACTIONS(5412), + [anon_sym_AMP] = ACTIONS(5414), + [anon_sym_xor] = ACTIONS(5414), + [anon_sym_LT_LT] = ACTIONS(5414), + [anon_sym_GT_GT] = ACTIONS(5414), + [anon_sym_LT_LT_PIPE] = ACTIONS(5414), + [anon_sym_PLUS] = ACTIONS(5414), + [anon_sym_SLASH] = ACTIONS(5414), + [anon_sym_catch] = ACTIONS(5414), + [anon_sym_TILDE] = ACTIONS(5412), + [anon_sym_try] = ACTIONS(5414), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_CARET] = ACTIONS(5412), + [anon_sym_true] = ACTIONS(5414), + [anon_sym_false] = ACTIONS(5414), + [anon_sym_null] = ACTIONS(5414), + [anon_sym_unreachable] = ACTIONS(5414), + [anon_sym_undefined] = ACTIONS(5414), + [sym_sink] = ACTIONS(5414), + [sym_integer] = ACTIONS(5414), + [sym_float] = ACTIONS(5412), + [anon_sym_DQUOTE] = ACTIONS(5412), + [sym_multiline_string] = ACTIONS(5412), + [sym_character] = ACTIONS(5412), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5412), + }, + [STATE(3773)] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_func] = ACTIONS(5418), + [anon_sym_BANG] = ACTIONS(5418), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_struct] = ACTIONS(5418), + [anon_sym_LPAREN] = ACTIONS(5416), + [anon_sym_LBRACE] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_DOLLAR] = ACTIONS(5416), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_QMARK] = ACTIONS(5416), + [anon_sym_STAR] = ACTIONS(5418), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_void] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_type] = ACTIONS(5418), + [anon_sym_anyopaque] = ACTIONS(5418), + [anon_sym_bool] = ACTIONS(5418), + [anon_sym_int] = ACTIONS(5418), + [anon_sym_uint] = ACTIONS(5418), + [anon_sym_float] = ACTIONS(5418), + [anon_sym_range] = ACTIONS(5418), + [anon_sym_i8] = ACTIONS(5418), + [anon_sym_i16] = ACTIONS(5418), + [anon_sym_i32] = ACTIONS(5418), + [anon_sym_i64] = ACTIONS(5418), + [anon_sym_u8] = ACTIONS(5418), + [anon_sym_u16] = ACTIONS(5418), + [anon_sym_u32] = ACTIONS(5418), + [anon_sym_u64] = ACTIONS(5418), + [anon_sym_isize] = ACTIONS(5418), + [anon_sym_usize] = ACTIONS(5418), + [anon_sym_f32] = ACTIONS(5418), + [anon_sym_f64] = ACTIONS(5418), + [anon_sym_c_char] = ACTIONS(5418), + [anon_sym_c_schar] = ACTIONS(5418), + [anon_sym_c_uchar] = ACTIONS(5418), + [anon_sym_c_short] = ACTIONS(5418), + [anon_sym_c_ushort] = ACTIONS(5418), + [anon_sym_c_int] = ACTIONS(5418), + [anon_sym_c_uint] = ACTIONS(5418), + [anon_sym_c_long] = ACTIONS(5418), + [anon_sym_c_ulong] = ACTIONS(5418), + [anon_sym_c_longlong] = ACTIONS(5418), + [anon_sym_c_ulonglong] = ACTIONS(5418), + [anon_sym_c_float] = ACTIONS(5418), + [anon_sym_c_double] = ACTIONS(5418), + [anon_sym_c_longdouble] = ACTIONS(5418), + [anon_sym_PLUS_EQ] = ACTIONS(5416), + [anon_sym_DASH_EQ] = ACTIONS(5416), + [anon_sym_STAR_EQ] = ACTIONS(5416), + [anon_sym_SLASH_EQ] = ACTIONS(5416), + [anon_sym_AMP_EQ] = ACTIONS(5416), + [anon_sym_PIPE_EQ] = ACTIONS(5418), + [anon_sym_xor_EQ] = ACTIONS(5416), + [anon_sym_LT_LT_EQ] = ACTIONS(5416), + [anon_sym_GT_GT_EQ] = ACTIONS(5416), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5416), + [anon_sym_return] = ACTIONS(5418), + [anon_sym_yield] = ACTIONS(5418), + [anon_sym_break] = ACTIONS(5418), + [anon_sym_continue] = ACTIONS(5418), + [anon_sym_defer] = ACTIONS(5418), + [anon_sym_errdefer] = ACTIONS(5418), + [anon_sym_if] = ACTIONS(5418), + [anon_sym_else] = ACTIONS(5418), + [anon_sym_while] = ACTIONS(5418), + [anon_sym_expand] = ACTIONS(5418), + [anon_sym_for] = ACTIONS(5418), + [anon_sym_PIPE2] = ACTIONS(5416), + [anon_sym_match] = ACTIONS(5418), + [anon_sym_DOT_DOT] = ACTIONS(5418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5416), + [anon_sym_orelse] = ACTIONS(5418), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5416), + [anon_sym_BANG_EQ] = ACTIONS(5416), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_EQ] = ACTIONS(5416), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5418), + [anon_sym_GT_GT] = ACTIONS(5418), + [anon_sym_LT_LT_PIPE] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_catch] = ACTIONS(5418), + [anon_sym_TILDE] = ACTIONS(5416), + [anon_sym_try] = ACTIONS(5418), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5416), + [anon_sym_true] = ACTIONS(5418), + [anon_sym_false] = ACTIONS(5418), + [anon_sym_null] = ACTIONS(5418), + [anon_sym_unreachable] = ACTIONS(5418), + [anon_sym_undefined] = ACTIONS(5418), + [sym_sink] = ACTIONS(5418), + [sym_integer] = ACTIONS(5418), + [sym_float] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5416), + [sym_multiline_string] = ACTIONS(5416), + [sym_character] = ACTIONS(5416), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5416), + }, + [STATE(3774)] = { + [sym_identifier] = ACTIONS(5422), + [anon_sym_func] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5422), + [anon_sym_EQ] = ACTIONS(5422), + [anon_sym_struct] = ACTIONS(5422), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5422), + [anon_sym_DOLLAR] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5422), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_STAR] = ACTIONS(5422), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_void] = ACTIONS(5422), + [anon_sym_noreturn] = ACTIONS(5422), + [anon_sym_type] = ACTIONS(5422), + [anon_sym_anyopaque] = ACTIONS(5422), + [anon_sym_bool] = ACTIONS(5422), + [anon_sym_int] = ACTIONS(5422), + [anon_sym_uint] = ACTIONS(5422), + [anon_sym_float] = ACTIONS(5422), + [anon_sym_range] = ACTIONS(5422), + [anon_sym_i8] = ACTIONS(5422), + [anon_sym_i16] = ACTIONS(5422), + [anon_sym_i32] = ACTIONS(5422), + [anon_sym_i64] = ACTIONS(5422), + [anon_sym_u8] = ACTIONS(5422), + [anon_sym_u16] = ACTIONS(5422), + [anon_sym_u32] = ACTIONS(5422), + [anon_sym_u64] = ACTIONS(5422), + [anon_sym_isize] = ACTIONS(5422), + [anon_sym_usize] = ACTIONS(5422), + [anon_sym_f32] = ACTIONS(5422), + [anon_sym_f64] = ACTIONS(5422), + [anon_sym_c_char] = ACTIONS(5422), + [anon_sym_c_schar] = ACTIONS(5422), + [anon_sym_c_uchar] = ACTIONS(5422), + [anon_sym_c_short] = ACTIONS(5422), + [anon_sym_c_ushort] = ACTIONS(5422), + [anon_sym_c_int] = ACTIONS(5422), + [anon_sym_c_uint] = ACTIONS(5422), + [anon_sym_c_long] = ACTIONS(5422), + [anon_sym_c_ulong] = ACTIONS(5422), + [anon_sym_c_longlong] = ACTIONS(5422), + [anon_sym_c_ulonglong] = ACTIONS(5422), + [anon_sym_c_float] = ACTIONS(5422), + [anon_sym_c_double] = ACTIONS(5422), + [anon_sym_c_longdouble] = ACTIONS(5422), + [anon_sym_PLUS_EQ] = ACTIONS(5420), + [anon_sym_DASH_EQ] = ACTIONS(5420), + [anon_sym_STAR_EQ] = ACTIONS(5420), + [anon_sym_SLASH_EQ] = ACTIONS(5420), + [anon_sym_AMP_EQ] = ACTIONS(5420), + [anon_sym_PIPE_EQ] = ACTIONS(5422), + [anon_sym_xor_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_EQ] = ACTIONS(5420), + [anon_sym_GT_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5420), + [anon_sym_return] = ACTIONS(5422), + [anon_sym_yield] = ACTIONS(5422), + [anon_sym_break] = ACTIONS(5422), + [anon_sym_continue] = ACTIONS(5422), + [anon_sym_defer] = ACTIONS(5422), + [anon_sym_errdefer] = ACTIONS(5422), + [anon_sym_if] = ACTIONS(5422), + [anon_sym_else] = ACTIONS(5422), + [anon_sym_while] = ACTIONS(5422), + [anon_sym_expand] = ACTIONS(5422), + [anon_sym_for] = ACTIONS(5422), + [anon_sym_PIPE2] = ACTIONS(5420), + [anon_sym_match] = ACTIONS(5422), + [anon_sym_DOT_DOT] = ACTIONS(5422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5420), + [anon_sym_orelse] = ACTIONS(5422), + [anon_sym_or] = ACTIONS(5422), + [anon_sym_and] = ACTIONS(5422), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_LT] = ACTIONS(5422), + [anon_sym_LT_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5422), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_xor] = ACTIONS(5422), + [anon_sym_LT_LT] = ACTIONS(5422), + [anon_sym_GT_GT] = ACTIONS(5422), + [anon_sym_LT_LT_PIPE] = ACTIONS(5422), + [anon_sym_PLUS] = ACTIONS(5422), + [anon_sym_SLASH] = ACTIONS(5422), + [anon_sym_catch] = ACTIONS(5422), + [anon_sym_TILDE] = ACTIONS(5420), + [anon_sym_try] = ACTIONS(5422), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_true] = ACTIONS(5422), + [anon_sym_false] = ACTIONS(5422), + [anon_sym_null] = ACTIONS(5422), + [anon_sym_unreachable] = ACTIONS(5422), + [anon_sym_undefined] = ACTIONS(5422), + [sym_sink] = ACTIONS(5422), + [sym_integer] = ACTIONS(5422), + [sym_float] = ACTIONS(5420), + [anon_sym_DQUOTE] = ACTIONS(5420), + [sym_multiline_string] = ACTIONS(5420), + [sym_character] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5420), + }, + [STATE(3775)] = { + [sym_identifier] = ACTIONS(5426), + [anon_sym_func] = ACTIONS(5426), + [anon_sym_BANG] = ACTIONS(5426), + [anon_sym_EQ] = ACTIONS(5426), + [anon_sym_struct] = ACTIONS(5426), + [anon_sym_LPAREN] = ACTIONS(5424), + [anon_sym_LBRACE] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5426), + [anon_sym_DOLLAR] = ACTIONS(5424), + [anon_sym_PIPE] = ACTIONS(5426), + [anon_sym_QMARK] = ACTIONS(5424), + [anon_sym_STAR] = ACTIONS(5426), + [anon_sym_LBRACK] = ACTIONS(5424), + [anon_sym_void] = ACTIONS(5426), + [anon_sym_noreturn] = ACTIONS(5426), + [anon_sym_type] = ACTIONS(5426), + [anon_sym_anyopaque] = ACTIONS(5426), + [anon_sym_bool] = ACTIONS(5426), + [anon_sym_int] = ACTIONS(5426), + [anon_sym_uint] = ACTIONS(5426), + [anon_sym_float] = ACTIONS(5426), + [anon_sym_range] = ACTIONS(5426), + [anon_sym_i8] = ACTIONS(5426), + [anon_sym_i16] = ACTIONS(5426), + [anon_sym_i32] = ACTIONS(5426), + [anon_sym_i64] = ACTIONS(5426), + [anon_sym_u8] = ACTIONS(5426), + [anon_sym_u16] = ACTIONS(5426), + [anon_sym_u32] = ACTIONS(5426), + [anon_sym_u64] = ACTIONS(5426), + [anon_sym_isize] = ACTIONS(5426), + [anon_sym_usize] = ACTIONS(5426), + [anon_sym_f32] = ACTIONS(5426), + [anon_sym_f64] = ACTIONS(5426), + [anon_sym_c_char] = ACTIONS(5426), + [anon_sym_c_schar] = ACTIONS(5426), + [anon_sym_c_uchar] = ACTIONS(5426), + [anon_sym_c_short] = ACTIONS(5426), + [anon_sym_c_ushort] = ACTIONS(5426), + [anon_sym_c_int] = ACTIONS(5426), + [anon_sym_c_uint] = ACTIONS(5426), + [anon_sym_c_long] = ACTIONS(5426), + [anon_sym_c_ulong] = ACTIONS(5426), + [anon_sym_c_longlong] = ACTIONS(5426), + [anon_sym_c_ulonglong] = ACTIONS(5426), + [anon_sym_c_float] = ACTIONS(5426), + [anon_sym_c_double] = ACTIONS(5426), + [anon_sym_c_longdouble] = ACTIONS(5426), + [anon_sym_PLUS_EQ] = ACTIONS(5424), + [anon_sym_DASH_EQ] = ACTIONS(5424), + [anon_sym_STAR_EQ] = ACTIONS(5424), + [anon_sym_SLASH_EQ] = ACTIONS(5424), + [anon_sym_AMP_EQ] = ACTIONS(5424), + [anon_sym_PIPE_EQ] = ACTIONS(5426), + [anon_sym_xor_EQ] = ACTIONS(5424), + [anon_sym_LT_LT_EQ] = ACTIONS(5424), + [anon_sym_GT_GT_EQ] = ACTIONS(5424), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5424), + [anon_sym_return] = ACTIONS(5426), + [anon_sym_yield] = ACTIONS(5426), + [anon_sym_break] = ACTIONS(5426), + [anon_sym_continue] = ACTIONS(5426), + [anon_sym_defer] = ACTIONS(5426), + [anon_sym_errdefer] = ACTIONS(5426), + [anon_sym_if] = ACTIONS(5426), + [anon_sym_else] = ACTIONS(5426), + [anon_sym_while] = ACTIONS(5426), + [anon_sym_expand] = ACTIONS(5426), + [anon_sym_for] = ACTIONS(5426), + [anon_sym_PIPE2] = ACTIONS(5424), + [anon_sym_match] = ACTIONS(5426), + [anon_sym_DOT_DOT] = ACTIONS(5426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5424), + [anon_sym_orelse] = ACTIONS(5426), + [anon_sym_or] = ACTIONS(5426), + [anon_sym_and] = ACTIONS(5426), + [anon_sym_EQ_EQ] = ACTIONS(5424), + [anon_sym_BANG_EQ] = ACTIONS(5424), + [anon_sym_LT] = ACTIONS(5426), + [anon_sym_LT_EQ] = ACTIONS(5424), + [anon_sym_GT] = ACTIONS(5426), + [anon_sym_GT_EQ] = ACTIONS(5424), + [anon_sym_AMP] = ACTIONS(5426), + [anon_sym_xor] = ACTIONS(5426), + [anon_sym_LT_LT] = ACTIONS(5426), + [anon_sym_GT_GT] = ACTIONS(5426), + [anon_sym_LT_LT_PIPE] = ACTIONS(5426), + [anon_sym_PLUS] = ACTIONS(5426), + [anon_sym_SLASH] = ACTIONS(5426), + [anon_sym_catch] = ACTIONS(5426), + [anon_sym_TILDE] = ACTIONS(5424), + [anon_sym_try] = ACTIONS(5426), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_CARET] = ACTIONS(5424), + [anon_sym_true] = ACTIONS(5426), + [anon_sym_false] = ACTIONS(5426), + [anon_sym_null] = ACTIONS(5426), + [anon_sym_unreachable] = ACTIONS(5426), + [anon_sym_undefined] = ACTIONS(5426), + [sym_sink] = ACTIONS(5426), + [sym_integer] = ACTIONS(5426), + [sym_float] = ACTIONS(5424), + [anon_sym_DQUOTE] = ACTIONS(5424), + [sym_multiline_string] = ACTIONS(5424), + [sym_character] = ACTIONS(5424), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5424), + }, + [STATE(3776)] = { + [sym_identifier] = ACTIONS(5434), + [anon_sym_func] = ACTIONS(5434), + [anon_sym_BANG] = ACTIONS(5434), + [anon_sym_EQ] = ACTIONS(5434), + [anon_sym_struct] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5432), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5434), + [anon_sym_DOLLAR] = ACTIONS(5432), + [anon_sym_PIPE] = ACTIONS(5434), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_STAR] = ACTIONS(5434), + [anon_sym_LBRACK] = ACTIONS(5432), + [anon_sym_void] = ACTIONS(5434), + [anon_sym_noreturn] = ACTIONS(5434), + [anon_sym_type] = ACTIONS(5434), + [anon_sym_anyopaque] = ACTIONS(5434), + [anon_sym_bool] = ACTIONS(5434), + [anon_sym_int] = ACTIONS(5434), + [anon_sym_uint] = ACTIONS(5434), + [anon_sym_float] = ACTIONS(5434), + [anon_sym_range] = ACTIONS(5434), + [anon_sym_i8] = ACTIONS(5434), + [anon_sym_i16] = ACTIONS(5434), + [anon_sym_i32] = ACTIONS(5434), + [anon_sym_i64] = ACTIONS(5434), + [anon_sym_u8] = ACTIONS(5434), + [anon_sym_u16] = ACTIONS(5434), + [anon_sym_u32] = ACTIONS(5434), + [anon_sym_u64] = ACTIONS(5434), + [anon_sym_isize] = ACTIONS(5434), + [anon_sym_usize] = ACTIONS(5434), + [anon_sym_f32] = ACTIONS(5434), + [anon_sym_f64] = ACTIONS(5434), + [anon_sym_c_char] = ACTIONS(5434), + [anon_sym_c_schar] = ACTIONS(5434), + [anon_sym_c_uchar] = ACTIONS(5434), + [anon_sym_c_short] = ACTIONS(5434), + [anon_sym_c_ushort] = ACTIONS(5434), + [anon_sym_c_int] = ACTIONS(5434), + [anon_sym_c_uint] = ACTIONS(5434), + [anon_sym_c_long] = ACTIONS(5434), + [anon_sym_c_ulong] = ACTIONS(5434), + [anon_sym_c_longlong] = ACTIONS(5434), + [anon_sym_c_ulonglong] = ACTIONS(5434), + [anon_sym_c_float] = ACTIONS(5434), + [anon_sym_c_double] = ACTIONS(5434), + [anon_sym_c_longdouble] = ACTIONS(5434), + [anon_sym_PLUS_EQ] = ACTIONS(5432), + [anon_sym_DASH_EQ] = ACTIONS(5432), + [anon_sym_STAR_EQ] = ACTIONS(5432), + [anon_sym_SLASH_EQ] = ACTIONS(5432), + [anon_sym_AMP_EQ] = ACTIONS(5432), + [anon_sym_PIPE_EQ] = ACTIONS(5434), + [anon_sym_xor_EQ] = ACTIONS(5432), + [anon_sym_LT_LT_EQ] = ACTIONS(5432), + [anon_sym_GT_GT_EQ] = ACTIONS(5432), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5432), + [anon_sym_return] = ACTIONS(5434), + [anon_sym_yield] = ACTIONS(5434), + [anon_sym_break] = ACTIONS(5434), + [anon_sym_continue] = ACTIONS(5434), + [anon_sym_defer] = ACTIONS(5434), + [anon_sym_errdefer] = ACTIONS(5434), + [anon_sym_if] = ACTIONS(5434), + [anon_sym_else] = ACTIONS(5434), + [anon_sym_while] = ACTIONS(5434), + [anon_sym_expand] = ACTIONS(5434), + [anon_sym_for] = ACTIONS(5434), + [anon_sym_PIPE2] = ACTIONS(5432), + [anon_sym_match] = ACTIONS(5434), + [anon_sym_DOT_DOT] = ACTIONS(5434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5432), + [anon_sym_orelse] = ACTIONS(5434), + [anon_sym_or] = ACTIONS(5434), + [anon_sym_and] = ACTIONS(5434), + [anon_sym_EQ_EQ] = ACTIONS(5432), + [anon_sym_BANG_EQ] = ACTIONS(5432), + [anon_sym_LT] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5432), + [anon_sym_GT] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(5434), + [anon_sym_xor] = ACTIONS(5434), + [anon_sym_LT_LT] = ACTIONS(5434), + [anon_sym_GT_GT] = ACTIONS(5434), + [anon_sym_LT_LT_PIPE] = ACTIONS(5434), + [anon_sym_PLUS] = ACTIONS(5434), + [anon_sym_SLASH] = ACTIONS(5434), + [anon_sym_catch] = ACTIONS(5434), + [anon_sym_TILDE] = ACTIONS(5432), + [anon_sym_try] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5434), + [anon_sym_CARET] = ACTIONS(5432), + [anon_sym_true] = ACTIONS(5434), + [anon_sym_false] = ACTIONS(5434), + [anon_sym_null] = ACTIONS(5434), + [anon_sym_unreachable] = ACTIONS(5434), + [anon_sym_undefined] = ACTIONS(5434), + [sym_sink] = ACTIONS(5434), + [sym_integer] = ACTIONS(5434), + [sym_float] = ACTIONS(5432), + [anon_sym_DQUOTE] = ACTIONS(5432), + [sym_multiline_string] = ACTIONS(5432), + [sym_character] = ACTIONS(5432), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5432), + }, + [STATE(3777)] = { + [sym_identifier] = ACTIONS(5438), + [anon_sym_func] = ACTIONS(5438), + [anon_sym_BANG] = ACTIONS(5438), + [anon_sym_EQ] = ACTIONS(5438), + [anon_sym_struct] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5436), + [anon_sym_LBRACE] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5438), + [anon_sym_DOLLAR] = ACTIONS(5436), + [anon_sym_PIPE] = ACTIONS(5438), + [anon_sym_QMARK] = ACTIONS(5436), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5436), + [anon_sym_void] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_type] = ACTIONS(5438), + [anon_sym_anyopaque] = ACTIONS(5438), + [anon_sym_bool] = ACTIONS(5438), + [anon_sym_int] = ACTIONS(5438), + [anon_sym_uint] = ACTIONS(5438), + [anon_sym_float] = ACTIONS(5438), + [anon_sym_range] = ACTIONS(5438), + [anon_sym_i8] = ACTIONS(5438), + [anon_sym_i16] = ACTIONS(5438), + [anon_sym_i32] = ACTIONS(5438), + [anon_sym_i64] = ACTIONS(5438), + [anon_sym_u8] = ACTIONS(5438), + [anon_sym_u16] = ACTIONS(5438), + [anon_sym_u32] = ACTIONS(5438), + [anon_sym_u64] = ACTIONS(5438), + [anon_sym_isize] = ACTIONS(5438), + [anon_sym_usize] = ACTIONS(5438), + [anon_sym_f32] = ACTIONS(5438), + [anon_sym_f64] = ACTIONS(5438), + [anon_sym_c_char] = ACTIONS(5438), + [anon_sym_c_schar] = ACTIONS(5438), + [anon_sym_c_uchar] = ACTIONS(5438), + [anon_sym_c_short] = ACTIONS(5438), + [anon_sym_c_ushort] = ACTIONS(5438), + [anon_sym_c_int] = ACTIONS(5438), + [anon_sym_c_uint] = ACTIONS(5438), + [anon_sym_c_long] = ACTIONS(5438), + [anon_sym_c_ulong] = ACTIONS(5438), + [anon_sym_c_longlong] = ACTIONS(5438), + [anon_sym_c_ulonglong] = ACTIONS(5438), + [anon_sym_c_float] = ACTIONS(5438), + [anon_sym_c_double] = ACTIONS(5438), + [anon_sym_c_longdouble] = ACTIONS(5438), + [anon_sym_PLUS_EQ] = ACTIONS(5436), + [anon_sym_DASH_EQ] = ACTIONS(5436), + [anon_sym_STAR_EQ] = ACTIONS(5436), + [anon_sym_SLASH_EQ] = ACTIONS(5436), + [anon_sym_AMP_EQ] = ACTIONS(5436), + [anon_sym_PIPE_EQ] = ACTIONS(5438), + [anon_sym_xor_EQ] = ACTIONS(5436), + [anon_sym_LT_LT_EQ] = ACTIONS(5436), + [anon_sym_GT_GT_EQ] = ACTIONS(5436), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5436), + [anon_sym_return] = ACTIONS(5438), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_break] = ACTIONS(5438), + [anon_sym_continue] = ACTIONS(5438), + [anon_sym_defer] = ACTIONS(5438), + [anon_sym_errdefer] = ACTIONS(5438), + [anon_sym_if] = ACTIONS(5438), + [anon_sym_else] = ACTIONS(5438), + [anon_sym_while] = ACTIONS(5438), + [anon_sym_expand] = ACTIONS(5438), + [anon_sym_for] = ACTIONS(5438), + [anon_sym_PIPE2] = ACTIONS(5436), + [anon_sym_match] = ACTIONS(5438), + [anon_sym_DOT_DOT] = ACTIONS(5438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5436), + [anon_sym_orelse] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_EQ_EQ] = ACTIONS(5436), + [anon_sym_BANG_EQ] = ACTIONS(5436), + [anon_sym_LT] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5436), + [anon_sym_GT] = ACTIONS(5438), + [anon_sym_GT_EQ] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5438), + [anon_sym_xor] = ACTIONS(5438), + [anon_sym_LT_LT] = ACTIONS(5438), + [anon_sym_GT_GT] = ACTIONS(5438), + [anon_sym_LT_LT_PIPE] = ACTIONS(5438), + [anon_sym_PLUS] = ACTIONS(5438), + [anon_sym_SLASH] = ACTIONS(5438), + [anon_sym_catch] = ACTIONS(5438), + [anon_sym_TILDE] = ACTIONS(5436), + [anon_sym_try] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5438), + [anon_sym_CARET] = ACTIONS(5436), + [anon_sym_true] = ACTIONS(5438), + [anon_sym_false] = ACTIONS(5438), + [anon_sym_null] = ACTIONS(5438), + [anon_sym_unreachable] = ACTIONS(5438), + [anon_sym_undefined] = ACTIONS(5438), + [sym_sink] = ACTIONS(5438), + [sym_integer] = ACTIONS(5438), + [sym_float] = ACTIONS(5436), + [anon_sym_DQUOTE] = ACTIONS(5436), + [sym_multiline_string] = ACTIONS(5436), + [sym_character] = ACTIONS(5436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5436), + }, + [STATE(3778)] = { + [sym_identifier] = ACTIONS(5444), + [anon_sym_func] = ACTIONS(5444), + [anon_sym_BANG] = ACTIONS(5444), + [anon_sym_EQ] = ACTIONS(5444), + [anon_sym_struct] = ACTIONS(5444), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5444), + [anon_sym_DOLLAR] = ACTIONS(5442), + [anon_sym_PIPE] = ACTIONS(5444), + [anon_sym_QMARK] = ACTIONS(5442), + [anon_sym_STAR] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_void] = ACTIONS(5444), + [anon_sym_noreturn] = ACTIONS(5444), + [anon_sym_type] = ACTIONS(5444), + [anon_sym_anyopaque] = ACTIONS(5444), + [anon_sym_bool] = ACTIONS(5444), + [anon_sym_int] = ACTIONS(5444), + [anon_sym_uint] = ACTIONS(5444), + [anon_sym_float] = ACTIONS(5444), + [anon_sym_range] = ACTIONS(5444), + [anon_sym_i8] = ACTIONS(5444), + [anon_sym_i16] = ACTIONS(5444), + [anon_sym_i32] = ACTIONS(5444), + [anon_sym_i64] = ACTIONS(5444), + [anon_sym_u8] = ACTIONS(5444), + [anon_sym_u16] = ACTIONS(5444), + [anon_sym_u32] = ACTIONS(5444), + [anon_sym_u64] = ACTIONS(5444), + [anon_sym_isize] = ACTIONS(5444), + [anon_sym_usize] = ACTIONS(5444), + [anon_sym_f32] = ACTIONS(5444), + [anon_sym_f64] = ACTIONS(5444), + [anon_sym_c_char] = ACTIONS(5444), + [anon_sym_c_schar] = ACTIONS(5444), + [anon_sym_c_uchar] = ACTIONS(5444), + [anon_sym_c_short] = ACTIONS(5444), + [anon_sym_c_ushort] = ACTIONS(5444), + [anon_sym_c_int] = ACTIONS(5444), + [anon_sym_c_uint] = ACTIONS(5444), + [anon_sym_c_long] = ACTIONS(5444), + [anon_sym_c_ulong] = ACTIONS(5444), + [anon_sym_c_longlong] = ACTIONS(5444), + [anon_sym_c_ulonglong] = ACTIONS(5444), + [anon_sym_c_float] = ACTIONS(5444), + [anon_sym_c_double] = ACTIONS(5444), + [anon_sym_c_longdouble] = ACTIONS(5444), + [anon_sym_PLUS_EQ] = ACTIONS(5442), + [anon_sym_DASH_EQ] = ACTIONS(5442), + [anon_sym_STAR_EQ] = ACTIONS(5442), + [anon_sym_SLASH_EQ] = ACTIONS(5442), + [anon_sym_AMP_EQ] = ACTIONS(5442), + [anon_sym_PIPE_EQ] = ACTIONS(5444), + [anon_sym_xor_EQ] = ACTIONS(5442), + [anon_sym_LT_LT_EQ] = ACTIONS(5442), + [anon_sym_GT_GT_EQ] = ACTIONS(5442), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5442), + [anon_sym_return] = ACTIONS(5444), + [anon_sym_yield] = ACTIONS(5444), + [anon_sym_break] = ACTIONS(5444), + [anon_sym_continue] = ACTIONS(5444), + [anon_sym_defer] = ACTIONS(5444), + [anon_sym_errdefer] = ACTIONS(5444), + [anon_sym_if] = ACTIONS(5444), + [anon_sym_else] = ACTIONS(5444), + [anon_sym_while] = ACTIONS(5444), + [anon_sym_expand] = ACTIONS(5444), + [anon_sym_for] = ACTIONS(5444), + [anon_sym_PIPE2] = ACTIONS(5442), + [anon_sym_match] = ACTIONS(5444), + [anon_sym_DOT_DOT] = ACTIONS(5444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5442), + [anon_sym_orelse] = ACTIONS(5444), + [anon_sym_or] = ACTIONS(5444), + [anon_sym_and] = ACTIONS(5444), + [anon_sym_EQ_EQ] = ACTIONS(5442), + [anon_sym_BANG_EQ] = ACTIONS(5442), + [anon_sym_LT] = ACTIONS(5444), + [anon_sym_LT_EQ] = ACTIONS(5442), + [anon_sym_GT] = ACTIONS(5444), + [anon_sym_GT_EQ] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5444), + [anon_sym_xor] = ACTIONS(5444), + [anon_sym_LT_LT] = ACTIONS(5444), + [anon_sym_GT_GT] = ACTIONS(5444), + [anon_sym_LT_LT_PIPE] = ACTIONS(5444), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_SLASH] = ACTIONS(5444), + [anon_sym_catch] = ACTIONS(5444), + [anon_sym_TILDE] = ACTIONS(5442), + [anon_sym_try] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5444), + [anon_sym_CARET] = ACTIONS(5442), + [anon_sym_true] = ACTIONS(5444), + [anon_sym_false] = ACTIONS(5444), + [anon_sym_null] = ACTIONS(5444), + [anon_sym_unreachable] = ACTIONS(5444), + [anon_sym_undefined] = ACTIONS(5444), + [sym_sink] = ACTIONS(5444), + [sym_integer] = ACTIONS(5444), + [sym_float] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [sym_multiline_string] = ACTIONS(5442), + [sym_character] = ACTIONS(5442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5442), + }, + [STATE(3779)] = { + [sym_identifier] = ACTIONS(5448), + [anon_sym_func] = ACTIONS(5448), + [anon_sym_BANG] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(5448), + [anon_sym_struct] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_LBRACE] = ACTIONS(5446), + [anon_sym_DASH] = ACTIONS(5448), + [anon_sym_DOLLAR] = ACTIONS(5446), + [anon_sym_PIPE] = ACTIONS(5448), + [anon_sym_QMARK] = ACTIONS(5446), + [anon_sym_STAR] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_void] = ACTIONS(5448), + [anon_sym_noreturn] = ACTIONS(5448), + [anon_sym_type] = ACTIONS(5448), + [anon_sym_anyopaque] = ACTIONS(5448), + [anon_sym_bool] = ACTIONS(5448), + [anon_sym_int] = ACTIONS(5448), + [anon_sym_uint] = ACTIONS(5448), + [anon_sym_float] = ACTIONS(5448), + [anon_sym_range] = ACTIONS(5448), + [anon_sym_i8] = ACTIONS(5448), + [anon_sym_i16] = ACTIONS(5448), + [anon_sym_i32] = ACTIONS(5448), + [anon_sym_i64] = ACTIONS(5448), + [anon_sym_u8] = ACTIONS(5448), + [anon_sym_u16] = ACTIONS(5448), + [anon_sym_u32] = ACTIONS(5448), + [anon_sym_u64] = ACTIONS(5448), + [anon_sym_isize] = ACTIONS(5448), + [anon_sym_usize] = ACTIONS(5448), + [anon_sym_f32] = ACTIONS(5448), + [anon_sym_f64] = ACTIONS(5448), + [anon_sym_c_char] = ACTIONS(5448), + [anon_sym_c_schar] = ACTIONS(5448), + [anon_sym_c_uchar] = ACTIONS(5448), + [anon_sym_c_short] = ACTIONS(5448), + [anon_sym_c_ushort] = ACTIONS(5448), + [anon_sym_c_int] = ACTIONS(5448), + [anon_sym_c_uint] = ACTIONS(5448), + [anon_sym_c_long] = ACTIONS(5448), + [anon_sym_c_ulong] = ACTIONS(5448), + [anon_sym_c_longlong] = ACTIONS(5448), + [anon_sym_c_ulonglong] = ACTIONS(5448), + [anon_sym_c_float] = ACTIONS(5448), + [anon_sym_c_double] = ACTIONS(5448), + [anon_sym_c_longdouble] = ACTIONS(5448), + [anon_sym_PLUS_EQ] = ACTIONS(5446), + [anon_sym_DASH_EQ] = ACTIONS(5446), + [anon_sym_STAR_EQ] = ACTIONS(5446), + [anon_sym_SLASH_EQ] = ACTIONS(5446), + [anon_sym_AMP_EQ] = ACTIONS(5446), + [anon_sym_PIPE_EQ] = ACTIONS(5448), + [anon_sym_xor_EQ] = ACTIONS(5446), + [anon_sym_LT_LT_EQ] = ACTIONS(5446), + [anon_sym_GT_GT_EQ] = ACTIONS(5446), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5446), + [anon_sym_return] = ACTIONS(5448), + [anon_sym_yield] = ACTIONS(5448), + [anon_sym_break] = ACTIONS(5448), + [anon_sym_continue] = ACTIONS(5448), + [anon_sym_defer] = ACTIONS(5448), + [anon_sym_errdefer] = ACTIONS(5448), + [anon_sym_if] = ACTIONS(5448), + [anon_sym_else] = ACTIONS(5448), + [anon_sym_while] = ACTIONS(5448), + [anon_sym_expand] = ACTIONS(5448), + [anon_sym_for] = ACTIONS(5448), + [anon_sym_PIPE2] = ACTIONS(5446), + [anon_sym_match] = ACTIONS(5448), + [anon_sym_DOT_DOT] = ACTIONS(5448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5446), + [anon_sym_orelse] = ACTIONS(5448), + [anon_sym_or] = ACTIONS(5448), + [anon_sym_and] = ACTIONS(5448), + [anon_sym_EQ_EQ] = ACTIONS(5446), + [anon_sym_BANG_EQ] = ACTIONS(5446), + [anon_sym_LT] = ACTIONS(5448), + [anon_sym_LT_EQ] = ACTIONS(5446), + [anon_sym_GT] = ACTIONS(5448), + [anon_sym_GT_EQ] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(5448), + [anon_sym_xor] = ACTIONS(5448), + [anon_sym_LT_LT] = ACTIONS(5448), + [anon_sym_GT_GT] = ACTIONS(5448), + [anon_sym_LT_LT_PIPE] = ACTIONS(5448), + [anon_sym_PLUS] = ACTIONS(5448), + [anon_sym_SLASH] = ACTIONS(5448), + [anon_sym_catch] = ACTIONS(5448), + [anon_sym_TILDE] = ACTIONS(5446), + [anon_sym_try] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5448), + [anon_sym_CARET] = ACTIONS(5446), + [anon_sym_true] = ACTIONS(5448), + [anon_sym_false] = ACTIONS(5448), + [anon_sym_null] = ACTIONS(5448), + [anon_sym_unreachable] = ACTIONS(5448), + [anon_sym_undefined] = ACTIONS(5448), + [sym_sink] = ACTIONS(5448), + [sym_integer] = ACTIONS(5448), + [sym_float] = ACTIONS(5446), + [anon_sym_DQUOTE] = ACTIONS(5446), + [sym_multiline_string] = ACTIONS(5446), + [sym_character] = ACTIONS(5446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5446), + }, + [STATE(3780)] = { + [sym_identifier] = ACTIONS(5452), + [anon_sym_func] = ACTIONS(5452), + [anon_sym_BANG] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(5452), + [anon_sym_struct] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(5450), + [anon_sym_LBRACE] = ACTIONS(5450), + [anon_sym_DASH] = ACTIONS(5452), + [anon_sym_DOLLAR] = ACTIONS(5450), + [anon_sym_PIPE] = ACTIONS(5452), + [anon_sym_QMARK] = ACTIONS(5450), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_void] = ACTIONS(5452), + [anon_sym_noreturn] = ACTIONS(5452), + [anon_sym_type] = ACTIONS(5452), + [anon_sym_anyopaque] = ACTIONS(5452), + [anon_sym_bool] = ACTIONS(5452), + [anon_sym_int] = ACTIONS(5452), + [anon_sym_uint] = ACTIONS(5452), + [anon_sym_float] = ACTIONS(5452), + [anon_sym_range] = ACTIONS(5452), + [anon_sym_i8] = ACTIONS(5452), + [anon_sym_i16] = ACTIONS(5452), + [anon_sym_i32] = ACTIONS(5452), + [anon_sym_i64] = ACTIONS(5452), + [anon_sym_u8] = ACTIONS(5452), + [anon_sym_u16] = ACTIONS(5452), + [anon_sym_u32] = ACTIONS(5452), + [anon_sym_u64] = ACTIONS(5452), + [anon_sym_isize] = ACTIONS(5452), + [anon_sym_usize] = ACTIONS(5452), + [anon_sym_f32] = ACTIONS(5452), + [anon_sym_f64] = ACTIONS(5452), + [anon_sym_c_char] = ACTIONS(5452), + [anon_sym_c_schar] = ACTIONS(5452), + [anon_sym_c_uchar] = ACTIONS(5452), + [anon_sym_c_short] = ACTIONS(5452), + [anon_sym_c_ushort] = ACTIONS(5452), + [anon_sym_c_int] = ACTIONS(5452), + [anon_sym_c_uint] = ACTIONS(5452), + [anon_sym_c_long] = ACTIONS(5452), + [anon_sym_c_ulong] = ACTIONS(5452), + [anon_sym_c_longlong] = ACTIONS(5452), + [anon_sym_c_ulonglong] = ACTIONS(5452), + [anon_sym_c_float] = ACTIONS(5452), + [anon_sym_c_double] = ACTIONS(5452), + [anon_sym_c_longdouble] = ACTIONS(5452), + [anon_sym_PLUS_EQ] = ACTIONS(5450), + [anon_sym_DASH_EQ] = ACTIONS(5450), + [anon_sym_STAR_EQ] = ACTIONS(5450), + [anon_sym_SLASH_EQ] = ACTIONS(5450), + [anon_sym_AMP_EQ] = ACTIONS(5450), + [anon_sym_PIPE_EQ] = ACTIONS(5452), + [anon_sym_xor_EQ] = ACTIONS(5450), + [anon_sym_LT_LT_EQ] = ACTIONS(5450), + [anon_sym_GT_GT_EQ] = ACTIONS(5450), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5450), + [anon_sym_return] = ACTIONS(5452), + [anon_sym_yield] = ACTIONS(5452), + [anon_sym_break] = ACTIONS(5452), + [anon_sym_continue] = ACTIONS(5452), + [anon_sym_defer] = ACTIONS(5452), + [anon_sym_errdefer] = ACTIONS(5452), + [anon_sym_if] = ACTIONS(5452), + [anon_sym_else] = ACTIONS(5452), + [anon_sym_while] = ACTIONS(5452), + [anon_sym_expand] = ACTIONS(5452), + [anon_sym_for] = ACTIONS(5452), + [anon_sym_PIPE2] = ACTIONS(5450), + [anon_sym_match] = ACTIONS(5452), + [anon_sym_DOT_DOT] = ACTIONS(5452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5450), + [anon_sym_orelse] = ACTIONS(5452), + [anon_sym_or] = ACTIONS(5452), + [anon_sym_and] = ACTIONS(5452), + [anon_sym_EQ_EQ] = ACTIONS(5450), + [anon_sym_BANG_EQ] = ACTIONS(5450), + [anon_sym_LT] = ACTIONS(5452), + [anon_sym_LT_EQ] = ACTIONS(5450), + [anon_sym_GT] = ACTIONS(5452), + [anon_sym_GT_EQ] = ACTIONS(5450), + [anon_sym_AMP] = ACTIONS(5452), + [anon_sym_xor] = ACTIONS(5452), + [anon_sym_LT_LT] = ACTIONS(5452), + [anon_sym_GT_GT] = ACTIONS(5452), + [anon_sym_LT_LT_PIPE] = ACTIONS(5452), + [anon_sym_PLUS] = ACTIONS(5452), + [anon_sym_SLASH] = ACTIONS(5452), + [anon_sym_catch] = ACTIONS(5452), + [anon_sym_TILDE] = ACTIONS(5450), + [anon_sym_try] = ACTIONS(5452), + [anon_sym_DOT] = ACTIONS(5452), + [anon_sym_CARET] = ACTIONS(5450), + [anon_sym_true] = ACTIONS(5452), + [anon_sym_false] = ACTIONS(5452), + [anon_sym_null] = ACTIONS(5452), + [anon_sym_unreachable] = ACTIONS(5452), + [anon_sym_undefined] = ACTIONS(5452), + [sym_sink] = ACTIONS(5452), + [sym_integer] = ACTIONS(5452), + [sym_float] = ACTIONS(5450), + [anon_sym_DQUOTE] = ACTIONS(5450), + [sym_multiline_string] = ACTIONS(5450), + [sym_character] = ACTIONS(5450), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5450), + }, + [STATE(3781)] = { + [sym_identifier] = ACTIONS(5456), + [anon_sym_func] = ACTIONS(5456), + [anon_sym_BANG] = ACTIONS(5456), + [anon_sym_EQ] = ACTIONS(5456), + [anon_sym_struct] = ACTIONS(5456), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_LBRACE] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5456), + [anon_sym_DOLLAR] = ACTIONS(5454), + [anon_sym_PIPE] = ACTIONS(5456), + [anon_sym_QMARK] = ACTIONS(5454), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_void] = ACTIONS(5456), + [anon_sym_noreturn] = ACTIONS(5456), + [anon_sym_type] = ACTIONS(5456), + [anon_sym_anyopaque] = ACTIONS(5456), + [anon_sym_bool] = ACTIONS(5456), + [anon_sym_int] = ACTIONS(5456), + [anon_sym_uint] = ACTIONS(5456), + [anon_sym_float] = ACTIONS(5456), + [anon_sym_range] = ACTIONS(5456), + [anon_sym_i8] = ACTIONS(5456), + [anon_sym_i16] = ACTIONS(5456), + [anon_sym_i32] = ACTIONS(5456), + [anon_sym_i64] = ACTIONS(5456), + [anon_sym_u8] = ACTIONS(5456), + [anon_sym_u16] = ACTIONS(5456), + [anon_sym_u32] = ACTIONS(5456), + [anon_sym_u64] = ACTIONS(5456), + [anon_sym_isize] = ACTIONS(5456), + [anon_sym_usize] = ACTIONS(5456), + [anon_sym_f32] = ACTIONS(5456), + [anon_sym_f64] = ACTIONS(5456), + [anon_sym_c_char] = ACTIONS(5456), + [anon_sym_c_schar] = ACTIONS(5456), + [anon_sym_c_uchar] = ACTIONS(5456), + [anon_sym_c_short] = ACTIONS(5456), + [anon_sym_c_ushort] = ACTIONS(5456), + [anon_sym_c_int] = ACTIONS(5456), + [anon_sym_c_uint] = ACTIONS(5456), + [anon_sym_c_long] = ACTIONS(5456), + [anon_sym_c_ulong] = ACTIONS(5456), + [anon_sym_c_longlong] = ACTIONS(5456), + [anon_sym_c_ulonglong] = ACTIONS(5456), + [anon_sym_c_float] = ACTIONS(5456), + [anon_sym_c_double] = ACTIONS(5456), + [anon_sym_c_longdouble] = ACTIONS(5456), + [anon_sym_PLUS_EQ] = ACTIONS(5454), + [anon_sym_DASH_EQ] = ACTIONS(5454), + [anon_sym_STAR_EQ] = ACTIONS(5454), + [anon_sym_SLASH_EQ] = ACTIONS(5454), + [anon_sym_AMP_EQ] = ACTIONS(5454), + [anon_sym_PIPE_EQ] = ACTIONS(5456), + [anon_sym_xor_EQ] = ACTIONS(5454), + [anon_sym_LT_LT_EQ] = ACTIONS(5454), + [anon_sym_GT_GT_EQ] = ACTIONS(5454), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5454), + [anon_sym_return] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(5456), + [anon_sym_break] = ACTIONS(5456), + [anon_sym_continue] = ACTIONS(5456), + [anon_sym_defer] = ACTIONS(5456), + [anon_sym_errdefer] = ACTIONS(5456), + [anon_sym_if] = ACTIONS(5456), + [anon_sym_else] = ACTIONS(5456), + [anon_sym_while] = ACTIONS(5456), + [anon_sym_expand] = ACTIONS(5456), + [anon_sym_for] = ACTIONS(5456), + [anon_sym_PIPE2] = ACTIONS(5454), + [anon_sym_match] = ACTIONS(5456), + [anon_sym_DOT_DOT] = ACTIONS(5456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5454), + [anon_sym_orelse] = ACTIONS(5456), + [anon_sym_or] = ACTIONS(5456), + [anon_sym_and] = ACTIONS(5456), + [anon_sym_EQ_EQ] = ACTIONS(5454), + [anon_sym_BANG_EQ] = ACTIONS(5454), + [anon_sym_LT] = ACTIONS(5456), + [anon_sym_LT_EQ] = ACTIONS(5454), + [anon_sym_GT] = ACTIONS(5456), + [anon_sym_GT_EQ] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(5456), + [anon_sym_xor] = ACTIONS(5456), + [anon_sym_LT_LT] = ACTIONS(5456), + [anon_sym_GT_GT] = ACTIONS(5456), + [anon_sym_LT_LT_PIPE] = ACTIONS(5456), + [anon_sym_PLUS] = ACTIONS(5456), + [anon_sym_SLASH] = ACTIONS(5456), + [anon_sym_catch] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5454), + [anon_sym_try] = ACTIONS(5456), + [anon_sym_DOT] = ACTIONS(5456), + [anon_sym_CARET] = ACTIONS(5454), + [anon_sym_true] = ACTIONS(5456), + [anon_sym_false] = ACTIONS(5456), + [anon_sym_null] = ACTIONS(5456), + [anon_sym_unreachable] = ACTIONS(5456), + [anon_sym_undefined] = ACTIONS(5456), + [sym_sink] = ACTIONS(5456), + [sym_integer] = ACTIONS(5456), + [sym_float] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5454), + [sym_multiline_string] = ACTIONS(5454), + [sym_character] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5454), + }, + [STATE(3782)] = { + [sym_identifier] = ACTIONS(5460), + [anon_sym_func] = ACTIONS(5460), + [anon_sym_BANG] = ACTIONS(5460), + [anon_sym_EQ] = ACTIONS(5460), + [anon_sym_struct] = ACTIONS(5460), + [anon_sym_LPAREN] = ACTIONS(5458), + [anon_sym_LBRACE] = ACTIONS(5458), + [anon_sym_DASH] = ACTIONS(5460), + [anon_sym_DOLLAR] = ACTIONS(5458), + [anon_sym_PIPE] = ACTIONS(5460), + [anon_sym_QMARK] = ACTIONS(5458), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_void] = ACTIONS(5460), + [anon_sym_noreturn] = ACTIONS(5460), + [anon_sym_type] = ACTIONS(5460), + [anon_sym_anyopaque] = ACTIONS(5460), + [anon_sym_bool] = ACTIONS(5460), + [anon_sym_int] = ACTIONS(5460), + [anon_sym_uint] = ACTIONS(5460), + [anon_sym_float] = ACTIONS(5460), + [anon_sym_range] = ACTIONS(5460), + [anon_sym_i8] = ACTIONS(5460), + [anon_sym_i16] = ACTIONS(5460), + [anon_sym_i32] = ACTIONS(5460), + [anon_sym_i64] = ACTIONS(5460), + [anon_sym_u8] = ACTIONS(5460), + [anon_sym_u16] = ACTIONS(5460), + [anon_sym_u32] = ACTIONS(5460), + [anon_sym_u64] = ACTIONS(5460), + [anon_sym_isize] = ACTIONS(5460), + [anon_sym_usize] = ACTIONS(5460), + [anon_sym_f32] = ACTIONS(5460), + [anon_sym_f64] = ACTIONS(5460), + [anon_sym_c_char] = ACTIONS(5460), + [anon_sym_c_schar] = ACTIONS(5460), + [anon_sym_c_uchar] = ACTIONS(5460), + [anon_sym_c_short] = ACTIONS(5460), + [anon_sym_c_ushort] = ACTIONS(5460), + [anon_sym_c_int] = ACTIONS(5460), + [anon_sym_c_uint] = ACTIONS(5460), + [anon_sym_c_long] = ACTIONS(5460), + [anon_sym_c_ulong] = ACTIONS(5460), + [anon_sym_c_longlong] = ACTIONS(5460), + [anon_sym_c_ulonglong] = ACTIONS(5460), + [anon_sym_c_float] = ACTIONS(5460), + [anon_sym_c_double] = ACTIONS(5460), + [anon_sym_c_longdouble] = ACTIONS(5460), + [anon_sym_PLUS_EQ] = ACTIONS(5458), + [anon_sym_DASH_EQ] = ACTIONS(5458), + [anon_sym_STAR_EQ] = ACTIONS(5458), + [anon_sym_SLASH_EQ] = ACTIONS(5458), + [anon_sym_AMP_EQ] = ACTIONS(5458), + [anon_sym_PIPE_EQ] = ACTIONS(5460), + [anon_sym_xor_EQ] = ACTIONS(5458), + [anon_sym_LT_LT_EQ] = ACTIONS(5458), + [anon_sym_GT_GT_EQ] = ACTIONS(5458), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5458), + [anon_sym_return] = ACTIONS(5460), + [anon_sym_yield] = ACTIONS(5460), + [anon_sym_break] = ACTIONS(5460), + [anon_sym_continue] = ACTIONS(5460), + [anon_sym_defer] = ACTIONS(5460), + [anon_sym_errdefer] = ACTIONS(5460), + [anon_sym_if] = ACTIONS(5460), + [anon_sym_else] = ACTIONS(5460), + [anon_sym_while] = ACTIONS(5460), + [anon_sym_expand] = ACTIONS(5460), + [anon_sym_for] = ACTIONS(5460), + [anon_sym_PIPE2] = ACTIONS(5458), + [anon_sym_match] = ACTIONS(5460), + [anon_sym_DOT_DOT] = ACTIONS(5460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5458), + [anon_sym_orelse] = ACTIONS(5460), + [anon_sym_or] = ACTIONS(5460), + [anon_sym_and] = ACTIONS(5460), + [anon_sym_EQ_EQ] = ACTIONS(5458), + [anon_sym_BANG_EQ] = ACTIONS(5458), + [anon_sym_LT] = ACTIONS(5460), + [anon_sym_LT_EQ] = ACTIONS(5458), + [anon_sym_GT] = ACTIONS(5460), + [anon_sym_GT_EQ] = ACTIONS(5458), + [anon_sym_AMP] = ACTIONS(5460), + [anon_sym_xor] = ACTIONS(5460), + [anon_sym_LT_LT] = ACTIONS(5460), + [anon_sym_GT_GT] = ACTIONS(5460), + [anon_sym_LT_LT_PIPE] = ACTIONS(5460), + [anon_sym_PLUS] = ACTIONS(5460), + [anon_sym_SLASH] = ACTIONS(5460), + [anon_sym_catch] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5458), + [anon_sym_try] = ACTIONS(5460), + [anon_sym_DOT] = ACTIONS(5460), + [anon_sym_CARET] = ACTIONS(5458), + [anon_sym_true] = ACTIONS(5460), + [anon_sym_false] = ACTIONS(5460), + [anon_sym_null] = ACTIONS(5460), + [anon_sym_unreachable] = ACTIONS(5460), + [anon_sym_undefined] = ACTIONS(5460), + [sym_sink] = ACTIONS(5460), + [sym_integer] = ACTIONS(5460), + [sym_float] = ACTIONS(5458), + [anon_sym_DQUOTE] = ACTIONS(5458), + [sym_multiline_string] = ACTIONS(5458), + [sym_character] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5458), + }, + [STATE(3783)] = { + [sym_identifier] = ACTIONS(5464), + [anon_sym_func] = ACTIONS(5464), + [anon_sym_BANG] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(5464), + [anon_sym_struct] = ACTIONS(5464), + [anon_sym_LPAREN] = ACTIONS(5462), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_DASH] = ACTIONS(5464), + [anon_sym_DOLLAR] = ACTIONS(5462), + [anon_sym_PIPE] = ACTIONS(5464), + [anon_sym_QMARK] = ACTIONS(5462), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_void] = ACTIONS(5464), + [anon_sym_noreturn] = ACTIONS(5464), + [anon_sym_type] = ACTIONS(5464), + [anon_sym_anyopaque] = ACTIONS(5464), + [anon_sym_bool] = ACTIONS(5464), + [anon_sym_int] = ACTIONS(5464), + [anon_sym_uint] = ACTIONS(5464), + [anon_sym_float] = ACTIONS(5464), + [anon_sym_range] = ACTIONS(5464), + [anon_sym_i8] = ACTIONS(5464), + [anon_sym_i16] = ACTIONS(5464), + [anon_sym_i32] = ACTIONS(5464), + [anon_sym_i64] = ACTIONS(5464), + [anon_sym_u8] = ACTIONS(5464), + [anon_sym_u16] = ACTIONS(5464), + [anon_sym_u32] = ACTIONS(5464), + [anon_sym_u64] = ACTIONS(5464), + [anon_sym_isize] = ACTIONS(5464), + [anon_sym_usize] = ACTIONS(5464), + [anon_sym_f32] = ACTIONS(5464), + [anon_sym_f64] = ACTIONS(5464), + [anon_sym_c_char] = ACTIONS(5464), + [anon_sym_c_schar] = ACTIONS(5464), + [anon_sym_c_uchar] = ACTIONS(5464), + [anon_sym_c_short] = ACTIONS(5464), + [anon_sym_c_ushort] = ACTIONS(5464), + [anon_sym_c_int] = ACTIONS(5464), + [anon_sym_c_uint] = ACTIONS(5464), + [anon_sym_c_long] = ACTIONS(5464), + [anon_sym_c_ulong] = ACTIONS(5464), + [anon_sym_c_longlong] = ACTIONS(5464), + [anon_sym_c_ulonglong] = ACTIONS(5464), + [anon_sym_c_float] = ACTIONS(5464), + [anon_sym_c_double] = ACTIONS(5464), + [anon_sym_c_longdouble] = ACTIONS(5464), + [anon_sym_PLUS_EQ] = ACTIONS(5462), + [anon_sym_DASH_EQ] = ACTIONS(5462), + [anon_sym_STAR_EQ] = ACTIONS(5462), + [anon_sym_SLASH_EQ] = ACTIONS(5462), + [anon_sym_AMP_EQ] = ACTIONS(5462), + [anon_sym_PIPE_EQ] = ACTIONS(5464), + [anon_sym_xor_EQ] = ACTIONS(5462), + [anon_sym_LT_LT_EQ] = ACTIONS(5462), + [anon_sym_GT_GT_EQ] = ACTIONS(5462), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5462), + [anon_sym_return] = ACTIONS(5464), + [anon_sym_yield] = ACTIONS(5464), + [anon_sym_break] = ACTIONS(5464), + [anon_sym_continue] = ACTIONS(5464), + [anon_sym_defer] = ACTIONS(5464), + [anon_sym_errdefer] = ACTIONS(5464), + [anon_sym_if] = ACTIONS(5464), + [anon_sym_else] = ACTIONS(5464), + [anon_sym_while] = ACTIONS(5464), + [anon_sym_expand] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(5464), + [anon_sym_PIPE2] = ACTIONS(5462), + [anon_sym_match] = ACTIONS(5464), + [anon_sym_DOT_DOT] = ACTIONS(5464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5462), + [anon_sym_orelse] = ACTIONS(5464), + [anon_sym_or] = ACTIONS(5464), + [anon_sym_and] = ACTIONS(5464), + [anon_sym_EQ_EQ] = ACTIONS(5462), + [anon_sym_BANG_EQ] = ACTIONS(5462), + [anon_sym_LT] = ACTIONS(5464), + [anon_sym_LT_EQ] = ACTIONS(5462), + [anon_sym_GT] = ACTIONS(5464), + [anon_sym_GT_EQ] = ACTIONS(5462), + [anon_sym_AMP] = ACTIONS(5464), + [anon_sym_xor] = ACTIONS(5464), + [anon_sym_LT_LT] = ACTIONS(5464), + [anon_sym_GT_GT] = ACTIONS(5464), + [anon_sym_LT_LT_PIPE] = ACTIONS(5464), + [anon_sym_PLUS] = ACTIONS(5464), + [anon_sym_SLASH] = ACTIONS(5464), + [anon_sym_catch] = ACTIONS(5464), + [anon_sym_TILDE] = ACTIONS(5462), + [anon_sym_try] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5464), + [anon_sym_CARET] = ACTIONS(5462), + [anon_sym_true] = ACTIONS(5464), + [anon_sym_false] = ACTIONS(5464), + [anon_sym_null] = ACTIONS(5464), + [anon_sym_unreachable] = ACTIONS(5464), + [anon_sym_undefined] = ACTIONS(5464), + [sym_sink] = ACTIONS(5464), + [sym_integer] = ACTIONS(5464), + [sym_float] = ACTIONS(5462), + [anon_sym_DQUOTE] = ACTIONS(5462), + [sym_multiline_string] = ACTIONS(5462), + [sym_character] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5462), + }, + [STATE(3784)] = { + [sym_identifier] = ACTIONS(5468), + [anon_sym_func] = ACTIONS(5468), + [anon_sym_BANG] = ACTIONS(5468), + [anon_sym_EQ] = ACTIONS(5468), + [anon_sym_struct] = ACTIONS(5468), + [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5466), + [anon_sym_DASH] = ACTIONS(5468), + [anon_sym_DOLLAR] = ACTIONS(5466), + [anon_sym_PIPE] = ACTIONS(5468), + [anon_sym_QMARK] = ACTIONS(5466), + [anon_sym_STAR] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_void] = ACTIONS(5468), + [anon_sym_noreturn] = ACTIONS(5468), + [anon_sym_type] = ACTIONS(5468), + [anon_sym_anyopaque] = ACTIONS(5468), + [anon_sym_bool] = ACTIONS(5468), + [anon_sym_int] = ACTIONS(5468), + [anon_sym_uint] = ACTIONS(5468), + [anon_sym_float] = ACTIONS(5468), + [anon_sym_range] = ACTIONS(5468), + [anon_sym_i8] = ACTIONS(5468), + [anon_sym_i16] = ACTIONS(5468), + [anon_sym_i32] = ACTIONS(5468), + [anon_sym_i64] = ACTIONS(5468), + [anon_sym_u8] = ACTIONS(5468), + [anon_sym_u16] = ACTIONS(5468), + [anon_sym_u32] = ACTIONS(5468), + [anon_sym_u64] = ACTIONS(5468), + [anon_sym_isize] = ACTIONS(5468), + [anon_sym_usize] = ACTIONS(5468), + [anon_sym_f32] = ACTIONS(5468), + [anon_sym_f64] = ACTIONS(5468), + [anon_sym_c_char] = ACTIONS(5468), + [anon_sym_c_schar] = ACTIONS(5468), + [anon_sym_c_uchar] = ACTIONS(5468), + [anon_sym_c_short] = ACTIONS(5468), + [anon_sym_c_ushort] = ACTIONS(5468), + [anon_sym_c_int] = ACTIONS(5468), + [anon_sym_c_uint] = ACTIONS(5468), + [anon_sym_c_long] = ACTIONS(5468), + [anon_sym_c_ulong] = ACTIONS(5468), + [anon_sym_c_longlong] = ACTIONS(5468), + [anon_sym_c_ulonglong] = ACTIONS(5468), + [anon_sym_c_float] = ACTIONS(5468), + [anon_sym_c_double] = ACTIONS(5468), + [anon_sym_c_longdouble] = ACTIONS(5468), + [anon_sym_PLUS_EQ] = ACTIONS(5466), + [anon_sym_DASH_EQ] = ACTIONS(5466), + [anon_sym_STAR_EQ] = ACTIONS(5466), + [anon_sym_SLASH_EQ] = ACTIONS(5466), + [anon_sym_AMP_EQ] = ACTIONS(5466), + [anon_sym_PIPE_EQ] = ACTIONS(5468), + [anon_sym_xor_EQ] = ACTIONS(5466), + [anon_sym_LT_LT_EQ] = ACTIONS(5466), + [anon_sym_GT_GT_EQ] = ACTIONS(5466), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5466), + [anon_sym_return] = ACTIONS(5468), + [anon_sym_yield] = ACTIONS(5468), + [anon_sym_break] = ACTIONS(5468), + [anon_sym_continue] = ACTIONS(5468), + [anon_sym_defer] = ACTIONS(5468), + [anon_sym_errdefer] = ACTIONS(5468), + [anon_sym_if] = ACTIONS(5468), + [anon_sym_else] = ACTIONS(5468), + [anon_sym_while] = ACTIONS(5468), + [anon_sym_expand] = ACTIONS(5468), + [anon_sym_for] = ACTIONS(5468), + [anon_sym_PIPE2] = ACTIONS(5466), + [anon_sym_match] = ACTIONS(5468), + [anon_sym_DOT_DOT] = ACTIONS(5468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5466), + [anon_sym_orelse] = ACTIONS(5468), + [anon_sym_or] = ACTIONS(5468), + [anon_sym_and] = ACTIONS(5468), + [anon_sym_EQ_EQ] = ACTIONS(5466), + [anon_sym_BANG_EQ] = ACTIONS(5466), + [anon_sym_LT] = ACTIONS(5468), + [anon_sym_LT_EQ] = ACTIONS(5466), + [anon_sym_GT] = ACTIONS(5468), + [anon_sym_GT_EQ] = ACTIONS(5466), + [anon_sym_AMP] = ACTIONS(5468), + [anon_sym_xor] = ACTIONS(5468), + [anon_sym_LT_LT] = ACTIONS(5468), + [anon_sym_GT_GT] = ACTIONS(5468), + [anon_sym_LT_LT_PIPE] = ACTIONS(5468), + [anon_sym_PLUS] = ACTIONS(5468), + [anon_sym_SLASH] = ACTIONS(5468), + [anon_sym_catch] = ACTIONS(5468), + [anon_sym_TILDE] = ACTIONS(5466), + [anon_sym_try] = ACTIONS(5468), + [anon_sym_DOT] = ACTIONS(5468), + [anon_sym_CARET] = ACTIONS(5466), + [anon_sym_true] = ACTIONS(5468), + [anon_sym_false] = ACTIONS(5468), + [anon_sym_null] = ACTIONS(5468), + [anon_sym_unreachable] = ACTIONS(5468), + [anon_sym_undefined] = ACTIONS(5468), + [sym_sink] = ACTIONS(5468), + [sym_integer] = ACTIONS(5468), + [sym_float] = ACTIONS(5466), + [anon_sym_DQUOTE] = ACTIONS(5466), + [sym_multiline_string] = ACTIONS(5466), + [sym_character] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5466), + }, + [STATE(3785)] = { + [sym_identifier] = ACTIONS(5472), + [anon_sym_func] = ACTIONS(5472), + [anon_sym_BANG] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5472), + [anon_sym_struct] = ACTIONS(5472), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_DASH] = ACTIONS(5472), + [anon_sym_DOLLAR] = ACTIONS(5470), + [anon_sym_PIPE] = ACTIONS(5472), + [anon_sym_QMARK] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_void] = ACTIONS(5472), + [anon_sym_noreturn] = ACTIONS(5472), + [anon_sym_type] = ACTIONS(5472), + [anon_sym_anyopaque] = ACTIONS(5472), + [anon_sym_bool] = ACTIONS(5472), + [anon_sym_int] = ACTIONS(5472), + [anon_sym_uint] = ACTIONS(5472), + [anon_sym_float] = ACTIONS(5472), + [anon_sym_range] = ACTIONS(5472), + [anon_sym_i8] = ACTIONS(5472), + [anon_sym_i16] = ACTIONS(5472), + [anon_sym_i32] = ACTIONS(5472), + [anon_sym_i64] = ACTIONS(5472), + [anon_sym_u8] = ACTIONS(5472), + [anon_sym_u16] = ACTIONS(5472), + [anon_sym_u32] = ACTIONS(5472), + [anon_sym_u64] = ACTIONS(5472), + [anon_sym_isize] = ACTIONS(5472), + [anon_sym_usize] = ACTIONS(5472), + [anon_sym_f32] = ACTIONS(5472), + [anon_sym_f64] = ACTIONS(5472), + [anon_sym_c_char] = ACTIONS(5472), + [anon_sym_c_schar] = ACTIONS(5472), + [anon_sym_c_uchar] = ACTIONS(5472), + [anon_sym_c_short] = ACTIONS(5472), + [anon_sym_c_ushort] = ACTIONS(5472), + [anon_sym_c_int] = ACTIONS(5472), + [anon_sym_c_uint] = ACTIONS(5472), + [anon_sym_c_long] = ACTIONS(5472), + [anon_sym_c_ulong] = ACTIONS(5472), + [anon_sym_c_longlong] = ACTIONS(5472), + [anon_sym_c_ulonglong] = ACTIONS(5472), + [anon_sym_c_float] = ACTIONS(5472), + [anon_sym_c_double] = ACTIONS(5472), + [anon_sym_c_longdouble] = ACTIONS(5472), + [anon_sym_PLUS_EQ] = ACTIONS(5470), + [anon_sym_DASH_EQ] = ACTIONS(5470), + [anon_sym_STAR_EQ] = ACTIONS(5470), + [anon_sym_SLASH_EQ] = ACTIONS(5470), + [anon_sym_AMP_EQ] = ACTIONS(5470), + [anon_sym_PIPE_EQ] = ACTIONS(5472), + [anon_sym_xor_EQ] = ACTIONS(5470), + [anon_sym_LT_LT_EQ] = ACTIONS(5470), + [anon_sym_GT_GT_EQ] = ACTIONS(5470), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5470), + [anon_sym_return] = ACTIONS(5472), + [anon_sym_yield] = ACTIONS(5472), + [anon_sym_break] = ACTIONS(5472), + [anon_sym_continue] = ACTIONS(5472), + [anon_sym_defer] = ACTIONS(5472), + [anon_sym_errdefer] = ACTIONS(5472), + [anon_sym_if] = ACTIONS(5472), + [anon_sym_else] = ACTIONS(5472), + [anon_sym_while] = ACTIONS(5472), + [anon_sym_expand] = ACTIONS(5472), + [anon_sym_for] = ACTIONS(5472), + [anon_sym_PIPE2] = ACTIONS(5470), + [anon_sym_match] = ACTIONS(5472), + [anon_sym_DOT_DOT] = ACTIONS(5472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5470), + [anon_sym_orelse] = ACTIONS(5472), + [anon_sym_or] = ACTIONS(5472), + [anon_sym_and] = ACTIONS(5472), + [anon_sym_EQ_EQ] = ACTIONS(5470), + [anon_sym_BANG_EQ] = ACTIONS(5470), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_LT_EQ] = ACTIONS(5470), + [anon_sym_GT] = ACTIONS(5472), + [anon_sym_GT_EQ] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(5472), + [anon_sym_xor] = ACTIONS(5472), + [anon_sym_LT_LT] = ACTIONS(5472), + [anon_sym_GT_GT] = ACTIONS(5472), + [anon_sym_LT_LT_PIPE] = ACTIONS(5472), + [anon_sym_PLUS] = ACTIONS(5472), + [anon_sym_SLASH] = ACTIONS(5472), + [anon_sym_catch] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5470), + [anon_sym_try] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5472), + [anon_sym_CARET] = ACTIONS(5470), + [anon_sym_true] = ACTIONS(5472), + [anon_sym_false] = ACTIONS(5472), + [anon_sym_null] = ACTIONS(5472), + [anon_sym_unreachable] = ACTIONS(5472), + [anon_sym_undefined] = ACTIONS(5472), + [sym_sink] = ACTIONS(5472), + [sym_integer] = ACTIONS(5472), + [sym_float] = ACTIONS(5470), + [anon_sym_DQUOTE] = ACTIONS(5470), + [sym_multiline_string] = ACTIONS(5470), + [sym_character] = ACTIONS(5470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5470), + }, + [STATE(3786)] = { + [sym_identifier] = ACTIONS(5476), + [anon_sym_func] = ACTIONS(5476), + [anon_sym_BANG] = ACTIONS(5476), + [anon_sym_EQ] = ACTIONS(5476), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_LPAREN] = ACTIONS(5474), + [anon_sym_LBRACE] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5476), + [anon_sym_DOLLAR] = ACTIONS(5474), + [anon_sym_PIPE] = ACTIONS(5476), + [anon_sym_QMARK] = ACTIONS(5474), + [anon_sym_STAR] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(5474), + [anon_sym_void] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym_type] = ACTIONS(5476), + [anon_sym_anyopaque] = ACTIONS(5476), + [anon_sym_bool] = ACTIONS(5476), + [anon_sym_int] = ACTIONS(5476), + [anon_sym_uint] = ACTIONS(5476), + [anon_sym_float] = ACTIONS(5476), + [anon_sym_range] = ACTIONS(5476), + [anon_sym_i8] = ACTIONS(5476), + [anon_sym_i16] = ACTIONS(5476), + [anon_sym_i32] = ACTIONS(5476), + [anon_sym_i64] = ACTIONS(5476), + [anon_sym_u8] = ACTIONS(5476), + [anon_sym_u16] = ACTIONS(5476), + [anon_sym_u32] = ACTIONS(5476), + [anon_sym_u64] = ACTIONS(5476), + [anon_sym_isize] = ACTIONS(5476), + [anon_sym_usize] = ACTIONS(5476), + [anon_sym_f32] = ACTIONS(5476), + [anon_sym_f64] = ACTIONS(5476), + [anon_sym_c_char] = ACTIONS(5476), + [anon_sym_c_schar] = ACTIONS(5476), + [anon_sym_c_uchar] = ACTIONS(5476), + [anon_sym_c_short] = ACTIONS(5476), + [anon_sym_c_ushort] = ACTIONS(5476), + [anon_sym_c_int] = ACTIONS(5476), + [anon_sym_c_uint] = ACTIONS(5476), + [anon_sym_c_long] = ACTIONS(5476), + [anon_sym_c_ulong] = ACTIONS(5476), + [anon_sym_c_longlong] = ACTIONS(5476), + [anon_sym_c_ulonglong] = ACTIONS(5476), + [anon_sym_c_float] = ACTIONS(5476), + [anon_sym_c_double] = ACTIONS(5476), + [anon_sym_c_longdouble] = ACTIONS(5476), + [anon_sym_PLUS_EQ] = ACTIONS(5474), + [anon_sym_DASH_EQ] = ACTIONS(5474), + [anon_sym_STAR_EQ] = ACTIONS(5474), + [anon_sym_SLASH_EQ] = ACTIONS(5474), + [anon_sym_AMP_EQ] = ACTIONS(5474), + [anon_sym_PIPE_EQ] = ACTIONS(5476), + [anon_sym_xor_EQ] = ACTIONS(5474), + [anon_sym_LT_LT_EQ] = ACTIONS(5474), + [anon_sym_GT_GT_EQ] = ACTIONS(5474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5474), + [anon_sym_return] = ACTIONS(5476), + [anon_sym_yield] = ACTIONS(5476), + [anon_sym_break] = ACTIONS(5476), + [anon_sym_continue] = ACTIONS(5476), + [anon_sym_defer] = ACTIONS(5476), + [anon_sym_errdefer] = ACTIONS(5476), + [anon_sym_if] = ACTIONS(5476), + [anon_sym_else] = ACTIONS(5476), + [anon_sym_while] = ACTIONS(5476), + [anon_sym_expand] = ACTIONS(5476), + [anon_sym_for] = ACTIONS(5476), + [anon_sym_PIPE2] = ACTIONS(5474), + [anon_sym_match] = ACTIONS(5476), + [anon_sym_DOT_DOT] = ACTIONS(5476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5474), + [anon_sym_orelse] = ACTIONS(5476), + [anon_sym_or] = ACTIONS(5476), + [anon_sym_and] = ACTIONS(5476), + [anon_sym_EQ_EQ] = ACTIONS(5474), + [anon_sym_BANG_EQ] = ACTIONS(5474), + [anon_sym_LT] = ACTIONS(5476), + [anon_sym_LT_EQ] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_xor] = ACTIONS(5476), + [anon_sym_LT_LT] = ACTIONS(5476), + [anon_sym_GT_GT] = ACTIONS(5476), + [anon_sym_LT_LT_PIPE] = ACTIONS(5476), + [anon_sym_PLUS] = ACTIONS(5476), + [anon_sym_SLASH] = ACTIONS(5476), + [anon_sym_catch] = ACTIONS(5476), + [anon_sym_TILDE] = ACTIONS(5474), + [anon_sym_try] = ACTIONS(5476), + [anon_sym_DOT] = ACTIONS(5476), + [anon_sym_CARET] = ACTIONS(5474), + [anon_sym_true] = ACTIONS(5476), + [anon_sym_false] = ACTIONS(5476), + [anon_sym_null] = ACTIONS(5476), + [anon_sym_unreachable] = ACTIONS(5476), + [anon_sym_undefined] = ACTIONS(5476), + [sym_sink] = ACTIONS(5476), + [sym_integer] = ACTIONS(5476), + [sym_float] = ACTIONS(5474), + [anon_sym_DQUOTE] = ACTIONS(5474), + [sym_multiline_string] = ACTIONS(5474), + [sym_character] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5474), + }, + [STATE(3787)] = { + [sym_identifier] = ACTIONS(5480), + [anon_sym_func] = ACTIONS(5480), + [anon_sym_BANG] = ACTIONS(5480), + [anon_sym_EQ] = ACTIONS(5480), + [anon_sym_struct] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5478), + [anon_sym_LBRACE] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_DOLLAR] = ACTIONS(5478), + [anon_sym_PIPE] = ACTIONS(5480), + [anon_sym_QMARK] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(5478), + [anon_sym_void] = ACTIONS(5480), + [anon_sym_noreturn] = ACTIONS(5480), + [anon_sym_type] = ACTIONS(5480), + [anon_sym_anyopaque] = ACTIONS(5480), + [anon_sym_bool] = ACTIONS(5480), + [anon_sym_int] = ACTIONS(5480), + [anon_sym_uint] = ACTIONS(5480), + [anon_sym_float] = ACTIONS(5480), + [anon_sym_range] = ACTIONS(5480), + [anon_sym_i8] = ACTIONS(5480), + [anon_sym_i16] = ACTIONS(5480), + [anon_sym_i32] = ACTIONS(5480), + [anon_sym_i64] = ACTIONS(5480), + [anon_sym_u8] = ACTIONS(5480), + [anon_sym_u16] = ACTIONS(5480), + [anon_sym_u32] = ACTIONS(5480), + [anon_sym_u64] = ACTIONS(5480), + [anon_sym_isize] = ACTIONS(5480), + [anon_sym_usize] = ACTIONS(5480), + [anon_sym_f32] = ACTIONS(5480), + [anon_sym_f64] = ACTIONS(5480), + [anon_sym_c_char] = ACTIONS(5480), + [anon_sym_c_schar] = ACTIONS(5480), + [anon_sym_c_uchar] = ACTIONS(5480), + [anon_sym_c_short] = ACTIONS(5480), + [anon_sym_c_ushort] = ACTIONS(5480), + [anon_sym_c_int] = ACTIONS(5480), + [anon_sym_c_uint] = ACTIONS(5480), + [anon_sym_c_long] = ACTIONS(5480), + [anon_sym_c_ulong] = ACTIONS(5480), + [anon_sym_c_longlong] = ACTIONS(5480), + [anon_sym_c_ulonglong] = ACTIONS(5480), + [anon_sym_c_float] = ACTIONS(5480), + [anon_sym_c_double] = ACTIONS(5480), + [anon_sym_c_longdouble] = ACTIONS(5480), + [anon_sym_PLUS_EQ] = ACTIONS(5478), + [anon_sym_DASH_EQ] = ACTIONS(5478), + [anon_sym_STAR_EQ] = ACTIONS(5478), + [anon_sym_SLASH_EQ] = ACTIONS(5478), + [anon_sym_AMP_EQ] = ACTIONS(5478), + [anon_sym_PIPE_EQ] = ACTIONS(5480), + [anon_sym_xor_EQ] = ACTIONS(5478), + [anon_sym_LT_LT_EQ] = ACTIONS(5478), + [anon_sym_GT_GT_EQ] = ACTIONS(5478), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5478), + [anon_sym_return] = ACTIONS(5480), + [anon_sym_yield] = ACTIONS(5480), + [anon_sym_break] = ACTIONS(5480), + [anon_sym_continue] = ACTIONS(5480), + [anon_sym_defer] = ACTIONS(5480), + [anon_sym_errdefer] = ACTIONS(5480), + [anon_sym_if] = ACTIONS(5480), + [anon_sym_else] = ACTIONS(5480), + [anon_sym_while] = ACTIONS(5480), + [anon_sym_expand] = ACTIONS(5480), + [anon_sym_for] = ACTIONS(5480), + [anon_sym_PIPE2] = ACTIONS(5478), + [anon_sym_match] = ACTIONS(5480), + [anon_sym_DOT_DOT] = ACTIONS(5480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5478), + [anon_sym_orelse] = ACTIONS(5480), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_BANG_EQ] = ACTIONS(5478), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_xor] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5480), + [anon_sym_LT_LT_PIPE] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_SLASH] = ACTIONS(5480), + [anon_sym_catch] = ACTIONS(5480), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_try] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5478), + [anon_sym_true] = ACTIONS(5480), + [anon_sym_false] = ACTIONS(5480), + [anon_sym_null] = ACTIONS(5480), + [anon_sym_unreachable] = ACTIONS(5480), + [anon_sym_undefined] = ACTIONS(5480), + [sym_sink] = ACTIONS(5480), + [sym_integer] = ACTIONS(5480), + [sym_float] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(5478), + [sym_multiline_string] = ACTIONS(5478), + [sym_character] = ACTIONS(5478), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5478), + }, + [STATE(3788)] = { + [sym_identifier] = ACTIONS(5484), + [anon_sym_func] = ACTIONS(5484), + [anon_sym_BANG] = ACTIONS(5484), + [anon_sym_EQ] = ACTIONS(5484), + [anon_sym_struct] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5484), + [anon_sym_DOLLAR] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5484), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_void] = ACTIONS(5484), + [anon_sym_noreturn] = ACTIONS(5484), + [anon_sym_type] = ACTIONS(5484), + [anon_sym_anyopaque] = ACTIONS(5484), + [anon_sym_bool] = ACTIONS(5484), + [anon_sym_int] = ACTIONS(5484), + [anon_sym_uint] = ACTIONS(5484), + [anon_sym_float] = ACTIONS(5484), + [anon_sym_range] = ACTIONS(5484), + [anon_sym_i8] = ACTIONS(5484), + [anon_sym_i16] = ACTIONS(5484), + [anon_sym_i32] = ACTIONS(5484), + [anon_sym_i64] = ACTIONS(5484), + [anon_sym_u8] = ACTIONS(5484), + [anon_sym_u16] = ACTIONS(5484), + [anon_sym_u32] = ACTIONS(5484), + [anon_sym_u64] = ACTIONS(5484), + [anon_sym_isize] = ACTIONS(5484), + [anon_sym_usize] = ACTIONS(5484), + [anon_sym_f32] = ACTIONS(5484), + [anon_sym_f64] = ACTIONS(5484), + [anon_sym_c_char] = ACTIONS(5484), + [anon_sym_c_schar] = ACTIONS(5484), + [anon_sym_c_uchar] = ACTIONS(5484), + [anon_sym_c_short] = ACTIONS(5484), + [anon_sym_c_ushort] = ACTIONS(5484), + [anon_sym_c_int] = ACTIONS(5484), + [anon_sym_c_uint] = ACTIONS(5484), + [anon_sym_c_long] = ACTIONS(5484), + [anon_sym_c_ulong] = ACTIONS(5484), + [anon_sym_c_longlong] = ACTIONS(5484), + [anon_sym_c_ulonglong] = ACTIONS(5484), + [anon_sym_c_float] = ACTIONS(5484), + [anon_sym_c_double] = ACTIONS(5484), + [anon_sym_c_longdouble] = ACTIONS(5484), + [anon_sym_PLUS_EQ] = ACTIONS(5482), + [anon_sym_DASH_EQ] = ACTIONS(5482), + [anon_sym_STAR_EQ] = ACTIONS(5482), + [anon_sym_SLASH_EQ] = ACTIONS(5482), + [anon_sym_AMP_EQ] = ACTIONS(5482), + [anon_sym_PIPE_EQ] = ACTIONS(5484), + [anon_sym_xor_EQ] = ACTIONS(5482), + [anon_sym_LT_LT_EQ] = ACTIONS(5482), + [anon_sym_GT_GT_EQ] = ACTIONS(5482), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5482), + [anon_sym_return] = ACTIONS(5484), + [anon_sym_yield] = ACTIONS(5484), + [anon_sym_break] = ACTIONS(5484), + [anon_sym_continue] = ACTIONS(5484), + [anon_sym_defer] = ACTIONS(5484), + [anon_sym_errdefer] = ACTIONS(5484), + [anon_sym_if] = ACTIONS(5484), + [anon_sym_else] = ACTIONS(5484), + [anon_sym_while] = ACTIONS(5484), + [anon_sym_expand] = ACTIONS(5484), + [anon_sym_for] = ACTIONS(5484), + [anon_sym_PIPE2] = ACTIONS(5482), + [anon_sym_match] = ACTIONS(5484), + [anon_sym_DOT_DOT] = ACTIONS(5484), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5482), + [anon_sym_orelse] = ACTIONS(5484), + [anon_sym_or] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_LT] = ACTIONS(5484), + [anon_sym_LT_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_xor] = ACTIONS(5484), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5484), + [anon_sym_LT_LT_PIPE] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5484), + [anon_sym_SLASH] = ACTIONS(5484), + [anon_sym_catch] = ACTIONS(5484), + [anon_sym_TILDE] = ACTIONS(5482), + [anon_sym_try] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5482), + [anon_sym_true] = ACTIONS(5484), + [anon_sym_false] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), + [anon_sym_unreachable] = ACTIONS(5484), + [anon_sym_undefined] = ACTIONS(5484), + [sym_sink] = ACTIONS(5484), + [sym_integer] = ACTIONS(5484), + [sym_float] = ACTIONS(5482), + [anon_sym_DQUOTE] = ACTIONS(5482), + [sym_multiline_string] = ACTIONS(5482), + [sym_character] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5482), + }, + [STATE(3789)] = { + [sym_identifier] = ACTIONS(5488), + [anon_sym_func] = ACTIONS(5488), + [anon_sym_BANG] = ACTIONS(5488), + [anon_sym_EQ] = ACTIONS(5488), + [anon_sym_struct] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5486), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5488), + [anon_sym_DOLLAR] = ACTIONS(5486), + [anon_sym_PIPE] = ACTIONS(5488), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5486), + [anon_sym_void] = ACTIONS(5488), + [anon_sym_noreturn] = ACTIONS(5488), + [anon_sym_type] = ACTIONS(5488), + [anon_sym_anyopaque] = ACTIONS(5488), + [anon_sym_bool] = ACTIONS(5488), + [anon_sym_int] = ACTIONS(5488), + [anon_sym_uint] = ACTIONS(5488), + [anon_sym_float] = ACTIONS(5488), + [anon_sym_range] = ACTIONS(5488), + [anon_sym_i8] = ACTIONS(5488), + [anon_sym_i16] = ACTIONS(5488), + [anon_sym_i32] = ACTIONS(5488), + [anon_sym_i64] = ACTIONS(5488), + [anon_sym_u8] = ACTIONS(5488), + [anon_sym_u16] = ACTIONS(5488), + [anon_sym_u32] = ACTIONS(5488), + [anon_sym_u64] = ACTIONS(5488), + [anon_sym_isize] = ACTIONS(5488), + [anon_sym_usize] = ACTIONS(5488), + [anon_sym_f32] = ACTIONS(5488), + [anon_sym_f64] = ACTIONS(5488), + [anon_sym_c_char] = ACTIONS(5488), + [anon_sym_c_schar] = ACTIONS(5488), + [anon_sym_c_uchar] = ACTIONS(5488), + [anon_sym_c_short] = ACTIONS(5488), + [anon_sym_c_ushort] = ACTIONS(5488), + [anon_sym_c_int] = ACTIONS(5488), + [anon_sym_c_uint] = ACTIONS(5488), + [anon_sym_c_long] = ACTIONS(5488), + [anon_sym_c_ulong] = ACTIONS(5488), + [anon_sym_c_longlong] = ACTIONS(5488), + [anon_sym_c_ulonglong] = ACTIONS(5488), + [anon_sym_c_float] = ACTIONS(5488), + [anon_sym_c_double] = ACTIONS(5488), + [anon_sym_c_longdouble] = ACTIONS(5488), + [anon_sym_PLUS_EQ] = ACTIONS(5486), + [anon_sym_DASH_EQ] = ACTIONS(5486), + [anon_sym_STAR_EQ] = ACTIONS(5486), + [anon_sym_SLASH_EQ] = ACTIONS(5486), + [anon_sym_AMP_EQ] = ACTIONS(5486), + [anon_sym_PIPE_EQ] = ACTIONS(5488), + [anon_sym_xor_EQ] = ACTIONS(5486), + [anon_sym_LT_LT_EQ] = ACTIONS(5486), + [anon_sym_GT_GT_EQ] = ACTIONS(5486), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5486), + [anon_sym_return] = ACTIONS(5488), + [anon_sym_yield] = ACTIONS(5488), + [anon_sym_break] = ACTIONS(5488), + [anon_sym_continue] = ACTIONS(5488), + [anon_sym_defer] = ACTIONS(5488), + [anon_sym_errdefer] = ACTIONS(5488), + [anon_sym_if] = ACTIONS(5488), + [anon_sym_else] = ACTIONS(5488), + [anon_sym_while] = ACTIONS(5488), + [anon_sym_expand] = ACTIONS(5488), + [anon_sym_for] = ACTIONS(5488), + [anon_sym_PIPE2] = ACTIONS(5486), + [anon_sym_match] = ACTIONS(5488), + [anon_sym_DOT_DOT] = ACTIONS(5488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5486), + [anon_sym_orelse] = ACTIONS(5488), + [anon_sym_or] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5486), + [anon_sym_BANG_EQ] = ACTIONS(5486), + [anon_sym_LT] = ACTIONS(5488), + [anon_sym_LT_EQ] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_xor] = ACTIONS(5488), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5488), + [anon_sym_LT_LT_PIPE] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5488), + [anon_sym_SLASH] = ACTIONS(5488), + [anon_sym_catch] = ACTIONS(5488), + [anon_sym_TILDE] = ACTIONS(5486), + [anon_sym_try] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5486), + [anon_sym_true] = ACTIONS(5488), + [anon_sym_false] = ACTIONS(5488), + [anon_sym_null] = ACTIONS(5488), + [anon_sym_unreachable] = ACTIONS(5488), + [anon_sym_undefined] = ACTIONS(5488), + [sym_sink] = ACTIONS(5488), + [sym_integer] = ACTIONS(5488), + [sym_float] = ACTIONS(5486), + [anon_sym_DQUOTE] = ACTIONS(5486), + [sym_multiline_string] = ACTIONS(5486), + [sym_character] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5486), + }, + [STATE(3790)] = { + [sym_identifier] = ACTIONS(5492), + [anon_sym_func] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(5492), + [anon_sym_EQ] = ACTIONS(5492), + [anon_sym_struct] = ACTIONS(5492), + [anon_sym_LPAREN] = ACTIONS(5490), + [anon_sym_LBRACE] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5492), + [anon_sym_DOLLAR] = ACTIONS(5490), + [anon_sym_PIPE] = ACTIONS(5492), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(5490), + [anon_sym_void] = ACTIONS(5492), + [anon_sym_noreturn] = ACTIONS(5492), + [anon_sym_type] = ACTIONS(5492), + [anon_sym_anyopaque] = ACTIONS(5492), + [anon_sym_bool] = ACTIONS(5492), + [anon_sym_int] = ACTIONS(5492), + [anon_sym_uint] = ACTIONS(5492), + [anon_sym_float] = ACTIONS(5492), + [anon_sym_range] = ACTIONS(5492), + [anon_sym_i8] = ACTIONS(5492), + [anon_sym_i16] = ACTIONS(5492), + [anon_sym_i32] = ACTIONS(5492), + [anon_sym_i64] = ACTIONS(5492), + [anon_sym_u8] = ACTIONS(5492), + [anon_sym_u16] = ACTIONS(5492), + [anon_sym_u32] = ACTIONS(5492), + [anon_sym_u64] = ACTIONS(5492), + [anon_sym_isize] = ACTIONS(5492), + [anon_sym_usize] = ACTIONS(5492), + [anon_sym_f32] = ACTIONS(5492), + [anon_sym_f64] = ACTIONS(5492), + [anon_sym_c_char] = ACTIONS(5492), + [anon_sym_c_schar] = ACTIONS(5492), + [anon_sym_c_uchar] = ACTIONS(5492), + [anon_sym_c_short] = ACTIONS(5492), + [anon_sym_c_ushort] = ACTIONS(5492), + [anon_sym_c_int] = ACTIONS(5492), + [anon_sym_c_uint] = ACTIONS(5492), + [anon_sym_c_long] = ACTIONS(5492), + [anon_sym_c_ulong] = ACTIONS(5492), + [anon_sym_c_longlong] = ACTIONS(5492), + [anon_sym_c_ulonglong] = ACTIONS(5492), + [anon_sym_c_float] = ACTIONS(5492), + [anon_sym_c_double] = ACTIONS(5492), + [anon_sym_c_longdouble] = ACTIONS(5492), + [anon_sym_PLUS_EQ] = ACTIONS(5490), + [anon_sym_DASH_EQ] = ACTIONS(5490), + [anon_sym_STAR_EQ] = ACTIONS(5490), + [anon_sym_SLASH_EQ] = ACTIONS(5490), + [anon_sym_AMP_EQ] = ACTIONS(5490), + [anon_sym_PIPE_EQ] = ACTIONS(5492), + [anon_sym_xor_EQ] = ACTIONS(5490), + [anon_sym_LT_LT_EQ] = ACTIONS(5490), + [anon_sym_GT_GT_EQ] = ACTIONS(5490), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5490), + [anon_sym_return] = ACTIONS(5492), + [anon_sym_yield] = ACTIONS(5492), + [anon_sym_break] = ACTIONS(5492), + [anon_sym_continue] = ACTIONS(5492), + [anon_sym_defer] = ACTIONS(5492), + [anon_sym_errdefer] = ACTIONS(5492), + [anon_sym_if] = ACTIONS(5492), + [anon_sym_else] = ACTIONS(5492), + [anon_sym_while] = ACTIONS(5492), + [anon_sym_expand] = ACTIONS(5492), + [anon_sym_for] = ACTIONS(5492), + [anon_sym_PIPE2] = ACTIONS(5490), + [anon_sym_match] = ACTIONS(5492), + [anon_sym_DOT_DOT] = ACTIONS(5492), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5490), + [anon_sym_orelse] = ACTIONS(5492), + [anon_sym_or] = ACTIONS(5492), + [anon_sym_and] = ACTIONS(5492), + [anon_sym_EQ_EQ] = ACTIONS(5490), + [anon_sym_BANG_EQ] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5492), + [anon_sym_LT_EQ] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5492), + [anon_sym_GT_EQ] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5492), + [anon_sym_xor] = ACTIONS(5492), + [anon_sym_LT_LT] = ACTIONS(5492), + [anon_sym_GT_GT] = ACTIONS(5492), + [anon_sym_LT_LT_PIPE] = ACTIONS(5492), + [anon_sym_PLUS] = ACTIONS(5492), + [anon_sym_SLASH] = ACTIONS(5492), + [anon_sym_catch] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5490), + [anon_sym_try] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(5492), + [anon_sym_CARET] = ACTIONS(5490), + [anon_sym_true] = ACTIONS(5492), + [anon_sym_false] = ACTIONS(5492), + [anon_sym_null] = ACTIONS(5492), + [anon_sym_unreachable] = ACTIONS(5492), + [anon_sym_undefined] = ACTIONS(5492), + [sym_sink] = ACTIONS(5492), + [sym_integer] = ACTIONS(5492), + [sym_float] = ACTIONS(5490), + [anon_sym_DQUOTE] = ACTIONS(5490), + [sym_multiline_string] = ACTIONS(5490), + [sym_character] = ACTIONS(5490), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5490), + }, + [STATE(3791)] = { + [sym_identifier] = ACTIONS(5496), + [anon_sym_func] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5496), + [anon_sym_EQ] = ACTIONS(5496), + [anon_sym_struct] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5496), + [anon_sym_DOLLAR] = ACTIONS(5494), + [anon_sym_PIPE] = ACTIONS(5496), + [anon_sym_QMARK] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_void] = ACTIONS(5496), + [anon_sym_noreturn] = ACTIONS(5496), + [anon_sym_type] = ACTIONS(5496), + [anon_sym_anyopaque] = ACTIONS(5496), + [anon_sym_bool] = ACTIONS(5496), + [anon_sym_int] = ACTIONS(5496), + [anon_sym_uint] = ACTIONS(5496), + [anon_sym_float] = ACTIONS(5496), + [anon_sym_range] = ACTIONS(5496), + [anon_sym_i8] = ACTIONS(5496), + [anon_sym_i16] = ACTIONS(5496), + [anon_sym_i32] = ACTIONS(5496), + [anon_sym_i64] = ACTIONS(5496), + [anon_sym_u8] = ACTIONS(5496), + [anon_sym_u16] = ACTIONS(5496), + [anon_sym_u32] = ACTIONS(5496), + [anon_sym_u64] = ACTIONS(5496), + [anon_sym_isize] = ACTIONS(5496), + [anon_sym_usize] = ACTIONS(5496), + [anon_sym_f32] = ACTIONS(5496), + [anon_sym_f64] = ACTIONS(5496), + [anon_sym_c_char] = ACTIONS(5496), + [anon_sym_c_schar] = ACTIONS(5496), + [anon_sym_c_uchar] = ACTIONS(5496), + [anon_sym_c_short] = ACTIONS(5496), + [anon_sym_c_ushort] = ACTIONS(5496), + [anon_sym_c_int] = ACTIONS(5496), + [anon_sym_c_uint] = ACTIONS(5496), + [anon_sym_c_long] = ACTIONS(5496), + [anon_sym_c_ulong] = ACTIONS(5496), + [anon_sym_c_longlong] = ACTIONS(5496), + [anon_sym_c_ulonglong] = ACTIONS(5496), + [anon_sym_c_float] = ACTIONS(5496), + [anon_sym_c_double] = ACTIONS(5496), + [anon_sym_c_longdouble] = ACTIONS(5496), + [anon_sym_PLUS_EQ] = ACTIONS(5494), + [anon_sym_DASH_EQ] = ACTIONS(5494), + [anon_sym_STAR_EQ] = ACTIONS(5494), + [anon_sym_SLASH_EQ] = ACTIONS(5494), + [anon_sym_AMP_EQ] = ACTIONS(5494), + [anon_sym_PIPE_EQ] = ACTIONS(5496), + [anon_sym_xor_EQ] = ACTIONS(5494), + [anon_sym_LT_LT_EQ] = ACTIONS(5494), + [anon_sym_GT_GT_EQ] = ACTIONS(5494), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5494), + [anon_sym_return] = ACTIONS(5496), + [anon_sym_yield] = ACTIONS(5496), + [anon_sym_break] = ACTIONS(5496), + [anon_sym_continue] = ACTIONS(5496), + [anon_sym_defer] = ACTIONS(5496), + [anon_sym_errdefer] = ACTIONS(5496), + [anon_sym_if] = ACTIONS(5496), + [anon_sym_else] = ACTIONS(5496), + [anon_sym_while] = ACTIONS(5496), + [anon_sym_expand] = ACTIONS(5496), + [anon_sym_for] = ACTIONS(5496), + [anon_sym_PIPE2] = ACTIONS(5494), + [anon_sym_match] = ACTIONS(5496), + [anon_sym_DOT_DOT] = ACTIONS(5496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5494), + [anon_sym_orelse] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5496), + [anon_sym_and] = ACTIONS(5496), + [anon_sym_EQ_EQ] = ACTIONS(5494), + [anon_sym_BANG_EQ] = ACTIONS(5494), + [anon_sym_LT] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5494), + [anon_sym_GT] = ACTIONS(5496), + [anon_sym_GT_EQ] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5496), + [anon_sym_xor] = ACTIONS(5496), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5496), + [anon_sym_LT_LT_PIPE] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5496), + [anon_sym_SLASH] = ACTIONS(5496), + [anon_sym_catch] = ACTIONS(5496), + [anon_sym_TILDE] = ACTIONS(5494), + [anon_sym_try] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5496), + [anon_sym_CARET] = ACTIONS(5494), + [anon_sym_true] = ACTIONS(5496), + [anon_sym_false] = ACTIONS(5496), + [anon_sym_null] = ACTIONS(5496), + [anon_sym_unreachable] = ACTIONS(5496), + [anon_sym_undefined] = ACTIONS(5496), + [sym_sink] = ACTIONS(5496), + [sym_integer] = ACTIONS(5496), + [sym_float] = ACTIONS(5494), + [anon_sym_DQUOTE] = ACTIONS(5494), + [sym_multiline_string] = ACTIONS(5494), + [sym_character] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5494), + }, + [STATE(3792)] = { + [sym_identifier] = ACTIONS(5500), + [anon_sym_func] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5500), + [anon_sym_EQ] = ACTIONS(5500), + [anon_sym_struct] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5500), + [anon_sym_DOLLAR] = ACTIONS(5498), + [anon_sym_PIPE] = ACTIONS(5500), + [anon_sym_QMARK] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5498), + [anon_sym_void] = ACTIONS(5500), + [anon_sym_noreturn] = ACTIONS(5500), + [anon_sym_type] = ACTIONS(5500), + [anon_sym_anyopaque] = ACTIONS(5500), + [anon_sym_bool] = ACTIONS(5500), + [anon_sym_int] = ACTIONS(5500), + [anon_sym_uint] = ACTIONS(5500), + [anon_sym_float] = ACTIONS(5500), + [anon_sym_range] = ACTIONS(5500), + [anon_sym_i8] = ACTIONS(5500), + [anon_sym_i16] = ACTIONS(5500), + [anon_sym_i32] = ACTIONS(5500), + [anon_sym_i64] = ACTIONS(5500), + [anon_sym_u8] = ACTIONS(5500), + [anon_sym_u16] = ACTIONS(5500), + [anon_sym_u32] = ACTIONS(5500), + [anon_sym_u64] = ACTIONS(5500), + [anon_sym_isize] = ACTIONS(5500), + [anon_sym_usize] = ACTIONS(5500), + [anon_sym_f32] = ACTIONS(5500), + [anon_sym_f64] = ACTIONS(5500), + [anon_sym_c_char] = ACTIONS(5500), + [anon_sym_c_schar] = ACTIONS(5500), + [anon_sym_c_uchar] = ACTIONS(5500), + [anon_sym_c_short] = ACTIONS(5500), + [anon_sym_c_ushort] = ACTIONS(5500), + [anon_sym_c_int] = ACTIONS(5500), + [anon_sym_c_uint] = ACTIONS(5500), + [anon_sym_c_long] = ACTIONS(5500), + [anon_sym_c_ulong] = ACTIONS(5500), + [anon_sym_c_longlong] = ACTIONS(5500), + [anon_sym_c_ulonglong] = ACTIONS(5500), + [anon_sym_c_float] = ACTIONS(5500), + [anon_sym_c_double] = ACTIONS(5500), + [anon_sym_c_longdouble] = ACTIONS(5500), + [anon_sym_PLUS_EQ] = ACTIONS(5498), + [anon_sym_DASH_EQ] = ACTIONS(5498), + [anon_sym_STAR_EQ] = ACTIONS(5498), + [anon_sym_SLASH_EQ] = ACTIONS(5498), + [anon_sym_AMP_EQ] = ACTIONS(5498), + [anon_sym_PIPE_EQ] = ACTIONS(5500), + [anon_sym_xor_EQ] = ACTIONS(5498), + [anon_sym_LT_LT_EQ] = ACTIONS(5498), + [anon_sym_GT_GT_EQ] = ACTIONS(5498), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5498), + [anon_sym_return] = ACTIONS(5500), + [anon_sym_yield] = ACTIONS(5500), + [anon_sym_break] = ACTIONS(5500), + [anon_sym_continue] = ACTIONS(5500), + [anon_sym_defer] = ACTIONS(5500), + [anon_sym_errdefer] = ACTIONS(5500), + [anon_sym_if] = ACTIONS(5500), + [anon_sym_else] = ACTIONS(5500), + [anon_sym_while] = ACTIONS(5500), + [anon_sym_expand] = ACTIONS(5500), + [anon_sym_for] = ACTIONS(5500), + [anon_sym_PIPE2] = ACTIONS(5498), + [anon_sym_match] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5498), + [anon_sym_orelse] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5498), + [anon_sym_BANG_EQ] = ACTIONS(5498), + [anon_sym_LT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5498), + [anon_sym_GT] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5500), + [anon_sym_xor] = ACTIONS(5500), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5500), + [anon_sym_LT_LT_PIPE] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5500), + [anon_sym_SLASH] = ACTIONS(5500), + [anon_sym_catch] = ACTIONS(5500), + [anon_sym_TILDE] = ACTIONS(5498), + [anon_sym_try] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5500), + [anon_sym_CARET] = ACTIONS(5498), + [anon_sym_true] = ACTIONS(5500), + [anon_sym_false] = ACTIONS(5500), + [anon_sym_null] = ACTIONS(5500), + [anon_sym_unreachable] = ACTIONS(5500), + [anon_sym_undefined] = ACTIONS(5500), + [sym_sink] = ACTIONS(5500), + [sym_integer] = ACTIONS(5500), + [sym_float] = ACTIONS(5498), + [anon_sym_DQUOTE] = ACTIONS(5498), + [sym_multiline_string] = ACTIONS(5498), + [sym_character] = ACTIONS(5498), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5498), + }, + [STATE(3793)] = { + [sym_identifier] = ACTIONS(5504), + [anon_sym_func] = ACTIONS(5504), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(5504), + [anon_sym_struct] = ACTIONS(5504), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5504), + [anon_sym_DOLLAR] = ACTIONS(5502), + [anon_sym_PIPE] = ACTIONS(5504), + [anon_sym_QMARK] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(5502), + [anon_sym_void] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym_type] = ACTIONS(5504), + [anon_sym_anyopaque] = ACTIONS(5504), + [anon_sym_bool] = ACTIONS(5504), + [anon_sym_int] = ACTIONS(5504), + [anon_sym_uint] = ACTIONS(5504), + [anon_sym_float] = ACTIONS(5504), + [anon_sym_range] = ACTIONS(5504), + [anon_sym_i8] = ACTIONS(5504), + [anon_sym_i16] = ACTIONS(5504), + [anon_sym_i32] = ACTIONS(5504), + [anon_sym_i64] = ACTIONS(5504), + [anon_sym_u8] = ACTIONS(5504), + [anon_sym_u16] = ACTIONS(5504), + [anon_sym_u32] = ACTIONS(5504), + [anon_sym_u64] = ACTIONS(5504), + [anon_sym_isize] = ACTIONS(5504), + [anon_sym_usize] = ACTIONS(5504), + [anon_sym_f32] = ACTIONS(5504), + [anon_sym_f64] = ACTIONS(5504), + [anon_sym_c_char] = ACTIONS(5504), + [anon_sym_c_schar] = ACTIONS(5504), + [anon_sym_c_uchar] = ACTIONS(5504), + [anon_sym_c_short] = ACTIONS(5504), + [anon_sym_c_ushort] = ACTIONS(5504), + [anon_sym_c_int] = ACTIONS(5504), + [anon_sym_c_uint] = ACTIONS(5504), + [anon_sym_c_long] = ACTIONS(5504), + [anon_sym_c_ulong] = ACTIONS(5504), + [anon_sym_c_longlong] = ACTIONS(5504), + [anon_sym_c_ulonglong] = ACTIONS(5504), + [anon_sym_c_float] = ACTIONS(5504), + [anon_sym_c_double] = ACTIONS(5504), + [anon_sym_c_longdouble] = ACTIONS(5504), + [anon_sym_PLUS_EQ] = ACTIONS(5502), + [anon_sym_DASH_EQ] = ACTIONS(5502), + [anon_sym_STAR_EQ] = ACTIONS(5502), + [anon_sym_SLASH_EQ] = ACTIONS(5502), + [anon_sym_AMP_EQ] = ACTIONS(5502), + [anon_sym_PIPE_EQ] = ACTIONS(5504), + [anon_sym_xor_EQ] = ACTIONS(5502), + [anon_sym_LT_LT_EQ] = ACTIONS(5502), + [anon_sym_GT_GT_EQ] = ACTIONS(5502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5502), + [anon_sym_return] = ACTIONS(5504), + [anon_sym_yield] = ACTIONS(5504), + [anon_sym_break] = ACTIONS(5504), + [anon_sym_continue] = ACTIONS(5504), + [anon_sym_defer] = ACTIONS(5504), + [anon_sym_errdefer] = ACTIONS(5504), + [anon_sym_if] = ACTIONS(5504), + [anon_sym_else] = ACTIONS(5504), + [anon_sym_while] = ACTIONS(5504), + [anon_sym_expand] = ACTIONS(5504), + [anon_sym_for] = ACTIONS(5504), + [anon_sym_PIPE2] = ACTIONS(5502), + [anon_sym_match] = ACTIONS(5504), + [anon_sym_DOT_DOT] = ACTIONS(5504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5502), + [anon_sym_orelse] = ACTIONS(5504), + [anon_sym_or] = ACTIONS(5504), + [anon_sym_and] = ACTIONS(5504), + [anon_sym_EQ_EQ] = ACTIONS(5502), + [anon_sym_BANG_EQ] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_LT_EQ] = ACTIONS(5502), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_GT_EQ] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_xor] = ACTIONS(5504), + [anon_sym_LT_LT] = ACTIONS(5504), + [anon_sym_GT_GT] = ACTIONS(5504), + [anon_sym_LT_LT_PIPE] = ACTIONS(5504), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_SLASH] = ACTIONS(5504), + [anon_sym_catch] = ACTIONS(5504), + [anon_sym_TILDE] = ACTIONS(5502), + [anon_sym_try] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5502), + [anon_sym_true] = ACTIONS(5504), + [anon_sym_false] = ACTIONS(5504), + [anon_sym_null] = ACTIONS(5504), + [anon_sym_unreachable] = ACTIONS(5504), + [anon_sym_undefined] = ACTIONS(5504), + [sym_sink] = ACTIONS(5504), + [sym_integer] = ACTIONS(5504), + [sym_float] = ACTIONS(5502), + [anon_sym_DQUOTE] = ACTIONS(5502), + [sym_multiline_string] = ACTIONS(5502), + [sym_character] = ACTIONS(5502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5502), + }, + [STATE(3794)] = { + [sym_identifier] = ACTIONS(5508), + [anon_sym_func] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(5508), + [anon_sym_struct] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LBRACE] = ACTIONS(5506), + [anon_sym_DASH] = ACTIONS(5508), + [anon_sym_DOLLAR] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_void] = ACTIONS(5508), + [anon_sym_noreturn] = ACTIONS(5508), + [anon_sym_type] = ACTIONS(5508), + [anon_sym_anyopaque] = ACTIONS(5508), + [anon_sym_bool] = ACTIONS(5508), + [anon_sym_int] = ACTIONS(5508), + [anon_sym_uint] = ACTIONS(5508), + [anon_sym_float] = ACTIONS(5508), + [anon_sym_range] = ACTIONS(5508), + [anon_sym_i8] = ACTIONS(5508), + [anon_sym_i16] = ACTIONS(5508), + [anon_sym_i32] = ACTIONS(5508), + [anon_sym_i64] = ACTIONS(5508), + [anon_sym_u8] = ACTIONS(5508), + [anon_sym_u16] = ACTIONS(5508), + [anon_sym_u32] = ACTIONS(5508), + [anon_sym_u64] = ACTIONS(5508), + [anon_sym_isize] = ACTIONS(5508), + [anon_sym_usize] = ACTIONS(5508), + [anon_sym_f32] = ACTIONS(5508), + [anon_sym_f64] = ACTIONS(5508), + [anon_sym_c_char] = ACTIONS(5508), + [anon_sym_c_schar] = ACTIONS(5508), + [anon_sym_c_uchar] = ACTIONS(5508), + [anon_sym_c_short] = ACTIONS(5508), + [anon_sym_c_ushort] = ACTIONS(5508), + [anon_sym_c_int] = ACTIONS(5508), + [anon_sym_c_uint] = ACTIONS(5508), + [anon_sym_c_long] = ACTIONS(5508), + [anon_sym_c_ulong] = ACTIONS(5508), + [anon_sym_c_longlong] = ACTIONS(5508), + [anon_sym_c_ulonglong] = ACTIONS(5508), + [anon_sym_c_float] = ACTIONS(5508), + [anon_sym_c_double] = ACTIONS(5508), + [anon_sym_c_longdouble] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(5506), + [anon_sym_DASH_EQ] = ACTIONS(5506), + [anon_sym_STAR_EQ] = ACTIONS(5506), + [anon_sym_SLASH_EQ] = ACTIONS(5506), + [anon_sym_AMP_EQ] = ACTIONS(5506), + [anon_sym_PIPE_EQ] = ACTIONS(5508), + [anon_sym_xor_EQ] = ACTIONS(5506), + [anon_sym_LT_LT_EQ] = ACTIONS(5506), + [anon_sym_GT_GT_EQ] = ACTIONS(5506), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5506), + [anon_sym_return] = ACTIONS(5508), + [anon_sym_yield] = ACTIONS(5508), + [anon_sym_break] = ACTIONS(5508), + [anon_sym_continue] = ACTIONS(5508), + [anon_sym_defer] = ACTIONS(5508), + [anon_sym_errdefer] = ACTIONS(5508), + [anon_sym_if] = ACTIONS(5508), + [anon_sym_else] = ACTIONS(5508), + [anon_sym_while] = ACTIONS(5508), + [anon_sym_expand] = ACTIONS(5508), + [anon_sym_for] = ACTIONS(5508), + [anon_sym_PIPE2] = ACTIONS(5506), + [anon_sym_match] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5506), + [anon_sym_orelse] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_LT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5506), + [anon_sym_GT] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_xor] = ACTIONS(5508), + [anon_sym_LT_LT] = ACTIONS(5508), + [anon_sym_GT_GT] = ACTIONS(5508), + [anon_sym_LT_LT_PIPE] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5508), + [anon_sym_catch] = ACTIONS(5508), + [anon_sym_TILDE] = ACTIONS(5506), + [anon_sym_try] = ACTIONS(5508), + [anon_sym_DOT] = ACTIONS(5508), + [anon_sym_CARET] = ACTIONS(5506), + [anon_sym_true] = ACTIONS(5508), + [anon_sym_false] = ACTIONS(5508), + [anon_sym_null] = ACTIONS(5508), + [anon_sym_unreachable] = ACTIONS(5508), + [anon_sym_undefined] = ACTIONS(5508), + [sym_sink] = ACTIONS(5508), + [sym_integer] = ACTIONS(5508), + [sym_float] = ACTIONS(5506), + [anon_sym_DQUOTE] = ACTIONS(5506), + [sym_multiline_string] = ACTIONS(5506), + [sym_character] = ACTIONS(5506), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5506), + }, + [STATE(3795)] = { + [sym_identifier] = ACTIONS(5512), + [anon_sym_func] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(5512), + [anon_sym_EQ] = ACTIONS(5512), + [anon_sym_struct] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5510), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_DOLLAR] = ACTIONS(5510), + [anon_sym_PIPE] = ACTIONS(5512), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5510), + [anon_sym_void] = ACTIONS(5512), + [anon_sym_noreturn] = ACTIONS(5512), + [anon_sym_type] = ACTIONS(5512), + [anon_sym_anyopaque] = ACTIONS(5512), + [anon_sym_bool] = ACTIONS(5512), + [anon_sym_int] = ACTIONS(5512), + [anon_sym_uint] = ACTIONS(5512), + [anon_sym_float] = ACTIONS(5512), + [anon_sym_range] = ACTIONS(5512), + [anon_sym_i8] = ACTIONS(5512), + [anon_sym_i16] = ACTIONS(5512), + [anon_sym_i32] = ACTIONS(5512), + [anon_sym_i64] = ACTIONS(5512), + [anon_sym_u8] = ACTIONS(5512), + [anon_sym_u16] = ACTIONS(5512), + [anon_sym_u32] = ACTIONS(5512), + [anon_sym_u64] = ACTIONS(5512), + [anon_sym_isize] = ACTIONS(5512), + [anon_sym_usize] = ACTIONS(5512), + [anon_sym_f32] = ACTIONS(5512), + [anon_sym_f64] = ACTIONS(5512), + [anon_sym_c_char] = ACTIONS(5512), + [anon_sym_c_schar] = ACTIONS(5512), + [anon_sym_c_uchar] = ACTIONS(5512), + [anon_sym_c_short] = ACTIONS(5512), + [anon_sym_c_ushort] = ACTIONS(5512), + [anon_sym_c_int] = ACTIONS(5512), + [anon_sym_c_uint] = ACTIONS(5512), + [anon_sym_c_long] = ACTIONS(5512), + [anon_sym_c_ulong] = ACTIONS(5512), + [anon_sym_c_longlong] = ACTIONS(5512), + [anon_sym_c_ulonglong] = ACTIONS(5512), + [anon_sym_c_float] = ACTIONS(5512), + [anon_sym_c_double] = ACTIONS(5512), + [anon_sym_c_longdouble] = ACTIONS(5512), + [anon_sym_PLUS_EQ] = ACTIONS(5510), + [anon_sym_DASH_EQ] = ACTIONS(5510), + [anon_sym_STAR_EQ] = ACTIONS(5510), + [anon_sym_SLASH_EQ] = ACTIONS(5510), + [anon_sym_AMP_EQ] = ACTIONS(5510), + [anon_sym_PIPE_EQ] = ACTIONS(5512), + [anon_sym_xor_EQ] = ACTIONS(5510), + [anon_sym_LT_LT_EQ] = ACTIONS(5510), + [anon_sym_GT_GT_EQ] = ACTIONS(5510), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5510), + [anon_sym_return] = ACTIONS(5512), + [anon_sym_yield] = ACTIONS(5512), + [anon_sym_break] = ACTIONS(5512), + [anon_sym_continue] = ACTIONS(5512), + [anon_sym_defer] = ACTIONS(5512), + [anon_sym_errdefer] = ACTIONS(5512), + [anon_sym_if] = ACTIONS(5512), + [anon_sym_else] = ACTIONS(5512), + [anon_sym_while] = ACTIONS(5512), + [anon_sym_expand] = ACTIONS(5512), + [anon_sym_for] = ACTIONS(5512), + [anon_sym_PIPE2] = ACTIONS(5510), + [anon_sym_match] = ACTIONS(5512), + [anon_sym_DOT_DOT] = ACTIONS(5512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5510), + [anon_sym_orelse] = ACTIONS(5512), + [anon_sym_or] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5510), + [anon_sym_BANG_EQ] = ACTIONS(5510), + [anon_sym_LT] = ACTIONS(5512), + [anon_sym_LT_EQ] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_xor] = ACTIONS(5512), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5512), + [anon_sym_LT_LT_PIPE] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5512), + [anon_sym_catch] = ACTIONS(5512), + [anon_sym_TILDE] = ACTIONS(5510), + [anon_sym_try] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5510), + [anon_sym_true] = ACTIONS(5512), + [anon_sym_false] = ACTIONS(5512), + [anon_sym_null] = ACTIONS(5512), + [anon_sym_unreachable] = ACTIONS(5512), + [anon_sym_undefined] = ACTIONS(5512), + [sym_sink] = ACTIONS(5512), + [sym_integer] = ACTIONS(5512), + [sym_float] = ACTIONS(5510), + [anon_sym_DQUOTE] = ACTIONS(5510), + [sym_multiline_string] = ACTIONS(5510), + [sym_character] = ACTIONS(5510), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5510), + }, + [STATE(3796)] = { + [sym_identifier] = ACTIONS(5516), + [anon_sym_func] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5516), + [anon_sym_EQ] = ACTIONS(5516), + [anon_sym_struct] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_DOLLAR] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5516), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_void] = ACTIONS(5516), + [anon_sym_noreturn] = ACTIONS(5516), + [anon_sym_type] = ACTIONS(5516), + [anon_sym_anyopaque] = ACTIONS(5516), + [anon_sym_bool] = ACTIONS(5516), + [anon_sym_int] = ACTIONS(5516), + [anon_sym_uint] = ACTIONS(5516), + [anon_sym_float] = ACTIONS(5516), + [anon_sym_range] = ACTIONS(5516), + [anon_sym_i8] = ACTIONS(5516), + [anon_sym_i16] = ACTIONS(5516), + [anon_sym_i32] = ACTIONS(5516), + [anon_sym_i64] = ACTIONS(5516), + [anon_sym_u8] = ACTIONS(5516), + [anon_sym_u16] = ACTIONS(5516), + [anon_sym_u32] = ACTIONS(5516), + [anon_sym_u64] = ACTIONS(5516), + [anon_sym_isize] = ACTIONS(5516), + [anon_sym_usize] = ACTIONS(5516), + [anon_sym_f32] = ACTIONS(5516), + [anon_sym_f64] = ACTIONS(5516), + [anon_sym_c_char] = ACTIONS(5516), + [anon_sym_c_schar] = ACTIONS(5516), + [anon_sym_c_uchar] = ACTIONS(5516), + [anon_sym_c_short] = ACTIONS(5516), + [anon_sym_c_ushort] = ACTIONS(5516), + [anon_sym_c_int] = ACTIONS(5516), + [anon_sym_c_uint] = ACTIONS(5516), + [anon_sym_c_long] = ACTIONS(5516), + [anon_sym_c_ulong] = ACTIONS(5516), + [anon_sym_c_longlong] = ACTIONS(5516), + [anon_sym_c_ulonglong] = ACTIONS(5516), + [anon_sym_c_float] = ACTIONS(5516), + [anon_sym_c_double] = ACTIONS(5516), + [anon_sym_c_longdouble] = ACTIONS(5516), + [anon_sym_PLUS_EQ] = ACTIONS(5514), + [anon_sym_DASH_EQ] = ACTIONS(5514), + [anon_sym_STAR_EQ] = ACTIONS(5514), + [anon_sym_SLASH_EQ] = ACTIONS(5514), + [anon_sym_AMP_EQ] = ACTIONS(5514), + [anon_sym_PIPE_EQ] = ACTIONS(5516), + [anon_sym_xor_EQ] = ACTIONS(5514), + [anon_sym_LT_LT_EQ] = ACTIONS(5514), + [anon_sym_GT_GT_EQ] = ACTIONS(5514), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5514), + [anon_sym_return] = ACTIONS(5516), + [anon_sym_yield] = ACTIONS(5516), + [anon_sym_break] = ACTIONS(5516), + [anon_sym_continue] = ACTIONS(5516), + [anon_sym_defer] = ACTIONS(5516), + [anon_sym_errdefer] = ACTIONS(5516), + [anon_sym_if] = ACTIONS(5516), + [anon_sym_else] = ACTIONS(5516), + [anon_sym_while] = ACTIONS(5516), + [anon_sym_expand] = ACTIONS(5516), + [anon_sym_for] = ACTIONS(5516), + [anon_sym_PIPE2] = ACTIONS(5514), + [anon_sym_match] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5514), + [anon_sym_orelse] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5514), + [anon_sym_BANG_EQ] = ACTIONS(5514), + [anon_sym_LT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_xor] = ACTIONS(5516), + [anon_sym_LT_LT] = ACTIONS(5516), + [anon_sym_GT_GT] = ACTIONS(5516), + [anon_sym_LT_LT_PIPE] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_SLASH] = ACTIONS(5516), + [anon_sym_catch] = ACTIONS(5516), + [anon_sym_TILDE] = ACTIONS(5514), + [anon_sym_try] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5516), + [anon_sym_CARET] = ACTIONS(5514), + [anon_sym_true] = ACTIONS(5516), + [anon_sym_false] = ACTIONS(5516), + [anon_sym_null] = ACTIONS(5516), + [anon_sym_unreachable] = ACTIONS(5516), + [anon_sym_undefined] = ACTIONS(5516), + [sym_sink] = ACTIONS(5516), + [sym_integer] = ACTIONS(5516), + [sym_float] = ACTIONS(5514), + [anon_sym_DQUOTE] = ACTIONS(5514), + [sym_multiline_string] = ACTIONS(5514), + [sym_character] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5514), + }, + [STATE(3797)] = { + [sym_identifier] = ACTIONS(5520), + [anon_sym_func] = ACTIONS(5520), + [anon_sym_BANG] = ACTIONS(5520), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_struct] = ACTIONS(5520), + [anon_sym_LPAREN] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_DOLLAR] = ACTIONS(5518), + [anon_sym_PIPE] = ACTIONS(5520), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_void] = ACTIONS(5520), + [anon_sym_noreturn] = ACTIONS(5520), + [anon_sym_type] = ACTIONS(5520), + [anon_sym_anyopaque] = ACTIONS(5520), + [anon_sym_bool] = ACTIONS(5520), + [anon_sym_int] = ACTIONS(5520), + [anon_sym_uint] = ACTIONS(5520), + [anon_sym_float] = ACTIONS(5520), + [anon_sym_range] = ACTIONS(5520), + [anon_sym_i8] = ACTIONS(5520), + [anon_sym_i16] = ACTIONS(5520), + [anon_sym_i32] = ACTIONS(5520), + [anon_sym_i64] = ACTIONS(5520), + [anon_sym_u8] = ACTIONS(5520), + [anon_sym_u16] = ACTIONS(5520), + [anon_sym_u32] = ACTIONS(5520), + [anon_sym_u64] = ACTIONS(5520), + [anon_sym_isize] = ACTIONS(5520), + [anon_sym_usize] = ACTIONS(5520), + [anon_sym_f32] = ACTIONS(5520), + [anon_sym_f64] = ACTIONS(5520), + [anon_sym_c_char] = ACTIONS(5520), + [anon_sym_c_schar] = ACTIONS(5520), + [anon_sym_c_uchar] = ACTIONS(5520), + [anon_sym_c_short] = ACTIONS(5520), + [anon_sym_c_ushort] = ACTIONS(5520), + [anon_sym_c_int] = ACTIONS(5520), + [anon_sym_c_uint] = ACTIONS(5520), + [anon_sym_c_long] = ACTIONS(5520), + [anon_sym_c_ulong] = ACTIONS(5520), + [anon_sym_c_longlong] = ACTIONS(5520), + [anon_sym_c_ulonglong] = ACTIONS(5520), + [anon_sym_c_float] = ACTIONS(5520), + [anon_sym_c_double] = ACTIONS(5520), + [anon_sym_c_longdouble] = ACTIONS(5520), + [anon_sym_PLUS_EQ] = ACTIONS(5518), + [anon_sym_DASH_EQ] = ACTIONS(5518), + [anon_sym_STAR_EQ] = ACTIONS(5518), + [anon_sym_SLASH_EQ] = ACTIONS(5518), + [anon_sym_AMP_EQ] = ACTIONS(5518), + [anon_sym_PIPE_EQ] = ACTIONS(5520), + [anon_sym_xor_EQ] = ACTIONS(5518), + [anon_sym_LT_LT_EQ] = ACTIONS(5518), + [anon_sym_GT_GT_EQ] = ACTIONS(5518), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5518), + [anon_sym_return] = ACTIONS(5520), + [anon_sym_yield] = ACTIONS(5520), + [anon_sym_break] = ACTIONS(5520), + [anon_sym_continue] = ACTIONS(5520), + [anon_sym_defer] = ACTIONS(5520), + [anon_sym_errdefer] = ACTIONS(5520), + [anon_sym_if] = ACTIONS(5520), + [anon_sym_else] = ACTIONS(5520), + [anon_sym_while] = ACTIONS(5520), + [anon_sym_expand] = ACTIONS(5520), + [anon_sym_for] = ACTIONS(5520), + [anon_sym_PIPE2] = ACTIONS(5518), + [anon_sym_match] = ACTIONS(5520), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5518), + [anon_sym_orelse] = ACTIONS(5520), + [anon_sym_or] = ACTIONS(5520), + [anon_sym_and] = ACTIONS(5520), + [anon_sym_EQ_EQ] = ACTIONS(5518), + [anon_sym_BANG_EQ] = ACTIONS(5518), + [anon_sym_LT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5520), + [anon_sym_GT_EQ] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5520), + [anon_sym_xor] = ACTIONS(5520), + [anon_sym_LT_LT] = ACTIONS(5520), + [anon_sym_GT_GT] = ACTIONS(5520), + [anon_sym_LT_LT_PIPE] = ACTIONS(5520), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_SLASH] = ACTIONS(5520), + [anon_sym_catch] = ACTIONS(5520), + [anon_sym_TILDE] = ACTIONS(5518), + [anon_sym_try] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(5520), + [anon_sym_CARET] = ACTIONS(5518), + [anon_sym_true] = ACTIONS(5520), + [anon_sym_false] = ACTIONS(5520), + [anon_sym_null] = ACTIONS(5520), + [anon_sym_unreachable] = ACTIONS(5520), + [anon_sym_undefined] = ACTIONS(5520), + [sym_sink] = ACTIONS(5520), + [sym_integer] = ACTIONS(5520), + [sym_float] = ACTIONS(5518), + [anon_sym_DQUOTE] = ACTIONS(5518), + [sym_multiline_string] = ACTIONS(5518), + [sym_character] = ACTIONS(5518), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5518), + }, + [STATE(3798)] = { + [sym_identifier] = ACTIONS(5524), + [anon_sym_func] = ACTIONS(5524), + [anon_sym_BANG] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5524), + [anon_sym_struct] = ACTIONS(5524), + [anon_sym_LPAREN] = ACTIONS(5522), + [anon_sym_LBRACE] = ACTIONS(5522), + [anon_sym_DASH] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5522), + [anon_sym_PIPE] = ACTIONS(5524), + [anon_sym_QMARK] = ACTIONS(5522), + [anon_sym_STAR] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_void] = ACTIONS(5524), + [anon_sym_noreturn] = ACTIONS(5524), + [anon_sym_type] = ACTIONS(5524), + [anon_sym_anyopaque] = ACTIONS(5524), + [anon_sym_bool] = ACTIONS(5524), + [anon_sym_int] = ACTIONS(5524), + [anon_sym_uint] = ACTIONS(5524), + [anon_sym_float] = ACTIONS(5524), + [anon_sym_range] = ACTIONS(5524), + [anon_sym_i8] = ACTIONS(5524), + [anon_sym_i16] = ACTIONS(5524), + [anon_sym_i32] = ACTIONS(5524), + [anon_sym_i64] = ACTIONS(5524), + [anon_sym_u8] = ACTIONS(5524), + [anon_sym_u16] = ACTIONS(5524), + [anon_sym_u32] = ACTIONS(5524), + [anon_sym_u64] = ACTIONS(5524), + [anon_sym_isize] = ACTIONS(5524), + [anon_sym_usize] = ACTIONS(5524), + [anon_sym_f32] = ACTIONS(5524), + [anon_sym_f64] = ACTIONS(5524), + [anon_sym_c_char] = ACTIONS(5524), + [anon_sym_c_schar] = ACTIONS(5524), + [anon_sym_c_uchar] = ACTIONS(5524), + [anon_sym_c_short] = ACTIONS(5524), + [anon_sym_c_ushort] = ACTIONS(5524), + [anon_sym_c_int] = ACTIONS(5524), + [anon_sym_c_uint] = ACTIONS(5524), + [anon_sym_c_long] = ACTIONS(5524), + [anon_sym_c_ulong] = ACTIONS(5524), + [anon_sym_c_longlong] = ACTIONS(5524), + [anon_sym_c_ulonglong] = ACTIONS(5524), + [anon_sym_c_float] = ACTIONS(5524), + [anon_sym_c_double] = ACTIONS(5524), + [anon_sym_c_longdouble] = ACTIONS(5524), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5524), + [anon_sym_xor_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5522), + [anon_sym_return] = ACTIONS(5524), + [anon_sym_yield] = ACTIONS(5524), + [anon_sym_break] = ACTIONS(5524), + [anon_sym_continue] = ACTIONS(5524), + [anon_sym_defer] = ACTIONS(5524), + [anon_sym_errdefer] = ACTIONS(5524), + [anon_sym_if] = ACTIONS(5524), + [anon_sym_else] = ACTIONS(5524), + [anon_sym_while] = ACTIONS(5524), + [anon_sym_expand] = ACTIONS(5524), + [anon_sym_for] = ACTIONS(5524), + [anon_sym_PIPE2] = ACTIONS(5522), + [anon_sym_match] = ACTIONS(5524), + [anon_sym_DOT_DOT] = ACTIONS(5524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5522), + [anon_sym_orelse] = ACTIONS(5524), + [anon_sym_or] = ACTIONS(5524), + [anon_sym_and] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5522), + [anon_sym_BANG_EQ] = ACTIONS(5522), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_LT_EQ] = ACTIONS(5522), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5522), + [anon_sym_AMP] = ACTIONS(5524), + [anon_sym_xor] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5524), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_LT_LT_PIPE] = ACTIONS(5524), + [anon_sym_PLUS] = ACTIONS(5524), + [anon_sym_SLASH] = ACTIONS(5524), + [anon_sym_catch] = ACTIONS(5524), + [anon_sym_TILDE] = ACTIONS(5522), + [anon_sym_try] = ACTIONS(5524), + [anon_sym_DOT] = ACTIONS(5524), + [anon_sym_CARET] = ACTIONS(5522), + [anon_sym_true] = ACTIONS(5524), + [anon_sym_false] = ACTIONS(5524), + [anon_sym_null] = ACTIONS(5524), + [anon_sym_unreachable] = ACTIONS(5524), + [anon_sym_undefined] = ACTIONS(5524), + [sym_sink] = ACTIONS(5524), + [sym_integer] = ACTIONS(5524), + [sym_float] = ACTIONS(5522), + [anon_sym_DQUOTE] = ACTIONS(5522), + [sym_multiline_string] = ACTIONS(5522), + [sym_character] = ACTIONS(5522), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5522), + }, + [STATE(3799)] = { + [sym_identifier] = ACTIONS(5528), + [anon_sym_func] = ACTIONS(5528), + [anon_sym_BANG] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(5528), + [anon_sym_struct] = ACTIONS(5528), + [anon_sym_LPAREN] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5528), + [anon_sym_QMARK] = ACTIONS(5526), + [anon_sym_STAR] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5526), + [anon_sym_void] = ACTIONS(5528), + [anon_sym_noreturn] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_anyopaque] = ACTIONS(5528), + [anon_sym_bool] = ACTIONS(5528), + [anon_sym_int] = ACTIONS(5528), + [anon_sym_uint] = ACTIONS(5528), + [anon_sym_float] = ACTIONS(5528), + [anon_sym_range] = ACTIONS(5528), + [anon_sym_i8] = ACTIONS(5528), + [anon_sym_i16] = ACTIONS(5528), + [anon_sym_i32] = ACTIONS(5528), + [anon_sym_i64] = ACTIONS(5528), + [anon_sym_u8] = ACTIONS(5528), + [anon_sym_u16] = ACTIONS(5528), + [anon_sym_u32] = ACTIONS(5528), + [anon_sym_u64] = ACTIONS(5528), + [anon_sym_isize] = ACTIONS(5528), + [anon_sym_usize] = ACTIONS(5528), + [anon_sym_f32] = ACTIONS(5528), + [anon_sym_f64] = ACTIONS(5528), + [anon_sym_c_char] = ACTIONS(5528), + [anon_sym_c_schar] = ACTIONS(5528), + [anon_sym_c_uchar] = ACTIONS(5528), + [anon_sym_c_short] = ACTIONS(5528), + [anon_sym_c_ushort] = ACTIONS(5528), + [anon_sym_c_int] = ACTIONS(5528), + [anon_sym_c_uint] = ACTIONS(5528), + [anon_sym_c_long] = ACTIONS(5528), + [anon_sym_c_ulong] = ACTIONS(5528), + [anon_sym_c_longlong] = ACTIONS(5528), + [anon_sym_c_ulonglong] = ACTIONS(5528), + [anon_sym_c_float] = ACTIONS(5528), + [anon_sym_c_double] = ACTIONS(5528), + [anon_sym_c_longdouble] = ACTIONS(5528), + [anon_sym_PLUS_EQ] = ACTIONS(5526), + [anon_sym_DASH_EQ] = ACTIONS(5526), + [anon_sym_STAR_EQ] = ACTIONS(5526), + [anon_sym_SLASH_EQ] = ACTIONS(5526), + [anon_sym_AMP_EQ] = ACTIONS(5526), + [anon_sym_PIPE_EQ] = ACTIONS(5528), + [anon_sym_xor_EQ] = ACTIONS(5526), + [anon_sym_LT_LT_EQ] = ACTIONS(5526), + [anon_sym_GT_GT_EQ] = ACTIONS(5526), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5526), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_break] = ACTIONS(5528), + [anon_sym_continue] = ACTIONS(5528), + [anon_sym_defer] = ACTIONS(5528), + [anon_sym_errdefer] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_else] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_expand] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_PIPE2] = ACTIONS(5526), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_DOT_DOT] = ACTIONS(5528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5526), + [anon_sym_orelse] = ACTIONS(5528), + [anon_sym_or] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5526), + [anon_sym_BANG_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_LT_EQ] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_GT_EQ] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(5528), + [anon_sym_xor] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5528), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_LT_LT_PIPE] = ACTIONS(5528), + [anon_sym_PLUS] = ACTIONS(5528), + [anon_sym_SLASH] = ACTIONS(5528), + [anon_sym_catch] = ACTIONS(5528), + [anon_sym_TILDE] = ACTIONS(5526), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_CARET] = ACTIONS(5526), + [anon_sym_true] = ACTIONS(5528), + [anon_sym_false] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_unreachable] = ACTIONS(5528), + [anon_sym_undefined] = ACTIONS(5528), + [sym_sink] = ACTIONS(5528), + [sym_integer] = ACTIONS(5528), + [sym_float] = ACTIONS(5526), + [anon_sym_DQUOTE] = ACTIONS(5526), + [sym_multiline_string] = ACTIONS(5526), + [sym_character] = ACTIONS(5526), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5526), + }, + [STATE(3800)] = { + [sym_identifier] = ACTIONS(5532), + [anon_sym_func] = ACTIONS(5532), + [anon_sym_BANG] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_struct] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5530), + [anon_sym_LBRACE] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5532), + [anon_sym_QMARK] = ACTIONS(5530), + [anon_sym_STAR] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5530), + [anon_sym_void] = ACTIONS(5532), + [anon_sym_noreturn] = ACTIONS(5532), + [anon_sym_type] = ACTIONS(5532), + [anon_sym_anyopaque] = ACTIONS(5532), + [anon_sym_bool] = ACTIONS(5532), + [anon_sym_int] = ACTIONS(5532), + [anon_sym_uint] = ACTIONS(5532), + [anon_sym_float] = ACTIONS(5532), + [anon_sym_range] = ACTIONS(5532), + [anon_sym_i8] = ACTIONS(5532), + [anon_sym_i16] = ACTIONS(5532), + [anon_sym_i32] = ACTIONS(5532), + [anon_sym_i64] = ACTIONS(5532), + [anon_sym_u8] = ACTIONS(5532), + [anon_sym_u16] = ACTIONS(5532), + [anon_sym_u32] = ACTIONS(5532), + [anon_sym_u64] = ACTIONS(5532), + [anon_sym_isize] = ACTIONS(5532), + [anon_sym_usize] = ACTIONS(5532), + [anon_sym_f32] = ACTIONS(5532), + [anon_sym_f64] = ACTIONS(5532), + [anon_sym_c_char] = ACTIONS(5532), + [anon_sym_c_schar] = ACTIONS(5532), + [anon_sym_c_uchar] = ACTIONS(5532), + [anon_sym_c_short] = ACTIONS(5532), + [anon_sym_c_ushort] = ACTIONS(5532), + [anon_sym_c_int] = ACTIONS(5532), + [anon_sym_c_uint] = ACTIONS(5532), + [anon_sym_c_long] = ACTIONS(5532), + [anon_sym_c_ulong] = ACTIONS(5532), + [anon_sym_c_longlong] = ACTIONS(5532), + [anon_sym_c_ulonglong] = ACTIONS(5532), + [anon_sym_c_float] = ACTIONS(5532), + [anon_sym_c_double] = ACTIONS(5532), + [anon_sym_c_longdouble] = ACTIONS(5532), + [anon_sym_PLUS_EQ] = ACTIONS(5530), + [anon_sym_DASH_EQ] = ACTIONS(5530), + [anon_sym_STAR_EQ] = ACTIONS(5530), + [anon_sym_SLASH_EQ] = ACTIONS(5530), + [anon_sym_AMP_EQ] = ACTIONS(5530), + [anon_sym_PIPE_EQ] = ACTIONS(5532), + [anon_sym_xor_EQ] = ACTIONS(5530), + [anon_sym_LT_LT_EQ] = ACTIONS(5530), + [anon_sym_GT_GT_EQ] = ACTIONS(5530), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5530), + [anon_sym_return] = ACTIONS(5532), + [anon_sym_yield] = ACTIONS(5532), + [anon_sym_break] = ACTIONS(5532), + [anon_sym_continue] = ACTIONS(5532), + [anon_sym_defer] = ACTIONS(5532), + [anon_sym_errdefer] = ACTIONS(5532), + [anon_sym_if] = ACTIONS(5532), + [anon_sym_else] = ACTIONS(5532), + [anon_sym_while] = ACTIONS(5532), + [anon_sym_expand] = ACTIONS(5532), + [anon_sym_for] = ACTIONS(5532), + [anon_sym_PIPE2] = ACTIONS(5530), + [anon_sym_match] = ACTIONS(5532), + [anon_sym_DOT_DOT] = ACTIONS(5532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5530), + [anon_sym_orelse] = ACTIONS(5532), + [anon_sym_or] = ACTIONS(5532), + [anon_sym_and] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5530), + [anon_sym_BANG_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_LT_EQ] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_GT_EQ] = ACTIONS(5530), + [anon_sym_AMP] = ACTIONS(5532), + [anon_sym_xor] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5532), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_LT_LT_PIPE] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_SLASH] = ACTIONS(5532), + [anon_sym_catch] = ACTIONS(5532), + [anon_sym_TILDE] = ACTIONS(5530), + [anon_sym_try] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5530), + [anon_sym_true] = ACTIONS(5532), + [anon_sym_false] = ACTIONS(5532), + [anon_sym_null] = ACTIONS(5532), + [anon_sym_unreachable] = ACTIONS(5532), + [anon_sym_undefined] = ACTIONS(5532), + [sym_sink] = ACTIONS(5532), + [sym_integer] = ACTIONS(5532), + [sym_float] = ACTIONS(5530), + [anon_sym_DQUOTE] = ACTIONS(5530), + [sym_multiline_string] = ACTIONS(5530), + [sym_character] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5530), + }, + [STATE(3801)] = { + [sym_identifier] = ACTIONS(5536), + [anon_sym_func] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5536), + [anon_sym_EQ] = ACTIONS(5536), + [anon_sym_struct] = ACTIONS(5536), + [anon_sym_LPAREN] = ACTIONS(5534), + [anon_sym_LBRACE] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_DOLLAR] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5536), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_STAR] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5534), + [anon_sym_void] = ACTIONS(5536), + [anon_sym_noreturn] = ACTIONS(5536), + [anon_sym_type] = ACTIONS(5536), + [anon_sym_anyopaque] = ACTIONS(5536), + [anon_sym_bool] = ACTIONS(5536), + [anon_sym_int] = ACTIONS(5536), + [anon_sym_uint] = ACTIONS(5536), + [anon_sym_float] = ACTIONS(5536), + [anon_sym_range] = ACTIONS(5536), + [anon_sym_i8] = ACTIONS(5536), + [anon_sym_i16] = ACTIONS(5536), + [anon_sym_i32] = ACTIONS(5536), + [anon_sym_i64] = ACTIONS(5536), + [anon_sym_u8] = ACTIONS(5536), + [anon_sym_u16] = ACTIONS(5536), + [anon_sym_u32] = ACTIONS(5536), + [anon_sym_u64] = ACTIONS(5536), + [anon_sym_isize] = ACTIONS(5536), + [anon_sym_usize] = ACTIONS(5536), + [anon_sym_f32] = ACTIONS(5536), + [anon_sym_f64] = ACTIONS(5536), + [anon_sym_c_char] = ACTIONS(5536), + [anon_sym_c_schar] = ACTIONS(5536), + [anon_sym_c_uchar] = ACTIONS(5536), + [anon_sym_c_short] = ACTIONS(5536), + [anon_sym_c_ushort] = ACTIONS(5536), + [anon_sym_c_int] = ACTIONS(5536), + [anon_sym_c_uint] = ACTIONS(5536), + [anon_sym_c_long] = ACTIONS(5536), + [anon_sym_c_ulong] = ACTIONS(5536), + [anon_sym_c_longlong] = ACTIONS(5536), + [anon_sym_c_ulonglong] = ACTIONS(5536), + [anon_sym_c_float] = ACTIONS(5536), + [anon_sym_c_double] = ACTIONS(5536), + [anon_sym_c_longdouble] = ACTIONS(5536), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5536), + [anon_sym_xor_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5534), + [anon_sym_return] = ACTIONS(5536), + [anon_sym_yield] = ACTIONS(5536), + [anon_sym_break] = ACTIONS(5536), + [anon_sym_continue] = ACTIONS(5536), + [anon_sym_defer] = ACTIONS(5536), + [anon_sym_errdefer] = ACTIONS(5536), + [anon_sym_if] = ACTIONS(5536), + [anon_sym_else] = ACTIONS(5536), + [anon_sym_while] = ACTIONS(5536), + [anon_sym_expand] = ACTIONS(5536), + [anon_sym_for] = ACTIONS(5536), + [anon_sym_PIPE2] = ACTIONS(5534), + [anon_sym_match] = ACTIONS(5536), + [anon_sym_DOT_DOT] = ACTIONS(5536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5534), + [anon_sym_orelse] = ACTIONS(5536), + [anon_sym_or] = ACTIONS(5536), + [anon_sym_and] = ACTIONS(5536), + [anon_sym_EQ_EQ] = ACTIONS(5534), + [anon_sym_BANG_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5536), + [anon_sym_LT_EQ] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5536), + [anon_sym_GT_EQ] = ACTIONS(5534), + [anon_sym_AMP] = ACTIONS(5536), + [anon_sym_xor] = ACTIONS(5536), + [anon_sym_LT_LT] = ACTIONS(5536), + [anon_sym_GT_GT] = ACTIONS(5536), + [anon_sym_LT_LT_PIPE] = ACTIONS(5536), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_SLASH] = ACTIONS(5536), + [anon_sym_catch] = ACTIONS(5536), + [anon_sym_TILDE] = ACTIONS(5534), + [anon_sym_try] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(5536), + [anon_sym_CARET] = ACTIONS(5534), + [anon_sym_true] = ACTIONS(5536), + [anon_sym_false] = ACTIONS(5536), + [anon_sym_null] = ACTIONS(5536), + [anon_sym_unreachable] = ACTIONS(5536), + [anon_sym_undefined] = ACTIONS(5536), + [sym_sink] = ACTIONS(5536), + [sym_integer] = ACTIONS(5536), + [sym_float] = ACTIONS(5534), + [anon_sym_DQUOTE] = ACTIONS(5534), + [sym_multiline_string] = ACTIONS(5534), + [sym_character] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5534), + }, + [STATE(3802)] = { + [sym_identifier] = ACTIONS(5540), + [anon_sym_func] = ACTIONS(5540), + [anon_sym_BANG] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(5540), + [anon_sym_struct] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5540), + [anon_sym_DOLLAR] = ACTIONS(5538), + [anon_sym_PIPE] = ACTIONS(5540), + [anon_sym_QMARK] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5540), + [anon_sym_LBRACK] = ACTIONS(5538), + [anon_sym_void] = ACTIONS(5540), + [anon_sym_noreturn] = ACTIONS(5540), + [anon_sym_type] = ACTIONS(5540), + [anon_sym_anyopaque] = ACTIONS(5540), + [anon_sym_bool] = ACTIONS(5540), + [anon_sym_int] = ACTIONS(5540), + [anon_sym_uint] = ACTIONS(5540), + [anon_sym_float] = ACTIONS(5540), + [anon_sym_range] = ACTIONS(5540), + [anon_sym_i8] = ACTIONS(5540), + [anon_sym_i16] = ACTIONS(5540), + [anon_sym_i32] = ACTIONS(5540), + [anon_sym_i64] = ACTIONS(5540), + [anon_sym_u8] = ACTIONS(5540), + [anon_sym_u16] = ACTIONS(5540), + [anon_sym_u32] = ACTIONS(5540), + [anon_sym_u64] = ACTIONS(5540), + [anon_sym_isize] = ACTIONS(5540), + [anon_sym_usize] = ACTIONS(5540), + [anon_sym_f32] = ACTIONS(5540), + [anon_sym_f64] = ACTIONS(5540), + [anon_sym_c_char] = ACTIONS(5540), + [anon_sym_c_schar] = ACTIONS(5540), + [anon_sym_c_uchar] = ACTIONS(5540), + [anon_sym_c_short] = ACTIONS(5540), + [anon_sym_c_ushort] = ACTIONS(5540), + [anon_sym_c_int] = ACTIONS(5540), + [anon_sym_c_uint] = ACTIONS(5540), + [anon_sym_c_long] = ACTIONS(5540), + [anon_sym_c_ulong] = ACTIONS(5540), + [anon_sym_c_longlong] = ACTIONS(5540), + [anon_sym_c_ulonglong] = ACTIONS(5540), + [anon_sym_c_float] = ACTIONS(5540), + [anon_sym_c_double] = ACTIONS(5540), + [anon_sym_c_longdouble] = ACTIONS(5540), + [anon_sym_PLUS_EQ] = ACTIONS(5538), + [anon_sym_DASH_EQ] = ACTIONS(5538), + [anon_sym_STAR_EQ] = ACTIONS(5538), + [anon_sym_SLASH_EQ] = ACTIONS(5538), + [anon_sym_AMP_EQ] = ACTIONS(5538), + [anon_sym_PIPE_EQ] = ACTIONS(5540), + [anon_sym_xor_EQ] = ACTIONS(5538), + [anon_sym_LT_LT_EQ] = ACTIONS(5538), + [anon_sym_GT_GT_EQ] = ACTIONS(5538), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5538), + [anon_sym_return] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5540), + [anon_sym_break] = ACTIONS(5540), + [anon_sym_continue] = ACTIONS(5540), + [anon_sym_defer] = ACTIONS(5540), + [anon_sym_errdefer] = ACTIONS(5540), + [anon_sym_if] = ACTIONS(5540), + [anon_sym_else] = ACTIONS(5540), + [anon_sym_while] = ACTIONS(5540), + [anon_sym_expand] = ACTIONS(5540), + [anon_sym_for] = ACTIONS(5540), + [anon_sym_PIPE2] = ACTIONS(5538), + [anon_sym_match] = ACTIONS(5540), + [anon_sym_DOT_DOT] = ACTIONS(5540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5538), + [anon_sym_orelse] = ACTIONS(5540), + [anon_sym_or] = ACTIONS(5540), + [anon_sym_and] = ACTIONS(5540), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5540), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT] = ACTIONS(5540), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5540), + [anon_sym_xor] = ACTIONS(5540), + [anon_sym_LT_LT] = ACTIONS(5540), + [anon_sym_GT_GT] = ACTIONS(5540), + [anon_sym_LT_LT_PIPE] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5540), + [anon_sym_SLASH] = ACTIONS(5540), + [anon_sym_catch] = ACTIONS(5540), + [anon_sym_TILDE] = ACTIONS(5538), + [anon_sym_try] = ACTIONS(5540), + [anon_sym_DOT] = ACTIONS(5540), + [anon_sym_CARET] = ACTIONS(5538), + [anon_sym_true] = ACTIONS(5540), + [anon_sym_false] = ACTIONS(5540), + [anon_sym_null] = ACTIONS(5540), + [anon_sym_unreachable] = ACTIONS(5540), + [anon_sym_undefined] = ACTIONS(5540), + [sym_sink] = ACTIONS(5540), + [sym_integer] = ACTIONS(5540), + [sym_float] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(5538), + [sym_multiline_string] = ACTIONS(5538), + [sym_character] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5538), + }, + [STATE(3803)] = { + [sym_identifier] = ACTIONS(5544), + [anon_sym_func] = ACTIONS(5544), + [anon_sym_BANG] = ACTIONS(5544), + [anon_sym_EQ] = ACTIONS(5544), + [anon_sym_struct] = ACTIONS(5544), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5544), + [anon_sym_DOLLAR] = ACTIONS(5542), + [anon_sym_PIPE] = ACTIONS(5544), + [anon_sym_QMARK] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(5544), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_void] = ACTIONS(5544), + [anon_sym_noreturn] = ACTIONS(5544), + [anon_sym_type] = ACTIONS(5544), + [anon_sym_anyopaque] = ACTIONS(5544), + [anon_sym_bool] = ACTIONS(5544), + [anon_sym_int] = ACTIONS(5544), + [anon_sym_uint] = ACTIONS(5544), + [anon_sym_float] = ACTIONS(5544), + [anon_sym_range] = ACTIONS(5544), + [anon_sym_i8] = ACTIONS(5544), + [anon_sym_i16] = ACTIONS(5544), + [anon_sym_i32] = ACTIONS(5544), + [anon_sym_i64] = ACTIONS(5544), + [anon_sym_u8] = ACTIONS(5544), + [anon_sym_u16] = ACTIONS(5544), + [anon_sym_u32] = ACTIONS(5544), + [anon_sym_u64] = ACTIONS(5544), + [anon_sym_isize] = ACTIONS(5544), + [anon_sym_usize] = ACTIONS(5544), + [anon_sym_f32] = ACTIONS(5544), + [anon_sym_f64] = ACTIONS(5544), + [anon_sym_c_char] = ACTIONS(5544), + [anon_sym_c_schar] = ACTIONS(5544), + [anon_sym_c_uchar] = ACTIONS(5544), + [anon_sym_c_short] = ACTIONS(5544), + [anon_sym_c_ushort] = ACTIONS(5544), + [anon_sym_c_int] = ACTIONS(5544), + [anon_sym_c_uint] = ACTIONS(5544), + [anon_sym_c_long] = ACTIONS(5544), + [anon_sym_c_ulong] = ACTIONS(5544), + [anon_sym_c_longlong] = ACTIONS(5544), + [anon_sym_c_ulonglong] = ACTIONS(5544), + [anon_sym_c_float] = ACTIONS(5544), + [anon_sym_c_double] = ACTIONS(5544), + [anon_sym_c_longdouble] = ACTIONS(5544), + [anon_sym_PLUS_EQ] = ACTIONS(5542), + [anon_sym_DASH_EQ] = ACTIONS(5542), + [anon_sym_STAR_EQ] = ACTIONS(5542), + [anon_sym_SLASH_EQ] = ACTIONS(5542), + [anon_sym_AMP_EQ] = ACTIONS(5542), + [anon_sym_PIPE_EQ] = ACTIONS(5544), + [anon_sym_xor_EQ] = ACTIONS(5542), + [anon_sym_LT_LT_EQ] = ACTIONS(5542), + [anon_sym_GT_GT_EQ] = ACTIONS(5542), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5542), + [anon_sym_return] = ACTIONS(5544), + [anon_sym_yield] = ACTIONS(5544), + [anon_sym_break] = ACTIONS(5544), + [anon_sym_continue] = ACTIONS(5544), + [anon_sym_defer] = ACTIONS(5544), + [anon_sym_errdefer] = ACTIONS(5544), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_else] = ACTIONS(5544), + [anon_sym_while] = ACTIONS(5544), + [anon_sym_expand] = ACTIONS(5544), + [anon_sym_for] = ACTIONS(5544), + [anon_sym_PIPE2] = ACTIONS(5542), + [anon_sym_match] = ACTIONS(5544), + [anon_sym_DOT_DOT] = ACTIONS(5544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5542), + [anon_sym_orelse] = ACTIONS(5544), + [anon_sym_or] = ACTIONS(5544), + [anon_sym_and] = ACTIONS(5544), + [anon_sym_EQ_EQ] = ACTIONS(5542), + [anon_sym_BANG_EQ] = ACTIONS(5542), + [anon_sym_LT] = ACTIONS(5544), + [anon_sym_LT_EQ] = ACTIONS(5542), + [anon_sym_GT] = ACTIONS(5544), + [anon_sym_GT_EQ] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5544), + [anon_sym_xor] = ACTIONS(5544), + [anon_sym_LT_LT] = ACTIONS(5544), + [anon_sym_GT_GT] = ACTIONS(5544), + [anon_sym_LT_LT_PIPE] = ACTIONS(5544), + [anon_sym_PLUS] = ACTIONS(5544), + [anon_sym_SLASH] = ACTIONS(5544), + [anon_sym_catch] = ACTIONS(5544), + [anon_sym_TILDE] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5544), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_CARET] = ACTIONS(5542), + [anon_sym_true] = ACTIONS(5544), + [anon_sym_false] = ACTIONS(5544), + [anon_sym_null] = ACTIONS(5544), + [anon_sym_unreachable] = ACTIONS(5544), + [anon_sym_undefined] = ACTIONS(5544), + [sym_sink] = ACTIONS(5544), + [sym_integer] = ACTIONS(5544), + [sym_float] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [sym_multiline_string] = ACTIONS(5542), + [sym_character] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5542), + }, + [STATE(3804)] = { + [sym_identifier] = ACTIONS(5548), + [anon_sym_func] = ACTIONS(5548), + [anon_sym_BANG] = ACTIONS(5548), + [anon_sym_EQ] = ACTIONS(5548), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_LPAREN] = ACTIONS(5546), + [anon_sym_LBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_DOLLAR] = ACTIONS(5546), + [anon_sym_PIPE] = ACTIONS(5548), + [anon_sym_QMARK] = ACTIONS(5546), + [anon_sym_STAR] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_void] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_type] = ACTIONS(5548), + [anon_sym_anyopaque] = ACTIONS(5548), + [anon_sym_bool] = ACTIONS(5548), + [anon_sym_int] = ACTIONS(5548), + [anon_sym_uint] = ACTIONS(5548), + [anon_sym_float] = ACTIONS(5548), + [anon_sym_range] = ACTIONS(5548), + [anon_sym_i8] = ACTIONS(5548), + [anon_sym_i16] = ACTIONS(5548), + [anon_sym_i32] = ACTIONS(5548), + [anon_sym_i64] = ACTIONS(5548), + [anon_sym_u8] = ACTIONS(5548), + [anon_sym_u16] = ACTIONS(5548), + [anon_sym_u32] = ACTIONS(5548), + [anon_sym_u64] = ACTIONS(5548), + [anon_sym_isize] = ACTIONS(5548), + [anon_sym_usize] = ACTIONS(5548), + [anon_sym_f32] = ACTIONS(5548), + [anon_sym_f64] = ACTIONS(5548), + [anon_sym_c_char] = ACTIONS(5548), + [anon_sym_c_schar] = ACTIONS(5548), + [anon_sym_c_uchar] = ACTIONS(5548), + [anon_sym_c_short] = ACTIONS(5548), + [anon_sym_c_ushort] = ACTIONS(5548), + [anon_sym_c_int] = ACTIONS(5548), + [anon_sym_c_uint] = ACTIONS(5548), + [anon_sym_c_long] = ACTIONS(5548), + [anon_sym_c_ulong] = ACTIONS(5548), + [anon_sym_c_longlong] = ACTIONS(5548), + [anon_sym_c_ulonglong] = ACTIONS(5548), + [anon_sym_c_float] = ACTIONS(5548), + [anon_sym_c_double] = ACTIONS(5548), + [anon_sym_c_longdouble] = ACTIONS(5548), + [anon_sym_PLUS_EQ] = ACTIONS(5546), + [anon_sym_DASH_EQ] = ACTIONS(5546), + [anon_sym_STAR_EQ] = ACTIONS(5546), + [anon_sym_SLASH_EQ] = ACTIONS(5546), + [anon_sym_AMP_EQ] = ACTIONS(5546), + [anon_sym_PIPE_EQ] = ACTIONS(5548), + [anon_sym_xor_EQ] = ACTIONS(5546), + [anon_sym_LT_LT_EQ] = ACTIONS(5546), + [anon_sym_GT_GT_EQ] = ACTIONS(5546), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5546), + [anon_sym_return] = ACTIONS(5548), + [anon_sym_yield] = ACTIONS(5548), + [anon_sym_break] = ACTIONS(5548), + [anon_sym_continue] = ACTIONS(5548), + [anon_sym_defer] = ACTIONS(5548), + [anon_sym_errdefer] = ACTIONS(5548), + [anon_sym_if] = ACTIONS(5548), + [anon_sym_else] = ACTIONS(5548), + [anon_sym_while] = ACTIONS(5548), + [anon_sym_expand] = ACTIONS(5548), + [anon_sym_for] = ACTIONS(5548), + [anon_sym_PIPE2] = ACTIONS(5546), + [anon_sym_match] = ACTIONS(5548), + [anon_sym_DOT_DOT] = ACTIONS(5548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5546), + [anon_sym_orelse] = ACTIONS(5548), + [anon_sym_or] = ACTIONS(5548), + [anon_sym_and] = ACTIONS(5548), + [anon_sym_EQ_EQ] = ACTIONS(5546), + [anon_sym_BANG_EQ] = ACTIONS(5546), + [anon_sym_LT] = ACTIONS(5548), + [anon_sym_LT_EQ] = ACTIONS(5546), + [anon_sym_GT] = ACTIONS(5548), + [anon_sym_GT_EQ] = ACTIONS(5546), + [anon_sym_AMP] = ACTIONS(5548), + [anon_sym_xor] = ACTIONS(5548), + [anon_sym_LT_LT] = ACTIONS(5548), + [anon_sym_GT_GT] = ACTIONS(5548), + [anon_sym_LT_LT_PIPE] = ACTIONS(5548), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_SLASH] = ACTIONS(5548), + [anon_sym_catch] = ACTIONS(5548), + [anon_sym_TILDE] = ACTIONS(5546), + [anon_sym_try] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5548), + [anon_sym_CARET] = ACTIONS(5546), + [anon_sym_true] = ACTIONS(5548), + [anon_sym_false] = ACTIONS(5548), + [anon_sym_null] = ACTIONS(5548), + [anon_sym_unreachable] = ACTIONS(5548), + [anon_sym_undefined] = ACTIONS(5548), + [sym_sink] = ACTIONS(5548), + [sym_integer] = ACTIONS(5548), + [sym_float] = ACTIONS(5546), + [anon_sym_DQUOTE] = ACTIONS(5546), + [sym_multiline_string] = ACTIONS(5546), + [sym_character] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5546), + }, + [STATE(3805)] = { + [sym_identifier] = ACTIONS(5552), + [anon_sym_func] = ACTIONS(5552), + [anon_sym_BANG] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(5552), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_LPAREN] = ACTIONS(5550), + [anon_sym_LBRACE] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5552), + [anon_sym_DOLLAR] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5552), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_void] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_type] = ACTIONS(5552), + [anon_sym_anyopaque] = ACTIONS(5552), + [anon_sym_bool] = ACTIONS(5552), + [anon_sym_int] = ACTIONS(5552), + [anon_sym_uint] = ACTIONS(5552), + [anon_sym_float] = ACTIONS(5552), + [anon_sym_range] = ACTIONS(5552), + [anon_sym_i8] = ACTIONS(5552), + [anon_sym_i16] = ACTIONS(5552), + [anon_sym_i32] = ACTIONS(5552), + [anon_sym_i64] = ACTIONS(5552), + [anon_sym_u8] = ACTIONS(5552), + [anon_sym_u16] = ACTIONS(5552), + [anon_sym_u32] = ACTIONS(5552), + [anon_sym_u64] = ACTIONS(5552), + [anon_sym_isize] = ACTIONS(5552), + [anon_sym_usize] = ACTIONS(5552), + [anon_sym_f32] = ACTIONS(5552), + [anon_sym_f64] = ACTIONS(5552), + [anon_sym_c_char] = ACTIONS(5552), + [anon_sym_c_schar] = ACTIONS(5552), + [anon_sym_c_uchar] = ACTIONS(5552), + [anon_sym_c_short] = ACTIONS(5552), + [anon_sym_c_ushort] = ACTIONS(5552), + [anon_sym_c_int] = ACTIONS(5552), + [anon_sym_c_uint] = ACTIONS(5552), + [anon_sym_c_long] = ACTIONS(5552), + [anon_sym_c_ulong] = ACTIONS(5552), + [anon_sym_c_longlong] = ACTIONS(5552), + [anon_sym_c_ulonglong] = ACTIONS(5552), + [anon_sym_c_float] = ACTIONS(5552), + [anon_sym_c_double] = ACTIONS(5552), + [anon_sym_c_longdouble] = ACTIONS(5552), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5552), + [anon_sym_xor_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5550), + [anon_sym_return] = ACTIONS(5552), + [anon_sym_yield] = ACTIONS(5552), + [anon_sym_break] = ACTIONS(5552), + [anon_sym_continue] = ACTIONS(5552), + [anon_sym_defer] = ACTIONS(5552), + [anon_sym_errdefer] = ACTIONS(5552), + [anon_sym_if] = ACTIONS(5552), + [anon_sym_else] = ACTIONS(5552), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_expand] = ACTIONS(5552), + [anon_sym_for] = ACTIONS(5552), + [anon_sym_PIPE2] = ACTIONS(5550), + [anon_sym_match] = ACTIONS(5552), + [anon_sym_DOT_DOT] = ACTIONS(5552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5550), + [anon_sym_orelse] = ACTIONS(5552), + [anon_sym_or] = ACTIONS(5552), + [anon_sym_and] = ACTIONS(5552), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_LT] = ACTIONS(5552), + [anon_sym_LT_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5552), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP] = ACTIONS(5552), + [anon_sym_xor] = ACTIONS(5552), + [anon_sym_LT_LT] = ACTIONS(5552), + [anon_sym_GT_GT] = ACTIONS(5552), + [anon_sym_LT_LT_PIPE] = ACTIONS(5552), + [anon_sym_PLUS] = ACTIONS(5552), + [anon_sym_SLASH] = ACTIONS(5552), + [anon_sym_catch] = ACTIONS(5552), + [anon_sym_TILDE] = ACTIONS(5550), + [anon_sym_try] = ACTIONS(5552), + [anon_sym_DOT] = ACTIONS(5552), + [anon_sym_CARET] = ACTIONS(5550), + [anon_sym_true] = ACTIONS(5552), + [anon_sym_false] = ACTIONS(5552), + [anon_sym_null] = ACTIONS(5552), + [anon_sym_unreachable] = ACTIONS(5552), + [anon_sym_undefined] = ACTIONS(5552), + [sym_sink] = ACTIONS(5552), + [sym_integer] = ACTIONS(5552), + [sym_float] = ACTIONS(5550), + [anon_sym_DQUOTE] = ACTIONS(5550), + [sym_multiline_string] = ACTIONS(5550), + [sym_character] = ACTIONS(5550), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5550), + }, + [STATE(3806)] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_func] = ACTIONS(5560), + [anon_sym_BANG] = ACTIONS(5560), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_struct] = ACTIONS(5560), + [anon_sym_LPAREN] = ACTIONS(5558), + [anon_sym_LBRACE] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_DOLLAR] = ACTIONS(5558), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5558), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_void] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_type] = ACTIONS(5560), + [anon_sym_anyopaque] = ACTIONS(5560), + [anon_sym_bool] = ACTIONS(5560), + [anon_sym_int] = ACTIONS(5560), + [anon_sym_uint] = ACTIONS(5560), + [anon_sym_float] = ACTIONS(5560), + [anon_sym_range] = ACTIONS(5560), + [anon_sym_i8] = ACTIONS(5560), + [anon_sym_i16] = ACTIONS(5560), + [anon_sym_i32] = ACTIONS(5560), + [anon_sym_i64] = ACTIONS(5560), + [anon_sym_u8] = ACTIONS(5560), + [anon_sym_u16] = ACTIONS(5560), + [anon_sym_u32] = ACTIONS(5560), + [anon_sym_u64] = ACTIONS(5560), + [anon_sym_isize] = ACTIONS(5560), + [anon_sym_usize] = ACTIONS(5560), + [anon_sym_f32] = ACTIONS(5560), + [anon_sym_f64] = ACTIONS(5560), + [anon_sym_c_char] = ACTIONS(5560), + [anon_sym_c_schar] = ACTIONS(5560), + [anon_sym_c_uchar] = ACTIONS(5560), + [anon_sym_c_short] = ACTIONS(5560), + [anon_sym_c_ushort] = ACTIONS(5560), + [anon_sym_c_int] = ACTIONS(5560), + [anon_sym_c_uint] = ACTIONS(5560), + [anon_sym_c_long] = ACTIONS(5560), + [anon_sym_c_ulong] = ACTIONS(5560), + [anon_sym_c_longlong] = ACTIONS(5560), + [anon_sym_c_ulonglong] = ACTIONS(5560), + [anon_sym_c_float] = ACTIONS(5560), + [anon_sym_c_double] = ACTIONS(5560), + [anon_sym_c_longdouble] = ACTIONS(5560), + [anon_sym_PLUS_EQ] = ACTIONS(5558), + [anon_sym_DASH_EQ] = ACTIONS(5558), + [anon_sym_STAR_EQ] = ACTIONS(5558), + [anon_sym_SLASH_EQ] = ACTIONS(5558), + [anon_sym_AMP_EQ] = ACTIONS(5558), + [anon_sym_PIPE_EQ] = ACTIONS(5560), + [anon_sym_xor_EQ] = ACTIONS(5558), + [anon_sym_LT_LT_EQ] = ACTIONS(5558), + [anon_sym_GT_GT_EQ] = ACTIONS(5558), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5558), + [anon_sym_return] = ACTIONS(5560), + [anon_sym_yield] = ACTIONS(5560), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5560), + [anon_sym_defer] = ACTIONS(5560), + [anon_sym_errdefer] = ACTIONS(5560), + [anon_sym_if] = ACTIONS(5560), + [anon_sym_else] = ACTIONS(5560), + [anon_sym_while] = ACTIONS(5560), + [anon_sym_expand] = ACTIONS(5560), + [anon_sym_for] = ACTIONS(5560), + [anon_sym_PIPE2] = ACTIONS(5558), + [anon_sym_match] = ACTIONS(5560), + [anon_sym_DOT_DOT] = ACTIONS(5560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5558), + [anon_sym_orelse] = ACTIONS(5560), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5558), + [anon_sym_BANG_EQ] = ACTIONS(5558), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_EQ] = ACTIONS(5558), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_LT_LT_PIPE] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_catch] = ACTIONS(5560), + [anon_sym_TILDE] = ACTIONS(5558), + [anon_sym_try] = ACTIONS(5560), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5558), + [anon_sym_true] = ACTIONS(5560), + [anon_sym_false] = ACTIONS(5560), + [anon_sym_null] = ACTIONS(5560), + [anon_sym_unreachable] = ACTIONS(5560), + [anon_sym_undefined] = ACTIONS(5560), + [sym_sink] = ACTIONS(5560), + [sym_integer] = ACTIONS(5560), + [sym_float] = ACTIONS(5558), + [anon_sym_DQUOTE] = ACTIONS(5558), + [sym_multiline_string] = ACTIONS(5558), + [sym_character] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5558), + }, + [STATE(3807)] = { + [sym_identifier] = ACTIONS(5564), + [anon_sym_func] = ACTIONS(5564), + [anon_sym_BANG] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(5564), + [anon_sym_struct] = ACTIONS(5564), + [anon_sym_LPAREN] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_DOLLAR] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5564), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_void] = ACTIONS(5564), + [anon_sym_noreturn] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_anyopaque] = ACTIONS(5564), + [anon_sym_bool] = ACTIONS(5564), + [anon_sym_int] = ACTIONS(5564), + [anon_sym_uint] = ACTIONS(5564), + [anon_sym_float] = ACTIONS(5564), + [anon_sym_range] = ACTIONS(5564), + [anon_sym_i8] = ACTIONS(5564), + [anon_sym_i16] = ACTIONS(5564), + [anon_sym_i32] = ACTIONS(5564), + [anon_sym_i64] = ACTIONS(5564), + [anon_sym_u8] = ACTIONS(5564), + [anon_sym_u16] = ACTIONS(5564), + [anon_sym_u32] = ACTIONS(5564), + [anon_sym_u64] = ACTIONS(5564), + [anon_sym_isize] = ACTIONS(5564), + [anon_sym_usize] = ACTIONS(5564), + [anon_sym_f32] = ACTIONS(5564), + [anon_sym_f64] = ACTIONS(5564), + [anon_sym_c_char] = ACTIONS(5564), + [anon_sym_c_schar] = ACTIONS(5564), + [anon_sym_c_uchar] = ACTIONS(5564), + [anon_sym_c_short] = ACTIONS(5564), + [anon_sym_c_ushort] = ACTIONS(5564), + [anon_sym_c_int] = ACTIONS(5564), + [anon_sym_c_uint] = ACTIONS(5564), + [anon_sym_c_long] = ACTIONS(5564), + [anon_sym_c_ulong] = ACTIONS(5564), + [anon_sym_c_longlong] = ACTIONS(5564), + [anon_sym_c_ulonglong] = ACTIONS(5564), + [anon_sym_c_float] = ACTIONS(5564), + [anon_sym_c_double] = ACTIONS(5564), + [anon_sym_c_longdouble] = ACTIONS(5564), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5564), + [anon_sym_xor_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5562), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_break] = ACTIONS(5564), + [anon_sym_continue] = ACTIONS(5564), + [anon_sym_defer] = ACTIONS(5564), + [anon_sym_errdefer] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_else] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_expand] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_PIPE2] = ACTIONS(5562), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_DOT_DOT] = ACTIONS(5564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5562), + [anon_sym_orelse] = ACTIONS(5564), + [anon_sym_or] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_LT] = ACTIONS(5564), + [anon_sym_LT_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5564), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym_xor] = ACTIONS(5564), + [anon_sym_LT_LT] = ACTIONS(5564), + [anon_sym_GT_GT] = ACTIONS(5564), + [anon_sym_LT_LT_PIPE] = ACTIONS(5564), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_SLASH] = ACTIONS(5564), + [anon_sym_catch] = ACTIONS(5564), + [anon_sym_TILDE] = ACTIONS(5562), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5562), + [anon_sym_true] = ACTIONS(5564), + [anon_sym_false] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_unreachable] = ACTIONS(5564), + [anon_sym_undefined] = ACTIONS(5564), + [sym_sink] = ACTIONS(5564), + [sym_integer] = ACTIONS(5564), + [sym_float] = ACTIONS(5562), + [anon_sym_DQUOTE] = ACTIONS(5562), + [sym_multiline_string] = ACTIONS(5562), + [sym_character] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5562), + }, + [STATE(3808)] = { + [sym_identifier] = ACTIONS(5570), + [anon_sym_func] = ACTIONS(5570), + [anon_sym_BANG] = ACTIONS(5570), + [anon_sym_EQ] = ACTIONS(5570), + [anon_sym_struct] = ACTIONS(5570), + [anon_sym_LPAREN] = ACTIONS(5568), + [anon_sym_LBRACE] = ACTIONS(5568), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_DOLLAR] = ACTIONS(5568), + [anon_sym_PIPE] = ACTIONS(5570), + [anon_sym_QMARK] = ACTIONS(5568), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_void] = ACTIONS(5570), + [anon_sym_noreturn] = ACTIONS(5570), + [anon_sym_type] = ACTIONS(5570), + [anon_sym_anyopaque] = ACTIONS(5570), + [anon_sym_bool] = ACTIONS(5570), + [anon_sym_int] = ACTIONS(5570), + [anon_sym_uint] = ACTIONS(5570), + [anon_sym_float] = ACTIONS(5570), + [anon_sym_range] = ACTIONS(5570), + [anon_sym_i8] = ACTIONS(5570), + [anon_sym_i16] = ACTIONS(5570), + [anon_sym_i32] = ACTIONS(5570), + [anon_sym_i64] = ACTIONS(5570), + [anon_sym_u8] = ACTIONS(5570), + [anon_sym_u16] = ACTIONS(5570), + [anon_sym_u32] = ACTIONS(5570), + [anon_sym_u64] = ACTIONS(5570), + [anon_sym_isize] = ACTIONS(5570), + [anon_sym_usize] = ACTIONS(5570), + [anon_sym_f32] = ACTIONS(5570), + [anon_sym_f64] = ACTIONS(5570), + [anon_sym_c_char] = ACTIONS(5570), + [anon_sym_c_schar] = ACTIONS(5570), + [anon_sym_c_uchar] = ACTIONS(5570), + [anon_sym_c_short] = ACTIONS(5570), + [anon_sym_c_ushort] = ACTIONS(5570), + [anon_sym_c_int] = ACTIONS(5570), + [anon_sym_c_uint] = ACTIONS(5570), + [anon_sym_c_long] = ACTIONS(5570), + [anon_sym_c_ulong] = ACTIONS(5570), + [anon_sym_c_longlong] = ACTIONS(5570), + [anon_sym_c_ulonglong] = ACTIONS(5570), + [anon_sym_c_float] = ACTIONS(5570), + [anon_sym_c_double] = ACTIONS(5570), + [anon_sym_c_longdouble] = ACTIONS(5570), + [anon_sym_PLUS_EQ] = ACTIONS(5568), + [anon_sym_DASH_EQ] = ACTIONS(5568), + [anon_sym_STAR_EQ] = ACTIONS(5568), + [anon_sym_SLASH_EQ] = ACTIONS(5568), + [anon_sym_AMP_EQ] = ACTIONS(5568), + [anon_sym_PIPE_EQ] = ACTIONS(5570), + [anon_sym_xor_EQ] = ACTIONS(5568), + [anon_sym_LT_LT_EQ] = ACTIONS(5568), + [anon_sym_GT_GT_EQ] = ACTIONS(5568), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5568), + [anon_sym_return] = ACTIONS(5570), + [anon_sym_yield] = ACTIONS(5570), + [anon_sym_break] = ACTIONS(5570), + [anon_sym_continue] = ACTIONS(5570), + [anon_sym_defer] = ACTIONS(5570), + [anon_sym_errdefer] = ACTIONS(5570), + [anon_sym_if] = ACTIONS(5570), + [anon_sym_else] = ACTIONS(5570), + [anon_sym_while] = ACTIONS(5570), + [anon_sym_expand] = ACTIONS(5570), + [anon_sym_for] = ACTIONS(5570), + [anon_sym_PIPE2] = ACTIONS(5568), + [anon_sym_match] = ACTIONS(5570), + [anon_sym_DOT_DOT] = ACTIONS(5570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5568), + [anon_sym_orelse] = ACTIONS(5570), + [anon_sym_or] = ACTIONS(5570), + [anon_sym_and] = ACTIONS(5570), + [anon_sym_EQ_EQ] = ACTIONS(5568), + [anon_sym_BANG_EQ] = ACTIONS(5568), + [anon_sym_LT] = ACTIONS(5570), + [anon_sym_LT_EQ] = ACTIONS(5568), + [anon_sym_GT] = ACTIONS(5570), + [anon_sym_GT_EQ] = ACTIONS(5568), + [anon_sym_AMP] = ACTIONS(5570), + [anon_sym_xor] = ACTIONS(5570), + [anon_sym_LT_LT] = ACTIONS(5570), + [anon_sym_GT_GT] = ACTIONS(5570), + [anon_sym_LT_LT_PIPE] = ACTIONS(5570), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_SLASH] = ACTIONS(5570), + [anon_sym_catch] = ACTIONS(5570), + [anon_sym_TILDE] = ACTIONS(5568), + [anon_sym_try] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5570), + [anon_sym_CARET] = ACTIONS(5568), + [anon_sym_true] = ACTIONS(5570), + [anon_sym_false] = ACTIONS(5570), + [anon_sym_null] = ACTIONS(5570), + [anon_sym_unreachable] = ACTIONS(5570), + [anon_sym_undefined] = ACTIONS(5570), + [sym_sink] = ACTIONS(5570), + [sym_integer] = ACTIONS(5570), + [sym_float] = ACTIONS(5568), + [anon_sym_DQUOTE] = ACTIONS(5568), + [sym_multiline_string] = ACTIONS(5568), + [sym_character] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5568), + }, + [STATE(3809)] = { + [sym_identifier] = ACTIONS(5574), + [anon_sym_func] = ACTIONS(5574), + [anon_sym_BANG] = ACTIONS(5574), + [anon_sym_EQ] = ACTIONS(5574), + [anon_sym_struct] = ACTIONS(5574), + [anon_sym_LPAREN] = ACTIONS(5572), + [anon_sym_LBRACE] = ACTIONS(5572), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_DOLLAR] = ACTIONS(5572), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_QMARK] = ACTIONS(5572), + [anon_sym_STAR] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5572), + [anon_sym_void] = ACTIONS(5574), + [anon_sym_noreturn] = ACTIONS(5574), + [anon_sym_type] = ACTIONS(5574), + [anon_sym_anyopaque] = ACTIONS(5574), + [anon_sym_bool] = ACTIONS(5574), + [anon_sym_int] = ACTIONS(5574), + [anon_sym_uint] = ACTIONS(5574), + [anon_sym_float] = ACTIONS(5574), + [anon_sym_range] = ACTIONS(5574), + [anon_sym_i8] = ACTIONS(5574), + [anon_sym_i16] = ACTIONS(5574), + [anon_sym_i32] = ACTIONS(5574), + [anon_sym_i64] = ACTIONS(5574), + [anon_sym_u8] = ACTIONS(5574), + [anon_sym_u16] = ACTIONS(5574), + [anon_sym_u32] = ACTIONS(5574), + [anon_sym_u64] = ACTIONS(5574), + [anon_sym_isize] = ACTIONS(5574), + [anon_sym_usize] = ACTIONS(5574), + [anon_sym_f32] = ACTIONS(5574), + [anon_sym_f64] = ACTIONS(5574), + [anon_sym_c_char] = ACTIONS(5574), + [anon_sym_c_schar] = ACTIONS(5574), + [anon_sym_c_uchar] = ACTIONS(5574), + [anon_sym_c_short] = ACTIONS(5574), + [anon_sym_c_ushort] = ACTIONS(5574), + [anon_sym_c_int] = ACTIONS(5574), + [anon_sym_c_uint] = ACTIONS(5574), + [anon_sym_c_long] = ACTIONS(5574), + [anon_sym_c_ulong] = ACTIONS(5574), + [anon_sym_c_longlong] = ACTIONS(5574), + [anon_sym_c_ulonglong] = ACTIONS(5574), + [anon_sym_c_float] = ACTIONS(5574), + [anon_sym_c_double] = ACTIONS(5574), + [anon_sym_c_longdouble] = ACTIONS(5574), + [anon_sym_PLUS_EQ] = ACTIONS(5572), + [anon_sym_DASH_EQ] = ACTIONS(5572), + [anon_sym_STAR_EQ] = ACTIONS(5572), + [anon_sym_SLASH_EQ] = ACTIONS(5572), + [anon_sym_AMP_EQ] = ACTIONS(5572), + [anon_sym_PIPE_EQ] = ACTIONS(5574), + [anon_sym_xor_EQ] = ACTIONS(5572), + [anon_sym_LT_LT_EQ] = ACTIONS(5572), + [anon_sym_GT_GT_EQ] = ACTIONS(5572), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5572), + [anon_sym_return] = ACTIONS(5574), + [anon_sym_yield] = ACTIONS(5574), + [anon_sym_break] = ACTIONS(5574), + [anon_sym_continue] = ACTIONS(5574), + [anon_sym_defer] = ACTIONS(5574), + [anon_sym_errdefer] = ACTIONS(5574), + [anon_sym_if] = ACTIONS(5574), + [anon_sym_else] = ACTIONS(5574), + [anon_sym_while] = ACTIONS(5574), + [anon_sym_expand] = ACTIONS(5574), + [anon_sym_for] = ACTIONS(5574), + [anon_sym_PIPE2] = ACTIONS(5572), + [anon_sym_match] = ACTIONS(5574), + [anon_sym_DOT_DOT] = ACTIONS(5574), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5572), + [anon_sym_orelse] = ACTIONS(5574), + [anon_sym_or] = ACTIONS(5574), + [anon_sym_and] = ACTIONS(5574), + [anon_sym_EQ_EQ] = ACTIONS(5572), + [anon_sym_BANG_EQ] = ACTIONS(5572), + [anon_sym_LT] = ACTIONS(5574), + [anon_sym_LT_EQ] = ACTIONS(5572), + [anon_sym_GT] = ACTIONS(5574), + [anon_sym_GT_EQ] = ACTIONS(5572), + [anon_sym_AMP] = ACTIONS(5574), + [anon_sym_xor] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [anon_sym_LT_LT_PIPE] = ACTIONS(5574), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5574), + [anon_sym_catch] = ACTIONS(5574), + [anon_sym_TILDE] = ACTIONS(5572), + [anon_sym_try] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5572), + [anon_sym_true] = ACTIONS(5574), + [anon_sym_false] = ACTIONS(5574), + [anon_sym_null] = ACTIONS(5574), + [anon_sym_unreachable] = ACTIONS(5574), + [anon_sym_undefined] = ACTIONS(5574), + [sym_sink] = ACTIONS(5574), + [sym_integer] = ACTIONS(5574), + [sym_float] = ACTIONS(5572), + [anon_sym_DQUOTE] = ACTIONS(5572), + [sym_multiline_string] = ACTIONS(5572), + [sym_character] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5572), + }, + [STATE(3810)] = { + [sym_identifier] = ACTIONS(5578), + [anon_sym_func] = ACTIONS(5578), + [anon_sym_BANG] = ACTIONS(5578), + [anon_sym_EQ] = ACTIONS(5578), + [anon_sym_struct] = ACTIONS(5578), + [anon_sym_LPAREN] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5576), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_DOLLAR] = ACTIONS(5576), + [anon_sym_PIPE] = ACTIONS(5578), + [anon_sym_QMARK] = ACTIONS(5576), + [anon_sym_STAR] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym_void] = ACTIONS(5578), + [anon_sym_noreturn] = ACTIONS(5578), + [anon_sym_type] = ACTIONS(5578), + [anon_sym_anyopaque] = ACTIONS(5578), + [anon_sym_bool] = ACTIONS(5578), + [anon_sym_int] = ACTIONS(5578), + [anon_sym_uint] = ACTIONS(5578), + [anon_sym_float] = ACTIONS(5578), + [anon_sym_range] = ACTIONS(5578), + [anon_sym_i8] = ACTIONS(5578), + [anon_sym_i16] = ACTIONS(5578), + [anon_sym_i32] = ACTIONS(5578), + [anon_sym_i64] = ACTIONS(5578), + [anon_sym_u8] = ACTIONS(5578), + [anon_sym_u16] = ACTIONS(5578), + [anon_sym_u32] = ACTIONS(5578), + [anon_sym_u64] = ACTIONS(5578), + [anon_sym_isize] = ACTIONS(5578), + [anon_sym_usize] = ACTIONS(5578), + [anon_sym_f32] = ACTIONS(5578), + [anon_sym_f64] = ACTIONS(5578), + [anon_sym_c_char] = ACTIONS(5578), + [anon_sym_c_schar] = ACTIONS(5578), + [anon_sym_c_uchar] = ACTIONS(5578), + [anon_sym_c_short] = ACTIONS(5578), + [anon_sym_c_ushort] = ACTIONS(5578), + [anon_sym_c_int] = ACTIONS(5578), + [anon_sym_c_uint] = ACTIONS(5578), + [anon_sym_c_long] = ACTIONS(5578), + [anon_sym_c_ulong] = ACTIONS(5578), + [anon_sym_c_longlong] = ACTIONS(5578), + [anon_sym_c_ulonglong] = ACTIONS(5578), + [anon_sym_c_float] = ACTIONS(5578), + [anon_sym_c_double] = ACTIONS(5578), + [anon_sym_c_longdouble] = ACTIONS(5578), + [anon_sym_PLUS_EQ] = ACTIONS(5576), + [anon_sym_DASH_EQ] = ACTIONS(5576), + [anon_sym_STAR_EQ] = ACTIONS(5576), + [anon_sym_SLASH_EQ] = ACTIONS(5576), + [anon_sym_AMP_EQ] = ACTIONS(5576), + [anon_sym_PIPE_EQ] = ACTIONS(5578), + [anon_sym_xor_EQ] = ACTIONS(5576), + [anon_sym_LT_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_GT_EQ] = ACTIONS(5576), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5576), + [anon_sym_return] = ACTIONS(5578), + [anon_sym_yield] = ACTIONS(5578), + [anon_sym_break] = ACTIONS(5578), + [anon_sym_continue] = ACTIONS(5578), + [anon_sym_defer] = ACTIONS(5578), + [anon_sym_errdefer] = ACTIONS(5578), + [anon_sym_if] = ACTIONS(5578), + [anon_sym_else] = ACTIONS(5578), + [anon_sym_while] = ACTIONS(5578), + [anon_sym_expand] = ACTIONS(5578), + [anon_sym_for] = ACTIONS(5578), + [anon_sym_PIPE2] = ACTIONS(5576), + [anon_sym_match] = ACTIONS(5578), + [anon_sym_DOT_DOT] = ACTIONS(5578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5576), + [anon_sym_orelse] = ACTIONS(5578), + [anon_sym_or] = ACTIONS(5578), + [anon_sym_and] = ACTIONS(5578), + [anon_sym_EQ_EQ] = ACTIONS(5576), + [anon_sym_BANG_EQ] = ACTIONS(5576), + [anon_sym_LT] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5578), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_AMP] = ACTIONS(5578), + [anon_sym_xor] = ACTIONS(5578), + [anon_sym_LT_LT] = ACTIONS(5578), + [anon_sym_GT_GT] = ACTIONS(5578), + [anon_sym_LT_LT_PIPE] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_SLASH] = ACTIONS(5578), + [anon_sym_catch] = ACTIONS(5578), + [anon_sym_TILDE] = ACTIONS(5576), + [anon_sym_try] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_CARET] = ACTIONS(5576), + [anon_sym_true] = ACTIONS(5578), + [anon_sym_false] = ACTIONS(5578), + [anon_sym_null] = ACTIONS(5578), + [anon_sym_unreachable] = ACTIONS(5578), + [anon_sym_undefined] = ACTIONS(5578), + [sym_sink] = ACTIONS(5578), + [sym_integer] = ACTIONS(5578), + [sym_float] = ACTIONS(5576), + [anon_sym_DQUOTE] = ACTIONS(5576), + [sym_multiline_string] = ACTIONS(5576), + [sym_character] = ACTIONS(5576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5576), + }, + [STATE(3811)] = { + [sym_identifier] = ACTIONS(5582), + [anon_sym_func] = ACTIONS(5582), + [anon_sym_BANG] = ACTIONS(5582), + [anon_sym_EQ] = ACTIONS(5582), + [anon_sym_struct] = ACTIONS(5582), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_LBRACE] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_DOLLAR] = ACTIONS(5580), + [anon_sym_PIPE] = ACTIONS(5582), + [anon_sym_QMARK] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5580), + [anon_sym_void] = ACTIONS(5582), + [anon_sym_noreturn] = ACTIONS(5582), + [anon_sym_type] = ACTIONS(5582), + [anon_sym_anyopaque] = ACTIONS(5582), + [anon_sym_bool] = ACTIONS(5582), + [anon_sym_int] = ACTIONS(5582), + [anon_sym_uint] = ACTIONS(5582), + [anon_sym_float] = ACTIONS(5582), + [anon_sym_range] = ACTIONS(5582), + [anon_sym_i8] = ACTIONS(5582), + [anon_sym_i16] = ACTIONS(5582), + [anon_sym_i32] = ACTIONS(5582), + [anon_sym_i64] = ACTIONS(5582), + [anon_sym_u8] = ACTIONS(5582), + [anon_sym_u16] = ACTIONS(5582), + [anon_sym_u32] = ACTIONS(5582), + [anon_sym_u64] = ACTIONS(5582), + [anon_sym_isize] = ACTIONS(5582), + [anon_sym_usize] = ACTIONS(5582), + [anon_sym_f32] = ACTIONS(5582), + [anon_sym_f64] = ACTIONS(5582), + [anon_sym_c_char] = ACTIONS(5582), + [anon_sym_c_schar] = ACTIONS(5582), + [anon_sym_c_uchar] = ACTIONS(5582), + [anon_sym_c_short] = ACTIONS(5582), + [anon_sym_c_ushort] = ACTIONS(5582), + [anon_sym_c_int] = ACTIONS(5582), + [anon_sym_c_uint] = ACTIONS(5582), + [anon_sym_c_long] = ACTIONS(5582), + [anon_sym_c_ulong] = ACTIONS(5582), + [anon_sym_c_longlong] = ACTIONS(5582), + [anon_sym_c_ulonglong] = ACTIONS(5582), + [anon_sym_c_float] = ACTIONS(5582), + [anon_sym_c_double] = ACTIONS(5582), + [anon_sym_c_longdouble] = ACTIONS(5582), + [anon_sym_PLUS_EQ] = ACTIONS(5580), + [anon_sym_DASH_EQ] = ACTIONS(5580), + [anon_sym_STAR_EQ] = ACTIONS(5580), + [anon_sym_SLASH_EQ] = ACTIONS(5580), + [anon_sym_AMP_EQ] = ACTIONS(5580), + [anon_sym_PIPE_EQ] = ACTIONS(5582), + [anon_sym_xor_EQ] = ACTIONS(5580), + [anon_sym_LT_LT_EQ] = ACTIONS(5580), + [anon_sym_GT_GT_EQ] = ACTIONS(5580), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5580), + [anon_sym_return] = ACTIONS(5582), + [anon_sym_yield] = ACTIONS(5582), + [anon_sym_break] = ACTIONS(5582), + [anon_sym_continue] = ACTIONS(5582), + [anon_sym_defer] = ACTIONS(5582), + [anon_sym_errdefer] = ACTIONS(5582), + [anon_sym_if] = ACTIONS(5582), + [anon_sym_else] = ACTIONS(5582), + [anon_sym_while] = ACTIONS(5582), + [anon_sym_expand] = ACTIONS(5582), + [anon_sym_for] = ACTIONS(5582), + [anon_sym_PIPE2] = ACTIONS(5580), + [anon_sym_match] = ACTIONS(5582), + [anon_sym_DOT_DOT] = ACTIONS(5582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5580), + [anon_sym_orelse] = ACTIONS(5582), + [anon_sym_or] = ACTIONS(5582), + [anon_sym_and] = ACTIONS(5582), + [anon_sym_EQ_EQ] = ACTIONS(5580), + [anon_sym_BANG_EQ] = ACTIONS(5580), + [anon_sym_LT] = ACTIONS(5582), + [anon_sym_LT_EQ] = ACTIONS(5580), + [anon_sym_GT] = ACTIONS(5582), + [anon_sym_GT_EQ] = ACTIONS(5580), + [anon_sym_AMP] = ACTIONS(5582), + [anon_sym_xor] = ACTIONS(5582), + [anon_sym_LT_LT] = ACTIONS(5582), + [anon_sym_GT_GT] = ACTIONS(5582), + [anon_sym_LT_LT_PIPE] = ACTIONS(5582), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_catch] = ACTIONS(5582), + [anon_sym_TILDE] = ACTIONS(5580), + [anon_sym_try] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(5582), + [anon_sym_CARET] = ACTIONS(5580), + [anon_sym_true] = ACTIONS(5582), + [anon_sym_false] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(5582), + [anon_sym_unreachable] = ACTIONS(5582), + [anon_sym_undefined] = ACTIONS(5582), + [sym_sink] = ACTIONS(5582), + [sym_integer] = ACTIONS(5582), + [sym_float] = ACTIONS(5580), + [anon_sym_DQUOTE] = ACTIONS(5580), + [sym_multiline_string] = ACTIONS(5580), + [sym_character] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5580), + }, + [STATE(3812)] = { + [sym_identifier] = ACTIONS(5590), + [anon_sym_func] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(5590), + [anon_sym_struct] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5588), + [anon_sym_LBRACE] = ACTIONS(5588), + [anon_sym_DASH] = ACTIONS(5590), + [anon_sym_DOLLAR] = ACTIONS(5588), + [anon_sym_PIPE] = ACTIONS(5590), + [anon_sym_QMARK] = ACTIONS(5588), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(5588), + [anon_sym_void] = ACTIONS(5590), + [anon_sym_noreturn] = ACTIONS(5590), + [anon_sym_type] = ACTIONS(5590), + [anon_sym_anyopaque] = ACTIONS(5590), + [anon_sym_bool] = ACTIONS(5590), + [anon_sym_int] = ACTIONS(5590), + [anon_sym_uint] = ACTIONS(5590), + [anon_sym_float] = ACTIONS(5590), + [anon_sym_range] = ACTIONS(5590), + [anon_sym_i8] = ACTIONS(5590), + [anon_sym_i16] = ACTIONS(5590), + [anon_sym_i32] = ACTIONS(5590), + [anon_sym_i64] = ACTIONS(5590), + [anon_sym_u8] = ACTIONS(5590), + [anon_sym_u16] = ACTIONS(5590), + [anon_sym_u32] = ACTIONS(5590), + [anon_sym_u64] = ACTIONS(5590), + [anon_sym_isize] = ACTIONS(5590), + [anon_sym_usize] = ACTIONS(5590), + [anon_sym_f32] = ACTIONS(5590), + [anon_sym_f64] = ACTIONS(5590), + [anon_sym_c_char] = ACTIONS(5590), + [anon_sym_c_schar] = ACTIONS(5590), + [anon_sym_c_uchar] = ACTIONS(5590), + [anon_sym_c_short] = ACTIONS(5590), + [anon_sym_c_ushort] = ACTIONS(5590), + [anon_sym_c_int] = ACTIONS(5590), + [anon_sym_c_uint] = ACTIONS(5590), + [anon_sym_c_long] = ACTIONS(5590), + [anon_sym_c_ulong] = ACTIONS(5590), + [anon_sym_c_longlong] = ACTIONS(5590), + [anon_sym_c_ulonglong] = ACTIONS(5590), + [anon_sym_c_float] = ACTIONS(5590), + [anon_sym_c_double] = ACTIONS(5590), + [anon_sym_c_longdouble] = ACTIONS(5590), + [anon_sym_PLUS_EQ] = ACTIONS(5588), + [anon_sym_DASH_EQ] = ACTIONS(5588), + [anon_sym_STAR_EQ] = ACTIONS(5588), + [anon_sym_SLASH_EQ] = ACTIONS(5588), + [anon_sym_AMP_EQ] = ACTIONS(5588), + [anon_sym_PIPE_EQ] = ACTIONS(5590), + [anon_sym_xor_EQ] = ACTIONS(5588), + [anon_sym_LT_LT_EQ] = ACTIONS(5588), + [anon_sym_GT_GT_EQ] = ACTIONS(5588), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5588), + [anon_sym_return] = ACTIONS(5590), + [anon_sym_yield] = ACTIONS(5590), + [anon_sym_break] = ACTIONS(5590), + [anon_sym_continue] = ACTIONS(5590), + [anon_sym_defer] = ACTIONS(5590), + [anon_sym_errdefer] = ACTIONS(5590), + [anon_sym_if] = ACTIONS(5590), + [anon_sym_else] = ACTIONS(5590), + [anon_sym_while] = ACTIONS(5590), + [anon_sym_expand] = ACTIONS(5590), + [anon_sym_for] = ACTIONS(5590), + [anon_sym_PIPE2] = ACTIONS(5588), + [anon_sym_match] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5588), + [anon_sym_orelse] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_EQ_EQ] = ACTIONS(5588), + [anon_sym_BANG_EQ] = ACTIONS(5588), + [anon_sym_LT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5588), + [anon_sym_GT] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5588), + [anon_sym_AMP] = ACTIONS(5590), + [anon_sym_xor] = ACTIONS(5590), + [anon_sym_LT_LT] = ACTIONS(5590), + [anon_sym_GT_GT] = ACTIONS(5590), + [anon_sym_LT_LT_PIPE] = ACTIONS(5590), + [anon_sym_PLUS] = ACTIONS(5590), + [anon_sym_SLASH] = ACTIONS(5590), + [anon_sym_catch] = ACTIONS(5590), + [anon_sym_TILDE] = ACTIONS(5588), + [anon_sym_try] = ACTIONS(5590), + [anon_sym_DOT] = ACTIONS(5590), + [anon_sym_CARET] = ACTIONS(5588), + [anon_sym_true] = ACTIONS(5590), + [anon_sym_false] = ACTIONS(5590), + [anon_sym_null] = ACTIONS(5590), + [anon_sym_unreachable] = ACTIONS(5590), + [anon_sym_undefined] = ACTIONS(5590), + [sym_sink] = ACTIONS(5590), + [sym_integer] = ACTIONS(5590), + [sym_float] = ACTIONS(5588), + [anon_sym_DQUOTE] = ACTIONS(5588), + [sym_multiline_string] = ACTIONS(5588), + [sym_character] = ACTIONS(5588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5588), + }, + [STATE(3813)] = { + [sym_identifier] = ACTIONS(5594), + [anon_sym_func] = ACTIONS(5594), + [anon_sym_BANG] = ACTIONS(5594), + [anon_sym_EQ] = ACTIONS(5594), + [anon_sym_struct] = ACTIONS(5594), + [anon_sym_LPAREN] = ACTIONS(5592), + [anon_sym_LBRACE] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5594), + [anon_sym_DOLLAR] = ACTIONS(5592), + [anon_sym_PIPE] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_STAR] = ACTIONS(5594), + [anon_sym_LBRACK] = ACTIONS(5592), + [anon_sym_void] = ACTIONS(5594), + [anon_sym_noreturn] = ACTIONS(5594), + [anon_sym_type] = ACTIONS(5594), + [anon_sym_anyopaque] = ACTIONS(5594), + [anon_sym_bool] = ACTIONS(5594), + [anon_sym_int] = ACTIONS(5594), + [anon_sym_uint] = ACTIONS(5594), + [anon_sym_float] = ACTIONS(5594), + [anon_sym_range] = ACTIONS(5594), + [anon_sym_i8] = ACTIONS(5594), + [anon_sym_i16] = ACTIONS(5594), + [anon_sym_i32] = ACTIONS(5594), + [anon_sym_i64] = ACTIONS(5594), + [anon_sym_u8] = ACTIONS(5594), + [anon_sym_u16] = ACTIONS(5594), + [anon_sym_u32] = ACTIONS(5594), + [anon_sym_u64] = ACTIONS(5594), + [anon_sym_isize] = ACTIONS(5594), + [anon_sym_usize] = ACTIONS(5594), + [anon_sym_f32] = ACTIONS(5594), + [anon_sym_f64] = ACTIONS(5594), + [anon_sym_c_char] = ACTIONS(5594), + [anon_sym_c_schar] = ACTIONS(5594), + [anon_sym_c_uchar] = ACTIONS(5594), + [anon_sym_c_short] = ACTIONS(5594), + [anon_sym_c_ushort] = ACTIONS(5594), + [anon_sym_c_int] = ACTIONS(5594), + [anon_sym_c_uint] = ACTIONS(5594), + [anon_sym_c_long] = ACTIONS(5594), + [anon_sym_c_ulong] = ACTIONS(5594), + [anon_sym_c_longlong] = ACTIONS(5594), + [anon_sym_c_ulonglong] = ACTIONS(5594), + [anon_sym_c_float] = ACTIONS(5594), + [anon_sym_c_double] = ACTIONS(5594), + [anon_sym_c_longdouble] = ACTIONS(5594), + [anon_sym_PLUS_EQ] = ACTIONS(5592), + [anon_sym_DASH_EQ] = ACTIONS(5592), + [anon_sym_STAR_EQ] = ACTIONS(5592), + [anon_sym_SLASH_EQ] = ACTIONS(5592), + [anon_sym_AMP_EQ] = ACTIONS(5592), + [anon_sym_PIPE_EQ] = ACTIONS(5594), + [anon_sym_xor_EQ] = ACTIONS(5592), + [anon_sym_LT_LT_EQ] = ACTIONS(5592), + [anon_sym_GT_GT_EQ] = ACTIONS(5592), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5592), + [anon_sym_return] = ACTIONS(5594), + [anon_sym_yield] = ACTIONS(5594), + [anon_sym_break] = ACTIONS(5594), + [anon_sym_continue] = ACTIONS(5594), + [anon_sym_defer] = ACTIONS(5594), + [anon_sym_errdefer] = ACTIONS(5594), + [anon_sym_if] = ACTIONS(5594), + [anon_sym_else] = ACTIONS(5594), + [anon_sym_while] = ACTIONS(5594), + [anon_sym_expand] = ACTIONS(5594), + [anon_sym_for] = ACTIONS(5594), + [anon_sym_PIPE2] = ACTIONS(5592), + [anon_sym_match] = ACTIONS(5594), + [anon_sym_DOT_DOT] = ACTIONS(5594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5592), + [anon_sym_orelse] = ACTIONS(5594), + [anon_sym_or] = ACTIONS(5594), + [anon_sym_and] = ACTIONS(5594), + [anon_sym_EQ_EQ] = ACTIONS(5592), + [anon_sym_BANG_EQ] = ACTIONS(5592), + [anon_sym_LT] = ACTIONS(5594), + [anon_sym_LT_EQ] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5594), + [anon_sym_GT_EQ] = ACTIONS(5592), + [anon_sym_AMP] = ACTIONS(5594), + [anon_sym_xor] = ACTIONS(5594), + [anon_sym_LT_LT] = ACTIONS(5594), + [anon_sym_GT_GT] = ACTIONS(5594), + [anon_sym_LT_LT_PIPE] = ACTIONS(5594), + [anon_sym_PLUS] = ACTIONS(5594), + [anon_sym_SLASH] = ACTIONS(5594), + [anon_sym_catch] = ACTIONS(5594), + [anon_sym_TILDE] = ACTIONS(5592), + [anon_sym_try] = ACTIONS(5594), + [anon_sym_DOT] = ACTIONS(5594), + [anon_sym_CARET] = ACTIONS(5592), + [anon_sym_true] = ACTIONS(5594), + [anon_sym_false] = ACTIONS(5594), + [anon_sym_null] = ACTIONS(5594), + [anon_sym_unreachable] = ACTIONS(5594), + [anon_sym_undefined] = ACTIONS(5594), + [sym_sink] = ACTIONS(5594), + [sym_integer] = ACTIONS(5594), + [sym_float] = ACTIONS(5592), + [anon_sym_DQUOTE] = ACTIONS(5592), + [sym_multiline_string] = ACTIONS(5592), + [sym_character] = ACTIONS(5592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5592), + }, + [STATE(3814)] = { + [sym_identifier] = ACTIONS(5598), + [anon_sym_func] = ACTIONS(5598), + [anon_sym_BANG] = ACTIONS(5598), + [anon_sym_EQ] = ACTIONS(5598), + [anon_sym_struct] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5596), + [anon_sym_LBRACE] = ACTIONS(5596), + [anon_sym_DASH] = ACTIONS(5598), + [anon_sym_DOLLAR] = ACTIONS(5596), + [anon_sym_PIPE] = ACTIONS(5598), + [anon_sym_QMARK] = ACTIONS(5596), + [anon_sym_STAR] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5596), + [anon_sym_void] = ACTIONS(5598), + [anon_sym_noreturn] = ACTIONS(5598), + [anon_sym_type] = ACTIONS(5598), + [anon_sym_anyopaque] = ACTIONS(5598), + [anon_sym_bool] = ACTIONS(5598), + [anon_sym_int] = ACTIONS(5598), + [anon_sym_uint] = ACTIONS(5598), + [anon_sym_float] = ACTIONS(5598), + [anon_sym_range] = ACTIONS(5598), + [anon_sym_i8] = ACTIONS(5598), + [anon_sym_i16] = ACTIONS(5598), + [anon_sym_i32] = ACTIONS(5598), + [anon_sym_i64] = ACTIONS(5598), + [anon_sym_u8] = ACTIONS(5598), + [anon_sym_u16] = ACTIONS(5598), + [anon_sym_u32] = ACTIONS(5598), + [anon_sym_u64] = ACTIONS(5598), + [anon_sym_isize] = ACTIONS(5598), + [anon_sym_usize] = ACTIONS(5598), + [anon_sym_f32] = ACTIONS(5598), + [anon_sym_f64] = ACTIONS(5598), + [anon_sym_c_char] = ACTIONS(5598), + [anon_sym_c_schar] = ACTIONS(5598), + [anon_sym_c_uchar] = ACTIONS(5598), + [anon_sym_c_short] = ACTIONS(5598), + [anon_sym_c_ushort] = ACTIONS(5598), + [anon_sym_c_int] = ACTIONS(5598), + [anon_sym_c_uint] = ACTIONS(5598), + [anon_sym_c_long] = ACTIONS(5598), + [anon_sym_c_ulong] = ACTIONS(5598), + [anon_sym_c_longlong] = ACTIONS(5598), + [anon_sym_c_ulonglong] = ACTIONS(5598), + [anon_sym_c_float] = ACTIONS(5598), + [anon_sym_c_double] = ACTIONS(5598), + [anon_sym_c_longdouble] = ACTIONS(5598), + [anon_sym_PLUS_EQ] = ACTIONS(5596), + [anon_sym_DASH_EQ] = ACTIONS(5596), + [anon_sym_STAR_EQ] = ACTIONS(5596), + [anon_sym_SLASH_EQ] = ACTIONS(5596), + [anon_sym_AMP_EQ] = ACTIONS(5596), + [anon_sym_PIPE_EQ] = ACTIONS(5598), + [anon_sym_xor_EQ] = ACTIONS(5596), + [anon_sym_LT_LT_EQ] = ACTIONS(5596), + [anon_sym_GT_GT_EQ] = ACTIONS(5596), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5596), + [anon_sym_return] = ACTIONS(5598), + [anon_sym_yield] = ACTIONS(5598), + [anon_sym_break] = ACTIONS(5598), + [anon_sym_continue] = ACTIONS(5598), + [anon_sym_defer] = ACTIONS(5598), + [anon_sym_errdefer] = ACTIONS(5598), + [anon_sym_if] = ACTIONS(5598), + [anon_sym_else] = ACTIONS(5598), + [anon_sym_while] = ACTIONS(5598), + [anon_sym_expand] = ACTIONS(5598), + [anon_sym_for] = ACTIONS(5598), + [anon_sym_PIPE2] = ACTIONS(5596), + [anon_sym_match] = ACTIONS(5598), + [anon_sym_DOT_DOT] = ACTIONS(5598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5596), + [anon_sym_orelse] = ACTIONS(5598), + [anon_sym_or] = ACTIONS(5598), + [anon_sym_and] = ACTIONS(5598), + [anon_sym_EQ_EQ] = ACTIONS(5596), + [anon_sym_BANG_EQ] = ACTIONS(5596), + [anon_sym_LT] = ACTIONS(5598), + [anon_sym_LT_EQ] = ACTIONS(5596), + [anon_sym_GT] = ACTIONS(5598), + [anon_sym_GT_EQ] = ACTIONS(5596), + [anon_sym_AMP] = ACTIONS(5598), + [anon_sym_xor] = ACTIONS(5598), + [anon_sym_LT_LT] = ACTIONS(5598), + [anon_sym_GT_GT] = ACTIONS(5598), + [anon_sym_LT_LT_PIPE] = ACTIONS(5598), + [anon_sym_PLUS] = ACTIONS(5598), + [anon_sym_SLASH] = ACTIONS(5598), + [anon_sym_catch] = ACTIONS(5598), + [anon_sym_TILDE] = ACTIONS(5596), + [anon_sym_try] = ACTIONS(5598), + [anon_sym_DOT] = ACTIONS(5598), + [anon_sym_CARET] = ACTIONS(5596), + [anon_sym_true] = ACTIONS(5598), + [anon_sym_false] = ACTIONS(5598), + [anon_sym_null] = ACTIONS(5598), + [anon_sym_unreachable] = ACTIONS(5598), + [anon_sym_undefined] = ACTIONS(5598), + [sym_sink] = ACTIONS(5598), + [sym_integer] = ACTIONS(5598), + [sym_float] = ACTIONS(5596), + [anon_sym_DQUOTE] = ACTIONS(5596), + [sym_multiline_string] = ACTIONS(5596), + [sym_character] = ACTIONS(5596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5596), + }, + [STATE(3815)] = { + [sym_identifier] = ACTIONS(5602), + [anon_sym_func] = ACTIONS(5602), + [anon_sym_BANG] = ACTIONS(5602), + [anon_sym_EQ] = ACTIONS(5602), + [anon_sym_struct] = ACTIONS(5602), + [anon_sym_LPAREN] = ACTIONS(5600), + [anon_sym_LBRACE] = ACTIONS(5600), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_DOLLAR] = ACTIONS(5600), + [anon_sym_PIPE] = ACTIONS(5602), + [anon_sym_QMARK] = ACTIONS(5600), + [anon_sym_STAR] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_void] = ACTIONS(5602), + [anon_sym_noreturn] = ACTIONS(5602), + [anon_sym_type] = ACTIONS(5602), + [anon_sym_anyopaque] = ACTIONS(5602), + [anon_sym_bool] = ACTIONS(5602), + [anon_sym_int] = ACTIONS(5602), + [anon_sym_uint] = ACTIONS(5602), + [anon_sym_float] = ACTIONS(5602), + [anon_sym_range] = ACTIONS(5602), + [anon_sym_i8] = ACTIONS(5602), + [anon_sym_i16] = ACTIONS(5602), + [anon_sym_i32] = ACTIONS(5602), + [anon_sym_i64] = ACTIONS(5602), + [anon_sym_u8] = ACTIONS(5602), + [anon_sym_u16] = ACTIONS(5602), + [anon_sym_u32] = ACTIONS(5602), + [anon_sym_u64] = ACTIONS(5602), + [anon_sym_isize] = ACTIONS(5602), + [anon_sym_usize] = ACTIONS(5602), + [anon_sym_f32] = ACTIONS(5602), + [anon_sym_f64] = ACTIONS(5602), + [anon_sym_c_char] = ACTIONS(5602), + [anon_sym_c_schar] = ACTIONS(5602), + [anon_sym_c_uchar] = ACTIONS(5602), + [anon_sym_c_short] = ACTIONS(5602), + [anon_sym_c_ushort] = ACTIONS(5602), + [anon_sym_c_int] = ACTIONS(5602), + [anon_sym_c_uint] = ACTIONS(5602), + [anon_sym_c_long] = ACTIONS(5602), + [anon_sym_c_ulong] = ACTIONS(5602), + [anon_sym_c_longlong] = ACTIONS(5602), + [anon_sym_c_ulonglong] = ACTIONS(5602), + [anon_sym_c_float] = ACTIONS(5602), + [anon_sym_c_double] = ACTIONS(5602), + [anon_sym_c_longdouble] = ACTIONS(5602), + [anon_sym_PLUS_EQ] = ACTIONS(5600), + [anon_sym_DASH_EQ] = ACTIONS(5600), + [anon_sym_STAR_EQ] = ACTIONS(5600), + [anon_sym_SLASH_EQ] = ACTIONS(5600), + [anon_sym_AMP_EQ] = ACTIONS(5600), + [anon_sym_PIPE_EQ] = ACTIONS(5602), + [anon_sym_xor_EQ] = ACTIONS(5600), + [anon_sym_LT_LT_EQ] = ACTIONS(5600), + [anon_sym_GT_GT_EQ] = ACTIONS(5600), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5600), + [anon_sym_return] = ACTIONS(5602), + [anon_sym_yield] = ACTIONS(5602), + [anon_sym_break] = ACTIONS(5602), + [anon_sym_continue] = ACTIONS(5602), + [anon_sym_defer] = ACTIONS(5602), + [anon_sym_errdefer] = ACTIONS(5602), + [anon_sym_if] = ACTIONS(5602), + [anon_sym_else] = ACTIONS(5602), + [anon_sym_while] = ACTIONS(5602), + [anon_sym_expand] = ACTIONS(5602), + [anon_sym_for] = ACTIONS(5602), + [anon_sym_PIPE2] = ACTIONS(5600), + [anon_sym_match] = ACTIONS(5602), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5600), + [anon_sym_orelse] = ACTIONS(5602), + [anon_sym_or] = ACTIONS(5602), + [anon_sym_and] = ACTIONS(5602), + [anon_sym_EQ_EQ] = ACTIONS(5600), + [anon_sym_BANG_EQ] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5600), + [anon_sym_GT] = ACTIONS(5602), + [anon_sym_GT_EQ] = ACTIONS(5600), + [anon_sym_AMP] = ACTIONS(5602), + [anon_sym_xor] = ACTIONS(5602), + [anon_sym_LT_LT] = ACTIONS(5602), + [anon_sym_GT_GT] = ACTIONS(5602), + [anon_sym_LT_LT_PIPE] = ACTIONS(5602), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_SLASH] = ACTIONS(5602), + [anon_sym_catch] = ACTIONS(5602), + [anon_sym_TILDE] = ACTIONS(5600), + [anon_sym_try] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5602), + [anon_sym_CARET] = ACTIONS(5600), + [anon_sym_true] = ACTIONS(5602), + [anon_sym_false] = ACTIONS(5602), + [anon_sym_null] = ACTIONS(5602), + [anon_sym_unreachable] = ACTIONS(5602), + [anon_sym_undefined] = ACTIONS(5602), + [sym_sink] = ACTIONS(5602), + [sym_integer] = ACTIONS(5602), + [sym_float] = ACTIONS(5600), + [anon_sym_DQUOTE] = ACTIONS(5600), + [sym_multiline_string] = ACTIONS(5600), + [sym_character] = ACTIONS(5600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5600), + }, + [STATE(3816)] = { + [sym_identifier] = ACTIONS(5606), + [anon_sym_func] = ACTIONS(5606), + [anon_sym_BANG] = ACTIONS(5606), + [anon_sym_EQ] = ACTIONS(5606), + [anon_sym_struct] = ACTIONS(5606), + [anon_sym_LPAREN] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(5604), + [anon_sym_DASH] = ACTIONS(5606), + [anon_sym_DOLLAR] = ACTIONS(5604), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_QMARK] = ACTIONS(5604), + [anon_sym_STAR] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(5604), + [anon_sym_void] = ACTIONS(5606), + [anon_sym_noreturn] = ACTIONS(5606), + [anon_sym_type] = ACTIONS(5606), + [anon_sym_anyopaque] = ACTIONS(5606), + [anon_sym_bool] = ACTIONS(5606), + [anon_sym_int] = ACTIONS(5606), + [anon_sym_uint] = ACTIONS(5606), + [anon_sym_float] = ACTIONS(5606), + [anon_sym_range] = ACTIONS(5606), + [anon_sym_i8] = ACTIONS(5606), + [anon_sym_i16] = ACTIONS(5606), + [anon_sym_i32] = ACTIONS(5606), + [anon_sym_i64] = ACTIONS(5606), + [anon_sym_u8] = ACTIONS(5606), + [anon_sym_u16] = ACTIONS(5606), + [anon_sym_u32] = ACTIONS(5606), + [anon_sym_u64] = ACTIONS(5606), + [anon_sym_isize] = ACTIONS(5606), + [anon_sym_usize] = ACTIONS(5606), + [anon_sym_f32] = ACTIONS(5606), + [anon_sym_f64] = ACTIONS(5606), + [anon_sym_c_char] = ACTIONS(5606), + [anon_sym_c_schar] = ACTIONS(5606), + [anon_sym_c_uchar] = ACTIONS(5606), + [anon_sym_c_short] = ACTIONS(5606), + [anon_sym_c_ushort] = ACTIONS(5606), + [anon_sym_c_int] = ACTIONS(5606), + [anon_sym_c_uint] = ACTIONS(5606), + [anon_sym_c_long] = ACTIONS(5606), + [anon_sym_c_ulong] = ACTIONS(5606), + [anon_sym_c_longlong] = ACTIONS(5606), + [anon_sym_c_ulonglong] = ACTIONS(5606), + [anon_sym_c_float] = ACTIONS(5606), + [anon_sym_c_double] = ACTIONS(5606), + [anon_sym_c_longdouble] = ACTIONS(5606), + [anon_sym_PLUS_EQ] = ACTIONS(5604), + [anon_sym_DASH_EQ] = ACTIONS(5604), + [anon_sym_STAR_EQ] = ACTIONS(5604), + [anon_sym_SLASH_EQ] = ACTIONS(5604), + [anon_sym_AMP_EQ] = ACTIONS(5604), + [anon_sym_PIPE_EQ] = ACTIONS(5606), + [anon_sym_xor_EQ] = ACTIONS(5604), + [anon_sym_LT_LT_EQ] = ACTIONS(5604), + [anon_sym_GT_GT_EQ] = ACTIONS(5604), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5604), + [anon_sym_return] = ACTIONS(5606), + [anon_sym_yield] = ACTIONS(5606), + [anon_sym_break] = ACTIONS(5606), + [anon_sym_continue] = ACTIONS(5606), + [anon_sym_defer] = ACTIONS(5606), + [anon_sym_errdefer] = ACTIONS(5606), + [anon_sym_if] = ACTIONS(5606), + [anon_sym_else] = ACTIONS(5606), + [anon_sym_while] = ACTIONS(5606), + [anon_sym_expand] = ACTIONS(5606), + [anon_sym_for] = ACTIONS(5606), + [anon_sym_PIPE2] = ACTIONS(5604), + [anon_sym_match] = ACTIONS(5606), + [anon_sym_DOT_DOT] = ACTIONS(5606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5604), + [anon_sym_orelse] = ACTIONS(5606), + [anon_sym_or] = ACTIONS(5606), + [anon_sym_and] = ACTIONS(5606), + [anon_sym_EQ_EQ] = ACTIONS(5604), + [anon_sym_BANG_EQ] = ACTIONS(5604), + [anon_sym_LT] = ACTIONS(5606), + [anon_sym_LT_EQ] = ACTIONS(5604), + [anon_sym_GT] = ACTIONS(5606), + [anon_sym_GT_EQ] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [anon_sym_xor] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [anon_sym_LT_LT_PIPE] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5606), + [anon_sym_SLASH] = ACTIONS(5606), + [anon_sym_catch] = ACTIONS(5606), + [anon_sym_TILDE] = ACTIONS(5604), + [anon_sym_try] = ACTIONS(5606), + [anon_sym_DOT] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5604), + [anon_sym_true] = ACTIONS(5606), + [anon_sym_false] = ACTIONS(5606), + [anon_sym_null] = ACTIONS(5606), + [anon_sym_unreachable] = ACTIONS(5606), + [anon_sym_undefined] = ACTIONS(5606), + [sym_sink] = ACTIONS(5606), + [sym_integer] = ACTIONS(5606), + [sym_float] = ACTIONS(5604), + [anon_sym_DQUOTE] = ACTIONS(5604), + [sym_multiline_string] = ACTIONS(5604), + [sym_character] = ACTIONS(5604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5604), + }, + [STATE(3817)] = { + [sym_identifier] = ACTIONS(5610), + [anon_sym_func] = ACTIONS(5610), + [anon_sym_BANG] = ACTIONS(5610), + [anon_sym_EQ] = ACTIONS(5610), + [anon_sym_struct] = ACTIONS(5610), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_DASH] = ACTIONS(5610), + [anon_sym_DOLLAR] = ACTIONS(5608), + [anon_sym_PIPE] = ACTIONS(5610), + [anon_sym_QMARK] = ACTIONS(5608), + [anon_sym_STAR] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(5608), + [anon_sym_void] = ACTIONS(5610), + [anon_sym_noreturn] = ACTIONS(5610), + [anon_sym_type] = ACTIONS(5610), + [anon_sym_anyopaque] = ACTIONS(5610), + [anon_sym_bool] = ACTIONS(5610), + [anon_sym_int] = ACTIONS(5610), + [anon_sym_uint] = ACTIONS(5610), + [anon_sym_float] = ACTIONS(5610), + [anon_sym_range] = ACTIONS(5610), + [anon_sym_i8] = ACTIONS(5610), + [anon_sym_i16] = ACTIONS(5610), + [anon_sym_i32] = ACTIONS(5610), + [anon_sym_i64] = ACTIONS(5610), + [anon_sym_u8] = ACTIONS(5610), + [anon_sym_u16] = ACTIONS(5610), + [anon_sym_u32] = ACTIONS(5610), + [anon_sym_u64] = ACTIONS(5610), + [anon_sym_isize] = ACTIONS(5610), + [anon_sym_usize] = ACTIONS(5610), + [anon_sym_f32] = ACTIONS(5610), + [anon_sym_f64] = ACTIONS(5610), + [anon_sym_c_char] = ACTIONS(5610), + [anon_sym_c_schar] = ACTIONS(5610), + [anon_sym_c_uchar] = ACTIONS(5610), + [anon_sym_c_short] = ACTIONS(5610), + [anon_sym_c_ushort] = ACTIONS(5610), + [anon_sym_c_int] = ACTIONS(5610), + [anon_sym_c_uint] = ACTIONS(5610), + [anon_sym_c_long] = ACTIONS(5610), + [anon_sym_c_ulong] = ACTIONS(5610), + [anon_sym_c_longlong] = ACTIONS(5610), + [anon_sym_c_ulonglong] = ACTIONS(5610), + [anon_sym_c_float] = ACTIONS(5610), + [anon_sym_c_double] = ACTIONS(5610), + [anon_sym_c_longdouble] = ACTIONS(5610), + [anon_sym_PLUS_EQ] = ACTIONS(5608), + [anon_sym_DASH_EQ] = ACTIONS(5608), + [anon_sym_STAR_EQ] = ACTIONS(5608), + [anon_sym_SLASH_EQ] = ACTIONS(5608), + [anon_sym_AMP_EQ] = ACTIONS(5608), + [anon_sym_PIPE_EQ] = ACTIONS(5610), + [anon_sym_xor_EQ] = ACTIONS(5608), + [anon_sym_LT_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_GT_EQ] = ACTIONS(5608), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5608), + [anon_sym_return] = ACTIONS(5610), + [anon_sym_yield] = ACTIONS(5610), + [anon_sym_break] = ACTIONS(5610), + [anon_sym_continue] = ACTIONS(5610), + [anon_sym_defer] = ACTIONS(5610), + [anon_sym_errdefer] = ACTIONS(5610), + [anon_sym_if] = ACTIONS(5610), + [anon_sym_else] = ACTIONS(5610), + [anon_sym_while] = ACTIONS(5610), + [anon_sym_expand] = ACTIONS(5610), + [anon_sym_for] = ACTIONS(5610), + [anon_sym_PIPE2] = ACTIONS(5608), + [anon_sym_match] = ACTIONS(5610), + [anon_sym_DOT_DOT] = ACTIONS(5610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5608), + [anon_sym_orelse] = ACTIONS(5610), + [anon_sym_or] = ACTIONS(5610), + [anon_sym_and] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5608), + [anon_sym_BANG_EQ] = ACTIONS(5608), + [anon_sym_LT] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5610), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_AMP] = ACTIONS(5610), + [anon_sym_xor] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5610), + [anon_sym_LT_LT_PIPE] = ACTIONS(5610), + [anon_sym_PLUS] = ACTIONS(5610), + [anon_sym_SLASH] = ACTIONS(5610), + [anon_sym_catch] = ACTIONS(5610), + [anon_sym_TILDE] = ACTIONS(5608), + [anon_sym_try] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5608), + [anon_sym_true] = ACTIONS(5610), + [anon_sym_false] = ACTIONS(5610), + [anon_sym_null] = ACTIONS(5610), + [anon_sym_unreachable] = ACTIONS(5610), + [anon_sym_undefined] = ACTIONS(5610), + [sym_sink] = ACTIONS(5610), + [sym_integer] = ACTIONS(5610), + [sym_float] = ACTIONS(5608), + [anon_sym_DQUOTE] = ACTIONS(5608), + [sym_multiline_string] = ACTIONS(5608), + [sym_character] = ACTIONS(5608), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5608), + }, + [STATE(3818)] = { + [sym_identifier] = ACTIONS(5614), + [anon_sym_func] = ACTIONS(5614), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5614), + [anon_sym_struct] = ACTIONS(5614), + [anon_sym_LPAREN] = ACTIONS(5612), + [anon_sym_LBRACE] = ACTIONS(5612), + [anon_sym_DASH] = ACTIONS(5614), + [anon_sym_DOLLAR] = ACTIONS(5612), + [anon_sym_PIPE] = ACTIONS(5614), + [anon_sym_QMARK] = ACTIONS(5612), + [anon_sym_STAR] = ACTIONS(5614), + [anon_sym_LBRACK] = ACTIONS(5612), + [anon_sym_void] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_type] = ACTIONS(5614), + [anon_sym_anyopaque] = ACTIONS(5614), + [anon_sym_bool] = ACTIONS(5614), + [anon_sym_int] = ACTIONS(5614), + [anon_sym_uint] = ACTIONS(5614), + [anon_sym_float] = ACTIONS(5614), + [anon_sym_range] = ACTIONS(5614), + [anon_sym_i8] = ACTIONS(5614), + [anon_sym_i16] = ACTIONS(5614), + [anon_sym_i32] = ACTIONS(5614), + [anon_sym_i64] = ACTIONS(5614), + [anon_sym_u8] = ACTIONS(5614), + [anon_sym_u16] = ACTIONS(5614), + [anon_sym_u32] = ACTIONS(5614), + [anon_sym_u64] = ACTIONS(5614), + [anon_sym_isize] = ACTIONS(5614), + [anon_sym_usize] = ACTIONS(5614), + [anon_sym_f32] = ACTIONS(5614), + [anon_sym_f64] = ACTIONS(5614), + [anon_sym_c_char] = ACTIONS(5614), + [anon_sym_c_schar] = ACTIONS(5614), + [anon_sym_c_uchar] = ACTIONS(5614), + [anon_sym_c_short] = ACTIONS(5614), + [anon_sym_c_ushort] = ACTIONS(5614), + [anon_sym_c_int] = ACTIONS(5614), + [anon_sym_c_uint] = ACTIONS(5614), + [anon_sym_c_long] = ACTIONS(5614), + [anon_sym_c_ulong] = ACTIONS(5614), + [anon_sym_c_longlong] = ACTIONS(5614), + [anon_sym_c_ulonglong] = ACTIONS(5614), + [anon_sym_c_float] = ACTIONS(5614), + [anon_sym_c_double] = ACTIONS(5614), + [anon_sym_c_longdouble] = ACTIONS(5614), + [anon_sym_PLUS_EQ] = ACTIONS(5612), + [anon_sym_DASH_EQ] = ACTIONS(5612), + [anon_sym_STAR_EQ] = ACTIONS(5612), + [anon_sym_SLASH_EQ] = ACTIONS(5612), + [anon_sym_AMP_EQ] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5614), + [anon_sym_xor_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_EQ] = ACTIONS(5612), + [anon_sym_GT_GT_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5612), + [anon_sym_return] = ACTIONS(5614), + [anon_sym_yield] = ACTIONS(5614), + [anon_sym_break] = ACTIONS(5614), + [anon_sym_continue] = ACTIONS(5614), + [anon_sym_defer] = ACTIONS(5614), + [anon_sym_errdefer] = ACTIONS(5614), + [anon_sym_if] = ACTIONS(5614), + [anon_sym_else] = ACTIONS(5614), + [anon_sym_while] = ACTIONS(5614), + [anon_sym_expand] = ACTIONS(5614), + [anon_sym_for] = ACTIONS(5614), + [anon_sym_PIPE2] = ACTIONS(5612), + [anon_sym_match] = ACTIONS(5614), + [anon_sym_DOT_DOT] = ACTIONS(5614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5612), + [anon_sym_orelse] = ACTIONS(5614), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5612), + [anon_sym_AMP] = ACTIONS(5614), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_LT_LT_PIPE] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5614), + [anon_sym_SLASH] = ACTIONS(5614), + [anon_sym_catch] = ACTIONS(5614), + [anon_sym_TILDE] = ACTIONS(5612), + [anon_sym_try] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5612), + [anon_sym_true] = ACTIONS(5614), + [anon_sym_false] = ACTIONS(5614), + [anon_sym_null] = ACTIONS(5614), + [anon_sym_unreachable] = ACTIONS(5614), + [anon_sym_undefined] = ACTIONS(5614), + [sym_sink] = ACTIONS(5614), + [sym_integer] = ACTIONS(5614), + [sym_float] = ACTIONS(5612), + [anon_sym_DQUOTE] = ACTIONS(5612), + [sym_multiline_string] = ACTIONS(5612), + [sym_character] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5612), + }, + [STATE(3819)] = { + [sym_identifier] = ACTIONS(5618), + [anon_sym_func] = ACTIONS(5618), + [anon_sym_BANG] = ACTIONS(5618), + [anon_sym_EQ] = ACTIONS(5618), + [anon_sym_struct] = ACTIONS(5618), + [anon_sym_LPAREN] = ACTIONS(5616), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5618), + [anon_sym_DOLLAR] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5618), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_void] = ACTIONS(5618), + [anon_sym_noreturn] = ACTIONS(5618), + [anon_sym_type] = ACTIONS(5618), + [anon_sym_anyopaque] = ACTIONS(5618), + [anon_sym_bool] = ACTIONS(5618), + [anon_sym_int] = ACTIONS(5618), + [anon_sym_uint] = ACTIONS(5618), + [anon_sym_float] = ACTIONS(5618), + [anon_sym_range] = ACTIONS(5618), + [anon_sym_i8] = ACTIONS(5618), + [anon_sym_i16] = ACTIONS(5618), + [anon_sym_i32] = ACTIONS(5618), + [anon_sym_i64] = ACTIONS(5618), + [anon_sym_u8] = ACTIONS(5618), + [anon_sym_u16] = ACTIONS(5618), + [anon_sym_u32] = ACTIONS(5618), + [anon_sym_u64] = ACTIONS(5618), + [anon_sym_isize] = ACTIONS(5618), + [anon_sym_usize] = ACTIONS(5618), + [anon_sym_f32] = ACTIONS(5618), + [anon_sym_f64] = ACTIONS(5618), + [anon_sym_c_char] = ACTIONS(5618), + [anon_sym_c_schar] = ACTIONS(5618), + [anon_sym_c_uchar] = ACTIONS(5618), + [anon_sym_c_short] = ACTIONS(5618), + [anon_sym_c_ushort] = ACTIONS(5618), + [anon_sym_c_int] = ACTIONS(5618), + [anon_sym_c_uint] = ACTIONS(5618), + [anon_sym_c_long] = ACTIONS(5618), + [anon_sym_c_ulong] = ACTIONS(5618), + [anon_sym_c_longlong] = ACTIONS(5618), + [anon_sym_c_ulonglong] = ACTIONS(5618), + [anon_sym_c_float] = ACTIONS(5618), + [anon_sym_c_double] = ACTIONS(5618), + [anon_sym_c_longdouble] = ACTIONS(5618), + [anon_sym_PLUS_EQ] = ACTIONS(5616), + [anon_sym_DASH_EQ] = ACTIONS(5616), + [anon_sym_STAR_EQ] = ACTIONS(5616), + [anon_sym_SLASH_EQ] = ACTIONS(5616), + [anon_sym_AMP_EQ] = ACTIONS(5616), + [anon_sym_PIPE_EQ] = ACTIONS(5618), + [anon_sym_xor_EQ] = ACTIONS(5616), + [anon_sym_LT_LT_EQ] = ACTIONS(5616), + [anon_sym_GT_GT_EQ] = ACTIONS(5616), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5616), + [anon_sym_return] = ACTIONS(5618), + [anon_sym_yield] = ACTIONS(5618), + [anon_sym_break] = ACTIONS(5618), + [anon_sym_continue] = ACTIONS(5618), + [anon_sym_defer] = ACTIONS(5618), + [anon_sym_errdefer] = ACTIONS(5618), + [anon_sym_if] = ACTIONS(5618), + [anon_sym_else] = ACTIONS(5618), + [anon_sym_while] = ACTIONS(5618), + [anon_sym_expand] = ACTIONS(5618), + [anon_sym_for] = ACTIONS(5618), + [anon_sym_PIPE2] = ACTIONS(5616), + [anon_sym_match] = ACTIONS(5618), + [anon_sym_DOT_DOT] = ACTIONS(5618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5616), + [anon_sym_orelse] = ACTIONS(5618), + [anon_sym_or] = ACTIONS(5618), + [anon_sym_and] = ACTIONS(5618), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5618), + [anon_sym_LT_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5618), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5618), + [anon_sym_xor] = ACTIONS(5618), + [anon_sym_LT_LT] = ACTIONS(5618), + [anon_sym_GT_GT] = ACTIONS(5618), + [anon_sym_LT_LT_PIPE] = ACTIONS(5618), + [anon_sym_PLUS] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_catch] = ACTIONS(5618), + [anon_sym_TILDE] = ACTIONS(5616), + [anon_sym_try] = ACTIONS(5618), + [anon_sym_DOT] = ACTIONS(5618), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_true] = ACTIONS(5618), + [anon_sym_false] = ACTIONS(5618), + [anon_sym_null] = ACTIONS(5618), + [anon_sym_unreachable] = ACTIONS(5618), + [anon_sym_undefined] = ACTIONS(5618), + [sym_sink] = ACTIONS(5618), + [sym_integer] = ACTIONS(5618), + [sym_float] = ACTIONS(5616), + [anon_sym_DQUOTE] = ACTIONS(5616), + [sym_multiline_string] = ACTIONS(5616), + [sym_character] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5616), + }, + [STATE(3820)] = { + [sym_identifier] = ACTIONS(5622), + [anon_sym_func] = ACTIONS(5622), + [anon_sym_BANG] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(5622), + [anon_sym_struct] = ACTIONS(5622), + [anon_sym_LPAREN] = ACTIONS(5620), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_DOLLAR] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5622), + [anon_sym_QMARK] = ACTIONS(5620), + [anon_sym_STAR] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym_void] = ACTIONS(5622), + [anon_sym_noreturn] = ACTIONS(5622), + [anon_sym_type] = ACTIONS(5622), + [anon_sym_anyopaque] = ACTIONS(5622), + [anon_sym_bool] = ACTIONS(5622), + [anon_sym_int] = ACTIONS(5622), + [anon_sym_uint] = ACTIONS(5622), + [anon_sym_float] = ACTIONS(5622), + [anon_sym_range] = ACTIONS(5622), + [anon_sym_i8] = ACTIONS(5622), + [anon_sym_i16] = ACTIONS(5622), + [anon_sym_i32] = ACTIONS(5622), + [anon_sym_i64] = ACTIONS(5622), + [anon_sym_u8] = ACTIONS(5622), + [anon_sym_u16] = ACTIONS(5622), + [anon_sym_u32] = ACTIONS(5622), + [anon_sym_u64] = ACTIONS(5622), + [anon_sym_isize] = ACTIONS(5622), + [anon_sym_usize] = ACTIONS(5622), + [anon_sym_f32] = ACTIONS(5622), + [anon_sym_f64] = ACTIONS(5622), + [anon_sym_c_char] = ACTIONS(5622), + [anon_sym_c_schar] = ACTIONS(5622), + [anon_sym_c_uchar] = ACTIONS(5622), + [anon_sym_c_short] = ACTIONS(5622), + [anon_sym_c_ushort] = ACTIONS(5622), + [anon_sym_c_int] = ACTIONS(5622), + [anon_sym_c_uint] = ACTIONS(5622), + [anon_sym_c_long] = ACTIONS(5622), + [anon_sym_c_ulong] = ACTIONS(5622), + [anon_sym_c_longlong] = ACTIONS(5622), + [anon_sym_c_ulonglong] = ACTIONS(5622), + [anon_sym_c_float] = ACTIONS(5622), + [anon_sym_c_double] = ACTIONS(5622), + [anon_sym_c_longdouble] = ACTIONS(5622), + [anon_sym_PLUS_EQ] = ACTIONS(5620), + [anon_sym_DASH_EQ] = ACTIONS(5620), + [anon_sym_STAR_EQ] = ACTIONS(5620), + [anon_sym_SLASH_EQ] = ACTIONS(5620), + [anon_sym_AMP_EQ] = ACTIONS(5620), + [anon_sym_PIPE_EQ] = ACTIONS(5622), + [anon_sym_xor_EQ] = ACTIONS(5620), + [anon_sym_LT_LT_EQ] = ACTIONS(5620), + [anon_sym_GT_GT_EQ] = ACTIONS(5620), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5620), + [anon_sym_return] = ACTIONS(5622), + [anon_sym_yield] = ACTIONS(5622), + [anon_sym_break] = ACTIONS(5622), + [anon_sym_continue] = ACTIONS(5622), + [anon_sym_defer] = ACTIONS(5622), + [anon_sym_errdefer] = ACTIONS(5622), + [anon_sym_if] = ACTIONS(5622), + [anon_sym_else] = ACTIONS(5622), + [anon_sym_while] = ACTIONS(5622), + [anon_sym_expand] = ACTIONS(5622), + [anon_sym_for] = ACTIONS(5622), + [anon_sym_PIPE2] = ACTIONS(5620), + [anon_sym_match] = ACTIONS(5622), + [anon_sym_DOT_DOT] = ACTIONS(5622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5620), + [anon_sym_orelse] = ACTIONS(5622), + [anon_sym_or] = ACTIONS(5622), + [anon_sym_and] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5620), + [anon_sym_BANG_EQ] = ACTIONS(5620), + [anon_sym_LT] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5620), + [anon_sym_AMP] = ACTIONS(5622), + [anon_sym_xor] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5622), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_LT_LT_PIPE] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_SLASH] = ACTIONS(5622), + [anon_sym_catch] = ACTIONS(5622), + [anon_sym_TILDE] = ACTIONS(5620), + [anon_sym_try] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5622), + [anon_sym_CARET] = ACTIONS(5620), + [anon_sym_true] = ACTIONS(5622), + [anon_sym_false] = ACTIONS(5622), + [anon_sym_null] = ACTIONS(5622), + [anon_sym_unreachable] = ACTIONS(5622), + [anon_sym_undefined] = ACTIONS(5622), + [sym_sink] = ACTIONS(5622), + [sym_integer] = ACTIONS(5622), + [sym_float] = ACTIONS(5620), + [anon_sym_DQUOTE] = ACTIONS(5620), + [sym_multiline_string] = ACTIONS(5620), + [sym_character] = ACTIONS(5620), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5620), + }, + [STATE(3821)] = { + [sym_identifier] = ACTIONS(5626), + [anon_sym_func] = ACTIONS(5626), + [anon_sym_BANG] = ACTIONS(5626), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_struct] = ACTIONS(5626), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_LBRACE] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_DOLLAR] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5626), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_void] = ACTIONS(5626), + [anon_sym_noreturn] = ACTIONS(5626), + [anon_sym_type] = ACTIONS(5626), + [anon_sym_anyopaque] = ACTIONS(5626), + [anon_sym_bool] = ACTIONS(5626), + [anon_sym_int] = ACTIONS(5626), + [anon_sym_uint] = ACTIONS(5626), + [anon_sym_float] = ACTIONS(5626), + [anon_sym_range] = ACTIONS(5626), + [anon_sym_i8] = ACTIONS(5626), + [anon_sym_i16] = ACTIONS(5626), + [anon_sym_i32] = ACTIONS(5626), + [anon_sym_i64] = ACTIONS(5626), + [anon_sym_u8] = ACTIONS(5626), + [anon_sym_u16] = ACTIONS(5626), + [anon_sym_u32] = ACTIONS(5626), + [anon_sym_u64] = ACTIONS(5626), + [anon_sym_isize] = ACTIONS(5626), + [anon_sym_usize] = ACTIONS(5626), + [anon_sym_f32] = ACTIONS(5626), + [anon_sym_f64] = ACTIONS(5626), + [anon_sym_c_char] = ACTIONS(5626), + [anon_sym_c_schar] = ACTIONS(5626), + [anon_sym_c_uchar] = ACTIONS(5626), + [anon_sym_c_short] = ACTIONS(5626), + [anon_sym_c_ushort] = ACTIONS(5626), + [anon_sym_c_int] = ACTIONS(5626), + [anon_sym_c_uint] = ACTIONS(5626), + [anon_sym_c_long] = ACTIONS(5626), + [anon_sym_c_ulong] = ACTIONS(5626), + [anon_sym_c_longlong] = ACTIONS(5626), + [anon_sym_c_ulonglong] = ACTIONS(5626), + [anon_sym_c_float] = ACTIONS(5626), + [anon_sym_c_double] = ACTIONS(5626), + [anon_sym_c_longdouble] = ACTIONS(5626), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5626), + [anon_sym_xor_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5624), + [anon_sym_return] = ACTIONS(5626), + [anon_sym_yield] = ACTIONS(5626), + [anon_sym_break] = ACTIONS(5626), + [anon_sym_continue] = ACTIONS(5626), + [anon_sym_defer] = ACTIONS(5626), + [anon_sym_errdefer] = ACTIONS(5626), + [anon_sym_if] = ACTIONS(5626), + [anon_sym_else] = ACTIONS(5626), + [anon_sym_while] = ACTIONS(5626), + [anon_sym_expand] = ACTIONS(5626), + [anon_sym_for] = ACTIONS(5626), + [anon_sym_PIPE2] = ACTIONS(5624), + [anon_sym_match] = ACTIONS(5626), + [anon_sym_DOT_DOT] = ACTIONS(5626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5624), + [anon_sym_orelse] = ACTIONS(5626), + [anon_sym_or] = ACTIONS(5626), + [anon_sym_and] = ACTIONS(5626), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5626), + [anon_sym_LT_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5626), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP] = ACTIONS(5626), + [anon_sym_xor] = ACTIONS(5626), + [anon_sym_LT_LT] = ACTIONS(5626), + [anon_sym_GT_GT] = ACTIONS(5626), + [anon_sym_LT_LT_PIPE] = ACTIONS(5626), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_SLASH] = ACTIONS(5626), + [anon_sym_catch] = ACTIONS(5626), + [anon_sym_TILDE] = ACTIONS(5624), + [anon_sym_try] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5626), + [anon_sym_CARET] = ACTIONS(5624), + [anon_sym_true] = ACTIONS(5626), + [anon_sym_false] = ACTIONS(5626), + [anon_sym_null] = ACTIONS(5626), + [anon_sym_unreachable] = ACTIONS(5626), + [anon_sym_undefined] = ACTIONS(5626), + [sym_sink] = ACTIONS(5626), + [sym_integer] = ACTIONS(5626), + [sym_float] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5624), + [sym_multiline_string] = ACTIONS(5624), + [sym_character] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5624), + }, + [STATE(3822)] = { + [sym_identifier] = ACTIONS(5630), + [anon_sym_func] = ACTIONS(5630), + [anon_sym_BANG] = ACTIONS(5630), + [anon_sym_EQ] = ACTIONS(5630), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_DOLLAR] = ACTIONS(5628), + [anon_sym_PIPE] = ACTIONS(5630), + [anon_sym_QMARK] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5628), + [anon_sym_void] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_type] = ACTIONS(5630), + [anon_sym_anyopaque] = ACTIONS(5630), + [anon_sym_bool] = ACTIONS(5630), + [anon_sym_int] = ACTIONS(5630), + [anon_sym_uint] = ACTIONS(5630), + [anon_sym_float] = ACTIONS(5630), + [anon_sym_range] = ACTIONS(5630), + [anon_sym_i8] = ACTIONS(5630), + [anon_sym_i16] = ACTIONS(5630), + [anon_sym_i32] = ACTIONS(5630), + [anon_sym_i64] = ACTIONS(5630), + [anon_sym_u8] = ACTIONS(5630), + [anon_sym_u16] = ACTIONS(5630), + [anon_sym_u32] = ACTIONS(5630), + [anon_sym_u64] = ACTIONS(5630), + [anon_sym_isize] = ACTIONS(5630), + [anon_sym_usize] = ACTIONS(5630), + [anon_sym_f32] = ACTIONS(5630), + [anon_sym_f64] = ACTIONS(5630), + [anon_sym_c_char] = ACTIONS(5630), + [anon_sym_c_schar] = ACTIONS(5630), + [anon_sym_c_uchar] = ACTIONS(5630), + [anon_sym_c_short] = ACTIONS(5630), + [anon_sym_c_ushort] = ACTIONS(5630), + [anon_sym_c_int] = ACTIONS(5630), + [anon_sym_c_uint] = ACTIONS(5630), + [anon_sym_c_long] = ACTIONS(5630), + [anon_sym_c_ulong] = ACTIONS(5630), + [anon_sym_c_longlong] = ACTIONS(5630), + [anon_sym_c_ulonglong] = ACTIONS(5630), + [anon_sym_c_float] = ACTIONS(5630), + [anon_sym_c_double] = ACTIONS(5630), + [anon_sym_c_longdouble] = ACTIONS(5630), + [anon_sym_PLUS_EQ] = ACTIONS(5628), + [anon_sym_DASH_EQ] = ACTIONS(5628), + [anon_sym_STAR_EQ] = ACTIONS(5628), + [anon_sym_SLASH_EQ] = ACTIONS(5628), + [anon_sym_AMP_EQ] = ACTIONS(5628), + [anon_sym_PIPE_EQ] = ACTIONS(5630), + [anon_sym_xor_EQ] = ACTIONS(5628), + [anon_sym_LT_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_GT_EQ] = ACTIONS(5628), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5628), + [anon_sym_return] = ACTIONS(5630), + [anon_sym_yield] = ACTIONS(5630), + [anon_sym_break] = ACTIONS(5630), + [anon_sym_continue] = ACTIONS(5630), + [anon_sym_defer] = ACTIONS(5630), + [anon_sym_errdefer] = ACTIONS(5630), + [anon_sym_if] = ACTIONS(5630), + [anon_sym_else] = ACTIONS(5630), + [anon_sym_while] = ACTIONS(5630), + [anon_sym_expand] = ACTIONS(5630), + [anon_sym_for] = ACTIONS(5630), + [anon_sym_PIPE2] = ACTIONS(5628), + [anon_sym_match] = ACTIONS(5630), + [anon_sym_DOT_DOT] = ACTIONS(5630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5628), + [anon_sym_orelse] = ACTIONS(5630), + [anon_sym_or] = ACTIONS(5630), + [anon_sym_and] = ACTIONS(5630), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5630), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT] = ACTIONS(5630), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5630), + [anon_sym_xor] = ACTIONS(5630), + [anon_sym_LT_LT] = ACTIONS(5630), + [anon_sym_GT_GT] = ACTIONS(5630), + [anon_sym_LT_LT_PIPE] = ACTIONS(5630), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_SLASH] = ACTIONS(5630), + [anon_sym_catch] = ACTIONS(5630), + [anon_sym_TILDE] = ACTIONS(5628), + [anon_sym_try] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5630), + [anon_sym_CARET] = ACTIONS(5628), + [anon_sym_true] = ACTIONS(5630), + [anon_sym_false] = ACTIONS(5630), + [anon_sym_null] = ACTIONS(5630), + [anon_sym_unreachable] = ACTIONS(5630), + [anon_sym_undefined] = ACTIONS(5630), + [sym_sink] = ACTIONS(5630), + [sym_integer] = ACTIONS(5630), + [sym_float] = ACTIONS(5628), + [anon_sym_DQUOTE] = ACTIONS(5628), + [sym_multiline_string] = ACTIONS(5628), + [sym_character] = ACTIONS(5628), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5628), + }, + [STATE(3823)] = { + [sym_identifier] = ACTIONS(5634), + [anon_sym_func] = ACTIONS(5634), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_EQ] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_LPAREN] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5632), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_DOLLAR] = ACTIONS(5632), + [anon_sym_PIPE] = ACTIONS(5634), + [anon_sym_QMARK] = ACTIONS(5632), + [anon_sym_STAR] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_void] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_type] = ACTIONS(5634), + [anon_sym_anyopaque] = ACTIONS(5634), + [anon_sym_bool] = ACTIONS(5634), + [anon_sym_int] = ACTIONS(5634), + [anon_sym_uint] = ACTIONS(5634), + [anon_sym_float] = ACTIONS(5634), + [anon_sym_range] = ACTIONS(5634), + [anon_sym_i8] = ACTIONS(5634), + [anon_sym_i16] = ACTIONS(5634), + [anon_sym_i32] = ACTIONS(5634), + [anon_sym_i64] = ACTIONS(5634), + [anon_sym_u8] = ACTIONS(5634), + [anon_sym_u16] = ACTIONS(5634), + [anon_sym_u32] = ACTIONS(5634), + [anon_sym_u64] = ACTIONS(5634), + [anon_sym_isize] = ACTIONS(5634), + [anon_sym_usize] = ACTIONS(5634), + [anon_sym_f32] = ACTIONS(5634), + [anon_sym_f64] = ACTIONS(5634), + [anon_sym_c_char] = ACTIONS(5634), + [anon_sym_c_schar] = ACTIONS(5634), + [anon_sym_c_uchar] = ACTIONS(5634), + [anon_sym_c_short] = ACTIONS(5634), + [anon_sym_c_ushort] = ACTIONS(5634), + [anon_sym_c_int] = ACTIONS(5634), + [anon_sym_c_uint] = ACTIONS(5634), + [anon_sym_c_long] = ACTIONS(5634), + [anon_sym_c_ulong] = ACTIONS(5634), + [anon_sym_c_longlong] = ACTIONS(5634), + [anon_sym_c_ulonglong] = ACTIONS(5634), + [anon_sym_c_float] = ACTIONS(5634), + [anon_sym_c_double] = ACTIONS(5634), + [anon_sym_c_longdouble] = ACTIONS(5634), + [anon_sym_PLUS_EQ] = ACTIONS(5632), + [anon_sym_DASH_EQ] = ACTIONS(5632), + [anon_sym_STAR_EQ] = ACTIONS(5632), + [anon_sym_SLASH_EQ] = ACTIONS(5632), + [anon_sym_AMP_EQ] = ACTIONS(5632), + [anon_sym_PIPE_EQ] = ACTIONS(5634), + [anon_sym_xor_EQ] = ACTIONS(5632), + [anon_sym_LT_LT_EQ] = ACTIONS(5632), + [anon_sym_GT_GT_EQ] = ACTIONS(5632), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5632), + [anon_sym_return] = ACTIONS(5634), + [anon_sym_yield] = ACTIONS(5634), + [anon_sym_break] = ACTIONS(5634), + [anon_sym_continue] = ACTIONS(5634), + [anon_sym_defer] = ACTIONS(5634), + [anon_sym_errdefer] = ACTIONS(5634), + [anon_sym_if] = ACTIONS(5634), + [anon_sym_else] = ACTIONS(5634), + [anon_sym_while] = ACTIONS(5634), + [anon_sym_expand] = ACTIONS(5634), + [anon_sym_for] = ACTIONS(5634), + [anon_sym_PIPE2] = ACTIONS(5632), + [anon_sym_match] = ACTIONS(5634), + [anon_sym_DOT_DOT] = ACTIONS(5634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5632), + [anon_sym_orelse] = ACTIONS(5634), + [anon_sym_or] = ACTIONS(5634), + [anon_sym_and] = ACTIONS(5634), + [anon_sym_EQ_EQ] = ACTIONS(5632), + [anon_sym_BANG_EQ] = ACTIONS(5632), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_LT_EQ] = ACTIONS(5632), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_GT_EQ] = ACTIONS(5632), + [anon_sym_AMP] = ACTIONS(5634), + [anon_sym_xor] = ACTIONS(5634), + [anon_sym_LT_LT] = ACTIONS(5634), + [anon_sym_GT_GT] = ACTIONS(5634), + [anon_sym_LT_LT_PIPE] = ACTIONS(5634), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_SLASH] = ACTIONS(5634), + [anon_sym_catch] = ACTIONS(5634), + [anon_sym_TILDE] = ACTIONS(5632), + [anon_sym_try] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5632), + [anon_sym_true] = ACTIONS(5634), + [anon_sym_false] = ACTIONS(5634), + [anon_sym_null] = ACTIONS(5634), + [anon_sym_unreachable] = ACTIONS(5634), + [anon_sym_undefined] = ACTIONS(5634), + [sym_sink] = ACTIONS(5634), + [sym_integer] = ACTIONS(5634), + [sym_float] = ACTIONS(5632), + [anon_sym_DQUOTE] = ACTIONS(5632), + [sym_multiline_string] = ACTIONS(5632), + [sym_character] = ACTIONS(5632), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5632), + }, + [STATE(3824)] = { + [sym_identifier] = ACTIONS(5638), + [anon_sym_func] = ACTIONS(5638), + [anon_sym_BANG] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5638), + [anon_sym_struct] = ACTIONS(5638), + [anon_sym_LPAREN] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_DOLLAR] = ACTIONS(5636), + [anon_sym_PIPE] = ACTIONS(5638), + [anon_sym_QMARK] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_void] = ACTIONS(5638), + [anon_sym_noreturn] = ACTIONS(5638), + [anon_sym_type] = ACTIONS(5638), + [anon_sym_anyopaque] = ACTIONS(5638), + [anon_sym_bool] = ACTIONS(5638), + [anon_sym_int] = ACTIONS(5638), + [anon_sym_uint] = ACTIONS(5638), + [anon_sym_float] = ACTIONS(5638), + [anon_sym_range] = ACTIONS(5638), + [anon_sym_i8] = ACTIONS(5638), + [anon_sym_i16] = ACTIONS(5638), + [anon_sym_i32] = ACTIONS(5638), + [anon_sym_i64] = ACTIONS(5638), + [anon_sym_u8] = ACTIONS(5638), + [anon_sym_u16] = ACTIONS(5638), + [anon_sym_u32] = ACTIONS(5638), + [anon_sym_u64] = ACTIONS(5638), + [anon_sym_isize] = ACTIONS(5638), + [anon_sym_usize] = ACTIONS(5638), + [anon_sym_f32] = ACTIONS(5638), + [anon_sym_f64] = ACTIONS(5638), + [anon_sym_c_char] = ACTIONS(5638), + [anon_sym_c_schar] = ACTIONS(5638), + [anon_sym_c_uchar] = ACTIONS(5638), + [anon_sym_c_short] = ACTIONS(5638), + [anon_sym_c_ushort] = ACTIONS(5638), + [anon_sym_c_int] = ACTIONS(5638), + [anon_sym_c_uint] = ACTIONS(5638), + [anon_sym_c_long] = ACTIONS(5638), + [anon_sym_c_ulong] = ACTIONS(5638), + [anon_sym_c_longlong] = ACTIONS(5638), + [anon_sym_c_ulonglong] = ACTIONS(5638), + [anon_sym_c_float] = ACTIONS(5638), + [anon_sym_c_double] = ACTIONS(5638), + [anon_sym_c_longdouble] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5636), + [anon_sym_DASH_EQ] = ACTIONS(5636), + [anon_sym_STAR_EQ] = ACTIONS(5636), + [anon_sym_SLASH_EQ] = ACTIONS(5636), + [anon_sym_AMP_EQ] = ACTIONS(5636), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_xor_EQ] = ACTIONS(5636), + [anon_sym_LT_LT_EQ] = ACTIONS(5636), + [anon_sym_GT_GT_EQ] = ACTIONS(5636), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5636), + [anon_sym_return] = ACTIONS(5638), + [anon_sym_yield] = ACTIONS(5638), + [anon_sym_break] = ACTIONS(5638), + [anon_sym_continue] = ACTIONS(5638), + [anon_sym_defer] = ACTIONS(5638), + [anon_sym_errdefer] = ACTIONS(5638), + [anon_sym_if] = ACTIONS(5638), + [anon_sym_else] = ACTIONS(5638), + [anon_sym_while] = ACTIONS(5638), + [anon_sym_expand] = ACTIONS(5638), + [anon_sym_for] = ACTIONS(5638), + [anon_sym_PIPE2] = ACTIONS(5636), + [anon_sym_match] = ACTIONS(5638), + [anon_sym_DOT_DOT] = ACTIONS(5638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5636), + [anon_sym_orelse] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5638), + [anon_sym_and] = ACTIONS(5638), + [anon_sym_EQ_EQ] = ACTIONS(5636), + [anon_sym_BANG_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_GT] = ACTIONS(5638), + [anon_sym_GT_EQ] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5638), + [anon_sym_LT_LT] = ACTIONS(5638), + [anon_sym_GT_GT] = ACTIONS(5638), + [anon_sym_LT_LT_PIPE] = ACTIONS(5638), + [anon_sym_PLUS] = ACTIONS(5638), + [anon_sym_SLASH] = ACTIONS(5638), + [anon_sym_catch] = ACTIONS(5638), + [anon_sym_TILDE] = ACTIONS(5636), + [anon_sym_try] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5638), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_true] = ACTIONS(5638), + [anon_sym_false] = ACTIONS(5638), + [anon_sym_null] = ACTIONS(5638), + [anon_sym_unreachable] = ACTIONS(5638), + [anon_sym_undefined] = ACTIONS(5638), + [sym_sink] = ACTIONS(5638), + [sym_integer] = ACTIONS(5638), + [sym_float] = ACTIONS(5636), + [anon_sym_DQUOTE] = ACTIONS(5636), + [sym_multiline_string] = ACTIONS(5636), + [sym_character] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5636), + }, + [STATE(3825)] = { + [sym_identifier] = ACTIONS(5642), + [anon_sym_func] = ACTIONS(5642), + [anon_sym_BANG] = ACTIONS(5642), + [anon_sym_EQ] = ACTIONS(5642), + [anon_sym_struct] = ACTIONS(5642), + [anon_sym_LPAREN] = ACTIONS(5640), + [anon_sym_LBRACE] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_DOLLAR] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5642), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_void] = ACTIONS(5642), + [anon_sym_noreturn] = ACTIONS(5642), + [anon_sym_type] = ACTIONS(5642), + [anon_sym_anyopaque] = ACTIONS(5642), + [anon_sym_bool] = ACTIONS(5642), + [anon_sym_int] = ACTIONS(5642), + [anon_sym_uint] = ACTIONS(5642), + [anon_sym_float] = ACTIONS(5642), + [anon_sym_range] = ACTIONS(5642), + [anon_sym_i8] = ACTIONS(5642), + [anon_sym_i16] = ACTIONS(5642), + [anon_sym_i32] = ACTIONS(5642), + [anon_sym_i64] = ACTIONS(5642), + [anon_sym_u8] = ACTIONS(5642), + [anon_sym_u16] = ACTIONS(5642), + [anon_sym_u32] = ACTIONS(5642), + [anon_sym_u64] = ACTIONS(5642), + [anon_sym_isize] = ACTIONS(5642), + [anon_sym_usize] = ACTIONS(5642), + [anon_sym_f32] = ACTIONS(5642), + [anon_sym_f64] = ACTIONS(5642), + [anon_sym_c_char] = ACTIONS(5642), + [anon_sym_c_schar] = ACTIONS(5642), + [anon_sym_c_uchar] = ACTIONS(5642), + [anon_sym_c_short] = ACTIONS(5642), + [anon_sym_c_ushort] = ACTIONS(5642), + [anon_sym_c_int] = ACTIONS(5642), + [anon_sym_c_uint] = ACTIONS(5642), + [anon_sym_c_long] = ACTIONS(5642), + [anon_sym_c_ulong] = ACTIONS(5642), + [anon_sym_c_longlong] = ACTIONS(5642), + [anon_sym_c_ulonglong] = ACTIONS(5642), + [anon_sym_c_float] = ACTIONS(5642), + [anon_sym_c_double] = ACTIONS(5642), + [anon_sym_c_longdouble] = ACTIONS(5642), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5642), + [anon_sym_xor_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5640), + [anon_sym_return] = ACTIONS(5642), + [anon_sym_yield] = ACTIONS(5642), + [anon_sym_break] = ACTIONS(5642), + [anon_sym_continue] = ACTIONS(5642), + [anon_sym_defer] = ACTIONS(5642), + [anon_sym_errdefer] = ACTIONS(5642), + [anon_sym_if] = ACTIONS(5642), + [anon_sym_else] = ACTIONS(5642), + [anon_sym_while] = ACTIONS(5642), + [anon_sym_expand] = ACTIONS(5642), + [anon_sym_for] = ACTIONS(5642), + [anon_sym_PIPE2] = ACTIONS(5640), + [anon_sym_match] = ACTIONS(5642), + [anon_sym_DOT_DOT] = ACTIONS(5642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5640), + [anon_sym_orelse] = ACTIONS(5642), + [anon_sym_or] = ACTIONS(5642), + [anon_sym_and] = ACTIONS(5642), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_LT] = ACTIONS(5642), + [anon_sym_LT_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5642), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP] = ACTIONS(5642), + [anon_sym_xor] = ACTIONS(5642), + [anon_sym_LT_LT] = ACTIONS(5642), + [anon_sym_GT_GT] = ACTIONS(5642), + [anon_sym_LT_LT_PIPE] = ACTIONS(5642), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_SLASH] = ACTIONS(5642), + [anon_sym_catch] = ACTIONS(5642), + [anon_sym_TILDE] = ACTIONS(5640), + [anon_sym_try] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5640), + [anon_sym_true] = ACTIONS(5642), + [anon_sym_false] = ACTIONS(5642), + [anon_sym_null] = ACTIONS(5642), + [anon_sym_unreachable] = ACTIONS(5642), + [anon_sym_undefined] = ACTIONS(5642), + [sym_sink] = ACTIONS(5642), + [sym_integer] = ACTIONS(5642), + [sym_float] = ACTIONS(5640), + [anon_sym_DQUOTE] = ACTIONS(5640), + [sym_multiline_string] = ACTIONS(5640), + [sym_character] = ACTIONS(5640), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5640), + }, + [STATE(3826)] = { + [sym_identifier] = ACTIONS(5646), + [anon_sym_func] = ACTIONS(5646), + [anon_sym_BANG] = ACTIONS(5646), + [anon_sym_EQ] = ACTIONS(5646), + [anon_sym_struct] = ACTIONS(5646), + [anon_sym_LPAREN] = ACTIONS(5644), + [anon_sym_LBRACE] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5646), + [anon_sym_DOLLAR] = ACTIONS(5644), + [anon_sym_PIPE] = ACTIONS(5646), + [anon_sym_QMARK] = ACTIONS(5644), + [anon_sym_STAR] = ACTIONS(5646), + [anon_sym_LBRACK] = ACTIONS(5644), + [anon_sym_void] = ACTIONS(5646), + [anon_sym_noreturn] = ACTIONS(5646), + [anon_sym_type] = ACTIONS(5646), + [anon_sym_anyopaque] = ACTIONS(5646), + [anon_sym_bool] = ACTIONS(5646), + [anon_sym_int] = ACTIONS(5646), + [anon_sym_uint] = ACTIONS(5646), + [anon_sym_float] = ACTIONS(5646), + [anon_sym_range] = ACTIONS(5646), + [anon_sym_i8] = ACTIONS(5646), + [anon_sym_i16] = ACTIONS(5646), + [anon_sym_i32] = ACTIONS(5646), + [anon_sym_i64] = ACTIONS(5646), + [anon_sym_u8] = ACTIONS(5646), + [anon_sym_u16] = ACTIONS(5646), + [anon_sym_u32] = ACTIONS(5646), + [anon_sym_u64] = ACTIONS(5646), + [anon_sym_isize] = ACTIONS(5646), + [anon_sym_usize] = ACTIONS(5646), + [anon_sym_f32] = ACTIONS(5646), + [anon_sym_f64] = ACTIONS(5646), + [anon_sym_c_char] = ACTIONS(5646), + [anon_sym_c_schar] = ACTIONS(5646), + [anon_sym_c_uchar] = ACTIONS(5646), + [anon_sym_c_short] = ACTIONS(5646), + [anon_sym_c_ushort] = ACTIONS(5646), + [anon_sym_c_int] = ACTIONS(5646), + [anon_sym_c_uint] = ACTIONS(5646), + [anon_sym_c_long] = ACTIONS(5646), + [anon_sym_c_ulong] = ACTIONS(5646), + [anon_sym_c_longlong] = ACTIONS(5646), + [anon_sym_c_ulonglong] = ACTIONS(5646), + [anon_sym_c_float] = ACTIONS(5646), + [anon_sym_c_double] = ACTIONS(5646), + [anon_sym_c_longdouble] = ACTIONS(5646), + [anon_sym_PLUS_EQ] = ACTIONS(5644), + [anon_sym_DASH_EQ] = ACTIONS(5644), + [anon_sym_STAR_EQ] = ACTIONS(5644), + [anon_sym_SLASH_EQ] = ACTIONS(5644), + [anon_sym_AMP_EQ] = ACTIONS(5644), + [anon_sym_PIPE_EQ] = ACTIONS(5646), + [anon_sym_xor_EQ] = ACTIONS(5644), + [anon_sym_LT_LT_EQ] = ACTIONS(5644), + [anon_sym_GT_GT_EQ] = ACTIONS(5644), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5644), + [anon_sym_return] = ACTIONS(5646), + [anon_sym_yield] = ACTIONS(5646), + [anon_sym_break] = ACTIONS(5646), + [anon_sym_continue] = ACTIONS(5646), + [anon_sym_defer] = ACTIONS(5646), + [anon_sym_errdefer] = ACTIONS(5646), + [anon_sym_if] = ACTIONS(5646), + [anon_sym_else] = ACTIONS(5646), + [anon_sym_while] = ACTIONS(5646), + [anon_sym_expand] = ACTIONS(5646), + [anon_sym_for] = ACTIONS(5646), + [anon_sym_PIPE2] = ACTIONS(5644), + [anon_sym_match] = ACTIONS(5646), + [anon_sym_DOT_DOT] = ACTIONS(5646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5644), + [anon_sym_orelse] = ACTIONS(5646), + [anon_sym_or] = ACTIONS(5646), + [anon_sym_and] = ACTIONS(5646), + [anon_sym_EQ_EQ] = ACTIONS(5644), + [anon_sym_BANG_EQ] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_LT_EQ] = ACTIONS(5644), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5644), + [anon_sym_AMP] = ACTIONS(5646), + [anon_sym_xor] = ACTIONS(5646), + [anon_sym_LT_LT] = ACTIONS(5646), + [anon_sym_GT_GT] = ACTIONS(5646), + [anon_sym_LT_LT_PIPE] = ACTIONS(5646), + [anon_sym_PLUS] = ACTIONS(5646), + [anon_sym_SLASH] = ACTIONS(5646), + [anon_sym_catch] = ACTIONS(5646), + [anon_sym_TILDE] = ACTIONS(5644), + [anon_sym_try] = ACTIONS(5646), + [anon_sym_DOT] = ACTIONS(5646), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_true] = ACTIONS(5646), + [anon_sym_false] = ACTIONS(5646), + [anon_sym_null] = ACTIONS(5646), + [anon_sym_unreachable] = ACTIONS(5646), + [anon_sym_undefined] = ACTIONS(5646), + [sym_sink] = ACTIONS(5646), + [sym_integer] = ACTIONS(5646), + [sym_float] = ACTIONS(5644), + [anon_sym_DQUOTE] = ACTIONS(5644), + [sym_multiline_string] = ACTIONS(5644), + [sym_character] = ACTIONS(5644), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5644), + }, + [STATE(3827)] = { + [sym_identifier] = ACTIONS(5650), + [anon_sym_func] = ACTIONS(5650), + [anon_sym_BANG] = ACTIONS(5650), + [anon_sym_EQ] = ACTIONS(5650), + [anon_sym_struct] = ACTIONS(5650), + [anon_sym_LPAREN] = ACTIONS(5648), + [anon_sym_LBRACE] = ACTIONS(5648), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_DOLLAR] = ACTIONS(5648), + [anon_sym_PIPE] = ACTIONS(5650), + [anon_sym_QMARK] = ACTIONS(5648), + [anon_sym_STAR] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5648), + [anon_sym_void] = ACTIONS(5650), + [anon_sym_noreturn] = ACTIONS(5650), + [anon_sym_type] = ACTIONS(5650), + [anon_sym_anyopaque] = ACTIONS(5650), + [anon_sym_bool] = ACTIONS(5650), + [anon_sym_int] = ACTIONS(5650), + [anon_sym_uint] = ACTIONS(5650), + [anon_sym_float] = ACTIONS(5650), + [anon_sym_range] = ACTIONS(5650), + [anon_sym_i8] = ACTIONS(5650), + [anon_sym_i16] = ACTIONS(5650), + [anon_sym_i32] = ACTIONS(5650), + [anon_sym_i64] = ACTIONS(5650), + [anon_sym_u8] = ACTIONS(5650), + [anon_sym_u16] = ACTIONS(5650), + [anon_sym_u32] = ACTIONS(5650), + [anon_sym_u64] = ACTIONS(5650), + [anon_sym_isize] = ACTIONS(5650), + [anon_sym_usize] = ACTIONS(5650), + [anon_sym_f32] = ACTIONS(5650), + [anon_sym_f64] = ACTIONS(5650), + [anon_sym_c_char] = ACTIONS(5650), + [anon_sym_c_schar] = ACTIONS(5650), + [anon_sym_c_uchar] = ACTIONS(5650), + [anon_sym_c_short] = ACTIONS(5650), + [anon_sym_c_ushort] = ACTIONS(5650), + [anon_sym_c_int] = ACTIONS(5650), + [anon_sym_c_uint] = ACTIONS(5650), + [anon_sym_c_long] = ACTIONS(5650), + [anon_sym_c_ulong] = ACTIONS(5650), + [anon_sym_c_longlong] = ACTIONS(5650), + [anon_sym_c_ulonglong] = ACTIONS(5650), + [anon_sym_c_float] = ACTIONS(5650), + [anon_sym_c_double] = ACTIONS(5650), + [anon_sym_c_longdouble] = ACTIONS(5650), + [anon_sym_PLUS_EQ] = ACTIONS(5648), + [anon_sym_DASH_EQ] = ACTIONS(5648), + [anon_sym_STAR_EQ] = ACTIONS(5648), + [anon_sym_SLASH_EQ] = ACTIONS(5648), + [anon_sym_AMP_EQ] = ACTIONS(5648), + [anon_sym_PIPE_EQ] = ACTIONS(5650), + [anon_sym_xor_EQ] = ACTIONS(5648), + [anon_sym_LT_LT_EQ] = ACTIONS(5648), + [anon_sym_GT_GT_EQ] = ACTIONS(5648), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5648), + [anon_sym_return] = ACTIONS(5650), + [anon_sym_yield] = ACTIONS(5650), + [anon_sym_break] = ACTIONS(5650), + [anon_sym_continue] = ACTIONS(5650), + [anon_sym_defer] = ACTIONS(5650), + [anon_sym_errdefer] = ACTIONS(5650), + [anon_sym_if] = ACTIONS(5650), + [anon_sym_else] = ACTIONS(5650), + [anon_sym_while] = ACTIONS(5650), + [anon_sym_expand] = ACTIONS(5650), + [anon_sym_for] = ACTIONS(5650), + [anon_sym_PIPE2] = ACTIONS(5648), + [anon_sym_match] = ACTIONS(5650), + [anon_sym_DOT_DOT] = ACTIONS(5650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5648), + [anon_sym_orelse] = ACTIONS(5650), + [anon_sym_or] = ACTIONS(5650), + [anon_sym_and] = ACTIONS(5650), + [anon_sym_EQ_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_EQ] = ACTIONS(5648), + [anon_sym_GT] = ACTIONS(5650), + [anon_sym_GT_EQ] = ACTIONS(5648), + [anon_sym_AMP] = ACTIONS(5650), + [anon_sym_xor] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5650), + [anon_sym_GT_GT] = ACTIONS(5650), + [anon_sym_LT_LT_PIPE] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_SLASH] = ACTIONS(5650), + [anon_sym_catch] = ACTIONS(5650), + [anon_sym_TILDE] = ACTIONS(5648), + [anon_sym_try] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5648), + [anon_sym_true] = ACTIONS(5650), + [anon_sym_false] = ACTIONS(5650), + [anon_sym_null] = ACTIONS(5650), + [anon_sym_unreachable] = ACTIONS(5650), + [anon_sym_undefined] = ACTIONS(5650), + [sym_sink] = ACTIONS(5650), + [sym_integer] = ACTIONS(5650), + [sym_float] = ACTIONS(5648), + [anon_sym_DQUOTE] = ACTIONS(5648), + [sym_multiline_string] = ACTIONS(5648), + [sym_character] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5648), + }, + [STATE(3828)] = { + [sym_identifier] = ACTIONS(5654), + [anon_sym_func] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5654), + [anon_sym_EQ] = ACTIONS(5654), + [anon_sym_struct] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5652), + [anon_sym_LBRACE] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5654), + [anon_sym_DOLLAR] = ACTIONS(5652), + [anon_sym_PIPE] = ACTIONS(5654), + [anon_sym_QMARK] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_void] = ACTIONS(5654), + [anon_sym_noreturn] = ACTIONS(5654), + [anon_sym_type] = ACTIONS(5654), + [anon_sym_anyopaque] = ACTIONS(5654), + [anon_sym_bool] = ACTIONS(5654), + [anon_sym_int] = ACTIONS(5654), + [anon_sym_uint] = ACTIONS(5654), + [anon_sym_float] = ACTIONS(5654), + [anon_sym_range] = ACTIONS(5654), + [anon_sym_i8] = ACTIONS(5654), + [anon_sym_i16] = ACTIONS(5654), + [anon_sym_i32] = ACTIONS(5654), + [anon_sym_i64] = ACTIONS(5654), + [anon_sym_u8] = ACTIONS(5654), + [anon_sym_u16] = ACTIONS(5654), + [anon_sym_u32] = ACTIONS(5654), + [anon_sym_u64] = ACTIONS(5654), + [anon_sym_isize] = ACTIONS(5654), + [anon_sym_usize] = ACTIONS(5654), + [anon_sym_f32] = ACTIONS(5654), + [anon_sym_f64] = ACTIONS(5654), + [anon_sym_c_char] = ACTIONS(5654), + [anon_sym_c_schar] = ACTIONS(5654), + [anon_sym_c_uchar] = ACTIONS(5654), + [anon_sym_c_short] = ACTIONS(5654), + [anon_sym_c_ushort] = ACTIONS(5654), + [anon_sym_c_int] = ACTIONS(5654), + [anon_sym_c_uint] = ACTIONS(5654), + [anon_sym_c_long] = ACTIONS(5654), + [anon_sym_c_ulong] = ACTIONS(5654), + [anon_sym_c_longlong] = ACTIONS(5654), + [anon_sym_c_ulonglong] = ACTIONS(5654), + [anon_sym_c_float] = ACTIONS(5654), + [anon_sym_c_double] = ACTIONS(5654), + [anon_sym_c_longdouble] = ACTIONS(5654), + [anon_sym_PLUS_EQ] = ACTIONS(5652), + [anon_sym_DASH_EQ] = ACTIONS(5652), + [anon_sym_STAR_EQ] = ACTIONS(5652), + [anon_sym_SLASH_EQ] = ACTIONS(5652), + [anon_sym_AMP_EQ] = ACTIONS(5652), + [anon_sym_PIPE_EQ] = ACTIONS(5654), + [anon_sym_xor_EQ] = ACTIONS(5652), + [anon_sym_LT_LT_EQ] = ACTIONS(5652), + [anon_sym_GT_GT_EQ] = ACTIONS(5652), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5652), + [anon_sym_return] = ACTIONS(5654), + [anon_sym_yield] = ACTIONS(5654), + [anon_sym_break] = ACTIONS(5654), + [anon_sym_continue] = ACTIONS(5654), + [anon_sym_defer] = ACTIONS(5654), + [anon_sym_errdefer] = ACTIONS(5654), + [anon_sym_if] = ACTIONS(5654), + [anon_sym_else] = ACTIONS(5654), + [anon_sym_while] = ACTIONS(5654), + [anon_sym_expand] = ACTIONS(5654), + [anon_sym_for] = ACTIONS(5654), + [anon_sym_PIPE2] = ACTIONS(5652), + [anon_sym_match] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5652), + [anon_sym_orelse] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_EQ_EQ] = ACTIONS(5652), + [anon_sym_BANG_EQ] = ACTIONS(5652), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5652), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5652), + [anon_sym_AMP] = ACTIONS(5654), + [anon_sym_xor] = ACTIONS(5654), + [anon_sym_LT_LT] = ACTIONS(5654), + [anon_sym_GT_GT] = ACTIONS(5654), + [anon_sym_LT_LT_PIPE] = ACTIONS(5654), + [anon_sym_PLUS] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_catch] = ACTIONS(5654), + [anon_sym_TILDE] = ACTIONS(5652), + [anon_sym_try] = ACTIONS(5654), + [anon_sym_DOT] = ACTIONS(5654), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym_true] = ACTIONS(5654), + [anon_sym_false] = ACTIONS(5654), + [anon_sym_null] = ACTIONS(5654), + [anon_sym_unreachable] = ACTIONS(5654), + [anon_sym_undefined] = ACTIONS(5654), + [sym_sink] = ACTIONS(5654), + [sym_integer] = ACTIONS(5654), + [sym_float] = ACTIONS(5652), + [anon_sym_DQUOTE] = ACTIONS(5652), + [sym_multiline_string] = ACTIONS(5652), + [sym_character] = ACTIONS(5652), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5652), + }, + [STATE(3829)] = { + [sym_identifier] = ACTIONS(5818), + [anon_sym_func] = ACTIONS(5818), + [anon_sym_BANG] = ACTIONS(5818), + [anon_sym_EQ] = ACTIONS(5818), + [anon_sym_struct] = ACTIONS(5818), + [anon_sym_LPAREN] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5816), + [anon_sym_DASH] = ACTIONS(5818), + [anon_sym_DOLLAR] = ACTIONS(5816), + [anon_sym_PIPE] = ACTIONS(5818), + [anon_sym_QMARK] = ACTIONS(5816), + [anon_sym_STAR] = ACTIONS(5818), + [anon_sym_LBRACK] = ACTIONS(5816), + [anon_sym_void] = ACTIONS(5818), + [anon_sym_noreturn] = ACTIONS(5818), + [anon_sym_type] = ACTIONS(5818), + [anon_sym_anyopaque] = ACTIONS(5818), + [anon_sym_bool] = ACTIONS(5818), + [anon_sym_int] = ACTIONS(5818), + [anon_sym_uint] = ACTIONS(5818), + [anon_sym_float] = ACTIONS(5818), + [anon_sym_range] = ACTIONS(5818), + [anon_sym_i8] = ACTIONS(5818), + [anon_sym_i16] = ACTIONS(5818), + [anon_sym_i32] = ACTIONS(5818), + [anon_sym_i64] = ACTIONS(5818), + [anon_sym_u8] = ACTIONS(5818), + [anon_sym_u16] = ACTIONS(5818), + [anon_sym_u32] = ACTIONS(5818), + [anon_sym_u64] = ACTIONS(5818), + [anon_sym_isize] = ACTIONS(5818), + [anon_sym_usize] = ACTIONS(5818), + [anon_sym_f32] = ACTIONS(5818), + [anon_sym_f64] = ACTIONS(5818), + [anon_sym_c_char] = ACTIONS(5818), + [anon_sym_c_schar] = ACTIONS(5818), + [anon_sym_c_uchar] = ACTIONS(5818), + [anon_sym_c_short] = ACTIONS(5818), + [anon_sym_c_ushort] = ACTIONS(5818), + [anon_sym_c_int] = ACTIONS(5818), + [anon_sym_c_uint] = ACTIONS(5818), + [anon_sym_c_long] = ACTIONS(5818), + [anon_sym_c_ulong] = ACTIONS(5818), + [anon_sym_c_longlong] = ACTIONS(5818), + [anon_sym_c_ulonglong] = ACTIONS(5818), + [anon_sym_c_float] = ACTIONS(5818), + [anon_sym_c_double] = ACTIONS(5818), + [anon_sym_c_longdouble] = ACTIONS(5818), + [anon_sym_PLUS_EQ] = ACTIONS(5816), + [anon_sym_DASH_EQ] = ACTIONS(5816), + [anon_sym_STAR_EQ] = ACTIONS(5816), + [anon_sym_SLASH_EQ] = ACTIONS(5816), + [anon_sym_AMP_EQ] = ACTIONS(5816), + [anon_sym_PIPE_EQ] = ACTIONS(5818), + [anon_sym_xor_EQ] = ACTIONS(5816), + [anon_sym_LT_LT_EQ] = ACTIONS(5816), + [anon_sym_GT_GT_EQ] = ACTIONS(5816), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5816), + [anon_sym_return] = ACTIONS(5818), + [anon_sym_yield] = ACTIONS(5818), + [anon_sym_break] = ACTIONS(5818), + [anon_sym_continue] = ACTIONS(5818), + [anon_sym_defer] = ACTIONS(5818), + [anon_sym_errdefer] = ACTIONS(5818), + [anon_sym_if] = ACTIONS(5818), + [anon_sym_else] = ACTIONS(5818), + [anon_sym_while] = ACTIONS(5818), + [anon_sym_expand] = ACTIONS(5818), + [anon_sym_for] = ACTIONS(5818), + [anon_sym_PIPE2] = ACTIONS(5816), + [anon_sym_match] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5816), + [anon_sym_orelse] = ACTIONS(5818), + [anon_sym_or] = ACTIONS(5818), + [anon_sym_and] = ACTIONS(5818), + [anon_sym_EQ_EQ] = ACTIONS(5816), + [anon_sym_BANG_EQ] = ACTIONS(5816), + [anon_sym_LT] = ACTIONS(5818), + [anon_sym_LT_EQ] = ACTIONS(5816), + [anon_sym_GT] = ACTIONS(5818), + [anon_sym_GT_EQ] = ACTIONS(5816), + [anon_sym_AMP] = ACTIONS(5818), + [anon_sym_xor] = ACTIONS(5818), + [anon_sym_LT_LT] = ACTIONS(5818), + [anon_sym_GT_GT] = ACTIONS(5818), + [anon_sym_LT_LT_PIPE] = ACTIONS(5818), + [anon_sym_PLUS] = ACTIONS(5818), + [anon_sym_SLASH] = ACTIONS(5818), + [anon_sym_catch] = ACTIONS(5818), + [anon_sym_TILDE] = ACTIONS(5816), + [anon_sym_try] = ACTIONS(5818), + [anon_sym_DOT] = ACTIONS(5818), + [anon_sym_CARET] = ACTIONS(5816), + [anon_sym_true] = ACTIONS(5818), + [anon_sym_false] = ACTIONS(5818), + [anon_sym_null] = ACTIONS(5818), + [anon_sym_unreachable] = ACTIONS(5818), + [anon_sym_undefined] = ACTIONS(5818), + [sym_sink] = ACTIONS(5818), + [sym_integer] = ACTIONS(5818), + [sym_float] = ACTIONS(5816), + [anon_sym_DQUOTE] = ACTIONS(5816), + [sym_multiline_string] = ACTIONS(5816), + [sym_character] = ACTIONS(5816), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5816), + }, + [STATE(3830)] = { + [sym_identifier] = ACTIONS(5990), + [anon_sym_func] = ACTIONS(5990), + [anon_sym_BANG] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(5990), + [anon_sym_struct] = ACTIONS(5990), + [anon_sym_LPAREN] = ACTIONS(5988), + [anon_sym_LBRACE] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5990), + [anon_sym_DOLLAR] = ACTIONS(5988), + [anon_sym_PIPE] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5990), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_void] = ACTIONS(5990), + [anon_sym_noreturn] = ACTIONS(5990), + [anon_sym_type] = ACTIONS(5990), + [anon_sym_anyopaque] = ACTIONS(5990), + [anon_sym_bool] = ACTIONS(5990), + [anon_sym_int] = ACTIONS(5990), + [anon_sym_uint] = ACTIONS(5990), + [anon_sym_float] = ACTIONS(5990), + [anon_sym_range] = ACTIONS(5990), + [anon_sym_i8] = ACTIONS(5990), + [anon_sym_i16] = ACTIONS(5990), + [anon_sym_i32] = ACTIONS(5990), + [anon_sym_i64] = ACTIONS(5990), + [anon_sym_u8] = ACTIONS(5990), + [anon_sym_u16] = ACTIONS(5990), + [anon_sym_u32] = ACTIONS(5990), + [anon_sym_u64] = ACTIONS(5990), + [anon_sym_isize] = ACTIONS(5990), + [anon_sym_usize] = ACTIONS(5990), + [anon_sym_f32] = ACTIONS(5990), + [anon_sym_f64] = ACTIONS(5990), + [anon_sym_c_char] = ACTIONS(5990), + [anon_sym_c_schar] = ACTIONS(5990), + [anon_sym_c_uchar] = ACTIONS(5990), + [anon_sym_c_short] = ACTIONS(5990), + [anon_sym_c_ushort] = ACTIONS(5990), + [anon_sym_c_int] = ACTIONS(5990), + [anon_sym_c_uint] = ACTIONS(5990), + [anon_sym_c_long] = ACTIONS(5990), + [anon_sym_c_ulong] = ACTIONS(5990), + [anon_sym_c_longlong] = ACTIONS(5990), + [anon_sym_c_ulonglong] = ACTIONS(5990), + [anon_sym_c_float] = ACTIONS(5990), + [anon_sym_c_double] = ACTIONS(5990), + [anon_sym_c_longdouble] = ACTIONS(5990), + [anon_sym_PLUS_EQ] = ACTIONS(5988), + [anon_sym_DASH_EQ] = ACTIONS(5988), + [anon_sym_STAR_EQ] = ACTIONS(5988), + [anon_sym_SLASH_EQ] = ACTIONS(5988), + [anon_sym_AMP_EQ] = ACTIONS(5988), + [anon_sym_PIPE_EQ] = ACTIONS(5990), + [anon_sym_xor_EQ] = ACTIONS(5988), + [anon_sym_LT_LT_EQ] = ACTIONS(5988), + [anon_sym_GT_GT_EQ] = ACTIONS(5988), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5988), + [anon_sym_return] = ACTIONS(5990), + [anon_sym_yield] = ACTIONS(5990), + [anon_sym_break] = ACTIONS(5990), + [anon_sym_continue] = ACTIONS(5990), + [anon_sym_defer] = ACTIONS(5990), + [anon_sym_errdefer] = ACTIONS(5990), + [anon_sym_if] = ACTIONS(5990), + [anon_sym_else] = ACTIONS(5990), + [anon_sym_while] = ACTIONS(5990), + [anon_sym_expand] = ACTIONS(5990), + [anon_sym_for] = ACTIONS(5990), + [anon_sym_PIPE2] = ACTIONS(5988), + [anon_sym_match] = ACTIONS(5990), + [anon_sym_DOT_DOT] = ACTIONS(5990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5988), + [anon_sym_orelse] = ACTIONS(5990), + [anon_sym_or] = ACTIONS(5990), + [anon_sym_and] = ACTIONS(5990), + [anon_sym_EQ_EQ] = ACTIONS(5988), + [anon_sym_BANG_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5990), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_GT] = ACTIONS(5990), + [anon_sym_GT_EQ] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5990), + [anon_sym_xor] = ACTIONS(5990), + [anon_sym_LT_LT] = ACTIONS(5990), + [anon_sym_GT_GT] = ACTIONS(5990), + [anon_sym_LT_LT_PIPE] = ACTIONS(5990), + [anon_sym_PLUS] = ACTIONS(5990), + [anon_sym_SLASH] = ACTIONS(5990), + [anon_sym_catch] = ACTIONS(5990), + [anon_sym_TILDE] = ACTIONS(5988), + [anon_sym_try] = ACTIONS(5990), + [anon_sym_DOT] = ACTIONS(5990), + [anon_sym_CARET] = ACTIONS(5988), + [anon_sym_true] = ACTIONS(5990), + [anon_sym_false] = ACTIONS(5990), + [anon_sym_null] = ACTIONS(5990), + [anon_sym_unreachable] = ACTIONS(5990), + [anon_sym_undefined] = ACTIONS(5990), + [sym_sink] = ACTIONS(5990), + [sym_integer] = ACTIONS(5990), + [sym_float] = ACTIONS(5988), + [anon_sym_DQUOTE] = ACTIONS(5988), + [sym_multiline_string] = ACTIONS(5988), + [sym_character] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5988), + }, + [STATE(3831)] = { + [sym_identifier] = ACTIONS(4514), + [anon_sym_func] = ACTIONS(4514), + [anon_sym_BANG] = ACTIONS(4514), + [anon_sym_EQ] = ACTIONS(4514), + [anon_sym_struct] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_DOLLAR] = ACTIONS(4512), + [anon_sym_PIPE] = ACTIONS(4514), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_STAR] = ACTIONS(4514), + [anon_sym_LBRACK] = ACTIONS(4512), + [anon_sym_void] = ACTIONS(4514), + [anon_sym_noreturn] = ACTIONS(4514), + [anon_sym_type] = ACTIONS(4514), + [anon_sym_anyopaque] = ACTIONS(4514), + [anon_sym_bool] = ACTIONS(4514), + [anon_sym_int] = ACTIONS(4514), + [anon_sym_uint] = ACTIONS(4514), + [anon_sym_float] = ACTIONS(4514), + [anon_sym_range] = ACTIONS(4514), + [anon_sym_i8] = ACTIONS(4514), + [anon_sym_i16] = ACTIONS(4514), + [anon_sym_i32] = ACTIONS(4514), + [anon_sym_i64] = ACTIONS(4514), + [anon_sym_u8] = ACTIONS(4514), + [anon_sym_u16] = ACTIONS(4514), + [anon_sym_u32] = ACTIONS(4514), + [anon_sym_u64] = ACTIONS(4514), + [anon_sym_isize] = ACTIONS(4514), + [anon_sym_usize] = ACTIONS(4514), + [anon_sym_f32] = ACTIONS(4514), + [anon_sym_f64] = ACTIONS(4514), + [anon_sym_c_char] = ACTIONS(4514), + [anon_sym_c_schar] = ACTIONS(4514), + [anon_sym_c_uchar] = ACTIONS(4514), + [anon_sym_c_short] = ACTIONS(4514), + [anon_sym_c_ushort] = ACTIONS(4514), + [anon_sym_c_int] = ACTIONS(4514), + [anon_sym_c_uint] = ACTIONS(4514), + [anon_sym_c_long] = ACTIONS(4514), + [anon_sym_c_ulong] = ACTIONS(4514), + [anon_sym_c_longlong] = ACTIONS(4514), + [anon_sym_c_ulonglong] = ACTIONS(4514), + [anon_sym_c_float] = ACTIONS(4514), + [anon_sym_c_double] = ACTIONS(4514), + [anon_sym_c_longdouble] = ACTIONS(4514), + [anon_sym_PLUS_EQ] = ACTIONS(4512), + [anon_sym_DASH_EQ] = ACTIONS(4512), + [anon_sym_STAR_EQ] = ACTIONS(4512), + [anon_sym_SLASH_EQ] = ACTIONS(4512), + [anon_sym_AMP_EQ] = ACTIONS(4512), + [anon_sym_PIPE_EQ] = ACTIONS(4514), + [anon_sym_xor_EQ] = ACTIONS(4512), + [anon_sym_LT_LT_EQ] = ACTIONS(4512), + [anon_sym_GT_GT_EQ] = ACTIONS(4512), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4512), + [anon_sym_return] = ACTIONS(4514), + [anon_sym_yield] = ACTIONS(4514), + [anon_sym_break] = ACTIONS(4514), + [anon_sym_continue] = ACTIONS(4514), + [anon_sym_defer] = ACTIONS(4514), + [anon_sym_errdefer] = ACTIONS(4514), + [anon_sym_if] = ACTIONS(4514), + [anon_sym_else] = ACTIONS(4514), + [anon_sym_while] = ACTIONS(4514), + [anon_sym_expand] = ACTIONS(4514), + [anon_sym_for] = ACTIONS(4514), + [anon_sym_PIPE2] = ACTIONS(4512), + [anon_sym_match] = ACTIONS(4514), + [anon_sym_DOT_DOT] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4512), + [anon_sym_orelse] = ACTIONS(4514), + [anon_sym_or] = ACTIONS(4514), + [anon_sym_and] = ACTIONS(4514), + [anon_sym_EQ_EQ] = ACTIONS(4512), + [anon_sym_BANG_EQ] = ACTIONS(4512), + [anon_sym_LT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4512), + [anon_sym_GT] = ACTIONS(4514), + [anon_sym_GT_EQ] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4514), + [anon_sym_xor] = ACTIONS(4514), + [anon_sym_LT_LT] = ACTIONS(4514), + [anon_sym_GT_GT] = ACTIONS(4514), + [anon_sym_LT_LT_PIPE] = ACTIONS(4514), + [anon_sym_PLUS] = ACTIONS(4514), + [anon_sym_SLASH] = ACTIONS(4514), + [anon_sym_catch] = ACTIONS(4514), + [anon_sym_TILDE] = ACTIONS(4512), + [anon_sym_try] = ACTIONS(4514), + [anon_sym_DOT] = ACTIONS(4514), + [anon_sym_CARET] = ACTIONS(4512), + [anon_sym_true] = ACTIONS(4514), + [anon_sym_false] = ACTIONS(4514), + [anon_sym_null] = ACTIONS(4514), + [anon_sym_unreachable] = ACTIONS(4514), + [anon_sym_undefined] = ACTIONS(4514), + [sym_sink] = ACTIONS(4514), + [sym_integer] = ACTIONS(4514), + [sym_float] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [sym_multiline_string] = ACTIONS(4512), + [sym_character] = ACTIONS(4512), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4512), + }, + [STATE(3832)] = { + [sym_identifier] = ACTIONS(5666), + [anon_sym_func] = ACTIONS(5666), + [anon_sym_BANG] = ACTIONS(5666), + [anon_sym_EQ] = ACTIONS(5666), + [anon_sym_struct] = ACTIONS(5666), + [anon_sym_LPAREN] = ACTIONS(5664), + [anon_sym_LBRACE] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5666), + [anon_sym_DOLLAR] = ACTIONS(5664), + [anon_sym_PIPE] = ACTIONS(5666), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_LBRACK] = ACTIONS(5664), + [anon_sym_void] = ACTIONS(5666), + [anon_sym_noreturn] = ACTIONS(5666), + [anon_sym_type] = ACTIONS(5666), + [anon_sym_anyopaque] = ACTIONS(5666), + [anon_sym_bool] = ACTIONS(5666), + [anon_sym_int] = ACTIONS(5666), + [anon_sym_uint] = ACTIONS(5666), + [anon_sym_float] = ACTIONS(5666), + [anon_sym_range] = ACTIONS(5666), + [anon_sym_i8] = ACTIONS(5666), + [anon_sym_i16] = ACTIONS(5666), + [anon_sym_i32] = ACTIONS(5666), + [anon_sym_i64] = ACTIONS(5666), + [anon_sym_u8] = ACTIONS(5666), + [anon_sym_u16] = ACTIONS(5666), + [anon_sym_u32] = ACTIONS(5666), + [anon_sym_u64] = ACTIONS(5666), + [anon_sym_isize] = ACTIONS(5666), + [anon_sym_usize] = ACTIONS(5666), + [anon_sym_f32] = ACTIONS(5666), + [anon_sym_f64] = ACTIONS(5666), + [anon_sym_c_char] = ACTIONS(5666), + [anon_sym_c_schar] = ACTIONS(5666), + [anon_sym_c_uchar] = ACTIONS(5666), + [anon_sym_c_short] = ACTIONS(5666), + [anon_sym_c_ushort] = ACTIONS(5666), + [anon_sym_c_int] = ACTIONS(5666), + [anon_sym_c_uint] = ACTIONS(5666), + [anon_sym_c_long] = ACTIONS(5666), + [anon_sym_c_ulong] = ACTIONS(5666), + [anon_sym_c_longlong] = ACTIONS(5666), + [anon_sym_c_ulonglong] = ACTIONS(5666), + [anon_sym_c_float] = ACTIONS(5666), + [anon_sym_c_double] = ACTIONS(5666), + [anon_sym_c_longdouble] = ACTIONS(5666), + [anon_sym_PLUS_EQ] = ACTIONS(5664), + [anon_sym_DASH_EQ] = ACTIONS(5664), + [anon_sym_STAR_EQ] = ACTIONS(5664), + [anon_sym_SLASH_EQ] = ACTIONS(5664), + [anon_sym_AMP_EQ] = ACTIONS(5664), + [anon_sym_PIPE_EQ] = ACTIONS(5666), + [anon_sym_xor_EQ] = ACTIONS(5664), + [anon_sym_LT_LT_EQ] = ACTIONS(5664), + [anon_sym_GT_GT_EQ] = ACTIONS(5664), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5664), + [anon_sym_return] = ACTIONS(5666), + [anon_sym_yield] = ACTIONS(5666), + [anon_sym_break] = ACTIONS(5666), + [anon_sym_continue] = ACTIONS(5666), + [anon_sym_defer] = ACTIONS(5666), + [anon_sym_errdefer] = ACTIONS(5666), + [anon_sym_if] = ACTIONS(5666), + [anon_sym_else] = ACTIONS(5666), + [anon_sym_while] = ACTIONS(5666), + [anon_sym_expand] = ACTIONS(5666), + [anon_sym_for] = ACTIONS(5666), + [anon_sym_PIPE2] = ACTIONS(5664), + [anon_sym_match] = ACTIONS(5666), + [anon_sym_DOT_DOT] = ACTIONS(5666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5664), + [anon_sym_orelse] = ACTIONS(5666), + [anon_sym_or] = ACTIONS(5666), + [anon_sym_and] = ACTIONS(5666), + [anon_sym_EQ_EQ] = ACTIONS(5664), + [anon_sym_BANG_EQ] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(5666), + [anon_sym_LT_EQ] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5666), + [anon_sym_GT_EQ] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_xor] = ACTIONS(5666), + [anon_sym_LT_LT] = ACTIONS(5666), + [anon_sym_GT_GT] = ACTIONS(5666), + [anon_sym_LT_LT_PIPE] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5666), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_catch] = ACTIONS(5666), + [anon_sym_TILDE] = ACTIONS(5664), + [anon_sym_try] = ACTIONS(5666), + [anon_sym_DOT] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5664), + [anon_sym_true] = ACTIONS(5666), + [anon_sym_false] = ACTIONS(5666), + [anon_sym_null] = ACTIONS(5666), + [anon_sym_unreachable] = ACTIONS(5666), + [anon_sym_undefined] = ACTIONS(5666), + [sym_sink] = ACTIONS(5666), + [sym_integer] = ACTIONS(5666), + [sym_float] = ACTIONS(5664), + [anon_sym_DQUOTE] = ACTIONS(5664), + [sym_multiline_string] = ACTIONS(5664), + [sym_character] = ACTIONS(5664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5664), + }, + [STATE(3833)] = { + [sym_identifier] = ACTIONS(5670), + [anon_sym_func] = ACTIONS(5670), + [anon_sym_BANG] = ACTIONS(5670), + [anon_sym_EQ] = ACTIONS(5670), + [anon_sym_struct] = ACTIONS(5670), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LBRACE] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_DOLLAR] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_QMARK] = ACTIONS(5668), + [anon_sym_STAR] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5668), + [anon_sym_void] = ACTIONS(5670), + [anon_sym_noreturn] = ACTIONS(5670), + [anon_sym_type] = ACTIONS(5670), + [anon_sym_anyopaque] = ACTIONS(5670), + [anon_sym_bool] = ACTIONS(5670), + [anon_sym_int] = ACTIONS(5670), + [anon_sym_uint] = ACTIONS(5670), + [anon_sym_float] = ACTIONS(5670), + [anon_sym_range] = ACTIONS(5670), + [anon_sym_i8] = ACTIONS(5670), + [anon_sym_i16] = ACTIONS(5670), + [anon_sym_i32] = ACTIONS(5670), + [anon_sym_i64] = ACTIONS(5670), + [anon_sym_u8] = ACTIONS(5670), + [anon_sym_u16] = ACTIONS(5670), + [anon_sym_u32] = ACTIONS(5670), + [anon_sym_u64] = ACTIONS(5670), + [anon_sym_isize] = ACTIONS(5670), + [anon_sym_usize] = ACTIONS(5670), + [anon_sym_f32] = ACTIONS(5670), + [anon_sym_f64] = ACTIONS(5670), + [anon_sym_c_char] = ACTIONS(5670), + [anon_sym_c_schar] = ACTIONS(5670), + [anon_sym_c_uchar] = ACTIONS(5670), + [anon_sym_c_short] = ACTIONS(5670), + [anon_sym_c_ushort] = ACTIONS(5670), + [anon_sym_c_int] = ACTIONS(5670), + [anon_sym_c_uint] = ACTIONS(5670), + [anon_sym_c_long] = ACTIONS(5670), + [anon_sym_c_ulong] = ACTIONS(5670), + [anon_sym_c_longlong] = ACTIONS(5670), + [anon_sym_c_ulonglong] = ACTIONS(5670), + [anon_sym_c_float] = ACTIONS(5670), + [anon_sym_c_double] = ACTIONS(5670), + [anon_sym_c_longdouble] = ACTIONS(5670), + [anon_sym_PLUS_EQ] = ACTIONS(5668), + [anon_sym_DASH_EQ] = ACTIONS(5668), + [anon_sym_STAR_EQ] = ACTIONS(5668), + [anon_sym_SLASH_EQ] = ACTIONS(5668), + [anon_sym_AMP_EQ] = ACTIONS(5668), + [anon_sym_PIPE_EQ] = ACTIONS(5670), + [anon_sym_xor_EQ] = ACTIONS(5668), + [anon_sym_LT_LT_EQ] = ACTIONS(5668), + [anon_sym_GT_GT_EQ] = ACTIONS(5668), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5668), + [anon_sym_return] = ACTIONS(5670), + [anon_sym_yield] = ACTIONS(5670), + [anon_sym_break] = ACTIONS(5670), + [anon_sym_continue] = ACTIONS(5670), + [anon_sym_defer] = ACTIONS(5670), + [anon_sym_errdefer] = ACTIONS(5670), + [anon_sym_if] = ACTIONS(5670), + [anon_sym_else] = ACTIONS(5670), + [anon_sym_while] = ACTIONS(5670), + [anon_sym_expand] = ACTIONS(5670), + [anon_sym_for] = ACTIONS(5670), + [anon_sym_PIPE2] = ACTIONS(5668), + [anon_sym_match] = ACTIONS(5670), + [anon_sym_DOT_DOT] = ACTIONS(5670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5668), + [anon_sym_orelse] = ACTIONS(5670), + [anon_sym_or] = ACTIONS(5670), + [anon_sym_and] = ACTIONS(5670), + [anon_sym_EQ_EQ] = ACTIONS(5668), + [anon_sym_BANG_EQ] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5670), + [anon_sym_LT_EQ] = ACTIONS(5668), + [anon_sym_GT] = ACTIONS(5670), + [anon_sym_GT_EQ] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5670), + [anon_sym_xor] = ACTIONS(5670), + [anon_sym_LT_LT] = ACTIONS(5670), + [anon_sym_GT_GT] = ACTIONS(5670), + [anon_sym_LT_LT_PIPE] = ACTIONS(5670), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_SLASH] = ACTIONS(5670), + [anon_sym_catch] = ACTIONS(5670), + [anon_sym_TILDE] = ACTIONS(5668), + [anon_sym_try] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5670), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_true] = ACTIONS(5670), + [anon_sym_false] = ACTIONS(5670), + [anon_sym_null] = ACTIONS(5670), + [anon_sym_unreachable] = ACTIONS(5670), + [anon_sym_undefined] = ACTIONS(5670), + [sym_sink] = ACTIONS(5670), + [sym_integer] = ACTIONS(5670), + [sym_float] = ACTIONS(5668), + [anon_sym_DQUOTE] = ACTIONS(5668), + [sym_multiline_string] = ACTIONS(5668), + [sym_character] = ACTIONS(5668), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5668), + }, + [STATE(3834)] = { + [sym_identifier] = ACTIONS(5674), + [anon_sym_func] = ACTIONS(5674), + [anon_sym_BANG] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(5674), + [anon_sym_struct] = ACTIONS(5674), + [anon_sym_LPAREN] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5672), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_DOLLAR] = ACTIONS(5672), + [anon_sym_PIPE] = ACTIONS(5674), + [anon_sym_QMARK] = ACTIONS(5672), + [anon_sym_STAR] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5672), + [anon_sym_void] = ACTIONS(5674), + [anon_sym_noreturn] = ACTIONS(5674), + [anon_sym_type] = ACTIONS(5674), + [anon_sym_anyopaque] = ACTIONS(5674), + [anon_sym_bool] = ACTIONS(5674), + [anon_sym_int] = ACTIONS(5674), + [anon_sym_uint] = ACTIONS(5674), + [anon_sym_float] = ACTIONS(5674), + [anon_sym_range] = ACTIONS(5674), + [anon_sym_i8] = ACTIONS(5674), + [anon_sym_i16] = ACTIONS(5674), + [anon_sym_i32] = ACTIONS(5674), + [anon_sym_i64] = ACTIONS(5674), + [anon_sym_u8] = ACTIONS(5674), + [anon_sym_u16] = ACTIONS(5674), + [anon_sym_u32] = ACTIONS(5674), + [anon_sym_u64] = ACTIONS(5674), + [anon_sym_isize] = ACTIONS(5674), + [anon_sym_usize] = ACTIONS(5674), + [anon_sym_f32] = ACTIONS(5674), + [anon_sym_f64] = ACTIONS(5674), + [anon_sym_c_char] = ACTIONS(5674), + [anon_sym_c_schar] = ACTIONS(5674), + [anon_sym_c_uchar] = ACTIONS(5674), + [anon_sym_c_short] = ACTIONS(5674), + [anon_sym_c_ushort] = ACTIONS(5674), + [anon_sym_c_int] = ACTIONS(5674), + [anon_sym_c_uint] = ACTIONS(5674), + [anon_sym_c_long] = ACTIONS(5674), + [anon_sym_c_ulong] = ACTIONS(5674), + [anon_sym_c_longlong] = ACTIONS(5674), + [anon_sym_c_ulonglong] = ACTIONS(5674), + [anon_sym_c_float] = ACTIONS(5674), + [anon_sym_c_double] = ACTIONS(5674), + [anon_sym_c_longdouble] = ACTIONS(5674), + [anon_sym_PLUS_EQ] = ACTIONS(5672), + [anon_sym_DASH_EQ] = ACTIONS(5672), + [anon_sym_STAR_EQ] = ACTIONS(5672), + [anon_sym_SLASH_EQ] = ACTIONS(5672), + [anon_sym_AMP_EQ] = ACTIONS(5672), + [anon_sym_PIPE_EQ] = ACTIONS(5674), + [anon_sym_xor_EQ] = ACTIONS(5672), + [anon_sym_LT_LT_EQ] = ACTIONS(5672), + [anon_sym_GT_GT_EQ] = ACTIONS(5672), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5672), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_break] = ACTIONS(5674), + [anon_sym_continue] = ACTIONS(5674), + [anon_sym_defer] = ACTIONS(5674), + [anon_sym_errdefer] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_else] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_expand] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_PIPE2] = ACTIONS(5672), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_DOT_DOT] = ACTIONS(5674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5672), + [anon_sym_orelse] = ACTIONS(5674), + [anon_sym_or] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5672), + [anon_sym_BANG_EQ] = ACTIONS(5672), + [anon_sym_LT] = ACTIONS(5674), + [anon_sym_LT_EQ] = ACTIONS(5672), + [anon_sym_GT] = ACTIONS(5674), + [anon_sym_GT_EQ] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_xor] = ACTIONS(5674), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5674), + [anon_sym_LT_LT_PIPE] = ACTIONS(5674), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_SLASH] = ACTIONS(5674), + [anon_sym_catch] = ACTIONS(5674), + [anon_sym_TILDE] = ACTIONS(5672), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5674), + [anon_sym_CARET] = ACTIONS(5672), + [anon_sym_true] = ACTIONS(5674), + [anon_sym_false] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_unreachable] = ACTIONS(5674), + [anon_sym_undefined] = ACTIONS(5674), + [sym_sink] = ACTIONS(5674), + [sym_integer] = ACTIONS(5674), + [sym_float] = ACTIONS(5672), + [anon_sym_DQUOTE] = ACTIONS(5672), + [sym_multiline_string] = ACTIONS(5672), + [sym_character] = ACTIONS(5672), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5672), + }, + [STATE(3835)] = { + [sym_identifier] = ACTIONS(5980), + [anon_sym_func] = ACTIONS(5980), + [anon_sym_BANG] = ACTIONS(5980), + [anon_sym_EQ] = ACTIONS(5980), + [anon_sym_struct] = ACTIONS(5980), + [anon_sym_LPAREN] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5980), + [anon_sym_DOLLAR] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5980), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_STAR] = ACTIONS(5980), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_void] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym_type] = ACTIONS(5980), + [anon_sym_anyopaque] = ACTIONS(5980), + [anon_sym_bool] = ACTIONS(5980), + [anon_sym_int] = ACTIONS(5980), + [anon_sym_uint] = ACTIONS(5980), + [anon_sym_float] = ACTIONS(5980), + [anon_sym_range] = ACTIONS(5980), + [anon_sym_i8] = ACTIONS(5980), + [anon_sym_i16] = ACTIONS(5980), + [anon_sym_i32] = ACTIONS(5980), + [anon_sym_i64] = ACTIONS(5980), + [anon_sym_u8] = ACTIONS(5980), + [anon_sym_u16] = ACTIONS(5980), + [anon_sym_u32] = ACTIONS(5980), + [anon_sym_u64] = ACTIONS(5980), + [anon_sym_isize] = ACTIONS(5980), + [anon_sym_usize] = ACTIONS(5980), + [anon_sym_f32] = ACTIONS(5980), + [anon_sym_f64] = ACTIONS(5980), + [anon_sym_c_char] = ACTIONS(5980), + [anon_sym_c_schar] = ACTIONS(5980), + [anon_sym_c_uchar] = ACTIONS(5980), + [anon_sym_c_short] = ACTIONS(5980), + [anon_sym_c_ushort] = ACTIONS(5980), + [anon_sym_c_int] = ACTIONS(5980), + [anon_sym_c_uint] = ACTIONS(5980), + [anon_sym_c_long] = ACTIONS(5980), + [anon_sym_c_ulong] = ACTIONS(5980), + [anon_sym_c_longlong] = ACTIONS(5980), + [anon_sym_c_ulonglong] = ACTIONS(5980), + [anon_sym_c_float] = ACTIONS(5980), + [anon_sym_c_double] = ACTIONS(5980), + [anon_sym_c_longdouble] = ACTIONS(5980), + [anon_sym_PLUS_EQ] = ACTIONS(5978), + [anon_sym_DASH_EQ] = ACTIONS(5978), + [anon_sym_STAR_EQ] = ACTIONS(5978), + [anon_sym_SLASH_EQ] = ACTIONS(5978), + [anon_sym_AMP_EQ] = ACTIONS(5978), + [anon_sym_PIPE_EQ] = ACTIONS(5980), + [anon_sym_xor_EQ] = ACTIONS(5978), + [anon_sym_LT_LT_EQ] = ACTIONS(5978), + [anon_sym_GT_GT_EQ] = ACTIONS(5978), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5978), + [anon_sym_return] = ACTIONS(5980), + [anon_sym_yield] = ACTIONS(5980), + [anon_sym_break] = ACTIONS(5980), + [anon_sym_continue] = ACTIONS(5980), + [anon_sym_defer] = ACTIONS(5980), + [anon_sym_errdefer] = ACTIONS(5980), + [anon_sym_if] = ACTIONS(5980), + [anon_sym_else] = ACTIONS(5980), + [anon_sym_while] = ACTIONS(5980), + [anon_sym_expand] = ACTIONS(5980), + [anon_sym_for] = ACTIONS(5980), + [anon_sym_PIPE2] = ACTIONS(5978), + [anon_sym_match] = ACTIONS(5980), + [anon_sym_DOT_DOT] = ACTIONS(5980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5978), + [anon_sym_orelse] = ACTIONS(5980), + [anon_sym_or] = ACTIONS(5980), + [anon_sym_and] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5980), + [anon_sym_xor] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5980), + [anon_sym_LT_LT_PIPE] = ACTIONS(5980), + [anon_sym_PLUS] = ACTIONS(5980), + [anon_sym_SLASH] = ACTIONS(5980), + [anon_sym_catch] = ACTIONS(5980), + [anon_sym_TILDE] = ACTIONS(5978), + [anon_sym_try] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_true] = ACTIONS(5980), + [anon_sym_false] = ACTIONS(5980), + [anon_sym_null] = ACTIONS(5980), + [anon_sym_unreachable] = ACTIONS(5980), + [anon_sym_undefined] = ACTIONS(5980), + [sym_sink] = ACTIONS(5980), + [sym_integer] = ACTIONS(5980), + [sym_float] = ACTIONS(5978), + [anon_sym_DQUOTE] = ACTIONS(5978), + [sym_multiline_string] = ACTIONS(5978), + [sym_character] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5978), + }, + [STATE(3836)] = { + [sym_identifier] = ACTIONS(4420), + [anon_sym_func] = ACTIONS(4420), + [anon_sym_BANG] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(6817), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_DOLLAR] = ACTIONS(4418), + [anon_sym_PIPE] = ACTIONS(4420), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_void] = ACTIONS(4420), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_AMP_EQ] = ACTIONS(4418), + [anon_sym_PIPE_EQ] = ACTIONS(4418), + [anon_sym_xor_EQ] = ACTIONS(4418), + [anon_sym_LT_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_GT_EQ] = ACTIONS(4418), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4418), + [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_while] = ACTIONS(4420), + [anon_sym_expand] = ACTIONS(4420), + [anon_sym_for] = ACTIONS(4420), + [anon_sym_match] = ACTIONS(4420), + [anon_sym_DOT_DOT] = ACTIONS(4420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), + [anon_sym_orelse] = ACTIONS(4420), + [anon_sym_or] = ACTIONS(4420), + [anon_sym_and] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_xor] = ACTIONS(4420), + [anon_sym_LT_LT] = ACTIONS(4420), + [anon_sym_GT_GT] = ACTIONS(4420), + [anon_sym_LT_LT_PIPE] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_SLASH] = ACTIONS(4420), + [anon_sym_catch] = ACTIONS(4420), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4420), + [anon_sym_false] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(4420), + [anon_sym_unreachable] = ACTIONS(4420), + [anon_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(3837)] = { + [sym_identifier] = ACTIONS(4424), + [anon_sym_func] = ACTIONS(4424), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(6817), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_COMMA] = ACTIONS(4422), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_DOLLAR] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(4424), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_void] = ACTIONS(4424), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4422), + [anon_sym_DASH_EQ] = ACTIONS(4422), + [anon_sym_STAR_EQ] = ACTIONS(4422), + [anon_sym_SLASH_EQ] = ACTIONS(4422), + [anon_sym_AMP_EQ] = ACTIONS(4422), + [anon_sym_PIPE_EQ] = ACTIONS(4422), + [anon_sym_xor_EQ] = ACTIONS(4422), + [anon_sym_LT_LT_EQ] = ACTIONS(4422), + [anon_sym_GT_GT_EQ] = ACTIONS(4422), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4422), + [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_while] = ACTIONS(4424), + [anon_sym_expand] = ACTIONS(4424), + [anon_sym_for] = ACTIONS(4424), + [anon_sym_match] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4422), + [anon_sym_orelse] = ACTIONS(4424), + [anon_sym_or] = ACTIONS(4424), + [anon_sym_and] = ACTIONS(4424), + [anon_sym_EQ_EQ] = ACTIONS(4422), + [anon_sym_BANG_EQ] = ACTIONS(4422), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_LT_EQ] = ACTIONS(4422), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_GT_EQ] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_xor] = ACTIONS(4424), + [anon_sym_LT_LT] = ACTIONS(4424), + [anon_sym_GT_GT] = ACTIONS(4424), + [anon_sym_LT_LT_PIPE] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_catch] = ACTIONS(4424), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_unreachable] = ACTIONS(4424), + [anon_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(3838)] = { + [sym_identifier] = ACTIONS(4438), + [anon_sym_func] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6817), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_LPAREN] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_COMMA] = ACTIONS(4436), + [anon_sym_RBRACE] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_DOLLAR] = ACTIONS(4436), + [anon_sym_PIPE] = ACTIONS(4438), + [anon_sym_QMARK] = ACTIONS(4436), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_void] = ACTIONS(4438), + [anon_sym_noreturn] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_anyopaque] = ACTIONS(4438), + [anon_sym_bool] = ACTIONS(4438), + [anon_sym_int] = ACTIONS(4438), + [anon_sym_uint] = ACTIONS(4438), + [anon_sym_float] = ACTIONS(4438), + [anon_sym_range] = ACTIONS(4438), + [anon_sym_i8] = ACTIONS(4438), + [anon_sym_i16] = ACTIONS(4438), + [anon_sym_i32] = ACTIONS(4438), + [anon_sym_i64] = ACTIONS(4438), + [anon_sym_u8] = ACTIONS(4438), + [anon_sym_u16] = ACTIONS(4438), + [anon_sym_u32] = ACTIONS(4438), + [anon_sym_u64] = ACTIONS(4438), + [anon_sym_isize] = ACTIONS(4438), + [anon_sym_usize] = ACTIONS(4438), + [anon_sym_f32] = ACTIONS(4438), + [anon_sym_f64] = ACTIONS(4438), + [anon_sym_c_char] = ACTIONS(4438), + [anon_sym_c_schar] = ACTIONS(4438), + [anon_sym_c_uchar] = ACTIONS(4438), + [anon_sym_c_short] = ACTIONS(4438), + [anon_sym_c_ushort] = ACTIONS(4438), + [anon_sym_c_int] = ACTIONS(4438), + [anon_sym_c_uint] = ACTIONS(4438), + [anon_sym_c_long] = ACTIONS(4438), + [anon_sym_c_ulong] = ACTIONS(4438), + [anon_sym_c_longlong] = ACTIONS(4438), + [anon_sym_c_ulonglong] = ACTIONS(4438), + [anon_sym_c_float] = ACTIONS(4438), + [anon_sym_c_double] = ACTIONS(4438), + [anon_sym_c_longdouble] = ACTIONS(4438), + [anon_sym_PLUS_EQ] = ACTIONS(4436), + [anon_sym_DASH_EQ] = ACTIONS(4436), + [anon_sym_STAR_EQ] = ACTIONS(4436), + [anon_sym_SLASH_EQ] = ACTIONS(4436), + [anon_sym_AMP_EQ] = ACTIONS(4436), + [anon_sym_PIPE_EQ] = ACTIONS(4436), + [anon_sym_xor_EQ] = ACTIONS(4436), + [anon_sym_LT_LT_EQ] = ACTIONS(4436), + [anon_sym_GT_GT_EQ] = ACTIONS(4436), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4436), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_yield] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_defer] = ACTIONS(4438), + [anon_sym_errdefer] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_expand] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_match] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4436), + [anon_sym_orelse] = ACTIONS(4438), + [anon_sym_or] = ACTIONS(4438), + [anon_sym_and] = ACTIONS(4438), + [anon_sym_EQ_EQ] = ACTIONS(4436), + [anon_sym_BANG_EQ] = ACTIONS(4436), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_LT_EQ] = ACTIONS(4436), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_GT_EQ] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_xor] = ACTIONS(4438), + [anon_sym_LT_LT] = ACTIONS(4438), + [anon_sym_GT_GT] = ACTIONS(4438), + [anon_sym_LT_LT_PIPE] = ACTIONS(4438), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_catch] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4436), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4436), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_unreachable] = ACTIONS(4438), + [anon_sym_undefined] = ACTIONS(4438), + [sym_sink] = ACTIONS(4438), + [sym_integer] = ACTIONS(4438), + [sym_float] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(4436), + [sym_multiline_string] = ACTIONS(4436), + [sym_character] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4436), + }, + [STATE(3839)] = { + [sym_identifier] = ACTIONS(4442), + [anon_sym_func] = ACTIONS(4442), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6817), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_DOLLAR] = ACTIONS(4440), + [anon_sym_PIPE] = ACTIONS(4442), + [anon_sym_QMARK] = ACTIONS(4440), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_void] = ACTIONS(4442), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_anyopaque] = ACTIONS(4442), + [anon_sym_bool] = ACTIONS(4442), + [anon_sym_int] = ACTIONS(4442), + [anon_sym_uint] = ACTIONS(4442), + [anon_sym_float] = ACTIONS(4442), + [anon_sym_range] = ACTIONS(4442), + [anon_sym_i8] = ACTIONS(4442), + [anon_sym_i16] = ACTIONS(4442), + [anon_sym_i32] = ACTIONS(4442), + [anon_sym_i64] = ACTIONS(4442), + [anon_sym_u8] = ACTIONS(4442), + [anon_sym_u16] = ACTIONS(4442), + [anon_sym_u32] = ACTIONS(4442), + [anon_sym_u64] = ACTIONS(4442), + [anon_sym_isize] = ACTIONS(4442), + [anon_sym_usize] = ACTIONS(4442), + [anon_sym_f32] = ACTIONS(4442), + [anon_sym_f64] = ACTIONS(4442), + [anon_sym_c_char] = ACTIONS(4442), + [anon_sym_c_schar] = ACTIONS(4442), + [anon_sym_c_uchar] = ACTIONS(4442), + [anon_sym_c_short] = ACTIONS(4442), + [anon_sym_c_ushort] = ACTIONS(4442), + [anon_sym_c_int] = ACTIONS(4442), + [anon_sym_c_uint] = ACTIONS(4442), + [anon_sym_c_long] = ACTIONS(4442), + [anon_sym_c_ulong] = ACTIONS(4442), + [anon_sym_c_longlong] = ACTIONS(4442), + [anon_sym_c_ulonglong] = ACTIONS(4442), + [anon_sym_c_float] = ACTIONS(4442), + [anon_sym_c_double] = ACTIONS(4442), + [anon_sym_c_longdouble] = ACTIONS(4442), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_AMP_EQ] = ACTIONS(4440), + [anon_sym_PIPE_EQ] = ACTIONS(4440), + [anon_sym_xor_EQ] = ACTIONS(4440), + [anon_sym_LT_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_GT_EQ] = ACTIONS(4440), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4440), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_yield] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_defer] = ACTIONS(4442), + [anon_sym_errdefer] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_expand] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_match] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4440), + [anon_sym_orelse] = ACTIONS(4442), + [anon_sym_or] = ACTIONS(4442), + [anon_sym_and] = ACTIONS(4442), + [anon_sym_EQ_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_xor] = ACTIONS(4442), + [anon_sym_LT_LT] = ACTIONS(4442), + [anon_sym_GT_GT] = ACTIONS(4442), + [anon_sym_LT_LT_PIPE] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_catch] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4440), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_unreachable] = ACTIONS(4442), + [anon_sym_undefined] = ACTIONS(4442), + [sym_sink] = ACTIONS(4442), + [sym_integer] = ACTIONS(4442), + [sym_float] = ACTIONS(4440), + [anon_sym_DQUOTE] = ACTIONS(4440), + [sym_multiline_string] = ACTIONS(4440), + [sym_character] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4440), + }, + [STATE(3840)] = { + [sym_identifier] = ACTIONS(4546), + [anon_sym_func] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_struct] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4544), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_DOLLAR] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(4544), + [anon_sym_void] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_type] = ACTIONS(4546), + [anon_sym_anyopaque] = ACTIONS(4546), + [anon_sym_bool] = ACTIONS(4546), + [anon_sym_int] = ACTIONS(4546), + [anon_sym_uint] = ACTIONS(4546), + [anon_sym_float] = ACTIONS(4546), + [anon_sym_range] = ACTIONS(4546), + [anon_sym_i8] = ACTIONS(4546), + [anon_sym_i16] = ACTIONS(4546), + [anon_sym_i32] = ACTIONS(4546), + [anon_sym_i64] = ACTIONS(4546), + [anon_sym_u8] = ACTIONS(4546), + [anon_sym_u16] = ACTIONS(4546), + [anon_sym_u32] = ACTIONS(4546), + [anon_sym_u64] = ACTIONS(4546), + [anon_sym_isize] = ACTIONS(4546), + [anon_sym_usize] = ACTIONS(4546), + [anon_sym_f32] = ACTIONS(4546), + [anon_sym_f64] = ACTIONS(4546), + [anon_sym_c_char] = ACTIONS(4546), + [anon_sym_c_schar] = ACTIONS(4546), + [anon_sym_c_uchar] = ACTIONS(4546), + [anon_sym_c_short] = ACTIONS(4546), + [anon_sym_c_ushort] = ACTIONS(4546), + [anon_sym_c_int] = ACTIONS(4546), + [anon_sym_c_uint] = ACTIONS(4546), + [anon_sym_c_long] = ACTIONS(4546), + [anon_sym_c_ulong] = ACTIONS(4546), + [anon_sym_c_longlong] = ACTIONS(4546), + [anon_sym_c_ulonglong] = ACTIONS(4546), + [anon_sym_c_float] = ACTIONS(4546), + [anon_sym_c_double] = ACTIONS(4546), + [anon_sym_c_longdouble] = ACTIONS(4546), + [anon_sym_PLUS_EQ] = ACTIONS(4544), + [anon_sym_DASH_EQ] = ACTIONS(4544), + [anon_sym_STAR_EQ] = ACTIONS(4544), + [anon_sym_SLASH_EQ] = ACTIONS(4544), + [anon_sym_AMP_EQ] = ACTIONS(4544), + [anon_sym_PIPE_EQ] = ACTIONS(4546), + [anon_sym_xor_EQ] = ACTIONS(4544), + [anon_sym_LT_LT_EQ] = ACTIONS(4544), + [anon_sym_GT_GT_EQ] = ACTIONS(4544), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4544), + [anon_sym_return] = ACTIONS(4546), + [anon_sym_yield] = ACTIONS(4546), + [anon_sym_break] = ACTIONS(4546), + [anon_sym_continue] = ACTIONS(4546), + [anon_sym_defer] = ACTIONS(4546), + [anon_sym_errdefer] = ACTIONS(4546), + [anon_sym_if] = ACTIONS(4546), + [anon_sym_else] = ACTIONS(4546), + [anon_sym_while] = ACTIONS(4546), + [anon_sym_expand] = ACTIONS(4546), + [anon_sym_for] = ACTIONS(4546), + [anon_sym_PIPE2] = ACTIONS(4544), + [anon_sym_match] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4544), + [anon_sym_orelse] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4544), + [anon_sym_BANG_EQ] = ACTIONS(4544), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4544), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_LT_LT_PIPE] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_catch] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4544), + [anon_sym_try] = ACTIONS(4546), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4544), + [anon_sym_true] = ACTIONS(4546), + [anon_sym_false] = ACTIONS(4546), + [anon_sym_null] = ACTIONS(4546), + [anon_sym_unreachable] = ACTIONS(4546), + [anon_sym_undefined] = ACTIONS(4546), + [sym_sink] = ACTIONS(4546), + [sym_integer] = ACTIONS(4546), + [sym_float] = ACTIONS(4544), + [anon_sym_DQUOTE] = ACTIONS(4544), + [sym_multiline_string] = ACTIONS(4544), + [sym_character] = ACTIONS(4544), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4544), + }, + [STATE(3841)] = { + [sym_identifier] = ACTIONS(5680), + [anon_sym_func] = ACTIONS(5680), + [anon_sym_BANG] = ACTIONS(5680), + [anon_sym_EQ] = ACTIONS(5680), + [anon_sym_struct] = ACTIONS(5680), + [anon_sym_LPAREN] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5680), + [anon_sym_DOLLAR] = ACTIONS(5678), + [anon_sym_PIPE] = ACTIONS(5680), + [anon_sym_QMARK] = ACTIONS(5678), + [anon_sym_STAR] = ACTIONS(5680), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_void] = ACTIONS(5680), + [anon_sym_noreturn] = ACTIONS(5680), + [anon_sym_type] = ACTIONS(5680), + [anon_sym_anyopaque] = ACTIONS(5680), + [anon_sym_bool] = ACTIONS(5680), + [anon_sym_int] = ACTIONS(5680), + [anon_sym_uint] = ACTIONS(5680), + [anon_sym_float] = ACTIONS(5680), + [anon_sym_range] = ACTIONS(5680), + [anon_sym_i8] = ACTIONS(5680), + [anon_sym_i16] = ACTIONS(5680), + [anon_sym_i32] = ACTIONS(5680), + [anon_sym_i64] = ACTIONS(5680), + [anon_sym_u8] = ACTIONS(5680), + [anon_sym_u16] = ACTIONS(5680), + [anon_sym_u32] = ACTIONS(5680), + [anon_sym_u64] = ACTIONS(5680), + [anon_sym_isize] = ACTIONS(5680), + [anon_sym_usize] = ACTIONS(5680), + [anon_sym_f32] = ACTIONS(5680), + [anon_sym_f64] = ACTIONS(5680), + [anon_sym_c_char] = ACTIONS(5680), + [anon_sym_c_schar] = ACTIONS(5680), + [anon_sym_c_uchar] = ACTIONS(5680), + [anon_sym_c_short] = ACTIONS(5680), + [anon_sym_c_ushort] = ACTIONS(5680), + [anon_sym_c_int] = ACTIONS(5680), + [anon_sym_c_uint] = ACTIONS(5680), + [anon_sym_c_long] = ACTIONS(5680), + [anon_sym_c_ulong] = ACTIONS(5680), + [anon_sym_c_longlong] = ACTIONS(5680), + [anon_sym_c_ulonglong] = ACTIONS(5680), + [anon_sym_c_float] = ACTIONS(5680), + [anon_sym_c_double] = ACTIONS(5680), + [anon_sym_c_longdouble] = ACTIONS(5680), + [anon_sym_PLUS_EQ] = ACTIONS(5678), + [anon_sym_DASH_EQ] = ACTIONS(5678), + [anon_sym_STAR_EQ] = ACTIONS(5678), + [anon_sym_SLASH_EQ] = ACTIONS(5678), + [anon_sym_AMP_EQ] = ACTIONS(5678), + [anon_sym_PIPE_EQ] = ACTIONS(5680), + [anon_sym_xor_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_EQ] = ACTIONS(5678), + [anon_sym_GT_GT_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5678), + [anon_sym_return] = ACTIONS(5680), + [anon_sym_yield] = ACTIONS(5680), + [anon_sym_break] = ACTIONS(5680), + [anon_sym_continue] = ACTIONS(5680), + [anon_sym_defer] = ACTIONS(5680), + [anon_sym_errdefer] = ACTIONS(5680), + [anon_sym_if] = ACTIONS(5680), + [anon_sym_else] = ACTIONS(5680), + [anon_sym_while] = ACTIONS(5680), + [anon_sym_expand] = ACTIONS(5680), + [anon_sym_for] = ACTIONS(5680), + [anon_sym_PIPE2] = ACTIONS(5678), + [anon_sym_match] = ACTIONS(5680), + [anon_sym_DOT_DOT] = ACTIONS(5680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5678), + [anon_sym_orelse] = ACTIONS(5680), + [anon_sym_or] = ACTIONS(5680), + [anon_sym_and] = ACTIONS(5680), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_LT] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5678), + [anon_sym_GT] = ACTIONS(5680), + [anon_sym_GT_EQ] = ACTIONS(5678), + [anon_sym_AMP] = ACTIONS(5680), + [anon_sym_xor] = ACTIONS(5680), + [anon_sym_LT_LT] = ACTIONS(5680), + [anon_sym_GT_GT] = ACTIONS(5680), + [anon_sym_LT_LT_PIPE] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5680), + [anon_sym_SLASH] = ACTIONS(5680), + [anon_sym_catch] = ACTIONS(5680), + [anon_sym_TILDE] = ACTIONS(5678), + [anon_sym_try] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_CARET] = ACTIONS(5678), + [anon_sym_true] = ACTIONS(5680), + [anon_sym_false] = ACTIONS(5680), + [anon_sym_null] = ACTIONS(5680), + [anon_sym_unreachable] = ACTIONS(5680), + [anon_sym_undefined] = ACTIONS(5680), + [sym_sink] = ACTIONS(5680), + [sym_integer] = ACTIONS(5680), + [sym_float] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [sym_multiline_string] = ACTIONS(5678), + [sym_character] = ACTIONS(5678), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5678), + }, + [STATE(3842)] = { + [sym_identifier] = ACTIONS(5822), + [anon_sym_func] = ACTIONS(5822), + [anon_sym_BANG] = ACTIONS(5822), + [anon_sym_EQ] = ACTIONS(5822), + [anon_sym_struct] = ACTIONS(5822), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_DASH] = ACTIONS(5822), + [anon_sym_DOLLAR] = ACTIONS(5820), + [anon_sym_PIPE] = ACTIONS(5822), + [anon_sym_QMARK] = ACTIONS(5820), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_LBRACK] = ACTIONS(5820), + [anon_sym_void] = ACTIONS(5822), + [anon_sym_noreturn] = ACTIONS(5822), + [anon_sym_type] = ACTIONS(5822), + [anon_sym_anyopaque] = ACTIONS(5822), + [anon_sym_bool] = ACTIONS(5822), + [anon_sym_int] = ACTIONS(5822), + [anon_sym_uint] = ACTIONS(5822), + [anon_sym_float] = ACTIONS(5822), + [anon_sym_range] = ACTIONS(5822), + [anon_sym_i8] = ACTIONS(5822), + [anon_sym_i16] = ACTIONS(5822), + [anon_sym_i32] = ACTIONS(5822), + [anon_sym_i64] = ACTIONS(5822), + [anon_sym_u8] = ACTIONS(5822), + [anon_sym_u16] = ACTIONS(5822), + [anon_sym_u32] = ACTIONS(5822), + [anon_sym_u64] = ACTIONS(5822), + [anon_sym_isize] = ACTIONS(5822), + [anon_sym_usize] = ACTIONS(5822), + [anon_sym_f32] = ACTIONS(5822), + [anon_sym_f64] = ACTIONS(5822), + [anon_sym_c_char] = ACTIONS(5822), + [anon_sym_c_schar] = ACTIONS(5822), + [anon_sym_c_uchar] = ACTIONS(5822), + [anon_sym_c_short] = ACTIONS(5822), + [anon_sym_c_ushort] = ACTIONS(5822), + [anon_sym_c_int] = ACTIONS(5822), + [anon_sym_c_uint] = ACTIONS(5822), + [anon_sym_c_long] = ACTIONS(5822), + [anon_sym_c_ulong] = ACTIONS(5822), + [anon_sym_c_longlong] = ACTIONS(5822), + [anon_sym_c_ulonglong] = ACTIONS(5822), + [anon_sym_c_float] = ACTIONS(5822), + [anon_sym_c_double] = ACTIONS(5822), + [anon_sym_c_longdouble] = ACTIONS(5822), + [anon_sym_PLUS_EQ] = ACTIONS(5820), + [anon_sym_DASH_EQ] = ACTIONS(5820), + [anon_sym_STAR_EQ] = ACTIONS(5820), + [anon_sym_SLASH_EQ] = ACTIONS(5820), + [anon_sym_AMP_EQ] = ACTIONS(5820), + [anon_sym_PIPE_EQ] = ACTIONS(5822), + [anon_sym_xor_EQ] = ACTIONS(5820), + [anon_sym_LT_LT_EQ] = ACTIONS(5820), + [anon_sym_GT_GT_EQ] = ACTIONS(5820), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5820), + [anon_sym_return] = ACTIONS(5822), + [anon_sym_yield] = ACTIONS(5822), + [anon_sym_break] = ACTIONS(5822), + [anon_sym_continue] = ACTIONS(5822), + [anon_sym_defer] = ACTIONS(5822), + [anon_sym_errdefer] = ACTIONS(5822), + [anon_sym_if] = ACTIONS(5822), + [anon_sym_else] = ACTIONS(5822), + [anon_sym_while] = ACTIONS(5822), + [anon_sym_expand] = ACTIONS(5822), + [anon_sym_for] = ACTIONS(5822), + [anon_sym_PIPE2] = ACTIONS(5820), + [anon_sym_match] = ACTIONS(5822), + [anon_sym_DOT_DOT] = ACTIONS(5822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5820), + [anon_sym_orelse] = ACTIONS(5822), + [anon_sym_or] = ACTIONS(5822), + [anon_sym_and] = ACTIONS(5822), + [anon_sym_EQ_EQ] = ACTIONS(5820), + [anon_sym_BANG_EQ] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5822), + [anon_sym_LT_EQ] = ACTIONS(5820), + [anon_sym_GT] = ACTIONS(5822), + [anon_sym_GT_EQ] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5822), + [anon_sym_xor] = ACTIONS(5822), + [anon_sym_LT_LT] = ACTIONS(5822), + [anon_sym_GT_GT] = ACTIONS(5822), + [anon_sym_LT_LT_PIPE] = ACTIONS(5822), + [anon_sym_PLUS] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_catch] = ACTIONS(5822), + [anon_sym_TILDE] = ACTIONS(5820), + [anon_sym_try] = ACTIONS(5822), + [anon_sym_DOT] = ACTIONS(5822), + [anon_sym_CARET] = ACTIONS(5820), + [anon_sym_true] = ACTIONS(5822), + [anon_sym_false] = ACTIONS(5822), + [anon_sym_null] = ACTIONS(5822), + [anon_sym_unreachable] = ACTIONS(5822), + [anon_sym_undefined] = ACTIONS(5822), + [sym_sink] = ACTIONS(5822), + [sym_integer] = ACTIONS(5822), + [sym_float] = ACTIONS(5820), + [anon_sym_DQUOTE] = ACTIONS(5820), + [sym_multiline_string] = ACTIONS(5820), + [sym_character] = ACTIONS(5820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5820), + }, + [STATE(3843)] = { + [sym_identifier] = ACTIONS(5812), + [anon_sym_func] = ACTIONS(5812), + [anon_sym_BANG] = ACTIONS(5812), + [anon_sym_EQ] = ACTIONS(5812), + [anon_sym_struct] = ACTIONS(5812), + [anon_sym_LPAREN] = ACTIONS(5810), + [anon_sym_LBRACE] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5812), + [anon_sym_DOLLAR] = ACTIONS(5810), + [anon_sym_PIPE] = ACTIONS(5812), + [anon_sym_QMARK] = ACTIONS(5810), + [anon_sym_STAR] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(5810), + [anon_sym_void] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym_type] = ACTIONS(5812), + [anon_sym_anyopaque] = ACTIONS(5812), + [anon_sym_bool] = ACTIONS(5812), + [anon_sym_int] = ACTIONS(5812), + [anon_sym_uint] = ACTIONS(5812), + [anon_sym_float] = ACTIONS(5812), + [anon_sym_range] = ACTIONS(5812), + [anon_sym_i8] = ACTIONS(5812), + [anon_sym_i16] = ACTIONS(5812), + [anon_sym_i32] = ACTIONS(5812), + [anon_sym_i64] = ACTIONS(5812), + [anon_sym_u8] = ACTIONS(5812), + [anon_sym_u16] = ACTIONS(5812), + [anon_sym_u32] = ACTIONS(5812), + [anon_sym_u64] = ACTIONS(5812), + [anon_sym_isize] = ACTIONS(5812), + [anon_sym_usize] = ACTIONS(5812), + [anon_sym_f32] = ACTIONS(5812), + [anon_sym_f64] = ACTIONS(5812), + [anon_sym_c_char] = ACTIONS(5812), + [anon_sym_c_schar] = ACTIONS(5812), + [anon_sym_c_uchar] = ACTIONS(5812), + [anon_sym_c_short] = ACTIONS(5812), + [anon_sym_c_ushort] = ACTIONS(5812), + [anon_sym_c_int] = ACTIONS(5812), + [anon_sym_c_uint] = ACTIONS(5812), + [anon_sym_c_long] = ACTIONS(5812), + [anon_sym_c_ulong] = ACTIONS(5812), + [anon_sym_c_longlong] = ACTIONS(5812), + [anon_sym_c_ulonglong] = ACTIONS(5812), + [anon_sym_c_float] = ACTIONS(5812), + [anon_sym_c_double] = ACTIONS(5812), + [anon_sym_c_longdouble] = ACTIONS(5812), + [anon_sym_PLUS_EQ] = ACTIONS(5810), + [anon_sym_DASH_EQ] = ACTIONS(5810), + [anon_sym_STAR_EQ] = ACTIONS(5810), + [anon_sym_SLASH_EQ] = ACTIONS(5810), + [anon_sym_AMP_EQ] = ACTIONS(5810), + [anon_sym_PIPE_EQ] = ACTIONS(5812), + [anon_sym_xor_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_EQ] = ACTIONS(5810), + [anon_sym_GT_GT_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5810), + [anon_sym_return] = ACTIONS(5812), + [anon_sym_yield] = ACTIONS(5812), + [anon_sym_break] = ACTIONS(5812), + [anon_sym_continue] = ACTIONS(5812), + [anon_sym_defer] = ACTIONS(5812), + [anon_sym_errdefer] = ACTIONS(5812), + [anon_sym_if] = ACTIONS(5812), + [anon_sym_else] = ACTIONS(5812), + [anon_sym_while] = ACTIONS(5812), + [anon_sym_expand] = ACTIONS(5812), + [anon_sym_for] = ACTIONS(5812), + [anon_sym_PIPE2] = ACTIONS(5810), + [anon_sym_match] = ACTIONS(5812), + [anon_sym_DOT_DOT] = ACTIONS(5812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5810), + [anon_sym_orelse] = ACTIONS(5812), + [anon_sym_or] = ACTIONS(5812), + [anon_sym_and] = ACTIONS(5812), + [anon_sym_EQ_EQ] = ACTIONS(5810), + [anon_sym_BANG_EQ] = ACTIONS(5810), + [anon_sym_LT] = ACTIONS(5812), + [anon_sym_LT_EQ] = ACTIONS(5810), + [anon_sym_GT] = ACTIONS(5812), + [anon_sym_GT_EQ] = ACTIONS(5810), + [anon_sym_AMP] = ACTIONS(5812), + [anon_sym_xor] = ACTIONS(5812), + [anon_sym_LT_LT] = ACTIONS(5812), + [anon_sym_GT_GT] = ACTIONS(5812), + [anon_sym_LT_LT_PIPE] = ACTIONS(5812), + [anon_sym_PLUS] = ACTIONS(5812), + [anon_sym_SLASH] = ACTIONS(5812), + [anon_sym_catch] = ACTIONS(5812), + [anon_sym_TILDE] = ACTIONS(5810), + [anon_sym_try] = ACTIONS(5812), + [anon_sym_DOT] = ACTIONS(5812), + [anon_sym_CARET] = ACTIONS(5810), + [anon_sym_true] = ACTIONS(5812), + [anon_sym_false] = ACTIONS(5812), + [anon_sym_null] = ACTIONS(5812), + [anon_sym_unreachable] = ACTIONS(5812), + [anon_sym_undefined] = ACTIONS(5812), + [sym_sink] = ACTIONS(5812), + [sym_integer] = ACTIONS(5812), + [sym_float] = ACTIONS(5810), + [anon_sym_DQUOTE] = ACTIONS(5810), + [sym_multiline_string] = ACTIONS(5810), + [sym_character] = ACTIONS(5810), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5810), + }, + [STATE(3844)] = { + [sym_identifier] = ACTIONS(5686), + [anon_sym_func] = ACTIONS(5686), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_EQ] = ACTIONS(5686), + [anon_sym_struct] = ACTIONS(5686), + [anon_sym_LPAREN] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5686), + [anon_sym_DOLLAR] = ACTIONS(5684), + [anon_sym_PIPE] = ACTIONS(5686), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5686), + [anon_sym_LBRACK] = ACTIONS(5684), + [anon_sym_void] = ACTIONS(5686), + [anon_sym_noreturn] = ACTIONS(5686), + [anon_sym_type] = ACTIONS(5686), + [anon_sym_anyopaque] = ACTIONS(5686), + [anon_sym_bool] = ACTIONS(5686), + [anon_sym_int] = ACTIONS(5686), + [anon_sym_uint] = ACTIONS(5686), + [anon_sym_float] = ACTIONS(5686), + [anon_sym_range] = ACTIONS(5686), + [anon_sym_i8] = ACTIONS(5686), + [anon_sym_i16] = ACTIONS(5686), + [anon_sym_i32] = ACTIONS(5686), + [anon_sym_i64] = ACTIONS(5686), + [anon_sym_u8] = ACTIONS(5686), + [anon_sym_u16] = ACTIONS(5686), + [anon_sym_u32] = ACTIONS(5686), + [anon_sym_u64] = ACTIONS(5686), + [anon_sym_isize] = ACTIONS(5686), + [anon_sym_usize] = ACTIONS(5686), + [anon_sym_f32] = ACTIONS(5686), + [anon_sym_f64] = ACTIONS(5686), + [anon_sym_c_char] = ACTIONS(5686), + [anon_sym_c_schar] = ACTIONS(5686), + [anon_sym_c_uchar] = ACTIONS(5686), + [anon_sym_c_short] = ACTIONS(5686), + [anon_sym_c_ushort] = ACTIONS(5686), + [anon_sym_c_int] = ACTIONS(5686), + [anon_sym_c_uint] = ACTIONS(5686), + [anon_sym_c_long] = ACTIONS(5686), + [anon_sym_c_ulong] = ACTIONS(5686), + [anon_sym_c_longlong] = ACTIONS(5686), + [anon_sym_c_ulonglong] = ACTIONS(5686), + [anon_sym_c_float] = ACTIONS(5686), + [anon_sym_c_double] = ACTIONS(5686), + [anon_sym_c_longdouble] = ACTIONS(5686), + [anon_sym_PLUS_EQ] = ACTIONS(5684), + [anon_sym_DASH_EQ] = ACTIONS(5684), + [anon_sym_STAR_EQ] = ACTIONS(5684), + [anon_sym_SLASH_EQ] = ACTIONS(5684), + [anon_sym_AMP_EQ] = ACTIONS(5684), + [anon_sym_PIPE_EQ] = ACTIONS(5686), + [anon_sym_xor_EQ] = ACTIONS(5684), + [anon_sym_LT_LT_EQ] = ACTIONS(5684), + [anon_sym_GT_GT_EQ] = ACTIONS(5684), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5684), + [anon_sym_return] = ACTIONS(5686), + [anon_sym_yield] = ACTIONS(5686), + [anon_sym_break] = ACTIONS(5686), + [anon_sym_continue] = ACTIONS(5686), + [anon_sym_defer] = ACTIONS(5686), + [anon_sym_errdefer] = ACTIONS(5686), + [anon_sym_if] = ACTIONS(5686), + [anon_sym_else] = ACTIONS(5686), + [anon_sym_while] = ACTIONS(5686), + [anon_sym_expand] = ACTIONS(5686), + [anon_sym_for] = ACTIONS(5686), + [anon_sym_PIPE2] = ACTIONS(5684), + [anon_sym_match] = ACTIONS(5686), + [anon_sym_DOT_DOT] = ACTIONS(5686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5684), + [anon_sym_orelse] = ACTIONS(5686), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_EQ_EQ] = ACTIONS(5684), + [anon_sym_BANG_EQ] = ACTIONS(5684), + [anon_sym_LT] = ACTIONS(5686), + [anon_sym_LT_EQ] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5686), + [anon_sym_GT_EQ] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5686), + [anon_sym_xor] = ACTIONS(5686), + [anon_sym_LT_LT] = ACTIONS(5686), + [anon_sym_GT_GT] = ACTIONS(5686), + [anon_sym_LT_LT_PIPE] = ACTIONS(5686), + [anon_sym_PLUS] = ACTIONS(5686), + [anon_sym_SLASH] = ACTIONS(5686), + [anon_sym_catch] = ACTIONS(5686), + [anon_sym_TILDE] = ACTIONS(5684), + [anon_sym_try] = ACTIONS(5686), + [anon_sym_DOT] = ACTIONS(5686), + [anon_sym_CARET] = ACTIONS(5684), + [anon_sym_true] = ACTIONS(5686), + [anon_sym_false] = ACTIONS(5686), + [anon_sym_null] = ACTIONS(5686), + [anon_sym_unreachable] = ACTIONS(5686), + [anon_sym_undefined] = ACTIONS(5686), + [sym_sink] = ACTIONS(5686), + [sym_integer] = ACTIONS(5686), + [sym_float] = ACTIONS(5684), + [anon_sym_DQUOTE] = ACTIONS(5684), + [sym_multiline_string] = ACTIONS(5684), + [sym_character] = ACTIONS(5684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5684), + }, + [STATE(3845)] = { + [sym_identifier] = ACTIONS(5690), + [anon_sym_func] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(5690), + [anon_sym_EQ] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5690), + [anon_sym_LPAREN] = ACTIONS(5688), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_DOLLAR] = ACTIONS(5688), + [anon_sym_PIPE] = ACTIONS(5690), + [anon_sym_QMARK] = ACTIONS(5688), + [anon_sym_STAR] = ACTIONS(5690), + [anon_sym_LBRACK] = ACTIONS(5688), + [anon_sym_void] = ACTIONS(5690), + [anon_sym_noreturn] = ACTIONS(5690), + [anon_sym_type] = ACTIONS(5690), + [anon_sym_anyopaque] = ACTIONS(5690), + [anon_sym_bool] = ACTIONS(5690), + [anon_sym_int] = ACTIONS(5690), + [anon_sym_uint] = ACTIONS(5690), + [anon_sym_float] = ACTIONS(5690), + [anon_sym_range] = ACTIONS(5690), + [anon_sym_i8] = ACTIONS(5690), + [anon_sym_i16] = ACTIONS(5690), + [anon_sym_i32] = ACTIONS(5690), + [anon_sym_i64] = ACTIONS(5690), + [anon_sym_u8] = ACTIONS(5690), + [anon_sym_u16] = ACTIONS(5690), + [anon_sym_u32] = ACTIONS(5690), + [anon_sym_u64] = ACTIONS(5690), + [anon_sym_isize] = ACTIONS(5690), + [anon_sym_usize] = ACTIONS(5690), + [anon_sym_f32] = ACTIONS(5690), + [anon_sym_f64] = ACTIONS(5690), + [anon_sym_c_char] = ACTIONS(5690), + [anon_sym_c_schar] = ACTIONS(5690), + [anon_sym_c_uchar] = ACTIONS(5690), + [anon_sym_c_short] = ACTIONS(5690), + [anon_sym_c_ushort] = ACTIONS(5690), + [anon_sym_c_int] = ACTIONS(5690), + [anon_sym_c_uint] = ACTIONS(5690), + [anon_sym_c_long] = ACTIONS(5690), + [anon_sym_c_ulong] = ACTIONS(5690), + [anon_sym_c_longlong] = ACTIONS(5690), + [anon_sym_c_ulonglong] = ACTIONS(5690), + [anon_sym_c_float] = ACTIONS(5690), + [anon_sym_c_double] = ACTIONS(5690), + [anon_sym_c_longdouble] = ACTIONS(5690), + [anon_sym_PLUS_EQ] = ACTIONS(5688), + [anon_sym_DASH_EQ] = ACTIONS(5688), + [anon_sym_STAR_EQ] = ACTIONS(5688), + [anon_sym_SLASH_EQ] = ACTIONS(5688), + [anon_sym_AMP_EQ] = ACTIONS(5688), + [anon_sym_PIPE_EQ] = ACTIONS(5690), + [anon_sym_xor_EQ] = ACTIONS(5688), + [anon_sym_LT_LT_EQ] = ACTIONS(5688), + [anon_sym_GT_GT_EQ] = ACTIONS(5688), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5688), + [anon_sym_return] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(5690), + [anon_sym_break] = ACTIONS(5690), + [anon_sym_continue] = ACTIONS(5690), + [anon_sym_defer] = ACTIONS(5690), + [anon_sym_errdefer] = ACTIONS(5690), + [anon_sym_if] = ACTIONS(5690), + [anon_sym_else] = ACTIONS(5690), + [anon_sym_while] = ACTIONS(5690), + [anon_sym_expand] = ACTIONS(5690), + [anon_sym_for] = ACTIONS(5690), + [anon_sym_PIPE2] = ACTIONS(5688), + [anon_sym_match] = ACTIONS(5690), + [anon_sym_DOT_DOT] = ACTIONS(5690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5688), + [anon_sym_orelse] = ACTIONS(5690), + [anon_sym_or] = ACTIONS(5690), + [anon_sym_and] = ACTIONS(5690), + [anon_sym_EQ_EQ] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5688), + [anon_sym_LT] = ACTIONS(5690), + [anon_sym_LT_EQ] = ACTIONS(5688), + [anon_sym_GT] = ACTIONS(5690), + [anon_sym_GT_EQ] = ACTIONS(5688), + [anon_sym_AMP] = ACTIONS(5690), + [anon_sym_xor] = ACTIONS(5690), + [anon_sym_LT_LT] = ACTIONS(5690), + [anon_sym_GT_GT] = ACTIONS(5690), + [anon_sym_LT_LT_PIPE] = ACTIONS(5690), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_SLASH] = ACTIONS(5690), + [anon_sym_catch] = ACTIONS(5690), + [anon_sym_TILDE] = ACTIONS(5688), + [anon_sym_try] = ACTIONS(5690), + [anon_sym_DOT] = ACTIONS(5690), + [anon_sym_CARET] = ACTIONS(5688), + [anon_sym_true] = ACTIONS(5690), + [anon_sym_false] = ACTIONS(5690), + [anon_sym_null] = ACTIONS(5690), + [anon_sym_unreachable] = ACTIONS(5690), + [anon_sym_undefined] = ACTIONS(5690), + [sym_sink] = ACTIONS(5690), + [sym_integer] = ACTIONS(5690), + [sym_float] = ACTIONS(5688), + [anon_sym_DQUOTE] = ACTIONS(5688), + [sym_multiline_string] = ACTIONS(5688), + [sym_character] = ACTIONS(5688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5688), + }, + [STATE(3846)] = { + [sym_identifier] = ACTIONS(6064), + [anon_sym_func] = ACTIONS(6064), + [anon_sym_BANG] = ACTIONS(6064), + [anon_sym_EQ] = ACTIONS(6064), + [anon_sym_struct] = ACTIONS(6064), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6064), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_PIPE] = ACTIONS(6064), + [anon_sym_QMARK] = ACTIONS(6062), + [anon_sym_STAR] = ACTIONS(6064), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_void] = ACTIONS(6064), + [anon_sym_noreturn] = ACTIONS(6064), + [anon_sym_type] = ACTIONS(6064), + [anon_sym_anyopaque] = ACTIONS(6064), + [anon_sym_bool] = ACTIONS(6064), + [anon_sym_int] = ACTIONS(6064), + [anon_sym_uint] = ACTIONS(6064), + [anon_sym_float] = ACTIONS(6064), + [anon_sym_range] = ACTIONS(6064), + [anon_sym_i8] = ACTIONS(6064), + [anon_sym_i16] = ACTIONS(6064), + [anon_sym_i32] = ACTIONS(6064), + [anon_sym_i64] = ACTIONS(6064), + [anon_sym_u8] = ACTIONS(6064), + [anon_sym_u16] = ACTIONS(6064), + [anon_sym_u32] = ACTIONS(6064), + [anon_sym_u64] = ACTIONS(6064), + [anon_sym_isize] = ACTIONS(6064), + [anon_sym_usize] = ACTIONS(6064), + [anon_sym_f32] = ACTIONS(6064), + [anon_sym_f64] = ACTIONS(6064), + [anon_sym_c_char] = ACTIONS(6064), + [anon_sym_c_schar] = ACTIONS(6064), + [anon_sym_c_uchar] = ACTIONS(6064), + [anon_sym_c_short] = ACTIONS(6064), + [anon_sym_c_ushort] = ACTIONS(6064), + [anon_sym_c_int] = ACTIONS(6064), + [anon_sym_c_uint] = ACTIONS(6064), + [anon_sym_c_long] = ACTIONS(6064), + [anon_sym_c_ulong] = ACTIONS(6064), + [anon_sym_c_longlong] = ACTIONS(6064), + [anon_sym_c_ulonglong] = ACTIONS(6064), + [anon_sym_c_float] = ACTIONS(6064), + [anon_sym_c_double] = ACTIONS(6064), + [anon_sym_c_longdouble] = ACTIONS(6064), + [anon_sym_PLUS_EQ] = ACTIONS(6062), + [anon_sym_DASH_EQ] = ACTIONS(6062), + [anon_sym_STAR_EQ] = ACTIONS(6062), + [anon_sym_SLASH_EQ] = ACTIONS(6062), + [anon_sym_AMP_EQ] = ACTIONS(6062), + [anon_sym_PIPE_EQ] = ACTIONS(6064), + [anon_sym_xor_EQ] = ACTIONS(6062), + [anon_sym_LT_LT_EQ] = ACTIONS(6062), + [anon_sym_GT_GT_EQ] = ACTIONS(6062), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(6062), + [anon_sym_return] = ACTIONS(6064), + [anon_sym_yield] = ACTIONS(6064), + [anon_sym_break] = ACTIONS(6064), + [anon_sym_continue] = ACTIONS(6064), + [anon_sym_defer] = ACTIONS(6064), + [anon_sym_errdefer] = ACTIONS(6064), + [anon_sym_if] = ACTIONS(6064), + [anon_sym_else] = ACTIONS(6064), + [anon_sym_while] = ACTIONS(6064), + [anon_sym_expand] = ACTIONS(6064), + [anon_sym_for] = ACTIONS(6064), + [anon_sym_PIPE2] = ACTIONS(6062), + [anon_sym_match] = ACTIONS(6064), + [anon_sym_DOT_DOT] = ACTIONS(6064), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_orelse] = ACTIONS(6064), + [anon_sym_or] = ACTIONS(6064), + [anon_sym_and] = ACTIONS(6064), + [anon_sym_EQ_EQ] = ACTIONS(6062), + [anon_sym_BANG_EQ] = ACTIONS(6062), + [anon_sym_LT] = ACTIONS(6064), + [anon_sym_LT_EQ] = ACTIONS(6062), + [anon_sym_GT] = ACTIONS(6064), + [anon_sym_GT_EQ] = ACTIONS(6062), + [anon_sym_AMP] = ACTIONS(6064), + [anon_sym_xor] = ACTIONS(6064), + [anon_sym_LT_LT] = ACTIONS(6064), + [anon_sym_GT_GT] = ACTIONS(6064), + [anon_sym_LT_LT_PIPE] = ACTIONS(6064), + [anon_sym_PLUS] = ACTIONS(6064), + [anon_sym_SLASH] = ACTIONS(6064), + [anon_sym_catch] = ACTIONS(6064), + [anon_sym_TILDE] = ACTIONS(6062), + [anon_sym_try] = ACTIONS(6064), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_true] = ACTIONS(6064), + [anon_sym_false] = ACTIONS(6064), + [anon_sym_null] = ACTIONS(6064), + [anon_sym_unreachable] = ACTIONS(6064), + [anon_sym_undefined] = ACTIONS(6064), + [sym_sink] = ACTIONS(6064), + [sym_integer] = ACTIONS(6064), + [sym_float] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(6062), + [sym_multiline_string] = ACTIONS(6062), + [sym_character] = ACTIONS(6062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6062), + }, + [STATE(3847)] = { + [sym_identifier] = ACTIONS(5888), + [anon_sym_func] = ACTIONS(5888), + [anon_sym_BANG] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_LPAREN] = ACTIONS(5886), + [anon_sym_LBRACE] = ACTIONS(5886), + [anon_sym_DASH] = ACTIONS(5888), + [anon_sym_DOLLAR] = ACTIONS(5886), + [anon_sym_PIPE] = ACTIONS(5888), + [anon_sym_QMARK] = ACTIONS(5886), + [anon_sym_STAR] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5886), + [anon_sym_void] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_type] = ACTIONS(5888), + [anon_sym_anyopaque] = ACTIONS(5888), + [anon_sym_bool] = ACTIONS(5888), + [anon_sym_int] = ACTIONS(5888), + [anon_sym_uint] = ACTIONS(5888), + [anon_sym_float] = ACTIONS(5888), + [anon_sym_range] = ACTIONS(5888), + [anon_sym_i8] = ACTIONS(5888), + [anon_sym_i16] = ACTIONS(5888), + [anon_sym_i32] = ACTIONS(5888), + [anon_sym_i64] = ACTIONS(5888), + [anon_sym_u8] = ACTIONS(5888), + [anon_sym_u16] = ACTIONS(5888), + [anon_sym_u32] = ACTIONS(5888), + [anon_sym_u64] = ACTIONS(5888), + [anon_sym_isize] = ACTIONS(5888), + [anon_sym_usize] = ACTIONS(5888), + [anon_sym_f32] = ACTIONS(5888), + [anon_sym_f64] = ACTIONS(5888), + [anon_sym_c_char] = ACTIONS(5888), + [anon_sym_c_schar] = ACTIONS(5888), + [anon_sym_c_uchar] = ACTIONS(5888), + [anon_sym_c_short] = ACTIONS(5888), + [anon_sym_c_ushort] = ACTIONS(5888), + [anon_sym_c_int] = ACTIONS(5888), + [anon_sym_c_uint] = ACTIONS(5888), + [anon_sym_c_long] = ACTIONS(5888), + [anon_sym_c_ulong] = ACTIONS(5888), + [anon_sym_c_longlong] = ACTIONS(5888), + [anon_sym_c_ulonglong] = ACTIONS(5888), + [anon_sym_c_float] = ACTIONS(5888), + [anon_sym_c_double] = ACTIONS(5888), + [anon_sym_c_longdouble] = ACTIONS(5888), + [anon_sym_PLUS_EQ] = ACTIONS(5886), + [anon_sym_DASH_EQ] = ACTIONS(5886), + [anon_sym_STAR_EQ] = ACTIONS(5886), + [anon_sym_SLASH_EQ] = ACTIONS(5886), + [anon_sym_AMP_EQ] = ACTIONS(5886), + [anon_sym_PIPE_EQ] = ACTIONS(5888), + [anon_sym_xor_EQ] = ACTIONS(5886), + [anon_sym_LT_LT_EQ] = ACTIONS(5886), + [anon_sym_GT_GT_EQ] = ACTIONS(5886), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5886), + [anon_sym_return] = ACTIONS(5888), + [anon_sym_yield] = ACTIONS(5888), + [anon_sym_break] = ACTIONS(5888), + [anon_sym_continue] = ACTIONS(5888), + [anon_sym_defer] = ACTIONS(5888), + [anon_sym_errdefer] = ACTIONS(5888), + [anon_sym_if] = ACTIONS(5888), + [anon_sym_else] = ACTIONS(5888), + [anon_sym_while] = ACTIONS(5888), + [anon_sym_expand] = ACTIONS(5888), + [anon_sym_for] = ACTIONS(5888), + [anon_sym_PIPE2] = ACTIONS(5886), + [anon_sym_match] = ACTIONS(5888), + [anon_sym_DOT_DOT] = ACTIONS(5888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5886), + [anon_sym_orelse] = ACTIONS(5888), + [anon_sym_or] = ACTIONS(5888), + [anon_sym_and] = ACTIONS(5888), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_BANG_EQ] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(5888), + [anon_sym_LT_EQ] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5888), + [anon_sym_GT_EQ] = ACTIONS(5886), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym_xor] = ACTIONS(5888), + [anon_sym_LT_LT] = ACTIONS(5888), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_LT_LT_PIPE] = ACTIONS(5888), + [anon_sym_PLUS] = ACTIONS(5888), + [anon_sym_SLASH] = ACTIONS(5888), + [anon_sym_catch] = ACTIONS(5888), + [anon_sym_TILDE] = ACTIONS(5886), + [anon_sym_try] = ACTIONS(5888), + [anon_sym_DOT] = ACTIONS(5888), + [anon_sym_CARET] = ACTIONS(5886), + [anon_sym_true] = ACTIONS(5888), + [anon_sym_false] = ACTIONS(5888), + [anon_sym_null] = ACTIONS(5888), + [anon_sym_unreachable] = ACTIONS(5888), + [anon_sym_undefined] = ACTIONS(5888), + [sym_sink] = ACTIONS(5888), + [sym_integer] = ACTIONS(5888), + [sym_float] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(5886), + [sym_multiline_string] = ACTIONS(5886), + [sym_character] = ACTIONS(5886), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5886), + }, + [STATE(3848)] = { + [sym_identifier] = ACTIONS(5892), + [anon_sym_func] = ACTIONS(5892), + [anon_sym_BANG] = ACTIONS(5892), + [anon_sym_EQ] = ACTIONS(5892), + [anon_sym_struct] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5890), + [anon_sym_LBRACE] = ACTIONS(5890), + [anon_sym_DASH] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5890), + [anon_sym_PIPE] = ACTIONS(5892), + [anon_sym_QMARK] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(5890), + [anon_sym_void] = ACTIONS(5892), + [anon_sym_noreturn] = ACTIONS(5892), + [anon_sym_type] = ACTIONS(5892), + [anon_sym_anyopaque] = ACTIONS(5892), + [anon_sym_bool] = ACTIONS(5892), + [anon_sym_int] = ACTIONS(5892), + [anon_sym_uint] = ACTIONS(5892), + [anon_sym_float] = ACTIONS(5892), + [anon_sym_range] = ACTIONS(5892), + [anon_sym_i8] = ACTIONS(5892), + [anon_sym_i16] = ACTIONS(5892), + [anon_sym_i32] = ACTIONS(5892), + [anon_sym_i64] = ACTIONS(5892), + [anon_sym_u8] = ACTIONS(5892), + [anon_sym_u16] = ACTIONS(5892), + [anon_sym_u32] = ACTIONS(5892), + [anon_sym_u64] = ACTIONS(5892), + [anon_sym_isize] = ACTIONS(5892), + [anon_sym_usize] = ACTIONS(5892), + [anon_sym_f32] = ACTIONS(5892), + [anon_sym_f64] = ACTIONS(5892), + [anon_sym_c_char] = ACTIONS(5892), + [anon_sym_c_schar] = ACTIONS(5892), + [anon_sym_c_uchar] = ACTIONS(5892), + [anon_sym_c_short] = ACTIONS(5892), + [anon_sym_c_ushort] = ACTIONS(5892), + [anon_sym_c_int] = ACTIONS(5892), + [anon_sym_c_uint] = ACTIONS(5892), + [anon_sym_c_long] = ACTIONS(5892), + [anon_sym_c_ulong] = ACTIONS(5892), + [anon_sym_c_longlong] = ACTIONS(5892), + [anon_sym_c_ulonglong] = ACTIONS(5892), + [anon_sym_c_float] = ACTIONS(5892), + [anon_sym_c_double] = ACTIONS(5892), + [anon_sym_c_longdouble] = ACTIONS(5892), + [anon_sym_PLUS_EQ] = ACTIONS(5890), + [anon_sym_DASH_EQ] = ACTIONS(5890), + [anon_sym_STAR_EQ] = ACTIONS(5890), + [anon_sym_SLASH_EQ] = ACTIONS(5890), + [anon_sym_AMP_EQ] = ACTIONS(5890), + [anon_sym_PIPE_EQ] = ACTIONS(5892), + [anon_sym_xor_EQ] = ACTIONS(5890), + [anon_sym_LT_LT_EQ] = ACTIONS(5890), + [anon_sym_GT_GT_EQ] = ACTIONS(5890), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5890), + [anon_sym_return] = ACTIONS(5892), + [anon_sym_yield] = ACTIONS(5892), + [anon_sym_break] = ACTIONS(5892), + [anon_sym_continue] = ACTIONS(5892), + [anon_sym_defer] = ACTIONS(5892), + [anon_sym_errdefer] = ACTIONS(5892), + [anon_sym_if] = ACTIONS(5892), + [anon_sym_else] = ACTIONS(5892), + [anon_sym_while] = ACTIONS(5892), + [anon_sym_expand] = ACTIONS(5892), + [anon_sym_for] = ACTIONS(5892), + [anon_sym_PIPE2] = ACTIONS(5890), + [anon_sym_match] = ACTIONS(5892), + [anon_sym_DOT_DOT] = ACTIONS(5892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5890), + [anon_sym_orelse] = ACTIONS(5892), + [anon_sym_or] = ACTIONS(5892), + [anon_sym_and] = ACTIONS(5892), + [anon_sym_EQ_EQ] = ACTIONS(5890), + [anon_sym_BANG_EQ] = ACTIONS(5890), + [anon_sym_LT] = ACTIONS(5892), + [anon_sym_LT_EQ] = ACTIONS(5890), + [anon_sym_GT] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_xor] = ACTIONS(5892), + [anon_sym_LT_LT] = ACTIONS(5892), + [anon_sym_GT_GT] = ACTIONS(5892), + [anon_sym_LT_LT_PIPE] = ACTIONS(5892), + [anon_sym_PLUS] = ACTIONS(5892), + [anon_sym_SLASH] = ACTIONS(5892), + [anon_sym_catch] = ACTIONS(5892), + [anon_sym_TILDE] = ACTIONS(5890), + [anon_sym_try] = ACTIONS(5892), + [anon_sym_DOT] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5890), + [anon_sym_true] = ACTIONS(5892), + [anon_sym_false] = ACTIONS(5892), + [anon_sym_null] = ACTIONS(5892), + [anon_sym_unreachable] = ACTIONS(5892), + [anon_sym_undefined] = ACTIONS(5892), + [sym_sink] = ACTIONS(5892), + [sym_integer] = ACTIONS(5892), + [sym_float] = ACTIONS(5890), + [anon_sym_DQUOTE] = ACTIONS(5890), + [sym_multiline_string] = ACTIONS(5890), + [sym_character] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5890), + }, + [STATE(3849)] = { + [sym_identifier] = ACTIONS(5724), + [anon_sym_func] = ACTIONS(5724), + [anon_sym_BANG] = ACTIONS(5724), + [anon_sym_EQ] = ACTIONS(5724), + [anon_sym_struct] = ACTIONS(5724), + [anon_sym_LPAREN] = ACTIONS(5722), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5724), + [anon_sym_DOLLAR] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5724), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_STAR] = ACTIONS(5724), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_void] = ACTIONS(5724), + [anon_sym_noreturn] = ACTIONS(5724), + [anon_sym_type] = ACTIONS(5724), + [anon_sym_anyopaque] = ACTIONS(5724), + [anon_sym_bool] = ACTIONS(5724), + [anon_sym_int] = ACTIONS(5724), + [anon_sym_uint] = ACTIONS(5724), + [anon_sym_float] = ACTIONS(5724), + [anon_sym_range] = ACTIONS(5724), + [anon_sym_i8] = ACTIONS(5724), + [anon_sym_i16] = ACTIONS(5724), + [anon_sym_i32] = ACTIONS(5724), + [anon_sym_i64] = ACTIONS(5724), + [anon_sym_u8] = ACTIONS(5724), + [anon_sym_u16] = ACTIONS(5724), + [anon_sym_u32] = ACTIONS(5724), + [anon_sym_u64] = ACTIONS(5724), + [anon_sym_isize] = ACTIONS(5724), + [anon_sym_usize] = ACTIONS(5724), + [anon_sym_f32] = ACTIONS(5724), + [anon_sym_f64] = ACTIONS(5724), + [anon_sym_c_char] = ACTIONS(5724), + [anon_sym_c_schar] = ACTIONS(5724), + [anon_sym_c_uchar] = ACTIONS(5724), + [anon_sym_c_short] = ACTIONS(5724), + [anon_sym_c_ushort] = ACTIONS(5724), + [anon_sym_c_int] = ACTIONS(5724), + [anon_sym_c_uint] = ACTIONS(5724), + [anon_sym_c_long] = ACTIONS(5724), + [anon_sym_c_ulong] = ACTIONS(5724), + [anon_sym_c_longlong] = ACTIONS(5724), + [anon_sym_c_ulonglong] = ACTIONS(5724), + [anon_sym_c_float] = ACTIONS(5724), + [anon_sym_c_double] = ACTIONS(5724), + [anon_sym_c_longdouble] = ACTIONS(5724), + [anon_sym_PLUS_EQ] = ACTIONS(5722), + [anon_sym_DASH_EQ] = ACTIONS(5722), + [anon_sym_STAR_EQ] = ACTIONS(5722), + [anon_sym_SLASH_EQ] = ACTIONS(5722), + [anon_sym_AMP_EQ] = ACTIONS(5722), + [anon_sym_PIPE_EQ] = ACTIONS(5724), + [anon_sym_xor_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_EQ] = ACTIONS(5722), + [anon_sym_GT_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5722), + [anon_sym_return] = ACTIONS(5724), + [anon_sym_yield] = ACTIONS(5724), + [anon_sym_break] = ACTIONS(5724), + [anon_sym_continue] = ACTIONS(5724), + [anon_sym_defer] = ACTIONS(5724), + [anon_sym_errdefer] = ACTIONS(5724), + [anon_sym_if] = ACTIONS(5724), + [anon_sym_else] = ACTIONS(5724), + [anon_sym_while] = ACTIONS(5724), + [anon_sym_expand] = ACTIONS(5724), + [anon_sym_for] = ACTIONS(5724), + [anon_sym_PIPE2] = ACTIONS(5722), + [anon_sym_match] = ACTIONS(5724), + [anon_sym_DOT_DOT] = ACTIONS(5724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5722), + [anon_sym_orelse] = ACTIONS(5724), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_AMP] = ACTIONS(5724), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5724), + [anon_sym_GT_GT] = ACTIONS(5724), + [anon_sym_LT_LT_PIPE] = ACTIONS(5724), + [anon_sym_PLUS] = ACTIONS(5724), + [anon_sym_SLASH] = ACTIONS(5724), + [anon_sym_catch] = ACTIONS(5724), + [anon_sym_TILDE] = ACTIONS(5722), + [anon_sym_try] = ACTIONS(5724), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5722), + [anon_sym_true] = ACTIONS(5724), + [anon_sym_false] = ACTIONS(5724), + [anon_sym_null] = ACTIONS(5724), + [anon_sym_unreachable] = ACTIONS(5724), + [anon_sym_undefined] = ACTIONS(5724), + [sym_sink] = ACTIONS(5724), + [sym_integer] = ACTIONS(5724), + [sym_float] = ACTIONS(5722), + [anon_sym_DQUOTE] = ACTIONS(5722), + [sym_multiline_string] = ACTIONS(5722), + [sym_character] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5722), + }, + [STATE(3850)] = { + [sym_identifier] = ACTIONS(5728), + [anon_sym_func] = ACTIONS(5728), + [anon_sym_BANG] = ACTIONS(5728), + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_struct] = ACTIONS(5728), + [anon_sym_LPAREN] = ACTIONS(5726), + [anon_sym_LBRACE] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5728), + [anon_sym_DOLLAR] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5728), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_STAR] = ACTIONS(5728), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_void] = ACTIONS(5728), + [anon_sym_noreturn] = ACTIONS(5728), + [anon_sym_type] = ACTIONS(5728), + [anon_sym_anyopaque] = ACTIONS(5728), + [anon_sym_bool] = ACTIONS(5728), + [anon_sym_int] = ACTIONS(5728), + [anon_sym_uint] = ACTIONS(5728), + [anon_sym_float] = ACTIONS(5728), + [anon_sym_range] = ACTIONS(5728), + [anon_sym_i8] = ACTIONS(5728), + [anon_sym_i16] = ACTIONS(5728), + [anon_sym_i32] = ACTIONS(5728), + [anon_sym_i64] = ACTIONS(5728), + [anon_sym_u8] = ACTIONS(5728), + [anon_sym_u16] = ACTIONS(5728), + [anon_sym_u32] = ACTIONS(5728), + [anon_sym_u64] = ACTIONS(5728), + [anon_sym_isize] = ACTIONS(5728), + [anon_sym_usize] = ACTIONS(5728), + [anon_sym_f32] = ACTIONS(5728), + [anon_sym_f64] = ACTIONS(5728), + [anon_sym_c_char] = ACTIONS(5728), + [anon_sym_c_schar] = ACTIONS(5728), + [anon_sym_c_uchar] = ACTIONS(5728), + [anon_sym_c_short] = ACTIONS(5728), + [anon_sym_c_ushort] = ACTIONS(5728), + [anon_sym_c_int] = ACTIONS(5728), + [anon_sym_c_uint] = ACTIONS(5728), + [anon_sym_c_long] = ACTIONS(5728), + [anon_sym_c_ulong] = ACTIONS(5728), + [anon_sym_c_longlong] = ACTIONS(5728), + [anon_sym_c_ulonglong] = ACTIONS(5728), + [anon_sym_c_float] = ACTIONS(5728), + [anon_sym_c_double] = ACTIONS(5728), + [anon_sym_c_longdouble] = ACTIONS(5728), + [anon_sym_PLUS_EQ] = ACTIONS(5726), + [anon_sym_DASH_EQ] = ACTIONS(5726), + [anon_sym_STAR_EQ] = ACTIONS(5726), + [anon_sym_SLASH_EQ] = ACTIONS(5726), + [anon_sym_AMP_EQ] = ACTIONS(5726), + [anon_sym_PIPE_EQ] = ACTIONS(5728), + [anon_sym_xor_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_EQ] = ACTIONS(5726), + [anon_sym_GT_GT_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5726), + [anon_sym_return] = ACTIONS(5728), + [anon_sym_yield] = ACTIONS(5728), + [anon_sym_break] = ACTIONS(5728), + [anon_sym_continue] = ACTIONS(5728), + [anon_sym_defer] = ACTIONS(5728), + [anon_sym_errdefer] = ACTIONS(5728), + [anon_sym_if] = ACTIONS(5728), + [anon_sym_else] = ACTIONS(5728), + [anon_sym_while] = ACTIONS(5728), + [anon_sym_expand] = ACTIONS(5728), + [anon_sym_for] = ACTIONS(5728), + [anon_sym_PIPE2] = ACTIONS(5726), + [anon_sym_match] = ACTIONS(5728), + [anon_sym_DOT_DOT] = ACTIONS(5728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5726), + [anon_sym_orelse] = ACTIONS(5728), + [anon_sym_or] = ACTIONS(5728), + [anon_sym_and] = ACTIONS(5728), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_LT] = ACTIONS(5728), + [anon_sym_LT_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5728), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(5728), + [anon_sym_xor] = ACTIONS(5728), + [anon_sym_LT_LT] = ACTIONS(5728), + [anon_sym_GT_GT] = ACTIONS(5728), + [anon_sym_LT_LT_PIPE] = ACTIONS(5728), + [anon_sym_PLUS] = ACTIONS(5728), + [anon_sym_SLASH] = ACTIONS(5728), + [anon_sym_catch] = ACTIONS(5728), + [anon_sym_TILDE] = ACTIONS(5726), + [anon_sym_try] = ACTIONS(5728), + [anon_sym_DOT] = ACTIONS(5728), + [anon_sym_CARET] = ACTIONS(5726), + [anon_sym_true] = ACTIONS(5728), + [anon_sym_false] = ACTIONS(5728), + [anon_sym_null] = ACTIONS(5728), + [anon_sym_unreachable] = ACTIONS(5728), + [anon_sym_undefined] = ACTIONS(5728), + [sym_sink] = ACTIONS(5728), + [sym_integer] = ACTIONS(5728), + [sym_float] = ACTIONS(5726), + [anon_sym_DQUOTE] = ACTIONS(5726), + [sym_multiline_string] = ACTIONS(5726), + [sym_character] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5726), + }, + [STATE(3851)] = { + [sym_identifier] = ACTIONS(5896), + [anon_sym_func] = ACTIONS(5896), + [anon_sym_BANG] = ACTIONS(5896), + [anon_sym_EQ] = ACTIONS(5896), + [anon_sym_struct] = ACTIONS(5896), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_LBRACE] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_DOLLAR] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_QMARK] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5896), + [anon_sym_LBRACK] = ACTIONS(5894), + [anon_sym_void] = ACTIONS(5896), + [anon_sym_noreturn] = ACTIONS(5896), + [anon_sym_type] = ACTIONS(5896), + [anon_sym_anyopaque] = ACTIONS(5896), + [anon_sym_bool] = ACTIONS(5896), + [anon_sym_int] = ACTIONS(5896), + [anon_sym_uint] = ACTIONS(5896), + [anon_sym_float] = ACTIONS(5896), + [anon_sym_range] = ACTIONS(5896), + [anon_sym_i8] = ACTIONS(5896), + [anon_sym_i16] = ACTIONS(5896), + [anon_sym_i32] = ACTIONS(5896), + [anon_sym_i64] = ACTIONS(5896), + [anon_sym_u8] = ACTIONS(5896), + [anon_sym_u16] = ACTIONS(5896), + [anon_sym_u32] = ACTIONS(5896), + [anon_sym_u64] = ACTIONS(5896), + [anon_sym_isize] = ACTIONS(5896), + [anon_sym_usize] = ACTIONS(5896), + [anon_sym_f32] = ACTIONS(5896), + [anon_sym_f64] = ACTIONS(5896), + [anon_sym_c_char] = ACTIONS(5896), + [anon_sym_c_schar] = ACTIONS(5896), + [anon_sym_c_uchar] = ACTIONS(5896), + [anon_sym_c_short] = ACTIONS(5896), + [anon_sym_c_ushort] = ACTIONS(5896), + [anon_sym_c_int] = ACTIONS(5896), + [anon_sym_c_uint] = ACTIONS(5896), + [anon_sym_c_long] = ACTIONS(5896), + [anon_sym_c_ulong] = ACTIONS(5896), + [anon_sym_c_longlong] = ACTIONS(5896), + [anon_sym_c_ulonglong] = ACTIONS(5896), + [anon_sym_c_float] = ACTIONS(5896), + [anon_sym_c_double] = ACTIONS(5896), + [anon_sym_c_longdouble] = ACTIONS(5896), + [anon_sym_PLUS_EQ] = ACTIONS(5894), + [anon_sym_DASH_EQ] = ACTIONS(5894), + [anon_sym_STAR_EQ] = ACTIONS(5894), + [anon_sym_SLASH_EQ] = ACTIONS(5894), + [anon_sym_AMP_EQ] = ACTIONS(5894), + [anon_sym_PIPE_EQ] = ACTIONS(5896), + [anon_sym_xor_EQ] = ACTIONS(5894), + [anon_sym_LT_LT_EQ] = ACTIONS(5894), + [anon_sym_GT_GT_EQ] = ACTIONS(5894), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5894), + [anon_sym_return] = ACTIONS(5896), + [anon_sym_yield] = ACTIONS(5896), + [anon_sym_break] = ACTIONS(5896), + [anon_sym_continue] = ACTIONS(5896), + [anon_sym_defer] = ACTIONS(5896), + [anon_sym_errdefer] = ACTIONS(5896), + [anon_sym_if] = ACTIONS(5896), + [anon_sym_else] = ACTIONS(5896), + [anon_sym_while] = ACTIONS(5896), + [anon_sym_expand] = ACTIONS(5896), + [anon_sym_for] = ACTIONS(5896), + [anon_sym_PIPE2] = ACTIONS(5894), + [anon_sym_match] = ACTIONS(5896), + [anon_sym_DOT_DOT] = ACTIONS(5896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5894), + [anon_sym_orelse] = ACTIONS(5896), + [anon_sym_or] = ACTIONS(5896), + [anon_sym_and] = ACTIONS(5896), + [anon_sym_EQ_EQ] = ACTIONS(5894), + [anon_sym_BANG_EQ] = ACTIONS(5894), + [anon_sym_LT] = ACTIONS(5896), + [anon_sym_LT_EQ] = ACTIONS(5894), + [anon_sym_GT] = ACTIONS(5896), + [anon_sym_GT_EQ] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(5896), + [anon_sym_xor] = ACTIONS(5896), + [anon_sym_LT_LT] = ACTIONS(5896), + [anon_sym_GT_GT] = ACTIONS(5896), + [anon_sym_LT_LT_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5896), + [anon_sym_catch] = ACTIONS(5896), + [anon_sym_TILDE] = ACTIONS(5894), + [anon_sym_try] = ACTIONS(5896), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_true] = ACTIONS(5896), + [anon_sym_false] = ACTIONS(5896), + [anon_sym_null] = ACTIONS(5896), + [anon_sym_unreachable] = ACTIONS(5896), + [anon_sym_undefined] = ACTIONS(5896), + [sym_sink] = ACTIONS(5896), + [sym_integer] = ACTIONS(5896), + [sym_float] = ACTIONS(5894), + [anon_sym_DQUOTE] = ACTIONS(5894), + [sym_multiline_string] = ACTIONS(5894), + [sym_character] = ACTIONS(5894), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5894), + }, + [STATE(3852)] = { + [sym_identifier] = ACTIONS(5900), + [anon_sym_func] = ACTIONS(5900), + [anon_sym_BANG] = ACTIONS(5900), + [anon_sym_EQ] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_LPAREN] = ACTIONS(5898), + [anon_sym_LBRACE] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_DOLLAR] = ACTIONS(5898), + [anon_sym_PIPE] = ACTIONS(5900), + [anon_sym_QMARK] = ACTIONS(5898), + [anon_sym_STAR] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5898), + [anon_sym_void] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_type] = ACTIONS(5900), + [anon_sym_anyopaque] = ACTIONS(5900), + [anon_sym_bool] = ACTIONS(5900), + [anon_sym_int] = ACTIONS(5900), + [anon_sym_uint] = ACTIONS(5900), + [anon_sym_float] = ACTIONS(5900), + [anon_sym_range] = ACTIONS(5900), + [anon_sym_i8] = ACTIONS(5900), + [anon_sym_i16] = ACTIONS(5900), + [anon_sym_i32] = ACTIONS(5900), + [anon_sym_i64] = ACTIONS(5900), + [anon_sym_u8] = ACTIONS(5900), + [anon_sym_u16] = ACTIONS(5900), + [anon_sym_u32] = ACTIONS(5900), + [anon_sym_u64] = ACTIONS(5900), + [anon_sym_isize] = ACTIONS(5900), + [anon_sym_usize] = ACTIONS(5900), + [anon_sym_f32] = ACTIONS(5900), + [anon_sym_f64] = ACTIONS(5900), + [anon_sym_c_char] = ACTIONS(5900), + [anon_sym_c_schar] = ACTIONS(5900), + [anon_sym_c_uchar] = ACTIONS(5900), + [anon_sym_c_short] = ACTIONS(5900), + [anon_sym_c_ushort] = ACTIONS(5900), + [anon_sym_c_int] = ACTIONS(5900), + [anon_sym_c_uint] = ACTIONS(5900), + [anon_sym_c_long] = ACTIONS(5900), + [anon_sym_c_ulong] = ACTIONS(5900), + [anon_sym_c_longlong] = ACTIONS(5900), + [anon_sym_c_ulonglong] = ACTIONS(5900), + [anon_sym_c_float] = ACTIONS(5900), + [anon_sym_c_double] = ACTIONS(5900), + [anon_sym_c_longdouble] = ACTIONS(5900), + [anon_sym_PLUS_EQ] = ACTIONS(5898), + [anon_sym_DASH_EQ] = ACTIONS(5898), + [anon_sym_STAR_EQ] = ACTIONS(5898), + [anon_sym_SLASH_EQ] = ACTIONS(5898), + [anon_sym_AMP_EQ] = ACTIONS(5898), + [anon_sym_PIPE_EQ] = ACTIONS(5900), + [anon_sym_xor_EQ] = ACTIONS(5898), + [anon_sym_LT_LT_EQ] = ACTIONS(5898), + [anon_sym_GT_GT_EQ] = ACTIONS(5898), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5898), + [anon_sym_return] = ACTIONS(5900), + [anon_sym_yield] = ACTIONS(5900), + [anon_sym_break] = ACTIONS(5900), + [anon_sym_continue] = ACTIONS(5900), + [anon_sym_defer] = ACTIONS(5900), + [anon_sym_errdefer] = ACTIONS(5900), + [anon_sym_if] = ACTIONS(5900), + [anon_sym_else] = ACTIONS(5900), + [anon_sym_while] = ACTIONS(5900), + [anon_sym_expand] = ACTIONS(5900), + [anon_sym_for] = ACTIONS(5900), + [anon_sym_PIPE2] = ACTIONS(5898), + [anon_sym_match] = ACTIONS(5900), + [anon_sym_DOT_DOT] = ACTIONS(5900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5898), + [anon_sym_orelse] = ACTIONS(5900), + [anon_sym_or] = ACTIONS(5900), + [anon_sym_and] = ACTIONS(5900), + [anon_sym_EQ_EQ] = ACTIONS(5898), + [anon_sym_BANG_EQ] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(5900), + [anon_sym_LT_EQ] = ACTIONS(5898), + [anon_sym_GT] = ACTIONS(5900), + [anon_sym_GT_EQ] = ACTIONS(5898), + [anon_sym_AMP] = ACTIONS(5900), + [anon_sym_xor] = ACTIONS(5900), + [anon_sym_LT_LT] = ACTIONS(5900), + [anon_sym_GT_GT] = ACTIONS(5900), + [anon_sym_LT_LT_PIPE] = ACTIONS(5900), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_SLASH] = ACTIONS(5900), + [anon_sym_catch] = ACTIONS(5900), + [anon_sym_TILDE] = ACTIONS(5898), + [anon_sym_try] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5900), + [anon_sym_CARET] = ACTIONS(5898), + [anon_sym_true] = ACTIONS(5900), + [anon_sym_false] = ACTIONS(5900), + [anon_sym_null] = ACTIONS(5900), + [anon_sym_unreachable] = ACTIONS(5900), + [anon_sym_undefined] = ACTIONS(5900), + [sym_sink] = ACTIONS(5900), + [sym_integer] = ACTIONS(5900), + [sym_float] = ACTIONS(5898), + [anon_sym_DQUOTE] = ACTIONS(5898), + [sym_multiline_string] = ACTIONS(5898), + [sym_character] = ACTIONS(5898), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5898), + }, + [STATE(3853)] = { + [sym_identifier] = ACTIONS(5904), + [anon_sym_func] = ACTIONS(5904), + [anon_sym_BANG] = ACTIONS(5904), + [anon_sym_EQ] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_LPAREN] = ACTIONS(5902), + [anon_sym_LBRACE] = ACTIONS(5902), + [anon_sym_DASH] = ACTIONS(5904), + [anon_sym_DOLLAR] = ACTIONS(5902), + [anon_sym_PIPE] = ACTIONS(5904), + [anon_sym_QMARK] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(5902), + [anon_sym_void] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_type] = ACTIONS(5904), + [anon_sym_anyopaque] = ACTIONS(5904), + [anon_sym_bool] = ACTIONS(5904), + [anon_sym_int] = ACTIONS(5904), + [anon_sym_uint] = ACTIONS(5904), + [anon_sym_float] = ACTIONS(5904), + [anon_sym_range] = ACTIONS(5904), + [anon_sym_i8] = ACTIONS(5904), + [anon_sym_i16] = ACTIONS(5904), + [anon_sym_i32] = ACTIONS(5904), + [anon_sym_i64] = ACTIONS(5904), + [anon_sym_u8] = ACTIONS(5904), + [anon_sym_u16] = ACTIONS(5904), + [anon_sym_u32] = ACTIONS(5904), + [anon_sym_u64] = ACTIONS(5904), + [anon_sym_isize] = ACTIONS(5904), + [anon_sym_usize] = ACTIONS(5904), + [anon_sym_f32] = ACTIONS(5904), + [anon_sym_f64] = ACTIONS(5904), + [anon_sym_c_char] = ACTIONS(5904), + [anon_sym_c_schar] = ACTIONS(5904), + [anon_sym_c_uchar] = ACTIONS(5904), + [anon_sym_c_short] = ACTIONS(5904), + [anon_sym_c_ushort] = ACTIONS(5904), + [anon_sym_c_int] = ACTIONS(5904), + [anon_sym_c_uint] = ACTIONS(5904), + [anon_sym_c_long] = ACTIONS(5904), + [anon_sym_c_ulong] = ACTIONS(5904), + [anon_sym_c_longlong] = ACTIONS(5904), + [anon_sym_c_ulonglong] = ACTIONS(5904), + [anon_sym_c_float] = ACTIONS(5904), + [anon_sym_c_double] = ACTIONS(5904), + [anon_sym_c_longdouble] = ACTIONS(5904), + [anon_sym_PLUS_EQ] = ACTIONS(5902), + [anon_sym_DASH_EQ] = ACTIONS(5902), + [anon_sym_STAR_EQ] = ACTIONS(5902), + [anon_sym_SLASH_EQ] = ACTIONS(5902), + [anon_sym_AMP_EQ] = ACTIONS(5902), + [anon_sym_PIPE_EQ] = ACTIONS(5904), + [anon_sym_xor_EQ] = ACTIONS(5902), + [anon_sym_LT_LT_EQ] = ACTIONS(5902), + [anon_sym_GT_GT_EQ] = ACTIONS(5902), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5902), + [anon_sym_return] = ACTIONS(5904), + [anon_sym_yield] = ACTIONS(5904), + [anon_sym_break] = ACTIONS(5904), + [anon_sym_continue] = ACTIONS(5904), + [anon_sym_defer] = ACTIONS(5904), + [anon_sym_errdefer] = ACTIONS(5904), + [anon_sym_if] = ACTIONS(5904), + [anon_sym_else] = ACTIONS(5904), + [anon_sym_while] = ACTIONS(5904), + [anon_sym_expand] = ACTIONS(5904), + [anon_sym_for] = ACTIONS(5904), + [anon_sym_PIPE2] = ACTIONS(5902), + [anon_sym_match] = ACTIONS(5904), + [anon_sym_DOT_DOT] = ACTIONS(5904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5902), + [anon_sym_orelse] = ACTIONS(5904), + [anon_sym_or] = ACTIONS(5904), + [anon_sym_and] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5902), + [anon_sym_BANG_EQ] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5904), + [anon_sym_LT_EQ] = ACTIONS(5902), + [anon_sym_GT] = ACTIONS(5904), + [anon_sym_GT_EQ] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5904), + [anon_sym_xor] = ACTIONS(5904), + [anon_sym_LT_LT] = ACTIONS(5904), + [anon_sym_GT_GT] = ACTIONS(5904), + [anon_sym_LT_LT_PIPE] = ACTIONS(5904), + [anon_sym_PLUS] = ACTIONS(5904), + [anon_sym_SLASH] = ACTIONS(5904), + [anon_sym_catch] = ACTIONS(5904), + [anon_sym_TILDE] = ACTIONS(5902), + [anon_sym_try] = ACTIONS(5904), + [anon_sym_DOT] = ACTIONS(5904), + [anon_sym_CARET] = ACTIONS(5902), + [anon_sym_true] = ACTIONS(5904), + [anon_sym_false] = ACTIONS(5904), + [anon_sym_null] = ACTIONS(5904), + [anon_sym_unreachable] = ACTIONS(5904), + [anon_sym_undefined] = ACTIONS(5904), + [sym_sink] = ACTIONS(5904), + [sym_integer] = ACTIONS(5904), + [sym_float] = ACTIONS(5902), + [anon_sym_DQUOTE] = ACTIONS(5902), + [sym_multiline_string] = ACTIONS(5902), + [sym_character] = ACTIONS(5902), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5902), + }, + [STATE(3854)] = { + [sym_identifier] = ACTIONS(4420), + [anon_sym_func] = ACTIONS(4420), + [anon_sym_BANG] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_DOLLAR] = ACTIONS(4418), + [anon_sym_PIPE] = ACTIONS(4420), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_void] = ACTIONS(4420), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_AMP_EQ] = ACTIONS(4418), + [anon_sym_PIPE_EQ] = ACTIONS(4420), + [anon_sym_xor_EQ] = ACTIONS(4418), + [anon_sym_LT_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_GT_EQ] = ACTIONS(4418), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4418), + [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_PIPE2] = ACTIONS(4418), + [anon_sym_match] = ACTIONS(4420), + [anon_sym_DOT_DOT] = ACTIONS(4420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), + [anon_sym_orelse] = ACTIONS(4420), + [anon_sym_or] = ACTIONS(4420), + [anon_sym_and] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_xor] = ACTIONS(4420), + [anon_sym_LT_LT] = ACTIONS(4420), + [anon_sym_GT_GT] = ACTIONS(4420), + [anon_sym_LT_LT_PIPE] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_SLASH] = ACTIONS(4420), + [anon_sym_catch] = ACTIONS(4420), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4420), + [anon_sym_false] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(4420), + [anon_sym_unreachable] = ACTIONS(4420), + [anon_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(3855)] = { + [sym_identifier] = ACTIONS(4424), + [anon_sym_func] = ACTIONS(4424), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_DOLLAR] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(4424), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_void] = ACTIONS(4424), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4422), + [anon_sym_DASH_EQ] = ACTIONS(4422), + [anon_sym_STAR_EQ] = ACTIONS(4422), + [anon_sym_SLASH_EQ] = ACTIONS(4422), + [anon_sym_AMP_EQ] = ACTIONS(4422), + [anon_sym_PIPE_EQ] = ACTIONS(4424), + [anon_sym_xor_EQ] = ACTIONS(4422), + [anon_sym_LT_LT_EQ] = ACTIONS(4422), + [anon_sym_GT_GT_EQ] = ACTIONS(4422), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4422), + [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_PIPE2] = ACTIONS(4422), + [anon_sym_match] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4422), + [anon_sym_orelse] = ACTIONS(4424), + [anon_sym_or] = ACTIONS(4424), + [anon_sym_and] = ACTIONS(4424), + [anon_sym_EQ_EQ] = ACTIONS(4422), + [anon_sym_BANG_EQ] = ACTIONS(4422), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_LT_EQ] = ACTIONS(4422), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_GT_EQ] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_xor] = ACTIONS(4424), + [anon_sym_LT_LT] = ACTIONS(4424), + [anon_sym_GT_GT] = ACTIONS(4424), + [anon_sym_LT_LT_PIPE] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_catch] = ACTIONS(4424), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_unreachable] = ACTIONS(4424), + [anon_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(3856)] = { + [sym_identifier] = ACTIONS(4438), + [anon_sym_func] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_LPAREN] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_DOLLAR] = ACTIONS(4436), + [anon_sym_PIPE] = ACTIONS(4438), + [anon_sym_QMARK] = ACTIONS(4436), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_void] = ACTIONS(4438), + [anon_sym_noreturn] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_anyopaque] = ACTIONS(4438), + [anon_sym_bool] = ACTIONS(4438), + [anon_sym_int] = ACTIONS(4438), + [anon_sym_uint] = ACTIONS(4438), + [anon_sym_float] = ACTIONS(4438), + [anon_sym_range] = ACTIONS(4438), + [anon_sym_i8] = ACTIONS(4438), + [anon_sym_i16] = ACTIONS(4438), + [anon_sym_i32] = ACTIONS(4438), + [anon_sym_i64] = ACTIONS(4438), + [anon_sym_u8] = ACTIONS(4438), + [anon_sym_u16] = ACTIONS(4438), + [anon_sym_u32] = ACTIONS(4438), + [anon_sym_u64] = ACTIONS(4438), + [anon_sym_isize] = ACTIONS(4438), + [anon_sym_usize] = ACTIONS(4438), + [anon_sym_f32] = ACTIONS(4438), + [anon_sym_f64] = ACTIONS(4438), + [anon_sym_c_char] = ACTIONS(4438), + [anon_sym_c_schar] = ACTIONS(4438), + [anon_sym_c_uchar] = ACTIONS(4438), + [anon_sym_c_short] = ACTIONS(4438), + [anon_sym_c_ushort] = ACTIONS(4438), + [anon_sym_c_int] = ACTIONS(4438), + [anon_sym_c_uint] = ACTIONS(4438), + [anon_sym_c_long] = ACTIONS(4438), + [anon_sym_c_ulong] = ACTIONS(4438), + [anon_sym_c_longlong] = ACTIONS(4438), + [anon_sym_c_ulonglong] = ACTIONS(4438), + [anon_sym_c_float] = ACTIONS(4438), + [anon_sym_c_double] = ACTIONS(4438), + [anon_sym_c_longdouble] = ACTIONS(4438), + [anon_sym_PLUS_EQ] = ACTIONS(4436), + [anon_sym_DASH_EQ] = ACTIONS(4436), + [anon_sym_STAR_EQ] = ACTIONS(4436), + [anon_sym_SLASH_EQ] = ACTIONS(4436), + [anon_sym_AMP_EQ] = ACTIONS(4436), + [anon_sym_PIPE_EQ] = ACTIONS(4438), + [anon_sym_xor_EQ] = ACTIONS(4436), + [anon_sym_LT_LT_EQ] = ACTIONS(4436), + [anon_sym_GT_GT_EQ] = ACTIONS(4436), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4436), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_yield] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_defer] = ACTIONS(4438), + [anon_sym_errdefer] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_expand] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_PIPE2] = ACTIONS(4436), + [anon_sym_match] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4436), + [anon_sym_orelse] = ACTIONS(4438), + [anon_sym_or] = ACTIONS(4438), + [anon_sym_and] = ACTIONS(4438), + [anon_sym_EQ_EQ] = ACTIONS(4436), + [anon_sym_BANG_EQ] = ACTIONS(4436), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_LT_EQ] = ACTIONS(4436), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_GT_EQ] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_xor] = ACTIONS(4438), + [anon_sym_LT_LT] = ACTIONS(4438), + [anon_sym_GT_GT] = ACTIONS(4438), + [anon_sym_LT_LT_PIPE] = ACTIONS(4438), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_catch] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4436), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4436), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_unreachable] = ACTIONS(4438), + [anon_sym_undefined] = ACTIONS(4438), + [sym_sink] = ACTIONS(4438), + [sym_integer] = ACTIONS(4438), + [sym_float] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(4436), + [sym_multiline_string] = ACTIONS(4436), + [sym_character] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4436), + }, + [STATE(3857)] = { + [sym_identifier] = ACTIONS(4442), + [anon_sym_func] = ACTIONS(4442), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_DOLLAR] = ACTIONS(4440), + [anon_sym_PIPE] = ACTIONS(4442), + [anon_sym_QMARK] = ACTIONS(4440), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_void] = ACTIONS(4442), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_anyopaque] = ACTIONS(4442), + [anon_sym_bool] = ACTIONS(4442), + [anon_sym_int] = ACTIONS(4442), + [anon_sym_uint] = ACTIONS(4442), + [anon_sym_float] = ACTIONS(4442), + [anon_sym_range] = ACTIONS(4442), + [anon_sym_i8] = ACTIONS(4442), + [anon_sym_i16] = ACTIONS(4442), + [anon_sym_i32] = ACTIONS(4442), + [anon_sym_i64] = ACTIONS(4442), + [anon_sym_u8] = ACTIONS(4442), + [anon_sym_u16] = ACTIONS(4442), + [anon_sym_u32] = ACTIONS(4442), + [anon_sym_u64] = ACTIONS(4442), + [anon_sym_isize] = ACTIONS(4442), + [anon_sym_usize] = ACTIONS(4442), + [anon_sym_f32] = ACTIONS(4442), + [anon_sym_f64] = ACTIONS(4442), + [anon_sym_c_char] = ACTIONS(4442), + [anon_sym_c_schar] = ACTIONS(4442), + [anon_sym_c_uchar] = ACTIONS(4442), + [anon_sym_c_short] = ACTIONS(4442), + [anon_sym_c_ushort] = ACTIONS(4442), + [anon_sym_c_int] = ACTIONS(4442), + [anon_sym_c_uint] = ACTIONS(4442), + [anon_sym_c_long] = ACTIONS(4442), + [anon_sym_c_ulong] = ACTIONS(4442), + [anon_sym_c_longlong] = ACTIONS(4442), + [anon_sym_c_ulonglong] = ACTIONS(4442), + [anon_sym_c_float] = ACTIONS(4442), + [anon_sym_c_double] = ACTIONS(4442), + [anon_sym_c_longdouble] = ACTIONS(4442), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_AMP_EQ] = ACTIONS(4440), + [anon_sym_PIPE_EQ] = ACTIONS(4442), + [anon_sym_xor_EQ] = ACTIONS(4440), + [anon_sym_LT_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_GT_EQ] = ACTIONS(4440), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4440), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_yield] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_defer] = ACTIONS(4442), + [anon_sym_errdefer] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_expand] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_PIPE2] = ACTIONS(4440), + [anon_sym_match] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4440), + [anon_sym_orelse] = ACTIONS(4442), + [anon_sym_or] = ACTIONS(4442), + [anon_sym_and] = ACTIONS(4442), + [anon_sym_EQ_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_xor] = ACTIONS(4442), + [anon_sym_LT_LT] = ACTIONS(4442), + [anon_sym_GT_GT] = ACTIONS(4442), + [anon_sym_LT_LT_PIPE] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_catch] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4440), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_unreachable] = ACTIONS(4442), + [anon_sym_undefined] = ACTIONS(4442), + [sym_sink] = ACTIONS(4442), + [sym_integer] = ACTIONS(4442), + [sym_float] = ACTIONS(4440), + [anon_sym_DQUOTE] = ACTIONS(4440), + [sym_multiline_string] = ACTIONS(4440), + [sym_character] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4440), + }, + [STATE(3858)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(3859)] = { + [sym_identifier] = ACTIONS(5004), + [anon_sym_func] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_struct] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5002), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_void] = ACTIONS(5004), + [anon_sym_noreturn] = ACTIONS(5004), + [anon_sym_type] = ACTIONS(5004), + [anon_sym_anyopaque] = ACTIONS(5004), + [anon_sym_bool] = ACTIONS(5004), + [anon_sym_int] = ACTIONS(5004), + [anon_sym_uint] = ACTIONS(5004), + [anon_sym_float] = ACTIONS(5004), + [anon_sym_range] = ACTIONS(5004), + [anon_sym_i8] = ACTIONS(5004), + [anon_sym_i16] = ACTIONS(5004), + [anon_sym_i32] = ACTIONS(5004), + [anon_sym_i64] = ACTIONS(5004), + [anon_sym_u8] = ACTIONS(5004), + [anon_sym_u16] = ACTIONS(5004), + [anon_sym_u32] = ACTIONS(5004), + [anon_sym_u64] = ACTIONS(5004), + [anon_sym_isize] = ACTIONS(5004), + [anon_sym_usize] = ACTIONS(5004), + [anon_sym_f32] = ACTIONS(5004), + [anon_sym_f64] = ACTIONS(5004), + [anon_sym_c_char] = ACTIONS(5004), + [anon_sym_c_schar] = ACTIONS(5004), + [anon_sym_c_uchar] = ACTIONS(5004), + [anon_sym_c_short] = ACTIONS(5004), + [anon_sym_c_ushort] = ACTIONS(5004), + [anon_sym_c_int] = ACTIONS(5004), + [anon_sym_c_uint] = ACTIONS(5004), + [anon_sym_c_long] = ACTIONS(5004), + [anon_sym_c_ulong] = ACTIONS(5004), + [anon_sym_c_longlong] = ACTIONS(5004), + [anon_sym_c_ulonglong] = ACTIONS(5004), + [anon_sym_c_float] = ACTIONS(5004), + [anon_sym_c_double] = ACTIONS(5004), + [anon_sym_c_longdouble] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5004), + [anon_sym_xor_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5002), + [anon_sym_return] = ACTIONS(5004), + [anon_sym_yield] = ACTIONS(5004), + [anon_sym_break] = ACTIONS(5004), + [anon_sym_continue] = ACTIONS(5004), + [anon_sym_defer] = ACTIONS(5004), + [anon_sym_errdefer] = ACTIONS(5004), + [anon_sym_if] = ACTIONS(5004), + [anon_sym_else] = ACTIONS(5004), + [anon_sym_while] = ACTIONS(5004), + [anon_sym_expand] = ACTIONS(5004), + [anon_sym_for] = ACTIONS(5004), + [anon_sym_PIPE2] = ACTIONS(5002), + [anon_sym_match] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), + [anon_sym_orelse] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5004), + [anon_sym_xor] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_LT_LT_PIPE] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_catch] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5002), + [anon_sym_try] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_true] = ACTIONS(5004), + [anon_sym_false] = ACTIONS(5004), + [anon_sym_null] = ACTIONS(5004), + [anon_sym_unreachable] = ACTIONS(5004), + [anon_sym_undefined] = ACTIONS(5004), + [sym_sink] = ACTIONS(5004), + [sym_integer] = ACTIONS(5004), + [sym_float] = ACTIONS(5002), + [anon_sym_DQUOTE] = ACTIONS(5002), + [sym_multiline_string] = ACTIONS(5002), + [sym_character] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5002), + }, + [STATE(3860)] = { + [ts_builtin_sym_end] = ACTIONS(5826), + [sym_identifier] = ACTIONS(5828), + [anon_sym_COLON_COLON] = ACTIONS(5826), + [anon_sym_import] = ACTIONS(5828), + [anon_sym_test] = ACTIONS(5828), + [anon_sym_hide] = ACTIONS(5828), + [anon_sym_func] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(5828), + [anon_sym_struct] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_RPAREN] = ACTIONS(5826), + [anon_sym_LBRACE] = ACTIONS(5826), + [anon_sym_COMMA] = ACTIONS(5826), + [anon_sym_RBRACE] = ACTIONS(5826), + [anon_sym_DASH] = ACTIONS(5826), + [anon_sym_DOLLAR] = ACTIONS(5826), + [anon_sym_PIPE] = ACTIONS(5826), + [anon_sym_QMARK] = ACTIONS(5826), + [anon_sym_STAR] = ACTIONS(5826), + [anon_sym_LBRACK] = ACTIONS(5826), + [anon_sym_void] = ACTIONS(5828), + [anon_sym_noreturn] = ACTIONS(5828), + [anon_sym_type] = ACTIONS(5828), + [anon_sym_anyopaque] = ACTIONS(5828), + [anon_sym_bool] = ACTIONS(5828), + [anon_sym_int] = ACTIONS(5828), + [anon_sym_uint] = ACTIONS(5828), + [anon_sym_float] = ACTIONS(5828), + [anon_sym_range] = ACTIONS(5828), + [anon_sym_i8] = ACTIONS(5828), + [anon_sym_i16] = ACTIONS(5828), + [anon_sym_i32] = ACTIONS(5828), + [anon_sym_i64] = ACTIONS(5828), + [anon_sym_u8] = ACTIONS(5828), + [anon_sym_u16] = ACTIONS(5828), + [anon_sym_u32] = ACTIONS(5828), + [anon_sym_u64] = ACTIONS(5828), + [anon_sym_isize] = ACTIONS(5828), + [anon_sym_usize] = ACTIONS(5828), + [anon_sym_f32] = ACTIONS(5828), + [anon_sym_f64] = ACTIONS(5828), + [anon_sym_c_char] = ACTIONS(5828), + [anon_sym_c_schar] = ACTIONS(5828), + [anon_sym_c_uchar] = ACTIONS(5828), + [anon_sym_c_short] = ACTIONS(5828), + [anon_sym_c_ushort] = ACTIONS(5828), + [anon_sym_c_int] = ACTIONS(5828), + [anon_sym_c_uint] = ACTIONS(5828), + [anon_sym_c_long] = ACTIONS(5828), + [anon_sym_c_ulong] = ACTIONS(5828), + [anon_sym_c_longlong] = ACTIONS(5828), + [anon_sym_c_ulonglong] = ACTIONS(5828), + [anon_sym_c_float] = ACTIONS(5828), + [anon_sym_c_double] = ACTIONS(5828), + [anon_sym_c_longdouble] = ACTIONS(5828), + [anon_sym_return] = ACTIONS(5828), + [anon_sym_yield] = ACTIONS(5828), + [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_break] = ACTIONS(5828), + [anon_sym_continue] = ACTIONS(5828), + [anon_sym_defer] = ACTIONS(5828), + [anon_sym_errdefer] = ACTIONS(5828), + [anon_sym_if] = ACTIONS(5828), + [anon_sym_else] = ACTIONS(5828), + [anon_sym_while] = ACTIONS(5828), + [anon_sym_expand] = ACTIONS(5828), + [anon_sym_for] = ACTIONS(5828), + [anon_sym_match] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5826), + [anon_sym_orelse] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_EQ_EQ] = ACTIONS(5826), + [anon_sym_BANG_EQ] = ACTIONS(5826), + [anon_sym_LT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5826), + [anon_sym_GT] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5826), + [anon_sym_xor] = ACTIONS(5828), + [anon_sym_LT_LT] = ACTIONS(5828), + [anon_sym_GT_GT] = ACTIONS(5826), + [anon_sym_LT_LT_PIPE] = ACTIONS(5826), + [anon_sym_PLUS] = ACTIONS(5826), + [anon_sym_SLASH] = ACTIONS(5826), + [anon_sym_catch] = ACTIONS(5828), + [anon_sym_TILDE] = ACTIONS(5826), + [anon_sym_try] = ACTIONS(5828), + [anon_sym_DOT] = ACTIONS(5828), + [anon_sym_CARET] = ACTIONS(5826), + [anon_sym_true] = ACTIONS(5828), + [anon_sym_false] = ACTIONS(5828), + [anon_sym_null] = ACTIONS(5828), + [anon_sym_unreachable] = ACTIONS(5828), + [anon_sym_undefined] = ACTIONS(5828), + [sym_sink] = ACTIONS(5828), + [sym_integer] = ACTIONS(5828), + [sym_float] = ACTIONS(5826), + [anon_sym_DQUOTE] = ACTIONS(5826), + [sym_multiline_string] = ACTIONS(5826), + [sym_character] = ACTIONS(5826), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5826), + }, + [STATE(3861)] = { + [ts_builtin_sym_end] = ACTIONS(5870), + [sym_identifier] = ACTIONS(5872), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym_import] = ACTIONS(5872), + [anon_sym_test] = ACTIONS(5872), + [anon_sym_hide] = ACTIONS(5872), + [anon_sym_func] = ACTIONS(5872), + [anon_sym_BANG] = ACTIONS(5872), + [anon_sym_EQ] = ACTIONS(5872), + [anon_sym_struct] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5870), + [anon_sym_RPAREN] = ACTIONS(5870), + [anon_sym_LBRACE] = ACTIONS(5870), + [anon_sym_COMMA] = ACTIONS(5870), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_QMARK] = ACTIONS(5870), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(5870), + [anon_sym_void] = ACTIONS(5872), + [anon_sym_noreturn] = ACTIONS(5872), + [anon_sym_type] = ACTIONS(5872), + [anon_sym_anyopaque] = ACTIONS(5872), + [anon_sym_bool] = ACTIONS(5872), + [anon_sym_int] = ACTIONS(5872), + [anon_sym_uint] = ACTIONS(5872), + [anon_sym_float] = ACTIONS(5872), + [anon_sym_range] = ACTIONS(5872), + [anon_sym_i8] = ACTIONS(5872), + [anon_sym_i16] = ACTIONS(5872), + [anon_sym_i32] = ACTIONS(5872), + [anon_sym_i64] = ACTIONS(5872), + [anon_sym_u8] = ACTIONS(5872), + [anon_sym_u16] = ACTIONS(5872), + [anon_sym_u32] = ACTIONS(5872), + [anon_sym_u64] = ACTIONS(5872), + [anon_sym_isize] = ACTIONS(5872), + [anon_sym_usize] = ACTIONS(5872), + [anon_sym_f32] = ACTIONS(5872), + [anon_sym_f64] = ACTIONS(5872), + [anon_sym_c_char] = ACTIONS(5872), + [anon_sym_c_schar] = ACTIONS(5872), + [anon_sym_c_uchar] = ACTIONS(5872), + [anon_sym_c_short] = ACTIONS(5872), + [anon_sym_c_ushort] = ACTIONS(5872), + [anon_sym_c_int] = ACTIONS(5872), + [anon_sym_c_uint] = ACTIONS(5872), + [anon_sym_c_long] = ACTIONS(5872), + [anon_sym_c_ulong] = ACTIONS(5872), + [anon_sym_c_longlong] = ACTIONS(5872), + [anon_sym_c_ulonglong] = ACTIONS(5872), + [anon_sym_c_float] = ACTIONS(5872), + [anon_sym_c_double] = ACTIONS(5872), + [anon_sym_c_longdouble] = ACTIONS(5872), + [anon_sym_return] = ACTIONS(5872), + [anon_sym_yield] = ACTIONS(5872), + [anon_sym_COLON] = ACTIONS(5872), + [anon_sym_break] = ACTIONS(5872), + [anon_sym_continue] = ACTIONS(5872), + [anon_sym_defer] = ACTIONS(5872), + [anon_sym_errdefer] = ACTIONS(5872), + [anon_sym_if] = ACTIONS(5872), + [anon_sym_else] = ACTIONS(5872), + [anon_sym_while] = ACTIONS(5872), + [anon_sym_expand] = ACTIONS(5872), + [anon_sym_for] = ACTIONS(5872), + [anon_sym_match] = ACTIONS(5872), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5870), + [anon_sym_orelse] = ACTIONS(5872), + [anon_sym_or] = ACTIONS(5872), + [anon_sym_and] = ACTIONS(5872), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_BANG_EQ] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5872), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5872), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_AMP] = ACTIONS(5870), + [anon_sym_xor] = ACTIONS(5872), + [anon_sym_LT_LT] = ACTIONS(5872), + [anon_sym_GT_GT] = ACTIONS(5870), + [anon_sym_LT_LT_PIPE] = ACTIONS(5870), + [anon_sym_PLUS] = ACTIONS(5870), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_catch] = ACTIONS(5872), + [anon_sym_TILDE] = ACTIONS(5870), + [anon_sym_try] = ACTIONS(5872), + [anon_sym_DOT] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5870), + [anon_sym_true] = ACTIONS(5872), + [anon_sym_false] = ACTIONS(5872), + [anon_sym_null] = ACTIONS(5872), + [anon_sym_unreachable] = ACTIONS(5872), + [anon_sym_undefined] = ACTIONS(5872), + [sym_sink] = ACTIONS(5872), + [sym_integer] = ACTIONS(5872), + [sym_float] = ACTIONS(5870), + [anon_sym_DQUOTE] = ACTIONS(5870), + [sym_multiline_string] = ACTIONS(5870), + [sym_character] = ACTIONS(5870), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5870), + }, + [STATE(3862)] = { + [ts_builtin_sym_end] = ACTIONS(5878), + [sym_identifier] = ACTIONS(5880), + [anon_sym_COLON_COLON] = ACTIONS(5878), + [anon_sym_import] = ACTIONS(5880), + [anon_sym_test] = ACTIONS(5880), + [anon_sym_hide] = ACTIONS(5880), + [anon_sym_func] = ACTIONS(5880), + [anon_sym_BANG] = ACTIONS(5880), + [anon_sym_EQ] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_LPAREN] = ACTIONS(5878), + [anon_sym_RPAREN] = ACTIONS(5878), + [anon_sym_LBRACE] = ACTIONS(5878), + [anon_sym_COMMA] = ACTIONS(5878), + [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(5878), + [anon_sym_DOLLAR] = ACTIONS(5878), + [anon_sym_PIPE] = ACTIONS(5878), + [anon_sym_QMARK] = ACTIONS(5878), + [anon_sym_STAR] = ACTIONS(5878), + [anon_sym_LBRACK] = ACTIONS(5878), + [anon_sym_void] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_type] = ACTIONS(5880), + [anon_sym_anyopaque] = ACTIONS(5880), + [anon_sym_bool] = ACTIONS(5880), + [anon_sym_int] = ACTIONS(5880), + [anon_sym_uint] = ACTIONS(5880), + [anon_sym_float] = ACTIONS(5880), + [anon_sym_range] = ACTIONS(5880), + [anon_sym_i8] = ACTIONS(5880), + [anon_sym_i16] = ACTIONS(5880), + [anon_sym_i32] = ACTIONS(5880), + [anon_sym_i64] = ACTIONS(5880), + [anon_sym_u8] = ACTIONS(5880), + [anon_sym_u16] = ACTIONS(5880), + [anon_sym_u32] = ACTIONS(5880), + [anon_sym_u64] = ACTIONS(5880), + [anon_sym_isize] = ACTIONS(5880), + [anon_sym_usize] = ACTIONS(5880), + [anon_sym_f32] = ACTIONS(5880), + [anon_sym_f64] = ACTIONS(5880), + [anon_sym_c_char] = ACTIONS(5880), + [anon_sym_c_schar] = ACTIONS(5880), + [anon_sym_c_uchar] = ACTIONS(5880), + [anon_sym_c_short] = ACTIONS(5880), + [anon_sym_c_ushort] = ACTIONS(5880), + [anon_sym_c_int] = ACTIONS(5880), + [anon_sym_c_uint] = ACTIONS(5880), + [anon_sym_c_long] = ACTIONS(5880), + [anon_sym_c_ulong] = ACTIONS(5880), + [anon_sym_c_longlong] = ACTIONS(5880), + [anon_sym_c_ulonglong] = ACTIONS(5880), + [anon_sym_c_float] = ACTIONS(5880), + [anon_sym_c_double] = ACTIONS(5880), + [anon_sym_c_longdouble] = ACTIONS(5880), + [anon_sym_return] = ACTIONS(5880), + [anon_sym_yield] = ACTIONS(5880), + [anon_sym_COLON] = ACTIONS(5880), + [anon_sym_break] = ACTIONS(5880), + [anon_sym_continue] = ACTIONS(5880), + [anon_sym_defer] = ACTIONS(5880), + [anon_sym_errdefer] = ACTIONS(5880), + [anon_sym_if] = ACTIONS(5880), + [anon_sym_else] = ACTIONS(5880), + [anon_sym_while] = ACTIONS(5880), + [anon_sym_expand] = ACTIONS(5880), + [anon_sym_for] = ACTIONS(5880), + [anon_sym_match] = ACTIONS(5880), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5878), + [anon_sym_orelse] = ACTIONS(5880), + [anon_sym_or] = ACTIONS(5880), + [anon_sym_and] = ACTIONS(5880), + [anon_sym_EQ_EQ] = ACTIONS(5878), + [anon_sym_BANG_EQ] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(5880), + [anon_sym_LT_EQ] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5880), + [anon_sym_GT_EQ] = ACTIONS(5878), + [anon_sym_AMP] = ACTIONS(5878), + [anon_sym_xor] = ACTIONS(5880), + [anon_sym_LT_LT] = ACTIONS(5880), + [anon_sym_GT_GT] = ACTIONS(5878), + [anon_sym_LT_LT_PIPE] = ACTIONS(5878), + [anon_sym_PLUS] = ACTIONS(5878), + [anon_sym_SLASH] = ACTIONS(5878), + [anon_sym_catch] = ACTIONS(5880), + [anon_sym_TILDE] = ACTIONS(5878), + [anon_sym_try] = ACTIONS(5880), + [anon_sym_DOT] = ACTIONS(5880), + [anon_sym_CARET] = ACTIONS(5878), + [anon_sym_true] = ACTIONS(5880), + [anon_sym_false] = ACTIONS(5880), + [anon_sym_null] = ACTIONS(5880), + [anon_sym_unreachable] = ACTIONS(5880), + [anon_sym_undefined] = ACTIONS(5880), + [sym_sink] = ACTIONS(5880), + [sym_integer] = ACTIONS(5880), + [sym_float] = ACTIONS(5878), + [anon_sym_DQUOTE] = ACTIONS(5878), + [sym_multiline_string] = ACTIONS(5878), + [sym_character] = ACTIONS(5878), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5878), + }, + [STATE(3863)] = { + [ts_builtin_sym_end] = ACTIONS(5830), + [sym_identifier] = ACTIONS(5832), + [anon_sym_COLON_COLON] = ACTIONS(5830), + [anon_sym_import] = ACTIONS(5832), + [anon_sym_test] = ACTIONS(5832), + [anon_sym_hide] = ACTIONS(5832), + [anon_sym_func] = ACTIONS(5832), + [anon_sym_BANG] = ACTIONS(5832), + [anon_sym_EQ] = ACTIONS(5832), + [anon_sym_struct] = ACTIONS(5832), + [anon_sym_LPAREN] = ACTIONS(5830), + [anon_sym_RPAREN] = ACTIONS(5830), + [anon_sym_LBRACE] = ACTIONS(5830), + [anon_sym_COMMA] = ACTIONS(5830), + [anon_sym_RBRACE] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [anon_sym_DOLLAR] = ACTIONS(5830), + [anon_sym_PIPE] = ACTIONS(5830), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_STAR] = ACTIONS(5830), + [anon_sym_LBRACK] = ACTIONS(5830), + [anon_sym_void] = ACTIONS(5832), + [anon_sym_noreturn] = ACTIONS(5832), + [anon_sym_type] = ACTIONS(5832), + [anon_sym_anyopaque] = ACTIONS(5832), + [anon_sym_bool] = ACTIONS(5832), + [anon_sym_int] = ACTIONS(5832), + [anon_sym_uint] = ACTIONS(5832), + [anon_sym_float] = ACTIONS(5832), + [anon_sym_range] = ACTIONS(5832), + [anon_sym_i8] = ACTIONS(5832), + [anon_sym_i16] = ACTIONS(5832), + [anon_sym_i32] = ACTIONS(5832), + [anon_sym_i64] = ACTIONS(5832), + [anon_sym_u8] = ACTIONS(5832), + [anon_sym_u16] = ACTIONS(5832), + [anon_sym_u32] = ACTIONS(5832), + [anon_sym_u64] = ACTIONS(5832), + [anon_sym_isize] = ACTIONS(5832), + [anon_sym_usize] = ACTIONS(5832), + [anon_sym_f32] = ACTIONS(5832), + [anon_sym_f64] = ACTIONS(5832), + [anon_sym_c_char] = ACTIONS(5832), + [anon_sym_c_schar] = ACTIONS(5832), + [anon_sym_c_uchar] = ACTIONS(5832), + [anon_sym_c_short] = ACTIONS(5832), + [anon_sym_c_ushort] = ACTIONS(5832), + [anon_sym_c_int] = ACTIONS(5832), + [anon_sym_c_uint] = ACTIONS(5832), + [anon_sym_c_long] = ACTIONS(5832), + [anon_sym_c_ulong] = ACTIONS(5832), + [anon_sym_c_longlong] = ACTIONS(5832), + [anon_sym_c_ulonglong] = ACTIONS(5832), + [anon_sym_c_float] = ACTIONS(5832), + [anon_sym_c_double] = ACTIONS(5832), + [anon_sym_c_longdouble] = ACTIONS(5832), + [anon_sym_return] = ACTIONS(5832), + [anon_sym_yield] = ACTIONS(5832), + [anon_sym_COLON] = ACTIONS(5832), + [anon_sym_break] = ACTIONS(5832), + [anon_sym_continue] = ACTIONS(5832), + [anon_sym_defer] = ACTIONS(5832), + [anon_sym_errdefer] = ACTIONS(5832), + [anon_sym_if] = ACTIONS(5832), + [anon_sym_else] = ACTIONS(5832), + [anon_sym_while] = ACTIONS(5832), + [anon_sym_expand] = ACTIONS(5832), + [anon_sym_for] = ACTIONS(5832), + [anon_sym_match] = ACTIONS(5832), + [anon_sym_DOT_DOT] = ACTIONS(5832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5830), + [anon_sym_orelse] = ACTIONS(5832), + [anon_sym_or] = ACTIONS(5832), + [anon_sym_and] = ACTIONS(5832), + [anon_sym_EQ_EQ] = ACTIONS(5830), + [anon_sym_BANG_EQ] = ACTIONS(5830), + [anon_sym_LT] = ACTIONS(5832), + [anon_sym_LT_EQ] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5830), + [anon_sym_xor] = ACTIONS(5832), + [anon_sym_LT_LT] = ACTIONS(5832), + [anon_sym_GT_GT] = ACTIONS(5830), + [anon_sym_LT_LT_PIPE] = ACTIONS(5830), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_SLASH] = ACTIONS(5830), + [anon_sym_catch] = ACTIONS(5832), + [anon_sym_TILDE] = ACTIONS(5830), + [anon_sym_try] = ACTIONS(5832), + [anon_sym_DOT] = ACTIONS(5832), + [anon_sym_CARET] = ACTIONS(5830), + [anon_sym_true] = ACTIONS(5832), + [anon_sym_false] = ACTIONS(5832), + [anon_sym_null] = ACTIONS(5832), + [anon_sym_unreachable] = ACTIONS(5832), + [anon_sym_undefined] = ACTIONS(5832), + [sym_sink] = ACTIONS(5832), + [sym_integer] = ACTIONS(5832), + [sym_float] = ACTIONS(5830), + [anon_sym_DQUOTE] = ACTIONS(5830), + [sym_multiline_string] = ACTIONS(5830), + [sym_character] = ACTIONS(5830), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5830), + }, + [STATE(3864)] = { + [ts_builtin_sym_end] = ACTIONS(4544), + [sym_identifier] = ACTIONS(4546), + [anon_sym_COLON_COLON] = ACTIONS(4544), + [anon_sym_import] = ACTIONS(4546), + [anon_sym_test] = ACTIONS(4546), + [anon_sym_hide] = ACTIONS(4546), + [anon_sym_func] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_struct] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4544), + [anon_sym_RPAREN] = ACTIONS(4544), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_COMMA] = ACTIONS(4544), + [anon_sym_RBRACE] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [anon_sym_DOLLAR] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4544), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_STAR] = ACTIONS(4544), + [anon_sym_LBRACK] = ACTIONS(4544), + [anon_sym_void] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_type] = ACTIONS(4546), + [anon_sym_anyopaque] = ACTIONS(4546), + [anon_sym_bool] = ACTIONS(4546), + [anon_sym_int] = ACTIONS(4546), + [anon_sym_uint] = ACTIONS(4546), + [anon_sym_float] = ACTIONS(4546), + [anon_sym_range] = ACTIONS(4546), + [anon_sym_i8] = ACTIONS(4546), + [anon_sym_i16] = ACTIONS(4546), + [anon_sym_i32] = ACTIONS(4546), + [anon_sym_i64] = ACTIONS(4546), + [anon_sym_u8] = ACTIONS(4546), + [anon_sym_u16] = ACTIONS(4546), + [anon_sym_u32] = ACTIONS(4546), + [anon_sym_u64] = ACTIONS(4546), + [anon_sym_isize] = ACTIONS(4546), + [anon_sym_usize] = ACTIONS(4546), + [anon_sym_f32] = ACTIONS(4546), + [anon_sym_f64] = ACTIONS(4546), + [anon_sym_c_char] = ACTIONS(4546), + [anon_sym_c_schar] = ACTIONS(4546), + [anon_sym_c_uchar] = ACTIONS(4546), + [anon_sym_c_short] = ACTIONS(4546), + [anon_sym_c_ushort] = ACTIONS(4546), + [anon_sym_c_int] = ACTIONS(4546), + [anon_sym_c_uint] = ACTIONS(4546), + [anon_sym_c_long] = ACTIONS(4546), + [anon_sym_c_ulong] = ACTIONS(4546), + [anon_sym_c_longlong] = ACTIONS(4546), + [anon_sym_c_ulonglong] = ACTIONS(4546), + [anon_sym_c_float] = ACTIONS(4546), + [anon_sym_c_double] = ACTIONS(4546), + [anon_sym_c_longdouble] = ACTIONS(4546), + [anon_sym_return] = ACTIONS(4546), + [anon_sym_yield] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_break] = ACTIONS(4546), + [anon_sym_continue] = ACTIONS(4546), + [anon_sym_defer] = ACTIONS(4546), + [anon_sym_errdefer] = ACTIONS(4546), + [anon_sym_if] = ACTIONS(4546), + [anon_sym_else] = ACTIONS(4546), + [anon_sym_while] = ACTIONS(4546), + [anon_sym_expand] = ACTIONS(4546), + [anon_sym_for] = ACTIONS(4546), + [anon_sym_match] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4544), + [anon_sym_orelse] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4544), + [anon_sym_BANG_EQ] = ACTIONS(4544), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4544), + [anon_sym_AMP] = ACTIONS(4544), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4544), + [anon_sym_LT_LT_PIPE] = ACTIONS(4544), + [anon_sym_PLUS] = ACTIONS(4544), + [anon_sym_SLASH] = ACTIONS(4544), + [anon_sym_catch] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4544), + [anon_sym_try] = ACTIONS(4546), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4544), + [anon_sym_true] = ACTIONS(4546), + [anon_sym_false] = ACTIONS(4546), + [anon_sym_null] = ACTIONS(4546), + [anon_sym_unreachable] = ACTIONS(4546), + [anon_sym_undefined] = ACTIONS(4546), + [sym_sink] = ACTIONS(4546), + [sym_integer] = ACTIONS(4546), + [sym_float] = ACTIONS(4544), + [anon_sym_DQUOTE] = ACTIONS(4544), + [sym_multiline_string] = ACTIONS(4544), + [sym_character] = ACTIONS(4544), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4544), + }, + [STATE(3865)] = { + [ts_builtin_sym_end] = ACTIONS(5842), + [sym_identifier] = ACTIONS(5844), + [anon_sym_COLON_COLON] = ACTIONS(5842), + [anon_sym_import] = ACTIONS(5844), + [anon_sym_test] = ACTIONS(5844), + [anon_sym_hide] = ACTIONS(5844), + [anon_sym_func] = ACTIONS(5844), + [anon_sym_BANG] = ACTIONS(5844), + [anon_sym_EQ] = ACTIONS(5844), + [anon_sym_struct] = ACTIONS(5844), + [anon_sym_LPAREN] = ACTIONS(5842), + [anon_sym_RPAREN] = ACTIONS(5842), + [anon_sym_LBRACE] = ACTIONS(5842), + [anon_sym_COMMA] = ACTIONS(5842), + [anon_sym_RBRACE] = ACTIONS(5842), + [anon_sym_DASH] = ACTIONS(5842), + [anon_sym_DOLLAR] = ACTIONS(5842), + [anon_sym_PIPE] = ACTIONS(5842), + [anon_sym_QMARK] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5842), + [anon_sym_LBRACK] = ACTIONS(5842), + [anon_sym_void] = ACTIONS(5844), + [anon_sym_noreturn] = ACTIONS(5844), + [anon_sym_type] = ACTIONS(5844), + [anon_sym_anyopaque] = ACTIONS(5844), + [anon_sym_bool] = ACTIONS(5844), + [anon_sym_int] = ACTIONS(5844), + [anon_sym_uint] = ACTIONS(5844), + [anon_sym_float] = ACTIONS(5844), + [anon_sym_range] = ACTIONS(5844), + [anon_sym_i8] = ACTIONS(5844), + [anon_sym_i16] = ACTIONS(5844), + [anon_sym_i32] = ACTIONS(5844), + [anon_sym_i64] = ACTIONS(5844), + [anon_sym_u8] = ACTIONS(5844), + [anon_sym_u16] = ACTIONS(5844), + [anon_sym_u32] = ACTIONS(5844), + [anon_sym_u64] = ACTIONS(5844), + [anon_sym_isize] = ACTIONS(5844), + [anon_sym_usize] = ACTIONS(5844), + [anon_sym_f32] = ACTIONS(5844), + [anon_sym_f64] = ACTIONS(5844), + [anon_sym_c_char] = ACTIONS(5844), + [anon_sym_c_schar] = ACTIONS(5844), + [anon_sym_c_uchar] = ACTIONS(5844), + [anon_sym_c_short] = ACTIONS(5844), + [anon_sym_c_ushort] = ACTIONS(5844), + [anon_sym_c_int] = ACTIONS(5844), + [anon_sym_c_uint] = ACTIONS(5844), + [anon_sym_c_long] = ACTIONS(5844), + [anon_sym_c_ulong] = ACTIONS(5844), + [anon_sym_c_longlong] = ACTIONS(5844), + [anon_sym_c_ulonglong] = ACTIONS(5844), + [anon_sym_c_float] = ACTIONS(5844), + [anon_sym_c_double] = ACTIONS(5844), + [anon_sym_c_longdouble] = ACTIONS(5844), + [anon_sym_return] = ACTIONS(5844), + [anon_sym_yield] = ACTIONS(5844), + [anon_sym_COLON] = ACTIONS(5844), + [anon_sym_break] = ACTIONS(5844), + [anon_sym_continue] = ACTIONS(5844), + [anon_sym_defer] = ACTIONS(5844), + [anon_sym_errdefer] = ACTIONS(5844), + [anon_sym_if] = ACTIONS(5844), + [anon_sym_else] = ACTIONS(5844), + [anon_sym_while] = ACTIONS(5844), + [anon_sym_expand] = ACTIONS(5844), + [anon_sym_for] = ACTIONS(5844), + [anon_sym_match] = ACTIONS(5844), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5842), + [anon_sym_orelse] = ACTIONS(5844), + [anon_sym_or] = ACTIONS(5844), + [anon_sym_and] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5842), + [anon_sym_BANG_EQ] = ACTIONS(5842), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5842), + [anon_sym_xor] = ACTIONS(5844), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(5842), + [anon_sym_LT_LT_PIPE] = ACTIONS(5842), + [anon_sym_PLUS] = ACTIONS(5842), + [anon_sym_SLASH] = ACTIONS(5842), + [anon_sym_catch] = ACTIONS(5844), + [anon_sym_TILDE] = ACTIONS(5842), + [anon_sym_try] = ACTIONS(5844), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_CARET] = ACTIONS(5842), + [anon_sym_true] = ACTIONS(5844), + [anon_sym_false] = ACTIONS(5844), + [anon_sym_null] = ACTIONS(5844), + [anon_sym_unreachable] = ACTIONS(5844), + [anon_sym_undefined] = ACTIONS(5844), + [sym_sink] = ACTIONS(5844), + [sym_integer] = ACTIONS(5844), + [sym_float] = ACTIONS(5842), + [anon_sym_DQUOTE] = ACTIONS(5842), + [sym_multiline_string] = ACTIONS(5842), + [sym_character] = ACTIONS(5842), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5842), + }, + [STATE(3866)] = { + [ts_builtin_sym_end] = ACTIONS(5882), + [sym_identifier] = ACTIONS(5884), + [anon_sym_COLON_COLON] = ACTIONS(5882), + [anon_sym_import] = ACTIONS(5884), + [anon_sym_test] = ACTIONS(5884), + [anon_sym_hide] = ACTIONS(5884), + [anon_sym_func] = ACTIONS(5884), + [anon_sym_BANG] = ACTIONS(5884), + [anon_sym_EQ] = ACTIONS(5884), + [anon_sym_struct] = ACTIONS(5884), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_RPAREN] = ACTIONS(5882), + [anon_sym_LBRACE] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(5882), + [anon_sym_RBRACE] = ACTIONS(5882), + [anon_sym_DASH] = ACTIONS(5882), + [anon_sym_DOLLAR] = ACTIONS(5882), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_QMARK] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5882), + [anon_sym_LBRACK] = ACTIONS(5882), + [anon_sym_void] = ACTIONS(5884), + [anon_sym_noreturn] = ACTIONS(5884), + [anon_sym_type] = ACTIONS(5884), + [anon_sym_anyopaque] = ACTIONS(5884), + [anon_sym_bool] = ACTIONS(5884), + [anon_sym_int] = ACTIONS(5884), + [anon_sym_uint] = ACTIONS(5884), + [anon_sym_float] = ACTIONS(5884), + [anon_sym_range] = ACTIONS(5884), + [anon_sym_i8] = ACTIONS(5884), + [anon_sym_i16] = ACTIONS(5884), + [anon_sym_i32] = ACTIONS(5884), + [anon_sym_i64] = ACTIONS(5884), + [anon_sym_u8] = ACTIONS(5884), + [anon_sym_u16] = ACTIONS(5884), + [anon_sym_u32] = ACTIONS(5884), + [anon_sym_u64] = ACTIONS(5884), + [anon_sym_isize] = ACTIONS(5884), + [anon_sym_usize] = ACTIONS(5884), + [anon_sym_f32] = ACTIONS(5884), + [anon_sym_f64] = ACTIONS(5884), + [anon_sym_c_char] = ACTIONS(5884), + [anon_sym_c_schar] = ACTIONS(5884), + [anon_sym_c_uchar] = ACTIONS(5884), + [anon_sym_c_short] = ACTIONS(5884), + [anon_sym_c_ushort] = ACTIONS(5884), + [anon_sym_c_int] = ACTIONS(5884), + [anon_sym_c_uint] = ACTIONS(5884), + [anon_sym_c_long] = ACTIONS(5884), + [anon_sym_c_ulong] = ACTIONS(5884), + [anon_sym_c_longlong] = ACTIONS(5884), + [anon_sym_c_ulonglong] = ACTIONS(5884), + [anon_sym_c_float] = ACTIONS(5884), + [anon_sym_c_double] = ACTIONS(5884), + [anon_sym_c_longdouble] = ACTIONS(5884), + [anon_sym_return] = ACTIONS(5884), + [anon_sym_yield] = ACTIONS(5884), + [anon_sym_COLON] = ACTIONS(5884), + [anon_sym_break] = ACTIONS(5884), + [anon_sym_continue] = ACTIONS(5884), + [anon_sym_defer] = ACTIONS(5884), + [anon_sym_errdefer] = ACTIONS(5884), + [anon_sym_if] = ACTIONS(5884), + [anon_sym_else] = ACTIONS(5884), + [anon_sym_while] = ACTIONS(5884), + [anon_sym_expand] = ACTIONS(5884), + [anon_sym_for] = ACTIONS(5884), + [anon_sym_match] = ACTIONS(5884), + [anon_sym_DOT_DOT] = ACTIONS(5884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5882), + [anon_sym_orelse] = ACTIONS(5884), + [anon_sym_or] = ACTIONS(5884), + [anon_sym_and] = ACTIONS(5884), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_BANG_EQ] = ACTIONS(5882), + [anon_sym_LT] = ACTIONS(5884), + [anon_sym_LT_EQ] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5884), + [anon_sym_GT_EQ] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5882), + [anon_sym_xor] = ACTIONS(5884), + [anon_sym_LT_LT] = ACTIONS(5884), + [anon_sym_GT_GT] = ACTIONS(5882), + [anon_sym_LT_LT_PIPE] = ACTIONS(5882), + [anon_sym_PLUS] = ACTIONS(5882), + [anon_sym_SLASH] = ACTIONS(5882), + [anon_sym_catch] = ACTIONS(5884), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_try] = ACTIONS(5884), + [anon_sym_DOT] = ACTIONS(5884), + [anon_sym_CARET] = ACTIONS(5882), + [anon_sym_true] = ACTIONS(5884), + [anon_sym_false] = ACTIONS(5884), + [anon_sym_null] = ACTIONS(5884), + [anon_sym_unreachable] = ACTIONS(5884), + [anon_sym_undefined] = ACTIONS(5884), + [sym_sink] = ACTIONS(5884), + [sym_integer] = ACTIONS(5884), + [sym_float] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(5882), + [sym_multiline_string] = ACTIONS(5882), + [sym_character] = ACTIONS(5882), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5882), + }, + [STATE(3867)] = { + [ts_builtin_sym_end] = ACTIONS(5906), + [sym_identifier] = ACTIONS(5908), + [anon_sym_COLON_COLON] = ACTIONS(5906), + [anon_sym_import] = ACTIONS(5908), + [anon_sym_test] = ACTIONS(5908), + [anon_sym_hide] = ACTIONS(5908), + [anon_sym_func] = ACTIONS(5908), + [anon_sym_BANG] = ACTIONS(5908), + [anon_sym_EQ] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_LPAREN] = ACTIONS(5906), + [anon_sym_RPAREN] = ACTIONS(5906), + [anon_sym_LBRACE] = ACTIONS(5906), + [anon_sym_COMMA] = ACTIONS(5906), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(5906), + [anon_sym_DOLLAR] = ACTIONS(5906), + [anon_sym_PIPE] = ACTIONS(5906), + [anon_sym_QMARK] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5906), + [anon_sym_LBRACK] = ACTIONS(5906), + [anon_sym_void] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_type] = ACTIONS(5908), + [anon_sym_anyopaque] = ACTIONS(5908), + [anon_sym_bool] = ACTIONS(5908), + [anon_sym_int] = ACTIONS(5908), + [anon_sym_uint] = ACTIONS(5908), + [anon_sym_float] = ACTIONS(5908), + [anon_sym_range] = ACTIONS(5908), + [anon_sym_i8] = ACTIONS(5908), + [anon_sym_i16] = ACTIONS(5908), + [anon_sym_i32] = ACTIONS(5908), + [anon_sym_i64] = ACTIONS(5908), + [anon_sym_u8] = ACTIONS(5908), + [anon_sym_u16] = ACTIONS(5908), + [anon_sym_u32] = ACTIONS(5908), + [anon_sym_u64] = ACTIONS(5908), + [anon_sym_isize] = ACTIONS(5908), + [anon_sym_usize] = ACTIONS(5908), + [anon_sym_f32] = ACTIONS(5908), + [anon_sym_f64] = ACTIONS(5908), + [anon_sym_c_char] = ACTIONS(5908), + [anon_sym_c_schar] = ACTIONS(5908), + [anon_sym_c_uchar] = ACTIONS(5908), + [anon_sym_c_short] = ACTIONS(5908), + [anon_sym_c_ushort] = ACTIONS(5908), + [anon_sym_c_int] = ACTIONS(5908), + [anon_sym_c_uint] = ACTIONS(5908), + [anon_sym_c_long] = ACTIONS(5908), + [anon_sym_c_ulong] = ACTIONS(5908), + [anon_sym_c_longlong] = ACTIONS(5908), + [anon_sym_c_ulonglong] = ACTIONS(5908), + [anon_sym_c_float] = ACTIONS(5908), + [anon_sym_c_double] = ACTIONS(5908), + [anon_sym_c_longdouble] = ACTIONS(5908), + [anon_sym_return] = ACTIONS(5908), + [anon_sym_yield] = ACTIONS(5908), + [anon_sym_COLON] = ACTIONS(5908), + [anon_sym_break] = ACTIONS(5908), + [anon_sym_continue] = ACTIONS(5908), + [anon_sym_defer] = ACTIONS(5908), + [anon_sym_errdefer] = ACTIONS(5908), + [anon_sym_if] = ACTIONS(5908), + [anon_sym_else] = ACTIONS(5908), + [anon_sym_while] = ACTIONS(5908), + [anon_sym_expand] = ACTIONS(5908), + [anon_sym_for] = ACTIONS(5908), + [anon_sym_match] = ACTIONS(5908), + [anon_sym_DOT_DOT] = ACTIONS(5908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5906), + [anon_sym_orelse] = ACTIONS(5908), + [anon_sym_or] = ACTIONS(5908), + [anon_sym_and] = ACTIONS(5908), + [anon_sym_EQ_EQ] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(5908), + [anon_sym_LT_EQ] = ACTIONS(5906), + [anon_sym_GT] = ACTIONS(5908), + [anon_sym_GT_EQ] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5906), + [anon_sym_xor] = ACTIONS(5908), + [anon_sym_LT_LT] = ACTIONS(5908), + [anon_sym_GT_GT] = ACTIONS(5906), + [anon_sym_LT_LT_PIPE] = ACTIONS(5906), + [anon_sym_PLUS] = ACTIONS(5906), + [anon_sym_SLASH] = ACTIONS(5906), + [anon_sym_catch] = ACTIONS(5908), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_try] = ACTIONS(5908), + [anon_sym_DOT] = ACTIONS(5908), + [anon_sym_CARET] = ACTIONS(5906), + [anon_sym_true] = ACTIONS(5908), + [anon_sym_false] = ACTIONS(5908), + [anon_sym_null] = ACTIONS(5908), + [anon_sym_unreachable] = ACTIONS(5908), + [anon_sym_undefined] = ACTIONS(5908), + [sym_sink] = ACTIONS(5908), + [sym_integer] = ACTIONS(5908), + [sym_float] = ACTIONS(5906), + [anon_sym_DQUOTE] = ACTIONS(5906), + [sym_multiline_string] = ACTIONS(5906), + [sym_character] = ACTIONS(5906), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5906), + }, + [STATE(3868)] = { + [ts_builtin_sym_end] = ACTIONS(4738), + [sym_identifier] = ACTIONS(4734), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_import] = ACTIONS(4734), + [anon_sym_test] = ACTIONS(4734), + [anon_sym_hide] = ACTIONS(4734), + [anon_sym_func] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_DOLLAR] = ACTIONS(4738), + [anon_sym_PIPE] = ACTIONS(4738), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_void] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_type] = ACTIONS(4734), + [anon_sym_anyopaque] = ACTIONS(4734), + [anon_sym_bool] = ACTIONS(4734), + [anon_sym_int] = ACTIONS(4734), + [anon_sym_uint] = ACTIONS(4734), + [anon_sym_float] = ACTIONS(4734), + [anon_sym_range] = ACTIONS(4734), + [anon_sym_i8] = ACTIONS(4734), + [anon_sym_i16] = ACTIONS(4734), + [anon_sym_i32] = ACTIONS(4734), + [anon_sym_i64] = ACTIONS(4734), + [anon_sym_u8] = ACTIONS(4734), + [anon_sym_u16] = ACTIONS(4734), + [anon_sym_u32] = ACTIONS(4734), + [anon_sym_u64] = ACTIONS(4734), + [anon_sym_isize] = ACTIONS(4734), + [anon_sym_usize] = ACTIONS(4734), + [anon_sym_f32] = ACTIONS(4734), + [anon_sym_f64] = ACTIONS(4734), + [anon_sym_c_char] = ACTIONS(4734), + [anon_sym_c_schar] = ACTIONS(4734), + [anon_sym_c_uchar] = ACTIONS(4734), + [anon_sym_c_short] = ACTIONS(4734), + [anon_sym_c_ushort] = ACTIONS(4734), + [anon_sym_c_int] = ACTIONS(4734), + [anon_sym_c_uint] = ACTIONS(4734), + [anon_sym_c_long] = ACTIONS(4734), + [anon_sym_c_ulong] = ACTIONS(4734), + [anon_sym_c_longlong] = ACTIONS(4734), + [anon_sym_c_ulonglong] = ACTIONS(4734), + [anon_sym_c_float] = ACTIONS(4734), + [anon_sym_c_double] = ACTIONS(4734), + [anon_sym_c_longdouble] = ACTIONS(4734), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_COLON] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_defer] = ACTIONS(4734), + [anon_sym_errdefer] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_expand] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4738), + [anon_sym_orelse] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4738), + [anon_sym_xor] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4738), + [anon_sym_LT_LT_PIPE] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_SLASH] = ACTIONS(4738), + [anon_sym_catch] = ACTIONS(4734), + [anon_sym_TILDE] = ACTIONS(4738), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_unreachable] = ACTIONS(4734), + [anon_sym_undefined] = ACTIONS(4734), + [sym_sink] = ACTIONS(4734), + [sym_integer] = ACTIONS(4734), + [sym_float] = ACTIONS(4738), + [anon_sym_DQUOTE] = ACTIONS(4738), + [sym_multiline_string] = ACTIONS(4738), + [sym_character] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4738), + }, + [STATE(3869)] = { + [ts_builtin_sym_end] = ACTIONS(5810), + [sym_identifier] = ACTIONS(5812), + [anon_sym_COLON_COLON] = ACTIONS(5810), + [anon_sym_import] = ACTIONS(5812), + [anon_sym_test] = ACTIONS(5812), + [anon_sym_hide] = ACTIONS(5812), + [anon_sym_func] = ACTIONS(5812), + [anon_sym_BANG] = ACTIONS(5812), + [anon_sym_EQ] = ACTIONS(5812), + [anon_sym_struct] = ACTIONS(5812), + [anon_sym_LPAREN] = ACTIONS(5810), + [anon_sym_RPAREN] = ACTIONS(5810), + [anon_sym_LBRACE] = ACTIONS(5810), + [anon_sym_COMMA] = ACTIONS(5810), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5810), + [anon_sym_DOLLAR] = ACTIONS(5810), + [anon_sym_PIPE] = ACTIONS(5810), + [anon_sym_QMARK] = ACTIONS(5810), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_LBRACK] = ACTIONS(5810), + [anon_sym_void] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym_type] = ACTIONS(5812), + [anon_sym_anyopaque] = ACTIONS(5812), + [anon_sym_bool] = ACTIONS(5812), + [anon_sym_int] = ACTIONS(5812), + [anon_sym_uint] = ACTIONS(5812), + [anon_sym_float] = ACTIONS(5812), + [anon_sym_range] = ACTIONS(5812), + [anon_sym_i8] = ACTIONS(5812), + [anon_sym_i16] = ACTIONS(5812), + [anon_sym_i32] = ACTIONS(5812), + [anon_sym_i64] = ACTIONS(5812), + [anon_sym_u8] = ACTIONS(5812), + [anon_sym_u16] = ACTIONS(5812), + [anon_sym_u32] = ACTIONS(5812), + [anon_sym_u64] = ACTIONS(5812), + [anon_sym_isize] = ACTIONS(5812), + [anon_sym_usize] = ACTIONS(5812), + [anon_sym_f32] = ACTIONS(5812), + [anon_sym_f64] = ACTIONS(5812), + [anon_sym_c_char] = ACTIONS(5812), + [anon_sym_c_schar] = ACTIONS(5812), + [anon_sym_c_uchar] = ACTIONS(5812), + [anon_sym_c_short] = ACTIONS(5812), + [anon_sym_c_ushort] = ACTIONS(5812), + [anon_sym_c_int] = ACTIONS(5812), + [anon_sym_c_uint] = ACTIONS(5812), + [anon_sym_c_long] = ACTIONS(5812), + [anon_sym_c_ulong] = ACTIONS(5812), + [anon_sym_c_longlong] = ACTIONS(5812), + [anon_sym_c_ulonglong] = ACTIONS(5812), + [anon_sym_c_float] = ACTIONS(5812), + [anon_sym_c_double] = ACTIONS(5812), + [anon_sym_c_longdouble] = ACTIONS(5812), + [anon_sym_return] = ACTIONS(5812), + [anon_sym_yield] = ACTIONS(5812), + [anon_sym_COLON] = ACTIONS(5812), + [anon_sym_break] = ACTIONS(5812), + [anon_sym_continue] = ACTIONS(5812), + [anon_sym_defer] = ACTIONS(5812), + [anon_sym_errdefer] = ACTIONS(5812), + [anon_sym_if] = ACTIONS(5812), + [anon_sym_else] = ACTIONS(5812), + [anon_sym_while] = ACTIONS(5812), + [anon_sym_expand] = ACTIONS(5812), + [anon_sym_for] = ACTIONS(5812), + [anon_sym_match] = ACTIONS(5812), + [anon_sym_DOT_DOT] = ACTIONS(5812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5810), + [anon_sym_orelse] = ACTIONS(5812), + [anon_sym_or] = ACTIONS(5812), + [anon_sym_and] = ACTIONS(5812), + [anon_sym_EQ_EQ] = ACTIONS(5810), + [anon_sym_BANG_EQ] = ACTIONS(5810), + [anon_sym_LT] = ACTIONS(5812), + [anon_sym_LT_EQ] = ACTIONS(5810), + [anon_sym_GT] = ACTIONS(5812), + [anon_sym_GT_EQ] = ACTIONS(5810), + [anon_sym_AMP] = ACTIONS(5810), + [anon_sym_xor] = ACTIONS(5812), + [anon_sym_LT_LT] = ACTIONS(5812), + [anon_sym_GT_GT] = ACTIONS(5810), + [anon_sym_LT_LT_PIPE] = ACTIONS(5810), + [anon_sym_PLUS] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_catch] = ACTIONS(5812), + [anon_sym_TILDE] = ACTIONS(5810), + [anon_sym_try] = ACTIONS(5812), + [anon_sym_DOT] = ACTIONS(5812), + [anon_sym_CARET] = ACTIONS(5810), + [anon_sym_true] = ACTIONS(5812), + [anon_sym_false] = ACTIONS(5812), + [anon_sym_null] = ACTIONS(5812), + [anon_sym_unreachable] = ACTIONS(5812), + [anon_sym_undefined] = ACTIONS(5812), + [sym_sink] = ACTIONS(5812), + [sym_integer] = ACTIONS(5812), + [sym_float] = ACTIONS(5810), + [anon_sym_DQUOTE] = ACTIONS(5810), + [sym_multiline_string] = ACTIONS(5810), + [sym_character] = ACTIONS(5810), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5810), + }, + [STATE(3870)] = { + [ts_builtin_sym_end] = ACTIONS(5910), + [sym_identifier] = ACTIONS(5912), + [anon_sym_COLON_COLON] = ACTIONS(5910), + [anon_sym_import] = ACTIONS(5912), + [anon_sym_test] = ACTIONS(5912), + [anon_sym_hide] = ACTIONS(5912), + [anon_sym_func] = ACTIONS(5912), + [anon_sym_BANG] = ACTIONS(5912), + [anon_sym_EQ] = ACTIONS(5912), + [anon_sym_struct] = ACTIONS(5912), + [anon_sym_LPAREN] = ACTIONS(5910), + [anon_sym_RPAREN] = ACTIONS(5910), + [anon_sym_LBRACE] = ACTIONS(5910), + [anon_sym_COMMA] = ACTIONS(5910), + [anon_sym_RBRACE] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_DOLLAR] = ACTIONS(5910), + [anon_sym_PIPE] = ACTIONS(5910), + [anon_sym_QMARK] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5910), + [anon_sym_void] = ACTIONS(5912), + [anon_sym_noreturn] = ACTIONS(5912), + [anon_sym_type] = ACTIONS(5912), + [anon_sym_anyopaque] = ACTIONS(5912), + [anon_sym_bool] = ACTIONS(5912), + [anon_sym_int] = ACTIONS(5912), + [anon_sym_uint] = ACTIONS(5912), + [anon_sym_float] = ACTIONS(5912), + [anon_sym_range] = ACTIONS(5912), + [anon_sym_i8] = ACTIONS(5912), + [anon_sym_i16] = ACTIONS(5912), + [anon_sym_i32] = ACTIONS(5912), + [anon_sym_i64] = ACTIONS(5912), + [anon_sym_u8] = ACTIONS(5912), + [anon_sym_u16] = ACTIONS(5912), + [anon_sym_u32] = ACTIONS(5912), + [anon_sym_u64] = ACTIONS(5912), + [anon_sym_isize] = ACTIONS(5912), + [anon_sym_usize] = ACTIONS(5912), + [anon_sym_f32] = ACTIONS(5912), + [anon_sym_f64] = ACTIONS(5912), + [anon_sym_c_char] = ACTIONS(5912), + [anon_sym_c_schar] = ACTIONS(5912), + [anon_sym_c_uchar] = ACTIONS(5912), + [anon_sym_c_short] = ACTIONS(5912), + [anon_sym_c_ushort] = ACTIONS(5912), + [anon_sym_c_int] = ACTIONS(5912), + [anon_sym_c_uint] = ACTIONS(5912), + [anon_sym_c_long] = ACTIONS(5912), + [anon_sym_c_ulong] = ACTIONS(5912), + [anon_sym_c_longlong] = ACTIONS(5912), + [anon_sym_c_ulonglong] = ACTIONS(5912), + [anon_sym_c_float] = ACTIONS(5912), + [anon_sym_c_double] = ACTIONS(5912), + [anon_sym_c_longdouble] = ACTIONS(5912), + [anon_sym_return] = ACTIONS(5912), + [anon_sym_yield] = ACTIONS(5912), + [anon_sym_COLON] = ACTIONS(5912), + [anon_sym_break] = ACTIONS(5912), + [anon_sym_continue] = ACTIONS(5912), + [anon_sym_defer] = ACTIONS(5912), + [anon_sym_errdefer] = ACTIONS(5912), + [anon_sym_if] = ACTIONS(5912), + [anon_sym_else] = ACTIONS(5912), + [anon_sym_while] = ACTIONS(5912), + [anon_sym_expand] = ACTIONS(5912), + [anon_sym_for] = ACTIONS(5912), + [anon_sym_match] = ACTIONS(5912), + [anon_sym_DOT_DOT] = ACTIONS(5912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5910), + [anon_sym_orelse] = ACTIONS(5912), + [anon_sym_or] = ACTIONS(5912), + [anon_sym_and] = ACTIONS(5912), + [anon_sym_EQ_EQ] = ACTIONS(5910), + [anon_sym_BANG_EQ] = ACTIONS(5910), + [anon_sym_LT] = ACTIONS(5912), + [anon_sym_LT_EQ] = ACTIONS(5910), + [anon_sym_GT] = ACTIONS(5912), + [anon_sym_GT_EQ] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5910), + [anon_sym_xor] = ACTIONS(5912), + [anon_sym_LT_LT] = ACTIONS(5912), + [anon_sym_GT_GT] = ACTIONS(5910), + [anon_sym_LT_LT_PIPE] = ACTIONS(5910), + [anon_sym_PLUS] = ACTIONS(5910), + [anon_sym_SLASH] = ACTIONS(5910), + [anon_sym_catch] = ACTIONS(5912), + [anon_sym_TILDE] = ACTIONS(5910), + [anon_sym_try] = ACTIONS(5912), + [anon_sym_DOT] = ACTIONS(5912), + [anon_sym_CARET] = ACTIONS(5910), + [anon_sym_true] = ACTIONS(5912), + [anon_sym_false] = ACTIONS(5912), + [anon_sym_null] = ACTIONS(5912), + [anon_sym_unreachable] = ACTIONS(5912), + [anon_sym_undefined] = ACTIONS(5912), + [sym_sink] = ACTIONS(5912), + [sym_integer] = ACTIONS(5912), + [sym_float] = ACTIONS(5910), + [anon_sym_DQUOTE] = ACTIONS(5910), + [sym_multiline_string] = ACTIONS(5910), + [sym_character] = ACTIONS(5910), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5910), + }, + [STATE(3871)] = { + [ts_builtin_sym_end] = ACTIONS(5846), + [sym_identifier] = ACTIONS(5848), + [anon_sym_COLON_COLON] = ACTIONS(5846), + [anon_sym_import] = ACTIONS(5848), + [anon_sym_test] = ACTIONS(5848), + [anon_sym_hide] = ACTIONS(5848), + [anon_sym_func] = ACTIONS(5848), + [anon_sym_BANG] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(5848), + [anon_sym_struct] = ACTIONS(5848), + [anon_sym_LPAREN] = ACTIONS(5846), + [anon_sym_RPAREN] = ACTIONS(5846), + [anon_sym_LBRACE] = ACTIONS(5846), + [anon_sym_COMMA] = ACTIONS(5846), + [anon_sym_RBRACE] = ACTIONS(5846), + [anon_sym_DASH] = ACTIONS(5846), + [anon_sym_DOLLAR] = ACTIONS(5846), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_QMARK] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5846), + [anon_sym_LBRACK] = ACTIONS(5846), + [anon_sym_void] = ACTIONS(5848), + [anon_sym_noreturn] = ACTIONS(5848), + [anon_sym_type] = ACTIONS(5848), + [anon_sym_anyopaque] = ACTIONS(5848), + [anon_sym_bool] = ACTIONS(5848), + [anon_sym_int] = ACTIONS(5848), + [anon_sym_uint] = ACTIONS(5848), + [anon_sym_float] = ACTIONS(5848), + [anon_sym_range] = ACTIONS(5848), + [anon_sym_i8] = ACTIONS(5848), + [anon_sym_i16] = ACTIONS(5848), + [anon_sym_i32] = ACTIONS(5848), + [anon_sym_i64] = ACTIONS(5848), + [anon_sym_u8] = ACTIONS(5848), + [anon_sym_u16] = ACTIONS(5848), + [anon_sym_u32] = ACTIONS(5848), + [anon_sym_u64] = ACTIONS(5848), + [anon_sym_isize] = ACTIONS(5848), + [anon_sym_usize] = ACTIONS(5848), + [anon_sym_f32] = ACTIONS(5848), + [anon_sym_f64] = ACTIONS(5848), + [anon_sym_c_char] = ACTIONS(5848), + [anon_sym_c_schar] = ACTIONS(5848), + [anon_sym_c_uchar] = ACTIONS(5848), + [anon_sym_c_short] = ACTIONS(5848), + [anon_sym_c_ushort] = ACTIONS(5848), + [anon_sym_c_int] = ACTIONS(5848), + [anon_sym_c_uint] = ACTIONS(5848), + [anon_sym_c_long] = ACTIONS(5848), + [anon_sym_c_ulong] = ACTIONS(5848), + [anon_sym_c_longlong] = ACTIONS(5848), + [anon_sym_c_ulonglong] = ACTIONS(5848), + [anon_sym_c_float] = ACTIONS(5848), + [anon_sym_c_double] = ACTIONS(5848), + [anon_sym_c_longdouble] = ACTIONS(5848), + [anon_sym_return] = ACTIONS(5848), + [anon_sym_yield] = ACTIONS(5848), + [anon_sym_COLON] = ACTIONS(5848), + [anon_sym_break] = ACTIONS(5848), + [anon_sym_continue] = ACTIONS(5848), + [anon_sym_defer] = ACTIONS(5848), + [anon_sym_errdefer] = ACTIONS(5848), + [anon_sym_if] = ACTIONS(5848), + [anon_sym_else] = ACTIONS(5848), + [anon_sym_while] = ACTIONS(5848), + [anon_sym_expand] = ACTIONS(5848), + [anon_sym_for] = ACTIONS(5848), + [anon_sym_match] = ACTIONS(5848), + [anon_sym_DOT_DOT] = ACTIONS(5848), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5846), + [anon_sym_orelse] = ACTIONS(5848), + [anon_sym_or] = ACTIONS(5848), + [anon_sym_and] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_BANG_EQ] = ACTIONS(5846), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_EQ] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5846), + [anon_sym_xor] = ACTIONS(5848), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(5846), + [anon_sym_LT_LT_PIPE] = ACTIONS(5846), + [anon_sym_PLUS] = ACTIONS(5846), + [anon_sym_SLASH] = ACTIONS(5846), + [anon_sym_catch] = ACTIONS(5848), + [anon_sym_TILDE] = ACTIONS(5846), + [anon_sym_try] = ACTIONS(5848), + [anon_sym_DOT] = ACTIONS(5848), + [anon_sym_CARET] = ACTIONS(5846), + [anon_sym_true] = ACTIONS(5848), + [anon_sym_false] = ACTIONS(5848), + [anon_sym_null] = ACTIONS(5848), + [anon_sym_unreachable] = ACTIONS(5848), + [anon_sym_undefined] = ACTIONS(5848), + [sym_sink] = ACTIONS(5848), + [sym_integer] = ACTIONS(5848), + [sym_float] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(5846), + [sym_multiline_string] = ACTIONS(5846), + [sym_character] = ACTIONS(5846), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5846), + }, + [STATE(3872)] = { + [ts_builtin_sym_end] = ACTIONS(5922), + [sym_identifier] = ACTIONS(5924), + [anon_sym_COLON_COLON] = ACTIONS(5922), + [anon_sym_import] = ACTIONS(5924), + [anon_sym_test] = ACTIONS(5924), + [anon_sym_hide] = ACTIONS(5924), + [anon_sym_func] = ACTIONS(5924), + [anon_sym_BANG] = ACTIONS(5924), + [anon_sym_EQ] = ACTIONS(5924), + [anon_sym_struct] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5922), + [anon_sym_RPAREN] = ACTIONS(5922), + [anon_sym_LBRACE] = ACTIONS(5922), + [anon_sym_COMMA] = ACTIONS(5922), + [anon_sym_RBRACE] = ACTIONS(5922), + [anon_sym_DASH] = ACTIONS(5922), + [anon_sym_DOLLAR] = ACTIONS(5922), + [anon_sym_PIPE] = ACTIONS(5922), + [anon_sym_QMARK] = ACTIONS(5922), + [anon_sym_STAR] = ACTIONS(5922), + [anon_sym_LBRACK] = ACTIONS(5922), + [anon_sym_void] = ACTIONS(5924), + [anon_sym_noreturn] = ACTIONS(5924), + [anon_sym_type] = ACTIONS(5924), + [anon_sym_anyopaque] = ACTIONS(5924), + [anon_sym_bool] = ACTIONS(5924), + [anon_sym_int] = ACTIONS(5924), + [anon_sym_uint] = ACTIONS(5924), + [anon_sym_float] = ACTIONS(5924), + [anon_sym_range] = ACTIONS(5924), + [anon_sym_i8] = ACTIONS(5924), + [anon_sym_i16] = ACTIONS(5924), + [anon_sym_i32] = ACTIONS(5924), + [anon_sym_i64] = ACTIONS(5924), + [anon_sym_u8] = ACTIONS(5924), + [anon_sym_u16] = ACTIONS(5924), + [anon_sym_u32] = ACTIONS(5924), + [anon_sym_u64] = ACTIONS(5924), + [anon_sym_isize] = ACTIONS(5924), + [anon_sym_usize] = ACTIONS(5924), + [anon_sym_f32] = ACTIONS(5924), + [anon_sym_f64] = ACTIONS(5924), + [anon_sym_c_char] = ACTIONS(5924), + [anon_sym_c_schar] = ACTIONS(5924), + [anon_sym_c_uchar] = ACTIONS(5924), + [anon_sym_c_short] = ACTIONS(5924), + [anon_sym_c_ushort] = ACTIONS(5924), + [anon_sym_c_int] = ACTIONS(5924), + [anon_sym_c_uint] = ACTIONS(5924), + [anon_sym_c_long] = ACTIONS(5924), + [anon_sym_c_ulong] = ACTIONS(5924), + [anon_sym_c_longlong] = ACTIONS(5924), + [anon_sym_c_ulonglong] = ACTIONS(5924), + [anon_sym_c_float] = ACTIONS(5924), + [anon_sym_c_double] = ACTIONS(5924), + [anon_sym_c_longdouble] = ACTIONS(5924), + [anon_sym_return] = ACTIONS(5924), + [anon_sym_yield] = ACTIONS(5924), + [anon_sym_COLON] = ACTIONS(5924), + [anon_sym_break] = ACTIONS(5924), + [anon_sym_continue] = ACTIONS(5924), + [anon_sym_defer] = ACTIONS(5924), + [anon_sym_errdefer] = ACTIONS(5924), + [anon_sym_if] = ACTIONS(5924), + [anon_sym_else] = ACTIONS(5924), + [anon_sym_while] = ACTIONS(5924), + [anon_sym_expand] = ACTIONS(5924), + [anon_sym_for] = ACTIONS(5924), + [anon_sym_match] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(5924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5922), + [anon_sym_orelse] = ACTIONS(5924), + [anon_sym_or] = ACTIONS(5924), + [anon_sym_and] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5922), + [anon_sym_BANG_EQ] = ACTIONS(5922), + [anon_sym_LT] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5922), + [anon_sym_GT] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5922), + [anon_sym_AMP] = ACTIONS(5922), + [anon_sym_xor] = ACTIONS(5924), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5922), + [anon_sym_LT_LT_PIPE] = ACTIONS(5922), + [anon_sym_PLUS] = ACTIONS(5922), + [anon_sym_SLASH] = ACTIONS(5922), + [anon_sym_catch] = ACTIONS(5924), + [anon_sym_TILDE] = ACTIONS(5922), + [anon_sym_try] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5922), + [anon_sym_true] = ACTIONS(5924), + [anon_sym_false] = ACTIONS(5924), + [anon_sym_null] = ACTIONS(5924), + [anon_sym_unreachable] = ACTIONS(5924), + [anon_sym_undefined] = ACTIONS(5924), + [sym_sink] = ACTIONS(5924), + [sym_integer] = ACTIONS(5924), + [sym_float] = ACTIONS(5922), + [anon_sym_DQUOTE] = ACTIONS(5922), + [sym_multiline_string] = ACTIONS(5922), + [sym_character] = ACTIONS(5922), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5922), + }, + [STATE(3873)] = { + [ts_builtin_sym_end] = ACTIONS(5862), + [sym_identifier] = ACTIONS(5864), + [anon_sym_COLON_COLON] = ACTIONS(5862), + [anon_sym_import] = ACTIONS(5864), + [anon_sym_test] = ACTIONS(5864), + [anon_sym_hide] = ACTIONS(5864), + [anon_sym_func] = ACTIONS(5864), + [anon_sym_BANG] = ACTIONS(5864), + [anon_sym_EQ] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_LPAREN] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(5862), + [anon_sym_LBRACE] = ACTIONS(5862), + [anon_sym_COMMA] = ACTIONS(5862), + [anon_sym_RBRACE] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5862), + [anon_sym_DOLLAR] = ACTIONS(5862), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_QMARK] = ACTIONS(5862), + [anon_sym_STAR] = ACTIONS(5862), + [anon_sym_LBRACK] = ACTIONS(5862), + [anon_sym_void] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_type] = ACTIONS(5864), + [anon_sym_anyopaque] = ACTIONS(5864), + [anon_sym_bool] = ACTIONS(5864), + [anon_sym_int] = ACTIONS(5864), + [anon_sym_uint] = ACTIONS(5864), + [anon_sym_float] = ACTIONS(5864), + [anon_sym_range] = ACTIONS(5864), + [anon_sym_i8] = ACTIONS(5864), + [anon_sym_i16] = ACTIONS(5864), + [anon_sym_i32] = ACTIONS(5864), + [anon_sym_i64] = ACTIONS(5864), + [anon_sym_u8] = ACTIONS(5864), + [anon_sym_u16] = ACTIONS(5864), + [anon_sym_u32] = ACTIONS(5864), + [anon_sym_u64] = ACTIONS(5864), + [anon_sym_isize] = ACTIONS(5864), + [anon_sym_usize] = ACTIONS(5864), + [anon_sym_f32] = ACTIONS(5864), + [anon_sym_f64] = ACTIONS(5864), + [anon_sym_c_char] = ACTIONS(5864), + [anon_sym_c_schar] = ACTIONS(5864), + [anon_sym_c_uchar] = ACTIONS(5864), + [anon_sym_c_short] = ACTIONS(5864), + [anon_sym_c_ushort] = ACTIONS(5864), + [anon_sym_c_int] = ACTIONS(5864), + [anon_sym_c_uint] = ACTIONS(5864), + [anon_sym_c_long] = ACTIONS(5864), + [anon_sym_c_ulong] = ACTIONS(5864), + [anon_sym_c_longlong] = ACTIONS(5864), + [anon_sym_c_ulonglong] = ACTIONS(5864), + [anon_sym_c_float] = ACTIONS(5864), + [anon_sym_c_double] = ACTIONS(5864), + [anon_sym_c_longdouble] = ACTIONS(5864), + [anon_sym_return] = ACTIONS(5864), + [anon_sym_yield] = ACTIONS(5864), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_break] = ACTIONS(5864), + [anon_sym_continue] = ACTIONS(5864), + [anon_sym_defer] = ACTIONS(5864), + [anon_sym_errdefer] = ACTIONS(5864), + [anon_sym_if] = ACTIONS(5864), + [anon_sym_else] = ACTIONS(5864), + [anon_sym_while] = ACTIONS(5864), + [anon_sym_expand] = ACTIONS(5864), + [anon_sym_for] = ACTIONS(5864), + [anon_sym_match] = ACTIONS(5864), + [anon_sym_DOT_DOT] = ACTIONS(5864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5862), + [anon_sym_orelse] = ACTIONS(5864), + [anon_sym_or] = ACTIONS(5864), + [anon_sym_and] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_BANG_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_LT_EQ] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5864), + [anon_sym_GT_EQ] = ACTIONS(5862), + [anon_sym_AMP] = ACTIONS(5862), + [anon_sym_xor] = ACTIONS(5864), + [anon_sym_LT_LT] = ACTIONS(5864), + [anon_sym_GT_GT] = ACTIONS(5862), + [anon_sym_LT_LT_PIPE] = ACTIONS(5862), + [anon_sym_PLUS] = ACTIONS(5862), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_catch] = ACTIONS(5864), + [anon_sym_TILDE] = ACTIONS(5862), + [anon_sym_try] = ACTIONS(5864), + [anon_sym_DOT] = ACTIONS(5864), + [anon_sym_CARET] = ACTIONS(5862), + [anon_sym_true] = ACTIONS(5864), + [anon_sym_false] = ACTIONS(5864), + [anon_sym_null] = ACTIONS(5864), + [anon_sym_unreachable] = ACTIONS(5864), + [anon_sym_undefined] = ACTIONS(5864), + [sym_sink] = ACTIONS(5864), + [sym_integer] = ACTIONS(5864), + [sym_float] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(5862), + [sym_multiline_string] = ACTIONS(5862), + [sym_character] = ACTIONS(5862), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5862), + }, + [STATE(3874)] = { + [ts_builtin_sym_end] = ACTIONS(5926), + [sym_identifier] = ACTIONS(5928), + [anon_sym_COLON_COLON] = ACTIONS(5926), + [anon_sym_import] = ACTIONS(5928), + [anon_sym_test] = ACTIONS(5928), + [anon_sym_hide] = ACTIONS(5928), + [anon_sym_func] = ACTIONS(5928), + [anon_sym_BANG] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(5928), + [anon_sym_struct] = ACTIONS(5928), + [anon_sym_LPAREN] = ACTIONS(5926), + [anon_sym_RPAREN] = ACTIONS(5926), + [anon_sym_LBRACE] = ACTIONS(5926), + [anon_sym_COMMA] = ACTIONS(5926), + [anon_sym_RBRACE] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5926), + [anon_sym_DOLLAR] = ACTIONS(5926), + [anon_sym_PIPE] = ACTIONS(5926), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5926), + [anon_sym_LBRACK] = ACTIONS(5926), + [anon_sym_void] = ACTIONS(5928), + [anon_sym_noreturn] = ACTIONS(5928), + [anon_sym_type] = ACTIONS(5928), + [anon_sym_anyopaque] = ACTIONS(5928), + [anon_sym_bool] = ACTIONS(5928), + [anon_sym_int] = ACTIONS(5928), + [anon_sym_uint] = ACTIONS(5928), + [anon_sym_float] = ACTIONS(5928), + [anon_sym_range] = ACTIONS(5928), + [anon_sym_i8] = ACTIONS(5928), + [anon_sym_i16] = ACTIONS(5928), + [anon_sym_i32] = ACTIONS(5928), + [anon_sym_i64] = ACTIONS(5928), + [anon_sym_u8] = ACTIONS(5928), + [anon_sym_u16] = ACTIONS(5928), + [anon_sym_u32] = ACTIONS(5928), + [anon_sym_u64] = ACTIONS(5928), + [anon_sym_isize] = ACTIONS(5928), + [anon_sym_usize] = ACTIONS(5928), + [anon_sym_f32] = ACTIONS(5928), + [anon_sym_f64] = ACTIONS(5928), + [anon_sym_c_char] = ACTIONS(5928), + [anon_sym_c_schar] = ACTIONS(5928), + [anon_sym_c_uchar] = ACTIONS(5928), + [anon_sym_c_short] = ACTIONS(5928), + [anon_sym_c_ushort] = ACTIONS(5928), + [anon_sym_c_int] = ACTIONS(5928), + [anon_sym_c_uint] = ACTIONS(5928), + [anon_sym_c_long] = ACTIONS(5928), + [anon_sym_c_ulong] = ACTIONS(5928), + [anon_sym_c_longlong] = ACTIONS(5928), + [anon_sym_c_ulonglong] = ACTIONS(5928), + [anon_sym_c_float] = ACTIONS(5928), + [anon_sym_c_double] = ACTIONS(5928), + [anon_sym_c_longdouble] = ACTIONS(5928), + [anon_sym_return] = ACTIONS(5928), + [anon_sym_yield] = ACTIONS(5928), + [anon_sym_COLON] = ACTIONS(5928), + [anon_sym_break] = ACTIONS(5928), + [anon_sym_continue] = ACTIONS(5928), + [anon_sym_defer] = ACTIONS(5928), + [anon_sym_errdefer] = ACTIONS(5928), + [anon_sym_if] = ACTIONS(5928), + [anon_sym_else] = ACTIONS(5928), + [anon_sym_while] = ACTIONS(5928), + [anon_sym_expand] = ACTIONS(5928), + [anon_sym_for] = ACTIONS(5928), + [anon_sym_match] = ACTIONS(5928), + [anon_sym_DOT_DOT] = ACTIONS(5928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5926), + [anon_sym_orelse] = ACTIONS(5928), + [anon_sym_or] = ACTIONS(5928), + [anon_sym_and] = ACTIONS(5928), + [anon_sym_EQ_EQ] = ACTIONS(5926), + [anon_sym_BANG_EQ] = ACTIONS(5926), + [anon_sym_LT] = ACTIONS(5928), + [anon_sym_LT_EQ] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5928), + [anon_sym_GT_EQ] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5926), + [anon_sym_xor] = ACTIONS(5928), + [anon_sym_LT_LT] = ACTIONS(5928), + [anon_sym_GT_GT] = ACTIONS(5926), + [anon_sym_LT_LT_PIPE] = ACTIONS(5926), + [anon_sym_PLUS] = ACTIONS(5926), + [anon_sym_SLASH] = ACTIONS(5926), + [anon_sym_catch] = ACTIONS(5928), + [anon_sym_TILDE] = ACTIONS(5926), + [anon_sym_try] = ACTIONS(5928), + [anon_sym_DOT] = ACTIONS(5928), + [anon_sym_CARET] = ACTIONS(5926), + [anon_sym_true] = ACTIONS(5928), + [anon_sym_false] = ACTIONS(5928), + [anon_sym_null] = ACTIONS(5928), + [anon_sym_unreachable] = ACTIONS(5928), + [anon_sym_undefined] = ACTIONS(5928), + [sym_sink] = ACTIONS(5928), + [sym_integer] = ACTIONS(5928), + [sym_float] = ACTIONS(5926), + [anon_sym_DQUOTE] = ACTIONS(5926), + [sym_multiline_string] = ACTIONS(5926), + [sym_character] = ACTIONS(5926), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5926), + }, + [STATE(3875)] = { + [ts_builtin_sym_end] = ACTIONS(5930), + [sym_identifier] = ACTIONS(5932), + [anon_sym_COLON_COLON] = ACTIONS(5930), + [anon_sym_import] = ACTIONS(5932), + [anon_sym_test] = ACTIONS(5932), + [anon_sym_hide] = ACTIONS(5932), + [anon_sym_func] = ACTIONS(5932), + [anon_sym_BANG] = ACTIONS(5932), + [anon_sym_EQ] = ACTIONS(5932), + [anon_sym_struct] = ACTIONS(5932), + [anon_sym_LPAREN] = ACTIONS(5930), + [anon_sym_RPAREN] = ACTIONS(5930), + [anon_sym_LBRACE] = ACTIONS(5930), + [anon_sym_COMMA] = ACTIONS(5930), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_DASH] = ACTIONS(5930), + [anon_sym_DOLLAR] = ACTIONS(5930), + [anon_sym_PIPE] = ACTIONS(5930), + [anon_sym_QMARK] = ACTIONS(5930), + [anon_sym_STAR] = ACTIONS(5930), + [anon_sym_LBRACK] = ACTIONS(5930), + [anon_sym_void] = ACTIONS(5932), + [anon_sym_noreturn] = ACTIONS(5932), + [anon_sym_type] = ACTIONS(5932), + [anon_sym_anyopaque] = ACTIONS(5932), + [anon_sym_bool] = ACTIONS(5932), + [anon_sym_int] = ACTIONS(5932), + [anon_sym_uint] = ACTIONS(5932), + [anon_sym_float] = ACTIONS(5932), + [anon_sym_range] = ACTIONS(5932), + [anon_sym_i8] = ACTIONS(5932), + [anon_sym_i16] = ACTIONS(5932), + [anon_sym_i32] = ACTIONS(5932), + [anon_sym_i64] = ACTIONS(5932), + [anon_sym_u8] = ACTIONS(5932), + [anon_sym_u16] = ACTIONS(5932), + [anon_sym_u32] = ACTIONS(5932), + [anon_sym_u64] = ACTIONS(5932), + [anon_sym_isize] = ACTIONS(5932), + [anon_sym_usize] = ACTIONS(5932), + [anon_sym_f32] = ACTIONS(5932), + [anon_sym_f64] = ACTIONS(5932), + [anon_sym_c_char] = ACTIONS(5932), + [anon_sym_c_schar] = ACTIONS(5932), + [anon_sym_c_uchar] = ACTIONS(5932), + [anon_sym_c_short] = ACTIONS(5932), + [anon_sym_c_ushort] = ACTIONS(5932), + [anon_sym_c_int] = ACTIONS(5932), + [anon_sym_c_uint] = ACTIONS(5932), + [anon_sym_c_long] = ACTIONS(5932), + [anon_sym_c_ulong] = ACTIONS(5932), + [anon_sym_c_longlong] = ACTIONS(5932), + [anon_sym_c_ulonglong] = ACTIONS(5932), + [anon_sym_c_float] = ACTIONS(5932), + [anon_sym_c_double] = ACTIONS(5932), + [anon_sym_c_longdouble] = ACTIONS(5932), + [anon_sym_return] = ACTIONS(5932), + [anon_sym_yield] = ACTIONS(5932), + [anon_sym_COLON] = ACTIONS(5932), + [anon_sym_break] = ACTIONS(5932), + [anon_sym_continue] = ACTIONS(5932), + [anon_sym_defer] = ACTIONS(5932), + [anon_sym_errdefer] = ACTIONS(5932), + [anon_sym_if] = ACTIONS(5932), + [anon_sym_else] = ACTIONS(5932), + [anon_sym_while] = ACTIONS(5932), + [anon_sym_expand] = ACTIONS(5932), + [anon_sym_for] = ACTIONS(5932), + [anon_sym_match] = ACTIONS(5932), + [anon_sym_DOT_DOT] = ACTIONS(5932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5930), + [anon_sym_orelse] = ACTIONS(5932), + [anon_sym_or] = ACTIONS(5932), + [anon_sym_and] = ACTIONS(5932), + [anon_sym_EQ_EQ] = ACTIONS(5930), + [anon_sym_BANG_EQ] = ACTIONS(5930), + [anon_sym_LT] = ACTIONS(5932), + [anon_sym_LT_EQ] = ACTIONS(5930), + [anon_sym_GT] = ACTIONS(5932), + [anon_sym_GT_EQ] = ACTIONS(5930), + [anon_sym_AMP] = ACTIONS(5930), + [anon_sym_xor] = ACTIONS(5932), + [anon_sym_LT_LT] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5930), + [anon_sym_LT_LT_PIPE] = ACTIONS(5930), + [anon_sym_PLUS] = ACTIONS(5930), + [anon_sym_SLASH] = ACTIONS(5930), + [anon_sym_catch] = ACTIONS(5932), + [anon_sym_TILDE] = ACTIONS(5930), + [anon_sym_try] = ACTIONS(5932), + [anon_sym_DOT] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5930), + [anon_sym_true] = ACTIONS(5932), + [anon_sym_false] = ACTIONS(5932), + [anon_sym_null] = ACTIONS(5932), + [anon_sym_unreachable] = ACTIONS(5932), + [anon_sym_undefined] = ACTIONS(5932), + [sym_sink] = ACTIONS(5932), + [sym_integer] = ACTIONS(5932), + [sym_float] = ACTIONS(5930), + [anon_sym_DQUOTE] = ACTIONS(5930), + [sym_multiline_string] = ACTIONS(5930), + [sym_character] = ACTIONS(5930), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5930), + }, + [STATE(3876)] = { + [ts_builtin_sym_end] = ACTIONS(5934), + [sym_identifier] = ACTIONS(5936), + [anon_sym_COLON_COLON] = ACTIONS(5934), + [anon_sym_import] = ACTIONS(5936), + [anon_sym_test] = ACTIONS(5936), + [anon_sym_hide] = ACTIONS(5936), + [anon_sym_func] = ACTIONS(5936), + [anon_sym_BANG] = ACTIONS(5936), + [anon_sym_EQ] = ACTIONS(5936), + [anon_sym_struct] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5934), + [anon_sym_RPAREN] = ACTIONS(5934), + [anon_sym_LBRACE] = ACTIONS(5934), + [anon_sym_COMMA] = ACTIONS(5934), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_DASH] = ACTIONS(5934), + [anon_sym_DOLLAR] = ACTIONS(5934), + [anon_sym_PIPE] = ACTIONS(5934), + [anon_sym_QMARK] = ACTIONS(5934), + [anon_sym_STAR] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(5934), + [anon_sym_void] = ACTIONS(5936), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_type] = ACTIONS(5936), + [anon_sym_anyopaque] = ACTIONS(5936), + [anon_sym_bool] = ACTIONS(5936), + [anon_sym_int] = ACTIONS(5936), + [anon_sym_uint] = ACTIONS(5936), + [anon_sym_float] = ACTIONS(5936), + [anon_sym_range] = ACTIONS(5936), + [anon_sym_i8] = ACTIONS(5936), + [anon_sym_i16] = ACTIONS(5936), + [anon_sym_i32] = ACTIONS(5936), + [anon_sym_i64] = ACTIONS(5936), + [anon_sym_u8] = ACTIONS(5936), + [anon_sym_u16] = ACTIONS(5936), + [anon_sym_u32] = ACTIONS(5936), + [anon_sym_u64] = ACTIONS(5936), + [anon_sym_isize] = ACTIONS(5936), + [anon_sym_usize] = ACTIONS(5936), + [anon_sym_f32] = ACTIONS(5936), + [anon_sym_f64] = ACTIONS(5936), + [anon_sym_c_char] = ACTIONS(5936), + [anon_sym_c_schar] = ACTIONS(5936), + [anon_sym_c_uchar] = ACTIONS(5936), + [anon_sym_c_short] = ACTIONS(5936), + [anon_sym_c_ushort] = ACTIONS(5936), + [anon_sym_c_int] = ACTIONS(5936), + [anon_sym_c_uint] = ACTIONS(5936), + [anon_sym_c_long] = ACTIONS(5936), + [anon_sym_c_ulong] = ACTIONS(5936), + [anon_sym_c_longlong] = ACTIONS(5936), + [anon_sym_c_ulonglong] = ACTIONS(5936), + [anon_sym_c_float] = ACTIONS(5936), + [anon_sym_c_double] = ACTIONS(5936), + [anon_sym_c_longdouble] = ACTIONS(5936), + [anon_sym_return] = ACTIONS(5936), + [anon_sym_yield] = ACTIONS(5936), + [anon_sym_COLON] = ACTIONS(5936), + [anon_sym_break] = ACTIONS(5936), + [anon_sym_continue] = ACTIONS(5936), + [anon_sym_defer] = ACTIONS(5936), + [anon_sym_errdefer] = ACTIONS(5936), + [anon_sym_if] = ACTIONS(5936), + [anon_sym_else] = ACTIONS(5936), + [anon_sym_while] = ACTIONS(5936), + [anon_sym_expand] = ACTIONS(5936), + [anon_sym_for] = ACTIONS(5936), + [anon_sym_match] = ACTIONS(5936), + [anon_sym_DOT_DOT] = ACTIONS(5936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5934), + [anon_sym_orelse] = ACTIONS(5936), + [anon_sym_or] = ACTIONS(5936), + [anon_sym_and] = ACTIONS(5936), + [anon_sym_EQ_EQ] = ACTIONS(5934), + [anon_sym_BANG_EQ] = ACTIONS(5934), + [anon_sym_LT] = ACTIONS(5936), + [anon_sym_LT_EQ] = ACTIONS(5934), + [anon_sym_GT] = ACTIONS(5936), + [anon_sym_GT_EQ] = ACTIONS(5934), + [anon_sym_AMP] = ACTIONS(5934), + [anon_sym_xor] = ACTIONS(5936), + [anon_sym_LT_LT] = ACTIONS(5936), + [anon_sym_GT_GT] = ACTIONS(5934), + [anon_sym_LT_LT_PIPE] = ACTIONS(5934), + [anon_sym_PLUS] = ACTIONS(5934), + [anon_sym_SLASH] = ACTIONS(5934), + [anon_sym_catch] = ACTIONS(5936), + [anon_sym_TILDE] = ACTIONS(5934), + [anon_sym_try] = ACTIONS(5936), + [anon_sym_DOT] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5934), + [anon_sym_true] = ACTIONS(5936), + [anon_sym_false] = ACTIONS(5936), + [anon_sym_null] = ACTIONS(5936), + [anon_sym_unreachable] = ACTIONS(5936), + [anon_sym_undefined] = ACTIONS(5936), + [sym_sink] = ACTIONS(5936), + [sym_integer] = ACTIONS(5936), + [sym_float] = ACTIONS(5934), + [anon_sym_DQUOTE] = ACTIONS(5934), + [sym_multiline_string] = ACTIONS(5934), + [sym_character] = ACTIONS(5934), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5934), + }, + [STATE(3877)] = { + [ts_builtin_sym_end] = ACTIONS(5938), + [sym_identifier] = ACTIONS(5940), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_import] = ACTIONS(5940), + [anon_sym_test] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_func] = ACTIONS(5940), + [anon_sym_BANG] = ACTIONS(5940), + [anon_sym_EQ] = ACTIONS(5940), + [anon_sym_struct] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5938), + [anon_sym_RPAREN] = ACTIONS(5938), + [anon_sym_LBRACE] = ACTIONS(5938), + [anon_sym_COMMA] = ACTIONS(5938), + [anon_sym_RBRACE] = ACTIONS(5938), + [anon_sym_DASH] = ACTIONS(5938), + [anon_sym_DOLLAR] = ACTIONS(5938), + [anon_sym_PIPE] = ACTIONS(5938), + [anon_sym_QMARK] = ACTIONS(5938), + [anon_sym_STAR] = ACTIONS(5938), + [anon_sym_LBRACK] = ACTIONS(5938), + [anon_sym_void] = ACTIONS(5940), + [anon_sym_noreturn] = ACTIONS(5940), + [anon_sym_type] = ACTIONS(5940), + [anon_sym_anyopaque] = ACTIONS(5940), + [anon_sym_bool] = ACTIONS(5940), + [anon_sym_int] = ACTIONS(5940), + [anon_sym_uint] = ACTIONS(5940), + [anon_sym_float] = ACTIONS(5940), + [anon_sym_range] = ACTIONS(5940), + [anon_sym_i8] = ACTIONS(5940), + [anon_sym_i16] = ACTIONS(5940), + [anon_sym_i32] = ACTIONS(5940), + [anon_sym_i64] = ACTIONS(5940), + [anon_sym_u8] = ACTIONS(5940), + [anon_sym_u16] = ACTIONS(5940), + [anon_sym_u32] = ACTIONS(5940), + [anon_sym_u64] = ACTIONS(5940), + [anon_sym_isize] = ACTIONS(5940), + [anon_sym_usize] = ACTIONS(5940), + [anon_sym_f32] = ACTIONS(5940), + [anon_sym_f64] = ACTIONS(5940), + [anon_sym_c_char] = ACTIONS(5940), + [anon_sym_c_schar] = ACTIONS(5940), + [anon_sym_c_uchar] = ACTIONS(5940), + [anon_sym_c_short] = ACTIONS(5940), + [anon_sym_c_ushort] = ACTIONS(5940), + [anon_sym_c_int] = ACTIONS(5940), + [anon_sym_c_uint] = ACTIONS(5940), + [anon_sym_c_long] = ACTIONS(5940), + [anon_sym_c_ulong] = ACTIONS(5940), + [anon_sym_c_longlong] = ACTIONS(5940), + [anon_sym_c_ulonglong] = ACTIONS(5940), + [anon_sym_c_float] = ACTIONS(5940), + [anon_sym_c_double] = ACTIONS(5940), + [anon_sym_c_longdouble] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_yield] = ACTIONS(5940), + [anon_sym_COLON] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_defer] = ACTIONS(5940), + [anon_sym_errdefer] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_else] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_expand] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5938), + [anon_sym_orelse] = ACTIONS(5940), + [anon_sym_or] = ACTIONS(5940), + [anon_sym_and] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5938), + [anon_sym_BANG_EQ] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(5940), + [anon_sym_LT_EQ] = ACTIONS(5938), + [anon_sym_GT] = ACTIONS(5940), + [anon_sym_GT_EQ] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5938), + [anon_sym_xor] = ACTIONS(5940), + [anon_sym_LT_LT] = ACTIONS(5940), + [anon_sym_GT_GT] = ACTIONS(5938), + [anon_sym_LT_LT_PIPE] = ACTIONS(5938), + [anon_sym_PLUS] = ACTIONS(5938), + [anon_sym_SLASH] = ACTIONS(5938), + [anon_sym_catch] = ACTIONS(5940), + [anon_sym_TILDE] = ACTIONS(5938), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_DOT] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5938), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_unreachable] = ACTIONS(5940), + [anon_sym_undefined] = ACTIONS(5940), + [sym_sink] = ACTIONS(5940), + [sym_integer] = ACTIONS(5940), + [sym_float] = ACTIONS(5938), + [anon_sym_DQUOTE] = ACTIONS(5938), + [sym_multiline_string] = ACTIONS(5938), + [sym_character] = ACTIONS(5938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5938), + }, + [STATE(3878)] = { + [ts_builtin_sym_end] = ACTIONS(5816), + [sym_identifier] = ACTIONS(5818), + [anon_sym_COLON_COLON] = ACTIONS(5816), + [anon_sym_import] = ACTIONS(5818), + [anon_sym_test] = ACTIONS(5818), + [anon_sym_hide] = ACTIONS(5818), + [anon_sym_func] = ACTIONS(5818), + [anon_sym_BANG] = ACTIONS(5818), + [anon_sym_EQ] = ACTIONS(5818), + [anon_sym_struct] = ACTIONS(5818), + [anon_sym_LPAREN] = ACTIONS(5816), + [anon_sym_RPAREN] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5816), + [anon_sym_COMMA] = ACTIONS(5816), + [anon_sym_RBRACE] = ACTIONS(5816), + [anon_sym_DASH] = ACTIONS(5816), + [anon_sym_DOLLAR] = ACTIONS(5816), + [anon_sym_PIPE] = ACTIONS(5816), + [anon_sym_QMARK] = ACTIONS(5816), + [anon_sym_STAR] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(5816), + [anon_sym_void] = ACTIONS(5818), + [anon_sym_noreturn] = ACTIONS(5818), + [anon_sym_type] = ACTIONS(5818), + [anon_sym_anyopaque] = ACTIONS(5818), + [anon_sym_bool] = ACTIONS(5818), + [anon_sym_int] = ACTIONS(5818), + [anon_sym_uint] = ACTIONS(5818), + [anon_sym_float] = ACTIONS(5818), + [anon_sym_range] = ACTIONS(5818), + [anon_sym_i8] = ACTIONS(5818), + [anon_sym_i16] = ACTIONS(5818), + [anon_sym_i32] = ACTIONS(5818), + [anon_sym_i64] = ACTIONS(5818), + [anon_sym_u8] = ACTIONS(5818), + [anon_sym_u16] = ACTIONS(5818), + [anon_sym_u32] = ACTIONS(5818), + [anon_sym_u64] = ACTIONS(5818), + [anon_sym_isize] = ACTIONS(5818), + [anon_sym_usize] = ACTIONS(5818), + [anon_sym_f32] = ACTIONS(5818), + [anon_sym_f64] = ACTIONS(5818), + [anon_sym_c_char] = ACTIONS(5818), + [anon_sym_c_schar] = ACTIONS(5818), + [anon_sym_c_uchar] = ACTIONS(5818), + [anon_sym_c_short] = ACTIONS(5818), + [anon_sym_c_ushort] = ACTIONS(5818), + [anon_sym_c_int] = ACTIONS(5818), + [anon_sym_c_uint] = ACTIONS(5818), + [anon_sym_c_long] = ACTIONS(5818), + [anon_sym_c_ulong] = ACTIONS(5818), + [anon_sym_c_longlong] = ACTIONS(5818), + [anon_sym_c_ulonglong] = ACTIONS(5818), + [anon_sym_c_float] = ACTIONS(5818), + [anon_sym_c_double] = ACTIONS(5818), + [anon_sym_c_longdouble] = ACTIONS(5818), + [anon_sym_return] = ACTIONS(5818), + [anon_sym_yield] = ACTIONS(5818), + [anon_sym_COLON] = ACTIONS(5818), + [anon_sym_break] = ACTIONS(5818), + [anon_sym_continue] = ACTIONS(5818), + [anon_sym_defer] = ACTIONS(5818), + [anon_sym_errdefer] = ACTIONS(5818), + [anon_sym_if] = ACTIONS(5818), + [anon_sym_else] = ACTIONS(5818), + [anon_sym_while] = ACTIONS(5818), + [anon_sym_expand] = ACTIONS(5818), + [anon_sym_for] = ACTIONS(5818), + [anon_sym_match] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5816), + [anon_sym_orelse] = ACTIONS(5818), + [anon_sym_or] = ACTIONS(5818), + [anon_sym_and] = ACTIONS(5818), + [anon_sym_EQ_EQ] = ACTIONS(5816), + [anon_sym_BANG_EQ] = ACTIONS(5816), + [anon_sym_LT] = ACTIONS(5818), + [anon_sym_LT_EQ] = ACTIONS(5816), + [anon_sym_GT] = ACTIONS(5818), + [anon_sym_GT_EQ] = ACTIONS(5816), + [anon_sym_AMP] = ACTIONS(5816), + [anon_sym_xor] = ACTIONS(5818), + [anon_sym_LT_LT] = ACTIONS(5818), + [anon_sym_GT_GT] = ACTIONS(5816), + [anon_sym_LT_LT_PIPE] = ACTIONS(5816), + [anon_sym_PLUS] = ACTIONS(5816), + [anon_sym_SLASH] = ACTIONS(5816), + [anon_sym_catch] = ACTIONS(5818), + [anon_sym_TILDE] = ACTIONS(5816), + [anon_sym_try] = ACTIONS(5818), + [anon_sym_DOT] = ACTIONS(5818), + [anon_sym_CARET] = ACTIONS(5816), + [anon_sym_true] = ACTIONS(5818), + [anon_sym_false] = ACTIONS(5818), + [anon_sym_null] = ACTIONS(5818), + [anon_sym_unreachable] = ACTIONS(5818), + [anon_sym_undefined] = ACTIONS(5818), + [sym_sink] = ACTIONS(5818), + [sym_integer] = ACTIONS(5818), + [sym_float] = ACTIONS(5816), + [anon_sym_DQUOTE] = ACTIONS(5816), + [sym_multiline_string] = ACTIONS(5816), + [sym_character] = ACTIONS(5816), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5816), + }, + [STATE(3879)] = { + [ts_builtin_sym_end] = ACTIONS(5704), + [sym_identifier] = ACTIONS(5700), + [anon_sym_COLON_COLON] = ACTIONS(5704), + [anon_sym_import] = ACTIONS(5700), + [anon_sym_test] = ACTIONS(5700), + [anon_sym_hide] = ACTIONS(5700), + [anon_sym_func] = ACTIONS(5700), + [anon_sym_BANG] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(5700), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_LPAREN] = ACTIONS(5704), + [anon_sym_RPAREN] = ACTIONS(5704), + [anon_sym_LBRACE] = ACTIONS(5704), + [anon_sym_COMMA] = ACTIONS(5704), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_DASH] = ACTIONS(5704), + [anon_sym_DOLLAR] = ACTIONS(5704), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_QMARK] = ACTIONS(5704), + [anon_sym_STAR] = ACTIONS(5704), + [anon_sym_LBRACK] = ACTIONS(5704), + [anon_sym_void] = ACTIONS(5700), + [anon_sym_noreturn] = ACTIONS(5700), + [anon_sym_type] = ACTIONS(5700), + [anon_sym_anyopaque] = ACTIONS(5700), + [anon_sym_bool] = ACTIONS(5700), + [anon_sym_int] = ACTIONS(5700), + [anon_sym_uint] = ACTIONS(5700), + [anon_sym_float] = ACTIONS(5700), + [anon_sym_range] = ACTIONS(5700), + [anon_sym_i8] = ACTIONS(5700), + [anon_sym_i16] = ACTIONS(5700), + [anon_sym_i32] = ACTIONS(5700), + [anon_sym_i64] = ACTIONS(5700), + [anon_sym_u8] = ACTIONS(5700), + [anon_sym_u16] = ACTIONS(5700), + [anon_sym_u32] = ACTIONS(5700), + [anon_sym_u64] = ACTIONS(5700), + [anon_sym_isize] = ACTIONS(5700), + [anon_sym_usize] = ACTIONS(5700), + [anon_sym_f32] = ACTIONS(5700), + [anon_sym_f64] = ACTIONS(5700), + [anon_sym_c_char] = ACTIONS(5700), + [anon_sym_c_schar] = ACTIONS(5700), + [anon_sym_c_uchar] = ACTIONS(5700), + [anon_sym_c_short] = ACTIONS(5700), + [anon_sym_c_ushort] = ACTIONS(5700), + [anon_sym_c_int] = ACTIONS(5700), + [anon_sym_c_uint] = ACTIONS(5700), + [anon_sym_c_long] = ACTIONS(5700), + [anon_sym_c_ulong] = ACTIONS(5700), + [anon_sym_c_longlong] = ACTIONS(5700), + [anon_sym_c_ulonglong] = ACTIONS(5700), + [anon_sym_c_float] = ACTIONS(5700), + [anon_sym_c_double] = ACTIONS(5700), + [anon_sym_c_longdouble] = ACTIONS(5700), + [anon_sym_return] = ACTIONS(5700), + [anon_sym_yield] = ACTIONS(5700), + [anon_sym_COLON] = ACTIONS(5700), + [anon_sym_break] = ACTIONS(5700), + [anon_sym_continue] = ACTIONS(5700), + [anon_sym_defer] = ACTIONS(5700), + [anon_sym_errdefer] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5700), + [anon_sym_else] = ACTIONS(5700), + [anon_sym_while] = ACTIONS(5700), + [anon_sym_expand] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5700), + [anon_sym_match] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5704), + [anon_sym_orelse] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5700), + [anon_sym_and] = ACTIONS(5700), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5704), + [anon_sym_GT] = ACTIONS(5700), + [anon_sym_GT_EQ] = ACTIONS(5704), + [anon_sym_AMP] = ACTIONS(5704), + [anon_sym_xor] = ACTIONS(5700), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5704), + [anon_sym_LT_LT_PIPE] = ACTIONS(5704), + [anon_sym_PLUS] = ACTIONS(5704), + [anon_sym_SLASH] = ACTIONS(5704), + [anon_sym_catch] = ACTIONS(5700), + [anon_sym_TILDE] = ACTIONS(5704), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5700), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_true] = ACTIONS(5700), + [anon_sym_false] = ACTIONS(5700), + [anon_sym_null] = ACTIONS(5700), + [anon_sym_unreachable] = ACTIONS(5700), + [anon_sym_undefined] = ACTIONS(5700), + [sym_sink] = ACTIONS(5700), + [sym_integer] = ACTIONS(5700), + [sym_float] = ACTIONS(5704), + [anon_sym_DQUOTE] = ACTIONS(5704), + [sym_multiline_string] = ACTIONS(5704), + [sym_character] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5704), + }, + [STATE(3880)] = { + [ts_builtin_sym_end] = ACTIONS(5886), + [sym_identifier] = ACTIONS(5888), + [anon_sym_COLON_COLON] = ACTIONS(5886), + [anon_sym_import] = ACTIONS(5888), + [anon_sym_test] = ACTIONS(5888), + [anon_sym_hide] = ACTIONS(5888), + [anon_sym_func] = ACTIONS(5888), + [anon_sym_BANG] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_LPAREN] = ACTIONS(5886), + [anon_sym_RPAREN] = ACTIONS(5886), + [anon_sym_LBRACE] = ACTIONS(5886), + [anon_sym_COMMA] = ACTIONS(5886), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_DASH] = ACTIONS(5886), + [anon_sym_DOLLAR] = ACTIONS(5886), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(5886), + [anon_sym_STAR] = ACTIONS(5886), + [anon_sym_LBRACK] = ACTIONS(5886), + [anon_sym_void] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_type] = ACTIONS(5888), + [anon_sym_anyopaque] = ACTIONS(5888), + [anon_sym_bool] = ACTIONS(5888), + [anon_sym_int] = ACTIONS(5888), + [anon_sym_uint] = ACTIONS(5888), + [anon_sym_float] = ACTIONS(5888), + [anon_sym_range] = ACTIONS(5888), + [anon_sym_i8] = ACTIONS(5888), + [anon_sym_i16] = ACTIONS(5888), + [anon_sym_i32] = ACTIONS(5888), + [anon_sym_i64] = ACTIONS(5888), + [anon_sym_u8] = ACTIONS(5888), + [anon_sym_u16] = ACTIONS(5888), + [anon_sym_u32] = ACTIONS(5888), + [anon_sym_u64] = ACTIONS(5888), + [anon_sym_isize] = ACTIONS(5888), + [anon_sym_usize] = ACTIONS(5888), + [anon_sym_f32] = ACTIONS(5888), + [anon_sym_f64] = ACTIONS(5888), + [anon_sym_c_char] = ACTIONS(5888), + [anon_sym_c_schar] = ACTIONS(5888), + [anon_sym_c_uchar] = ACTIONS(5888), + [anon_sym_c_short] = ACTIONS(5888), + [anon_sym_c_ushort] = ACTIONS(5888), + [anon_sym_c_int] = ACTIONS(5888), + [anon_sym_c_uint] = ACTIONS(5888), + [anon_sym_c_long] = ACTIONS(5888), + [anon_sym_c_ulong] = ACTIONS(5888), + [anon_sym_c_longlong] = ACTIONS(5888), + [anon_sym_c_ulonglong] = ACTIONS(5888), + [anon_sym_c_float] = ACTIONS(5888), + [anon_sym_c_double] = ACTIONS(5888), + [anon_sym_c_longdouble] = ACTIONS(5888), + [anon_sym_return] = ACTIONS(5888), + [anon_sym_yield] = ACTIONS(5888), + [anon_sym_COLON] = ACTIONS(5888), + [anon_sym_break] = ACTIONS(5888), + [anon_sym_continue] = ACTIONS(5888), + [anon_sym_defer] = ACTIONS(5888), + [anon_sym_errdefer] = ACTIONS(5888), + [anon_sym_if] = ACTIONS(5888), + [anon_sym_else] = ACTIONS(5888), + [anon_sym_while] = ACTIONS(5888), + [anon_sym_expand] = ACTIONS(5888), + [anon_sym_for] = ACTIONS(5888), + [anon_sym_match] = ACTIONS(5888), + [anon_sym_DOT_DOT] = ACTIONS(5888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5886), + [anon_sym_orelse] = ACTIONS(5888), + [anon_sym_or] = ACTIONS(5888), + [anon_sym_and] = ACTIONS(5888), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_BANG_EQ] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(5888), + [anon_sym_LT_EQ] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5888), + [anon_sym_GT_EQ] = ACTIONS(5886), + [anon_sym_AMP] = ACTIONS(5886), + [anon_sym_xor] = ACTIONS(5888), + [anon_sym_LT_LT] = ACTIONS(5888), + [anon_sym_GT_GT] = ACTIONS(5886), + [anon_sym_LT_LT_PIPE] = ACTIONS(5886), + [anon_sym_PLUS] = ACTIONS(5886), + [anon_sym_SLASH] = ACTIONS(5886), + [anon_sym_catch] = ACTIONS(5888), + [anon_sym_TILDE] = ACTIONS(5886), + [anon_sym_try] = ACTIONS(5888), + [anon_sym_DOT] = ACTIONS(5888), + [anon_sym_CARET] = ACTIONS(5886), + [anon_sym_true] = ACTIONS(5888), + [anon_sym_false] = ACTIONS(5888), + [anon_sym_null] = ACTIONS(5888), + [anon_sym_unreachable] = ACTIONS(5888), + [anon_sym_undefined] = ACTIONS(5888), + [sym_sink] = ACTIONS(5888), + [sym_integer] = ACTIONS(5888), + [sym_float] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(5886), + [sym_multiline_string] = ACTIONS(5886), + [sym_character] = ACTIONS(5886), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5886), + }, + [STATE(3881)] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_identifier] = ACTIONS(4514), + [anon_sym_COLON_COLON] = ACTIONS(4512), + [anon_sym_import] = ACTIONS(4514), + [anon_sym_test] = ACTIONS(4514), + [anon_sym_hide] = ACTIONS(4514), + [anon_sym_func] = ACTIONS(4514), + [anon_sym_BANG] = ACTIONS(4514), + [anon_sym_EQ] = ACTIONS(4514), + [anon_sym_struct] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_COMMA] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4512), + [anon_sym_DOLLAR] = ACTIONS(4512), + [anon_sym_PIPE] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_STAR] = ACTIONS(4512), + [anon_sym_LBRACK] = ACTIONS(4512), + [anon_sym_void] = ACTIONS(4514), + [anon_sym_noreturn] = ACTIONS(4514), + [anon_sym_type] = ACTIONS(4514), + [anon_sym_anyopaque] = ACTIONS(4514), + [anon_sym_bool] = ACTIONS(4514), + [anon_sym_int] = ACTIONS(4514), + [anon_sym_uint] = ACTIONS(4514), + [anon_sym_float] = ACTIONS(4514), + [anon_sym_range] = ACTIONS(4514), + [anon_sym_i8] = ACTIONS(4514), + [anon_sym_i16] = ACTIONS(4514), + [anon_sym_i32] = ACTIONS(4514), + [anon_sym_i64] = ACTIONS(4514), + [anon_sym_u8] = ACTIONS(4514), + [anon_sym_u16] = ACTIONS(4514), + [anon_sym_u32] = ACTIONS(4514), + [anon_sym_u64] = ACTIONS(4514), + [anon_sym_isize] = ACTIONS(4514), + [anon_sym_usize] = ACTIONS(4514), + [anon_sym_f32] = ACTIONS(4514), + [anon_sym_f64] = ACTIONS(4514), + [anon_sym_c_char] = ACTIONS(4514), + [anon_sym_c_schar] = ACTIONS(4514), + [anon_sym_c_uchar] = ACTIONS(4514), + [anon_sym_c_short] = ACTIONS(4514), + [anon_sym_c_ushort] = ACTIONS(4514), + [anon_sym_c_int] = ACTIONS(4514), + [anon_sym_c_uint] = ACTIONS(4514), + [anon_sym_c_long] = ACTIONS(4514), + [anon_sym_c_ulong] = ACTIONS(4514), + [anon_sym_c_longlong] = ACTIONS(4514), + [anon_sym_c_ulonglong] = ACTIONS(4514), + [anon_sym_c_float] = ACTIONS(4514), + [anon_sym_c_double] = ACTIONS(4514), + [anon_sym_c_longdouble] = ACTIONS(4514), + [anon_sym_return] = ACTIONS(4514), + [anon_sym_yield] = ACTIONS(4514), + [anon_sym_COLON] = ACTIONS(4514), + [anon_sym_break] = ACTIONS(4514), + [anon_sym_continue] = ACTIONS(4514), + [anon_sym_defer] = ACTIONS(4514), + [anon_sym_errdefer] = ACTIONS(4514), + [anon_sym_if] = ACTIONS(4514), + [anon_sym_else] = ACTIONS(4514), + [anon_sym_while] = ACTIONS(4514), + [anon_sym_expand] = ACTIONS(4514), + [anon_sym_for] = ACTIONS(4514), + [anon_sym_match] = ACTIONS(4514), + [anon_sym_DOT_DOT] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4512), + [anon_sym_orelse] = ACTIONS(4514), + [anon_sym_or] = ACTIONS(4514), + [anon_sym_and] = ACTIONS(4514), + [anon_sym_EQ_EQ] = ACTIONS(4512), + [anon_sym_BANG_EQ] = ACTIONS(4512), + [anon_sym_LT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4512), + [anon_sym_GT] = ACTIONS(4514), + [anon_sym_GT_EQ] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4512), + [anon_sym_xor] = ACTIONS(4514), + [anon_sym_LT_LT] = ACTIONS(4514), + [anon_sym_GT_GT] = ACTIONS(4512), + [anon_sym_LT_LT_PIPE] = ACTIONS(4512), + [anon_sym_PLUS] = ACTIONS(4512), + [anon_sym_SLASH] = ACTIONS(4512), + [anon_sym_catch] = ACTIONS(4514), + [anon_sym_TILDE] = ACTIONS(4512), + [anon_sym_try] = ACTIONS(4514), + [anon_sym_DOT] = ACTIONS(4514), + [anon_sym_CARET] = ACTIONS(4512), + [anon_sym_true] = ACTIONS(4514), + [anon_sym_false] = ACTIONS(4514), + [anon_sym_null] = ACTIONS(4514), + [anon_sym_unreachable] = ACTIONS(4514), + [anon_sym_undefined] = ACTIONS(4514), + [sym_sink] = ACTIONS(4514), + [sym_integer] = ACTIONS(4514), + [sym_float] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [sym_multiline_string] = ACTIONS(4512), + [sym_character] = ACTIONS(4512), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4512), + }, + [STATE(3882)] = { + [ts_builtin_sym_end] = ACTIONS(5784), + [sym_identifier] = ACTIONS(5780), + [anon_sym_COLON_COLON] = ACTIONS(5784), + [anon_sym_import] = ACTIONS(5780), + [anon_sym_test] = ACTIONS(5780), + [anon_sym_hide] = ACTIONS(5780), + [anon_sym_func] = ACTIONS(5780), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_EQ] = ACTIONS(5780), + [anon_sym_struct] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_RPAREN] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(5784), + [anon_sym_COMMA] = ACTIONS(5784), + [anon_sym_RBRACE] = ACTIONS(5784), + [anon_sym_DASH] = ACTIONS(5784), + [anon_sym_DOLLAR] = ACTIONS(5784), + [anon_sym_PIPE] = ACTIONS(5784), + [anon_sym_QMARK] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5784), + [anon_sym_LBRACK] = ACTIONS(5784), + [anon_sym_void] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym_type] = ACTIONS(5780), + [anon_sym_anyopaque] = ACTIONS(5780), + [anon_sym_bool] = ACTIONS(5780), + [anon_sym_int] = ACTIONS(5780), + [anon_sym_uint] = ACTIONS(5780), + [anon_sym_float] = ACTIONS(5780), + [anon_sym_range] = ACTIONS(5780), + [anon_sym_i8] = ACTIONS(5780), + [anon_sym_i16] = ACTIONS(5780), + [anon_sym_i32] = ACTIONS(5780), + [anon_sym_i64] = ACTIONS(5780), + [anon_sym_u8] = ACTIONS(5780), + [anon_sym_u16] = ACTIONS(5780), + [anon_sym_u32] = ACTIONS(5780), + [anon_sym_u64] = ACTIONS(5780), + [anon_sym_isize] = ACTIONS(5780), + [anon_sym_usize] = ACTIONS(5780), + [anon_sym_f32] = ACTIONS(5780), + [anon_sym_f64] = ACTIONS(5780), + [anon_sym_c_char] = ACTIONS(5780), + [anon_sym_c_schar] = ACTIONS(5780), + [anon_sym_c_uchar] = ACTIONS(5780), + [anon_sym_c_short] = ACTIONS(5780), + [anon_sym_c_ushort] = ACTIONS(5780), + [anon_sym_c_int] = ACTIONS(5780), + [anon_sym_c_uint] = ACTIONS(5780), + [anon_sym_c_long] = ACTIONS(5780), + [anon_sym_c_ulong] = ACTIONS(5780), + [anon_sym_c_longlong] = ACTIONS(5780), + [anon_sym_c_ulonglong] = ACTIONS(5780), + [anon_sym_c_float] = ACTIONS(5780), + [anon_sym_c_double] = ACTIONS(5780), + [anon_sym_c_longdouble] = ACTIONS(5780), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_COLON] = ACTIONS(5780), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_defer] = ACTIONS(5780), + [anon_sym_errdefer] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_else] = ACTIONS(5780), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_expand] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5784), + [anon_sym_orelse] = ACTIONS(5780), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5784), + [anon_sym_BANG_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5784), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5784), + [anon_sym_LT_LT_PIPE] = ACTIONS(5784), + [anon_sym_PLUS] = ACTIONS(5784), + [anon_sym_SLASH] = ACTIONS(5784), + [anon_sym_catch] = ACTIONS(5780), + [anon_sym_TILDE] = ACTIONS(5784), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5784), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_unreachable] = ACTIONS(5780), + [anon_sym_undefined] = ACTIONS(5780), + [sym_sink] = ACTIONS(5780), + [sym_integer] = ACTIONS(5780), + [sym_float] = ACTIONS(5784), + [anon_sym_DQUOTE] = ACTIONS(5784), + [sym_multiline_string] = ACTIONS(5784), + [sym_character] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5784), + }, + [STATE(3883)] = { + [ts_builtin_sym_end] = ACTIONS(5890), + [sym_identifier] = ACTIONS(5892), + [anon_sym_COLON_COLON] = ACTIONS(5890), + [anon_sym_import] = ACTIONS(5892), + [anon_sym_test] = ACTIONS(5892), + [anon_sym_hide] = ACTIONS(5892), + [anon_sym_func] = ACTIONS(5892), + [anon_sym_BANG] = ACTIONS(5892), + [anon_sym_EQ] = ACTIONS(5892), + [anon_sym_struct] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5890), + [anon_sym_RPAREN] = ACTIONS(5890), + [anon_sym_LBRACE] = ACTIONS(5890), + [anon_sym_COMMA] = ACTIONS(5890), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym_DASH] = ACTIONS(5890), + [anon_sym_DOLLAR] = ACTIONS(5890), + [anon_sym_PIPE] = ACTIONS(5890), + [anon_sym_QMARK] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5890), + [anon_sym_LBRACK] = ACTIONS(5890), + [anon_sym_void] = ACTIONS(5892), + [anon_sym_noreturn] = ACTIONS(5892), + [anon_sym_type] = ACTIONS(5892), + [anon_sym_anyopaque] = ACTIONS(5892), + [anon_sym_bool] = ACTIONS(5892), + [anon_sym_int] = ACTIONS(5892), + [anon_sym_uint] = ACTIONS(5892), + [anon_sym_float] = ACTIONS(5892), + [anon_sym_range] = ACTIONS(5892), + [anon_sym_i8] = ACTIONS(5892), + [anon_sym_i16] = ACTIONS(5892), + [anon_sym_i32] = ACTIONS(5892), + [anon_sym_i64] = ACTIONS(5892), + [anon_sym_u8] = ACTIONS(5892), + [anon_sym_u16] = ACTIONS(5892), + [anon_sym_u32] = ACTIONS(5892), + [anon_sym_u64] = ACTIONS(5892), + [anon_sym_isize] = ACTIONS(5892), + [anon_sym_usize] = ACTIONS(5892), + [anon_sym_f32] = ACTIONS(5892), + [anon_sym_f64] = ACTIONS(5892), + [anon_sym_c_char] = ACTIONS(5892), + [anon_sym_c_schar] = ACTIONS(5892), + [anon_sym_c_uchar] = ACTIONS(5892), + [anon_sym_c_short] = ACTIONS(5892), + [anon_sym_c_ushort] = ACTIONS(5892), + [anon_sym_c_int] = ACTIONS(5892), + [anon_sym_c_uint] = ACTIONS(5892), + [anon_sym_c_long] = ACTIONS(5892), + [anon_sym_c_ulong] = ACTIONS(5892), + [anon_sym_c_longlong] = ACTIONS(5892), + [anon_sym_c_ulonglong] = ACTIONS(5892), + [anon_sym_c_float] = ACTIONS(5892), + [anon_sym_c_double] = ACTIONS(5892), + [anon_sym_c_longdouble] = ACTIONS(5892), + [anon_sym_return] = ACTIONS(5892), + [anon_sym_yield] = ACTIONS(5892), + [anon_sym_COLON] = ACTIONS(5892), + [anon_sym_break] = ACTIONS(5892), + [anon_sym_continue] = ACTIONS(5892), + [anon_sym_defer] = ACTIONS(5892), + [anon_sym_errdefer] = ACTIONS(5892), + [anon_sym_if] = ACTIONS(5892), + [anon_sym_else] = ACTIONS(5892), + [anon_sym_while] = ACTIONS(5892), + [anon_sym_expand] = ACTIONS(5892), + [anon_sym_for] = ACTIONS(5892), + [anon_sym_match] = ACTIONS(5892), + [anon_sym_DOT_DOT] = ACTIONS(5892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5890), + [anon_sym_orelse] = ACTIONS(5892), + [anon_sym_or] = ACTIONS(5892), + [anon_sym_and] = ACTIONS(5892), + [anon_sym_EQ_EQ] = ACTIONS(5890), + [anon_sym_BANG_EQ] = ACTIONS(5890), + [anon_sym_LT] = ACTIONS(5892), + [anon_sym_LT_EQ] = ACTIONS(5890), + [anon_sym_GT] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5890), + [anon_sym_xor] = ACTIONS(5892), + [anon_sym_LT_LT] = ACTIONS(5892), + [anon_sym_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT_PIPE] = ACTIONS(5890), + [anon_sym_PLUS] = ACTIONS(5890), + [anon_sym_SLASH] = ACTIONS(5890), + [anon_sym_catch] = ACTIONS(5892), + [anon_sym_TILDE] = ACTIONS(5890), + [anon_sym_try] = ACTIONS(5892), + [anon_sym_DOT] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5890), + [anon_sym_true] = ACTIONS(5892), + [anon_sym_false] = ACTIONS(5892), + [anon_sym_null] = ACTIONS(5892), + [anon_sym_unreachable] = ACTIONS(5892), + [anon_sym_undefined] = ACTIONS(5892), + [sym_sink] = ACTIONS(5892), + [sym_integer] = ACTIONS(5892), + [sym_float] = ACTIONS(5890), + [anon_sym_DQUOTE] = ACTIONS(5890), + [sym_multiline_string] = ACTIONS(5890), + [sym_character] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5890), + }, + [STATE(3884)] = { + [ts_builtin_sym_end] = ACTIONS(5942), + [sym_identifier] = ACTIONS(5944), + [anon_sym_COLON_COLON] = ACTIONS(5942), + [anon_sym_import] = ACTIONS(5944), + [anon_sym_test] = ACTIONS(5944), + [anon_sym_hide] = ACTIONS(5944), + [anon_sym_func] = ACTIONS(5944), + [anon_sym_BANG] = ACTIONS(5944), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_struct] = ACTIONS(5944), + [anon_sym_LPAREN] = ACTIONS(5942), + [anon_sym_RPAREN] = ACTIONS(5942), + [anon_sym_LBRACE] = ACTIONS(5942), + [anon_sym_COMMA] = ACTIONS(5942), + [anon_sym_RBRACE] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5942), + [anon_sym_DOLLAR] = ACTIONS(5942), + [anon_sym_PIPE] = ACTIONS(5942), + [anon_sym_QMARK] = ACTIONS(5942), + [anon_sym_STAR] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(5942), + [anon_sym_void] = ACTIONS(5944), + [anon_sym_noreturn] = ACTIONS(5944), + [anon_sym_type] = ACTIONS(5944), + [anon_sym_anyopaque] = ACTIONS(5944), + [anon_sym_bool] = ACTIONS(5944), + [anon_sym_int] = ACTIONS(5944), + [anon_sym_uint] = ACTIONS(5944), + [anon_sym_float] = ACTIONS(5944), + [anon_sym_range] = ACTIONS(5944), + [anon_sym_i8] = ACTIONS(5944), + [anon_sym_i16] = ACTIONS(5944), + [anon_sym_i32] = ACTIONS(5944), + [anon_sym_i64] = ACTIONS(5944), + [anon_sym_u8] = ACTIONS(5944), + [anon_sym_u16] = ACTIONS(5944), + [anon_sym_u32] = ACTIONS(5944), + [anon_sym_u64] = ACTIONS(5944), + [anon_sym_isize] = ACTIONS(5944), + [anon_sym_usize] = ACTIONS(5944), + [anon_sym_f32] = ACTIONS(5944), + [anon_sym_f64] = ACTIONS(5944), + [anon_sym_c_char] = ACTIONS(5944), + [anon_sym_c_schar] = ACTIONS(5944), + [anon_sym_c_uchar] = ACTIONS(5944), + [anon_sym_c_short] = ACTIONS(5944), + [anon_sym_c_ushort] = ACTIONS(5944), + [anon_sym_c_int] = ACTIONS(5944), + [anon_sym_c_uint] = ACTIONS(5944), + [anon_sym_c_long] = ACTIONS(5944), + [anon_sym_c_ulong] = ACTIONS(5944), + [anon_sym_c_longlong] = ACTIONS(5944), + [anon_sym_c_ulonglong] = ACTIONS(5944), + [anon_sym_c_float] = ACTIONS(5944), + [anon_sym_c_double] = ACTIONS(5944), + [anon_sym_c_longdouble] = ACTIONS(5944), + [anon_sym_return] = ACTIONS(5944), + [anon_sym_yield] = ACTIONS(5944), + [anon_sym_COLON] = ACTIONS(5944), + [anon_sym_break] = ACTIONS(5944), + [anon_sym_continue] = ACTIONS(5944), + [anon_sym_defer] = ACTIONS(5944), + [anon_sym_errdefer] = ACTIONS(5944), + [anon_sym_if] = ACTIONS(5944), + [anon_sym_else] = ACTIONS(5944), + [anon_sym_while] = ACTIONS(5944), + [anon_sym_expand] = ACTIONS(5944), + [anon_sym_for] = ACTIONS(5944), + [anon_sym_match] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5942), + [anon_sym_orelse] = ACTIONS(5944), + [anon_sym_or] = ACTIONS(5944), + [anon_sym_and] = ACTIONS(5944), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_LT] = ACTIONS(5944), + [anon_sym_LT_EQ] = ACTIONS(5942), + [anon_sym_GT] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5942), + [anon_sym_AMP] = ACTIONS(5942), + [anon_sym_xor] = ACTIONS(5944), + [anon_sym_LT_LT] = ACTIONS(5944), + [anon_sym_GT_GT] = ACTIONS(5942), + [anon_sym_LT_LT_PIPE] = ACTIONS(5942), + [anon_sym_PLUS] = ACTIONS(5942), + [anon_sym_SLASH] = ACTIONS(5942), + [anon_sym_catch] = ACTIONS(5944), + [anon_sym_TILDE] = ACTIONS(5942), + [anon_sym_try] = ACTIONS(5944), + [anon_sym_DOT] = ACTIONS(5944), + [anon_sym_CARET] = ACTIONS(5942), + [anon_sym_true] = ACTIONS(5944), + [anon_sym_false] = ACTIONS(5944), + [anon_sym_null] = ACTIONS(5944), + [anon_sym_unreachable] = ACTIONS(5944), + [anon_sym_undefined] = ACTIONS(5944), + [sym_sink] = ACTIONS(5944), + [sym_integer] = ACTIONS(5944), + [sym_float] = ACTIONS(5942), + [anon_sym_DQUOTE] = ACTIONS(5942), + [sym_multiline_string] = ACTIONS(5942), + [sym_character] = ACTIONS(5942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5942), + }, + [STATE(3885)] = { + [ts_builtin_sym_end] = ACTIONS(5946), + [sym_identifier] = ACTIONS(5948), + [anon_sym_COLON_COLON] = ACTIONS(5946), + [anon_sym_import] = ACTIONS(5948), + [anon_sym_test] = ACTIONS(5948), + [anon_sym_hide] = ACTIONS(5948), + [anon_sym_func] = ACTIONS(5948), + [anon_sym_BANG] = ACTIONS(5948), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_struct] = ACTIONS(5948), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_RPAREN] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_COMMA] = ACTIONS(5946), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5946), + [anon_sym_DOLLAR] = ACTIONS(5946), + [anon_sym_PIPE] = ACTIONS(5946), + [anon_sym_QMARK] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_void] = ACTIONS(5948), + [anon_sym_noreturn] = ACTIONS(5948), + [anon_sym_type] = ACTIONS(5948), + [anon_sym_anyopaque] = ACTIONS(5948), + [anon_sym_bool] = ACTIONS(5948), + [anon_sym_int] = ACTIONS(5948), + [anon_sym_uint] = ACTIONS(5948), + [anon_sym_float] = ACTIONS(5948), + [anon_sym_range] = ACTIONS(5948), + [anon_sym_i8] = ACTIONS(5948), + [anon_sym_i16] = ACTIONS(5948), + [anon_sym_i32] = ACTIONS(5948), + [anon_sym_i64] = ACTIONS(5948), + [anon_sym_u8] = ACTIONS(5948), + [anon_sym_u16] = ACTIONS(5948), + [anon_sym_u32] = ACTIONS(5948), + [anon_sym_u64] = ACTIONS(5948), + [anon_sym_isize] = ACTIONS(5948), + [anon_sym_usize] = ACTIONS(5948), + [anon_sym_f32] = ACTIONS(5948), + [anon_sym_f64] = ACTIONS(5948), + [anon_sym_c_char] = ACTIONS(5948), + [anon_sym_c_schar] = ACTIONS(5948), + [anon_sym_c_uchar] = ACTIONS(5948), + [anon_sym_c_short] = ACTIONS(5948), + [anon_sym_c_ushort] = ACTIONS(5948), + [anon_sym_c_int] = ACTIONS(5948), + [anon_sym_c_uint] = ACTIONS(5948), + [anon_sym_c_long] = ACTIONS(5948), + [anon_sym_c_ulong] = ACTIONS(5948), + [anon_sym_c_longlong] = ACTIONS(5948), + [anon_sym_c_ulonglong] = ACTIONS(5948), + [anon_sym_c_float] = ACTIONS(5948), + [anon_sym_c_double] = ACTIONS(5948), + [anon_sym_c_longdouble] = ACTIONS(5948), + [anon_sym_return] = ACTIONS(5948), + [anon_sym_yield] = ACTIONS(5948), + [anon_sym_COLON] = ACTIONS(5948), + [anon_sym_break] = ACTIONS(5948), + [anon_sym_continue] = ACTIONS(5948), + [anon_sym_defer] = ACTIONS(5948), + [anon_sym_errdefer] = ACTIONS(5948), + [anon_sym_if] = ACTIONS(5948), + [anon_sym_else] = ACTIONS(5948), + [anon_sym_while] = ACTIONS(5948), + [anon_sym_expand] = ACTIONS(5948), + [anon_sym_for] = ACTIONS(5948), + [anon_sym_match] = ACTIONS(5948), + [anon_sym_DOT_DOT] = ACTIONS(5948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_orelse] = ACTIONS(5948), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5946), + [anon_sym_BANG_EQ] = ACTIONS(5946), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_EQ] = ACTIONS(5946), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5946), + [anon_sym_AMP] = ACTIONS(5946), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_LT_LT_PIPE] = ACTIONS(5946), + [anon_sym_PLUS] = ACTIONS(5946), + [anon_sym_SLASH] = ACTIONS(5946), + [anon_sym_catch] = ACTIONS(5948), + [anon_sym_TILDE] = ACTIONS(5946), + [anon_sym_try] = ACTIONS(5948), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5946), + [anon_sym_true] = ACTIONS(5948), + [anon_sym_false] = ACTIONS(5948), + [anon_sym_null] = ACTIONS(5948), + [anon_sym_unreachable] = ACTIONS(5948), + [anon_sym_undefined] = ACTIONS(5948), + [sym_sink] = ACTIONS(5948), + [sym_integer] = ACTIONS(5948), + [sym_float] = ACTIONS(5946), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym_multiline_string] = ACTIONS(5946), + [sym_character] = ACTIONS(5946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5946), + }, + [STATE(3886)] = { + [ts_builtin_sym_end] = ACTIONS(5820), + [sym_identifier] = ACTIONS(5822), + [anon_sym_COLON_COLON] = ACTIONS(5820), + [anon_sym_import] = ACTIONS(5822), + [anon_sym_test] = ACTIONS(5822), + [anon_sym_hide] = ACTIONS(5822), + [anon_sym_func] = ACTIONS(5822), + [anon_sym_BANG] = ACTIONS(5822), + [anon_sym_EQ] = ACTIONS(5822), + [anon_sym_struct] = ACTIONS(5822), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_RPAREN] = ACTIONS(5820), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(5820), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DOLLAR] = ACTIONS(5820), + [anon_sym_PIPE] = ACTIONS(5820), + [anon_sym_QMARK] = ACTIONS(5820), + [anon_sym_STAR] = ACTIONS(5820), + [anon_sym_LBRACK] = ACTIONS(5820), + [anon_sym_void] = ACTIONS(5822), + [anon_sym_noreturn] = ACTIONS(5822), + [anon_sym_type] = ACTIONS(5822), + [anon_sym_anyopaque] = ACTIONS(5822), + [anon_sym_bool] = ACTIONS(5822), + [anon_sym_int] = ACTIONS(5822), + [anon_sym_uint] = ACTIONS(5822), + [anon_sym_float] = ACTIONS(5822), + [anon_sym_range] = ACTIONS(5822), + [anon_sym_i8] = ACTIONS(5822), + [anon_sym_i16] = ACTIONS(5822), + [anon_sym_i32] = ACTIONS(5822), + [anon_sym_i64] = ACTIONS(5822), + [anon_sym_u8] = ACTIONS(5822), + [anon_sym_u16] = ACTIONS(5822), + [anon_sym_u32] = ACTIONS(5822), + [anon_sym_u64] = ACTIONS(5822), + [anon_sym_isize] = ACTIONS(5822), + [anon_sym_usize] = ACTIONS(5822), + [anon_sym_f32] = ACTIONS(5822), + [anon_sym_f64] = ACTIONS(5822), + [anon_sym_c_char] = ACTIONS(5822), + [anon_sym_c_schar] = ACTIONS(5822), + [anon_sym_c_uchar] = ACTIONS(5822), + [anon_sym_c_short] = ACTIONS(5822), + [anon_sym_c_ushort] = ACTIONS(5822), + [anon_sym_c_int] = ACTIONS(5822), + [anon_sym_c_uint] = ACTIONS(5822), + [anon_sym_c_long] = ACTIONS(5822), + [anon_sym_c_ulong] = ACTIONS(5822), + [anon_sym_c_longlong] = ACTIONS(5822), + [anon_sym_c_ulonglong] = ACTIONS(5822), + [anon_sym_c_float] = ACTIONS(5822), + [anon_sym_c_double] = ACTIONS(5822), + [anon_sym_c_longdouble] = ACTIONS(5822), + [anon_sym_return] = ACTIONS(5822), + [anon_sym_yield] = ACTIONS(5822), + [anon_sym_COLON] = ACTIONS(5822), + [anon_sym_break] = ACTIONS(5822), + [anon_sym_continue] = ACTIONS(5822), + [anon_sym_defer] = ACTIONS(5822), + [anon_sym_errdefer] = ACTIONS(5822), + [anon_sym_if] = ACTIONS(5822), + [anon_sym_else] = ACTIONS(5822), + [anon_sym_while] = ACTIONS(5822), + [anon_sym_expand] = ACTIONS(5822), + [anon_sym_for] = ACTIONS(5822), + [anon_sym_match] = ACTIONS(5822), + [anon_sym_DOT_DOT] = ACTIONS(5822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5820), + [anon_sym_orelse] = ACTIONS(5822), + [anon_sym_or] = ACTIONS(5822), + [anon_sym_and] = ACTIONS(5822), + [anon_sym_EQ_EQ] = ACTIONS(5820), + [anon_sym_BANG_EQ] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5822), + [anon_sym_LT_EQ] = ACTIONS(5820), + [anon_sym_GT] = ACTIONS(5822), + [anon_sym_GT_EQ] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5820), + [anon_sym_xor] = ACTIONS(5822), + [anon_sym_LT_LT] = ACTIONS(5822), + [anon_sym_GT_GT] = ACTIONS(5820), + [anon_sym_LT_LT_PIPE] = ACTIONS(5820), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_SLASH] = ACTIONS(5820), + [anon_sym_catch] = ACTIONS(5822), + [anon_sym_TILDE] = ACTIONS(5820), + [anon_sym_try] = ACTIONS(5822), + [anon_sym_DOT] = ACTIONS(5822), + [anon_sym_CARET] = ACTIONS(5820), + [anon_sym_true] = ACTIONS(5822), + [anon_sym_false] = ACTIONS(5822), + [anon_sym_null] = ACTIONS(5822), + [anon_sym_unreachable] = ACTIONS(5822), + [anon_sym_undefined] = ACTIONS(5822), + [sym_sink] = ACTIONS(5822), + [sym_integer] = ACTIONS(5822), + [sym_float] = ACTIONS(5820), + [anon_sym_DQUOTE] = ACTIONS(5820), + [sym_multiline_string] = ACTIONS(5820), + [sym_character] = ACTIONS(5820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5820), + }, + [STATE(3887)] = { + [ts_builtin_sym_end] = ACTIONS(5874), + [sym_identifier] = ACTIONS(5876), + [anon_sym_COLON_COLON] = ACTIONS(5874), + [anon_sym_import] = ACTIONS(5876), + [anon_sym_test] = ACTIONS(5876), + [anon_sym_hide] = ACTIONS(5876), + [anon_sym_func] = ACTIONS(5876), + [anon_sym_BANG] = ACTIONS(5876), + [anon_sym_EQ] = ACTIONS(5876), + [anon_sym_struct] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(5874), + [anon_sym_RPAREN] = ACTIONS(5874), + [anon_sym_LBRACE] = ACTIONS(5874), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_DOLLAR] = ACTIONS(5874), + [anon_sym_PIPE] = ACTIONS(5874), + [anon_sym_QMARK] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(5874), + [anon_sym_void] = ACTIONS(5876), + [anon_sym_noreturn] = ACTIONS(5876), + [anon_sym_type] = ACTIONS(5876), + [anon_sym_anyopaque] = ACTIONS(5876), + [anon_sym_bool] = ACTIONS(5876), + [anon_sym_int] = ACTIONS(5876), + [anon_sym_uint] = ACTIONS(5876), + [anon_sym_float] = ACTIONS(5876), + [anon_sym_range] = ACTIONS(5876), + [anon_sym_i8] = ACTIONS(5876), + [anon_sym_i16] = ACTIONS(5876), + [anon_sym_i32] = ACTIONS(5876), + [anon_sym_i64] = ACTIONS(5876), + [anon_sym_u8] = ACTIONS(5876), + [anon_sym_u16] = ACTIONS(5876), + [anon_sym_u32] = ACTIONS(5876), + [anon_sym_u64] = ACTIONS(5876), + [anon_sym_isize] = ACTIONS(5876), + [anon_sym_usize] = ACTIONS(5876), + [anon_sym_f32] = ACTIONS(5876), + [anon_sym_f64] = ACTIONS(5876), + [anon_sym_c_char] = ACTIONS(5876), + [anon_sym_c_schar] = ACTIONS(5876), + [anon_sym_c_uchar] = ACTIONS(5876), + [anon_sym_c_short] = ACTIONS(5876), + [anon_sym_c_ushort] = ACTIONS(5876), + [anon_sym_c_int] = ACTIONS(5876), + [anon_sym_c_uint] = ACTIONS(5876), + [anon_sym_c_long] = ACTIONS(5876), + [anon_sym_c_ulong] = ACTIONS(5876), + [anon_sym_c_longlong] = ACTIONS(5876), + [anon_sym_c_ulonglong] = ACTIONS(5876), + [anon_sym_c_float] = ACTIONS(5876), + [anon_sym_c_double] = ACTIONS(5876), + [anon_sym_c_longdouble] = ACTIONS(5876), + [anon_sym_return] = ACTIONS(5876), + [anon_sym_yield] = ACTIONS(5876), + [anon_sym_COLON] = ACTIONS(5876), + [anon_sym_break] = ACTIONS(5876), + [anon_sym_continue] = ACTIONS(5876), + [anon_sym_defer] = ACTIONS(5876), + [anon_sym_errdefer] = ACTIONS(5876), + [anon_sym_if] = ACTIONS(5876), + [anon_sym_else] = ACTIONS(5876), + [anon_sym_while] = ACTIONS(5876), + [anon_sym_expand] = ACTIONS(5876), + [anon_sym_for] = ACTIONS(5876), + [anon_sym_match] = ACTIONS(5876), + [anon_sym_DOT_DOT] = ACTIONS(5876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5874), + [anon_sym_orelse] = ACTIONS(5876), + [anon_sym_or] = ACTIONS(5876), + [anon_sym_and] = ACTIONS(5876), + [anon_sym_EQ_EQ] = ACTIONS(5874), + [anon_sym_BANG_EQ] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(5876), + [anon_sym_LT_EQ] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5876), + [anon_sym_GT_EQ] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5874), + [anon_sym_xor] = ACTIONS(5876), + [anon_sym_LT_LT] = ACTIONS(5876), + [anon_sym_GT_GT] = ACTIONS(5874), + [anon_sym_LT_LT_PIPE] = ACTIONS(5874), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5874), + [anon_sym_catch] = ACTIONS(5876), + [anon_sym_TILDE] = ACTIONS(5874), + [anon_sym_try] = ACTIONS(5876), + [anon_sym_DOT] = ACTIONS(5876), + [anon_sym_CARET] = ACTIONS(5874), + [anon_sym_true] = ACTIONS(5876), + [anon_sym_false] = ACTIONS(5876), + [anon_sym_null] = ACTIONS(5876), + [anon_sym_unreachable] = ACTIONS(5876), + [anon_sym_undefined] = ACTIONS(5876), + [sym_sink] = ACTIONS(5876), + [sym_integer] = ACTIONS(5876), + [sym_float] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(5874), + [sym_multiline_string] = ACTIONS(5874), + [sym_character] = ACTIONS(5874), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5874), + }, + [STATE(3888)] = { + [ts_builtin_sym_end] = ACTIONS(5950), + [sym_identifier] = ACTIONS(5952), + [anon_sym_COLON_COLON] = ACTIONS(5950), + [anon_sym_import] = ACTIONS(5952), + [anon_sym_test] = ACTIONS(5952), + [anon_sym_hide] = ACTIONS(5952), + [anon_sym_func] = ACTIONS(5952), + [anon_sym_BANG] = ACTIONS(5952), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_struct] = ACTIONS(5952), + [anon_sym_LPAREN] = ACTIONS(5950), + [anon_sym_RPAREN] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(5950), + [anon_sym_COMMA] = ACTIONS(5950), + [anon_sym_RBRACE] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5950), + [anon_sym_DOLLAR] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5950), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_STAR] = ACTIONS(5950), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_void] = ACTIONS(5952), + [anon_sym_noreturn] = ACTIONS(5952), + [anon_sym_type] = ACTIONS(5952), + [anon_sym_anyopaque] = ACTIONS(5952), + [anon_sym_bool] = ACTIONS(5952), + [anon_sym_int] = ACTIONS(5952), + [anon_sym_uint] = ACTIONS(5952), + [anon_sym_float] = ACTIONS(5952), + [anon_sym_range] = ACTIONS(5952), + [anon_sym_i8] = ACTIONS(5952), + [anon_sym_i16] = ACTIONS(5952), + [anon_sym_i32] = ACTIONS(5952), + [anon_sym_i64] = ACTIONS(5952), + [anon_sym_u8] = ACTIONS(5952), + [anon_sym_u16] = ACTIONS(5952), + [anon_sym_u32] = ACTIONS(5952), + [anon_sym_u64] = ACTIONS(5952), + [anon_sym_isize] = ACTIONS(5952), + [anon_sym_usize] = ACTIONS(5952), + [anon_sym_f32] = ACTIONS(5952), + [anon_sym_f64] = ACTIONS(5952), + [anon_sym_c_char] = ACTIONS(5952), + [anon_sym_c_schar] = ACTIONS(5952), + [anon_sym_c_uchar] = ACTIONS(5952), + [anon_sym_c_short] = ACTIONS(5952), + [anon_sym_c_ushort] = ACTIONS(5952), + [anon_sym_c_int] = ACTIONS(5952), + [anon_sym_c_uint] = ACTIONS(5952), + [anon_sym_c_long] = ACTIONS(5952), + [anon_sym_c_ulong] = ACTIONS(5952), + [anon_sym_c_longlong] = ACTIONS(5952), + [anon_sym_c_ulonglong] = ACTIONS(5952), + [anon_sym_c_float] = ACTIONS(5952), + [anon_sym_c_double] = ACTIONS(5952), + [anon_sym_c_longdouble] = ACTIONS(5952), + [anon_sym_return] = ACTIONS(5952), + [anon_sym_yield] = ACTIONS(5952), + [anon_sym_COLON] = ACTIONS(5952), + [anon_sym_break] = ACTIONS(5952), + [anon_sym_continue] = ACTIONS(5952), + [anon_sym_defer] = ACTIONS(5952), + [anon_sym_errdefer] = ACTIONS(5952), + [anon_sym_if] = ACTIONS(5952), + [anon_sym_else] = ACTIONS(5952), + [anon_sym_while] = ACTIONS(5952), + [anon_sym_expand] = ACTIONS(5952), + [anon_sym_for] = ACTIONS(5952), + [anon_sym_match] = ACTIONS(5952), + [anon_sym_DOT_DOT] = ACTIONS(5952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5950), + [anon_sym_orelse] = ACTIONS(5952), + [anon_sym_or] = ACTIONS(5952), + [anon_sym_and] = ACTIONS(5952), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_LT] = ACTIONS(5952), + [anon_sym_LT_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5952), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_xor] = ACTIONS(5952), + [anon_sym_LT_LT] = ACTIONS(5952), + [anon_sym_GT_GT] = ACTIONS(5950), + [anon_sym_LT_LT_PIPE] = ACTIONS(5950), + [anon_sym_PLUS] = ACTIONS(5950), + [anon_sym_SLASH] = ACTIONS(5950), + [anon_sym_catch] = ACTIONS(5952), + [anon_sym_TILDE] = ACTIONS(5950), + [anon_sym_try] = ACTIONS(5952), + [anon_sym_DOT] = ACTIONS(5952), + [anon_sym_CARET] = ACTIONS(5950), + [anon_sym_true] = ACTIONS(5952), + [anon_sym_false] = ACTIONS(5952), + [anon_sym_null] = ACTIONS(5952), + [anon_sym_unreachable] = ACTIONS(5952), + [anon_sym_undefined] = ACTIONS(5952), + [sym_sink] = ACTIONS(5952), + [sym_integer] = ACTIONS(5952), + [sym_float] = ACTIONS(5950), + [anon_sym_DQUOTE] = ACTIONS(5950), + [sym_multiline_string] = ACTIONS(5950), + [sym_character] = ACTIONS(5950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5950), + }, + [STATE(3889)] = { + [ts_builtin_sym_end] = ACTIONS(5894), + [sym_identifier] = ACTIONS(5896), + [anon_sym_COLON_COLON] = ACTIONS(5894), + [anon_sym_import] = ACTIONS(5896), + [anon_sym_test] = ACTIONS(5896), + [anon_sym_hide] = ACTIONS(5896), + [anon_sym_func] = ACTIONS(5896), + [anon_sym_BANG] = ACTIONS(5896), + [anon_sym_EQ] = ACTIONS(5896), + [anon_sym_struct] = ACTIONS(5896), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_RPAREN] = ACTIONS(5894), + [anon_sym_LBRACE] = ACTIONS(5894), + [anon_sym_COMMA] = ACTIONS(5894), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), + [anon_sym_DOLLAR] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5894), + [anon_sym_QMARK] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5894), + [anon_sym_void] = ACTIONS(5896), + [anon_sym_noreturn] = ACTIONS(5896), + [anon_sym_type] = ACTIONS(5896), + [anon_sym_anyopaque] = ACTIONS(5896), + [anon_sym_bool] = ACTIONS(5896), + [anon_sym_int] = ACTIONS(5896), + [anon_sym_uint] = ACTIONS(5896), + [anon_sym_float] = ACTIONS(5896), + [anon_sym_range] = ACTIONS(5896), + [anon_sym_i8] = ACTIONS(5896), + [anon_sym_i16] = ACTIONS(5896), + [anon_sym_i32] = ACTIONS(5896), + [anon_sym_i64] = ACTIONS(5896), + [anon_sym_u8] = ACTIONS(5896), + [anon_sym_u16] = ACTIONS(5896), + [anon_sym_u32] = ACTIONS(5896), + [anon_sym_u64] = ACTIONS(5896), + [anon_sym_isize] = ACTIONS(5896), + [anon_sym_usize] = ACTIONS(5896), + [anon_sym_f32] = ACTIONS(5896), + [anon_sym_f64] = ACTIONS(5896), + [anon_sym_c_char] = ACTIONS(5896), + [anon_sym_c_schar] = ACTIONS(5896), + [anon_sym_c_uchar] = ACTIONS(5896), + [anon_sym_c_short] = ACTIONS(5896), + [anon_sym_c_ushort] = ACTIONS(5896), + [anon_sym_c_int] = ACTIONS(5896), + [anon_sym_c_uint] = ACTIONS(5896), + [anon_sym_c_long] = ACTIONS(5896), + [anon_sym_c_ulong] = ACTIONS(5896), + [anon_sym_c_longlong] = ACTIONS(5896), + [anon_sym_c_ulonglong] = ACTIONS(5896), + [anon_sym_c_float] = ACTIONS(5896), + [anon_sym_c_double] = ACTIONS(5896), + [anon_sym_c_longdouble] = ACTIONS(5896), + [anon_sym_return] = ACTIONS(5896), + [anon_sym_yield] = ACTIONS(5896), + [anon_sym_COLON] = ACTIONS(5896), + [anon_sym_break] = ACTIONS(5896), + [anon_sym_continue] = ACTIONS(5896), + [anon_sym_defer] = ACTIONS(5896), + [anon_sym_errdefer] = ACTIONS(5896), + [anon_sym_if] = ACTIONS(5896), + [anon_sym_else] = ACTIONS(5896), + [anon_sym_while] = ACTIONS(5896), + [anon_sym_expand] = ACTIONS(5896), + [anon_sym_for] = ACTIONS(5896), + [anon_sym_match] = ACTIONS(5896), + [anon_sym_DOT_DOT] = ACTIONS(5896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5894), + [anon_sym_orelse] = ACTIONS(5896), + [anon_sym_or] = ACTIONS(5896), + [anon_sym_and] = ACTIONS(5896), + [anon_sym_EQ_EQ] = ACTIONS(5894), + [anon_sym_BANG_EQ] = ACTIONS(5894), + [anon_sym_LT] = ACTIONS(5896), + [anon_sym_LT_EQ] = ACTIONS(5894), + [anon_sym_GT] = ACTIONS(5896), + [anon_sym_GT_EQ] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(5894), + [anon_sym_xor] = ACTIONS(5896), + [anon_sym_LT_LT] = ACTIONS(5896), + [anon_sym_GT_GT] = ACTIONS(5894), + [anon_sym_LT_LT_PIPE] = ACTIONS(5894), + [anon_sym_PLUS] = ACTIONS(5894), + [anon_sym_SLASH] = ACTIONS(5894), + [anon_sym_catch] = ACTIONS(5896), + [anon_sym_TILDE] = ACTIONS(5894), + [anon_sym_try] = ACTIONS(5896), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_true] = ACTIONS(5896), + [anon_sym_false] = ACTIONS(5896), + [anon_sym_null] = ACTIONS(5896), + [anon_sym_unreachable] = ACTIONS(5896), + [anon_sym_undefined] = ACTIONS(5896), + [sym_sink] = ACTIONS(5896), + [sym_integer] = ACTIONS(5896), + [sym_float] = ACTIONS(5894), + [anon_sym_DQUOTE] = ACTIONS(5894), + [sym_multiline_string] = ACTIONS(5894), + [sym_character] = ACTIONS(5894), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5894), + }, + [STATE(3890)] = { + [ts_builtin_sym_end] = ACTIONS(5850), + [sym_identifier] = ACTIONS(5852), + [anon_sym_COLON_COLON] = ACTIONS(5850), + [anon_sym_import] = ACTIONS(5852), + [anon_sym_test] = ACTIONS(5852), + [anon_sym_hide] = ACTIONS(5852), + [anon_sym_func] = ACTIONS(5852), + [anon_sym_BANG] = ACTIONS(5852), + [anon_sym_EQ] = ACTIONS(5852), + [anon_sym_struct] = ACTIONS(5852), + [anon_sym_LPAREN] = ACTIONS(5850), + [anon_sym_RPAREN] = ACTIONS(5850), + [anon_sym_LBRACE] = ACTIONS(5850), + [anon_sym_COMMA] = ACTIONS(5850), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5850), + [anon_sym_DOLLAR] = ACTIONS(5850), + [anon_sym_PIPE] = ACTIONS(5850), + [anon_sym_QMARK] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5850), + [anon_sym_LBRACK] = ACTIONS(5850), + [anon_sym_void] = ACTIONS(5852), + [anon_sym_noreturn] = ACTIONS(5852), + [anon_sym_type] = ACTIONS(5852), + [anon_sym_anyopaque] = ACTIONS(5852), + [anon_sym_bool] = ACTIONS(5852), + [anon_sym_int] = ACTIONS(5852), + [anon_sym_uint] = ACTIONS(5852), + [anon_sym_float] = ACTIONS(5852), + [anon_sym_range] = ACTIONS(5852), + [anon_sym_i8] = ACTIONS(5852), + [anon_sym_i16] = ACTIONS(5852), + [anon_sym_i32] = ACTIONS(5852), + [anon_sym_i64] = ACTIONS(5852), + [anon_sym_u8] = ACTIONS(5852), + [anon_sym_u16] = ACTIONS(5852), + [anon_sym_u32] = ACTIONS(5852), + [anon_sym_u64] = ACTIONS(5852), + [anon_sym_isize] = ACTIONS(5852), + [anon_sym_usize] = ACTIONS(5852), + [anon_sym_f32] = ACTIONS(5852), + [anon_sym_f64] = ACTIONS(5852), + [anon_sym_c_char] = ACTIONS(5852), + [anon_sym_c_schar] = ACTIONS(5852), + [anon_sym_c_uchar] = ACTIONS(5852), + [anon_sym_c_short] = ACTIONS(5852), + [anon_sym_c_ushort] = ACTIONS(5852), + [anon_sym_c_int] = ACTIONS(5852), + [anon_sym_c_uint] = ACTIONS(5852), + [anon_sym_c_long] = ACTIONS(5852), + [anon_sym_c_ulong] = ACTIONS(5852), + [anon_sym_c_longlong] = ACTIONS(5852), + [anon_sym_c_ulonglong] = ACTIONS(5852), + [anon_sym_c_float] = ACTIONS(5852), + [anon_sym_c_double] = ACTIONS(5852), + [anon_sym_c_longdouble] = ACTIONS(5852), + [anon_sym_return] = ACTIONS(5852), + [anon_sym_yield] = ACTIONS(5852), + [anon_sym_COLON] = ACTIONS(5852), + [anon_sym_break] = ACTIONS(5852), + [anon_sym_continue] = ACTIONS(5852), + [anon_sym_defer] = ACTIONS(5852), + [anon_sym_errdefer] = ACTIONS(5852), + [anon_sym_if] = ACTIONS(5852), + [anon_sym_else] = ACTIONS(5852), + [anon_sym_while] = ACTIONS(5852), + [anon_sym_expand] = ACTIONS(5852), + [anon_sym_for] = ACTIONS(5852), + [anon_sym_match] = ACTIONS(5852), + [anon_sym_DOT_DOT] = ACTIONS(5852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5850), + [anon_sym_orelse] = ACTIONS(5852), + [anon_sym_or] = ACTIONS(5852), + [anon_sym_and] = ACTIONS(5852), + [anon_sym_EQ_EQ] = ACTIONS(5850), + [anon_sym_BANG_EQ] = ACTIONS(5850), + [anon_sym_LT] = ACTIONS(5852), + [anon_sym_LT_EQ] = ACTIONS(5850), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_GT_EQ] = ACTIONS(5850), + [anon_sym_AMP] = ACTIONS(5850), + [anon_sym_xor] = ACTIONS(5852), + [anon_sym_LT_LT] = ACTIONS(5852), + [anon_sym_GT_GT] = ACTIONS(5850), + [anon_sym_LT_LT_PIPE] = ACTIONS(5850), + [anon_sym_PLUS] = ACTIONS(5850), + [anon_sym_SLASH] = ACTIONS(5850), + [anon_sym_catch] = ACTIONS(5852), + [anon_sym_TILDE] = ACTIONS(5850), + [anon_sym_try] = ACTIONS(5852), + [anon_sym_DOT] = ACTIONS(5852), + [anon_sym_CARET] = ACTIONS(5850), + [anon_sym_true] = ACTIONS(5852), + [anon_sym_false] = ACTIONS(5852), + [anon_sym_null] = ACTIONS(5852), + [anon_sym_unreachable] = ACTIONS(5852), + [anon_sym_undefined] = ACTIONS(5852), + [sym_sink] = ACTIONS(5852), + [sym_integer] = ACTIONS(5852), + [sym_float] = ACTIONS(5850), + [anon_sym_DQUOTE] = ACTIONS(5850), + [sym_multiline_string] = ACTIONS(5850), + [sym_character] = ACTIONS(5850), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5850), + }, + [STATE(3891)] = { + [ts_builtin_sym_end] = ACTIONS(5898), + [sym_identifier] = ACTIONS(5900), + [anon_sym_COLON_COLON] = ACTIONS(5898), + [anon_sym_import] = ACTIONS(5900), + [anon_sym_test] = ACTIONS(5900), + [anon_sym_hide] = ACTIONS(5900), + [anon_sym_func] = ACTIONS(5900), + [anon_sym_BANG] = ACTIONS(5900), + [anon_sym_EQ] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_LPAREN] = ACTIONS(5898), + [anon_sym_RPAREN] = ACTIONS(5898), + [anon_sym_LBRACE] = ACTIONS(5898), + [anon_sym_COMMA] = ACTIONS(5898), + [anon_sym_RBRACE] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_DOLLAR] = ACTIONS(5898), + [anon_sym_PIPE] = ACTIONS(5898), + [anon_sym_QMARK] = ACTIONS(5898), + [anon_sym_STAR] = ACTIONS(5898), + [anon_sym_LBRACK] = ACTIONS(5898), + [anon_sym_void] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_type] = ACTIONS(5900), + [anon_sym_anyopaque] = ACTIONS(5900), + [anon_sym_bool] = ACTIONS(5900), + [anon_sym_int] = ACTIONS(5900), + [anon_sym_uint] = ACTIONS(5900), + [anon_sym_float] = ACTIONS(5900), + [anon_sym_range] = ACTIONS(5900), + [anon_sym_i8] = ACTIONS(5900), + [anon_sym_i16] = ACTIONS(5900), + [anon_sym_i32] = ACTIONS(5900), + [anon_sym_i64] = ACTIONS(5900), + [anon_sym_u8] = ACTIONS(5900), + [anon_sym_u16] = ACTIONS(5900), + [anon_sym_u32] = ACTIONS(5900), + [anon_sym_u64] = ACTIONS(5900), + [anon_sym_isize] = ACTIONS(5900), + [anon_sym_usize] = ACTIONS(5900), + [anon_sym_f32] = ACTIONS(5900), + [anon_sym_f64] = ACTIONS(5900), + [anon_sym_c_char] = ACTIONS(5900), + [anon_sym_c_schar] = ACTIONS(5900), + [anon_sym_c_uchar] = ACTIONS(5900), + [anon_sym_c_short] = ACTIONS(5900), + [anon_sym_c_ushort] = ACTIONS(5900), + [anon_sym_c_int] = ACTIONS(5900), + [anon_sym_c_uint] = ACTIONS(5900), + [anon_sym_c_long] = ACTIONS(5900), + [anon_sym_c_ulong] = ACTIONS(5900), + [anon_sym_c_longlong] = ACTIONS(5900), + [anon_sym_c_ulonglong] = ACTIONS(5900), + [anon_sym_c_float] = ACTIONS(5900), + [anon_sym_c_double] = ACTIONS(5900), + [anon_sym_c_longdouble] = ACTIONS(5900), + [anon_sym_return] = ACTIONS(5900), + [anon_sym_yield] = ACTIONS(5900), + [anon_sym_COLON] = ACTIONS(5900), + [anon_sym_break] = ACTIONS(5900), + [anon_sym_continue] = ACTIONS(5900), + [anon_sym_defer] = ACTIONS(5900), + [anon_sym_errdefer] = ACTIONS(5900), + [anon_sym_if] = ACTIONS(5900), + [anon_sym_else] = ACTIONS(5900), + [anon_sym_while] = ACTIONS(5900), + [anon_sym_expand] = ACTIONS(5900), + [anon_sym_for] = ACTIONS(5900), + [anon_sym_match] = ACTIONS(5900), + [anon_sym_DOT_DOT] = ACTIONS(5900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5898), + [anon_sym_orelse] = ACTIONS(5900), + [anon_sym_or] = ACTIONS(5900), + [anon_sym_and] = ACTIONS(5900), + [anon_sym_EQ_EQ] = ACTIONS(5898), + [anon_sym_BANG_EQ] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(5900), + [anon_sym_LT_EQ] = ACTIONS(5898), + [anon_sym_GT] = ACTIONS(5900), + [anon_sym_GT_EQ] = ACTIONS(5898), + [anon_sym_AMP] = ACTIONS(5898), + [anon_sym_xor] = ACTIONS(5900), + [anon_sym_LT_LT] = ACTIONS(5900), + [anon_sym_GT_GT] = ACTIONS(5898), + [anon_sym_LT_LT_PIPE] = ACTIONS(5898), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_catch] = ACTIONS(5900), + [anon_sym_TILDE] = ACTIONS(5898), + [anon_sym_try] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5900), + [anon_sym_CARET] = ACTIONS(5898), + [anon_sym_true] = ACTIONS(5900), + [anon_sym_false] = ACTIONS(5900), + [anon_sym_null] = ACTIONS(5900), + [anon_sym_unreachable] = ACTIONS(5900), + [anon_sym_undefined] = ACTIONS(5900), + [sym_sink] = ACTIONS(5900), + [sym_integer] = ACTIONS(5900), + [sym_float] = ACTIONS(5898), + [anon_sym_DQUOTE] = ACTIONS(5898), + [sym_multiline_string] = ACTIONS(5898), + [sym_character] = ACTIONS(5898), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5898), + }, + [STATE(3892)] = { + [ts_builtin_sym_end] = ACTIONS(5902), + [sym_identifier] = ACTIONS(5904), + [anon_sym_COLON_COLON] = ACTIONS(5902), + [anon_sym_import] = ACTIONS(5904), + [anon_sym_test] = ACTIONS(5904), + [anon_sym_hide] = ACTIONS(5904), + [anon_sym_func] = ACTIONS(5904), + [anon_sym_BANG] = ACTIONS(5904), + [anon_sym_EQ] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_LPAREN] = ACTIONS(5902), + [anon_sym_RPAREN] = ACTIONS(5902), + [anon_sym_LBRACE] = ACTIONS(5902), + [anon_sym_COMMA] = ACTIONS(5902), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_DASH] = ACTIONS(5902), + [anon_sym_DOLLAR] = ACTIONS(5902), + [anon_sym_PIPE] = ACTIONS(5902), + [anon_sym_QMARK] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5902), + [anon_sym_LBRACK] = ACTIONS(5902), + [anon_sym_void] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_type] = ACTIONS(5904), + [anon_sym_anyopaque] = ACTIONS(5904), + [anon_sym_bool] = ACTIONS(5904), + [anon_sym_int] = ACTIONS(5904), + [anon_sym_uint] = ACTIONS(5904), + [anon_sym_float] = ACTIONS(5904), + [anon_sym_range] = ACTIONS(5904), + [anon_sym_i8] = ACTIONS(5904), + [anon_sym_i16] = ACTIONS(5904), + [anon_sym_i32] = ACTIONS(5904), + [anon_sym_i64] = ACTIONS(5904), + [anon_sym_u8] = ACTIONS(5904), + [anon_sym_u16] = ACTIONS(5904), + [anon_sym_u32] = ACTIONS(5904), + [anon_sym_u64] = ACTIONS(5904), + [anon_sym_isize] = ACTIONS(5904), + [anon_sym_usize] = ACTIONS(5904), + [anon_sym_f32] = ACTIONS(5904), + [anon_sym_f64] = ACTIONS(5904), + [anon_sym_c_char] = ACTIONS(5904), + [anon_sym_c_schar] = ACTIONS(5904), + [anon_sym_c_uchar] = ACTIONS(5904), + [anon_sym_c_short] = ACTIONS(5904), + [anon_sym_c_ushort] = ACTIONS(5904), + [anon_sym_c_int] = ACTIONS(5904), + [anon_sym_c_uint] = ACTIONS(5904), + [anon_sym_c_long] = ACTIONS(5904), + [anon_sym_c_ulong] = ACTIONS(5904), + [anon_sym_c_longlong] = ACTIONS(5904), + [anon_sym_c_ulonglong] = ACTIONS(5904), + [anon_sym_c_float] = ACTIONS(5904), + [anon_sym_c_double] = ACTIONS(5904), + [anon_sym_c_longdouble] = ACTIONS(5904), + [anon_sym_return] = ACTIONS(5904), + [anon_sym_yield] = ACTIONS(5904), + [anon_sym_COLON] = ACTIONS(5904), + [anon_sym_break] = ACTIONS(5904), + [anon_sym_continue] = ACTIONS(5904), + [anon_sym_defer] = ACTIONS(5904), + [anon_sym_errdefer] = ACTIONS(5904), + [anon_sym_if] = ACTIONS(5904), + [anon_sym_else] = ACTIONS(5904), + [anon_sym_while] = ACTIONS(5904), + [anon_sym_expand] = ACTIONS(5904), + [anon_sym_for] = ACTIONS(5904), + [anon_sym_match] = ACTIONS(5904), + [anon_sym_DOT_DOT] = ACTIONS(5904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5902), + [anon_sym_orelse] = ACTIONS(5904), + [anon_sym_or] = ACTIONS(5904), + [anon_sym_and] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5902), + [anon_sym_BANG_EQ] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5904), + [anon_sym_LT_EQ] = ACTIONS(5902), + [anon_sym_GT] = ACTIONS(5904), + [anon_sym_GT_EQ] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5902), + [anon_sym_xor] = ACTIONS(5904), + [anon_sym_LT_LT] = ACTIONS(5904), + [anon_sym_GT_GT] = ACTIONS(5902), + [anon_sym_LT_LT_PIPE] = ACTIONS(5902), + [anon_sym_PLUS] = ACTIONS(5902), + [anon_sym_SLASH] = ACTIONS(5902), + [anon_sym_catch] = ACTIONS(5904), + [anon_sym_TILDE] = ACTIONS(5902), + [anon_sym_try] = ACTIONS(5904), + [anon_sym_DOT] = ACTIONS(5904), + [anon_sym_CARET] = ACTIONS(5902), + [anon_sym_true] = ACTIONS(5904), + [anon_sym_false] = ACTIONS(5904), + [anon_sym_null] = ACTIONS(5904), + [anon_sym_unreachable] = ACTIONS(5904), + [anon_sym_undefined] = ACTIONS(5904), + [sym_sink] = ACTIONS(5904), + [sym_integer] = ACTIONS(5904), + [sym_float] = ACTIONS(5902), + [anon_sym_DQUOTE] = ACTIONS(5902), + [sym_multiline_string] = ACTIONS(5902), + [sym_character] = ACTIONS(5902), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5902), + }, + [STATE(3893)] = { + [ts_builtin_sym_end] = ACTIONS(5838), + [sym_identifier] = ACTIONS(5840), + [anon_sym_COLON_COLON] = ACTIONS(5838), + [anon_sym_import] = ACTIONS(5840), + [anon_sym_test] = ACTIONS(5840), + [anon_sym_hide] = ACTIONS(5840), + [anon_sym_func] = ACTIONS(5840), + [anon_sym_BANG] = ACTIONS(5840), + [anon_sym_EQ] = ACTIONS(5840), + [anon_sym_struct] = ACTIONS(5840), + [anon_sym_LPAREN] = ACTIONS(5838), + [anon_sym_RPAREN] = ACTIONS(5838), + [anon_sym_LBRACE] = ACTIONS(5838), + [anon_sym_COMMA] = ACTIONS(5838), + [anon_sym_RBRACE] = ACTIONS(5838), + [anon_sym_DASH] = ACTIONS(5838), + [anon_sym_DOLLAR] = ACTIONS(5838), + [anon_sym_PIPE] = ACTIONS(5838), + [anon_sym_QMARK] = ACTIONS(5838), + [anon_sym_STAR] = ACTIONS(5838), + [anon_sym_LBRACK] = ACTIONS(5838), + [anon_sym_void] = ACTIONS(5840), + [anon_sym_noreturn] = ACTIONS(5840), + [anon_sym_type] = ACTIONS(5840), + [anon_sym_anyopaque] = ACTIONS(5840), + [anon_sym_bool] = ACTIONS(5840), + [anon_sym_int] = ACTIONS(5840), + [anon_sym_uint] = ACTIONS(5840), + [anon_sym_float] = ACTIONS(5840), + [anon_sym_range] = ACTIONS(5840), + [anon_sym_i8] = ACTIONS(5840), + [anon_sym_i16] = ACTIONS(5840), + [anon_sym_i32] = ACTIONS(5840), + [anon_sym_i64] = ACTIONS(5840), + [anon_sym_u8] = ACTIONS(5840), + [anon_sym_u16] = ACTIONS(5840), + [anon_sym_u32] = ACTIONS(5840), + [anon_sym_u64] = ACTIONS(5840), + [anon_sym_isize] = ACTIONS(5840), + [anon_sym_usize] = ACTIONS(5840), + [anon_sym_f32] = ACTIONS(5840), + [anon_sym_f64] = ACTIONS(5840), + [anon_sym_c_char] = ACTIONS(5840), + [anon_sym_c_schar] = ACTIONS(5840), + [anon_sym_c_uchar] = ACTIONS(5840), + [anon_sym_c_short] = ACTIONS(5840), + [anon_sym_c_ushort] = ACTIONS(5840), + [anon_sym_c_int] = ACTIONS(5840), + [anon_sym_c_uint] = ACTIONS(5840), + [anon_sym_c_long] = ACTIONS(5840), + [anon_sym_c_ulong] = ACTIONS(5840), + [anon_sym_c_longlong] = ACTIONS(5840), + [anon_sym_c_ulonglong] = ACTIONS(5840), + [anon_sym_c_float] = ACTIONS(5840), + [anon_sym_c_double] = ACTIONS(5840), + [anon_sym_c_longdouble] = ACTIONS(5840), + [anon_sym_return] = ACTIONS(5840), + [anon_sym_yield] = ACTIONS(5840), + [anon_sym_COLON] = ACTIONS(5840), + [anon_sym_break] = ACTIONS(5840), + [anon_sym_continue] = ACTIONS(5840), + [anon_sym_defer] = ACTIONS(5840), + [anon_sym_errdefer] = ACTIONS(5840), + [anon_sym_if] = ACTIONS(5840), + [anon_sym_else] = ACTIONS(5840), + [anon_sym_while] = ACTIONS(5840), + [anon_sym_expand] = ACTIONS(5840), + [anon_sym_for] = ACTIONS(5840), + [anon_sym_match] = ACTIONS(5840), + [anon_sym_DOT_DOT] = ACTIONS(5840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5838), + [anon_sym_orelse] = ACTIONS(5840), + [anon_sym_or] = ACTIONS(5840), + [anon_sym_and] = ACTIONS(5840), + [anon_sym_EQ_EQ] = ACTIONS(5838), + [anon_sym_BANG_EQ] = ACTIONS(5838), + [anon_sym_LT] = ACTIONS(5840), + [anon_sym_LT_EQ] = ACTIONS(5838), + [anon_sym_GT] = ACTIONS(5840), + [anon_sym_GT_EQ] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5838), + [anon_sym_xor] = ACTIONS(5840), + [anon_sym_LT_LT] = ACTIONS(5840), + [anon_sym_GT_GT] = ACTIONS(5838), + [anon_sym_LT_LT_PIPE] = ACTIONS(5838), + [anon_sym_PLUS] = ACTIONS(5838), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_catch] = ACTIONS(5840), + [anon_sym_TILDE] = ACTIONS(5838), + [anon_sym_try] = ACTIONS(5840), + [anon_sym_DOT] = ACTIONS(5840), + [anon_sym_CARET] = ACTIONS(5838), + [anon_sym_true] = ACTIONS(5840), + [anon_sym_false] = ACTIONS(5840), + [anon_sym_null] = ACTIONS(5840), + [anon_sym_unreachable] = ACTIONS(5840), + [anon_sym_undefined] = ACTIONS(5840), + [sym_sink] = ACTIONS(5840), + [sym_integer] = ACTIONS(5840), + [sym_float] = ACTIONS(5838), + [anon_sym_DQUOTE] = ACTIONS(5838), + [sym_multiline_string] = ACTIONS(5838), + [sym_character] = ACTIONS(5838), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5838), + }, + [STATE(3894)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [ts_builtin_sym_end] = ACTIONS(17), + [sym_identifier] = ACTIONS(6356), + [anon_sym_import] = ACTIONS(21), + [anon_sym_test] = ACTIONS(21), + [anon_sym_hide] = ACTIONS(21), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(3895)] = { + [ts_builtin_sym_end] = ACTIONS(5866), + [sym_identifier] = ACTIONS(5868), + [anon_sym_COLON_COLON] = ACTIONS(5866), + [anon_sym_import] = ACTIONS(5868), + [anon_sym_test] = ACTIONS(5868), + [anon_sym_hide] = ACTIONS(5868), + [anon_sym_func] = ACTIONS(5868), + [anon_sym_BANG] = ACTIONS(5868), + [anon_sym_EQ] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5868), + [anon_sym_LPAREN] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5866), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_QMARK] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_LBRACK] = ACTIONS(5866), + [anon_sym_void] = ACTIONS(5868), + [anon_sym_noreturn] = ACTIONS(5868), + [anon_sym_type] = ACTIONS(5868), + [anon_sym_anyopaque] = ACTIONS(5868), + [anon_sym_bool] = ACTIONS(5868), + [anon_sym_int] = ACTIONS(5868), + [anon_sym_uint] = ACTIONS(5868), + [anon_sym_float] = ACTIONS(5868), + [anon_sym_range] = ACTIONS(5868), + [anon_sym_i8] = ACTIONS(5868), + [anon_sym_i16] = ACTIONS(5868), + [anon_sym_i32] = ACTIONS(5868), + [anon_sym_i64] = ACTIONS(5868), + [anon_sym_u8] = ACTIONS(5868), + [anon_sym_u16] = ACTIONS(5868), + [anon_sym_u32] = ACTIONS(5868), + [anon_sym_u64] = ACTIONS(5868), + [anon_sym_isize] = ACTIONS(5868), + [anon_sym_usize] = ACTIONS(5868), + [anon_sym_f32] = ACTIONS(5868), + [anon_sym_f64] = ACTIONS(5868), + [anon_sym_c_char] = ACTIONS(5868), + [anon_sym_c_schar] = ACTIONS(5868), + [anon_sym_c_uchar] = ACTIONS(5868), + [anon_sym_c_short] = ACTIONS(5868), + [anon_sym_c_ushort] = ACTIONS(5868), + [anon_sym_c_int] = ACTIONS(5868), + [anon_sym_c_uint] = ACTIONS(5868), + [anon_sym_c_long] = ACTIONS(5868), + [anon_sym_c_ulong] = ACTIONS(5868), + [anon_sym_c_longlong] = ACTIONS(5868), + [anon_sym_c_ulonglong] = ACTIONS(5868), + [anon_sym_c_float] = ACTIONS(5868), + [anon_sym_c_double] = ACTIONS(5868), + [anon_sym_c_longdouble] = ACTIONS(5868), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_COLON] = ACTIONS(5868), + [anon_sym_break] = ACTIONS(5868), + [anon_sym_continue] = ACTIONS(5868), + [anon_sym_defer] = ACTIONS(5868), + [anon_sym_errdefer] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_else] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_expand] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_DOT_DOT] = ACTIONS(5868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5866), + [anon_sym_orelse] = ACTIONS(5868), + [anon_sym_or] = ACTIONS(5868), + [anon_sym_and] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_EQ] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5866), + [anon_sym_xor] = ACTIONS(5868), + [anon_sym_LT_LT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5866), + [anon_sym_LT_LT_PIPE] = ACTIONS(5866), + [anon_sym_PLUS] = ACTIONS(5866), + [anon_sym_SLASH] = ACTIONS(5866), + [anon_sym_catch] = ACTIONS(5868), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_DOT] = ACTIONS(5868), + [anon_sym_CARET] = ACTIONS(5866), + [anon_sym_true] = ACTIONS(5868), + [anon_sym_false] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_unreachable] = ACTIONS(5868), + [anon_sym_undefined] = ACTIONS(5868), + [sym_sink] = ACTIONS(5868), + [sym_integer] = ACTIONS(5868), + [sym_float] = ACTIONS(5866), + [anon_sym_DQUOTE] = ACTIONS(5866), + [sym_multiline_string] = ACTIONS(5866), + [sym_character] = ACTIONS(5866), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5866), + }, + [STATE(3896)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [ts_builtin_sym_end] = ACTIONS(17), + [sym_identifier] = ACTIONS(6356), + [anon_sym_import] = ACTIONS(21), + [anon_sym_test] = ACTIONS(21), + [anon_sym_hide] = ACTIONS(21), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(3897)] = { + [aux_sym_type_repeat1] = STATE(3897), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_import] = ACTIONS(2903), + [anon_sym_test] = ACTIONS(2903), + [anon_sym_hide] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(6825), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_COLON] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_errdefer] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_expand] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2903), + [anon_sym_unreachable] = ACTIONS(2903), + [anon_sym_undefined] = ACTIONS(2903), + [sym_sink] = ACTIONS(2903), + [sym_integer] = ACTIONS(2903), + [sym_float] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_multiline_string] = ACTIONS(2901), + [sym_character] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(3898)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(3899)] = { + [sym_argument_list] = STATE(4430), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_test] = ACTIONS(2647), + [anon_sym_hide] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_errdefer] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_expand] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2647), + [anon_sym_unreachable] = ACTIONS(2647), + [anon_sym_undefined] = ACTIONS(2647), + [sym_sink] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_multiline_string] = ACTIONS(2645), + [sym_character] = ACTIONS(2645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(3900)] = { + [aux_sym_type_repeat1] = STATE(3897), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_import] = ACTIONS(3058), + [anon_sym_test] = ACTIONS(3058), + [anon_sym_hide] = ACTIONS(3058), + [anon_sym_func] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_void] = ACTIONS(3058), + [anon_sym_noreturn] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_anyopaque] = ACTIONS(3058), + [anon_sym_bool] = ACTIONS(3058), + [anon_sym_int] = ACTIONS(3058), + [anon_sym_uint] = ACTIONS(3058), + [anon_sym_float] = ACTIONS(3058), + [anon_sym_range] = ACTIONS(3058), + [anon_sym_i8] = ACTIONS(3058), + [anon_sym_i16] = ACTIONS(3058), + [anon_sym_i32] = ACTIONS(3058), + [anon_sym_i64] = ACTIONS(3058), + [anon_sym_u8] = ACTIONS(3058), + [anon_sym_u16] = ACTIONS(3058), + [anon_sym_u32] = ACTIONS(3058), + [anon_sym_u64] = ACTIONS(3058), + [anon_sym_isize] = ACTIONS(3058), + [anon_sym_usize] = ACTIONS(3058), + [anon_sym_f32] = ACTIONS(3058), + [anon_sym_f64] = ACTIONS(3058), + [anon_sym_c_char] = ACTIONS(3058), + [anon_sym_c_schar] = ACTIONS(3058), + [anon_sym_c_uchar] = ACTIONS(3058), + [anon_sym_c_short] = ACTIONS(3058), + [anon_sym_c_ushort] = ACTIONS(3058), + [anon_sym_c_int] = ACTIONS(3058), + [anon_sym_c_uint] = ACTIONS(3058), + [anon_sym_c_long] = ACTIONS(3058), + [anon_sym_c_ulong] = ACTIONS(3058), + [anon_sym_c_longlong] = ACTIONS(3058), + [anon_sym_c_ulonglong] = ACTIONS(3058), + [anon_sym_c_float] = ACTIONS(3058), + [anon_sym_c_double] = ACTIONS(3058), + [anon_sym_c_longdouble] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_errdefer] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_expand] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3056), + [anon_sym_orelse] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_and] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_LT_LT_PIPE] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_unreachable] = ACTIONS(3058), + [anon_sym_undefined] = ACTIONS(3058), + [sym_sink] = ACTIONS(3058), + [sym_integer] = ACTIONS(3058), + [sym_float] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3056), + [sym_multiline_string] = ACTIONS(3056), + [sym_character] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3056), + }, + [STATE(3901)] = { + [aux_sym_type_repeat1] = STATE(3900), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3026), + [anon_sym_import] = ACTIONS(3026), + [anon_sym_test] = ACTIONS(3026), + [anon_sym_hide] = ACTIONS(3026), + [anon_sym_func] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_void] = ACTIONS(3026), + [anon_sym_noreturn] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_anyopaque] = ACTIONS(3026), + [anon_sym_bool] = ACTIONS(3026), + [anon_sym_int] = ACTIONS(3026), + [anon_sym_uint] = ACTIONS(3026), + [anon_sym_float] = ACTIONS(3026), + [anon_sym_range] = ACTIONS(3026), + [anon_sym_i8] = ACTIONS(3026), + [anon_sym_i16] = ACTIONS(3026), + [anon_sym_i32] = ACTIONS(3026), + [anon_sym_i64] = ACTIONS(3026), + [anon_sym_u8] = ACTIONS(3026), + [anon_sym_u16] = ACTIONS(3026), + [anon_sym_u32] = ACTIONS(3026), + [anon_sym_u64] = ACTIONS(3026), + [anon_sym_isize] = ACTIONS(3026), + [anon_sym_usize] = ACTIONS(3026), + [anon_sym_f32] = ACTIONS(3026), + [anon_sym_f64] = ACTIONS(3026), + [anon_sym_c_char] = ACTIONS(3026), + [anon_sym_c_schar] = ACTIONS(3026), + [anon_sym_c_uchar] = ACTIONS(3026), + [anon_sym_c_short] = ACTIONS(3026), + [anon_sym_c_ushort] = ACTIONS(3026), + [anon_sym_c_int] = ACTIONS(3026), + [anon_sym_c_uint] = ACTIONS(3026), + [anon_sym_c_long] = ACTIONS(3026), + [anon_sym_c_ulong] = ACTIONS(3026), + [anon_sym_c_longlong] = ACTIONS(3026), + [anon_sym_c_ulonglong] = ACTIONS(3026), + [anon_sym_c_float] = ACTIONS(3026), + [anon_sym_c_double] = ACTIONS(3026), + [anon_sym_c_longdouble] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3026), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_defer] = ACTIONS(3026), + [anon_sym_errdefer] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_expand] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(3026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3024), + [anon_sym_orelse] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3026), + [anon_sym_and] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_xor] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_LT_LT_PIPE] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_catch] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3026), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3026), + [anon_sym_unreachable] = ACTIONS(3026), + [anon_sym_undefined] = ACTIONS(3026), + [sym_sink] = ACTIONS(3026), + [sym_integer] = ACTIONS(3026), + [sym_float] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [sym_multiline_string] = ACTIONS(3024), + [sym_character] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3024), + }, + [STATE(3902)] = { + [sym_argument_list] = STATE(4430), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_test] = ACTIONS(2672), + [anon_sym_hide] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2670), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(3903)] = { + [sym_argument_list] = STATE(4475), + [ts_builtin_sym_end] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_test] = ACTIONS(2966), + [anon_sym_hide] = ACTIONS(2966), + [anon_sym_func] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_anyopaque] = ACTIONS(2966), + [anon_sym_bool] = ACTIONS(2966), + [anon_sym_int] = ACTIONS(2966), + [anon_sym_uint] = ACTIONS(2966), + [anon_sym_float] = ACTIONS(2966), + [anon_sym_range] = ACTIONS(2966), + [anon_sym_i8] = ACTIONS(2966), + [anon_sym_i16] = ACTIONS(2966), + [anon_sym_i32] = ACTIONS(2966), + [anon_sym_i64] = ACTIONS(2966), + [anon_sym_u8] = ACTIONS(2966), + [anon_sym_u16] = ACTIONS(2966), + [anon_sym_u32] = ACTIONS(2966), + [anon_sym_u64] = ACTIONS(2966), + [anon_sym_isize] = ACTIONS(2966), + [anon_sym_usize] = ACTIONS(2966), + [anon_sym_f32] = ACTIONS(2966), + [anon_sym_f64] = ACTIONS(2966), + [anon_sym_c_char] = ACTIONS(2966), + [anon_sym_c_schar] = ACTIONS(2966), + [anon_sym_c_uchar] = ACTIONS(2966), + [anon_sym_c_short] = ACTIONS(2966), + [anon_sym_c_ushort] = ACTIONS(2966), + [anon_sym_c_int] = ACTIONS(2966), + [anon_sym_c_uint] = ACTIONS(2966), + [anon_sym_c_long] = ACTIONS(2966), + [anon_sym_c_ulong] = ACTIONS(2966), + [anon_sym_c_longlong] = ACTIONS(2966), + [anon_sym_c_ulonglong] = ACTIONS(2966), + [anon_sym_c_float] = ACTIONS(2966), + [anon_sym_c_double] = ACTIONS(2966), + [anon_sym_c_longdouble] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_defer] = ACTIONS(2966), + [anon_sym_errdefer] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_expand] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2964), + [anon_sym_orelse] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_and] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_xor] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2964), + [anon_sym_LT_LT_PIPE] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_catch] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2966), + [anon_sym_false] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_unreachable] = ACTIONS(2966), + [anon_sym_undefined] = ACTIONS(2966), + [sym_sink] = ACTIONS(2966), + [sym_integer] = ACTIONS(2966), + [sym_float] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_multiline_string] = ACTIONS(2964), + [sym_character] = ACTIONS(2964), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2964), + }, + [STATE(3904)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(3905)] = { + [sym_argument_list] = STATE(4430), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_test] = ACTIONS(2666), + [anon_sym_hide] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_defer] = ACTIONS(2666), + [anon_sym_errdefer] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_expand] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_unreachable] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [sym_sink] = ACTIONS(2666), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym_multiline_string] = ACTIONS(2664), + [sym_character] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(3906)] = { + [sym_argument_list] = STATE(4430), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_test] = ACTIONS(2704), + [anon_sym_hide] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(2702), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(3907)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4597), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6838), + }, + [STATE(3908)] = { + [ts_builtin_sym_end] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4714), + [anon_sym_import] = ACTIONS(4714), + [anon_sym_test] = ACTIONS(4714), + [anon_sym_hide] = ACTIONS(4714), + [anon_sym_func] = ACTIONS(4714), + [anon_sym_BANG] = ACTIONS(4714), + [anon_sym_struct] = ACTIONS(4714), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DOLLAR] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_QMARK] = ACTIONS(4712), + [anon_sym_STAR] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_void] = ACTIONS(4714), + [anon_sym_noreturn] = ACTIONS(4714), + [anon_sym_type] = ACTIONS(4714), + [anon_sym_anyopaque] = ACTIONS(4714), + [anon_sym_bool] = ACTIONS(4714), + [anon_sym_int] = ACTIONS(4714), + [anon_sym_uint] = ACTIONS(4714), + [anon_sym_float] = ACTIONS(4714), + [anon_sym_range] = ACTIONS(4714), + [anon_sym_i8] = ACTIONS(4714), + [anon_sym_i16] = ACTIONS(4714), + [anon_sym_i32] = ACTIONS(4714), + [anon_sym_i64] = ACTIONS(4714), + [anon_sym_u8] = ACTIONS(4714), + [anon_sym_u16] = ACTIONS(4714), + [anon_sym_u32] = ACTIONS(4714), + [anon_sym_u64] = ACTIONS(4714), + [anon_sym_isize] = ACTIONS(4714), + [anon_sym_usize] = ACTIONS(4714), + [anon_sym_f32] = ACTIONS(4714), + [anon_sym_f64] = ACTIONS(4714), + [anon_sym_c_char] = ACTIONS(4714), + [anon_sym_c_schar] = ACTIONS(4714), + [anon_sym_c_uchar] = ACTIONS(4714), + [anon_sym_c_short] = ACTIONS(4714), + [anon_sym_c_ushort] = ACTIONS(4714), + [anon_sym_c_int] = ACTIONS(4714), + [anon_sym_c_uint] = ACTIONS(4714), + [anon_sym_c_long] = ACTIONS(4714), + [anon_sym_c_ulong] = ACTIONS(4714), + [anon_sym_c_longlong] = ACTIONS(4714), + [anon_sym_c_ulonglong] = ACTIONS(4714), + [anon_sym_c_float] = ACTIONS(4714), + [anon_sym_c_double] = ACTIONS(4714), + [anon_sym_c_longdouble] = ACTIONS(4714), + [anon_sym_return] = ACTIONS(4714), + [anon_sym_yield] = ACTIONS(4714), + [anon_sym_COLON] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4714), + [anon_sym_continue] = ACTIONS(4714), + [anon_sym_defer] = ACTIONS(4714), + [anon_sym_errdefer] = ACTIONS(4714), + [anon_sym_if] = ACTIONS(4714), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_while] = ACTIONS(4714), + [anon_sym_expand] = ACTIONS(4714), + [anon_sym_for] = ACTIONS(4714), + [anon_sym_match] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4712), + [anon_sym_orelse] = ACTIONS(4714), + [anon_sym_or] = ACTIONS(4714), + [anon_sym_and] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_xor] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4714), + [anon_sym_GT_GT] = ACTIONS(4712), + [anon_sym_LT_LT_PIPE] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_SLASH] = ACTIONS(4712), + [anon_sym_catch] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4712), + [anon_sym_try] = ACTIONS(4714), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_CARET] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4714), + [anon_sym_false] = ACTIONS(4714), + [anon_sym_null] = ACTIONS(4714), + [anon_sym_unreachable] = ACTIONS(4714), + [anon_sym_undefined] = ACTIONS(4714), + [sym_sink] = ACTIONS(4714), + [sym_integer] = ACTIONS(4714), + [sym_float] = ACTIONS(4712), + [anon_sym_DQUOTE] = ACTIONS(4712), + [sym_multiline_string] = ACTIONS(4712), + [sym_character] = ACTIONS(4712), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4712), + }, + [STATE(3909)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9696), + [sym_labeled_block] = STATE(9696), + [sym_if_statement] = STATE(9696), + [sym_while_statement] = STATE(9696), + [sym_for_statement] = STATE(9696), + [sym_match_statement] = STATE(9696), + [sym__value] = STATE(9696), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3985), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6842), + }, + [STATE(3910)] = { + [ts_builtin_sym_end] = ACTIONS(4716), + [sym_identifier] = ACTIONS(4718), + [anon_sym_import] = ACTIONS(4718), + [anon_sym_test] = ACTIONS(4718), + [anon_sym_hide] = ACTIONS(4718), + [anon_sym_func] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_struct] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_DOLLAR] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_QMARK] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_void] = ACTIONS(4718), + [anon_sym_noreturn] = ACTIONS(4718), + [anon_sym_type] = ACTIONS(4718), + [anon_sym_anyopaque] = ACTIONS(4718), + [anon_sym_bool] = ACTIONS(4718), + [anon_sym_int] = ACTIONS(4718), + [anon_sym_uint] = ACTIONS(4718), + [anon_sym_float] = ACTIONS(4718), + [anon_sym_range] = ACTIONS(4718), + [anon_sym_i8] = ACTIONS(4718), + [anon_sym_i16] = ACTIONS(4718), + [anon_sym_i32] = ACTIONS(4718), + [anon_sym_i64] = ACTIONS(4718), + [anon_sym_u8] = ACTIONS(4718), + [anon_sym_u16] = ACTIONS(4718), + [anon_sym_u32] = ACTIONS(4718), + [anon_sym_u64] = ACTIONS(4718), + [anon_sym_isize] = ACTIONS(4718), + [anon_sym_usize] = ACTIONS(4718), + [anon_sym_f32] = ACTIONS(4718), + [anon_sym_f64] = ACTIONS(4718), + [anon_sym_c_char] = ACTIONS(4718), + [anon_sym_c_schar] = ACTIONS(4718), + [anon_sym_c_uchar] = ACTIONS(4718), + [anon_sym_c_short] = ACTIONS(4718), + [anon_sym_c_ushort] = ACTIONS(4718), + [anon_sym_c_int] = ACTIONS(4718), + [anon_sym_c_uint] = ACTIONS(4718), + [anon_sym_c_long] = ACTIONS(4718), + [anon_sym_c_ulong] = ACTIONS(4718), + [anon_sym_c_longlong] = ACTIONS(4718), + [anon_sym_c_ulonglong] = ACTIONS(4718), + [anon_sym_c_float] = ACTIONS(4718), + [anon_sym_c_double] = ACTIONS(4718), + [anon_sym_c_longdouble] = ACTIONS(4718), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_yield] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4716), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_defer] = ACTIONS(4718), + [anon_sym_errdefer] = ACTIONS(4718), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_while] = ACTIONS(4718), + [anon_sym_expand] = ACTIONS(4718), + [anon_sym_for] = ACTIONS(4718), + [anon_sym_match] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4716), + [anon_sym_orelse] = ACTIONS(4718), + [anon_sym_or] = ACTIONS(4718), + [anon_sym_and] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_AMP] = ACTIONS(4716), + [anon_sym_xor] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4718), + [anon_sym_GT_GT] = ACTIONS(4716), + [anon_sym_LT_LT_PIPE] = ACTIONS(4716), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_SLASH] = ACTIONS(4716), + [anon_sym_catch] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_CARET] = ACTIONS(4716), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(4718), + [anon_sym_unreachable] = ACTIONS(4718), + [anon_sym_undefined] = ACTIONS(4718), + [sym_sink] = ACTIONS(4718), + [sym_integer] = ACTIONS(4718), + [sym_float] = ACTIONS(4716), + [anon_sym_DQUOTE] = ACTIONS(4716), + [sym_multiline_string] = ACTIONS(4716), + [sym_character] = ACTIONS(4716), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4716), + }, + [STATE(3911)] = { + [ts_builtin_sym_end] = ACTIONS(5730), + [sym_identifier] = ACTIONS(5732), + [anon_sym_import] = ACTIONS(5732), + [anon_sym_test] = ACTIONS(5732), + [anon_sym_hide] = ACTIONS(5732), + [anon_sym_func] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5732), + [anon_sym_struct] = ACTIONS(5732), + [anon_sym_LPAREN] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5730), + [anon_sym_DASH] = ACTIONS(5730), + [anon_sym_DOLLAR] = ACTIONS(5730), + [anon_sym_PIPE] = ACTIONS(5730), + [anon_sym_QMARK] = ACTIONS(5730), + [anon_sym_STAR] = ACTIONS(5730), + [anon_sym_LBRACK] = ACTIONS(5730), + [anon_sym_void] = ACTIONS(5732), + [anon_sym_noreturn] = ACTIONS(5732), + [anon_sym_type] = ACTIONS(5732), + [anon_sym_anyopaque] = ACTIONS(5732), + [anon_sym_bool] = ACTIONS(5732), + [anon_sym_int] = ACTIONS(5732), + [anon_sym_uint] = ACTIONS(5732), + [anon_sym_float] = ACTIONS(5732), + [anon_sym_range] = ACTIONS(5732), + [anon_sym_i8] = ACTIONS(5732), + [anon_sym_i16] = ACTIONS(5732), + [anon_sym_i32] = ACTIONS(5732), + [anon_sym_i64] = ACTIONS(5732), + [anon_sym_u8] = ACTIONS(5732), + [anon_sym_u16] = ACTIONS(5732), + [anon_sym_u32] = ACTIONS(5732), + [anon_sym_u64] = ACTIONS(5732), + [anon_sym_isize] = ACTIONS(5732), + [anon_sym_usize] = ACTIONS(5732), + [anon_sym_f32] = ACTIONS(5732), + [anon_sym_f64] = ACTIONS(5732), + [anon_sym_c_char] = ACTIONS(5732), + [anon_sym_c_schar] = ACTIONS(5732), + [anon_sym_c_uchar] = ACTIONS(5732), + [anon_sym_c_short] = ACTIONS(5732), + [anon_sym_c_ushort] = ACTIONS(5732), + [anon_sym_c_int] = ACTIONS(5732), + [anon_sym_c_uint] = ACTIONS(5732), + [anon_sym_c_long] = ACTIONS(5732), + [anon_sym_c_ulong] = ACTIONS(5732), + [anon_sym_c_longlong] = ACTIONS(5732), + [anon_sym_c_ulonglong] = ACTIONS(5732), + [anon_sym_c_float] = ACTIONS(5732), + [anon_sym_c_double] = ACTIONS(5732), + [anon_sym_c_longdouble] = ACTIONS(5732), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_yield] = ACTIONS(5732), + [anon_sym_COLON] = ACTIONS(5730), + [anon_sym_break] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [anon_sym_defer] = ACTIONS(5732), + [anon_sym_errdefer] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [anon_sym_else] = ACTIONS(5732), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_expand] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [anon_sym_match] = ACTIONS(5732), + [anon_sym_DOT_DOT] = ACTIONS(5732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5730), + [anon_sym_orelse] = ACTIONS(5732), + [anon_sym_or] = ACTIONS(5732), + [anon_sym_and] = ACTIONS(5732), + [anon_sym_EQ_EQ] = ACTIONS(5730), + [anon_sym_BANG_EQ] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(5732), + [anon_sym_LT_EQ] = ACTIONS(5730), + [anon_sym_GT] = ACTIONS(5732), + [anon_sym_GT_EQ] = ACTIONS(5730), + [anon_sym_AMP] = ACTIONS(5730), + [anon_sym_xor] = ACTIONS(5732), + [anon_sym_LT_LT] = ACTIONS(5732), + [anon_sym_GT_GT] = ACTIONS(5730), + [anon_sym_LT_LT_PIPE] = ACTIONS(5730), + [anon_sym_PLUS] = ACTIONS(5730), + [anon_sym_SLASH] = ACTIONS(5730), + [anon_sym_catch] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5730), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_DOT] = ACTIONS(5732), + [anon_sym_CARET] = ACTIONS(5730), + [anon_sym_true] = ACTIONS(5732), + [anon_sym_false] = ACTIONS(5732), + [anon_sym_null] = ACTIONS(5732), + [anon_sym_unreachable] = ACTIONS(5732), + [anon_sym_undefined] = ACTIONS(5732), + [sym_sink] = ACTIONS(5732), + [sym_integer] = ACTIONS(5732), + [sym_float] = ACTIONS(5730), + [anon_sym_DQUOTE] = ACTIONS(5730), + [sym_multiline_string] = ACTIONS(5730), + [sym_character] = ACTIONS(5730), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5730), + }, + [STATE(3912)] = { + [ts_builtin_sym_end] = ACTIONS(4440), + [sym_identifier] = ACTIONS(4442), + [anon_sym_import] = ACTIONS(4442), + [anon_sym_test] = ACTIONS(4442), + [anon_sym_hide] = ACTIONS(4442), + [anon_sym_func] = ACTIONS(4442), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4440), + [anon_sym_DOLLAR] = ACTIONS(4440), + [anon_sym_PIPE] = ACTIONS(4440), + [anon_sym_QMARK] = ACTIONS(4440), + [anon_sym_STAR] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_void] = ACTIONS(4442), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_anyopaque] = ACTIONS(4442), + [anon_sym_bool] = ACTIONS(4442), + [anon_sym_int] = ACTIONS(4442), + [anon_sym_uint] = ACTIONS(4442), + [anon_sym_float] = ACTIONS(4442), + [anon_sym_range] = ACTIONS(4442), + [anon_sym_i8] = ACTIONS(4442), + [anon_sym_i16] = ACTIONS(4442), + [anon_sym_i32] = ACTIONS(4442), + [anon_sym_i64] = ACTIONS(4442), + [anon_sym_u8] = ACTIONS(4442), + [anon_sym_u16] = ACTIONS(4442), + [anon_sym_u32] = ACTIONS(4442), + [anon_sym_u64] = ACTIONS(4442), + [anon_sym_isize] = ACTIONS(4442), + [anon_sym_usize] = ACTIONS(4442), + [anon_sym_f32] = ACTIONS(4442), + [anon_sym_f64] = ACTIONS(4442), + [anon_sym_c_char] = ACTIONS(4442), + [anon_sym_c_schar] = ACTIONS(4442), + [anon_sym_c_uchar] = ACTIONS(4442), + [anon_sym_c_short] = ACTIONS(4442), + [anon_sym_c_ushort] = ACTIONS(4442), + [anon_sym_c_int] = ACTIONS(4442), + [anon_sym_c_uint] = ACTIONS(4442), + [anon_sym_c_long] = ACTIONS(4442), + [anon_sym_c_ulong] = ACTIONS(4442), + [anon_sym_c_longlong] = ACTIONS(4442), + [anon_sym_c_ulonglong] = ACTIONS(4442), + [anon_sym_c_float] = ACTIONS(4442), + [anon_sym_c_double] = ACTIONS(4442), + [anon_sym_c_longdouble] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_yield] = ACTIONS(4442), + [anon_sym_COLON] = ACTIONS(4440), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_defer] = ACTIONS(4442), + [anon_sym_errdefer] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_expand] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_match] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4440), + [anon_sym_orelse] = ACTIONS(4442), + [anon_sym_or] = ACTIONS(4442), + [anon_sym_and] = ACTIONS(4442), + [anon_sym_EQ_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_xor] = ACTIONS(4442), + [anon_sym_LT_LT] = ACTIONS(4442), + [anon_sym_GT_GT] = ACTIONS(4440), + [anon_sym_LT_LT_PIPE] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4440), + [anon_sym_SLASH] = ACTIONS(4440), + [anon_sym_catch] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4440), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_unreachable] = ACTIONS(4442), + [anon_sym_undefined] = ACTIONS(4442), + [sym_sink] = ACTIONS(4442), + [sym_integer] = ACTIONS(4442), + [sym_float] = ACTIONS(4440), + [anon_sym_DQUOTE] = ACTIONS(4440), + [sym_multiline_string] = ACTIONS(4440), + [sym_character] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4440), + }, + [STATE(3913)] = { + [ts_builtin_sym_end] = ACTIONS(4720), + [sym_identifier] = ACTIONS(4722), + [anon_sym_import] = ACTIONS(4722), + [anon_sym_test] = ACTIONS(4722), + [anon_sym_hide] = ACTIONS(4722), + [anon_sym_func] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOLLAR] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_QMARK] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_void] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_type] = ACTIONS(4722), + [anon_sym_anyopaque] = ACTIONS(4722), + [anon_sym_bool] = ACTIONS(4722), + [anon_sym_int] = ACTIONS(4722), + [anon_sym_uint] = ACTIONS(4722), + [anon_sym_float] = ACTIONS(4722), + [anon_sym_range] = ACTIONS(4722), + [anon_sym_i8] = ACTIONS(4722), + [anon_sym_i16] = ACTIONS(4722), + [anon_sym_i32] = ACTIONS(4722), + [anon_sym_i64] = ACTIONS(4722), + [anon_sym_u8] = ACTIONS(4722), + [anon_sym_u16] = ACTIONS(4722), + [anon_sym_u32] = ACTIONS(4722), + [anon_sym_u64] = ACTIONS(4722), + [anon_sym_isize] = ACTIONS(4722), + [anon_sym_usize] = ACTIONS(4722), + [anon_sym_f32] = ACTIONS(4722), + [anon_sym_f64] = ACTIONS(4722), + [anon_sym_c_char] = ACTIONS(4722), + [anon_sym_c_schar] = ACTIONS(4722), + [anon_sym_c_uchar] = ACTIONS(4722), + [anon_sym_c_short] = ACTIONS(4722), + [anon_sym_c_ushort] = ACTIONS(4722), + [anon_sym_c_int] = ACTIONS(4722), + [anon_sym_c_uint] = ACTIONS(4722), + [anon_sym_c_long] = ACTIONS(4722), + [anon_sym_c_ulong] = ACTIONS(4722), + [anon_sym_c_longlong] = ACTIONS(4722), + [anon_sym_c_ulonglong] = ACTIONS(4722), + [anon_sym_c_float] = ACTIONS(4722), + [anon_sym_c_double] = ACTIONS(4722), + [anon_sym_c_longdouble] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_yield] = ACTIONS(4722), + [anon_sym_COLON] = ACTIONS(4720), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_defer] = ACTIONS(4722), + [anon_sym_errdefer] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_while] = ACTIONS(4722), + [anon_sym_expand] = ACTIONS(4722), + [anon_sym_for] = ACTIONS(4722), + [anon_sym_match] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4720), + [anon_sym_orelse] = ACTIONS(4722), + [anon_sym_or] = ACTIONS(4722), + [anon_sym_and] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_xor] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4720), + [anon_sym_LT_LT_PIPE] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4720), + [anon_sym_catch] = ACTIONS(4722), + [anon_sym_TILDE] = ACTIONS(4720), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_CARET] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_unreachable] = ACTIONS(4722), + [anon_sym_undefined] = ACTIONS(4722), + [sym_sink] = ACTIONS(4722), + [sym_integer] = ACTIONS(4722), + [sym_float] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4720), + [sym_multiline_string] = ACTIONS(4720), + [sym_character] = ACTIONS(4720), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4720), + }, + [STATE(3914)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4864), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(8750), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4865), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6846), + }, + [STATE(3915)] = { + [ts_builtin_sym_end] = ACTIONS(5640), + [sym_identifier] = ACTIONS(5642), + [anon_sym_import] = ACTIONS(5642), + [anon_sym_test] = ACTIONS(5642), + [anon_sym_hide] = ACTIONS(5642), + [anon_sym_func] = ACTIONS(5642), + [anon_sym_BANG] = ACTIONS(5642), + [anon_sym_struct] = ACTIONS(5642), + [anon_sym_LPAREN] = ACTIONS(5640), + [anon_sym_LBRACE] = ACTIONS(5640), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5640), + [anon_sym_DOLLAR] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5640), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_void] = ACTIONS(5642), + [anon_sym_noreturn] = ACTIONS(5642), + [anon_sym_type] = ACTIONS(5642), + [anon_sym_anyopaque] = ACTIONS(5642), + [anon_sym_bool] = ACTIONS(5642), + [anon_sym_int] = ACTIONS(5642), + [anon_sym_uint] = ACTIONS(5642), + [anon_sym_float] = ACTIONS(5642), + [anon_sym_range] = ACTIONS(5642), + [anon_sym_i8] = ACTIONS(5642), + [anon_sym_i16] = ACTIONS(5642), + [anon_sym_i32] = ACTIONS(5642), + [anon_sym_i64] = ACTIONS(5642), + [anon_sym_u8] = ACTIONS(5642), + [anon_sym_u16] = ACTIONS(5642), + [anon_sym_u32] = ACTIONS(5642), + [anon_sym_u64] = ACTIONS(5642), + [anon_sym_isize] = ACTIONS(5642), + [anon_sym_usize] = ACTIONS(5642), + [anon_sym_f32] = ACTIONS(5642), + [anon_sym_f64] = ACTIONS(5642), + [anon_sym_c_char] = ACTIONS(5642), + [anon_sym_c_schar] = ACTIONS(5642), + [anon_sym_c_uchar] = ACTIONS(5642), + [anon_sym_c_short] = ACTIONS(5642), + [anon_sym_c_ushort] = ACTIONS(5642), + [anon_sym_c_int] = ACTIONS(5642), + [anon_sym_c_uint] = ACTIONS(5642), + [anon_sym_c_long] = ACTIONS(5642), + [anon_sym_c_ulong] = ACTIONS(5642), + [anon_sym_c_longlong] = ACTIONS(5642), + [anon_sym_c_ulonglong] = ACTIONS(5642), + [anon_sym_c_float] = ACTIONS(5642), + [anon_sym_c_double] = ACTIONS(5642), + [anon_sym_c_longdouble] = ACTIONS(5642), + [anon_sym_return] = ACTIONS(5642), + [anon_sym_yield] = ACTIONS(5642), + [anon_sym_COLON] = ACTIONS(5640), + [anon_sym_break] = ACTIONS(5642), + [anon_sym_continue] = ACTIONS(5642), + [anon_sym_defer] = ACTIONS(5642), + [anon_sym_errdefer] = ACTIONS(5642), + [anon_sym_if] = ACTIONS(5642), + [anon_sym_else] = ACTIONS(5642), + [anon_sym_while] = ACTIONS(5642), + [anon_sym_expand] = ACTIONS(5642), + [anon_sym_for] = ACTIONS(5642), + [anon_sym_match] = ACTIONS(5642), + [anon_sym_DOT_DOT] = ACTIONS(5642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5640), + [anon_sym_orelse] = ACTIONS(5642), + [anon_sym_or] = ACTIONS(5642), + [anon_sym_and] = ACTIONS(5642), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_LT] = ACTIONS(5642), + [anon_sym_LT_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5642), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5642), + [anon_sym_LT_LT] = ACTIONS(5642), + [anon_sym_GT_GT] = ACTIONS(5640), + [anon_sym_LT_LT_PIPE] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5640), + [anon_sym_SLASH] = ACTIONS(5640), + [anon_sym_catch] = ACTIONS(5642), + [anon_sym_TILDE] = ACTIONS(5640), + [anon_sym_try] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5640), + [anon_sym_true] = ACTIONS(5642), + [anon_sym_false] = ACTIONS(5642), + [anon_sym_null] = ACTIONS(5642), + [anon_sym_unreachable] = ACTIONS(5642), + [anon_sym_undefined] = ACTIONS(5642), + [sym_sink] = ACTIONS(5642), + [sym_integer] = ACTIONS(5642), + [sym_float] = ACTIONS(5640), + [anon_sym_DQUOTE] = ACTIONS(5640), + [sym_multiline_string] = ACTIONS(5640), + [sym_character] = ACTIONS(5640), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5640), + }, + [STATE(3916)] = { + [ts_builtin_sym_end] = ACTIONS(4728), + [sym_identifier] = ACTIONS(4730), + [anon_sym_import] = ACTIONS(4730), + [anon_sym_test] = ACTIONS(4730), + [anon_sym_hide] = ACTIONS(4730), + [anon_sym_func] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4730), + [anon_sym_struct] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_void] = ACTIONS(4730), + [anon_sym_noreturn] = ACTIONS(4730), + [anon_sym_type] = ACTIONS(4730), + [anon_sym_anyopaque] = ACTIONS(4730), + [anon_sym_bool] = ACTIONS(4730), + [anon_sym_int] = ACTIONS(4730), + [anon_sym_uint] = ACTIONS(4730), + [anon_sym_float] = ACTIONS(4730), + [anon_sym_range] = ACTIONS(4730), + [anon_sym_i8] = ACTIONS(4730), + [anon_sym_i16] = ACTIONS(4730), + [anon_sym_i32] = ACTIONS(4730), + [anon_sym_i64] = ACTIONS(4730), + [anon_sym_u8] = ACTIONS(4730), + [anon_sym_u16] = ACTIONS(4730), + [anon_sym_u32] = ACTIONS(4730), + [anon_sym_u64] = ACTIONS(4730), + [anon_sym_isize] = ACTIONS(4730), + [anon_sym_usize] = ACTIONS(4730), + [anon_sym_f32] = ACTIONS(4730), + [anon_sym_f64] = ACTIONS(4730), + [anon_sym_c_char] = ACTIONS(4730), + [anon_sym_c_schar] = ACTIONS(4730), + [anon_sym_c_uchar] = ACTIONS(4730), + [anon_sym_c_short] = ACTIONS(4730), + [anon_sym_c_ushort] = ACTIONS(4730), + [anon_sym_c_int] = ACTIONS(4730), + [anon_sym_c_uint] = ACTIONS(4730), + [anon_sym_c_long] = ACTIONS(4730), + [anon_sym_c_ulong] = ACTIONS(4730), + [anon_sym_c_longlong] = ACTIONS(4730), + [anon_sym_c_ulonglong] = ACTIONS(4730), + [anon_sym_c_float] = ACTIONS(4730), + [anon_sym_c_double] = ACTIONS(4730), + [anon_sym_c_longdouble] = ACTIONS(4730), + [anon_sym_return] = ACTIONS(4730), + [anon_sym_yield] = ACTIONS(4730), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_break] = ACTIONS(4730), + [anon_sym_continue] = ACTIONS(4730), + [anon_sym_defer] = ACTIONS(4730), + [anon_sym_errdefer] = ACTIONS(4730), + [anon_sym_if] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_while] = ACTIONS(4730), + [anon_sym_expand] = ACTIONS(4730), + [anon_sym_for] = ACTIONS(4730), + [anon_sym_match] = ACTIONS(4730), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4728), + [anon_sym_orelse] = ACTIONS(4730), + [anon_sym_or] = ACTIONS(4730), + [anon_sym_and] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4728), + [anon_sym_xor] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_LT_LT_PIPE] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_catch] = ACTIONS(4730), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4730), + [anon_sym_false] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4730), + [anon_sym_unreachable] = ACTIONS(4730), + [anon_sym_undefined] = ACTIONS(4730), + [sym_sink] = ACTIONS(4730), + [sym_integer] = ACTIONS(4730), + [sym_float] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [sym_multiline_string] = ACTIONS(4728), + [sym_character] = ACTIONS(4728), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4728), + }, + [STATE(3917)] = { + [ts_builtin_sym_end] = ACTIONS(5376), + [sym_identifier] = ACTIONS(5378), + [anon_sym_import] = ACTIONS(5378), + [anon_sym_test] = ACTIONS(5378), + [anon_sym_hide] = ACTIONS(5378), + [anon_sym_func] = ACTIONS(5378), + [anon_sym_BANG] = ACTIONS(5378), + [anon_sym_struct] = ACTIONS(5378), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_LBRACE] = ACTIONS(5376), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_void] = ACTIONS(5378), + [anon_sym_noreturn] = ACTIONS(5378), + [anon_sym_type] = ACTIONS(5378), + [anon_sym_anyopaque] = ACTIONS(5378), + [anon_sym_bool] = ACTIONS(5378), + [anon_sym_int] = ACTIONS(5378), + [anon_sym_uint] = ACTIONS(5378), + [anon_sym_float] = ACTIONS(5378), + [anon_sym_range] = ACTIONS(5378), + [anon_sym_i8] = ACTIONS(5378), + [anon_sym_i16] = ACTIONS(5378), + [anon_sym_i32] = ACTIONS(5378), + [anon_sym_i64] = ACTIONS(5378), + [anon_sym_u8] = ACTIONS(5378), + [anon_sym_u16] = ACTIONS(5378), + [anon_sym_u32] = ACTIONS(5378), + [anon_sym_u64] = ACTIONS(5378), + [anon_sym_isize] = ACTIONS(5378), + [anon_sym_usize] = ACTIONS(5378), + [anon_sym_f32] = ACTIONS(5378), + [anon_sym_f64] = ACTIONS(5378), + [anon_sym_c_char] = ACTIONS(5378), + [anon_sym_c_schar] = ACTIONS(5378), + [anon_sym_c_uchar] = ACTIONS(5378), + [anon_sym_c_short] = ACTIONS(5378), + [anon_sym_c_ushort] = ACTIONS(5378), + [anon_sym_c_int] = ACTIONS(5378), + [anon_sym_c_uint] = ACTIONS(5378), + [anon_sym_c_long] = ACTIONS(5378), + [anon_sym_c_ulong] = ACTIONS(5378), + [anon_sym_c_longlong] = ACTIONS(5378), + [anon_sym_c_ulonglong] = ACTIONS(5378), + [anon_sym_c_float] = ACTIONS(5378), + [anon_sym_c_double] = ACTIONS(5378), + [anon_sym_c_longdouble] = ACTIONS(5378), + [anon_sym_return] = ACTIONS(5378), + [anon_sym_yield] = ACTIONS(5378), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_break] = ACTIONS(5378), + [anon_sym_continue] = ACTIONS(5378), + [anon_sym_defer] = ACTIONS(5378), + [anon_sym_errdefer] = ACTIONS(5378), + [anon_sym_if] = ACTIONS(5378), + [anon_sym_else] = ACTIONS(5378), + [anon_sym_while] = ACTIONS(5378), + [anon_sym_expand] = ACTIONS(5378), + [anon_sym_for] = ACTIONS(5378), + [anon_sym_match] = ACTIONS(5378), + [anon_sym_DOT_DOT] = ACTIONS(5378), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5376), + [anon_sym_orelse] = ACTIONS(5378), + [anon_sym_or] = ACTIONS(5378), + [anon_sym_and] = ACTIONS(5378), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5378), + [anon_sym_LT_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5378), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP] = ACTIONS(5376), + [anon_sym_xor] = ACTIONS(5378), + [anon_sym_LT_LT] = ACTIONS(5378), + [anon_sym_GT_GT] = ACTIONS(5376), + [anon_sym_LT_LT_PIPE] = ACTIONS(5376), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_catch] = ACTIONS(5378), + [anon_sym_TILDE] = ACTIONS(5376), + [anon_sym_try] = ACTIONS(5378), + [anon_sym_DOT] = ACTIONS(5378), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym_true] = ACTIONS(5378), + [anon_sym_false] = ACTIONS(5378), + [anon_sym_null] = ACTIONS(5378), + [anon_sym_unreachable] = ACTIONS(5378), + [anon_sym_undefined] = ACTIONS(5378), + [sym_sink] = ACTIONS(5378), + [sym_integer] = ACTIONS(5378), + [sym_float] = ACTIONS(5376), + [anon_sym_DQUOTE] = ACTIONS(5376), + [sym_multiline_string] = ACTIONS(5376), + [sym_character] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5376), + }, + [STATE(3918)] = { + [ts_builtin_sym_end] = ACTIONS(5802), + [sym_identifier] = ACTIONS(5804), + [anon_sym_import] = ACTIONS(5804), + [anon_sym_test] = ACTIONS(5804), + [anon_sym_hide] = ACTIONS(5804), + [anon_sym_func] = ACTIONS(5804), + [anon_sym_BANG] = ACTIONS(5804), + [anon_sym_struct] = ACTIONS(5804), + [anon_sym_LPAREN] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5802), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5802), + [anon_sym_DOLLAR] = ACTIONS(5802), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_QMARK] = ACTIONS(5802), + [anon_sym_STAR] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_void] = ACTIONS(5804), + [anon_sym_noreturn] = ACTIONS(5804), + [anon_sym_type] = ACTIONS(5804), + [anon_sym_anyopaque] = ACTIONS(5804), + [anon_sym_bool] = ACTIONS(5804), + [anon_sym_int] = ACTIONS(5804), + [anon_sym_uint] = ACTIONS(5804), + [anon_sym_float] = ACTIONS(5804), + [anon_sym_range] = ACTIONS(5804), + [anon_sym_i8] = ACTIONS(5804), + [anon_sym_i16] = ACTIONS(5804), + [anon_sym_i32] = ACTIONS(5804), + [anon_sym_i64] = ACTIONS(5804), + [anon_sym_u8] = ACTIONS(5804), + [anon_sym_u16] = ACTIONS(5804), + [anon_sym_u32] = ACTIONS(5804), + [anon_sym_u64] = ACTIONS(5804), + [anon_sym_isize] = ACTIONS(5804), + [anon_sym_usize] = ACTIONS(5804), + [anon_sym_f32] = ACTIONS(5804), + [anon_sym_f64] = ACTIONS(5804), + [anon_sym_c_char] = ACTIONS(5804), + [anon_sym_c_schar] = ACTIONS(5804), + [anon_sym_c_uchar] = ACTIONS(5804), + [anon_sym_c_short] = ACTIONS(5804), + [anon_sym_c_ushort] = ACTIONS(5804), + [anon_sym_c_int] = ACTIONS(5804), + [anon_sym_c_uint] = ACTIONS(5804), + [anon_sym_c_long] = ACTIONS(5804), + [anon_sym_c_ulong] = ACTIONS(5804), + [anon_sym_c_longlong] = ACTIONS(5804), + [anon_sym_c_ulonglong] = ACTIONS(5804), + [anon_sym_c_float] = ACTIONS(5804), + [anon_sym_c_double] = ACTIONS(5804), + [anon_sym_c_longdouble] = ACTIONS(5804), + [anon_sym_return] = ACTIONS(5804), + [anon_sym_yield] = ACTIONS(5804), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym_break] = ACTIONS(5804), + [anon_sym_continue] = ACTIONS(5804), + [anon_sym_defer] = ACTIONS(5804), + [anon_sym_errdefer] = ACTIONS(5804), + [anon_sym_if] = ACTIONS(5804), + [anon_sym_else] = ACTIONS(5804), + [anon_sym_while] = ACTIONS(5804), + [anon_sym_expand] = ACTIONS(5804), + [anon_sym_for] = ACTIONS(5804), + [anon_sym_match] = ACTIONS(5804), + [anon_sym_DOT_DOT] = ACTIONS(5804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5802), + [anon_sym_orelse] = ACTIONS(5804), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5802), + [anon_sym_BANG_EQ] = ACTIONS(5802), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5802), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5804), + [anon_sym_GT_GT] = ACTIONS(5802), + [anon_sym_LT_LT_PIPE] = ACTIONS(5802), + [anon_sym_PLUS] = ACTIONS(5802), + [anon_sym_SLASH] = ACTIONS(5802), + [anon_sym_catch] = ACTIONS(5804), + [anon_sym_TILDE] = ACTIONS(5802), + [anon_sym_try] = ACTIONS(5804), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5802), + [anon_sym_true] = ACTIONS(5804), + [anon_sym_false] = ACTIONS(5804), + [anon_sym_null] = ACTIONS(5804), + [anon_sym_unreachable] = ACTIONS(5804), + [anon_sym_undefined] = ACTIONS(5804), + [sym_sink] = ACTIONS(5804), + [sym_integer] = ACTIONS(5804), + [sym_float] = ACTIONS(5802), + [anon_sym_DQUOTE] = ACTIONS(5802), + [sym_multiline_string] = ACTIONS(5802), + [sym_character] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5802), + }, + [STATE(3919)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3929), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6848), + }, + [STATE(3920)] = { + [ts_builtin_sym_end] = ACTIONS(4742), + [sym_identifier] = ACTIONS(4744), + [anon_sym_import] = ACTIONS(4744), + [anon_sym_test] = ACTIONS(4744), + [anon_sym_hide] = ACTIONS(4744), + [anon_sym_func] = ACTIONS(4744), + [anon_sym_BANG] = ACTIONS(4744), + [anon_sym_struct] = ACTIONS(4744), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_QMARK] = ACTIONS(4742), + [anon_sym_STAR] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_void] = ACTIONS(4744), + [anon_sym_noreturn] = ACTIONS(4744), + [anon_sym_type] = ACTIONS(4744), + [anon_sym_anyopaque] = ACTIONS(4744), + [anon_sym_bool] = ACTIONS(4744), + [anon_sym_int] = ACTIONS(4744), + [anon_sym_uint] = ACTIONS(4744), + [anon_sym_float] = ACTIONS(4744), + [anon_sym_range] = ACTIONS(4744), + [anon_sym_i8] = ACTIONS(4744), + [anon_sym_i16] = ACTIONS(4744), + [anon_sym_i32] = ACTIONS(4744), + [anon_sym_i64] = ACTIONS(4744), + [anon_sym_u8] = ACTIONS(4744), + [anon_sym_u16] = ACTIONS(4744), + [anon_sym_u32] = ACTIONS(4744), + [anon_sym_u64] = ACTIONS(4744), + [anon_sym_isize] = ACTIONS(4744), + [anon_sym_usize] = ACTIONS(4744), + [anon_sym_f32] = ACTIONS(4744), + [anon_sym_f64] = ACTIONS(4744), + [anon_sym_c_char] = ACTIONS(4744), + [anon_sym_c_schar] = ACTIONS(4744), + [anon_sym_c_uchar] = ACTIONS(4744), + [anon_sym_c_short] = ACTIONS(4744), + [anon_sym_c_ushort] = ACTIONS(4744), + [anon_sym_c_int] = ACTIONS(4744), + [anon_sym_c_uint] = ACTIONS(4744), + [anon_sym_c_long] = ACTIONS(4744), + [anon_sym_c_ulong] = ACTIONS(4744), + [anon_sym_c_longlong] = ACTIONS(4744), + [anon_sym_c_ulonglong] = ACTIONS(4744), + [anon_sym_c_float] = ACTIONS(4744), + [anon_sym_c_double] = ACTIONS(4744), + [anon_sym_c_longdouble] = ACTIONS(4744), + [anon_sym_return] = ACTIONS(4744), + [anon_sym_yield] = ACTIONS(4744), + [anon_sym_COLON] = ACTIONS(4742), + [anon_sym_break] = ACTIONS(4744), + [anon_sym_continue] = ACTIONS(4744), + [anon_sym_defer] = ACTIONS(4744), + [anon_sym_errdefer] = ACTIONS(4744), + [anon_sym_if] = ACTIONS(4744), + [anon_sym_else] = ACTIONS(4744), + [anon_sym_while] = ACTIONS(4744), + [anon_sym_expand] = ACTIONS(4744), + [anon_sym_for] = ACTIONS(4744), + [anon_sym_match] = ACTIONS(4744), + [anon_sym_DOT_DOT] = ACTIONS(4744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4742), + [anon_sym_orelse] = ACTIONS(4744), + [anon_sym_or] = ACTIONS(4744), + [anon_sym_and] = ACTIONS(4744), + [anon_sym_EQ_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4744), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4744), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_AMP] = ACTIONS(4742), + [anon_sym_xor] = ACTIONS(4744), + [anon_sym_LT_LT] = ACTIONS(4744), + [anon_sym_GT_GT] = ACTIONS(4742), + [anon_sym_LT_LT_PIPE] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4742), + [anon_sym_SLASH] = ACTIONS(4742), + [anon_sym_catch] = ACTIONS(4744), + [anon_sym_TILDE] = ACTIONS(4742), + [anon_sym_try] = ACTIONS(4744), + [anon_sym_DOT] = ACTIONS(4744), + [anon_sym_CARET] = ACTIONS(4742), + [anon_sym_true] = ACTIONS(4744), + [anon_sym_false] = ACTIONS(4744), + [anon_sym_null] = ACTIONS(4744), + [anon_sym_unreachable] = ACTIONS(4744), + [anon_sym_undefined] = ACTIONS(4744), + [sym_sink] = ACTIONS(4744), + [sym_integer] = ACTIONS(4744), + [sym_float] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [sym_multiline_string] = ACTIONS(4742), + [sym_character] = ACTIONS(4742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4742), + }, + [STATE(3921)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8666), + [sym_labeled_block] = STATE(8666), + [sym_if_statement] = STATE(8666), + [sym_while_statement] = STATE(8666), + [sym_for_statement] = STATE(8666), + [sym_match_statement] = STATE(8666), + [sym__value] = STATE(8666), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3922)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8588), + [sym_labeled_block] = STATE(8588), + [sym_if_statement] = STATE(8588), + [sym_while_statement] = STATE(8588), + [sym_for_statement] = STATE(8588), + [sym_match_statement] = STATE(8588), + [sym__value] = STATE(8588), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4012), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6850), + }, + [STATE(3923)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8618), + [sym_labeled_block] = STATE(8618), + [sym_if_statement] = STATE(8618), + [sym_while_statement] = STATE(8618), + [sym_for_statement] = STATE(8618), + [sym_match_statement] = STATE(8618), + [sym__value] = STATE(8618), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4014), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6852), + }, + [STATE(3924)] = { + [ts_builtin_sym_end] = ACTIONS(4746), + [sym_identifier] = ACTIONS(4748), + [anon_sym_import] = ACTIONS(4748), + [anon_sym_test] = ACTIONS(4748), + [anon_sym_hide] = ACTIONS(4748), + [anon_sym_func] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4748), + [anon_sym_struct] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_DOLLAR] = ACTIONS(4746), + [anon_sym_PIPE] = ACTIONS(4746), + [anon_sym_QMARK] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_void] = ACTIONS(4748), + [anon_sym_noreturn] = ACTIONS(4748), + [anon_sym_type] = ACTIONS(4748), + [anon_sym_anyopaque] = ACTIONS(4748), + [anon_sym_bool] = ACTIONS(4748), + [anon_sym_int] = ACTIONS(4748), + [anon_sym_uint] = ACTIONS(4748), + [anon_sym_float] = ACTIONS(4748), + [anon_sym_range] = ACTIONS(4748), + [anon_sym_i8] = ACTIONS(4748), + [anon_sym_i16] = ACTIONS(4748), + [anon_sym_i32] = ACTIONS(4748), + [anon_sym_i64] = ACTIONS(4748), + [anon_sym_u8] = ACTIONS(4748), + [anon_sym_u16] = ACTIONS(4748), + [anon_sym_u32] = ACTIONS(4748), + [anon_sym_u64] = ACTIONS(4748), + [anon_sym_isize] = ACTIONS(4748), + [anon_sym_usize] = ACTIONS(4748), + [anon_sym_f32] = ACTIONS(4748), + [anon_sym_f64] = ACTIONS(4748), + [anon_sym_c_char] = ACTIONS(4748), + [anon_sym_c_schar] = ACTIONS(4748), + [anon_sym_c_uchar] = ACTIONS(4748), + [anon_sym_c_short] = ACTIONS(4748), + [anon_sym_c_ushort] = ACTIONS(4748), + [anon_sym_c_int] = ACTIONS(4748), + [anon_sym_c_uint] = ACTIONS(4748), + [anon_sym_c_long] = ACTIONS(4748), + [anon_sym_c_ulong] = ACTIONS(4748), + [anon_sym_c_longlong] = ACTIONS(4748), + [anon_sym_c_ulonglong] = ACTIONS(4748), + [anon_sym_c_float] = ACTIONS(4748), + [anon_sym_c_double] = ACTIONS(4748), + [anon_sym_c_longdouble] = ACTIONS(4748), + [anon_sym_return] = ACTIONS(4748), + [anon_sym_yield] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_break] = ACTIONS(4748), + [anon_sym_continue] = ACTIONS(4748), + [anon_sym_defer] = ACTIONS(4748), + [anon_sym_errdefer] = ACTIONS(4748), + [anon_sym_if] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_while] = ACTIONS(4748), + [anon_sym_expand] = ACTIONS(4748), + [anon_sym_for] = ACTIONS(4748), + [anon_sym_match] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4746), + [anon_sym_orelse] = ACTIONS(4748), + [anon_sym_or] = ACTIONS(4748), + [anon_sym_and] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_LT] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4746), + [anon_sym_AMP] = ACTIONS(4746), + [anon_sym_xor] = ACTIONS(4748), + [anon_sym_LT_LT] = ACTIONS(4748), + [anon_sym_GT_GT] = ACTIONS(4746), + [anon_sym_LT_LT_PIPE] = ACTIONS(4746), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_catch] = ACTIONS(4748), + [anon_sym_TILDE] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_CARET] = ACTIONS(4746), + [anon_sym_true] = ACTIONS(4748), + [anon_sym_false] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4748), + [anon_sym_unreachable] = ACTIONS(4748), + [anon_sym_undefined] = ACTIONS(4748), + [sym_sink] = ACTIONS(4748), + [sym_integer] = ACTIONS(4748), + [sym_float] = ACTIONS(4746), + [anon_sym_DQUOTE] = ACTIONS(4746), + [sym_multiline_string] = ACTIONS(4746), + [sym_character] = ACTIONS(4746), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4746), + }, + [STATE(3925)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8630), + [sym_labeled_block] = STATE(8630), + [sym_if_statement] = STATE(8630), + [sym_while_statement] = STATE(8630), + [sym_for_statement] = STATE(8630), + [sym_match_statement] = STATE(8630), + [sym__value] = STATE(8630), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3926)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9696), + [sym_labeled_block] = STATE(9696), + [sym_if_statement] = STATE(9696), + [sym_while_statement] = STATE(9696), + [sym_for_statement] = STATE(9696), + [sym_match_statement] = STATE(9696), + [sym__value] = STATE(9696), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3933), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6854), + }, + [STATE(3927)] = { + [ts_builtin_sym_end] = ACTIONS(5612), + [sym_identifier] = ACTIONS(5614), + [anon_sym_import] = ACTIONS(5614), + [anon_sym_test] = ACTIONS(5614), + [anon_sym_hide] = ACTIONS(5614), + [anon_sym_func] = ACTIONS(5614), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_struct] = ACTIONS(5614), + [anon_sym_LPAREN] = ACTIONS(5612), + [anon_sym_LBRACE] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5612), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_DOLLAR] = ACTIONS(5612), + [anon_sym_PIPE] = ACTIONS(5612), + [anon_sym_QMARK] = ACTIONS(5612), + [anon_sym_STAR] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(5612), + [anon_sym_void] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_type] = ACTIONS(5614), + [anon_sym_anyopaque] = ACTIONS(5614), + [anon_sym_bool] = ACTIONS(5614), + [anon_sym_int] = ACTIONS(5614), + [anon_sym_uint] = ACTIONS(5614), + [anon_sym_float] = ACTIONS(5614), + [anon_sym_range] = ACTIONS(5614), + [anon_sym_i8] = ACTIONS(5614), + [anon_sym_i16] = ACTIONS(5614), + [anon_sym_i32] = ACTIONS(5614), + [anon_sym_i64] = ACTIONS(5614), + [anon_sym_u8] = ACTIONS(5614), + [anon_sym_u16] = ACTIONS(5614), + [anon_sym_u32] = ACTIONS(5614), + [anon_sym_u64] = ACTIONS(5614), + [anon_sym_isize] = ACTIONS(5614), + [anon_sym_usize] = ACTIONS(5614), + [anon_sym_f32] = ACTIONS(5614), + [anon_sym_f64] = ACTIONS(5614), + [anon_sym_c_char] = ACTIONS(5614), + [anon_sym_c_schar] = ACTIONS(5614), + [anon_sym_c_uchar] = ACTIONS(5614), + [anon_sym_c_short] = ACTIONS(5614), + [anon_sym_c_ushort] = ACTIONS(5614), + [anon_sym_c_int] = ACTIONS(5614), + [anon_sym_c_uint] = ACTIONS(5614), + [anon_sym_c_long] = ACTIONS(5614), + [anon_sym_c_ulong] = ACTIONS(5614), + [anon_sym_c_longlong] = ACTIONS(5614), + [anon_sym_c_ulonglong] = ACTIONS(5614), + [anon_sym_c_float] = ACTIONS(5614), + [anon_sym_c_double] = ACTIONS(5614), + [anon_sym_c_longdouble] = ACTIONS(5614), + [anon_sym_return] = ACTIONS(5614), + [anon_sym_yield] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5612), + [anon_sym_break] = ACTIONS(5614), + [anon_sym_continue] = ACTIONS(5614), + [anon_sym_defer] = ACTIONS(5614), + [anon_sym_errdefer] = ACTIONS(5614), + [anon_sym_if] = ACTIONS(5614), + [anon_sym_else] = ACTIONS(5614), + [anon_sym_while] = ACTIONS(5614), + [anon_sym_expand] = ACTIONS(5614), + [anon_sym_for] = ACTIONS(5614), + [anon_sym_match] = ACTIONS(5614), + [anon_sym_DOT_DOT] = ACTIONS(5614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5612), + [anon_sym_orelse] = ACTIONS(5614), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5612), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5612), + [anon_sym_LT_LT_PIPE] = ACTIONS(5612), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_SLASH] = ACTIONS(5612), + [anon_sym_catch] = ACTIONS(5614), + [anon_sym_TILDE] = ACTIONS(5612), + [anon_sym_try] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5612), + [anon_sym_true] = ACTIONS(5614), + [anon_sym_false] = ACTIONS(5614), + [anon_sym_null] = ACTIONS(5614), + [anon_sym_unreachable] = ACTIONS(5614), + [anon_sym_undefined] = ACTIONS(5614), + [sym_sink] = ACTIONS(5614), + [sym_integer] = ACTIONS(5614), + [sym_float] = ACTIONS(5612), + [anon_sym_DQUOTE] = ACTIONS(5612), + [sym_multiline_string] = ACTIONS(5612), + [sym_character] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5612), + }, + [STATE(3928)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4268), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6856), + }, + [STATE(3929)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3930)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3947), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6858), + }, + [STATE(3931)] = { + [ts_builtin_sym_end] = ACTIONS(5404), + [sym_identifier] = ACTIONS(5406), + [anon_sym_import] = ACTIONS(5406), + [anon_sym_test] = ACTIONS(5406), + [anon_sym_hide] = ACTIONS(5406), + [anon_sym_func] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_struct] = ACTIONS(5406), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5404), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_void] = ACTIONS(5406), + [anon_sym_noreturn] = ACTIONS(5406), + [anon_sym_type] = ACTIONS(5406), + [anon_sym_anyopaque] = ACTIONS(5406), + [anon_sym_bool] = ACTIONS(5406), + [anon_sym_int] = ACTIONS(5406), + [anon_sym_uint] = ACTIONS(5406), + [anon_sym_float] = ACTIONS(5406), + [anon_sym_range] = ACTIONS(5406), + [anon_sym_i8] = ACTIONS(5406), + [anon_sym_i16] = ACTIONS(5406), + [anon_sym_i32] = ACTIONS(5406), + [anon_sym_i64] = ACTIONS(5406), + [anon_sym_u8] = ACTIONS(5406), + [anon_sym_u16] = ACTIONS(5406), + [anon_sym_u32] = ACTIONS(5406), + [anon_sym_u64] = ACTIONS(5406), + [anon_sym_isize] = ACTIONS(5406), + [anon_sym_usize] = ACTIONS(5406), + [anon_sym_f32] = ACTIONS(5406), + [anon_sym_f64] = ACTIONS(5406), + [anon_sym_c_char] = ACTIONS(5406), + [anon_sym_c_schar] = ACTIONS(5406), + [anon_sym_c_uchar] = ACTIONS(5406), + [anon_sym_c_short] = ACTIONS(5406), + [anon_sym_c_ushort] = ACTIONS(5406), + [anon_sym_c_int] = ACTIONS(5406), + [anon_sym_c_uint] = ACTIONS(5406), + [anon_sym_c_long] = ACTIONS(5406), + [anon_sym_c_ulong] = ACTIONS(5406), + [anon_sym_c_longlong] = ACTIONS(5406), + [anon_sym_c_ulonglong] = ACTIONS(5406), + [anon_sym_c_float] = ACTIONS(5406), + [anon_sym_c_double] = ACTIONS(5406), + [anon_sym_c_longdouble] = ACTIONS(5406), + [anon_sym_return] = ACTIONS(5406), + [anon_sym_yield] = ACTIONS(5406), + [anon_sym_COLON] = ACTIONS(5404), + [anon_sym_break] = ACTIONS(5406), + [anon_sym_continue] = ACTIONS(5406), + [anon_sym_defer] = ACTIONS(5406), + [anon_sym_errdefer] = ACTIONS(5406), + [anon_sym_if] = ACTIONS(5406), + [anon_sym_else] = ACTIONS(5406), + [anon_sym_while] = ACTIONS(5406), + [anon_sym_expand] = ACTIONS(5406), + [anon_sym_for] = ACTIONS(5406), + [anon_sym_match] = ACTIONS(5406), + [anon_sym_DOT_DOT] = ACTIONS(5406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5404), + [anon_sym_orelse] = ACTIONS(5406), + [anon_sym_or] = ACTIONS(5406), + [anon_sym_and] = ACTIONS(5406), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_LT_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5404), + [anon_sym_xor] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(5406), + [anon_sym_GT_GT] = ACTIONS(5404), + [anon_sym_LT_LT_PIPE] = ACTIONS(5404), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_SLASH] = ACTIONS(5404), + [anon_sym_catch] = ACTIONS(5406), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_try] = ACTIONS(5406), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_CARET] = ACTIONS(5404), + [anon_sym_true] = ACTIONS(5406), + [anon_sym_false] = ACTIONS(5406), + [anon_sym_null] = ACTIONS(5406), + [anon_sym_unreachable] = ACTIONS(5406), + [anon_sym_undefined] = ACTIONS(5406), + [sym_sink] = ACTIONS(5406), + [sym_integer] = ACTIONS(5406), + [sym_float] = ACTIONS(5404), + [anon_sym_DQUOTE] = ACTIONS(5404), + [sym_multiline_string] = ACTIONS(5404), + [sym_character] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5404), + }, + [STATE(3932)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3948), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6860), + }, + [STATE(3933)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9701), + [sym_labeled_block] = STATE(9701), + [sym_if_statement] = STATE(9701), + [sym_while_statement] = STATE(9701), + [sym_for_statement] = STATE(9701), + [sym_match_statement] = STATE(9701), + [sym__value] = STATE(9701), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3934)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(4919), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(5065), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4920), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6864), + }, + [STATE(3935)] = { + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(3936)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(3937), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6866), + }, + [STATE(3937)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3938)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(3940), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6868), + }, + [STATE(3939)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(3941), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6870), + }, + [STATE(3940)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3941)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3942)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10961), + [sym_labeled_block] = STATE(10961), + [sym_if_statement] = STATE(10961), + [sym_while_statement] = STATE(10961), + [sym_for_statement] = STATE(10961), + [sym_match_statement] = STATE(10961), + [sym__value] = STATE(10961), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3943)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(3944), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6872), + }, + [STATE(3944)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3945)] = { + [ts_builtin_sym_end] = ACTIONS(5998), + [sym_identifier] = ACTIONS(6000), + [anon_sym_import] = ACTIONS(6000), + [anon_sym_test] = ACTIONS(6000), + [anon_sym_hide] = ACTIONS(6000), + [anon_sym_func] = ACTIONS(6000), + [anon_sym_BANG] = ACTIONS(6874), + [anon_sym_struct] = ACTIONS(6000), + [anon_sym_LPAREN] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(5998), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_DASH] = ACTIONS(5998), + [anon_sym_DOLLAR] = ACTIONS(5998), + [anon_sym_PIPE] = ACTIONS(5998), + [anon_sym_QMARK] = ACTIONS(5998), + [anon_sym_STAR] = ACTIONS(5998), + [anon_sym_LBRACK] = ACTIONS(5998), + [anon_sym_void] = ACTIONS(6000), + [anon_sym_noreturn] = ACTIONS(6000), + [anon_sym_type] = ACTIONS(6000), + [anon_sym_anyopaque] = ACTIONS(6000), + [anon_sym_bool] = ACTIONS(6000), + [anon_sym_int] = ACTIONS(6000), + [anon_sym_uint] = ACTIONS(6000), + [anon_sym_float] = ACTIONS(6000), + [anon_sym_range] = ACTIONS(6000), + [anon_sym_i8] = ACTIONS(6000), + [anon_sym_i16] = ACTIONS(6000), + [anon_sym_i32] = ACTIONS(6000), + [anon_sym_i64] = ACTIONS(6000), + [anon_sym_u8] = ACTIONS(6000), + [anon_sym_u16] = ACTIONS(6000), + [anon_sym_u32] = ACTIONS(6000), + [anon_sym_u64] = ACTIONS(6000), + [anon_sym_isize] = ACTIONS(6000), + [anon_sym_usize] = ACTIONS(6000), + [anon_sym_f32] = ACTIONS(6000), + [anon_sym_f64] = ACTIONS(6000), + [anon_sym_c_char] = ACTIONS(6000), + [anon_sym_c_schar] = ACTIONS(6000), + [anon_sym_c_uchar] = ACTIONS(6000), + [anon_sym_c_short] = ACTIONS(6000), + [anon_sym_c_ushort] = ACTIONS(6000), + [anon_sym_c_int] = ACTIONS(6000), + [anon_sym_c_uint] = ACTIONS(6000), + [anon_sym_c_long] = ACTIONS(6000), + [anon_sym_c_ulong] = ACTIONS(6000), + [anon_sym_c_longlong] = ACTIONS(6000), + [anon_sym_c_ulonglong] = ACTIONS(6000), + [anon_sym_c_float] = ACTIONS(6000), + [anon_sym_c_double] = ACTIONS(6000), + [anon_sym_c_longdouble] = ACTIONS(6000), + [anon_sym_return] = ACTIONS(6000), + [anon_sym_yield] = ACTIONS(6000), + [anon_sym_COLON] = ACTIONS(5998), + [anon_sym_break] = ACTIONS(6000), + [anon_sym_continue] = ACTIONS(6000), + [anon_sym_defer] = ACTIONS(6000), + [anon_sym_errdefer] = ACTIONS(6000), + [anon_sym_if] = ACTIONS(6000), + [anon_sym_else] = ACTIONS(6000), + [anon_sym_while] = ACTIONS(6000), + [anon_sym_expand] = ACTIONS(6000), + [anon_sym_for] = ACTIONS(6000), + [anon_sym_match] = ACTIONS(6000), + [anon_sym_DOT_DOT] = ACTIONS(6000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5998), + [anon_sym_orelse] = ACTIONS(6000), + [anon_sym_or] = ACTIONS(6000), + [anon_sym_and] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5998), + [anon_sym_BANG_EQ] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(6000), + [anon_sym_LT_EQ] = ACTIONS(5998), + [anon_sym_GT] = ACTIONS(6000), + [anon_sym_GT_EQ] = ACTIONS(5998), + [anon_sym_AMP] = ACTIONS(5998), + [anon_sym_xor] = ACTIONS(6000), + [anon_sym_LT_LT] = ACTIONS(6000), + [anon_sym_GT_GT] = ACTIONS(5998), + [anon_sym_LT_LT_PIPE] = ACTIONS(5998), + [anon_sym_PLUS] = ACTIONS(5998), + [anon_sym_SLASH] = ACTIONS(5998), + [anon_sym_catch] = ACTIONS(6000), + [anon_sym_TILDE] = ACTIONS(5998), + [anon_sym_try] = ACTIONS(6000), + [anon_sym_DOT] = ACTIONS(6000), + [anon_sym_CARET] = ACTIONS(5998), + [anon_sym_true] = ACTIONS(6000), + [anon_sym_false] = ACTIONS(6000), + [anon_sym_null] = ACTIONS(6000), + [anon_sym_unreachable] = ACTIONS(6000), + [anon_sym_undefined] = ACTIONS(6000), + [sym_sink] = ACTIONS(6000), + [sym_integer] = ACTIONS(6000), + [sym_float] = ACTIONS(5998), + [anon_sym_DQUOTE] = ACTIONS(5998), + [sym_multiline_string] = ACTIONS(5998), + [sym_character] = ACTIONS(5998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5998), + }, + [STATE(3946)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4922), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(509), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4923), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6878), + }, + [STATE(3947)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3948)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3949)] = { + [ts_builtin_sym_end] = ACTIONS(5644), + [sym_identifier] = ACTIONS(5646), + [anon_sym_import] = ACTIONS(5646), + [anon_sym_test] = ACTIONS(5646), + [anon_sym_hide] = ACTIONS(5646), + [anon_sym_func] = ACTIONS(5646), + [anon_sym_BANG] = ACTIONS(5646), + [anon_sym_struct] = ACTIONS(5646), + [anon_sym_LPAREN] = ACTIONS(5644), + [anon_sym_LBRACE] = ACTIONS(5644), + [anon_sym_RBRACE] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5644), + [anon_sym_DOLLAR] = ACTIONS(5644), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_QMARK] = ACTIONS(5644), + [anon_sym_STAR] = ACTIONS(5644), + [anon_sym_LBRACK] = ACTIONS(5644), + [anon_sym_void] = ACTIONS(5646), + [anon_sym_noreturn] = ACTIONS(5646), + [anon_sym_type] = ACTIONS(5646), + [anon_sym_anyopaque] = ACTIONS(5646), + [anon_sym_bool] = ACTIONS(5646), + [anon_sym_int] = ACTIONS(5646), + [anon_sym_uint] = ACTIONS(5646), + [anon_sym_float] = ACTIONS(5646), + [anon_sym_range] = ACTIONS(5646), + [anon_sym_i8] = ACTIONS(5646), + [anon_sym_i16] = ACTIONS(5646), + [anon_sym_i32] = ACTIONS(5646), + [anon_sym_i64] = ACTIONS(5646), + [anon_sym_u8] = ACTIONS(5646), + [anon_sym_u16] = ACTIONS(5646), + [anon_sym_u32] = ACTIONS(5646), + [anon_sym_u64] = ACTIONS(5646), + [anon_sym_isize] = ACTIONS(5646), + [anon_sym_usize] = ACTIONS(5646), + [anon_sym_f32] = ACTIONS(5646), + [anon_sym_f64] = ACTIONS(5646), + [anon_sym_c_char] = ACTIONS(5646), + [anon_sym_c_schar] = ACTIONS(5646), + [anon_sym_c_uchar] = ACTIONS(5646), + [anon_sym_c_short] = ACTIONS(5646), + [anon_sym_c_ushort] = ACTIONS(5646), + [anon_sym_c_int] = ACTIONS(5646), + [anon_sym_c_uint] = ACTIONS(5646), + [anon_sym_c_long] = ACTIONS(5646), + [anon_sym_c_ulong] = ACTIONS(5646), + [anon_sym_c_longlong] = ACTIONS(5646), + [anon_sym_c_ulonglong] = ACTIONS(5646), + [anon_sym_c_float] = ACTIONS(5646), + [anon_sym_c_double] = ACTIONS(5646), + [anon_sym_c_longdouble] = ACTIONS(5646), + [anon_sym_return] = ACTIONS(5646), + [anon_sym_yield] = ACTIONS(5646), + [anon_sym_COLON] = ACTIONS(5644), + [anon_sym_break] = ACTIONS(5646), + [anon_sym_continue] = ACTIONS(5646), + [anon_sym_defer] = ACTIONS(5646), + [anon_sym_errdefer] = ACTIONS(5646), + [anon_sym_if] = ACTIONS(5646), + [anon_sym_else] = ACTIONS(5646), + [anon_sym_while] = ACTIONS(5646), + [anon_sym_expand] = ACTIONS(5646), + [anon_sym_for] = ACTIONS(5646), + [anon_sym_match] = ACTIONS(5646), + [anon_sym_DOT_DOT] = ACTIONS(5646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5644), + [anon_sym_orelse] = ACTIONS(5646), + [anon_sym_or] = ACTIONS(5646), + [anon_sym_and] = ACTIONS(5646), + [anon_sym_EQ_EQ] = ACTIONS(5644), + [anon_sym_BANG_EQ] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_LT_EQ] = ACTIONS(5644), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5644), + [anon_sym_AMP] = ACTIONS(5644), + [anon_sym_xor] = ACTIONS(5646), + [anon_sym_LT_LT] = ACTIONS(5646), + [anon_sym_GT_GT] = ACTIONS(5644), + [anon_sym_LT_LT_PIPE] = ACTIONS(5644), + [anon_sym_PLUS] = ACTIONS(5644), + [anon_sym_SLASH] = ACTIONS(5644), + [anon_sym_catch] = ACTIONS(5646), + [anon_sym_TILDE] = ACTIONS(5644), + [anon_sym_try] = ACTIONS(5646), + [anon_sym_DOT] = ACTIONS(5646), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_true] = ACTIONS(5646), + [anon_sym_false] = ACTIONS(5646), + [anon_sym_null] = ACTIONS(5646), + [anon_sym_unreachable] = ACTIONS(5646), + [anon_sym_undefined] = ACTIONS(5646), + [sym_sink] = ACTIONS(5646), + [sym_integer] = ACTIONS(5646), + [sym_float] = ACTIONS(5644), + [anon_sym_DQUOTE] = ACTIONS(5644), + [sym_multiline_string] = ACTIONS(5644), + [sym_character] = ACTIONS(5644), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5644), + }, + [STATE(3950)] = { + [ts_builtin_sym_end] = ACTIONS(5006), + [sym_identifier] = ACTIONS(5008), + [anon_sym_import] = ACTIONS(5008), + [anon_sym_test] = ACTIONS(5008), + [anon_sym_hide] = ACTIONS(5008), + [anon_sym_func] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_struct] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_RBRACE] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5006), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_void] = ACTIONS(5008), + [anon_sym_noreturn] = ACTIONS(5008), + [anon_sym_type] = ACTIONS(5008), + [anon_sym_anyopaque] = ACTIONS(5008), + [anon_sym_bool] = ACTIONS(5008), + [anon_sym_int] = ACTIONS(5008), + [anon_sym_uint] = ACTIONS(5008), + [anon_sym_float] = ACTIONS(5008), + [anon_sym_range] = ACTIONS(5008), + [anon_sym_i8] = ACTIONS(5008), + [anon_sym_i16] = ACTIONS(5008), + [anon_sym_i32] = ACTIONS(5008), + [anon_sym_i64] = ACTIONS(5008), + [anon_sym_u8] = ACTIONS(5008), + [anon_sym_u16] = ACTIONS(5008), + [anon_sym_u32] = ACTIONS(5008), + [anon_sym_u64] = ACTIONS(5008), + [anon_sym_isize] = ACTIONS(5008), + [anon_sym_usize] = ACTIONS(5008), + [anon_sym_f32] = ACTIONS(5008), + [anon_sym_f64] = ACTIONS(5008), + [anon_sym_c_char] = ACTIONS(5008), + [anon_sym_c_schar] = ACTIONS(5008), + [anon_sym_c_uchar] = ACTIONS(5008), + [anon_sym_c_short] = ACTIONS(5008), + [anon_sym_c_ushort] = ACTIONS(5008), + [anon_sym_c_int] = ACTIONS(5008), + [anon_sym_c_uint] = ACTIONS(5008), + [anon_sym_c_long] = ACTIONS(5008), + [anon_sym_c_ulong] = ACTIONS(5008), + [anon_sym_c_longlong] = ACTIONS(5008), + [anon_sym_c_ulonglong] = ACTIONS(5008), + [anon_sym_c_float] = ACTIONS(5008), + [anon_sym_c_double] = ACTIONS(5008), + [anon_sym_c_longdouble] = ACTIONS(5008), + [anon_sym_return] = ACTIONS(5008), + [anon_sym_yield] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5006), + [anon_sym_break] = ACTIONS(5008), + [anon_sym_continue] = ACTIONS(5008), + [anon_sym_defer] = ACTIONS(5008), + [anon_sym_errdefer] = ACTIONS(5008), + [anon_sym_if] = ACTIONS(5008), + [anon_sym_else] = ACTIONS(5008), + [anon_sym_while] = ACTIONS(5008), + [anon_sym_expand] = ACTIONS(5008), + [anon_sym_for] = ACTIONS(5008), + [anon_sym_match] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_orelse] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5006), + [anon_sym_BANG_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5008), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_LT_LT_PIPE] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_catch] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5006), + [anon_sym_try] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_true] = ACTIONS(5008), + [anon_sym_false] = ACTIONS(5008), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_unreachable] = ACTIONS(5008), + [anon_sym_undefined] = ACTIONS(5008), + [sym_sink] = ACTIONS(5008), + [sym_integer] = ACTIONS(5008), + [sym_float] = ACTIONS(5006), + [anon_sym_DQUOTE] = ACTIONS(5006), + [sym_multiline_string] = ACTIONS(5006), + [sym_character] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5006), + }, + [STATE(3951)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(4925), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(9903), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4926), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6882), + }, + [STATE(3952)] = { + [ts_builtin_sym_end] = ACTIONS(5010), + [sym_identifier] = ACTIONS(5012), + [anon_sym_import] = ACTIONS(5012), + [anon_sym_test] = ACTIONS(5012), + [anon_sym_hide] = ACTIONS(5012), + [anon_sym_func] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5012), + [anon_sym_struct] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5010), + [anon_sym_RBRACE] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOLLAR] = ACTIONS(5010), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_void] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_type] = ACTIONS(5012), + [anon_sym_anyopaque] = ACTIONS(5012), + [anon_sym_bool] = ACTIONS(5012), + [anon_sym_int] = ACTIONS(5012), + [anon_sym_uint] = ACTIONS(5012), + [anon_sym_float] = ACTIONS(5012), + [anon_sym_range] = ACTIONS(5012), + [anon_sym_i8] = ACTIONS(5012), + [anon_sym_i16] = ACTIONS(5012), + [anon_sym_i32] = ACTIONS(5012), + [anon_sym_i64] = ACTIONS(5012), + [anon_sym_u8] = ACTIONS(5012), + [anon_sym_u16] = ACTIONS(5012), + [anon_sym_u32] = ACTIONS(5012), + [anon_sym_u64] = ACTIONS(5012), + [anon_sym_isize] = ACTIONS(5012), + [anon_sym_usize] = ACTIONS(5012), + [anon_sym_f32] = ACTIONS(5012), + [anon_sym_f64] = ACTIONS(5012), + [anon_sym_c_char] = ACTIONS(5012), + [anon_sym_c_schar] = ACTIONS(5012), + [anon_sym_c_uchar] = ACTIONS(5012), + [anon_sym_c_short] = ACTIONS(5012), + [anon_sym_c_ushort] = ACTIONS(5012), + [anon_sym_c_int] = ACTIONS(5012), + [anon_sym_c_uint] = ACTIONS(5012), + [anon_sym_c_long] = ACTIONS(5012), + [anon_sym_c_ulong] = ACTIONS(5012), + [anon_sym_c_longlong] = ACTIONS(5012), + [anon_sym_c_ulonglong] = ACTIONS(5012), + [anon_sym_c_float] = ACTIONS(5012), + [anon_sym_c_double] = ACTIONS(5012), + [anon_sym_c_longdouble] = ACTIONS(5012), + [anon_sym_return] = ACTIONS(5012), + [anon_sym_yield] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5010), + [anon_sym_break] = ACTIONS(5012), + [anon_sym_continue] = ACTIONS(5012), + [anon_sym_defer] = ACTIONS(5012), + [anon_sym_errdefer] = ACTIONS(5012), + [anon_sym_if] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5012), + [anon_sym_while] = ACTIONS(5012), + [anon_sym_expand] = ACTIONS(5012), + [anon_sym_for] = ACTIONS(5012), + [anon_sym_match] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), + [anon_sym_orelse] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5012), + [anon_sym_and] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5012), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_LT_LT_PIPE] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_catch] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_true] = ACTIONS(5012), + [anon_sym_false] = ACTIONS(5012), + [anon_sym_null] = ACTIONS(5012), + [anon_sym_unreachable] = ACTIONS(5012), + [anon_sym_undefined] = ACTIONS(5012), + [sym_sink] = ACTIONS(5012), + [sym_integer] = ACTIONS(5012), + [sym_float] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(5010), + [sym_multiline_string] = ACTIONS(5010), + [sym_character] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5010), + }, + [STATE(3953)] = { + [ts_builtin_sym_end] = ACTIONS(6004), + [sym_identifier] = ACTIONS(6006), + [anon_sym_import] = ACTIONS(6006), + [anon_sym_test] = ACTIONS(6006), + [anon_sym_hide] = ACTIONS(6006), + [anon_sym_func] = ACTIONS(6006), + [anon_sym_BANG] = ACTIONS(6006), + [anon_sym_struct] = ACTIONS(6006), + [anon_sym_LPAREN] = ACTIONS(6004), + [anon_sym_LBRACE] = ACTIONS(6004), + [anon_sym_RBRACE] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(6004), + [anon_sym_DOLLAR] = ACTIONS(6004), + [anon_sym_PIPE] = ACTIONS(6004), + [anon_sym_QMARK] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(6004), + [anon_sym_LBRACK] = ACTIONS(6004), + [anon_sym_void] = ACTIONS(6006), + [anon_sym_noreturn] = ACTIONS(6006), + [anon_sym_type] = ACTIONS(6006), + [anon_sym_anyopaque] = ACTIONS(6006), + [anon_sym_bool] = ACTIONS(6006), + [anon_sym_int] = ACTIONS(6006), + [anon_sym_uint] = ACTIONS(6006), + [anon_sym_float] = ACTIONS(6006), + [anon_sym_range] = ACTIONS(6006), + [anon_sym_i8] = ACTIONS(6006), + [anon_sym_i16] = ACTIONS(6006), + [anon_sym_i32] = ACTIONS(6006), + [anon_sym_i64] = ACTIONS(6006), + [anon_sym_u8] = ACTIONS(6006), + [anon_sym_u16] = ACTIONS(6006), + [anon_sym_u32] = ACTIONS(6006), + [anon_sym_u64] = ACTIONS(6006), + [anon_sym_isize] = ACTIONS(6006), + [anon_sym_usize] = ACTIONS(6006), + [anon_sym_f32] = ACTIONS(6006), + [anon_sym_f64] = ACTIONS(6006), + [anon_sym_c_char] = ACTIONS(6006), + [anon_sym_c_schar] = ACTIONS(6006), + [anon_sym_c_uchar] = ACTIONS(6006), + [anon_sym_c_short] = ACTIONS(6006), + [anon_sym_c_ushort] = ACTIONS(6006), + [anon_sym_c_int] = ACTIONS(6006), + [anon_sym_c_uint] = ACTIONS(6006), + [anon_sym_c_long] = ACTIONS(6006), + [anon_sym_c_ulong] = ACTIONS(6006), + [anon_sym_c_longlong] = ACTIONS(6006), + [anon_sym_c_ulonglong] = ACTIONS(6006), + [anon_sym_c_float] = ACTIONS(6006), + [anon_sym_c_double] = ACTIONS(6006), + [anon_sym_c_longdouble] = ACTIONS(6006), + [anon_sym_return] = ACTIONS(6006), + [anon_sym_yield] = ACTIONS(6006), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_break] = ACTIONS(6006), + [anon_sym_continue] = ACTIONS(6006), + [anon_sym_defer] = ACTIONS(6006), + [anon_sym_errdefer] = ACTIONS(6006), + [anon_sym_if] = ACTIONS(6006), + [anon_sym_else] = ACTIONS(6006), + [anon_sym_while] = ACTIONS(6006), + [anon_sym_expand] = ACTIONS(6006), + [anon_sym_for] = ACTIONS(6006), + [anon_sym_match] = ACTIONS(6006), + [anon_sym_DOT_DOT] = ACTIONS(6006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6004), + [anon_sym_orelse] = ACTIONS(6006), + [anon_sym_or] = ACTIONS(6006), + [anon_sym_and] = ACTIONS(6006), + [anon_sym_EQ_EQ] = ACTIONS(6004), + [anon_sym_BANG_EQ] = ACTIONS(6004), + [anon_sym_LT] = ACTIONS(6006), + [anon_sym_LT_EQ] = ACTIONS(6004), + [anon_sym_GT] = ACTIONS(6006), + [anon_sym_GT_EQ] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6004), + [anon_sym_xor] = ACTIONS(6006), + [anon_sym_LT_LT] = ACTIONS(6006), + [anon_sym_GT_GT] = ACTIONS(6004), + [anon_sym_LT_LT_PIPE] = ACTIONS(6004), + [anon_sym_PLUS] = ACTIONS(6004), + [anon_sym_SLASH] = ACTIONS(6004), + [anon_sym_catch] = ACTIONS(6006), + [anon_sym_TILDE] = ACTIONS(6004), + [anon_sym_try] = ACTIONS(6006), + [anon_sym_DOT] = ACTIONS(6006), + [anon_sym_CARET] = ACTIONS(6004), + [anon_sym_true] = ACTIONS(6006), + [anon_sym_false] = ACTIONS(6006), + [anon_sym_null] = ACTIONS(6006), + [anon_sym_unreachable] = ACTIONS(6006), + [anon_sym_undefined] = ACTIONS(6006), + [sym_sink] = ACTIONS(6006), + [sym_integer] = ACTIONS(6006), + [sym_float] = ACTIONS(6004), + [anon_sym_DQUOTE] = ACTIONS(6004), + [sym_multiline_string] = ACTIONS(6004), + [sym_character] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6004), + }, + [STATE(3954)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9651), + [sym_error_capture] = STATE(4929), + [sym_if_statement] = STATE(9651), + [sym_while_statement] = STATE(9651), + [sym_for_statement] = STATE(9651), + [sym_match_statement] = STATE(9651), + [sym_expression] = STATE(9654), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4930), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6886), + }, + [STATE(3955)] = { + [ts_builtin_sym_end] = ACTIONS(4750), + [sym_identifier] = ACTIONS(4752), + [anon_sym_import] = ACTIONS(4752), + [anon_sym_test] = ACTIONS(4752), + [anon_sym_hide] = ACTIONS(4752), + [anon_sym_func] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4752), + [anon_sym_struct] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4750), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_DOLLAR] = ACTIONS(4750), + [anon_sym_PIPE] = ACTIONS(4750), + [anon_sym_QMARK] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4750), + [anon_sym_void] = ACTIONS(4752), + [anon_sym_noreturn] = ACTIONS(4752), + [anon_sym_type] = ACTIONS(4752), + [anon_sym_anyopaque] = ACTIONS(4752), + [anon_sym_bool] = ACTIONS(4752), + [anon_sym_int] = ACTIONS(4752), + [anon_sym_uint] = ACTIONS(4752), + [anon_sym_float] = ACTIONS(4752), + [anon_sym_range] = ACTIONS(4752), + [anon_sym_i8] = ACTIONS(4752), + [anon_sym_i16] = ACTIONS(4752), + [anon_sym_i32] = ACTIONS(4752), + [anon_sym_i64] = ACTIONS(4752), + [anon_sym_u8] = ACTIONS(4752), + [anon_sym_u16] = ACTIONS(4752), + [anon_sym_u32] = ACTIONS(4752), + [anon_sym_u64] = ACTIONS(4752), + [anon_sym_isize] = ACTIONS(4752), + [anon_sym_usize] = ACTIONS(4752), + [anon_sym_f32] = ACTIONS(4752), + [anon_sym_f64] = ACTIONS(4752), + [anon_sym_c_char] = ACTIONS(4752), + [anon_sym_c_schar] = ACTIONS(4752), + [anon_sym_c_uchar] = ACTIONS(4752), + [anon_sym_c_short] = ACTIONS(4752), + [anon_sym_c_ushort] = ACTIONS(4752), + [anon_sym_c_int] = ACTIONS(4752), + [anon_sym_c_uint] = ACTIONS(4752), + [anon_sym_c_long] = ACTIONS(4752), + [anon_sym_c_ulong] = ACTIONS(4752), + [anon_sym_c_longlong] = ACTIONS(4752), + [anon_sym_c_ulonglong] = ACTIONS(4752), + [anon_sym_c_float] = ACTIONS(4752), + [anon_sym_c_double] = ACTIONS(4752), + [anon_sym_c_longdouble] = ACTIONS(4752), + [anon_sym_return] = ACTIONS(4752), + [anon_sym_yield] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_break] = ACTIONS(4752), + [anon_sym_continue] = ACTIONS(4752), + [anon_sym_defer] = ACTIONS(4752), + [anon_sym_errdefer] = ACTIONS(4752), + [anon_sym_if] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4752), + [anon_sym_while] = ACTIONS(4752), + [anon_sym_expand] = ACTIONS(4752), + [anon_sym_for] = ACTIONS(4752), + [anon_sym_match] = ACTIONS(4752), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4750), + [anon_sym_orelse] = ACTIONS(4752), + [anon_sym_or] = ACTIONS(4752), + [anon_sym_and] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_LT] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4750), + [anon_sym_AMP] = ACTIONS(4750), + [anon_sym_xor] = ACTIONS(4752), + [anon_sym_LT_LT] = ACTIONS(4752), + [anon_sym_GT_GT] = ACTIONS(4750), + [anon_sym_LT_LT_PIPE] = ACTIONS(4750), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_catch] = ACTIONS(4752), + [anon_sym_TILDE] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4752), + [anon_sym_CARET] = ACTIONS(4750), + [anon_sym_true] = ACTIONS(4752), + [anon_sym_false] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4752), + [anon_sym_unreachable] = ACTIONS(4752), + [anon_sym_undefined] = ACTIONS(4752), + [sym_sink] = ACTIONS(4752), + [sym_integer] = ACTIONS(4752), + [sym_float] = ACTIONS(4750), + [anon_sym_DQUOTE] = ACTIONS(4750), + [sym_multiline_string] = ACTIONS(4750), + [sym_character] = ACTIONS(4750), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4750), + }, + [STATE(3956)] = { + [ts_builtin_sym_end] = ACTIONS(5014), + [sym_identifier] = ACTIONS(5016), + [anon_sym_import] = ACTIONS(5016), + [anon_sym_test] = ACTIONS(5016), + [anon_sym_hide] = ACTIONS(5016), + [anon_sym_func] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_struct] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_void] = ACTIONS(5016), + [anon_sym_noreturn] = ACTIONS(5016), + [anon_sym_type] = ACTIONS(5016), + [anon_sym_anyopaque] = ACTIONS(5016), + [anon_sym_bool] = ACTIONS(5016), + [anon_sym_int] = ACTIONS(5016), + [anon_sym_uint] = ACTIONS(5016), + [anon_sym_float] = ACTIONS(5016), + [anon_sym_range] = ACTIONS(5016), + [anon_sym_i8] = ACTIONS(5016), + [anon_sym_i16] = ACTIONS(5016), + [anon_sym_i32] = ACTIONS(5016), + [anon_sym_i64] = ACTIONS(5016), + [anon_sym_u8] = ACTIONS(5016), + [anon_sym_u16] = ACTIONS(5016), + [anon_sym_u32] = ACTIONS(5016), + [anon_sym_u64] = ACTIONS(5016), + [anon_sym_isize] = ACTIONS(5016), + [anon_sym_usize] = ACTIONS(5016), + [anon_sym_f32] = ACTIONS(5016), + [anon_sym_f64] = ACTIONS(5016), + [anon_sym_c_char] = ACTIONS(5016), + [anon_sym_c_schar] = ACTIONS(5016), + [anon_sym_c_uchar] = ACTIONS(5016), + [anon_sym_c_short] = ACTIONS(5016), + [anon_sym_c_ushort] = ACTIONS(5016), + [anon_sym_c_int] = ACTIONS(5016), + [anon_sym_c_uint] = ACTIONS(5016), + [anon_sym_c_long] = ACTIONS(5016), + [anon_sym_c_ulong] = ACTIONS(5016), + [anon_sym_c_longlong] = ACTIONS(5016), + [anon_sym_c_ulonglong] = ACTIONS(5016), + [anon_sym_c_float] = ACTIONS(5016), + [anon_sym_c_double] = ACTIONS(5016), + [anon_sym_c_longdouble] = ACTIONS(5016), + [anon_sym_return] = ACTIONS(5016), + [anon_sym_yield] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_break] = ACTIONS(5016), + [anon_sym_continue] = ACTIONS(5016), + [anon_sym_defer] = ACTIONS(5016), + [anon_sym_errdefer] = ACTIONS(5016), + [anon_sym_if] = ACTIONS(5016), + [anon_sym_else] = ACTIONS(5016), + [anon_sym_while] = ACTIONS(5016), + [anon_sym_expand] = ACTIONS(5016), + [anon_sym_for] = ACTIONS(5016), + [anon_sym_match] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5014), + [anon_sym_orelse] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5016), + [anon_sym_and] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_LT_LT_PIPE] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_catch] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_true] = ACTIONS(5016), + [anon_sym_false] = ACTIONS(5016), + [anon_sym_null] = ACTIONS(5016), + [anon_sym_unreachable] = ACTIONS(5016), + [anon_sym_undefined] = ACTIONS(5016), + [sym_sink] = ACTIONS(5016), + [sym_integer] = ACTIONS(5016), + [sym_float] = ACTIONS(5014), + [anon_sym_DQUOTE] = ACTIONS(5014), + [sym_multiline_string] = ACTIONS(5014), + [sym_character] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5014), + }, + [STATE(3957)] = { + [ts_builtin_sym_end] = ACTIONS(5018), + [sym_identifier] = ACTIONS(5020), + [anon_sym_import] = ACTIONS(5020), + [anon_sym_test] = ACTIONS(5020), + [anon_sym_hide] = ACTIONS(5020), + [anon_sym_func] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5018), + [anon_sym_RBRACE] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_void] = ACTIONS(5020), + [anon_sym_noreturn] = ACTIONS(5020), + [anon_sym_type] = ACTIONS(5020), + [anon_sym_anyopaque] = ACTIONS(5020), + [anon_sym_bool] = ACTIONS(5020), + [anon_sym_int] = ACTIONS(5020), + [anon_sym_uint] = ACTIONS(5020), + [anon_sym_float] = ACTIONS(5020), + [anon_sym_range] = ACTIONS(5020), + [anon_sym_i8] = ACTIONS(5020), + [anon_sym_i16] = ACTIONS(5020), + [anon_sym_i32] = ACTIONS(5020), + [anon_sym_i64] = ACTIONS(5020), + [anon_sym_u8] = ACTIONS(5020), + [anon_sym_u16] = ACTIONS(5020), + [anon_sym_u32] = ACTIONS(5020), + [anon_sym_u64] = ACTIONS(5020), + [anon_sym_isize] = ACTIONS(5020), + [anon_sym_usize] = ACTIONS(5020), + [anon_sym_f32] = ACTIONS(5020), + [anon_sym_f64] = ACTIONS(5020), + [anon_sym_c_char] = ACTIONS(5020), + [anon_sym_c_schar] = ACTIONS(5020), + [anon_sym_c_uchar] = ACTIONS(5020), + [anon_sym_c_short] = ACTIONS(5020), + [anon_sym_c_ushort] = ACTIONS(5020), + [anon_sym_c_int] = ACTIONS(5020), + [anon_sym_c_uint] = ACTIONS(5020), + [anon_sym_c_long] = ACTIONS(5020), + [anon_sym_c_ulong] = ACTIONS(5020), + [anon_sym_c_longlong] = ACTIONS(5020), + [anon_sym_c_ulonglong] = ACTIONS(5020), + [anon_sym_c_float] = ACTIONS(5020), + [anon_sym_c_double] = ACTIONS(5020), + [anon_sym_c_longdouble] = ACTIONS(5020), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_continue] = ACTIONS(5020), + [anon_sym_defer] = ACTIONS(5020), + [anon_sym_errdefer] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_expand] = ACTIONS(5020), + [anon_sym_for] = ACTIONS(5020), + [anon_sym_match] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5018), + [anon_sym_orelse] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5020), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym_LT_LT_PIPE] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_catch] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5018), + [anon_sym_try] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_true] = ACTIONS(5020), + [anon_sym_false] = ACTIONS(5020), + [anon_sym_null] = ACTIONS(5020), + [anon_sym_unreachable] = ACTIONS(5020), + [anon_sym_undefined] = ACTIONS(5020), + [sym_sink] = ACTIONS(5020), + [sym_integer] = ACTIONS(5020), + [sym_float] = ACTIONS(5018), + [anon_sym_DQUOTE] = ACTIONS(5018), + [sym_multiline_string] = ACTIONS(5018), + [sym_character] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5018), + }, + [STATE(3958)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(3970), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6888), + }, + [STATE(3959)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(3979), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6890), + }, + [STATE(3960)] = { + [ts_builtin_sym_end] = ACTIONS(5022), + [sym_identifier] = ACTIONS(5024), + [anon_sym_import] = ACTIONS(5024), + [anon_sym_test] = ACTIONS(5024), + [anon_sym_hide] = ACTIONS(5024), + [anon_sym_func] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_struct] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_void] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_type] = ACTIONS(5024), + [anon_sym_anyopaque] = ACTIONS(5024), + [anon_sym_bool] = ACTIONS(5024), + [anon_sym_int] = ACTIONS(5024), + [anon_sym_uint] = ACTIONS(5024), + [anon_sym_float] = ACTIONS(5024), + [anon_sym_range] = ACTIONS(5024), + [anon_sym_i8] = ACTIONS(5024), + [anon_sym_i16] = ACTIONS(5024), + [anon_sym_i32] = ACTIONS(5024), + [anon_sym_i64] = ACTIONS(5024), + [anon_sym_u8] = ACTIONS(5024), + [anon_sym_u16] = ACTIONS(5024), + [anon_sym_u32] = ACTIONS(5024), + [anon_sym_u64] = ACTIONS(5024), + [anon_sym_isize] = ACTIONS(5024), + [anon_sym_usize] = ACTIONS(5024), + [anon_sym_f32] = ACTIONS(5024), + [anon_sym_f64] = ACTIONS(5024), + [anon_sym_c_char] = ACTIONS(5024), + [anon_sym_c_schar] = ACTIONS(5024), + [anon_sym_c_uchar] = ACTIONS(5024), + [anon_sym_c_short] = ACTIONS(5024), + [anon_sym_c_ushort] = ACTIONS(5024), + [anon_sym_c_int] = ACTIONS(5024), + [anon_sym_c_uint] = ACTIONS(5024), + [anon_sym_c_long] = ACTIONS(5024), + [anon_sym_c_ulong] = ACTIONS(5024), + [anon_sym_c_longlong] = ACTIONS(5024), + [anon_sym_c_ulonglong] = ACTIONS(5024), + [anon_sym_c_float] = ACTIONS(5024), + [anon_sym_c_double] = ACTIONS(5024), + [anon_sym_c_longdouble] = ACTIONS(5024), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_yield] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_defer] = ACTIONS(5024), + [anon_sym_errdefer] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_while] = ACTIONS(5024), + [anon_sym_expand] = ACTIONS(5024), + [anon_sym_for] = ACTIONS(5024), + [anon_sym_match] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5022), + [anon_sym_orelse] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_LT_LT_PIPE] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_catch] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_unreachable] = ACTIONS(5024), + [anon_sym_undefined] = ACTIONS(5024), + [sym_sink] = ACTIONS(5024), + [sym_integer] = ACTIONS(5024), + [sym_float] = ACTIONS(5022), + [anon_sym_DQUOTE] = ACTIONS(5022), + [sym_multiline_string] = ACTIONS(5022), + [sym_character] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5022), + }, + [STATE(3961)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9549), + [sym_labeled_block] = STATE(9549), + [sym_if_statement] = STATE(9549), + [sym_while_statement] = STATE(9549), + [sym_for_statement] = STATE(9549), + [sym_match_statement] = STATE(9549), + [sym__value] = STATE(9549), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3965), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6892), + }, + [STATE(3962)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3968), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6894), + }, + [STATE(3963)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4063), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6896), + }, + [STATE(3964)] = { + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_test] = ACTIONS(2712), + [anon_sym_hide] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_COLON] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_defer] = ACTIONS(2712), + [anon_sym_errdefer] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_expand] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(2712), + [anon_sym_and] = ACTIONS(2712), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_xor] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_unreachable] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [sym_sink] = ACTIONS(2712), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [sym_multiline_string] = ACTIONS(2710), + [sym_character] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(3965)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9522), + [sym_labeled_block] = STATE(9522), + [sym_if_statement] = STATE(9522), + [sym_while_statement] = STATE(9522), + [sym_for_statement] = STATE(9522), + [sym_match_statement] = STATE(9522), + [sym__value] = STATE(9522), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3966)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9523), + [sym_labeled_block] = STATE(9523), + [sym_if_statement] = STATE(9523), + [sym_while_statement] = STATE(9523), + [sym_for_statement] = STATE(9523), + [sym_match_statement] = STATE(9523), + [sym__value] = STATE(9523), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3971), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6898), + }, + [STATE(3967)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9584), + [sym_labeled_block] = STATE(9584), + [sym_if_statement] = STATE(9584), + [sym_while_statement] = STATE(9584), + [sym_for_statement] = STATE(9584), + [sym_match_statement] = STATE(9584), + [sym__value] = STATE(9584), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3972), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6900), + }, + [STATE(3968)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3969)] = { + [ts_builtin_sym_end] = ACTIONS(6270), + [sym_identifier] = ACTIONS(6272), + [anon_sym_import] = ACTIONS(6272), + [anon_sym_test] = ACTIONS(6272), + [anon_sym_hide] = ACTIONS(6272), + [anon_sym_func] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(6272), + [anon_sym_struct] = ACTIONS(6272), + [anon_sym_LPAREN] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6270), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_DOLLAR] = ACTIONS(6270), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_void] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym_type] = ACTIONS(6272), + [anon_sym_anyopaque] = ACTIONS(6272), + [anon_sym_bool] = ACTIONS(6272), + [anon_sym_int] = ACTIONS(6272), + [anon_sym_uint] = ACTIONS(6272), + [anon_sym_float] = ACTIONS(6272), + [anon_sym_range] = ACTIONS(6272), + [anon_sym_i8] = ACTIONS(6272), + [anon_sym_i16] = ACTIONS(6272), + [anon_sym_i32] = ACTIONS(6272), + [anon_sym_i64] = ACTIONS(6272), + [anon_sym_u8] = ACTIONS(6272), + [anon_sym_u16] = ACTIONS(6272), + [anon_sym_u32] = ACTIONS(6272), + [anon_sym_u64] = ACTIONS(6272), + [anon_sym_isize] = ACTIONS(6272), + [anon_sym_usize] = ACTIONS(6272), + [anon_sym_f32] = ACTIONS(6272), + [anon_sym_f64] = ACTIONS(6272), + [anon_sym_c_char] = ACTIONS(6272), + [anon_sym_c_schar] = ACTIONS(6272), + [anon_sym_c_uchar] = ACTIONS(6272), + [anon_sym_c_short] = ACTIONS(6272), + [anon_sym_c_ushort] = ACTIONS(6272), + [anon_sym_c_int] = ACTIONS(6272), + [anon_sym_c_uint] = ACTIONS(6272), + [anon_sym_c_long] = ACTIONS(6272), + [anon_sym_c_ulong] = ACTIONS(6272), + [anon_sym_c_longlong] = ACTIONS(6272), + [anon_sym_c_ulonglong] = ACTIONS(6272), + [anon_sym_c_float] = ACTIONS(6272), + [anon_sym_c_double] = ACTIONS(6272), + [anon_sym_c_longdouble] = ACTIONS(6272), + [anon_sym_return] = ACTIONS(6272), + [anon_sym_yield] = ACTIONS(6272), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_break] = ACTIONS(6272), + [anon_sym_continue] = ACTIONS(6272), + [anon_sym_defer] = ACTIONS(6272), + [anon_sym_errdefer] = ACTIONS(6272), + [anon_sym_if] = ACTIONS(6272), + [anon_sym_else] = ACTIONS(6272), + [anon_sym_while] = ACTIONS(6272), + [anon_sym_expand] = ACTIONS(6272), + [anon_sym_for] = ACTIONS(6272), + [anon_sym_match] = ACTIONS(6272), + [anon_sym_DOT_DOT] = ACTIONS(6272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6270), + [anon_sym_orelse] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6272), + [anon_sym_and] = ACTIONS(6272), + [anon_sym_EQ_EQ] = ACTIONS(6270), + [anon_sym_BANG_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_GT] = ACTIONS(6272), + [anon_sym_GT_EQ] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6272), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym_LT_LT_PIPE] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_catch] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6270), + [anon_sym_try] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6272), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_true] = ACTIONS(6272), + [anon_sym_false] = ACTIONS(6272), + [anon_sym_null] = ACTIONS(6272), + [anon_sym_unreachable] = ACTIONS(6272), + [anon_sym_undefined] = ACTIONS(6272), + [sym_sink] = ACTIONS(6272), + [sym_integer] = ACTIONS(6272), + [sym_float] = ACTIONS(6270), + [anon_sym_DQUOTE] = ACTIONS(6270), + [sym_multiline_string] = ACTIONS(6270), + [sym_character] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6270), + }, + [STATE(3970)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3971)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9611), + [sym_labeled_block] = STATE(9611), + [sym_if_statement] = STATE(9611), + [sym_while_statement] = STATE(9611), + [sym_for_statement] = STATE(9611), + [sym_match_statement] = STATE(9611), + [sym__value] = STATE(9611), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3972)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9615), + [sym_labeled_block] = STATE(9615), + [sym_if_statement] = STATE(9615), + [sym_while_statement] = STATE(9615), + [sym_for_statement] = STATE(9615), + [sym_match_statement] = STATE(9615), + [sym__value] = STATE(9615), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3973)] = { + [ts_builtin_sym_end] = ACTIONS(4754), + [sym_identifier] = ACTIONS(4756), + [anon_sym_import] = ACTIONS(4756), + [anon_sym_test] = ACTIONS(4756), + [anon_sym_hide] = ACTIONS(4756), + [anon_sym_func] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4756), + [anon_sym_struct] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4754), + [anon_sym_RBRACE] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4754), + [anon_sym_QMARK] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4754), + [anon_sym_void] = ACTIONS(4756), + [anon_sym_noreturn] = ACTIONS(4756), + [anon_sym_type] = ACTIONS(4756), + [anon_sym_anyopaque] = ACTIONS(4756), + [anon_sym_bool] = ACTIONS(4756), + [anon_sym_int] = ACTIONS(4756), + [anon_sym_uint] = ACTIONS(4756), + [anon_sym_float] = ACTIONS(4756), + [anon_sym_range] = ACTIONS(4756), + [anon_sym_i8] = ACTIONS(4756), + [anon_sym_i16] = ACTIONS(4756), + [anon_sym_i32] = ACTIONS(4756), + [anon_sym_i64] = ACTIONS(4756), + [anon_sym_u8] = ACTIONS(4756), + [anon_sym_u16] = ACTIONS(4756), + [anon_sym_u32] = ACTIONS(4756), + [anon_sym_u64] = ACTIONS(4756), + [anon_sym_isize] = ACTIONS(4756), + [anon_sym_usize] = ACTIONS(4756), + [anon_sym_f32] = ACTIONS(4756), + [anon_sym_f64] = ACTIONS(4756), + [anon_sym_c_char] = ACTIONS(4756), + [anon_sym_c_schar] = ACTIONS(4756), + [anon_sym_c_uchar] = ACTIONS(4756), + [anon_sym_c_short] = ACTIONS(4756), + [anon_sym_c_ushort] = ACTIONS(4756), + [anon_sym_c_int] = ACTIONS(4756), + [anon_sym_c_uint] = ACTIONS(4756), + [anon_sym_c_long] = ACTIONS(4756), + [anon_sym_c_ulong] = ACTIONS(4756), + [anon_sym_c_longlong] = ACTIONS(4756), + [anon_sym_c_ulonglong] = ACTIONS(4756), + [anon_sym_c_float] = ACTIONS(4756), + [anon_sym_c_double] = ACTIONS(4756), + [anon_sym_c_longdouble] = ACTIONS(4756), + [anon_sym_return] = ACTIONS(4756), + [anon_sym_yield] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4756), + [anon_sym_continue] = ACTIONS(4756), + [anon_sym_defer] = ACTIONS(4756), + [anon_sym_errdefer] = ACTIONS(4756), + [anon_sym_if] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4756), + [anon_sym_while] = ACTIONS(4756), + [anon_sym_expand] = ACTIONS(4756), + [anon_sym_for] = ACTIONS(4756), + [anon_sym_match] = ACTIONS(4756), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4754), + [anon_sym_orelse] = ACTIONS(4756), + [anon_sym_or] = ACTIONS(4756), + [anon_sym_and] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4754), + [anon_sym_xor] = ACTIONS(4756), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_LT_LT_PIPE] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_catch] = ACTIONS(4756), + [anon_sym_TILDE] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4756), + [anon_sym_CARET] = ACTIONS(4754), + [anon_sym_true] = ACTIONS(4756), + [anon_sym_false] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4756), + [anon_sym_unreachable] = ACTIONS(4756), + [anon_sym_undefined] = ACTIONS(4756), + [sym_sink] = ACTIONS(4756), + [sym_integer] = ACTIONS(4756), + [sym_float] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [sym_multiline_string] = ACTIONS(4754), + [sym_character] = ACTIONS(4754), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4754), + }, + [STATE(3974)] = { + [ts_builtin_sym_end] = ACTIONS(4758), + [sym_identifier] = ACTIONS(4760), + [anon_sym_import] = ACTIONS(4760), + [anon_sym_test] = ACTIONS(4760), + [anon_sym_hide] = ACTIONS(4760), + [anon_sym_func] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4760), + [anon_sym_struct] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4758), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_QMARK] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_void] = ACTIONS(4760), + [anon_sym_noreturn] = ACTIONS(4760), + [anon_sym_type] = ACTIONS(4760), + [anon_sym_anyopaque] = ACTIONS(4760), + [anon_sym_bool] = ACTIONS(4760), + [anon_sym_int] = ACTIONS(4760), + [anon_sym_uint] = ACTIONS(4760), + [anon_sym_float] = ACTIONS(4760), + [anon_sym_range] = ACTIONS(4760), + [anon_sym_i8] = ACTIONS(4760), + [anon_sym_i16] = ACTIONS(4760), + [anon_sym_i32] = ACTIONS(4760), + [anon_sym_i64] = ACTIONS(4760), + [anon_sym_u8] = ACTIONS(4760), + [anon_sym_u16] = ACTIONS(4760), + [anon_sym_u32] = ACTIONS(4760), + [anon_sym_u64] = ACTIONS(4760), + [anon_sym_isize] = ACTIONS(4760), + [anon_sym_usize] = ACTIONS(4760), + [anon_sym_f32] = ACTIONS(4760), + [anon_sym_f64] = ACTIONS(4760), + [anon_sym_c_char] = ACTIONS(4760), + [anon_sym_c_schar] = ACTIONS(4760), + [anon_sym_c_uchar] = ACTIONS(4760), + [anon_sym_c_short] = ACTIONS(4760), + [anon_sym_c_ushort] = ACTIONS(4760), + [anon_sym_c_int] = ACTIONS(4760), + [anon_sym_c_uint] = ACTIONS(4760), + [anon_sym_c_long] = ACTIONS(4760), + [anon_sym_c_ulong] = ACTIONS(4760), + [anon_sym_c_longlong] = ACTIONS(4760), + [anon_sym_c_ulonglong] = ACTIONS(4760), + [anon_sym_c_float] = ACTIONS(4760), + [anon_sym_c_double] = ACTIONS(4760), + [anon_sym_c_longdouble] = ACTIONS(4760), + [anon_sym_return] = ACTIONS(4760), + [anon_sym_yield] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_break] = ACTIONS(4760), + [anon_sym_continue] = ACTIONS(4760), + [anon_sym_defer] = ACTIONS(4760), + [anon_sym_errdefer] = ACTIONS(4760), + [anon_sym_if] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4760), + [anon_sym_while] = ACTIONS(4760), + [anon_sym_expand] = ACTIONS(4760), + [anon_sym_for] = ACTIONS(4760), + [anon_sym_match] = ACTIONS(4760), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4758), + [anon_sym_orelse] = ACTIONS(4760), + [anon_sym_or] = ACTIONS(4760), + [anon_sym_and] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4758), + [anon_sym_AMP] = ACTIONS(4758), + [anon_sym_xor] = ACTIONS(4760), + [anon_sym_LT_LT] = ACTIONS(4760), + [anon_sym_GT_GT] = ACTIONS(4758), + [anon_sym_LT_LT_PIPE] = ACTIONS(4758), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_catch] = ACTIONS(4760), + [anon_sym_TILDE] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4760), + [anon_sym_CARET] = ACTIONS(4758), + [anon_sym_true] = ACTIONS(4760), + [anon_sym_false] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4760), + [anon_sym_unreachable] = ACTIONS(4760), + [anon_sym_undefined] = ACTIONS(4760), + [sym_sink] = ACTIONS(4760), + [sym_integer] = ACTIONS(4760), + [sym_float] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [sym_multiline_string] = ACTIONS(4758), + [sym_character] = ACTIONS(4758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4758), + }, + [STATE(3975)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6902), + }, + [STATE(3976)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(3983), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6904), + }, + [STATE(3977)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4283), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6906), + }, + [STATE(3978)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(3984), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6908), + }, + [STATE(3979)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3980)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9522), + [sym_labeled_block] = STATE(9522), + [sym_if_statement] = STATE(9522), + [sym_while_statement] = STATE(9522), + [sym_for_statement] = STATE(9522), + [sym_match_statement] = STATE(9522), + [sym__value] = STATE(9522), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3981)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9523), + [sym_labeled_block] = STATE(9523), + [sym_if_statement] = STATE(9523), + [sym_while_statement] = STATE(9523), + [sym_for_statement] = STATE(9523), + [sym_match_statement] = STATE(9523), + [sym__value] = STATE(9523), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4006), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6910), + }, + [STATE(3982)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9584), + [sym_labeled_block] = STATE(9584), + [sym_if_statement] = STATE(9584), + [sym_while_statement] = STATE(9584), + [sym_for_statement] = STATE(9584), + [sym_match_statement] = STATE(9584), + [sym__value] = STATE(9584), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4018), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6912), + }, + [STATE(3983)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3984)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3985)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9701), + [sym_labeled_block] = STATE(9701), + [sym_if_statement] = STATE(9701), + [sym_while_statement] = STATE(9701), + [sym_for_statement] = STATE(9701), + [sym_match_statement] = STATE(9701), + [sym__value] = STATE(9701), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3986)] = { + [ts_builtin_sym_end] = ACTIONS(6274), + [sym_identifier] = ACTIONS(6276), + [anon_sym_import] = ACTIONS(6276), + [anon_sym_test] = ACTIONS(6276), + [anon_sym_hide] = ACTIONS(6276), + [anon_sym_func] = ACTIONS(6276), + [anon_sym_BANG] = ACTIONS(6276), + [anon_sym_struct] = ACTIONS(6276), + [anon_sym_LPAREN] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(6274), + [anon_sym_RBRACE] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6274), + [anon_sym_DOLLAR] = ACTIONS(6274), + [anon_sym_PIPE] = ACTIONS(6274), + [anon_sym_QMARK] = ACTIONS(6274), + [anon_sym_STAR] = ACTIONS(6274), + [anon_sym_LBRACK] = ACTIONS(6274), + [anon_sym_void] = ACTIONS(6276), + [anon_sym_noreturn] = ACTIONS(6276), + [anon_sym_type] = ACTIONS(6276), + [anon_sym_anyopaque] = ACTIONS(6276), + [anon_sym_bool] = ACTIONS(6276), + [anon_sym_int] = ACTIONS(6276), + [anon_sym_uint] = ACTIONS(6276), + [anon_sym_float] = ACTIONS(6276), + [anon_sym_range] = ACTIONS(6276), + [anon_sym_i8] = ACTIONS(6276), + [anon_sym_i16] = ACTIONS(6276), + [anon_sym_i32] = ACTIONS(6276), + [anon_sym_i64] = ACTIONS(6276), + [anon_sym_u8] = ACTIONS(6276), + [anon_sym_u16] = ACTIONS(6276), + [anon_sym_u32] = ACTIONS(6276), + [anon_sym_u64] = ACTIONS(6276), + [anon_sym_isize] = ACTIONS(6276), + [anon_sym_usize] = ACTIONS(6276), + [anon_sym_f32] = ACTIONS(6276), + [anon_sym_f64] = ACTIONS(6276), + [anon_sym_c_char] = ACTIONS(6276), + [anon_sym_c_schar] = ACTIONS(6276), + [anon_sym_c_uchar] = ACTIONS(6276), + [anon_sym_c_short] = ACTIONS(6276), + [anon_sym_c_ushort] = ACTIONS(6276), + [anon_sym_c_int] = ACTIONS(6276), + [anon_sym_c_uint] = ACTIONS(6276), + [anon_sym_c_long] = ACTIONS(6276), + [anon_sym_c_ulong] = ACTIONS(6276), + [anon_sym_c_longlong] = ACTIONS(6276), + [anon_sym_c_ulonglong] = ACTIONS(6276), + [anon_sym_c_float] = ACTIONS(6276), + [anon_sym_c_double] = ACTIONS(6276), + [anon_sym_c_longdouble] = ACTIONS(6276), + [anon_sym_return] = ACTIONS(6276), + [anon_sym_yield] = ACTIONS(6276), + [anon_sym_COLON] = ACTIONS(6274), + [anon_sym_break] = ACTIONS(6276), + [anon_sym_continue] = ACTIONS(6276), + [anon_sym_defer] = ACTIONS(6276), + [anon_sym_errdefer] = ACTIONS(6276), + [anon_sym_if] = ACTIONS(6276), + [anon_sym_else] = ACTIONS(6276), + [anon_sym_while] = ACTIONS(6276), + [anon_sym_expand] = ACTIONS(6276), + [anon_sym_for] = ACTIONS(6276), + [anon_sym_match] = ACTIONS(6276), + [anon_sym_DOT_DOT] = ACTIONS(6276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6274), + [anon_sym_orelse] = ACTIONS(6276), + [anon_sym_or] = ACTIONS(6276), + [anon_sym_and] = ACTIONS(6276), + [anon_sym_EQ_EQ] = ACTIONS(6274), + [anon_sym_BANG_EQ] = ACTIONS(6274), + [anon_sym_LT] = ACTIONS(6276), + [anon_sym_LT_EQ] = ACTIONS(6274), + [anon_sym_GT] = ACTIONS(6276), + [anon_sym_GT_EQ] = ACTIONS(6274), + [anon_sym_AMP] = ACTIONS(6274), + [anon_sym_xor] = ACTIONS(6276), + [anon_sym_LT_LT] = ACTIONS(6276), + [anon_sym_GT_GT] = ACTIONS(6274), + [anon_sym_LT_LT_PIPE] = ACTIONS(6274), + [anon_sym_PLUS] = ACTIONS(6274), + [anon_sym_SLASH] = ACTIONS(6274), + [anon_sym_catch] = ACTIONS(6276), + [anon_sym_TILDE] = ACTIONS(6274), + [anon_sym_try] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(6276), + [anon_sym_CARET] = ACTIONS(6274), + [anon_sym_true] = ACTIONS(6276), + [anon_sym_false] = ACTIONS(6276), + [anon_sym_null] = ACTIONS(6276), + [anon_sym_unreachable] = ACTIONS(6276), + [anon_sym_undefined] = ACTIONS(6276), + [sym_sink] = ACTIONS(6276), + [sym_integer] = ACTIONS(6276), + [sym_float] = ACTIONS(6274), + [anon_sym_DQUOTE] = ACTIONS(6274), + [sym_multiline_string] = ACTIONS(6274), + [sym_character] = ACTIONS(6274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6274), + }, + [STATE(3987)] = { + [ts_builtin_sym_end] = ACTIONS(4762), + [sym_identifier] = ACTIONS(4764), + [anon_sym_import] = ACTIONS(4764), + [anon_sym_test] = ACTIONS(4764), + [anon_sym_hide] = ACTIONS(4764), + [anon_sym_func] = ACTIONS(4764), + [anon_sym_BANG] = ACTIONS(4764), + [anon_sym_struct] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_DOLLAR] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_QMARK] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4762), + [anon_sym_void] = ACTIONS(4764), + [anon_sym_noreturn] = ACTIONS(4764), + [anon_sym_type] = ACTIONS(4764), + [anon_sym_anyopaque] = ACTIONS(4764), + [anon_sym_bool] = ACTIONS(4764), + [anon_sym_int] = ACTIONS(4764), + [anon_sym_uint] = ACTIONS(4764), + [anon_sym_float] = ACTIONS(4764), + [anon_sym_range] = ACTIONS(4764), + [anon_sym_i8] = ACTIONS(4764), + [anon_sym_i16] = ACTIONS(4764), + [anon_sym_i32] = ACTIONS(4764), + [anon_sym_i64] = ACTIONS(4764), + [anon_sym_u8] = ACTIONS(4764), + [anon_sym_u16] = ACTIONS(4764), + [anon_sym_u32] = ACTIONS(4764), + [anon_sym_u64] = ACTIONS(4764), + [anon_sym_isize] = ACTIONS(4764), + [anon_sym_usize] = ACTIONS(4764), + [anon_sym_f32] = ACTIONS(4764), + [anon_sym_f64] = ACTIONS(4764), + [anon_sym_c_char] = ACTIONS(4764), + [anon_sym_c_schar] = ACTIONS(4764), + [anon_sym_c_uchar] = ACTIONS(4764), + [anon_sym_c_short] = ACTIONS(4764), + [anon_sym_c_ushort] = ACTIONS(4764), + [anon_sym_c_int] = ACTIONS(4764), + [anon_sym_c_uint] = ACTIONS(4764), + [anon_sym_c_long] = ACTIONS(4764), + [anon_sym_c_ulong] = ACTIONS(4764), + [anon_sym_c_longlong] = ACTIONS(4764), + [anon_sym_c_ulonglong] = ACTIONS(4764), + [anon_sym_c_float] = ACTIONS(4764), + [anon_sym_c_double] = ACTIONS(4764), + [anon_sym_c_longdouble] = ACTIONS(4764), + [anon_sym_return] = ACTIONS(4764), + [anon_sym_yield] = ACTIONS(4764), + [anon_sym_COLON] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4764), + [anon_sym_continue] = ACTIONS(4764), + [anon_sym_defer] = ACTIONS(4764), + [anon_sym_errdefer] = ACTIONS(4764), + [anon_sym_if] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4764), + [anon_sym_while] = ACTIONS(4764), + [anon_sym_expand] = ACTIONS(4764), + [anon_sym_for] = ACTIONS(4764), + [anon_sym_match] = ACTIONS(4764), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4762), + [anon_sym_orelse] = ACTIONS(4764), + [anon_sym_or] = ACTIONS(4764), + [anon_sym_and] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_xor] = ACTIONS(4764), + [anon_sym_LT_LT] = ACTIONS(4764), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_LT_LT_PIPE] = ACTIONS(4762), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_catch] = ACTIONS(4764), + [anon_sym_TILDE] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4764), + [anon_sym_CARET] = ACTIONS(4762), + [anon_sym_true] = ACTIONS(4764), + [anon_sym_false] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(4764), + [anon_sym_unreachable] = ACTIONS(4764), + [anon_sym_undefined] = ACTIONS(4764), + [sym_sink] = ACTIONS(4764), + [sym_integer] = ACTIONS(4764), + [sym_float] = ACTIONS(4762), + [anon_sym_DQUOTE] = ACTIONS(4762), + [sym_multiline_string] = ACTIONS(4762), + [sym_character] = ACTIONS(4762), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4762), + }, + [STATE(3988)] = { + [ts_builtin_sym_end] = ACTIONS(4766), + [sym_identifier] = ACTIONS(4768), + [anon_sym_import] = ACTIONS(4768), + [anon_sym_test] = ACTIONS(4768), + [anon_sym_hide] = ACTIONS(4768), + [anon_sym_func] = ACTIONS(4768), + [anon_sym_BANG] = ACTIONS(4768), + [anon_sym_struct] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4766), + [anon_sym_RBRACE] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_QMARK] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_void] = ACTIONS(4768), + [anon_sym_noreturn] = ACTIONS(4768), + [anon_sym_type] = ACTIONS(4768), + [anon_sym_anyopaque] = ACTIONS(4768), + [anon_sym_bool] = ACTIONS(4768), + [anon_sym_int] = ACTIONS(4768), + [anon_sym_uint] = ACTIONS(4768), + [anon_sym_float] = ACTIONS(4768), + [anon_sym_range] = ACTIONS(4768), + [anon_sym_i8] = ACTIONS(4768), + [anon_sym_i16] = ACTIONS(4768), + [anon_sym_i32] = ACTIONS(4768), + [anon_sym_i64] = ACTIONS(4768), + [anon_sym_u8] = ACTIONS(4768), + [anon_sym_u16] = ACTIONS(4768), + [anon_sym_u32] = ACTIONS(4768), + [anon_sym_u64] = ACTIONS(4768), + [anon_sym_isize] = ACTIONS(4768), + [anon_sym_usize] = ACTIONS(4768), + [anon_sym_f32] = ACTIONS(4768), + [anon_sym_f64] = ACTIONS(4768), + [anon_sym_c_char] = ACTIONS(4768), + [anon_sym_c_schar] = ACTIONS(4768), + [anon_sym_c_uchar] = ACTIONS(4768), + [anon_sym_c_short] = ACTIONS(4768), + [anon_sym_c_ushort] = ACTIONS(4768), + [anon_sym_c_int] = ACTIONS(4768), + [anon_sym_c_uint] = ACTIONS(4768), + [anon_sym_c_long] = ACTIONS(4768), + [anon_sym_c_ulong] = ACTIONS(4768), + [anon_sym_c_longlong] = ACTIONS(4768), + [anon_sym_c_ulonglong] = ACTIONS(4768), + [anon_sym_c_float] = ACTIONS(4768), + [anon_sym_c_double] = ACTIONS(4768), + [anon_sym_c_longdouble] = ACTIONS(4768), + [anon_sym_return] = ACTIONS(4768), + [anon_sym_yield] = ACTIONS(4768), + [anon_sym_COLON] = ACTIONS(4766), + [anon_sym_break] = ACTIONS(4768), + [anon_sym_continue] = ACTIONS(4768), + [anon_sym_defer] = ACTIONS(4768), + [anon_sym_errdefer] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_while] = ACTIONS(4768), + [anon_sym_expand] = ACTIONS(4768), + [anon_sym_for] = ACTIONS(4768), + [anon_sym_match] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4766), + [anon_sym_orelse] = ACTIONS(4768), + [anon_sym_or] = ACTIONS(4768), + [anon_sym_and] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4766), + [anon_sym_AMP] = ACTIONS(4766), + [anon_sym_xor] = ACTIONS(4768), + [anon_sym_LT_LT] = ACTIONS(4768), + [anon_sym_GT_GT] = ACTIONS(4766), + [anon_sym_LT_LT_PIPE] = ACTIONS(4766), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_catch] = ACTIONS(4768), + [anon_sym_TILDE] = ACTIONS(4766), + [anon_sym_try] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_CARET] = ACTIONS(4766), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_unreachable] = ACTIONS(4768), + [anon_sym_undefined] = ACTIONS(4768), + [sym_sink] = ACTIONS(4768), + [sym_integer] = ACTIONS(4768), + [sym_float] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [sym_multiline_string] = ACTIONS(4766), + [sym_character] = ACTIONS(4766), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4766), + }, + [STATE(3989)] = { + [ts_builtin_sym_end] = ACTIONS(6286), + [sym_identifier] = ACTIONS(6288), + [anon_sym_import] = ACTIONS(6288), + [anon_sym_test] = ACTIONS(6288), + [anon_sym_hide] = ACTIONS(6288), + [anon_sym_func] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(6288), + [anon_sym_struct] = ACTIONS(6288), + [anon_sym_LPAREN] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(6286), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6286), + [anon_sym_DOLLAR] = ACTIONS(6286), + [anon_sym_PIPE] = ACTIONS(6286), + [anon_sym_QMARK] = ACTIONS(6286), + [anon_sym_STAR] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_void] = ACTIONS(6288), + [anon_sym_noreturn] = ACTIONS(6288), + [anon_sym_type] = ACTIONS(6288), + [anon_sym_anyopaque] = ACTIONS(6288), + [anon_sym_bool] = ACTIONS(6288), + [anon_sym_int] = ACTIONS(6288), + [anon_sym_uint] = ACTIONS(6288), + [anon_sym_float] = ACTIONS(6288), + [anon_sym_range] = ACTIONS(6288), + [anon_sym_i8] = ACTIONS(6288), + [anon_sym_i16] = ACTIONS(6288), + [anon_sym_i32] = ACTIONS(6288), + [anon_sym_i64] = ACTIONS(6288), + [anon_sym_u8] = ACTIONS(6288), + [anon_sym_u16] = ACTIONS(6288), + [anon_sym_u32] = ACTIONS(6288), + [anon_sym_u64] = ACTIONS(6288), + [anon_sym_isize] = ACTIONS(6288), + [anon_sym_usize] = ACTIONS(6288), + [anon_sym_f32] = ACTIONS(6288), + [anon_sym_f64] = ACTIONS(6288), + [anon_sym_c_char] = ACTIONS(6288), + [anon_sym_c_schar] = ACTIONS(6288), + [anon_sym_c_uchar] = ACTIONS(6288), + [anon_sym_c_short] = ACTIONS(6288), + [anon_sym_c_ushort] = ACTIONS(6288), + [anon_sym_c_int] = ACTIONS(6288), + [anon_sym_c_uint] = ACTIONS(6288), + [anon_sym_c_long] = ACTIONS(6288), + [anon_sym_c_ulong] = ACTIONS(6288), + [anon_sym_c_longlong] = ACTIONS(6288), + [anon_sym_c_ulonglong] = ACTIONS(6288), + [anon_sym_c_float] = ACTIONS(6288), + [anon_sym_c_double] = ACTIONS(6288), + [anon_sym_c_longdouble] = ACTIONS(6288), + [anon_sym_return] = ACTIONS(6288), + [anon_sym_yield] = ACTIONS(6288), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_break] = ACTIONS(6288), + [anon_sym_continue] = ACTIONS(6288), + [anon_sym_defer] = ACTIONS(6288), + [anon_sym_errdefer] = ACTIONS(6288), + [anon_sym_if] = ACTIONS(6288), + [anon_sym_else] = ACTIONS(6288), + [anon_sym_while] = ACTIONS(6288), + [anon_sym_expand] = ACTIONS(6288), + [anon_sym_for] = ACTIONS(6288), + [anon_sym_match] = ACTIONS(6288), + [anon_sym_DOT_DOT] = ACTIONS(6288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6286), + [anon_sym_orelse] = ACTIONS(6288), + [anon_sym_or] = ACTIONS(6288), + [anon_sym_and] = ACTIONS(6288), + [anon_sym_EQ_EQ] = ACTIONS(6286), + [anon_sym_BANG_EQ] = ACTIONS(6286), + [anon_sym_LT] = ACTIONS(6288), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6288), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_AMP] = ACTIONS(6286), + [anon_sym_xor] = ACTIONS(6288), + [anon_sym_LT_LT] = ACTIONS(6288), + [anon_sym_GT_GT] = ACTIONS(6286), + [anon_sym_LT_LT_PIPE] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6286), + [anon_sym_SLASH] = ACTIONS(6286), + [anon_sym_catch] = ACTIONS(6288), + [anon_sym_TILDE] = ACTIONS(6286), + [anon_sym_try] = ACTIONS(6288), + [anon_sym_DOT] = ACTIONS(6288), + [anon_sym_CARET] = ACTIONS(6286), + [anon_sym_true] = ACTIONS(6288), + [anon_sym_false] = ACTIONS(6288), + [anon_sym_null] = ACTIONS(6288), + [anon_sym_unreachable] = ACTIONS(6288), + [anon_sym_undefined] = ACTIONS(6288), + [sym_sink] = ACTIONS(6288), + [sym_integer] = ACTIONS(6288), + [sym_float] = ACTIONS(6286), + [anon_sym_DQUOTE] = ACTIONS(6286), + [sym_multiline_string] = ACTIONS(6286), + [sym_character] = ACTIONS(6286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6286), + }, + [STATE(3990)] = { + [ts_builtin_sym_end] = ACTIONS(4770), + [sym_identifier] = ACTIONS(4772), + [anon_sym_import] = ACTIONS(4772), + [anon_sym_test] = ACTIONS(4772), + [anon_sym_hide] = ACTIONS(4772), + [anon_sym_func] = ACTIONS(4772), + [anon_sym_BANG] = ACTIONS(4772), + [anon_sym_struct] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_QMARK] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_void] = ACTIONS(4772), + [anon_sym_noreturn] = ACTIONS(4772), + [anon_sym_type] = ACTIONS(4772), + [anon_sym_anyopaque] = ACTIONS(4772), + [anon_sym_bool] = ACTIONS(4772), + [anon_sym_int] = ACTIONS(4772), + [anon_sym_uint] = ACTIONS(4772), + [anon_sym_float] = ACTIONS(4772), + [anon_sym_range] = ACTIONS(4772), + [anon_sym_i8] = ACTIONS(4772), + [anon_sym_i16] = ACTIONS(4772), + [anon_sym_i32] = ACTIONS(4772), + [anon_sym_i64] = ACTIONS(4772), + [anon_sym_u8] = ACTIONS(4772), + [anon_sym_u16] = ACTIONS(4772), + [anon_sym_u32] = ACTIONS(4772), + [anon_sym_u64] = ACTIONS(4772), + [anon_sym_isize] = ACTIONS(4772), + [anon_sym_usize] = ACTIONS(4772), + [anon_sym_f32] = ACTIONS(4772), + [anon_sym_f64] = ACTIONS(4772), + [anon_sym_c_char] = ACTIONS(4772), + [anon_sym_c_schar] = ACTIONS(4772), + [anon_sym_c_uchar] = ACTIONS(4772), + [anon_sym_c_short] = ACTIONS(4772), + [anon_sym_c_ushort] = ACTIONS(4772), + [anon_sym_c_int] = ACTIONS(4772), + [anon_sym_c_uint] = ACTIONS(4772), + [anon_sym_c_long] = ACTIONS(4772), + [anon_sym_c_ulong] = ACTIONS(4772), + [anon_sym_c_longlong] = ACTIONS(4772), + [anon_sym_c_ulonglong] = ACTIONS(4772), + [anon_sym_c_float] = ACTIONS(4772), + [anon_sym_c_double] = ACTIONS(4772), + [anon_sym_c_longdouble] = ACTIONS(4772), + [anon_sym_return] = ACTIONS(4772), + [anon_sym_yield] = ACTIONS(4772), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_break] = ACTIONS(4772), + [anon_sym_continue] = ACTIONS(4772), + [anon_sym_defer] = ACTIONS(4772), + [anon_sym_errdefer] = ACTIONS(4772), + [anon_sym_if] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4772), + [anon_sym_while] = ACTIONS(4772), + [anon_sym_expand] = ACTIONS(4772), + [anon_sym_for] = ACTIONS(4772), + [anon_sym_match] = ACTIONS(4772), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4770), + [anon_sym_orelse] = ACTIONS(4772), + [anon_sym_or] = ACTIONS(4772), + [anon_sym_and] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_AMP] = ACTIONS(4770), + [anon_sym_xor] = ACTIONS(4772), + [anon_sym_LT_LT] = ACTIONS(4772), + [anon_sym_GT_GT] = ACTIONS(4770), + [anon_sym_LT_LT_PIPE] = ACTIONS(4770), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_catch] = ACTIONS(4772), + [anon_sym_TILDE] = ACTIONS(4770), + [anon_sym_try] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4772), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym_true] = ACTIONS(4772), + [anon_sym_false] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(4772), + [anon_sym_unreachable] = ACTIONS(4772), + [anon_sym_undefined] = ACTIONS(4772), + [sym_sink] = ACTIONS(4772), + [sym_integer] = ACTIONS(4772), + [sym_float] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [sym_multiline_string] = ACTIONS(4770), + [sym_character] = ACTIONS(4770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4770), + }, + [STATE(3991)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9549), + [sym_labeled_block] = STATE(9549), + [sym_if_statement] = STATE(9549), + [sym_while_statement] = STATE(9549), + [sym_for_statement] = STATE(9549), + [sym_match_statement] = STATE(9549), + [sym__value] = STATE(9549), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4381), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6914), + }, + [STATE(3992)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4444), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6916), + }, + [STATE(3993)] = { + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_anyopaque] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_int] = ACTIONS(1256), + [anon_sym_uint] = ACTIONS(1256), + [anon_sym_float] = ACTIONS(1256), + [anon_sym_range] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_c_char] = ACTIONS(1256), + [anon_sym_c_schar] = ACTIONS(1256), + [anon_sym_c_uchar] = ACTIONS(1256), + [anon_sym_c_short] = ACTIONS(1256), + [anon_sym_c_ushort] = ACTIONS(1256), + [anon_sym_c_int] = ACTIONS(1256), + [anon_sym_c_uint] = ACTIONS(1256), + [anon_sym_c_long] = ACTIONS(1256), + [anon_sym_c_ulong] = ACTIONS(1256), + [anon_sym_c_longlong] = ACTIONS(1256), + [anon_sym_c_ulonglong] = ACTIONS(1256), + [anon_sym_c_float] = ACTIONS(1256), + [anon_sym_c_double] = ACTIONS(1256), + [anon_sym_c_longdouble] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_defer] = ACTIONS(1256), + [anon_sym_errdefer] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_expand] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_try] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1256), + [anon_sym_unreachable] = ACTIONS(1256), + [anon_sym_undefined] = ACTIONS(1256), + [sym_sink] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [sym_float] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_multiline_string] = ACTIONS(1252), + [sym_character] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(3994)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8669), + [sym_error_capture] = STATE(4869), + [sym_if_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_match_statement] = STATE(8669), + [sym_expression] = STATE(9002), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4870), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6920), + }, + [STATE(3995)] = { + [ts_builtin_sym_end] = ACTIONS(6290), + [sym_identifier] = ACTIONS(6292), + [anon_sym_import] = ACTIONS(6292), + [anon_sym_test] = ACTIONS(6292), + [anon_sym_hide] = ACTIONS(6292), + [anon_sym_func] = ACTIONS(6292), + [anon_sym_BANG] = ACTIONS(6292), + [anon_sym_struct] = ACTIONS(6292), + [anon_sym_LPAREN] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(6290), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_DOLLAR] = ACTIONS(6290), + [anon_sym_PIPE] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6290), + [anon_sym_STAR] = ACTIONS(6290), + [anon_sym_LBRACK] = ACTIONS(6290), + [anon_sym_void] = ACTIONS(6292), + [anon_sym_noreturn] = ACTIONS(6292), + [anon_sym_type] = ACTIONS(6292), + [anon_sym_anyopaque] = ACTIONS(6292), + [anon_sym_bool] = ACTIONS(6292), + [anon_sym_int] = ACTIONS(6292), + [anon_sym_uint] = ACTIONS(6292), + [anon_sym_float] = ACTIONS(6292), + [anon_sym_range] = ACTIONS(6292), + [anon_sym_i8] = ACTIONS(6292), + [anon_sym_i16] = ACTIONS(6292), + [anon_sym_i32] = ACTIONS(6292), + [anon_sym_i64] = ACTIONS(6292), + [anon_sym_u8] = ACTIONS(6292), + [anon_sym_u16] = ACTIONS(6292), + [anon_sym_u32] = ACTIONS(6292), + [anon_sym_u64] = ACTIONS(6292), + [anon_sym_isize] = ACTIONS(6292), + [anon_sym_usize] = ACTIONS(6292), + [anon_sym_f32] = ACTIONS(6292), + [anon_sym_f64] = ACTIONS(6292), + [anon_sym_c_char] = ACTIONS(6292), + [anon_sym_c_schar] = ACTIONS(6292), + [anon_sym_c_uchar] = ACTIONS(6292), + [anon_sym_c_short] = ACTIONS(6292), + [anon_sym_c_ushort] = ACTIONS(6292), + [anon_sym_c_int] = ACTIONS(6292), + [anon_sym_c_uint] = ACTIONS(6292), + [anon_sym_c_long] = ACTIONS(6292), + [anon_sym_c_ulong] = ACTIONS(6292), + [anon_sym_c_longlong] = ACTIONS(6292), + [anon_sym_c_ulonglong] = ACTIONS(6292), + [anon_sym_c_float] = ACTIONS(6292), + [anon_sym_c_double] = ACTIONS(6292), + [anon_sym_c_longdouble] = ACTIONS(6292), + [anon_sym_return] = ACTIONS(6292), + [anon_sym_yield] = ACTIONS(6292), + [anon_sym_COLON] = ACTIONS(6290), + [anon_sym_break] = ACTIONS(6292), + [anon_sym_continue] = ACTIONS(6292), + [anon_sym_defer] = ACTIONS(6292), + [anon_sym_errdefer] = ACTIONS(6292), + [anon_sym_if] = ACTIONS(6292), + [anon_sym_else] = ACTIONS(6292), + [anon_sym_while] = ACTIONS(6292), + [anon_sym_expand] = ACTIONS(6292), + [anon_sym_for] = ACTIONS(6292), + [anon_sym_match] = ACTIONS(6292), + [anon_sym_DOT_DOT] = ACTIONS(6292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6290), + [anon_sym_orelse] = ACTIONS(6292), + [anon_sym_or] = ACTIONS(6292), + [anon_sym_and] = ACTIONS(6292), + [anon_sym_EQ_EQ] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6290), + [anon_sym_LT] = ACTIONS(6292), + [anon_sym_LT_EQ] = ACTIONS(6290), + [anon_sym_GT] = ACTIONS(6292), + [anon_sym_GT_EQ] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6290), + [anon_sym_xor] = ACTIONS(6292), + [anon_sym_LT_LT] = ACTIONS(6292), + [anon_sym_GT_GT] = ACTIONS(6290), + [anon_sym_LT_LT_PIPE] = ACTIONS(6290), + [anon_sym_PLUS] = ACTIONS(6290), + [anon_sym_SLASH] = ACTIONS(6290), + [anon_sym_catch] = ACTIONS(6292), + [anon_sym_TILDE] = ACTIONS(6290), + [anon_sym_try] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_CARET] = ACTIONS(6290), + [anon_sym_true] = ACTIONS(6292), + [anon_sym_false] = ACTIONS(6292), + [anon_sym_null] = ACTIONS(6292), + [anon_sym_unreachable] = ACTIONS(6292), + [anon_sym_undefined] = ACTIONS(6292), + [sym_sink] = ACTIONS(6292), + [sym_integer] = ACTIONS(6292), + [sym_float] = ACTIONS(6290), + [anon_sym_DQUOTE] = ACTIONS(6290), + [sym_multiline_string] = ACTIONS(6290), + [sym_character] = ACTIONS(6290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6290), + }, + [STATE(3996)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10808), + [sym_error_capture] = STATE(4933), + [sym_if_statement] = STATE(10808), + [sym_while_statement] = STATE(10808), + [sym_for_statement] = STATE(10808), + [sym_match_statement] = STATE(10808), + [sym_expression] = STATE(10326), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4934), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6926), + }, + [STATE(3997)] = { + [ts_builtin_sym_end] = ACTIONS(5026), + [sym_identifier] = ACTIONS(5028), + [anon_sym_import] = ACTIONS(5028), + [anon_sym_test] = ACTIONS(5028), + [anon_sym_hide] = ACTIONS(5028), + [anon_sym_func] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_void] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_type] = ACTIONS(5028), + [anon_sym_anyopaque] = ACTIONS(5028), + [anon_sym_bool] = ACTIONS(5028), + [anon_sym_int] = ACTIONS(5028), + [anon_sym_uint] = ACTIONS(5028), + [anon_sym_float] = ACTIONS(5028), + [anon_sym_range] = ACTIONS(5028), + [anon_sym_i8] = ACTIONS(5028), + [anon_sym_i16] = ACTIONS(5028), + [anon_sym_i32] = ACTIONS(5028), + [anon_sym_i64] = ACTIONS(5028), + [anon_sym_u8] = ACTIONS(5028), + [anon_sym_u16] = ACTIONS(5028), + [anon_sym_u32] = ACTIONS(5028), + [anon_sym_u64] = ACTIONS(5028), + [anon_sym_isize] = ACTIONS(5028), + [anon_sym_usize] = ACTIONS(5028), + [anon_sym_f32] = ACTIONS(5028), + [anon_sym_f64] = ACTIONS(5028), + [anon_sym_c_char] = ACTIONS(5028), + [anon_sym_c_schar] = ACTIONS(5028), + [anon_sym_c_uchar] = ACTIONS(5028), + [anon_sym_c_short] = ACTIONS(5028), + [anon_sym_c_ushort] = ACTIONS(5028), + [anon_sym_c_int] = ACTIONS(5028), + [anon_sym_c_uint] = ACTIONS(5028), + [anon_sym_c_long] = ACTIONS(5028), + [anon_sym_c_ulong] = ACTIONS(5028), + [anon_sym_c_longlong] = ACTIONS(5028), + [anon_sym_c_ulonglong] = ACTIONS(5028), + [anon_sym_c_float] = ACTIONS(5028), + [anon_sym_c_double] = ACTIONS(5028), + [anon_sym_c_longdouble] = ACTIONS(5028), + [anon_sym_return] = ACTIONS(5028), + [anon_sym_yield] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_break] = ACTIONS(5028), + [anon_sym_continue] = ACTIONS(5028), + [anon_sym_defer] = ACTIONS(5028), + [anon_sym_errdefer] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5028), + [anon_sym_while] = ACTIONS(5028), + [anon_sym_expand] = ACTIONS(5028), + [anon_sym_for] = ACTIONS(5028), + [anon_sym_match] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5026), + [anon_sym_orelse] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_LT_LT_PIPE] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_catch] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5028), + [anon_sym_false] = ACTIONS(5028), + [anon_sym_null] = ACTIONS(5028), + [anon_sym_unreachable] = ACTIONS(5028), + [anon_sym_undefined] = ACTIONS(5028), + [sym_sink] = ACTIONS(5028), + [sym_integer] = ACTIONS(5028), + [sym_float] = ACTIONS(5026), + [anon_sym_DQUOTE] = ACTIONS(5026), + [sym_multiline_string] = ACTIONS(5026), + [sym_character] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5026), + }, + [STATE(3998)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3563), + [sym_labeled_block] = STATE(3563), + [sym_if_statement] = STATE(3563), + [sym_while_statement] = STATE(3563), + [sym_for_statement] = STATE(3563), + [sym_match_statement] = STATE(3563), + [sym__value] = STATE(3563), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(3999)] = { + [ts_builtin_sym_end] = ACTIONS(5030), + [sym_identifier] = ACTIONS(5032), + [anon_sym_import] = ACTIONS(5032), + [anon_sym_test] = ACTIONS(5032), + [anon_sym_hide] = ACTIONS(5032), + [anon_sym_func] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5032), + [anon_sym_struct] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_void] = ACTIONS(5032), + [anon_sym_noreturn] = ACTIONS(5032), + [anon_sym_type] = ACTIONS(5032), + [anon_sym_anyopaque] = ACTIONS(5032), + [anon_sym_bool] = ACTIONS(5032), + [anon_sym_int] = ACTIONS(5032), + [anon_sym_uint] = ACTIONS(5032), + [anon_sym_float] = ACTIONS(5032), + [anon_sym_range] = ACTIONS(5032), + [anon_sym_i8] = ACTIONS(5032), + [anon_sym_i16] = ACTIONS(5032), + [anon_sym_i32] = ACTIONS(5032), + [anon_sym_i64] = ACTIONS(5032), + [anon_sym_u8] = ACTIONS(5032), + [anon_sym_u16] = ACTIONS(5032), + [anon_sym_u32] = ACTIONS(5032), + [anon_sym_u64] = ACTIONS(5032), + [anon_sym_isize] = ACTIONS(5032), + [anon_sym_usize] = ACTIONS(5032), + [anon_sym_f32] = ACTIONS(5032), + [anon_sym_f64] = ACTIONS(5032), + [anon_sym_c_char] = ACTIONS(5032), + [anon_sym_c_schar] = ACTIONS(5032), + [anon_sym_c_uchar] = ACTIONS(5032), + [anon_sym_c_short] = ACTIONS(5032), + [anon_sym_c_ushort] = ACTIONS(5032), + [anon_sym_c_int] = ACTIONS(5032), + [anon_sym_c_uint] = ACTIONS(5032), + [anon_sym_c_long] = ACTIONS(5032), + [anon_sym_c_ulong] = ACTIONS(5032), + [anon_sym_c_longlong] = ACTIONS(5032), + [anon_sym_c_ulonglong] = ACTIONS(5032), + [anon_sym_c_float] = ACTIONS(5032), + [anon_sym_c_double] = ACTIONS(5032), + [anon_sym_c_longdouble] = ACTIONS(5032), + [anon_sym_return] = ACTIONS(5032), + [anon_sym_yield] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_break] = ACTIONS(5032), + [anon_sym_continue] = ACTIONS(5032), + [anon_sym_defer] = ACTIONS(5032), + [anon_sym_errdefer] = ACTIONS(5032), + [anon_sym_if] = ACTIONS(5032), + [anon_sym_else] = ACTIONS(5032), + [anon_sym_while] = ACTIONS(5032), + [anon_sym_expand] = ACTIONS(5032), + [anon_sym_for] = ACTIONS(5032), + [anon_sym_match] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5030), + [anon_sym_orelse] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_xor] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_LT_LT_PIPE] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_catch] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_try] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_true] = ACTIONS(5032), + [anon_sym_false] = ACTIONS(5032), + [anon_sym_null] = ACTIONS(5032), + [anon_sym_unreachable] = ACTIONS(5032), + [anon_sym_undefined] = ACTIONS(5032), + [sym_sink] = ACTIONS(5032), + [sym_integer] = ACTIONS(5032), + [sym_float] = ACTIONS(5030), + [anon_sym_DQUOTE] = ACTIONS(5030), + [sym_multiline_string] = ACTIONS(5030), + [sym_character] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5030), + }, + [STATE(4000)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3564), + [sym_labeled_block] = STATE(3564), + [sym_if_statement] = STATE(3564), + [sym_while_statement] = STATE(3564), + [sym_for_statement] = STATE(3564), + [sym_match_statement] = STATE(3564), + [sym__value] = STATE(3564), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(4128), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6928), + }, + [STATE(4001)] = { + [ts_builtin_sym_end] = ACTIONS(6294), + [sym_identifier] = ACTIONS(6296), + [anon_sym_import] = ACTIONS(6296), + [anon_sym_test] = ACTIONS(6296), + [anon_sym_hide] = ACTIONS(6296), + [anon_sym_func] = ACTIONS(6296), + [anon_sym_BANG] = ACTIONS(6296), + [anon_sym_struct] = ACTIONS(6296), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_DOLLAR] = ACTIONS(6294), + [anon_sym_PIPE] = ACTIONS(6294), + [anon_sym_QMARK] = ACTIONS(6294), + [anon_sym_STAR] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_void] = ACTIONS(6296), + [anon_sym_noreturn] = ACTIONS(6296), + [anon_sym_type] = ACTIONS(6296), + [anon_sym_anyopaque] = ACTIONS(6296), + [anon_sym_bool] = ACTIONS(6296), + [anon_sym_int] = ACTIONS(6296), + [anon_sym_uint] = ACTIONS(6296), + [anon_sym_float] = ACTIONS(6296), + [anon_sym_range] = ACTIONS(6296), + [anon_sym_i8] = ACTIONS(6296), + [anon_sym_i16] = ACTIONS(6296), + [anon_sym_i32] = ACTIONS(6296), + [anon_sym_i64] = ACTIONS(6296), + [anon_sym_u8] = ACTIONS(6296), + [anon_sym_u16] = ACTIONS(6296), + [anon_sym_u32] = ACTIONS(6296), + [anon_sym_u64] = ACTIONS(6296), + [anon_sym_isize] = ACTIONS(6296), + [anon_sym_usize] = ACTIONS(6296), + [anon_sym_f32] = ACTIONS(6296), + [anon_sym_f64] = ACTIONS(6296), + [anon_sym_c_char] = ACTIONS(6296), + [anon_sym_c_schar] = ACTIONS(6296), + [anon_sym_c_uchar] = ACTIONS(6296), + [anon_sym_c_short] = ACTIONS(6296), + [anon_sym_c_ushort] = ACTIONS(6296), + [anon_sym_c_int] = ACTIONS(6296), + [anon_sym_c_uint] = ACTIONS(6296), + [anon_sym_c_long] = ACTIONS(6296), + [anon_sym_c_ulong] = ACTIONS(6296), + [anon_sym_c_longlong] = ACTIONS(6296), + [anon_sym_c_ulonglong] = ACTIONS(6296), + [anon_sym_c_float] = ACTIONS(6296), + [anon_sym_c_double] = ACTIONS(6296), + [anon_sym_c_longdouble] = ACTIONS(6296), + [anon_sym_return] = ACTIONS(6296), + [anon_sym_yield] = ACTIONS(6296), + [anon_sym_COLON] = ACTIONS(6294), + [anon_sym_break] = ACTIONS(6296), + [anon_sym_continue] = ACTIONS(6296), + [anon_sym_defer] = ACTIONS(6296), + [anon_sym_errdefer] = ACTIONS(6296), + [anon_sym_if] = ACTIONS(6296), + [anon_sym_else] = ACTIONS(6296), + [anon_sym_while] = ACTIONS(6296), + [anon_sym_expand] = ACTIONS(6296), + [anon_sym_for] = ACTIONS(6296), + [anon_sym_match] = ACTIONS(6296), + [anon_sym_DOT_DOT] = ACTIONS(6296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_orelse] = ACTIONS(6296), + [anon_sym_or] = ACTIONS(6296), + [anon_sym_and] = ACTIONS(6296), + [anon_sym_EQ_EQ] = ACTIONS(6294), + [anon_sym_BANG_EQ] = ACTIONS(6294), + [anon_sym_LT] = ACTIONS(6296), + [anon_sym_LT_EQ] = ACTIONS(6294), + [anon_sym_GT] = ACTIONS(6296), + [anon_sym_GT_EQ] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6294), + [anon_sym_xor] = ACTIONS(6296), + [anon_sym_LT_LT] = ACTIONS(6296), + [anon_sym_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT_PIPE] = ACTIONS(6294), + [anon_sym_PLUS] = ACTIONS(6294), + [anon_sym_SLASH] = ACTIONS(6294), + [anon_sym_catch] = ACTIONS(6296), + [anon_sym_TILDE] = ACTIONS(6294), + [anon_sym_try] = ACTIONS(6296), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6294), + [anon_sym_true] = ACTIONS(6296), + [anon_sym_false] = ACTIONS(6296), + [anon_sym_null] = ACTIONS(6296), + [anon_sym_unreachable] = ACTIONS(6296), + [anon_sym_undefined] = ACTIONS(6296), + [sym_sink] = ACTIONS(6296), + [sym_integer] = ACTIONS(6296), + [sym_float] = ACTIONS(6294), + [anon_sym_DQUOTE] = ACTIONS(6294), + [sym_multiline_string] = ACTIONS(6294), + [sym_character] = ACTIONS(6294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6294), + }, + [STATE(4002)] = { + [ts_builtin_sym_end] = ACTIONS(5034), + [sym_identifier] = ACTIONS(5036), + [anon_sym_import] = ACTIONS(5036), + [anon_sym_test] = ACTIONS(5036), + [anon_sym_hide] = ACTIONS(5036), + [anon_sym_func] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_struct] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_void] = ACTIONS(5036), + [anon_sym_noreturn] = ACTIONS(5036), + [anon_sym_type] = ACTIONS(5036), + [anon_sym_anyopaque] = ACTIONS(5036), + [anon_sym_bool] = ACTIONS(5036), + [anon_sym_int] = ACTIONS(5036), + [anon_sym_uint] = ACTIONS(5036), + [anon_sym_float] = ACTIONS(5036), + [anon_sym_range] = ACTIONS(5036), + [anon_sym_i8] = ACTIONS(5036), + [anon_sym_i16] = ACTIONS(5036), + [anon_sym_i32] = ACTIONS(5036), + [anon_sym_i64] = ACTIONS(5036), + [anon_sym_u8] = ACTIONS(5036), + [anon_sym_u16] = ACTIONS(5036), + [anon_sym_u32] = ACTIONS(5036), + [anon_sym_u64] = ACTIONS(5036), + [anon_sym_isize] = ACTIONS(5036), + [anon_sym_usize] = ACTIONS(5036), + [anon_sym_f32] = ACTIONS(5036), + [anon_sym_f64] = ACTIONS(5036), + [anon_sym_c_char] = ACTIONS(5036), + [anon_sym_c_schar] = ACTIONS(5036), + [anon_sym_c_uchar] = ACTIONS(5036), + [anon_sym_c_short] = ACTIONS(5036), + [anon_sym_c_ushort] = ACTIONS(5036), + [anon_sym_c_int] = ACTIONS(5036), + [anon_sym_c_uint] = ACTIONS(5036), + [anon_sym_c_long] = ACTIONS(5036), + [anon_sym_c_ulong] = ACTIONS(5036), + [anon_sym_c_longlong] = ACTIONS(5036), + [anon_sym_c_ulonglong] = ACTIONS(5036), + [anon_sym_c_float] = ACTIONS(5036), + [anon_sym_c_double] = ACTIONS(5036), + [anon_sym_c_longdouble] = ACTIONS(5036), + [anon_sym_return] = ACTIONS(5036), + [anon_sym_yield] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_break] = ACTIONS(5036), + [anon_sym_continue] = ACTIONS(5036), + [anon_sym_defer] = ACTIONS(5036), + [anon_sym_errdefer] = ACTIONS(5036), + [anon_sym_if] = ACTIONS(5036), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_while] = ACTIONS(5036), + [anon_sym_expand] = ACTIONS(5036), + [anon_sym_for] = ACTIONS(5036), + [anon_sym_match] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5034), + [anon_sym_orelse] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_xor] = ACTIONS(5036), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_LT_LT_PIPE] = ACTIONS(5034), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_catch] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5034), + [anon_sym_try] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym_true] = ACTIONS(5036), + [anon_sym_false] = ACTIONS(5036), + [anon_sym_null] = ACTIONS(5036), + [anon_sym_unreachable] = ACTIONS(5036), + [anon_sym_undefined] = ACTIONS(5036), + [sym_sink] = ACTIONS(5036), + [sym_integer] = ACTIONS(5036), + [sym_float] = ACTIONS(5034), + [anon_sym_DQUOTE] = ACTIONS(5034), + [sym_multiline_string] = ACTIONS(5034), + [sym_character] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5034), + }, + [STATE(4003)] = { + [ts_builtin_sym_end] = ACTIONS(6024), + [sym_identifier] = ACTIONS(6026), + [anon_sym_import] = ACTIONS(6026), + [anon_sym_test] = ACTIONS(6026), + [anon_sym_hide] = ACTIONS(6026), + [anon_sym_func] = ACTIONS(6026), + [anon_sym_BANG] = ACTIONS(6930), + [anon_sym_struct] = ACTIONS(6026), + [anon_sym_LPAREN] = ACTIONS(6024), + [anon_sym_LBRACE] = ACTIONS(6024), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_DASH] = ACTIONS(6024), + [anon_sym_DOLLAR] = ACTIONS(6024), + [anon_sym_PIPE] = ACTIONS(6024), + [anon_sym_QMARK] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(6024), + [anon_sym_LBRACK] = ACTIONS(6024), + [anon_sym_void] = ACTIONS(6026), + [anon_sym_noreturn] = ACTIONS(6026), + [anon_sym_type] = ACTIONS(6026), + [anon_sym_anyopaque] = ACTIONS(6026), + [anon_sym_bool] = ACTIONS(6026), + [anon_sym_int] = ACTIONS(6026), + [anon_sym_uint] = ACTIONS(6026), + [anon_sym_float] = ACTIONS(6026), + [anon_sym_range] = ACTIONS(6026), + [anon_sym_i8] = ACTIONS(6026), + [anon_sym_i16] = ACTIONS(6026), + [anon_sym_i32] = ACTIONS(6026), + [anon_sym_i64] = ACTIONS(6026), + [anon_sym_u8] = ACTIONS(6026), + [anon_sym_u16] = ACTIONS(6026), + [anon_sym_u32] = ACTIONS(6026), + [anon_sym_u64] = ACTIONS(6026), + [anon_sym_isize] = ACTIONS(6026), + [anon_sym_usize] = ACTIONS(6026), + [anon_sym_f32] = ACTIONS(6026), + [anon_sym_f64] = ACTIONS(6026), + [anon_sym_c_char] = ACTIONS(6026), + [anon_sym_c_schar] = ACTIONS(6026), + [anon_sym_c_uchar] = ACTIONS(6026), + [anon_sym_c_short] = ACTIONS(6026), + [anon_sym_c_ushort] = ACTIONS(6026), + [anon_sym_c_int] = ACTIONS(6026), + [anon_sym_c_uint] = ACTIONS(6026), + [anon_sym_c_long] = ACTIONS(6026), + [anon_sym_c_ulong] = ACTIONS(6026), + [anon_sym_c_longlong] = ACTIONS(6026), + [anon_sym_c_ulonglong] = ACTIONS(6026), + [anon_sym_c_float] = ACTIONS(6026), + [anon_sym_c_double] = ACTIONS(6026), + [anon_sym_c_longdouble] = ACTIONS(6026), + [anon_sym_return] = ACTIONS(6026), + [anon_sym_yield] = ACTIONS(6026), + [anon_sym_COLON] = ACTIONS(6024), + [anon_sym_break] = ACTIONS(6026), + [anon_sym_continue] = ACTIONS(6026), + [anon_sym_defer] = ACTIONS(6026), + [anon_sym_errdefer] = ACTIONS(6026), + [anon_sym_if] = ACTIONS(6026), + [anon_sym_else] = ACTIONS(6026), + [anon_sym_while] = ACTIONS(6026), + [anon_sym_expand] = ACTIONS(6026), + [anon_sym_for] = ACTIONS(6026), + [anon_sym_match] = ACTIONS(6026), + [anon_sym_DOT_DOT] = ACTIONS(6026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6024), + [anon_sym_orelse] = ACTIONS(6026), + [anon_sym_or] = ACTIONS(6026), + [anon_sym_and] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(6024), + [anon_sym_BANG_EQ] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(6026), + [anon_sym_LT_EQ] = ACTIONS(6024), + [anon_sym_GT] = ACTIONS(6026), + [anon_sym_GT_EQ] = ACTIONS(6024), + [anon_sym_AMP] = ACTIONS(6024), + [anon_sym_xor] = ACTIONS(6026), + [anon_sym_LT_LT] = ACTIONS(6026), + [anon_sym_GT_GT] = ACTIONS(6024), + [anon_sym_LT_LT_PIPE] = ACTIONS(6024), + [anon_sym_PLUS] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6024), + [anon_sym_catch] = ACTIONS(6026), + [anon_sym_TILDE] = ACTIONS(6024), + [anon_sym_try] = ACTIONS(6026), + [anon_sym_DOT] = ACTIONS(6026), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_true] = ACTIONS(6026), + [anon_sym_false] = ACTIONS(6026), + [anon_sym_null] = ACTIONS(6026), + [anon_sym_unreachable] = ACTIONS(6026), + [anon_sym_undefined] = ACTIONS(6026), + [sym_sink] = ACTIONS(6026), + [sym_integer] = ACTIONS(6026), + [sym_float] = ACTIONS(6024), + [anon_sym_DQUOTE] = ACTIONS(6024), + [sym_multiline_string] = ACTIONS(6024), + [sym_character] = ACTIONS(6024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6024), + }, + [STATE(4004)] = { + [ts_builtin_sym_end] = ACTIONS(6030), + [sym_identifier] = ACTIONS(6032), + [anon_sym_import] = ACTIONS(6032), + [anon_sym_test] = ACTIONS(6032), + [anon_sym_hide] = ACTIONS(6032), + [anon_sym_func] = ACTIONS(6032), + [anon_sym_BANG] = ACTIONS(6032), + [anon_sym_struct] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(6030), + [anon_sym_RBRACE] = ACTIONS(6030), + [anon_sym_DASH] = ACTIONS(6030), + [anon_sym_DOLLAR] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(6030), + [anon_sym_QMARK] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(6030), + [anon_sym_LBRACK] = ACTIONS(6030), + [anon_sym_void] = ACTIONS(6032), + [anon_sym_noreturn] = ACTIONS(6032), + [anon_sym_type] = ACTIONS(6032), + [anon_sym_anyopaque] = ACTIONS(6032), + [anon_sym_bool] = ACTIONS(6032), + [anon_sym_int] = ACTIONS(6032), + [anon_sym_uint] = ACTIONS(6032), + [anon_sym_float] = ACTIONS(6032), + [anon_sym_range] = ACTIONS(6032), + [anon_sym_i8] = ACTIONS(6032), + [anon_sym_i16] = ACTIONS(6032), + [anon_sym_i32] = ACTIONS(6032), + [anon_sym_i64] = ACTIONS(6032), + [anon_sym_u8] = ACTIONS(6032), + [anon_sym_u16] = ACTIONS(6032), + [anon_sym_u32] = ACTIONS(6032), + [anon_sym_u64] = ACTIONS(6032), + [anon_sym_isize] = ACTIONS(6032), + [anon_sym_usize] = ACTIONS(6032), + [anon_sym_f32] = ACTIONS(6032), + [anon_sym_f64] = ACTIONS(6032), + [anon_sym_c_char] = ACTIONS(6032), + [anon_sym_c_schar] = ACTIONS(6032), + [anon_sym_c_uchar] = ACTIONS(6032), + [anon_sym_c_short] = ACTIONS(6032), + [anon_sym_c_ushort] = ACTIONS(6032), + [anon_sym_c_int] = ACTIONS(6032), + [anon_sym_c_uint] = ACTIONS(6032), + [anon_sym_c_long] = ACTIONS(6032), + [anon_sym_c_ulong] = ACTIONS(6032), + [anon_sym_c_longlong] = ACTIONS(6032), + [anon_sym_c_ulonglong] = ACTIONS(6032), + [anon_sym_c_float] = ACTIONS(6032), + [anon_sym_c_double] = ACTIONS(6032), + [anon_sym_c_longdouble] = ACTIONS(6032), + [anon_sym_return] = ACTIONS(6032), + [anon_sym_yield] = ACTIONS(6032), + [anon_sym_COLON] = ACTIONS(6030), + [anon_sym_break] = ACTIONS(6032), + [anon_sym_continue] = ACTIONS(6032), + [anon_sym_defer] = ACTIONS(6032), + [anon_sym_errdefer] = ACTIONS(6032), + [anon_sym_if] = ACTIONS(6032), + [anon_sym_else] = ACTIONS(6032), + [anon_sym_while] = ACTIONS(6032), + [anon_sym_expand] = ACTIONS(6032), + [anon_sym_for] = ACTIONS(6032), + [anon_sym_match] = ACTIONS(6032), + [anon_sym_DOT_DOT] = ACTIONS(6032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6030), + [anon_sym_orelse] = ACTIONS(6032), + [anon_sym_or] = ACTIONS(6032), + [anon_sym_and] = ACTIONS(6032), + [anon_sym_EQ_EQ] = ACTIONS(6030), + [anon_sym_BANG_EQ] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(6032), + [anon_sym_LT_EQ] = ACTIONS(6030), + [anon_sym_GT] = ACTIONS(6032), + [anon_sym_GT_EQ] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6030), + [anon_sym_xor] = ACTIONS(6032), + [anon_sym_LT_LT] = ACTIONS(6032), + [anon_sym_GT_GT] = ACTIONS(6030), + [anon_sym_LT_LT_PIPE] = ACTIONS(6030), + [anon_sym_PLUS] = ACTIONS(6030), + [anon_sym_SLASH] = ACTIONS(6030), + [anon_sym_catch] = ACTIONS(6032), + [anon_sym_TILDE] = ACTIONS(6030), + [anon_sym_try] = ACTIONS(6032), + [anon_sym_DOT] = ACTIONS(6032), + [anon_sym_CARET] = ACTIONS(6030), + [anon_sym_true] = ACTIONS(6032), + [anon_sym_false] = ACTIONS(6032), + [anon_sym_null] = ACTIONS(6032), + [anon_sym_unreachable] = ACTIONS(6032), + [anon_sym_undefined] = ACTIONS(6032), + [sym_sink] = ACTIONS(6032), + [sym_integer] = ACTIONS(6032), + [sym_float] = ACTIONS(6030), + [anon_sym_DQUOTE] = ACTIONS(6030), + [sym_multiline_string] = ACTIONS(6030), + [sym_character] = ACTIONS(6030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6030), + }, + [STATE(4005)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3565), + [sym_labeled_block] = STATE(3565), + [sym_if_statement] = STATE(3565), + [sym_while_statement] = STATE(3565), + [sym_for_statement] = STATE(3565), + [sym_match_statement] = STATE(3565), + [sym__value] = STATE(3565), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(4137), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6932), + }, + [STATE(4006)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9611), + [sym_labeled_block] = STATE(9611), + [sym_if_statement] = STATE(9611), + [sym_while_statement] = STATE(9611), + [sym_for_statement] = STATE(9611), + [sym_match_statement] = STATE(9611), + [sym__value] = STATE(9611), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4007)] = { + [ts_builtin_sym_end] = ACTIONS(4774), + [sym_identifier] = ACTIONS(4776), + [anon_sym_import] = ACTIONS(4776), + [anon_sym_test] = ACTIONS(4776), + [anon_sym_hide] = ACTIONS(4776), + [anon_sym_func] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4776), + [anon_sym_struct] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4774), + [anon_sym_RBRACE] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_QMARK] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(4774), + [anon_sym_void] = ACTIONS(4776), + [anon_sym_noreturn] = ACTIONS(4776), + [anon_sym_type] = ACTIONS(4776), + [anon_sym_anyopaque] = ACTIONS(4776), + [anon_sym_bool] = ACTIONS(4776), + [anon_sym_int] = ACTIONS(4776), + [anon_sym_uint] = ACTIONS(4776), + [anon_sym_float] = ACTIONS(4776), + [anon_sym_range] = ACTIONS(4776), + [anon_sym_i8] = ACTIONS(4776), + [anon_sym_i16] = ACTIONS(4776), + [anon_sym_i32] = ACTIONS(4776), + [anon_sym_i64] = ACTIONS(4776), + [anon_sym_u8] = ACTIONS(4776), + [anon_sym_u16] = ACTIONS(4776), + [anon_sym_u32] = ACTIONS(4776), + [anon_sym_u64] = ACTIONS(4776), + [anon_sym_isize] = ACTIONS(4776), + [anon_sym_usize] = ACTIONS(4776), + [anon_sym_f32] = ACTIONS(4776), + [anon_sym_f64] = ACTIONS(4776), + [anon_sym_c_char] = ACTIONS(4776), + [anon_sym_c_schar] = ACTIONS(4776), + [anon_sym_c_uchar] = ACTIONS(4776), + [anon_sym_c_short] = ACTIONS(4776), + [anon_sym_c_ushort] = ACTIONS(4776), + [anon_sym_c_int] = ACTIONS(4776), + [anon_sym_c_uint] = ACTIONS(4776), + [anon_sym_c_long] = ACTIONS(4776), + [anon_sym_c_ulong] = ACTIONS(4776), + [anon_sym_c_longlong] = ACTIONS(4776), + [anon_sym_c_ulonglong] = ACTIONS(4776), + [anon_sym_c_float] = ACTIONS(4776), + [anon_sym_c_double] = ACTIONS(4776), + [anon_sym_c_longdouble] = ACTIONS(4776), + [anon_sym_return] = ACTIONS(4776), + [anon_sym_yield] = ACTIONS(4776), + [anon_sym_COLON] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4776), + [anon_sym_continue] = ACTIONS(4776), + [anon_sym_defer] = ACTIONS(4776), + [anon_sym_errdefer] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_expand] = ACTIONS(4776), + [anon_sym_for] = ACTIONS(4776), + [anon_sym_match] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4774), + [anon_sym_orelse] = ACTIONS(4776), + [anon_sym_or] = ACTIONS(4776), + [anon_sym_and] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4774), + [anon_sym_AMP] = ACTIONS(4774), + [anon_sym_xor] = ACTIONS(4776), + [anon_sym_LT_LT] = ACTIONS(4776), + [anon_sym_GT_GT] = ACTIONS(4774), + [anon_sym_LT_LT_PIPE] = ACTIONS(4774), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_catch] = ACTIONS(4776), + [anon_sym_TILDE] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_CARET] = ACTIONS(4774), + [anon_sym_true] = ACTIONS(4776), + [anon_sym_false] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4776), + [anon_sym_unreachable] = ACTIONS(4776), + [anon_sym_undefined] = ACTIONS(4776), + [sym_sink] = ACTIONS(4776), + [sym_integer] = ACTIONS(4776), + [sym_float] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [sym_multiline_string] = ACTIONS(4774), + [sym_character] = ACTIONS(4774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4774), + }, + [STATE(4008)] = { + [ts_builtin_sym_end] = ACTIONS(4778), + [sym_identifier] = ACTIONS(4780), + [anon_sym_import] = ACTIONS(4780), + [anon_sym_test] = ACTIONS(4780), + [anon_sym_hide] = ACTIONS(4780), + [anon_sym_func] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4780), + [anon_sym_struct] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_DOLLAR] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4778), + [anon_sym_QMARK] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_void] = ACTIONS(4780), + [anon_sym_noreturn] = ACTIONS(4780), + [anon_sym_type] = ACTIONS(4780), + [anon_sym_anyopaque] = ACTIONS(4780), + [anon_sym_bool] = ACTIONS(4780), + [anon_sym_int] = ACTIONS(4780), + [anon_sym_uint] = ACTIONS(4780), + [anon_sym_float] = ACTIONS(4780), + [anon_sym_range] = ACTIONS(4780), + [anon_sym_i8] = ACTIONS(4780), + [anon_sym_i16] = ACTIONS(4780), + [anon_sym_i32] = ACTIONS(4780), + [anon_sym_i64] = ACTIONS(4780), + [anon_sym_u8] = ACTIONS(4780), + [anon_sym_u16] = ACTIONS(4780), + [anon_sym_u32] = ACTIONS(4780), + [anon_sym_u64] = ACTIONS(4780), + [anon_sym_isize] = ACTIONS(4780), + [anon_sym_usize] = ACTIONS(4780), + [anon_sym_f32] = ACTIONS(4780), + [anon_sym_f64] = ACTIONS(4780), + [anon_sym_c_char] = ACTIONS(4780), + [anon_sym_c_schar] = ACTIONS(4780), + [anon_sym_c_uchar] = ACTIONS(4780), + [anon_sym_c_short] = ACTIONS(4780), + [anon_sym_c_ushort] = ACTIONS(4780), + [anon_sym_c_int] = ACTIONS(4780), + [anon_sym_c_uint] = ACTIONS(4780), + [anon_sym_c_long] = ACTIONS(4780), + [anon_sym_c_ulong] = ACTIONS(4780), + [anon_sym_c_longlong] = ACTIONS(4780), + [anon_sym_c_ulonglong] = ACTIONS(4780), + [anon_sym_c_float] = ACTIONS(4780), + [anon_sym_c_double] = ACTIONS(4780), + [anon_sym_c_longdouble] = ACTIONS(4780), + [anon_sym_return] = ACTIONS(4780), + [anon_sym_yield] = ACTIONS(4780), + [anon_sym_COLON] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4780), + [anon_sym_continue] = ACTIONS(4780), + [anon_sym_defer] = ACTIONS(4780), + [anon_sym_errdefer] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_while] = ACTIONS(4780), + [anon_sym_expand] = ACTIONS(4780), + [anon_sym_for] = ACTIONS(4780), + [anon_sym_match] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4778), + [anon_sym_orelse] = ACTIONS(4780), + [anon_sym_or] = ACTIONS(4780), + [anon_sym_and] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_xor] = ACTIONS(4780), + [anon_sym_LT_LT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4778), + [anon_sym_LT_LT_PIPE] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_catch] = ACTIONS(4780), + [anon_sym_TILDE] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_CARET] = ACTIONS(4778), + [anon_sym_true] = ACTIONS(4780), + [anon_sym_false] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4780), + [anon_sym_unreachable] = ACTIONS(4780), + [anon_sym_undefined] = ACTIONS(4780), + [sym_sink] = ACTIONS(4780), + [sym_integer] = ACTIONS(4780), + [sym_float] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(4778), + [sym_multiline_string] = ACTIONS(4778), + [sym_character] = ACTIONS(4778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4778), + }, + [STATE(4009)] = { + [ts_builtin_sym_end] = ACTIONS(4782), + [sym_identifier] = ACTIONS(4784), + [anon_sym_import] = ACTIONS(4784), + [anon_sym_test] = ACTIONS(4784), + [anon_sym_hide] = ACTIONS(4784), + [anon_sym_func] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_struct] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_DOLLAR] = ACTIONS(4782), + [anon_sym_PIPE] = ACTIONS(4782), + [anon_sym_QMARK] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_void] = ACTIONS(4784), + [anon_sym_noreturn] = ACTIONS(4784), + [anon_sym_type] = ACTIONS(4784), + [anon_sym_anyopaque] = ACTIONS(4784), + [anon_sym_bool] = ACTIONS(4784), + [anon_sym_int] = ACTIONS(4784), + [anon_sym_uint] = ACTIONS(4784), + [anon_sym_float] = ACTIONS(4784), + [anon_sym_range] = ACTIONS(4784), + [anon_sym_i8] = ACTIONS(4784), + [anon_sym_i16] = ACTIONS(4784), + [anon_sym_i32] = ACTIONS(4784), + [anon_sym_i64] = ACTIONS(4784), + [anon_sym_u8] = ACTIONS(4784), + [anon_sym_u16] = ACTIONS(4784), + [anon_sym_u32] = ACTIONS(4784), + [anon_sym_u64] = ACTIONS(4784), + [anon_sym_isize] = ACTIONS(4784), + [anon_sym_usize] = ACTIONS(4784), + [anon_sym_f32] = ACTIONS(4784), + [anon_sym_f64] = ACTIONS(4784), + [anon_sym_c_char] = ACTIONS(4784), + [anon_sym_c_schar] = ACTIONS(4784), + [anon_sym_c_uchar] = ACTIONS(4784), + [anon_sym_c_short] = ACTIONS(4784), + [anon_sym_c_ushort] = ACTIONS(4784), + [anon_sym_c_int] = ACTIONS(4784), + [anon_sym_c_uint] = ACTIONS(4784), + [anon_sym_c_long] = ACTIONS(4784), + [anon_sym_c_ulong] = ACTIONS(4784), + [anon_sym_c_longlong] = ACTIONS(4784), + [anon_sym_c_ulonglong] = ACTIONS(4784), + [anon_sym_c_float] = ACTIONS(4784), + [anon_sym_c_double] = ACTIONS(4784), + [anon_sym_c_longdouble] = ACTIONS(4784), + [anon_sym_return] = ACTIONS(4784), + [anon_sym_yield] = ACTIONS(4784), + [anon_sym_COLON] = ACTIONS(4782), + [anon_sym_break] = ACTIONS(4784), + [anon_sym_continue] = ACTIONS(4784), + [anon_sym_defer] = ACTIONS(4784), + [anon_sym_errdefer] = ACTIONS(4784), + [anon_sym_if] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_while] = ACTIONS(4784), + [anon_sym_expand] = ACTIONS(4784), + [anon_sym_for] = ACTIONS(4784), + [anon_sym_match] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4782), + [anon_sym_orelse] = ACTIONS(4784), + [anon_sym_or] = ACTIONS(4784), + [anon_sym_and] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4782), + [anon_sym_xor] = ACTIONS(4784), + [anon_sym_LT_LT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4782), + [anon_sym_LT_LT_PIPE] = ACTIONS(4782), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_catch] = ACTIONS(4784), + [anon_sym_TILDE] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_true] = ACTIONS(4784), + [anon_sym_false] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4784), + [anon_sym_unreachable] = ACTIONS(4784), + [anon_sym_undefined] = ACTIONS(4784), + [sym_sink] = ACTIONS(4784), + [sym_integer] = ACTIONS(4784), + [sym_float] = ACTIONS(4782), + [anon_sym_DQUOTE] = ACTIONS(4782), + [sym_multiline_string] = ACTIONS(4782), + [sym_character] = ACTIONS(4782), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4782), + }, + [STATE(4010)] = { + [ts_builtin_sym_end] = ACTIONS(4786), + [sym_identifier] = ACTIONS(4788), + [anon_sym_import] = ACTIONS(4788), + [anon_sym_test] = ACTIONS(4788), + [anon_sym_hide] = ACTIONS(4788), + [anon_sym_func] = ACTIONS(4788), + [anon_sym_BANG] = ACTIONS(4788), + [anon_sym_struct] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_QMARK] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_void] = ACTIONS(4788), + [anon_sym_noreturn] = ACTIONS(4788), + [anon_sym_type] = ACTIONS(4788), + [anon_sym_anyopaque] = ACTIONS(4788), + [anon_sym_bool] = ACTIONS(4788), + [anon_sym_int] = ACTIONS(4788), + [anon_sym_uint] = ACTIONS(4788), + [anon_sym_float] = ACTIONS(4788), + [anon_sym_range] = ACTIONS(4788), + [anon_sym_i8] = ACTIONS(4788), + [anon_sym_i16] = ACTIONS(4788), + [anon_sym_i32] = ACTIONS(4788), + [anon_sym_i64] = ACTIONS(4788), + [anon_sym_u8] = ACTIONS(4788), + [anon_sym_u16] = ACTIONS(4788), + [anon_sym_u32] = ACTIONS(4788), + [anon_sym_u64] = ACTIONS(4788), + [anon_sym_isize] = ACTIONS(4788), + [anon_sym_usize] = ACTIONS(4788), + [anon_sym_f32] = ACTIONS(4788), + [anon_sym_f64] = ACTIONS(4788), + [anon_sym_c_char] = ACTIONS(4788), + [anon_sym_c_schar] = ACTIONS(4788), + [anon_sym_c_uchar] = ACTIONS(4788), + [anon_sym_c_short] = ACTIONS(4788), + [anon_sym_c_ushort] = ACTIONS(4788), + [anon_sym_c_int] = ACTIONS(4788), + [anon_sym_c_uint] = ACTIONS(4788), + [anon_sym_c_long] = ACTIONS(4788), + [anon_sym_c_ulong] = ACTIONS(4788), + [anon_sym_c_longlong] = ACTIONS(4788), + [anon_sym_c_ulonglong] = ACTIONS(4788), + [anon_sym_c_float] = ACTIONS(4788), + [anon_sym_c_double] = ACTIONS(4788), + [anon_sym_c_longdouble] = ACTIONS(4788), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_yield] = ACTIONS(4788), + [anon_sym_COLON] = ACTIONS(4786), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_defer] = ACTIONS(4788), + [anon_sym_errdefer] = ACTIONS(4788), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_while] = ACTIONS(4788), + [anon_sym_expand] = ACTIONS(4788), + [anon_sym_for] = ACTIONS(4788), + [anon_sym_match] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4786), + [anon_sym_orelse] = ACTIONS(4788), + [anon_sym_or] = ACTIONS(4788), + [anon_sym_and] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_AMP] = ACTIONS(4786), + [anon_sym_xor] = ACTIONS(4788), + [anon_sym_LT_LT] = ACTIONS(4788), + [anon_sym_GT_GT] = ACTIONS(4786), + [anon_sym_LT_LT_PIPE] = ACTIONS(4786), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_catch] = ACTIONS(4788), + [anon_sym_TILDE] = ACTIONS(4786), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_CARET] = ACTIONS(4786), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4788), + [anon_sym_unreachable] = ACTIONS(4788), + [anon_sym_undefined] = ACTIONS(4788), + [sym_sink] = ACTIONS(4788), + [sym_integer] = ACTIONS(4788), + [sym_float] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [sym_multiline_string] = ACTIONS(4786), + [sym_character] = ACTIONS(4786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4786), + }, + [STATE(4011)] = { + [ts_builtin_sym_end] = ACTIONS(4790), + [sym_identifier] = ACTIONS(4792), + [anon_sym_import] = ACTIONS(4792), + [anon_sym_test] = ACTIONS(4792), + [anon_sym_hide] = ACTIONS(4792), + [anon_sym_func] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_struct] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4790), + [anon_sym_QMARK] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_void] = ACTIONS(4792), + [anon_sym_noreturn] = ACTIONS(4792), + [anon_sym_type] = ACTIONS(4792), + [anon_sym_anyopaque] = ACTIONS(4792), + [anon_sym_bool] = ACTIONS(4792), + [anon_sym_int] = ACTIONS(4792), + [anon_sym_uint] = ACTIONS(4792), + [anon_sym_float] = ACTIONS(4792), + [anon_sym_range] = ACTIONS(4792), + [anon_sym_i8] = ACTIONS(4792), + [anon_sym_i16] = ACTIONS(4792), + [anon_sym_i32] = ACTIONS(4792), + [anon_sym_i64] = ACTIONS(4792), + [anon_sym_u8] = ACTIONS(4792), + [anon_sym_u16] = ACTIONS(4792), + [anon_sym_u32] = ACTIONS(4792), + [anon_sym_u64] = ACTIONS(4792), + [anon_sym_isize] = ACTIONS(4792), + [anon_sym_usize] = ACTIONS(4792), + [anon_sym_f32] = ACTIONS(4792), + [anon_sym_f64] = ACTIONS(4792), + [anon_sym_c_char] = ACTIONS(4792), + [anon_sym_c_schar] = ACTIONS(4792), + [anon_sym_c_uchar] = ACTIONS(4792), + [anon_sym_c_short] = ACTIONS(4792), + [anon_sym_c_ushort] = ACTIONS(4792), + [anon_sym_c_int] = ACTIONS(4792), + [anon_sym_c_uint] = ACTIONS(4792), + [anon_sym_c_long] = ACTIONS(4792), + [anon_sym_c_ulong] = ACTIONS(4792), + [anon_sym_c_longlong] = ACTIONS(4792), + [anon_sym_c_ulonglong] = ACTIONS(4792), + [anon_sym_c_float] = ACTIONS(4792), + [anon_sym_c_double] = ACTIONS(4792), + [anon_sym_c_longdouble] = ACTIONS(4792), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_yield] = ACTIONS(4792), + [anon_sym_COLON] = ACTIONS(4790), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_defer] = ACTIONS(4792), + [anon_sym_errdefer] = ACTIONS(4792), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_while] = ACTIONS(4792), + [anon_sym_expand] = ACTIONS(4792), + [anon_sym_for] = ACTIONS(4792), + [anon_sym_match] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4790), + [anon_sym_orelse] = ACTIONS(4792), + [anon_sym_or] = ACTIONS(4792), + [anon_sym_and] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4790), + [anon_sym_xor] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_LT_LT_PIPE] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_catch] = ACTIONS(4792), + [anon_sym_TILDE] = ACTIONS(4790), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_CARET] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4792), + [anon_sym_unreachable] = ACTIONS(4792), + [anon_sym_undefined] = ACTIONS(4792), + [sym_sink] = ACTIONS(4792), + [sym_integer] = ACTIONS(4792), + [sym_float] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4790), + [sym_multiline_string] = ACTIONS(4790), + [sym_character] = ACTIONS(4790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4790), + }, + [STATE(4012)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8487), + [sym_labeled_block] = STATE(8487), + [sym_if_statement] = STATE(8487), + [sym_while_statement] = STATE(8487), + [sym_for_statement] = STATE(8487), + [sym_match_statement] = STATE(8487), + [sym__value] = STATE(8487), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4013)] = { + [ts_builtin_sym_end] = ACTIONS(4794), + [sym_identifier] = ACTIONS(4796), + [anon_sym_import] = ACTIONS(4796), + [anon_sym_test] = ACTIONS(4796), + [anon_sym_hide] = ACTIONS(4796), + [anon_sym_func] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_struct] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_DOLLAR] = ACTIONS(4794), + [anon_sym_PIPE] = ACTIONS(4794), + [anon_sym_QMARK] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_void] = ACTIONS(4796), + [anon_sym_noreturn] = ACTIONS(4796), + [anon_sym_type] = ACTIONS(4796), + [anon_sym_anyopaque] = ACTIONS(4796), + [anon_sym_bool] = ACTIONS(4796), + [anon_sym_int] = ACTIONS(4796), + [anon_sym_uint] = ACTIONS(4796), + [anon_sym_float] = ACTIONS(4796), + [anon_sym_range] = ACTIONS(4796), + [anon_sym_i8] = ACTIONS(4796), + [anon_sym_i16] = ACTIONS(4796), + [anon_sym_i32] = ACTIONS(4796), + [anon_sym_i64] = ACTIONS(4796), + [anon_sym_u8] = ACTIONS(4796), + [anon_sym_u16] = ACTIONS(4796), + [anon_sym_u32] = ACTIONS(4796), + [anon_sym_u64] = ACTIONS(4796), + [anon_sym_isize] = ACTIONS(4796), + [anon_sym_usize] = ACTIONS(4796), + [anon_sym_f32] = ACTIONS(4796), + [anon_sym_f64] = ACTIONS(4796), + [anon_sym_c_char] = ACTIONS(4796), + [anon_sym_c_schar] = ACTIONS(4796), + [anon_sym_c_uchar] = ACTIONS(4796), + [anon_sym_c_short] = ACTIONS(4796), + [anon_sym_c_ushort] = ACTIONS(4796), + [anon_sym_c_int] = ACTIONS(4796), + [anon_sym_c_uint] = ACTIONS(4796), + [anon_sym_c_long] = ACTIONS(4796), + [anon_sym_c_ulong] = ACTIONS(4796), + [anon_sym_c_longlong] = ACTIONS(4796), + [anon_sym_c_ulonglong] = ACTIONS(4796), + [anon_sym_c_float] = ACTIONS(4796), + [anon_sym_c_double] = ACTIONS(4796), + [anon_sym_c_longdouble] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_yield] = ACTIONS(4796), + [anon_sym_COLON] = ACTIONS(4794), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_defer] = ACTIONS(4796), + [anon_sym_errdefer] = ACTIONS(4796), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_expand] = ACTIONS(4796), + [anon_sym_for] = ACTIONS(4796), + [anon_sym_match] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4794), + [anon_sym_orelse] = ACTIONS(4796), + [anon_sym_or] = ACTIONS(4796), + [anon_sym_and] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4794), + [anon_sym_xor] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4794), + [anon_sym_LT_LT_PIPE] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_catch] = ACTIONS(4796), + [anon_sym_TILDE] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_CARET] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4796), + [anon_sym_unreachable] = ACTIONS(4796), + [anon_sym_undefined] = ACTIONS(4796), + [sym_sink] = ACTIONS(4796), + [sym_integer] = ACTIONS(4796), + [sym_float] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(4794), + [sym_multiline_string] = ACTIONS(4794), + [sym_character] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4794), + }, + [STATE(4014)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8488), + [sym_labeled_block] = STATE(8488), + [sym_if_statement] = STATE(8488), + [sym_while_statement] = STATE(8488), + [sym_for_statement] = STATE(8488), + [sym_match_statement] = STATE(8488), + [sym__value] = STATE(8488), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4015)] = { + [ts_builtin_sym_end] = ACTIONS(4798), + [sym_identifier] = ACTIONS(4800), + [anon_sym_import] = ACTIONS(4800), + [anon_sym_test] = ACTIONS(4800), + [anon_sym_hide] = ACTIONS(4800), + [anon_sym_func] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4800), + [anon_sym_struct] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_QMARK] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_void] = ACTIONS(4800), + [anon_sym_noreturn] = ACTIONS(4800), + [anon_sym_type] = ACTIONS(4800), + [anon_sym_anyopaque] = ACTIONS(4800), + [anon_sym_bool] = ACTIONS(4800), + [anon_sym_int] = ACTIONS(4800), + [anon_sym_uint] = ACTIONS(4800), + [anon_sym_float] = ACTIONS(4800), + [anon_sym_range] = ACTIONS(4800), + [anon_sym_i8] = ACTIONS(4800), + [anon_sym_i16] = ACTIONS(4800), + [anon_sym_i32] = ACTIONS(4800), + [anon_sym_i64] = ACTIONS(4800), + [anon_sym_u8] = ACTIONS(4800), + [anon_sym_u16] = ACTIONS(4800), + [anon_sym_u32] = ACTIONS(4800), + [anon_sym_u64] = ACTIONS(4800), + [anon_sym_isize] = ACTIONS(4800), + [anon_sym_usize] = ACTIONS(4800), + [anon_sym_f32] = ACTIONS(4800), + [anon_sym_f64] = ACTIONS(4800), + [anon_sym_c_char] = ACTIONS(4800), + [anon_sym_c_schar] = ACTIONS(4800), + [anon_sym_c_uchar] = ACTIONS(4800), + [anon_sym_c_short] = ACTIONS(4800), + [anon_sym_c_ushort] = ACTIONS(4800), + [anon_sym_c_int] = ACTIONS(4800), + [anon_sym_c_uint] = ACTIONS(4800), + [anon_sym_c_long] = ACTIONS(4800), + [anon_sym_c_ulong] = ACTIONS(4800), + [anon_sym_c_longlong] = ACTIONS(4800), + [anon_sym_c_ulonglong] = ACTIONS(4800), + [anon_sym_c_float] = ACTIONS(4800), + [anon_sym_c_double] = ACTIONS(4800), + [anon_sym_c_longdouble] = ACTIONS(4800), + [anon_sym_return] = ACTIONS(4800), + [anon_sym_yield] = ACTIONS(4800), + [anon_sym_COLON] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4800), + [anon_sym_continue] = ACTIONS(4800), + [anon_sym_defer] = ACTIONS(4800), + [anon_sym_errdefer] = ACTIONS(4800), + [anon_sym_if] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4800), + [anon_sym_while] = ACTIONS(4800), + [anon_sym_expand] = ACTIONS(4800), + [anon_sym_for] = ACTIONS(4800), + [anon_sym_match] = ACTIONS(4800), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4798), + [anon_sym_orelse] = ACTIONS(4800), + [anon_sym_or] = ACTIONS(4800), + [anon_sym_and] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), + [anon_sym_xor] = ACTIONS(4800), + [anon_sym_LT_LT] = ACTIONS(4800), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_LT_LT_PIPE] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_catch] = ACTIONS(4800), + [anon_sym_TILDE] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4800), + [anon_sym_CARET] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4800), + [anon_sym_false] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4800), + [anon_sym_unreachable] = ACTIONS(4800), + [anon_sym_undefined] = ACTIONS(4800), + [sym_sink] = ACTIONS(4800), + [sym_integer] = ACTIONS(4800), + [sym_float] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [sym_multiline_string] = ACTIONS(4798), + [sym_character] = ACTIONS(4798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4798), + }, + [STATE(4016)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4021), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6934), + }, + [STATE(4017)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4050), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6936), + }, + [STATE(4018)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9615), + [sym_labeled_block] = STATE(9615), + [sym_if_statement] = STATE(9615), + [sym_while_statement] = STATE(9615), + [sym_for_statement] = STATE(9615), + [sym_match_statement] = STATE(9615), + [sym__value] = STATE(9615), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4019)] = { + [ts_builtin_sym_end] = ACTIONS(4802), + [sym_identifier] = ACTIONS(4804), + [anon_sym_import] = ACTIONS(4804), + [anon_sym_test] = ACTIONS(4804), + [anon_sym_hide] = ACTIONS(4804), + [anon_sym_func] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_struct] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4802), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4802), + [anon_sym_QMARK] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_LBRACK] = ACTIONS(4802), + [anon_sym_void] = ACTIONS(4804), + [anon_sym_noreturn] = ACTIONS(4804), + [anon_sym_type] = ACTIONS(4804), + [anon_sym_anyopaque] = ACTIONS(4804), + [anon_sym_bool] = ACTIONS(4804), + [anon_sym_int] = ACTIONS(4804), + [anon_sym_uint] = ACTIONS(4804), + [anon_sym_float] = ACTIONS(4804), + [anon_sym_range] = ACTIONS(4804), + [anon_sym_i8] = ACTIONS(4804), + [anon_sym_i16] = ACTIONS(4804), + [anon_sym_i32] = ACTIONS(4804), + [anon_sym_i64] = ACTIONS(4804), + [anon_sym_u8] = ACTIONS(4804), + [anon_sym_u16] = ACTIONS(4804), + [anon_sym_u32] = ACTIONS(4804), + [anon_sym_u64] = ACTIONS(4804), + [anon_sym_isize] = ACTIONS(4804), + [anon_sym_usize] = ACTIONS(4804), + [anon_sym_f32] = ACTIONS(4804), + [anon_sym_f64] = ACTIONS(4804), + [anon_sym_c_char] = ACTIONS(4804), + [anon_sym_c_schar] = ACTIONS(4804), + [anon_sym_c_uchar] = ACTIONS(4804), + [anon_sym_c_short] = ACTIONS(4804), + [anon_sym_c_ushort] = ACTIONS(4804), + [anon_sym_c_int] = ACTIONS(4804), + [anon_sym_c_uint] = ACTIONS(4804), + [anon_sym_c_long] = ACTIONS(4804), + [anon_sym_c_ulong] = ACTIONS(4804), + [anon_sym_c_longlong] = ACTIONS(4804), + [anon_sym_c_ulonglong] = ACTIONS(4804), + [anon_sym_c_float] = ACTIONS(4804), + [anon_sym_c_double] = ACTIONS(4804), + [anon_sym_c_longdouble] = ACTIONS(4804), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_yield] = ACTIONS(4804), + [anon_sym_COLON] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_defer] = ACTIONS(4804), + [anon_sym_errdefer] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_expand] = ACTIONS(4804), + [anon_sym_for] = ACTIONS(4804), + [anon_sym_match] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4802), + [anon_sym_orelse] = ACTIONS(4804), + [anon_sym_or] = ACTIONS(4804), + [anon_sym_and] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_AMP] = ACTIONS(4802), + [anon_sym_xor] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_LT_LT_PIPE] = ACTIONS(4802), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_catch] = ACTIONS(4804), + [anon_sym_TILDE] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_unreachable] = ACTIONS(4804), + [anon_sym_undefined] = ACTIONS(4804), + [sym_sink] = ACTIONS(4804), + [sym_integer] = ACTIONS(4804), + [sym_float] = ACTIONS(4802), + [anon_sym_DQUOTE] = ACTIONS(4802), + [sym_multiline_string] = ACTIONS(4802), + [sym_character] = ACTIONS(4802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4802), + }, + [STATE(4020)] = { + [ts_builtin_sym_end] = ACTIONS(4806), + [sym_identifier] = ACTIONS(4808), + [anon_sym_import] = ACTIONS(4808), + [anon_sym_test] = ACTIONS(4808), + [anon_sym_hide] = ACTIONS(4808), + [anon_sym_func] = ACTIONS(4808), + [anon_sym_BANG] = ACTIONS(4808), + [anon_sym_struct] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_DOLLAR] = ACTIONS(4806), + [anon_sym_PIPE] = ACTIONS(4806), + [anon_sym_QMARK] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_void] = ACTIONS(4808), + [anon_sym_noreturn] = ACTIONS(4808), + [anon_sym_type] = ACTIONS(4808), + [anon_sym_anyopaque] = ACTIONS(4808), + [anon_sym_bool] = ACTIONS(4808), + [anon_sym_int] = ACTIONS(4808), + [anon_sym_uint] = ACTIONS(4808), + [anon_sym_float] = ACTIONS(4808), + [anon_sym_range] = ACTIONS(4808), + [anon_sym_i8] = ACTIONS(4808), + [anon_sym_i16] = ACTIONS(4808), + [anon_sym_i32] = ACTIONS(4808), + [anon_sym_i64] = ACTIONS(4808), + [anon_sym_u8] = ACTIONS(4808), + [anon_sym_u16] = ACTIONS(4808), + [anon_sym_u32] = ACTIONS(4808), + [anon_sym_u64] = ACTIONS(4808), + [anon_sym_isize] = ACTIONS(4808), + [anon_sym_usize] = ACTIONS(4808), + [anon_sym_f32] = ACTIONS(4808), + [anon_sym_f64] = ACTIONS(4808), + [anon_sym_c_char] = ACTIONS(4808), + [anon_sym_c_schar] = ACTIONS(4808), + [anon_sym_c_uchar] = ACTIONS(4808), + [anon_sym_c_short] = ACTIONS(4808), + [anon_sym_c_ushort] = ACTIONS(4808), + [anon_sym_c_int] = ACTIONS(4808), + [anon_sym_c_uint] = ACTIONS(4808), + [anon_sym_c_long] = ACTIONS(4808), + [anon_sym_c_ulong] = ACTIONS(4808), + [anon_sym_c_longlong] = ACTIONS(4808), + [anon_sym_c_ulonglong] = ACTIONS(4808), + [anon_sym_c_float] = ACTIONS(4808), + [anon_sym_c_double] = ACTIONS(4808), + [anon_sym_c_longdouble] = ACTIONS(4808), + [anon_sym_return] = ACTIONS(4808), + [anon_sym_yield] = ACTIONS(4808), + [anon_sym_COLON] = ACTIONS(4806), + [anon_sym_break] = ACTIONS(4808), + [anon_sym_continue] = ACTIONS(4808), + [anon_sym_defer] = ACTIONS(4808), + [anon_sym_errdefer] = ACTIONS(4808), + [anon_sym_if] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_while] = ACTIONS(4808), + [anon_sym_expand] = ACTIONS(4808), + [anon_sym_for] = ACTIONS(4808), + [anon_sym_match] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4806), + [anon_sym_orelse] = ACTIONS(4808), + [anon_sym_or] = ACTIONS(4808), + [anon_sym_and] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_AMP] = ACTIONS(4806), + [anon_sym_xor] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(4808), + [anon_sym_GT_GT] = ACTIONS(4806), + [anon_sym_LT_LT_PIPE] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4806), + [anon_sym_SLASH] = ACTIONS(4806), + [anon_sym_catch] = ACTIONS(4808), + [anon_sym_TILDE] = ACTIONS(4806), + [anon_sym_try] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_CARET] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), + [anon_sym_unreachable] = ACTIONS(4808), + [anon_sym_undefined] = ACTIONS(4808), + [sym_sink] = ACTIONS(4808), + [sym_integer] = ACTIONS(4808), + [sym_float] = ACTIONS(4806), + [anon_sym_DQUOTE] = ACTIONS(4806), + [sym_multiline_string] = ACTIONS(4806), + [sym_character] = ACTIONS(4806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4806), + }, + [STATE(4021)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4022)] = { + [ts_builtin_sym_end] = ACTIONS(4532), + [sym_identifier] = ACTIONS(4534), + [anon_sym_import] = ACTIONS(4534), + [anon_sym_test] = ACTIONS(4534), + [anon_sym_hide] = ACTIONS(4534), + [anon_sym_func] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [anon_sym_DOLLAR] = ACTIONS(4532), + [anon_sym_PIPE] = ACTIONS(4532), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_void] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym_type] = ACTIONS(4534), + [anon_sym_anyopaque] = ACTIONS(4534), + [anon_sym_bool] = ACTIONS(4534), + [anon_sym_int] = ACTIONS(4534), + [anon_sym_uint] = ACTIONS(4534), + [anon_sym_float] = ACTIONS(4534), + [anon_sym_range] = ACTIONS(4534), + [anon_sym_i8] = ACTIONS(4534), + [anon_sym_i16] = ACTIONS(4534), + [anon_sym_i32] = ACTIONS(4534), + [anon_sym_i64] = ACTIONS(4534), + [anon_sym_u8] = ACTIONS(4534), + [anon_sym_u16] = ACTIONS(4534), + [anon_sym_u32] = ACTIONS(4534), + [anon_sym_u64] = ACTIONS(4534), + [anon_sym_isize] = ACTIONS(4534), + [anon_sym_usize] = ACTIONS(4534), + [anon_sym_f32] = ACTIONS(4534), + [anon_sym_f64] = ACTIONS(4534), + [anon_sym_c_char] = ACTIONS(4534), + [anon_sym_c_schar] = ACTIONS(4534), + [anon_sym_c_uchar] = ACTIONS(4534), + [anon_sym_c_short] = ACTIONS(4534), + [anon_sym_c_ushort] = ACTIONS(4534), + [anon_sym_c_int] = ACTIONS(4534), + [anon_sym_c_uint] = ACTIONS(4534), + [anon_sym_c_long] = ACTIONS(4534), + [anon_sym_c_ulong] = ACTIONS(4534), + [anon_sym_c_longlong] = ACTIONS(4534), + [anon_sym_c_ulonglong] = ACTIONS(4534), + [anon_sym_c_float] = ACTIONS(4534), + [anon_sym_c_double] = ACTIONS(4534), + [anon_sym_c_longdouble] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_yield] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4532), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_defer] = ACTIONS(4534), + [anon_sym_errdefer] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_else] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4534), + [anon_sym_expand] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_match] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4532), + [anon_sym_orelse] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_EQ_EQ] = ACTIONS(4532), + [anon_sym_BANG_EQ] = ACTIONS(4532), + [anon_sym_LT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4532), + [anon_sym_xor] = ACTIONS(4534), + [anon_sym_LT_LT] = ACTIONS(4534), + [anon_sym_GT_GT] = ACTIONS(4532), + [anon_sym_LT_LT_PIPE] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_SLASH] = ACTIONS(4532), + [anon_sym_catch] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4534), + [anon_sym_DOT] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4532), + [anon_sym_true] = ACTIONS(4534), + [anon_sym_false] = ACTIONS(4534), + [anon_sym_null] = ACTIONS(4534), + [anon_sym_unreachable] = ACTIONS(4534), + [anon_sym_undefined] = ACTIONS(4534), + [sym_sink] = ACTIONS(4534), + [sym_integer] = ACTIONS(4534), + [sym_float] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [sym_multiline_string] = ACTIONS(4532), + [sym_character] = ACTIONS(4532), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4532), + }, + [STATE(4023)] = { + [ts_builtin_sym_end] = ACTIONS(5722), + [sym_identifier] = ACTIONS(5724), + [anon_sym_import] = ACTIONS(5724), + [anon_sym_test] = ACTIONS(5724), + [anon_sym_hide] = ACTIONS(5724), + [anon_sym_func] = ACTIONS(5724), + [anon_sym_BANG] = ACTIONS(5724), + [anon_sym_struct] = ACTIONS(5724), + [anon_sym_LPAREN] = ACTIONS(5722), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5722), + [anon_sym_DOLLAR] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5722), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_STAR] = ACTIONS(5722), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_void] = ACTIONS(5724), + [anon_sym_noreturn] = ACTIONS(5724), + [anon_sym_type] = ACTIONS(5724), + [anon_sym_anyopaque] = ACTIONS(5724), + [anon_sym_bool] = ACTIONS(5724), + [anon_sym_int] = ACTIONS(5724), + [anon_sym_uint] = ACTIONS(5724), + [anon_sym_float] = ACTIONS(5724), + [anon_sym_range] = ACTIONS(5724), + [anon_sym_i8] = ACTIONS(5724), + [anon_sym_i16] = ACTIONS(5724), + [anon_sym_i32] = ACTIONS(5724), + [anon_sym_i64] = ACTIONS(5724), + [anon_sym_u8] = ACTIONS(5724), + [anon_sym_u16] = ACTIONS(5724), + [anon_sym_u32] = ACTIONS(5724), + [anon_sym_u64] = ACTIONS(5724), + [anon_sym_isize] = ACTIONS(5724), + [anon_sym_usize] = ACTIONS(5724), + [anon_sym_f32] = ACTIONS(5724), + [anon_sym_f64] = ACTIONS(5724), + [anon_sym_c_char] = ACTIONS(5724), + [anon_sym_c_schar] = ACTIONS(5724), + [anon_sym_c_uchar] = ACTIONS(5724), + [anon_sym_c_short] = ACTIONS(5724), + [anon_sym_c_ushort] = ACTIONS(5724), + [anon_sym_c_int] = ACTIONS(5724), + [anon_sym_c_uint] = ACTIONS(5724), + [anon_sym_c_long] = ACTIONS(5724), + [anon_sym_c_ulong] = ACTIONS(5724), + [anon_sym_c_longlong] = ACTIONS(5724), + [anon_sym_c_ulonglong] = ACTIONS(5724), + [anon_sym_c_float] = ACTIONS(5724), + [anon_sym_c_double] = ACTIONS(5724), + [anon_sym_c_longdouble] = ACTIONS(5724), + [anon_sym_return] = ACTIONS(5724), + [anon_sym_yield] = ACTIONS(5724), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym_break] = ACTIONS(5724), + [anon_sym_continue] = ACTIONS(5724), + [anon_sym_defer] = ACTIONS(5724), + [anon_sym_errdefer] = ACTIONS(5724), + [anon_sym_if] = ACTIONS(5724), + [anon_sym_else] = ACTIONS(5724), + [anon_sym_while] = ACTIONS(5724), + [anon_sym_expand] = ACTIONS(5724), + [anon_sym_for] = ACTIONS(5724), + [anon_sym_match] = ACTIONS(5724), + [anon_sym_DOT_DOT] = ACTIONS(5724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5722), + [anon_sym_orelse] = ACTIONS(5724), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_AMP] = ACTIONS(5722), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5724), + [anon_sym_GT_GT] = ACTIONS(5722), + [anon_sym_LT_LT_PIPE] = ACTIONS(5722), + [anon_sym_PLUS] = ACTIONS(5722), + [anon_sym_SLASH] = ACTIONS(5722), + [anon_sym_catch] = ACTIONS(5724), + [anon_sym_TILDE] = ACTIONS(5722), + [anon_sym_try] = ACTIONS(5724), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5722), + [anon_sym_true] = ACTIONS(5724), + [anon_sym_false] = ACTIONS(5724), + [anon_sym_null] = ACTIONS(5724), + [anon_sym_unreachable] = ACTIONS(5724), + [anon_sym_undefined] = ACTIONS(5724), + [sym_sink] = ACTIONS(5724), + [sym_integer] = ACTIONS(5724), + [sym_float] = ACTIONS(5722), + [anon_sym_DQUOTE] = ACTIONS(5722), + [sym_multiline_string] = ACTIONS(5722), + [sym_character] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5722), + }, + [STATE(4024)] = { + [ts_builtin_sym_end] = ACTIONS(5726), + [sym_identifier] = ACTIONS(5728), + [anon_sym_import] = ACTIONS(5728), + [anon_sym_test] = ACTIONS(5728), + [anon_sym_hide] = ACTIONS(5728), + [anon_sym_func] = ACTIONS(5728), + [anon_sym_BANG] = ACTIONS(5728), + [anon_sym_struct] = ACTIONS(5728), + [anon_sym_LPAREN] = ACTIONS(5726), + [anon_sym_LBRACE] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5726), + [anon_sym_DOLLAR] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5726), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_STAR] = ACTIONS(5726), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_void] = ACTIONS(5728), + [anon_sym_noreturn] = ACTIONS(5728), + [anon_sym_type] = ACTIONS(5728), + [anon_sym_anyopaque] = ACTIONS(5728), + [anon_sym_bool] = ACTIONS(5728), + [anon_sym_int] = ACTIONS(5728), + [anon_sym_uint] = ACTIONS(5728), + [anon_sym_float] = ACTIONS(5728), + [anon_sym_range] = ACTIONS(5728), + [anon_sym_i8] = ACTIONS(5728), + [anon_sym_i16] = ACTIONS(5728), + [anon_sym_i32] = ACTIONS(5728), + [anon_sym_i64] = ACTIONS(5728), + [anon_sym_u8] = ACTIONS(5728), + [anon_sym_u16] = ACTIONS(5728), + [anon_sym_u32] = ACTIONS(5728), + [anon_sym_u64] = ACTIONS(5728), + [anon_sym_isize] = ACTIONS(5728), + [anon_sym_usize] = ACTIONS(5728), + [anon_sym_f32] = ACTIONS(5728), + [anon_sym_f64] = ACTIONS(5728), + [anon_sym_c_char] = ACTIONS(5728), + [anon_sym_c_schar] = ACTIONS(5728), + [anon_sym_c_uchar] = ACTIONS(5728), + [anon_sym_c_short] = ACTIONS(5728), + [anon_sym_c_ushort] = ACTIONS(5728), + [anon_sym_c_int] = ACTIONS(5728), + [anon_sym_c_uint] = ACTIONS(5728), + [anon_sym_c_long] = ACTIONS(5728), + [anon_sym_c_ulong] = ACTIONS(5728), + [anon_sym_c_longlong] = ACTIONS(5728), + [anon_sym_c_ulonglong] = ACTIONS(5728), + [anon_sym_c_float] = ACTIONS(5728), + [anon_sym_c_double] = ACTIONS(5728), + [anon_sym_c_longdouble] = ACTIONS(5728), + [anon_sym_return] = ACTIONS(5728), + [anon_sym_yield] = ACTIONS(5728), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_break] = ACTIONS(5728), + [anon_sym_continue] = ACTIONS(5728), + [anon_sym_defer] = ACTIONS(5728), + [anon_sym_errdefer] = ACTIONS(5728), + [anon_sym_if] = ACTIONS(5728), + [anon_sym_else] = ACTIONS(5728), + [anon_sym_while] = ACTIONS(5728), + [anon_sym_expand] = ACTIONS(5728), + [anon_sym_for] = ACTIONS(5728), + [anon_sym_match] = ACTIONS(5728), + [anon_sym_DOT_DOT] = ACTIONS(5728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5726), + [anon_sym_orelse] = ACTIONS(5728), + [anon_sym_or] = ACTIONS(5728), + [anon_sym_and] = ACTIONS(5728), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_LT] = ACTIONS(5728), + [anon_sym_LT_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5728), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(5726), + [anon_sym_xor] = ACTIONS(5728), + [anon_sym_LT_LT] = ACTIONS(5728), + [anon_sym_GT_GT] = ACTIONS(5726), + [anon_sym_LT_LT_PIPE] = ACTIONS(5726), + [anon_sym_PLUS] = ACTIONS(5726), + [anon_sym_SLASH] = ACTIONS(5726), + [anon_sym_catch] = ACTIONS(5728), + [anon_sym_TILDE] = ACTIONS(5726), + [anon_sym_try] = ACTIONS(5728), + [anon_sym_DOT] = ACTIONS(5728), + [anon_sym_CARET] = ACTIONS(5726), + [anon_sym_true] = ACTIONS(5728), + [anon_sym_false] = ACTIONS(5728), + [anon_sym_null] = ACTIONS(5728), + [anon_sym_unreachable] = ACTIONS(5728), + [anon_sym_undefined] = ACTIONS(5728), + [sym_sink] = ACTIONS(5728), + [sym_integer] = ACTIONS(5728), + [sym_float] = ACTIONS(5726), + [anon_sym_DQUOTE] = ACTIONS(5726), + [sym_multiline_string] = ACTIONS(5726), + [sym_character] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5726), + }, + [STATE(4025)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4058), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6938), + }, + [STATE(4026)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4064), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6940), + }, + [STATE(4027)] = { + [ts_builtin_sym_end] = ACTIONS(4814), + [sym_identifier] = ACTIONS(4816), + [anon_sym_import] = ACTIONS(4816), + [anon_sym_test] = ACTIONS(4816), + [anon_sym_hide] = ACTIONS(4816), + [anon_sym_func] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_struct] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOLLAR] = ACTIONS(4814), + [anon_sym_PIPE] = ACTIONS(4814), + [anon_sym_QMARK] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_void] = ACTIONS(4816), + [anon_sym_noreturn] = ACTIONS(4816), + [anon_sym_type] = ACTIONS(4816), + [anon_sym_anyopaque] = ACTIONS(4816), + [anon_sym_bool] = ACTIONS(4816), + [anon_sym_int] = ACTIONS(4816), + [anon_sym_uint] = ACTIONS(4816), + [anon_sym_float] = ACTIONS(4816), + [anon_sym_range] = ACTIONS(4816), + [anon_sym_i8] = ACTIONS(4816), + [anon_sym_i16] = ACTIONS(4816), + [anon_sym_i32] = ACTIONS(4816), + [anon_sym_i64] = ACTIONS(4816), + [anon_sym_u8] = ACTIONS(4816), + [anon_sym_u16] = ACTIONS(4816), + [anon_sym_u32] = ACTIONS(4816), + [anon_sym_u64] = ACTIONS(4816), + [anon_sym_isize] = ACTIONS(4816), + [anon_sym_usize] = ACTIONS(4816), + [anon_sym_f32] = ACTIONS(4816), + [anon_sym_f64] = ACTIONS(4816), + [anon_sym_c_char] = ACTIONS(4816), + [anon_sym_c_schar] = ACTIONS(4816), + [anon_sym_c_uchar] = ACTIONS(4816), + [anon_sym_c_short] = ACTIONS(4816), + [anon_sym_c_ushort] = ACTIONS(4816), + [anon_sym_c_int] = ACTIONS(4816), + [anon_sym_c_uint] = ACTIONS(4816), + [anon_sym_c_long] = ACTIONS(4816), + [anon_sym_c_ulong] = ACTIONS(4816), + [anon_sym_c_longlong] = ACTIONS(4816), + [anon_sym_c_ulonglong] = ACTIONS(4816), + [anon_sym_c_float] = ACTIONS(4816), + [anon_sym_c_double] = ACTIONS(4816), + [anon_sym_c_longdouble] = ACTIONS(4816), + [anon_sym_return] = ACTIONS(4816), + [anon_sym_yield] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(4814), + [anon_sym_break] = ACTIONS(4816), + [anon_sym_continue] = ACTIONS(4816), + [anon_sym_defer] = ACTIONS(4816), + [anon_sym_errdefer] = ACTIONS(4816), + [anon_sym_if] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_while] = ACTIONS(4816), + [anon_sym_expand] = ACTIONS(4816), + [anon_sym_for] = ACTIONS(4816), + [anon_sym_match] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4814), + [anon_sym_orelse] = ACTIONS(4816), + [anon_sym_or] = ACTIONS(4816), + [anon_sym_and] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_xor] = ACTIONS(4816), + [anon_sym_LT_LT] = ACTIONS(4816), + [anon_sym_GT_GT] = ACTIONS(4814), + [anon_sym_LT_LT_PIPE] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_catch] = ACTIONS(4816), + [anon_sym_TILDE] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4816), + [anon_sym_false] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4816), + [anon_sym_unreachable] = ACTIONS(4816), + [anon_sym_undefined] = ACTIONS(4816), + [sym_sink] = ACTIONS(4816), + [sym_integer] = ACTIONS(4816), + [sym_float] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(4814), + [sym_multiline_string] = ACTIONS(4814), + [sym_character] = ACTIONS(4814), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4814), + }, + [STATE(4028)] = { + [ts_builtin_sym_end] = ACTIONS(5580), + [sym_identifier] = ACTIONS(5582), + [anon_sym_import] = ACTIONS(5582), + [anon_sym_test] = ACTIONS(5582), + [anon_sym_hide] = ACTIONS(5582), + [anon_sym_func] = ACTIONS(5582), + [anon_sym_BANG] = ACTIONS(5582), + [anon_sym_struct] = ACTIONS(5582), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_LBRACE] = ACTIONS(5580), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_DOLLAR] = ACTIONS(5580), + [anon_sym_PIPE] = ACTIONS(5580), + [anon_sym_QMARK] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5580), + [anon_sym_LBRACK] = ACTIONS(5580), + [anon_sym_void] = ACTIONS(5582), + [anon_sym_noreturn] = ACTIONS(5582), + [anon_sym_type] = ACTIONS(5582), + [anon_sym_anyopaque] = ACTIONS(5582), + [anon_sym_bool] = ACTIONS(5582), + [anon_sym_int] = ACTIONS(5582), + [anon_sym_uint] = ACTIONS(5582), + [anon_sym_float] = ACTIONS(5582), + [anon_sym_range] = ACTIONS(5582), + [anon_sym_i8] = ACTIONS(5582), + [anon_sym_i16] = ACTIONS(5582), + [anon_sym_i32] = ACTIONS(5582), + [anon_sym_i64] = ACTIONS(5582), + [anon_sym_u8] = ACTIONS(5582), + [anon_sym_u16] = ACTIONS(5582), + [anon_sym_u32] = ACTIONS(5582), + [anon_sym_u64] = ACTIONS(5582), + [anon_sym_isize] = ACTIONS(5582), + [anon_sym_usize] = ACTIONS(5582), + [anon_sym_f32] = ACTIONS(5582), + [anon_sym_f64] = ACTIONS(5582), + [anon_sym_c_char] = ACTIONS(5582), + [anon_sym_c_schar] = ACTIONS(5582), + [anon_sym_c_uchar] = ACTIONS(5582), + [anon_sym_c_short] = ACTIONS(5582), + [anon_sym_c_ushort] = ACTIONS(5582), + [anon_sym_c_int] = ACTIONS(5582), + [anon_sym_c_uint] = ACTIONS(5582), + [anon_sym_c_long] = ACTIONS(5582), + [anon_sym_c_ulong] = ACTIONS(5582), + [anon_sym_c_longlong] = ACTIONS(5582), + [anon_sym_c_ulonglong] = ACTIONS(5582), + [anon_sym_c_float] = ACTIONS(5582), + [anon_sym_c_double] = ACTIONS(5582), + [anon_sym_c_longdouble] = ACTIONS(5582), + [anon_sym_return] = ACTIONS(5582), + [anon_sym_yield] = ACTIONS(5582), + [anon_sym_COLON] = ACTIONS(5580), + [anon_sym_break] = ACTIONS(5582), + [anon_sym_continue] = ACTIONS(5582), + [anon_sym_defer] = ACTIONS(5582), + [anon_sym_errdefer] = ACTIONS(5582), + [anon_sym_if] = ACTIONS(5582), + [anon_sym_else] = ACTIONS(5582), + [anon_sym_while] = ACTIONS(5582), + [anon_sym_expand] = ACTIONS(5582), + [anon_sym_for] = ACTIONS(5582), + [anon_sym_match] = ACTIONS(5582), + [anon_sym_DOT_DOT] = ACTIONS(5582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5580), + [anon_sym_orelse] = ACTIONS(5582), + [anon_sym_or] = ACTIONS(5582), + [anon_sym_and] = ACTIONS(5582), + [anon_sym_EQ_EQ] = ACTIONS(5580), + [anon_sym_BANG_EQ] = ACTIONS(5580), + [anon_sym_LT] = ACTIONS(5582), + [anon_sym_LT_EQ] = ACTIONS(5580), + [anon_sym_GT] = ACTIONS(5582), + [anon_sym_GT_EQ] = ACTIONS(5580), + [anon_sym_AMP] = ACTIONS(5580), + [anon_sym_xor] = ACTIONS(5582), + [anon_sym_LT_LT] = ACTIONS(5582), + [anon_sym_GT_GT] = ACTIONS(5580), + [anon_sym_LT_LT_PIPE] = ACTIONS(5580), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_SLASH] = ACTIONS(5580), + [anon_sym_catch] = ACTIONS(5582), + [anon_sym_TILDE] = ACTIONS(5580), + [anon_sym_try] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(5582), + [anon_sym_CARET] = ACTIONS(5580), + [anon_sym_true] = ACTIONS(5582), + [anon_sym_false] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(5582), + [anon_sym_unreachable] = ACTIONS(5582), + [anon_sym_undefined] = ACTIONS(5582), + [sym_sink] = ACTIONS(5582), + [sym_integer] = ACTIONS(5582), + [sym_float] = ACTIONS(5580), + [anon_sym_DQUOTE] = ACTIONS(5580), + [sym_multiline_string] = ACTIONS(5580), + [sym_character] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5580), + }, + [STATE(4029)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9651), + [sym_error_capture] = STATE(4936), + [sym_if_statement] = STATE(9651), + [sym_while_statement] = STATE(9651), + [sym_for_statement] = STATE(9651), + [sym_match_statement] = STATE(9651), + [sym_expression] = STATE(10269), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4937), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6944), + }, + [STATE(4030)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10514), + [sym_labeled_block] = STATE(10514), + [sym_if_statement] = STATE(10514), + [sym_while_statement] = STATE(10514), + [sym_for_statement] = STATE(10514), + [sym_match_statement] = STATE(10514), + [sym__value] = STATE(10514), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4032), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6946), + }, + [STATE(4031)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10521), + [sym_labeled_block] = STATE(10521), + [sym_if_statement] = STATE(10521), + [sym_while_statement] = STATE(10521), + [sym_for_statement] = STATE(10521), + [sym_match_statement] = STATE(10521), + [sym__value] = STATE(10521), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4035), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6948), + }, + [STATE(4032)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10779), + [sym_labeled_block] = STATE(10779), + [sym_if_statement] = STATE(10779), + [sym_while_statement] = STATE(10779), + [sym_for_statement] = STATE(10779), + [sym_match_statement] = STATE(10779), + [sym__value] = STATE(10779), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4033)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10781), + [sym_labeled_block] = STATE(10781), + [sym_if_statement] = STATE(10781), + [sym_while_statement] = STATE(10781), + [sym_for_statement] = STATE(10781), + [sym_match_statement] = STATE(10781), + [sym__value] = STATE(10781), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4036), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6950), + }, + [STATE(4034)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10812), + [sym_labeled_block] = STATE(10812), + [sym_if_statement] = STATE(10812), + [sym_while_statement] = STATE(10812), + [sym_for_statement] = STATE(10812), + [sym_match_statement] = STATE(10812), + [sym__value] = STATE(10812), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4037), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6952), + }, + [STATE(4035)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10816), + [sym_labeled_block] = STATE(10816), + [sym_if_statement] = STATE(10816), + [sym_while_statement] = STATE(10816), + [sym_for_statement] = STATE(10816), + [sym_match_statement] = STATE(10816), + [sym__value] = STATE(10816), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4036)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10714), + [sym_labeled_block] = STATE(10714), + [sym_if_statement] = STATE(10714), + [sym_while_statement] = STATE(10714), + [sym_for_statement] = STATE(10714), + [sym_match_statement] = STATE(10714), + [sym__value] = STATE(10714), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4037)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10718), + [sym_labeled_block] = STATE(10718), + [sym_if_statement] = STATE(10718), + [sym_while_statement] = STATE(10718), + [sym_for_statement] = STATE(10718), + [sym_match_statement] = STATE(10718), + [sym__value] = STATE(10718), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4038)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8669), + [sym_error_capture] = STATE(4940), + [sym_if_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_match_statement] = STATE(8669), + [sym_expression] = STATE(8574), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4825), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6956), + }, + [STATE(4039)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9549), + [sym_labeled_block] = STATE(9549), + [sym_if_statement] = STATE(9549), + [sym_while_statement] = STATE(9549), + [sym_for_statement] = STATE(9549), + [sym_match_statement] = STATE(9549), + [sym__value] = STATE(9549), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4042), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6958), + }, + [STATE(4040)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9696), + [sym_labeled_block] = STATE(9696), + [sym_if_statement] = STATE(9696), + [sym_while_statement] = STATE(9696), + [sym_for_statement] = STATE(9696), + [sym_match_statement] = STATE(9696), + [sym__value] = STATE(9696), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4045), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6960), + }, + [STATE(4041)] = { + [ts_builtin_sym_end] = ACTIONS(5038), + [sym_identifier] = ACTIONS(5040), + [anon_sym_import] = ACTIONS(5040), + [anon_sym_test] = ACTIONS(5040), + [anon_sym_hide] = ACTIONS(5040), + [anon_sym_func] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5040), + [anon_sym_struct] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_void] = ACTIONS(5040), + [anon_sym_noreturn] = ACTIONS(5040), + [anon_sym_type] = ACTIONS(5040), + [anon_sym_anyopaque] = ACTIONS(5040), + [anon_sym_bool] = ACTIONS(5040), + [anon_sym_int] = ACTIONS(5040), + [anon_sym_uint] = ACTIONS(5040), + [anon_sym_float] = ACTIONS(5040), + [anon_sym_range] = ACTIONS(5040), + [anon_sym_i8] = ACTIONS(5040), + [anon_sym_i16] = ACTIONS(5040), + [anon_sym_i32] = ACTIONS(5040), + [anon_sym_i64] = ACTIONS(5040), + [anon_sym_u8] = ACTIONS(5040), + [anon_sym_u16] = ACTIONS(5040), + [anon_sym_u32] = ACTIONS(5040), + [anon_sym_u64] = ACTIONS(5040), + [anon_sym_isize] = ACTIONS(5040), + [anon_sym_usize] = ACTIONS(5040), + [anon_sym_f32] = ACTIONS(5040), + [anon_sym_f64] = ACTIONS(5040), + [anon_sym_c_char] = ACTIONS(5040), + [anon_sym_c_schar] = ACTIONS(5040), + [anon_sym_c_uchar] = ACTIONS(5040), + [anon_sym_c_short] = ACTIONS(5040), + [anon_sym_c_ushort] = ACTIONS(5040), + [anon_sym_c_int] = ACTIONS(5040), + [anon_sym_c_uint] = ACTIONS(5040), + [anon_sym_c_long] = ACTIONS(5040), + [anon_sym_c_ulong] = ACTIONS(5040), + [anon_sym_c_longlong] = ACTIONS(5040), + [anon_sym_c_ulonglong] = ACTIONS(5040), + [anon_sym_c_float] = ACTIONS(5040), + [anon_sym_c_double] = ACTIONS(5040), + [anon_sym_c_longdouble] = ACTIONS(5040), + [anon_sym_return] = ACTIONS(5040), + [anon_sym_yield] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_break] = ACTIONS(5040), + [anon_sym_continue] = ACTIONS(5040), + [anon_sym_defer] = ACTIONS(5040), + [anon_sym_errdefer] = ACTIONS(5040), + [anon_sym_if] = ACTIONS(5040), + [anon_sym_else] = ACTIONS(5040), + [anon_sym_while] = ACTIONS(5040), + [anon_sym_expand] = ACTIONS(5040), + [anon_sym_for] = ACTIONS(5040), + [anon_sym_match] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5038), + [anon_sym_orelse] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5040), + [anon_sym_and] = ACTIONS(5040), + [anon_sym_EQ_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_xor] = ACTIONS(5040), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_LT_LT_PIPE] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_catch] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5038), + [anon_sym_try] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym_true] = ACTIONS(5040), + [anon_sym_false] = ACTIONS(5040), + [anon_sym_null] = ACTIONS(5040), + [anon_sym_unreachable] = ACTIONS(5040), + [anon_sym_undefined] = ACTIONS(5040), + [sym_sink] = ACTIONS(5040), + [sym_integer] = ACTIONS(5040), + [sym_float] = ACTIONS(5038), + [anon_sym_DQUOTE] = ACTIONS(5038), + [sym_multiline_string] = ACTIONS(5038), + [sym_character] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5038), + }, + [STATE(4042)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9522), + [sym_labeled_block] = STATE(9522), + [sym_if_statement] = STATE(9522), + [sym_while_statement] = STATE(9522), + [sym_for_statement] = STATE(9522), + [sym_match_statement] = STATE(9522), + [sym__value] = STATE(9522), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4043)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9523), + [sym_labeled_block] = STATE(9523), + [sym_if_statement] = STATE(9523), + [sym_while_statement] = STATE(9523), + [sym_for_statement] = STATE(9523), + [sym_match_statement] = STATE(9523), + [sym__value] = STATE(9523), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4046), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6962), + }, + [STATE(4044)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9584), + [sym_labeled_block] = STATE(9584), + [sym_if_statement] = STATE(9584), + [sym_while_statement] = STATE(9584), + [sym_for_statement] = STATE(9584), + [sym_match_statement] = STATE(9584), + [sym__value] = STATE(9584), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4047), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6964), + }, + [STATE(4045)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9701), + [sym_labeled_block] = STATE(9701), + [sym_if_statement] = STATE(9701), + [sym_while_statement] = STATE(9701), + [sym_for_statement] = STATE(9701), + [sym_match_statement] = STATE(9701), + [sym__value] = STATE(9701), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4046)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9611), + [sym_labeled_block] = STATE(9611), + [sym_if_statement] = STATE(9611), + [sym_while_statement] = STATE(9611), + [sym_for_statement] = STATE(9611), + [sym_match_statement] = STATE(9611), + [sym__value] = STATE(9611), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4047)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9615), + [sym_labeled_block] = STATE(9615), + [sym_if_statement] = STATE(9615), + [sym_while_statement] = STATE(9615), + [sym_for_statement] = STATE(9615), + [sym_match_statement] = STATE(9615), + [sym__value] = STATE(9615), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4048)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7527), + [sym_error_capture] = STATE(4943), + [sym_if_statement] = STATE(7527), + [sym_while_statement] = STATE(7527), + [sym_for_statement] = STATE(7527), + [sym_match_statement] = STATE(7527), + [sym_expression] = STATE(7149), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6970), + }, + [STATE(4049)] = { + [ts_builtin_sym_end] = ACTIONS(5042), + [sym_identifier] = ACTIONS(5044), + [anon_sym_import] = ACTIONS(5044), + [anon_sym_test] = ACTIONS(5044), + [anon_sym_hide] = ACTIONS(5044), + [anon_sym_func] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5044), + [anon_sym_struct] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5042), + [anon_sym_RBRACE] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_void] = ACTIONS(5044), + [anon_sym_noreturn] = ACTIONS(5044), + [anon_sym_type] = ACTIONS(5044), + [anon_sym_anyopaque] = ACTIONS(5044), + [anon_sym_bool] = ACTIONS(5044), + [anon_sym_int] = ACTIONS(5044), + [anon_sym_uint] = ACTIONS(5044), + [anon_sym_float] = ACTIONS(5044), + [anon_sym_range] = ACTIONS(5044), + [anon_sym_i8] = ACTIONS(5044), + [anon_sym_i16] = ACTIONS(5044), + [anon_sym_i32] = ACTIONS(5044), + [anon_sym_i64] = ACTIONS(5044), + [anon_sym_u8] = ACTIONS(5044), + [anon_sym_u16] = ACTIONS(5044), + [anon_sym_u32] = ACTIONS(5044), + [anon_sym_u64] = ACTIONS(5044), + [anon_sym_isize] = ACTIONS(5044), + [anon_sym_usize] = ACTIONS(5044), + [anon_sym_f32] = ACTIONS(5044), + [anon_sym_f64] = ACTIONS(5044), + [anon_sym_c_char] = ACTIONS(5044), + [anon_sym_c_schar] = ACTIONS(5044), + [anon_sym_c_uchar] = ACTIONS(5044), + [anon_sym_c_short] = ACTIONS(5044), + [anon_sym_c_ushort] = ACTIONS(5044), + [anon_sym_c_int] = ACTIONS(5044), + [anon_sym_c_uint] = ACTIONS(5044), + [anon_sym_c_long] = ACTIONS(5044), + [anon_sym_c_ulong] = ACTIONS(5044), + [anon_sym_c_longlong] = ACTIONS(5044), + [anon_sym_c_ulonglong] = ACTIONS(5044), + [anon_sym_c_float] = ACTIONS(5044), + [anon_sym_c_double] = ACTIONS(5044), + [anon_sym_c_longdouble] = ACTIONS(5044), + [anon_sym_return] = ACTIONS(5044), + [anon_sym_yield] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_break] = ACTIONS(5044), + [anon_sym_continue] = ACTIONS(5044), + [anon_sym_defer] = ACTIONS(5044), + [anon_sym_errdefer] = ACTIONS(5044), + [anon_sym_if] = ACTIONS(5044), + [anon_sym_else] = ACTIONS(5044), + [anon_sym_while] = ACTIONS(5044), + [anon_sym_expand] = ACTIONS(5044), + [anon_sym_for] = ACTIONS(5044), + [anon_sym_match] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5042), + [anon_sym_orelse] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5042), + [anon_sym_BANG_EQ] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_xor] = ACTIONS(5044), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5042), + [anon_sym_LT_LT_PIPE] = ACTIONS(5042), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_catch] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5042), + [anon_sym_try] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym_true] = ACTIONS(5044), + [anon_sym_false] = ACTIONS(5044), + [anon_sym_null] = ACTIONS(5044), + [anon_sym_unreachable] = ACTIONS(5044), + [anon_sym_undefined] = ACTIONS(5044), + [sym_sink] = ACTIONS(5044), + [sym_integer] = ACTIONS(5044), + [sym_float] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5042), + [sym_multiline_string] = ACTIONS(5042), + [sym_character] = ACTIONS(5042), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5042), + }, + [STATE(4050)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4051)] = { + [ts_builtin_sym_end] = ACTIONS(5046), + [sym_identifier] = ACTIONS(5048), + [anon_sym_import] = ACTIONS(5048), + [anon_sym_test] = ACTIONS(5048), + [anon_sym_hide] = ACTIONS(5048), + [anon_sym_func] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_void] = ACTIONS(5048), + [anon_sym_noreturn] = ACTIONS(5048), + [anon_sym_type] = ACTIONS(5048), + [anon_sym_anyopaque] = ACTIONS(5048), + [anon_sym_bool] = ACTIONS(5048), + [anon_sym_int] = ACTIONS(5048), + [anon_sym_uint] = ACTIONS(5048), + [anon_sym_float] = ACTIONS(5048), + [anon_sym_range] = ACTIONS(5048), + [anon_sym_i8] = ACTIONS(5048), + [anon_sym_i16] = ACTIONS(5048), + [anon_sym_i32] = ACTIONS(5048), + [anon_sym_i64] = ACTIONS(5048), + [anon_sym_u8] = ACTIONS(5048), + [anon_sym_u16] = ACTIONS(5048), + [anon_sym_u32] = ACTIONS(5048), + [anon_sym_u64] = ACTIONS(5048), + [anon_sym_isize] = ACTIONS(5048), + [anon_sym_usize] = ACTIONS(5048), + [anon_sym_f32] = ACTIONS(5048), + [anon_sym_f64] = ACTIONS(5048), + [anon_sym_c_char] = ACTIONS(5048), + [anon_sym_c_schar] = ACTIONS(5048), + [anon_sym_c_uchar] = ACTIONS(5048), + [anon_sym_c_short] = ACTIONS(5048), + [anon_sym_c_ushort] = ACTIONS(5048), + [anon_sym_c_int] = ACTIONS(5048), + [anon_sym_c_uint] = ACTIONS(5048), + [anon_sym_c_long] = ACTIONS(5048), + [anon_sym_c_ulong] = ACTIONS(5048), + [anon_sym_c_longlong] = ACTIONS(5048), + [anon_sym_c_ulonglong] = ACTIONS(5048), + [anon_sym_c_float] = ACTIONS(5048), + [anon_sym_c_double] = ACTIONS(5048), + [anon_sym_c_longdouble] = ACTIONS(5048), + [anon_sym_return] = ACTIONS(5048), + [anon_sym_yield] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5046), + [anon_sym_break] = ACTIONS(5048), + [anon_sym_continue] = ACTIONS(5048), + [anon_sym_defer] = ACTIONS(5048), + [anon_sym_errdefer] = ACTIONS(5048), + [anon_sym_if] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5048), + [anon_sym_while] = ACTIONS(5048), + [anon_sym_expand] = ACTIONS(5048), + [anon_sym_for] = ACTIONS(5048), + [anon_sym_match] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5046), + [anon_sym_orelse] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_LT_LT_PIPE] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_catch] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_try] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym_true] = ACTIONS(5048), + [anon_sym_false] = ACTIONS(5048), + [anon_sym_null] = ACTIONS(5048), + [anon_sym_unreachable] = ACTIONS(5048), + [anon_sym_undefined] = ACTIONS(5048), + [sym_sink] = ACTIONS(5048), + [sym_integer] = ACTIONS(5048), + [sym_float] = ACTIONS(5046), + [anon_sym_DQUOTE] = ACTIONS(5046), + [sym_multiline_string] = ACTIONS(5046), + [sym_character] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5046), + }, + [STATE(4052)] = { + [ts_builtin_sym_end] = ACTIONS(4820), + [sym_identifier] = ACTIONS(4822), + [anon_sym_import] = ACTIONS(4822), + [anon_sym_test] = ACTIONS(4822), + [anon_sym_hide] = ACTIONS(4822), + [anon_sym_func] = ACTIONS(4822), + [anon_sym_BANG] = ACTIONS(4822), + [anon_sym_struct] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_void] = ACTIONS(4822), + [anon_sym_noreturn] = ACTIONS(4822), + [anon_sym_type] = ACTIONS(4822), + [anon_sym_anyopaque] = ACTIONS(4822), + [anon_sym_bool] = ACTIONS(4822), + [anon_sym_int] = ACTIONS(4822), + [anon_sym_uint] = ACTIONS(4822), + [anon_sym_float] = ACTIONS(4822), + [anon_sym_range] = ACTIONS(4822), + [anon_sym_i8] = ACTIONS(4822), + [anon_sym_i16] = ACTIONS(4822), + [anon_sym_i32] = ACTIONS(4822), + [anon_sym_i64] = ACTIONS(4822), + [anon_sym_u8] = ACTIONS(4822), + [anon_sym_u16] = ACTIONS(4822), + [anon_sym_u32] = ACTIONS(4822), + [anon_sym_u64] = ACTIONS(4822), + [anon_sym_isize] = ACTIONS(4822), + [anon_sym_usize] = ACTIONS(4822), + [anon_sym_f32] = ACTIONS(4822), + [anon_sym_f64] = ACTIONS(4822), + [anon_sym_c_char] = ACTIONS(4822), + [anon_sym_c_schar] = ACTIONS(4822), + [anon_sym_c_uchar] = ACTIONS(4822), + [anon_sym_c_short] = ACTIONS(4822), + [anon_sym_c_ushort] = ACTIONS(4822), + [anon_sym_c_int] = ACTIONS(4822), + [anon_sym_c_uint] = ACTIONS(4822), + [anon_sym_c_long] = ACTIONS(4822), + [anon_sym_c_ulong] = ACTIONS(4822), + [anon_sym_c_longlong] = ACTIONS(4822), + [anon_sym_c_ulonglong] = ACTIONS(4822), + [anon_sym_c_float] = ACTIONS(4822), + [anon_sym_c_double] = ACTIONS(4822), + [anon_sym_c_longdouble] = ACTIONS(4822), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_yield] = ACTIONS(4822), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_defer] = ACTIONS(4822), + [anon_sym_errdefer] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_while] = ACTIONS(4822), + [anon_sym_expand] = ACTIONS(4822), + [anon_sym_for] = ACTIONS(4822), + [anon_sym_match] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4820), + [anon_sym_orelse] = ACTIONS(4822), + [anon_sym_or] = ACTIONS(4822), + [anon_sym_and] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4820), + [anon_sym_xor] = ACTIONS(4822), + [anon_sym_LT_LT] = ACTIONS(4822), + [anon_sym_GT_GT] = ACTIONS(4820), + [anon_sym_LT_LT_PIPE] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_catch] = ACTIONS(4822), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_unreachable] = ACTIONS(4822), + [anon_sym_undefined] = ACTIONS(4822), + [sym_sink] = ACTIONS(4822), + [sym_integer] = ACTIONS(4822), + [sym_float] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [sym_multiline_string] = ACTIONS(4820), + [sym_character] = ACTIONS(4820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4820), + }, + [STATE(4053)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3566), + [sym_labeled_block] = STATE(3566), + [sym_if_statement] = STATE(3566), + [sym_while_statement] = STATE(3566), + [sym_for_statement] = STATE(3566), + [sym_match_statement] = STATE(3566), + [sym__value] = STATE(3566), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4054)] = { + [ts_builtin_sym_end] = ACTIONS(5054), + [sym_identifier] = ACTIONS(5056), + [anon_sym_import] = ACTIONS(5056), + [anon_sym_test] = ACTIONS(5056), + [anon_sym_hide] = ACTIONS(5056), + [anon_sym_func] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5056), + [anon_sym_struct] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5054), + [anon_sym_RBRACE] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOLLAR] = ACTIONS(5054), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5054), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_void] = ACTIONS(5056), + [anon_sym_noreturn] = ACTIONS(5056), + [anon_sym_type] = ACTIONS(5056), + [anon_sym_anyopaque] = ACTIONS(5056), + [anon_sym_bool] = ACTIONS(5056), + [anon_sym_int] = ACTIONS(5056), + [anon_sym_uint] = ACTIONS(5056), + [anon_sym_float] = ACTIONS(5056), + [anon_sym_range] = ACTIONS(5056), + [anon_sym_i8] = ACTIONS(5056), + [anon_sym_i16] = ACTIONS(5056), + [anon_sym_i32] = ACTIONS(5056), + [anon_sym_i64] = ACTIONS(5056), + [anon_sym_u8] = ACTIONS(5056), + [anon_sym_u16] = ACTIONS(5056), + [anon_sym_u32] = ACTIONS(5056), + [anon_sym_u64] = ACTIONS(5056), + [anon_sym_isize] = ACTIONS(5056), + [anon_sym_usize] = ACTIONS(5056), + [anon_sym_f32] = ACTIONS(5056), + [anon_sym_f64] = ACTIONS(5056), + [anon_sym_c_char] = ACTIONS(5056), + [anon_sym_c_schar] = ACTIONS(5056), + [anon_sym_c_uchar] = ACTIONS(5056), + [anon_sym_c_short] = ACTIONS(5056), + [anon_sym_c_ushort] = ACTIONS(5056), + [anon_sym_c_int] = ACTIONS(5056), + [anon_sym_c_uint] = ACTIONS(5056), + [anon_sym_c_long] = ACTIONS(5056), + [anon_sym_c_ulong] = ACTIONS(5056), + [anon_sym_c_longlong] = ACTIONS(5056), + [anon_sym_c_ulonglong] = ACTIONS(5056), + [anon_sym_c_float] = ACTIONS(5056), + [anon_sym_c_double] = ACTIONS(5056), + [anon_sym_c_longdouble] = ACTIONS(5056), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_yield] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5054), + [anon_sym_break] = ACTIONS(5056), + [anon_sym_continue] = ACTIONS(5056), + [anon_sym_defer] = ACTIONS(5056), + [anon_sym_errdefer] = ACTIONS(5056), + [anon_sym_if] = ACTIONS(5056), + [anon_sym_else] = ACTIONS(5056), + [anon_sym_while] = ACTIONS(5056), + [anon_sym_expand] = ACTIONS(5056), + [anon_sym_for] = ACTIONS(5056), + [anon_sym_match] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5054), + [anon_sym_orelse] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_LT] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_xor] = ACTIONS(5056), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5054), + [anon_sym_LT_LT_PIPE] = ACTIONS(5054), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_catch] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5054), + [anon_sym_try] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym_true] = ACTIONS(5056), + [anon_sym_false] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_unreachable] = ACTIONS(5056), + [anon_sym_undefined] = ACTIONS(5056), + [sym_sink] = ACTIONS(5056), + [sym_integer] = ACTIONS(5056), + [sym_float] = ACTIONS(5054), + [anon_sym_DQUOTE] = ACTIONS(5054), + [sym_multiline_string] = ACTIONS(5054), + [sym_character] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5054), + }, + [STATE(4055)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4059), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6972), + }, + [STATE(4056)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4062), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6974), + }, + [STATE(4057)] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1254), + [anon_sym_import] = ACTIONS(1254), + [anon_sym_test] = ACTIONS(1254), + [anon_sym_hide] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_COLON] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_defer] = ACTIONS(1254), + [anon_sym_errdefer] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_expand] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_LT_LT_PIPE] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_unreachable] = ACTIONS(1254), + [anon_sym_undefined] = ACTIONS(1254), + [sym_sink] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [sym_float] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_multiline_string] = ACTIONS(1258), + [sym_character] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1258), + }, + [STATE(4058)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4059)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4060)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4065), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6976), + }, + [STATE(4061)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4066), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6978), + }, + [STATE(4062)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4063)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4064)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4065)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4066)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4067)] = { + [ts_builtin_sym_end] = ACTIONS(4824), + [sym_identifier] = ACTIONS(4826), + [anon_sym_import] = ACTIONS(4826), + [anon_sym_test] = ACTIONS(4826), + [anon_sym_hide] = ACTIONS(4826), + [anon_sym_func] = ACTIONS(4826), + [anon_sym_BANG] = ACTIONS(4826), + [anon_sym_struct] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_void] = ACTIONS(4826), + [anon_sym_noreturn] = ACTIONS(4826), + [anon_sym_type] = ACTIONS(4826), + [anon_sym_anyopaque] = ACTIONS(4826), + [anon_sym_bool] = ACTIONS(4826), + [anon_sym_int] = ACTIONS(4826), + [anon_sym_uint] = ACTIONS(4826), + [anon_sym_float] = ACTIONS(4826), + [anon_sym_range] = ACTIONS(4826), + [anon_sym_i8] = ACTIONS(4826), + [anon_sym_i16] = ACTIONS(4826), + [anon_sym_i32] = ACTIONS(4826), + [anon_sym_i64] = ACTIONS(4826), + [anon_sym_u8] = ACTIONS(4826), + [anon_sym_u16] = ACTIONS(4826), + [anon_sym_u32] = ACTIONS(4826), + [anon_sym_u64] = ACTIONS(4826), + [anon_sym_isize] = ACTIONS(4826), + [anon_sym_usize] = ACTIONS(4826), + [anon_sym_f32] = ACTIONS(4826), + [anon_sym_f64] = ACTIONS(4826), + [anon_sym_c_char] = ACTIONS(4826), + [anon_sym_c_schar] = ACTIONS(4826), + [anon_sym_c_uchar] = ACTIONS(4826), + [anon_sym_c_short] = ACTIONS(4826), + [anon_sym_c_ushort] = ACTIONS(4826), + [anon_sym_c_int] = ACTIONS(4826), + [anon_sym_c_uint] = ACTIONS(4826), + [anon_sym_c_long] = ACTIONS(4826), + [anon_sym_c_ulong] = ACTIONS(4826), + [anon_sym_c_longlong] = ACTIONS(4826), + [anon_sym_c_ulonglong] = ACTIONS(4826), + [anon_sym_c_float] = ACTIONS(4826), + [anon_sym_c_double] = ACTIONS(4826), + [anon_sym_c_longdouble] = ACTIONS(4826), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_yield] = ACTIONS(4826), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_defer] = ACTIONS(4826), + [anon_sym_errdefer] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_while] = ACTIONS(4826), + [anon_sym_expand] = ACTIONS(4826), + [anon_sym_for] = ACTIONS(4826), + [anon_sym_match] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4824), + [anon_sym_orelse] = ACTIONS(4826), + [anon_sym_or] = ACTIONS(4826), + [anon_sym_and] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4824), + [anon_sym_xor] = ACTIONS(4826), + [anon_sym_LT_LT] = ACTIONS(4826), + [anon_sym_GT_GT] = ACTIONS(4824), + [anon_sym_LT_LT_PIPE] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_catch] = ACTIONS(4826), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_unreachable] = ACTIONS(4826), + [anon_sym_undefined] = ACTIONS(4826), + [sym_sink] = ACTIONS(4826), + [sym_integer] = ACTIONS(4826), + [sym_float] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [sym_multiline_string] = ACTIONS(4824), + [sym_character] = ACTIONS(4824), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4824), + }, + [STATE(4068)] = { + [ts_builtin_sym_end] = ACTIONS(4828), + [sym_identifier] = ACTIONS(4830), + [anon_sym_import] = ACTIONS(4830), + [anon_sym_test] = ACTIONS(4830), + [anon_sym_hide] = ACTIONS(4830), + [anon_sym_func] = ACTIONS(4830), + [anon_sym_BANG] = ACTIONS(4830), + [anon_sym_struct] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_void] = ACTIONS(4830), + [anon_sym_noreturn] = ACTIONS(4830), + [anon_sym_type] = ACTIONS(4830), + [anon_sym_anyopaque] = ACTIONS(4830), + [anon_sym_bool] = ACTIONS(4830), + [anon_sym_int] = ACTIONS(4830), + [anon_sym_uint] = ACTIONS(4830), + [anon_sym_float] = ACTIONS(4830), + [anon_sym_range] = ACTIONS(4830), + [anon_sym_i8] = ACTIONS(4830), + [anon_sym_i16] = ACTIONS(4830), + [anon_sym_i32] = ACTIONS(4830), + [anon_sym_i64] = ACTIONS(4830), + [anon_sym_u8] = ACTIONS(4830), + [anon_sym_u16] = ACTIONS(4830), + [anon_sym_u32] = ACTIONS(4830), + [anon_sym_u64] = ACTIONS(4830), + [anon_sym_isize] = ACTIONS(4830), + [anon_sym_usize] = ACTIONS(4830), + [anon_sym_f32] = ACTIONS(4830), + [anon_sym_f64] = ACTIONS(4830), + [anon_sym_c_char] = ACTIONS(4830), + [anon_sym_c_schar] = ACTIONS(4830), + [anon_sym_c_uchar] = ACTIONS(4830), + [anon_sym_c_short] = ACTIONS(4830), + [anon_sym_c_ushort] = ACTIONS(4830), + [anon_sym_c_int] = ACTIONS(4830), + [anon_sym_c_uint] = ACTIONS(4830), + [anon_sym_c_long] = ACTIONS(4830), + [anon_sym_c_ulong] = ACTIONS(4830), + [anon_sym_c_longlong] = ACTIONS(4830), + [anon_sym_c_ulonglong] = ACTIONS(4830), + [anon_sym_c_float] = ACTIONS(4830), + [anon_sym_c_double] = ACTIONS(4830), + [anon_sym_c_longdouble] = ACTIONS(4830), + [anon_sym_return] = ACTIONS(4830), + [anon_sym_yield] = ACTIONS(4830), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_break] = ACTIONS(4830), + [anon_sym_continue] = ACTIONS(4830), + [anon_sym_defer] = ACTIONS(4830), + [anon_sym_errdefer] = ACTIONS(4830), + [anon_sym_if] = ACTIONS(4830), + [anon_sym_else] = ACTIONS(4830), + [anon_sym_while] = ACTIONS(4830), + [anon_sym_expand] = ACTIONS(4830), + [anon_sym_for] = ACTIONS(4830), + [anon_sym_match] = ACTIONS(4830), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_orelse] = ACTIONS(4830), + [anon_sym_or] = ACTIONS(4830), + [anon_sym_and] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4828), + [anon_sym_xor] = ACTIONS(4830), + [anon_sym_LT_LT] = ACTIONS(4830), + [anon_sym_GT_GT] = ACTIONS(4828), + [anon_sym_LT_LT_PIPE] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_catch] = ACTIONS(4830), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_try] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4830), + [anon_sym_false] = ACTIONS(4830), + [anon_sym_null] = ACTIONS(4830), + [anon_sym_unreachable] = ACTIONS(4830), + [anon_sym_undefined] = ACTIONS(4830), + [sym_sink] = ACTIONS(4830), + [sym_integer] = ACTIONS(4830), + [sym_float] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [sym_multiline_string] = ACTIONS(4828), + [sym_character] = ACTIONS(4828), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4828), + }, + [STATE(4069)] = { + [ts_builtin_sym_end] = ACTIONS(4832), + [sym_identifier] = ACTIONS(4834), + [anon_sym_import] = ACTIONS(4834), + [anon_sym_test] = ACTIONS(4834), + [anon_sym_hide] = ACTIONS(4834), + [anon_sym_func] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_RBRACE] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4832), + [anon_sym_void] = ACTIONS(4834), + [anon_sym_noreturn] = ACTIONS(4834), + [anon_sym_type] = ACTIONS(4834), + [anon_sym_anyopaque] = ACTIONS(4834), + [anon_sym_bool] = ACTIONS(4834), + [anon_sym_int] = ACTIONS(4834), + [anon_sym_uint] = ACTIONS(4834), + [anon_sym_float] = ACTIONS(4834), + [anon_sym_range] = ACTIONS(4834), + [anon_sym_i8] = ACTIONS(4834), + [anon_sym_i16] = ACTIONS(4834), + [anon_sym_i32] = ACTIONS(4834), + [anon_sym_i64] = ACTIONS(4834), + [anon_sym_u8] = ACTIONS(4834), + [anon_sym_u16] = ACTIONS(4834), + [anon_sym_u32] = ACTIONS(4834), + [anon_sym_u64] = ACTIONS(4834), + [anon_sym_isize] = ACTIONS(4834), + [anon_sym_usize] = ACTIONS(4834), + [anon_sym_f32] = ACTIONS(4834), + [anon_sym_f64] = ACTIONS(4834), + [anon_sym_c_char] = ACTIONS(4834), + [anon_sym_c_schar] = ACTIONS(4834), + [anon_sym_c_uchar] = ACTIONS(4834), + [anon_sym_c_short] = ACTIONS(4834), + [anon_sym_c_ushort] = ACTIONS(4834), + [anon_sym_c_int] = ACTIONS(4834), + [anon_sym_c_uint] = ACTIONS(4834), + [anon_sym_c_long] = ACTIONS(4834), + [anon_sym_c_ulong] = ACTIONS(4834), + [anon_sym_c_longlong] = ACTIONS(4834), + [anon_sym_c_ulonglong] = ACTIONS(4834), + [anon_sym_c_float] = ACTIONS(4834), + [anon_sym_c_double] = ACTIONS(4834), + [anon_sym_c_longdouble] = ACTIONS(4834), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_yield] = ACTIONS(4834), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_defer] = ACTIONS(4834), + [anon_sym_errdefer] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_while] = ACTIONS(4834), + [anon_sym_expand] = ACTIONS(4834), + [anon_sym_for] = ACTIONS(4834), + [anon_sym_match] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4832), + [anon_sym_orelse] = ACTIONS(4834), + [anon_sym_or] = ACTIONS(4834), + [anon_sym_and] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4832), + [anon_sym_xor] = ACTIONS(4834), + [anon_sym_LT_LT] = ACTIONS(4834), + [anon_sym_GT_GT] = ACTIONS(4832), + [anon_sym_LT_LT_PIPE] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_catch] = ACTIONS(4834), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_unreachable] = ACTIONS(4834), + [anon_sym_undefined] = ACTIONS(4834), + [sym_sink] = ACTIONS(4834), + [sym_integer] = ACTIONS(4834), + [sym_float] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [sym_multiline_string] = ACTIONS(4832), + [sym_character] = ACTIONS(4832), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4832), + }, + [STATE(4070)] = { + [ts_builtin_sym_end] = ACTIONS(4836), + [sym_identifier] = ACTIONS(4838), + [anon_sym_import] = ACTIONS(4838), + [anon_sym_test] = ACTIONS(4838), + [anon_sym_hide] = ACTIONS(4838), + [anon_sym_func] = ACTIONS(4838), + [anon_sym_BANG] = ACTIONS(4838), + [anon_sym_struct] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_void] = ACTIONS(4838), + [anon_sym_noreturn] = ACTIONS(4838), + [anon_sym_type] = ACTIONS(4838), + [anon_sym_anyopaque] = ACTIONS(4838), + [anon_sym_bool] = ACTIONS(4838), + [anon_sym_int] = ACTIONS(4838), + [anon_sym_uint] = ACTIONS(4838), + [anon_sym_float] = ACTIONS(4838), + [anon_sym_range] = ACTIONS(4838), + [anon_sym_i8] = ACTIONS(4838), + [anon_sym_i16] = ACTIONS(4838), + [anon_sym_i32] = ACTIONS(4838), + [anon_sym_i64] = ACTIONS(4838), + [anon_sym_u8] = ACTIONS(4838), + [anon_sym_u16] = ACTIONS(4838), + [anon_sym_u32] = ACTIONS(4838), + [anon_sym_u64] = ACTIONS(4838), + [anon_sym_isize] = ACTIONS(4838), + [anon_sym_usize] = ACTIONS(4838), + [anon_sym_f32] = ACTIONS(4838), + [anon_sym_f64] = ACTIONS(4838), + [anon_sym_c_char] = ACTIONS(4838), + [anon_sym_c_schar] = ACTIONS(4838), + [anon_sym_c_uchar] = ACTIONS(4838), + [anon_sym_c_short] = ACTIONS(4838), + [anon_sym_c_ushort] = ACTIONS(4838), + [anon_sym_c_int] = ACTIONS(4838), + [anon_sym_c_uint] = ACTIONS(4838), + [anon_sym_c_long] = ACTIONS(4838), + [anon_sym_c_ulong] = ACTIONS(4838), + [anon_sym_c_longlong] = ACTIONS(4838), + [anon_sym_c_ulonglong] = ACTIONS(4838), + [anon_sym_c_float] = ACTIONS(4838), + [anon_sym_c_double] = ACTIONS(4838), + [anon_sym_c_longdouble] = ACTIONS(4838), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_yield] = ACTIONS(4838), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_defer] = ACTIONS(4838), + [anon_sym_errdefer] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_expand] = ACTIONS(4838), + [anon_sym_for] = ACTIONS(4838), + [anon_sym_match] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4836), + [anon_sym_orelse] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4836), + [anon_sym_xor] = ACTIONS(4838), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4836), + [anon_sym_LT_LT_PIPE] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_catch] = ACTIONS(4838), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_unreachable] = ACTIONS(4838), + [anon_sym_undefined] = ACTIONS(4838), + [sym_sink] = ACTIONS(4838), + [sym_integer] = ACTIONS(4838), + [sym_float] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [sym_multiline_string] = ACTIONS(4836), + [sym_character] = ACTIONS(4836), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4836), + }, + [STATE(4071)] = { + [ts_builtin_sym_end] = ACTIONS(5486), + [sym_identifier] = ACTIONS(5488), + [anon_sym_import] = ACTIONS(5488), + [anon_sym_test] = ACTIONS(5488), + [anon_sym_hide] = ACTIONS(5488), + [anon_sym_func] = ACTIONS(5488), + [anon_sym_BANG] = ACTIONS(5488), + [anon_sym_struct] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5486), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5486), + [anon_sym_DOLLAR] = ACTIONS(5486), + [anon_sym_PIPE] = ACTIONS(5486), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5486), + [anon_sym_LBRACK] = ACTIONS(5486), + [anon_sym_void] = ACTIONS(5488), + [anon_sym_noreturn] = ACTIONS(5488), + [anon_sym_type] = ACTIONS(5488), + [anon_sym_anyopaque] = ACTIONS(5488), + [anon_sym_bool] = ACTIONS(5488), + [anon_sym_int] = ACTIONS(5488), + [anon_sym_uint] = ACTIONS(5488), + [anon_sym_float] = ACTIONS(5488), + [anon_sym_range] = ACTIONS(5488), + [anon_sym_i8] = ACTIONS(5488), + [anon_sym_i16] = ACTIONS(5488), + [anon_sym_i32] = ACTIONS(5488), + [anon_sym_i64] = ACTIONS(5488), + [anon_sym_u8] = ACTIONS(5488), + [anon_sym_u16] = ACTIONS(5488), + [anon_sym_u32] = ACTIONS(5488), + [anon_sym_u64] = ACTIONS(5488), + [anon_sym_isize] = ACTIONS(5488), + [anon_sym_usize] = ACTIONS(5488), + [anon_sym_f32] = ACTIONS(5488), + [anon_sym_f64] = ACTIONS(5488), + [anon_sym_c_char] = ACTIONS(5488), + [anon_sym_c_schar] = ACTIONS(5488), + [anon_sym_c_uchar] = ACTIONS(5488), + [anon_sym_c_short] = ACTIONS(5488), + [anon_sym_c_ushort] = ACTIONS(5488), + [anon_sym_c_int] = ACTIONS(5488), + [anon_sym_c_uint] = ACTIONS(5488), + [anon_sym_c_long] = ACTIONS(5488), + [anon_sym_c_ulong] = ACTIONS(5488), + [anon_sym_c_longlong] = ACTIONS(5488), + [anon_sym_c_ulonglong] = ACTIONS(5488), + [anon_sym_c_float] = ACTIONS(5488), + [anon_sym_c_double] = ACTIONS(5488), + [anon_sym_c_longdouble] = ACTIONS(5488), + [anon_sym_return] = ACTIONS(5488), + [anon_sym_yield] = ACTIONS(5488), + [anon_sym_COLON] = ACTIONS(5486), + [anon_sym_break] = ACTIONS(5488), + [anon_sym_continue] = ACTIONS(5488), + [anon_sym_defer] = ACTIONS(5488), + [anon_sym_errdefer] = ACTIONS(5488), + [anon_sym_if] = ACTIONS(5488), + [anon_sym_else] = ACTIONS(5488), + [anon_sym_while] = ACTIONS(5488), + [anon_sym_expand] = ACTIONS(5488), + [anon_sym_for] = ACTIONS(5488), + [anon_sym_match] = ACTIONS(5488), + [anon_sym_DOT_DOT] = ACTIONS(5488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5486), + [anon_sym_orelse] = ACTIONS(5488), + [anon_sym_or] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5486), + [anon_sym_BANG_EQ] = ACTIONS(5486), + [anon_sym_LT] = ACTIONS(5488), + [anon_sym_LT_EQ] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5486), + [anon_sym_xor] = ACTIONS(5488), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5486), + [anon_sym_LT_LT_PIPE] = ACTIONS(5486), + [anon_sym_PLUS] = ACTIONS(5486), + [anon_sym_SLASH] = ACTIONS(5486), + [anon_sym_catch] = ACTIONS(5488), + [anon_sym_TILDE] = ACTIONS(5486), + [anon_sym_try] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5486), + [anon_sym_true] = ACTIONS(5488), + [anon_sym_false] = ACTIONS(5488), + [anon_sym_null] = ACTIONS(5488), + [anon_sym_unreachable] = ACTIONS(5488), + [anon_sym_undefined] = ACTIONS(5488), + [sym_sink] = ACTIONS(5488), + [sym_integer] = ACTIONS(5488), + [sym_float] = ACTIONS(5486), + [anon_sym_DQUOTE] = ACTIONS(5486), + [sym_multiline_string] = ACTIONS(5486), + [sym_character] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5486), + }, + [STATE(4072)] = { + [ts_builtin_sym_end] = ACTIONS(5278), + [sym_identifier] = ACTIONS(5280), + [anon_sym_import] = ACTIONS(5280), + [anon_sym_test] = ACTIONS(5280), + [anon_sym_hide] = ACTIONS(5280), + [anon_sym_func] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_struct] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [anon_sym_RBRACE] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5278), + [anon_sym_PIPE] = ACTIONS(5278), + [anon_sym_QMARK] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_void] = ACTIONS(5280), + [anon_sym_noreturn] = ACTIONS(5280), + [anon_sym_type] = ACTIONS(5280), + [anon_sym_anyopaque] = ACTIONS(5280), + [anon_sym_bool] = ACTIONS(5280), + [anon_sym_int] = ACTIONS(5280), + [anon_sym_uint] = ACTIONS(5280), + [anon_sym_float] = ACTIONS(5280), + [anon_sym_range] = ACTIONS(5280), + [anon_sym_i8] = ACTIONS(5280), + [anon_sym_i16] = ACTIONS(5280), + [anon_sym_i32] = ACTIONS(5280), + [anon_sym_i64] = ACTIONS(5280), + [anon_sym_u8] = ACTIONS(5280), + [anon_sym_u16] = ACTIONS(5280), + [anon_sym_u32] = ACTIONS(5280), + [anon_sym_u64] = ACTIONS(5280), + [anon_sym_isize] = ACTIONS(5280), + [anon_sym_usize] = ACTIONS(5280), + [anon_sym_f32] = ACTIONS(5280), + [anon_sym_f64] = ACTIONS(5280), + [anon_sym_c_char] = ACTIONS(5280), + [anon_sym_c_schar] = ACTIONS(5280), + [anon_sym_c_uchar] = ACTIONS(5280), + [anon_sym_c_short] = ACTIONS(5280), + [anon_sym_c_ushort] = ACTIONS(5280), + [anon_sym_c_int] = ACTIONS(5280), + [anon_sym_c_uint] = ACTIONS(5280), + [anon_sym_c_long] = ACTIONS(5280), + [anon_sym_c_ulong] = ACTIONS(5280), + [anon_sym_c_longlong] = ACTIONS(5280), + [anon_sym_c_ulonglong] = ACTIONS(5280), + [anon_sym_c_float] = ACTIONS(5280), + [anon_sym_c_double] = ACTIONS(5280), + [anon_sym_c_longdouble] = ACTIONS(5280), + [anon_sym_return] = ACTIONS(5280), + [anon_sym_yield] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5278), + [anon_sym_break] = ACTIONS(5280), + [anon_sym_continue] = ACTIONS(5280), + [anon_sym_defer] = ACTIONS(5280), + [anon_sym_errdefer] = ACTIONS(5280), + [anon_sym_if] = ACTIONS(5280), + [anon_sym_else] = ACTIONS(5280), + [anon_sym_while] = ACTIONS(5280), + [anon_sym_expand] = ACTIONS(5280), + [anon_sym_for] = ACTIONS(5280), + [anon_sym_match] = ACTIONS(5280), + [anon_sym_DOT_DOT] = ACTIONS(5280), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5278), + [anon_sym_orelse] = ACTIONS(5280), + [anon_sym_or] = ACTIONS(5280), + [anon_sym_and] = ACTIONS(5280), + [anon_sym_EQ_EQ] = ACTIONS(5278), + [anon_sym_BANG_EQ] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5278), + [anon_sym_xor] = ACTIONS(5280), + [anon_sym_LT_LT] = ACTIONS(5280), + [anon_sym_GT_GT] = ACTIONS(5278), + [anon_sym_LT_LT_PIPE] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5278), + [anon_sym_SLASH] = ACTIONS(5278), + [anon_sym_catch] = ACTIONS(5280), + [anon_sym_TILDE] = ACTIONS(5278), + [anon_sym_try] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5278), + [anon_sym_true] = ACTIONS(5280), + [anon_sym_false] = ACTIONS(5280), + [anon_sym_null] = ACTIONS(5280), + [anon_sym_unreachable] = ACTIONS(5280), + [anon_sym_undefined] = ACTIONS(5280), + [sym_sink] = ACTIONS(5280), + [sym_integer] = ACTIONS(5280), + [sym_float] = ACTIONS(5278), + [anon_sym_DQUOTE] = ACTIONS(5278), + [sym_multiline_string] = ACTIONS(5278), + [sym_character] = ACTIONS(5278), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5278), + }, + [STATE(4073)] = { + [ts_builtin_sym_end] = ACTIONS(5282), + [sym_identifier] = ACTIONS(5284), + [anon_sym_import] = ACTIONS(5284), + [anon_sym_test] = ACTIONS(5284), + [anon_sym_hide] = ACTIONS(5284), + [anon_sym_func] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_struct] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5282), + [anon_sym_QMARK] = ACTIONS(5282), + [anon_sym_STAR] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_void] = ACTIONS(5284), + [anon_sym_noreturn] = ACTIONS(5284), + [anon_sym_type] = ACTIONS(5284), + [anon_sym_anyopaque] = ACTIONS(5284), + [anon_sym_bool] = ACTIONS(5284), + [anon_sym_int] = ACTIONS(5284), + [anon_sym_uint] = ACTIONS(5284), + [anon_sym_float] = ACTIONS(5284), + [anon_sym_range] = ACTIONS(5284), + [anon_sym_i8] = ACTIONS(5284), + [anon_sym_i16] = ACTIONS(5284), + [anon_sym_i32] = ACTIONS(5284), + [anon_sym_i64] = ACTIONS(5284), + [anon_sym_u8] = ACTIONS(5284), + [anon_sym_u16] = ACTIONS(5284), + [anon_sym_u32] = ACTIONS(5284), + [anon_sym_u64] = ACTIONS(5284), + [anon_sym_isize] = ACTIONS(5284), + [anon_sym_usize] = ACTIONS(5284), + [anon_sym_f32] = ACTIONS(5284), + [anon_sym_f64] = ACTIONS(5284), + [anon_sym_c_char] = ACTIONS(5284), + [anon_sym_c_schar] = ACTIONS(5284), + [anon_sym_c_uchar] = ACTIONS(5284), + [anon_sym_c_short] = ACTIONS(5284), + [anon_sym_c_ushort] = ACTIONS(5284), + [anon_sym_c_int] = ACTIONS(5284), + [anon_sym_c_uint] = ACTIONS(5284), + [anon_sym_c_long] = ACTIONS(5284), + [anon_sym_c_ulong] = ACTIONS(5284), + [anon_sym_c_longlong] = ACTIONS(5284), + [anon_sym_c_ulonglong] = ACTIONS(5284), + [anon_sym_c_float] = ACTIONS(5284), + [anon_sym_c_double] = ACTIONS(5284), + [anon_sym_c_longdouble] = ACTIONS(5284), + [anon_sym_return] = ACTIONS(5284), + [anon_sym_yield] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5282), + [anon_sym_break] = ACTIONS(5284), + [anon_sym_continue] = ACTIONS(5284), + [anon_sym_defer] = ACTIONS(5284), + [anon_sym_errdefer] = ACTIONS(5284), + [anon_sym_if] = ACTIONS(5284), + [anon_sym_else] = ACTIONS(5284), + [anon_sym_while] = ACTIONS(5284), + [anon_sym_expand] = ACTIONS(5284), + [anon_sym_for] = ACTIONS(5284), + [anon_sym_match] = ACTIONS(5284), + [anon_sym_DOT_DOT] = ACTIONS(5284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5282), + [anon_sym_orelse] = ACTIONS(5284), + [anon_sym_or] = ACTIONS(5284), + [anon_sym_and] = ACTIONS(5284), + [anon_sym_EQ_EQ] = ACTIONS(5282), + [anon_sym_BANG_EQ] = ACTIONS(5282), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_LT_EQ] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_EQ] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5282), + [anon_sym_xor] = ACTIONS(5284), + [anon_sym_LT_LT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5282), + [anon_sym_LT_LT_PIPE] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5282), + [anon_sym_SLASH] = ACTIONS(5282), + [anon_sym_catch] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5282), + [anon_sym_try] = ACTIONS(5284), + [anon_sym_DOT] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5282), + [anon_sym_true] = ACTIONS(5284), + [anon_sym_false] = ACTIONS(5284), + [anon_sym_null] = ACTIONS(5284), + [anon_sym_unreachable] = ACTIONS(5284), + [anon_sym_undefined] = ACTIONS(5284), + [sym_sink] = ACTIONS(5284), + [sym_integer] = ACTIONS(5284), + [sym_float] = ACTIONS(5282), + [anon_sym_DQUOTE] = ACTIONS(5282), + [sym_multiline_string] = ACTIONS(5282), + [sym_character] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5282), + }, + [STATE(4074)] = { + [ts_builtin_sym_end] = ACTIONS(6050), + [sym_identifier] = ACTIONS(6052), + [anon_sym_import] = ACTIONS(6052), + [anon_sym_test] = ACTIONS(6052), + [anon_sym_hide] = ACTIONS(6052), + [anon_sym_func] = ACTIONS(6052), + [anon_sym_BANG] = ACTIONS(6052), + [anon_sym_struct] = ACTIONS(6052), + [anon_sym_LPAREN] = ACTIONS(6050), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_RBRACE] = ACTIONS(6050), + [anon_sym_DASH] = ACTIONS(6050), + [anon_sym_DOLLAR] = ACTIONS(6050), + [anon_sym_PIPE] = ACTIONS(6050), + [anon_sym_QMARK] = ACTIONS(6050), + [anon_sym_STAR] = ACTIONS(6050), + [anon_sym_LBRACK] = ACTIONS(6050), + [anon_sym_void] = ACTIONS(6052), + [anon_sym_noreturn] = ACTIONS(6052), + [anon_sym_type] = ACTIONS(6052), + [anon_sym_anyopaque] = ACTIONS(6052), + [anon_sym_bool] = ACTIONS(6052), + [anon_sym_int] = ACTIONS(6052), + [anon_sym_uint] = ACTIONS(6052), + [anon_sym_float] = ACTIONS(6052), + [anon_sym_range] = ACTIONS(6052), + [anon_sym_i8] = ACTIONS(6052), + [anon_sym_i16] = ACTIONS(6052), + [anon_sym_i32] = ACTIONS(6052), + [anon_sym_i64] = ACTIONS(6052), + [anon_sym_u8] = ACTIONS(6052), + [anon_sym_u16] = ACTIONS(6052), + [anon_sym_u32] = ACTIONS(6052), + [anon_sym_u64] = ACTIONS(6052), + [anon_sym_isize] = ACTIONS(6052), + [anon_sym_usize] = ACTIONS(6052), + [anon_sym_f32] = ACTIONS(6052), + [anon_sym_f64] = ACTIONS(6052), + [anon_sym_c_char] = ACTIONS(6052), + [anon_sym_c_schar] = ACTIONS(6052), + [anon_sym_c_uchar] = ACTIONS(6052), + [anon_sym_c_short] = ACTIONS(6052), + [anon_sym_c_ushort] = ACTIONS(6052), + [anon_sym_c_int] = ACTIONS(6052), + [anon_sym_c_uint] = ACTIONS(6052), + [anon_sym_c_long] = ACTIONS(6052), + [anon_sym_c_ulong] = ACTIONS(6052), + [anon_sym_c_longlong] = ACTIONS(6052), + [anon_sym_c_ulonglong] = ACTIONS(6052), + [anon_sym_c_float] = ACTIONS(6052), + [anon_sym_c_double] = ACTIONS(6052), + [anon_sym_c_longdouble] = ACTIONS(6052), + [anon_sym_return] = ACTIONS(6052), + [anon_sym_yield] = ACTIONS(6052), + [anon_sym_COLON] = ACTIONS(6050), + [anon_sym_break] = ACTIONS(6052), + [anon_sym_continue] = ACTIONS(6052), + [anon_sym_defer] = ACTIONS(6052), + [anon_sym_errdefer] = ACTIONS(6052), + [anon_sym_if] = ACTIONS(6052), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_while] = ACTIONS(6052), + [anon_sym_expand] = ACTIONS(6052), + [anon_sym_for] = ACTIONS(6052), + [anon_sym_match] = ACTIONS(6052), + [anon_sym_DOT_DOT] = ACTIONS(6052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6050), + [anon_sym_orelse] = ACTIONS(6052), + [anon_sym_or] = ACTIONS(6052), + [anon_sym_and] = ACTIONS(6052), + [anon_sym_EQ_EQ] = ACTIONS(6050), + [anon_sym_BANG_EQ] = ACTIONS(6050), + [anon_sym_LT] = ACTIONS(6052), + [anon_sym_LT_EQ] = ACTIONS(6050), + [anon_sym_GT] = ACTIONS(6052), + [anon_sym_GT_EQ] = ACTIONS(6050), + [anon_sym_AMP] = ACTIONS(6050), + [anon_sym_xor] = ACTIONS(6052), + [anon_sym_LT_LT] = ACTIONS(6052), + [anon_sym_GT_GT] = ACTIONS(6050), + [anon_sym_LT_LT_PIPE] = ACTIONS(6050), + [anon_sym_PLUS] = ACTIONS(6050), + [anon_sym_SLASH] = ACTIONS(6050), + [anon_sym_catch] = ACTIONS(6052), + [anon_sym_TILDE] = ACTIONS(6050), + [anon_sym_try] = ACTIONS(6052), + [anon_sym_DOT] = ACTIONS(6052), + [anon_sym_CARET] = ACTIONS(6050), + [anon_sym_true] = ACTIONS(6052), + [anon_sym_false] = ACTIONS(6052), + [anon_sym_null] = ACTIONS(6052), + [anon_sym_unreachable] = ACTIONS(6052), + [anon_sym_undefined] = ACTIONS(6052), + [sym_sink] = ACTIONS(6052), + [sym_integer] = ACTIONS(6052), + [sym_float] = ACTIONS(6050), + [anon_sym_DQUOTE] = ACTIONS(6050), + [sym_multiline_string] = ACTIONS(6050), + [sym_character] = ACTIONS(6050), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6050), + }, + [STATE(4075)] = { + [ts_builtin_sym_end] = ACTIONS(4840), + [sym_identifier] = ACTIONS(4842), + [anon_sym_import] = ACTIONS(4842), + [anon_sym_test] = ACTIONS(4842), + [anon_sym_hide] = ACTIONS(4842), + [anon_sym_func] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4842), + [anon_sym_struct] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_void] = ACTIONS(4842), + [anon_sym_noreturn] = ACTIONS(4842), + [anon_sym_type] = ACTIONS(4842), + [anon_sym_anyopaque] = ACTIONS(4842), + [anon_sym_bool] = ACTIONS(4842), + [anon_sym_int] = ACTIONS(4842), + [anon_sym_uint] = ACTIONS(4842), + [anon_sym_float] = ACTIONS(4842), + [anon_sym_range] = ACTIONS(4842), + [anon_sym_i8] = ACTIONS(4842), + [anon_sym_i16] = ACTIONS(4842), + [anon_sym_i32] = ACTIONS(4842), + [anon_sym_i64] = ACTIONS(4842), + [anon_sym_u8] = ACTIONS(4842), + [anon_sym_u16] = ACTIONS(4842), + [anon_sym_u32] = ACTIONS(4842), + [anon_sym_u64] = ACTIONS(4842), + [anon_sym_isize] = ACTIONS(4842), + [anon_sym_usize] = ACTIONS(4842), + [anon_sym_f32] = ACTIONS(4842), + [anon_sym_f64] = ACTIONS(4842), + [anon_sym_c_char] = ACTIONS(4842), + [anon_sym_c_schar] = ACTIONS(4842), + [anon_sym_c_uchar] = ACTIONS(4842), + [anon_sym_c_short] = ACTIONS(4842), + [anon_sym_c_ushort] = ACTIONS(4842), + [anon_sym_c_int] = ACTIONS(4842), + [anon_sym_c_uint] = ACTIONS(4842), + [anon_sym_c_long] = ACTIONS(4842), + [anon_sym_c_ulong] = ACTIONS(4842), + [anon_sym_c_longlong] = ACTIONS(4842), + [anon_sym_c_ulonglong] = ACTIONS(4842), + [anon_sym_c_float] = ACTIONS(4842), + [anon_sym_c_double] = ACTIONS(4842), + [anon_sym_c_longdouble] = ACTIONS(4842), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_yield] = ACTIONS(4842), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_defer] = ACTIONS(4842), + [anon_sym_errdefer] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_while] = ACTIONS(4842), + [anon_sym_expand] = ACTIONS(4842), + [anon_sym_for] = ACTIONS(4842), + [anon_sym_match] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4840), + [anon_sym_orelse] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4840), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4840), + [anon_sym_LT_LT_PIPE] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_catch] = ACTIONS(4842), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_unreachable] = ACTIONS(4842), + [anon_sym_undefined] = ACTIONS(4842), + [sym_sink] = ACTIONS(4842), + [sym_integer] = ACTIONS(4842), + [sym_float] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [sym_multiline_string] = ACTIONS(4840), + [sym_character] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4840), + }, + [STATE(4076)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8694), + [sym_labeled_block] = STATE(8694), + [sym_if_statement] = STATE(8694), + [sym_while_statement] = STATE(8694), + [sym_for_statement] = STATE(8694), + [sym_match_statement] = STATE(8694), + [sym__value] = STATE(8694), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4085), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6980), + }, + [STATE(4077)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8392), + [sym_labeled_block] = STATE(8392), + [sym_if_statement] = STATE(8392), + [sym_while_statement] = STATE(8392), + [sym_for_statement] = STATE(8392), + [sym_match_statement] = STATE(8392), + [sym__value] = STATE(8392), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4092), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6982), + }, + [STATE(4078)] = { + [ts_builtin_sym_end] = ACTIONS(4844), + [sym_identifier] = ACTIONS(4846), + [anon_sym_import] = ACTIONS(4846), + [anon_sym_test] = ACTIONS(4846), + [anon_sym_hide] = ACTIONS(4846), + [anon_sym_func] = ACTIONS(4846), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_struct] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_void] = ACTIONS(4846), + [anon_sym_noreturn] = ACTIONS(4846), + [anon_sym_type] = ACTIONS(4846), + [anon_sym_anyopaque] = ACTIONS(4846), + [anon_sym_bool] = ACTIONS(4846), + [anon_sym_int] = ACTIONS(4846), + [anon_sym_uint] = ACTIONS(4846), + [anon_sym_float] = ACTIONS(4846), + [anon_sym_range] = ACTIONS(4846), + [anon_sym_i8] = ACTIONS(4846), + [anon_sym_i16] = ACTIONS(4846), + [anon_sym_i32] = ACTIONS(4846), + [anon_sym_i64] = ACTIONS(4846), + [anon_sym_u8] = ACTIONS(4846), + [anon_sym_u16] = ACTIONS(4846), + [anon_sym_u32] = ACTIONS(4846), + [anon_sym_u64] = ACTIONS(4846), + [anon_sym_isize] = ACTIONS(4846), + [anon_sym_usize] = ACTIONS(4846), + [anon_sym_f32] = ACTIONS(4846), + [anon_sym_f64] = ACTIONS(4846), + [anon_sym_c_char] = ACTIONS(4846), + [anon_sym_c_schar] = ACTIONS(4846), + [anon_sym_c_uchar] = ACTIONS(4846), + [anon_sym_c_short] = ACTIONS(4846), + [anon_sym_c_ushort] = ACTIONS(4846), + [anon_sym_c_int] = ACTIONS(4846), + [anon_sym_c_uint] = ACTIONS(4846), + [anon_sym_c_long] = ACTIONS(4846), + [anon_sym_c_ulong] = ACTIONS(4846), + [anon_sym_c_longlong] = ACTIONS(4846), + [anon_sym_c_ulonglong] = ACTIONS(4846), + [anon_sym_c_float] = ACTIONS(4846), + [anon_sym_c_double] = ACTIONS(4846), + [anon_sym_c_longdouble] = ACTIONS(4846), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_yield] = ACTIONS(4846), + [anon_sym_COLON] = ACTIONS(4844), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_defer] = ACTIONS(4846), + [anon_sym_errdefer] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_while] = ACTIONS(4846), + [anon_sym_expand] = ACTIONS(4846), + [anon_sym_for] = ACTIONS(4846), + [anon_sym_match] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), + [anon_sym_orelse] = ACTIONS(4846), + [anon_sym_or] = ACTIONS(4846), + [anon_sym_and] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4844), + [anon_sym_xor] = ACTIONS(4846), + [anon_sym_LT_LT] = ACTIONS(4846), + [anon_sym_GT_GT] = ACTIONS(4844), + [anon_sym_LT_LT_PIPE] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_catch] = ACTIONS(4846), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_unreachable] = ACTIONS(4846), + [anon_sym_undefined] = ACTIONS(4846), + [sym_sink] = ACTIONS(4846), + [sym_integer] = ACTIONS(4846), + [sym_float] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [sym_multiline_string] = ACTIONS(4844), + [sym_character] = ACTIONS(4844), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4844), + }, + [STATE(4079)] = { + [ts_builtin_sym_end] = ACTIONS(4848), + [sym_identifier] = ACTIONS(4850), + [anon_sym_import] = ACTIONS(4850), + [anon_sym_test] = ACTIONS(4850), + [anon_sym_hide] = ACTIONS(4850), + [anon_sym_func] = ACTIONS(4850), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_struct] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_void] = ACTIONS(4850), + [anon_sym_noreturn] = ACTIONS(4850), + [anon_sym_type] = ACTIONS(4850), + [anon_sym_anyopaque] = ACTIONS(4850), + [anon_sym_bool] = ACTIONS(4850), + [anon_sym_int] = ACTIONS(4850), + [anon_sym_uint] = ACTIONS(4850), + [anon_sym_float] = ACTIONS(4850), + [anon_sym_range] = ACTIONS(4850), + [anon_sym_i8] = ACTIONS(4850), + [anon_sym_i16] = ACTIONS(4850), + [anon_sym_i32] = ACTIONS(4850), + [anon_sym_i64] = ACTIONS(4850), + [anon_sym_u8] = ACTIONS(4850), + [anon_sym_u16] = ACTIONS(4850), + [anon_sym_u32] = ACTIONS(4850), + [anon_sym_u64] = ACTIONS(4850), + [anon_sym_isize] = ACTIONS(4850), + [anon_sym_usize] = ACTIONS(4850), + [anon_sym_f32] = ACTIONS(4850), + [anon_sym_f64] = ACTIONS(4850), + [anon_sym_c_char] = ACTIONS(4850), + [anon_sym_c_schar] = ACTIONS(4850), + [anon_sym_c_uchar] = ACTIONS(4850), + [anon_sym_c_short] = ACTIONS(4850), + [anon_sym_c_ushort] = ACTIONS(4850), + [anon_sym_c_int] = ACTIONS(4850), + [anon_sym_c_uint] = ACTIONS(4850), + [anon_sym_c_long] = ACTIONS(4850), + [anon_sym_c_ulong] = ACTIONS(4850), + [anon_sym_c_longlong] = ACTIONS(4850), + [anon_sym_c_ulonglong] = ACTIONS(4850), + [anon_sym_c_float] = ACTIONS(4850), + [anon_sym_c_double] = ACTIONS(4850), + [anon_sym_c_longdouble] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_yield] = ACTIONS(4850), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_defer] = ACTIONS(4850), + [anon_sym_errdefer] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_expand] = ACTIONS(4850), + [anon_sym_for] = ACTIONS(4850), + [anon_sym_match] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_orelse] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4848), + [anon_sym_xor] = ACTIONS(4850), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4848), + [anon_sym_LT_LT_PIPE] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_catch] = ACTIONS(4850), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_unreachable] = ACTIONS(4850), + [anon_sym_undefined] = ACTIONS(4850), + [sym_sink] = ACTIONS(4850), + [sym_integer] = ACTIONS(4850), + [sym_float] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym_multiline_string] = ACTIONS(4848), + [sym_character] = ACTIONS(4848), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4848), + }, + [STATE(4080)] = { + [ts_builtin_sym_end] = ACTIONS(4852), + [sym_identifier] = ACTIONS(4854), + [anon_sym_import] = ACTIONS(4854), + [anon_sym_test] = ACTIONS(4854), + [anon_sym_hide] = ACTIONS(4854), + [anon_sym_func] = ACTIONS(4854), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_void] = ACTIONS(4854), + [anon_sym_noreturn] = ACTIONS(4854), + [anon_sym_type] = ACTIONS(4854), + [anon_sym_anyopaque] = ACTIONS(4854), + [anon_sym_bool] = ACTIONS(4854), + [anon_sym_int] = ACTIONS(4854), + [anon_sym_uint] = ACTIONS(4854), + [anon_sym_float] = ACTIONS(4854), + [anon_sym_range] = ACTIONS(4854), + [anon_sym_i8] = ACTIONS(4854), + [anon_sym_i16] = ACTIONS(4854), + [anon_sym_i32] = ACTIONS(4854), + [anon_sym_i64] = ACTIONS(4854), + [anon_sym_u8] = ACTIONS(4854), + [anon_sym_u16] = ACTIONS(4854), + [anon_sym_u32] = ACTIONS(4854), + [anon_sym_u64] = ACTIONS(4854), + [anon_sym_isize] = ACTIONS(4854), + [anon_sym_usize] = ACTIONS(4854), + [anon_sym_f32] = ACTIONS(4854), + [anon_sym_f64] = ACTIONS(4854), + [anon_sym_c_char] = ACTIONS(4854), + [anon_sym_c_schar] = ACTIONS(4854), + [anon_sym_c_uchar] = ACTIONS(4854), + [anon_sym_c_short] = ACTIONS(4854), + [anon_sym_c_ushort] = ACTIONS(4854), + [anon_sym_c_int] = ACTIONS(4854), + [anon_sym_c_uint] = ACTIONS(4854), + [anon_sym_c_long] = ACTIONS(4854), + [anon_sym_c_ulong] = ACTIONS(4854), + [anon_sym_c_longlong] = ACTIONS(4854), + [anon_sym_c_ulonglong] = ACTIONS(4854), + [anon_sym_c_float] = ACTIONS(4854), + [anon_sym_c_double] = ACTIONS(4854), + [anon_sym_c_longdouble] = ACTIONS(4854), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_yield] = ACTIONS(4854), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_defer] = ACTIONS(4854), + [anon_sym_errdefer] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4854), + [anon_sym_expand] = ACTIONS(4854), + [anon_sym_for] = ACTIONS(4854), + [anon_sym_match] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4852), + [anon_sym_orelse] = ACTIONS(4854), + [anon_sym_or] = ACTIONS(4854), + [anon_sym_and] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4852), + [anon_sym_xor] = ACTIONS(4854), + [anon_sym_LT_LT] = ACTIONS(4854), + [anon_sym_GT_GT] = ACTIONS(4852), + [anon_sym_LT_LT_PIPE] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_catch] = ACTIONS(4854), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_unreachable] = ACTIONS(4854), + [anon_sym_undefined] = ACTIONS(4854), + [sym_sink] = ACTIONS(4854), + [sym_integer] = ACTIONS(4854), + [sym_float] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [sym_multiline_string] = ACTIONS(4852), + [sym_character] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4852), + }, + [STATE(4081)] = { + [ts_builtin_sym_end] = ACTIONS(4856), + [sym_identifier] = ACTIONS(4858), + [anon_sym_import] = ACTIONS(4858), + [anon_sym_test] = ACTIONS(4858), + [anon_sym_hide] = ACTIONS(4858), + [anon_sym_func] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4858), + [anon_sym_struct] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_void] = ACTIONS(4858), + [anon_sym_noreturn] = ACTIONS(4858), + [anon_sym_type] = ACTIONS(4858), + [anon_sym_anyopaque] = ACTIONS(4858), + [anon_sym_bool] = ACTIONS(4858), + [anon_sym_int] = ACTIONS(4858), + [anon_sym_uint] = ACTIONS(4858), + [anon_sym_float] = ACTIONS(4858), + [anon_sym_range] = ACTIONS(4858), + [anon_sym_i8] = ACTIONS(4858), + [anon_sym_i16] = ACTIONS(4858), + [anon_sym_i32] = ACTIONS(4858), + [anon_sym_i64] = ACTIONS(4858), + [anon_sym_u8] = ACTIONS(4858), + [anon_sym_u16] = ACTIONS(4858), + [anon_sym_u32] = ACTIONS(4858), + [anon_sym_u64] = ACTIONS(4858), + [anon_sym_isize] = ACTIONS(4858), + [anon_sym_usize] = ACTIONS(4858), + [anon_sym_f32] = ACTIONS(4858), + [anon_sym_f64] = ACTIONS(4858), + [anon_sym_c_char] = ACTIONS(4858), + [anon_sym_c_schar] = ACTIONS(4858), + [anon_sym_c_uchar] = ACTIONS(4858), + [anon_sym_c_short] = ACTIONS(4858), + [anon_sym_c_ushort] = ACTIONS(4858), + [anon_sym_c_int] = ACTIONS(4858), + [anon_sym_c_uint] = ACTIONS(4858), + [anon_sym_c_long] = ACTIONS(4858), + [anon_sym_c_ulong] = ACTIONS(4858), + [anon_sym_c_longlong] = ACTIONS(4858), + [anon_sym_c_ulonglong] = ACTIONS(4858), + [anon_sym_c_float] = ACTIONS(4858), + [anon_sym_c_double] = ACTIONS(4858), + [anon_sym_c_longdouble] = ACTIONS(4858), + [anon_sym_return] = ACTIONS(4858), + [anon_sym_yield] = ACTIONS(4858), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4858), + [anon_sym_continue] = ACTIONS(4858), + [anon_sym_defer] = ACTIONS(4858), + [anon_sym_errdefer] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_while] = ACTIONS(4858), + [anon_sym_expand] = ACTIONS(4858), + [anon_sym_for] = ACTIONS(4858), + [anon_sym_match] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4856), + [anon_sym_orelse] = ACTIONS(4858), + [anon_sym_or] = ACTIONS(4858), + [anon_sym_and] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_xor] = ACTIONS(4858), + [anon_sym_LT_LT] = ACTIONS(4858), + [anon_sym_GT_GT] = ACTIONS(4856), + [anon_sym_LT_LT_PIPE] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_catch] = ACTIONS(4858), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_unreachable] = ACTIONS(4858), + [anon_sym_undefined] = ACTIONS(4858), + [sym_sink] = ACTIONS(4858), + [sym_integer] = ACTIONS(4858), + [sym_float] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [sym_multiline_string] = ACTIONS(4856), + [sym_character] = ACTIONS(4856), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4856), + }, + [STATE(4082)] = { + [ts_builtin_sym_end] = ACTIONS(4860), + [sym_identifier] = ACTIONS(4862), + [anon_sym_import] = ACTIONS(4862), + [anon_sym_test] = ACTIONS(4862), + [anon_sym_hide] = ACTIONS(4862), + [anon_sym_func] = ACTIONS(4862), + [anon_sym_BANG] = ACTIONS(4862), + [anon_sym_struct] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_void] = ACTIONS(4862), + [anon_sym_noreturn] = ACTIONS(4862), + [anon_sym_type] = ACTIONS(4862), + [anon_sym_anyopaque] = ACTIONS(4862), + [anon_sym_bool] = ACTIONS(4862), + [anon_sym_int] = ACTIONS(4862), + [anon_sym_uint] = ACTIONS(4862), + [anon_sym_float] = ACTIONS(4862), + [anon_sym_range] = ACTIONS(4862), + [anon_sym_i8] = ACTIONS(4862), + [anon_sym_i16] = ACTIONS(4862), + [anon_sym_i32] = ACTIONS(4862), + [anon_sym_i64] = ACTIONS(4862), + [anon_sym_u8] = ACTIONS(4862), + [anon_sym_u16] = ACTIONS(4862), + [anon_sym_u32] = ACTIONS(4862), + [anon_sym_u64] = ACTIONS(4862), + [anon_sym_isize] = ACTIONS(4862), + [anon_sym_usize] = ACTIONS(4862), + [anon_sym_f32] = ACTIONS(4862), + [anon_sym_f64] = ACTIONS(4862), + [anon_sym_c_char] = ACTIONS(4862), + [anon_sym_c_schar] = ACTIONS(4862), + [anon_sym_c_uchar] = ACTIONS(4862), + [anon_sym_c_short] = ACTIONS(4862), + [anon_sym_c_ushort] = ACTIONS(4862), + [anon_sym_c_int] = ACTIONS(4862), + [anon_sym_c_uint] = ACTIONS(4862), + [anon_sym_c_long] = ACTIONS(4862), + [anon_sym_c_ulong] = ACTIONS(4862), + [anon_sym_c_longlong] = ACTIONS(4862), + [anon_sym_c_ulonglong] = ACTIONS(4862), + [anon_sym_c_float] = ACTIONS(4862), + [anon_sym_c_double] = ACTIONS(4862), + [anon_sym_c_longdouble] = ACTIONS(4862), + [anon_sym_return] = ACTIONS(4862), + [anon_sym_yield] = ACTIONS(4862), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_break] = ACTIONS(4862), + [anon_sym_continue] = ACTIONS(4862), + [anon_sym_defer] = ACTIONS(4862), + [anon_sym_errdefer] = ACTIONS(4862), + [anon_sym_if] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_while] = ACTIONS(4862), + [anon_sym_expand] = ACTIONS(4862), + [anon_sym_for] = ACTIONS(4862), + [anon_sym_match] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4860), + [anon_sym_orelse] = ACTIONS(4862), + [anon_sym_or] = ACTIONS(4862), + [anon_sym_and] = ACTIONS(4862), + [anon_sym_EQ_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4860), + [anon_sym_xor] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4862), + [anon_sym_GT_GT] = ACTIONS(4860), + [anon_sym_LT_LT_PIPE] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_catch] = ACTIONS(4862), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_try] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4860), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_unreachable] = ACTIONS(4862), + [anon_sym_undefined] = ACTIONS(4862), + [sym_sink] = ACTIONS(4862), + [sym_integer] = ACTIONS(4862), + [sym_float] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [sym_multiline_string] = ACTIONS(4860), + [sym_character] = ACTIONS(4860), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4860), + }, + [STATE(4083)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(11008), + [sym_labeled_block] = STATE(11008), + [sym_if_statement] = STATE(11008), + [sym_while_statement] = STATE(11008), + [sym_for_statement] = STATE(11008), + [sym_match_statement] = STATE(11008), + [sym__value] = STATE(11008), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4391), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6984), + }, + [STATE(4084)] = { + [ts_builtin_sym_end] = ACTIONS(4864), + [sym_identifier] = ACTIONS(4866), + [anon_sym_import] = ACTIONS(4866), + [anon_sym_test] = ACTIONS(4866), + [anon_sym_hide] = ACTIONS(4866), + [anon_sym_func] = ACTIONS(4866), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_struct] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_void] = ACTIONS(4866), + [anon_sym_noreturn] = ACTIONS(4866), + [anon_sym_type] = ACTIONS(4866), + [anon_sym_anyopaque] = ACTIONS(4866), + [anon_sym_bool] = ACTIONS(4866), + [anon_sym_int] = ACTIONS(4866), + [anon_sym_uint] = ACTIONS(4866), + [anon_sym_float] = ACTIONS(4866), + [anon_sym_range] = ACTIONS(4866), + [anon_sym_i8] = ACTIONS(4866), + [anon_sym_i16] = ACTIONS(4866), + [anon_sym_i32] = ACTIONS(4866), + [anon_sym_i64] = ACTIONS(4866), + [anon_sym_u8] = ACTIONS(4866), + [anon_sym_u16] = ACTIONS(4866), + [anon_sym_u32] = ACTIONS(4866), + [anon_sym_u64] = ACTIONS(4866), + [anon_sym_isize] = ACTIONS(4866), + [anon_sym_usize] = ACTIONS(4866), + [anon_sym_f32] = ACTIONS(4866), + [anon_sym_f64] = ACTIONS(4866), + [anon_sym_c_char] = ACTIONS(4866), + [anon_sym_c_schar] = ACTIONS(4866), + [anon_sym_c_uchar] = ACTIONS(4866), + [anon_sym_c_short] = ACTIONS(4866), + [anon_sym_c_ushort] = ACTIONS(4866), + [anon_sym_c_int] = ACTIONS(4866), + [anon_sym_c_uint] = ACTIONS(4866), + [anon_sym_c_long] = ACTIONS(4866), + [anon_sym_c_ulong] = ACTIONS(4866), + [anon_sym_c_longlong] = ACTIONS(4866), + [anon_sym_c_ulonglong] = ACTIONS(4866), + [anon_sym_c_float] = ACTIONS(4866), + [anon_sym_c_double] = ACTIONS(4866), + [anon_sym_c_longdouble] = ACTIONS(4866), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_yield] = ACTIONS(4866), + [anon_sym_COLON] = ACTIONS(4864), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_defer] = ACTIONS(4866), + [anon_sym_errdefer] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_while] = ACTIONS(4866), + [anon_sym_expand] = ACTIONS(4866), + [anon_sym_for] = ACTIONS(4866), + [anon_sym_match] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4864), + [anon_sym_orelse] = ACTIONS(4866), + [anon_sym_or] = ACTIONS(4866), + [anon_sym_and] = ACTIONS(4866), + [anon_sym_EQ_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4864), + [anon_sym_xor] = ACTIONS(4866), + [anon_sym_LT_LT] = ACTIONS(4866), + [anon_sym_GT_GT] = ACTIONS(4864), + [anon_sym_LT_LT_PIPE] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_catch] = ACTIONS(4866), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_unreachable] = ACTIONS(4866), + [anon_sym_undefined] = ACTIONS(4866), + [sym_sink] = ACTIONS(4866), + [sym_integer] = ACTIONS(4866), + [sym_float] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [sym_multiline_string] = ACTIONS(4864), + [sym_character] = ACTIONS(4864), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4864), + }, + [STATE(4085)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8666), + [sym_labeled_block] = STATE(8666), + [sym_if_statement] = STATE(8666), + [sym_while_statement] = STATE(8666), + [sym_for_statement] = STATE(8666), + [sym_match_statement] = STATE(8666), + [sym__value] = STATE(8666), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4086)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8588), + [sym_labeled_block] = STATE(8588), + [sym_if_statement] = STATE(8588), + [sym_while_statement] = STATE(8588), + [sym_for_statement] = STATE(8588), + [sym_match_statement] = STATE(8588), + [sym__value] = STATE(8588), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4104), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6986), + }, + [STATE(4087)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10989), + [sym_labeled_block] = STATE(10989), + [sym_if_statement] = STATE(10989), + [sym_while_statement] = STATE(10989), + [sym_for_statement] = STATE(10989), + [sym_match_statement] = STATE(10989), + [sym__value] = STATE(10989), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4088)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9077), + [sym_error_capture] = STATE(4947), + [sym_if_statement] = STATE(9077), + [sym_while_statement] = STATE(9077), + [sym_for_statement] = STATE(9077), + [sym_match_statement] = STATE(9077), + [sym_expression] = STATE(8960), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4948), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6990), + }, + [STATE(4089)] = { + [ts_builtin_sym_end] = ACTIONS(5058), + [sym_identifier] = ACTIONS(5060), + [anon_sym_import] = ACTIONS(5060), + [anon_sym_test] = ACTIONS(5060), + [anon_sym_hide] = ACTIONS(5060), + [anon_sym_func] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(5060), + [anon_sym_struct] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5058), + [anon_sym_RBRACE] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOLLAR] = ACTIONS(5058), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5058), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_void] = ACTIONS(5060), + [anon_sym_noreturn] = ACTIONS(5060), + [anon_sym_type] = ACTIONS(5060), + [anon_sym_anyopaque] = ACTIONS(5060), + [anon_sym_bool] = ACTIONS(5060), + [anon_sym_int] = ACTIONS(5060), + [anon_sym_uint] = ACTIONS(5060), + [anon_sym_float] = ACTIONS(5060), + [anon_sym_range] = ACTIONS(5060), + [anon_sym_i8] = ACTIONS(5060), + [anon_sym_i16] = ACTIONS(5060), + [anon_sym_i32] = ACTIONS(5060), + [anon_sym_i64] = ACTIONS(5060), + [anon_sym_u8] = ACTIONS(5060), + [anon_sym_u16] = ACTIONS(5060), + [anon_sym_u32] = ACTIONS(5060), + [anon_sym_u64] = ACTIONS(5060), + [anon_sym_isize] = ACTIONS(5060), + [anon_sym_usize] = ACTIONS(5060), + [anon_sym_f32] = ACTIONS(5060), + [anon_sym_f64] = ACTIONS(5060), + [anon_sym_c_char] = ACTIONS(5060), + [anon_sym_c_schar] = ACTIONS(5060), + [anon_sym_c_uchar] = ACTIONS(5060), + [anon_sym_c_short] = ACTIONS(5060), + [anon_sym_c_ushort] = ACTIONS(5060), + [anon_sym_c_int] = ACTIONS(5060), + [anon_sym_c_uint] = ACTIONS(5060), + [anon_sym_c_long] = ACTIONS(5060), + [anon_sym_c_ulong] = ACTIONS(5060), + [anon_sym_c_longlong] = ACTIONS(5060), + [anon_sym_c_ulonglong] = ACTIONS(5060), + [anon_sym_c_float] = ACTIONS(5060), + [anon_sym_c_double] = ACTIONS(5060), + [anon_sym_c_longdouble] = ACTIONS(5060), + [anon_sym_return] = ACTIONS(5060), + [anon_sym_yield] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5058), + [anon_sym_break] = ACTIONS(5060), + [anon_sym_continue] = ACTIONS(5060), + [anon_sym_defer] = ACTIONS(5060), + [anon_sym_errdefer] = ACTIONS(5060), + [anon_sym_if] = ACTIONS(5060), + [anon_sym_else] = ACTIONS(5060), + [anon_sym_while] = ACTIONS(5060), + [anon_sym_expand] = ACTIONS(5060), + [anon_sym_for] = ACTIONS(5060), + [anon_sym_match] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5058), + [anon_sym_orelse] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5058), + [anon_sym_BANG_EQ] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5058), + [anon_sym_LT_LT_PIPE] = ACTIONS(5058), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_catch] = ACTIONS(5060), + [anon_sym_TILDE] = ACTIONS(5058), + [anon_sym_try] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym_true] = ACTIONS(5060), + [anon_sym_false] = ACTIONS(5060), + [anon_sym_null] = ACTIONS(5060), + [anon_sym_unreachable] = ACTIONS(5060), + [anon_sym_undefined] = ACTIONS(5060), + [sym_sink] = ACTIONS(5060), + [sym_integer] = ACTIONS(5060), + [sym_float] = ACTIONS(5058), + [anon_sym_DQUOTE] = ACTIONS(5058), + [sym_multiline_string] = ACTIONS(5058), + [sym_character] = ACTIONS(5058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5058), + }, + [STATE(4090)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8618), + [sym_labeled_block] = STATE(8618), + [sym_if_statement] = STATE(8618), + [sym_while_statement] = STATE(8618), + [sym_for_statement] = STATE(8618), + [sym_match_statement] = STATE(8618), + [sym__value] = STATE(8618), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6992), + }, + [STATE(4091)] = { + [ts_builtin_sym_end] = ACTIONS(5064), + [sym_identifier] = ACTIONS(5066), + [anon_sym_import] = ACTIONS(5066), + [anon_sym_test] = ACTIONS(5066), + [anon_sym_hide] = ACTIONS(5066), + [anon_sym_func] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_struct] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_void] = ACTIONS(5066), + [anon_sym_noreturn] = ACTIONS(5066), + [anon_sym_type] = ACTIONS(5066), + [anon_sym_anyopaque] = ACTIONS(5066), + [anon_sym_bool] = ACTIONS(5066), + [anon_sym_int] = ACTIONS(5066), + [anon_sym_uint] = ACTIONS(5066), + [anon_sym_float] = ACTIONS(5066), + [anon_sym_range] = ACTIONS(5066), + [anon_sym_i8] = ACTIONS(5066), + [anon_sym_i16] = ACTIONS(5066), + [anon_sym_i32] = ACTIONS(5066), + [anon_sym_i64] = ACTIONS(5066), + [anon_sym_u8] = ACTIONS(5066), + [anon_sym_u16] = ACTIONS(5066), + [anon_sym_u32] = ACTIONS(5066), + [anon_sym_u64] = ACTIONS(5066), + [anon_sym_isize] = ACTIONS(5066), + [anon_sym_usize] = ACTIONS(5066), + [anon_sym_f32] = ACTIONS(5066), + [anon_sym_f64] = ACTIONS(5066), + [anon_sym_c_char] = ACTIONS(5066), + [anon_sym_c_schar] = ACTIONS(5066), + [anon_sym_c_uchar] = ACTIONS(5066), + [anon_sym_c_short] = ACTIONS(5066), + [anon_sym_c_ushort] = ACTIONS(5066), + [anon_sym_c_int] = ACTIONS(5066), + [anon_sym_c_uint] = ACTIONS(5066), + [anon_sym_c_long] = ACTIONS(5066), + [anon_sym_c_ulong] = ACTIONS(5066), + [anon_sym_c_longlong] = ACTIONS(5066), + [anon_sym_c_ulonglong] = ACTIONS(5066), + [anon_sym_c_float] = ACTIONS(5066), + [anon_sym_c_double] = ACTIONS(5066), + [anon_sym_c_longdouble] = ACTIONS(5066), + [anon_sym_return] = ACTIONS(5066), + [anon_sym_yield] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_break] = ACTIONS(5066), + [anon_sym_continue] = ACTIONS(5066), + [anon_sym_defer] = ACTIONS(5066), + [anon_sym_errdefer] = ACTIONS(5066), + [anon_sym_if] = ACTIONS(5066), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_while] = ACTIONS(5066), + [anon_sym_expand] = ACTIONS(5066), + [anon_sym_for] = ACTIONS(5066), + [anon_sym_match] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5064), + [anon_sym_orelse] = ACTIONS(5066), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_and] = ACTIONS(5066), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_xor] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5066), + [anon_sym_GT_GT] = ACTIONS(5064), + [anon_sym_LT_LT_PIPE] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_catch] = ACTIONS(5066), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_try] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_true] = ACTIONS(5066), + [anon_sym_false] = ACTIONS(5066), + [anon_sym_null] = ACTIONS(5066), + [anon_sym_unreachable] = ACTIONS(5066), + [anon_sym_undefined] = ACTIONS(5066), + [sym_sink] = ACTIONS(5066), + [sym_integer] = ACTIONS(5066), + [sym_float] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [sym_multiline_string] = ACTIONS(5064), + [sym_character] = ACTIONS(5064), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5064), + }, + [STATE(4092)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8630), + [sym_labeled_block] = STATE(8630), + [sym_if_statement] = STATE(8630), + [sym_while_statement] = STATE(8630), + [sym_for_statement] = STATE(8630), + [sym_match_statement] = STATE(8630), + [sym__value] = STATE(8630), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4093)] = { + [ts_builtin_sym_end] = ACTIONS(5286), + [sym_identifier] = ACTIONS(5288), + [anon_sym_import] = ACTIONS(5288), + [anon_sym_test] = ACTIONS(5288), + [anon_sym_hide] = ACTIONS(5288), + [anon_sym_func] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_struct] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5286), + [anon_sym_QMARK] = ACTIONS(5286), + [anon_sym_STAR] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_void] = ACTIONS(5288), + [anon_sym_noreturn] = ACTIONS(5288), + [anon_sym_type] = ACTIONS(5288), + [anon_sym_anyopaque] = ACTIONS(5288), + [anon_sym_bool] = ACTIONS(5288), + [anon_sym_int] = ACTIONS(5288), + [anon_sym_uint] = ACTIONS(5288), + [anon_sym_float] = ACTIONS(5288), + [anon_sym_range] = ACTIONS(5288), + [anon_sym_i8] = ACTIONS(5288), + [anon_sym_i16] = ACTIONS(5288), + [anon_sym_i32] = ACTIONS(5288), + [anon_sym_i64] = ACTIONS(5288), + [anon_sym_u8] = ACTIONS(5288), + [anon_sym_u16] = ACTIONS(5288), + [anon_sym_u32] = ACTIONS(5288), + [anon_sym_u64] = ACTIONS(5288), + [anon_sym_isize] = ACTIONS(5288), + [anon_sym_usize] = ACTIONS(5288), + [anon_sym_f32] = ACTIONS(5288), + [anon_sym_f64] = ACTIONS(5288), + [anon_sym_c_char] = ACTIONS(5288), + [anon_sym_c_schar] = ACTIONS(5288), + [anon_sym_c_uchar] = ACTIONS(5288), + [anon_sym_c_short] = ACTIONS(5288), + [anon_sym_c_ushort] = ACTIONS(5288), + [anon_sym_c_int] = ACTIONS(5288), + [anon_sym_c_uint] = ACTIONS(5288), + [anon_sym_c_long] = ACTIONS(5288), + [anon_sym_c_ulong] = ACTIONS(5288), + [anon_sym_c_longlong] = ACTIONS(5288), + [anon_sym_c_ulonglong] = ACTIONS(5288), + [anon_sym_c_float] = ACTIONS(5288), + [anon_sym_c_double] = ACTIONS(5288), + [anon_sym_c_longdouble] = ACTIONS(5288), + [anon_sym_return] = ACTIONS(5288), + [anon_sym_yield] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5286), + [anon_sym_break] = ACTIONS(5288), + [anon_sym_continue] = ACTIONS(5288), + [anon_sym_defer] = ACTIONS(5288), + [anon_sym_errdefer] = ACTIONS(5288), + [anon_sym_if] = ACTIONS(5288), + [anon_sym_else] = ACTIONS(5288), + [anon_sym_while] = ACTIONS(5288), + [anon_sym_expand] = ACTIONS(5288), + [anon_sym_for] = ACTIONS(5288), + [anon_sym_match] = ACTIONS(5288), + [anon_sym_DOT_DOT] = ACTIONS(5288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5286), + [anon_sym_orelse] = ACTIONS(5288), + [anon_sym_or] = ACTIONS(5288), + [anon_sym_and] = ACTIONS(5288), + [anon_sym_EQ_EQ] = ACTIONS(5286), + [anon_sym_BANG_EQ] = ACTIONS(5286), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_LT_EQ] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_EQ] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5286), + [anon_sym_xor] = ACTIONS(5288), + [anon_sym_LT_LT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5286), + [anon_sym_LT_LT_PIPE] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5286), + [anon_sym_SLASH] = ACTIONS(5286), + [anon_sym_catch] = ACTIONS(5288), + [anon_sym_TILDE] = ACTIONS(5286), + [anon_sym_try] = ACTIONS(5288), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5286), + [anon_sym_true] = ACTIONS(5288), + [anon_sym_false] = ACTIONS(5288), + [anon_sym_null] = ACTIONS(5288), + [anon_sym_unreachable] = ACTIONS(5288), + [anon_sym_undefined] = ACTIONS(5288), + [sym_sink] = ACTIONS(5288), + [sym_integer] = ACTIONS(5288), + [sym_float] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5286), + [sym_multiline_string] = ACTIONS(5286), + [sym_character] = ACTIONS(5286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5286), + }, + [STATE(4094)] = { + [ts_builtin_sym_end] = ACTIONS(5068), + [sym_identifier] = ACTIONS(5070), + [anon_sym_import] = ACTIONS(5070), + [anon_sym_test] = ACTIONS(5070), + [anon_sym_hide] = ACTIONS(5070), + [anon_sym_func] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_struct] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_void] = ACTIONS(5070), + [anon_sym_noreturn] = ACTIONS(5070), + [anon_sym_type] = ACTIONS(5070), + [anon_sym_anyopaque] = ACTIONS(5070), + [anon_sym_bool] = ACTIONS(5070), + [anon_sym_int] = ACTIONS(5070), + [anon_sym_uint] = ACTIONS(5070), + [anon_sym_float] = ACTIONS(5070), + [anon_sym_range] = ACTIONS(5070), + [anon_sym_i8] = ACTIONS(5070), + [anon_sym_i16] = ACTIONS(5070), + [anon_sym_i32] = ACTIONS(5070), + [anon_sym_i64] = ACTIONS(5070), + [anon_sym_u8] = ACTIONS(5070), + [anon_sym_u16] = ACTIONS(5070), + [anon_sym_u32] = ACTIONS(5070), + [anon_sym_u64] = ACTIONS(5070), + [anon_sym_isize] = ACTIONS(5070), + [anon_sym_usize] = ACTIONS(5070), + [anon_sym_f32] = ACTIONS(5070), + [anon_sym_f64] = ACTIONS(5070), + [anon_sym_c_char] = ACTIONS(5070), + [anon_sym_c_schar] = ACTIONS(5070), + [anon_sym_c_uchar] = ACTIONS(5070), + [anon_sym_c_short] = ACTIONS(5070), + [anon_sym_c_ushort] = ACTIONS(5070), + [anon_sym_c_int] = ACTIONS(5070), + [anon_sym_c_uint] = ACTIONS(5070), + [anon_sym_c_long] = ACTIONS(5070), + [anon_sym_c_ulong] = ACTIONS(5070), + [anon_sym_c_longlong] = ACTIONS(5070), + [anon_sym_c_ulonglong] = ACTIONS(5070), + [anon_sym_c_float] = ACTIONS(5070), + [anon_sym_c_double] = ACTIONS(5070), + [anon_sym_c_longdouble] = ACTIONS(5070), + [anon_sym_return] = ACTIONS(5070), + [anon_sym_yield] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_break] = ACTIONS(5070), + [anon_sym_continue] = ACTIONS(5070), + [anon_sym_defer] = ACTIONS(5070), + [anon_sym_errdefer] = ACTIONS(5070), + [anon_sym_if] = ACTIONS(5070), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_while] = ACTIONS(5070), + [anon_sym_expand] = ACTIONS(5070), + [anon_sym_for] = ACTIONS(5070), + [anon_sym_match] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5068), + [anon_sym_orelse] = ACTIONS(5070), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5070), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_AMP] = ACTIONS(5068), + [anon_sym_xor] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5070), + [anon_sym_GT_GT] = ACTIONS(5068), + [anon_sym_LT_LT_PIPE] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5068), + [anon_sym_SLASH] = ACTIONS(5068), + [anon_sym_catch] = ACTIONS(5070), + [anon_sym_TILDE] = ACTIONS(5068), + [anon_sym_try] = ACTIONS(5070), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_true] = ACTIONS(5070), + [anon_sym_false] = ACTIONS(5070), + [anon_sym_null] = ACTIONS(5070), + [anon_sym_unreachable] = ACTIONS(5070), + [anon_sym_undefined] = ACTIONS(5070), + [sym_sink] = ACTIONS(5070), + [sym_integer] = ACTIONS(5070), + [sym_float] = ACTIONS(5068), + [anon_sym_DQUOTE] = ACTIONS(5068), + [sym_multiline_string] = ACTIONS(5068), + [sym_character] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5068), + }, + [STATE(4095)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9549), + [sym_labeled_block] = STATE(9549), + [sym_if_statement] = STATE(9549), + [sym_while_statement] = STATE(9549), + [sym_for_statement] = STATE(9549), + [sym_match_statement] = STATE(9549), + [sym__value] = STATE(9549), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4099), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6994), + }, + [STATE(4096)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9696), + [sym_labeled_block] = STATE(9696), + [sym_if_statement] = STATE(9696), + [sym_while_statement] = STATE(9696), + [sym_for_statement] = STATE(9696), + [sym_match_statement] = STATE(9696), + [sym__value] = STATE(9696), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4102), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6996), + }, + [STATE(4097)] = { + [ts_builtin_sym_end] = ACTIONS(5290), + [sym_identifier] = ACTIONS(5292), + [anon_sym_import] = ACTIONS(5292), + [anon_sym_test] = ACTIONS(5292), + [anon_sym_hide] = ACTIONS(5292), + [anon_sym_func] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_struct] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [anon_sym_RBRACE] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5290), + [anon_sym_QMARK] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_void] = ACTIONS(5292), + [anon_sym_noreturn] = ACTIONS(5292), + [anon_sym_type] = ACTIONS(5292), + [anon_sym_anyopaque] = ACTIONS(5292), + [anon_sym_bool] = ACTIONS(5292), + [anon_sym_int] = ACTIONS(5292), + [anon_sym_uint] = ACTIONS(5292), + [anon_sym_float] = ACTIONS(5292), + [anon_sym_range] = ACTIONS(5292), + [anon_sym_i8] = ACTIONS(5292), + [anon_sym_i16] = ACTIONS(5292), + [anon_sym_i32] = ACTIONS(5292), + [anon_sym_i64] = ACTIONS(5292), + [anon_sym_u8] = ACTIONS(5292), + [anon_sym_u16] = ACTIONS(5292), + [anon_sym_u32] = ACTIONS(5292), + [anon_sym_u64] = ACTIONS(5292), + [anon_sym_isize] = ACTIONS(5292), + [anon_sym_usize] = ACTIONS(5292), + [anon_sym_f32] = ACTIONS(5292), + [anon_sym_f64] = ACTIONS(5292), + [anon_sym_c_char] = ACTIONS(5292), + [anon_sym_c_schar] = ACTIONS(5292), + [anon_sym_c_uchar] = ACTIONS(5292), + [anon_sym_c_short] = ACTIONS(5292), + [anon_sym_c_ushort] = ACTIONS(5292), + [anon_sym_c_int] = ACTIONS(5292), + [anon_sym_c_uint] = ACTIONS(5292), + [anon_sym_c_long] = ACTIONS(5292), + [anon_sym_c_ulong] = ACTIONS(5292), + [anon_sym_c_longlong] = ACTIONS(5292), + [anon_sym_c_ulonglong] = ACTIONS(5292), + [anon_sym_c_float] = ACTIONS(5292), + [anon_sym_c_double] = ACTIONS(5292), + [anon_sym_c_longdouble] = ACTIONS(5292), + [anon_sym_return] = ACTIONS(5292), + [anon_sym_yield] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5290), + [anon_sym_break] = ACTIONS(5292), + [anon_sym_continue] = ACTIONS(5292), + [anon_sym_defer] = ACTIONS(5292), + [anon_sym_errdefer] = ACTIONS(5292), + [anon_sym_if] = ACTIONS(5292), + [anon_sym_else] = ACTIONS(5292), + [anon_sym_while] = ACTIONS(5292), + [anon_sym_expand] = ACTIONS(5292), + [anon_sym_for] = ACTIONS(5292), + [anon_sym_match] = ACTIONS(5292), + [anon_sym_DOT_DOT] = ACTIONS(5292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5290), + [anon_sym_orelse] = ACTIONS(5292), + [anon_sym_or] = ACTIONS(5292), + [anon_sym_and] = ACTIONS(5292), + [anon_sym_EQ_EQ] = ACTIONS(5290), + [anon_sym_BANG_EQ] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_LT_EQ] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_EQ] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5290), + [anon_sym_xor] = ACTIONS(5292), + [anon_sym_LT_LT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5290), + [anon_sym_LT_LT_PIPE] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5290), + [anon_sym_SLASH] = ACTIONS(5290), + [anon_sym_catch] = ACTIONS(5292), + [anon_sym_TILDE] = ACTIONS(5290), + [anon_sym_try] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5290), + [anon_sym_true] = ACTIONS(5292), + [anon_sym_false] = ACTIONS(5292), + [anon_sym_null] = ACTIONS(5292), + [anon_sym_unreachable] = ACTIONS(5292), + [anon_sym_undefined] = ACTIONS(5292), + [sym_sink] = ACTIONS(5292), + [sym_integer] = ACTIONS(5292), + [sym_float] = ACTIONS(5290), + [anon_sym_DQUOTE] = ACTIONS(5290), + [sym_multiline_string] = ACTIONS(5290), + [sym_character] = ACTIONS(5290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5290), + }, + [STATE(4098)] = { + [ts_builtin_sym_end] = ACTIONS(4868), + [sym_identifier] = ACTIONS(4870), + [anon_sym_import] = ACTIONS(4870), + [anon_sym_test] = ACTIONS(4870), + [anon_sym_hide] = ACTIONS(4870), + [anon_sym_func] = ACTIONS(4870), + [anon_sym_BANG] = ACTIONS(4870), + [anon_sym_struct] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_void] = ACTIONS(4870), + [anon_sym_noreturn] = ACTIONS(4870), + [anon_sym_type] = ACTIONS(4870), + [anon_sym_anyopaque] = ACTIONS(4870), + [anon_sym_bool] = ACTIONS(4870), + [anon_sym_int] = ACTIONS(4870), + [anon_sym_uint] = ACTIONS(4870), + [anon_sym_float] = ACTIONS(4870), + [anon_sym_range] = ACTIONS(4870), + [anon_sym_i8] = ACTIONS(4870), + [anon_sym_i16] = ACTIONS(4870), + [anon_sym_i32] = ACTIONS(4870), + [anon_sym_i64] = ACTIONS(4870), + [anon_sym_u8] = ACTIONS(4870), + [anon_sym_u16] = ACTIONS(4870), + [anon_sym_u32] = ACTIONS(4870), + [anon_sym_u64] = ACTIONS(4870), + [anon_sym_isize] = ACTIONS(4870), + [anon_sym_usize] = ACTIONS(4870), + [anon_sym_f32] = ACTIONS(4870), + [anon_sym_f64] = ACTIONS(4870), + [anon_sym_c_char] = ACTIONS(4870), + [anon_sym_c_schar] = ACTIONS(4870), + [anon_sym_c_uchar] = ACTIONS(4870), + [anon_sym_c_short] = ACTIONS(4870), + [anon_sym_c_ushort] = ACTIONS(4870), + [anon_sym_c_int] = ACTIONS(4870), + [anon_sym_c_uint] = ACTIONS(4870), + [anon_sym_c_long] = ACTIONS(4870), + [anon_sym_c_ulong] = ACTIONS(4870), + [anon_sym_c_longlong] = ACTIONS(4870), + [anon_sym_c_ulonglong] = ACTIONS(4870), + [anon_sym_c_float] = ACTIONS(4870), + [anon_sym_c_double] = ACTIONS(4870), + [anon_sym_c_longdouble] = ACTIONS(4870), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_yield] = ACTIONS(4870), + [anon_sym_COLON] = ACTIONS(4868), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_defer] = ACTIONS(4870), + [anon_sym_errdefer] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_while] = ACTIONS(4870), + [anon_sym_expand] = ACTIONS(4870), + [anon_sym_for] = ACTIONS(4870), + [anon_sym_match] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4868), + [anon_sym_orelse] = ACTIONS(4870), + [anon_sym_or] = ACTIONS(4870), + [anon_sym_and] = ACTIONS(4870), + [anon_sym_EQ_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4868), + [anon_sym_xor] = ACTIONS(4870), + [anon_sym_LT_LT] = ACTIONS(4870), + [anon_sym_GT_GT] = ACTIONS(4868), + [anon_sym_LT_LT_PIPE] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_catch] = ACTIONS(4870), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_unreachable] = ACTIONS(4870), + [anon_sym_undefined] = ACTIONS(4870), + [sym_sink] = ACTIONS(4870), + [sym_integer] = ACTIONS(4870), + [sym_float] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [sym_multiline_string] = ACTIONS(4868), + [sym_character] = ACTIONS(4868), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4868), + }, + [STATE(4099)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9522), + [sym_labeled_block] = STATE(9522), + [sym_if_statement] = STATE(9522), + [sym_while_statement] = STATE(9522), + [sym_for_statement] = STATE(9522), + [sym_match_statement] = STATE(9522), + [sym__value] = STATE(9522), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4100)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9523), + [sym_labeled_block] = STATE(9523), + [sym_if_statement] = STATE(9523), + [sym_while_statement] = STATE(9523), + [sym_for_statement] = STATE(9523), + [sym_match_statement] = STATE(9523), + [sym__value] = STATE(9523), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4105), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6998), + }, + [STATE(4101)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9584), + [sym_labeled_block] = STATE(9584), + [sym_if_statement] = STATE(9584), + [sym_while_statement] = STATE(9584), + [sym_for_statement] = STATE(9584), + [sym_match_statement] = STATE(9584), + [sym__value] = STATE(9584), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4106), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7000), + }, + [STATE(4102)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9701), + [sym_labeled_block] = STATE(9701), + [sym_if_statement] = STATE(9701), + [sym_while_statement] = STATE(9701), + [sym_for_statement] = STATE(9701), + [sym_match_statement] = STATE(9701), + [sym__value] = STATE(9701), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4103)] = { + [ts_builtin_sym_end] = ACTIONS(4872), + [sym_identifier] = ACTIONS(4874), + [anon_sym_import] = ACTIONS(4874), + [anon_sym_test] = ACTIONS(4874), + [anon_sym_hide] = ACTIONS(4874), + [anon_sym_func] = ACTIONS(4874), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_struct] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_void] = ACTIONS(4874), + [anon_sym_noreturn] = ACTIONS(4874), + [anon_sym_type] = ACTIONS(4874), + [anon_sym_anyopaque] = ACTIONS(4874), + [anon_sym_bool] = ACTIONS(4874), + [anon_sym_int] = ACTIONS(4874), + [anon_sym_uint] = ACTIONS(4874), + [anon_sym_float] = ACTIONS(4874), + [anon_sym_range] = ACTIONS(4874), + [anon_sym_i8] = ACTIONS(4874), + [anon_sym_i16] = ACTIONS(4874), + [anon_sym_i32] = ACTIONS(4874), + [anon_sym_i64] = ACTIONS(4874), + [anon_sym_u8] = ACTIONS(4874), + [anon_sym_u16] = ACTIONS(4874), + [anon_sym_u32] = ACTIONS(4874), + [anon_sym_u64] = ACTIONS(4874), + [anon_sym_isize] = ACTIONS(4874), + [anon_sym_usize] = ACTIONS(4874), + [anon_sym_f32] = ACTIONS(4874), + [anon_sym_f64] = ACTIONS(4874), + [anon_sym_c_char] = ACTIONS(4874), + [anon_sym_c_schar] = ACTIONS(4874), + [anon_sym_c_uchar] = ACTIONS(4874), + [anon_sym_c_short] = ACTIONS(4874), + [anon_sym_c_ushort] = ACTIONS(4874), + [anon_sym_c_int] = ACTIONS(4874), + [anon_sym_c_uint] = ACTIONS(4874), + [anon_sym_c_long] = ACTIONS(4874), + [anon_sym_c_ulong] = ACTIONS(4874), + [anon_sym_c_longlong] = ACTIONS(4874), + [anon_sym_c_ulonglong] = ACTIONS(4874), + [anon_sym_c_float] = ACTIONS(4874), + [anon_sym_c_double] = ACTIONS(4874), + [anon_sym_c_longdouble] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_yield] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_defer] = ACTIONS(4874), + [anon_sym_errdefer] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_expand] = ACTIONS(4874), + [anon_sym_for] = ACTIONS(4874), + [anon_sym_match] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4872), + [anon_sym_orelse] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4872), + [anon_sym_xor] = ACTIONS(4874), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4872), + [anon_sym_LT_LT_PIPE] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_catch] = ACTIONS(4874), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_unreachable] = ACTIONS(4874), + [anon_sym_undefined] = ACTIONS(4874), + [sym_sink] = ACTIONS(4874), + [sym_integer] = ACTIONS(4874), + [sym_float] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [sym_multiline_string] = ACTIONS(4872), + [sym_character] = ACTIONS(4872), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4872), + }, + [STATE(4104)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8487), + [sym_labeled_block] = STATE(8487), + [sym_if_statement] = STATE(8487), + [sym_while_statement] = STATE(8487), + [sym_for_statement] = STATE(8487), + [sym_match_statement] = STATE(8487), + [sym__value] = STATE(8487), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4105)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9611), + [sym_labeled_block] = STATE(9611), + [sym_if_statement] = STATE(9611), + [sym_while_statement] = STATE(9611), + [sym_for_statement] = STATE(9611), + [sym_match_statement] = STATE(9611), + [sym__value] = STATE(9611), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4106)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9615), + [sym_labeled_block] = STATE(9615), + [sym_if_statement] = STATE(9615), + [sym_while_statement] = STATE(9615), + [sym_for_statement] = STATE(9615), + [sym_match_statement] = STATE(9615), + [sym__value] = STATE(9615), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4107)] = { + [ts_builtin_sym_end] = ACTIONS(4876), + [sym_identifier] = ACTIONS(4878), + [anon_sym_import] = ACTIONS(4878), + [anon_sym_test] = ACTIONS(4878), + [anon_sym_hide] = ACTIONS(4878), + [anon_sym_func] = ACTIONS(4878), + [anon_sym_BANG] = ACTIONS(4878), + [anon_sym_struct] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_void] = ACTIONS(4878), + [anon_sym_noreturn] = ACTIONS(4878), + [anon_sym_type] = ACTIONS(4878), + [anon_sym_anyopaque] = ACTIONS(4878), + [anon_sym_bool] = ACTIONS(4878), + [anon_sym_int] = ACTIONS(4878), + [anon_sym_uint] = ACTIONS(4878), + [anon_sym_float] = ACTIONS(4878), + [anon_sym_range] = ACTIONS(4878), + [anon_sym_i8] = ACTIONS(4878), + [anon_sym_i16] = ACTIONS(4878), + [anon_sym_i32] = ACTIONS(4878), + [anon_sym_i64] = ACTIONS(4878), + [anon_sym_u8] = ACTIONS(4878), + [anon_sym_u16] = ACTIONS(4878), + [anon_sym_u32] = ACTIONS(4878), + [anon_sym_u64] = ACTIONS(4878), + [anon_sym_isize] = ACTIONS(4878), + [anon_sym_usize] = ACTIONS(4878), + [anon_sym_f32] = ACTIONS(4878), + [anon_sym_f64] = ACTIONS(4878), + [anon_sym_c_char] = ACTIONS(4878), + [anon_sym_c_schar] = ACTIONS(4878), + [anon_sym_c_uchar] = ACTIONS(4878), + [anon_sym_c_short] = ACTIONS(4878), + [anon_sym_c_ushort] = ACTIONS(4878), + [anon_sym_c_int] = ACTIONS(4878), + [anon_sym_c_uint] = ACTIONS(4878), + [anon_sym_c_long] = ACTIONS(4878), + [anon_sym_c_ulong] = ACTIONS(4878), + [anon_sym_c_longlong] = ACTIONS(4878), + [anon_sym_c_ulonglong] = ACTIONS(4878), + [anon_sym_c_float] = ACTIONS(4878), + [anon_sym_c_double] = ACTIONS(4878), + [anon_sym_c_longdouble] = ACTIONS(4878), + [anon_sym_return] = ACTIONS(4878), + [anon_sym_yield] = ACTIONS(4878), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_break] = ACTIONS(4878), + [anon_sym_continue] = ACTIONS(4878), + [anon_sym_defer] = ACTIONS(4878), + [anon_sym_errdefer] = ACTIONS(4878), + [anon_sym_if] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_while] = ACTIONS(4878), + [anon_sym_expand] = ACTIONS(4878), + [anon_sym_for] = ACTIONS(4878), + [anon_sym_match] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4876), + [anon_sym_orelse] = ACTIONS(4878), + [anon_sym_or] = ACTIONS(4878), + [anon_sym_and] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_xor] = ACTIONS(4878), + [anon_sym_LT_LT] = ACTIONS(4878), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_LT_LT_PIPE] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_catch] = ACTIONS(4878), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_try] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4878), + [anon_sym_false] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4878), + [anon_sym_unreachable] = ACTIONS(4878), + [anon_sym_undefined] = ACTIONS(4878), + [sym_sink] = ACTIONS(4878), + [sym_integer] = ACTIONS(4878), + [sym_float] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [sym_multiline_string] = ACTIONS(4876), + [sym_character] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4876), + }, + [STATE(4108)] = { + [ts_builtin_sym_end] = ACTIONS(5408), + [sym_identifier] = ACTIONS(5410), + [anon_sym_import] = ACTIONS(5410), + [anon_sym_test] = ACTIONS(5410), + [anon_sym_hide] = ACTIONS(5410), + [anon_sym_func] = ACTIONS(5410), + [anon_sym_BANG] = ACTIONS(5410), + [anon_sym_struct] = ACTIONS(5410), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5408), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_DASH] = ACTIONS(5408), + [anon_sym_DOLLAR] = ACTIONS(5408), + [anon_sym_PIPE] = ACTIONS(5408), + [anon_sym_QMARK] = ACTIONS(5408), + [anon_sym_STAR] = ACTIONS(5408), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_void] = ACTIONS(5410), + [anon_sym_noreturn] = ACTIONS(5410), + [anon_sym_type] = ACTIONS(5410), + [anon_sym_anyopaque] = ACTIONS(5410), + [anon_sym_bool] = ACTIONS(5410), + [anon_sym_int] = ACTIONS(5410), + [anon_sym_uint] = ACTIONS(5410), + [anon_sym_float] = ACTIONS(5410), + [anon_sym_range] = ACTIONS(5410), + [anon_sym_i8] = ACTIONS(5410), + [anon_sym_i16] = ACTIONS(5410), + [anon_sym_i32] = ACTIONS(5410), + [anon_sym_i64] = ACTIONS(5410), + [anon_sym_u8] = ACTIONS(5410), + [anon_sym_u16] = ACTIONS(5410), + [anon_sym_u32] = ACTIONS(5410), + [anon_sym_u64] = ACTIONS(5410), + [anon_sym_isize] = ACTIONS(5410), + [anon_sym_usize] = ACTIONS(5410), + [anon_sym_f32] = ACTIONS(5410), + [anon_sym_f64] = ACTIONS(5410), + [anon_sym_c_char] = ACTIONS(5410), + [anon_sym_c_schar] = ACTIONS(5410), + [anon_sym_c_uchar] = ACTIONS(5410), + [anon_sym_c_short] = ACTIONS(5410), + [anon_sym_c_ushort] = ACTIONS(5410), + [anon_sym_c_int] = ACTIONS(5410), + [anon_sym_c_uint] = ACTIONS(5410), + [anon_sym_c_long] = ACTIONS(5410), + [anon_sym_c_ulong] = ACTIONS(5410), + [anon_sym_c_longlong] = ACTIONS(5410), + [anon_sym_c_ulonglong] = ACTIONS(5410), + [anon_sym_c_float] = ACTIONS(5410), + [anon_sym_c_double] = ACTIONS(5410), + [anon_sym_c_longdouble] = ACTIONS(5410), + [anon_sym_return] = ACTIONS(5410), + [anon_sym_yield] = ACTIONS(5410), + [anon_sym_COLON] = ACTIONS(5408), + [anon_sym_break] = ACTIONS(5410), + [anon_sym_continue] = ACTIONS(5410), + [anon_sym_defer] = ACTIONS(5410), + [anon_sym_errdefer] = ACTIONS(5410), + [anon_sym_if] = ACTIONS(5410), + [anon_sym_else] = ACTIONS(5410), + [anon_sym_while] = ACTIONS(5410), + [anon_sym_expand] = ACTIONS(5410), + [anon_sym_for] = ACTIONS(5410), + [anon_sym_match] = ACTIONS(5410), + [anon_sym_DOT_DOT] = ACTIONS(5410), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5408), + [anon_sym_orelse] = ACTIONS(5410), + [anon_sym_or] = ACTIONS(5410), + [anon_sym_and] = ACTIONS(5410), + [anon_sym_EQ_EQ] = ACTIONS(5408), + [anon_sym_BANG_EQ] = ACTIONS(5408), + [anon_sym_LT] = ACTIONS(5410), + [anon_sym_LT_EQ] = ACTIONS(5408), + [anon_sym_GT] = ACTIONS(5410), + [anon_sym_GT_EQ] = ACTIONS(5408), + [anon_sym_AMP] = ACTIONS(5408), + [anon_sym_xor] = ACTIONS(5410), + [anon_sym_LT_LT] = ACTIONS(5410), + [anon_sym_GT_GT] = ACTIONS(5408), + [anon_sym_LT_LT_PIPE] = ACTIONS(5408), + [anon_sym_PLUS] = ACTIONS(5408), + [anon_sym_SLASH] = ACTIONS(5408), + [anon_sym_catch] = ACTIONS(5410), + [anon_sym_TILDE] = ACTIONS(5408), + [anon_sym_try] = ACTIONS(5410), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_CARET] = ACTIONS(5408), + [anon_sym_true] = ACTIONS(5410), + [anon_sym_false] = ACTIONS(5410), + [anon_sym_null] = ACTIONS(5410), + [anon_sym_unreachable] = ACTIONS(5410), + [anon_sym_undefined] = ACTIONS(5410), + [sym_sink] = ACTIONS(5410), + [sym_integer] = ACTIONS(5410), + [sym_float] = ACTIONS(5408), + [anon_sym_DQUOTE] = ACTIONS(5408), + [sym_multiline_string] = ACTIONS(5408), + [sym_character] = ACTIONS(5408), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5408), + }, + [STATE(4109)] = { + [ts_builtin_sym_end] = ACTIONS(4880), + [sym_identifier] = ACTIONS(4882), + [anon_sym_import] = ACTIONS(4882), + [anon_sym_test] = ACTIONS(4882), + [anon_sym_hide] = ACTIONS(4882), + [anon_sym_func] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_struct] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_void] = ACTIONS(4882), + [anon_sym_noreturn] = ACTIONS(4882), + [anon_sym_type] = ACTIONS(4882), + [anon_sym_anyopaque] = ACTIONS(4882), + [anon_sym_bool] = ACTIONS(4882), + [anon_sym_int] = ACTIONS(4882), + [anon_sym_uint] = ACTIONS(4882), + [anon_sym_float] = ACTIONS(4882), + [anon_sym_range] = ACTIONS(4882), + [anon_sym_i8] = ACTIONS(4882), + [anon_sym_i16] = ACTIONS(4882), + [anon_sym_i32] = ACTIONS(4882), + [anon_sym_i64] = ACTIONS(4882), + [anon_sym_u8] = ACTIONS(4882), + [anon_sym_u16] = ACTIONS(4882), + [anon_sym_u32] = ACTIONS(4882), + [anon_sym_u64] = ACTIONS(4882), + [anon_sym_isize] = ACTIONS(4882), + [anon_sym_usize] = ACTIONS(4882), + [anon_sym_f32] = ACTIONS(4882), + [anon_sym_f64] = ACTIONS(4882), + [anon_sym_c_char] = ACTIONS(4882), + [anon_sym_c_schar] = ACTIONS(4882), + [anon_sym_c_uchar] = ACTIONS(4882), + [anon_sym_c_short] = ACTIONS(4882), + [anon_sym_c_ushort] = ACTIONS(4882), + [anon_sym_c_int] = ACTIONS(4882), + [anon_sym_c_uint] = ACTIONS(4882), + [anon_sym_c_long] = ACTIONS(4882), + [anon_sym_c_ulong] = ACTIONS(4882), + [anon_sym_c_longlong] = ACTIONS(4882), + [anon_sym_c_ulonglong] = ACTIONS(4882), + [anon_sym_c_float] = ACTIONS(4882), + [anon_sym_c_double] = ACTIONS(4882), + [anon_sym_c_longdouble] = ACTIONS(4882), + [anon_sym_return] = ACTIONS(4882), + [anon_sym_yield] = ACTIONS(4882), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4882), + [anon_sym_continue] = ACTIONS(4882), + [anon_sym_defer] = ACTIONS(4882), + [anon_sym_errdefer] = ACTIONS(4882), + [anon_sym_if] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_while] = ACTIONS(4882), + [anon_sym_expand] = ACTIONS(4882), + [anon_sym_for] = ACTIONS(4882), + [anon_sym_match] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4880), + [anon_sym_orelse] = ACTIONS(4882), + [anon_sym_or] = ACTIONS(4882), + [anon_sym_and] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4880), + [anon_sym_xor] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4882), + [anon_sym_GT_GT] = ACTIONS(4880), + [anon_sym_LT_LT_PIPE] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_catch] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_unreachable] = ACTIONS(4882), + [anon_sym_undefined] = ACTIONS(4882), + [sym_sink] = ACTIONS(4882), + [sym_integer] = ACTIONS(4882), + [sym_float] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [sym_multiline_string] = ACTIONS(4880), + [sym_character] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4880), + }, + [STATE(4110)] = { + [ts_builtin_sym_end] = ACTIONS(5412), + [sym_identifier] = ACTIONS(5414), + [anon_sym_import] = ACTIONS(5414), + [anon_sym_test] = ACTIONS(5414), + [anon_sym_hide] = ACTIONS(5414), + [anon_sym_func] = ACTIONS(5414), + [anon_sym_BANG] = ACTIONS(5414), + [anon_sym_struct] = ACTIONS(5414), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_LBRACE] = ACTIONS(5412), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), + [anon_sym_DOLLAR] = ACTIONS(5412), + [anon_sym_PIPE] = ACTIONS(5412), + [anon_sym_QMARK] = ACTIONS(5412), + [anon_sym_STAR] = ACTIONS(5412), + [anon_sym_LBRACK] = ACTIONS(5412), + [anon_sym_void] = ACTIONS(5414), + [anon_sym_noreturn] = ACTIONS(5414), + [anon_sym_type] = ACTIONS(5414), + [anon_sym_anyopaque] = ACTIONS(5414), + [anon_sym_bool] = ACTIONS(5414), + [anon_sym_int] = ACTIONS(5414), + [anon_sym_uint] = ACTIONS(5414), + [anon_sym_float] = ACTIONS(5414), + [anon_sym_range] = ACTIONS(5414), + [anon_sym_i8] = ACTIONS(5414), + [anon_sym_i16] = ACTIONS(5414), + [anon_sym_i32] = ACTIONS(5414), + [anon_sym_i64] = ACTIONS(5414), + [anon_sym_u8] = ACTIONS(5414), + [anon_sym_u16] = ACTIONS(5414), + [anon_sym_u32] = ACTIONS(5414), + [anon_sym_u64] = ACTIONS(5414), + [anon_sym_isize] = ACTIONS(5414), + [anon_sym_usize] = ACTIONS(5414), + [anon_sym_f32] = ACTIONS(5414), + [anon_sym_f64] = ACTIONS(5414), + [anon_sym_c_char] = ACTIONS(5414), + [anon_sym_c_schar] = ACTIONS(5414), + [anon_sym_c_uchar] = ACTIONS(5414), + [anon_sym_c_short] = ACTIONS(5414), + [anon_sym_c_ushort] = ACTIONS(5414), + [anon_sym_c_int] = ACTIONS(5414), + [anon_sym_c_uint] = ACTIONS(5414), + [anon_sym_c_long] = ACTIONS(5414), + [anon_sym_c_ulong] = ACTIONS(5414), + [anon_sym_c_longlong] = ACTIONS(5414), + [anon_sym_c_ulonglong] = ACTIONS(5414), + [anon_sym_c_float] = ACTIONS(5414), + [anon_sym_c_double] = ACTIONS(5414), + [anon_sym_c_longdouble] = ACTIONS(5414), + [anon_sym_return] = ACTIONS(5414), + [anon_sym_yield] = ACTIONS(5414), + [anon_sym_COLON] = ACTIONS(5412), + [anon_sym_break] = ACTIONS(5414), + [anon_sym_continue] = ACTIONS(5414), + [anon_sym_defer] = ACTIONS(5414), + [anon_sym_errdefer] = ACTIONS(5414), + [anon_sym_if] = ACTIONS(5414), + [anon_sym_else] = ACTIONS(5414), + [anon_sym_while] = ACTIONS(5414), + [anon_sym_expand] = ACTIONS(5414), + [anon_sym_for] = ACTIONS(5414), + [anon_sym_match] = ACTIONS(5414), + [anon_sym_DOT_DOT] = ACTIONS(5414), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5412), + [anon_sym_orelse] = ACTIONS(5414), + [anon_sym_or] = ACTIONS(5414), + [anon_sym_and] = ACTIONS(5414), + [anon_sym_EQ_EQ] = ACTIONS(5412), + [anon_sym_BANG_EQ] = ACTIONS(5412), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_LT_EQ] = ACTIONS(5412), + [anon_sym_GT] = ACTIONS(5414), + [anon_sym_GT_EQ] = ACTIONS(5412), + [anon_sym_AMP] = ACTIONS(5412), + [anon_sym_xor] = ACTIONS(5414), + [anon_sym_LT_LT] = ACTIONS(5414), + [anon_sym_GT_GT] = ACTIONS(5412), + [anon_sym_LT_LT_PIPE] = ACTIONS(5412), + [anon_sym_PLUS] = ACTIONS(5412), + [anon_sym_SLASH] = ACTIONS(5412), + [anon_sym_catch] = ACTIONS(5414), + [anon_sym_TILDE] = ACTIONS(5412), + [anon_sym_try] = ACTIONS(5414), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_CARET] = ACTIONS(5412), + [anon_sym_true] = ACTIONS(5414), + [anon_sym_false] = ACTIONS(5414), + [anon_sym_null] = ACTIONS(5414), + [anon_sym_unreachable] = ACTIONS(5414), + [anon_sym_undefined] = ACTIONS(5414), + [sym_sink] = ACTIONS(5414), + [sym_integer] = ACTIONS(5414), + [sym_float] = ACTIONS(5412), + [anon_sym_DQUOTE] = ACTIONS(5412), + [sym_multiline_string] = ACTIONS(5412), + [sym_character] = ACTIONS(5412), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5412), + }, + [STATE(4111)] = { + [ts_builtin_sym_end] = ACTIONS(5416), + [sym_identifier] = ACTIONS(5418), + [anon_sym_import] = ACTIONS(5418), + [anon_sym_test] = ACTIONS(5418), + [anon_sym_hide] = ACTIONS(5418), + [anon_sym_func] = ACTIONS(5418), + [anon_sym_BANG] = ACTIONS(5418), + [anon_sym_struct] = ACTIONS(5418), + [anon_sym_LPAREN] = ACTIONS(5416), + [anon_sym_LBRACE] = ACTIONS(5416), + [anon_sym_RBRACE] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5416), + [anon_sym_DOLLAR] = ACTIONS(5416), + [anon_sym_PIPE] = ACTIONS(5416), + [anon_sym_QMARK] = ACTIONS(5416), + [anon_sym_STAR] = ACTIONS(5416), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_void] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_type] = ACTIONS(5418), + [anon_sym_anyopaque] = ACTIONS(5418), + [anon_sym_bool] = ACTIONS(5418), + [anon_sym_int] = ACTIONS(5418), + [anon_sym_uint] = ACTIONS(5418), + [anon_sym_float] = ACTIONS(5418), + [anon_sym_range] = ACTIONS(5418), + [anon_sym_i8] = ACTIONS(5418), + [anon_sym_i16] = ACTIONS(5418), + [anon_sym_i32] = ACTIONS(5418), + [anon_sym_i64] = ACTIONS(5418), + [anon_sym_u8] = ACTIONS(5418), + [anon_sym_u16] = ACTIONS(5418), + [anon_sym_u32] = ACTIONS(5418), + [anon_sym_u64] = ACTIONS(5418), + [anon_sym_isize] = ACTIONS(5418), + [anon_sym_usize] = ACTIONS(5418), + [anon_sym_f32] = ACTIONS(5418), + [anon_sym_f64] = ACTIONS(5418), + [anon_sym_c_char] = ACTIONS(5418), + [anon_sym_c_schar] = ACTIONS(5418), + [anon_sym_c_uchar] = ACTIONS(5418), + [anon_sym_c_short] = ACTIONS(5418), + [anon_sym_c_ushort] = ACTIONS(5418), + [anon_sym_c_int] = ACTIONS(5418), + [anon_sym_c_uint] = ACTIONS(5418), + [anon_sym_c_long] = ACTIONS(5418), + [anon_sym_c_ulong] = ACTIONS(5418), + [anon_sym_c_longlong] = ACTIONS(5418), + [anon_sym_c_ulonglong] = ACTIONS(5418), + [anon_sym_c_float] = ACTIONS(5418), + [anon_sym_c_double] = ACTIONS(5418), + [anon_sym_c_longdouble] = ACTIONS(5418), + [anon_sym_return] = ACTIONS(5418), + [anon_sym_yield] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5416), + [anon_sym_break] = ACTIONS(5418), + [anon_sym_continue] = ACTIONS(5418), + [anon_sym_defer] = ACTIONS(5418), + [anon_sym_errdefer] = ACTIONS(5418), + [anon_sym_if] = ACTIONS(5418), + [anon_sym_else] = ACTIONS(5418), + [anon_sym_while] = ACTIONS(5418), + [anon_sym_expand] = ACTIONS(5418), + [anon_sym_for] = ACTIONS(5418), + [anon_sym_match] = ACTIONS(5418), + [anon_sym_DOT_DOT] = ACTIONS(5418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5416), + [anon_sym_orelse] = ACTIONS(5418), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5416), + [anon_sym_BANG_EQ] = ACTIONS(5416), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_EQ] = ACTIONS(5416), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(5416), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5418), + [anon_sym_GT_GT] = ACTIONS(5416), + [anon_sym_LT_LT_PIPE] = ACTIONS(5416), + [anon_sym_PLUS] = ACTIONS(5416), + [anon_sym_SLASH] = ACTIONS(5416), + [anon_sym_catch] = ACTIONS(5418), + [anon_sym_TILDE] = ACTIONS(5416), + [anon_sym_try] = ACTIONS(5418), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5416), + [anon_sym_true] = ACTIONS(5418), + [anon_sym_false] = ACTIONS(5418), + [anon_sym_null] = ACTIONS(5418), + [anon_sym_unreachable] = ACTIONS(5418), + [anon_sym_undefined] = ACTIONS(5418), + [sym_sink] = ACTIONS(5418), + [sym_integer] = ACTIONS(5418), + [sym_float] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5416), + [sym_multiline_string] = ACTIONS(5416), + [sym_character] = ACTIONS(5416), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5416), + }, + [STATE(4112)] = { + [ts_builtin_sym_end] = ACTIONS(4884), + [sym_identifier] = ACTIONS(4886), + [anon_sym_import] = ACTIONS(4886), + [anon_sym_test] = ACTIONS(4886), + [anon_sym_hide] = ACTIONS(4886), + [anon_sym_func] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4886), + [anon_sym_struct] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_void] = ACTIONS(4886), + [anon_sym_noreturn] = ACTIONS(4886), + [anon_sym_type] = ACTIONS(4886), + [anon_sym_anyopaque] = ACTIONS(4886), + [anon_sym_bool] = ACTIONS(4886), + [anon_sym_int] = ACTIONS(4886), + [anon_sym_uint] = ACTIONS(4886), + [anon_sym_float] = ACTIONS(4886), + [anon_sym_range] = ACTIONS(4886), + [anon_sym_i8] = ACTIONS(4886), + [anon_sym_i16] = ACTIONS(4886), + [anon_sym_i32] = ACTIONS(4886), + [anon_sym_i64] = ACTIONS(4886), + [anon_sym_u8] = ACTIONS(4886), + [anon_sym_u16] = ACTIONS(4886), + [anon_sym_u32] = ACTIONS(4886), + [anon_sym_u64] = ACTIONS(4886), + [anon_sym_isize] = ACTIONS(4886), + [anon_sym_usize] = ACTIONS(4886), + [anon_sym_f32] = ACTIONS(4886), + [anon_sym_f64] = ACTIONS(4886), + [anon_sym_c_char] = ACTIONS(4886), + [anon_sym_c_schar] = ACTIONS(4886), + [anon_sym_c_uchar] = ACTIONS(4886), + [anon_sym_c_short] = ACTIONS(4886), + [anon_sym_c_ushort] = ACTIONS(4886), + [anon_sym_c_int] = ACTIONS(4886), + [anon_sym_c_uint] = ACTIONS(4886), + [anon_sym_c_long] = ACTIONS(4886), + [anon_sym_c_ulong] = ACTIONS(4886), + [anon_sym_c_longlong] = ACTIONS(4886), + [anon_sym_c_ulonglong] = ACTIONS(4886), + [anon_sym_c_float] = ACTIONS(4886), + [anon_sym_c_double] = ACTIONS(4886), + [anon_sym_c_longdouble] = ACTIONS(4886), + [anon_sym_return] = ACTIONS(4886), + [anon_sym_yield] = ACTIONS(4886), + [anon_sym_COLON] = ACTIONS(4884), + [anon_sym_break] = ACTIONS(4886), + [anon_sym_continue] = ACTIONS(4886), + [anon_sym_defer] = ACTIONS(4886), + [anon_sym_errdefer] = ACTIONS(4886), + [anon_sym_if] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_while] = ACTIONS(4886), + [anon_sym_expand] = ACTIONS(4886), + [anon_sym_for] = ACTIONS(4886), + [anon_sym_match] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), + [anon_sym_orelse] = ACTIONS(4886), + [anon_sym_or] = ACTIONS(4886), + [anon_sym_and] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4884), + [anon_sym_xor] = ACTIONS(4886), + [anon_sym_LT_LT] = ACTIONS(4886), + [anon_sym_GT_GT] = ACTIONS(4884), + [anon_sym_LT_LT_PIPE] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_catch] = ACTIONS(4886), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4884), + [anon_sym_true] = ACTIONS(4886), + [anon_sym_false] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4886), + [anon_sym_unreachable] = ACTIONS(4886), + [anon_sym_undefined] = ACTIONS(4886), + [sym_sink] = ACTIONS(4886), + [sym_integer] = ACTIONS(4886), + [sym_float] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [sym_multiline_string] = ACTIONS(4884), + [sym_character] = ACTIONS(4884), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4884), + }, + [STATE(4113)] = { + [ts_builtin_sym_end] = ACTIONS(4888), + [sym_identifier] = ACTIONS(4890), + [anon_sym_import] = ACTIONS(4890), + [anon_sym_test] = ACTIONS(4890), + [anon_sym_hide] = ACTIONS(4890), + [anon_sym_func] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4890), + [anon_sym_struct] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_void] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym_type] = ACTIONS(4890), + [anon_sym_anyopaque] = ACTIONS(4890), + [anon_sym_bool] = ACTIONS(4890), + [anon_sym_int] = ACTIONS(4890), + [anon_sym_uint] = ACTIONS(4890), + [anon_sym_float] = ACTIONS(4890), + [anon_sym_range] = ACTIONS(4890), + [anon_sym_i8] = ACTIONS(4890), + [anon_sym_i16] = ACTIONS(4890), + [anon_sym_i32] = ACTIONS(4890), + [anon_sym_i64] = ACTIONS(4890), + [anon_sym_u8] = ACTIONS(4890), + [anon_sym_u16] = ACTIONS(4890), + [anon_sym_u32] = ACTIONS(4890), + [anon_sym_u64] = ACTIONS(4890), + [anon_sym_isize] = ACTIONS(4890), + [anon_sym_usize] = ACTIONS(4890), + [anon_sym_f32] = ACTIONS(4890), + [anon_sym_f64] = ACTIONS(4890), + [anon_sym_c_char] = ACTIONS(4890), + [anon_sym_c_schar] = ACTIONS(4890), + [anon_sym_c_uchar] = ACTIONS(4890), + [anon_sym_c_short] = ACTIONS(4890), + [anon_sym_c_ushort] = ACTIONS(4890), + [anon_sym_c_int] = ACTIONS(4890), + [anon_sym_c_uint] = ACTIONS(4890), + [anon_sym_c_long] = ACTIONS(4890), + [anon_sym_c_ulong] = ACTIONS(4890), + [anon_sym_c_longlong] = ACTIONS(4890), + [anon_sym_c_ulonglong] = ACTIONS(4890), + [anon_sym_c_float] = ACTIONS(4890), + [anon_sym_c_double] = ACTIONS(4890), + [anon_sym_c_longdouble] = ACTIONS(4890), + [anon_sym_return] = ACTIONS(4890), + [anon_sym_yield] = ACTIONS(4890), + [anon_sym_COLON] = ACTIONS(4888), + [anon_sym_break] = ACTIONS(4890), + [anon_sym_continue] = ACTIONS(4890), + [anon_sym_defer] = ACTIONS(4890), + [anon_sym_errdefer] = ACTIONS(4890), + [anon_sym_if] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_while] = ACTIONS(4890), + [anon_sym_expand] = ACTIONS(4890), + [anon_sym_for] = ACTIONS(4890), + [anon_sym_match] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), + [anon_sym_orelse] = ACTIONS(4890), + [anon_sym_or] = ACTIONS(4890), + [anon_sym_and] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4888), + [anon_sym_xor] = ACTIONS(4890), + [anon_sym_LT_LT] = ACTIONS(4890), + [anon_sym_GT_GT] = ACTIONS(4888), + [anon_sym_LT_LT_PIPE] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_catch] = ACTIONS(4890), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4888), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_unreachable] = ACTIONS(4890), + [anon_sym_undefined] = ACTIONS(4890), + [sym_sink] = ACTIONS(4890), + [sym_integer] = ACTIONS(4890), + [sym_float] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [sym_multiline_string] = ACTIONS(4888), + [sym_character] = ACTIONS(4888), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4888), + }, + [STATE(4114)] = { + [ts_builtin_sym_end] = ACTIONS(4892), + [sym_identifier] = ACTIONS(4894), + [anon_sym_import] = ACTIONS(4894), + [anon_sym_test] = ACTIONS(4894), + [anon_sym_hide] = ACTIONS(4894), + [anon_sym_func] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_struct] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_void] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym_type] = ACTIONS(4894), + [anon_sym_anyopaque] = ACTIONS(4894), + [anon_sym_bool] = ACTIONS(4894), + [anon_sym_int] = ACTIONS(4894), + [anon_sym_uint] = ACTIONS(4894), + [anon_sym_float] = ACTIONS(4894), + [anon_sym_range] = ACTIONS(4894), + [anon_sym_i8] = ACTIONS(4894), + [anon_sym_i16] = ACTIONS(4894), + [anon_sym_i32] = ACTIONS(4894), + [anon_sym_i64] = ACTIONS(4894), + [anon_sym_u8] = ACTIONS(4894), + [anon_sym_u16] = ACTIONS(4894), + [anon_sym_u32] = ACTIONS(4894), + [anon_sym_u64] = ACTIONS(4894), + [anon_sym_isize] = ACTIONS(4894), + [anon_sym_usize] = ACTIONS(4894), + [anon_sym_f32] = ACTIONS(4894), + [anon_sym_f64] = ACTIONS(4894), + [anon_sym_c_char] = ACTIONS(4894), + [anon_sym_c_schar] = ACTIONS(4894), + [anon_sym_c_uchar] = ACTIONS(4894), + [anon_sym_c_short] = ACTIONS(4894), + [anon_sym_c_ushort] = ACTIONS(4894), + [anon_sym_c_int] = ACTIONS(4894), + [anon_sym_c_uint] = ACTIONS(4894), + [anon_sym_c_long] = ACTIONS(4894), + [anon_sym_c_ulong] = ACTIONS(4894), + [anon_sym_c_longlong] = ACTIONS(4894), + [anon_sym_c_ulonglong] = ACTIONS(4894), + [anon_sym_c_float] = ACTIONS(4894), + [anon_sym_c_double] = ACTIONS(4894), + [anon_sym_c_longdouble] = ACTIONS(4894), + [anon_sym_return] = ACTIONS(4894), + [anon_sym_yield] = ACTIONS(4894), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4894), + [anon_sym_continue] = ACTIONS(4894), + [anon_sym_defer] = ACTIONS(4894), + [anon_sym_errdefer] = ACTIONS(4894), + [anon_sym_if] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4894), + [anon_sym_while] = ACTIONS(4894), + [anon_sym_expand] = ACTIONS(4894), + [anon_sym_for] = ACTIONS(4894), + [anon_sym_match] = ACTIONS(4894), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4892), + [anon_sym_orelse] = ACTIONS(4894), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_and] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_xor] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4894), + [anon_sym_GT_GT] = ACTIONS(4892), + [anon_sym_LT_LT_PIPE] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_catch] = ACTIONS(4894), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4892), + [anon_sym_true] = ACTIONS(4894), + [anon_sym_false] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4894), + [anon_sym_unreachable] = ACTIONS(4894), + [anon_sym_undefined] = ACTIONS(4894), + [sym_sink] = ACTIONS(4894), + [sym_integer] = ACTIONS(4894), + [sym_float] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [sym_multiline_string] = ACTIONS(4892), + [sym_character] = ACTIONS(4892), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4892), + }, + [STATE(4115)] = { + [ts_builtin_sym_end] = ACTIONS(4896), + [sym_identifier] = ACTIONS(4898), + [anon_sym_import] = ACTIONS(4898), + [anon_sym_test] = ACTIONS(4898), + [anon_sym_hide] = ACTIONS(4898), + [anon_sym_func] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4898), + [anon_sym_struct] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_RBRACE] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_void] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym_type] = ACTIONS(4898), + [anon_sym_anyopaque] = ACTIONS(4898), + [anon_sym_bool] = ACTIONS(4898), + [anon_sym_int] = ACTIONS(4898), + [anon_sym_uint] = ACTIONS(4898), + [anon_sym_float] = ACTIONS(4898), + [anon_sym_range] = ACTIONS(4898), + [anon_sym_i8] = ACTIONS(4898), + [anon_sym_i16] = ACTIONS(4898), + [anon_sym_i32] = ACTIONS(4898), + [anon_sym_i64] = ACTIONS(4898), + [anon_sym_u8] = ACTIONS(4898), + [anon_sym_u16] = ACTIONS(4898), + [anon_sym_u32] = ACTIONS(4898), + [anon_sym_u64] = ACTIONS(4898), + [anon_sym_isize] = ACTIONS(4898), + [anon_sym_usize] = ACTIONS(4898), + [anon_sym_f32] = ACTIONS(4898), + [anon_sym_f64] = ACTIONS(4898), + [anon_sym_c_char] = ACTIONS(4898), + [anon_sym_c_schar] = ACTIONS(4898), + [anon_sym_c_uchar] = ACTIONS(4898), + [anon_sym_c_short] = ACTIONS(4898), + [anon_sym_c_ushort] = ACTIONS(4898), + [anon_sym_c_int] = ACTIONS(4898), + [anon_sym_c_uint] = ACTIONS(4898), + [anon_sym_c_long] = ACTIONS(4898), + [anon_sym_c_ulong] = ACTIONS(4898), + [anon_sym_c_longlong] = ACTIONS(4898), + [anon_sym_c_ulonglong] = ACTIONS(4898), + [anon_sym_c_float] = ACTIONS(4898), + [anon_sym_c_double] = ACTIONS(4898), + [anon_sym_c_longdouble] = ACTIONS(4898), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_yield] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_continue] = ACTIONS(4898), + [anon_sym_defer] = ACTIONS(4898), + [anon_sym_errdefer] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_while] = ACTIONS(4898), + [anon_sym_expand] = ACTIONS(4898), + [anon_sym_for] = ACTIONS(4898), + [anon_sym_match] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4896), + [anon_sym_orelse] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4896), + [anon_sym_LT_LT_PIPE] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_catch] = ACTIONS(4898), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_unreachable] = ACTIONS(4898), + [anon_sym_undefined] = ACTIONS(4898), + [sym_sink] = ACTIONS(4898), + [sym_integer] = ACTIONS(4898), + [sym_float] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [sym_multiline_string] = ACTIONS(4896), + [sym_character] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4896), + }, + [STATE(4116)] = { + [ts_builtin_sym_end] = ACTIONS(4900), + [sym_identifier] = ACTIONS(4902), + [anon_sym_import] = ACTIONS(4902), + [anon_sym_test] = ACTIONS(4902), + [anon_sym_hide] = ACTIONS(4902), + [anon_sym_func] = ACTIONS(4902), + [anon_sym_BANG] = ACTIONS(4902), + [anon_sym_struct] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_void] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym_type] = ACTIONS(4902), + [anon_sym_anyopaque] = ACTIONS(4902), + [anon_sym_bool] = ACTIONS(4902), + [anon_sym_int] = ACTIONS(4902), + [anon_sym_uint] = ACTIONS(4902), + [anon_sym_float] = ACTIONS(4902), + [anon_sym_range] = ACTIONS(4902), + [anon_sym_i8] = ACTIONS(4902), + [anon_sym_i16] = ACTIONS(4902), + [anon_sym_i32] = ACTIONS(4902), + [anon_sym_i64] = ACTIONS(4902), + [anon_sym_u8] = ACTIONS(4902), + [anon_sym_u16] = ACTIONS(4902), + [anon_sym_u32] = ACTIONS(4902), + [anon_sym_u64] = ACTIONS(4902), + [anon_sym_isize] = ACTIONS(4902), + [anon_sym_usize] = ACTIONS(4902), + [anon_sym_f32] = ACTIONS(4902), + [anon_sym_f64] = ACTIONS(4902), + [anon_sym_c_char] = ACTIONS(4902), + [anon_sym_c_schar] = ACTIONS(4902), + [anon_sym_c_uchar] = ACTIONS(4902), + [anon_sym_c_short] = ACTIONS(4902), + [anon_sym_c_ushort] = ACTIONS(4902), + [anon_sym_c_int] = ACTIONS(4902), + [anon_sym_c_uint] = ACTIONS(4902), + [anon_sym_c_long] = ACTIONS(4902), + [anon_sym_c_ulong] = ACTIONS(4902), + [anon_sym_c_longlong] = ACTIONS(4902), + [anon_sym_c_ulonglong] = ACTIONS(4902), + [anon_sym_c_float] = ACTIONS(4902), + [anon_sym_c_double] = ACTIONS(4902), + [anon_sym_c_longdouble] = ACTIONS(4902), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_yield] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_continue] = ACTIONS(4902), + [anon_sym_defer] = ACTIONS(4902), + [anon_sym_errdefer] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_while] = ACTIONS(4902), + [anon_sym_expand] = ACTIONS(4902), + [anon_sym_for] = ACTIONS(4902), + [anon_sym_match] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4900), + [anon_sym_orelse] = ACTIONS(4902), + [anon_sym_or] = ACTIONS(4902), + [anon_sym_and] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_xor] = ACTIONS(4902), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_LT_LT_PIPE] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_catch] = ACTIONS(4902), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4902), + [anon_sym_false] = ACTIONS(4902), + [anon_sym_null] = ACTIONS(4902), + [anon_sym_unreachable] = ACTIONS(4902), + [anon_sym_undefined] = ACTIONS(4902), + [sym_sink] = ACTIONS(4902), + [sym_integer] = ACTIONS(4902), + [sym_float] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [sym_multiline_string] = ACTIONS(4900), + [sym_character] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4900), + }, + [STATE(4117)] = { + [ts_builtin_sym_end] = ACTIONS(4904), + [sym_identifier] = ACTIONS(4906), + [anon_sym_import] = ACTIONS(4906), + [anon_sym_test] = ACTIONS(4906), + [anon_sym_hide] = ACTIONS(4906), + [anon_sym_func] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_void] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym_type] = ACTIONS(4906), + [anon_sym_anyopaque] = ACTIONS(4906), + [anon_sym_bool] = ACTIONS(4906), + [anon_sym_int] = ACTIONS(4906), + [anon_sym_uint] = ACTIONS(4906), + [anon_sym_float] = ACTIONS(4906), + [anon_sym_range] = ACTIONS(4906), + [anon_sym_i8] = ACTIONS(4906), + [anon_sym_i16] = ACTIONS(4906), + [anon_sym_i32] = ACTIONS(4906), + [anon_sym_i64] = ACTIONS(4906), + [anon_sym_u8] = ACTIONS(4906), + [anon_sym_u16] = ACTIONS(4906), + [anon_sym_u32] = ACTIONS(4906), + [anon_sym_u64] = ACTIONS(4906), + [anon_sym_isize] = ACTIONS(4906), + [anon_sym_usize] = ACTIONS(4906), + [anon_sym_f32] = ACTIONS(4906), + [anon_sym_f64] = ACTIONS(4906), + [anon_sym_c_char] = ACTIONS(4906), + [anon_sym_c_schar] = ACTIONS(4906), + [anon_sym_c_uchar] = ACTIONS(4906), + [anon_sym_c_short] = ACTIONS(4906), + [anon_sym_c_ushort] = ACTIONS(4906), + [anon_sym_c_int] = ACTIONS(4906), + [anon_sym_c_uint] = ACTIONS(4906), + [anon_sym_c_long] = ACTIONS(4906), + [anon_sym_c_ulong] = ACTIONS(4906), + [anon_sym_c_longlong] = ACTIONS(4906), + [anon_sym_c_ulonglong] = ACTIONS(4906), + [anon_sym_c_float] = ACTIONS(4906), + [anon_sym_c_double] = ACTIONS(4906), + [anon_sym_c_longdouble] = ACTIONS(4906), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_yield] = ACTIONS(4906), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_continue] = ACTIONS(4906), + [anon_sym_defer] = ACTIONS(4906), + [anon_sym_errdefer] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_expand] = ACTIONS(4906), + [anon_sym_for] = ACTIONS(4906), + [anon_sym_match] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4904), + [anon_sym_orelse] = ACTIONS(4906), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_and] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4904), + [anon_sym_xor] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4906), + [anon_sym_GT_GT] = ACTIONS(4904), + [anon_sym_LT_LT_PIPE] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_catch] = ACTIONS(4906), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_unreachable] = ACTIONS(4906), + [anon_sym_undefined] = ACTIONS(4906), + [sym_sink] = ACTIONS(4906), + [sym_integer] = ACTIONS(4906), + [sym_float] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [sym_multiline_string] = ACTIONS(4904), + [sym_character] = ACTIONS(4904), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4904), + }, + [STATE(4118)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4226), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7002), + }, + [STATE(4119)] = { + [ts_builtin_sym_end] = ACTIONS(4908), + [sym_identifier] = ACTIONS(4910), + [anon_sym_import] = ACTIONS(4910), + [anon_sym_test] = ACTIONS(4910), + [anon_sym_hide] = ACTIONS(4910), + [anon_sym_func] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4910), + [anon_sym_struct] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_void] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym_type] = ACTIONS(4910), + [anon_sym_anyopaque] = ACTIONS(4910), + [anon_sym_bool] = ACTIONS(4910), + [anon_sym_int] = ACTIONS(4910), + [anon_sym_uint] = ACTIONS(4910), + [anon_sym_float] = ACTIONS(4910), + [anon_sym_range] = ACTIONS(4910), + [anon_sym_i8] = ACTIONS(4910), + [anon_sym_i16] = ACTIONS(4910), + [anon_sym_i32] = ACTIONS(4910), + [anon_sym_i64] = ACTIONS(4910), + [anon_sym_u8] = ACTIONS(4910), + [anon_sym_u16] = ACTIONS(4910), + [anon_sym_u32] = ACTIONS(4910), + [anon_sym_u64] = ACTIONS(4910), + [anon_sym_isize] = ACTIONS(4910), + [anon_sym_usize] = ACTIONS(4910), + [anon_sym_f32] = ACTIONS(4910), + [anon_sym_f64] = ACTIONS(4910), + [anon_sym_c_char] = ACTIONS(4910), + [anon_sym_c_schar] = ACTIONS(4910), + [anon_sym_c_uchar] = ACTIONS(4910), + [anon_sym_c_short] = ACTIONS(4910), + [anon_sym_c_ushort] = ACTIONS(4910), + [anon_sym_c_int] = ACTIONS(4910), + [anon_sym_c_uint] = ACTIONS(4910), + [anon_sym_c_long] = ACTIONS(4910), + [anon_sym_c_ulong] = ACTIONS(4910), + [anon_sym_c_longlong] = ACTIONS(4910), + [anon_sym_c_ulonglong] = ACTIONS(4910), + [anon_sym_c_float] = ACTIONS(4910), + [anon_sym_c_double] = ACTIONS(4910), + [anon_sym_c_longdouble] = ACTIONS(4910), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_yield] = ACTIONS(4910), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_defer] = ACTIONS(4910), + [anon_sym_errdefer] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_expand] = ACTIONS(4910), + [anon_sym_for] = ACTIONS(4910), + [anon_sym_match] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4908), + [anon_sym_orelse] = ACTIONS(4910), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_and] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4908), + [anon_sym_xor] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4910), + [anon_sym_GT_GT] = ACTIONS(4908), + [anon_sym_LT_LT_PIPE] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_catch] = ACTIONS(4910), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_unreachable] = ACTIONS(4910), + [anon_sym_undefined] = ACTIONS(4910), + [sym_sink] = ACTIONS(4910), + [sym_integer] = ACTIONS(4910), + [sym_float] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [sym_multiline_string] = ACTIONS(4908), + [sym_character] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4908), + }, + [STATE(4120)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3286), + [sym_labeled_block] = STATE(3286), + [sym_if_statement] = STATE(3286), + [sym_while_statement] = STATE(3286), + [sym_for_statement] = STATE(3286), + [sym_match_statement] = STATE(3286), + [sym__value] = STATE(3286), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4233), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7004), + }, + [STATE(4121)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8488), + [sym_labeled_block] = STATE(8488), + [sym_if_statement] = STATE(8488), + [sym_while_statement] = STATE(8488), + [sym_for_statement] = STATE(8488), + [sym_match_statement] = STATE(8488), + [sym__value] = STATE(8488), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4122)] = { + [ts_builtin_sym_end] = ACTIONS(5294), + [sym_identifier] = ACTIONS(5296), + [anon_sym_import] = ACTIONS(5296), + [anon_sym_test] = ACTIONS(5296), + [anon_sym_hide] = ACTIONS(5296), + [anon_sym_func] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_struct] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_DASH] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5294), + [anon_sym_PIPE] = ACTIONS(5294), + [anon_sym_QMARK] = ACTIONS(5294), + [anon_sym_STAR] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_void] = ACTIONS(5296), + [anon_sym_noreturn] = ACTIONS(5296), + [anon_sym_type] = ACTIONS(5296), + [anon_sym_anyopaque] = ACTIONS(5296), + [anon_sym_bool] = ACTIONS(5296), + [anon_sym_int] = ACTIONS(5296), + [anon_sym_uint] = ACTIONS(5296), + [anon_sym_float] = ACTIONS(5296), + [anon_sym_range] = ACTIONS(5296), + [anon_sym_i8] = ACTIONS(5296), + [anon_sym_i16] = ACTIONS(5296), + [anon_sym_i32] = ACTIONS(5296), + [anon_sym_i64] = ACTIONS(5296), + [anon_sym_u8] = ACTIONS(5296), + [anon_sym_u16] = ACTIONS(5296), + [anon_sym_u32] = ACTIONS(5296), + [anon_sym_u64] = ACTIONS(5296), + [anon_sym_isize] = ACTIONS(5296), + [anon_sym_usize] = ACTIONS(5296), + [anon_sym_f32] = ACTIONS(5296), + [anon_sym_f64] = ACTIONS(5296), + [anon_sym_c_char] = ACTIONS(5296), + [anon_sym_c_schar] = ACTIONS(5296), + [anon_sym_c_uchar] = ACTIONS(5296), + [anon_sym_c_short] = ACTIONS(5296), + [anon_sym_c_ushort] = ACTIONS(5296), + [anon_sym_c_int] = ACTIONS(5296), + [anon_sym_c_uint] = ACTIONS(5296), + [anon_sym_c_long] = ACTIONS(5296), + [anon_sym_c_ulong] = ACTIONS(5296), + [anon_sym_c_longlong] = ACTIONS(5296), + [anon_sym_c_ulonglong] = ACTIONS(5296), + [anon_sym_c_float] = ACTIONS(5296), + [anon_sym_c_double] = ACTIONS(5296), + [anon_sym_c_longdouble] = ACTIONS(5296), + [anon_sym_return] = ACTIONS(5296), + [anon_sym_yield] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5294), + [anon_sym_break] = ACTIONS(5296), + [anon_sym_continue] = ACTIONS(5296), + [anon_sym_defer] = ACTIONS(5296), + [anon_sym_errdefer] = ACTIONS(5296), + [anon_sym_if] = ACTIONS(5296), + [anon_sym_else] = ACTIONS(5296), + [anon_sym_while] = ACTIONS(5296), + [anon_sym_expand] = ACTIONS(5296), + [anon_sym_for] = ACTIONS(5296), + [anon_sym_match] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(5296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5294), + [anon_sym_orelse] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5294), + [anon_sym_BANG_EQ] = ACTIONS(5294), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_LT_EQ] = ACTIONS(5294), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_GT_EQ] = ACTIONS(5294), + [anon_sym_AMP] = ACTIONS(5294), + [anon_sym_xor] = ACTIONS(5296), + [anon_sym_LT_LT] = ACTIONS(5296), + [anon_sym_GT_GT] = ACTIONS(5294), + [anon_sym_LT_LT_PIPE] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(5294), + [anon_sym_SLASH] = ACTIONS(5294), + [anon_sym_catch] = ACTIONS(5296), + [anon_sym_TILDE] = ACTIONS(5294), + [anon_sym_try] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5294), + [anon_sym_true] = ACTIONS(5296), + [anon_sym_false] = ACTIONS(5296), + [anon_sym_null] = ACTIONS(5296), + [anon_sym_unreachable] = ACTIONS(5296), + [anon_sym_undefined] = ACTIONS(5296), + [sym_sink] = ACTIONS(5296), + [sym_integer] = ACTIONS(5296), + [sym_float] = ACTIONS(5294), + [anon_sym_DQUOTE] = ACTIONS(5294), + [sym_multiline_string] = ACTIONS(5294), + [sym_character] = ACTIONS(5294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5294), + }, + [STATE(4123)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3059), + [sym_error_capture] = STATE(4875), + [sym_if_statement] = STATE(3059), + [sym_while_statement] = STATE(3059), + [sym_for_statement] = STATE(3059), + [sym_match_statement] = STATE(3059), + [sym_expression] = STATE(2914), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4876), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7008), + }, + [STATE(4124)] = { + [ts_builtin_sym_end] = ACTIONS(6020), + [sym_identifier] = ACTIONS(6022), + [anon_sym_import] = ACTIONS(6022), + [anon_sym_test] = ACTIONS(6022), + [anon_sym_hide] = ACTIONS(6022), + [anon_sym_func] = ACTIONS(6022), + [anon_sym_BANG] = ACTIONS(6022), + [anon_sym_struct] = ACTIONS(6022), + [anon_sym_LPAREN] = ACTIONS(6020), + [anon_sym_LBRACE] = ACTIONS(6020), + [anon_sym_RBRACE] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6020), + [anon_sym_DOLLAR] = ACTIONS(6020), + [anon_sym_PIPE] = ACTIONS(6020), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_STAR] = ACTIONS(6020), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_void] = ACTIONS(6022), + [anon_sym_noreturn] = ACTIONS(6022), + [anon_sym_type] = ACTIONS(6022), + [anon_sym_anyopaque] = ACTIONS(6022), + [anon_sym_bool] = ACTIONS(6022), + [anon_sym_int] = ACTIONS(6022), + [anon_sym_uint] = ACTIONS(6022), + [anon_sym_float] = ACTIONS(6022), + [anon_sym_range] = ACTIONS(6022), + [anon_sym_i8] = ACTIONS(6022), + [anon_sym_i16] = ACTIONS(6022), + [anon_sym_i32] = ACTIONS(6022), + [anon_sym_i64] = ACTIONS(6022), + [anon_sym_u8] = ACTIONS(6022), + [anon_sym_u16] = ACTIONS(6022), + [anon_sym_u32] = ACTIONS(6022), + [anon_sym_u64] = ACTIONS(6022), + [anon_sym_isize] = ACTIONS(6022), + [anon_sym_usize] = ACTIONS(6022), + [anon_sym_f32] = ACTIONS(6022), + [anon_sym_f64] = ACTIONS(6022), + [anon_sym_c_char] = ACTIONS(6022), + [anon_sym_c_schar] = ACTIONS(6022), + [anon_sym_c_uchar] = ACTIONS(6022), + [anon_sym_c_short] = ACTIONS(6022), + [anon_sym_c_ushort] = ACTIONS(6022), + [anon_sym_c_int] = ACTIONS(6022), + [anon_sym_c_uint] = ACTIONS(6022), + [anon_sym_c_long] = ACTIONS(6022), + [anon_sym_c_ulong] = ACTIONS(6022), + [anon_sym_c_longlong] = ACTIONS(6022), + [anon_sym_c_ulonglong] = ACTIONS(6022), + [anon_sym_c_float] = ACTIONS(6022), + [anon_sym_c_double] = ACTIONS(6022), + [anon_sym_c_longdouble] = ACTIONS(6022), + [anon_sym_return] = ACTIONS(6022), + [anon_sym_yield] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6020), + [anon_sym_break] = ACTIONS(6022), + [anon_sym_continue] = ACTIONS(6022), + [anon_sym_defer] = ACTIONS(6022), + [anon_sym_errdefer] = ACTIONS(6022), + [anon_sym_if] = ACTIONS(6022), + [anon_sym_else] = ACTIONS(6022), + [anon_sym_while] = ACTIONS(6022), + [anon_sym_expand] = ACTIONS(6022), + [anon_sym_for] = ACTIONS(6022), + [anon_sym_match] = ACTIONS(6022), + [anon_sym_DOT_DOT] = ACTIONS(6022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6020), + [anon_sym_orelse] = ACTIONS(6022), + [anon_sym_or] = ACTIONS(6022), + [anon_sym_and] = ACTIONS(6022), + [anon_sym_EQ_EQ] = ACTIONS(6020), + [anon_sym_BANG_EQ] = ACTIONS(6020), + [anon_sym_LT] = ACTIONS(6022), + [anon_sym_LT_EQ] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6022), + [anon_sym_GT_EQ] = ACTIONS(6020), + [anon_sym_AMP] = ACTIONS(6020), + [anon_sym_xor] = ACTIONS(6022), + [anon_sym_LT_LT] = ACTIONS(6022), + [anon_sym_GT_GT] = ACTIONS(6020), + [anon_sym_LT_LT_PIPE] = ACTIONS(6020), + [anon_sym_PLUS] = ACTIONS(6020), + [anon_sym_SLASH] = ACTIONS(6020), + [anon_sym_catch] = ACTIONS(6022), + [anon_sym_TILDE] = ACTIONS(6020), + [anon_sym_try] = ACTIONS(6022), + [anon_sym_DOT] = ACTIONS(6022), + [anon_sym_CARET] = ACTIONS(6020), + [anon_sym_true] = ACTIONS(6022), + [anon_sym_false] = ACTIONS(6022), + [anon_sym_null] = ACTIONS(6022), + [anon_sym_unreachable] = ACTIONS(6022), + [anon_sym_undefined] = ACTIONS(6022), + [sym_sink] = ACTIONS(6022), + [sym_integer] = ACTIONS(6022), + [sym_float] = ACTIONS(6020), + [anon_sym_DQUOTE] = ACTIONS(6020), + [sym_multiline_string] = ACTIONS(6020), + [sym_character] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6020), + }, + [STATE(4125)] = { + [ts_builtin_sym_end] = ACTIONS(6062), + [sym_identifier] = ACTIONS(6064), + [anon_sym_import] = ACTIONS(6064), + [anon_sym_test] = ACTIONS(6064), + [anon_sym_hide] = ACTIONS(6064), + [anon_sym_func] = ACTIONS(6064), + [anon_sym_BANG] = ACTIONS(6064), + [anon_sym_struct] = ACTIONS(6064), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6062), + [anon_sym_RBRACE] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6062), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_PIPE] = ACTIONS(6062), + [anon_sym_QMARK] = ACTIONS(6062), + [anon_sym_STAR] = ACTIONS(6062), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_void] = ACTIONS(6064), + [anon_sym_noreturn] = ACTIONS(6064), + [anon_sym_type] = ACTIONS(6064), + [anon_sym_anyopaque] = ACTIONS(6064), + [anon_sym_bool] = ACTIONS(6064), + [anon_sym_int] = ACTIONS(6064), + [anon_sym_uint] = ACTIONS(6064), + [anon_sym_float] = ACTIONS(6064), + [anon_sym_range] = ACTIONS(6064), + [anon_sym_i8] = ACTIONS(6064), + [anon_sym_i16] = ACTIONS(6064), + [anon_sym_i32] = ACTIONS(6064), + [anon_sym_i64] = ACTIONS(6064), + [anon_sym_u8] = ACTIONS(6064), + [anon_sym_u16] = ACTIONS(6064), + [anon_sym_u32] = ACTIONS(6064), + [anon_sym_u64] = ACTIONS(6064), + [anon_sym_isize] = ACTIONS(6064), + [anon_sym_usize] = ACTIONS(6064), + [anon_sym_f32] = ACTIONS(6064), + [anon_sym_f64] = ACTIONS(6064), + [anon_sym_c_char] = ACTIONS(6064), + [anon_sym_c_schar] = ACTIONS(6064), + [anon_sym_c_uchar] = ACTIONS(6064), + [anon_sym_c_short] = ACTIONS(6064), + [anon_sym_c_ushort] = ACTIONS(6064), + [anon_sym_c_int] = ACTIONS(6064), + [anon_sym_c_uint] = ACTIONS(6064), + [anon_sym_c_long] = ACTIONS(6064), + [anon_sym_c_ulong] = ACTIONS(6064), + [anon_sym_c_longlong] = ACTIONS(6064), + [anon_sym_c_ulonglong] = ACTIONS(6064), + [anon_sym_c_float] = ACTIONS(6064), + [anon_sym_c_double] = ACTIONS(6064), + [anon_sym_c_longdouble] = ACTIONS(6064), + [anon_sym_return] = ACTIONS(6064), + [anon_sym_yield] = ACTIONS(6064), + [anon_sym_COLON] = ACTIONS(6062), + [anon_sym_break] = ACTIONS(6064), + [anon_sym_continue] = ACTIONS(6064), + [anon_sym_defer] = ACTIONS(6064), + [anon_sym_errdefer] = ACTIONS(6064), + [anon_sym_if] = ACTIONS(6064), + [anon_sym_else] = ACTIONS(6064), + [anon_sym_while] = ACTIONS(6064), + [anon_sym_expand] = ACTIONS(6064), + [anon_sym_for] = ACTIONS(6064), + [anon_sym_match] = ACTIONS(6064), + [anon_sym_DOT_DOT] = ACTIONS(6064), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_orelse] = ACTIONS(6064), + [anon_sym_or] = ACTIONS(6064), + [anon_sym_and] = ACTIONS(6064), + [anon_sym_EQ_EQ] = ACTIONS(6062), + [anon_sym_BANG_EQ] = ACTIONS(6062), + [anon_sym_LT] = ACTIONS(6064), + [anon_sym_LT_EQ] = ACTIONS(6062), + [anon_sym_GT] = ACTIONS(6064), + [anon_sym_GT_EQ] = ACTIONS(6062), + [anon_sym_AMP] = ACTIONS(6062), + [anon_sym_xor] = ACTIONS(6064), + [anon_sym_LT_LT] = ACTIONS(6064), + [anon_sym_GT_GT] = ACTIONS(6062), + [anon_sym_LT_LT_PIPE] = ACTIONS(6062), + [anon_sym_PLUS] = ACTIONS(6062), + [anon_sym_SLASH] = ACTIONS(6062), + [anon_sym_catch] = ACTIONS(6064), + [anon_sym_TILDE] = ACTIONS(6062), + [anon_sym_try] = ACTIONS(6064), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_true] = ACTIONS(6064), + [anon_sym_false] = ACTIONS(6064), + [anon_sym_null] = ACTIONS(6064), + [anon_sym_unreachable] = ACTIONS(6064), + [anon_sym_undefined] = ACTIONS(6064), + [sym_sink] = ACTIONS(6064), + [sym_integer] = ACTIONS(6064), + [sym_float] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(6062), + [sym_multiline_string] = ACTIONS(6062), + [sym_character] = ACTIONS(6062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6062), + }, + [STATE(4126)] = { + [ts_builtin_sym_end] = ACTIONS(5298), + [sym_identifier] = ACTIONS(5300), + [anon_sym_import] = ACTIONS(5300), + [anon_sym_test] = ACTIONS(5300), + [anon_sym_hide] = ACTIONS(5300), + [anon_sym_func] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_struct] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [anon_sym_RBRACE] = ACTIONS(5298), + [anon_sym_DASH] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5298), + [anon_sym_PIPE] = ACTIONS(5298), + [anon_sym_QMARK] = ACTIONS(5298), + [anon_sym_STAR] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_void] = ACTIONS(5300), + [anon_sym_noreturn] = ACTIONS(5300), + [anon_sym_type] = ACTIONS(5300), + [anon_sym_anyopaque] = ACTIONS(5300), + [anon_sym_bool] = ACTIONS(5300), + [anon_sym_int] = ACTIONS(5300), + [anon_sym_uint] = ACTIONS(5300), + [anon_sym_float] = ACTIONS(5300), + [anon_sym_range] = ACTIONS(5300), + [anon_sym_i8] = ACTIONS(5300), + [anon_sym_i16] = ACTIONS(5300), + [anon_sym_i32] = ACTIONS(5300), + [anon_sym_i64] = ACTIONS(5300), + [anon_sym_u8] = ACTIONS(5300), + [anon_sym_u16] = ACTIONS(5300), + [anon_sym_u32] = ACTIONS(5300), + [anon_sym_u64] = ACTIONS(5300), + [anon_sym_isize] = ACTIONS(5300), + [anon_sym_usize] = ACTIONS(5300), + [anon_sym_f32] = ACTIONS(5300), + [anon_sym_f64] = ACTIONS(5300), + [anon_sym_c_char] = ACTIONS(5300), + [anon_sym_c_schar] = ACTIONS(5300), + [anon_sym_c_uchar] = ACTIONS(5300), + [anon_sym_c_short] = ACTIONS(5300), + [anon_sym_c_ushort] = ACTIONS(5300), + [anon_sym_c_int] = ACTIONS(5300), + [anon_sym_c_uint] = ACTIONS(5300), + [anon_sym_c_long] = ACTIONS(5300), + [anon_sym_c_ulong] = ACTIONS(5300), + [anon_sym_c_longlong] = ACTIONS(5300), + [anon_sym_c_ulonglong] = ACTIONS(5300), + [anon_sym_c_float] = ACTIONS(5300), + [anon_sym_c_double] = ACTIONS(5300), + [anon_sym_c_longdouble] = ACTIONS(5300), + [anon_sym_return] = ACTIONS(5300), + [anon_sym_yield] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5298), + [anon_sym_break] = ACTIONS(5300), + [anon_sym_continue] = ACTIONS(5300), + [anon_sym_defer] = ACTIONS(5300), + [anon_sym_errdefer] = ACTIONS(5300), + [anon_sym_if] = ACTIONS(5300), + [anon_sym_else] = ACTIONS(5300), + [anon_sym_while] = ACTIONS(5300), + [anon_sym_expand] = ACTIONS(5300), + [anon_sym_for] = ACTIONS(5300), + [anon_sym_match] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5298), + [anon_sym_orelse] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5298), + [anon_sym_BANG_EQ] = ACTIONS(5298), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_LT_EQ] = ACTIONS(5298), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5298), + [anon_sym_AMP] = ACTIONS(5298), + [anon_sym_xor] = ACTIONS(5300), + [anon_sym_LT_LT] = ACTIONS(5300), + [anon_sym_GT_GT] = ACTIONS(5298), + [anon_sym_LT_LT_PIPE] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5298), + [anon_sym_SLASH] = ACTIONS(5298), + [anon_sym_catch] = ACTIONS(5300), + [anon_sym_TILDE] = ACTIONS(5298), + [anon_sym_try] = ACTIONS(5300), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5298), + [anon_sym_true] = ACTIONS(5300), + [anon_sym_false] = ACTIONS(5300), + [anon_sym_null] = ACTIONS(5300), + [anon_sym_unreachable] = ACTIONS(5300), + [anon_sym_undefined] = ACTIONS(5300), + [sym_sink] = ACTIONS(5300), + [sym_integer] = ACTIONS(5300), + [sym_float] = ACTIONS(5298), + [anon_sym_DQUOTE] = ACTIONS(5298), + [sym_multiline_string] = ACTIONS(5298), + [sym_character] = ACTIONS(5298), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5298), + }, + [STATE(4127)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9098), + [sym_labeled_block] = STATE(9098), + [sym_if_statement] = STATE(9098), + [sym_while_statement] = STATE(9098), + [sym_for_statement] = STATE(9098), + [sym_match_statement] = STATE(9098), + [sym__value] = STATE(9098), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4416), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7010), + }, + [STATE(4128)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3578), + [sym_labeled_block] = STATE(3578), + [sym_if_statement] = STATE(3578), + [sym_while_statement] = STATE(3578), + [sym_for_statement] = STATE(3578), + [sym_match_statement] = STATE(3578), + [sym__value] = STATE(3578), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4129)] = { + [ts_builtin_sym_end] = ACTIONS(5072), + [sym_identifier] = ACTIONS(5074), + [anon_sym_import] = ACTIONS(5074), + [anon_sym_test] = ACTIONS(5074), + [anon_sym_hide] = ACTIONS(5074), + [anon_sym_func] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_struct] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_DASH] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5072), + [anon_sym_QMARK] = ACTIONS(5072), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_void] = ACTIONS(5074), + [anon_sym_noreturn] = ACTIONS(5074), + [anon_sym_type] = ACTIONS(5074), + [anon_sym_anyopaque] = ACTIONS(5074), + [anon_sym_bool] = ACTIONS(5074), + [anon_sym_int] = ACTIONS(5074), + [anon_sym_uint] = ACTIONS(5074), + [anon_sym_float] = ACTIONS(5074), + [anon_sym_range] = ACTIONS(5074), + [anon_sym_i8] = ACTIONS(5074), + [anon_sym_i16] = ACTIONS(5074), + [anon_sym_i32] = ACTIONS(5074), + [anon_sym_i64] = ACTIONS(5074), + [anon_sym_u8] = ACTIONS(5074), + [anon_sym_u16] = ACTIONS(5074), + [anon_sym_u32] = ACTIONS(5074), + [anon_sym_u64] = ACTIONS(5074), + [anon_sym_isize] = ACTIONS(5074), + [anon_sym_usize] = ACTIONS(5074), + [anon_sym_f32] = ACTIONS(5074), + [anon_sym_f64] = ACTIONS(5074), + [anon_sym_c_char] = ACTIONS(5074), + [anon_sym_c_schar] = ACTIONS(5074), + [anon_sym_c_uchar] = ACTIONS(5074), + [anon_sym_c_short] = ACTIONS(5074), + [anon_sym_c_ushort] = ACTIONS(5074), + [anon_sym_c_int] = ACTIONS(5074), + [anon_sym_c_uint] = ACTIONS(5074), + [anon_sym_c_long] = ACTIONS(5074), + [anon_sym_c_ulong] = ACTIONS(5074), + [anon_sym_c_longlong] = ACTIONS(5074), + [anon_sym_c_ulonglong] = ACTIONS(5074), + [anon_sym_c_float] = ACTIONS(5074), + [anon_sym_c_double] = ACTIONS(5074), + [anon_sym_c_longdouble] = ACTIONS(5074), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_yield] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5072), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_defer] = ACTIONS(5074), + [anon_sym_errdefer] = ACTIONS(5074), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_while] = ACTIONS(5074), + [anon_sym_expand] = ACTIONS(5074), + [anon_sym_for] = ACTIONS(5074), + [anon_sym_match] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5072), + [anon_sym_orelse] = ACTIONS(5074), + [anon_sym_or] = ACTIONS(5074), + [anon_sym_and] = ACTIONS(5074), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_AMP] = ACTIONS(5072), + [anon_sym_xor] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5074), + [anon_sym_GT_GT] = ACTIONS(5072), + [anon_sym_LT_LT_PIPE] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5072), + [anon_sym_SLASH] = ACTIONS(5072), + [anon_sym_catch] = ACTIONS(5074), + [anon_sym_TILDE] = ACTIONS(5072), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5072), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_null] = ACTIONS(5074), + [anon_sym_unreachable] = ACTIONS(5074), + [anon_sym_undefined] = ACTIONS(5074), + [sym_sink] = ACTIONS(5074), + [sym_integer] = ACTIONS(5074), + [sym_float] = ACTIONS(5072), + [anon_sym_DQUOTE] = ACTIONS(5072), + [sym_multiline_string] = ACTIONS(5072), + [sym_character] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5072), + }, + [STATE(4130)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10714), + [sym_labeled_block] = STATE(10714), + [sym_if_statement] = STATE(10714), + [sym_while_statement] = STATE(10714), + [sym_for_statement] = STATE(10714), + [sym_match_statement] = STATE(10714), + [sym__value] = STATE(10714), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4131)] = { + [ts_builtin_sym_end] = ACTIONS(5076), + [sym_identifier] = ACTIONS(5078), + [anon_sym_import] = ACTIONS(5078), + [anon_sym_test] = ACTIONS(5078), + [anon_sym_hide] = ACTIONS(5078), + [anon_sym_func] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_struct] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_DASH] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(5076), + [anon_sym_STAR] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_void] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym_type] = ACTIONS(5078), + [anon_sym_anyopaque] = ACTIONS(5078), + [anon_sym_bool] = ACTIONS(5078), + [anon_sym_int] = ACTIONS(5078), + [anon_sym_uint] = ACTIONS(5078), + [anon_sym_float] = ACTIONS(5078), + [anon_sym_range] = ACTIONS(5078), + [anon_sym_i8] = ACTIONS(5078), + [anon_sym_i16] = ACTIONS(5078), + [anon_sym_i32] = ACTIONS(5078), + [anon_sym_i64] = ACTIONS(5078), + [anon_sym_u8] = ACTIONS(5078), + [anon_sym_u16] = ACTIONS(5078), + [anon_sym_u32] = ACTIONS(5078), + [anon_sym_u64] = ACTIONS(5078), + [anon_sym_isize] = ACTIONS(5078), + [anon_sym_usize] = ACTIONS(5078), + [anon_sym_f32] = ACTIONS(5078), + [anon_sym_f64] = ACTIONS(5078), + [anon_sym_c_char] = ACTIONS(5078), + [anon_sym_c_schar] = ACTIONS(5078), + [anon_sym_c_uchar] = ACTIONS(5078), + [anon_sym_c_short] = ACTIONS(5078), + [anon_sym_c_ushort] = ACTIONS(5078), + [anon_sym_c_int] = ACTIONS(5078), + [anon_sym_c_uint] = ACTIONS(5078), + [anon_sym_c_long] = ACTIONS(5078), + [anon_sym_c_ulong] = ACTIONS(5078), + [anon_sym_c_longlong] = ACTIONS(5078), + [anon_sym_c_ulonglong] = ACTIONS(5078), + [anon_sym_c_float] = ACTIONS(5078), + [anon_sym_c_double] = ACTIONS(5078), + [anon_sym_c_longdouble] = ACTIONS(5078), + [anon_sym_return] = ACTIONS(5078), + [anon_sym_yield] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5076), + [anon_sym_break] = ACTIONS(5078), + [anon_sym_continue] = ACTIONS(5078), + [anon_sym_defer] = ACTIONS(5078), + [anon_sym_errdefer] = ACTIONS(5078), + [anon_sym_if] = ACTIONS(5078), + [anon_sym_else] = ACTIONS(5078), + [anon_sym_while] = ACTIONS(5078), + [anon_sym_expand] = ACTIONS(5078), + [anon_sym_for] = ACTIONS(5078), + [anon_sym_match] = ACTIONS(5078), + [anon_sym_DOT_DOT] = ACTIONS(5078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5076), + [anon_sym_orelse] = ACTIONS(5078), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(5076), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5076), + [anon_sym_LT_LT_PIPE] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5076), + [anon_sym_SLASH] = ACTIONS(5076), + [anon_sym_catch] = ACTIONS(5078), + [anon_sym_TILDE] = ACTIONS(5076), + [anon_sym_try] = ACTIONS(5078), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5078), + [anon_sym_false] = ACTIONS(5078), + [anon_sym_null] = ACTIONS(5078), + [anon_sym_unreachable] = ACTIONS(5078), + [anon_sym_undefined] = ACTIONS(5078), + [sym_sink] = ACTIONS(5078), + [sym_integer] = ACTIONS(5078), + [sym_float] = ACTIONS(5076), + [anon_sym_DQUOTE] = ACTIONS(5076), + [sym_multiline_string] = ACTIONS(5076), + [sym_character] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5076), + }, + [STATE(4132)] = { + [ts_builtin_sym_end] = ACTIONS(4914), + [sym_identifier] = ACTIONS(4916), + [anon_sym_import] = ACTIONS(4916), + [anon_sym_test] = ACTIONS(4916), + [anon_sym_hide] = ACTIONS(4916), + [anon_sym_func] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_struct] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4914), + [anon_sym_PIPE] = ACTIONS(4914), + [anon_sym_QMARK] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_void] = ACTIONS(4916), + [anon_sym_noreturn] = ACTIONS(4916), + [anon_sym_type] = ACTIONS(4916), + [anon_sym_anyopaque] = ACTIONS(4916), + [anon_sym_bool] = ACTIONS(4916), + [anon_sym_int] = ACTIONS(4916), + [anon_sym_uint] = ACTIONS(4916), + [anon_sym_float] = ACTIONS(4916), + [anon_sym_range] = ACTIONS(4916), + [anon_sym_i8] = ACTIONS(4916), + [anon_sym_i16] = ACTIONS(4916), + [anon_sym_i32] = ACTIONS(4916), + [anon_sym_i64] = ACTIONS(4916), + [anon_sym_u8] = ACTIONS(4916), + [anon_sym_u16] = ACTIONS(4916), + [anon_sym_u32] = ACTIONS(4916), + [anon_sym_u64] = ACTIONS(4916), + [anon_sym_isize] = ACTIONS(4916), + [anon_sym_usize] = ACTIONS(4916), + [anon_sym_f32] = ACTIONS(4916), + [anon_sym_f64] = ACTIONS(4916), + [anon_sym_c_char] = ACTIONS(4916), + [anon_sym_c_schar] = ACTIONS(4916), + [anon_sym_c_uchar] = ACTIONS(4916), + [anon_sym_c_short] = ACTIONS(4916), + [anon_sym_c_ushort] = ACTIONS(4916), + [anon_sym_c_int] = ACTIONS(4916), + [anon_sym_c_uint] = ACTIONS(4916), + [anon_sym_c_long] = ACTIONS(4916), + [anon_sym_c_ulong] = ACTIONS(4916), + [anon_sym_c_longlong] = ACTIONS(4916), + [anon_sym_c_ulonglong] = ACTIONS(4916), + [anon_sym_c_float] = ACTIONS(4916), + [anon_sym_c_double] = ACTIONS(4916), + [anon_sym_c_longdouble] = ACTIONS(4916), + [anon_sym_return] = ACTIONS(4916), + [anon_sym_yield] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4914), + [anon_sym_break] = ACTIONS(4916), + [anon_sym_continue] = ACTIONS(4916), + [anon_sym_defer] = ACTIONS(4916), + [anon_sym_errdefer] = ACTIONS(4916), + [anon_sym_if] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_while] = ACTIONS(4916), + [anon_sym_expand] = ACTIONS(4916), + [anon_sym_for] = ACTIONS(4916), + [anon_sym_match] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), + [anon_sym_orelse] = ACTIONS(4916), + [anon_sym_or] = ACTIONS(4916), + [anon_sym_and] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_xor] = ACTIONS(4916), + [anon_sym_LT_LT] = ACTIONS(4916), + [anon_sym_GT_GT] = ACTIONS(4914), + [anon_sym_LT_LT_PIPE] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_catch] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4916), + [anon_sym_false] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4916), + [anon_sym_unreachable] = ACTIONS(4916), + [anon_sym_undefined] = ACTIONS(4916), + [sym_sink] = ACTIONS(4916), + [sym_integer] = ACTIONS(4916), + [sym_float] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(4914), + [sym_multiline_string] = ACTIONS(4914), + [sym_character] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4914), + }, + [STATE(4133)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4134)] = { + [ts_builtin_sym_end] = ACTIONS(5080), + [sym_identifier] = ACTIONS(5082), + [anon_sym_import] = ACTIONS(5082), + [anon_sym_test] = ACTIONS(5082), + [anon_sym_hide] = ACTIONS(5082), + [anon_sym_func] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_struct] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_void] = ACTIONS(5082), + [anon_sym_noreturn] = ACTIONS(5082), + [anon_sym_type] = ACTIONS(5082), + [anon_sym_anyopaque] = ACTIONS(5082), + [anon_sym_bool] = ACTIONS(5082), + [anon_sym_int] = ACTIONS(5082), + [anon_sym_uint] = ACTIONS(5082), + [anon_sym_float] = ACTIONS(5082), + [anon_sym_range] = ACTIONS(5082), + [anon_sym_i8] = ACTIONS(5082), + [anon_sym_i16] = ACTIONS(5082), + [anon_sym_i32] = ACTIONS(5082), + [anon_sym_i64] = ACTIONS(5082), + [anon_sym_u8] = ACTIONS(5082), + [anon_sym_u16] = ACTIONS(5082), + [anon_sym_u32] = ACTIONS(5082), + [anon_sym_u64] = ACTIONS(5082), + [anon_sym_isize] = ACTIONS(5082), + [anon_sym_usize] = ACTIONS(5082), + [anon_sym_f32] = ACTIONS(5082), + [anon_sym_f64] = ACTIONS(5082), + [anon_sym_c_char] = ACTIONS(5082), + [anon_sym_c_schar] = ACTIONS(5082), + [anon_sym_c_uchar] = ACTIONS(5082), + [anon_sym_c_short] = ACTIONS(5082), + [anon_sym_c_ushort] = ACTIONS(5082), + [anon_sym_c_int] = ACTIONS(5082), + [anon_sym_c_uint] = ACTIONS(5082), + [anon_sym_c_long] = ACTIONS(5082), + [anon_sym_c_ulong] = ACTIONS(5082), + [anon_sym_c_longlong] = ACTIONS(5082), + [anon_sym_c_ulonglong] = ACTIONS(5082), + [anon_sym_c_float] = ACTIONS(5082), + [anon_sym_c_double] = ACTIONS(5082), + [anon_sym_c_longdouble] = ACTIONS(5082), + [anon_sym_return] = ACTIONS(5082), + [anon_sym_yield] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5080), + [anon_sym_break] = ACTIONS(5082), + [anon_sym_continue] = ACTIONS(5082), + [anon_sym_defer] = ACTIONS(5082), + [anon_sym_errdefer] = ACTIONS(5082), + [anon_sym_if] = ACTIONS(5082), + [anon_sym_else] = ACTIONS(5082), + [anon_sym_while] = ACTIONS(5082), + [anon_sym_expand] = ACTIONS(5082), + [anon_sym_for] = ACTIONS(5082), + [anon_sym_match] = ACTIONS(5082), + [anon_sym_DOT_DOT] = ACTIONS(5082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5080), + [anon_sym_orelse] = ACTIONS(5082), + [anon_sym_or] = ACTIONS(5082), + [anon_sym_and] = ACTIONS(5082), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5080), + [anon_sym_xor] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5080), + [anon_sym_LT_LT_PIPE] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5080), + [anon_sym_SLASH] = ACTIONS(5080), + [anon_sym_catch] = ACTIONS(5082), + [anon_sym_TILDE] = ACTIONS(5080), + [anon_sym_try] = ACTIONS(5082), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_true] = ACTIONS(5082), + [anon_sym_false] = ACTIONS(5082), + [anon_sym_null] = ACTIONS(5082), + [anon_sym_unreachable] = ACTIONS(5082), + [anon_sym_undefined] = ACTIONS(5082), + [sym_sink] = ACTIONS(5082), + [sym_integer] = ACTIONS(5082), + [sym_float] = ACTIONS(5080), + [anon_sym_DQUOTE] = ACTIONS(5080), + [sym_multiline_string] = ACTIONS(5080), + [sym_character] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5080), + }, + [STATE(4135)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8694), + [sym_labeled_block] = STATE(8694), + [sym_if_statement] = STATE(8694), + [sym_while_statement] = STATE(8694), + [sym_for_statement] = STATE(8694), + [sym_match_statement] = STATE(8694), + [sym__value] = STATE(8694), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4139), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7012), + }, + [STATE(4136)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8392), + [sym_labeled_block] = STATE(8392), + [sym_if_statement] = STATE(8392), + [sym_while_statement] = STATE(8392), + [sym_for_statement] = STATE(8392), + [sym_match_statement] = STATE(8392), + [sym__value] = STATE(8392), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4142), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7014), + }, + [STATE(4137)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3579), + [sym_labeled_block] = STATE(3579), + [sym_if_statement] = STATE(3579), + [sym_while_statement] = STATE(3579), + [sym_for_statement] = STATE(3579), + [sym_match_statement] = STATE(3579), + [sym__value] = STATE(3579), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4138)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4139)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8666), + [sym_labeled_block] = STATE(8666), + [sym_if_statement] = STATE(8666), + [sym_while_statement] = STATE(8666), + [sym_for_statement] = STATE(8666), + [sym_match_statement] = STATE(8666), + [sym__value] = STATE(8666), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4140)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8588), + [sym_labeled_block] = STATE(8588), + [sym_if_statement] = STATE(8588), + [sym_while_statement] = STATE(8588), + [sym_for_statement] = STATE(8588), + [sym_match_statement] = STATE(8588), + [sym__value] = STATE(8588), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4145), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7016), + }, + [STATE(4141)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8618), + [sym_labeled_block] = STATE(8618), + [sym_if_statement] = STATE(8618), + [sym_while_statement] = STATE(8618), + [sym_for_statement] = STATE(8618), + [sym_match_statement] = STATE(8618), + [sym__value] = STATE(8618), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4146), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7018), + }, + [STATE(4142)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8630), + [sym_labeled_block] = STATE(8630), + [sym_if_statement] = STATE(8630), + [sym_while_statement] = STATE(8630), + [sym_for_statement] = STATE(8630), + [sym_match_statement] = STATE(8630), + [sym__value] = STATE(8630), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4143)] = { + [ts_builtin_sym_end] = ACTIONS(5616), + [sym_identifier] = ACTIONS(5618), + [anon_sym_import] = ACTIONS(5618), + [anon_sym_test] = ACTIONS(5618), + [anon_sym_hide] = ACTIONS(5618), + [anon_sym_func] = ACTIONS(5618), + [anon_sym_BANG] = ACTIONS(5618), + [anon_sym_struct] = ACTIONS(5618), + [anon_sym_LPAREN] = ACTIONS(5616), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_DOLLAR] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5616), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_void] = ACTIONS(5618), + [anon_sym_noreturn] = ACTIONS(5618), + [anon_sym_type] = ACTIONS(5618), + [anon_sym_anyopaque] = ACTIONS(5618), + [anon_sym_bool] = ACTIONS(5618), + [anon_sym_int] = ACTIONS(5618), + [anon_sym_uint] = ACTIONS(5618), + [anon_sym_float] = ACTIONS(5618), + [anon_sym_range] = ACTIONS(5618), + [anon_sym_i8] = ACTIONS(5618), + [anon_sym_i16] = ACTIONS(5618), + [anon_sym_i32] = ACTIONS(5618), + [anon_sym_i64] = ACTIONS(5618), + [anon_sym_u8] = ACTIONS(5618), + [anon_sym_u16] = ACTIONS(5618), + [anon_sym_u32] = ACTIONS(5618), + [anon_sym_u64] = ACTIONS(5618), + [anon_sym_isize] = ACTIONS(5618), + [anon_sym_usize] = ACTIONS(5618), + [anon_sym_f32] = ACTIONS(5618), + [anon_sym_f64] = ACTIONS(5618), + [anon_sym_c_char] = ACTIONS(5618), + [anon_sym_c_schar] = ACTIONS(5618), + [anon_sym_c_uchar] = ACTIONS(5618), + [anon_sym_c_short] = ACTIONS(5618), + [anon_sym_c_ushort] = ACTIONS(5618), + [anon_sym_c_int] = ACTIONS(5618), + [anon_sym_c_uint] = ACTIONS(5618), + [anon_sym_c_long] = ACTIONS(5618), + [anon_sym_c_ulong] = ACTIONS(5618), + [anon_sym_c_longlong] = ACTIONS(5618), + [anon_sym_c_ulonglong] = ACTIONS(5618), + [anon_sym_c_float] = ACTIONS(5618), + [anon_sym_c_double] = ACTIONS(5618), + [anon_sym_c_longdouble] = ACTIONS(5618), + [anon_sym_return] = ACTIONS(5618), + [anon_sym_yield] = ACTIONS(5618), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_break] = ACTIONS(5618), + [anon_sym_continue] = ACTIONS(5618), + [anon_sym_defer] = ACTIONS(5618), + [anon_sym_errdefer] = ACTIONS(5618), + [anon_sym_if] = ACTIONS(5618), + [anon_sym_else] = ACTIONS(5618), + [anon_sym_while] = ACTIONS(5618), + [anon_sym_expand] = ACTIONS(5618), + [anon_sym_for] = ACTIONS(5618), + [anon_sym_match] = ACTIONS(5618), + [anon_sym_DOT_DOT] = ACTIONS(5618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5616), + [anon_sym_orelse] = ACTIONS(5618), + [anon_sym_or] = ACTIONS(5618), + [anon_sym_and] = ACTIONS(5618), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5618), + [anon_sym_LT_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5618), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_xor] = ACTIONS(5618), + [anon_sym_LT_LT] = ACTIONS(5618), + [anon_sym_GT_GT] = ACTIONS(5616), + [anon_sym_LT_LT_PIPE] = ACTIONS(5616), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_SLASH] = ACTIONS(5616), + [anon_sym_catch] = ACTIONS(5618), + [anon_sym_TILDE] = ACTIONS(5616), + [anon_sym_try] = ACTIONS(5618), + [anon_sym_DOT] = ACTIONS(5618), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_true] = ACTIONS(5618), + [anon_sym_false] = ACTIONS(5618), + [anon_sym_null] = ACTIONS(5618), + [anon_sym_unreachable] = ACTIONS(5618), + [anon_sym_undefined] = ACTIONS(5618), + [sym_sink] = ACTIONS(5618), + [sym_integer] = ACTIONS(5618), + [sym_float] = ACTIONS(5616), + [anon_sym_DQUOTE] = ACTIONS(5616), + [sym_multiline_string] = ACTIONS(5616), + [sym_character] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5616), + }, + [STATE(4144)] = { + [ts_builtin_sym_end] = ACTIONS(5306), + [sym_identifier] = ACTIONS(5308), + [anon_sym_import] = ACTIONS(5308), + [anon_sym_test] = ACTIONS(5308), + [anon_sym_hide] = ACTIONS(5308), + [anon_sym_func] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_struct] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_DOLLAR] = ACTIONS(5306), + [anon_sym_PIPE] = ACTIONS(5306), + [anon_sym_QMARK] = ACTIONS(5306), + [anon_sym_STAR] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_void] = ACTIONS(5308), + [anon_sym_noreturn] = ACTIONS(5308), + [anon_sym_type] = ACTIONS(5308), + [anon_sym_anyopaque] = ACTIONS(5308), + [anon_sym_bool] = ACTIONS(5308), + [anon_sym_int] = ACTIONS(5308), + [anon_sym_uint] = ACTIONS(5308), + [anon_sym_float] = ACTIONS(5308), + [anon_sym_range] = ACTIONS(5308), + [anon_sym_i8] = ACTIONS(5308), + [anon_sym_i16] = ACTIONS(5308), + [anon_sym_i32] = ACTIONS(5308), + [anon_sym_i64] = ACTIONS(5308), + [anon_sym_u8] = ACTIONS(5308), + [anon_sym_u16] = ACTIONS(5308), + [anon_sym_u32] = ACTIONS(5308), + [anon_sym_u64] = ACTIONS(5308), + [anon_sym_isize] = ACTIONS(5308), + [anon_sym_usize] = ACTIONS(5308), + [anon_sym_f32] = ACTIONS(5308), + [anon_sym_f64] = ACTIONS(5308), + [anon_sym_c_char] = ACTIONS(5308), + [anon_sym_c_schar] = ACTIONS(5308), + [anon_sym_c_uchar] = ACTIONS(5308), + [anon_sym_c_short] = ACTIONS(5308), + [anon_sym_c_ushort] = ACTIONS(5308), + [anon_sym_c_int] = ACTIONS(5308), + [anon_sym_c_uint] = ACTIONS(5308), + [anon_sym_c_long] = ACTIONS(5308), + [anon_sym_c_ulong] = ACTIONS(5308), + [anon_sym_c_longlong] = ACTIONS(5308), + [anon_sym_c_ulonglong] = ACTIONS(5308), + [anon_sym_c_float] = ACTIONS(5308), + [anon_sym_c_double] = ACTIONS(5308), + [anon_sym_c_longdouble] = ACTIONS(5308), + [anon_sym_return] = ACTIONS(5308), + [anon_sym_yield] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(5306), + [anon_sym_break] = ACTIONS(5308), + [anon_sym_continue] = ACTIONS(5308), + [anon_sym_defer] = ACTIONS(5308), + [anon_sym_errdefer] = ACTIONS(5308), + [anon_sym_if] = ACTIONS(5308), + [anon_sym_else] = ACTIONS(5308), + [anon_sym_while] = ACTIONS(5308), + [anon_sym_expand] = ACTIONS(5308), + [anon_sym_for] = ACTIONS(5308), + [anon_sym_match] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5306), + [anon_sym_orelse] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5306), + [anon_sym_BANG_EQ] = ACTIONS(5306), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5306), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5306), + [anon_sym_AMP] = ACTIONS(5306), + [anon_sym_xor] = ACTIONS(5308), + [anon_sym_LT_LT] = ACTIONS(5308), + [anon_sym_GT_GT] = ACTIONS(5306), + [anon_sym_LT_LT_PIPE] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5306), + [anon_sym_SLASH] = ACTIONS(5306), + [anon_sym_catch] = ACTIONS(5308), + [anon_sym_TILDE] = ACTIONS(5306), + [anon_sym_try] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5306), + [anon_sym_true] = ACTIONS(5308), + [anon_sym_false] = ACTIONS(5308), + [anon_sym_null] = ACTIONS(5308), + [anon_sym_unreachable] = ACTIONS(5308), + [anon_sym_undefined] = ACTIONS(5308), + [sym_sink] = ACTIONS(5308), + [sym_integer] = ACTIONS(5308), + [sym_float] = ACTIONS(5306), + [anon_sym_DQUOTE] = ACTIONS(5306), + [sym_multiline_string] = ACTIONS(5306), + [sym_character] = ACTIONS(5306), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5306), + }, + [STATE(4145)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8487), + [sym_labeled_block] = STATE(8487), + [sym_if_statement] = STATE(8487), + [sym_while_statement] = STATE(8487), + [sym_for_statement] = STATE(8487), + [sym_match_statement] = STATE(8487), + [sym__value] = STATE(8487), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4146)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8488), + [sym_labeled_block] = STATE(8488), + [sym_if_statement] = STATE(8488), + [sym_while_statement] = STATE(8488), + [sym_for_statement] = STATE(8488), + [sym_match_statement] = STATE(8488), + [sym__value] = STATE(8488), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4147)] = { + [ts_builtin_sym_end] = ACTIONS(5310), + [sym_identifier] = ACTIONS(5312), + [anon_sym_import] = ACTIONS(5312), + [anon_sym_test] = ACTIONS(5312), + [anon_sym_hide] = ACTIONS(5312), + [anon_sym_func] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_struct] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_STAR] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_void] = ACTIONS(5312), + [anon_sym_noreturn] = ACTIONS(5312), + [anon_sym_type] = ACTIONS(5312), + [anon_sym_anyopaque] = ACTIONS(5312), + [anon_sym_bool] = ACTIONS(5312), + [anon_sym_int] = ACTIONS(5312), + [anon_sym_uint] = ACTIONS(5312), + [anon_sym_float] = ACTIONS(5312), + [anon_sym_range] = ACTIONS(5312), + [anon_sym_i8] = ACTIONS(5312), + [anon_sym_i16] = ACTIONS(5312), + [anon_sym_i32] = ACTIONS(5312), + [anon_sym_i64] = ACTIONS(5312), + [anon_sym_u8] = ACTIONS(5312), + [anon_sym_u16] = ACTIONS(5312), + [anon_sym_u32] = ACTIONS(5312), + [anon_sym_u64] = ACTIONS(5312), + [anon_sym_isize] = ACTIONS(5312), + [anon_sym_usize] = ACTIONS(5312), + [anon_sym_f32] = ACTIONS(5312), + [anon_sym_f64] = ACTIONS(5312), + [anon_sym_c_char] = ACTIONS(5312), + [anon_sym_c_schar] = ACTIONS(5312), + [anon_sym_c_uchar] = ACTIONS(5312), + [anon_sym_c_short] = ACTIONS(5312), + [anon_sym_c_ushort] = ACTIONS(5312), + [anon_sym_c_int] = ACTIONS(5312), + [anon_sym_c_uint] = ACTIONS(5312), + [anon_sym_c_long] = ACTIONS(5312), + [anon_sym_c_ulong] = ACTIONS(5312), + [anon_sym_c_longlong] = ACTIONS(5312), + [anon_sym_c_ulonglong] = ACTIONS(5312), + [anon_sym_c_float] = ACTIONS(5312), + [anon_sym_c_double] = ACTIONS(5312), + [anon_sym_c_longdouble] = ACTIONS(5312), + [anon_sym_return] = ACTIONS(5312), + [anon_sym_yield] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5310), + [anon_sym_break] = ACTIONS(5312), + [anon_sym_continue] = ACTIONS(5312), + [anon_sym_defer] = ACTIONS(5312), + [anon_sym_errdefer] = ACTIONS(5312), + [anon_sym_if] = ACTIONS(5312), + [anon_sym_else] = ACTIONS(5312), + [anon_sym_while] = ACTIONS(5312), + [anon_sym_expand] = ACTIONS(5312), + [anon_sym_for] = ACTIONS(5312), + [anon_sym_match] = ACTIONS(5312), + [anon_sym_DOT_DOT] = ACTIONS(5312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5310), + [anon_sym_orelse] = ACTIONS(5312), + [anon_sym_or] = ACTIONS(5312), + [anon_sym_and] = ACTIONS(5312), + [anon_sym_EQ_EQ] = ACTIONS(5310), + [anon_sym_BANG_EQ] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_LT_EQ] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_EQ] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5310), + [anon_sym_xor] = ACTIONS(5312), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5310), + [anon_sym_LT_LT_PIPE] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_SLASH] = ACTIONS(5310), + [anon_sym_catch] = ACTIONS(5312), + [anon_sym_TILDE] = ACTIONS(5310), + [anon_sym_try] = ACTIONS(5312), + [anon_sym_DOT] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5310), + [anon_sym_true] = ACTIONS(5312), + [anon_sym_false] = ACTIONS(5312), + [anon_sym_null] = ACTIONS(5312), + [anon_sym_unreachable] = ACTIONS(5312), + [anon_sym_undefined] = ACTIONS(5312), + [sym_sink] = ACTIONS(5312), + [sym_integer] = ACTIONS(5312), + [sym_float] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(5310), + [sym_multiline_string] = ACTIONS(5310), + [sym_character] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5310), + }, + [STATE(4148)] = { + [ts_builtin_sym_end] = ACTIONS(5316), + [sym_identifier] = ACTIONS(5318), + [anon_sym_import] = ACTIONS(5318), + [anon_sym_test] = ACTIONS(5318), + [anon_sym_hide] = ACTIONS(5318), + [anon_sym_func] = ACTIONS(5318), + [anon_sym_BANG] = ACTIONS(5318), + [anon_sym_struct] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_LBRACE] = ACTIONS(5316), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5316), + [anon_sym_void] = ACTIONS(5318), + [anon_sym_noreturn] = ACTIONS(5318), + [anon_sym_type] = ACTIONS(5318), + [anon_sym_anyopaque] = ACTIONS(5318), + [anon_sym_bool] = ACTIONS(5318), + [anon_sym_int] = ACTIONS(5318), + [anon_sym_uint] = ACTIONS(5318), + [anon_sym_float] = ACTIONS(5318), + [anon_sym_range] = ACTIONS(5318), + [anon_sym_i8] = ACTIONS(5318), + [anon_sym_i16] = ACTIONS(5318), + [anon_sym_i32] = ACTIONS(5318), + [anon_sym_i64] = ACTIONS(5318), + [anon_sym_u8] = ACTIONS(5318), + [anon_sym_u16] = ACTIONS(5318), + [anon_sym_u32] = ACTIONS(5318), + [anon_sym_u64] = ACTIONS(5318), + [anon_sym_isize] = ACTIONS(5318), + [anon_sym_usize] = ACTIONS(5318), + [anon_sym_f32] = ACTIONS(5318), + [anon_sym_f64] = ACTIONS(5318), + [anon_sym_c_char] = ACTIONS(5318), + [anon_sym_c_schar] = ACTIONS(5318), + [anon_sym_c_uchar] = ACTIONS(5318), + [anon_sym_c_short] = ACTIONS(5318), + [anon_sym_c_ushort] = ACTIONS(5318), + [anon_sym_c_int] = ACTIONS(5318), + [anon_sym_c_uint] = ACTIONS(5318), + [anon_sym_c_long] = ACTIONS(5318), + [anon_sym_c_ulong] = ACTIONS(5318), + [anon_sym_c_longlong] = ACTIONS(5318), + [anon_sym_c_ulonglong] = ACTIONS(5318), + [anon_sym_c_float] = ACTIONS(5318), + [anon_sym_c_double] = ACTIONS(5318), + [anon_sym_c_longdouble] = ACTIONS(5318), + [anon_sym_return] = ACTIONS(5318), + [anon_sym_yield] = ACTIONS(5318), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_break] = ACTIONS(5318), + [anon_sym_continue] = ACTIONS(5318), + [anon_sym_defer] = ACTIONS(5318), + [anon_sym_errdefer] = ACTIONS(5318), + [anon_sym_if] = ACTIONS(5318), + [anon_sym_else] = ACTIONS(5318), + [anon_sym_while] = ACTIONS(5318), + [anon_sym_expand] = ACTIONS(5318), + [anon_sym_for] = ACTIONS(5318), + [anon_sym_match] = ACTIONS(5318), + [anon_sym_DOT_DOT] = ACTIONS(5318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5316), + [anon_sym_orelse] = ACTIONS(5318), + [anon_sym_or] = ACTIONS(5318), + [anon_sym_and] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5316), + [anon_sym_BANG_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_LT_EQ] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_EQ] = ACTIONS(5316), + [anon_sym_AMP] = ACTIONS(5316), + [anon_sym_xor] = ACTIONS(5318), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(5316), + [anon_sym_LT_LT_PIPE] = ACTIONS(5316), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_catch] = ACTIONS(5318), + [anon_sym_TILDE] = ACTIONS(5316), + [anon_sym_try] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym_true] = ACTIONS(5318), + [anon_sym_false] = ACTIONS(5318), + [anon_sym_null] = ACTIONS(5318), + [anon_sym_unreachable] = ACTIONS(5318), + [anon_sym_undefined] = ACTIONS(5318), + [sym_sink] = ACTIONS(5318), + [sym_integer] = ACTIONS(5318), + [sym_float] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [sym_multiline_string] = ACTIONS(5316), + [sym_character] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5316), + }, + [STATE(4149)] = { + [ts_builtin_sym_end] = ACTIONS(4732), + [sym_identifier] = ACTIONS(4736), + [anon_sym_import] = ACTIONS(4736), + [anon_sym_test] = ACTIONS(4736), + [anon_sym_hide] = ACTIONS(4736), + [anon_sym_func] = ACTIONS(4736), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_struct] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_DOLLAR] = ACTIONS(4732), + [anon_sym_PIPE] = ACTIONS(4732), + [anon_sym_QMARK] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_void] = ACTIONS(4736), + [anon_sym_noreturn] = ACTIONS(4736), + [anon_sym_type] = ACTIONS(4736), + [anon_sym_anyopaque] = ACTIONS(4736), + [anon_sym_bool] = ACTIONS(4736), + [anon_sym_int] = ACTIONS(4736), + [anon_sym_uint] = ACTIONS(4736), + [anon_sym_float] = ACTIONS(4736), + [anon_sym_range] = ACTIONS(4736), + [anon_sym_i8] = ACTIONS(4736), + [anon_sym_i16] = ACTIONS(4736), + [anon_sym_i32] = ACTIONS(4736), + [anon_sym_i64] = ACTIONS(4736), + [anon_sym_u8] = ACTIONS(4736), + [anon_sym_u16] = ACTIONS(4736), + [anon_sym_u32] = ACTIONS(4736), + [anon_sym_u64] = ACTIONS(4736), + [anon_sym_isize] = ACTIONS(4736), + [anon_sym_usize] = ACTIONS(4736), + [anon_sym_f32] = ACTIONS(4736), + [anon_sym_f64] = ACTIONS(4736), + [anon_sym_c_char] = ACTIONS(4736), + [anon_sym_c_schar] = ACTIONS(4736), + [anon_sym_c_uchar] = ACTIONS(4736), + [anon_sym_c_short] = ACTIONS(4736), + [anon_sym_c_ushort] = ACTIONS(4736), + [anon_sym_c_int] = ACTIONS(4736), + [anon_sym_c_uint] = ACTIONS(4736), + [anon_sym_c_long] = ACTIONS(4736), + [anon_sym_c_ulong] = ACTIONS(4736), + [anon_sym_c_longlong] = ACTIONS(4736), + [anon_sym_c_ulonglong] = ACTIONS(4736), + [anon_sym_c_float] = ACTIONS(4736), + [anon_sym_c_double] = ACTIONS(4736), + [anon_sym_c_longdouble] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_yield] = ACTIONS(4736), + [anon_sym_COLON] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_defer] = ACTIONS(4736), + [anon_sym_errdefer] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_expand] = ACTIONS(4736), + [anon_sym_for] = ACTIONS(4736), + [anon_sym_match] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4732), + [anon_sym_orelse] = ACTIONS(4736), + [anon_sym_or] = ACTIONS(4736), + [anon_sym_and] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4732), + [anon_sym_AMP] = ACTIONS(4732), + [anon_sym_xor] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4732), + [anon_sym_LT_LT_PIPE] = ACTIONS(4732), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_catch] = ACTIONS(4736), + [anon_sym_TILDE] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4732), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_unreachable] = ACTIONS(4736), + [anon_sym_undefined] = ACTIONS(4736), + [sym_sink] = ACTIONS(4736), + [sym_integer] = ACTIONS(4736), + [sym_float] = ACTIONS(4732), + [anon_sym_DQUOTE] = ACTIONS(4732), + [sym_multiline_string] = ACTIONS(4732), + [sym_character] = ACTIONS(4732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4732), + }, + [STATE(4150)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3287), + [sym_labeled_block] = STATE(3287), + [sym_if_statement] = STATE(3287), + [sym_while_statement] = STATE(3287), + [sym_for_statement] = STATE(3287), + [sym_match_statement] = STATE(3287), + [sym__value] = STATE(3287), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4151)] = { + [ts_builtin_sym_end] = ACTIONS(5420), + [sym_identifier] = ACTIONS(5422), + [anon_sym_import] = ACTIONS(5422), + [anon_sym_test] = ACTIONS(5422), + [anon_sym_hide] = ACTIONS(5422), + [anon_sym_func] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5422), + [anon_sym_struct] = ACTIONS(5422), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5420), + [anon_sym_DOLLAR] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_void] = ACTIONS(5422), + [anon_sym_noreturn] = ACTIONS(5422), + [anon_sym_type] = ACTIONS(5422), + [anon_sym_anyopaque] = ACTIONS(5422), + [anon_sym_bool] = ACTIONS(5422), + [anon_sym_int] = ACTIONS(5422), + [anon_sym_uint] = ACTIONS(5422), + [anon_sym_float] = ACTIONS(5422), + [anon_sym_range] = ACTIONS(5422), + [anon_sym_i8] = ACTIONS(5422), + [anon_sym_i16] = ACTIONS(5422), + [anon_sym_i32] = ACTIONS(5422), + [anon_sym_i64] = ACTIONS(5422), + [anon_sym_u8] = ACTIONS(5422), + [anon_sym_u16] = ACTIONS(5422), + [anon_sym_u32] = ACTIONS(5422), + [anon_sym_u64] = ACTIONS(5422), + [anon_sym_isize] = ACTIONS(5422), + [anon_sym_usize] = ACTIONS(5422), + [anon_sym_f32] = ACTIONS(5422), + [anon_sym_f64] = ACTIONS(5422), + [anon_sym_c_char] = ACTIONS(5422), + [anon_sym_c_schar] = ACTIONS(5422), + [anon_sym_c_uchar] = ACTIONS(5422), + [anon_sym_c_short] = ACTIONS(5422), + [anon_sym_c_ushort] = ACTIONS(5422), + [anon_sym_c_int] = ACTIONS(5422), + [anon_sym_c_uint] = ACTIONS(5422), + [anon_sym_c_long] = ACTIONS(5422), + [anon_sym_c_ulong] = ACTIONS(5422), + [anon_sym_c_longlong] = ACTIONS(5422), + [anon_sym_c_ulonglong] = ACTIONS(5422), + [anon_sym_c_float] = ACTIONS(5422), + [anon_sym_c_double] = ACTIONS(5422), + [anon_sym_c_longdouble] = ACTIONS(5422), + [anon_sym_return] = ACTIONS(5422), + [anon_sym_yield] = ACTIONS(5422), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_break] = ACTIONS(5422), + [anon_sym_continue] = ACTIONS(5422), + [anon_sym_defer] = ACTIONS(5422), + [anon_sym_errdefer] = ACTIONS(5422), + [anon_sym_if] = ACTIONS(5422), + [anon_sym_else] = ACTIONS(5422), + [anon_sym_while] = ACTIONS(5422), + [anon_sym_expand] = ACTIONS(5422), + [anon_sym_for] = ACTIONS(5422), + [anon_sym_match] = ACTIONS(5422), + [anon_sym_DOT_DOT] = ACTIONS(5422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5420), + [anon_sym_orelse] = ACTIONS(5422), + [anon_sym_or] = ACTIONS(5422), + [anon_sym_and] = ACTIONS(5422), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_LT] = ACTIONS(5422), + [anon_sym_LT_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5422), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5420), + [anon_sym_xor] = ACTIONS(5422), + [anon_sym_LT_LT] = ACTIONS(5422), + [anon_sym_GT_GT] = ACTIONS(5420), + [anon_sym_LT_LT_PIPE] = ACTIONS(5420), + [anon_sym_PLUS] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5420), + [anon_sym_catch] = ACTIONS(5422), + [anon_sym_TILDE] = ACTIONS(5420), + [anon_sym_try] = ACTIONS(5422), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_true] = ACTIONS(5422), + [anon_sym_false] = ACTIONS(5422), + [anon_sym_null] = ACTIONS(5422), + [anon_sym_unreachable] = ACTIONS(5422), + [anon_sym_undefined] = ACTIONS(5422), + [sym_sink] = ACTIONS(5422), + [sym_integer] = ACTIONS(5422), + [sym_float] = ACTIONS(5420), + [anon_sym_DQUOTE] = ACTIONS(5420), + [sym_multiline_string] = ACTIONS(5420), + [sym_character] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5420), + }, + [STATE(4152)] = { + [ts_builtin_sym_end] = ACTIONS(6136), + [sym_identifier] = ACTIONS(6138), + [anon_sym_import] = ACTIONS(6138), + [anon_sym_test] = ACTIONS(6138), + [anon_sym_hide] = ACTIONS(6138), + [anon_sym_func] = ACTIONS(6138), + [anon_sym_BANG] = ACTIONS(6138), + [anon_sym_struct] = ACTIONS(6138), + [anon_sym_LPAREN] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(6136), + [anon_sym_RBRACE] = ACTIONS(6136), + [anon_sym_DASH] = ACTIONS(6136), + [anon_sym_DOLLAR] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(6136), + [anon_sym_QMARK] = ACTIONS(6136), + [anon_sym_STAR] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(6136), + [anon_sym_void] = ACTIONS(6138), + [anon_sym_noreturn] = ACTIONS(6138), + [anon_sym_type] = ACTIONS(6138), + [anon_sym_anyopaque] = ACTIONS(6138), + [anon_sym_bool] = ACTIONS(6138), + [anon_sym_int] = ACTIONS(6138), + [anon_sym_uint] = ACTIONS(6138), + [anon_sym_float] = ACTIONS(6138), + [anon_sym_range] = ACTIONS(6138), + [anon_sym_i8] = ACTIONS(6138), + [anon_sym_i16] = ACTIONS(6138), + [anon_sym_i32] = ACTIONS(6138), + [anon_sym_i64] = ACTIONS(6138), + [anon_sym_u8] = ACTIONS(6138), + [anon_sym_u16] = ACTIONS(6138), + [anon_sym_u32] = ACTIONS(6138), + [anon_sym_u64] = ACTIONS(6138), + [anon_sym_isize] = ACTIONS(6138), + [anon_sym_usize] = ACTIONS(6138), + [anon_sym_f32] = ACTIONS(6138), + [anon_sym_f64] = ACTIONS(6138), + [anon_sym_c_char] = ACTIONS(6138), + [anon_sym_c_schar] = ACTIONS(6138), + [anon_sym_c_uchar] = ACTIONS(6138), + [anon_sym_c_short] = ACTIONS(6138), + [anon_sym_c_ushort] = ACTIONS(6138), + [anon_sym_c_int] = ACTIONS(6138), + [anon_sym_c_uint] = ACTIONS(6138), + [anon_sym_c_long] = ACTIONS(6138), + [anon_sym_c_ulong] = ACTIONS(6138), + [anon_sym_c_longlong] = ACTIONS(6138), + [anon_sym_c_ulonglong] = ACTIONS(6138), + [anon_sym_c_float] = ACTIONS(6138), + [anon_sym_c_double] = ACTIONS(6138), + [anon_sym_c_longdouble] = ACTIONS(6138), + [anon_sym_return] = ACTIONS(6138), + [anon_sym_yield] = ACTIONS(6138), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_break] = ACTIONS(6138), + [anon_sym_continue] = ACTIONS(6138), + [anon_sym_defer] = ACTIONS(6138), + [anon_sym_errdefer] = ACTIONS(6138), + [anon_sym_if] = ACTIONS(6138), + [anon_sym_else] = ACTIONS(6138), + [anon_sym_while] = ACTIONS(6138), + [anon_sym_expand] = ACTIONS(6138), + [anon_sym_for] = ACTIONS(6138), + [anon_sym_match] = ACTIONS(6138), + [anon_sym_DOT_DOT] = ACTIONS(6138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6136), + [anon_sym_orelse] = ACTIONS(6138), + [anon_sym_or] = ACTIONS(6138), + [anon_sym_and] = ACTIONS(6138), + [anon_sym_EQ_EQ] = ACTIONS(6136), + [anon_sym_BANG_EQ] = ACTIONS(6136), + [anon_sym_LT] = ACTIONS(6138), + [anon_sym_LT_EQ] = ACTIONS(6136), + [anon_sym_GT] = ACTIONS(6138), + [anon_sym_GT_EQ] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6136), + [anon_sym_xor] = ACTIONS(6138), + [anon_sym_LT_LT] = ACTIONS(6138), + [anon_sym_GT_GT] = ACTIONS(6136), + [anon_sym_LT_LT_PIPE] = ACTIONS(6136), + [anon_sym_PLUS] = ACTIONS(6136), + [anon_sym_SLASH] = ACTIONS(6136), + [anon_sym_catch] = ACTIONS(6138), + [anon_sym_TILDE] = ACTIONS(6136), + [anon_sym_try] = ACTIONS(6138), + [anon_sym_DOT] = ACTIONS(6138), + [anon_sym_CARET] = ACTIONS(6136), + [anon_sym_true] = ACTIONS(6138), + [anon_sym_false] = ACTIONS(6138), + [anon_sym_null] = ACTIONS(6138), + [anon_sym_unreachable] = ACTIONS(6138), + [anon_sym_undefined] = ACTIONS(6138), + [sym_sink] = ACTIONS(6138), + [sym_integer] = ACTIONS(6138), + [sym_float] = ACTIONS(6136), + [anon_sym_DQUOTE] = ACTIONS(6136), + [sym_multiline_string] = ACTIONS(6136), + [sym_character] = ACTIONS(6136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6136), + }, + [STATE(4153)] = { + [ts_builtin_sym_end] = ACTIONS(5424), + [sym_identifier] = ACTIONS(5426), + [anon_sym_import] = ACTIONS(5426), + [anon_sym_test] = ACTIONS(5426), + [anon_sym_hide] = ACTIONS(5426), + [anon_sym_func] = ACTIONS(5426), + [anon_sym_BANG] = ACTIONS(5426), + [anon_sym_struct] = ACTIONS(5426), + [anon_sym_LPAREN] = ACTIONS(5424), + [anon_sym_LBRACE] = ACTIONS(5424), + [anon_sym_RBRACE] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5424), + [anon_sym_DOLLAR] = ACTIONS(5424), + [anon_sym_PIPE] = ACTIONS(5424), + [anon_sym_QMARK] = ACTIONS(5424), + [anon_sym_STAR] = ACTIONS(5424), + [anon_sym_LBRACK] = ACTIONS(5424), + [anon_sym_void] = ACTIONS(5426), + [anon_sym_noreturn] = ACTIONS(5426), + [anon_sym_type] = ACTIONS(5426), + [anon_sym_anyopaque] = ACTIONS(5426), + [anon_sym_bool] = ACTIONS(5426), + [anon_sym_int] = ACTIONS(5426), + [anon_sym_uint] = ACTIONS(5426), + [anon_sym_float] = ACTIONS(5426), + [anon_sym_range] = ACTIONS(5426), + [anon_sym_i8] = ACTIONS(5426), + [anon_sym_i16] = ACTIONS(5426), + [anon_sym_i32] = ACTIONS(5426), + [anon_sym_i64] = ACTIONS(5426), + [anon_sym_u8] = ACTIONS(5426), + [anon_sym_u16] = ACTIONS(5426), + [anon_sym_u32] = ACTIONS(5426), + [anon_sym_u64] = ACTIONS(5426), + [anon_sym_isize] = ACTIONS(5426), + [anon_sym_usize] = ACTIONS(5426), + [anon_sym_f32] = ACTIONS(5426), + [anon_sym_f64] = ACTIONS(5426), + [anon_sym_c_char] = ACTIONS(5426), + [anon_sym_c_schar] = ACTIONS(5426), + [anon_sym_c_uchar] = ACTIONS(5426), + [anon_sym_c_short] = ACTIONS(5426), + [anon_sym_c_ushort] = ACTIONS(5426), + [anon_sym_c_int] = ACTIONS(5426), + [anon_sym_c_uint] = ACTIONS(5426), + [anon_sym_c_long] = ACTIONS(5426), + [anon_sym_c_ulong] = ACTIONS(5426), + [anon_sym_c_longlong] = ACTIONS(5426), + [anon_sym_c_ulonglong] = ACTIONS(5426), + [anon_sym_c_float] = ACTIONS(5426), + [anon_sym_c_double] = ACTIONS(5426), + [anon_sym_c_longdouble] = ACTIONS(5426), + [anon_sym_return] = ACTIONS(5426), + [anon_sym_yield] = ACTIONS(5426), + [anon_sym_COLON] = ACTIONS(5424), + [anon_sym_break] = ACTIONS(5426), + [anon_sym_continue] = ACTIONS(5426), + [anon_sym_defer] = ACTIONS(5426), + [anon_sym_errdefer] = ACTIONS(5426), + [anon_sym_if] = ACTIONS(5426), + [anon_sym_else] = ACTIONS(5426), + [anon_sym_while] = ACTIONS(5426), + [anon_sym_expand] = ACTIONS(5426), + [anon_sym_for] = ACTIONS(5426), + [anon_sym_match] = ACTIONS(5426), + [anon_sym_DOT_DOT] = ACTIONS(5426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5424), + [anon_sym_orelse] = ACTIONS(5426), + [anon_sym_or] = ACTIONS(5426), + [anon_sym_and] = ACTIONS(5426), + [anon_sym_EQ_EQ] = ACTIONS(5424), + [anon_sym_BANG_EQ] = ACTIONS(5424), + [anon_sym_LT] = ACTIONS(5426), + [anon_sym_LT_EQ] = ACTIONS(5424), + [anon_sym_GT] = ACTIONS(5426), + [anon_sym_GT_EQ] = ACTIONS(5424), + [anon_sym_AMP] = ACTIONS(5424), + [anon_sym_xor] = ACTIONS(5426), + [anon_sym_LT_LT] = ACTIONS(5426), + [anon_sym_GT_GT] = ACTIONS(5424), + [anon_sym_LT_LT_PIPE] = ACTIONS(5424), + [anon_sym_PLUS] = ACTIONS(5424), + [anon_sym_SLASH] = ACTIONS(5424), + [anon_sym_catch] = ACTIONS(5426), + [anon_sym_TILDE] = ACTIONS(5424), + [anon_sym_try] = ACTIONS(5426), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_CARET] = ACTIONS(5424), + [anon_sym_true] = ACTIONS(5426), + [anon_sym_false] = ACTIONS(5426), + [anon_sym_null] = ACTIONS(5426), + [anon_sym_unreachable] = ACTIONS(5426), + [anon_sym_undefined] = ACTIONS(5426), + [sym_sink] = ACTIONS(5426), + [sym_integer] = ACTIONS(5426), + [sym_float] = ACTIONS(5424), + [anon_sym_DQUOTE] = ACTIONS(5424), + [sym_multiline_string] = ACTIONS(5424), + [sym_character] = ACTIONS(5424), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5424), + }, + [STATE(4154)] = { + [ts_builtin_sym_end] = ACTIONS(5432), + [sym_identifier] = ACTIONS(5434), + [anon_sym_import] = ACTIONS(5434), + [anon_sym_test] = ACTIONS(5434), + [anon_sym_hide] = ACTIONS(5434), + [anon_sym_func] = ACTIONS(5434), + [anon_sym_BANG] = ACTIONS(5434), + [anon_sym_struct] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5432), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), + [anon_sym_DOLLAR] = ACTIONS(5432), + [anon_sym_PIPE] = ACTIONS(5432), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_STAR] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5432), + [anon_sym_void] = ACTIONS(5434), + [anon_sym_noreturn] = ACTIONS(5434), + [anon_sym_type] = ACTIONS(5434), + [anon_sym_anyopaque] = ACTIONS(5434), + [anon_sym_bool] = ACTIONS(5434), + [anon_sym_int] = ACTIONS(5434), + [anon_sym_uint] = ACTIONS(5434), + [anon_sym_float] = ACTIONS(5434), + [anon_sym_range] = ACTIONS(5434), + [anon_sym_i8] = ACTIONS(5434), + [anon_sym_i16] = ACTIONS(5434), + [anon_sym_i32] = ACTIONS(5434), + [anon_sym_i64] = ACTIONS(5434), + [anon_sym_u8] = ACTIONS(5434), + [anon_sym_u16] = ACTIONS(5434), + [anon_sym_u32] = ACTIONS(5434), + [anon_sym_u64] = ACTIONS(5434), + [anon_sym_isize] = ACTIONS(5434), + [anon_sym_usize] = ACTIONS(5434), + [anon_sym_f32] = ACTIONS(5434), + [anon_sym_f64] = ACTIONS(5434), + [anon_sym_c_char] = ACTIONS(5434), + [anon_sym_c_schar] = ACTIONS(5434), + [anon_sym_c_uchar] = ACTIONS(5434), + [anon_sym_c_short] = ACTIONS(5434), + [anon_sym_c_ushort] = ACTIONS(5434), + [anon_sym_c_int] = ACTIONS(5434), + [anon_sym_c_uint] = ACTIONS(5434), + [anon_sym_c_long] = ACTIONS(5434), + [anon_sym_c_ulong] = ACTIONS(5434), + [anon_sym_c_longlong] = ACTIONS(5434), + [anon_sym_c_ulonglong] = ACTIONS(5434), + [anon_sym_c_float] = ACTIONS(5434), + [anon_sym_c_double] = ACTIONS(5434), + [anon_sym_c_longdouble] = ACTIONS(5434), + [anon_sym_return] = ACTIONS(5434), + [anon_sym_yield] = ACTIONS(5434), + [anon_sym_COLON] = ACTIONS(5432), + [anon_sym_break] = ACTIONS(5434), + [anon_sym_continue] = ACTIONS(5434), + [anon_sym_defer] = ACTIONS(5434), + [anon_sym_errdefer] = ACTIONS(5434), + [anon_sym_if] = ACTIONS(5434), + [anon_sym_else] = ACTIONS(5434), + [anon_sym_while] = ACTIONS(5434), + [anon_sym_expand] = ACTIONS(5434), + [anon_sym_for] = ACTIONS(5434), + [anon_sym_match] = ACTIONS(5434), + [anon_sym_DOT_DOT] = ACTIONS(5434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5432), + [anon_sym_orelse] = ACTIONS(5434), + [anon_sym_or] = ACTIONS(5434), + [anon_sym_and] = ACTIONS(5434), + [anon_sym_EQ_EQ] = ACTIONS(5432), + [anon_sym_BANG_EQ] = ACTIONS(5432), + [anon_sym_LT] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5432), + [anon_sym_GT] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(5432), + [anon_sym_xor] = ACTIONS(5434), + [anon_sym_LT_LT] = ACTIONS(5434), + [anon_sym_GT_GT] = ACTIONS(5432), + [anon_sym_LT_LT_PIPE] = ACTIONS(5432), + [anon_sym_PLUS] = ACTIONS(5432), + [anon_sym_SLASH] = ACTIONS(5432), + [anon_sym_catch] = ACTIONS(5434), + [anon_sym_TILDE] = ACTIONS(5432), + [anon_sym_try] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5434), + [anon_sym_CARET] = ACTIONS(5432), + [anon_sym_true] = ACTIONS(5434), + [anon_sym_false] = ACTIONS(5434), + [anon_sym_null] = ACTIONS(5434), + [anon_sym_unreachable] = ACTIONS(5434), + [anon_sym_undefined] = ACTIONS(5434), + [sym_sink] = ACTIONS(5434), + [sym_integer] = ACTIONS(5434), + [sym_float] = ACTIONS(5432), + [anon_sym_DQUOTE] = ACTIONS(5432), + [sym_multiline_string] = ACTIONS(5432), + [sym_character] = ACTIONS(5432), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5432), + }, + [STATE(4155)] = { + [ts_builtin_sym_end] = ACTIONS(4920), + [sym_identifier] = ACTIONS(4922), + [anon_sym_import] = ACTIONS(4922), + [anon_sym_test] = ACTIONS(4922), + [anon_sym_hide] = ACTIONS(4922), + [anon_sym_func] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4922), + [anon_sym_struct] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_void] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym_type] = ACTIONS(4922), + [anon_sym_anyopaque] = ACTIONS(4922), + [anon_sym_bool] = ACTIONS(4922), + [anon_sym_int] = ACTIONS(4922), + [anon_sym_uint] = ACTIONS(4922), + [anon_sym_float] = ACTIONS(4922), + [anon_sym_range] = ACTIONS(4922), + [anon_sym_i8] = ACTIONS(4922), + [anon_sym_i16] = ACTIONS(4922), + [anon_sym_i32] = ACTIONS(4922), + [anon_sym_i64] = ACTIONS(4922), + [anon_sym_u8] = ACTIONS(4922), + [anon_sym_u16] = ACTIONS(4922), + [anon_sym_u32] = ACTIONS(4922), + [anon_sym_u64] = ACTIONS(4922), + [anon_sym_isize] = ACTIONS(4922), + [anon_sym_usize] = ACTIONS(4922), + [anon_sym_f32] = ACTIONS(4922), + [anon_sym_f64] = ACTIONS(4922), + [anon_sym_c_char] = ACTIONS(4922), + [anon_sym_c_schar] = ACTIONS(4922), + [anon_sym_c_uchar] = ACTIONS(4922), + [anon_sym_c_short] = ACTIONS(4922), + [anon_sym_c_ushort] = ACTIONS(4922), + [anon_sym_c_int] = ACTIONS(4922), + [anon_sym_c_uint] = ACTIONS(4922), + [anon_sym_c_long] = ACTIONS(4922), + [anon_sym_c_ulong] = ACTIONS(4922), + [anon_sym_c_longlong] = ACTIONS(4922), + [anon_sym_c_ulonglong] = ACTIONS(4922), + [anon_sym_c_float] = ACTIONS(4922), + [anon_sym_c_double] = ACTIONS(4922), + [anon_sym_c_longdouble] = ACTIONS(4922), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_yield] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_continue] = ACTIONS(4922), + [anon_sym_defer] = ACTIONS(4922), + [anon_sym_errdefer] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_expand] = ACTIONS(4922), + [anon_sym_for] = ACTIONS(4922), + [anon_sym_match] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), + [anon_sym_orelse] = ACTIONS(4922), + [anon_sym_or] = ACTIONS(4922), + [anon_sym_and] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4920), + [anon_sym_xor] = ACTIONS(4922), + [anon_sym_LT_LT] = ACTIONS(4922), + [anon_sym_GT_GT] = ACTIONS(4920), + [anon_sym_LT_LT_PIPE] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_catch] = ACTIONS(4922), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_unreachable] = ACTIONS(4922), + [anon_sym_undefined] = ACTIONS(4922), + [sym_sink] = ACTIONS(4922), + [sym_integer] = ACTIONS(4922), + [sym_float] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [sym_multiline_string] = ACTIONS(4920), + [sym_character] = ACTIONS(4920), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4920), + }, + [STATE(4156)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4163), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7020), + }, + [STATE(4157)] = { + [ts_builtin_sym_end] = ACTIONS(5436), + [sym_identifier] = ACTIONS(5438), + [anon_sym_import] = ACTIONS(5438), + [anon_sym_test] = ACTIONS(5438), + [anon_sym_hide] = ACTIONS(5438), + [anon_sym_func] = ACTIONS(5438), + [anon_sym_BANG] = ACTIONS(5438), + [anon_sym_struct] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5436), + [anon_sym_LBRACE] = ACTIONS(5436), + [anon_sym_RBRACE] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), + [anon_sym_DOLLAR] = ACTIONS(5436), + [anon_sym_PIPE] = ACTIONS(5436), + [anon_sym_QMARK] = ACTIONS(5436), + [anon_sym_STAR] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(5436), + [anon_sym_void] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_type] = ACTIONS(5438), + [anon_sym_anyopaque] = ACTIONS(5438), + [anon_sym_bool] = ACTIONS(5438), + [anon_sym_int] = ACTIONS(5438), + [anon_sym_uint] = ACTIONS(5438), + [anon_sym_float] = ACTIONS(5438), + [anon_sym_range] = ACTIONS(5438), + [anon_sym_i8] = ACTIONS(5438), + [anon_sym_i16] = ACTIONS(5438), + [anon_sym_i32] = ACTIONS(5438), + [anon_sym_i64] = ACTIONS(5438), + [anon_sym_u8] = ACTIONS(5438), + [anon_sym_u16] = ACTIONS(5438), + [anon_sym_u32] = ACTIONS(5438), + [anon_sym_u64] = ACTIONS(5438), + [anon_sym_isize] = ACTIONS(5438), + [anon_sym_usize] = ACTIONS(5438), + [anon_sym_f32] = ACTIONS(5438), + [anon_sym_f64] = ACTIONS(5438), + [anon_sym_c_char] = ACTIONS(5438), + [anon_sym_c_schar] = ACTIONS(5438), + [anon_sym_c_uchar] = ACTIONS(5438), + [anon_sym_c_short] = ACTIONS(5438), + [anon_sym_c_ushort] = ACTIONS(5438), + [anon_sym_c_int] = ACTIONS(5438), + [anon_sym_c_uint] = ACTIONS(5438), + [anon_sym_c_long] = ACTIONS(5438), + [anon_sym_c_ulong] = ACTIONS(5438), + [anon_sym_c_longlong] = ACTIONS(5438), + [anon_sym_c_ulonglong] = ACTIONS(5438), + [anon_sym_c_float] = ACTIONS(5438), + [anon_sym_c_double] = ACTIONS(5438), + [anon_sym_c_longdouble] = ACTIONS(5438), + [anon_sym_return] = ACTIONS(5438), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_COLON] = ACTIONS(5436), + [anon_sym_break] = ACTIONS(5438), + [anon_sym_continue] = ACTIONS(5438), + [anon_sym_defer] = ACTIONS(5438), + [anon_sym_errdefer] = ACTIONS(5438), + [anon_sym_if] = ACTIONS(5438), + [anon_sym_else] = ACTIONS(5438), + [anon_sym_while] = ACTIONS(5438), + [anon_sym_expand] = ACTIONS(5438), + [anon_sym_for] = ACTIONS(5438), + [anon_sym_match] = ACTIONS(5438), + [anon_sym_DOT_DOT] = ACTIONS(5438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5436), + [anon_sym_orelse] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_EQ_EQ] = ACTIONS(5436), + [anon_sym_BANG_EQ] = ACTIONS(5436), + [anon_sym_LT] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5436), + [anon_sym_GT] = ACTIONS(5438), + [anon_sym_GT_EQ] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5436), + [anon_sym_xor] = ACTIONS(5438), + [anon_sym_LT_LT] = ACTIONS(5438), + [anon_sym_GT_GT] = ACTIONS(5436), + [anon_sym_LT_LT_PIPE] = ACTIONS(5436), + [anon_sym_PLUS] = ACTIONS(5436), + [anon_sym_SLASH] = ACTIONS(5436), + [anon_sym_catch] = ACTIONS(5438), + [anon_sym_TILDE] = ACTIONS(5436), + [anon_sym_try] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5438), + [anon_sym_CARET] = ACTIONS(5436), + [anon_sym_true] = ACTIONS(5438), + [anon_sym_false] = ACTIONS(5438), + [anon_sym_null] = ACTIONS(5438), + [anon_sym_unreachable] = ACTIONS(5438), + [anon_sym_undefined] = ACTIONS(5438), + [sym_sink] = ACTIONS(5438), + [sym_integer] = ACTIONS(5438), + [sym_float] = ACTIONS(5436), + [anon_sym_DQUOTE] = ACTIONS(5436), + [sym_multiline_string] = ACTIONS(5436), + [sym_character] = ACTIONS(5436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5436), + }, + [STATE(4158)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4166), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7022), + }, + [STATE(4159)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9099), + [sym_labeled_block] = STATE(9099), + [sym_if_statement] = STATE(9099), + [sym_while_statement] = STATE(9099), + [sym_for_statement] = STATE(9099), + [sym_match_statement] = STATE(9099), + [sym__value] = STATE(9099), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4472), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7024), + }, + [STATE(4160)] = { + [ts_builtin_sym_end] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2726), + [anon_sym_import] = ACTIONS(2726), + [anon_sym_test] = ACTIONS(2726), + [anon_sym_hide] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_DOLLAR] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_COLON] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_defer] = ACTIONS(2726), + [anon_sym_errdefer] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_expand] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(2726), + [anon_sym_and] = ACTIONS(2726), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2726), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_xor] = ACTIONS(2726), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2726), + [anon_sym_unreachable] = ACTIONS(2726), + [anon_sym_undefined] = ACTIONS(2726), + [sym_sink] = ACTIONS(2726), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [sym_multiline_string] = ACTIONS(2724), + [sym_character] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(4161)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4168), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7026), + }, + [STATE(4162)] = { + [ts_builtin_sym_end] = ACTIONS(5584), + [sym_identifier] = ACTIONS(5586), + [anon_sym_import] = ACTIONS(5586), + [anon_sym_test] = ACTIONS(5586), + [anon_sym_hide] = ACTIONS(5586), + [anon_sym_func] = ACTIONS(5586), + [anon_sym_BANG] = ACTIONS(5586), + [anon_sym_struct] = ACTIONS(5586), + [anon_sym_LPAREN] = ACTIONS(5584), + [anon_sym_LBRACE] = ACTIONS(5584), + [anon_sym_RBRACE] = ACTIONS(5584), + [anon_sym_DASH] = ACTIONS(5584), + [anon_sym_DOLLAR] = ACTIONS(5584), + [anon_sym_PIPE] = ACTIONS(5584), + [anon_sym_QMARK] = ACTIONS(5584), + [anon_sym_STAR] = ACTIONS(5584), + [anon_sym_LBRACK] = ACTIONS(5584), + [anon_sym_void] = ACTIONS(5586), + [anon_sym_noreturn] = ACTIONS(5586), + [anon_sym_type] = ACTIONS(5586), + [anon_sym_anyopaque] = ACTIONS(5586), + [anon_sym_bool] = ACTIONS(5586), + [anon_sym_int] = ACTIONS(5586), + [anon_sym_uint] = ACTIONS(5586), + [anon_sym_float] = ACTIONS(5586), + [anon_sym_range] = ACTIONS(5586), + [anon_sym_i8] = ACTIONS(5586), + [anon_sym_i16] = ACTIONS(5586), + [anon_sym_i32] = ACTIONS(5586), + [anon_sym_i64] = ACTIONS(5586), + [anon_sym_u8] = ACTIONS(5586), + [anon_sym_u16] = ACTIONS(5586), + [anon_sym_u32] = ACTIONS(5586), + [anon_sym_u64] = ACTIONS(5586), + [anon_sym_isize] = ACTIONS(5586), + [anon_sym_usize] = ACTIONS(5586), + [anon_sym_f32] = ACTIONS(5586), + [anon_sym_f64] = ACTIONS(5586), + [anon_sym_c_char] = ACTIONS(5586), + [anon_sym_c_schar] = ACTIONS(5586), + [anon_sym_c_uchar] = ACTIONS(5586), + [anon_sym_c_short] = ACTIONS(5586), + [anon_sym_c_ushort] = ACTIONS(5586), + [anon_sym_c_int] = ACTIONS(5586), + [anon_sym_c_uint] = ACTIONS(5586), + [anon_sym_c_long] = ACTIONS(5586), + [anon_sym_c_ulong] = ACTIONS(5586), + [anon_sym_c_longlong] = ACTIONS(5586), + [anon_sym_c_ulonglong] = ACTIONS(5586), + [anon_sym_c_float] = ACTIONS(5586), + [anon_sym_c_double] = ACTIONS(5586), + [anon_sym_c_longdouble] = ACTIONS(5586), + [anon_sym_return] = ACTIONS(5586), + [anon_sym_yield] = ACTIONS(5586), + [anon_sym_COLON] = ACTIONS(5584), + [anon_sym_break] = ACTIONS(5586), + [anon_sym_continue] = ACTIONS(5586), + [anon_sym_defer] = ACTIONS(5586), + [anon_sym_errdefer] = ACTIONS(5586), + [anon_sym_if] = ACTIONS(5586), + [anon_sym_else] = ACTIONS(5586), + [anon_sym_while] = ACTIONS(5586), + [anon_sym_expand] = ACTIONS(5586), + [anon_sym_for] = ACTIONS(5586), + [anon_sym_match] = ACTIONS(5586), + [anon_sym_DOT_DOT] = ACTIONS(5586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5584), + [anon_sym_orelse] = ACTIONS(5586), + [anon_sym_or] = ACTIONS(5586), + [anon_sym_and] = ACTIONS(5586), + [anon_sym_EQ_EQ] = ACTIONS(5584), + [anon_sym_BANG_EQ] = ACTIONS(5584), + [anon_sym_LT] = ACTIONS(5586), + [anon_sym_LT_EQ] = ACTIONS(5584), + [anon_sym_GT] = ACTIONS(5586), + [anon_sym_GT_EQ] = ACTIONS(5584), + [anon_sym_AMP] = ACTIONS(5584), + [anon_sym_xor] = ACTIONS(5586), + [anon_sym_LT_LT] = ACTIONS(5586), + [anon_sym_GT_GT] = ACTIONS(5584), + [anon_sym_LT_LT_PIPE] = ACTIONS(5584), + [anon_sym_PLUS] = ACTIONS(5584), + [anon_sym_SLASH] = ACTIONS(5584), + [anon_sym_catch] = ACTIONS(5586), + [anon_sym_TILDE] = ACTIONS(5584), + [anon_sym_try] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(5586), + [anon_sym_CARET] = ACTIONS(5584), + [anon_sym_true] = ACTIONS(5586), + [anon_sym_false] = ACTIONS(5586), + [anon_sym_null] = ACTIONS(5586), + [anon_sym_unreachable] = ACTIONS(5586), + [anon_sym_undefined] = ACTIONS(5586), + [sym_sink] = ACTIONS(5586), + [sym_integer] = ACTIONS(5586), + [sym_float] = ACTIONS(5584), + [anon_sym_DQUOTE] = ACTIONS(5584), + [sym_multiline_string] = ACTIONS(5584), + [sym_character] = ACTIONS(5584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5584), + }, + [STATE(4163)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4164)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4171), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7028), + }, + [STATE(4165)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4178), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7030), + }, + [STATE(4166)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4167)] = { + [ts_builtin_sym_end] = ACTIONS(6140), + [sym_identifier] = ACTIONS(6142), + [anon_sym_import] = ACTIONS(6142), + [anon_sym_test] = ACTIONS(6142), + [anon_sym_hide] = ACTIONS(6142), + [anon_sym_func] = ACTIONS(6142), + [anon_sym_BANG] = ACTIONS(6142), + [anon_sym_struct] = ACTIONS(6142), + [anon_sym_LPAREN] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(6140), + [anon_sym_RBRACE] = ACTIONS(6140), + [anon_sym_DASH] = ACTIONS(6140), + [anon_sym_DOLLAR] = ACTIONS(6140), + [anon_sym_PIPE] = ACTIONS(6140), + [anon_sym_QMARK] = ACTIONS(6140), + [anon_sym_STAR] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(6140), + [anon_sym_void] = ACTIONS(6142), + [anon_sym_noreturn] = ACTIONS(6142), + [anon_sym_type] = ACTIONS(6142), + [anon_sym_anyopaque] = ACTIONS(6142), + [anon_sym_bool] = ACTIONS(6142), + [anon_sym_int] = ACTIONS(6142), + [anon_sym_uint] = ACTIONS(6142), + [anon_sym_float] = ACTIONS(6142), + [anon_sym_range] = ACTIONS(6142), + [anon_sym_i8] = ACTIONS(6142), + [anon_sym_i16] = ACTIONS(6142), + [anon_sym_i32] = ACTIONS(6142), + [anon_sym_i64] = ACTIONS(6142), + [anon_sym_u8] = ACTIONS(6142), + [anon_sym_u16] = ACTIONS(6142), + [anon_sym_u32] = ACTIONS(6142), + [anon_sym_u64] = ACTIONS(6142), + [anon_sym_isize] = ACTIONS(6142), + [anon_sym_usize] = ACTIONS(6142), + [anon_sym_f32] = ACTIONS(6142), + [anon_sym_f64] = ACTIONS(6142), + [anon_sym_c_char] = ACTIONS(6142), + [anon_sym_c_schar] = ACTIONS(6142), + [anon_sym_c_uchar] = ACTIONS(6142), + [anon_sym_c_short] = ACTIONS(6142), + [anon_sym_c_ushort] = ACTIONS(6142), + [anon_sym_c_int] = ACTIONS(6142), + [anon_sym_c_uint] = ACTIONS(6142), + [anon_sym_c_long] = ACTIONS(6142), + [anon_sym_c_ulong] = ACTIONS(6142), + [anon_sym_c_longlong] = ACTIONS(6142), + [anon_sym_c_ulonglong] = ACTIONS(6142), + [anon_sym_c_float] = ACTIONS(6142), + [anon_sym_c_double] = ACTIONS(6142), + [anon_sym_c_longdouble] = ACTIONS(6142), + [anon_sym_return] = ACTIONS(6142), + [anon_sym_yield] = ACTIONS(6142), + [anon_sym_COLON] = ACTIONS(6140), + [anon_sym_break] = ACTIONS(6142), + [anon_sym_continue] = ACTIONS(6142), + [anon_sym_defer] = ACTIONS(6142), + [anon_sym_errdefer] = ACTIONS(6142), + [anon_sym_if] = ACTIONS(6142), + [anon_sym_else] = ACTIONS(6142), + [anon_sym_while] = ACTIONS(6142), + [anon_sym_expand] = ACTIONS(6142), + [anon_sym_for] = ACTIONS(6142), + [anon_sym_match] = ACTIONS(6142), + [anon_sym_DOT_DOT] = ACTIONS(6142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6140), + [anon_sym_orelse] = ACTIONS(6142), + [anon_sym_or] = ACTIONS(6142), + [anon_sym_and] = ACTIONS(6142), + [anon_sym_EQ_EQ] = ACTIONS(6140), + [anon_sym_BANG_EQ] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(6142), + [anon_sym_LT_EQ] = ACTIONS(6140), + [anon_sym_GT] = ACTIONS(6142), + [anon_sym_GT_EQ] = ACTIONS(6140), + [anon_sym_AMP] = ACTIONS(6140), + [anon_sym_xor] = ACTIONS(6142), + [anon_sym_LT_LT] = ACTIONS(6142), + [anon_sym_GT_GT] = ACTIONS(6140), + [anon_sym_LT_LT_PIPE] = ACTIONS(6140), + [anon_sym_PLUS] = ACTIONS(6140), + [anon_sym_SLASH] = ACTIONS(6140), + [anon_sym_catch] = ACTIONS(6142), + [anon_sym_TILDE] = ACTIONS(6140), + [anon_sym_try] = ACTIONS(6142), + [anon_sym_DOT] = ACTIONS(6142), + [anon_sym_CARET] = ACTIONS(6140), + [anon_sym_true] = ACTIONS(6142), + [anon_sym_false] = ACTIONS(6142), + [anon_sym_null] = ACTIONS(6142), + [anon_sym_unreachable] = ACTIONS(6142), + [anon_sym_undefined] = ACTIONS(6142), + [sym_sink] = ACTIONS(6142), + [sym_integer] = ACTIONS(6142), + [sym_float] = ACTIONS(6140), + [anon_sym_DQUOTE] = ACTIONS(6140), + [sym_multiline_string] = ACTIONS(6140), + [sym_character] = ACTIONS(6140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6140), + }, + [STATE(4168)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4169)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3059), + [sym_error_capture] = STATE(4952), + [sym_if_statement] = STATE(3059), + [sym_while_statement] = STATE(3059), + [sym_for_statement] = STATE(3059), + [sym_match_statement] = STATE(3059), + [sym_expression] = STATE(6570), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4953), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7034), + }, + [STATE(4170)] = { + [ts_builtin_sym_end] = ACTIONS(5084), + [sym_identifier] = ACTIONS(5086), + [anon_sym_import] = ACTIONS(5086), + [anon_sym_test] = ACTIONS(5086), + [anon_sym_hide] = ACTIONS(5086), + [anon_sym_func] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_struct] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_DASH] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5084), + [anon_sym_QMARK] = ACTIONS(5084), + [anon_sym_STAR] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_void] = ACTIONS(5086), + [anon_sym_noreturn] = ACTIONS(5086), + [anon_sym_type] = ACTIONS(5086), + [anon_sym_anyopaque] = ACTIONS(5086), + [anon_sym_bool] = ACTIONS(5086), + [anon_sym_int] = ACTIONS(5086), + [anon_sym_uint] = ACTIONS(5086), + [anon_sym_float] = ACTIONS(5086), + [anon_sym_range] = ACTIONS(5086), + [anon_sym_i8] = ACTIONS(5086), + [anon_sym_i16] = ACTIONS(5086), + [anon_sym_i32] = ACTIONS(5086), + [anon_sym_i64] = ACTIONS(5086), + [anon_sym_u8] = ACTIONS(5086), + [anon_sym_u16] = ACTIONS(5086), + [anon_sym_u32] = ACTIONS(5086), + [anon_sym_u64] = ACTIONS(5086), + [anon_sym_isize] = ACTIONS(5086), + [anon_sym_usize] = ACTIONS(5086), + [anon_sym_f32] = ACTIONS(5086), + [anon_sym_f64] = ACTIONS(5086), + [anon_sym_c_char] = ACTIONS(5086), + [anon_sym_c_schar] = ACTIONS(5086), + [anon_sym_c_uchar] = ACTIONS(5086), + [anon_sym_c_short] = ACTIONS(5086), + [anon_sym_c_ushort] = ACTIONS(5086), + [anon_sym_c_int] = ACTIONS(5086), + [anon_sym_c_uint] = ACTIONS(5086), + [anon_sym_c_long] = ACTIONS(5086), + [anon_sym_c_ulong] = ACTIONS(5086), + [anon_sym_c_longlong] = ACTIONS(5086), + [anon_sym_c_ulonglong] = ACTIONS(5086), + [anon_sym_c_float] = ACTIONS(5086), + [anon_sym_c_double] = ACTIONS(5086), + [anon_sym_c_longdouble] = ACTIONS(5086), + [anon_sym_return] = ACTIONS(5086), + [anon_sym_yield] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5084), + [anon_sym_break] = ACTIONS(5086), + [anon_sym_continue] = ACTIONS(5086), + [anon_sym_defer] = ACTIONS(5086), + [anon_sym_errdefer] = ACTIONS(5086), + [anon_sym_if] = ACTIONS(5086), + [anon_sym_else] = ACTIONS(5086), + [anon_sym_while] = ACTIONS(5086), + [anon_sym_expand] = ACTIONS(5086), + [anon_sym_for] = ACTIONS(5086), + [anon_sym_match] = ACTIONS(5086), + [anon_sym_DOT_DOT] = ACTIONS(5086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5084), + [anon_sym_orelse] = ACTIONS(5086), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_and] = ACTIONS(5086), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_AMP] = ACTIONS(5084), + [anon_sym_xor] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5086), + [anon_sym_GT_GT] = ACTIONS(5084), + [anon_sym_LT_LT_PIPE] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5084), + [anon_sym_SLASH] = ACTIONS(5084), + [anon_sym_catch] = ACTIONS(5086), + [anon_sym_TILDE] = ACTIONS(5084), + [anon_sym_try] = ACTIONS(5086), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_true] = ACTIONS(5086), + [anon_sym_false] = ACTIONS(5086), + [anon_sym_null] = ACTIONS(5086), + [anon_sym_unreachable] = ACTIONS(5086), + [anon_sym_undefined] = ACTIONS(5086), + [sym_sink] = ACTIONS(5086), + [sym_integer] = ACTIONS(5086), + [sym_float] = ACTIONS(5084), + [anon_sym_DQUOTE] = ACTIONS(5084), + [sym_multiline_string] = ACTIONS(5084), + [sym_character] = ACTIONS(5084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5084), + }, + [STATE(4171)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4172)] = { + [ts_builtin_sym_end] = ACTIONS(5088), + [sym_identifier] = ACTIONS(5090), + [anon_sym_import] = ACTIONS(5090), + [anon_sym_test] = ACTIONS(5090), + [anon_sym_hide] = ACTIONS(5090), + [anon_sym_func] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_struct] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_DOLLAR] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_void] = ACTIONS(5090), + [anon_sym_noreturn] = ACTIONS(5090), + [anon_sym_type] = ACTIONS(5090), + [anon_sym_anyopaque] = ACTIONS(5090), + [anon_sym_bool] = ACTIONS(5090), + [anon_sym_int] = ACTIONS(5090), + [anon_sym_uint] = ACTIONS(5090), + [anon_sym_float] = ACTIONS(5090), + [anon_sym_range] = ACTIONS(5090), + [anon_sym_i8] = ACTIONS(5090), + [anon_sym_i16] = ACTIONS(5090), + [anon_sym_i32] = ACTIONS(5090), + [anon_sym_i64] = ACTIONS(5090), + [anon_sym_u8] = ACTIONS(5090), + [anon_sym_u16] = ACTIONS(5090), + [anon_sym_u32] = ACTIONS(5090), + [anon_sym_u64] = ACTIONS(5090), + [anon_sym_isize] = ACTIONS(5090), + [anon_sym_usize] = ACTIONS(5090), + [anon_sym_f32] = ACTIONS(5090), + [anon_sym_f64] = ACTIONS(5090), + [anon_sym_c_char] = ACTIONS(5090), + [anon_sym_c_schar] = ACTIONS(5090), + [anon_sym_c_uchar] = ACTIONS(5090), + [anon_sym_c_short] = ACTIONS(5090), + [anon_sym_c_ushort] = ACTIONS(5090), + [anon_sym_c_int] = ACTIONS(5090), + [anon_sym_c_uint] = ACTIONS(5090), + [anon_sym_c_long] = ACTIONS(5090), + [anon_sym_c_ulong] = ACTIONS(5090), + [anon_sym_c_longlong] = ACTIONS(5090), + [anon_sym_c_ulonglong] = ACTIONS(5090), + [anon_sym_c_float] = ACTIONS(5090), + [anon_sym_c_double] = ACTIONS(5090), + [anon_sym_c_longdouble] = ACTIONS(5090), + [anon_sym_return] = ACTIONS(5090), + [anon_sym_yield] = ACTIONS(5090), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_break] = ACTIONS(5090), + [anon_sym_continue] = ACTIONS(5090), + [anon_sym_defer] = ACTIONS(5090), + [anon_sym_errdefer] = ACTIONS(5090), + [anon_sym_if] = ACTIONS(5090), + [anon_sym_else] = ACTIONS(5090), + [anon_sym_while] = ACTIONS(5090), + [anon_sym_expand] = ACTIONS(5090), + [anon_sym_for] = ACTIONS(5090), + [anon_sym_match] = ACTIONS(5090), + [anon_sym_DOT_DOT] = ACTIONS(5090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5088), + [anon_sym_orelse] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_and] = ACTIONS(5090), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_xor] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym_LT_LT_PIPE] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5088), + [anon_sym_catch] = ACTIONS(5090), + [anon_sym_TILDE] = ACTIONS(5088), + [anon_sym_try] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_true] = ACTIONS(5090), + [anon_sym_false] = ACTIONS(5090), + [anon_sym_null] = ACTIONS(5090), + [anon_sym_unreachable] = ACTIONS(5090), + [anon_sym_undefined] = ACTIONS(5090), + [sym_sink] = ACTIONS(5090), + [sym_integer] = ACTIONS(5090), + [sym_float] = ACTIONS(5088), + [anon_sym_DQUOTE] = ACTIONS(5088), + [sym_multiline_string] = ACTIONS(5088), + [sym_character] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5088), + }, + [STATE(4173)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4235), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7036), + }, + [STATE(4174)] = { + [ts_builtin_sym_end] = ACTIONS(5518), + [sym_identifier] = ACTIONS(5520), + [anon_sym_import] = ACTIONS(5520), + [anon_sym_test] = ACTIONS(5520), + [anon_sym_hide] = ACTIONS(5520), + [anon_sym_func] = ACTIONS(5520), + [anon_sym_BANG] = ACTIONS(5520), + [anon_sym_struct] = ACTIONS(5520), + [anon_sym_LPAREN] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_RBRACE] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [anon_sym_DOLLAR] = ACTIONS(5518), + [anon_sym_PIPE] = ACTIONS(5518), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5518), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_void] = ACTIONS(5520), + [anon_sym_noreturn] = ACTIONS(5520), + [anon_sym_type] = ACTIONS(5520), + [anon_sym_anyopaque] = ACTIONS(5520), + [anon_sym_bool] = ACTIONS(5520), + [anon_sym_int] = ACTIONS(5520), + [anon_sym_uint] = ACTIONS(5520), + [anon_sym_float] = ACTIONS(5520), + [anon_sym_range] = ACTIONS(5520), + [anon_sym_i8] = ACTIONS(5520), + [anon_sym_i16] = ACTIONS(5520), + [anon_sym_i32] = ACTIONS(5520), + [anon_sym_i64] = ACTIONS(5520), + [anon_sym_u8] = ACTIONS(5520), + [anon_sym_u16] = ACTIONS(5520), + [anon_sym_u32] = ACTIONS(5520), + [anon_sym_u64] = ACTIONS(5520), + [anon_sym_isize] = ACTIONS(5520), + [anon_sym_usize] = ACTIONS(5520), + [anon_sym_f32] = ACTIONS(5520), + [anon_sym_f64] = ACTIONS(5520), + [anon_sym_c_char] = ACTIONS(5520), + [anon_sym_c_schar] = ACTIONS(5520), + [anon_sym_c_uchar] = ACTIONS(5520), + [anon_sym_c_short] = ACTIONS(5520), + [anon_sym_c_ushort] = ACTIONS(5520), + [anon_sym_c_int] = ACTIONS(5520), + [anon_sym_c_uint] = ACTIONS(5520), + [anon_sym_c_long] = ACTIONS(5520), + [anon_sym_c_ulong] = ACTIONS(5520), + [anon_sym_c_longlong] = ACTIONS(5520), + [anon_sym_c_ulonglong] = ACTIONS(5520), + [anon_sym_c_float] = ACTIONS(5520), + [anon_sym_c_double] = ACTIONS(5520), + [anon_sym_c_longdouble] = ACTIONS(5520), + [anon_sym_return] = ACTIONS(5520), + [anon_sym_yield] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(5518), + [anon_sym_break] = ACTIONS(5520), + [anon_sym_continue] = ACTIONS(5520), + [anon_sym_defer] = ACTIONS(5520), + [anon_sym_errdefer] = ACTIONS(5520), + [anon_sym_if] = ACTIONS(5520), + [anon_sym_else] = ACTIONS(5520), + [anon_sym_while] = ACTIONS(5520), + [anon_sym_expand] = ACTIONS(5520), + [anon_sym_for] = ACTIONS(5520), + [anon_sym_match] = ACTIONS(5520), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5518), + [anon_sym_orelse] = ACTIONS(5520), + [anon_sym_or] = ACTIONS(5520), + [anon_sym_and] = ACTIONS(5520), + [anon_sym_EQ_EQ] = ACTIONS(5518), + [anon_sym_BANG_EQ] = ACTIONS(5518), + [anon_sym_LT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5520), + [anon_sym_GT_EQ] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5518), + [anon_sym_xor] = ACTIONS(5520), + [anon_sym_LT_LT] = ACTIONS(5520), + [anon_sym_GT_GT] = ACTIONS(5518), + [anon_sym_LT_LT_PIPE] = ACTIONS(5518), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_SLASH] = ACTIONS(5518), + [anon_sym_catch] = ACTIONS(5520), + [anon_sym_TILDE] = ACTIONS(5518), + [anon_sym_try] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(5520), + [anon_sym_CARET] = ACTIONS(5518), + [anon_sym_true] = ACTIONS(5520), + [anon_sym_false] = ACTIONS(5520), + [anon_sym_null] = ACTIONS(5520), + [anon_sym_unreachable] = ACTIONS(5520), + [anon_sym_undefined] = ACTIONS(5520), + [sym_sink] = ACTIONS(5520), + [sym_integer] = ACTIONS(5520), + [sym_float] = ACTIONS(5518), + [anon_sym_DQUOTE] = ACTIONS(5518), + [sym_multiline_string] = ACTIONS(5518), + [sym_character] = ACTIONS(5518), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5518), + }, + [STATE(4175)] = { + [ts_builtin_sym_end] = ACTIONS(5092), + [sym_identifier] = ACTIONS(5094), + [anon_sym_import] = ACTIONS(5094), + [anon_sym_test] = ACTIONS(5094), + [anon_sym_hide] = ACTIONS(5094), + [anon_sym_func] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_LBRACE] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_void] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_type] = ACTIONS(5094), + [anon_sym_anyopaque] = ACTIONS(5094), + [anon_sym_bool] = ACTIONS(5094), + [anon_sym_int] = ACTIONS(5094), + [anon_sym_uint] = ACTIONS(5094), + [anon_sym_float] = ACTIONS(5094), + [anon_sym_range] = ACTIONS(5094), + [anon_sym_i8] = ACTIONS(5094), + [anon_sym_i16] = ACTIONS(5094), + [anon_sym_i32] = ACTIONS(5094), + [anon_sym_i64] = ACTIONS(5094), + [anon_sym_u8] = ACTIONS(5094), + [anon_sym_u16] = ACTIONS(5094), + [anon_sym_u32] = ACTIONS(5094), + [anon_sym_u64] = ACTIONS(5094), + [anon_sym_isize] = ACTIONS(5094), + [anon_sym_usize] = ACTIONS(5094), + [anon_sym_f32] = ACTIONS(5094), + [anon_sym_f64] = ACTIONS(5094), + [anon_sym_c_char] = ACTIONS(5094), + [anon_sym_c_schar] = ACTIONS(5094), + [anon_sym_c_uchar] = ACTIONS(5094), + [anon_sym_c_short] = ACTIONS(5094), + [anon_sym_c_ushort] = ACTIONS(5094), + [anon_sym_c_int] = ACTIONS(5094), + [anon_sym_c_uint] = ACTIONS(5094), + [anon_sym_c_long] = ACTIONS(5094), + [anon_sym_c_ulong] = ACTIONS(5094), + [anon_sym_c_longlong] = ACTIONS(5094), + [anon_sym_c_ulonglong] = ACTIONS(5094), + [anon_sym_c_float] = ACTIONS(5094), + [anon_sym_c_double] = ACTIONS(5094), + [anon_sym_c_longdouble] = ACTIONS(5094), + [anon_sym_return] = ACTIONS(5094), + [anon_sym_yield] = ACTIONS(5094), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_break] = ACTIONS(5094), + [anon_sym_continue] = ACTIONS(5094), + [anon_sym_defer] = ACTIONS(5094), + [anon_sym_errdefer] = ACTIONS(5094), + [anon_sym_if] = ACTIONS(5094), + [anon_sym_else] = ACTIONS(5094), + [anon_sym_while] = ACTIONS(5094), + [anon_sym_expand] = ACTIONS(5094), + [anon_sym_for] = ACTIONS(5094), + [anon_sym_match] = ACTIONS(5094), + [anon_sym_DOT_DOT] = ACTIONS(5094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5092), + [anon_sym_orelse] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_and] = ACTIONS(5094), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5092), + [anon_sym_xor] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5094), + [anon_sym_GT_GT] = ACTIONS(5092), + [anon_sym_LT_LT_PIPE] = ACTIONS(5092), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_catch] = ACTIONS(5094), + [anon_sym_TILDE] = ACTIONS(5092), + [anon_sym_try] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_true] = ACTIONS(5094), + [anon_sym_false] = ACTIONS(5094), + [anon_sym_null] = ACTIONS(5094), + [anon_sym_unreachable] = ACTIONS(5094), + [anon_sym_undefined] = ACTIONS(5094), + [sym_sink] = ACTIONS(5094), + [sym_integer] = ACTIONS(5094), + [sym_float] = ACTIONS(5092), + [anon_sym_DQUOTE] = ACTIONS(5092), + [sym_multiline_string] = ACTIONS(5092), + [sym_character] = ACTIONS(5092), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5092), + }, + [STATE(4176)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7237), + [sym_labeled_block] = STATE(7237), + [sym_if_statement] = STATE(7237), + [sym_while_statement] = STATE(7237), + [sym_for_statement] = STATE(7237), + [sym_match_statement] = STATE(7237), + [sym__value] = STATE(7237), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4180), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7038), + }, + [STATE(4177)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7238), + [sym_labeled_block] = STATE(7238), + [sym_if_statement] = STATE(7238), + [sym_while_statement] = STATE(7238), + [sym_for_statement] = STATE(7238), + [sym_match_statement] = STATE(7238), + [sym__value] = STATE(7238), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4183), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7040), + }, + [STATE(4178)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4179)] = { + [ts_builtin_sym_end] = ACTIONS(5474), + [sym_identifier] = ACTIONS(5476), + [anon_sym_import] = ACTIONS(5476), + [anon_sym_test] = ACTIONS(5476), + [anon_sym_hide] = ACTIONS(5476), + [anon_sym_func] = ACTIONS(5476), + [anon_sym_BANG] = ACTIONS(5476), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_LPAREN] = ACTIONS(5474), + [anon_sym_LBRACE] = ACTIONS(5474), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5474), + [anon_sym_DOLLAR] = ACTIONS(5474), + [anon_sym_PIPE] = ACTIONS(5474), + [anon_sym_QMARK] = ACTIONS(5474), + [anon_sym_STAR] = ACTIONS(5474), + [anon_sym_LBRACK] = ACTIONS(5474), + [anon_sym_void] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym_type] = ACTIONS(5476), + [anon_sym_anyopaque] = ACTIONS(5476), + [anon_sym_bool] = ACTIONS(5476), + [anon_sym_int] = ACTIONS(5476), + [anon_sym_uint] = ACTIONS(5476), + [anon_sym_float] = ACTIONS(5476), + [anon_sym_range] = ACTIONS(5476), + [anon_sym_i8] = ACTIONS(5476), + [anon_sym_i16] = ACTIONS(5476), + [anon_sym_i32] = ACTIONS(5476), + [anon_sym_i64] = ACTIONS(5476), + [anon_sym_u8] = ACTIONS(5476), + [anon_sym_u16] = ACTIONS(5476), + [anon_sym_u32] = ACTIONS(5476), + [anon_sym_u64] = ACTIONS(5476), + [anon_sym_isize] = ACTIONS(5476), + [anon_sym_usize] = ACTIONS(5476), + [anon_sym_f32] = ACTIONS(5476), + [anon_sym_f64] = ACTIONS(5476), + [anon_sym_c_char] = ACTIONS(5476), + [anon_sym_c_schar] = ACTIONS(5476), + [anon_sym_c_uchar] = ACTIONS(5476), + [anon_sym_c_short] = ACTIONS(5476), + [anon_sym_c_ushort] = ACTIONS(5476), + [anon_sym_c_int] = ACTIONS(5476), + [anon_sym_c_uint] = ACTIONS(5476), + [anon_sym_c_long] = ACTIONS(5476), + [anon_sym_c_ulong] = ACTIONS(5476), + [anon_sym_c_longlong] = ACTIONS(5476), + [anon_sym_c_ulonglong] = ACTIONS(5476), + [anon_sym_c_float] = ACTIONS(5476), + [anon_sym_c_double] = ACTIONS(5476), + [anon_sym_c_longdouble] = ACTIONS(5476), + [anon_sym_return] = ACTIONS(5476), + [anon_sym_yield] = ACTIONS(5476), + [anon_sym_COLON] = ACTIONS(5474), + [anon_sym_break] = ACTIONS(5476), + [anon_sym_continue] = ACTIONS(5476), + [anon_sym_defer] = ACTIONS(5476), + [anon_sym_errdefer] = ACTIONS(5476), + [anon_sym_if] = ACTIONS(5476), + [anon_sym_else] = ACTIONS(5476), + [anon_sym_while] = ACTIONS(5476), + [anon_sym_expand] = ACTIONS(5476), + [anon_sym_for] = ACTIONS(5476), + [anon_sym_match] = ACTIONS(5476), + [anon_sym_DOT_DOT] = ACTIONS(5476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5474), + [anon_sym_orelse] = ACTIONS(5476), + [anon_sym_or] = ACTIONS(5476), + [anon_sym_and] = ACTIONS(5476), + [anon_sym_EQ_EQ] = ACTIONS(5474), + [anon_sym_BANG_EQ] = ACTIONS(5474), + [anon_sym_LT] = ACTIONS(5476), + [anon_sym_LT_EQ] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(5474), + [anon_sym_xor] = ACTIONS(5476), + [anon_sym_LT_LT] = ACTIONS(5476), + [anon_sym_GT_GT] = ACTIONS(5474), + [anon_sym_LT_LT_PIPE] = ACTIONS(5474), + [anon_sym_PLUS] = ACTIONS(5474), + [anon_sym_SLASH] = ACTIONS(5474), + [anon_sym_catch] = ACTIONS(5476), + [anon_sym_TILDE] = ACTIONS(5474), + [anon_sym_try] = ACTIONS(5476), + [anon_sym_DOT] = ACTIONS(5476), + [anon_sym_CARET] = ACTIONS(5474), + [anon_sym_true] = ACTIONS(5476), + [anon_sym_false] = ACTIONS(5476), + [anon_sym_null] = ACTIONS(5476), + [anon_sym_unreachable] = ACTIONS(5476), + [anon_sym_undefined] = ACTIONS(5476), + [sym_sink] = ACTIONS(5476), + [sym_integer] = ACTIONS(5476), + [sym_float] = ACTIONS(5474), + [anon_sym_DQUOTE] = ACTIONS(5474), + [sym_multiline_string] = ACTIONS(5474), + [sym_character] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5474), + }, + [STATE(4180)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7254), + [sym_labeled_block] = STATE(7254), + [sym_if_statement] = STATE(7254), + [sym_while_statement] = STATE(7254), + [sym_for_statement] = STATE(7254), + [sym_match_statement] = STATE(7254), + [sym__value] = STATE(7254), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4181)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7255), + [sym_labeled_block] = STATE(7255), + [sym_if_statement] = STATE(7255), + [sym_while_statement] = STATE(7255), + [sym_for_statement] = STATE(7255), + [sym_match_statement] = STATE(7255), + [sym__value] = STATE(7255), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4186), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7042), + }, + [STATE(4182)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7256), + [sym_labeled_block] = STATE(7256), + [sym_if_statement] = STATE(7256), + [sym_while_statement] = STATE(7256), + [sym_for_statement] = STATE(7256), + [sym_match_statement] = STATE(7256), + [sym__value] = STATE(7256), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4187), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7044), + }, + [STATE(4183)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7257), + [sym_labeled_block] = STATE(7257), + [sym_if_statement] = STATE(7257), + [sym_while_statement] = STATE(7257), + [sym_for_statement] = STATE(7257), + [sym_match_statement] = STATE(7257), + [sym__value] = STATE(7257), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4184)] = { + [ts_builtin_sym_end] = ACTIONS(5588), + [sym_identifier] = ACTIONS(5590), + [anon_sym_import] = ACTIONS(5590), + [anon_sym_test] = ACTIONS(5590), + [anon_sym_hide] = ACTIONS(5590), + [anon_sym_func] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5590), + [anon_sym_struct] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5588), + [anon_sym_LBRACE] = ACTIONS(5588), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_DASH] = ACTIONS(5588), + [anon_sym_DOLLAR] = ACTIONS(5588), + [anon_sym_PIPE] = ACTIONS(5588), + [anon_sym_QMARK] = ACTIONS(5588), + [anon_sym_STAR] = ACTIONS(5588), + [anon_sym_LBRACK] = ACTIONS(5588), + [anon_sym_void] = ACTIONS(5590), + [anon_sym_noreturn] = ACTIONS(5590), + [anon_sym_type] = ACTIONS(5590), + [anon_sym_anyopaque] = ACTIONS(5590), + [anon_sym_bool] = ACTIONS(5590), + [anon_sym_int] = ACTIONS(5590), + [anon_sym_uint] = ACTIONS(5590), + [anon_sym_float] = ACTIONS(5590), + [anon_sym_range] = ACTIONS(5590), + [anon_sym_i8] = ACTIONS(5590), + [anon_sym_i16] = ACTIONS(5590), + [anon_sym_i32] = ACTIONS(5590), + [anon_sym_i64] = ACTIONS(5590), + [anon_sym_u8] = ACTIONS(5590), + [anon_sym_u16] = ACTIONS(5590), + [anon_sym_u32] = ACTIONS(5590), + [anon_sym_u64] = ACTIONS(5590), + [anon_sym_isize] = ACTIONS(5590), + [anon_sym_usize] = ACTIONS(5590), + [anon_sym_f32] = ACTIONS(5590), + [anon_sym_f64] = ACTIONS(5590), + [anon_sym_c_char] = ACTIONS(5590), + [anon_sym_c_schar] = ACTIONS(5590), + [anon_sym_c_uchar] = ACTIONS(5590), + [anon_sym_c_short] = ACTIONS(5590), + [anon_sym_c_ushort] = ACTIONS(5590), + [anon_sym_c_int] = ACTIONS(5590), + [anon_sym_c_uint] = ACTIONS(5590), + [anon_sym_c_long] = ACTIONS(5590), + [anon_sym_c_ulong] = ACTIONS(5590), + [anon_sym_c_longlong] = ACTIONS(5590), + [anon_sym_c_ulonglong] = ACTIONS(5590), + [anon_sym_c_float] = ACTIONS(5590), + [anon_sym_c_double] = ACTIONS(5590), + [anon_sym_c_longdouble] = ACTIONS(5590), + [anon_sym_return] = ACTIONS(5590), + [anon_sym_yield] = ACTIONS(5590), + [anon_sym_COLON] = ACTIONS(5588), + [anon_sym_break] = ACTIONS(5590), + [anon_sym_continue] = ACTIONS(5590), + [anon_sym_defer] = ACTIONS(5590), + [anon_sym_errdefer] = ACTIONS(5590), + [anon_sym_if] = ACTIONS(5590), + [anon_sym_else] = ACTIONS(5590), + [anon_sym_while] = ACTIONS(5590), + [anon_sym_expand] = ACTIONS(5590), + [anon_sym_for] = ACTIONS(5590), + [anon_sym_match] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5588), + [anon_sym_orelse] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_EQ_EQ] = ACTIONS(5588), + [anon_sym_BANG_EQ] = ACTIONS(5588), + [anon_sym_LT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5588), + [anon_sym_GT] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5588), + [anon_sym_AMP] = ACTIONS(5588), + [anon_sym_xor] = ACTIONS(5590), + [anon_sym_LT_LT] = ACTIONS(5590), + [anon_sym_GT_GT] = ACTIONS(5588), + [anon_sym_LT_LT_PIPE] = ACTIONS(5588), + [anon_sym_PLUS] = ACTIONS(5588), + [anon_sym_SLASH] = ACTIONS(5588), + [anon_sym_catch] = ACTIONS(5590), + [anon_sym_TILDE] = ACTIONS(5588), + [anon_sym_try] = ACTIONS(5590), + [anon_sym_DOT] = ACTIONS(5590), + [anon_sym_CARET] = ACTIONS(5588), + [anon_sym_true] = ACTIONS(5590), + [anon_sym_false] = ACTIONS(5590), + [anon_sym_null] = ACTIONS(5590), + [anon_sym_unreachable] = ACTIONS(5590), + [anon_sym_undefined] = ACTIONS(5590), + [sym_sink] = ACTIONS(5590), + [sym_integer] = ACTIONS(5590), + [sym_float] = ACTIONS(5588), + [anon_sym_DQUOTE] = ACTIONS(5588), + [sym_multiline_string] = ACTIONS(5588), + [sym_character] = ACTIONS(5588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5588), + }, + [STATE(4185)] = { + [ts_builtin_sym_end] = ACTIONS(5320), + [sym_identifier] = ACTIONS(5322), + [anon_sym_import] = ACTIONS(5322), + [anon_sym_test] = ACTIONS(5322), + [anon_sym_hide] = ACTIONS(5322), + [anon_sym_func] = ACTIONS(5322), + [anon_sym_BANG] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5320), + [anon_sym_LBRACE] = ACTIONS(5320), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_QMARK] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_LBRACK] = ACTIONS(5320), + [anon_sym_void] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_type] = ACTIONS(5322), + [anon_sym_anyopaque] = ACTIONS(5322), + [anon_sym_bool] = ACTIONS(5322), + [anon_sym_int] = ACTIONS(5322), + [anon_sym_uint] = ACTIONS(5322), + [anon_sym_float] = ACTIONS(5322), + [anon_sym_range] = ACTIONS(5322), + [anon_sym_i8] = ACTIONS(5322), + [anon_sym_i16] = ACTIONS(5322), + [anon_sym_i32] = ACTIONS(5322), + [anon_sym_i64] = ACTIONS(5322), + [anon_sym_u8] = ACTIONS(5322), + [anon_sym_u16] = ACTIONS(5322), + [anon_sym_u32] = ACTIONS(5322), + [anon_sym_u64] = ACTIONS(5322), + [anon_sym_isize] = ACTIONS(5322), + [anon_sym_usize] = ACTIONS(5322), + [anon_sym_f32] = ACTIONS(5322), + [anon_sym_f64] = ACTIONS(5322), + [anon_sym_c_char] = ACTIONS(5322), + [anon_sym_c_schar] = ACTIONS(5322), + [anon_sym_c_uchar] = ACTIONS(5322), + [anon_sym_c_short] = ACTIONS(5322), + [anon_sym_c_ushort] = ACTIONS(5322), + [anon_sym_c_int] = ACTIONS(5322), + [anon_sym_c_uint] = ACTIONS(5322), + [anon_sym_c_long] = ACTIONS(5322), + [anon_sym_c_ulong] = ACTIONS(5322), + [anon_sym_c_longlong] = ACTIONS(5322), + [anon_sym_c_ulonglong] = ACTIONS(5322), + [anon_sym_c_float] = ACTIONS(5322), + [anon_sym_c_double] = ACTIONS(5322), + [anon_sym_c_longdouble] = ACTIONS(5322), + [anon_sym_return] = ACTIONS(5322), + [anon_sym_yield] = ACTIONS(5322), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_break] = ACTIONS(5322), + [anon_sym_continue] = ACTIONS(5322), + [anon_sym_defer] = ACTIONS(5322), + [anon_sym_errdefer] = ACTIONS(5322), + [anon_sym_if] = ACTIONS(5322), + [anon_sym_else] = ACTIONS(5322), + [anon_sym_while] = ACTIONS(5322), + [anon_sym_expand] = ACTIONS(5322), + [anon_sym_for] = ACTIONS(5322), + [anon_sym_match] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5320), + [anon_sym_orelse] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5320), + [anon_sym_BANG_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(5320), + [anon_sym_xor] = ACTIONS(5322), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5320), + [anon_sym_LT_LT_PIPE] = ACTIONS(5320), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_catch] = ACTIONS(5322), + [anon_sym_TILDE] = ACTIONS(5320), + [anon_sym_try] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym_true] = ACTIONS(5322), + [anon_sym_false] = ACTIONS(5322), + [anon_sym_null] = ACTIONS(5322), + [anon_sym_unreachable] = ACTIONS(5322), + [anon_sym_undefined] = ACTIONS(5322), + [sym_sink] = ACTIONS(5322), + [sym_integer] = ACTIONS(5322), + [sym_float] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [sym_multiline_string] = ACTIONS(5320), + [sym_character] = ACTIONS(5320), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5320), + }, + [STATE(4186)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7279), + [sym_labeled_block] = STATE(7279), + [sym_if_statement] = STATE(7279), + [sym_while_statement] = STATE(7279), + [sym_for_statement] = STATE(7279), + [sym_match_statement] = STATE(7279), + [sym__value] = STATE(7279), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4187)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7280), + [sym_labeled_block] = STATE(7280), + [sym_if_statement] = STATE(7280), + [sym_while_statement] = STATE(7280), + [sym_for_statement] = STATE(7280), + [sym_match_statement] = STATE(7280), + [sym__value] = STATE(7280), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4188)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9522), + [sym_labeled_block] = STATE(9522), + [sym_if_statement] = STATE(9522), + [sym_while_statement] = STATE(9522), + [sym_for_statement] = STATE(9522), + [sym_match_statement] = STATE(9522), + [sym__value] = STATE(9522), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4189)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9523), + [sym_labeled_block] = STATE(9523), + [sym_if_statement] = STATE(9523), + [sym_while_statement] = STATE(9523), + [sym_for_statement] = STATE(9523), + [sym_match_statement] = STATE(9523), + [sym__value] = STATE(9523), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4265), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7046), + }, + [STATE(4190)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9584), + [sym_labeled_block] = STATE(9584), + [sym_if_statement] = STATE(9584), + [sym_while_statement] = STATE(9584), + [sym_for_statement] = STATE(9584), + [sym_match_statement] = STATE(9584), + [sym__value] = STATE(9584), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4266), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7048), + }, + [STATE(4191)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9701), + [sym_labeled_block] = STATE(9701), + [sym_if_statement] = STATE(9701), + [sym_while_statement] = STATE(9701), + [sym_for_statement] = STATE(9701), + [sym_match_statement] = STATE(9701), + [sym__value] = STATE(9701), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4192)] = { + [ts_builtin_sym_end] = ACTIONS(5522), + [sym_identifier] = ACTIONS(5524), + [anon_sym_import] = ACTIONS(5524), + [anon_sym_test] = ACTIONS(5524), + [anon_sym_hide] = ACTIONS(5524), + [anon_sym_func] = ACTIONS(5524), + [anon_sym_BANG] = ACTIONS(5524), + [anon_sym_struct] = ACTIONS(5524), + [anon_sym_LPAREN] = ACTIONS(5522), + [anon_sym_LBRACE] = ACTIONS(5522), + [anon_sym_RBRACE] = ACTIONS(5522), + [anon_sym_DASH] = ACTIONS(5522), + [anon_sym_DOLLAR] = ACTIONS(5522), + [anon_sym_PIPE] = ACTIONS(5522), + [anon_sym_QMARK] = ACTIONS(5522), + [anon_sym_STAR] = ACTIONS(5522), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_void] = ACTIONS(5524), + [anon_sym_noreturn] = ACTIONS(5524), + [anon_sym_type] = ACTIONS(5524), + [anon_sym_anyopaque] = ACTIONS(5524), + [anon_sym_bool] = ACTIONS(5524), + [anon_sym_int] = ACTIONS(5524), + [anon_sym_uint] = ACTIONS(5524), + [anon_sym_float] = ACTIONS(5524), + [anon_sym_range] = ACTIONS(5524), + [anon_sym_i8] = ACTIONS(5524), + [anon_sym_i16] = ACTIONS(5524), + [anon_sym_i32] = ACTIONS(5524), + [anon_sym_i64] = ACTIONS(5524), + [anon_sym_u8] = ACTIONS(5524), + [anon_sym_u16] = ACTIONS(5524), + [anon_sym_u32] = ACTIONS(5524), + [anon_sym_u64] = ACTIONS(5524), + [anon_sym_isize] = ACTIONS(5524), + [anon_sym_usize] = ACTIONS(5524), + [anon_sym_f32] = ACTIONS(5524), + [anon_sym_f64] = ACTIONS(5524), + [anon_sym_c_char] = ACTIONS(5524), + [anon_sym_c_schar] = ACTIONS(5524), + [anon_sym_c_uchar] = ACTIONS(5524), + [anon_sym_c_short] = ACTIONS(5524), + [anon_sym_c_ushort] = ACTIONS(5524), + [anon_sym_c_int] = ACTIONS(5524), + [anon_sym_c_uint] = ACTIONS(5524), + [anon_sym_c_long] = ACTIONS(5524), + [anon_sym_c_ulong] = ACTIONS(5524), + [anon_sym_c_longlong] = ACTIONS(5524), + [anon_sym_c_ulonglong] = ACTIONS(5524), + [anon_sym_c_float] = ACTIONS(5524), + [anon_sym_c_double] = ACTIONS(5524), + [anon_sym_c_longdouble] = ACTIONS(5524), + [anon_sym_return] = ACTIONS(5524), + [anon_sym_yield] = ACTIONS(5524), + [anon_sym_COLON] = ACTIONS(5522), + [anon_sym_break] = ACTIONS(5524), + [anon_sym_continue] = ACTIONS(5524), + [anon_sym_defer] = ACTIONS(5524), + [anon_sym_errdefer] = ACTIONS(5524), + [anon_sym_if] = ACTIONS(5524), + [anon_sym_else] = ACTIONS(5524), + [anon_sym_while] = ACTIONS(5524), + [anon_sym_expand] = ACTIONS(5524), + [anon_sym_for] = ACTIONS(5524), + [anon_sym_match] = ACTIONS(5524), + [anon_sym_DOT_DOT] = ACTIONS(5524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5522), + [anon_sym_orelse] = ACTIONS(5524), + [anon_sym_or] = ACTIONS(5524), + [anon_sym_and] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5522), + [anon_sym_BANG_EQ] = ACTIONS(5522), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_LT_EQ] = ACTIONS(5522), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5522), + [anon_sym_AMP] = ACTIONS(5522), + [anon_sym_xor] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5524), + [anon_sym_GT_GT] = ACTIONS(5522), + [anon_sym_LT_LT_PIPE] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5522), + [anon_sym_SLASH] = ACTIONS(5522), + [anon_sym_catch] = ACTIONS(5524), + [anon_sym_TILDE] = ACTIONS(5522), + [anon_sym_try] = ACTIONS(5524), + [anon_sym_DOT] = ACTIONS(5524), + [anon_sym_CARET] = ACTIONS(5522), + [anon_sym_true] = ACTIONS(5524), + [anon_sym_false] = ACTIONS(5524), + [anon_sym_null] = ACTIONS(5524), + [anon_sym_unreachable] = ACTIONS(5524), + [anon_sym_undefined] = ACTIONS(5524), + [sym_sink] = ACTIONS(5524), + [sym_integer] = ACTIONS(5524), + [sym_float] = ACTIONS(5522), + [anon_sym_DQUOTE] = ACTIONS(5522), + [sym_multiline_string] = ACTIONS(5522), + [sym_character] = ACTIONS(5522), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5522), + }, + [STATE(4193)] = { + [ts_builtin_sym_end] = ACTIONS(5526), + [sym_identifier] = ACTIONS(5528), + [anon_sym_import] = ACTIONS(5528), + [anon_sym_test] = ACTIONS(5528), + [anon_sym_hide] = ACTIONS(5528), + [anon_sym_func] = ACTIONS(5528), + [anon_sym_BANG] = ACTIONS(5528), + [anon_sym_struct] = ACTIONS(5528), + [anon_sym_LPAREN] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5526), + [anon_sym_RBRACE] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_DOLLAR] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_QMARK] = ACTIONS(5526), + [anon_sym_STAR] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [anon_sym_void] = ACTIONS(5528), + [anon_sym_noreturn] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_anyopaque] = ACTIONS(5528), + [anon_sym_bool] = ACTIONS(5528), + [anon_sym_int] = ACTIONS(5528), + [anon_sym_uint] = ACTIONS(5528), + [anon_sym_float] = ACTIONS(5528), + [anon_sym_range] = ACTIONS(5528), + [anon_sym_i8] = ACTIONS(5528), + [anon_sym_i16] = ACTIONS(5528), + [anon_sym_i32] = ACTIONS(5528), + [anon_sym_i64] = ACTIONS(5528), + [anon_sym_u8] = ACTIONS(5528), + [anon_sym_u16] = ACTIONS(5528), + [anon_sym_u32] = ACTIONS(5528), + [anon_sym_u64] = ACTIONS(5528), + [anon_sym_isize] = ACTIONS(5528), + [anon_sym_usize] = ACTIONS(5528), + [anon_sym_f32] = ACTIONS(5528), + [anon_sym_f64] = ACTIONS(5528), + [anon_sym_c_char] = ACTIONS(5528), + [anon_sym_c_schar] = ACTIONS(5528), + [anon_sym_c_uchar] = ACTIONS(5528), + [anon_sym_c_short] = ACTIONS(5528), + [anon_sym_c_ushort] = ACTIONS(5528), + [anon_sym_c_int] = ACTIONS(5528), + [anon_sym_c_uint] = ACTIONS(5528), + [anon_sym_c_long] = ACTIONS(5528), + [anon_sym_c_ulong] = ACTIONS(5528), + [anon_sym_c_longlong] = ACTIONS(5528), + [anon_sym_c_ulonglong] = ACTIONS(5528), + [anon_sym_c_float] = ACTIONS(5528), + [anon_sym_c_double] = ACTIONS(5528), + [anon_sym_c_longdouble] = ACTIONS(5528), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_COLON] = ACTIONS(5526), + [anon_sym_break] = ACTIONS(5528), + [anon_sym_continue] = ACTIONS(5528), + [anon_sym_defer] = ACTIONS(5528), + [anon_sym_errdefer] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_else] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_expand] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_DOT_DOT] = ACTIONS(5528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5526), + [anon_sym_orelse] = ACTIONS(5528), + [anon_sym_or] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5526), + [anon_sym_BANG_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_LT_EQ] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_GT_EQ] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(5526), + [anon_sym_xor] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5528), + [anon_sym_GT_GT] = ACTIONS(5526), + [anon_sym_LT_LT_PIPE] = ACTIONS(5526), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_SLASH] = ACTIONS(5526), + [anon_sym_catch] = ACTIONS(5528), + [anon_sym_TILDE] = ACTIONS(5526), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_CARET] = ACTIONS(5526), + [anon_sym_true] = ACTIONS(5528), + [anon_sym_false] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_unreachable] = ACTIONS(5528), + [anon_sym_undefined] = ACTIONS(5528), + [sym_sink] = ACTIONS(5528), + [sym_integer] = ACTIONS(5528), + [sym_float] = ACTIONS(5526), + [anon_sym_DQUOTE] = ACTIONS(5526), + [sym_multiline_string] = ACTIONS(5526), + [sym_character] = ACTIONS(5526), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5526), + }, + [STATE(4194)] = { + [ts_builtin_sym_end] = ACTIONS(5324), + [sym_identifier] = ACTIONS(5326), + [anon_sym_import] = ACTIONS(5326), + [anon_sym_test] = ACTIONS(5326), + [anon_sym_hide] = ACTIONS(5326), + [anon_sym_func] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(5326), + [anon_sym_struct] = ACTIONS(5326), + [anon_sym_LPAREN] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym_void] = ACTIONS(5326), + [anon_sym_noreturn] = ACTIONS(5326), + [anon_sym_type] = ACTIONS(5326), + [anon_sym_anyopaque] = ACTIONS(5326), + [anon_sym_bool] = ACTIONS(5326), + [anon_sym_int] = ACTIONS(5326), + [anon_sym_uint] = ACTIONS(5326), + [anon_sym_float] = ACTIONS(5326), + [anon_sym_range] = ACTIONS(5326), + [anon_sym_i8] = ACTIONS(5326), + [anon_sym_i16] = ACTIONS(5326), + [anon_sym_i32] = ACTIONS(5326), + [anon_sym_i64] = ACTIONS(5326), + [anon_sym_u8] = ACTIONS(5326), + [anon_sym_u16] = ACTIONS(5326), + [anon_sym_u32] = ACTIONS(5326), + [anon_sym_u64] = ACTIONS(5326), + [anon_sym_isize] = ACTIONS(5326), + [anon_sym_usize] = ACTIONS(5326), + [anon_sym_f32] = ACTIONS(5326), + [anon_sym_f64] = ACTIONS(5326), + [anon_sym_c_char] = ACTIONS(5326), + [anon_sym_c_schar] = ACTIONS(5326), + [anon_sym_c_uchar] = ACTIONS(5326), + [anon_sym_c_short] = ACTIONS(5326), + [anon_sym_c_ushort] = ACTIONS(5326), + [anon_sym_c_int] = ACTIONS(5326), + [anon_sym_c_uint] = ACTIONS(5326), + [anon_sym_c_long] = ACTIONS(5326), + [anon_sym_c_ulong] = ACTIONS(5326), + [anon_sym_c_longlong] = ACTIONS(5326), + [anon_sym_c_ulonglong] = ACTIONS(5326), + [anon_sym_c_float] = ACTIONS(5326), + [anon_sym_c_double] = ACTIONS(5326), + [anon_sym_c_longdouble] = ACTIONS(5326), + [anon_sym_return] = ACTIONS(5326), + [anon_sym_yield] = ACTIONS(5326), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_break] = ACTIONS(5326), + [anon_sym_continue] = ACTIONS(5326), + [anon_sym_defer] = ACTIONS(5326), + [anon_sym_errdefer] = ACTIONS(5326), + [anon_sym_if] = ACTIONS(5326), + [anon_sym_else] = ACTIONS(5326), + [anon_sym_while] = ACTIONS(5326), + [anon_sym_expand] = ACTIONS(5326), + [anon_sym_for] = ACTIONS(5326), + [anon_sym_match] = ACTIONS(5326), + [anon_sym_DOT_DOT] = ACTIONS(5326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5324), + [anon_sym_orelse] = ACTIONS(5326), + [anon_sym_or] = ACTIONS(5326), + [anon_sym_and] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5324), + [anon_sym_BANG_EQ] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5326), + [anon_sym_GT_EQ] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_xor] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5326), + [anon_sym_GT_GT] = ACTIONS(5324), + [anon_sym_LT_LT_PIPE] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_catch] = ACTIONS(5326), + [anon_sym_TILDE] = ACTIONS(5324), + [anon_sym_try] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym_true] = ACTIONS(5326), + [anon_sym_false] = ACTIONS(5326), + [anon_sym_null] = ACTIONS(5326), + [anon_sym_unreachable] = ACTIONS(5326), + [anon_sym_undefined] = ACTIONS(5326), + [sym_sink] = ACTIONS(5326), + [sym_integer] = ACTIONS(5326), + [sym_float] = ACTIONS(5324), + [anon_sym_DQUOTE] = ACTIONS(5324), + [sym_multiline_string] = ACTIONS(5324), + [sym_character] = ACTIONS(5324), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5324), + }, + [STATE(4195)] = { + [ts_builtin_sym_end] = ACTIONS(5530), + [sym_identifier] = ACTIONS(5532), + [anon_sym_import] = ACTIONS(5532), + [anon_sym_test] = ACTIONS(5532), + [anon_sym_hide] = ACTIONS(5532), + [anon_sym_func] = ACTIONS(5532), + [anon_sym_BANG] = ACTIONS(5532), + [anon_sym_struct] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5530), + [anon_sym_LBRACE] = ACTIONS(5530), + [anon_sym_RBRACE] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5530), + [anon_sym_DOLLAR] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_QMARK] = ACTIONS(5530), + [anon_sym_STAR] = ACTIONS(5530), + [anon_sym_LBRACK] = ACTIONS(5530), + [anon_sym_void] = ACTIONS(5532), + [anon_sym_noreturn] = ACTIONS(5532), + [anon_sym_type] = ACTIONS(5532), + [anon_sym_anyopaque] = ACTIONS(5532), + [anon_sym_bool] = ACTIONS(5532), + [anon_sym_int] = ACTIONS(5532), + [anon_sym_uint] = ACTIONS(5532), + [anon_sym_float] = ACTIONS(5532), + [anon_sym_range] = ACTIONS(5532), + [anon_sym_i8] = ACTIONS(5532), + [anon_sym_i16] = ACTIONS(5532), + [anon_sym_i32] = ACTIONS(5532), + [anon_sym_i64] = ACTIONS(5532), + [anon_sym_u8] = ACTIONS(5532), + [anon_sym_u16] = ACTIONS(5532), + [anon_sym_u32] = ACTIONS(5532), + [anon_sym_u64] = ACTIONS(5532), + [anon_sym_isize] = ACTIONS(5532), + [anon_sym_usize] = ACTIONS(5532), + [anon_sym_f32] = ACTIONS(5532), + [anon_sym_f64] = ACTIONS(5532), + [anon_sym_c_char] = ACTIONS(5532), + [anon_sym_c_schar] = ACTIONS(5532), + [anon_sym_c_uchar] = ACTIONS(5532), + [anon_sym_c_short] = ACTIONS(5532), + [anon_sym_c_ushort] = ACTIONS(5532), + [anon_sym_c_int] = ACTIONS(5532), + [anon_sym_c_uint] = ACTIONS(5532), + [anon_sym_c_long] = ACTIONS(5532), + [anon_sym_c_ulong] = ACTIONS(5532), + [anon_sym_c_longlong] = ACTIONS(5532), + [anon_sym_c_ulonglong] = ACTIONS(5532), + [anon_sym_c_float] = ACTIONS(5532), + [anon_sym_c_double] = ACTIONS(5532), + [anon_sym_c_longdouble] = ACTIONS(5532), + [anon_sym_return] = ACTIONS(5532), + [anon_sym_yield] = ACTIONS(5532), + [anon_sym_COLON] = ACTIONS(5530), + [anon_sym_break] = ACTIONS(5532), + [anon_sym_continue] = ACTIONS(5532), + [anon_sym_defer] = ACTIONS(5532), + [anon_sym_errdefer] = ACTIONS(5532), + [anon_sym_if] = ACTIONS(5532), + [anon_sym_else] = ACTIONS(5532), + [anon_sym_while] = ACTIONS(5532), + [anon_sym_expand] = ACTIONS(5532), + [anon_sym_for] = ACTIONS(5532), + [anon_sym_match] = ACTIONS(5532), + [anon_sym_DOT_DOT] = ACTIONS(5532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5530), + [anon_sym_orelse] = ACTIONS(5532), + [anon_sym_or] = ACTIONS(5532), + [anon_sym_and] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5530), + [anon_sym_BANG_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_LT_EQ] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_GT_EQ] = ACTIONS(5530), + [anon_sym_AMP] = ACTIONS(5530), + [anon_sym_xor] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5532), + [anon_sym_GT_GT] = ACTIONS(5530), + [anon_sym_LT_LT_PIPE] = ACTIONS(5530), + [anon_sym_PLUS] = ACTIONS(5530), + [anon_sym_SLASH] = ACTIONS(5530), + [anon_sym_catch] = ACTIONS(5532), + [anon_sym_TILDE] = ACTIONS(5530), + [anon_sym_try] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5530), + [anon_sym_true] = ACTIONS(5532), + [anon_sym_false] = ACTIONS(5532), + [anon_sym_null] = ACTIONS(5532), + [anon_sym_unreachable] = ACTIONS(5532), + [anon_sym_undefined] = ACTIONS(5532), + [sym_sink] = ACTIONS(5532), + [sym_integer] = ACTIONS(5532), + [sym_float] = ACTIONS(5530), + [anon_sym_DQUOTE] = ACTIONS(5530), + [sym_multiline_string] = ACTIONS(5530), + [sym_character] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5530), + }, + [STATE(4196)] = { + [ts_builtin_sym_end] = ACTIONS(5534), + [sym_identifier] = ACTIONS(5536), + [anon_sym_import] = ACTIONS(5536), + [anon_sym_test] = ACTIONS(5536), + [anon_sym_hide] = ACTIONS(5536), + [anon_sym_func] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5536), + [anon_sym_struct] = ACTIONS(5536), + [anon_sym_LPAREN] = ACTIONS(5534), + [anon_sym_LBRACE] = ACTIONS(5534), + [anon_sym_RBRACE] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5534), + [anon_sym_DOLLAR] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_STAR] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5534), + [anon_sym_void] = ACTIONS(5536), + [anon_sym_noreturn] = ACTIONS(5536), + [anon_sym_type] = ACTIONS(5536), + [anon_sym_anyopaque] = ACTIONS(5536), + [anon_sym_bool] = ACTIONS(5536), + [anon_sym_int] = ACTIONS(5536), + [anon_sym_uint] = ACTIONS(5536), + [anon_sym_float] = ACTIONS(5536), + [anon_sym_range] = ACTIONS(5536), + [anon_sym_i8] = ACTIONS(5536), + [anon_sym_i16] = ACTIONS(5536), + [anon_sym_i32] = ACTIONS(5536), + [anon_sym_i64] = ACTIONS(5536), + [anon_sym_u8] = ACTIONS(5536), + [anon_sym_u16] = ACTIONS(5536), + [anon_sym_u32] = ACTIONS(5536), + [anon_sym_u64] = ACTIONS(5536), + [anon_sym_isize] = ACTIONS(5536), + [anon_sym_usize] = ACTIONS(5536), + [anon_sym_f32] = ACTIONS(5536), + [anon_sym_f64] = ACTIONS(5536), + [anon_sym_c_char] = ACTIONS(5536), + [anon_sym_c_schar] = ACTIONS(5536), + [anon_sym_c_uchar] = ACTIONS(5536), + [anon_sym_c_short] = ACTIONS(5536), + [anon_sym_c_ushort] = ACTIONS(5536), + [anon_sym_c_int] = ACTIONS(5536), + [anon_sym_c_uint] = ACTIONS(5536), + [anon_sym_c_long] = ACTIONS(5536), + [anon_sym_c_ulong] = ACTIONS(5536), + [anon_sym_c_longlong] = ACTIONS(5536), + [anon_sym_c_ulonglong] = ACTIONS(5536), + [anon_sym_c_float] = ACTIONS(5536), + [anon_sym_c_double] = ACTIONS(5536), + [anon_sym_c_longdouble] = ACTIONS(5536), + [anon_sym_return] = ACTIONS(5536), + [anon_sym_yield] = ACTIONS(5536), + [anon_sym_COLON] = ACTIONS(5534), + [anon_sym_break] = ACTIONS(5536), + [anon_sym_continue] = ACTIONS(5536), + [anon_sym_defer] = ACTIONS(5536), + [anon_sym_errdefer] = ACTIONS(5536), + [anon_sym_if] = ACTIONS(5536), + [anon_sym_else] = ACTIONS(5536), + [anon_sym_while] = ACTIONS(5536), + [anon_sym_expand] = ACTIONS(5536), + [anon_sym_for] = ACTIONS(5536), + [anon_sym_match] = ACTIONS(5536), + [anon_sym_DOT_DOT] = ACTIONS(5536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5534), + [anon_sym_orelse] = ACTIONS(5536), + [anon_sym_or] = ACTIONS(5536), + [anon_sym_and] = ACTIONS(5536), + [anon_sym_EQ_EQ] = ACTIONS(5534), + [anon_sym_BANG_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5536), + [anon_sym_LT_EQ] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5536), + [anon_sym_GT_EQ] = ACTIONS(5534), + [anon_sym_AMP] = ACTIONS(5534), + [anon_sym_xor] = ACTIONS(5536), + [anon_sym_LT_LT] = ACTIONS(5536), + [anon_sym_GT_GT] = ACTIONS(5534), + [anon_sym_LT_LT_PIPE] = ACTIONS(5534), + [anon_sym_PLUS] = ACTIONS(5534), + [anon_sym_SLASH] = ACTIONS(5534), + [anon_sym_catch] = ACTIONS(5536), + [anon_sym_TILDE] = ACTIONS(5534), + [anon_sym_try] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(5536), + [anon_sym_CARET] = ACTIONS(5534), + [anon_sym_true] = ACTIONS(5536), + [anon_sym_false] = ACTIONS(5536), + [anon_sym_null] = ACTIONS(5536), + [anon_sym_unreachable] = ACTIONS(5536), + [anon_sym_undefined] = ACTIONS(5536), + [sym_sink] = ACTIONS(5536), + [sym_integer] = ACTIONS(5536), + [sym_float] = ACTIONS(5534), + [anon_sym_DQUOTE] = ACTIONS(5534), + [sym_multiline_string] = ACTIONS(5534), + [sym_character] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5534), + }, + [STATE(4197)] = { + [ts_builtin_sym_end] = ACTIONS(5482), + [sym_identifier] = ACTIONS(5484), + [anon_sym_import] = ACTIONS(5484), + [anon_sym_test] = ACTIONS(5484), + [anon_sym_hide] = ACTIONS(5484), + [anon_sym_func] = ACTIONS(5484), + [anon_sym_BANG] = ACTIONS(5484), + [anon_sym_struct] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5482), + [anon_sym_DOLLAR] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5482), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_void] = ACTIONS(5484), + [anon_sym_noreturn] = ACTIONS(5484), + [anon_sym_type] = ACTIONS(5484), + [anon_sym_anyopaque] = ACTIONS(5484), + [anon_sym_bool] = ACTIONS(5484), + [anon_sym_int] = ACTIONS(5484), + [anon_sym_uint] = ACTIONS(5484), + [anon_sym_float] = ACTIONS(5484), + [anon_sym_range] = ACTIONS(5484), + [anon_sym_i8] = ACTIONS(5484), + [anon_sym_i16] = ACTIONS(5484), + [anon_sym_i32] = ACTIONS(5484), + [anon_sym_i64] = ACTIONS(5484), + [anon_sym_u8] = ACTIONS(5484), + [anon_sym_u16] = ACTIONS(5484), + [anon_sym_u32] = ACTIONS(5484), + [anon_sym_u64] = ACTIONS(5484), + [anon_sym_isize] = ACTIONS(5484), + [anon_sym_usize] = ACTIONS(5484), + [anon_sym_f32] = ACTIONS(5484), + [anon_sym_f64] = ACTIONS(5484), + [anon_sym_c_char] = ACTIONS(5484), + [anon_sym_c_schar] = ACTIONS(5484), + [anon_sym_c_uchar] = ACTIONS(5484), + [anon_sym_c_short] = ACTIONS(5484), + [anon_sym_c_ushort] = ACTIONS(5484), + [anon_sym_c_int] = ACTIONS(5484), + [anon_sym_c_uint] = ACTIONS(5484), + [anon_sym_c_long] = ACTIONS(5484), + [anon_sym_c_ulong] = ACTIONS(5484), + [anon_sym_c_longlong] = ACTIONS(5484), + [anon_sym_c_ulonglong] = ACTIONS(5484), + [anon_sym_c_float] = ACTIONS(5484), + [anon_sym_c_double] = ACTIONS(5484), + [anon_sym_c_longdouble] = ACTIONS(5484), + [anon_sym_return] = ACTIONS(5484), + [anon_sym_yield] = ACTIONS(5484), + [anon_sym_COLON] = ACTIONS(5482), + [anon_sym_break] = ACTIONS(5484), + [anon_sym_continue] = ACTIONS(5484), + [anon_sym_defer] = ACTIONS(5484), + [anon_sym_errdefer] = ACTIONS(5484), + [anon_sym_if] = ACTIONS(5484), + [anon_sym_else] = ACTIONS(5484), + [anon_sym_while] = ACTIONS(5484), + [anon_sym_expand] = ACTIONS(5484), + [anon_sym_for] = ACTIONS(5484), + [anon_sym_match] = ACTIONS(5484), + [anon_sym_DOT_DOT] = ACTIONS(5484), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5482), + [anon_sym_orelse] = ACTIONS(5484), + [anon_sym_or] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_LT] = ACTIONS(5484), + [anon_sym_LT_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5482), + [anon_sym_xor] = ACTIONS(5484), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5482), + [anon_sym_LT_LT_PIPE] = ACTIONS(5482), + [anon_sym_PLUS] = ACTIONS(5482), + [anon_sym_SLASH] = ACTIONS(5482), + [anon_sym_catch] = ACTIONS(5484), + [anon_sym_TILDE] = ACTIONS(5482), + [anon_sym_try] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5482), + [anon_sym_true] = ACTIONS(5484), + [anon_sym_false] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), + [anon_sym_unreachable] = ACTIONS(5484), + [anon_sym_undefined] = ACTIONS(5484), + [sym_sink] = ACTIONS(5484), + [sym_integer] = ACTIONS(5484), + [sym_float] = ACTIONS(5482), + [anon_sym_DQUOTE] = ACTIONS(5482), + [sym_multiline_string] = ACTIONS(5482), + [sym_character] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5482), + }, + [STATE(4198)] = { + [ts_builtin_sym_end] = ACTIONS(5490), + [sym_identifier] = ACTIONS(5492), + [anon_sym_import] = ACTIONS(5492), + [anon_sym_test] = ACTIONS(5492), + [anon_sym_hide] = ACTIONS(5492), + [anon_sym_func] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(5492), + [anon_sym_struct] = ACTIONS(5492), + [anon_sym_LPAREN] = ACTIONS(5490), + [anon_sym_LBRACE] = ACTIONS(5490), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5490), + [anon_sym_DOLLAR] = ACTIONS(5490), + [anon_sym_PIPE] = ACTIONS(5490), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5490), + [anon_sym_LBRACK] = ACTIONS(5490), + [anon_sym_void] = ACTIONS(5492), + [anon_sym_noreturn] = ACTIONS(5492), + [anon_sym_type] = ACTIONS(5492), + [anon_sym_anyopaque] = ACTIONS(5492), + [anon_sym_bool] = ACTIONS(5492), + [anon_sym_int] = ACTIONS(5492), + [anon_sym_uint] = ACTIONS(5492), + [anon_sym_float] = ACTIONS(5492), + [anon_sym_range] = ACTIONS(5492), + [anon_sym_i8] = ACTIONS(5492), + [anon_sym_i16] = ACTIONS(5492), + [anon_sym_i32] = ACTIONS(5492), + [anon_sym_i64] = ACTIONS(5492), + [anon_sym_u8] = ACTIONS(5492), + [anon_sym_u16] = ACTIONS(5492), + [anon_sym_u32] = ACTIONS(5492), + [anon_sym_u64] = ACTIONS(5492), + [anon_sym_isize] = ACTIONS(5492), + [anon_sym_usize] = ACTIONS(5492), + [anon_sym_f32] = ACTIONS(5492), + [anon_sym_f64] = ACTIONS(5492), + [anon_sym_c_char] = ACTIONS(5492), + [anon_sym_c_schar] = ACTIONS(5492), + [anon_sym_c_uchar] = ACTIONS(5492), + [anon_sym_c_short] = ACTIONS(5492), + [anon_sym_c_ushort] = ACTIONS(5492), + [anon_sym_c_int] = ACTIONS(5492), + [anon_sym_c_uint] = ACTIONS(5492), + [anon_sym_c_long] = ACTIONS(5492), + [anon_sym_c_ulong] = ACTIONS(5492), + [anon_sym_c_longlong] = ACTIONS(5492), + [anon_sym_c_ulonglong] = ACTIONS(5492), + [anon_sym_c_float] = ACTIONS(5492), + [anon_sym_c_double] = ACTIONS(5492), + [anon_sym_c_longdouble] = ACTIONS(5492), + [anon_sym_return] = ACTIONS(5492), + [anon_sym_yield] = ACTIONS(5492), + [anon_sym_COLON] = ACTIONS(5490), + [anon_sym_break] = ACTIONS(5492), + [anon_sym_continue] = ACTIONS(5492), + [anon_sym_defer] = ACTIONS(5492), + [anon_sym_errdefer] = ACTIONS(5492), + [anon_sym_if] = ACTIONS(5492), + [anon_sym_else] = ACTIONS(5492), + [anon_sym_while] = ACTIONS(5492), + [anon_sym_expand] = ACTIONS(5492), + [anon_sym_for] = ACTIONS(5492), + [anon_sym_match] = ACTIONS(5492), + [anon_sym_DOT_DOT] = ACTIONS(5492), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5490), + [anon_sym_orelse] = ACTIONS(5492), + [anon_sym_or] = ACTIONS(5492), + [anon_sym_and] = ACTIONS(5492), + [anon_sym_EQ_EQ] = ACTIONS(5490), + [anon_sym_BANG_EQ] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5492), + [anon_sym_LT_EQ] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5492), + [anon_sym_GT_EQ] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5490), + [anon_sym_xor] = ACTIONS(5492), + [anon_sym_LT_LT] = ACTIONS(5492), + [anon_sym_GT_GT] = ACTIONS(5490), + [anon_sym_LT_LT_PIPE] = ACTIONS(5490), + [anon_sym_PLUS] = ACTIONS(5490), + [anon_sym_SLASH] = ACTIONS(5490), + [anon_sym_catch] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5490), + [anon_sym_try] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(5492), + [anon_sym_CARET] = ACTIONS(5490), + [anon_sym_true] = ACTIONS(5492), + [anon_sym_false] = ACTIONS(5492), + [anon_sym_null] = ACTIONS(5492), + [anon_sym_unreachable] = ACTIONS(5492), + [anon_sym_undefined] = ACTIONS(5492), + [sym_sink] = ACTIONS(5492), + [sym_integer] = ACTIONS(5492), + [sym_float] = ACTIONS(5490), + [anon_sym_DQUOTE] = ACTIONS(5490), + [sym_multiline_string] = ACTIONS(5490), + [sym_character] = ACTIONS(5490), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5490), + }, + [STATE(4199)] = { + [ts_builtin_sym_end] = ACTIONS(5494), + [sym_identifier] = ACTIONS(5496), + [anon_sym_import] = ACTIONS(5496), + [anon_sym_test] = ACTIONS(5496), + [anon_sym_hide] = ACTIONS(5496), + [anon_sym_func] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5496), + [anon_sym_struct] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5494), + [anon_sym_RBRACE] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_DOLLAR] = ACTIONS(5494), + [anon_sym_PIPE] = ACTIONS(5494), + [anon_sym_QMARK] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_void] = ACTIONS(5496), + [anon_sym_noreturn] = ACTIONS(5496), + [anon_sym_type] = ACTIONS(5496), + [anon_sym_anyopaque] = ACTIONS(5496), + [anon_sym_bool] = ACTIONS(5496), + [anon_sym_int] = ACTIONS(5496), + [anon_sym_uint] = ACTIONS(5496), + [anon_sym_float] = ACTIONS(5496), + [anon_sym_range] = ACTIONS(5496), + [anon_sym_i8] = ACTIONS(5496), + [anon_sym_i16] = ACTIONS(5496), + [anon_sym_i32] = ACTIONS(5496), + [anon_sym_i64] = ACTIONS(5496), + [anon_sym_u8] = ACTIONS(5496), + [anon_sym_u16] = ACTIONS(5496), + [anon_sym_u32] = ACTIONS(5496), + [anon_sym_u64] = ACTIONS(5496), + [anon_sym_isize] = ACTIONS(5496), + [anon_sym_usize] = ACTIONS(5496), + [anon_sym_f32] = ACTIONS(5496), + [anon_sym_f64] = ACTIONS(5496), + [anon_sym_c_char] = ACTIONS(5496), + [anon_sym_c_schar] = ACTIONS(5496), + [anon_sym_c_uchar] = ACTIONS(5496), + [anon_sym_c_short] = ACTIONS(5496), + [anon_sym_c_ushort] = ACTIONS(5496), + [anon_sym_c_int] = ACTIONS(5496), + [anon_sym_c_uint] = ACTIONS(5496), + [anon_sym_c_long] = ACTIONS(5496), + [anon_sym_c_ulong] = ACTIONS(5496), + [anon_sym_c_longlong] = ACTIONS(5496), + [anon_sym_c_ulonglong] = ACTIONS(5496), + [anon_sym_c_float] = ACTIONS(5496), + [anon_sym_c_double] = ACTIONS(5496), + [anon_sym_c_longdouble] = ACTIONS(5496), + [anon_sym_return] = ACTIONS(5496), + [anon_sym_yield] = ACTIONS(5496), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_break] = ACTIONS(5496), + [anon_sym_continue] = ACTIONS(5496), + [anon_sym_defer] = ACTIONS(5496), + [anon_sym_errdefer] = ACTIONS(5496), + [anon_sym_if] = ACTIONS(5496), + [anon_sym_else] = ACTIONS(5496), + [anon_sym_while] = ACTIONS(5496), + [anon_sym_expand] = ACTIONS(5496), + [anon_sym_for] = ACTIONS(5496), + [anon_sym_match] = ACTIONS(5496), + [anon_sym_DOT_DOT] = ACTIONS(5496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5494), + [anon_sym_orelse] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5496), + [anon_sym_and] = ACTIONS(5496), + [anon_sym_EQ_EQ] = ACTIONS(5494), + [anon_sym_BANG_EQ] = ACTIONS(5494), + [anon_sym_LT] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5494), + [anon_sym_GT] = ACTIONS(5496), + [anon_sym_GT_EQ] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5494), + [anon_sym_xor] = ACTIONS(5496), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5494), + [anon_sym_LT_LT_PIPE] = ACTIONS(5494), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_SLASH] = ACTIONS(5494), + [anon_sym_catch] = ACTIONS(5496), + [anon_sym_TILDE] = ACTIONS(5494), + [anon_sym_try] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5496), + [anon_sym_CARET] = ACTIONS(5494), + [anon_sym_true] = ACTIONS(5496), + [anon_sym_false] = ACTIONS(5496), + [anon_sym_null] = ACTIONS(5496), + [anon_sym_unreachable] = ACTIONS(5496), + [anon_sym_undefined] = ACTIONS(5496), + [sym_sink] = ACTIONS(5496), + [sym_integer] = ACTIONS(5496), + [sym_float] = ACTIONS(5494), + [anon_sym_DQUOTE] = ACTIONS(5494), + [sym_multiline_string] = ACTIONS(5494), + [sym_character] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5494), + }, + [STATE(4200)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4227), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7050), + }, + [STATE(4201)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4202)] = { + [ts_builtin_sym_end] = ACTIONS(4502), + [sym_identifier] = ACTIONS(4504), + [anon_sym_import] = ACTIONS(4504), + [anon_sym_test] = ACTIONS(4504), + [anon_sym_hide] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_DOLLAR] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4502), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_COLON] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_errdefer] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_expand] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4502), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE] = ACTIONS(4502), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [anon_sym_true] = ACTIONS(4504), + [anon_sym_false] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_unreachable] = ACTIONS(4504), + [anon_sym_undefined] = ACTIONS(4504), + [sym_sink] = ACTIONS(4504), + [sym_integer] = ACTIONS(4504), + [sym_float] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_multiline_string] = ACTIONS(4502), + [sym_character] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(4203)] = { + [ts_builtin_sym_end] = ACTIONS(5498), + [sym_identifier] = ACTIONS(5500), + [anon_sym_import] = ACTIONS(5500), + [anon_sym_test] = ACTIONS(5500), + [anon_sym_hide] = ACTIONS(5500), + [anon_sym_func] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5500), + [anon_sym_struct] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_DOLLAR] = ACTIONS(5498), + [anon_sym_PIPE] = ACTIONS(5498), + [anon_sym_QMARK] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(5498), + [anon_sym_LBRACK] = ACTIONS(5498), + [anon_sym_void] = ACTIONS(5500), + [anon_sym_noreturn] = ACTIONS(5500), + [anon_sym_type] = ACTIONS(5500), + [anon_sym_anyopaque] = ACTIONS(5500), + [anon_sym_bool] = ACTIONS(5500), + [anon_sym_int] = ACTIONS(5500), + [anon_sym_uint] = ACTIONS(5500), + [anon_sym_float] = ACTIONS(5500), + [anon_sym_range] = ACTIONS(5500), + [anon_sym_i8] = ACTIONS(5500), + [anon_sym_i16] = ACTIONS(5500), + [anon_sym_i32] = ACTIONS(5500), + [anon_sym_i64] = ACTIONS(5500), + [anon_sym_u8] = ACTIONS(5500), + [anon_sym_u16] = ACTIONS(5500), + [anon_sym_u32] = ACTIONS(5500), + [anon_sym_u64] = ACTIONS(5500), + [anon_sym_isize] = ACTIONS(5500), + [anon_sym_usize] = ACTIONS(5500), + [anon_sym_f32] = ACTIONS(5500), + [anon_sym_f64] = ACTIONS(5500), + [anon_sym_c_char] = ACTIONS(5500), + [anon_sym_c_schar] = ACTIONS(5500), + [anon_sym_c_uchar] = ACTIONS(5500), + [anon_sym_c_short] = ACTIONS(5500), + [anon_sym_c_ushort] = ACTIONS(5500), + [anon_sym_c_int] = ACTIONS(5500), + [anon_sym_c_uint] = ACTIONS(5500), + [anon_sym_c_long] = ACTIONS(5500), + [anon_sym_c_ulong] = ACTIONS(5500), + [anon_sym_c_longlong] = ACTIONS(5500), + [anon_sym_c_ulonglong] = ACTIONS(5500), + [anon_sym_c_float] = ACTIONS(5500), + [anon_sym_c_double] = ACTIONS(5500), + [anon_sym_c_longdouble] = ACTIONS(5500), + [anon_sym_return] = ACTIONS(5500), + [anon_sym_yield] = ACTIONS(5500), + [anon_sym_COLON] = ACTIONS(5498), + [anon_sym_break] = ACTIONS(5500), + [anon_sym_continue] = ACTIONS(5500), + [anon_sym_defer] = ACTIONS(5500), + [anon_sym_errdefer] = ACTIONS(5500), + [anon_sym_if] = ACTIONS(5500), + [anon_sym_else] = ACTIONS(5500), + [anon_sym_while] = ACTIONS(5500), + [anon_sym_expand] = ACTIONS(5500), + [anon_sym_for] = ACTIONS(5500), + [anon_sym_match] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5498), + [anon_sym_orelse] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5498), + [anon_sym_BANG_EQ] = ACTIONS(5498), + [anon_sym_LT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5498), + [anon_sym_GT] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5498), + [anon_sym_xor] = ACTIONS(5500), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5498), + [anon_sym_LT_LT_PIPE] = ACTIONS(5498), + [anon_sym_PLUS] = ACTIONS(5498), + [anon_sym_SLASH] = ACTIONS(5498), + [anon_sym_catch] = ACTIONS(5500), + [anon_sym_TILDE] = ACTIONS(5498), + [anon_sym_try] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5500), + [anon_sym_CARET] = ACTIONS(5498), + [anon_sym_true] = ACTIONS(5500), + [anon_sym_false] = ACTIONS(5500), + [anon_sym_null] = ACTIONS(5500), + [anon_sym_unreachable] = ACTIONS(5500), + [anon_sym_undefined] = ACTIONS(5500), + [sym_sink] = ACTIONS(5500), + [sym_integer] = ACTIONS(5500), + [sym_float] = ACTIONS(5498), + [anon_sym_DQUOTE] = ACTIONS(5498), + [sym_multiline_string] = ACTIONS(5498), + [sym_character] = ACTIONS(5498), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5498), + }, + [STATE(4204)] = { + [ts_builtin_sym_end] = ACTIONS(5592), + [sym_identifier] = ACTIONS(5594), + [anon_sym_import] = ACTIONS(5594), + [anon_sym_test] = ACTIONS(5594), + [anon_sym_hide] = ACTIONS(5594), + [anon_sym_func] = ACTIONS(5594), + [anon_sym_BANG] = ACTIONS(5594), + [anon_sym_struct] = ACTIONS(5594), + [anon_sym_LPAREN] = ACTIONS(5592), + [anon_sym_LBRACE] = ACTIONS(5592), + [anon_sym_RBRACE] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5592), + [anon_sym_DOLLAR] = ACTIONS(5592), + [anon_sym_PIPE] = ACTIONS(5592), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_STAR] = ACTIONS(5592), + [anon_sym_LBRACK] = ACTIONS(5592), + [anon_sym_void] = ACTIONS(5594), + [anon_sym_noreturn] = ACTIONS(5594), + [anon_sym_type] = ACTIONS(5594), + [anon_sym_anyopaque] = ACTIONS(5594), + [anon_sym_bool] = ACTIONS(5594), + [anon_sym_int] = ACTIONS(5594), + [anon_sym_uint] = ACTIONS(5594), + [anon_sym_float] = ACTIONS(5594), + [anon_sym_range] = ACTIONS(5594), + [anon_sym_i8] = ACTIONS(5594), + [anon_sym_i16] = ACTIONS(5594), + [anon_sym_i32] = ACTIONS(5594), + [anon_sym_i64] = ACTIONS(5594), + [anon_sym_u8] = ACTIONS(5594), + [anon_sym_u16] = ACTIONS(5594), + [anon_sym_u32] = ACTIONS(5594), + [anon_sym_u64] = ACTIONS(5594), + [anon_sym_isize] = ACTIONS(5594), + [anon_sym_usize] = ACTIONS(5594), + [anon_sym_f32] = ACTIONS(5594), + [anon_sym_f64] = ACTIONS(5594), + [anon_sym_c_char] = ACTIONS(5594), + [anon_sym_c_schar] = ACTIONS(5594), + [anon_sym_c_uchar] = ACTIONS(5594), + [anon_sym_c_short] = ACTIONS(5594), + [anon_sym_c_ushort] = ACTIONS(5594), + [anon_sym_c_int] = ACTIONS(5594), + [anon_sym_c_uint] = ACTIONS(5594), + [anon_sym_c_long] = ACTIONS(5594), + [anon_sym_c_ulong] = ACTIONS(5594), + [anon_sym_c_longlong] = ACTIONS(5594), + [anon_sym_c_ulonglong] = ACTIONS(5594), + [anon_sym_c_float] = ACTIONS(5594), + [anon_sym_c_double] = ACTIONS(5594), + [anon_sym_c_longdouble] = ACTIONS(5594), + [anon_sym_return] = ACTIONS(5594), + [anon_sym_yield] = ACTIONS(5594), + [anon_sym_COLON] = ACTIONS(5592), + [anon_sym_break] = ACTIONS(5594), + [anon_sym_continue] = ACTIONS(5594), + [anon_sym_defer] = ACTIONS(5594), + [anon_sym_errdefer] = ACTIONS(5594), + [anon_sym_if] = ACTIONS(5594), + [anon_sym_else] = ACTIONS(5594), + [anon_sym_while] = ACTIONS(5594), + [anon_sym_expand] = ACTIONS(5594), + [anon_sym_for] = ACTIONS(5594), + [anon_sym_match] = ACTIONS(5594), + [anon_sym_DOT_DOT] = ACTIONS(5594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5592), + [anon_sym_orelse] = ACTIONS(5594), + [anon_sym_or] = ACTIONS(5594), + [anon_sym_and] = ACTIONS(5594), + [anon_sym_EQ_EQ] = ACTIONS(5592), + [anon_sym_BANG_EQ] = ACTIONS(5592), + [anon_sym_LT] = ACTIONS(5594), + [anon_sym_LT_EQ] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5594), + [anon_sym_GT_EQ] = ACTIONS(5592), + [anon_sym_AMP] = ACTIONS(5592), + [anon_sym_xor] = ACTIONS(5594), + [anon_sym_LT_LT] = ACTIONS(5594), + [anon_sym_GT_GT] = ACTIONS(5592), + [anon_sym_LT_LT_PIPE] = ACTIONS(5592), + [anon_sym_PLUS] = ACTIONS(5592), + [anon_sym_SLASH] = ACTIONS(5592), + [anon_sym_catch] = ACTIONS(5594), + [anon_sym_TILDE] = ACTIONS(5592), + [anon_sym_try] = ACTIONS(5594), + [anon_sym_DOT] = ACTIONS(5594), + [anon_sym_CARET] = ACTIONS(5592), + [anon_sym_true] = ACTIONS(5594), + [anon_sym_false] = ACTIONS(5594), + [anon_sym_null] = ACTIONS(5594), + [anon_sym_unreachable] = ACTIONS(5594), + [anon_sym_undefined] = ACTIONS(5594), + [sym_sink] = ACTIONS(5594), + [sym_integer] = ACTIONS(5594), + [sym_float] = ACTIONS(5592), + [anon_sym_DQUOTE] = ACTIONS(5592), + [sym_multiline_string] = ACTIONS(5592), + [sym_character] = ACTIONS(5592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5592), + }, + [STATE(4205)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4133), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7052), + }, + [STATE(4206)] = { + [ts_builtin_sym_end] = ACTIONS(5596), + [sym_identifier] = ACTIONS(5598), + [anon_sym_import] = ACTIONS(5598), + [anon_sym_test] = ACTIONS(5598), + [anon_sym_hide] = ACTIONS(5598), + [anon_sym_func] = ACTIONS(5598), + [anon_sym_BANG] = ACTIONS(5598), + [anon_sym_struct] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5596), + [anon_sym_LBRACE] = ACTIONS(5596), + [anon_sym_RBRACE] = ACTIONS(5596), + [anon_sym_DASH] = ACTIONS(5596), + [anon_sym_DOLLAR] = ACTIONS(5596), + [anon_sym_PIPE] = ACTIONS(5596), + [anon_sym_QMARK] = ACTIONS(5596), + [anon_sym_STAR] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(5596), + [anon_sym_void] = ACTIONS(5598), + [anon_sym_noreturn] = ACTIONS(5598), + [anon_sym_type] = ACTIONS(5598), + [anon_sym_anyopaque] = ACTIONS(5598), + [anon_sym_bool] = ACTIONS(5598), + [anon_sym_int] = ACTIONS(5598), + [anon_sym_uint] = ACTIONS(5598), + [anon_sym_float] = ACTIONS(5598), + [anon_sym_range] = ACTIONS(5598), + [anon_sym_i8] = ACTIONS(5598), + [anon_sym_i16] = ACTIONS(5598), + [anon_sym_i32] = ACTIONS(5598), + [anon_sym_i64] = ACTIONS(5598), + [anon_sym_u8] = ACTIONS(5598), + [anon_sym_u16] = ACTIONS(5598), + [anon_sym_u32] = ACTIONS(5598), + [anon_sym_u64] = ACTIONS(5598), + [anon_sym_isize] = ACTIONS(5598), + [anon_sym_usize] = ACTIONS(5598), + [anon_sym_f32] = ACTIONS(5598), + [anon_sym_f64] = ACTIONS(5598), + [anon_sym_c_char] = ACTIONS(5598), + [anon_sym_c_schar] = ACTIONS(5598), + [anon_sym_c_uchar] = ACTIONS(5598), + [anon_sym_c_short] = ACTIONS(5598), + [anon_sym_c_ushort] = ACTIONS(5598), + [anon_sym_c_int] = ACTIONS(5598), + [anon_sym_c_uint] = ACTIONS(5598), + [anon_sym_c_long] = ACTIONS(5598), + [anon_sym_c_ulong] = ACTIONS(5598), + [anon_sym_c_longlong] = ACTIONS(5598), + [anon_sym_c_ulonglong] = ACTIONS(5598), + [anon_sym_c_float] = ACTIONS(5598), + [anon_sym_c_double] = ACTIONS(5598), + [anon_sym_c_longdouble] = ACTIONS(5598), + [anon_sym_return] = ACTIONS(5598), + [anon_sym_yield] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5596), + [anon_sym_break] = ACTIONS(5598), + [anon_sym_continue] = ACTIONS(5598), + [anon_sym_defer] = ACTIONS(5598), + [anon_sym_errdefer] = ACTIONS(5598), + [anon_sym_if] = ACTIONS(5598), + [anon_sym_else] = ACTIONS(5598), + [anon_sym_while] = ACTIONS(5598), + [anon_sym_expand] = ACTIONS(5598), + [anon_sym_for] = ACTIONS(5598), + [anon_sym_match] = ACTIONS(5598), + [anon_sym_DOT_DOT] = ACTIONS(5598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5596), + [anon_sym_orelse] = ACTIONS(5598), + [anon_sym_or] = ACTIONS(5598), + [anon_sym_and] = ACTIONS(5598), + [anon_sym_EQ_EQ] = ACTIONS(5596), + [anon_sym_BANG_EQ] = ACTIONS(5596), + [anon_sym_LT] = ACTIONS(5598), + [anon_sym_LT_EQ] = ACTIONS(5596), + [anon_sym_GT] = ACTIONS(5598), + [anon_sym_GT_EQ] = ACTIONS(5596), + [anon_sym_AMP] = ACTIONS(5596), + [anon_sym_xor] = ACTIONS(5598), + [anon_sym_LT_LT] = ACTIONS(5598), + [anon_sym_GT_GT] = ACTIONS(5596), + [anon_sym_LT_LT_PIPE] = ACTIONS(5596), + [anon_sym_PLUS] = ACTIONS(5596), + [anon_sym_SLASH] = ACTIONS(5596), + [anon_sym_catch] = ACTIONS(5598), + [anon_sym_TILDE] = ACTIONS(5596), + [anon_sym_try] = ACTIONS(5598), + [anon_sym_DOT] = ACTIONS(5598), + [anon_sym_CARET] = ACTIONS(5596), + [anon_sym_true] = ACTIONS(5598), + [anon_sym_false] = ACTIONS(5598), + [anon_sym_null] = ACTIONS(5598), + [anon_sym_unreachable] = ACTIONS(5598), + [anon_sym_undefined] = ACTIONS(5598), + [sym_sink] = ACTIONS(5598), + [sym_integer] = ACTIONS(5598), + [sym_float] = ACTIONS(5596), + [anon_sym_DQUOTE] = ACTIONS(5596), + [sym_multiline_string] = ACTIONS(5596), + [sym_character] = ACTIONS(5596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5596), + }, + [STATE(4207)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7527), + [sym_error_capture] = STATE(4915), + [sym_if_statement] = STATE(7527), + [sym_while_statement] = STATE(7527), + [sym_for_statement] = STATE(7527), + [sym_match_statement] = STATE(7527), + [sym_expression] = STATE(7149), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4916), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7054), + }, + [STATE(4208)] = { + [ts_builtin_sym_end] = ACTIONS(5380), + [sym_identifier] = ACTIONS(5382), + [anon_sym_import] = ACTIONS(5382), + [anon_sym_test] = ACTIONS(5382), + [anon_sym_hide] = ACTIONS(5382), + [anon_sym_func] = ACTIONS(5382), + [anon_sym_BANG] = ACTIONS(5382), + [anon_sym_struct] = ACTIONS(5382), + [anon_sym_LPAREN] = ACTIONS(5380), + [anon_sym_LBRACE] = ACTIONS(5380), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_QMARK] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_LBRACK] = ACTIONS(5380), + [anon_sym_void] = ACTIONS(5382), + [anon_sym_noreturn] = ACTIONS(5382), + [anon_sym_type] = ACTIONS(5382), + [anon_sym_anyopaque] = ACTIONS(5382), + [anon_sym_bool] = ACTIONS(5382), + [anon_sym_int] = ACTIONS(5382), + [anon_sym_uint] = ACTIONS(5382), + [anon_sym_float] = ACTIONS(5382), + [anon_sym_range] = ACTIONS(5382), + [anon_sym_i8] = ACTIONS(5382), + [anon_sym_i16] = ACTIONS(5382), + [anon_sym_i32] = ACTIONS(5382), + [anon_sym_i64] = ACTIONS(5382), + [anon_sym_u8] = ACTIONS(5382), + [anon_sym_u16] = ACTIONS(5382), + [anon_sym_u32] = ACTIONS(5382), + [anon_sym_u64] = ACTIONS(5382), + [anon_sym_isize] = ACTIONS(5382), + [anon_sym_usize] = ACTIONS(5382), + [anon_sym_f32] = ACTIONS(5382), + [anon_sym_f64] = ACTIONS(5382), + [anon_sym_c_char] = ACTIONS(5382), + [anon_sym_c_schar] = ACTIONS(5382), + [anon_sym_c_uchar] = ACTIONS(5382), + [anon_sym_c_short] = ACTIONS(5382), + [anon_sym_c_ushort] = ACTIONS(5382), + [anon_sym_c_int] = ACTIONS(5382), + [anon_sym_c_uint] = ACTIONS(5382), + [anon_sym_c_long] = ACTIONS(5382), + [anon_sym_c_ulong] = ACTIONS(5382), + [anon_sym_c_longlong] = ACTIONS(5382), + [anon_sym_c_ulonglong] = ACTIONS(5382), + [anon_sym_c_float] = ACTIONS(5382), + [anon_sym_c_double] = ACTIONS(5382), + [anon_sym_c_longdouble] = ACTIONS(5382), + [anon_sym_return] = ACTIONS(5382), + [anon_sym_yield] = ACTIONS(5382), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_break] = ACTIONS(5382), + [anon_sym_continue] = ACTIONS(5382), + [anon_sym_defer] = ACTIONS(5382), + [anon_sym_errdefer] = ACTIONS(5382), + [anon_sym_if] = ACTIONS(5382), + [anon_sym_else] = ACTIONS(5382), + [anon_sym_while] = ACTIONS(5382), + [anon_sym_expand] = ACTIONS(5382), + [anon_sym_for] = ACTIONS(5382), + [anon_sym_match] = ACTIONS(5382), + [anon_sym_DOT_DOT] = ACTIONS(5382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5380), + [anon_sym_orelse] = ACTIONS(5382), + [anon_sym_or] = ACTIONS(5382), + [anon_sym_and] = ACTIONS(5382), + [anon_sym_EQ_EQ] = ACTIONS(5380), + [anon_sym_BANG_EQ] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5382), + [anon_sym_LT_EQ] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5382), + [anon_sym_GT_EQ] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(5380), + [anon_sym_xor] = ACTIONS(5382), + [anon_sym_LT_LT] = ACTIONS(5382), + [anon_sym_GT_GT] = ACTIONS(5380), + [anon_sym_LT_LT_PIPE] = ACTIONS(5380), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_catch] = ACTIONS(5382), + [anon_sym_TILDE] = ACTIONS(5380), + [anon_sym_try] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5382), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym_true] = ACTIONS(5382), + [anon_sym_false] = ACTIONS(5382), + [anon_sym_null] = ACTIONS(5382), + [anon_sym_unreachable] = ACTIONS(5382), + [anon_sym_undefined] = ACTIONS(5382), + [sym_sink] = ACTIONS(5382), + [sym_integer] = ACTIONS(5382), + [sym_float] = ACTIONS(5380), + [anon_sym_DQUOTE] = ACTIONS(5380), + [sym_multiline_string] = ACTIONS(5380), + [sym_character] = ACTIONS(5380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5380), + }, + [STATE(4209)] = { + [ts_builtin_sym_end] = ACTIONS(5096), + [sym_identifier] = ACTIONS(5098), + [anon_sym_import] = ACTIONS(5098), + [anon_sym_test] = ACTIONS(5098), + [anon_sym_hide] = ACTIONS(5098), + [anon_sym_func] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_struct] = ACTIONS(5098), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_void] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym_type] = ACTIONS(5098), + [anon_sym_anyopaque] = ACTIONS(5098), + [anon_sym_bool] = ACTIONS(5098), + [anon_sym_int] = ACTIONS(5098), + [anon_sym_uint] = ACTIONS(5098), + [anon_sym_float] = ACTIONS(5098), + [anon_sym_range] = ACTIONS(5098), + [anon_sym_i8] = ACTIONS(5098), + [anon_sym_i16] = ACTIONS(5098), + [anon_sym_i32] = ACTIONS(5098), + [anon_sym_i64] = ACTIONS(5098), + [anon_sym_u8] = ACTIONS(5098), + [anon_sym_u16] = ACTIONS(5098), + [anon_sym_u32] = ACTIONS(5098), + [anon_sym_u64] = ACTIONS(5098), + [anon_sym_isize] = ACTIONS(5098), + [anon_sym_usize] = ACTIONS(5098), + [anon_sym_f32] = ACTIONS(5098), + [anon_sym_f64] = ACTIONS(5098), + [anon_sym_c_char] = ACTIONS(5098), + [anon_sym_c_schar] = ACTIONS(5098), + [anon_sym_c_uchar] = ACTIONS(5098), + [anon_sym_c_short] = ACTIONS(5098), + [anon_sym_c_ushort] = ACTIONS(5098), + [anon_sym_c_int] = ACTIONS(5098), + [anon_sym_c_uint] = ACTIONS(5098), + [anon_sym_c_long] = ACTIONS(5098), + [anon_sym_c_ulong] = ACTIONS(5098), + [anon_sym_c_longlong] = ACTIONS(5098), + [anon_sym_c_ulonglong] = ACTIONS(5098), + [anon_sym_c_float] = ACTIONS(5098), + [anon_sym_c_double] = ACTIONS(5098), + [anon_sym_c_longdouble] = ACTIONS(5098), + [anon_sym_return] = ACTIONS(5098), + [anon_sym_yield] = ACTIONS(5098), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_break] = ACTIONS(5098), + [anon_sym_continue] = ACTIONS(5098), + [anon_sym_defer] = ACTIONS(5098), + [anon_sym_errdefer] = ACTIONS(5098), + [anon_sym_if] = ACTIONS(5098), + [anon_sym_else] = ACTIONS(5098), + [anon_sym_while] = ACTIONS(5098), + [anon_sym_expand] = ACTIONS(5098), + [anon_sym_for] = ACTIONS(5098), + [anon_sym_match] = ACTIONS(5098), + [anon_sym_DOT_DOT] = ACTIONS(5098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5096), + [anon_sym_orelse] = ACTIONS(5098), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_and] = ACTIONS(5098), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5098), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_LT_LT_PIPE] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_catch] = ACTIONS(5098), + [anon_sym_TILDE] = ACTIONS(5096), + [anon_sym_try] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_true] = ACTIONS(5098), + [anon_sym_false] = ACTIONS(5098), + [anon_sym_null] = ACTIONS(5098), + [anon_sym_unreachable] = ACTIONS(5098), + [anon_sym_undefined] = ACTIONS(5098), + [sym_sink] = ACTIONS(5098), + [sym_integer] = ACTIONS(5098), + [sym_float] = ACTIONS(5096), + [anon_sym_DQUOTE] = ACTIONS(5096), + [sym_multiline_string] = ACTIONS(5096), + [sym_character] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5096), + }, + [STATE(4210)] = { + [ts_builtin_sym_end] = ACTIONS(5790), + [sym_identifier] = ACTIONS(5792), + [anon_sym_import] = ACTIONS(5792), + [anon_sym_test] = ACTIONS(5792), + [anon_sym_hide] = ACTIONS(5792), + [anon_sym_func] = ACTIONS(5792), + [anon_sym_BANG] = ACTIONS(5792), + [anon_sym_struct] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_LBRACE] = ACTIONS(5790), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_DASH] = ACTIONS(5790), + [anon_sym_DOLLAR] = ACTIONS(5790), + [anon_sym_PIPE] = ACTIONS(5790), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_STAR] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(5790), + [anon_sym_void] = ACTIONS(5792), + [anon_sym_noreturn] = ACTIONS(5792), + [anon_sym_type] = ACTIONS(5792), + [anon_sym_anyopaque] = ACTIONS(5792), + [anon_sym_bool] = ACTIONS(5792), + [anon_sym_int] = ACTIONS(5792), + [anon_sym_uint] = ACTIONS(5792), + [anon_sym_float] = ACTIONS(5792), + [anon_sym_range] = ACTIONS(5792), + [anon_sym_i8] = ACTIONS(5792), + [anon_sym_i16] = ACTIONS(5792), + [anon_sym_i32] = ACTIONS(5792), + [anon_sym_i64] = ACTIONS(5792), + [anon_sym_u8] = ACTIONS(5792), + [anon_sym_u16] = ACTIONS(5792), + [anon_sym_u32] = ACTIONS(5792), + [anon_sym_u64] = ACTIONS(5792), + [anon_sym_isize] = ACTIONS(5792), + [anon_sym_usize] = ACTIONS(5792), + [anon_sym_f32] = ACTIONS(5792), + [anon_sym_f64] = ACTIONS(5792), + [anon_sym_c_char] = ACTIONS(5792), + [anon_sym_c_schar] = ACTIONS(5792), + [anon_sym_c_uchar] = ACTIONS(5792), + [anon_sym_c_short] = ACTIONS(5792), + [anon_sym_c_ushort] = ACTIONS(5792), + [anon_sym_c_int] = ACTIONS(5792), + [anon_sym_c_uint] = ACTIONS(5792), + [anon_sym_c_long] = ACTIONS(5792), + [anon_sym_c_ulong] = ACTIONS(5792), + [anon_sym_c_longlong] = ACTIONS(5792), + [anon_sym_c_ulonglong] = ACTIONS(5792), + [anon_sym_c_float] = ACTIONS(5792), + [anon_sym_c_double] = ACTIONS(5792), + [anon_sym_c_longdouble] = ACTIONS(5792), + [anon_sym_return] = ACTIONS(5792), + [anon_sym_yield] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(5790), + [anon_sym_break] = ACTIONS(5792), + [anon_sym_continue] = ACTIONS(5792), + [anon_sym_defer] = ACTIONS(5792), + [anon_sym_errdefer] = ACTIONS(5792), + [anon_sym_if] = ACTIONS(5792), + [anon_sym_else] = ACTIONS(5792), + [anon_sym_while] = ACTIONS(5792), + [anon_sym_expand] = ACTIONS(5792), + [anon_sym_for] = ACTIONS(5792), + [anon_sym_match] = ACTIONS(5792), + [anon_sym_DOT_DOT] = ACTIONS(5792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5790), + [anon_sym_orelse] = ACTIONS(5792), + [anon_sym_or] = ACTIONS(5792), + [anon_sym_and] = ACTIONS(5792), + [anon_sym_EQ_EQ] = ACTIONS(5790), + [anon_sym_BANG_EQ] = ACTIONS(5790), + [anon_sym_LT] = ACTIONS(5792), + [anon_sym_LT_EQ] = ACTIONS(5790), + [anon_sym_GT] = ACTIONS(5792), + [anon_sym_GT_EQ] = ACTIONS(5790), + [anon_sym_AMP] = ACTIONS(5790), + [anon_sym_xor] = ACTIONS(5792), + [anon_sym_LT_LT] = ACTIONS(5792), + [anon_sym_GT_GT] = ACTIONS(5790), + [anon_sym_LT_LT_PIPE] = ACTIONS(5790), + [anon_sym_PLUS] = ACTIONS(5790), + [anon_sym_SLASH] = ACTIONS(5790), + [anon_sym_catch] = ACTIONS(5792), + [anon_sym_TILDE] = ACTIONS(5790), + [anon_sym_try] = ACTIONS(5792), + [anon_sym_DOT] = ACTIONS(5792), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_true] = ACTIONS(5792), + [anon_sym_false] = ACTIONS(5792), + [anon_sym_null] = ACTIONS(5792), + [anon_sym_unreachable] = ACTIONS(5792), + [anon_sym_undefined] = ACTIONS(5792), + [sym_sink] = ACTIONS(5792), + [sym_integer] = ACTIONS(5792), + [sym_float] = ACTIONS(5790), + [anon_sym_DQUOTE] = ACTIONS(5790), + [sym_multiline_string] = ACTIONS(5790), + [sym_character] = ACTIONS(5790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5790), + }, + [STATE(4211)] = { + [ts_builtin_sym_end] = ACTIONS(5100), + [sym_identifier] = ACTIONS(5102), + [anon_sym_import] = ACTIONS(5102), + [anon_sym_test] = ACTIONS(5102), + [anon_sym_hide] = ACTIONS(5102), + [anon_sym_func] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_struct] = ACTIONS(5102), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_QMARK] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_void] = ACTIONS(5102), + [anon_sym_noreturn] = ACTIONS(5102), + [anon_sym_type] = ACTIONS(5102), + [anon_sym_anyopaque] = ACTIONS(5102), + [anon_sym_bool] = ACTIONS(5102), + [anon_sym_int] = ACTIONS(5102), + [anon_sym_uint] = ACTIONS(5102), + [anon_sym_float] = ACTIONS(5102), + [anon_sym_range] = ACTIONS(5102), + [anon_sym_i8] = ACTIONS(5102), + [anon_sym_i16] = ACTIONS(5102), + [anon_sym_i32] = ACTIONS(5102), + [anon_sym_i64] = ACTIONS(5102), + [anon_sym_u8] = ACTIONS(5102), + [anon_sym_u16] = ACTIONS(5102), + [anon_sym_u32] = ACTIONS(5102), + [anon_sym_u64] = ACTIONS(5102), + [anon_sym_isize] = ACTIONS(5102), + [anon_sym_usize] = ACTIONS(5102), + [anon_sym_f32] = ACTIONS(5102), + [anon_sym_f64] = ACTIONS(5102), + [anon_sym_c_char] = ACTIONS(5102), + [anon_sym_c_schar] = ACTIONS(5102), + [anon_sym_c_uchar] = ACTIONS(5102), + [anon_sym_c_short] = ACTIONS(5102), + [anon_sym_c_ushort] = ACTIONS(5102), + [anon_sym_c_int] = ACTIONS(5102), + [anon_sym_c_uint] = ACTIONS(5102), + [anon_sym_c_long] = ACTIONS(5102), + [anon_sym_c_ulong] = ACTIONS(5102), + [anon_sym_c_longlong] = ACTIONS(5102), + [anon_sym_c_ulonglong] = ACTIONS(5102), + [anon_sym_c_float] = ACTIONS(5102), + [anon_sym_c_double] = ACTIONS(5102), + [anon_sym_c_longdouble] = ACTIONS(5102), + [anon_sym_return] = ACTIONS(5102), + [anon_sym_yield] = ACTIONS(5102), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_break] = ACTIONS(5102), + [anon_sym_continue] = ACTIONS(5102), + [anon_sym_defer] = ACTIONS(5102), + [anon_sym_errdefer] = ACTIONS(5102), + [anon_sym_if] = ACTIONS(5102), + [anon_sym_else] = ACTIONS(5102), + [anon_sym_while] = ACTIONS(5102), + [anon_sym_expand] = ACTIONS(5102), + [anon_sym_for] = ACTIONS(5102), + [anon_sym_match] = ACTIONS(5102), + [anon_sym_DOT_DOT] = ACTIONS(5102), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5100), + [anon_sym_orelse] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5102), + [anon_sym_and] = ACTIONS(5102), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_AMP] = ACTIONS(5100), + [anon_sym_xor] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5102), + [anon_sym_GT_GT] = ACTIONS(5100), + [anon_sym_LT_LT_PIPE] = ACTIONS(5100), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_catch] = ACTIONS(5102), + [anon_sym_TILDE] = ACTIONS(5100), + [anon_sym_try] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_true] = ACTIONS(5102), + [anon_sym_false] = ACTIONS(5102), + [anon_sym_null] = ACTIONS(5102), + [anon_sym_unreachable] = ACTIONS(5102), + [anon_sym_undefined] = ACTIONS(5102), + [sym_sink] = ACTIONS(5102), + [sym_integer] = ACTIONS(5102), + [sym_float] = ACTIONS(5100), + [anon_sym_DQUOTE] = ACTIONS(5100), + [sym_multiline_string] = ACTIONS(5100), + [sym_character] = ACTIONS(5100), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5100), + }, + [STATE(4212)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3267), + [sym_labeled_block] = STATE(3267), + [sym_if_statement] = STATE(3267), + [sym_while_statement] = STATE(3267), + [sym_for_statement] = STATE(3267), + [sym_match_statement] = STATE(3267), + [sym__value] = STATE(3267), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4241), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7056), + }, + [STATE(4213)] = { + [ts_builtin_sym_end] = ACTIONS(5104), + [sym_identifier] = ACTIONS(5106), + [anon_sym_import] = ACTIONS(5106), + [anon_sym_test] = ACTIONS(5106), + [anon_sym_hide] = ACTIONS(5106), + [anon_sym_func] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_struct] = ACTIONS(5106), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_void] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym_type] = ACTIONS(5106), + [anon_sym_anyopaque] = ACTIONS(5106), + [anon_sym_bool] = ACTIONS(5106), + [anon_sym_int] = ACTIONS(5106), + [anon_sym_uint] = ACTIONS(5106), + [anon_sym_float] = ACTIONS(5106), + [anon_sym_range] = ACTIONS(5106), + [anon_sym_i8] = ACTIONS(5106), + [anon_sym_i16] = ACTIONS(5106), + [anon_sym_i32] = ACTIONS(5106), + [anon_sym_i64] = ACTIONS(5106), + [anon_sym_u8] = ACTIONS(5106), + [anon_sym_u16] = ACTIONS(5106), + [anon_sym_u32] = ACTIONS(5106), + [anon_sym_u64] = ACTIONS(5106), + [anon_sym_isize] = ACTIONS(5106), + [anon_sym_usize] = ACTIONS(5106), + [anon_sym_f32] = ACTIONS(5106), + [anon_sym_f64] = ACTIONS(5106), + [anon_sym_c_char] = ACTIONS(5106), + [anon_sym_c_schar] = ACTIONS(5106), + [anon_sym_c_uchar] = ACTIONS(5106), + [anon_sym_c_short] = ACTIONS(5106), + [anon_sym_c_ushort] = ACTIONS(5106), + [anon_sym_c_int] = ACTIONS(5106), + [anon_sym_c_uint] = ACTIONS(5106), + [anon_sym_c_long] = ACTIONS(5106), + [anon_sym_c_ulong] = ACTIONS(5106), + [anon_sym_c_longlong] = ACTIONS(5106), + [anon_sym_c_ulonglong] = ACTIONS(5106), + [anon_sym_c_float] = ACTIONS(5106), + [anon_sym_c_double] = ACTIONS(5106), + [anon_sym_c_longdouble] = ACTIONS(5106), + [anon_sym_return] = ACTIONS(5106), + [anon_sym_yield] = ACTIONS(5106), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_break] = ACTIONS(5106), + [anon_sym_continue] = ACTIONS(5106), + [anon_sym_defer] = ACTIONS(5106), + [anon_sym_errdefer] = ACTIONS(5106), + [anon_sym_if] = ACTIONS(5106), + [anon_sym_else] = ACTIONS(5106), + [anon_sym_while] = ACTIONS(5106), + [anon_sym_expand] = ACTIONS(5106), + [anon_sym_for] = ACTIONS(5106), + [anon_sym_match] = ACTIONS(5106), + [anon_sym_DOT_DOT] = ACTIONS(5106), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5104), + [anon_sym_orelse] = ACTIONS(5106), + [anon_sym_or] = ACTIONS(5106), + [anon_sym_and] = ACTIONS(5106), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5106), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym_LT_LT_PIPE] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_catch] = ACTIONS(5106), + [anon_sym_TILDE] = ACTIONS(5104), + [anon_sym_try] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_true] = ACTIONS(5106), + [anon_sym_false] = ACTIONS(5106), + [anon_sym_null] = ACTIONS(5106), + [anon_sym_unreachable] = ACTIONS(5106), + [anon_sym_undefined] = ACTIONS(5106), + [sym_sink] = ACTIONS(5106), + [sym_integer] = ACTIONS(5106), + [sym_float] = ACTIONS(5104), + [anon_sym_DQUOTE] = ACTIONS(5104), + [sym_multiline_string] = ACTIONS(5104), + [sym_character] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5104), + }, + [STATE(4214)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9098), + [sym_labeled_block] = STATE(9098), + [sym_if_statement] = STATE(9098), + [sym_while_statement] = STATE(9098), + [sym_for_statement] = STATE(9098), + [sym_match_statement] = STATE(9098), + [sym__value] = STATE(9098), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4217), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7058), + }, + [STATE(4215)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9099), + [sym_labeled_block] = STATE(9099), + [sym_if_statement] = STATE(9099), + [sym_while_statement] = STATE(9099), + [sym_for_statement] = STATE(9099), + [sym_match_statement] = STATE(9099), + [sym__value] = STATE(9099), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4220), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7060), + }, + [STATE(4216)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3268), + [sym_labeled_block] = STATE(3268), + [sym_if_statement] = STATE(3268), + [sym_while_statement] = STATE(3268), + [sym_for_statement] = STATE(3268), + [sym_match_statement] = STATE(3268), + [sym__value] = STATE(3268), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4248), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7062), + }, + [STATE(4217)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9118), + [sym_labeled_block] = STATE(9118), + [sym_if_statement] = STATE(9118), + [sym_while_statement] = STATE(9118), + [sym_for_statement] = STATE(9118), + [sym_match_statement] = STATE(9118), + [sym__value] = STATE(9118), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4218)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9119), + [sym_labeled_block] = STATE(9119), + [sym_if_statement] = STATE(9119), + [sym_while_statement] = STATE(9119), + [sym_for_statement] = STATE(9119), + [sym_match_statement] = STATE(9119), + [sym__value] = STATE(9119), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4223), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7064), + }, + [STATE(4219)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9120), + [sym_labeled_block] = STATE(9120), + [sym_if_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_match_statement] = STATE(9120), + [sym__value] = STATE(9120), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4224), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7066), + }, + [STATE(4220)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9121), + [sym_labeled_block] = STATE(9121), + [sym_if_statement] = STATE(9121), + [sym_while_statement] = STATE(9121), + [sym_for_statement] = STATE(9121), + [sym_match_statement] = STATE(9121), + [sym__value] = STATE(9121), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4221)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4138), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7068), + }, + [STATE(4222)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9131), + [sym_labeled_block] = STATE(9131), + [sym_if_statement] = STATE(9131), + [sym_while_statement] = STATE(9131), + [sym_for_statement] = STATE(9131), + [sym_match_statement] = STATE(9131), + [sym__value] = STATE(9131), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4223)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9130), + [sym_labeled_block] = STATE(9130), + [sym_if_statement] = STATE(9130), + [sym_while_statement] = STATE(9130), + [sym_for_statement] = STATE(9130), + [sym_match_statement] = STATE(9130), + [sym__value] = STATE(9130), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4224)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9131), + [sym_labeled_block] = STATE(9131), + [sym_if_statement] = STATE(9131), + [sym_while_statement] = STATE(9131), + [sym_for_statement] = STATE(9131), + [sym_match_statement] = STATE(9131), + [sym__value] = STATE(9131), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4225)] = { + [ts_builtin_sym_end] = ACTIONS(4516), + [sym_identifier] = ACTIONS(4518), + [anon_sym_import] = ACTIONS(4518), + [anon_sym_test] = ACTIONS(4518), + [anon_sym_hide] = ACTIONS(4518), + [anon_sym_func] = ACTIONS(4518), + [anon_sym_BANG] = ACTIONS(4518), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4516), + [anon_sym_DOLLAR] = ACTIONS(4516), + [anon_sym_PIPE] = ACTIONS(4516), + [anon_sym_QMARK] = ACTIONS(4516), + [anon_sym_STAR] = ACTIONS(4516), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_void] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym_type] = ACTIONS(4518), + [anon_sym_anyopaque] = ACTIONS(4518), + [anon_sym_bool] = ACTIONS(4518), + [anon_sym_int] = ACTIONS(4518), + [anon_sym_uint] = ACTIONS(4518), + [anon_sym_float] = ACTIONS(4518), + [anon_sym_range] = ACTIONS(4518), + [anon_sym_i8] = ACTIONS(4518), + [anon_sym_i16] = ACTIONS(4518), + [anon_sym_i32] = ACTIONS(4518), + [anon_sym_i64] = ACTIONS(4518), + [anon_sym_u8] = ACTIONS(4518), + [anon_sym_u16] = ACTIONS(4518), + [anon_sym_u32] = ACTIONS(4518), + [anon_sym_u64] = ACTIONS(4518), + [anon_sym_isize] = ACTIONS(4518), + [anon_sym_usize] = ACTIONS(4518), + [anon_sym_f32] = ACTIONS(4518), + [anon_sym_f64] = ACTIONS(4518), + [anon_sym_c_char] = ACTIONS(4518), + [anon_sym_c_schar] = ACTIONS(4518), + [anon_sym_c_uchar] = ACTIONS(4518), + [anon_sym_c_short] = ACTIONS(4518), + [anon_sym_c_ushort] = ACTIONS(4518), + [anon_sym_c_int] = ACTIONS(4518), + [anon_sym_c_uint] = ACTIONS(4518), + [anon_sym_c_long] = ACTIONS(4518), + [anon_sym_c_ulong] = ACTIONS(4518), + [anon_sym_c_longlong] = ACTIONS(4518), + [anon_sym_c_ulonglong] = ACTIONS(4518), + [anon_sym_c_float] = ACTIONS(4518), + [anon_sym_c_double] = ACTIONS(4518), + [anon_sym_c_longdouble] = ACTIONS(4518), + [anon_sym_return] = ACTIONS(4518), + [anon_sym_yield] = ACTIONS(4518), + [anon_sym_COLON] = ACTIONS(4516), + [anon_sym_break] = ACTIONS(4518), + [anon_sym_continue] = ACTIONS(4518), + [anon_sym_defer] = ACTIONS(4518), + [anon_sym_errdefer] = ACTIONS(4518), + [anon_sym_if] = ACTIONS(4518), + [anon_sym_else] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4518), + [anon_sym_expand] = ACTIONS(4518), + [anon_sym_for] = ACTIONS(4518), + [anon_sym_match] = ACTIONS(4518), + [anon_sym_DOT_DOT] = ACTIONS(4518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4516), + [anon_sym_orelse] = ACTIONS(4518), + [anon_sym_or] = ACTIONS(4518), + [anon_sym_and] = ACTIONS(4518), + [anon_sym_EQ_EQ] = ACTIONS(4516), + [anon_sym_BANG_EQ] = ACTIONS(4516), + [anon_sym_LT] = ACTIONS(4518), + [anon_sym_LT_EQ] = ACTIONS(4516), + [anon_sym_GT] = ACTIONS(4518), + [anon_sym_GT_EQ] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4516), + [anon_sym_xor] = ACTIONS(4518), + [anon_sym_LT_LT] = ACTIONS(4518), + [anon_sym_GT_GT] = ACTIONS(4516), + [anon_sym_LT_LT_PIPE] = ACTIONS(4516), + [anon_sym_PLUS] = ACTIONS(4516), + [anon_sym_SLASH] = ACTIONS(4516), + [anon_sym_catch] = ACTIONS(4518), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_try] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4518), + [anon_sym_CARET] = ACTIONS(4516), + [anon_sym_true] = ACTIONS(4518), + [anon_sym_false] = ACTIONS(4518), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_unreachable] = ACTIONS(4518), + [anon_sym_undefined] = ACTIONS(4518), + [sym_sink] = ACTIONS(4518), + [sym_integer] = ACTIONS(4518), + [sym_float] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym_multiline_string] = ACTIONS(4516), + [sym_character] = ACTIONS(4516), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4516), + }, + [STATE(4226)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4227)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4228)] = { + [ts_builtin_sym_end] = ACTIONS(4436), + [sym_identifier] = ACTIONS(4438), + [anon_sym_import] = ACTIONS(4438), + [anon_sym_test] = ACTIONS(4438), + [anon_sym_hide] = ACTIONS(4438), + [anon_sym_func] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_LPAREN] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_RBRACE] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_DOLLAR] = ACTIONS(4436), + [anon_sym_PIPE] = ACTIONS(4436), + [anon_sym_QMARK] = ACTIONS(4436), + [anon_sym_STAR] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_void] = ACTIONS(4438), + [anon_sym_noreturn] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_anyopaque] = ACTIONS(4438), + [anon_sym_bool] = ACTIONS(4438), + [anon_sym_int] = ACTIONS(4438), + [anon_sym_uint] = ACTIONS(4438), + [anon_sym_float] = ACTIONS(4438), + [anon_sym_range] = ACTIONS(4438), + [anon_sym_i8] = ACTIONS(4438), + [anon_sym_i16] = ACTIONS(4438), + [anon_sym_i32] = ACTIONS(4438), + [anon_sym_i64] = ACTIONS(4438), + [anon_sym_u8] = ACTIONS(4438), + [anon_sym_u16] = ACTIONS(4438), + [anon_sym_u32] = ACTIONS(4438), + [anon_sym_u64] = ACTIONS(4438), + [anon_sym_isize] = ACTIONS(4438), + [anon_sym_usize] = ACTIONS(4438), + [anon_sym_f32] = ACTIONS(4438), + [anon_sym_f64] = ACTIONS(4438), + [anon_sym_c_char] = ACTIONS(4438), + [anon_sym_c_schar] = ACTIONS(4438), + [anon_sym_c_uchar] = ACTIONS(4438), + [anon_sym_c_short] = ACTIONS(4438), + [anon_sym_c_ushort] = ACTIONS(4438), + [anon_sym_c_int] = ACTIONS(4438), + [anon_sym_c_uint] = ACTIONS(4438), + [anon_sym_c_long] = ACTIONS(4438), + [anon_sym_c_ulong] = ACTIONS(4438), + [anon_sym_c_longlong] = ACTIONS(4438), + [anon_sym_c_ulonglong] = ACTIONS(4438), + [anon_sym_c_float] = ACTIONS(4438), + [anon_sym_c_double] = ACTIONS(4438), + [anon_sym_c_longdouble] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_yield] = ACTIONS(4438), + [anon_sym_COLON] = ACTIONS(4436), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_defer] = ACTIONS(4438), + [anon_sym_errdefer] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_expand] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_match] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4436), + [anon_sym_orelse] = ACTIONS(4438), + [anon_sym_or] = ACTIONS(4438), + [anon_sym_and] = ACTIONS(4438), + [anon_sym_EQ_EQ] = ACTIONS(4436), + [anon_sym_BANG_EQ] = ACTIONS(4436), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_LT_EQ] = ACTIONS(4436), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_GT_EQ] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4436), + [anon_sym_xor] = ACTIONS(4438), + [anon_sym_LT_LT] = ACTIONS(4438), + [anon_sym_GT_GT] = ACTIONS(4436), + [anon_sym_LT_LT_PIPE] = ACTIONS(4436), + [anon_sym_PLUS] = ACTIONS(4436), + [anon_sym_SLASH] = ACTIONS(4436), + [anon_sym_catch] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4436), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4436), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_unreachable] = ACTIONS(4438), + [anon_sym_undefined] = ACTIONS(4438), + [sym_sink] = ACTIONS(4438), + [sym_integer] = ACTIONS(4438), + [sym_float] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(4436), + [sym_multiline_string] = ACTIONS(4436), + [sym_character] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4436), + }, + [STATE(4229)] = { + [ts_builtin_sym_end] = ACTIONS(4536), + [sym_identifier] = ACTIONS(4538), + [anon_sym_import] = ACTIONS(4538), + [anon_sym_test] = ACTIONS(4538), + [anon_sym_hide] = ACTIONS(4538), + [anon_sym_func] = ACTIONS(4538), + [anon_sym_BANG] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4536), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_RBRACE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_void] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym_type] = ACTIONS(4538), + [anon_sym_anyopaque] = ACTIONS(4538), + [anon_sym_bool] = ACTIONS(4538), + [anon_sym_int] = ACTIONS(4538), + [anon_sym_uint] = ACTIONS(4538), + [anon_sym_float] = ACTIONS(4538), + [anon_sym_range] = ACTIONS(4538), + [anon_sym_i8] = ACTIONS(4538), + [anon_sym_i16] = ACTIONS(4538), + [anon_sym_i32] = ACTIONS(4538), + [anon_sym_i64] = ACTIONS(4538), + [anon_sym_u8] = ACTIONS(4538), + [anon_sym_u16] = ACTIONS(4538), + [anon_sym_u32] = ACTIONS(4538), + [anon_sym_u64] = ACTIONS(4538), + [anon_sym_isize] = ACTIONS(4538), + [anon_sym_usize] = ACTIONS(4538), + [anon_sym_f32] = ACTIONS(4538), + [anon_sym_f64] = ACTIONS(4538), + [anon_sym_c_char] = ACTIONS(4538), + [anon_sym_c_schar] = ACTIONS(4538), + [anon_sym_c_uchar] = ACTIONS(4538), + [anon_sym_c_short] = ACTIONS(4538), + [anon_sym_c_ushort] = ACTIONS(4538), + [anon_sym_c_int] = ACTIONS(4538), + [anon_sym_c_uint] = ACTIONS(4538), + [anon_sym_c_long] = ACTIONS(4538), + [anon_sym_c_ulong] = ACTIONS(4538), + [anon_sym_c_longlong] = ACTIONS(4538), + [anon_sym_c_ulonglong] = ACTIONS(4538), + [anon_sym_c_float] = ACTIONS(4538), + [anon_sym_c_double] = ACTIONS(4538), + [anon_sym_c_longdouble] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_yield] = ACTIONS(4538), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_defer] = ACTIONS(4538), + [anon_sym_errdefer] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_else] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_expand] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_match] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4536), + [anon_sym_orelse] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4536), + [anon_sym_BANG_EQ] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_xor] = ACTIONS(4538), + [anon_sym_LT_LT] = ACTIONS(4538), + [anon_sym_GT_GT] = ACTIONS(4536), + [anon_sym_LT_LT_PIPE] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_catch] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4536), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_DOT] = ACTIONS(4538), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_true] = ACTIONS(4538), + [anon_sym_false] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4538), + [anon_sym_unreachable] = ACTIONS(4538), + [anon_sym_undefined] = ACTIONS(4538), + [sym_sink] = ACTIONS(4538), + [sym_integer] = ACTIONS(4538), + [sym_float] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [sym_multiline_string] = ACTIONS(4536), + [sym_character] = ACTIONS(4536), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4536), + }, + [STATE(4230)] = { + [ts_builtin_sym_end] = ACTIONS(4540), + [sym_identifier] = ACTIONS(4542), + [anon_sym_import] = ACTIONS(4542), + [anon_sym_test] = ACTIONS(4542), + [anon_sym_hide] = ACTIONS(4542), + [anon_sym_func] = ACTIONS(4542), + [anon_sym_BANG] = ACTIONS(4542), + [anon_sym_struct] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4540), + [anon_sym_void] = ACTIONS(4542), + [anon_sym_noreturn] = ACTIONS(4542), + [anon_sym_type] = ACTIONS(4542), + [anon_sym_anyopaque] = ACTIONS(4542), + [anon_sym_bool] = ACTIONS(4542), + [anon_sym_int] = ACTIONS(4542), + [anon_sym_uint] = ACTIONS(4542), + [anon_sym_float] = ACTIONS(4542), + [anon_sym_range] = ACTIONS(4542), + [anon_sym_i8] = ACTIONS(4542), + [anon_sym_i16] = ACTIONS(4542), + [anon_sym_i32] = ACTIONS(4542), + [anon_sym_i64] = ACTIONS(4542), + [anon_sym_u8] = ACTIONS(4542), + [anon_sym_u16] = ACTIONS(4542), + [anon_sym_u32] = ACTIONS(4542), + [anon_sym_u64] = ACTIONS(4542), + [anon_sym_isize] = ACTIONS(4542), + [anon_sym_usize] = ACTIONS(4542), + [anon_sym_f32] = ACTIONS(4542), + [anon_sym_f64] = ACTIONS(4542), + [anon_sym_c_char] = ACTIONS(4542), + [anon_sym_c_schar] = ACTIONS(4542), + [anon_sym_c_uchar] = ACTIONS(4542), + [anon_sym_c_short] = ACTIONS(4542), + [anon_sym_c_ushort] = ACTIONS(4542), + [anon_sym_c_int] = ACTIONS(4542), + [anon_sym_c_uint] = ACTIONS(4542), + [anon_sym_c_long] = ACTIONS(4542), + [anon_sym_c_ulong] = ACTIONS(4542), + [anon_sym_c_longlong] = ACTIONS(4542), + [anon_sym_c_ulonglong] = ACTIONS(4542), + [anon_sym_c_float] = ACTIONS(4542), + [anon_sym_c_double] = ACTIONS(4542), + [anon_sym_c_longdouble] = ACTIONS(4542), + [anon_sym_return] = ACTIONS(4542), + [anon_sym_yield] = ACTIONS(4542), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_break] = ACTIONS(4542), + [anon_sym_continue] = ACTIONS(4542), + [anon_sym_defer] = ACTIONS(4542), + [anon_sym_errdefer] = ACTIONS(4542), + [anon_sym_if] = ACTIONS(4542), + [anon_sym_else] = ACTIONS(4542), + [anon_sym_while] = ACTIONS(4542), + [anon_sym_expand] = ACTIONS(4542), + [anon_sym_for] = ACTIONS(4542), + [anon_sym_match] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4540), + [anon_sym_orelse] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4540), + [anon_sym_BANG_EQ] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4540), + [anon_sym_xor] = ACTIONS(4542), + [anon_sym_LT_LT] = ACTIONS(4542), + [anon_sym_GT_GT] = ACTIONS(4540), + [anon_sym_LT_LT_PIPE] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_catch] = ACTIONS(4542), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_try] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym_true] = ACTIONS(4542), + [anon_sym_false] = ACTIONS(4542), + [anon_sym_null] = ACTIONS(4542), + [anon_sym_unreachable] = ACTIONS(4542), + [anon_sym_undefined] = ACTIONS(4542), + [sym_sink] = ACTIONS(4542), + [sym_integer] = ACTIONS(4542), + [sym_float] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym_multiline_string] = ACTIONS(4540), + [sym_character] = ACTIONS(4540), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4540), + }, + [STATE(4231)] = { + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_identifier] = ACTIONS(4550), + [anon_sym_import] = ACTIONS(4550), + [anon_sym_test] = ACTIONS(4550), + [anon_sym_hide] = ACTIONS(4550), + [anon_sym_func] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_struct] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_void] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_type] = ACTIONS(4550), + [anon_sym_anyopaque] = ACTIONS(4550), + [anon_sym_bool] = ACTIONS(4550), + [anon_sym_int] = ACTIONS(4550), + [anon_sym_uint] = ACTIONS(4550), + [anon_sym_float] = ACTIONS(4550), + [anon_sym_range] = ACTIONS(4550), + [anon_sym_i8] = ACTIONS(4550), + [anon_sym_i16] = ACTIONS(4550), + [anon_sym_i32] = ACTIONS(4550), + [anon_sym_i64] = ACTIONS(4550), + [anon_sym_u8] = ACTIONS(4550), + [anon_sym_u16] = ACTIONS(4550), + [anon_sym_u32] = ACTIONS(4550), + [anon_sym_u64] = ACTIONS(4550), + [anon_sym_isize] = ACTIONS(4550), + [anon_sym_usize] = ACTIONS(4550), + [anon_sym_f32] = ACTIONS(4550), + [anon_sym_f64] = ACTIONS(4550), + [anon_sym_c_char] = ACTIONS(4550), + [anon_sym_c_schar] = ACTIONS(4550), + [anon_sym_c_uchar] = ACTIONS(4550), + [anon_sym_c_short] = ACTIONS(4550), + [anon_sym_c_ushort] = ACTIONS(4550), + [anon_sym_c_int] = ACTIONS(4550), + [anon_sym_c_uint] = ACTIONS(4550), + [anon_sym_c_long] = ACTIONS(4550), + [anon_sym_c_ulong] = ACTIONS(4550), + [anon_sym_c_longlong] = ACTIONS(4550), + [anon_sym_c_ulonglong] = ACTIONS(4550), + [anon_sym_c_float] = ACTIONS(4550), + [anon_sym_c_double] = ACTIONS(4550), + [anon_sym_c_longdouble] = ACTIONS(4550), + [anon_sym_return] = ACTIONS(4550), + [anon_sym_yield] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4548), + [anon_sym_break] = ACTIONS(4550), + [anon_sym_continue] = ACTIONS(4550), + [anon_sym_defer] = ACTIONS(4550), + [anon_sym_errdefer] = ACTIONS(4550), + [anon_sym_if] = ACTIONS(4550), + [anon_sym_else] = ACTIONS(4550), + [anon_sym_while] = ACTIONS(4550), + [anon_sym_expand] = ACTIONS(4550), + [anon_sym_for] = ACTIONS(4550), + [anon_sym_match] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4548), + [anon_sym_orelse] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_xor] = ACTIONS(4550), + [anon_sym_LT_LT] = ACTIONS(4550), + [anon_sym_GT_GT] = ACTIONS(4548), + [anon_sym_LT_LT_PIPE] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_catch] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_try] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym_true] = ACTIONS(4550), + [anon_sym_false] = ACTIONS(4550), + [anon_sym_null] = ACTIONS(4550), + [anon_sym_unreachable] = ACTIONS(4550), + [anon_sym_undefined] = ACTIONS(4550), + [sym_sink] = ACTIONS(4550), + [sym_integer] = ACTIONS(4550), + [sym_float] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(4548), + [sym_multiline_string] = ACTIONS(4548), + [sym_character] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4548), + }, + [STATE(4232)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3303), + [sym_labeled_block] = STATE(3303), + [sym_if_statement] = STATE(3303), + [sym_while_statement] = STATE(3303), + [sym_for_statement] = STATE(3303), + [sym_match_statement] = STATE(3303), + [sym__value] = STATE(3303), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4233)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3304), + [sym_labeled_block] = STATE(3304), + [sym_if_statement] = STATE(3304), + [sym_while_statement] = STATE(3304), + [sym_for_statement] = STATE(3304), + [sym_match_statement] = STATE(3304), + [sym__value] = STATE(3304), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4234)] = { + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_identifier] = ACTIONS(4554), + [anon_sym_import] = ACTIONS(4554), + [anon_sym_test] = ACTIONS(4554), + [anon_sym_hide] = ACTIONS(4554), + [anon_sym_func] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_struct] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4552), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_void] = ACTIONS(4554), + [anon_sym_noreturn] = ACTIONS(4554), + [anon_sym_type] = ACTIONS(4554), + [anon_sym_anyopaque] = ACTIONS(4554), + [anon_sym_bool] = ACTIONS(4554), + [anon_sym_int] = ACTIONS(4554), + [anon_sym_uint] = ACTIONS(4554), + [anon_sym_float] = ACTIONS(4554), + [anon_sym_range] = ACTIONS(4554), + [anon_sym_i8] = ACTIONS(4554), + [anon_sym_i16] = ACTIONS(4554), + [anon_sym_i32] = ACTIONS(4554), + [anon_sym_i64] = ACTIONS(4554), + [anon_sym_u8] = ACTIONS(4554), + [anon_sym_u16] = ACTIONS(4554), + [anon_sym_u32] = ACTIONS(4554), + [anon_sym_u64] = ACTIONS(4554), + [anon_sym_isize] = ACTIONS(4554), + [anon_sym_usize] = ACTIONS(4554), + [anon_sym_f32] = ACTIONS(4554), + [anon_sym_f64] = ACTIONS(4554), + [anon_sym_c_char] = ACTIONS(4554), + [anon_sym_c_schar] = ACTIONS(4554), + [anon_sym_c_uchar] = ACTIONS(4554), + [anon_sym_c_short] = ACTIONS(4554), + [anon_sym_c_ushort] = ACTIONS(4554), + [anon_sym_c_int] = ACTIONS(4554), + [anon_sym_c_uint] = ACTIONS(4554), + [anon_sym_c_long] = ACTIONS(4554), + [anon_sym_c_ulong] = ACTIONS(4554), + [anon_sym_c_longlong] = ACTIONS(4554), + [anon_sym_c_ulonglong] = ACTIONS(4554), + [anon_sym_c_float] = ACTIONS(4554), + [anon_sym_c_double] = ACTIONS(4554), + [anon_sym_c_longdouble] = ACTIONS(4554), + [anon_sym_return] = ACTIONS(4554), + [anon_sym_yield] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4552), + [anon_sym_break] = ACTIONS(4554), + [anon_sym_continue] = ACTIONS(4554), + [anon_sym_defer] = ACTIONS(4554), + [anon_sym_errdefer] = ACTIONS(4554), + [anon_sym_if] = ACTIONS(4554), + [anon_sym_else] = ACTIONS(4554), + [anon_sym_while] = ACTIONS(4554), + [anon_sym_expand] = ACTIONS(4554), + [anon_sym_for] = ACTIONS(4554), + [anon_sym_match] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4552), + [anon_sym_orelse] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4552), + [anon_sym_BANG_EQ] = ACTIONS(4552), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4552), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_xor] = ACTIONS(4554), + [anon_sym_LT_LT] = ACTIONS(4554), + [anon_sym_GT_GT] = ACTIONS(4552), + [anon_sym_LT_LT_PIPE] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4552), + [anon_sym_catch] = ACTIONS(4554), + [anon_sym_TILDE] = ACTIONS(4552), + [anon_sym_try] = ACTIONS(4554), + [anon_sym_DOT] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym_true] = ACTIONS(4554), + [anon_sym_false] = ACTIONS(4554), + [anon_sym_null] = ACTIONS(4554), + [anon_sym_unreachable] = ACTIONS(4554), + [anon_sym_undefined] = ACTIONS(4554), + [sym_sink] = ACTIONS(4554), + [sym_integer] = ACTIONS(4554), + [sym_float] = ACTIONS(4552), + [anon_sym_DQUOTE] = ACTIONS(4552), + [sym_multiline_string] = ACTIONS(4552), + [sym_character] = ACTIONS(4552), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4552), + }, + [STATE(4235)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4236)] = { + [ts_builtin_sym_end] = ACTIONS(4924), + [sym_identifier] = ACTIONS(4926), + [anon_sym_import] = ACTIONS(4926), + [anon_sym_test] = ACTIONS(4926), + [anon_sym_hide] = ACTIONS(4926), + [anon_sym_func] = ACTIONS(4926), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_struct] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_void] = ACTIONS(4926), + [anon_sym_noreturn] = ACTIONS(4926), + [anon_sym_type] = ACTIONS(4926), + [anon_sym_anyopaque] = ACTIONS(4926), + [anon_sym_bool] = ACTIONS(4926), + [anon_sym_int] = ACTIONS(4926), + [anon_sym_uint] = ACTIONS(4926), + [anon_sym_float] = ACTIONS(4926), + [anon_sym_range] = ACTIONS(4926), + [anon_sym_i8] = ACTIONS(4926), + [anon_sym_i16] = ACTIONS(4926), + [anon_sym_i32] = ACTIONS(4926), + [anon_sym_i64] = ACTIONS(4926), + [anon_sym_u8] = ACTIONS(4926), + [anon_sym_u16] = ACTIONS(4926), + [anon_sym_u32] = ACTIONS(4926), + [anon_sym_u64] = ACTIONS(4926), + [anon_sym_isize] = ACTIONS(4926), + [anon_sym_usize] = ACTIONS(4926), + [anon_sym_f32] = ACTIONS(4926), + [anon_sym_f64] = ACTIONS(4926), + [anon_sym_c_char] = ACTIONS(4926), + [anon_sym_c_schar] = ACTIONS(4926), + [anon_sym_c_uchar] = ACTIONS(4926), + [anon_sym_c_short] = ACTIONS(4926), + [anon_sym_c_ushort] = ACTIONS(4926), + [anon_sym_c_int] = ACTIONS(4926), + [anon_sym_c_uint] = ACTIONS(4926), + [anon_sym_c_long] = ACTIONS(4926), + [anon_sym_c_ulong] = ACTIONS(4926), + [anon_sym_c_longlong] = ACTIONS(4926), + [anon_sym_c_ulonglong] = ACTIONS(4926), + [anon_sym_c_float] = ACTIONS(4926), + [anon_sym_c_double] = ACTIONS(4926), + [anon_sym_c_longdouble] = ACTIONS(4926), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_yield] = ACTIONS(4926), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_continue] = ACTIONS(4926), + [anon_sym_defer] = ACTIONS(4926), + [anon_sym_errdefer] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_while] = ACTIONS(4926), + [anon_sym_expand] = ACTIONS(4926), + [anon_sym_for] = ACTIONS(4926), + [anon_sym_match] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4924), + [anon_sym_orelse] = ACTIONS(4926), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_and] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4924), + [anon_sym_xor] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4926), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym_LT_LT_PIPE] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_catch] = ACTIONS(4926), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_unreachable] = ACTIONS(4926), + [anon_sym_undefined] = ACTIONS(4926), + [sym_sink] = ACTIONS(4926), + [sym_integer] = ACTIONS(4926), + [sym_float] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [sym_multiline_string] = ACTIONS(4924), + [sym_character] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4924), + }, + [STATE(4237)] = { + [ts_builtin_sym_end] = ACTIONS(5918), + [sym_identifier] = ACTIONS(5920), + [anon_sym_import] = ACTIONS(5920), + [anon_sym_test] = ACTIONS(5920), + [anon_sym_hide] = ACTIONS(5920), + [anon_sym_func] = ACTIONS(5920), + [anon_sym_BANG] = ACTIONS(5920), + [anon_sym_struct] = ACTIONS(5920), + [anon_sym_LPAREN] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(5918), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5918), + [anon_sym_DOLLAR] = ACTIONS(5918), + [anon_sym_PIPE] = ACTIONS(5918), + [anon_sym_QMARK] = ACTIONS(5918), + [anon_sym_STAR] = ACTIONS(5918), + [anon_sym_LBRACK] = ACTIONS(5918), + [anon_sym_void] = ACTIONS(5920), + [anon_sym_noreturn] = ACTIONS(5920), + [anon_sym_type] = ACTIONS(5920), + [anon_sym_anyopaque] = ACTIONS(5920), + [anon_sym_bool] = ACTIONS(5920), + [anon_sym_int] = ACTIONS(5920), + [anon_sym_uint] = ACTIONS(5920), + [anon_sym_float] = ACTIONS(5920), + [anon_sym_range] = ACTIONS(5920), + [anon_sym_i8] = ACTIONS(5920), + [anon_sym_i16] = ACTIONS(5920), + [anon_sym_i32] = ACTIONS(5920), + [anon_sym_i64] = ACTIONS(5920), + [anon_sym_u8] = ACTIONS(5920), + [anon_sym_u16] = ACTIONS(5920), + [anon_sym_u32] = ACTIONS(5920), + [anon_sym_u64] = ACTIONS(5920), + [anon_sym_isize] = ACTIONS(5920), + [anon_sym_usize] = ACTIONS(5920), + [anon_sym_f32] = ACTIONS(5920), + [anon_sym_f64] = ACTIONS(5920), + [anon_sym_c_char] = ACTIONS(5920), + [anon_sym_c_schar] = ACTIONS(5920), + [anon_sym_c_uchar] = ACTIONS(5920), + [anon_sym_c_short] = ACTIONS(5920), + [anon_sym_c_ushort] = ACTIONS(5920), + [anon_sym_c_int] = ACTIONS(5920), + [anon_sym_c_uint] = ACTIONS(5920), + [anon_sym_c_long] = ACTIONS(5920), + [anon_sym_c_ulong] = ACTIONS(5920), + [anon_sym_c_longlong] = ACTIONS(5920), + [anon_sym_c_ulonglong] = ACTIONS(5920), + [anon_sym_c_float] = ACTIONS(5920), + [anon_sym_c_double] = ACTIONS(5920), + [anon_sym_c_longdouble] = ACTIONS(5920), + [anon_sym_return] = ACTIONS(5920), + [anon_sym_yield] = ACTIONS(5920), + [anon_sym_COLON] = ACTIONS(5918), + [anon_sym_break] = ACTIONS(5920), + [anon_sym_continue] = ACTIONS(5920), + [anon_sym_defer] = ACTIONS(5920), + [anon_sym_errdefer] = ACTIONS(5920), + [anon_sym_if] = ACTIONS(5920), + [anon_sym_else] = ACTIONS(5920), + [anon_sym_while] = ACTIONS(5920), + [anon_sym_expand] = ACTIONS(5920), + [anon_sym_for] = ACTIONS(5920), + [anon_sym_match] = ACTIONS(5920), + [anon_sym_DOT_DOT] = ACTIONS(5920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5918), + [anon_sym_orelse] = ACTIONS(5920), + [anon_sym_or] = ACTIONS(5920), + [anon_sym_and] = ACTIONS(5920), + [anon_sym_EQ_EQ] = ACTIONS(5918), + [anon_sym_BANG_EQ] = ACTIONS(5918), + [anon_sym_LT] = ACTIONS(5920), + [anon_sym_LT_EQ] = ACTIONS(5918), + [anon_sym_GT] = ACTIONS(5920), + [anon_sym_GT_EQ] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5918), + [anon_sym_xor] = ACTIONS(5920), + [anon_sym_LT_LT] = ACTIONS(5920), + [anon_sym_GT_GT] = ACTIONS(5918), + [anon_sym_LT_LT_PIPE] = ACTIONS(5918), + [anon_sym_PLUS] = ACTIONS(5918), + [anon_sym_SLASH] = ACTIONS(5918), + [anon_sym_catch] = ACTIONS(5920), + [anon_sym_TILDE] = ACTIONS(5918), + [anon_sym_try] = ACTIONS(5920), + [anon_sym_DOT] = ACTIONS(5920), + [anon_sym_CARET] = ACTIONS(5918), + [anon_sym_true] = ACTIONS(5920), + [anon_sym_false] = ACTIONS(5920), + [anon_sym_null] = ACTIONS(5920), + [anon_sym_unreachable] = ACTIONS(5920), + [anon_sym_undefined] = ACTIONS(5920), + [sym_sink] = ACTIONS(5920), + [sym_integer] = ACTIONS(5920), + [sym_float] = ACTIONS(5918), + [anon_sym_DQUOTE] = ACTIONS(5918), + [sym_multiline_string] = ACTIONS(5918), + [sym_character] = ACTIONS(5918), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5918), + }, + [STATE(4238)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10808), + [sym_error_capture] = STATE(4842), + [sym_if_statement] = STATE(10808), + [sym_while_statement] = STATE(10808), + [sym_for_statement] = STATE(10808), + [sym_match_statement] = STATE(10808), + [sym_expression] = STATE(10326), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4843), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7070), + }, + [STATE(4239)] = { + [ts_builtin_sym_end] = ACTIONS(4928), + [sym_identifier] = ACTIONS(4930), + [anon_sym_import] = ACTIONS(4930), + [anon_sym_test] = ACTIONS(4930), + [anon_sym_hide] = ACTIONS(4930), + [anon_sym_func] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4930), + [anon_sym_struct] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_void] = ACTIONS(4930), + [anon_sym_noreturn] = ACTIONS(4930), + [anon_sym_type] = ACTIONS(4930), + [anon_sym_anyopaque] = ACTIONS(4930), + [anon_sym_bool] = ACTIONS(4930), + [anon_sym_int] = ACTIONS(4930), + [anon_sym_uint] = ACTIONS(4930), + [anon_sym_float] = ACTIONS(4930), + [anon_sym_range] = ACTIONS(4930), + [anon_sym_i8] = ACTIONS(4930), + [anon_sym_i16] = ACTIONS(4930), + [anon_sym_i32] = ACTIONS(4930), + [anon_sym_i64] = ACTIONS(4930), + [anon_sym_u8] = ACTIONS(4930), + [anon_sym_u16] = ACTIONS(4930), + [anon_sym_u32] = ACTIONS(4930), + [anon_sym_u64] = ACTIONS(4930), + [anon_sym_isize] = ACTIONS(4930), + [anon_sym_usize] = ACTIONS(4930), + [anon_sym_f32] = ACTIONS(4930), + [anon_sym_f64] = ACTIONS(4930), + [anon_sym_c_char] = ACTIONS(4930), + [anon_sym_c_schar] = ACTIONS(4930), + [anon_sym_c_uchar] = ACTIONS(4930), + [anon_sym_c_short] = ACTIONS(4930), + [anon_sym_c_ushort] = ACTIONS(4930), + [anon_sym_c_int] = ACTIONS(4930), + [anon_sym_c_uint] = ACTIONS(4930), + [anon_sym_c_long] = ACTIONS(4930), + [anon_sym_c_ulong] = ACTIONS(4930), + [anon_sym_c_longlong] = ACTIONS(4930), + [anon_sym_c_ulonglong] = ACTIONS(4930), + [anon_sym_c_float] = ACTIONS(4930), + [anon_sym_c_double] = ACTIONS(4930), + [anon_sym_c_longdouble] = ACTIONS(4930), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_yield] = ACTIONS(4930), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_defer] = ACTIONS(4930), + [anon_sym_errdefer] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_expand] = ACTIONS(4930), + [anon_sym_for] = ACTIONS(4930), + [anon_sym_match] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), + [anon_sym_orelse] = ACTIONS(4930), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_and] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4928), + [anon_sym_xor] = ACTIONS(4930), + [anon_sym_LT_LT] = ACTIONS(4930), + [anon_sym_GT_GT] = ACTIONS(4928), + [anon_sym_LT_LT_PIPE] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_catch] = ACTIONS(4930), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_unreachable] = ACTIONS(4930), + [anon_sym_undefined] = ACTIONS(4930), + [sym_sink] = ACTIONS(4930), + [sym_integer] = ACTIONS(4930), + [sym_float] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [sym_multiline_string] = ACTIONS(4928), + [sym_character] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4928), + }, + [STATE(4240)] = { + [ts_builtin_sym_end] = ACTIONS(5794), + [sym_identifier] = ACTIONS(5796), + [anon_sym_import] = ACTIONS(5796), + [anon_sym_test] = ACTIONS(5796), + [anon_sym_hide] = ACTIONS(5796), + [anon_sym_func] = ACTIONS(5796), + [anon_sym_BANG] = ACTIONS(5796), + [anon_sym_struct] = ACTIONS(5796), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(5794), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_DASH] = ACTIONS(5794), + [anon_sym_DOLLAR] = ACTIONS(5794), + [anon_sym_PIPE] = ACTIONS(5794), + [anon_sym_QMARK] = ACTIONS(5794), + [anon_sym_STAR] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_void] = ACTIONS(5796), + [anon_sym_noreturn] = ACTIONS(5796), + [anon_sym_type] = ACTIONS(5796), + [anon_sym_anyopaque] = ACTIONS(5796), + [anon_sym_bool] = ACTIONS(5796), + [anon_sym_int] = ACTIONS(5796), + [anon_sym_uint] = ACTIONS(5796), + [anon_sym_float] = ACTIONS(5796), + [anon_sym_range] = ACTIONS(5796), + [anon_sym_i8] = ACTIONS(5796), + [anon_sym_i16] = ACTIONS(5796), + [anon_sym_i32] = ACTIONS(5796), + [anon_sym_i64] = ACTIONS(5796), + [anon_sym_u8] = ACTIONS(5796), + [anon_sym_u16] = ACTIONS(5796), + [anon_sym_u32] = ACTIONS(5796), + [anon_sym_u64] = ACTIONS(5796), + [anon_sym_isize] = ACTIONS(5796), + [anon_sym_usize] = ACTIONS(5796), + [anon_sym_f32] = ACTIONS(5796), + [anon_sym_f64] = ACTIONS(5796), + [anon_sym_c_char] = ACTIONS(5796), + [anon_sym_c_schar] = ACTIONS(5796), + [anon_sym_c_uchar] = ACTIONS(5796), + [anon_sym_c_short] = ACTIONS(5796), + [anon_sym_c_ushort] = ACTIONS(5796), + [anon_sym_c_int] = ACTIONS(5796), + [anon_sym_c_uint] = ACTIONS(5796), + [anon_sym_c_long] = ACTIONS(5796), + [anon_sym_c_ulong] = ACTIONS(5796), + [anon_sym_c_longlong] = ACTIONS(5796), + [anon_sym_c_ulonglong] = ACTIONS(5796), + [anon_sym_c_float] = ACTIONS(5796), + [anon_sym_c_double] = ACTIONS(5796), + [anon_sym_c_longdouble] = ACTIONS(5796), + [anon_sym_return] = ACTIONS(5796), + [anon_sym_yield] = ACTIONS(5796), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_break] = ACTIONS(5796), + [anon_sym_continue] = ACTIONS(5796), + [anon_sym_defer] = ACTIONS(5796), + [anon_sym_errdefer] = ACTIONS(5796), + [anon_sym_if] = ACTIONS(5796), + [anon_sym_else] = ACTIONS(5796), + [anon_sym_while] = ACTIONS(5796), + [anon_sym_expand] = ACTIONS(5796), + [anon_sym_for] = ACTIONS(5796), + [anon_sym_match] = ACTIONS(5796), + [anon_sym_DOT_DOT] = ACTIONS(5796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5794), + [anon_sym_orelse] = ACTIONS(5796), + [anon_sym_or] = ACTIONS(5796), + [anon_sym_and] = ACTIONS(5796), + [anon_sym_EQ_EQ] = ACTIONS(5794), + [anon_sym_BANG_EQ] = ACTIONS(5794), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_LT_EQ] = ACTIONS(5794), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_GT_EQ] = ACTIONS(5794), + [anon_sym_AMP] = ACTIONS(5794), + [anon_sym_xor] = ACTIONS(5796), + [anon_sym_LT_LT] = ACTIONS(5796), + [anon_sym_GT_GT] = ACTIONS(5794), + [anon_sym_LT_LT_PIPE] = ACTIONS(5794), + [anon_sym_PLUS] = ACTIONS(5794), + [anon_sym_SLASH] = ACTIONS(5794), + [anon_sym_catch] = ACTIONS(5796), + [anon_sym_TILDE] = ACTIONS(5794), + [anon_sym_try] = ACTIONS(5796), + [anon_sym_DOT] = ACTIONS(5796), + [anon_sym_CARET] = ACTIONS(5794), + [anon_sym_true] = ACTIONS(5796), + [anon_sym_false] = ACTIONS(5796), + [anon_sym_null] = ACTIONS(5796), + [anon_sym_unreachable] = ACTIONS(5796), + [anon_sym_undefined] = ACTIONS(5796), + [sym_sink] = ACTIONS(5796), + [sym_integer] = ACTIONS(5796), + [sym_float] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5794), + [sym_multiline_string] = ACTIONS(5794), + [sym_character] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5794), + }, + [STATE(4241)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3284), + [sym_labeled_block] = STATE(3284), + [sym_if_statement] = STATE(3284), + [sym_while_statement] = STATE(3284), + [sym_for_statement] = STATE(3284), + [sym_match_statement] = STATE(3284), + [sym__value] = STATE(3284), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4242)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3285), + [sym_labeled_block] = STATE(3285), + [sym_if_statement] = STATE(3285), + [sym_while_statement] = STATE(3285), + [sym_for_statement] = STATE(3285), + [sym_match_statement] = STATE(3285), + [sym__value] = STATE(3285), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4254), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7072), + }, + [STATE(4243)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4251), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7074), + }, + [STATE(4244)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4257), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7076), + }, + [STATE(4245)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10966), + [sym_labeled_block] = STATE(10966), + [sym_if_statement] = STATE(10966), + [sym_while_statement] = STATE(10966), + [sym_for_statement] = STATE(10966), + [sym_match_statement] = STATE(10966), + [sym__value] = STATE(10966), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4334), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7078), + }, + [STATE(4246)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3286), + [sym_labeled_block] = STATE(3286), + [sym_if_statement] = STATE(3286), + [sym_while_statement] = STATE(3286), + [sym_for_statement] = STATE(3286), + [sym_match_statement] = STATE(3286), + [sym__value] = STATE(3286), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4256), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7080), + }, + [STATE(4247)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(4248)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3287), + [sym_labeled_block] = STATE(3287), + [sym_if_statement] = STATE(3287), + [sym_while_statement] = STATE(3287), + [sym_for_statement] = STATE(3287), + [sym_match_statement] = STATE(3287), + [sym__value] = STATE(3287), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4249)] = { + [ts_builtin_sym_end] = ACTIONS(5108), + [sym_identifier] = ACTIONS(5110), + [anon_sym_import] = ACTIONS(5110), + [anon_sym_test] = ACTIONS(5110), + [anon_sym_hide] = ACTIONS(5110), + [anon_sym_func] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_struct] = ACTIONS(5110), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_LBRACE] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_QMARK] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_void] = ACTIONS(5110), + [anon_sym_noreturn] = ACTIONS(5110), + [anon_sym_type] = ACTIONS(5110), + [anon_sym_anyopaque] = ACTIONS(5110), + [anon_sym_bool] = ACTIONS(5110), + [anon_sym_int] = ACTIONS(5110), + [anon_sym_uint] = ACTIONS(5110), + [anon_sym_float] = ACTIONS(5110), + [anon_sym_range] = ACTIONS(5110), + [anon_sym_i8] = ACTIONS(5110), + [anon_sym_i16] = ACTIONS(5110), + [anon_sym_i32] = ACTIONS(5110), + [anon_sym_i64] = ACTIONS(5110), + [anon_sym_u8] = ACTIONS(5110), + [anon_sym_u16] = ACTIONS(5110), + [anon_sym_u32] = ACTIONS(5110), + [anon_sym_u64] = ACTIONS(5110), + [anon_sym_isize] = ACTIONS(5110), + [anon_sym_usize] = ACTIONS(5110), + [anon_sym_f32] = ACTIONS(5110), + [anon_sym_f64] = ACTIONS(5110), + [anon_sym_c_char] = ACTIONS(5110), + [anon_sym_c_schar] = ACTIONS(5110), + [anon_sym_c_uchar] = ACTIONS(5110), + [anon_sym_c_short] = ACTIONS(5110), + [anon_sym_c_ushort] = ACTIONS(5110), + [anon_sym_c_int] = ACTIONS(5110), + [anon_sym_c_uint] = ACTIONS(5110), + [anon_sym_c_long] = ACTIONS(5110), + [anon_sym_c_ulong] = ACTIONS(5110), + [anon_sym_c_longlong] = ACTIONS(5110), + [anon_sym_c_ulonglong] = ACTIONS(5110), + [anon_sym_c_float] = ACTIONS(5110), + [anon_sym_c_double] = ACTIONS(5110), + [anon_sym_c_longdouble] = ACTIONS(5110), + [anon_sym_return] = ACTIONS(5110), + [anon_sym_yield] = ACTIONS(5110), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_break] = ACTIONS(5110), + [anon_sym_continue] = ACTIONS(5110), + [anon_sym_defer] = ACTIONS(5110), + [anon_sym_errdefer] = ACTIONS(5110), + [anon_sym_if] = ACTIONS(5110), + [anon_sym_else] = ACTIONS(5110), + [anon_sym_while] = ACTIONS(5110), + [anon_sym_expand] = ACTIONS(5110), + [anon_sym_for] = ACTIONS(5110), + [anon_sym_match] = ACTIONS(5110), + [anon_sym_DOT_DOT] = ACTIONS(5110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5108), + [anon_sym_orelse] = ACTIONS(5110), + [anon_sym_or] = ACTIONS(5110), + [anon_sym_and] = ACTIONS(5110), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_AMP] = ACTIONS(5108), + [anon_sym_xor] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5108), + [anon_sym_LT_LT_PIPE] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_catch] = ACTIONS(5110), + [anon_sym_TILDE] = ACTIONS(5108), + [anon_sym_try] = ACTIONS(5110), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_true] = ACTIONS(5110), + [anon_sym_false] = ACTIONS(5110), + [anon_sym_null] = ACTIONS(5110), + [anon_sym_unreachable] = ACTIONS(5110), + [anon_sym_undefined] = ACTIONS(5110), + [sym_sink] = ACTIONS(5110), + [sym_integer] = ACTIONS(5110), + [sym_float] = ACTIONS(5108), + [anon_sym_DQUOTE] = ACTIONS(5108), + [sym_multiline_string] = ACTIONS(5108), + [sym_character] = ACTIONS(5108), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5108), + }, + [STATE(4250)] = { + [ts_builtin_sym_end] = ACTIONS(4556), + [sym_identifier] = ACTIONS(4558), + [anon_sym_import] = ACTIONS(4558), + [anon_sym_test] = ACTIONS(4558), + [anon_sym_hide] = ACTIONS(4558), + [anon_sym_func] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_struct] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4556), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_STAR] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_void] = ACTIONS(4558), + [anon_sym_noreturn] = ACTIONS(4558), + [anon_sym_type] = ACTIONS(4558), + [anon_sym_anyopaque] = ACTIONS(4558), + [anon_sym_bool] = ACTIONS(4558), + [anon_sym_int] = ACTIONS(4558), + [anon_sym_uint] = ACTIONS(4558), + [anon_sym_float] = ACTIONS(4558), + [anon_sym_range] = ACTIONS(4558), + [anon_sym_i8] = ACTIONS(4558), + [anon_sym_i16] = ACTIONS(4558), + [anon_sym_i32] = ACTIONS(4558), + [anon_sym_i64] = ACTIONS(4558), + [anon_sym_u8] = ACTIONS(4558), + [anon_sym_u16] = ACTIONS(4558), + [anon_sym_u32] = ACTIONS(4558), + [anon_sym_u64] = ACTIONS(4558), + [anon_sym_isize] = ACTIONS(4558), + [anon_sym_usize] = ACTIONS(4558), + [anon_sym_f32] = ACTIONS(4558), + [anon_sym_f64] = ACTIONS(4558), + [anon_sym_c_char] = ACTIONS(4558), + [anon_sym_c_schar] = ACTIONS(4558), + [anon_sym_c_uchar] = ACTIONS(4558), + [anon_sym_c_short] = ACTIONS(4558), + [anon_sym_c_ushort] = ACTIONS(4558), + [anon_sym_c_int] = ACTIONS(4558), + [anon_sym_c_uint] = ACTIONS(4558), + [anon_sym_c_long] = ACTIONS(4558), + [anon_sym_c_ulong] = ACTIONS(4558), + [anon_sym_c_longlong] = ACTIONS(4558), + [anon_sym_c_ulonglong] = ACTIONS(4558), + [anon_sym_c_float] = ACTIONS(4558), + [anon_sym_c_double] = ACTIONS(4558), + [anon_sym_c_longdouble] = ACTIONS(4558), + [anon_sym_return] = ACTIONS(4558), + [anon_sym_yield] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4556), + [anon_sym_break] = ACTIONS(4558), + [anon_sym_continue] = ACTIONS(4558), + [anon_sym_defer] = ACTIONS(4558), + [anon_sym_errdefer] = ACTIONS(4558), + [anon_sym_if] = ACTIONS(4558), + [anon_sym_else] = ACTIONS(4558), + [anon_sym_while] = ACTIONS(4558), + [anon_sym_expand] = ACTIONS(4558), + [anon_sym_for] = ACTIONS(4558), + [anon_sym_match] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4556), + [anon_sym_orelse] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4556), + [anon_sym_BANG_EQ] = ACTIONS(4556), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4556), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_xor] = ACTIONS(4558), + [anon_sym_LT_LT] = ACTIONS(4558), + [anon_sym_GT_GT] = ACTIONS(4556), + [anon_sym_LT_LT_PIPE] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4556), + [anon_sym_catch] = ACTIONS(4558), + [anon_sym_TILDE] = ACTIONS(4556), + [anon_sym_try] = ACTIONS(4558), + [anon_sym_DOT] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4556), + [anon_sym_true] = ACTIONS(4558), + [anon_sym_false] = ACTIONS(4558), + [anon_sym_null] = ACTIONS(4558), + [anon_sym_unreachable] = ACTIONS(4558), + [anon_sym_undefined] = ACTIONS(4558), + [sym_sink] = ACTIONS(4558), + [sym_integer] = ACTIONS(4558), + [sym_float] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(4556), + [sym_multiline_string] = ACTIONS(4556), + [sym_character] = ACTIONS(4556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4556), + }, + [STATE(4251)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4252)] = { + [ts_builtin_sym_end] = ACTIONS(5112), + [sym_identifier] = ACTIONS(5114), + [anon_sym_import] = ACTIONS(5114), + [anon_sym_test] = ACTIONS(5114), + [anon_sym_hide] = ACTIONS(5114), + [anon_sym_func] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_struct] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_LBRACE] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_QMARK] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_void] = ACTIONS(5114), + [anon_sym_noreturn] = ACTIONS(5114), + [anon_sym_type] = ACTIONS(5114), + [anon_sym_anyopaque] = ACTIONS(5114), + [anon_sym_bool] = ACTIONS(5114), + [anon_sym_int] = ACTIONS(5114), + [anon_sym_uint] = ACTIONS(5114), + [anon_sym_float] = ACTIONS(5114), + [anon_sym_range] = ACTIONS(5114), + [anon_sym_i8] = ACTIONS(5114), + [anon_sym_i16] = ACTIONS(5114), + [anon_sym_i32] = ACTIONS(5114), + [anon_sym_i64] = ACTIONS(5114), + [anon_sym_u8] = ACTIONS(5114), + [anon_sym_u16] = ACTIONS(5114), + [anon_sym_u32] = ACTIONS(5114), + [anon_sym_u64] = ACTIONS(5114), + [anon_sym_isize] = ACTIONS(5114), + [anon_sym_usize] = ACTIONS(5114), + [anon_sym_f32] = ACTIONS(5114), + [anon_sym_f64] = ACTIONS(5114), + [anon_sym_c_char] = ACTIONS(5114), + [anon_sym_c_schar] = ACTIONS(5114), + [anon_sym_c_uchar] = ACTIONS(5114), + [anon_sym_c_short] = ACTIONS(5114), + [anon_sym_c_ushort] = ACTIONS(5114), + [anon_sym_c_int] = ACTIONS(5114), + [anon_sym_c_uint] = ACTIONS(5114), + [anon_sym_c_long] = ACTIONS(5114), + [anon_sym_c_ulong] = ACTIONS(5114), + [anon_sym_c_longlong] = ACTIONS(5114), + [anon_sym_c_ulonglong] = ACTIONS(5114), + [anon_sym_c_float] = ACTIONS(5114), + [anon_sym_c_double] = ACTIONS(5114), + [anon_sym_c_longdouble] = ACTIONS(5114), + [anon_sym_return] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5114), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_break] = ACTIONS(5114), + [anon_sym_continue] = ACTIONS(5114), + [anon_sym_defer] = ACTIONS(5114), + [anon_sym_errdefer] = ACTIONS(5114), + [anon_sym_if] = ACTIONS(5114), + [anon_sym_else] = ACTIONS(5114), + [anon_sym_while] = ACTIONS(5114), + [anon_sym_expand] = ACTIONS(5114), + [anon_sym_for] = ACTIONS(5114), + [anon_sym_match] = ACTIONS(5114), + [anon_sym_DOT_DOT] = ACTIONS(5114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5112), + [anon_sym_orelse] = ACTIONS(5114), + [anon_sym_or] = ACTIONS(5114), + [anon_sym_and] = ACTIONS(5114), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_AMP] = ACTIONS(5112), + [anon_sym_xor] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5112), + [anon_sym_LT_LT_PIPE] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_catch] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5112), + [anon_sym_try] = ACTIONS(5114), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_true] = ACTIONS(5114), + [anon_sym_false] = ACTIONS(5114), + [anon_sym_null] = ACTIONS(5114), + [anon_sym_unreachable] = ACTIONS(5114), + [anon_sym_undefined] = ACTIONS(5114), + [sym_sink] = ACTIONS(5114), + [sym_integer] = ACTIONS(5114), + [sym_float] = ACTIONS(5112), + [anon_sym_DQUOTE] = ACTIONS(5112), + [sym_multiline_string] = ACTIONS(5112), + [sym_character] = ACTIONS(5112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5112), + }, + [STATE(4253)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4260), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7082), + }, + [STATE(4254)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3303), + [sym_labeled_block] = STATE(3303), + [sym_if_statement] = STATE(3303), + [sym_while_statement] = STATE(3303), + [sym_for_statement] = STATE(3303), + [sym_match_statement] = STATE(3303), + [sym__value] = STATE(3303), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4255)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4261), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7084), + }, + [STATE(4256)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3304), + [sym_labeled_block] = STATE(3304), + [sym_if_statement] = STATE(3304), + [sym_while_statement] = STATE(3304), + [sym_for_statement] = STATE(3304), + [sym_match_statement] = STATE(3304), + [sym__value] = STATE(3304), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4257)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4258)] = { + [ts_builtin_sym_end] = ACTIONS(4560), + [sym_identifier] = ACTIONS(4562), + [anon_sym_import] = ACTIONS(4562), + [anon_sym_test] = ACTIONS(4562), + [anon_sym_hide] = ACTIONS(4562), + [anon_sym_func] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_struct] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4560), + [anon_sym_PIPE] = ACTIONS(4560), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_void] = ACTIONS(4562), + [anon_sym_noreturn] = ACTIONS(4562), + [anon_sym_type] = ACTIONS(4562), + [anon_sym_anyopaque] = ACTIONS(4562), + [anon_sym_bool] = ACTIONS(4562), + [anon_sym_int] = ACTIONS(4562), + [anon_sym_uint] = ACTIONS(4562), + [anon_sym_float] = ACTIONS(4562), + [anon_sym_range] = ACTIONS(4562), + [anon_sym_i8] = ACTIONS(4562), + [anon_sym_i16] = ACTIONS(4562), + [anon_sym_i32] = ACTIONS(4562), + [anon_sym_i64] = ACTIONS(4562), + [anon_sym_u8] = ACTIONS(4562), + [anon_sym_u16] = ACTIONS(4562), + [anon_sym_u32] = ACTIONS(4562), + [anon_sym_u64] = ACTIONS(4562), + [anon_sym_isize] = ACTIONS(4562), + [anon_sym_usize] = ACTIONS(4562), + [anon_sym_f32] = ACTIONS(4562), + [anon_sym_f64] = ACTIONS(4562), + [anon_sym_c_char] = ACTIONS(4562), + [anon_sym_c_schar] = ACTIONS(4562), + [anon_sym_c_uchar] = ACTIONS(4562), + [anon_sym_c_short] = ACTIONS(4562), + [anon_sym_c_ushort] = ACTIONS(4562), + [anon_sym_c_int] = ACTIONS(4562), + [anon_sym_c_uint] = ACTIONS(4562), + [anon_sym_c_long] = ACTIONS(4562), + [anon_sym_c_ulong] = ACTIONS(4562), + [anon_sym_c_longlong] = ACTIONS(4562), + [anon_sym_c_ulonglong] = ACTIONS(4562), + [anon_sym_c_float] = ACTIONS(4562), + [anon_sym_c_double] = ACTIONS(4562), + [anon_sym_c_longdouble] = ACTIONS(4562), + [anon_sym_return] = ACTIONS(4562), + [anon_sym_yield] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4560), + [anon_sym_break] = ACTIONS(4562), + [anon_sym_continue] = ACTIONS(4562), + [anon_sym_defer] = ACTIONS(4562), + [anon_sym_errdefer] = ACTIONS(4562), + [anon_sym_if] = ACTIONS(4562), + [anon_sym_else] = ACTIONS(4562), + [anon_sym_while] = ACTIONS(4562), + [anon_sym_expand] = ACTIONS(4562), + [anon_sym_for] = ACTIONS(4562), + [anon_sym_match] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4560), + [anon_sym_orelse] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4560), + [anon_sym_BANG_EQ] = ACTIONS(4560), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_xor] = ACTIONS(4562), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(4560), + [anon_sym_LT_LT_PIPE] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4560), + [anon_sym_catch] = ACTIONS(4562), + [anon_sym_TILDE] = ACTIONS(4560), + [anon_sym_try] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4560), + [anon_sym_true] = ACTIONS(4562), + [anon_sym_false] = ACTIONS(4562), + [anon_sym_null] = ACTIONS(4562), + [anon_sym_unreachable] = ACTIONS(4562), + [anon_sym_undefined] = ACTIONS(4562), + [sym_sink] = ACTIONS(4562), + [sym_integer] = ACTIONS(4562), + [sym_float] = ACTIONS(4560), + [anon_sym_DQUOTE] = ACTIONS(4560), + [sym_multiline_string] = ACTIONS(4560), + [sym_character] = ACTIONS(4560), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4560), + }, + [STATE(4259)] = { + [ts_builtin_sym_end] = ACTIONS(6150), + [sym_identifier] = ACTIONS(6152), + [anon_sym_import] = ACTIONS(6152), + [anon_sym_test] = ACTIONS(6152), + [anon_sym_hide] = ACTIONS(6152), + [anon_sym_func] = ACTIONS(6152), + [anon_sym_BANG] = ACTIONS(6152), + [anon_sym_struct] = ACTIONS(6152), + [anon_sym_LPAREN] = ACTIONS(6150), + [anon_sym_LBRACE] = ACTIONS(6150), + [anon_sym_RBRACE] = ACTIONS(6150), + [anon_sym_DASH] = ACTIONS(6150), + [anon_sym_DOLLAR] = ACTIONS(6150), + [anon_sym_PIPE] = ACTIONS(6150), + [anon_sym_QMARK] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(6150), + [anon_sym_LBRACK] = ACTIONS(6150), + [anon_sym_void] = ACTIONS(6152), + [anon_sym_noreturn] = ACTIONS(6152), + [anon_sym_type] = ACTIONS(6152), + [anon_sym_anyopaque] = ACTIONS(6152), + [anon_sym_bool] = ACTIONS(6152), + [anon_sym_int] = ACTIONS(6152), + [anon_sym_uint] = ACTIONS(6152), + [anon_sym_float] = ACTIONS(6152), + [anon_sym_range] = ACTIONS(6152), + [anon_sym_i8] = ACTIONS(6152), + [anon_sym_i16] = ACTIONS(6152), + [anon_sym_i32] = ACTIONS(6152), + [anon_sym_i64] = ACTIONS(6152), + [anon_sym_u8] = ACTIONS(6152), + [anon_sym_u16] = ACTIONS(6152), + [anon_sym_u32] = ACTIONS(6152), + [anon_sym_u64] = ACTIONS(6152), + [anon_sym_isize] = ACTIONS(6152), + [anon_sym_usize] = ACTIONS(6152), + [anon_sym_f32] = ACTIONS(6152), + [anon_sym_f64] = ACTIONS(6152), + [anon_sym_c_char] = ACTIONS(6152), + [anon_sym_c_schar] = ACTIONS(6152), + [anon_sym_c_uchar] = ACTIONS(6152), + [anon_sym_c_short] = ACTIONS(6152), + [anon_sym_c_ushort] = ACTIONS(6152), + [anon_sym_c_int] = ACTIONS(6152), + [anon_sym_c_uint] = ACTIONS(6152), + [anon_sym_c_long] = ACTIONS(6152), + [anon_sym_c_ulong] = ACTIONS(6152), + [anon_sym_c_longlong] = ACTIONS(6152), + [anon_sym_c_ulonglong] = ACTIONS(6152), + [anon_sym_c_float] = ACTIONS(6152), + [anon_sym_c_double] = ACTIONS(6152), + [anon_sym_c_longdouble] = ACTIONS(6152), + [anon_sym_return] = ACTIONS(6152), + [anon_sym_yield] = ACTIONS(6152), + [anon_sym_COLON] = ACTIONS(6150), + [anon_sym_break] = ACTIONS(6152), + [anon_sym_continue] = ACTIONS(6152), + [anon_sym_defer] = ACTIONS(6152), + [anon_sym_errdefer] = ACTIONS(6152), + [anon_sym_if] = ACTIONS(6152), + [anon_sym_else] = ACTIONS(6152), + [anon_sym_while] = ACTIONS(6152), + [anon_sym_expand] = ACTIONS(6152), + [anon_sym_for] = ACTIONS(6152), + [anon_sym_match] = ACTIONS(6152), + [anon_sym_DOT_DOT] = ACTIONS(6152), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6150), + [anon_sym_orelse] = ACTIONS(6152), + [anon_sym_or] = ACTIONS(6152), + [anon_sym_and] = ACTIONS(6152), + [anon_sym_EQ_EQ] = ACTIONS(6150), + [anon_sym_BANG_EQ] = ACTIONS(6150), + [anon_sym_LT] = ACTIONS(6152), + [anon_sym_LT_EQ] = ACTIONS(6150), + [anon_sym_GT] = ACTIONS(6152), + [anon_sym_GT_EQ] = ACTIONS(6150), + [anon_sym_AMP] = ACTIONS(6150), + [anon_sym_xor] = ACTIONS(6152), + [anon_sym_LT_LT] = ACTIONS(6152), + [anon_sym_GT_GT] = ACTIONS(6150), + [anon_sym_LT_LT_PIPE] = ACTIONS(6150), + [anon_sym_PLUS] = ACTIONS(6150), + [anon_sym_SLASH] = ACTIONS(6150), + [anon_sym_catch] = ACTIONS(6152), + [anon_sym_TILDE] = ACTIONS(6150), + [anon_sym_try] = ACTIONS(6152), + [anon_sym_DOT] = ACTIONS(6152), + [anon_sym_CARET] = ACTIONS(6150), + [anon_sym_true] = ACTIONS(6152), + [anon_sym_false] = ACTIONS(6152), + [anon_sym_null] = ACTIONS(6152), + [anon_sym_unreachable] = ACTIONS(6152), + [anon_sym_undefined] = ACTIONS(6152), + [sym_sink] = ACTIONS(6152), + [sym_integer] = ACTIONS(6152), + [sym_float] = ACTIONS(6150), + [anon_sym_DQUOTE] = ACTIONS(6150), + [sym_multiline_string] = ACTIONS(6150), + [sym_character] = ACTIONS(6150), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6150), + }, + [STATE(4260)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4261)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4262)] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1196), + [anon_sym_import] = ACTIONS(1196), + [anon_sym_test] = ACTIONS(1196), + [anon_sym_hide] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = 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_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_anyopaque] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_int] = ACTIONS(1196), + [anon_sym_uint] = ACTIONS(1196), + [anon_sym_float] = ACTIONS(1196), + [anon_sym_range] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_c_char] = ACTIONS(1196), + [anon_sym_c_schar] = ACTIONS(1196), + [anon_sym_c_uchar] = ACTIONS(1196), + [anon_sym_c_short] = ACTIONS(1196), + [anon_sym_c_ushort] = ACTIONS(1196), + [anon_sym_c_int] = ACTIONS(1196), + [anon_sym_c_uint] = ACTIONS(1196), + [anon_sym_c_long] = ACTIONS(1196), + [anon_sym_c_ulong] = ACTIONS(1196), + [anon_sym_c_longlong] = ACTIONS(1196), + [anon_sym_c_ulonglong] = ACTIONS(1196), + [anon_sym_c_float] = ACTIONS(1196), + [anon_sym_c_double] = ACTIONS(1196), + [anon_sym_c_longdouble] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_defer] = ACTIONS(1196), + [anon_sym_errdefer] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_expand] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_unreachable] = ACTIONS(1196), + [anon_sym_undefined] = ACTIONS(1196), + [sym_sink] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [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(4263)] = { + [ts_builtin_sym_end] = ACTIONS(4520), + [sym_identifier] = ACTIONS(4522), + [anon_sym_import] = ACTIONS(4522), + [anon_sym_test] = ACTIONS(4522), + [anon_sym_hide] = ACTIONS(4522), + [anon_sym_func] = ACTIONS(4522), + [anon_sym_BANG] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_DOLLAR] = ACTIONS(4520), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_void] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym_type] = ACTIONS(4522), + [anon_sym_anyopaque] = ACTIONS(4522), + [anon_sym_bool] = ACTIONS(4522), + [anon_sym_int] = ACTIONS(4522), + [anon_sym_uint] = ACTIONS(4522), + [anon_sym_float] = ACTIONS(4522), + [anon_sym_range] = ACTIONS(4522), + [anon_sym_i8] = ACTIONS(4522), + [anon_sym_i16] = ACTIONS(4522), + [anon_sym_i32] = ACTIONS(4522), + [anon_sym_i64] = ACTIONS(4522), + [anon_sym_u8] = ACTIONS(4522), + [anon_sym_u16] = ACTIONS(4522), + [anon_sym_u32] = ACTIONS(4522), + [anon_sym_u64] = ACTIONS(4522), + [anon_sym_isize] = ACTIONS(4522), + [anon_sym_usize] = ACTIONS(4522), + [anon_sym_f32] = ACTIONS(4522), + [anon_sym_f64] = ACTIONS(4522), + [anon_sym_c_char] = ACTIONS(4522), + [anon_sym_c_schar] = ACTIONS(4522), + [anon_sym_c_uchar] = ACTIONS(4522), + [anon_sym_c_short] = ACTIONS(4522), + [anon_sym_c_ushort] = ACTIONS(4522), + [anon_sym_c_int] = ACTIONS(4522), + [anon_sym_c_uint] = ACTIONS(4522), + [anon_sym_c_long] = ACTIONS(4522), + [anon_sym_c_ulong] = ACTIONS(4522), + [anon_sym_c_longlong] = ACTIONS(4522), + [anon_sym_c_ulonglong] = ACTIONS(4522), + [anon_sym_c_float] = ACTIONS(4522), + [anon_sym_c_double] = ACTIONS(4522), + [anon_sym_c_longdouble] = ACTIONS(4522), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_yield] = ACTIONS(4522), + [anon_sym_COLON] = ACTIONS(4520), + [anon_sym_break] = ACTIONS(4522), + [anon_sym_continue] = ACTIONS(4522), + [anon_sym_defer] = ACTIONS(4522), + [anon_sym_errdefer] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_else] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_expand] = ACTIONS(4522), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_match] = ACTIONS(4522), + [anon_sym_DOT_DOT] = ACTIONS(4522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4520), + [anon_sym_orelse] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4522), + [anon_sym_and] = ACTIONS(4522), + [anon_sym_EQ_EQ] = ACTIONS(4520), + [anon_sym_BANG_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_GT] = ACTIONS(4522), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4522), + [anon_sym_LT_LT] = ACTIONS(4522), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym_LT_LT_PIPE] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_catch] = ACTIONS(4522), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4522), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_true] = ACTIONS(4522), + [anon_sym_false] = ACTIONS(4522), + [anon_sym_null] = ACTIONS(4522), + [anon_sym_unreachable] = ACTIONS(4522), + [anon_sym_undefined] = ACTIONS(4522), + [sym_sink] = ACTIONS(4522), + [sym_integer] = ACTIONS(4522), + [sym_float] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [sym_multiline_string] = ACTIONS(4520), + [sym_character] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4520), + }, + [STATE(4264)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10718), + [sym_labeled_block] = STATE(10718), + [sym_if_statement] = STATE(10718), + [sym_while_statement] = STATE(10718), + [sym_for_statement] = STATE(10718), + [sym_match_statement] = STATE(10718), + [sym__value] = STATE(10718), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4265)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9611), + [sym_labeled_block] = STATE(9611), + [sym_if_statement] = STATE(9611), + [sym_while_statement] = STATE(9611), + [sym_for_statement] = STATE(9611), + [sym_match_statement] = STATE(9611), + [sym__value] = STATE(9611), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4266)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9615), + [sym_labeled_block] = STATE(9615), + [sym_if_statement] = STATE(9615), + [sym_while_statement] = STATE(9615), + [sym_for_statement] = STATE(9615), + [sym_match_statement] = STATE(9615), + [sym__value] = STATE(9615), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4267)] = { + [ts_builtin_sym_end] = ACTIONS(4570), + [sym_identifier] = ACTIONS(4572), + [anon_sym_import] = ACTIONS(4572), + [anon_sym_test] = ACTIONS(4572), + [anon_sym_hide] = ACTIONS(4572), + [anon_sym_func] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_struct] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_QMARK] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_void] = ACTIONS(4572), + [anon_sym_noreturn] = ACTIONS(4572), + [anon_sym_type] = ACTIONS(4572), + [anon_sym_anyopaque] = ACTIONS(4572), + [anon_sym_bool] = ACTIONS(4572), + [anon_sym_int] = ACTIONS(4572), + [anon_sym_uint] = ACTIONS(4572), + [anon_sym_float] = ACTIONS(4572), + [anon_sym_range] = ACTIONS(4572), + [anon_sym_i8] = ACTIONS(4572), + [anon_sym_i16] = ACTIONS(4572), + [anon_sym_i32] = ACTIONS(4572), + [anon_sym_i64] = ACTIONS(4572), + [anon_sym_u8] = ACTIONS(4572), + [anon_sym_u16] = ACTIONS(4572), + [anon_sym_u32] = ACTIONS(4572), + [anon_sym_u64] = ACTIONS(4572), + [anon_sym_isize] = ACTIONS(4572), + [anon_sym_usize] = ACTIONS(4572), + [anon_sym_f32] = ACTIONS(4572), + [anon_sym_f64] = ACTIONS(4572), + [anon_sym_c_char] = ACTIONS(4572), + [anon_sym_c_schar] = ACTIONS(4572), + [anon_sym_c_uchar] = ACTIONS(4572), + [anon_sym_c_short] = ACTIONS(4572), + [anon_sym_c_ushort] = ACTIONS(4572), + [anon_sym_c_int] = ACTIONS(4572), + [anon_sym_c_uint] = ACTIONS(4572), + [anon_sym_c_long] = ACTIONS(4572), + [anon_sym_c_ulong] = ACTIONS(4572), + [anon_sym_c_longlong] = ACTIONS(4572), + [anon_sym_c_ulonglong] = ACTIONS(4572), + [anon_sym_c_float] = ACTIONS(4572), + [anon_sym_c_double] = ACTIONS(4572), + [anon_sym_c_longdouble] = ACTIONS(4572), + [anon_sym_return] = ACTIONS(4572), + [anon_sym_yield] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4570), + [anon_sym_break] = ACTIONS(4572), + [anon_sym_continue] = ACTIONS(4572), + [anon_sym_defer] = ACTIONS(4572), + [anon_sym_errdefer] = ACTIONS(4572), + [anon_sym_if] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_while] = ACTIONS(4572), + [anon_sym_expand] = ACTIONS(4572), + [anon_sym_for] = ACTIONS(4572), + [anon_sym_match] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4570), + [anon_sym_orelse] = ACTIONS(4572), + [anon_sym_or] = ACTIONS(4572), + [anon_sym_and] = ACTIONS(4572), + [anon_sym_EQ_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_xor] = ACTIONS(4572), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(4570), + [anon_sym_LT_LT_PIPE] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_catch] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_try] = ACTIONS(4572), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_null] = ACTIONS(4572), + [anon_sym_unreachable] = ACTIONS(4572), + [anon_sym_undefined] = ACTIONS(4572), + [sym_sink] = ACTIONS(4572), + [sym_integer] = ACTIONS(4572), + [sym_float] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [sym_multiline_string] = ACTIONS(4570), + [sym_character] = ACTIONS(4570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4570), + }, + [STATE(4268)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4269)] = { + [ts_builtin_sym_end] = ACTIONS(5576), + [sym_identifier] = ACTIONS(5578), + [anon_sym_import] = ACTIONS(5578), + [anon_sym_test] = ACTIONS(5578), + [anon_sym_hide] = ACTIONS(5578), + [anon_sym_func] = ACTIONS(5578), + [anon_sym_BANG] = ACTIONS(5578), + [anon_sym_struct] = ACTIONS(5578), + [anon_sym_LPAREN] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5576), + [anon_sym_RBRACE] = ACTIONS(5576), + [anon_sym_DASH] = ACTIONS(5576), + [anon_sym_DOLLAR] = ACTIONS(5576), + [anon_sym_PIPE] = ACTIONS(5576), + [anon_sym_QMARK] = ACTIONS(5576), + [anon_sym_STAR] = ACTIONS(5576), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym_void] = ACTIONS(5578), + [anon_sym_noreturn] = ACTIONS(5578), + [anon_sym_type] = ACTIONS(5578), + [anon_sym_anyopaque] = ACTIONS(5578), + [anon_sym_bool] = ACTIONS(5578), + [anon_sym_int] = ACTIONS(5578), + [anon_sym_uint] = ACTIONS(5578), + [anon_sym_float] = ACTIONS(5578), + [anon_sym_range] = ACTIONS(5578), + [anon_sym_i8] = ACTIONS(5578), + [anon_sym_i16] = ACTIONS(5578), + [anon_sym_i32] = ACTIONS(5578), + [anon_sym_i64] = ACTIONS(5578), + [anon_sym_u8] = ACTIONS(5578), + [anon_sym_u16] = ACTIONS(5578), + [anon_sym_u32] = ACTIONS(5578), + [anon_sym_u64] = ACTIONS(5578), + [anon_sym_isize] = ACTIONS(5578), + [anon_sym_usize] = ACTIONS(5578), + [anon_sym_f32] = ACTIONS(5578), + [anon_sym_f64] = ACTIONS(5578), + [anon_sym_c_char] = ACTIONS(5578), + [anon_sym_c_schar] = ACTIONS(5578), + [anon_sym_c_uchar] = ACTIONS(5578), + [anon_sym_c_short] = ACTIONS(5578), + [anon_sym_c_ushort] = ACTIONS(5578), + [anon_sym_c_int] = ACTIONS(5578), + [anon_sym_c_uint] = ACTIONS(5578), + [anon_sym_c_long] = ACTIONS(5578), + [anon_sym_c_ulong] = ACTIONS(5578), + [anon_sym_c_longlong] = ACTIONS(5578), + [anon_sym_c_ulonglong] = ACTIONS(5578), + [anon_sym_c_float] = ACTIONS(5578), + [anon_sym_c_double] = ACTIONS(5578), + [anon_sym_c_longdouble] = ACTIONS(5578), + [anon_sym_return] = ACTIONS(5578), + [anon_sym_yield] = ACTIONS(5578), + [anon_sym_COLON] = ACTIONS(5576), + [anon_sym_break] = ACTIONS(5578), + [anon_sym_continue] = ACTIONS(5578), + [anon_sym_defer] = ACTIONS(5578), + [anon_sym_errdefer] = ACTIONS(5578), + [anon_sym_if] = ACTIONS(5578), + [anon_sym_else] = ACTIONS(5578), + [anon_sym_while] = ACTIONS(5578), + [anon_sym_expand] = ACTIONS(5578), + [anon_sym_for] = ACTIONS(5578), + [anon_sym_match] = ACTIONS(5578), + [anon_sym_DOT_DOT] = ACTIONS(5578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5576), + [anon_sym_orelse] = ACTIONS(5578), + [anon_sym_or] = ACTIONS(5578), + [anon_sym_and] = ACTIONS(5578), + [anon_sym_EQ_EQ] = ACTIONS(5576), + [anon_sym_BANG_EQ] = ACTIONS(5576), + [anon_sym_LT] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5578), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_AMP] = ACTIONS(5576), + [anon_sym_xor] = ACTIONS(5578), + [anon_sym_LT_LT] = ACTIONS(5578), + [anon_sym_GT_GT] = ACTIONS(5576), + [anon_sym_LT_LT_PIPE] = ACTIONS(5576), + [anon_sym_PLUS] = ACTIONS(5576), + [anon_sym_SLASH] = ACTIONS(5576), + [anon_sym_catch] = ACTIONS(5578), + [anon_sym_TILDE] = ACTIONS(5576), + [anon_sym_try] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_CARET] = ACTIONS(5576), + [anon_sym_true] = ACTIONS(5578), + [anon_sym_false] = ACTIONS(5578), + [anon_sym_null] = ACTIONS(5578), + [anon_sym_unreachable] = ACTIONS(5578), + [anon_sym_undefined] = ACTIONS(5578), + [sym_sink] = ACTIONS(5578), + [sym_integer] = ACTIONS(5578), + [sym_float] = ACTIONS(5576), + [anon_sym_DQUOTE] = ACTIONS(5576), + [sym_multiline_string] = ACTIONS(5576), + [sym_character] = ACTIONS(5576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5576), + }, + [STATE(4270)] = { + [ts_builtin_sym_end] = ACTIONS(5502), + [sym_identifier] = ACTIONS(5504), + [anon_sym_import] = ACTIONS(5504), + [anon_sym_test] = ACTIONS(5504), + [anon_sym_hide] = ACTIONS(5504), + [anon_sym_func] = ACTIONS(5504), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_struct] = ACTIONS(5504), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5502), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_DOLLAR] = ACTIONS(5502), + [anon_sym_PIPE] = ACTIONS(5502), + [anon_sym_QMARK] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_LBRACK] = ACTIONS(5502), + [anon_sym_void] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym_type] = ACTIONS(5504), + [anon_sym_anyopaque] = ACTIONS(5504), + [anon_sym_bool] = ACTIONS(5504), + [anon_sym_int] = ACTIONS(5504), + [anon_sym_uint] = ACTIONS(5504), + [anon_sym_float] = ACTIONS(5504), + [anon_sym_range] = ACTIONS(5504), + [anon_sym_i8] = ACTIONS(5504), + [anon_sym_i16] = ACTIONS(5504), + [anon_sym_i32] = ACTIONS(5504), + [anon_sym_i64] = ACTIONS(5504), + [anon_sym_u8] = ACTIONS(5504), + [anon_sym_u16] = ACTIONS(5504), + [anon_sym_u32] = ACTIONS(5504), + [anon_sym_u64] = ACTIONS(5504), + [anon_sym_isize] = ACTIONS(5504), + [anon_sym_usize] = ACTIONS(5504), + [anon_sym_f32] = ACTIONS(5504), + [anon_sym_f64] = ACTIONS(5504), + [anon_sym_c_char] = ACTIONS(5504), + [anon_sym_c_schar] = ACTIONS(5504), + [anon_sym_c_uchar] = ACTIONS(5504), + [anon_sym_c_short] = ACTIONS(5504), + [anon_sym_c_ushort] = ACTIONS(5504), + [anon_sym_c_int] = ACTIONS(5504), + [anon_sym_c_uint] = ACTIONS(5504), + [anon_sym_c_long] = ACTIONS(5504), + [anon_sym_c_ulong] = ACTIONS(5504), + [anon_sym_c_longlong] = ACTIONS(5504), + [anon_sym_c_ulonglong] = ACTIONS(5504), + [anon_sym_c_float] = ACTIONS(5504), + [anon_sym_c_double] = ACTIONS(5504), + [anon_sym_c_longdouble] = ACTIONS(5504), + [anon_sym_return] = ACTIONS(5504), + [anon_sym_yield] = ACTIONS(5504), + [anon_sym_COLON] = ACTIONS(5502), + [anon_sym_break] = ACTIONS(5504), + [anon_sym_continue] = ACTIONS(5504), + [anon_sym_defer] = ACTIONS(5504), + [anon_sym_errdefer] = ACTIONS(5504), + [anon_sym_if] = ACTIONS(5504), + [anon_sym_else] = ACTIONS(5504), + [anon_sym_while] = ACTIONS(5504), + [anon_sym_expand] = ACTIONS(5504), + [anon_sym_for] = ACTIONS(5504), + [anon_sym_match] = ACTIONS(5504), + [anon_sym_DOT_DOT] = ACTIONS(5504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5502), + [anon_sym_orelse] = ACTIONS(5504), + [anon_sym_or] = ACTIONS(5504), + [anon_sym_and] = ACTIONS(5504), + [anon_sym_EQ_EQ] = ACTIONS(5502), + [anon_sym_BANG_EQ] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_LT_EQ] = ACTIONS(5502), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_GT_EQ] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5502), + [anon_sym_xor] = ACTIONS(5504), + [anon_sym_LT_LT] = ACTIONS(5504), + [anon_sym_GT_GT] = ACTIONS(5502), + [anon_sym_LT_LT_PIPE] = ACTIONS(5502), + [anon_sym_PLUS] = ACTIONS(5502), + [anon_sym_SLASH] = ACTIONS(5502), + [anon_sym_catch] = ACTIONS(5504), + [anon_sym_TILDE] = ACTIONS(5502), + [anon_sym_try] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5502), + [anon_sym_true] = ACTIONS(5504), + [anon_sym_false] = ACTIONS(5504), + [anon_sym_null] = ACTIONS(5504), + [anon_sym_unreachable] = ACTIONS(5504), + [anon_sym_undefined] = ACTIONS(5504), + [sym_sink] = ACTIONS(5504), + [sym_integer] = ACTIONS(5504), + [sym_float] = ACTIONS(5502), + [anon_sym_DQUOTE] = ACTIONS(5502), + [sym_multiline_string] = ACTIONS(5502), + [sym_character] = ACTIONS(5502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5502), + }, + [STATE(4271)] = { + [ts_builtin_sym_end] = ACTIONS(5718), + [sym_identifier] = ACTIONS(5720), + [anon_sym_import] = ACTIONS(5720), + [anon_sym_test] = ACTIONS(5720), + [anon_sym_hide] = ACTIONS(5720), + [anon_sym_func] = ACTIONS(5720), + [anon_sym_BANG] = ACTIONS(5720), + [anon_sym_struct] = ACTIONS(5720), + [anon_sym_LPAREN] = ACTIONS(5718), + [anon_sym_LBRACE] = ACTIONS(5718), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5718), + [anon_sym_DOLLAR] = ACTIONS(5718), + [anon_sym_PIPE] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [anon_sym_STAR] = ACTIONS(5718), + [anon_sym_LBRACK] = ACTIONS(5718), + [anon_sym_void] = ACTIONS(5720), + [anon_sym_noreturn] = ACTIONS(5720), + [anon_sym_type] = ACTIONS(5720), + [anon_sym_anyopaque] = ACTIONS(5720), + [anon_sym_bool] = ACTIONS(5720), + [anon_sym_int] = ACTIONS(5720), + [anon_sym_uint] = ACTIONS(5720), + [anon_sym_float] = ACTIONS(5720), + [anon_sym_range] = ACTIONS(5720), + [anon_sym_i8] = ACTIONS(5720), + [anon_sym_i16] = ACTIONS(5720), + [anon_sym_i32] = ACTIONS(5720), + [anon_sym_i64] = ACTIONS(5720), + [anon_sym_u8] = ACTIONS(5720), + [anon_sym_u16] = ACTIONS(5720), + [anon_sym_u32] = ACTIONS(5720), + [anon_sym_u64] = ACTIONS(5720), + [anon_sym_isize] = ACTIONS(5720), + [anon_sym_usize] = ACTIONS(5720), + [anon_sym_f32] = ACTIONS(5720), + [anon_sym_f64] = ACTIONS(5720), + [anon_sym_c_char] = ACTIONS(5720), + [anon_sym_c_schar] = ACTIONS(5720), + [anon_sym_c_uchar] = ACTIONS(5720), + [anon_sym_c_short] = ACTIONS(5720), + [anon_sym_c_ushort] = ACTIONS(5720), + [anon_sym_c_int] = ACTIONS(5720), + [anon_sym_c_uint] = ACTIONS(5720), + [anon_sym_c_long] = ACTIONS(5720), + [anon_sym_c_ulong] = ACTIONS(5720), + [anon_sym_c_longlong] = ACTIONS(5720), + [anon_sym_c_ulonglong] = ACTIONS(5720), + [anon_sym_c_float] = ACTIONS(5720), + [anon_sym_c_double] = ACTIONS(5720), + [anon_sym_c_longdouble] = ACTIONS(5720), + [anon_sym_return] = ACTIONS(5720), + [anon_sym_yield] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5718), + [anon_sym_break] = ACTIONS(5720), + [anon_sym_continue] = ACTIONS(5720), + [anon_sym_defer] = ACTIONS(5720), + [anon_sym_errdefer] = ACTIONS(5720), + [anon_sym_if] = ACTIONS(5720), + [anon_sym_else] = ACTIONS(5720), + [anon_sym_while] = ACTIONS(5720), + [anon_sym_expand] = ACTIONS(5720), + [anon_sym_for] = ACTIONS(5720), + [anon_sym_match] = ACTIONS(5720), + [anon_sym_DOT_DOT] = ACTIONS(5720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5718), + [anon_sym_orelse] = ACTIONS(5720), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5718), + [anon_sym_BANG_EQ] = ACTIONS(5718), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_EQ] = ACTIONS(5718), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5718), + [anon_sym_AMP] = ACTIONS(5718), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5720), + [anon_sym_GT_GT] = ACTIONS(5718), + [anon_sym_LT_LT_PIPE] = ACTIONS(5718), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_SLASH] = ACTIONS(5718), + [anon_sym_catch] = ACTIONS(5720), + [anon_sym_TILDE] = ACTIONS(5718), + [anon_sym_try] = ACTIONS(5720), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5718), + [anon_sym_true] = ACTIONS(5720), + [anon_sym_false] = ACTIONS(5720), + [anon_sym_null] = ACTIONS(5720), + [anon_sym_unreachable] = ACTIONS(5720), + [anon_sym_undefined] = ACTIONS(5720), + [sym_sink] = ACTIONS(5720), + [sym_integer] = ACTIONS(5720), + [sym_float] = ACTIONS(5718), + [anon_sym_DQUOTE] = ACTIONS(5718), + [sym_multiline_string] = ACTIONS(5718), + [sym_character] = ACTIONS(5718), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5718), + }, + [STATE(4272)] = { + [ts_builtin_sym_end] = ACTIONS(5506), + [sym_identifier] = ACTIONS(5508), + [anon_sym_import] = ACTIONS(5508), + [anon_sym_test] = ACTIONS(5508), + [anon_sym_hide] = ACTIONS(5508), + [anon_sym_func] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5508), + [anon_sym_struct] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LBRACE] = ACTIONS(5506), + [anon_sym_RBRACE] = ACTIONS(5506), + [anon_sym_DASH] = ACTIONS(5506), + [anon_sym_DOLLAR] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5506), + [anon_sym_QMARK] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_void] = ACTIONS(5508), + [anon_sym_noreturn] = ACTIONS(5508), + [anon_sym_type] = ACTIONS(5508), + [anon_sym_anyopaque] = ACTIONS(5508), + [anon_sym_bool] = ACTIONS(5508), + [anon_sym_int] = ACTIONS(5508), + [anon_sym_uint] = ACTIONS(5508), + [anon_sym_float] = ACTIONS(5508), + [anon_sym_range] = ACTIONS(5508), + [anon_sym_i8] = ACTIONS(5508), + [anon_sym_i16] = ACTIONS(5508), + [anon_sym_i32] = ACTIONS(5508), + [anon_sym_i64] = ACTIONS(5508), + [anon_sym_u8] = ACTIONS(5508), + [anon_sym_u16] = ACTIONS(5508), + [anon_sym_u32] = ACTIONS(5508), + [anon_sym_u64] = ACTIONS(5508), + [anon_sym_isize] = ACTIONS(5508), + [anon_sym_usize] = ACTIONS(5508), + [anon_sym_f32] = ACTIONS(5508), + [anon_sym_f64] = ACTIONS(5508), + [anon_sym_c_char] = ACTIONS(5508), + [anon_sym_c_schar] = ACTIONS(5508), + [anon_sym_c_uchar] = ACTIONS(5508), + [anon_sym_c_short] = ACTIONS(5508), + [anon_sym_c_ushort] = ACTIONS(5508), + [anon_sym_c_int] = ACTIONS(5508), + [anon_sym_c_uint] = ACTIONS(5508), + [anon_sym_c_long] = ACTIONS(5508), + [anon_sym_c_ulong] = ACTIONS(5508), + [anon_sym_c_longlong] = ACTIONS(5508), + [anon_sym_c_ulonglong] = ACTIONS(5508), + [anon_sym_c_float] = ACTIONS(5508), + [anon_sym_c_double] = ACTIONS(5508), + [anon_sym_c_longdouble] = ACTIONS(5508), + [anon_sym_return] = ACTIONS(5508), + [anon_sym_yield] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5506), + [anon_sym_break] = ACTIONS(5508), + [anon_sym_continue] = ACTIONS(5508), + [anon_sym_defer] = ACTIONS(5508), + [anon_sym_errdefer] = ACTIONS(5508), + [anon_sym_if] = ACTIONS(5508), + [anon_sym_else] = ACTIONS(5508), + [anon_sym_while] = ACTIONS(5508), + [anon_sym_expand] = ACTIONS(5508), + [anon_sym_for] = ACTIONS(5508), + [anon_sym_match] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5506), + [anon_sym_orelse] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_LT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5506), + [anon_sym_GT] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5506), + [anon_sym_xor] = ACTIONS(5508), + [anon_sym_LT_LT] = ACTIONS(5508), + [anon_sym_GT_GT] = ACTIONS(5506), + [anon_sym_LT_LT_PIPE] = ACTIONS(5506), + [anon_sym_PLUS] = ACTIONS(5506), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_catch] = ACTIONS(5508), + [anon_sym_TILDE] = ACTIONS(5506), + [anon_sym_try] = ACTIONS(5508), + [anon_sym_DOT] = ACTIONS(5508), + [anon_sym_CARET] = ACTIONS(5506), + [anon_sym_true] = ACTIONS(5508), + [anon_sym_false] = ACTIONS(5508), + [anon_sym_null] = ACTIONS(5508), + [anon_sym_unreachable] = ACTIONS(5508), + [anon_sym_undefined] = ACTIONS(5508), + [sym_sink] = ACTIONS(5508), + [sym_integer] = ACTIONS(5508), + [sym_float] = ACTIONS(5506), + [anon_sym_DQUOTE] = ACTIONS(5506), + [sym_multiline_string] = ACTIONS(5506), + [sym_character] = ACTIONS(5506), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5506), + }, + [STATE(4273)] = { + [ts_builtin_sym_end] = ACTIONS(5684), + [sym_identifier] = ACTIONS(5686), + [anon_sym_import] = ACTIONS(5686), + [anon_sym_test] = ACTIONS(5686), + [anon_sym_hide] = ACTIONS(5686), + [anon_sym_func] = ACTIONS(5686), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_struct] = ACTIONS(5686), + [anon_sym_LPAREN] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5684), + [anon_sym_RBRACE] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_DOLLAR] = ACTIONS(5684), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5684), + [anon_sym_void] = ACTIONS(5686), + [anon_sym_noreturn] = ACTIONS(5686), + [anon_sym_type] = ACTIONS(5686), + [anon_sym_anyopaque] = ACTIONS(5686), + [anon_sym_bool] = ACTIONS(5686), + [anon_sym_int] = ACTIONS(5686), + [anon_sym_uint] = ACTIONS(5686), + [anon_sym_float] = ACTIONS(5686), + [anon_sym_range] = ACTIONS(5686), + [anon_sym_i8] = ACTIONS(5686), + [anon_sym_i16] = ACTIONS(5686), + [anon_sym_i32] = ACTIONS(5686), + [anon_sym_i64] = ACTIONS(5686), + [anon_sym_u8] = ACTIONS(5686), + [anon_sym_u16] = ACTIONS(5686), + [anon_sym_u32] = ACTIONS(5686), + [anon_sym_u64] = ACTIONS(5686), + [anon_sym_isize] = ACTIONS(5686), + [anon_sym_usize] = ACTIONS(5686), + [anon_sym_f32] = ACTIONS(5686), + [anon_sym_f64] = ACTIONS(5686), + [anon_sym_c_char] = ACTIONS(5686), + [anon_sym_c_schar] = ACTIONS(5686), + [anon_sym_c_uchar] = ACTIONS(5686), + [anon_sym_c_short] = ACTIONS(5686), + [anon_sym_c_ushort] = ACTIONS(5686), + [anon_sym_c_int] = ACTIONS(5686), + [anon_sym_c_uint] = ACTIONS(5686), + [anon_sym_c_long] = ACTIONS(5686), + [anon_sym_c_ulong] = ACTIONS(5686), + [anon_sym_c_longlong] = ACTIONS(5686), + [anon_sym_c_ulonglong] = ACTIONS(5686), + [anon_sym_c_float] = ACTIONS(5686), + [anon_sym_c_double] = ACTIONS(5686), + [anon_sym_c_longdouble] = ACTIONS(5686), + [anon_sym_return] = ACTIONS(5686), + [anon_sym_yield] = ACTIONS(5686), + [anon_sym_COLON] = ACTIONS(5684), + [anon_sym_break] = ACTIONS(5686), + [anon_sym_continue] = ACTIONS(5686), + [anon_sym_defer] = ACTIONS(5686), + [anon_sym_errdefer] = ACTIONS(5686), + [anon_sym_if] = ACTIONS(5686), + [anon_sym_else] = ACTIONS(5686), + [anon_sym_while] = ACTIONS(5686), + [anon_sym_expand] = ACTIONS(5686), + [anon_sym_for] = ACTIONS(5686), + [anon_sym_match] = ACTIONS(5686), + [anon_sym_DOT_DOT] = ACTIONS(5686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5684), + [anon_sym_orelse] = ACTIONS(5686), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_EQ_EQ] = ACTIONS(5684), + [anon_sym_BANG_EQ] = ACTIONS(5684), + [anon_sym_LT] = ACTIONS(5686), + [anon_sym_LT_EQ] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5686), + [anon_sym_GT_EQ] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_xor] = ACTIONS(5686), + [anon_sym_LT_LT] = ACTIONS(5686), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_LT_LT_PIPE] = ACTIONS(5684), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_SLASH] = ACTIONS(5684), + [anon_sym_catch] = ACTIONS(5686), + [anon_sym_TILDE] = ACTIONS(5684), + [anon_sym_try] = ACTIONS(5686), + [anon_sym_DOT] = ACTIONS(5686), + [anon_sym_CARET] = ACTIONS(5684), + [anon_sym_true] = ACTIONS(5686), + [anon_sym_false] = ACTIONS(5686), + [anon_sym_null] = ACTIONS(5686), + [anon_sym_unreachable] = ACTIONS(5686), + [anon_sym_undefined] = ACTIONS(5686), + [sym_sink] = ACTIONS(5686), + [sym_integer] = ACTIONS(5686), + [sym_float] = ACTIONS(5684), + [anon_sym_DQUOTE] = ACTIONS(5684), + [sym_multiline_string] = ACTIONS(5684), + [sym_character] = ACTIONS(5684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5684), + }, + [STATE(4274)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4344), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7086), + }, + [STATE(4275)] = { + [ts_builtin_sym_end] = ACTIONS(5688), + [sym_identifier] = ACTIONS(5690), + [anon_sym_import] = ACTIONS(5690), + [anon_sym_test] = ACTIONS(5690), + [anon_sym_hide] = ACTIONS(5690), + [anon_sym_func] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5690), + [anon_sym_LPAREN] = ACTIONS(5688), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5688), + [anon_sym_DOLLAR] = ACTIONS(5688), + [anon_sym_PIPE] = ACTIONS(5688), + [anon_sym_QMARK] = ACTIONS(5688), + [anon_sym_STAR] = ACTIONS(5688), + [anon_sym_LBRACK] = ACTIONS(5688), + [anon_sym_void] = ACTIONS(5690), + [anon_sym_noreturn] = ACTIONS(5690), + [anon_sym_type] = ACTIONS(5690), + [anon_sym_anyopaque] = ACTIONS(5690), + [anon_sym_bool] = ACTIONS(5690), + [anon_sym_int] = ACTIONS(5690), + [anon_sym_uint] = ACTIONS(5690), + [anon_sym_float] = ACTIONS(5690), + [anon_sym_range] = ACTIONS(5690), + [anon_sym_i8] = ACTIONS(5690), + [anon_sym_i16] = ACTIONS(5690), + [anon_sym_i32] = ACTIONS(5690), + [anon_sym_i64] = ACTIONS(5690), + [anon_sym_u8] = ACTIONS(5690), + [anon_sym_u16] = ACTIONS(5690), + [anon_sym_u32] = ACTIONS(5690), + [anon_sym_u64] = ACTIONS(5690), + [anon_sym_isize] = ACTIONS(5690), + [anon_sym_usize] = ACTIONS(5690), + [anon_sym_f32] = ACTIONS(5690), + [anon_sym_f64] = ACTIONS(5690), + [anon_sym_c_char] = ACTIONS(5690), + [anon_sym_c_schar] = ACTIONS(5690), + [anon_sym_c_uchar] = ACTIONS(5690), + [anon_sym_c_short] = ACTIONS(5690), + [anon_sym_c_ushort] = ACTIONS(5690), + [anon_sym_c_int] = ACTIONS(5690), + [anon_sym_c_uint] = ACTIONS(5690), + [anon_sym_c_long] = ACTIONS(5690), + [anon_sym_c_ulong] = ACTIONS(5690), + [anon_sym_c_longlong] = ACTIONS(5690), + [anon_sym_c_ulonglong] = ACTIONS(5690), + [anon_sym_c_float] = ACTIONS(5690), + [anon_sym_c_double] = ACTIONS(5690), + [anon_sym_c_longdouble] = ACTIONS(5690), + [anon_sym_return] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(5690), + [anon_sym_COLON] = ACTIONS(5688), + [anon_sym_break] = ACTIONS(5690), + [anon_sym_continue] = ACTIONS(5690), + [anon_sym_defer] = ACTIONS(5690), + [anon_sym_errdefer] = ACTIONS(5690), + [anon_sym_if] = ACTIONS(5690), + [anon_sym_else] = ACTIONS(5690), + [anon_sym_while] = ACTIONS(5690), + [anon_sym_expand] = ACTIONS(5690), + [anon_sym_for] = ACTIONS(5690), + [anon_sym_match] = ACTIONS(5690), + [anon_sym_DOT_DOT] = ACTIONS(5690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5688), + [anon_sym_orelse] = ACTIONS(5690), + [anon_sym_or] = ACTIONS(5690), + [anon_sym_and] = ACTIONS(5690), + [anon_sym_EQ_EQ] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5688), + [anon_sym_LT] = ACTIONS(5690), + [anon_sym_LT_EQ] = ACTIONS(5688), + [anon_sym_GT] = ACTIONS(5690), + [anon_sym_GT_EQ] = ACTIONS(5688), + [anon_sym_AMP] = ACTIONS(5688), + [anon_sym_xor] = ACTIONS(5690), + [anon_sym_LT_LT] = ACTIONS(5690), + [anon_sym_GT_GT] = ACTIONS(5688), + [anon_sym_LT_LT_PIPE] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5688), + [anon_sym_SLASH] = ACTIONS(5688), + [anon_sym_catch] = ACTIONS(5690), + [anon_sym_TILDE] = ACTIONS(5688), + [anon_sym_try] = ACTIONS(5690), + [anon_sym_DOT] = ACTIONS(5690), + [anon_sym_CARET] = ACTIONS(5688), + [anon_sym_true] = ACTIONS(5690), + [anon_sym_false] = ACTIONS(5690), + [anon_sym_null] = ACTIONS(5690), + [anon_sym_unreachable] = ACTIONS(5690), + [anon_sym_undefined] = ACTIONS(5690), + [sym_sink] = ACTIONS(5690), + [sym_integer] = ACTIONS(5690), + [sym_float] = ACTIONS(5688), + [anon_sym_DQUOTE] = ACTIONS(5688), + [sym_multiline_string] = ACTIONS(5688), + [sym_character] = ACTIONS(5688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5688), + }, + [STATE(4276)] = { + [ts_builtin_sym_end] = ACTIONS(5774), + [sym_identifier] = ACTIONS(5776), + [anon_sym_import] = ACTIONS(5776), + [anon_sym_test] = ACTIONS(5776), + [anon_sym_hide] = ACTIONS(5776), + [anon_sym_func] = ACTIONS(5776), + [anon_sym_BANG] = ACTIONS(5776), + [anon_sym_struct] = ACTIONS(5776), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_DOLLAR] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_STAR] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_void] = ACTIONS(5776), + [anon_sym_noreturn] = ACTIONS(5776), + [anon_sym_type] = ACTIONS(5776), + [anon_sym_anyopaque] = ACTIONS(5776), + [anon_sym_bool] = ACTIONS(5776), + [anon_sym_int] = ACTIONS(5776), + [anon_sym_uint] = ACTIONS(5776), + [anon_sym_float] = ACTIONS(5776), + [anon_sym_range] = ACTIONS(5776), + [anon_sym_i8] = ACTIONS(5776), + [anon_sym_i16] = ACTIONS(5776), + [anon_sym_i32] = ACTIONS(5776), + [anon_sym_i64] = ACTIONS(5776), + [anon_sym_u8] = ACTIONS(5776), + [anon_sym_u16] = ACTIONS(5776), + [anon_sym_u32] = ACTIONS(5776), + [anon_sym_u64] = ACTIONS(5776), + [anon_sym_isize] = ACTIONS(5776), + [anon_sym_usize] = ACTIONS(5776), + [anon_sym_f32] = ACTIONS(5776), + [anon_sym_f64] = ACTIONS(5776), + [anon_sym_c_char] = ACTIONS(5776), + [anon_sym_c_schar] = ACTIONS(5776), + [anon_sym_c_uchar] = ACTIONS(5776), + [anon_sym_c_short] = ACTIONS(5776), + [anon_sym_c_ushort] = ACTIONS(5776), + [anon_sym_c_int] = ACTIONS(5776), + [anon_sym_c_uint] = ACTIONS(5776), + [anon_sym_c_long] = ACTIONS(5776), + [anon_sym_c_ulong] = ACTIONS(5776), + [anon_sym_c_longlong] = ACTIONS(5776), + [anon_sym_c_ulonglong] = ACTIONS(5776), + [anon_sym_c_float] = ACTIONS(5776), + [anon_sym_c_double] = ACTIONS(5776), + [anon_sym_c_longdouble] = ACTIONS(5776), + [anon_sym_return] = ACTIONS(5776), + [anon_sym_yield] = ACTIONS(5776), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_break] = ACTIONS(5776), + [anon_sym_continue] = ACTIONS(5776), + [anon_sym_defer] = ACTIONS(5776), + [anon_sym_errdefer] = ACTIONS(5776), + [anon_sym_if] = ACTIONS(5776), + [anon_sym_else] = ACTIONS(5776), + [anon_sym_while] = ACTIONS(5776), + [anon_sym_expand] = ACTIONS(5776), + [anon_sym_for] = ACTIONS(5776), + [anon_sym_match] = ACTIONS(5776), + [anon_sym_DOT_DOT] = ACTIONS(5776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5774), + [anon_sym_orelse] = ACTIONS(5776), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5774), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5774), + [anon_sym_LT_LT_PIPE] = ACTIONS(5774), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_SLASH] = ACTIONS(5774), + [anon_sym_catch] = ACTIONS(5776), + [anon_sym_TILDE] = ACTIONS(5774), + [anon_sym_try] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5774), + [anon_sym_true] = ACTIONS(5776), + [anon_sym_false] = ACTIONS(5776), + [anon_sym_null] = ACTIONS(5776), + [anon_sym_unreachable] = ACTIONS(5776), + [anon_sym_undefined] = ACTIONS(5776), + [sym_sink] = ACTIONS(5776), + [sym_integer] = ACTIONS(5776), + [sym_float] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(5774), + [sym_multiline_string] = ACTIONS(5774), + [sym_character] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5774), + }, + [STATE(4277)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4364), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7088), + }, + [STATE(4278)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10514), + [sym_labeled_block] = STATE(10514), + [sym_if_statement] = STATE(10514), + [sym_while_statement] = STATE(10514), + [sym_for_statement] = STATE(10514), + [sym_match_statement] = STATE(10514), + [sym__value] = STATE(10514), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4379), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7090), + }, + [STATE(4279)] = { + [ts_builtin_sym_end] = ACTIONS(4576), + [sym_identifier] = ACTIONS(4578), + [anon_sym_import] = ACTIONS(4578), + [anon_sym_test] = ACTIONS(4578), + [anon_sym_hide] = ACTIONS(4578), + [anon_sym_func] = ACTIONS(4578), + [anon_sym_BANG] = ACTIONS(4578), + [anon_sym_struct] = ACTIONS(4578), + [anon_sym_LPAREN] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4576), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_void] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_type] = ACTIONS(4578), + [anon_sym_anyopaque] = ACTIONS(4578), + [anon_sym_bool] = ACTIONS(4578), + [anon_sym_int] = ACTIONS(4578), + [anon_sym_uint] = ACTIONS(4578), + [anon_sym_float] = ACTIONS(4578), + [anon_sym_range] = ACTIONS(4578), + [anon_sym_i8] = ACTIONS(4578), + [anon_sym_i16] = ACTIONS(4578), + [anon_sym_i32] = ACTIONS(4578), + [anon_sym_i64] = ACTIONS(4578), + [anon_sym_u8] = ACTIONS(4578), + [anon_sym_u16] = ACTIONS(4578), + [anon_sym_u32] = ACTIONS(4578), + [anon_sym_u64] = ACTIONS(4578), + [anon_sym_isize] = ACTIONS(4578), + [anon_sym_usize] = ACTIONS(4578), + [anon_sym_f32] = ACTIONS(4578), + [anon_sym_f64] = ACTIONS(4578), + [anon_sym_c_char] = ACTIONS(4578), + [anon_sym_c_schar] = ACTIONS(4578), + [anon_sym_c_uchar] = ACTIONS(4578), + [anon_sym_c_short] = ACTIONS(4578), + [anon_sym_c_ushort] = ACTIONS(4578), + [anon_sym_c_int] = ACTIONS(4578), + [anon_sym_c_uint] = ACTIONS(4578), + [anon_sym_c_long] = ACTIONS(4578), + [anon_sym_c_ulong] = ACTIONS(4578), + [anon_sym_c_longlong] = ACTIONS(4578), + [anon_sym_c_ulonglong] = ACTIONS(4578), + [anon_sym_c_float] = ACTIONS(4578), + [anon_sym_c_double] = ACTIONS(4578), + [anon_sym_c_longdouble] = ACTIONS(4578), + [anon_sym_return] = ACTIONS(4578), + [anon_sym_yield] = ACTIONS(4578), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_break] = ACTIONS(4578), + [anon_sym_continue] = ACTIONS(4578), + [anon_sym_defer] = ACTIONS(4578), + [anon_sym_errdefer] = ACTIONS(4578), + [anon_sym_if] = ACTIONS(4578), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_while] = ACTIONS(4578), + [anon_sym_expand] = ACTIONS(4578), + [anon_sym_for] = ACTIONS(4578), + [anon_sym_match] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4576), + [anon_sym_orelse] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4578), + [anon_sym_EQ_EQ] = ACTIONS(4576), + [anon_sym_BANG_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_GT_EQ] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_xor] = ACTIONS(4578), + [anon_sym_LT_LT] = ACTIONS(4578), + [anon_sym_GT_GT] = ACTIONS(4576), + [anon_sym_LT_LT_PIPE] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_catch] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_try] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_null] = ACTIONS(4578), + [anon_sym_unreachable] = ACTIONS(4578), + [anon_sym_undefined] = ACTIONS(4578), + [sym_sink] = ACTIONS(4578), + [sym_integer] = ACTIONS(4578), + [sym_float] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [sym_multiline_string] = ACTIONS(4576), + [sym_character] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4576), + }, + [STATE(4280)] = { + [ts_builtin_sym_end] = ACTIONS(5116), + [sym_identifier] = ACTIONS(5118), + [anon_sym_import] = ACTIONS(5118), + [anon_sym_test] = ACTIONS(5118), + [anon_sym_hide] = ACTIONS(5118), + [anon_sym_func] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_struct] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_QMARK] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_void] = ACTIONS(5118), + [anon_sym_noreturn] = ACTIONS(5118), + [anon_sym_type] = ACTIONS(5118), + [anon_sym_anyopaque] = ACTIONS(5118), + [anon_sym_bool] = ACTIONS(5118), + [anon_sym_int] = ACTIONS(5118), + [anon_sym_uint] = ACTIONS(5118), + [anon_sym_float] = ACTIONS(5118), + [anon_sym_range] = ACTIONS(5118), + [anon_sym_i8] = ACTIONS(5118), + [anon_sym_i16] = ACTIONS(5118), + [anon_sym_i32] = ACTIONS(5118), + [anon_sym_i64] = ACTIONS(5118), + [anon_sym_u8] = ACTIONS(5118), + [anon_sym_u16] = ACTIONS(5118), + [anon_sym_u32] = ACTIONS(5118), + [anon_sym_u64] = ACTIONS(5118), + [anon_sym_isize] = ACTIONS(5118), + [anon_sym_usize] = ACTIONS(5118), + [anon_sym_f32] = ACTIONS(5118), + [anon_sym_f64] = ACTIONS(5118), + [anon_sym_c_char] = ACTIONS(5118), + [anon_sym_c_schar] = ACTIONS(5118), + [anon_sym_c_uchar] = ACTIONS(5118), + [anon_sym_c_short] = ACTIONS(5118), + [anon_sym_c_ushort] = ACTIONS(5118), + [anon_sym_c_int] = ACTIONS(5118), + [anon_sym_c_uint] = ACTIONS(5118), + [anon_sym_c_long] = ACTIONS(5118), + [anon_sym_c_ulong] = ACTIONS(5118), + [anon_sym_c_longlong] = ACTIONS(5118), + [anon_sym_c_ulonglong] = ACTIONS(5118), + [anon_sym_c_float] = ACTIONS(5118), + [anon_sym_c_double] = ACTIONS(5118), + [anon_sym_c_longdouble] = ACTIONS(5118), + [anon_sym_return] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5118), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_break] = ACTIONS(5118), + [anon_sym_continue] = ACTIONS(5118), + [anon_sym_defer] = ACTIONS(5118), + [anon_sym_errdefer] = ACTIONS(5118), + [anon_sym_if] = ACTIONS(5118), + [anon_sym_else] = ACTIONS(5118), + [anon_sym_while] = ACTIONS(5118), + [anon_sym_expand] = ACTIONS(5118), + [anon_sym_for] = ACTIONS(5118), + [anon_sym_match] = ACTIONS(5118), + [anon_sym_DOT_DOT] = ACTIONS(5118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5116), + [anon_sym_orelse] = ACTIONS(5118), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_and] = ACTIONS(5118), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_xor] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5116), + [anon_sym_LT_LT_PIPE] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_catch] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_true] = ACTIONS(5118), + [anon_sym_false] = ACTIONS(5118), + [anon_sym_null] = ACTIONS(5118), + [anon_sym_unreachable] = ACTIONS(5118), + [anon_sym_undefined] = ACTIONS(5118), + [sym_sink] = ACTIONS(5118), + [sym_integer] = ACTIONS(5118), + [sym_float] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [sym_multiline_string] = ACTIONS(5116), + [sym_character] = ACTIONS(5116), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5116), + }, + [STATE(4281)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10521), + [sym_labeled_block] = STATE(10521), + [sym_if_statement] = STATE(10521), + [sym_while_statement] = STATE(10521), + [sym_for_statement] = STATE(10521), + [sym_match_statement] = STATE(10521), + [sym__value] = STATE(10521), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4413), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7092), + }, + [STATE(4282)] = { + [ts_builtin_sym_end] = ACTIONS(5120), + [sym_identifier] = ACTIONS(5122), + [anon_sym_import] = ACTIONS(5122), + [anon_sym_test] = ACTIONS(5122), + [anon_sym_hide] = ACTIONS(5122), + [anon_sym_func] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_struct] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_QMARK] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_void] = ACTIONS(5122), + [anon_sym_noreturn] = ACTIONS(5122), + [anon_sym_type] = ACTIONS(5122), + [anon_sym_anyopaque] = ACTIONS(5122), + [anon_sym_bool] = ACTIONS(5122), + [anon_sym_int] = ACTIONS(5122), + [anon_sym_uint] = ACTIONS(5122), + [anon_sym_float] = ACTIONS(5122), + [anon_sym_range] = ACTIONS(5122), + [anon_sym_i8] = ACTIONS(5122), + [anon_sym_i16] = ACTIONS(5122), + [anon_sym_i32] = ACTIONS(5122), + [anon_sym_i64] = ACTIONS(5122), + [anon_sym_u8] = ACTIONS(5122), + [anon_sym_u16] = ACTIONS(5122), + [anon_sym_u32] = ACTIONS(5122), + [anon_sym_u64] = ACTIONS(5122), + [anon_sym_isize] = ACTIONS(5122), + [anon_sym_usize] = ACTIONS(5122), + [anon_sym_f32] = ACTIONS(5122), + [anon_sym_f64] = ACTIONS(5122), + [anon_sym_c_char] = ACTIONS(5122), + [anon_sym_c_schar] = ACTIONS(5122), + [anon_sym_c_uchar] = ACTIONS(5122), + [anon_sym_c_short] = ACTIONS(5122), + [anon_sym_c_ushort] = ACTIONS(5122), + [anon_sym_c_int] = ACTIONS(5122), + [anon_sym_c_uint] = ACTIONS(5122), + [anon_sym_c_long] = ACTIONS(5122), + [anon_sym_c_ulong] = ACTIONS(5122), + [anon_sym_c_longlong] = ACTIONS(5122), + [anon_sym_c_ulonglong] = ACTIONS(5122), + [anon_sym_c_float] = ACTIONS(5122), + [anon_sym_c_double] = ACTIONS(5122), + [anon_sym_c_longdouble] = ACTIONS(5122), + [anon_sym_return] = ACTIONS(5122), + [anon_sym_yield] = ACTIONS(5122), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_break] = ACTIONS(5122), + [anon_sym_continue] = ACTIONS(5122), + [anon_sym_defer] = ACTIONS(5122), + [anon_sym_errdefer] = ACTIONS(5122), + [anon_sym_if] = ACTIONS(5122), + [anon_sym_else] = ACTIONS(5122), + [anon_sym_while] = ACTIONS(5122), + [anon_sym_expand] = ACTIONS(5122), + [anon_sym_for] = ACTIONS(5122), + [anon_sym_match] = ACTIONS(5122), + [anon_sym_DOT_DOT] = ACTIONS(5122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5120), + [anon_sym_orelse] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_and] = ACTIONS(5122), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_xor] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5120), + [anon_sym_LT_LT_PIPE] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_catch] = ACTIONS(5122), + [anon_sym_TILDE] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_true] = ACTIONS(5122), + [anon_sym_false] = ACTIONS(5122), + [anon_sym_null] = ACTIONS(5122), + [anon_sym_unreachable] = ACTIONS(5122), + [anon_sym_undefined] = ACTIONS(5122), + [sym_sink] = ACTIONS(5122), + [sym_integer] = ACTIONS(5122), + [sym_float] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [sym_multiline_string] = ACTIONS(5120), + [sym_character] = ACTIONS(5120), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5120), + }, + [STATE(4283)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4284)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4339), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7094), + }, + [STATE(4285)] = { + [ts_builtin_sym_end] = ACTIONS(5124), + [sym_identifier] = ACTIONS(5126), + [anon_sym_import] = ACTIONS(5126), + [anon_sym_test] = ACTIONS(5126), + [anon_sym_hide] = ACTIONS(5126), + [anon_sym_func] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_struct] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_QMARK] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_void] = ACTIONS(5126), + [anon_sym_noreturn] = ACTIONS(5126), + [anon_sym_type] = ACTIONS(5126), + [anon_sym_anyopaque] = ACTIONS(5126), + [anon_sym_bool] = ACTIONS(5126), + [anon_sym_int] = ACTIONS(5126), + [anon_sym_uint] = ACTIONS(5126), + [anon_sym_float] = ACTIONS(5126), + [anon_sym_range] = ACTIONS(5126), + [anon_sym_i8] = ACTIONS(5126), + [anon_sym_i16] = ACTIONS(5126), + [anon_sym_i32] = ACTIONS(5126), + [anon_sym_i64] = ACTIONS(5126), + [anon_sym_u8] = ACTIONS(5126), + [anon_sym_u16] = ACTIONS(5126), + [anon_sym_u32] = ACTIONS(5126), + [anon_sym_u64] = ACTIONS(5126), + [anon_sym_isize] = ACTIONS(5126), + [anon_sym_usize] = ACTIONS(5126), + [anon_sym_f32] = ACTIONS(5126), + [anon_sym_f64] = ACTIONS(5126), + [anon_sym_c_char] = ACTIONS(5126), + [anon_sym_c_schar] = ACTIONS(5126), + [anon_sym_c_uchar] = ACTIONS(5126), + [anon_sym_c_short] = ACTIONS(5126), + [anon_sym_c_ushort] = ACTIONS(5126), + [anon_sym_c_int] = ACTIONS(5126), + [anon_sym_c_uint] = ACTIONS(5126), + [anon_sym_c_long] = ACTIONS(5126), + [anon_sym_c_ulong] = ACTIONS(5126), + [anon_sym_c_longlong] = ACTIONS(5126), + [anon_sym_c_ulonglong] = ACTIONS(5126), + [anon_sym_c_float] = ACTIONS(5126), + [anon_sym_c_double] = ACTIONS(5126), + [anon_sym_c_longdouble] = ACTIONS(5126), + [anon_sym_return] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5126), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_break] = ACTIONS(5126), + [anon_sym_continue] = ACTIONS(5126), + [anon_sym_defer] = ACTIONS(5126), + [anon_sym_errdefer] = ACTIONS(5126), + [anon_sym_if] = ACTIONS(5126), + [anon_sym_else] = ACTIONS(5126), + [anon_sym_while] = ACTIONS(5126), + [anon_sym_expand] = ACTIONS(5126), + [anon_sym_for] = ACTIONS(5126), + [anon_sym_match] = ACTIONS(5126), + [anon_sym_DOT_DOT] = ACTIONS(5126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5124), + [anon_sym_orelse] = ACTIONS(5126), + [anon_sym_or] = ACTIONS(5126), + [anon_sym_and] = ACTIONS(5126), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_xor] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5126), + [anon_sym_GT_GT] = ACTIONS(5124), + [anon_sym_LT_LT_PIPE] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_catch] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5124), + [anon_sym_try] = ACTIONS(5126), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_true] = ACTIONS(5126), + [anon_sym_false] = ACTIONS(5126), + [anon_sym_null] = ACTIONS(5126), + [anon_sym_unreachable] = ACTIONS(5126), + [anon_sym_undefined] = ACTIONS(5126), + [sym_sink] = ACTIONS(5126), + [sym_integer] = ACTIONS(5126), + [sym_float] = ACTIONS(5124), + [anon_sym_DQUOTE] = ACTIONS(5124), + [sym_multiline_string] = ACTIONS(5124), + [sym_character] = ACTIONS(5124), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5124), + }, + [STATE(4286)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3267), + [sym_labeled_block] = STATE(3267), + [sym_if_statement] = STATE(3267), + [sym_while_statement] = STATE(3267), + [sym_for_statement] = STATE(3267), + [sym_match_statement] = STATE(3267), + [sym__value] = STATE(3267), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4289), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7096), + }, + [STATE(4287)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3268), + [sym_labeled_block] = STATE(3268), + [sym_if_statement] = STATE(3268), + [sym_while_statement] = STATE(3268), + [sym_for_statement] = STATE(3268), + [sym_match_statement] = STATE(3268), + [sym__value] = STATE(3268), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4292), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7098), + }, + [STATE(4288)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4353), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7100), + }, + [STATE(4289)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3284), + [sym_labeled_block] = STATE(3284), + [sym_if_statement] = STATE(3284), + [sym_while_statement] = STATE(3284), + [sym_for_statement] = STATE(3284), + [sym_match_statement] = STATE(3284), + [sym__value] = STATE(3284), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4290)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3285), + [sym_labeled_block] = STATE(3285), + [sym_if_statement] = STATE(3285), + [sym_while_statement] = STATE(3285), + [sym_for_statement] = STATE(3285), + [sym_match_statement] = STATE(3285), + [sym__value] = STATE(3285), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4293), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7102), + }, + [STATE(4291)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3286), + [sym_labeled_block] = STATE(3286), + [sym_if_statement] = STATE(3286), + [sym_while_statement] = STATE(3286), + [sym_for_statement] = STATE(3286), + [sym_match_statement] = STATE(3286), + [sym__value] = STATE(3286), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4294), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7104), + }, + [STATE(4292)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3287), + [sym_labeled_block] = STATE(3287), + [sym_if_statement] = STATE(3287), + [sym_while_statement] = STATE(3287), + [sym_for_statement] = STATE(3287), + [sym_match_statement] = STATE(3287), + [sym__value] = STATE(3287), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4293)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3303), + [sym_labeled_block] = STATE(3303), + [sym_if_statement] = STATE(3303), + [sym_while_statement] = STATE(3303), + [sym_for_statement] = STATE(3303), + [sym_match_statement] = STATE(3303), + [sym__value] = STATE(3303), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4294)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3304), + [sym_labeled_block] = STATE(3304), + [sym_if_statement] = STATE(3304), + [sym_while_statement] = STATE(3304), + [sym_for_statement] = STATE(3304), + [sym_match_statement] = STATE(3304), + [sym__value] = STATE(3304), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4295)] = { + [ts_builtin_sym_end] = ACTIONS(4494), + [sym_identifier] = ACTIONS(4496), + [anon_sym_import] = ACTIONS(4496), + [anon_sym_test] = ACTIONS(4496), + [anon_sym_hide] = ACTIONS(4496), + [anon_sym_func] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_DOLLAR] = ACTIONS(4494), + [anon_sym_PIPE] = ACTIONS(4494), + [anon_sym_QMARK] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_LBRACK] = ACTIONS(4494), + [anon_sym_void] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_anyopaque] = ACTIONS(4496), + [anon_sym_bool] = ACTIONS(4496), + [anon_sym_int] = ACTIONS(4496), + [anon_sym_uint] = ACTIONS(4496), + [anon_sym_float] = ACTIONS(4496), + [anon_sym_range] = ACTIONS(4496), + [anon_sym_i8] = ACTIONS(4496), + [anon_sym_i16] = ACTIONS(4496), + [anon_sym_i32] = ACTIONS(4496), + [anon_sym_i64] = ACTIONS(4496), + [anon_sym_u8] = ACTIONS(4496), + [anon_sym_u16] = ACTIONS(4496), + [anon_sym_u32] = ACTIONS(4496), + [anon_sym_u64] = ACTIONS(4496), + [anon_sym_isize] = ACTIONS(4496), + [anon_sym_usize] = ACTIONS(4496), + [anon_sym_f32] = ACTIONS(4496), + [anon_sym_f64] = ACTIONS(4496), + [anon_sym_c_char] = ACTIONS(4496), + [anon_sym_c_schar] = ACTIONS(4496), + [anon_sym_c_uchar] = ACTIONS(4496), + [anon_sym_c_short] = ACTIONS(4496), + [anon_sym_c_ushort] = ACTIONS(4496), + [anon_sym_c_int] = ACTIONS(4496), + [anon_sym_c_uint] = ACTIONS(4496), + [anon_sym_c_long] = ACTIONS(4496), + [anon_sym_c_ulong] = ACTIONS(4496), + [anon_sym_c_longlong] = ACTIONS(4496), + [anon_sym_c_ulonglong] = ACTIONS(4496), + [anon_sym_c_float] = ACTIONS(4496), + [anon_sym_c_double] = ACTIONS(4496), + [anon_sym_c_longdouble] = ACTIONS(4496), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_yield] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(7106), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_defer] = ACTIONS(4496), + [anon_sym_errdefer] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_expand] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_match] = ACTIONS(4496), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4494), + [anon_sym_orelse] = ACTIONS(4496), + [anon_sym_or] = ACTIONS(4496), + [anon_sym_and] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_LT] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4494), + [anon_sym_xor] = ACTIONS(4496), + [anon_sym_LT_LT] = ACTIONS(4496), + [anon_sym_GT_GT] = ACTIONS(4494), + [anon_sym_LT_LT_PIPE] = ACTIONS(4494), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_catch] = ACTIONS(4496), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_DOT] = ACTIONS(4496), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym_true] = ACTIONS(4496), + [anon_sym_false] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4496), + [anon_sym_unreachable] = ACTIONS(4496), + [anon_sym_undefined] = ACTIONS(4496), + [sym_sink] = ACTIONS(4496), + [sym_integer] = ACTIONS(4496), + [sym_float] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_multiline_string] = ACTIONS(4494), + [sym_character] = ACTIONS(4494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4494), + }, + [STATE(4296)] = { + [ts_builtin_sym_end] = ACTIONS(5678), + [sym_identifier] = ACTIONS(5680), + [anon_sym_import] = ACTIONS(5680), + [anon_sym_test] = ACTIONS(5680), + [anon_sym_hide] = ACTIONS(5680), + [anon_sym_func] = ACTIONS(5680), + [anon_sym_BANG] = ACTIONS(5680), + [anon_sym_struct] = ACTIONS(5680), + [anon_sym_LPAREN] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5678), + [anon_sym_DOLLAR] = ACTIONS(5678), + [anon_sym_PIPE] = ACTIONS(5678), + [anon_sym_QMARK] = ACTIONS(5678), + [anon_sym_STAR] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_void] = ACTIONS(5680), + [anon_sym_noreturn] = ACTIONS(5680), + [anon_sym_type] = ACTIONS(5680), + [anon_sym_anyopaque] = ACTIONS(5680), + [anon_sym_bool] = ACTIONS(5680), + [anon_sym_int] = ACTIONS(5680), + [anon_sym_uint] = ACTIONS(5680), + [anon_sym_float] = ACTIONS(5680), + [anon_sym_range] = ACTIONS(5680), + [anon_sym_i8] = ACTIONS(5680), + [anon_sym_i16] = ACTIONS(5680), + [anon_sym_i32] = ACTIONS(5680), + [anon_sym_i64] = ACTIONS(5680), + [anon_sym_u8] = ACTIONS(5680), + [anon_sym_u16] = ACTIONS(5680), + [anon_sym_u32] = ACTIONS(5680), + [anon_sym_u64] = ACTIONS(5680), + [anon_sym_isize] = ACTIONS(5680), + [anon_sym_usize] = ACTIONS(5680), + [anon_sym_f32] = ACTIONS(5680), + [anon_sym_f64] = ACTIONS(5680), + [anon_sym_c_char] = ACTIONS(5680), + [anon_sym_c_schar] = ACTIONS(5680), + [anon_sym_c_uchar] = ACTIONS(5680), + [anon_sym_c_short] = ACTIONS(5680), + [anon_sym_c_ushort] = ACTIONS(5680), + [anon_sym_c_int] = ACTIONS(5680), + [anon_sym_c_uint] = ACTIONS(5680), + [anon_sym_c_long] = ACTIONS(5680), + [anon_sym_c_ulong] = ACTIONS(5680), + [anon_sym_c_longlong] = ACTIONS(5680), + [anon_sym_c_ulonglong] = ACTIONS(5680), + [anon_sym_c_float] = ACTIONS(5680), + [anon_sym_c_double] = ACTIONS(5680), + [anon_sym_c_longdouble] = ACTIONS(5680), + [anon_sym_return] = ACTIONS(5680), + [anon_sym_yield] = ACTIONS(5680), + [anon_sym_COLON] = ACTIONS(5678), + [anon_sym_break] = ACTIONS(5680), + [anon_sym_continue] = ACTIONS(5680), + [anon_sym_defer] = ACTIONS(5680), + [anon_sym_errdefer] = ACTIONS(5680), + [anon_sym_if] = ACTIONS(5680), + [anon_sym_else] = ACTIONS(5680), + [anon_sym_while] = ACTIONS(5680), + [anon_sym_expand] = ACTIONS(5680), + [anon_sym_for] = ACTIONS(5680), + [anon_sym_match] = ACTIONS(5680), + [anon_sym_DOT_DOT] = ACTIONS(5680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5678), + [anon_sym_orelse] = ACTIONS(5680), + [anon_sym_or] = ACTIONS(5680), + [anon_sym_and] = ACTIONS(5680), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_LT] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5678), + [anon_sym_GT] = ACTIONS(5680), + [anon_sym_GT_EQ] = ACTIONS(5678), + [anon_sym_AMP] = ACTIONS(5678), + [anon_sym_xor] = ACTIONS(5680), + [anon_sym_LT_LT] = ACTIONS(5680), + [anon_sym_GT_GT] = ACTIONS(5678), + [anon_sym_LT_LT_PIPE] = ACTIONS(5678), + [anon_sym_PLUS] = ACTIONS(5678), + [anon_sym_SLASH] = ACTIONS(5678), + [anon_sym_catch] = ACTIONS(5680), + [anon_sym_TILDE] = ACTIONS(5678), + [anon_sym_try] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_CARET] = ACTIONS(5678), + [anon_sym_true] = ACTIONS(5680), + [anon_sym_false] = ACTIONS(5680), + [anon_sym_null] = ACTIONS(5680), + [anon_sym_unreachable] = ACTIONS(5680), + [anon_sym_undefined] = ACTIONS(5680), + [sym_sink] = ACTIONS(5680), + [sym_integer] = ACTIONS(5680), + [sym_float] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [sym_multiline_string] = ACTIONS(5678), + [sym_character] = ACTIONS(5678), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5678), + }, + [STATE(4297)] = { + [ts_builtin_sym_end] = ACTIONS(5620), + [sym_identifier] = ACTIONS(5622), + [anon_sym_import] = ACTIONS(5622), + [anon_sym_test] = ACTIONS(5622), + [anon_sym_hide] = ACTIONS(5622), + [anon_sym_func] = ACTIONS(5622), + [anon_sym_BANG] = ACTIONS(5622), + [anon_sym_struct] = ACTIONS(5622), + [anon_sym_LPAREN] = ACTIONS(5620), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(5620), + [anon_sym_DOLLAR] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5620), + [anon_sym_QMARK] = ACTIONS(5620), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym_void] = ACTIONS(5622), + [anon_sym_noreturn] = ACTIONS(5622), + [anon_sym_type] = ACTIONS(5622), + [anon_sym_anyopaque] = ACTIONS(5622), + [anon_sym_bool] = ACTIONS(5622), + [anon_sym_int] = ACTIONS(5622), + [anon_sym_uint] = ACTIONS(5622), + [anon_sym_float] = ACTIONS(5622), + [anon_sym_range] = ACTIONS(5622), + [anon_sym_i8] = ACTIONS(5622), + [anon_sym_i16] = ACTIONS(5622), + [anon_sym_i32] = ACTIONS(5622), + [anon_sym_i64] = ACTIONS(5622), + [anon_sym_u8] = ACTIONS(5622), + [anon_sym_u16] = ACTIONS(5622), + [anon_sym_u32] = ACTIONS(5622), + [anon_sym_u64] = ACTIONS(5622), + [anon_sym_isize] = ACTIONS(5622), + [anon_sym_usize] = ACTIONS(5622), + [anon_sym_f32] = ACTIONS(5622), + [anon_sym_f64] = ACTIONS(5622), + [anon_sym_c_char] = ACTIONS(5622), + [anon_sym_c_schar] = ACTIONS(5622), + [anon_sym_c_uchar] = ACTIONS(5622), + [anon_sym_c_short] = ACTIONS(5622), + [anon_sym_c_ushort] = ACTIONS(5622), + [anon_sym_c_int] = ACTIONS(5622), + [anon_sym_c_uint] = ACTIONS(5622), + [anon_sym_c_long] = ACTIONS(5622), + [anon_sym_c_ulong] = ACTIONS(5622), + [anon_sym_c_longlong] = ACTIONS(5622), + [anon_sym_c_ulonglong] = ACTIONS(5622), + [anon_sym_c_float] = ACTIONS(5622), + [anon_sym_c_double] = ACTIONS(5622), + [anon_sym_c_longdouble] = ACTIONS(5622), + [anon_sym_return] = ACTIONS(5622), + [anon_sym_yield] = ACTIONS(5622), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_break] = ACTIONS(5622), + [anon_sym_continue] = ACTIONS(5622), + [anon_sym_defer] = ACTIONS(5622), + [anon_sym_errdefer] = ACTIONS(5622), + [anon_sym_if] = ACTIONS(5622), + [anon_sym_else] = ACTIONS(5622), + [anon_sym_while] = ACTIONS(5622), + [anon_sym_expand] = ACTIONS(5622), + [anon_sym_for] = ACTIONS(5622), + [anon_sym_match] = ACTIONS(5622), + [anon_sym_DOT_DOT] = ACTIONS(5622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5620), + [anon_sym_orelse] = ACTIONS(5622), + [anon_sym_or] = ACTIONS(5622), + [anon_sym_and] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5620), + [anon_sym_BANG_EQ] = ACTIONS(5620), + [anon_sym_LT] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5620), + [anon_sym_AMP] = ACTIONS(5620), + [anon_sym_xor] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5622), + [anon_sym_GT_GT] = ACTIONS(5620), + [anon_sym_LT_LT_PIPE] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5620), + [anon_sym_SLASH] = ACTIONS(5620), + [anon_sym_catch] = ACTIONS(5622), + [anon_sym_TILDE] = ACTIONS(5620), + [anon_sym_try] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5622), + [anon_sym_CARET] = ACTIONS(5620), + [anon_sym_true] = ACTIONS(5622), + [anon_sym_false] = ACTIONS(5622), + [anon_sym_null] = ACTIONS(5622), + [anon_sym_unreachable] = ACTIONS(5622), + [anon_sym_undefined] = ACTIONS(5622), + [sym_sink] = ACTIONS(5622), + [sym_integer] = ACTIONS(5622), + [sym_float] = ACTIONS(5620), + [anon_sym_DQUOTE] = ACTIONS(5620), + [sym_multiline_string] = ACTIONS(5620), + [sym_character] = ACTIONS(5620), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5620), + }, + [STATE(4298)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4902), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(509), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4903), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7108), + }, + [STATE(4299)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3268), + [sym_labeled_block] = STATE(3268), + [sym_if_statement] = STATE(3268), + [sym_while_statement] = STATE(3268), + [sym_for_statement] = STATE(3268), + [sym_match_statement] = STATE(3268), + [sym__value] = STATE(3268), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4150), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7110), + }, + [STATE(4300)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(4859), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(5065), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4860), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7112), + }, + [STATE(4301)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9077), + [sym_error_capture] = STATE(4958), + [sym_if_statement] = STATE(9077), + [sym_while_statement] = STATE(9077), + [sym_for_statement] = STATE(9077), + [sym_match_statement] = STATE(9077), + [sym_expression] = STATE(8960), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4959), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7114), + }, + [STATE(4302)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4304), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7116), + }, + [STATE(4303)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4307), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7118), + }, + [STATE(4304)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4305)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4308), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7120), + }, + [STATE(4306)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4309), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7122), + }, + [STATE(4307)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4308)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4309)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4310)] = { + [ts_builtin_sym_end] = ACTIONS(4932), + [sym_identifier] = ACTIONS(4934), + [anon_sym_import] = ACTIONS(4934), + [anon_sym_test] = ACTIONS(4934), + [anon_sym_hide] = ACTIONS(4934), + [anon_sym_func] = ACTIONS(4934), + [anon_sym_BANG] = ACTIONS(4934), + [anon_sym_struct] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_void] = ACTIONS(4934), + [anon_sym_noreturn] = ACTIONS(4934), + [anon_sym_type] = ACTIONS(4934), + [anon_sym_anyopaque] = ACTIONS(4934), + [anon_sym_bool] = ACTIONS(4934), + [anon_sym_int] = ACTIONS(4934), + [anon_sym_uint] = ACTIONS(4934), + [anon_sym_float] = ACTIONS(4934), + [anon_sym_range] = ACTIONS(4934), + [anon_sym_i8] = ACTIONS(4934), + [anon_sym_i16] = ACTIONS(4934), + [anon_sym_i32] = ACTIONS(4934), + [anon_sym_i64] = ACTIONS(4934), + [anon_sym_u8] = ACTIONS(4934), + [anon_sym_u16] = ACTIONS(4934), + [anon_sym_u32] = ACTIONS(4934), + [anon_sym_u64] = ACTIONS(4934), + [anon_sym_isize] = ACTIONS(4934), + [anon_sym_usize] = ACTIONS(4934), + [anon_sym_f32] = ACTIONS(4934), + [anon_sym_f64] = ACTIONS(4934), + [anon_sym_c_char] = ACTIONS(4934), + [anon_sym_c_schar] = ACTIONS(4934), + [anon_sym_c_uchar] = ACTIONS(4934), + [anon_sym_c_short] = ACTIONS(4934), + [anon_sym_c_ushort] = ACTIONS(4934), + [anon_sym_c_int] = ACTIONS(4934), + [anon_sym_c_uint] = ACTIONS(4934), + [anon_sym_c_long] = ACTIONS(4934), + [anon_sym_c_ulong] = ACTIONS(4934), + [anon_sym_c_longlong] = ACTIONS(4934), + [anon_sym_c_ulonglong] = ACTIONS(4934), + [anon_sym_c_float] = ACTIONS(4934), + [anon_sym_c_double] = ACTIONS(4934), + [anon_sym_c_longdouble] = ACTIONS(4934), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_yield] = ACTIONS(4934), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_continue] = ACTIONS(4934), + [anon_sym_defer] = ACTIONS(4934), + [anon_sym_errdefer] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_while] = ACTIONS(4934), + [anon_sym_expand] = ACTIONS(4934), + [anon_sym_for] = ACTIONS(4934), + [anon_sym_match] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), + [anon_sym_orelse] = ACTIONS(4934), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4932), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4932), + [anon_sym_LT_LT_PIPE] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_catch] = ACTIONS(4934), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4934), + [anon_sym_false] = ACTIONS(4934), + [anon_sym_null] = ACTIONS(4934), + [anon_sym_unreachable] = ACTIONS(4934), + [anon_sym_undefined] = ACTIONS(4934), + [sym_sink] = ACTIONS(4934), + [sym_integer] = ACTIONS(4934), + [sym_float] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [sym_multiline_string] = ACTIONS(4932), + [sym_character] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4932), + }, + [STATE(4311)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(21), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(4312)] = { + [ts_builtin_sym_end] = ACTIONS(4938), + [sym_identifier] = ACTIONS(4940), + [anon_sym_import] = ACTIONS(4940), + [anon_sym_test] = ACTIONS(4940), + [anon_sym_hide] = ACTIONS(4940), + [anon_sym_func] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_struct] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_PIPE] = ACTIONS(4938), + [anon_sym_QMARK] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_void] = ACTIONS(4940), + [anon_sym_noreturn] = ACTIONS(4940), + [anon_sym_type] = ACTIONS(4940), + [anon_sym_anyopaque] = ACTIONS(4940), + [anon_sym_bool] = ACTIONS(4940), + [anon_sym_int] = ACTIONS(4940), + [anon_sym_uint] = ACTIONS(4940), + [anon_sym_float] = ACTIONS(4940), + [anon_sym_range] = ACTIONS(4940), + [anon_sym_i8] = ACTIONS(4940), + [anon_sym_i16] = ACTIONS(4940), + [anon_sym_i32] = ACTIONS(4940), + [anon_sym_i64] = ACTIONS(4940), + [anon_sym_u8] = ACTIONS(4940), + [anon_sym_u16] = ACTIONS(4940), + [anon_sym_u32] = ACTIONS(4940), + [anon_sym_u64] = ACTIONS(4940), + [anon_sym_isize] = ACTIONS(4940), + [anon_sym_usize] = ACTIONS(4940), + [anon_sym_f32] = ACTIONS(4940), + [anon_sym_f64] = ACTIONS(4940), + [anon_sym_c_char] = ACTIONS(4940), + [anon_sym_c_schar] = ACTIONS(4940), + [anon_sym_c_uchar] = ACTIONS(4940), + [anon_sym_c_short] = ACTIONS(4940), + [anon_sym_c_ushort] = ACTIONS(4940), + [anon_sym_c_int] = ACTIONS(4940), + [anon_sym_c_uint] = ACTIONS(4940), + [anon_sym_c_long] = ACTIONS(4940), + [anon_sym_c_ulong] = ACTIONS(4940), + [anon_sym_c_longlong] = ACTIONS(4940), + [anon_sym_c_ulonglong] = ACTIONS(4940), + [anon_sym_c_float] = ACTIONS(4940), + [anon_sym_c_double] = ACTIONS(4940), + [anon_sym_c_longdouble] = ACTIONS(4940), + [anon_sym_return] = ACTIONS(4940), + [anon_sym_yield] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4938), + [anon_sym_break] = ACTIONS(4940), + [anon_sym_continue] = ACTIONS(4940), + [anon_sym_defer] = ACTIONS(4940), + [anon_sym_errdefer] = ACTIONS(4940), + [anon_sym_if] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_while] = ACTIONS(4940), + [anon_sym_expand] = ACTIONS(4940), + [anon_sym_for] = ACTIONS(4940), + [anon_sym_match] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), + [anon_sym_orelse] = ACTIONS(4940), + [anon_sym_or] = ACTIONS(4940), + [anon_sym_and] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_xor] = ACTIONS(4940), + [anon_sym_LT_LT] = ACTIONS(4940), + [anon_sym_GT_GT] = ACTIONS(4938), + [anon_sym_LT_LT_PIPE] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_catch] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_unreachable] = ACTIONS(4940), + [anon_sym_undefined] = ACTIONS(4940), + [sym_sink] = ACTIONS(4940), + [sym_integer] = ACTIONS(4940), + [sym_float] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(4938), + [sym_multiline_string] = ACTIONS(4938), + [sym_character] = ACTIONS(4938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4938), + }, + [STATE(4313)] = { + [ts_builtin_sym_end] = ACTIONS(6122), + [sym_identifier] = ACTIONS(6124), + [anon_sym_import] = ACTIONS(6124), + [anon_sym_test] = ACTIONS(6124), + [anon_sym_hide] = ACTIONS(6124), + [anon_sym_func] = ACTIONS(6124), + [anon_sym_BANG] = ACTIONS(6124), + [anon_sym_struct] = ACTIONS(6124), + [anon_sym_LPAREN] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(6122), + [anon_sym_RBRACE] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6122), + [anon_sym_DOLLAR] = ACTIONS(6122), + [anon_sym_PIPE] = ACTIONS(6122), + [anon_sym_QMARK] = ACTIONS(6122), + [anon_sym_STAR] = ACTIONS(6122), + [anon_sym_LBRACK] = ACTIONS(6122), + [anon_sym_void] = ACTIONS(6124), + [anon_sym_noreturn] = ACTIONS(6124), + [anon_sym_type] = ACTIONS(6124), + [anon_sym_anyopaque] = ACTIONS(6124), + [anon_sym_bool] = ACTIONS(6124), + [anon_sym_int] = ACTIONS(6124), + [anon_sym_uint] = ACTIONS(6124), + [anon_sym_float] = ACTIONS(6124), + [anon_sym_range] = ACTIONS(6124), + [anon_sym_i8] = ACTIONS(6124), + [anon_sym_i16] = ACTIONS(6124), + [anon_sym_i32] = ACTIONS(6124), + [anon_sym_i64] = ACTIONS(6124), + [anon_sym_u8] = ACTIONS(6124), + [anon_sym_u16] = ACTIONS(6124), + [anon_sym_u32] = ACTIONS(6124), + [anon_sym_u64] = ACTIONS(6124), + [anon_sym_isize] = ACTIONS(6124), + [anon_sym_usize] = ACTIONS(6124), + [anon_sym_f32] = ACTIONS(6124), + [anon_sym_f64] = ACTIONS(6124), + [anon_sym_c_char] = ACTIONS(6124), + [anon_sym_c_schar] = ACTIONS(6124), + [anon_sym_c_uchar] = ACTIONS(6124), + [anon_sym_c_short] = ACTIONS(6124), + [anon_sym_c_ushort] = ACTIONS(6124), + [anon_sym_c_int] = ACTIONS(6124), + [anon_sym_c_uint] = ACTIONS(6124), + [anon_sym_c_long] = ACTIONS(6124), + [anon_sym_c_ulong] = ACTIONS(6124), + [anon_sym_c_longlong] = ACTIONS(6124), + [anon_sym_c_ulonglong] = ACTIONS(6124), + [anon_sym_c_float] = ACTIONS(6124), + [anon_sym_c_double] = ACTIONS(6124), + [anon_sym_c_longdouble] = ACTIONS(6124), + [anon_sym_return] = ACTIONS(6124), + [anon_sym_yield] = ACTIONS(6124), + [anon_sym_COLON] = ACTIONS(6122), + [anon_sym_break] = ACTIONS(6124), + [anon_sym_continue] = ACTIONS(6124), + [anon_sym_defer] = ACTIONS(6124), + [anon_sym_errdefer] = ACTIONS(6124), + [anon_sym_if] = ACTIONS(6124), + [anon_sym_else] = ACTIONS(6124), + [anon_sym_while] = ACTIONS(6124), + [anon_sym_expand] = ACTIONS(6124), + [anon_sym_for] = ACTIONS(6124), + [anon_sym_match] = ACTIONS(6124), + [anon_sym_DOT_DOT] = ACTIONS(6124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6122), + [anon_sym_orelse] = ACTIONS(6124), + [anon_sym_or] = ACTIONS(6124), + [anon_sym_and] = ACTIONS(6124), + [anon_sym_EQ_EQ] = ACTIONS(6122), + [anon_sym_BANG_EQ] = ACTIONS(6122), + [anon_sym_LT] = ACTIONS(6124), + [anon_sym_LT_EQ] = ACTIONS(6122), + [anon_sym_GT] = ACTIONS(6124), + [anon_sym_GT_EQ] = ACTIONS(6122), + [anon_sym_AMP] = ACTIONS(6122), + [anon_sym_xor] = ACTIONS(6124), + [anon_sym_LT_LT] = ACTIONS(6124), + [anon_sym_GT_GT] = ACTIONS(6122), + [anon_sym_LT_LT_PIPE] = ACTIONS(6122), + [anon_sym_PLUS] = ACTIONS(6122), + [anon_sym_SLASH] = ACTIONS(6122), + [anon_sym_catch] = ACTIONS(6124), + [anon_sym_TILDE] = ACTIONS(6122), + [anon_sym_try] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6124), + [anon_sym_CARET] = ACTIONS(6122), + [anon_sym_true] = ACTIONS(6124), + [anon_sym_false] = ACTIONS(6124), + [anon_sym_null] = ACTIONS(6124), + [anon_sym_unreachable] = ACTIONS(6124), + [anon_sym_undefined] = ACTIONS(6124), + [sym_sink] = ACTIONS(6124), + [sym_integer] = ACTIONS(6124), + [sym_float] = ACTIONS(6122), + [anon_sym_DQUOTE] = ACTIONS(6122), + [sym_multiline_string] = ACTIONS(6122), + [sym_character] = ACTIONS(6122), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6122), + }, + [STATE(4314)] = { + [ts_builtin_sym_end] = ACTIONS(4942), + [sym_identifier] = ACTIONS(4944), + [anon_sym_import] = ACTIONS(4944), + [anon_sym_test] = ACTIONS(4944), + [anon_sym_hide] = ACTIONS(4944), + [anon_sym_func] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_struct] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_PIPE] = ACTIONS(4942), + [anon_sym_QMARK] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_void] = ACTIONS(4944), + [anon_sym_noreturn] = ACTIONS(4944), + [anon_sym_type] = ACTIONS(4944), + [anon_sym_anyopaque] = ACTIONS(4944), + [anon_sym_bool] = ACTIONS(4944), + [anon_sym_int] = ACTIONS(4944), + [anon_sym_uint] = ACTIONS(4944), + [anon_sym_float] = ACTIONS(4944), + [anon_sym_range] = ACTIONS(4944), + [anon_sym_i8] = ACTIONS(4944), + [anon_sym_i16] = ACTIONS(4944), + [anon_sym_i32] = ACTIONS(4944), + [anon_sym_i64] = ACTIONS(4944), + [anon_sym_u8] = ACTIONS(4944), + [anon_sym_u16] = ACTIONS(4944), + [anon_sym_u32] = ACTIONS(4944), + [anon_sym_u64] = ACTIONS(4944), + [anon_sym_isize] = ACTIONS(4944), + [anon_sym_usize] = ACTIONS(4944), + [anon_sym_f32] = ACTIONS(4944), + [anon_sym_f64] = ACTIONS(4944), + [anon_sym_c_char] = ACTIONS(4944), + [anon_sym_c_schar] = ACTIONS(4944), + [anon_sym_c_uchar] = ACTIONS(4944), + [anon_sym_c_short] = ACTIONS(4944), + [anon_sym_c_ushort] = ACTIONS(4944), + [anon_sym_c_int] = ACTIONS(4944), + [anon_sym_c_uint] = ACTIONS(4944), + [anon_sym_c_long] = ACTIONS(4944), + [anon_sym_c_ulong] = ACTIONS(4944), + [anon_sym_c_longlong] = ACTIONS(4944), + [anon_sym_c_ulonglong] = ACTIONS(4944), + [anon_sym_c_float] = ACTIONS(4944), + [anon_sym_c_double] = ACTIONS(4944), + [anon_sym_c_longdouble] = ACTIONS(4944), + [anon_sym_return] = ACTIONS(4944), + [anon_sym_yield] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4942), + [anon_sym_break] = ACTIONS(4944), + [anon_sym_continue] = ACTIONS(4944), + [anon_sym_defer] = ACTIONS(4944), + [anon_sym_errdefer] = ACTIONS(4944), + [anon_sym_if] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_while] = ACTIONS(4944), + [anon_sym_expand] = ACTIONS(4944), + [anon_sym_for] = ACTIONS(4944), + [anon_sym_match] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4942), + [anon_sym_orelse] = ACTIONS(4944), + [anon_sym_or] = ACTIONS(4944), + [anon_sym_and] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_xor] = ACTIONS(4944), + [anon_sym_LT_LT] = ACTIONS(4944), + [anon_sym_GT_GT] = ACTIONS(4942), + [anon_sym_LT_LT_PIPE] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_catch] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym_true] = ACTIONS(4944), + [anon_sym_false] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4944), + [anon_sym_unreachable] = ACTIONS(4944), + [anon_sym_undefined] = ACTIONS(4944), + [sym_sink] = ACTIONS(4944), + [sym_integer] = ACTIONS(4944), + [sym_float] = ACTIONS(4942), + [anon_sym_DQUOTE] = ACTIONS(4942), + [sym_multiline_string] = ACTIONS(4942), + [sym_character] = ACTIONS(4942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4942), + }, + [STATE(4315)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4335), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7124), + }, + [STATE(4316)] = { + [ts_builtin_sym_end] = ACTIONS(5128), + [sym_identifier] = ACTIONS(5130), + [anon_sym_import] = ACTIONS(5130), + [anon_sym_test] = ACTIONS(5130), + [anon_sym_hide] = ACTIONS(5130), + [anon_sym_func] = ACTIONS(5130), + [anon_sym_BANG] = ACTIONS(5130), + [anon_sym_struct] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_QMARK] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_void] = ACTIONS(5130), + [anon_sym_noreturn] = ACTIONS(5130), + [anon_sym_type] = ACTIONS(5130), + [anon_sym_anyopaque] = ACTIONS(5130), + [anon_sym_bool] = ACTIONS(5130), + [anon_sym_int] = ACTIONS(5130), + [anon_sym_uint] = ACTIONS(5130), + [anon_sym_float] = ACTIONS(5130), + [anon_sym_range] = ACTIONS(5130), + [anon_sym_i8] = ACTIONS(5130), + [anon_sym_i16] = ACTIONS(5130), + [anon_sym_i32] = ACTIONS(5130), + [anon_sym_i64] = ACTIONS(5130), + [anon_sym_u8] = ACTIONS(5130), + [anon_sym_u16] = ACTIONS(5130), + [anon_sym_u32] = ACTIONS(5130), + [anon_sym_u64] = ACTIONS(5130), + [anon_sym_isize] = ACTIONS(5130), + [anon_sym_usize] = ACTIONS(5130), + [anon_sym_f32] = ACTIONS(5130), + [anon_sym_f64] = ACTIONS(5130), + [anon_sym_c_char] = ACTIONS(5130), + [anon_sym_c_schar] = ACTIONS(5130), + [anon_sym_c_uchar] = ACTIONS(5130), + [anon_sym_c_short] = ACTIONS(5130), + [anon_sym_c_ushort] = ACTIONS(5130), + [anon_sym_c_int] = ACTIONS(5130), + [anon_sym_c_uint] = ACTIONS(5130), + [anon_sym_c_long] = ACTIONS(5130), + [anon_sym_c_ulong] = ACTIONS(5130), + [anon_sym_c_longlong] = ACTIONS(5130), + [anon_sym_c_ulonglong] = ACTIONS(5130), + [anon_sym_c_float] = ACTIONS(5130), + [anon_sym_c_double] = ACTIONS(5130), + [anon_sym_c_longdouble] = ACTIONS(5130), + [anon_sym_return] = ACTIONS(5130), + [anon_sym_yield] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_break] = ACTIONS(5130), + [anon_sym_continue] = ACTIONS(5130), + [anon_sym_defer] = ACTIONS(5130), + [anon_sym_errdefer] = ACTIONS(5130), + [anon_sym_if] = ACTIONS(5130), + [anon_sym_else] = ACTIONS(5130), + [anon_sym_while] = ACTIONS(5130), + [anon_sym_expand] = ACTIONS(5130), + [anon_sym_for] = ACTIONS(5130), + [anon_sym_match] = ACTIONS(5130), + [anon_sym_DOT_DOT] = ACTIONS(5130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5128), + [anon_sym_orelse] = ACTIONS(5130), + [anon_sym_or] = ACTIONS(5130), + [anon_sym_and] = ACTIONS(5130), + [anon_sym_EQ_EQ] = ACTIONS(5128), + [anon_sym_BANG_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5130), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5130), + [anon_sym_GT_EQ] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5130), + [anon_sym_LT_LT] = ACTIONS(5130), + [anon_sym_GT_GT] = ACTIONS(5128), + [anon_sym_LT_LT_PIPE] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_catch] = ACTIONS(5130), + [anon_sym_TILDE] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5130), + [anon_sym_DOT] = ACTIONS(5130), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_true] = ACTIONS(5130), + [anon_sym_false] = ACTIONS(5130), + [anon_sym_null] = ACTIONS(5130), + [anon_sym_unreachable] = ACTIONS(5130), + [anon_sym_undefined] = ACTIONS(5130), + [sym_sink] = ACTIONS(5130), + [sym_integer] = ACTIONS(5130), + [sym_float] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [sym_multiline_string] = ACTIONS(5128), + [sym_character] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5128), + }, + [STATE(4317)] = { + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_import] = ACTIONS(2696), + [anon_sym_test] = ACTIONS(2696), + [anon_sym_hide] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_errdefer] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_expand] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2696), + [anon_sym_and] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_xor] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_unreachable] = ACTIONS(2696), + [anon_sym_undefined] = ACTIONS(2696), + [sym_sink] = ACTIONS(2696), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [sym_multiline_string] = ACTIONS(2694), + [sym_character] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(4318)] = { + [ts_builtin_sym_end] = ACTIONS(5132), + [sym_identifier] = ACTIONS(5134), + [anon_sym_import] = ACTIONS(5134), + [anon_sym_test] = ACTIONS(5134), + [anon_sym_hide] = ACTIONS(5134), + [anon_sym_func] = ACTIONS(5134), + [anon_sym_BANG] = ACTIONS(5134), + [anon_sym_struct] = ACTIONS(5134), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_RBRACE] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_QMARK] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_void] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym_type] = ACTIONS(5134), + [anon_sym_anyopaque] = ACTIONS(5134), + [anon_sym_bool] = ACTIONS(5134), + [anon_sym_int] = ACTIONS(5134), + [anon_sym_uint] = ACTIONS(5134), + [anon_sym_float] = ACTIONS(5134), + [anon_sym_range] = ACTIONS(5134), + [anon_sym_i8] = ACTIONS(5134), + [anon_sym_i16] = ACTIONS(5134), + [anon_sym_i32] = ACTIONS(5134), + [anon_sym_i64] = ACTIONS(5134), + [anon_sym_u8] = ACTIONS(5134), + [anon_sym_u16] = ACTIONS(5134), + [anon_sym_u32] = ACTIONS(5134), + [anon_sym_u64] = ACTIONS(5134), + [anon_sym_isize] = ACTIONS(5134), + [anon_sym_usize] = ACTIONS(5134), + [anon_sym_f32] = ACTIONS(5134), + [anon_sym_f64] = ACTIONS(5134), + [anon_sym_c_char] = ACTIONS(5134), + [anon_sym_c_schar] = ACTIONS(5134), + [anon_sym_c_uchar] = ACTIONS(5134), + [anon_sym_c_short] = ACTIONS(5134), + [anon_sym_c_ushort] = ACTIONS(5134), + [anon_sym_c_int] = ACTIONS(5134), + [anon_sym_c_uint] = ACTIONS(5134), + [anon_sym_c_long] = ACTIONS(5134), + [anon_sym_c_ulong] = ACTIONS(5134), + [anon_sym_c_longlong] = ACTIONS(5134), + [anon_sym_c_ulonglong] = ACTIONS(5134), + [anon_sym_c_float] = ACTIONS(5134), + [anon_sym_c_double] = ACTIONS(5134), + [anon_sym_c_longdouble] = ACTIONS(5134), + [anon_sym_return] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_break] = ACTIONS(5134), + [anon_sym_continue] = ACTIONS(5134), + [anon_sym_defer] = ACTIONS(5134), + [anon_sym_errdefer] = ACTIONS(5134), + [anon_sym_if] = ACTIONS(5134), + [anon_sym_else] = ACTIONS(5134), + [anon_sym_while] = ACTIONS(5134), + [anon_sym_expand] = ACTIONS(5134), + [anon_sym_for] = ACTIONS(5134), + [anon_sym_match] = ACTIONS(5134), + [anon_sym_DOT_DOT] = ACTIONS(5134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5132), + [anon_sym_orelse] = ACTIONS(5134), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5132), + [anon_sym_AMP] = ACTIONS(5132), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5132), + [anon_sym_LT_LT_PIPE] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_catch] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5132), + [anon_sym_try] = ACTIONS(5134), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym_true] = ACTIONS(5134), + [anon_sym_false] = ACTIONS(5134), + [anon_sym_null] = ACTIONS(5134), + [anon_sym_unreachable] = ACTIONS(5134), + [anon_sym_undefined] = ACTIONS(5134), + [sym_sink] = ACTIONS(5134), + [sym_integer] = ACTIONS(5134), + [sym_float] = ACTIONS(5132), + [anon_sym_DQUOTE] = ACTIONS(5132), + [sym_multiline_string] = ACTIONS(5132), + [sym_character] = ACTIONS(5132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5132), + }, + [STATE(4319)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4358), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7126), + }, + [STATE(4320)] = { + [ts_builtin_sym_end] = ACTIONS(5266), + [sym_identifier] = ACTIONS(5268), + [anon_sym_import] = ACTIONS(5268), + [anon_sym_test] = ACTIONS(5268), + [anon_sym_hide] = ACTIONS(5268), + [anon_sym_func] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_struct] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5266), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_QMARK] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_void] = ACTIONS(5268), + [anon_sym_noreturn] = ACTIONS(5268), + [anon_sym_type] = ACTIONS(5268), + [anon_sym_anyopaque] = ACTIONS(5268), + [anon_sym_bool] = ACTIONS(5268), + [anon_sym_int] = ACTIONS(5268), + [anon_sym_uint] = ACTIONS(5268), + [anon_sym_float] = ACTIONS(5268), + [anon_sym_range] = ACTIONS(5268), + [anon_sym_i8] = ACTIONS(5268), + [anon_sym_i16] = ACTIONS(5268), + [anon_sym_i32] = ACTIONS(5268), + [anon_sym_i64] = ACTIONS(5268), + [anon_sym_u8] = ACTIONS(5268), + [anon_sym_u16] = ACTIONS(5268), + [anon_sym_u32] = ACTIONS(5268), + [anon_sym_u64] = ACTIONS(5268), + [anon_sym_isize] = ACTIONS(5268), + [anon_sym_usize] = ACTIONS(5268), + [anon_sym_f32] = ACTIONS(5268), + [anon_sym_f64] = ACTIONS(5268), + [anon_sym_c_char] = ACTIONS(5268), + [anon_sym_c_schar] = ACTIONS(5268), + [anon_sym_c_uchar] = ACTIONS(5268), + [anon_sym_c_short] = ACTIONS(5268), + [anon_sym_c_ushort] = ACTIONS(5268), + [anon_sym_c_int] = ACTIONS(5268), + [anon_sym_c_uint] = ACTIONS(5268), + [anon_sym_c_long] = ACTIONS(5268), + [anon_sym_c_ulong] = ACTIONS(5268), + [anon_sym_c_longlong] = ACTIONS(5268), + [anon_sym_c_ulonglong] = ACTIONS(5268), + [anon_sym_c_float] = ACTIONS(5268), + [anon_sym_c_double] = ACTIONS(5268), + [anon_sym_c_longdouble] = ACTIONS(5268), + [anon_sym_return] = ACTIONS(5268), + [anon_sym_yield] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5266), + [anon_sym_break] = ACTIONS(5268), + [anon_sym_continue] = ACTIONS(5268), + [anon_sym_defer] = ACTIONS(5268), + [anon_sym_errdefer] = ACTIONS(5268), + [anon_sym_if] = ACTIONS(5268), + [anon_sym_else] = ACTIONS(5268), + [anon_sym_while] = ACTIONS(5268), + [anon_sym_expand] = ACTIONS(5268), + [anon_sym_for] = ACTIONS(5268), + [anon_sym_match] = ACTIONS(5268), + [anon_sym_DOT_DOT] = ACTIONS(5268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5266), + [anon_sym_orelse] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5268), + [anon_sym_and] = ACTIONS(5268), + [anon_sym_EQ_EQ] = ACTIONS(5266), + [anon_sym_BANG_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_GT_EQ] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_xor] = ACTIONS(5268), + [anon_sym_LT_LT] = ACTIONS(5268), + [anon_sym_GT_GT] = ACTIONS(5266), + [anon_sym_LT_LT_PIPE] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_catch] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(5266), + [anon_sym_try] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_true] = ACTIONS(5268), + [anon_sym_false] = ACTIONS(5268), + [anon_sym_null] = ACTIONS(5268), + [anon_sym_unreachable] = ACTIONS(5268), + [anon_sym_undefined] = ACTIONS(5268), + [sym_sink] = ACTIONS(5268), + [sym_integer] = ACTIONS(5268), + [sym_float] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5266), + [sym_multiline_string] = ACTIONS(5266), + [sym_character] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5266), + }, + [STATE(4321)] = { + [ts_builtin_sym_end] = ACTIONS(5136), + [sym_identifier] = ACTIONS(5138), + [anon_sym_import] = ACTIONS(5138), + [anon_sym_test] = ACTIONS(5138), + [anon_sym_hide] = ACTIONS(5138), + [anon_sym_func] = ACTIONS(5138), + [anon_sym_BANG] = ACTIONS(5138), + [anon_sym_struct] = ACTIONS(5138), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_void] = ACTIONS(5138), + [anon_sym_noreturn] = ACTIONS(5138), + [anon_sym_type] = ACTIONS(5138), + [anon_sym_anyopaque] = ACTIONS(5138), + [anon_sym_bool] = ACTIONS(5138), + [anon_sym_int] = ACTIONS(5138), + [anon_sym_uint] = ACTIONS(5138), + [anon_sym_float] = ACTIONS(5138), + [anon_sym_range] = ACTIONS(5138), + [anon_sym_i8] = ACTIONS(5138), + [anon_sym_i16] = ACTIONS(5138), + [anon_sym_i32] = ACTIONS(5138), + [anon_sym_i64] = ACTIONS(5138), + [anon_sym_u8] = ACTIONS(5138), + [anon_sym_u16] = ACTIONS(5138), + [anon_sym_u32] = ACTIONS(5138), + [anon_sym_u64] = ACTIONS(5138), + [anon_sym_isize] = ACTIONS(5138), + [anon_sym_usize] = ACTIONS(5138), + [anon_sym_f32] = ACTIONS(5138), + [anon_sym_f64] = ACTIONS(5138), + [anon_sym_c_char] = ACTIONS(5138), + [anon_sym_c_schar] = ACTIONS(5138), + [anon_sym_c_uchar] = ACTIONS(5138), + [anon_sym_c_short] = ACTIONS(5138), + [anon_sym_c_ushort] = ACTIONS(5138), + [anon_sym_c_int] = ACTIONS(5138), + [anon_sym_c_uint] = ACTIONS(5138), + [anon_sym_c_long] = ACTIONS(5138), + [anon_sym_c_ulong] = ACTIONS(5138), + [anon_sym_c_longlong] = ACTIONS(5138), + [anon_sym_c_ulonglong] = ACTIONS(5138), + [anon_sym_c_float] = ACTIONS(5138), + [anon_sym_c_double] = ACTIONS(5138), + [anon_sym_c_longdouble] = ACTIONS(5138), + [anon_sym_return] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_break] = ACTIONS(5138), + [anon_sym_continue] = ACTIONS(5138), + [anon_sym_defer] = ACTIONS(5138), + [anon_sym_errdefer] = ACTIONS(5138), + [anon_sym_if] = ACTIONS(5138), + [anon_sym_else] = ACTIONS(5138), + [anon_sym_while] = ACTIONS(5138), + [anon_sym_expand] = ACTIONS(5138), + [anon_sym_for] = ACTIONS(5138), + [anon_sym_match] = ACTIONS(5138), + [anon_sym_DOT_DOT] = ACTIONS(5138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5136), + [anon_sym_orelse] = ACTIONS(5138), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_EQ] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5136), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5136), + [anon_sym_LT_LT_PIPE] = ACTIONS(5136), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_catch] = ACTIONS(5138), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_try] = ACTIONS(5138), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym_true] = ACTIONS(5138), + [anon_sym_false] = ACTIONS(5138), + [anon_sym_null] = ACTIONS(5138), + [anon_sym_unreachable] = ACTIONS(5138), + [anon_sym_undefined] = ACTIONS(5138), + [sym_sink] = ACTIONS(5138), + [sym_integer] = ACTIONS(5138), + [sym_float] = ACTIONS(5136), + [anon_sym_DQUOTE] = ACTIONS(5136), + [sym_multiline_string] = ACTIONS(5136), + [sym_character] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5136), + }, + [STATE(4322)] = { + [ts_builtin_sym_end] = ACTIONS(5510), + [sym_identifier] = ACTIONS(5512), + [anon_sym_import] = ACTIONS(5512), + [anon_sym_test] = ACTIONS(5512), + [anon_sym_hide] = ACTIONS(5512), + [anon_sym_func] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(5512), + [anon_sym_struct] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5510), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_DOLLAR] = ACTIONS(5510), + [anon_sym_PIPE] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [anon_sym_void] = ACTIONS(5512), + [anon_sym_noreturn] = ACTIONS(5512), + [anon_sym_type] = ACTIONS(5512), + [anon_sym_anyopaque] = ACTIONS(5512), + [anon_sym_bool] = ACTIONS(5512), + [anon_sym_int] = ACTIONS(5512), + [anon_sym_uint] = ACTIONS(5512), + [anon_sym_float] = ACTIONS(5512), + [anon_sym_range] = ACTIONS(5512), + [anon_sym_i8] = ACTIONS(5512), + [anon_sym_i16] = ACTIONS(5512), + [anon_sym_i32] = ACTIONS(5512), + [anon_sym_i64] = ACTIONS(5512), + [anon_sym_u8] = ACTIONS(5512), + [anon_sym_u16] = ACTIONS(5512), + [anon_sym_u32] = ACTIONS(5512), + [anon_sym_u64] = ACTIONS(5512), + [anon_sym_isize] = ACTIONS(5512), + [anon_sym_usize] = ACTIONS(5512), + [anon_sym_f32] = ACTIONS(5512), + [anon_sym_f64] = ACTIONS(5512), + [anon_sym_c_char] = ACTIONS(5512), + [anon_sym_c_schar] = ACTIONS(5512), + [anon_sym_c_uchar] = ACTIONS(5512), + [anon_sym_c_short] = ACTIONS(5512), + [anon_sym_c_ushort] = ACTIONS(5512), + [anon_sym_c_int] = ACTIONS(5512), + [anon_sym_c_uint] = ACTIONS(5512), + [anon_sym_c_long] = ACTIONS(5512), + [anon_sym_c_ulong] = ACTIONS(5512), + [anon_sym_c_longlong] = ACTIONS(5512), + [anon_sym_c_ulonglong] = ACTIONS(5512), + [anon_sym_c_float] = ACTIONS(5512), + [anon_sym_c_double] = ACTIONS(5512), + [anon_sym_c_longdouble] = ACTIONS(5512), + [anon_sym_return] = ACTIONS(5512), + [anon_sym_yield] = ACTIONS(5512), + [anon_sym_COLON] = ACTIONS(5510), + [anon_sym_break] = ACTIONS(5512), + [anon_sym_continue] = ACTIONS(5512), + [anon_sym_defer] = ACTIONS(5512), + [anon_sym_errdefer] = ACTIONS(5512), + [anon_sym_if] = ACTIONS(5512), + [anon_sym_else] = ACTIONS(5512), + [anon_sym_while] = ACTIONS(5512), + [anon_sym_expand] = ACTIONS(5512), + [anon_sym_for] = ACTIONS(5512), + [anon_sym_match] = ACTIONS(5512), + [anon_sym_DOT_DOT] = ACTIONS(5512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5510), + [anon_sym_orelse] = ACTIONS(5512), + [anon_sym_or] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5510), + [anon_sym_BANG_EQ] = ACTIONS(5510), + [anon_sym_LT] = ACTIONS(5512), + [anon_sym_LT_EQ] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5510), + [anon_sym_xor] = ACTIONS(5512), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5510), + [anon_sym_LT_LT_PIPE] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_SLASH] = ACTIONS(5510), + [anon_sym_catch] = ACTIONS(5512), + [anon_sym_TILDE] = ACTIONS(5510), + [anon_sym_try] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5510), + [anon_sym_true] = ACTIONS(5512), + [anon_sym_false] = ACTIONS(5512), + [anon_sym_null] = ACTIONS(5512), + [anon_sym_unreachable] = ACTIONS(5512), + [anon_sym_undefined] = ACTIONS(5512), + [sym_sink] = ACTIONS(5512), + [sym_integer] = ACTIONS(5512), + [sym_float] = ACTIONS(5510), + [anon_sym_DQUOTE] = ACTIONS(5510), + [sym_multiline_string] = ACTIONS(5510), + [sym_character] = ACTIONS(5510), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5510), + }, + [STATE(4323)] = { + [ts_builtin_sym_end] = ACTIONS(5478), + [sym_identifier] = ACTIONS(5480), + [anon_sym_import] = ACTIONS(5480), + [anon_sym_test] = ACTIONS(5480), + [anon_sym_hide] = ACTIONS(5480), + [anon_sym_func] = ACTIONS(5480), + [anon_sym_BANG] = ACTIONS(5480), + [anon_sym_struct] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5478), + [anon_sym_LBRACE] = ACTIONS(5478), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5478), + [anon_sym_DOLLAR] = ACTIONS(5478), + [anon_sym_PIPE] = ACTIONS(5478), + [anon_sym_QMARK] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5478), + [anon_sym_void] = ACTIONS(5480), + [anon_sym_noreturn] = ACTIONS(5480), + [anon_sym_type] = ACTIONS(5480), + [anon_sym_anyopaque] = ACTIONS(5480), + [anon_sym_bool] = ACTIONS(5480), + [anon_sym_int] = ACTIONS(5480), + [anon_sym_uint] = ACTIONS(5480), + [anon_sym_float] = ACTIONS(5480), + [anon_sym_range] = ACTIONS(5480), + [anon_sym_i8] = ACTIONS(5480), + [anon_sym_i16] = ACTIONS(5480), + [anon_sym_i32] = ACTIONS(5480), + [anon_sym_i64] = ACTIONS(5480), + [anon_sym_u8] = ACTIONS(5480), + [anon_sym_u16] = ACTIONS(5480), + [anon_sym_u32] = ACTIONS(5480), + [anon_sym_u64] = ACTIONS(5480), + [anon_sym_isize] = ACTIONS(5480), + [anon_sym_usize] = ACTIONS(5480), + [anon_sym_f32] = ACTIONS(5480), + [anon_sym_f64] = ACTIONS(5480), + [anon_sym_c_char] = ACTIONS(5480), + [anon_sym_c_schar] = ACTIONS(5480), + [anon_sym_c_uchar] = ACTIONS(5480), + [anon_sym_c_short] = ACTIONS(5480), + [anon_sym_c_ushort] = ACTIONS(5480), + [anon_sym_c_int] = ACTIONS(5480), + [anon_sym_c_uint] = ACTIONS(5480), + [anon_sym_c_long] = ACTIONS(5480), + [anon_sym_c_ulong] = ACTIONS(5480), + [anon_sym_c_longlong] = ACTIONS(5480), + [anon_sym_c_ulonglong] = ACTIONS(5480), + [anon_sym_c_float] = ACTIONS(5480), + [anon_sym_c_double] = ACTIONS(5480), + [anon_sym_c_longdouble] = ACTIONS(5480), + [anon_sym_return] = ACTIONS(5480), + [anon_sym_yield] = ACTIONS(5480), + [anon_sym_COLON] = ACTIONS(5478), + [anon_sym_break] = ACTIONS(5480), + [anon_sym_continue] = ACTIONS(5480), + [anon_sym_defer] = ACTIONS(5480), + [anon_sym_errdefer] = ACTIONS(5480), + [anon_sym_if] = ACTIONS(5480), + [anon_sym_else] = ACTIONS(5480), + [anon_sym_while] = ACTIONS(5480), + [anon_sym_expand] = ACTIONS(5480), + [anon_sym_for] = ACTIONS(5480), + [anon_sym_match] = ACTIONS(5480), + [anon_sym_DOT_DOT] = ACTIONS(5480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5478), + [anon_sym_orelse] = ACTIONS(5480), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_BANG_EQ] = ACTIONS(5478), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5478), + [anon_sym_xor] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5478), + [anon_sym_LT_LT_PIPE] = ACTIONS(5478), + [anon_sym_PLUS] = ACTIONS(5478), + [anon_sym_SLASH] = ACTIONS(5478), + [anon_sym_catch] = ACTIONS(5480), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_try] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5478), + [anon_sym_true] = ACTIONS(5480), + [anon_sym_false] = ACTIONS(5480), + [anon_sym_null] = ACTIONS(5480), + [anon_sym_unreachable] = ACTIONS(5480), + [anon_sym_undefined] = ACTIONS(5480), + [sym_sink] = ACTIONS(5480), + [sym_integer] = ACTIONS(5480), + [sym_float] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(5478), + [sym_multiline_string] = ACTIONS(5478), + [sym_character] = ACTIONS(5478), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5478), + }, + [STATE(4324)] = { + [ts_builtin_sym_end] = ACTIONS(5572), + [sym_identifier] = ACTIONS(5574), + [anon_sym_import] = ACTIONS(5574), + [anon_sym_test] = ACTIONS(5574), + [anon_sym_hide] = ACTIONS(5574), + [anon_sym_func] = ACTIONS(5574), + [anon_sym_BANG] = ACTIONS(5574), + [anon_sym_struct] = ACTIONS(5574), + [anon_sym_LPAREN] = ACTIONS(5572), + [anon_sym_LBRACE] = ACTIONS(5572), + [anon_sym_RBRACE] = ACTIONS(5572), + [anon_sym_DASH] = ACTIONS(5572), + [anon_sym_DOLLAR] = ACTIONS(5572), + [anon_sym_PIPE] = ACTIONS(5572), + [anon_sym_QMARK] = ACTIONS(5572), + [anon_sym_STAR] = ACTIONS(5572), + [anon_sym_LBRACK] = ACTIONS(5572), + [anon_sym_void] = ACTIONS(5574), + [anon_sym_noreturn] = ACTIONS(5574), + [anon_sym_type] = ACTIONS(5574), + [anon_sym_anyopaque] = ACTIONS(5574), + [anon_sym_bool] = ACTIONS(5574), + [anon_sym_int] = ACTIONS(5574), + [anon_sym_uint] = ACTIONS(5574), + [anon_sym_float] = ACTIONS(5574), + [anon_sym_range] = ACTIONS(5574), + [anon_sym_i8] = ACTIONS(5574), + [anon_sym_i16] = ACTIONS(5574), + [anon_sym_i32] = ACTIONS(5574), + [anon_sym_i64] = ACTIONS(5574), + [anon_sym_u8] = ACTIONS(5574), + [anon_sym_u16] = ACTIONS(5574), + [anon_sym_u32] = ACTIONS(5574), + [anon_sym_u64] = ACTIONS(5574), + [anon_sym_isize] = ACTIONS(5574), + [anon_sym_usize] = ACTIONS(5574), + [anon_sym_f32] = ACTIONS(5574), + [anon_sym_f64] = ACTIONS(5574), + [anon_sym_c_char] = ACTIONS(5574), + [anon_sym_c_schar] = ACTIONS(5574), + [anon_sym_c_uchar] = ACTIONS(5574), + [anon_sym_c_short] = ACTIONS(5574), + [anon_sym_c_ushort] = ACTIONS(5574), + [anon_sym_c_int] = ACTIONS(5574), + [anon_sym_c_uint] = ACTIONS(5574), + [anon_sym_c_long] = ACTIONS(5574), + [anon_sym_c_ulong] = ACTIONS(5574), + [anon_sym_c_longlong] = ACTIONS(5574), + [anon_sym_c_ulonglong] = ACTIONS(5574), + [anon_sym_c_float] = ACTIONS(5574), + [anon_sym_c_double] = ACTIONS(5574), + [anon_sym_c_longdouble] = ACTIONS(5574), + [anon_sym_return] = ACTIONS(5574), + [anon_sym_yield] = ACTIONS(5574), + [anon_sym_COLON] = ACTIONS(5572), + [anon_sym_break] = ACTIONS(5574), + [anon_sym_continue] = ACTIONS(5574), + [anon_sym_defer] = ACTIONS(5574), + [anon_sym_errdefer] = ACTIONS(5574), + [anon_sym_if] = ACTIONS(5574), + [anon_sym_else] = ACTIONS(5574), + [anon_sym_while] = ACTIONS(5574), + [anon_sym_expand] = ACTIONS(5574), + [anon_sym_for] = ACTIONS(5574), + [anon_sym_match] = ACTIONS(5574), + [anon_sym_DOT_DOT] = ACTIONS(5574), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5572), + [anon_sym_orelse] = ACTIONS(5574), + [anon_sym_or] = ACTIONS(5574), + [anon_sym_and] = ACTIONS(5574), + [anon_sym_EQ_EQ] = ACTIONS(5572), + [anon_sym_BANG_EQ] = ACTIONS(5572), + [anon_sym_LT] = ACTIONS(5574), + [anon_sym_LT_EQ] = ACTIONS(5572), + [anon_sym_GT] = ACTIONS(5574), + [anon_sym_GT_EQ] = ACTIONS(5572), + [anon_sym_AMP] = ACTIONS(5572), + [anon_sym_xor] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5572), + [anon_sym_LT_LT_PIPE] = ACTIONS(5572), + [anon_sym_PLUS] = ACTIONS(5572), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_catch] = ACTIONS(5574), + [anon_sym_TILDE] = ACTIONS(5572), + [anon_sym_try] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5572), + [anon_sym_true] = ACTIONS(5574), + [anon_sym_false] = ACTIONS(5574), + [anon_sym_null] = ACTIONS(5574), + [anon_sym_unreachable] = ACTIONS(5574), + [anon_sym_undefined] = ACTIONS(5574), + [sym_sink] = ACTIONS(5574), + [sym_integer] = ACTIONS(5574), + [sym_float] = ACTIONS(5572), + [anon_sym_DQUOTE] = ACTIONS(5572), + [sym_multiline_string] = ACTIONS(5572), + [sym_character] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5572), + }, + [STATE(4325)] = { + [ts_builtin_sym_end] = ACTIONS(4580), + [sym_identifier] = ACTIONS(4582), + [anon_sym_import] = ACTIONS(4582), + [anon_sym_test] = ACTIONS(4582), + [anon_sym_hide] = ACTIONS(4582), + [anon_sym_func] = ACTIONS(4582), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_struct] = ACTIONS(4582), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_DASH] = ACTIONS(4580), + [anon_sym_DOLLAR] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4580), + [anon_sym_QMARK] = ACTIONS(4580), + [anon_sym_STAR] = ACTIONS(4580), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_void] = ACTIONS(4582), + [anon_sym_noreturn] = ACTIONS(4582), + [anon_sym_type] = ACTIONS(4582), + [anon_sym_anyopaque] = ACTIONS(4582), + [anon_sym_bool] = ACTIONS(4582), + [anon_sym_int] = ACTIONS(4582), + [anon_sym_uint] = ACTIONS(4582), + [anon_sym_float] = ACTIONS(4582), + [anon_sym_range] = ACTIONS(4582), + [anon_sym_i8] = ACTIONS(4582), + [anon_sym_i16] = ACTIONS(4582), + [anon_sym_i32] = ACTIONS(4582), + [anon_sym_i64] = ACTIONS(4582), + [anon_sym_u8] = ACTIONS(4582), + [anon_sym_u16] = ACTIONS(4582), + [anon_sym_u32] = ACTIONS(4582), + [anon_sym_u64] = ACTIONS(4582), + [anon_sym_isize] = ACTIONS(4582), + [anon_sym_usize] = ACTIONS(4582), + [anon_sym_f32] = ACTIONS(4582), + [anon_sym_f64] = ACTIONS(4582), + [anon_sym_c_char] = ACTIONS(4582), + [anon_sym_c_schar] = ACTIONS(4582), + [anon_sym_c_uchar] = ACTIONS(4582), + [anon_sym_c_short] = ACTIONS(4582), + [anon_sym_c_ushort] = ACTIONS(4582), + [anon_sym_c_int] = ACTIONS(4582), + [anon_sym_c_uint] = ACTIONS(4582), + [anon_sym_c_long] = ACTIONS(4582), + [anon_sym_c_ulong] = ACTIONS(4582), + [anon_sym_c_longlong] = ACTIONS(4582), + [anon_sym_c_ulonglong] = ACTIONS(4582), + [anon_sym_c_float] = ACTIONS(4582), + [anon_sym_c_double] = ACTIONS(4582), + [anon_sym_c_longdouble] = ACTIONS(4582), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_yield] = ACTIONS(4582), + [anon_sym_COLON] = ACTIONS(4580), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_defer] = ACTIONS(4582), + [anon_sym_errdefer] = ACTIONS(4582), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_while] = ACTIONS(4582), + [anon_sym_expand] = ACTIONS(4582), + [anon_sym_for] = ACTIONS(4582), + [anon_sym_match] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4580), + [anon_sym_orelse] = ACTIONS(4582), + [anon_sym_or] = ACTIONS(4582), + [anon_sym_and] = ACTIONS(4582), + [anon_sym_EQ_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_AMP] = ACTIONS(4580), + [anon_sym_xor] = ACTIONS(4582), + [anon_sym_LT_LT] = ACTIONS(4582), + [anon_sym_GT_GT] = ACTIONS(4580), + [anon_sym_LT_LT_PIPE] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4580), + [anon_sym_SLASH] = ACTIONS(4580), + [anon_sym_catch] = ACTIONS(4582), + [anon_sym_TILDE] = ACTIONS(4580), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_CARET] = ACTIONS(4580), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_null] = ACTIONS(4582), + [anon_sym_unreachable] = ACTIONS(4582), + [anon_sym_undefined] = ACTIONS(4582), + [sym_sink] = ACTIONS(4582), + [sym_integer] = ACTIONS(4582), + [sym_float] = ACTIONS(4580), + [anon_sym_DQUOTE] = ACTIONS(4580), + [sym_multiline_string] = ACTIONS(4580), + [sym_character] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4580), + }, + [STATE(4326)] = { + [ts_builtin_sym_end] = ACTIONS(4584), + [sym_identifier] = ACTIONS(4586), + [anon_sym_import] = ACTIONS(4586), + [anon_sym_test] = ACTIONS(4586), + [anon_sym_hide] = ACTIONS(4586), + [anon_sym_func] = ACTIONS(4586), + [anon_sym_BANG] = ACTIONS(4586), + [anon_sym_struct] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_void] = ACTIONS(4586), + [anon_sym_noreturn] = ACTIONS(4586), + [anon_sym_type] = ACTIONS(4586), + [anon_sym_anyopaque] = ACTIONS(4586), + [anon_sym_bool] = ACTIONS(4586), + [anon_sym_int] = ACTIONS(4586), + [anon_sym_uint] = ACTIONS(4586), + [anon_sym_float] = ACTIONS(4586), + [anon_sym_range] = ACTIONS(4586), + [anon_sym_i8] = ACTIONS(4586), + [anon_sym_i16] = ACTIONS(4586), + [anon_sym_i32] = ACTIONS(4586), + [anon_sym_i64] = ACTIONS(4586), + [anon_sym_u8] = ACTIONS(4586), + [anon_sym_u16] = ACTIONS(4586), + [anon_sym_u32] = ACTIONS(4586), + [anon_sym_u64] = ACTIONS(4586), + [anon_sym_isize] = ACTIONS(4586), + [anon_sym_usize] = ACTIONS(4586), + [anon_sym_f32] = ACTIONS(4586), + [anon_sym_f64] = ACTIONS(4586), + [anon_sym_c_char] = ACTIONS(4586), + [anon_sym_c_schar] = ACTIONS(4586), + [anon_sym_c_uchar] = ACTIONS(4586), + [anon_sym_c_short] = ACTIONS(4586), + [anon_sym_c_ushort] = ACTIONS(4586), + [anon_sym_c_int] = ACTIONS(4586), + [anon_sym_c_uint] = ACTIONS(4586), + [anon_sym_c_long] = ACTIONS(4586), + [anon_sym_c_ulong] = ACTIONS(4586), + [anon_sym_c_longlong] = ACTIONS(4586), + [anon_sym_c_ulonglong] = ACTIONS(4586), + [anon_sym_c_float] = ACTIONS(4586), + [anon_sym_c_double] = ACTIONS(4586), + [anon_sym_c_longdouble] = ACTIONS(4586), + [anon_sym_return] = ACTIONS(4586), + [anon_sym_yield] = ACTIONS(4586), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_break] = ACTIONS(4586), + [anon_sym_continue] = ACTIONS(4586), + [anon_sym_defer] = ACTIONS(4586), + [anon_sym_errdefer] = ACTIONS(4586), + [anon_sym_if] = ACTIONS(4586), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_while] = ACTIONS(4586), + [anon_sym_expand] = ACTIONS(4586), + [anon_sym_for] = ACTIONS(4586), + [anon_sym_match] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4584), + [anon_sym_orelse] = ACTIONS(4586), + [anon_sym_or] = ACTIONS(4586), + [anon_sym_and] = ACTIONS(4586), + [anon_sym_EQ_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4584), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4586), + [anon_sym_GT_GT] = ACTIONS(4584), + [anon_sym_LT_LT_PIPE] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_catch] = ACTIONS(4586), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_try] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4586), + [anon_sym_false] = ACTIONS(4586), + [anon_sym_null] = ACTIONS(4586), + [anon_sym_unreachable] = ACTIONS(4586), + [anon_sym_undefined] = ACTIONS(4586), + [sym_sink] = ACTIONS(4586), + [sym_integer] = ACTIONS(4586), + [sym_float] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [sym_multiline_string] = ACTIONS(4584), + [sym_character] = ACTIONS(4584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4584), + }, + [STATE(4327)] = { + [ts_builtin_sym_end] = ACTIONS(4588), + [sym_identifier] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4590), + [anon_sym_test] = ACTIONS(4590), + [anon_sym_hide] = ACTIONS(4590), + [anon_sym_func] = ACTIONS(4590), + [anon_sym_BANG] = ACTIONS(4590), + [anon_sym_struct] = ACTIONS(4590), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_void] = ACTIONS(4590), + [anon_sym_noreturn] = ACTIONS(4590), + [anon_sym_type] = ACTIONS(4590), + [anon_sym_anyopaque] = ACTIONS(4590), + [anon_sym_bool] = ACTIONS(4590), + [anon_sym_int] = ACTIONS(4590), + [anon_sym_uint] = ACTIONS(4590), + [anon_sym_float] = ACTIONS(4590), + [anon_sym_range] = ACTIONS(4590), + [anon_sym_i8] = ACTIONS(4590), + [anon_sym_i16] = ACTIONS(4590), + [anon_sym_i32] = ACTIONS(4590), + [anon_sym_i64] = ACTIONS(4590), + [anon_sym_u8] = ACTIONS(4590), + [anon_sym_u16] = ACTIONS(4590), + [anon_sym_u32] = ACTIONS(4590), + [anon_sym_u64] = ACTIONS(4590), + [anon_sym_isize] = ACTIONS(4590), + [anon_sym_usize] = ACTIONS(4590), + [anon_sym_f32] = ACTIONS(4590), + [anon_sym_f64] = ACTIONS(4590), + [anon_sym_c_char] = ACTIONS(4590), + [anon_sym_c_schar] = ACTIONS(4590), + [anon_sym_c_uchar] = ACTIONS(4590), + [anon_sym_c_short] = ACTIONS(4590), + [anon_sym_c_ushort] = ACTIONS(4590), + [anon_sym_c_int] = ACTIONS(4590), + [anon_sym_c_uint] = ACTIONS(4590), + [anon_sym_c_long] = ACTIONS(4590), + [anon_sym_c_ulong] = ACTIONS(4590), + [anon_sym_c_longlong] = ACTIONS(4590), + [anon_sym_c_ulonglong] = ACTIONS(4590), + [anon_sym_c_float] = ACTIONS(4590), + [anon_sym_c_double] = ACTIONS(4590), + [anon_sym_c_longdouble] = ACTIONS(4590), + [anon_sym_return] = ACTIONS(4590), + [anon_sym_yield] = ACTIONS(4590), + [anon_sym_COLON] = ACTIONS(4588), + [anon_sym_break] = ACTIONS(4590), + [anon_sym_continue] = ACTIONS(4590), + [anon_sym_defer] = ACTIONS(4590), + [anon_sym_errdefer] = ACTIONS(4590), + [anon_sym_if] = ACTIONS(4590), + [anon_sym_else] = ACTIONS(4590), + [anon_sym_while] = ACTIONS(4590), + [anon_sym_expand] = ACTIONS(4590), + [anon_sym_for] = ACTIONS(4590), + [anon_sym_match] = ACTIONS(4590), + [anon_sym_DOT_DOT] = ACTIONS(4590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4588), + [anon_sym_orelse] = ACTIONS(4590), + [anon_sym_or] = ACTIONS(4590), + [anon_sym_and] = ACTIONS(4590), + [anon_sym_EQ_EQ] = ACTIONS(4588), + [anon_sym_BANG_EQ] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_LT_EQ] = ACTIONS(4588), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_GT_EQ] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4588), + [anon_sym_xor] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4588), + [anon_sym_LT_LT_PIPE] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_catch] = ACTIONS(4590), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_try] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4588), + [anon_sym_true] = ACTIONS(4590), + [anon_sym_false] = ACTIONS(4590), + [anon_sym_null] = ACTIONS(4590), + [anon_sym_unreachable] = ACTIONS(4590), + [anon_sym_undefined] = ACTIONS(4590), + [sym_sink] = ACTIONS(4590), + [sym_integer] = ACTIONS(4590), + [sym_float] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym_multiline_string] = ACTIONS(4588), + [sym_character] = ACTIONS(4588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4588), + }, + [STATE(4328)] = { + [ts_builtin_sym_end] = ACTIONS(4592), + [sym_identifier] = ACTIONS(4594), + [anon_sym_import] = ACTIONS(4594), + [anon_sym_test] = ACTIONS(4594), + [anon_sym_hide] = ACTIONS(4594), + [anon_sym_func] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [anon_sym_RBRACE] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_void] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_type] = ACTIONS(4594), + [anon_sym_anyopaque] = ACTIONS(4594), + [anon_sym_bool] = ACTIONS(4594), + [anon_sym_int] = ACTIONS(4594), + [anon_sym_uint] = ACTIONS(4594), + [anon_sym_float] = ACTIONS(4594), + [anon_sym_range] = ACTIONS(4594), + [anon_sym_i8] = ACTIONS(4594), + [anon_sym_i16] = ACTIONS(4594), + [anon_sym_i32] = ACTIONS(4594), + [anon_sym_i64] = ACTIONS(4594), + [anon_sym_u8] = ACTIONS(4594), + [anon_sym_u16] = ACTIONS(4594), + [anon_sym_u32] = ACTIONS(4594), + [anon_sym_u64] = ACTIONS(4594), + [anon_sym_isize] = ACTIONS(4594), + [anon_sym_usize] = ACTIONS(4594), + [anon_sym_f32] = ACTIONS(4594), + [anon_sym_f64] = ACTIONS(4594), + [anon_sym_c_char] = ACTIONS(4594), + [anon_sym_c_schar] = ACTIONS(4594), + [anon_sym_c_uchar] = ACTIONS(4594), + [anon_sym_c_short] = ACTIONS(4594), + [anon_sym_c_ushort] = ACTIONS(4594), + [anon_sym_c_int] = ACTIONS(4594), + [anon_sym_c_uint] = ACTIONS(4594), + [anon_sym_c_long] = ACTIONS(4594), + [anon_sym_c_ulong] = ACTIONS(4594), + [anon_sym_c_longlong] = ACTIONS(4594), + [anon_sym_c_ulonglong] = ACTIONS(4594), + [anon_sym_c_float] = ACTIONS(4594), + [anon_sym_c_double] = ACTIONS(4594), + [anon_sym_c_longdouble] = ACTIONS(4594), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_continue] = ACTIONS(4594), + [anon_sym_defer] = ACTIONS(4594), + [anon_sym_errdefer] = ACTIONS(4594), + [anon_sym_if] = ACTIONS(4594), + [anon_sym_else] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_expand] = ACTIONS(4594), + [anon_sym_for] = ACTIONS(4594), + [anon_sym_match] = ACTIONS(4594), + [anon_sym_DOT_DOT] = ACTIONS(4594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4592), + [anon_sym_orelse] = ACTIONS(4594), + [anon_sym_or] = ACTIONS(4594), + [anon_sym_and] = ACTIONS(4594), + [anon_sym_EQ_EQ] = ACTIONS(4592), + [anon_sym_BANG_EQ] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_LT_EQ] = ACTIONS(4592), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4592), + [anon_sym_xor] = ACTIONS(4594), + [anon_sym_LT_LT] = ACTIONS(4594), + [anon_sym_GT_GT] = ACTIONS(4592), + [anon_sym_LT_LT_PIPE] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_catch] = ACTIONS(4594), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_try] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_true] = ACTIONS(4594), + [anon_sym_false] = ACTIONS(4594), + [anon_sym_null] = ACTIONS(4594), + [anon_sym_unreachable] = ACTIONS(4594), + [anon_sym_undefined] = ACTIONS(4594), + [sym_sink] = ACTIONS(4594), + [sym_integer] = ACTIONS(4594), + [sym_float] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [sym_multiline_string] = ACTIONS(4592), + [sym_character] = ACTIONS(4592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4592), + }, + [STATE(4329)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9611), + [sym_labeled_block] = STATE(9611), + [sym_if_statement] = STATE(9611), + [sym_while_statement] = STATE(9611), + [sym_for_statement] = STATE(9611), + [sym_match_statement] = STATE(9611), + [sym__value] = STATE(9611), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4330)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9615), + [sym_labeled_block] = STATE(9615), + [sym_if_statement] = STATE(9615), + [sym_while_statement] = STATE(9615), + [sym_for_statement] = STATE(9615), + [sym_match_statement] = STATE(9615), + [sym__value] = STATE(9615), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4331)] = { + [ts_builtin_sym_end] = ACTIONS(5648), + [sym_identifier] = ACTIONS(5650), + [anon_sym_import] = ACTIONS(5650), + [anon_sym_test] = ACTIONS(5650), + [anon_sym_hide] = ACTIONS(5650), + [anon_sym_func] = ACTIONS(5650), + [anon_sym_BANG] = ACTIONS(5650), + [anon_sym_struct] = ACTIONS(5650), + [anon_sym_LPAREN] = ACTIONS(5648), + [anon_sym_LBRACE] = ACTIONS(5648), + [anon_sym_RBRACE] = ACTIONS(5648), + [anon_sym_DASH] = ACTIONS(5648), + [anon_sym_DOLLAR] = ACTIONS(5648), + [anon_sym_PIPE] = ACTIONS(5648), + [anon_sym_QMARK] = ACTIONS(5648), + [anon_sym_STAR] = ACTIONS(5648), + [anon_sym_LBRACK] = ACTIONS(5648), + [anon_sym_void] = ACTIONS(5650), + [anon_sym_noreturn] = ACTIONS(5650), + [anon_sym_type] = ACTIONS(5650), + [anon_sym_anyopaque] = ACTIONS(5650), + [anon_sym_bool] = ACTIONS(5650), + [anon_sym_int] = ACTIONS(5650), + [anon_sym_uint] = ACTIONS(5650), + [anon_sym_float] = ACTIONS(5650), + [anon_sym_range] = ACTIONS(5650), + [anon_sym_i8] = ACTIONS(5650), + [anon_sym_i16] = ACTIONS(5650), + [anon_sym_i32] = ACTIONS(5650), + [anon_sym_i64] = ACTIONS(5650), + [anon_sym_u8] = ACTIONS(5650), + [anon_sym_u16] = ACTIONS(5650), + [anon_sym_u32] = ACTIONS(5650), + [anon_sym_u64] = ACTIONS(5650), + [anon_sym_isize] = ACTIONS(5650), + [anon_sym_usize] = ACTIONS(5650), + [anon_sym_f32] = ACTIONS(5650), + [anon_sym_f64] = ACTIONS(5650), + [anon_sym_c_char] = ACTIONS(5650), + [anon_sym_c_schar] = ACTIONS(5650), + [anon_sym_c_uchar] = ACTIONS(5650), + [anon_sym_c_short] = ACTIONS(5650), + [anon_sym_c_ushort] = ACTIONS(5650), + [anon_sym_c_int] = ACTIONS(5650), + [anon_sym_c_uint] = ACTIONS(5650), + [anon_sym_c_long] = ACTIONS(5650), + [anon_sym_c_ulong] = ACTIONS(5650), + [anon_sym_c_longlong] = ACTIONS(5650), + [anon_sym_c_ulonglong] = ACTIONS(5650), + [anon_sym_c_float] = ACTIONS(5650), + [anon_sym_c_double] = ACTIONS(5650), + [anon_sym_c_longdouble] = ACTIONS(5650), + [anon_sym_return] = ACTIONS(5650), + [anon_sym_yield] = ACTIONS(5650), + [anon_sym_COLON] = ACTIONS(5648), + [anon_sym_break] = ACTIONS(5650), + [anon_sym_continue] = ACTIONS(5650), + [anon_sym_defer] = ACTIONS(5650), + [anon_sym_errdefer] = ACTIONS(5650), + [anon_sym_if] = ACTIONS(5650), + [anon_sym_else] = ACTIONS(5650), + [anon_sym_while] = ACTIONS(5650), + [anon_sym_expand] = ACTIONS(5650), + [anon_sym_for] = ACTIONS(5650), + [anon_sym_match] = ACTIONS(5650), + [anon_sym_DOT_DOT] = ACTIONS(5650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5648), + [anon_sym_orelse] = ACTIONS(5650), + [anon_sym_or] = ACTIONS(5650), + [anon_sym_and] = ACTIONS(5650), + [anon_sym_EQ_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_EQ] = ACTIONS(5648), + [anon_sym_GT] = ACTIONS(5650), + [anon_sym_GT_EQ] = ACTIONS(5648), + [anon_sym_AMP] = ACTIONS(5648), + [anon_sym_xor] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5650), + [anon_sym_GT_GT] = ACTIONS(5648), + [anon_sym_LT_LT_PIPE] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5648), + [anon_sym_SLASH] = ACTIONS(5648), + [anon_sym_catch] = ACTIONS(5650), + [anon_sym_TILDE] = ACTIONS(5648), + [anon_sym_try] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5648), + [anon_sym_true] = ACTIONS(5650), + [anon_sym_false] = ACTIONS(5650), + [anon_sym_null] = ACTIONS(5650), + [anon_sym_unreachable] = ACTIONS(5650), + [anon_sym_undefined] = ACTIONS(5650), + [sym_sink] = ACTIONS(5650), + [sym_integer] = ACTIONS(5650), + [sym_float] = ACTIONS(5648), + [anon_sym_DQUOTE] = ACTIONS(5648), + [sym_multiline_string] = ACTIONS(5648), + [sym_character] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5648), + }, + [STATE(4332)] = { + [ts_builtin_sym_end] = ACTIONS(5514), + [sym_identifier] = ACTIONS(5516), + [anon_sym_import] = ACTIONS(5516), + [anon_sym_test] = ACTIONS(5516), + [anon_sym_hide] = ACTIONS(5516), + [anon_sym_func] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5516), + [anon_sym_struct] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_DOLLAR] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5514), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_void] = ACTIONS(5516), + [anon_sym_noreturn] = ACTIONS(5516), + [anon_sym_type] = ACTIONS(5516), + [anon_sym_anyopaque] = ACTIONS(5516), + [anon_sym_bool] = ACTIONS(5516), + [anon_sym_int] = ACTIONS(5516), + [anon_sym_uint] = ACTIONS(5516), + [anon_sym_float] = ACTIONS(5516), + [anon_sym_range] = ACTIONS(5516), + [anon_sym_i8] = ACTIONS(5516), + [anon_sym_i16] = ACTIONS(5516), + [anon_sym_i32] = ACTIONS(5516), + [anon_sym_i64] = ACTIONS(5516), + [anon_sym_u8] = ACTIONS(5516), + [anon_sym_u16] = ACTIONS(5516), + [anon_sym_u32] = ACTIONS(5516), + [anon_sym_u64] = ACTIONS(5516), + [anon_sym_isize] = ACTIONS(5516), + [anon_sym_usize] = ACTIONS(5516), + [anon_sym_f32] = ACTIONS(5516), + [anon_sym_f64] = ACTIONS(5516), + [anon_sym_c_char] = ACTIONS(5516), + [anon_sym_c_schar] = ACTIONS(5516), + [anon_sym_c_uchar] = ACTIONS(5516), + [anon_sym_c_short] = ACTIONS(5516), + [anon_sym_c_ushort] = ACTIONS(5516), + [anon_sym_c_int] = ACTIONS(5516), + [anon_sym_c_uint] = ACTIONS(5516), + [anon_sym_c_long] = ACTIONS(5516), + [anon_sym_c_ulong] = ACTIONS(5516), + [anon_sym_c_longlong] = ACTIONS(5516), + [anon_sym_c_ulonglong] = ACTIONS(5516), + [anon_sym_c_float] = ACTIONS(5516), + [anon_sym_c_double] = ACTIONS(5516), + [anon_sym_c_longdouble] = ACTIONS(5516), + [anon_sym_return] = ACTIONS(5516), + [anon_sym_yield] = ACTIONS(5516), + [anon_sym_COLON] = ACTIONS(5514), + [anon_sym_break] = ACTIONS(5516), + [anon_sym_continue] = ACTIONS(5516), + [anon_sym_defer] = ACTIONS(5516), + [anon_sym_errdefer] = ACTIONS(5516), + [anon_sym_if] = ACTIONS(5516), + [anon_sym_else] = ACTIONS(5516), + [anon_sym_while] = ACTIONS(5516), + [anon_sym_expand] = ACTIONS(5516), + [anon_sym_for] = ACTIONS(5516), + [anon_sym_match] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5514), + [anon_sym_orelse] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5514), + [anon_sym_BANG_EQ] = ACTIONS(5514), + [anon_sym_LT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5514), + [anon_sym_xor] = ACTIONS(5516), + [anon_sym_LT_LT] = ACTIONS(5516), + [anon_sym_GT_GT] = ACTIONS(5514), + [anon_sym_LT_LT_PIPE] = ACTIONS(5514), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_catch] = ACTIONS(5516), + [anon_sym_TILDE] = ACTIONS(5514), + [anon_sym_try] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5516), + [anon_sym_CARET] = ACTIONS(5514), + [anon_sym_true] = ACTIONS(5516), + [anon_sym_false] = ACTIONS(5516), + [anon_sym_null] = ACTIONS(5516), + [anon_sym_unreachable] = ACTIONS(5516), + [anon_sym_undefined] = ACTIONS(5516), + [sym_sink] = ACTIONS(5516), + [sym_integer] = ACTIONS(5516), + [sym_float] = ACTIONS(5514), + [anon_sym_DQUOTE] = ACTIONS(5514), + [sym_multiline_string] = ACTIONS(5514), + [sym_character] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5514), + }, + [STATE(4333)] = { + [ts_builtin_sym_end] = ACTIONS(5600), + [sym_identifier] = ACTIONS(5602), + [anon_sym_import] = ACTIONS(5602), + [anon_sym_test] = ACTIONS(5602), + [anon_sym_hide] = ACTIONS(5602), + [anon_sym_func] = ACTIONS(5602), + [anon_sym_BANG] = ACTIONS(5602), + [anon_sym_struct] = ACTIONS(5602), + [anon_sym_LPAREN] = ACTIONS(5600), + [anon_sym_LBRACE] = ACTIONS(5600), + [anon_sym_RBRACE] = ACTIONS(5600), + [anon_sym_DASH] = ACTIONS(5600), + [anon_sym_DOLLAR] = ACTIONS(5600), + [anon_sym_PIPE] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5600), + [anon_sym_STAR] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_void] = ACTIONS(5602), + [anon_sym_noreturn] = ACTIONS(5602), + [anon_sym_type] = ACTIONS(5602), + [anon_sym_anyopaque] = ACTIONS(5602), + [anon_sym_bool] = ACTIONS(5602), + [anon_sym_int] = ACTIONS(5602), + [anon_sym_uint] = ACTIONS(5602), + [anon_sym_float] = ACTIONS(5602), + [anon_sym_range] = ACTIONS(5602), + [anon_sym_i8] = ACTIONS(5602), + [anon_sym_i16] = ACTIONS(5602), + [anon_sym_i32] = ACTIONS(5602), + [anon_sym_i64] = ACTIONS(5602), + [anon_sym_u8] = ACTIONS(5602), + [anon_sym_u16] = ACTIONS(5602), + [anon_sym_u32] = ACTIONS(5602), + [anon_sym_u64] = ACTIONS(5602), + [anon_sym_isize] = ACTIONS(5602), + [anon_sym_usize] = ACTIONS(5602), + [anon_sym_f32] = ACTIONS(5602), + [anon_sym_f64] = ACTIONS(5602), + [anon_sym_c_char] = ACTIONS(5602), + [anon_sym_c_schar] = ACTIONS(5602), + [anon_sym_c_uchar] = ACTIONS(5602), + [anon_sym_c_short] = ACTIONS(5602), + [anon_sym_c_ushort] = ACTIONS(5602), + [anon_sym_c_int] = ACTIONS(5602), + [anon_sym_c_uint] = ACTIONS(5602), + [anon_sym_c_long] = ACTIONS(5602), + [anon_sym_c_ulong] = ACTIONS(5602), + [anon_sym_c_longlong] = ACTIONS(5602), + [anon_sym_c_ulonglong] = ACTIONS(5602), + [anon_sym_c_float] = ACTIONS(5602), + [anon_sym_c_double] = ACTIONS(5602), + [anon_sym_c_longdouble] = ACTIONS(5602), + [anon_sym_return] = ACTIONS(5602), + [anon_sym_yield] = ACTIONS(5602), + [anon_sym_COLON] = ACTIONS(5600), + [anon_sym_break] = ACTIONS(5602), + [anon_sym_continue] = ACTIONS(5602), + [anon_sym_defer] = ACTIONS(5602), + [anon_sym_errdefer] = ACTIONS(5602), + [anon_sym_if] = ACTIONS(5602), + [anon_sym_else] = ACTIONS(5602), + [anon_sym_while] = ACTIONS(5602), + [anon_sym_expand] = ACTIONS(5602), + [anon_sym_for] = ACTIONS(5602), + [anon_sym_match] = ACTIONS(5602), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5600), + [anon_sym_orelse] = ACTIONS(5602), + [anon_sym_or] = ACTIONS(5602), + [anon_sym_and] = ACTIONS(5602), + [anon_sym_EQ_EQ] = ACTIONS(5600), + [anon_sym_BANG_EQ] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5600), + [anon_sym_GT] = ACTIONS(5602), + [anon_sym_GT_EQ] = ACTIONS(5600), + [anon_sym_AMP] = ACTIONS(5600), + [anon_sym_xor] = ACTIONS(5602), + [anon_sym_LT_LT] = ACTIONS(5602), + [anon_sym_GT_GT] = ACTIONS(5600), + [anon_sym_LT_LT_PIPE] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5600), + [anon_sym_SLASH] = ACTIONS(5600), + [anon_sym_catch] = ACTIONS(5602), + [anon_sym_TILDE] = ACTIONS(5600), + [anon_sym_try] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5602), + [anon_sym_CARET] = ACTIONS(5600), + [anon_sym_true] = ACTIONS(5602), + [anon_sym_false] = ACTIONS(5602), + [anon_sym_null] = ACTIONS(5602), + [anon_sym_unreachable] = ACTIONS(5602), + [anon_sym_undefined] = ACTIONS(5602), + [sym_sink] = ACTIONS(5602), + [sym_integer] = ACTIONS(5602), + [sym_float] = ACTIONS(5600), + [anon_sym_DQUOTE] = ACTIONS(5600), + [sym_multiline_string] = ACTIONS(5600), + [sym_character] = ACTIONS(5600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5600), + }, + [STATE(4334)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10980), + [sym_labeled_block] = STATE(10980), + [sym_if_statement] = STATE(10980), + [sym_while_statement] = STATE(10980), + [sym_for_statement] = STATE(10980), + [sym_match_statement] = STATE(10980), + [sym__value] = STATE(10980), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4335)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4336)] = { + [ts_builtin_sym_end] = ACTIONS(4596), + [sym_identifier] = ACTIONS(4598), + [anon_sym_import] = ACTIONS(4598), + [anon_sym_test] = ACTIONS(4598), + [anon_sym_hide] = ACTIONS(4598), + [anon_sym_func] = ACTIONS(4598), + [anon_sym_BANG] = ACTIONS(4598), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_void] = ACTIONS(4598), + [anon_sym_noreturn] = ACTIONS(4598), + [anon_sym_type] = ACTIONS(4598), + [anon_sym_anyopaque] = ACTIONS(4598), + [anon_sym_bool] = ACTIONS(4598), + [anon_sym_int] = ACTIONS(4598), + [anon_sym_uint] = ACTIONS(4598), + [anon_sym_float] = ACTIONS(4598), + [anon_sym_range] = ACTIONS(4598), + [anon_sym_i8] = ACTIONS(4598), + [anon_sym_i16] = ACTIONS(4598), + [anon_sym_i32] = ACTIONS(4598), + [anon_sym_i64] = ACTIONS(4598), + [anon_sym_u8] = ACTIONS(4598), + [anon_sym_u16] = ACTIONS(4598), + [anon_sym_u32] = ACTIONS(4598), + [anon_sym_u64] = ACTIONS(4598), + [anon_sym_isize] = ACTIONS(4598), + [anon_sym_usize] = ACTIONS(4598), + [anon_sym_f32] = ACTIONS(4598), + [anon_sym_f64] = ACTIONS(4598), + [anon_sym_c_char] = ACTIONS(4598), + [anon_sym_c_schar] = ACTIONS(4598), + [anon_sym_c_uchar] = ACTIONS(4598), + [anon_sym_c_short] = ACTIONS(4598), + [anon_sym_c_ushort] = ACTIONS(4598), + [anon_sym_c_int] = ACTIONS(4598), + [anon_sym_c_uint] = ACTIONS(4598), + [anon_sym_c_long] = ACTIONS(4598), + [anon_sym_c_ulong] = ACTIONS(4598), + [anon_sym_c_longlong] = ACTIONS(4598), + [anon_sym_c_ulonglong] = ACTIONS(4598), + [anon_sym_c_float] = ACTIONS(4598), + [anon_sym_c_double] = ACTIONS(4598), + [anon_sym_c_longdouble] = ACTIONS(4598), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_yield] = ACTIONS(4598), + [anon_sym_COLON] = ACTIONS(4596), + [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_else] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_expand] = ACTIONS(4598), + [anon_sym_for] = ACTIONS(4598), + [anon_sym_match] = ACTIONS(4598), + [anon_sym_DOT_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4596), + [anon_sym_orelse] = ACTIONS(4598), + [anon_sym_or] = ACTIONS(4598), + [anon_sym_and] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_GT_EQ] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4598), + [anon_sym_LT_LT] = ACTIONS(4598), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym_LT_LT_PIPE] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_catch] = ACTIONS(4598), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_try] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_true] = ACTIONS(4598), + [anon_sym_false] = ACTIONS(4598), + [anon_sym_null] = ACTIONS(4598), + [anon_sym_unreachable] = ACTIONS(4598), + [anon_sym_undefined] = ACTIONS(4598), + [sym_sink] = ACTIONS(4598), + [sym_integer] = ACTIONS(4598), + [sym_float] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [sym_multiline_string] = ACTIONS(4596), + [sym_character] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4596), + }, + [STATE(4337)] = { + [ts_builtin_sym_end] = ACTIONS(4600), + [sym_identifier] = ACTIONS(4602), + [anon_sym_import] = ACTIONS(4602), + [anon_sym_test] = ACTIONS(4602), + [anon_sym_hide] = ACTIONS(4602), + [anon_sym_func] = ACTIONS(4602), + [anon_sym_BANG] = ACTIONS(4602), + [anon_sym_struct] = ACTIONS(4602), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4600), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_void] = ACTIONS(4602), + [anon_sym_noreturn] = ACTIONS(4602), + [anon_sym_type] = ACTIONS(4602), + [anon_sym_anyopaque] = ACTIONS(4602), + [anon_sym_bool] = ACTIONS(4602), + [anon_sym_int] = ACTIONS(4602), + [anon_sym_uint] = ACTIONS(4602), + [anon_sym_float] = ACTIONS(4602), + [anon_sym_range] = ACTIONS(4602), + [anon_sym_i8] = ACTIONS(4602), + [anon_sym_i16] = ACTIONS(4602), + [anon_sym_i32] = ACTIONS(4602), + [anon_sym_i64] = ACTIONS(4602), + [anon_sym_u8] = ACTIONS(4602), + [anon_sym_u16] = ACTIONS(4602), + [anon_sym_u32] = ACTIONS(4602), + [anon_sym_u64] = ACTIONS(4602), + [anon_sym_isize] = ACTIONS(4602), + [anon_sym_usize] = ACTIONS(4602), + [anon_sym_f32] = ACTIONS(4602), + [anon_sym_f64] = ACTIONS(4602), + [anon_sym_c_char] = ACTIONS(4602), + [anon_sym_c_schar] = ACTIONS(4602), + [anon_sym_c_uchar] = ACTIONS(4602), + [anon_sym_c_short] = ACTIONS(4602), + [anon_sym_c_ushort] = ACTIONS(4602), + [anon_sym_c_int] = ACTIONS(4602), + [anon_sym_c_uint] = ACTIONS(4602), + [anon_sym_c_long] = ACTIONS(4602), + [anon_sym_c_ulong] = ACTIONS(4602), + [anon_sym_c_longlong] = ACTIONS(4602), + [anon_sym_c_ulonglong] = ACTIONS(4602), + [anon_sym_c_float] = ACTIONS(4602), + [anon_sym_c_double] = ACTIONS(4602), + [anon_sym_c_longdouble] = ACTIONS(4602), + [anon_sym_return] = ACTIONS(4602), + [anon_sym_yield] = ACTIONS(4602), + [anon_sym_COLON] = ACTIONS(4600), + [anon_sym_break] = ACTIONS(4602), + [anon_sym_continue] = ACTIONS(4602), + [anon_sym_defer] = ACTIONS(4602), + [anon_sym_errdefer] = ACTIONS(4602), + [anon_sym_if] = ACTIONS(4602), + [anon_sym_else] = ACTIONS(4602), + [anon_sym_while] = ACTIONS(4602), + [anon_sym_expand] = ACTIONS(4602), + [anon_sym_for] = ACTIONS(4602), + [anon_sym_match] = ACTIONS(4602), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4600), + [anon_sym_orelse] = ACTIONS(4602), + [anon_sym_or] = ACTIONS(4602), + [anon_sym_and] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4600), + [anon_sym_BANG_EQ] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4600), + [anon_sym_xor] = ACTIONS(4602), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4600), + [anon_sym_LT_LT_PIPE] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_catch] = ACTIONS(4602), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_try] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4600), + [anon_sym_true] = ACTIONS(4602), + [anon_sym_false] = ACTIONS(4602), + [anon_sym_null] = ACTIONS(4602), + [anon_sym_unreachable] = ACTIONS(4602), + [anon_sym_undefined] = ACTIONS(4602), + [sym_sink] = ACTIONS(4602), + [sym_integer] = ACTIONS(4602), + [sym_float] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [sym_multiline_string] = ACTIONS(4600), + [sym_character] = ACTIONS(4600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4600), + }, + [STATE(4338)] = { + [ts_builtin_sym_end] = ACTIONS(4604), + [sym_identifier] = ACTIONS(4606), + [anon_sym_import] = ACTIONS(4606), + [anon_sym_test] = ACTIONS(4606), + [anon_sym_hide] = ACTIONS(4606), + [anon_sym_func] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_struct] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_RBRACE] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4604), + [anon_sym_QMARK] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4604), + [anon_sym_void] = ACTIONS(4606), + [anon_sym_noreturn] = ACTIONS(4606), + [anon_sym_type] = ACTIONS(4606), + [anon_sym_anyopaque] = ACTIONS(4606), + [anon_sym_bool] = ACTIONS(4606), + [anon_sym_int] = ACTIONS(4606), + [anon_sym_uint] = ACTIONS(4606), + [anon_sym_float] = ACTIONS(4606), + [anon_sym_range] = ACTIONS(4606), + [anon_sym_i8] = ACTIONS(4606), + [anon_sym_i16] = ACTIONS(4606), + [anon_sym_i32] = ACTIONS(4606), + [anon_sym_i64] = ACTIONS(4606), + [anon_sym_u8] = ACTIONS(4606), + [anon_sym_u16] = ACTIONS(4606), + [anon_sym_u32] = ACTIONS(4606), + [anon_sym_u64] = ACTIONS(4606), + [anon_sym_isize] = ACTIONS(4606), + [anon_sym_usize] = ACTIONS(4606), + [anon_sym_f32] = ACTIONS(4606), + [anon_sym_f64] = ACTIONS(4606), + [anon_sym_c_char] = ACTIONS(4606), + [anon_sym_c_schar] = ACTIONS(4606), + [anon_sym_c_uchar] = ACTIONS(4606), + [anon_sym_c_short] = ACTIONS(4606), + [anon_sym_c_ushort] = ACTIONS(4606), + [anon_sym_c_int] = ACTIONS(4606), + [anon_sym_c_uint] = ACTIONS(4606), + [anon_sym_c_long] = ACTIONS(4606), + [anon_sym_c_ulong] = ACTIONS(4606), + [anon_sym_c_longlong] = ACTIONS(4606), + [anon_sym_c_ulonglong] = ACTIONS(4606), + [anon_sym_c_float] = ACTIONS(4606), + [anon_sym_c_double] = ACTIONS(4606), + [anon_sym_c_longdouble] = ACTIONS(4606), + [anon_sym_return] = ACTIONS(4606), + [anon_sym_yield] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4604), + [anon_sym_break] = ACTIONS(4606), + [anon_sym_continue] = ACTIONS(4606), + [anon_sym_defer] = ACTIONS(4606), + [anon_sym_errdefer] = ACTIONS(4606), + [anon_sym_if] = ACTIONS(4606), + [anon_sym_else] = ACTIONS(4606), + [anon_sym_while] = ACTIONS(4606), + [anon_sym_expand] = ACTIONS(4606), + [anon_sym_for] = ACTIONS(4606), + [anon_sym_match] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4604), + [anon_sym_orelse] = ACTIONS(4606), + [anon_sym_or] = ACTIONS(4606), + [anon_sym_and] = ACTIONS(4606), + [anon_sym_EQ_EQ] = ACTIONS(4604), + [anon_sym_BANG_EQ] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4606), + [anon_sym_LT_EQ] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_GT_EQ] = ACTIONS(4604), + [anon_sym_AMP] = ACTIONS(4604), + [anon_sym_xor] = ACTIONS(4606), + [anon_sym_LT_LT] = ACTIONS(4606), + [anon_sym_GT_GT] = ACTIONS(4604), + [anon_sym_LT_LT_PIPE] = ACTIONS(4604), + [anon_sym_PLUS] = ACTIONS(4604), + [anon_sym_SLASH] = ACTIONS(4604), + [anon_sym_catch] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4604), + [anon_sym_try] = ACTIONS(4606), + [anon_sym_DOT] = ACTIONS(4606), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym_true] = ACTIONS(4606), + [anon_sym_false] = ACTIONS(4606), + [anon_sym_null] = ACTIONS(4606), + [anon_sym_unreachable] = ACTIONS(4606), + [anon_sym_undefined] = ACTIONS(4606), + [sym_sink] = ACTIONS(4606), + [sym_integer] = ACTIONS(4606), + [sym_float] = ACTIONS(4604), + [anon_sym_DQUOTE] = ACTIONS(4604), + [sym_multiline_string] = ACTIONS(4604), + [sym_character] = ACTIONS(4604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4604), + }, + [STATE(4339)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4340)] = { + [ts_builtin_sym_end] = ACTIONS(5624), + [sym_identifier] = ACTIONS(5626), + [anon_sym_import] = ACTIONS(5626), + [anon_sym_test] = ACTIONS(5626), + [anon_sym_hide] = ACTIONS(5626), + [anon_sym_func] = ACTIONS(5626), + [anon_sym_BANG] = ACTIONS(5626), + [anon_sym_struct] = ACTIONS(5626), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_LBRACE] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5624), + [anon_sym_DOLLAR] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_void] = ACTIONS(5626), + [anon_sym_noreturn] = ACTIONS(5626), + [anon_sym_type] = ACTIONS(5626), + [anon_sym_anyopaque] = ACTIONS(5626), + [anon_sym_bool] = ACTIONS(5626), + [anon_sym_int] = ACTIONS(5626), + [anon_sym_uint] = ACTIONS(5626), + [anon_sym_float] = ACTIONS(5626), + [anon_sym_range] = ACTIONS(5626), + [anon_sym_i8] = ACTIONS(5626), + [anon_sym_i16] = ACTIONS(5626), + [anon_sym_i32] = ACTIONS(5626), + [anon_sym_i64] = ACTIONS(5626), + [anon_sym_u8] = ACTIONS(5626), + [anon_sym_u16] = ACTIONS(5626), + [anon_sym_u32] = ACTIONS(5626), + [anon_sym_u64] = ACTIONS(5626), + [anon_sym_isize] = ACTIONS(5626), + [anon_sym_usize] = ACTIONS(5626), + [anon_sym_f32] = ACTIONS(5626), + [anon_sym_f64] = ACTIONS(5626), + [anon_sym_c_char] = ACTIONS(5626), + [anon_sym_c_schar] = ACTIONS(5626), + [anon_sym_c_uchar] = ACTIONS(5626), + [anon_sym_c_short] = ACTIONS(5626), + [anon_sym_c_ushort] = ACTIONS(5626), + [anon_sym_c_int] = ACTIONS(5626), + [anon_sym_c_uint] = ACTIONS(5626), + [anon_sym_c_long] = ACTIONS(5626), + [anon_sym_c_ulong] = ACTIONS(5626), + [anon_sym_c_longlong] = ACTIONS(5626), + [anon_sym_c_ulonglong] = ACTIONS(5626), + [anon_sym_c_float] = ACTIONS(5626), + [anon_sym_c_double] = ACTIONS(5626), + [anon_sym_c_longdouble] = ACTIONS(5626), + [anon_sym_return] = ACTIONS(5626), + [anon_sym_yield] = ACTIONS(5626), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_break] = ACTIONS(5626), + [anon_sym_continue] = ACTIONS(5626), + [anon_sym_defer] = ACTIONS(5626), + [anon_sym_errdefer] = ACTIONS(5626), + [anon_sym_if] = ACTIONS(5626), + [anon_sym_else] = ACTIONS(5626), + [anon_sym_while] = ACTIONS(5626), + [anon_sym_expand] = ACTIONS(5626), + [anon_sym_for] = ACTIONS(5626), + [anon_sym_match] = ACTIONS(5626), + [anon_sym_DOT_DOT] = ACTIONS(5626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5624), + [anon_sym_orelse] = ACTIONS(5626), + [anon_sym_or] = ACTIONS(5626), + [anon_sym_and] = ACTIONS(5626), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5626), + [anon_sym_LT_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5626), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5626), + [anon_sym_LT_LT] = ACTIONS(5626), + [anon_sym_GT_GT] = ACTIONS(5624), + [anon_sym_LT_LT_PIPE] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5624), + [anon_sym_SLASH] = ACTIONS(5624), + [anon_sym_catch] = ACTIONS(5626), + [anon_sym_TILDE] = ACTIONS(5624), + [anon_sym_try] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5626), + [anon_sym_CARET] = ACTIONS(5624), + [anon_sym_true] = ACTIONS(5626), + [anon_sym_false] = ACTIONS(5626), + [anon_sym_null] = ACTIONS(5626), + [anon_sym_unreachable] = ACTIONS(5626), + [anon_sym_undefined] = ACTIONS(5626), + [sym_sink] = ACTIONS(5626), + [sym_integer] = ACTIONS(5626), + [sym_float] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5624), + [sym_multiline_string] = ACTIONS(5624), + [sym_character] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5624), + }, + [STATE(4341)] = { + [ts_builtin_sym_end] = ACTIONS(4612), + [sym_identifier] = ACTIONS(4614), + [anon_sym_import] = ACTIONS(4614), + [anon_sym_test] = ACTIONS(4614), + [anon_sym_hide] = ACTIONS(4614), + [anon_sym_func] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_struct] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [anon_sym_RBRACE] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_PIPE] = ACTIONS(4612), + [anon_sym_QMARK] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_void] = ACTIONS(4614), + [anon_sym_noreturn] = ACTIONS(4614), + [anon_sym_type] = ACTIONS(4614), + [anon_sym_anyopaque] = ACTIONS(4614), + [anon_sym_bool] = ACTIONS(4614), + [anon_sym_int] = ACTIONS(4614), + [anon_sym_uint] = ACTIONS(4614), + [anon_sym_float] = ACTIONS(4614), + [anon_sym_range] = ACTIONS(4614), + [anon_sym_i8] = ACTIONS(4614), + [anon_sym_i16] = ACTIONS(4614), + [anon_sym_i32] = ACTIONS(4614), + [anon_sym_i64] = ACTIONS(4614), + [anon_sym_u8] = ACTIONS(4614), + [anon_sym_u16] = ACTIONS(4614), + [anon_sym_u32] = ACTIONS(4614), + [anon_sym_u64] = ACTIONS(4614), + [anon_sym_isize] = ACTIONS(4614), + [anon_sym_usize] = ACTIONS(4614), + [anon_sym_f32] = ACTIONS(4614), + [anon_sym_f64] = ACTIONS(4614), + [anon_sym_c_char] = ACTIONS(4614), + [anon_sym_c_schar] = ACTIONS(4614), + [anon_sym_c_uchar] = ACTIONS(4614), + [anon_sym_c_short] = ACTIONS(4614), + [anon_sym_c_ushort] = ACTIONS(4614), + [anon_sym_c_int] = ACTIONS(4614), + [anon_sym_c_uint] = ACTIONS(4614), + [anon_sym_c_long] = ACTIONS(4614), + [anon_sym_c_ulong] = ACTIONS(4614), + [anon_sym_c_longlong] = ACTIONS(4614), + [anon_sym_c_ulonglong] = ACTIONS(4614), + [anon_sym_c_float] = ACTIONS(4614), + [anon_sym_c_double] = ACTIONS(4614), + [anon_sym_c_longdouble] = ACTIONS(4614), + [anon_sym_return] = ACTIONS(4614), + [anon_sym_yield] = ACTIONS(4614), + [anon_sym_COLON] = ACTIONS(4612), + [anon_sym_break] = ACTIONS(4614), + [anon_sym_continue] = ACTIONS(4614), + [anon_sym_defer] = ACTIONS(4614), + [anon_sym_errdefer] = ACTIONS(4614), + [anon_sym_if] = ACTIONS(4614), + [anon_sym_else] = ACTIONS(4614), + [anon_sym_while] = ACTIONS(4614), + [anon_sym_expand] = ACTIONS(4614), + [anon_sym_for] = ACTIONS(4614), + [anon_sym_match] = ACTIONS(4614), + [anon_sym_DOT_DOT] = ACTIONS(4614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4612), + [anon_sym_orelse] = ACTIONS(4614), + [anon_sym_or] = ACTIONS(4614), + [anon_sym_and] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4612), + [anon_sym_BANG_EQ] = ACTIONS(4612), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_LT_EQ] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4612), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_xor] = ACTIONS(4614), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(4612), + [anon_sym_LT_LT_PIPE] = ACTIONS(4612), + [anon_sym_PLUS] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4612), + [anon_sym_catch] = ACTIONS(4614), + [anon_sym_TILDE] = ACTIONS(4612), + [anon_sym_try] = ACTIONS(4614), + [anon_sym_DOT] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4612), + [anon_sym_true] = ACTIONS(4614), + [anon_sym_false] = ACTIONS(4614), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_unreachable] = ACTIONS(4614), + [anon_sym_undefined] = ACTIONS(4614), + [sym_sink] = ACTIONS(4614), + [sym_integer] = ACTIONS(4614), + [sym_float] = ACTIONS(4612), + [anon_sym_DQUOTE] = ACTIONS(4612), + [sym_multiline_string] = ACTIONS(4612), + [sym_character] = ACTIONS(4612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4612), + }, + [STATE(4342)] = { + [ts_builtin_sym_end] = ACTIONS(4616), + [sym_identifier] = ACTIONS(4618), + [anon_sym_import] = ACTIONS(4618), + [anon_sym_test] = ACTIONS(4618), + [anon_sym_hide] = ACTIONS(4618), + [anon_sym_func] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_struct] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4616), + [anon_sym_LBRACE] = ACTIONS(4616), + [anon_sym_RBRACE] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4616), + [anon_sym_DOLLAR] = ACTIONS(4616), + [anon_sym_PIPE] = ACTIONS(4616), + [anon_sym_QMARK] = ACTIONS(4616), + [anon_sym_STAR] = ACTIONS(4616), + [anon_sym_LBRACK] = ACTIONS(4616), + [anon_sym_void] = ACTIONS(4618), + [anon_sym_noreturn] = ACTIONS(4618), + [anon_sym_type] = ACTIONS(4618), + [anon_sym_anyopaque] = ACTIONS(4618), + [anon_sym_bool] = ACTIONS(4618), + [anon_sym_int] = ACTIONS(4618), + [anon_sym_uint] = ACTIONS(4618), + [anon_sym_float] = ACTIONS(4618), + [anon_sym_range] = ACTIONS(4618), + [anon_sym_i8] = ACTIONS(4618), + [anon_sym_i16] = ACTIONS(4618), + [anon_sym_i32] = ACTIONS(4618), + [anon_sym_i64] = ACTIONS(4618), + [anon_sym_u8] = ACTIONS(4618), + [anon_sym_u16] = ACTIONS(4618), + [anon_sym_u32] = ACTIONS(4618), + [anon_sym_u64] = ACTIONS(4618), + [anon_sym_isize] = ACTIONS(4618), + [anon_sym_usize] = ACTIONS(4618), + [anon_sym_f32] = ACTIONS(4618), + [anon_sym_f64] = ACTIONS(4618), + [anon_sym_c_char] = ACTIONS(4618), + [anon_sym_c_schar] = ACTIONS(4618), + [anon_sym_c_uchar] = ACTIONS(4618), + [anon_sym_c_short] = ACTIONS(4618), + [anon_sym_c_ushort] = ACTIONS(4618), + [anon_sym_c_int] = ACTIONS(4618), + [anon_sym_c_uint] = ACTIONS(4618), + [anon_sym_c_long] = ACTIONS(4618), + [anon_sym_c_ulong] = ACTIONS(4618), + [anon_sym_c_longlong] = ACTIONS(4618), + [anon_sym_c_ulonglong] = ACTIONS(4618), + [anon_sym_c_float] = ACTIONS(4618), + [anon_sym_c_double] = ACTIONS(4618), + [anon_sym_c_longdouble] = ACTIONS(4618), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_yield] = ACTIONS(4618), + [anon_sym_COLON] = ACTIONS(4616), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_defer] = ACTIONS(4618), + [anon_sym_errdefer] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_while] = ACTIONS(4618), + [anon_sym_expand] = ACTIONS(4618), + [anon_sym_for] = ACTIONS(4618), + [anon_sym_match] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4616), + [anon_sym_orelse] = ACTIONS(4618), + [anon_sym_or] = ACTIONS(4618), + [anon_sym_and] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4616), + [anon_sym_BANG_EQ] = ACTIONS(4616), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_LT_EQ] = ACTIONS(4616), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_EQ] = ACTIONS(4616), + [anon_sym_AMP] = ACTIONS(4616), + [anon_sym_xor] = ACTIONS(4618), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(4616), + [anon_sym_LT_LT_PIPE] = ACTIONS(4616), + [anon_sym_PLUS] = ACTIONS(4616), + [anon_sym_SLASH] = ACTIONS(4616), + [anon_sym_catch] = ACTIONS(4618), + [anon_sym_TILDE] = ACTIONS(4616), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_CARET] = ACTIONS(4616), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_unreachable] = ACTIONS(4618), + [anon_sym_undefined] = ACTIONS(4618), + [sym_sink] = ACTIONS(4618), + [sym_integer] = ACTIONS(4618), + [sym_float] = ACTIONS(4616), + [anon_sym_DQUOTE] = ACTIONS(4616), + [sym_multiline_string] = ACTIONS(4616), + [sym_character] = ACTIONS(4616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4616), + }, + [STATE(4343)] = { + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_test] = ACTIONS(3060), + [anon_sym_hide] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_errdefer] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_expand] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_LT_LT_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_unreachable] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [sym_sink] = ACTIONS(3060), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_multiline_string] = ACTIONS(3062), + [sym_character] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(4344)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4345)] = { + [ts_builtin_sym_end] = ACTIONS(5628), + [sym_identifier] = ACTIONS(5630), + [anon_sym_import] = ACTIONS(5630), + [anon_sym_test] = ACTIONS(5630), + [anon_sym_hide] = ACTIONS(5630), + [anon_sym_func] = ACTIONS(5630), + [anon_sym_BANG] = ACTIONS(5630), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(5628), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_DOLLAR] = ACTIONS(5628), + [anon_sym_PIPE] = ACTIONS(5628), + [anon_sym_QMARK] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [anon_sym_void] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_type] = ACTIONS(5630), + [anon_sym_anyopaque] = ACTIONS(5630), + [anon_sym_bool] = ACTIONS(5630), + [anon_sym_int] = ACTIONS(5630), + [anon_sym_uint] = ACTIONS(5630), + [anon_sym_float] = ACTIONS(5630), + [anon_sym_range] = ACTIONS(5630), + [anon_sym_i8] = ACTIONS(5630), + [anon_sym_i16] = ACTIONS(5630), + [anon_sym_i32] = ACTIONS(5630), + [anon_sym_i64] = ACTIONS(5630), + [anon_sym_u8] = ACTIONS(5630), + [anon_sym_u16] = ACTIONS(5630), + [anon_sym_u32] = ACTIONS(5630), + [anon_sym_u64] = ACTIONS(5630), + [anon_sym_isize] = ACTIONS(5630), + [anon_sym_usize] = ACTIONS(5630), + [anon_sym_f32] = ACTIONS(5630), + [anon_sym_f64] = ACTIONS(5630), + [anon_sym_c_char] = ACTIONS(5630), + [anon_sym_c_schar] = ACTIONS(5630), + [anon_sym_c_uchar] = ACTIONS(5630), + [anon_sym_c_short] = ACTIONS(5630), + [anon_sym_c_ushort] = ACTIONS(5630), + [anon_sym_c_int] = ACTIONS(5630), + [anon_sym_c_uint] = ACTIONS(5630), + [anon_sym_c_long] = ACTIONS(5630), + [anon_sym_c_ulong] = ACTIONS(5630), + [anon_sym_c_longlong] = ACTIONS(5630), + [anon_sym_c_ulonglong] = ACTIONS(5630), + [anon_sym_c_float] = ACTIONS(5630), + [anon_sym_c_double] = ACTIONS(5630), + [anon_sym_c_longdouble] = ACTIONS(5630), + [anon_sym_return] = ACTIONS(5630), + [anon_sym_yield] = ACTIONS(5630), + [anon_sym_COLON] = ACTIONS(5628), + [anon_sym_break] = ACTIONS(5630), + [anon_sym_continue] = ACTIONS(5630), + [anon_sym_defer] = ACTIONS(5630), + [anon_sym_errdefer] = ACTIONS(5630), + [anon_sym_if] = ACTIONS(5630), + [anon_sym_else] = ACTIONS(5630), + [anon_sym_while] = ACTIONS(5630), + [anon_sym_expand] = ACTIONS(5630), + [anon_sym_for] = ACTIONS(5630), + [anon_sym_match] = ACTIONS(5630), + [anon_sym_DOT_DOT] = ACTIONS(5630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5628), + [anon_sym_orelse] = ACTIONS(5630), + [anon_sym_or] = ACTIONS(5630), + [anon_sym_and] = ACTIONS(5630), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5630), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT] = ACTIONS(5630), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5628), + [anon_sym_xor] = ACTIONS(5630), + [anon_sym_LT_LT] = ACTIONS(5630), + [anon_sym_GT_GT] = ACTIONS(5628), + [anon_sym_LT_LT_PIPE] = ACTIONS(5628), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_SLASH] = ACTIONS(5628), + [anon_sym_catch] = ACTIONS(5630), + [anon_sym_TILDE] = ACTIONS(5628), + [anon_sym_try] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5630), + [anon_sym_CARET] = ACTIONS(5628), + [anon_sym_true] = ACTIONS(5630), + [anon_sym_false] = ACTIONS(5630), + [anon_sym_null] = ACTIONS(5630), + [anon_sym_unreachable] = ACTIONS(5630), + [anon_sym_undefined] = ACTIONS(5630), + [sym_sink] = ACTIONS(5630), + [sym_integer] = ACTIONS(5630), + [sym_float] = ACTIONS(5628), + [anon_sym_DQUOTE] = ACTIONS(5628), + [sym_multiline_string] = ACTIONS(5628), + [sym_character] = ACTIONS(5628), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5628), + }, + [STATE(4346)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4392), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7128), + }, + [STATE(4347)] = { + [ts_builtin_sym_end] = ACTIONS(4622), + [sym_identifier] = ACTIONS(4624), + [anon_sym_import] = ACTIONS(4624), + [anon_sym_test] = ACTIONS(4624), + [anon_sym_hide] = ACTIONS(4624), + [anon_sym_func] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_struct] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [anon_sym_RBRACE] = ACTIONS(4622), + [anon_sym_DASH] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(4622), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_QMARK] = ACTIONS(4622), + [anon_sym_STAR] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_void] = ACTIONS(4624), + [anon_sym_noreturn] = ACTIONS(4624), + [anon_sym_type] = ACTIONS(4624), + [anon_sym_anyopaque] = ACTIONS(4624), + [anon_sym_bool] = ACTIONS(4624), + [anon_sym_int] = ACTIONS(4624), + [anon_sym_uint] = ACTIONS(4624), + [anon_sym_float] = ACTIONS(4624), + [anon_sym_range] = ACTIONS(4624), + [anon_sym_i8] = ACTIONS(4624), + [anon_sym_i16] = ACTIONS(4624), + [anon_sym_i32] = ACTIONS(4624), + [anon_sym_i64] = ACTIONS(4624), + [anon_sym_u8] = ACTIONS(4624), + [anon_sym_u16] = ACTIONS(4624), + [anon_sym_u32] = ACTIONS(4624), + [anon_sym_u64] = ACTIONS(4624), + [anon_sym_isize] = ACTIONS(4624), + [anon_sym_usize] = ACTIONS(4624), + [anon_sym_f32] = ACTIONS(4624), + [anon_sym_f64] = ACTIONS(4624), + [anon_sym_c_char] = ACTIONS(4624), + [anon_sym_c_schar] = ACTIONS(4624), + [anon_sym_c_uchar] = ACTIONS(4624), + [anon_sym_c_short] = ACTIONS(4624), + [anon_sym_c_ushort] = ACTIONS(4624), + [anon_sym_c_int] = ACTIONS(4624), + [anon_sym_c_uint] = ACTIONS(4624), + [anon_sym_c_long] = ACTIONS(4624), + [anon_sym_c_ulong] = ACTIONS(4624), + [anon_sym_c_longlong] = ACTIONS(4624), + [anon_sym_c_ulonglong] = ACTIONS(4624), + [anon_sym_c_float] = ACTIONS(4624), + [anon_sym_c_double] = ACTIONS(4624), + [anon_sym_c_longdouble] = ACTIONS(4624), + [anon_sym_return] = ACTIONS(4624), + [anon_sym_yield] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4622), + [anon_sym_break] = ACTIONS(4624), + [anon_sym_continue] = ACTIONS(4624), + [anon_sym_defer] = ACTIONS(4624), + [anon_sym_errdefer] = ACTIONS(4624), + [anon_sym_if] = ACTIONS(4624), + [anon_sym_else] = ACTIONS(4624), + [anon_sym_while] = ACTIONS(4624), + [anon_sym_expand] = ACTIONS(4624), + [anon_sym_for] = ACTIONS(4624), + [anon_sym_match] = ACTIONS(4624), + [anon_sym_DOT_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4622), + [anon_sym_orelse] = ACTIONS(4624), + [anon_sym_or] = ACTIONS(4624), + [anon_sym_and] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_BANG_EQ] = ACTIONS(4622), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_LT_EQ] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_EQ] = ACTIONS(4622), + [anon_sym_AMP] = ACTIONS(4622), + [anon_sym_xor] = ACTIONS(4624), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(4622), + [anon_sym_LT_LT_PIPE] = ACTIONS(4622), + [anon_sym_PLUS] = ACTIONS(4622), + [anon_sym_SLASH] = ACTIONS(4622), + [anon_sym_catch] = ACTIONS(4624), + [anon_sym_TILDE] = ACTIONS(4622), + [anon_sym_try] = ACTIONS(4624), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4622), + [anon_sym_true] = ACTIONS(4624), + [anon_sym_false] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(4624), + [anon_sym_unreachable] = ACTIONS(4624), + [anon_sym_undefined] = ACTIONS(4624), + [sym_sink] = ACTIONS(4624), + [sym_integer] = ACTIONS(4624), + [sym_float] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(4622), + [sym_multiline_string] = ACTIONS(4622), + [sym_character] = ACTIONS(4622), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4622), + }, + [STATE(4348)] = { + [ts_builtin_sym_end] = ACTIONS(4946), + [sym_identifier] = ACTIONS(4948), + [anon_sym_import] = ACTIONS(4948), + [anon_sym_test] = ACTIONS(4948), + [anon_sym_hide] = ACTIONS(4948), + [anon_sym_func] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_struct] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOLLAR] = ACTIONS(4946), + [anon_sym_PIPE] = ACTIONS(4946), + [anon_sym_QMARK] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_void] = ACTIONS(4948), + [anon_sym_noreturn] = ACTIONS(4948), + [anon_sym_type] = ACTIONS(4948), + [anon_sym_anyopaque] = ACTIONS(4948), + [anon_sym_bool] = ACTIONS(4948), + [anon_sym_int] = ACTIONS(4948), + [anon_sym_uint] = ACTIONS(4948), + [anon_sym_float] = ACTIONS(4948), + [anon_sym_range] = ACTIONS(4948), + [anon_sym_i8] = ACTIONS(4948), + [anon_sym_i16] = ACTIONS(4948), + [anon_sym_i32] = ACTIONS(4948), + [anon_sym_i64] = ACTIONS(4948), + [anon_sym_u8] = ACTIONS(4948), + [anon_sym_u16] = ACTIONS(4948), + [anon_sym_u32] = ACTIONS(4948), + [anon_sym_u64] = ACTIONS(4948), + [anon_sym_isize] = ACTIONS(4948), + [anon_sym_usize] = ACTIONS(4948), + [anon_sym_f32] = ACTIONS(4948), + [anon_sym_f64] = ACTIONS(4948), + [anon_sym_c_char] = ACTIONS(4948), + [anon_sym_c_schar] = ACTIONS(4948), + [anon_sym_c_uchar] = ACTIONS(4948), + [anon_sym_c_short] = ACTIONS(4948), + [anon_sym_c_ushort] = ACTIONS(4948), + [anon_sym_c_int] = ACTIONS(4948), + [anon_sym_c_uint] = ACTIONS(4948), + [anon_sym_c_long] = ACTIONS(4948), + [anon_sym_c_ulong] = ACTIONS(4948), + [anon_sym_c_longlong] = ACTIONS(4948), + [anon_sym_c_ulonglong] = ACTIONS(4948), + [anon_sym_c_float] = ACTIONS(4948), + [anon_sym_c_double] = ACTIONS(4948), + [anon_sym_c_longdouble] = ACTIONS(4948), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_yield] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4946), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_defer] = ACTIONS(4948), + [anon_sym_errdefer] = ACTIONS(4948), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_while] = ACTIONS(4948), + [anon_sym_expand] = ACTIONS(4948), + [anon_sym_for] = ACTIONS(4948), + [anon_sym_match] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4946), + [anon_sym_orelse] = ACTIONS(4948), + [anon_sym_or] = ACTIONS(4948), + [anon_sym_and] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_xor] = ACTIONS(4948), + [anon_sym_LT_LT] = ACTIONS(4948), + [anon_sym_GT_GT] = ACTIONS(4946), + [anon_sym_LT_LT_PIPE] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_catch] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4948), + [anon_sym_unreachable] = ACTIONS(4948), + [anon_sym_undefined] = ACTIONS(4948), + [sym_sink] = ACTIONS(4948), + [sym_integer] = ACTIONS(4948), + [sym_float] = ACTIONS(4946), + [anon_sym_DQUOTE] = ACTIONS(4946), + [sym_multiline_string] = ACTIONS(4946), + [sym_character] = ACTIONS(4946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4946), + }, + [STATE(4349)] = { + [ts_builtin_sym_end] = ACTIONS(5140), + [sym_identifier] = ACTIONS(5142), + [anon_sym_import] = ACTIONS(5142), + [anon_sym_test] = ACTIONS(5142), + [anon_sym_hide] = ACTIONS(5142), + [anon_sym_func] = ACTIONS(5142), + [anon_sym_BANG] = ACTIONS(5142), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5140), + [anon_sym_QMARK] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5140), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_void] = ACTIONS(5142), + [anon_sym_noreturn] = ACTIONS(5142), + [anon_sym_type] = ACTIONS(5142), + [anon_sym_anyopaque] = ACTIONS(5142), + [anon_sym_bool] = ACTIONS(5142), + [anon_sym_int] = ACTIONS(5142), + [anon_sym_uint] = ACTIONS(5142), + [anon_sym_float] = ACTIONS(5142), + [anon_sym_range] = ACTIONS(5142), + [anon_sym_i8] = ACTIONS(5142), + [anon_sym_i16] = ACTIONS(5142), + [anon_sym_i32] = ACTIONS(5142), + [anon_sym_i64] = ACTIONS(5142), + [anon_sym_u8] = ACTIONS(5142), + [anon_sym_u16] = ACTIONS(5142), + [anon_sym_u32] = ACTIONS(5142), + [anon_sym_u64] = ACTIONS(5142), + [anon_sym_isize] = ACTIONS(5142), + [anon_sym_usize] = ACTIONS(5142), + [anon_sym_f32] = ACTIONS(5142), + [anon_sym_f64] = ACTIONS(5142), + [anon_sym_c_char] = ACTIONS(5142), + [anon_sym_c_schar] = ACTIONS(5142), + [anon_sym_c_uchar] = ACTIONS(5142), + [anon_sym_c_short] = ACTIONS(5142), + [anon_sym_c_ushort] = ACTIONS(5142), + [anon_sym_c_int] = ACTIONS(5142), + [anon_sym_c_uint] = ACTIONS(5142), + [anon_sym_c_long] = ACTIONS(5142), + [anon_sym_c_ulong] = ACTIONS(5142), + [anon_sym_c_longlong] = ACTIONS(5142), + [anon_sym_c_ulonglong] = ACTIONS(5142), + [anon_sym_c_float] = ACTIONS(5142), + [anon_sym_c_double] = ACTIONS(5142), + [anon_sym_c_longdouble] = ACTIONS(5142), + [anon_sym_return] = ACTIONS(5142), + [anon_sym_yield] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_break] = ACTIONS(5142), + [anon_sym_continue] = ACTIONS(5142), + [anon_sym_defer] = ACTIONS(5142), + [anon_sym_errdefer] = ACTIONS(5142), + [anon_sym_if] = ACTIONS(5142), + [anon_sym_else] = ACTIONS(5142), + [anon_sym_while] = ACTIONS(5142), + [anon_sym_expand] = ACTIONS(5142), + [anon_sym_for] = ACTIONS(5142), + [anon_sym_match] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5140), + [anon_sym_orelse] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5140), + [anon_sym_BANG_EQ] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5140), + [anon_sym_AMP] = ACTIONS(5140), + [anon_sym_xor] = ACTIONS(5142), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5140), + [anon_sym_LT_LT_PIPE] = ACTIONS(5140), + [anon_sym_PLUS] = ACTIONS(5140), + [anon_sym_SLASH] = ACTIONS(5140), + [anon_sym_catch] = ACTIONS(5142), + [anon_sym_TILDE] = ACTIONS(5140), + [anon_sym_try] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym_true] = ACTIONS(5142), + [anon_sym_false] = ACTIONS(5142), + [anon_sym_null] = ACTIONS(5142), + [anon_sym_unreachable] = ACTIONS(5142), + [anon_sym_undefined] = ACTIONS(5142), + [sym_sink] = ACTIONS(5142), + [sym_integer] = ACTIONS(5142), + [sym_float] = ACTIONS(5140), + [anon_sym_DQUOTE] = ACTIONS(5140), + [sym_multiline_string] = ACTIONS(5140), + [sym_character] = ACTIONS(5140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5140), + }, + [STATE(4350)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4418), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7130), + }, + [STATE(4351)] = { + [ts_builtin_sym_end] = ACTIONS(5144), + [sym_identifier] = ACTIONS(5146), + [anon_sym_import] = ACTIONS(5146), + [anon_sym_test] = ACTIONS(5146), + [anon_sym_hide] = ACTIONS(5146), + [anon_sym_func] = ACTIONS(5146), + [anon_sym_BANG] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5146), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_void] = ACTIONS(5146), + [anon_sym_noreturn] = ACTIONS(5146), + [anon_sym_type] = ACTIONS(5146), + [anon_sym_anyopaque] = ACTIONS(5146), + [anon_sym_bool] = ACTIONS(5146), + [anon_sym_int] = ACTIONS(5146), + [anon_sym_uint] = ACTIONS(5146), + [anon_sym_float] = ACTIONS(5146), + [anon_sym_range] = ACTIONS(5146), + [anon_sym_i8] = ACTIONS(5146), + [anon_sym_i16] = ACTIONS(5146), + [anon_sym_i32] = ACTIONS(5146), + [anon_sym_i64] = ACTIONS(5146), + [anon_sym_u8] = ACTIONS(5146), + [anon_sym_u16] = ACTIONS(5146), + [anon_sym_u32] = ACTIONS(5146), + [anon_sym_u64] = ACTIONS(5146), + [anon_sym_isize] = ACTIONS(5146), + [anon_sym_usize] = ACTIONS(5146), + [anon_sym_f32] = ACTIONS(5146), + [anon_sym_f64] = ACTIONS(5146), + [anon_sym_c_char] = ACTIONS(5146), + [anon_sym_c_schar] = ACTIONS(5146), + [anon_sym_c_uchar] = ACTIONS(5146), + [anon_sym_c_short] = ACTIONS(5146), + [anon_sym_c_ushort] = ACTIONS(5146), + [anon_sym_c_int] = ACTIONS(5146), + [anon_sym_c_uint] = ACTIONS(5146), + [anon_sym_c_long] = ACTIONS(5146), + [anon_sym_c_ulong] = ACTIONS(5146), + [anon_sym_c_longlong] = ACTIONS(5146), + [anon_sym_c_ulonglong] = ACTIONS(5146), + [anon_sym_c_float] = ACTIONS(5146), + [anon_sym_c_double] = ACTIONS(5146), + [anon_sym_c_longdouble] = ACTIONS(5146), + [anon_sym_return] = ACTIONS(5146), + [anon_sym_yield] = ACTIONS(5146), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_break] = ACTIONS(5146), + [anon_sym_continue] = ACTIONS(5146), + [anon_sym_defer] = ACTIONS(5146), + [anon_sym_errdefer] = ACTIONS(5146), + [anon_sym_if] = ACTIONS(5146), + [anon_sym_else] = ACTIONS(5146), + [anon_sym_while] = ACTIONS(5146), + [anon_sym_expand] = ACTIONS(5146), + [anon_sym_for] = ACTIONS(5146), + [anon_sym_match] = ACTIONS(5146), + [anon_sym_DOT_DOT] = ACTIONS(5146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5144), + [anon_sym_orelse] = ACTIONS(5146), + [anon_sym_or] = ACTIONS(5146), + [anon_sym_and] = ACTIONS(5146), + [anon_sym_EQ_EQ] = ACTIONS(5144), + [anon_sym_BANG_EQ] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5146), + [anon_sym_LT_EQ] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5146), + [anon_sym_GT_EQ] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_xor] = ACTIONS(5146), + [anon_sym_LT_LT] = ACTIONS(5146), + [anon_sym_GT_GT] = ACTIONS(5144), + [anon_sym_LT_LT_PIPE] = ACTIONS(5144), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_catch] = ACTIONS(5146), + [anon_sym_TILDE] = ACTIONS(5144), + [anon_sym_try] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5146), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym_true] = ACTIONS(5146), + [anon_sym_false] = ACTIONS(5146), + [anon_sym_null] = ACTIONS(5146), + [anon_sym_unreachable] = ACTIONS(5146), + [anon_sym_undefined] = ACTIONS(5146), + [sym_sink] = ACTIONS(5146), + [sym_integer] = ACTIONS(5146), + [sym_float] = ACTIONS(5144), + [anon_sym_DQUOTE] = ACTIONS(5144), + [sym_multiline_string] = ACTIONS(5144), + [sym_character] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5144), + }, + [STATE(4352)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4439), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7132), + }, + [STATE(4353)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4354)] = { + [ts_builtin_sym_end] = ACTIONS(5148), + [sym_identifier] = ACTIONS(5150), + [anon_sym_import] = ACTIONS(5150), + [anon_sym_test] = ACTIONS(5150), + [anon_sym_hide] = ACTIONS(5150), + [anon_sym_func] = ACTIONS(5150), + [anon_sym_BANG] = ACTIONS(5150), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5148), + [anon_sym_QMARK] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5148), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_void] = ACTIONS(5150), + [anon_sym_noreturn] = ACTIONS(5150), + [anon_sym_type] = ACTIONS(5150), + [anon_sym_anyopaque] = ACTIONS(5150), + [anon_sym_bool] = ACTIONS(5150), + [anon_sym_int] = ACTIONS(5150), + [anon_sym_uint] = ACTIONS(5150), + [anon_sym_float] = ACTIONS(5150), + [anon_sym_range] = ACTIONS(5150), + [anon_sym_i8] = ACTIONS(5150), + [anon_sym_i16] = ACTIONS(5150), + [anon_sym_i32] = ACTIONS(5150), + [anon_sym_i64] = ACTIONS(5150), + [anon_sym_u8] = ACTIONS(5150), + [anon_sym_u16] = ACTIONS(5150), + [anon_sym_u32] = ACTIONS(5150), + [anon_sym_u64] = ACTIONS(5150), + [anon_sym_isize] = ACTIONS(5150), + [anon_sym_usize] = ACTIONS(5150), + [anon_sym_f32] = ACTIONS(5150), + [anon_sym_f64] = ACTIONS(5150), + [anon_sym_c_char] = ACTIONS(5150), + [anon_sym_c_schar] = ACTIONS(5150), + [anon_sym_c_uchar] = ACTIONS(5150), + [anon_sym_c_short] = ACTIONS(5150), + [anon_sym_c_ushort] = ACTIONS(5150), + [anon_sym_c_int] = ACTIONS(5150), + [anon_sym_c_uint] = ACTIONS(5150), + [anon_sym_c_long] = ACTIONS(5150), + [anon_sym_c_ulong] = ACTIONS(5150), + [anon_sym_c_longlong] = ACTIONS(5150), + [anon_sym_c_ulonglong] = ACTIONS(5150), + [anon_sym_c_float] = ACTIONS(5150), + [anon_sym_c_double] = ACTIONS(5150), + [anon_sym_c_longdouble] = ACTIONS(5150), + [anon_sym_return] = ACTIONS(5150), + [anon_sym_yield] = ACTIONS(5150), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_break] = ACTIONS(5150), + [anon_sym_continue] = ACTIONS(5150), + [anon_sym_defer] = ACTIONS(5150), + [anon_sym_errdefer] = ACTIONS(5150), + [anon_sym_if] = ACTIONS(5150), + [anon_sym_else] = ACTIONS(5150), + [anon_sym_while] = ACTIONS(5150), + [anon_sym_expand] = ACTIONS(5150), + [anon_sym_for] = ACTIONS(5150), + [anon_sym_match] = ACTIONS(5150), + [anon_sym_DOT_DOT] = ACTIONS(5150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5148), + [anon_sym_orelse] = ACTIONS(5150), + [anon_sym_or] = ACTIONS(5150), + [anon_sym_and] = ACTIONS(5150), + [anon_sym_EQ_EQ] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5150), + [anon_sym_LT_EQ] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_GT_EQ] = ACTIONS(5148), + [anon_sym_AMP] = ACTIONS(5148), + [anon_sym_xor] = ACTIONS(5150), + [anon_sym_LT_LT] = ACTIONS(5150), + [anon_sym_GT_GT] = ACTIONS(5148), + [anon_sym_LT_LT_PIPE] = ACTIONS(5148), + [anon_sym_PLUS] = ACTIONS(5148), + [anon_sym_SLASH] = ACTIONS(5148), + [anon_sym_catch] = ACTIONS(5150), + [anon_sym_TILDE] = ACTIONS(5148), + [anon_sym_try] = ACTIONS(5150), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym_true] = ACTIONS(5150), + [anon_sym_false] = ACTIONS(5150), + [anon_sym_null] = ACTIONS(5150), + [anon_sym_unreachable] = ACTIONS(5150), + [anon_sym_undefined] = ACTIONS(5150), + [sym_sink] = ACTIONS(5150), + [sym_integer] = ACTIONS(5150), + [sym_float] = ACTIONS(5148), + [anon_sym_DQUOTE] = ACTIONS(5148), + [sym_multiline_string] = ACTIONS(5148), + [sym_character] = ACTIONS(5148), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5148), + }, + [STATE(4355)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4393), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7134), + }, + [STATE(4356)] = { + [ts_builtin_sym_end] = ACTIONS(6040), + [sym_identifier] = ACTIONS(6042), + [anon_sym_import] = ACTIONS(6042), + [anon_sym_test] = ACTIONS(6042), + [anon_sym_hide] = ACTIONS(6042), + [anon_sym_func] = ACTIONS(6042), + [anon_sym_BANG] = ACTIONS(6042), + [anon_sym_struct] = ACTIONS(6042), + [anon_sym_LPAREN] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(6040), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_DASH] = ACTIONS(6040), + [anon_sym_DOLLAR] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(6040), + [anon_sym_QMARK] = ACTIONS(6040), + [anon_sym_STAR] = ACTIONS(6040), + [anon_sym_LBRACK] = ACTIONS(6040), + [anon_sym_void] = ACTIONS(6042), + [anon_sym_noreturn] = ACTIONS(6042), + [anon_sym_type] = ACTIONS(6042), + [anon_sym_anyopaque] = ACTIONS(6042), + [anon_sym_bool] = ACTIONS(6042), + [anon_sym_int] = ACTIONS(6042), + [anon_sym_uint] = ACTIONS(6042), + [anon_sym_float] = ACTIONS(6042), + [anon_sym_range] = ACTIONS(6042), + [anon_sym_i8] = ACTIONS(6042), + [anon_sym_i16] = ACTIONS(6042), + [anon_sym_i32] = ACTIONS(6042), + [anon_sym_i64] = ACTIONS(6042), + [anon_sym_u8] = ACTIONS(6042), + [anon_sym_u16] = ACTIONS(6042), + [anon_sym_u32] = ACTIONS(6042), + [anon_sym_u64] = ACTIONS(6042), + [anon_sym_isize] = ACTIONS(6042), + [anon_sym_usize] = ACTIONS(6042), + [anon_sym_f32] = ACTIONS(6042), + [anon_sym_f64] = ACTIONS(6042), + [anon_sym_c_char] = ACTIONS(6042), + [anon_sym_c_schar] = ACTIONS(6042), + [anon_sym_c_uchar] = ACTIONS(6042), + [anon_sym_c_short] = ACTIONS(6042), + [anon_sym_c_ushort] = ACTIONS(6042), + [anon_sym_c_int] = ACTIONS(6042), + [anon_sym_c_uint] = ACTIONS(6042), + [anon_sym_c_long] = ACTIONS(6042), + [anon_sym_c_ulong] = ACTIONS(6042), + [anon_sym_c_longlong] = ACTIONS(6042), + [anon_sym_c_ulonglong] = ACTIONS(6042), + [anon_sym_c_float] = ACTIONS(6042), + [anon_sym_c_double] = ACTIONS(6042), + [anon_sym_c_longdouble] = ACTIONS(6042), + [anon_sym_return] = ACTIONS(6042), + [anon_sym_yield] = ACTIONS(6042), + [anon_sym_COLON] = ACTIONS(6040), + [anon_sym_break] = ACTIONS(6042), + [anon_sym_continue] = ACTIONS(6042), + [anon_sym_defer] = ACTIONS(6042), + [anon_sym_errdefer] = ACTIONS(6042), + [anon_sym_if] = ACTIONS(6042), + [anon_sym_else] = ACTIONS(6042), + [anon_sym_while] = ACTIONS(6042), + [anon_sym_expand] = ACTIONS(6042), + [anon_sym_for] = ACTIONS(6042), + [anon_sym_match] = ACTIONS(6042), + [anon_sym_DOT_DOT] = ACTIONS(6042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6040), + [anon_sym_orelse] = ACTIONS(6042), + [anon_sym_or] = ACTIONS(6042), + [anon_sym_and] = ACTIONS(6042), + [anon_sym_EQ_EQ] = ACTIONS(6040), + [anon_sym_BANG_EQ] = ACTIONS(6040), + [anon_sym_LT] = ACTIONS(6042), + [anon_sym_LT_EQ] = ACTIONS(6040), + [anon_sym_GT] = ACTIONS(6042), + [anon_sym_GT_EQ] = ACTIONS(6040), + [anon_sym_AMP] = ACTIONS(6040), + [anon_sym_xor] = ACTIONS(6042), + [anon_sym_LT_LT] = ACTIONS(6042), + [anon_sym_GT_GT] = ACTIONS(6040), + [anon_sym_LT_LT_PIPE] = ACTIONS(6040), + [anon_sym_PLUS] = ACTIONS(6040), + [anon_sym_SLASH] = ACTIONS(6040), + [anon_sym_catch] = ACTIONS(6042), + [anon_sym_TILDE] = ACTIONS(6040), + [anon_sym_try] = ACTIONS(6042), + [anon_sym_DOT] = ACTIONS(6042), + [anon_sym_CARET] = ACTIONS(6040), + [anon_sym_true] = ACTIONS(6042), + [anon_sym_false] = ACTIONS(6042), + [anon_sym_null] = ACTIONS(6042), + [anon_sym_unreachable] = ACTIONS(6042), + [anon_sym_undefined] = ACTIONS(6042), + [sym_sink] = ACTIONS(6042), + [sym_integer] = ACTIONS(6042), + [sym_float] = ACTIONS(6040), + [anon_sym_DQUOTE] = ACTIONS(6040), + [sym_multiline_string] = ACTIONS(6040), + [sym_character] = ACTIONS(6040), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6040), + }, + [STATE(4357)] = { + [ts_builtin_sym_end] = ACTIONS(4950), + [sym_identifier] = ACTIONS(4952), + [anon_sym_import] = ACTIONS(4952), + [anon_sym_test] = ACTIONS(4952), + [anon_sym_hide] = ACTIONS(4952), + [anon_sym_func] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_struct] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOLLAR] = ACTIONS(4950), + [anon_sym_PIPE] = ACTIONS(4950), + [anon_sym_QMARK] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_void] = ACTIONS(4952), + [anon_sym_noreturn] = ACTIONS(4952), + [anon_sym_type] = ACTIONS(4952), + [anon_sym_anyopaque] = ACTIONS(4952), + [anon_sym_bool] = ACTIONS(4952), + [anon_sym_int] = ACTIONS(4952), + [anon_sym_uint] = ACTIONS(4952), + [anon_sym_float] = ACTIONS(4952), + [anon_sym_range] = ACTIONS(4952), + [anon_sym_i8] = ACTIONS(4952), + [anon_sym_i16] = ACTIONS(4952), + [anon_sym_i32] = ACTIONS(4952), + [anon_sym_i64] = ACTIONS(4952), + [anon_sym_u8] = ACTIONS(4952), + [anon_sym_u16] = ACTIONS(4952), + [anon_sym_u32] = ACTIONS(4952), + [anon_sym_u64] = ACTIONS(4952), + [anon_sym_isize] = ACTIONS(4952), + [anon_sym_usize] = ACTIONS(4952), + [anon_sym_f32] = ACTIONS(4952), + [anon_sym_f64] = ACTIONS(4952), + [anon_sym_c_char] = ACTIONS(4952), + [anon_sym_c_schar] = ACTIONS(4952), + [anon_sym_c_uchar] = ACTIONS(4952), + [anon_sym_c_short] = ACTIONS(4952), + [anon_sym_c_ushort] = ACTIONS(4952), + [anon_sym_c_int] = ACTIONS(4952), + [anon_sym_c_uint] = ACTIONS(4952), + [anon_sym_c_long] = ACTIONS(4952), + [anon_sym_c_ulong] = ACTIONS(4952), + [anon_sym_c_longlong] = ACTIONS(4952), + [anon_sym_c_ulonglong] = ACTIONS(4952), + [anon_sym_c_float] = ACTIONS(4952), + [anon_sym_c_double] = ACTIONS(4952), + [anon_sym_c_longdouble] = ACTIONS(4952), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_yield] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4950), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_defer] = ACTIONS(4952), + [anon_sym_errdefer] = ACTIONS(4952), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_while] = ACTIONS(4952), + [anon_sym_expand] = ACTIONS(4952), + [anon_sym_for] = ACTIONS(4952), + [anon_sym_match] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4950), + [anon_sym_orelse] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_xor] = ACTIONS(4952), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4950), + [anon_sym_LT_LT_PIPE] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_catch] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_unreachable] = ACTIONS(4952), + [anon_sym_undefined] = ACTIONS(4952), + [sym_sink] = ACTIONS(4952), + [sym_integer] = ACTIONS(4952), + [sym_float] = ACTIONS(4950), + [anon_sym_DQUOTE] = ACTIONS(4950), + [sym_multiline_string] = ACTIONS(4950), + [sym_character] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4950), + }, + [STATE(4358)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4359)] = { + [ts_builtin_sym_end] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1333), + [anon_sym_import] = ACTIONS(1333), + [anon_sym_test] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_defer] = ACTIONS(1333), + [anon_sym_errdefer] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_expand] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_LT_LT_PIPE] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_unreachable] = ACTIONS(1333), + [anon_sym_undefined] = ACTIONS(1333), + [sym_sink] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_multiline_string] = ACTIONS(1335), + [sym_character] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1335), + }, + [STATE(4360)] = { + [ts_builtin_sym_end] = ACTIONS(4954), + [sym_identifier] = ACTIONS(4956), + [anon_sym_import] = ACTIONS(4956), + [anon_sym_test] = ACTIONS(4956), + [anon_sym_hide] = ACTIONS(4956), + [anon_sym_func] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_struct] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOLLAR] = ACTIONS(4954), + [anon_sym_PIPE] = ACTIONS(4954), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_void] = ACTIONS(4956), + [anon_sym_noreturn] = ACTIONS(4956), + [anon_sym_type] = ACTIONS(4956), + [anon_sym_anyopaque] = ACTIONS(4956), + [anon_sym_bool] = ACTIONS(4956), + [anon_sym_int] = ACTIONS(4956), + [anon_sym_uint] = ACTIONS(4956), + [anon_sym_float] = ACTIONS(4956), + [anon_sym_range] = ACTIONS(4956), + [anon_sym_i8] = ACTIONS(4956), + [anon_sym_i16] = ACTIONS(4956), + [anon_sym_i32] = ACTIONS(4956), + [anon_sym_i64] = ACTIONS(4956), + [anon_sym_u8] = ACTIONS(4956), + [anon_sym_u16] = ACTIONS(4956), + [anon_sym_u32] = ACTIONS(4956), + [anon_sym_u64] = ACTIONS(4956), + [anon_sym_isize] = ACTIONS(4956), + [anon_sym_usize] = ACTIONS(4956), + [anon_sym_f32] = ACTIONS(4956), + [anon_sym_f64] = ACTIONS(4956), + [anon_sym_c_char] = ACTIONS(4956), + [anon_sym_c_schar] = ACTIONS(4956), + [anon_sym_c_uchar] = ACTIONS(4956), + [anon_sym_c_short] = ACTIONS(4956), + [anon_sym_c_ushort] = ACTIONS(4956), + [anon_sym_c_int] = ACTIONS(4956), + [anon_sym_c_uint] = ACTIONS(4956), + [anon_sym_c_long] = ACTIONS(4956), + [anon_sym_c_ulong] = ACTIONS(4956), + [anon_sym_c_longlong] = ACTIONS(4956), + [anon_sym_c_ulonglong] = ACTIONS(4956), + [anon_sym_c_float] = ACTIONS(4956), + [anon_sym_c_double] = ACTIONS(4956), + [anon_sym_c_longdouble] = ACTIONS(4956), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_yield] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(4954), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_defer] = ACTIONS(4956), + [anon_sym_errdefer] = ACTIONS(4956), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_while] = ACTIONS(4956), + [anon_sym_expand] = ACTIONS(4956), + [anon_sym_for] = ACTIONS(4956), + [anon_sym_match] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), + [anon_sym_orelse] = ACTIONS(4956), + [anon_sym_or] = ACTIONS(4956), + [anon_sym_and] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_xor] = ACTIONS(4956), + [anon_sym_LT_LT] = ACTIONS(4956), + [anon_sym_GT_GT] = ACTIONS(4954), + [anon_sym_LT_LT_PIPE] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_catch] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4956), + [anon_sym_unreachable] = ACTIONS(4956), + [anon_sym_undefined] = ACTIONS(4956), + [sym_sink] = ACTIONS(4956), + [sym_integer] = ACTIONS(4956), + [sym_float] = ACTIONS(4954), + [anon_sym_DQUOTE] = ACTIONS(4954), + [sym_multiline_string] = ACTIONS(4954), + [sym_character] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4954), + }, + [STATE(4361)] = { + [ts_builtin_sym_end] = ACTIONS(5652), + [sym_identifier] = ACTIONS(5654), + [anon_sym_import] = ACTIONS(5654), + [anon_sym_test] = ACTIONS(5654), + [anon_sym_hide] = ACTIONS(5654), + [anon_sym_func] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5654), + [anon_sym_struct] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5652), + [anon_sym_LBRACE] = ACTIONS(5652), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_DOLLAR] = ACTIONS(5652), + [anon_sym_PIPE] = ACTIONS(5652), + [anon_sym_QMARK] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5652), + [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_void] = ACTIONS(5654), + [anon_sym_noreturn] = ACTIONS(5654), + [anon_sym_type] = ACTIONS(5654), + [anon_sym_anyopaque] = ACTIONS(5654), + [anon_sym_bool] = ACTIONS(5654), + [anon_sym_int] = ACTIONS(5654), + [anon_sym_uint] = ACTIONS(5654), + [anon_sym_float] = ACTIONS(5654), + [anon_sym_range] = ACTIONS(5654), + [anon_sym_i8] = ACTIONS(5654), + [anon_sym_i16] = ACTIONS(5654), + [anon_sym_i32] = ACTIONS(5654), + [anon_sym_i64] = ACTIONS(5654), + [anon_sym_u8] = ACTIONS(5654), + [anon_sym_u16] = ACTIONS(5654), + [anon_sym_u32] = ACTIONS(5654), + [anon_sym_u64] = ACTIONS(5654), + [anon_sym_isize] = ACTIONS(5654), + [anon_sym_usize] = ACTIONS(5654), + [anon_sym_f32] = ACTIONS(5654), + [anon_sym_f64] = ACTIONS(5654), + [anon_sym_c_char] = ACTIONS(5654), + [anon_sym_c_schar] = ACTIONS(5654), + [anon_sym_c_uchar] = ACTIONS(5654), + [anon_sym_c_short] = ACTIONS(5654), + [anon_sym_c_ushort] = ACTIONS(5654), + [anon_sym_c_int] = ACTIONS(5654), + [anon_sym_c_uint] = ACTIONS(5654), + [anon_sym_c_long] = ACTIONS(5654), + [anon_sym_c_ulong] = ACTIONS(5654), + [anon_sym_c_longlong] = ACTIONS(5654), + [anon_sym_c_ulonglong] = ACTIONS(5654), + [anon_sym_c_float] = ACTIONS(5654), + [anon_sym_c_double] = ACTIONS(5654), + [anon_sym_c_longdouble] = ACTIONS(5654), + [anon_sym_return] = ACTIONS(5654), + [anon_sym_yield] = ACTIONS(5654), + [anon_sym_COLON] = ACTIONS(5652), + [anon_sym_break] = ACTIONS(5654), + [anon_sym_continue] = ACTIONS(5654), + [anon_sym_defer] = ACTIONS(5654), + [anon_sym_errdefer] = ACTIONS(5654), + [anon_sym_if] = ACTIONS(5654), + [anon_sym_else] = ACTIONS(5654), + [anon_sym_while] = ACTIONS(5654), + [anon_sym_expand] = ACTIONS(5654), + [anon_sym_for] = ACTIONS(5654), + [anon_sym_match] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5652), + [anon_sym_orelse] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_EQ_EQ] = ACTIONS(5652), + [anon_sym_BANG_EQ] = ACTIONS(5652), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5652), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5652), + [anon_sym_AMP] = ACTIONS(5652), + [anon_sym_xor] = ACTIONS(5654), + [anon_sym_LT_LT] = ACTIONS(5654), + [anon_sym_GT_GT] = ACTIONS(5652), + [anon_sym_LT_LT_PIPE] = ACTIONS(5652), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_SLASH] = ACTIONS(5652), + [anon_sym_catch] = ACTIONS(5654), + [anon_sym_TILDE] = ACTIONS(5652), + [anon_sym_try] = ACTIONS(5654), + [anon_sym_DOT] = ACTIONS(5654), + [anon_sym_CARET] = ACTIONS(5652), + [anon_sym_true] = ACTIONS(5654), + [anon_sym_false] = ACTIONS(5654), + [anon_sym_null] = ACTIONS(5654), + [anon_sym_unreachable] = ACTIONS(5654), + [anon_sym_undefined] = ACTIONS(5654), + [sym_sink] = ACTIONS(5654), + [sym_integer] = ACTIONS(5654), + [sym_float] = ACTIONS(5652), + [anon_sym_DQUOTE] = ACTIONS(5652), + [sym_multiline_string] = ACTIONS(5652), + [sym_character] = ACTIONS(5652), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5652), + }, + [STATE(4362)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3549), + [sym_labeled_block] = STATE(3549), + [sym_if_statement] = STATE(3549), + [sym_while_statement] = STATE(3549), + [sym_for_statement] = STATE(3549), + [sym_match_statement] = STATE(3549), + [sym__value] = STATE(3549), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(3998), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7136), + }, + [STATE(4363)] = { + [ts_builtin_sym_end] = ACTIONS(5742), + [sym_identifier] = ACTIONS(5744), + [anon_sym_import] = ACTIONS(5744), + [anon_sym_test] = ACTIONS(5744), + [anon_sym_hide] = ACTIONS(5744), + [anon_sym_func] = ACTIONS(5744), + [anon_sym_BANG] = ACTIONS(5744), + [anon_sym_struct] = ACTIONS(5744), + [anon_sym_LPAREN] = ACTIONS(5742), + [anon_sym_LBRACE] = ACTIONS(5742), + [anon_sym_RBRACE] = ACTIONS(5742), + [anon_sym_DASH] = ACTIONS(5742), + [anon_sym_DOLLAR] = ACTIONS(5742), + [anon_sym_PIPE] = ACTIONS(5742), + [anon_sym_QMARK] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5742), + [anon_sym_LBRACK] = ACTIONS(5742), + [anon_sym_void] = ACTIONS(5744), + [anon_sym_noreturn] = ACTIONS(5744), + [anon_sym_type] = ACTIONS(5744), + [anon_sym_anyopaque] = ACTIONS(5744), + [anon_sym_bool] = ACTIONS(5744), + [anon_sym_int] = ACTIONS(5744), + [anon_sym_uint] = ACTIONS(5744), + [anon_sym_float] = ACTIONS(5744), + [anon_sym_range] = ACTIONS(5744), + [anon_sym_i8] = ACTIONS(5744), + [anon_sym_i16] = ACTIONS(5744), + [anon_sym_i32] = ACTIONS(5744), + [anon_sym_i64] = ACTIONS(5744), + [anon_sym_u8] = ACTIONS(5744), + [anon_sym_u16] = ACTIONS(5744), + [anon_sym_u32] = ACTIONS(5744), + [anon_sym_u64] = ACTIONS(5744), + [anon_sym_isize] = ACTIONS(5744), + [anon_sym_usize] = ACTIONS(5744), + [anon_sym_f32] = ACTIONS(5744), + [anon_sym_f64] = ACTIONS(5744), + [anon_sym_c_char] = ACTIONS(5744), + [anon_sym_c_schar] = ACTIONS(5744), + [anon_sym_c_uchar] = ACTIONS(5744), + [anon_sym_c_short] = ACTIONS(5744), + [anon_sym_c_ushort] = ACTIONS(5744), + [anon_sym_c_int] = ACTIONS(5744), + [anon_sym_c_uint] = ACTIONS(5744), + [anon_sym_c_long] = ACTIONS(5744), + [anon_sym_c_ulong] = ACTIONS(5744), + [anon_sym_c_longlong] = ACTIONS(5744), + [anon_sym_c_ulonglong] = ACTIONS(5744), + [anon_sym_c_float] = ACTIONS(5744), + [anon_sym_c_double] = ACTIONS(5744), + [anon_sym_c_longdouble] = ACTIONS(5744), + [anon_sym_return] = ACTIONS(5744), + [anon_sym_yield] = ACTIONS(5744), + [anon_sym_COLON] = ACTIONS(5742), + [anon_sym_break] = ACTIONS(5744), + [anon_sym_continue] = ACTIONS(5744), + [anon_sym_defer] = ACTIONS(5744), + [anon_sym_errdefer] = ACTIONS(5744), + [anon_sym_if] = ACTIONS(5744), + [anon_sym_else] = ACTIONS(5744), + [anon_sym_while] = ACTIONS(5744), + [anon_sym_expand] = ACTIONS(5744), + [anon_sym_for] = ACTIONS(5744), + [anon_sym_match] = ACTIONS(5744), + [anon_sym_DOT_DOT] = ACTIONS(5744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5742), + [anon_sym_orelse] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5744), + [anon_sym_and] = ACTIONS(5744), + [anon_sym_EQ_EQ] = ACTIONS(5742), + [anon_sym_BANG_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_GT] = ACTIONS(5744), + [anon_sym_GT_EQ] = ACTIONS(5742), + [anon_sym_AMP] = ACTIONS(5742), + [anon_sym_xor] = ACTIONS(5744), + [anon_sym_LT_LT] = ACTIONS(5744), + [anon_sym_GT_GT] = ACTIONS(5742), + [anon_sym_LT_LT_PIPE] = ACTIONS(5742), + [anon_sym_PLUS] = ACTIONS(5742), + [anon_sym_SLASH] = ACTIONS(5742), + [anon_sym_catch] = ACTIONS(5744), + [anon_sym_TILDE] = ACTIONS(5742), + [anon_sym_try] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5744), + [anon_sym_CARET] = ACTIONS(5742), + [anon_sym_true] = ACTIONS(5744), + [anon_sym_false] = ACTIONS(5744), + [anon_sym_null] = ACTIONS(5744), + [anon_sym_unreachable] = ACTIONS(5744), + [anon_sym_undefined] = ACTIONS(5744), + [sym_sink] = ACTIONS(5744), + [sym_integer] = ACTIONS(5744), + [sym_float] = ACTIONS(5742), + [anon_sym_DQUOTE] = ACTIONS(5742), + [sym_multiline_string] = ACTIONS(5742), + [sym_character] = ACTIONS(5742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5742), + }, + [STATE(4364)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4365)] = { + [ts_builtin_sym_end] = ACTIONS(4626), + [sym_identifier] = ACTIONS(4628), + [anon_sym_import] = ACTIONS(4628), + [anon_sym_test] = ACTIONS(4628), + [anon_sym_hide] = ACTIONS(4628), + [anon_sym_func] = ACTIONS(4628), + [anon_sym_BANG] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_LBRACE] = ACTIONS(4626), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_DASH] = ACTIONS(4626), + [anon_sym_DOLLAR] = ACTIONS(4626), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_QMARK] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4626), + [anon_sym_LBRACK] = ACTIONS(4626), + [anon_sym_void] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym_type] = ACTIONS(4628), + [anon_sym_anyopaque] = ACTIONS(4628), + [anon_sym_bool] = ACTIONS(4628), + [anon_sym_int] = ACTIONS(4628), + [anon_sym_uint] = ACTIONS(4628), + [anon_sym_float] = ACTIONS(4628), + [anon_sym_range] = ACTIONS(4628), + [anon_sym_i8] = ACTIONS(4628), + [anon_sym_i16] = ACTIONS(4628), + [anon_sym_i32] = ACTIONS(4628), + [anon_sym_i64] = ACTIONS(4628), + [anon_sym_u8] = ACTIONS(4628), + [anon_sym_u16] = ACTIONS(4628), + [anon_sym_u32] = ACTIONS(4628), + [anon_sym_u64] = ACTIONS(4628), + [anon_sym_isize] = ACTIONS(4628), + [anon_sym_usize] = ACTIONS(4628), + [anon_sym_f32] = ACTIONS(4628), + [anon_sym_f64] = ACTIONS(4628), + [anon_sym_c_char] = ACTIONS(4628), + [anon_sym_c_schar] = ACTIONS(4628), + [anon_sym_c_uchar] = ACTIONS(4628), + [anon_sym_c_short] = ACTIONS(4628), + [anon_sym_c_ushort] = ACTIONS(4628), + [anon_sym_c_int] = ACTIONS(4628), + [anon_sym_c_uint] = ACTIONS(4628), + [anon_sym_c_long] = ACTIONS(4628), + [anon_sym_c_ulong] = ACTIONS(4628), + [anon_sym_c_longlong] = ACTIONS(4628), + [anon_sym_c_ulonglong] = ACTIONS(4628), + [anon_sym_c_float] = ACTIONS(4628), + [anon_sym_c_double] = ACTIONS(4628), + [anon_sym_c_longdouble] = ACTIONS(4628), + [anon_sym_return] = ACTIONS(4628), + [anon_sym_yield] = ACTIONS(4628), + [anon_sym_COLON] = ACTIONS(4626), + [anon_sym_break] = ACTIONS(4628), + [anon_sym_continue] = ACTIONS(4628), + [anon_sym_defer] = ACTIONS(4628), + [anon_sym_errdefer] = ACTIONS(4628), + [anon_sym_if] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(4628), + [anon_sym_expand] = ACTIONS(4628), + [anon_sym_for] = ACTIONS(4628), + [anon_sym_match] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4626), + [anon_sym_orelse] = ACTIONS(4628), + [anon_sym_or] = ACTIONS(4628), + [anon_sym_and] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4628), + [anon_sym_GT_EQ] = ACTIONS(4626), + [anon_sym_AMP] = ACTIONS(4626), + [anon_sym_xor] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4626), + [anon_sym_LT_LT_PIPE] = ACTIONS(4626), + [anon_sym_PLUS] = ACTIONS(4626), + [anon_sym_SLASH] = ACTIONS(4626), + [anon_sym_catch] = ACTIONS(4628), + [anon_sym_TILDE] = ACTIONS(4626), + [anon_sym_try] = ACTIONS(4628), + [anon_sym_DOT] = ACTIONS(4628), + [anon_sym_CARET] = ACTIONS(4626), + [anon_sym_true] = ACTIONS(4628), + [anon_sym_false] = ACTIONS(4628), + [anon_sym_null] = ACTIONS(4628), + [anon_sym_unreachable] = ACTIONS(4628), + [anon_sym_undefined] = ACTIONS(4628), + [sym_sink] = ACTIONS(4628), + [sym_integer] = ACTIONS(4628), + [sym_float] = ACTIONS(4626), + [anon_sym_DQUOTE] = ACTIONS(4626), + [sym_multiline_string] = ACTIONS(4626), + [sym_character] = ACTIONS(4626), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4626), + }, + [STATE(4366)] = { + [ts_builtin_sym_end] = ACTIONS(5770), + [sym_identifier] = ACTIONS(5772), + [anon_sym_import] = ACTIONS(5772), + [anon_sym_test] = ACTIONS(5772), + [anon_sym_hide] = ACTIONS(5772), + [anon_sym_func] = ACTIONS(5772), + [anon_sym_BANG] = ACTIONS(5772), + [anon_sym_struct] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5770), + [anon_sym_DOLLAR] = ACTIONS(5770), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_QMARK] = ACTIONS(5770), + [anon_sym_STAR] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_void] = ACTIONS(5772), + [anon_sym_noreturn] = ACTIONS(5772), + [anon_sym_type] = ACTIONS(5772), + [anon_sym_anyopaque] = ACTIONS(5772), + [anon_sym_bool] = ACTIONS(5772), + [anon_sym_int] = ACTIONS(5772), + [anon_sym_uint] = ACTIONS(5772), + [anon_sym_float] = ACTIONS(5772), + [anon_sym_range] = ACTIONS(5772), + [anon_sym_i8] = ACTIONS(5772), + [anon_sym_i16] = ACTIONS(5772), + [anon_sym_i32] = ACTIONS(5772), + [anon_sym_i64] = ACTIONS(5772), + [anon_sym_u8] = ACTIONS(5772), + [anon_sym_u16] = ACTIONS(5772), + [anon_sym_u32] = ACTIONS(5772), + [anon_sym_u64] = ACTIONS(5772), + [anon_sym_isize] = ACTIONS(5772), + [anon_sym_usize] = ACTIONS(5772), + [anon_sym_f32] = ACTIONS(5772), + [anon_sym_f64] = ACTIONS(5772), + [anon_sym_c_char] = ACTIONS(5772), + [anon_sym_c_schar] = ACTIONS(5772), + [anon_sym_c_uchar] = ACTIONS(5772), + [anon_sym_c_short] = ACTIONS(5772), + [anon_sym_c_ushort] = ACTIONS(5772), + [anon_sym_c_int] = ACTIONS(5772), + [anon_sym_c_uint] = ACTIONS(5772), + [anon_sym_c_long] = ACTIONS(5772), + [anon_sym_c_ulong] = ACTIONS(5772), + [anon_sym_c_longlong] = ACTIONS(5772), + [anon_sym_c_ulonglong] = ACTIONS(5772), + [anon_sym_c_float] = ACTIONS(5772), + [anon_sym_c_double] = ACTIONS(5772), + [anon_sym_c_longdouble] = ACTIONS(5772), + [anon_sym_return] = ACTIONS(5772), + [anon_sym_yield] = ACTIONS(5772), + [anon_sym_COLON] = ACTIONS(5770), + [anon_sym_break] = ACTIONS(5772), + [anon_sym_continue] = ACTIONS(5772), + [anon_sym_defer] = ACTIONS(5772), + [anon_sym_errdefer] = ACTIONS(5772), + [anon_sym_if] = ACTIONS(5772), + [anon_sym_else] = ACTIONS(5772), + [anon_sym_while] = ACTIONS(5772), + [anon_sym_expand] = ACTIONS(5772), + [anon_sym_for] = ACTIONS(5772), + [anon_sym_match] = ACTIONS(5772), + [anon_sym_DOT_DOT] = ACTIONS(5772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5770), + [anon_sym_orelse] = ACTIONS(5772), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5770), + [anon_sym_BANG_EQ] = ACTIONS(5770), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_EQ] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5770), + [anon_sym_AMP] = ACTIONS(5770), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5772), + [anon_sym_GT_GT] = ACTIONS(5770), + [anon_sym_LT_LT_PIPE] = ACTIONS(5770), + [anon_sym_PLUS] = ACTIONS(5770), + [anon_sym_SLASH] = ACTIONS(5770), + [anon_sym_catch] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(5770), + [anon_sym_try] = ACTIONS(5772), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5770), + [anon_sym_true] = ACTIONS(5772), + [anon_sym_false] = ACTIONS(5772), + [anon_sym_null] = ACTIONS(5772), + [anon_sym_unreachable] = ACTIONS(5772), + [anon_sym_undefined] = ACTIONS(5772), + [sym_sink] = ACTIONS(5772), + [sym_integer] = ACTIONS(5772), + [sym_float] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(5770), + [sym_multiline_string] = ACTIONS(5770), + [sym_character] = ACTIONS(5770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5770), + }, + [STATE(4367)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10987), + [sym_labeled_block] = STATE(10987), + [sym_if_statement] = STATE(10987), + [sym_while_statement] = STATE(10987), + [sym_for_statement] = STATE(10987), + [sym_match_statement] = STATE(10987), + [sym__value] = STATE(10987), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4368)] = { + [ts_builtin_sym_end] = ACTIONS(5270), + [sym_identifier] = ACTIONS(5272), + [anon_sym_import] = ACTIONS(5272), + [anon_sym_test] = ACTIONS(5272), + [anon_sym_hide] = ACTIONS(5272), + [anon_sym_func] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_struct] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_DASH] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5270), + [anon_sym_PIPE] = ACTIONS(5270), + [anon_sym_QMARK] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_void] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym_type] = ACTIONS(5272), + [anon_sym_anyopaque] = ACTIONS(5272), + [anon_sym_bool] = ACTIONS(5272), + [anon_sym_int] = ACTIONS(5272), + [anon_sym_uint] = ACTIONS(5272), + [anon_sym_float] = ACTIONS(5272), + [anon_sym_range] = ACTIONS(5272), + [anon_sym_i8] = ACTIONS(5272), + [anon_sym_i16] = ACTIONS(5272), + [anon_sym_i32] = ACTIONS(5272), + [anon_sym_i64] = ACTIONS(5272), + [anon_sym_u8] = ACTIONS(5272), + [anon_sym_u16] = ACTIONS(5272), + [anon_sym_u32] = ACTIONS(5272), + [anon_sym_u64] = ACTIONS(5272), + [anon_sym_isize] = ACTIONS(5272), + [anon_sym_usize] = ACTIONS(5272), + [anon_sym_f32] = ACTIONS(5272), + [anon_sym_f64] = ACTIONS(5272), + [anon_sym_c_char] = ACTIONS(5272), + [anon_sym_c_schar] = ACTIONS(5272), + [anon_sym_c_uchar] = ACTIONS(5272), + [anon_sym_c_short] = ACTIONS(5272), + [anon_sym_c_ushort] = ACTIONS(5272), + [anon_sym_c_int] = ACTIONS(5272), + [anon_sym_c_uint] = ACTIONS(5272), + [anon_sym_c_long] = ACTIONS(5272), + [anon_sym_c_ulong] = ACTIONS(5272), + [anon_sym_c_longlong] = ACTIONS(5272), + [anon_sym_c_ulonglong] = ACTIONS(5272), + [anon_sym_c_float] = ACTIONS(5272), + [anon_sym_c_double] = ACTIONS(5272), + [anon_sym_c_longdouble] = ACTIONS(5272), + [anon_sym_return] = ACTIONS(5272), + [anon_sym_yield] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5270), + [anon_sym_break] = ACTIONS(5272), + [anon_sym_continue] = ACTIONS(5272), + [anon_sym_defer] = ACTIONS(5272), + [anon_sym_errdefer] = ACTIONS(5272), + [anon_sym_if] = ACTIONS(5272), + [anon_sym_else] = ACTIONS(5272), + [anon_sym_while] = ACTIONS(5272), + [anon_sym_expand] = ACTIONS(5272), + [anon_sym_for] = ACTIONS(5272), + [anon_sym_match] = ACTIONS(5272), + [anon_sym_DOT_DOT] = ACTIONS(5272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5270), + [anon_sym_orelse] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5272), + [anon_sym_and] = ACTIONS(5272), + [anon_sym_EQ_EQ] = ACTIONS(5270), + [anon_sym_BANG_EQ] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_GT_EQ] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5270), + [anon_sym_xor] = ACTIONS(5272), + [anon_sym_LT_LT] = ACTIONS(5272), + [anon_sym_GT_GT] = ACTIONS(5270), + [anon_sym_LT_LT_PIPE] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5270), + [anon_sym_SLASH] = ACTIONS(5270), + [anon_sym_catch] = ACTIONS(5272), + [anon_sym_TILDE] = ACTIONS(5270), + [anon_sym_try] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_true] = ACTIONS(5272), + [anon_sym_false] = ACTIONS(5272), + [anon_sym_null] = ACTIONS(5272), + [anon_sym_unreachable] = ACTIONS(5272), + [anon_sym_undefined] = ACTIONS(5272), + [sym_sink] = ACTIONS(5272), + [sym_integer] = ACTIONS(5272), + [sym_float] = ACTIONS(5270), + [anon_sym_DQUOTE] = ACTIONS(5270), + [sym_multiline_string] = ACTIONS(5270), + [sym_character] = ACTIONS(5270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5270), + }, + [STATE(4369)] = { + [ts_builtin_sym_end] = ACTIONS(5384), + [sym_identifier] = ACTIONS(5386), + [anon_sym_import] = ACTIONS(5386), + [anon_sym_test] = ACTIONS(5386), + [anon_sym_hide] = ACTIONS(5386), + [anon_sym_func] = ACTIONS(5386), + [anon_sym_BANG] = ACTIONS(5386), + [anon_sym_struct] = ACTIONS(5386), + [anon_sym_LPAREN] = ACTIONS(5384), + [anon_sym_LBRACE] = ACTIONS(5384), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_QMARK] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5384), + [anon_sym_void] = ACTIONS(5386), + [anon_sym_noreturn] = ACTIONS(5386), + [anon_sym_type] = ACTIONS(5386), + [anon_sym_anyopaque] = ACTIONS(5386), + [anon_sym_bool] = ACTIONS(5386), + [anon_sym_int] = ACTIONS(5386), + [anon_sym_uint] = ACTIONS(5386), + [anon_sym_float] = ACTIONS(5386), + [anon_sym_range] = ACTIONS(5386), + [anon_sym_i8] = ACTIONS(5386), + [anon_sym_i16] = ACTIONS(5386), + [anon_sym_i32] = ACTIONS(5386), + [anon_sym_i64] = ACTIONS(5386), + [anon_sym_u8] = ACTIONS(5386), + [anon_sym_u16] = ACTIONS(5386), + [anon_sym_u32] = ACTIONS(5386), + [anon_sym_u64] = ACTIONS(5386), + [anon_sym_isize] = ACTIONS(5386), + [anon_sym_usize] = ACTIONS(5386), + [anon_sym_f32] = ACTIONS(5386), + [anon_sym_f64] = ACTIONS(5386), + [anon_sym_c_char] = ACTIONS(5386), + [anon_sym_c_schar] = ACTIONS(5386), + [anon_sym_c_uchar] = ACTIONS(5386), + [anon_sym_c_short] = ACTIONS(5386), + [anon_sym_c_ushort] = ACTIONS(5386), + [anon_sym_c_int] = ACTIONS(5386), + [anon_sym_c_uint] = ACTIONS(5386), + [anon_sym_c_long] = ACTIONS(5386), + [anon_sym_c_ulong] = ACTIONS(5386), + [anon_sym_c_longlong] = ACTIONS(5386), + [anon_sym_c_ulonglong] = ACTIONS(5386), + [anon_sym_c_float] = ACTIONS(5386), + [anon_sym_c_double] = ACTIONS(5386), + [anon_sym_c_longdouble] = ACTIONS(5386), + [anon_sym_return] = ACTIONS(5386), + [anon_sym_yield] = ACTIONS(5386), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_break] = ACTIONS(5386), + [anon_sym_continue] = ACTIONS(5386), + [anon_sym_defer] = ACTIONS(5386), + [anon_sym_errdefer] = ACTIONS(5386), + [anon_sym_if] = ACTIONS(5386), + [anon_sym_else] = ACTIONS(5386), + [anon_sym_while] = ACTIONS(5386), + [anon_sym_expand] = ACTIONS(5386), + [anon_sym_for] = ACTIONS(5386), + [anon_sym_match] = ACTIONS(5386), + [anon_sym_DOT_DOT] = ACTIONS(5386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5384), + [anon_sym_orelse] = ACTIONS(5386), + [anon_sym_or] = ACTIONS(5386), + [anon_sym_and] = ACTIONS(5386), + [anon_sym_EQ_EQ] = ACTIONS(5384), + [anon_sym_BANG_EQ] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_EQ] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5386), + [anon_sym_GT_EQ] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(5384), + [anon_sym_xor] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(5386), + [anon_sym_GT_GT] = ACTIONS(5384), + [anon_sym_LT_LT_PIPE] = ACTIONS(5384), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_catch] = ACTIONS(5386), + [anon_sym_TILDE] = ACTIONS(5384), + [anon_sym_try] = ACTIONS(5386), + [anon_sym_DOT] = ACTIONS(5386), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym_true] = ACTIONS(5386), + [anon_sym_false] = ACTIONS(5386), + [anon_sym_null] = ACTIONS(5386), + [anon_sym_unreachable] = ACTIONS(5386), + [anon_sym_undefined] = ACTIONS(5386), + [sym_sink] = ACTIONS(5386), + [sym_integer] = ACTIONS(5386), + [sym_float] = ACTIONS(5384), + [anon_sym_DQUOTE] = ACTIONS(5384), + [sym_multiline_string] = ACTIONS(5384), + [sym_character] = ACTIONS(5384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5384), + }, + [STATE(4370)] = { + [ts_builtin_sym_end] = ACTIONS(5388), + [sym_identifier] = ACTIONS(5390), + [anon_sym_import] = ACTIONS(5390), + [anon_sym_test] = ACTIONS(5390), + [anon_sym_hide] = ACTIONS(5390), + [anon_sym_func] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_struct] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_LBRACE] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_void] = ACTIONS(5390), + [anon_sym_noreturn] = ACTIONS(5390), + [anon_sym_type] = ACTIONS(5390), + [anon_sym_anyopaque] = ACTIONS(5390), + [anon_sym_bool] = ACTIONS(5390), + [anon_sym_int] = ACTIONS(5390), + [anon_sym_uint] = ACTIONS(5390), + [anon_sym_float] = ACTIONS(5390), + [anon_sym_range] = ACTIONS(5390), + [anon_sym_i8] = ACTIONS(5390), + [anon_sym_i16] = ACTIONS(5390), + [anon_sym_i32] = ACTIONS(5390), + [anon_sym_i64] = ACTIONS(5390), + [anon_sym_u8] = ACTIONS(5390), + [anon_sym_u16] = ACTIONS(5390), + [anon_sym_u32] = ACTIONS(5390), + [anon_sym_u64] = ACTIONS(5390), + [anon_sym_isize] = ACTIONS(5390), + [anon_sym_usize] = ACTIONS(5390), + [anon_sym_f32] = ACTIONS(5390), + [anon_sym_f64] = ACTIONS(5390), + [anon_sym_c_char] = ACTIONS(5390), + [anon_sym_c_schar] = ACTIONS(5390), + [anon_sym_c_uchar] = ACTIONS(5390), + [anon_sym_c_short] = ACTIONS(5390), + [anon_sym_c_ushort] = ACTIONS(5390), + [anon_sym_c_int] = ACTIONS(5390), + [anon_sym_c_uint] = ACTIONS(5390), + [anon_sym_c_long] = ACTIONS(5390), + [anon_sym_c_ulong] = ACTIONS(5390), + [anon_sym_c_longlong] = ACTIONS(5390), + [anon_sym_c_ulonglong] = ACTIONS(5390), + [anon_sym_c_float] = ACTIONS(5390), + [anon_sym_c_double] = ACTIONS(5390), + [anon_sym_c_longdouble] = ACTIONS(5390), + [anon_sym_return] = ACTIONS(5390), + [anon_sym_yield] = ACTIONS(5390), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_break] = ACTIONS(5390), + [anon_sym_continue] = ACTIONS(5390), + [anon_sym_defer] = ACTIONS(5390), + [anon_sym_errdefer] = ACTIONS(5390), + [anon_sym_if] = ACTIONS(5390), + [anon_sym_else] = ACTIONS(5390), + [anon_sym_while] = ACTIONS(5390), + [anon_sym_expand] = ACTIONS(5390), + [anon_sym_for] = ACTIONS(5390), + [anon_sym_match] = ACTIONS(5390), + [anon_sym_DOT_DOT] = ACTIONS(5390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5388), + [anon_sym_orelse] = ACTIONS(5390), + [anon_sym_or] = ACTIONS(5390), + [anon_sym_and] = ACTIONS(5390), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_AMP] = ACTIONS(5388), + [anon_sym_xor] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5390), + [anon_sym_GT_GT] = ACTIONS(5388), + [anon_sym_LT_LT_PIPE] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_catch] = ACTIONS(5390), + [anon_sym_TILDE] = ACTIONS(5388), + [anon_sym_try] = ACTIONS(5390), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_true] = ACTIONS(5390), + [anon_sym_false] = ACTIONS(5390), + [anon_sym_null] = ACTIONS(5390), + [anon_sym_unreachable] = ACTIONS(5390), + [anon_sym_undefined] = ACTIONS(5390), + [sym_sink] = ACTIONS(5390), + [sym_integer] = ACTIONS(5390), + [sym_float] = ACTIONS(5388), + [anon_sym_DQUOTE] = ACTIONS(5388), + [sym_multiline_string] = ACTIONS(5388), + [sym_character] = ACTIONS(5388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5388), + }, + [STATE(4371)] = { + [ts_builtin_sym_end] = ACTIONS(5392), + [sym_identifier] = ACTIONS(5394), + [anon_sym_import] = ACTIONS(5394), + [anon_sym_test] = ACTIONS(5394), + [anon_sym_hide] = ACTIONS(5394), + [anon_sym_func] = ACTIONS(5394), + [anon_sym_BANG] = ACTIONS(5394), + [anon_sym_struct] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5392), + [anon_sym_LBRACE] = ACTIONS(5392), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_QMARK] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(5392), + [anon_sym_void] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_type] = ACTIONS(5394), + [anon_sym_anyopaque] = ACTIONS(5394), + [anon_sym_bool] = ACTIONS(5394), + [anon_sym_int] = ACTIONS(5394), + [anon_sym_uint] = ACTIONS(5394), + [anon_sym_float] = ACTIONS(5394), + [anon_sym_range] = ACTIONS(5394), + [anon_sym_i8] = ACTIONS(5394), + [anon_sym_i16] = ACTIONS(5394), + [anon_sym_i32] = ACTIONS(5394), + [anon_sym_i64] = ACTIONS(5394), + [anon_sym_u8] = ACTIONS(5394), + [anon_sym_u16] = ACTIONS(5394), + [anon_sym_u32] = ACTIONS(5394), + [anon_sym_u64] = ACTIONS(5394), + [anon_sym_isize] = ACTIONS(5394), + [anon_sym_usize] = ACTIONS(5394), + [anon_sym_f32] = ACTIONS(5394), + [anon_sym_f64] = ACTIONS(5394), + [anon_sym_c_char] = ACTIONS(5394), + [anon_sym_c_schar] = ACTIONS(5394), + [anon_sym_c_uchar] = ACTIONS(5394), + [anon_sym_c_short] = ACTIONS(5394), + [anon_sym_c_ushort] = ACTIONS(5394), + [anon_sym_c_int] = ACTIONS(5394), + [anon_sym_c_uint] = ACTIONS(5394), + [anon_sym_c_long] = ACTIONS(5394), + [anon_sym_c_ulong] = ACTIONS(5394), + [anon_sym_c_longlong] = ACTIONS(5394), + [anon_sym_c_ulonglong] = ACTIONS(5394), + [anon_sym_c_float] = ACTIONS(5394), + [anon_sym_c_double] = ACTIONS(5394), + [anon_sym_c_longdouble] = ACTIONS(5394), + [anon_sym_return] = ACTIONS(5394), + [anon_sym_yield] = ACTIONS(5394), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_break] = ACTIONS(5394), + [anon_sym_continue] = ACTIONS(5394), + [anon_sym_defer] = ACTIONS(5394), + [anon_sym_errdefer] = ACTIONS(5394), + [anon_sym_if] = ACTIONS(5394), + [anon_sym_else] = ACTIONS(5394), + [anon_sym_while] = ACTIONS(5394), + [anon_sym_expand] = ACTIONS(5394), + [anon_sym_for] = ACTIONS(5394), + [anon_sym_match] = ACTIONS(5394), + [anon_sym_DOT_DOT] = ACTIONS(5394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5392), + [anon_sym_orelse] = ACTIONS(5394), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5392), + [anon_sym_BANG_EQ] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_EQ] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5392), + [anon_sym_AMP] = ACTIONS(5392), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5392), + [anon_sym_LT_LT_PIPE] = ACTIONS(5392), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_catch] = ACTIONS(5394), + [anon_sym_TILDE] = ACTIONS(5392), + [anon_sym_try] = ACTIONS(5394), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym_true] = ACTIONS(5394), + [anon_sym_false] = ACTIONS(5394), + [anon_sym_null] = ACTIONS(5394), + [anon_sym_unreachable] = ACTIONS(5394), + [anon_sym_undefined] = ACTIONS(5394), + [sym_sink] = ACTIONS(5394), + [sym_integer] = ACTIONS(5394), + [sym_float] = ACTIONS(5392), + [anon_sym_DQUOTE] = ACTIONS(5392), + [sym_multiline_string] = ACTIONS(5392), + [sym_character] = ACTIONS(5392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5392), + }, + [STATE(4372)] = { + [ts_builtin_sym_end] = ACTIONS(5396), + [sym_identifier] = ACTIONS(5398), + [anon_sym_import] = ACTIONS(5398), + [anon_sym_test] = ACTIONS(5398), + [anon_sym_hide] = ACTIONS(5398), + [anon_sym_func] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_struct] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5396), + [anon_sym_DOLLAR] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5396), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_void] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_type] = ACTIONS(5398), + [anon_sym_anyopaque] = ACTIONS(5398), + [anon_sym_bool] = ACTIONS(5398), + [anon_sym_int] = ACTIONS(5398), + [anon_sym_uint] = ACTIONS(5398), + [anon_sym_float] = ACTIONS(5398), + [anon_sym_range] = ACTIONS(5398), + [anon_sym_i8] = ACTIONS(5398), + [anon_sym_i16] = ACTIONS(5398), + [anon_sym_i32] = ACTIONS(5398), + [anon_sym_i64] = ACTIONS(5398), + [anon_sym_u8] = ACTIONS(5398), + [anon_sym_u16] = ACTIONS(5398), + [anon_sym_u32] = ACTIONS(5398), + [anon_sym_u64] = ACTIONS(5398), + [anon_sym_isize] = ACTIONS(5398), + [anon_sym_usize] = ACTIONS(5398), + [anon_sym_f32] = ACTIONS(5398), + [anon_sym_f64] = ACTIONS(5398), + [anon_sym_c_char] = ACTIONS(5398), + [anon_sym_c_schar] = ACTIONS(5398), + [anon_sym_c_uchar] = ACTIONS(5398), + [anon_sym_c_short] = ACTIONS(5398), + [anon_sym_c_ushort] = ACTIONS(5398), + [anon_sym_c_int] = ACTIONS(5398), + [anon_sym_c_uint] = ACTIONS(5398), + [anon_sym_c_long] = ACTIONS(5398), + [anon_sym_c_ulong] = ACTIONS(5398), + [anon_sym_c_longlong] = ACTIONS(5398), + [anon_sym_c_ulonglong] = ACTIONS(5398), + [anon_sym_c_float] = ACTIONS(5398), + [anon_sym_c_double] = ACTIONS(5398), + [anon_sym_c_longdouble] = ACTIONS(5398), + [anon_sym_return] = ACTIONS(5398), + [anon_sym_yield] = ACTIONS(5398), + [anon_sym_COLON] = ACTIONS(5396), + [anon_sym_break] = ACTIONS(5398), + [anon_sym_continue] = ACTIONS(5398), + [anon_sym_defer] = ACTIONS(5398), + [anon_sym_errdefer] = ACTIONS(5398), + [anon_sym_if] = ACTIONS(5398), + [anon_sym_else] = ACTIONS(5398), + [anon_sym_while] = ACTIONS(5398), + [anon_sym_expand] = ACTIONS(5398), + [anon_sym_for] = ACTIONS(5398), + [anon_sym_match] = ACTIONS(5398), + [anon_sym_DOT_DOT] = ACTIONS(5398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5396), + [anon_sym_orelse] = ACTIONS(5398), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5396), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5396), + [anon_sym_LT_LT_PIPE] = ACTIONS(5396), + [anon_sym_PLUS] = ACTIONS(5396), + [anon_sym_SLASH] = ACTIONS(5396), + [anon_sym_catch] = ACTIONS(5398), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_try] = ACTIONS(5398), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_true] = ACTIONS(5398), + [anon_sym_false] = ACTIONS(5398), + [anon_sym_null] = ACTIONS(5398), + [anon_sym_unreachable] = ACTIONS(5398), + [anon_sym_undefined] = ACTIONS(5398), + [sym_sink] = ACTIONS(5398), + [sym_integer] = ACTIONS(5398), + [sym_float] = ACTIONS(5396), + [anon_sym_DQUOTE] = ACTIONS(5396), + [sym_multiline_string] = ACTIONS(5396), + [sym_character] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5396), + }, + [STATE(4373)] = { + [ts_builtin_sym_end] = ACTIONS(5734), + [sym_identifier] = ACTIONS(5736), + [anon_sym_import] = ACTIONS(5736), + [anon_sym_test] = ACTIONS(5736), + [anon_sym_hide] = ACTIONS(5736), + [anon_sym_func] = ACTIONS(5736), + [anon_sym_BANG] = ACTIONS(5736), + [anon_sym_struct] = ACTIONS(5736), + [anon_sym_LPAREN] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_DASH] = ACTIONS(5734), + [anon_sym_DOLLAR] = ACTIONS(5734), + [anon_sym_PIPE] = ACTIONS(5734), + [anon_sym_QMARK] = ACTIONS(5734), + [anon_sym_STAR] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5734), + [anon_sym_void] = ACTIONS(5736), + [anon_sym_noreturn] = ACTIONS(5736), + [anon_sym_type] = ACTIONS(5736), + [anon_sym_anyopaque] = ACTIONS(5736), + [anon_sym_bool] = ACTIONS(5736), + [anon_sym_int] = ACTIONS(5736), + [anon_sym_uint] = ACTIONS(5736), + [anon_sym_float] = ACTIONS(5736), + [anon_sym_range] = ACTIONS(5736), + [anon_sym_i8] = ACTIONS(5736), + [anon_sym_i16] = ACTIONS(5736), + [anon_sym_i32] = ACTIONS(5736), + [anon_sym_i64] = ACTIONS(5736), + [anon_sym_u8] = ACTIONS(5736), + [anon_sym_u16] = ACTIONS(5736), + [anon_sym_u32] = ACTIONS(5736), + [anon_sym_u64] = ACTIONS(5736), + [anon_sym_isize] = ACTIONS(5736), + [anon_sym_usize] = ACTIONS(5736), + [anon_sym_f32] = ACTIONS(5736), + [anon_sym_f64] = ACTIONS(5736), + [anon_sym_c_char] = ACTIONS(5736), + [anon_sym_c_schar] = ACTIONS(5736), + [anon_sym_c_uchar] = ACTIONS(5736), + [anon_sym_c_short] = ACTIONS(5736), + [anon_sym_c_ushort] = ACTIONS(5736), + [anon_sym_c_int] = ACTIONS(5736), + [anon_sym_c_uint] = ACTIONS(5736), + [anon_sym_c_long] = ACTIONS(5736), + [anon_sym_c_ulong] = ACTIONS(5736), + [anon_sym_c_longlong] = ACTIONS(5736), + [anon_sym_c_ulonglong] = ACTIONS(5736), + [anon_sym_c_float] = ACTIONS(5736), + [anon_sym_c_double] = ACTIONS(5736), + [anon_sym_c_longdouble] = ACTIONS(5736), + [anon_sym_return] = ACTIONS(5736), + [anon_sym_yield] = ACTIONS(5736), + [anon_sym_COLON] = ACTIONS(5734), + [anon_sym_break] = ACTIONS(5736), + [anon_sym_continue] = ACTIONS(5736), + [anon_sym_defer] = ACTIONS(5736), + [anon_sym_errdefer] = ACTIONS(5736), + [anon_sym_if] = ACTIONS(5736), + [anon_sym_else] = ACTIONS(5736), + [anon_sym_while] = ACTIONS(5736), + [anon_sym_expand] = ACTIONS(5736), + [anon_sym_for] = ACTIONS(5736), + [anon_sym_match] = ACTIONS(5736), + [anon_sym_DOT_DOT] = ACTIONS(5736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5734), + [anon_sym_orelse] = ACTIONS(5736), + [anon_sym_or] = ACTIONS(5736), + [anon_sym_and] = ACTIONS(5736), + [anon_sym_EQ_EQ] = ACTIONS(5734), + [anon_sym_BANG_EQ] = ACTIONS(5734), + [anon_sym_LT] = ACTIONS(5736), + [anon_sym_LT_EQ] = ACTIONS(5734), + [anon_sym_GT] = ACTIONS(5736), + [anon_sym_GT_EQ] = ACTIONS(5734), + [anon_sym_AMP] = ACTIONS(5734), + [anon_sym_xor] = ACTIONS(5736), + [anon_sym_LT_LT] = ACTIONS(5736), + [anon_sym_GT_GT] = ACTIONS(5734), + [anon_sym_LT_LT_PIPE] = ACTIONS(5734), + [anon_sym_PLUS] = ACTIONS(5734), + [anon_sym_SLASH] = ACTIONS(5734), + [anon_sym_catch] = ACTIONS(5736), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_try] = ACTIONS(5736), + [anon_sym_DOT] = ACTIONS(5736), + [anon_sym_CARET] = ACTIONS(5734), + [anon_sym_true] = ACTIONS(5736), + [anon_sym_false] = ACTIONS(5736), + [anon_sym_null] = ACTIONS(5736), + [anon_sym_unreachable] = ACTIONS(5736), + [anon_sym_undefined] = ACTIONS(5736), + [sym_sink] = ACTIONS(5736), + [sym_integer] = ACTIONS(5736), + [sym_float] = ACTIONS(5734), + [anon_sym_DQUOTE] = ACTIONS(5734), + [sym_multiline_string] = ACTIONS(5734), + [sym_character] = ACTIONS(5734), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5734), + }, + [STATE(4374)] = { + [ts_builtin_sym_end] = ACTIONS(5798), + [sym_identifier] = ACTIONS(5800), + [anon_sym_import] = ACTIONS(5800), + [anon_sym_test] = ACTIONS(5800), + [anon_sym_hide] = ACTIONS(5800), + [anon_sym_func] = ACTIONS(5800), + [anon_sym_BANG] = ACTIONS(5800), + [anon_sym_struct] = ACTIONS(5800), + [anon_sym_LPAREN] = ACTIONS(5798), + [anon_sym_LBRACE] = ACTIONS(5798), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5798), + [anon_sym_DOLLAR] = ACTIONS(5798), + [anon_sym_PIPE] = ACTIONS(5798), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_STAR] = ACTIONS(5798), + [anon_sym_LBRACK] = ACTIONS(5798), + [anon_sym_void] = ACTIONS(5800), + [anon_sym_noreturn] = ACTIONS(5800), + [anon_sym_type] = ACTIONS(5800), + [anon_sym_anyopaque] = ACTIONS(5800), + [anon_sym_bool] = ACTIONS(5800), + [anon_sym_int] = ACTIONS(5800), + [anon_sym_uint] = ACTIONS(5800), + [anon_sym_float] = ACTIONS(5800), + [anon_sym_range] = ACTIONS(5800), + [anon_sym_i8] = ACTIONS(5800), + [anon_sym_i16] = ACTIONS(5800), + [anon_sym_i32] = ACTIONS(5800), + [anon_sym_i64] = ACTIONS(5800), + [anon_sym_u8] = ACTIONS(5800), + [anon_sym_u16] = ACTIONS(5800), + [anon_sym_u32] = ACTIONS(5800), + [anon_sym_u64] = ACTIONS(5800), + [anon_sym_isize] = ACTIONS(5800), + [anon_sym_usize] = ACTIONS(5800), + [anon_sym_f32] = ACTIONS(5800), + [anon_sym_f64] = ACTIONS(5800), + [anon_sym_c_char] = ACTIONS(5800), + [anon_sym_c_schar] = ACTIONS(5800), + [anon_sym_c_uchar] = ACTIONS(5800), + [anon_sym_c_short] = ACTIONS(5800), + [anon_sym_c_ushort] = ACTIONS(5800), + [anon_sym_c_int] = ACTIONS(5800), + [anon_sym_c_uint] = ACTIONS(5800), + [anon_sym_c_long] = ACTIONS(5800), + [anon_sym_c_ulong] = ACTIONS(5800), + [anon_sym_c_longlong] = ACTIONS(5800), + [anon_sym_c_ulonglong] = ACTIONS(5800), + [anon_sym_c_float] = ACTIONS(5800), + [anon_sym_c_double] = ACTIONS(5800), + [anon_sym_c_longdouble] = ACTIONS(5800), + [anon_sym_return] = ACTIONS(5800), + [anon_sym_yield] = ACTIONS(5800), + [anon_sym_COLON] = ACTIONS(5798), + [anon_sym_break] = ACTIONS(5800), + [anon_sym_continue] = ACTIONS(5800), + [anon_sym_defer] = ACTIONS(5800), + [anon_sym_errdefer] = ACTIONS(5800), + [anon_sym_if] = ACTIONS(5800), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_while] = ACTIONS(5800), + [anon_sym_expand] = ACTIONS(5800), + [anon_sym_for] = ACTIONS(5800), + [anon_sym_match] = ACTIONS(5800), + [anon_sym_DOT_DOT] = ACTIONS(5800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5798), + [anon_sym_orelse] = ACTIONS(5800), + [anon_sym_or] = ACTIONS(5800), + [anon_sym_and] = ACTIONS(5800), + [anon_sym_EQ_EQ] = ACTIONS(5798), + [anon_sym_BANG_EQ] = ACTIONS(5798), + [anon_sym_LT] = ACTIONS(5800), + [anon_sym_LT_EQ] = ACTIONS(5798), + [anon_sym_GT] = ACTIONS(5800), + [anon_sym_GT_EQ] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5798), + [anon_sym_xor] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5798), + [anon_sym_LT_LT_PIPE] = ACTIONS(5798), + [anon_sym_PLUS] = ACTIONS(5798), + [anon_sym_SLASH] = ACTIONS(5798), + [anon_sym_catch] = ACTIONS(5800), + [anon_sym_TILDE] = ACTIONS(5798), + [anon_sym_try] = ACTIONS(5800), + [anon_sym_DOT] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5798), + [anon_sym_true] = ACTIONS(5800), + [anon_sym_false] = ACTIONS(5800), + [anon_sym_null] = ACTIONS(5800), + [anon_sym_unreachable] = ACTIONS(5800), + [anon_sym_undefined] = ACTIONS(5800), + [sym_sink] = ACTIONS(5800), + [sym_integer] = ACTIONS(5800), + [sym_float] = ACTIONS(5798), + [anon_sym_DQUOTE] = ACTIONS(5798), + [sym_multiline_string] = ACTIONS(5798), + [sym_character] = ACTIONS(5798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5798), + }, + [STATE(4375)] = { + [ts_builtin_sym_end] = ACTIONS(6084), + [sym_identifier] = ACTIONS(6086), + [anon_sym_import] = ACTIONS(6086), + [anon_sym_test] = ACTIONS(6086), + [anon_sym_hide] = ACTIONS(6086), + [anon_sym_func] = ACTIONS(6086), + [anon_sym_BANG] = ACTIONS(6086), + [anon_sym_struct] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6084), + [anon_sym_LBRACE] = ACTIONS(6084), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_DASH] = ACTIONS(6084), + [anon_sym_DOLLAR] = ACTIONS(6084), + [anon_sym_PIPE] = ACTIONS(6084), + [anon_sym_QMARK] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(6084), + [anon_sym_LBRACK] = ACTIONS(6084), + [anon_sym_void] = ACTIONS(6086), + [anon_sym_noreturn] = ACTIONS(6086), + [anon_sym_type] = ACTIONS(6086), + [anon_sym_anyopaque] = ACTIONS(6086), + [anon_sym_bool] = ACTIONS(6086), + [anon_sym_int] = ACTIONS(6086), + [anon_sym_uint] = ACTIONS(6086), + [anon_sym_float] = ACTIONS(6086), + [anon_sym_range] = ACTIONS(6086), + [anon_sym_i8] = ACTIONS(6086), + [anon_sym_i16] = ACTIONS(6086), + [anon_sym_i32] = ACTIONS(6086), + [anon_sym_i64] = ACTIONS(6086), + [anon_sym_u8] = ACTIONS(6086), + [anon_sym_u16] = ACTIONS(6086), + [anon_sym_u32] = ACTIONS(6086), + [anon_sym_u64] = ACTIONS(6086), + [anon_sym_isize] = ACTIONS(6086), + [anon_sym_usize] = ACTIONS(6086), + [anon_sym_f32] = ACTIONS(6086), + [anon_sym_f64] = ACTIONS(6086), + [anon_sym_c_char] = ACTIONS(6086), + [anon_sym_c_schar] = ACTIONS(6086), + [anon_sym_c_uchar] = ACTIONS(6086), + [anon_sym_c_short] = ACTIONS(6086), + [anon_sym_c_ushort] = ACTIONS(6086), + [anon_sym_c_int] = ACTIONS(6086), + [anon_sym_c_uint] = ACTIONS(6086), + [anon_sym_c_long] = ACTIONS(6086), + [anon_sym_c_ulong] = ACTIONS(6086), + [anon_sym_c_longlong] = ACTIONS(6086), + [anon_sym_c_ulonglong] = ACTIONS(6086), + [anon_sym_c_float] = ACTIONS(6086), + [anon_sym_c_double] = ACTIONS(6086), + [anon_sym_c_longdouble] = ACTIONS(6086), + [anon_sym_return] = ACTIONS(6086), + [anon_sym_yield] = ACTIONS(6086), + [anon_sym_COLON] = ACTIONS(6084), + [anon_sym_break] = ACTIONS(6086), + [anon_sym_continue] = ACTIONS(6086), + [anon_sym_defer] = ACTIONS(6086), + [anon_sym_errdefer] = ACTIONS(6086), + [anon_sym_if] = ACTIONS(6086), + [anon_sym_else] = ACTIONS(6086), + [anon_sym_while] = ACTIONS(6086), + [anon_sym_expand] = ACTIONS(6086), + [anon_sym_for] = ACTIONS(6086), + [anon_sym_match] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6084), + [anon_sym_orelse] = ACTIONS(6086), + [anon_sym_or] = ACTIONS(6086), + [anon_sym_and] = ACTIONS(6086), + [anon_sym_EQ_EQ] = ACTIONS(6084), + [anon_sym_BANG_EQ] = ACTIONS(6084), + [anon_sym_LT] = ACTIONS(6086), + [anon_sym_LT_EQ] = ACTIONS(6084), + [anon_sym_GT] = ACTIONS(6086), + [anon_sym_GT_EQ] = ACTIONS(6084), + [anon_sym_AMP] = ACTIONS(6084), + [anon_sym_xor] = ACTIONS(6086), + [anon_sym_LT_LT] = ACTIONS(6086), + [anon_sym_GT_GT] = ACTIONS(6084), + [anon_sym_LT_LT_PIPE] = ACTIONS(6084), + [anon_sym_PLUS] = ACTIONS(6084), + [anon_sym_SLASH] = ACTIONS(6084), + [anon_sym_catch] = ACTIONS(6086), + [anon_sym_TILDE] = ACTIONS(6084), + [anon_sym_try] = ACTIONS(6086), + [anon_sym_DOT] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6084), + [anon_sym_true] = ACTIONS(6086), + [anon_sym_false] = ACTIONS(6086), + [anon_sym_null] = ACTIONS(6086), + [anon_sym_unreachable] = ACTIONS(6086), + [anon_sym_undefined] = ACTIONS(6086), + [sym_sink] = ACTIONS(6086), + [sym_integer] = ACTIONS(6086), + [sym_float] = ACTIONS(6084), + [anon_sym_DQUOTE] = ACTIONS(6084), + [sym_multiline_string] = ACTIONS(6084), + [sym_character] = ACTIONS(6084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6084), + }, + [STATE(4376)] = { + [ts_builtin_sym_end] = ACTIONS(4630), + [sym_identifier] = ACTIONS(4632), + [anon_sym_import] = ACTIONS(4632), + [anon_sym_test] = ACTIONS(4632), + [anon_sym_hide] = ACTIONS(4632), + [anon_sym_func] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_RBRACE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_DOLLAR] = ACTIONS(4630), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_LBRACK] = ACTIONS(4630), + [anon_sym_void] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym_type] = ACTIONS(4632), + [anon_sym_anyopaque] = ACTIONS(4632), + [anon_sym_bool] = ACTIONS(4632), + [anon_sym_int] = ACTIONS(4632), + [anon_sym_uint] = ACTIONS(4632), + [anon_sym_float] = ACTIONS(4632), + [anon_sym_range] = ACTIONS(4632), + [anon_sym_i8] = ACTIONS(4632), + [anon_sym_i16] = ACTIONS(4632), + [anon_sym_i32] = ACTIONS(4632), + [anon_sym_i64] = ACTIONS(4632), + [anon_sym_u8] = ACTIONS(4632), + [anon_sym_u16] = ACTIONS(4632), + [anon_sym_u32] = ACTIONS(4632), + [anon_sym_u64] = ACTIONS(4632), + [anon_sym_isize] = ACTIONS(4632), + [anon_sym_usize] = ACTIONS(4632), + [anon_sym_f32] = ACTIONS(4632), + [anon_sym_f64] = ACTIONS(4632), + [anon_sym_c_char] = ACTIONS(4632), + [anon_sym_c_schar] = ACTIONS(4632), + [anon_sym_c_uchar] = ACTIONS(4632), + [anon_sym_c_short] = ACTIONS(4632), + [anon_sym_c_ushort] = ACTIONS(4632), + [anon_sym_c_int] = ACTIONS(4632), + [anon_sym_c_uint] = ACTIONS(4632), + [anon_sym_c_long] = ACTIONS(4632), + [anon_sym_c_ulong] = ACTIONS(4632), + [anon_sym_c_longlong] = ACTIONS(4632), + [anon_sym_c_ulonglong] = ACTIONS(4632), + [anon_sym_c_float] = ACTIONS(4632), + [anon_sym_c_double] = ACTIONS(4632), + [anon_sym_c_longdouble] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_yield] = ACTIONS(4632), + [anon_sym_COLON] = ACTIONS(4630), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_defer] = ACTIONS(4632), + [anon_sym_errdefer] = ACTIONS(4632), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_expand] = ACTIONS(4632), + [anon_sym_for] = ACTIONS(4632), + [anon_sym_match] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4630), + [anon_sym_orelse] = ACTIONS(4632), + [anon_sym_or] = ACTIONS(4632), + [anon_sym_and] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [anon_sym_xor] = ACTIONS(4632), + [anon_sym_LT_LT] = ACTIONS(4632), + [anon_sym_GT_GT] = ACTIONS(4630), + [anon_sym_LT_LT_PIPE] = ACTIONS(4630), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_catch] = ACTIONS(4632), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4632), + [anon_sym_unreachable] = ACTIONS(4632), + [anon_sym_undefined] = ACTIONS(4632), + [sym_sink] = ACTIONS(4632), + [sym_integer] = ACTIONS(4632), + [sym_float] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_multiline_string] = ACTIONS(4630), + [sym_character] = ACTIONS(4630), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4630), + }, + [STATE(4377)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3284), + [sym_labeled_block] = STATE(3284), + [sym_if_statement] = STATE(3284), + [sym_while_statement] = STATE(3284), + [sym_for_statement] = STATE(3284), + [sym_match_statement] = STATE(3284), + [sym__value] = STATE(3284), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4378)] = { + [ts_builtin_sym_end] = ACTIONS(5152), + [sym_identifier] = ACTIONS(5154), + [anon_sym_import] = ACTIONS(5154), + [anon_sym_test] = ACTIONS(5154), + [anon_sym_hide] = ACTIONS(5154), + [anon_sym_func] = ACTIONS(5154), + [anon_sym_BANG] = ACTIONS(5154), + [anon_sym_struct] = ACTIONS(5154), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5152), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_QMARK] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_void] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym_type] = ACTIONS(5154), + [anon_sym_anyopaque] = ACTIONS(5154), + [anon_sym_bool] = ACTIONS(5154), + [anon_sym_int] = ACTIONS(5154), + [anon_sym_uint] = ACTIONS(5154), + [anon_sym_float] = ACTIONS(5154), + [anon_sym_range] = ACTIONS(5154), + [anon_sym_i8] = ACTIONS(5154), + [anon_sym_i16] = ACTIONS(5154), + [anon_sym_i32] = ACTIONS(5154), + [anon_sym_i64] = ACTIONS(5154), + [anon_sym_u8] = ACTIONS(5154), + [anon_sym_u16] = ACTIONS(5154), + [anon_sym_u32] = ACTIONS(5154), + [anon_sym_u64] = ACTIONS(5154), + [anon_sym_isize] = ACTIONS(5154), + [anon_sym_usize] = ACTIONS(5154), + [anon_sym_f32] = ACTIONS(5154), + [anon_sym_f64] = ACTIONS(5154), + [anon_sym_c_char] = ACTIONS(5154), + [anon_sym_c_schar] = ACTIONS(5154), + [anon_sym_c_uchar] = ACTIONS(5154), + [anon_sym_c_short] = ACTIONS(5154), + [anon_sym_c_ushort] = ACTIONS(5154), + [anon_sym_c_int] = ACTIONS(5154), + [anon_sym_c_uint] = ACTIONS(5154), + [anon_sym_c_long] = ACTIONS(5154), + [anon_sym_c_ulong] = ACTIONS(5154), + [anon_sym_c_longlong] = ACTIONS(5154), + [anon_sym_c_ulonglong] = ACTIONS(5154), + [anon_sym_c_float] = ACTIONS(5154), + [anon_sym_c_double] = ACTIONS(5154), + [anon_sym_c_longdouble] = ACTIONS(5154), + [anon_sym_return] = ACTIONS(5154), + [anon_sym_yield] = ACTIONS(5154), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_break] = ACTIONS(5154), + [anon_sym_continue] = ACTIONS(5154), + [anon_sym_defer] = ACTIONS(5154), + [anon_sym_errdefer] = ACTIONS(5154), + [anon_sym_if] = ACTIONS(5154), + [anon_sym_else] = ACTIONS(5154), + [anon_sym_while] = ACTIONS(5154), + [anon_sym_expand] = ACTIONS(5154), + [anon_sym_for] = ACTIONS(5154), + [anon_sym_match] = ACTIONS(5154), + [anon_sym_DOT_DOT] = ACTIONS(5154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5152), + [anon_sym_orelse] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5154), + [anon_sym_and] = ACTIONS(5154), + [anon_sym_EQ_EQ] = ACTIONS(5152), + [anon_sym_BANG_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5154), + [anon_sym_GT_EQ] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_xor] = ACTIONS(5154), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5152), + [anon_sym_LT_LT_PIPE] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_catch] = ACTIONS(5154), + [anon_sym_TILDE] = ACTIONS(5152), + [anon_sym_try] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5154), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym_true] = ACTIONS(5154), + [anon_sym_false] = ACTIONS(5154), + [anon_sym_null] = ACTIONS(5154), + [anon_sym_unreachable] = ACTIONS(5154), + [anon_sym_undefined] = ACTIONS(5154), + [sym_sink] = ACTIONS(5154), + [sym_integer] = ACTIONS(5154), + [sym_float] = ACTIONS(5152), + [anon_sym_DQUOTE] = ACTIONS(5152), + [sym_multiline_string] = ACTIONS(5152), + [sym_character] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5152), + }, + [STATE(4379)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10779), + [sym_labeled_block] = STATE(10779), + [sym_if_statement] = STATE(10779), + [sym_while_statement] = STATE(10779), + [sym_for_statement] = STATE(10779), + [sym_match_statement] = STATE(10779), + [sym__value] = STATE(10779), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4380)] = { + [ts_builtin_sym_end] = ACTIONS(5156), + [sym_identifier] = ACTIONS(5158), + [anon_sym_import] = ACTIONS(5158), + [anon_sym_test] = ACTIONS(5158), + [anon_sym_hide] = ACTIONS(5158), + [anon_sym_func] = ACTIONS(5158), + [anon_sym_BANG] = ACTIONS(5158), + [anon_sym_struct] = ACTIONS(5158), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_void] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym_type] = ACTIONS(5158), + [anon_sym_anyopaque] = ACTIONS(5158), + [anon_sym_bool] = ACTIONS(5158), + [anon_sym_int] = ACTIONS(5158), + [anon_sym_uint] = ACTIONS(5158), + [anon_sym_float] = ACTIONS(5158), + [anon_sym_range] = ACTIONS(5158), + [anon_sym_i8] = ACTIONS(5158), + [anon_sym_i16] = ACTIONS(5158), + [anon_sym_i32] = ACTIONS(5158), + [anon_sym_i64] = ACTIONS(5158), + [anon_sym_u8] = ACTIONS(5158), + [anon_sym_u16] = ACTIONS(5158), + [anon_sym_u32] = ACTIONS(5158), + [anon_sym_u64] = ACTIONS(5158), + [anon_sym_isize] = ACTIONS(5158), + [anon_sym_usize] = ACTIONS(5158), + [anon_sym_f32] = ACTIONS(5158), + [anon_sym_f64] = ACTIONS(5158), + [anon_sym_c_char] = ACTIONS(5158), + [anon_sym_c_schar] = ACTIONS(5158), + [anon_sym_c_uchar] = ACTIONS(5158), + [anon_sym_c_short] = ACTIONS(5158), + [anon_sym_c_ushort] = ACTIONS(5158), + [anon_sym_c_int] = ACTIONS(5158), + [anon_sym_c_uint] = ACTIONS(5158), + [anon_sym_c_long] = ACTIONS(5158), + [anon_sym_c_ulong] = ACTIONS(5158), + [anon_sym_c_longlong] = ACTIONS(5158), + [anon_sym_c_ulonglong] = ACTIONS(5158), + [anon_sym_c_float] = ACTIONS(5158), + [anon_sym_c_double] = ACTIONS(5158), + [anon_sym_c_longdouble] = ACTIONS(5158), + [anon_sym_return] = ACTIONS(5158), + [anon_sym_yield] = ACTIONS(5158), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_break] = ACTIONS(5158), + [anon_sym_continue] = ACTIONS(5158), + [anon_sym_defer] = ACTIONS(5158), + [anon_sym_errdefer] = ACTIONS(5158), + [anon_sym_if] = ACTIONS(5158), + [anon_sym_else] = ACTIONS(5158), + [anon_sym_while] = ACTIONS(5158), + [anon_sym_expand] = ACTIONS(5158), + [anon_sym_for] = ACTIONS(5158), + [anon_sym_match] = ACTIONS(5158), + [anon_sym_DOT_DOT] = ACTIONS(5158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5156), + [anon_sym_orelse] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_and] = ACTIONS(5158), + [anon_sym_EQ_EQ] = ACTIONS(5156), + [anon_sym_BANG_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5158), + [anon_sym_GT_EQ] = ACTIONS(5156), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_xor] = ACTIONS(5158), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5156), + [anon_sym_LT_LT_PIPE] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_catch] = ACTIONS(5158), + [anon_sym_TILDE] = ACTIONS(5156), + [anon_sym_try] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5158), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym_true] = ACTIONS(5158), + [anon_sym_false] = ACTIONS(5158), + [anon_sym_null] = ACTIONS(5158), + [anon_sym_unreachable] = ACTIONS(5158), + [anon_sym_undefined] = ACTIONS(5158), + [sym_sink] = ACTIONS(5158), + [sym_integer] = ACTIONS(5158), + [sym_float] = ACTIONS(5156), + [anon_sym_DQUOTE] = ACTIONS(5156), + [sym_multiline_string] = ACTIONS(5156), + [sym_character] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5156), + }, + [STATE(4381)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9522), + [sym_labeled_block] = STATE(9522), + [sym_if_statement] = STATE(9522), + [sym_while_statement] = STATE(9522), + [sym_for_statement] = STATE(9522), + [sym_match_statement] = STATE(9522), + [sym__value] = STATE(9522), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4382)] = { + [ts_builtin_sym_end] = ACTIONS(5160), + [sym_identifier] = ACTIONS(5162), + [anon_sym_import] = ACTIONS(5162), + [anon_sym_test] = ACTIONS(5162), + [anon_sym_hide] = ACTIONS(5162), + [anon_sym_func] = ACTIONS(5162), + [anon_sym_BANG] = ACTIONS(5162), + [anon_sym_struct] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5160), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_QMARK] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_void] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym_type] = ACTIONS(5162), + [anon_sym_anyopaque] = ACTIONS(5162), + [anon_sym_bool] = ACTIONS(5162), + [anon_sym_int] = ACTIONS(5162), + [anon_sym_uint] = ACTIONS(5162), + [anon_sym_float] = ACTIONS(5162), + [anon_sym_range] = ACTIONS(5162), + [anon_sym_i8] = ACTIONS(5162), + [anon_sym_i16] = ACTIONS(5162), + [anon_sym_i32] = ACTIONS(5162), + [anon_sym_i64] = ACTIONS(5162), + [anon_sym_u8] = ACTIONS(5162), + [anon_sym_u16] = ACTIONS(5162), + [anon_sym_u32] = ACTIONS(5162), + [anon_sym_u64] = ACTIONS(5162), + [anon_sym_isize] = ACTIONS(5162), + [anon_sym_usize] = ACTIONS(5162), + [anon_sym_f32] = ACTIONS(5162), + [anon_sym_f64] = ACTIONS(5162), + [anon_sym_c_char] = ACTIONS(5162), + [anon_sym_c_schar] = ACTIONS(5162), + [anon_sym_c_uchar] = ACTIONS(5162), + [anon_sym_c_short] = ACTIONS(5162), + [anon_sym_c_ushort] = ACTIONS(5162), + [anon_sym_c_int] = ACTIONS(5162), + [anon_sym_c_uint] = ACTIONS(5162), + [anon_sym_c_long] = ACTIONS(5162), + [anon_sym_c_ulong] = ACTIONS(5162), + [anon_sym_c_longlong] = ACTIONS(5162), + [anon_sym_c_ulonglong] = ACTIONS(5162), + [anon_sym_c_float] = ACTIONS(5162), + [anon_sym_c_double] = ACTIONS(5162), + [anon_sym_c_longdouble] = ACTIONS(5162), + [anon_sym_return] = ACTIONS(5162), + [anon_sym_yield] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_break] = ACTIONS(5162), + [anon_sym_continue] = ACTIONS(5162), + [anon_sym_defer] = ACTIONS(5162), + [anon_sym_errdefer] = ACTIONS(5162), + [anon_sym_if] = ACTIONS(5162), + [anon_sym_else] = ACTIONS(5162), + [anon_sym_while] = ACTIONS(5162), + [anon_sym_expand] = ACTIONS(5162), + [anon_sym_for] = ACTIONS(5162), + [anon_sym_match] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5160), + [anon_sym_orelse] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5160), + [anon_sym_BANG_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_xor] = ACTIONS(5162), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5160), + [anon_sym_LT_LT_PIPE] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_catch] = ACTIONS(5162), + [anon_sym_TILDE] = ACTIONS(5160), + [anon_sym_try] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym_true] = ACTIONS(5162), + [anon_sym_false] = ACTIONS(5162), + [anon_sym_null] = ACTIONS(5162), + [anon_sym_unreachable] = ACTIONS(5162), + [anon_sym_undefined] = ACTIONS(5162), + [sym_sink] = ACTIONS(5162), + [sym_integer] = ACTIONS(5162), + [sym_float] = ACTIONS(5160), + [anon_sym_DQUOTE] = ACTIONS(5160), + [sym_multiline_string] = ACTIONS(5160), + [sym_character] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5160), + }, + [STATE(4383)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9523), + [sym_labeled_block] = STATE(9523), + [sym_if_statement] = STATE(9523), + [sym_while_statement] = STATE(9523), + [sym_for_statement] = STATE(9523), + [sym_match_statement] = STATE(9523), + [sym__value] = STATE(9523), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4329), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7138), + }, + [STATE(4384)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9584), + [sym_labeled_block] = STATE(9584), + [sym_if_statement] = STATE(9584), + [sym_while_statement] = STATE(9584), + [sym_for_statement] = STATE(9584), + [sym_match_statement] = STATE(9584), + [sym__value] = STATE(9584), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4330), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7140), + }, + [STATE(4385)] = { + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_identifier] = ACTIONS(4526), + [anon_sym_import] = ACTIONS(4526), + [anon_sym_test] = ACTIONS(4526), + [anon_sym_hide] = ACTIONS(4526), + [anon_sym_func] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4524), + [anon_sym_PIPE] = ACTIONS(4524), + [anon_sym_QMARK] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_void] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym_type] = ACTIONS(4526), + [anon_sym_anyopaque] = ACTIONS(4526), + [anon_sym_bool] = ACTIONS(4526), + [anon_sym_int] = ACTIONS(4526), + [anon_sym_uint] = ACTIONS(4526), + [anon_sym_float] = ACTIONS(4526), + [anon_sym_range] = ACTIONS(4526), + [anon_sym_i8] = ACTIONS(4526), + [anon_sym_i16] = ACTIONS(4526), + [anon_sym_i32] = ACTIONS(4526), + [anon_sym_i64] = ACTIONS(4526), + [anon_sym_u8] = ACTIONS(4526), + [anon_sym_u16] = ACTIONS(4526), + [anon_sym_u32] = ACTIONS(4526), + [anon_sym_u64] = ACTIONS(4526), + [anon_sym_isize] = ACTIONS(4526), + [anon_sym_usize] = ACTIONS(4526), + [anon_sym_f32] = ACTIONS(4526), + [anon_sym_f64] = ACTIONS(4526), + [anon_sym_c_char] = ACTIONS(4526), + [anon_sym_c_schar] = ACTIONS(4526), + [anon_sym_c_uchar] = ACTIONS(4526), + [anon_sym_c_short] = ACTIONS(4526), + [anon_sym_c_ushort] = ACTIONS(4526), + [anon_sym_c_int] = ACTIONS(4526), + [anon_sym_c_uint] = ACTIONS(4526), + [anon_sym_c_long] = ACTIONS(4526), + [anon_sym_c_ulong] = ACTIONS(4526), + [anon_sym_c_longlong] = ACTIONS(4526), + [anon_sym_c_ulonglong] = ACTIONS(4526), + [anon_sym_c_float] = ACTIONS(4526), + [anon_sym_c_double] = ACTIONS(4526), + [anon_sym_c_longdouble] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_yield] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4524), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_defer] = ACTIONS(4526), + [anon_sym_errdefer] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_else] = ACTIONS(4526), + [anon_sym_while] = ACTIONS(4526), + [anon_sym_expand] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_match] = ACTIONS(4526), + [anon_sym_DOT_DOT] = ACTIONS(4526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4524), + [anon_sym_orelse] = ACTIONS(4526), + [anon_sym_or] = ACTIONS(4526), + [anon_sym_and] = ACTIONS(4526), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4524), + [anon_sym_xor] = ACTIONS(4526), + [anon_sym_LT_LT] = ACTIONS(4526), + [anon_sym_GT_GT] = ACTIONS(4524), + [anon_sym_LT_LT_PIPE] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4524), + [anon_sym_SLASH] = ACTIONS(4524), + [anon_sym_catch] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4524), + [anon_sym_try] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4524), + [anon_sym_true] = ACTIONS(4526), + [anon_sym_false] = ACTIONS(4526), + [anon_sym_null] = ACTIONS(4526), + [anon_sym_unreachable] = ACTIONS(4526), + [anon_sym_undefined] = ACTIONS(4526), + [sym_sink] = ACTIONS(4526), + [sym_integer] = ACTIONS(4526), + [sym_float] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4524), + [sym_multiline_string] = ACTIONS(4524), + [sym_character] = ACTIONS(4524), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4524), + }, + [STATE(4386)] = { + [ts_builtin_sym_end] = ACTIONS(5778), + [sym_identifier] = ACTIONS(5782), + [anon_sym_import] = ACTIONS(5782), + [anon_sym_test] = ACTIONS(5782), + [anon_sym_hide] = ACTIONS(5782), + [anon_sym_func] = ACTIONS(5782), + [anon_sym_BANG] = ACTIONS(5782), + [anon_sym_struct] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5778), + [anon_sym_DOLLAR] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5778), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_STAR] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_void] = ACTIONS(5782), + [anon_sym_noreturn] = ACTIONS(5782), + [anon_sym_type] = ACTIONS(5782), + [anon_sym_anyopaque] = ACTIONS(5782), + [anon_sym_bool] = ACTIONS(5782), + [anon_sym_int] = ACTIONS(5782), + [anon_sym_uint] = ACTIONS(5782), + [anon_sym_float] = ACTIONS(5782), + [anon_sym_range] = ACTIONS(5782), + [anon_sym_i8] = ACTIONS(5782), + [anon_sym_i16] = ACTIONS(5782), + [anon_sym_i32] = ACTIONS(5782), + [anon_sym_i64] = ACTIONS(5782), + [anon_sym_u8] = ACTIONS(5782), + [anon_sym_u16] = ACTIONS(5782), + [anon_sym_u32] = ACTIONS(5782), + [anon_sym_u64] = ACTIONS(5782), + [anon_sym_isize] = ACTIONS(5782), + [anon_sym_usize] = ACTIONS(5782), + [anon_sym_f32] = ACTIONS(5782), + [anon_sym_f64] = ACTIONS(5782), + [anon_sym_c_char] = ACTIONS(5782), + [anon_sym_c_schar] = ACTIONS(5782), + [anon_sym_c_uchar] = ACTIONS(5782), + [anon_sym_c_short] = ACTIONS(5782), + [anon_sym_c_ushort] = ACTIONS(5782), + [anon_sym_c_int] = ACTIONS(5782), + [anon_sym_c_uint] = ACTIONS(5782), + [anon_sym_c_long] = ACTIONS(5782), + [anon_sym_c_ulong] = ACTIONS(5782), + [anon_sym_c_longlong] = ACTIONS(5782), + [anon_sym_c_ulonglong] = ACTIONS(5782), + [anon_sym_c_float] = ACTIONS(5782), + [anon_sym_c_double] = ACTIONS(5782), + [anon_sym_c_longdouble] = ACTIONS(5782), + [anon_sym_return] = ACTIONS(5782), + [anon_sym_yield] = ACTIONS(5782), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_break] = ACTIONS(5782), + [anon_sym_continue] = ACTIONS(5782), + [anon_sym_defer] = ACTIONS(5782), + [anon_sym_errdefer] = ACTIONS(5782), + [anon_sym_if] = ACTIONS(5782), + [anon_sym_else] = ACTIONS(5782), + [anon_sym_while] = ACTIONS(5782), + [anon_sym_expand] = ACTIONS(5782), + [anon_sym_for] = ACTIONS(5782), + [anon_sym_match] = ACTIONS(5782), + [anon_sym_DOT_DOT] = ACTIONS(5782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5778), + [anon_sym_orelse] = ACTIONS(5782), + [anon_sym_or] = ACTIONS(5782), + [anon_sym_and] = ACTIONS(5782), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_LT] = ACTIONS(5782), + [anon_sym_LT_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5782), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5778), + [anon_sym_xor] = ACTIONS(5782), + [anon_sym_LT_LT] = ACTIONS(5782), + [anon_sym_GT_GT] = ACTIONS(5778), + [anon_sym_LT_LT_PIPE] = ACTIONS(5778), + [anon_sym_PLUS] = ACTIONS(5778), + [anon_sym_SLASH] = ACTIONS(5778), + [anon_sym_catch] = ACTIONS(5782), + [anon_sym_TILDE] = ACTIONS(5778), + [anon_sym_try] = ACTIONS(5782), + [anon_sym_DOT] = ACTIONS(5782), + [anon_sym_CARET] = ACTIONS(5778), + [anon_sym_true] = ACTIONS(5782), + [anon_sym_false] = ACTIONS(5782), + [anon_sym_null] = ACTIONS(5782), + [anon_sym_unreachable] = ACTIONS(5782), + [anon_sym_undefined] = ACTIONS(5782), + [sym_sink] = ACTIONS(5782), + [sym_integer] = ACTIONS(5782), + [sym_float] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(5778), + [sym_multiline_string] = ACTIONS(5778), + [sym_character] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5778), + }, + [STATE(4387)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10781), + [sym_labeled_block] = STATE(10781), + [sym_if_statement] = STATE(10781), + [sym_while_statement] = STATE(10781), + [sym_for_statement] = STATE(10781), + [sym_match_statement] = STATE(10781), + [sym__value] = STATE(10781), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4130), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7142), + }, + [STATE(4388)] = { + [ts_builtin_sym_end] = ACTIONS(4634), + [sym_identifier] = ACTIONS(4636), + [anon_sym_import] = ACTIONS(4636), + [anon_sym_test] = ACTIONS(4636), + [anon_sym_hide] = ACTIONS(4636), + [anon_sym_func] = ACTIONS(4636), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_QMARK] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_void] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym_type] = ACTIONS(4636), + [anon_sym_anyopaque] = ACTIONS(4636), + [anon_sym_bool] = ACTIONS(4636), + [anon_sym_int] = ACTIONS(4636), + [anon_sym_uint] = ACTIONS(4636), + [anon_sym_float] = ACTIONS(4636), + [anon_sym_range] = ACTIONS(4636), + [anon_sym_i8] = ACTIONS(4636), + [anon_sym_i16] = ACTIONS(4636), + [anon_sym_i32] = ACTIONS(4636), + [anon_sym_i64] = ACTIONS(4636), + [anon_sym_u8] = ACTIONS(4636), + [anon_sym_u16] = ACTIONS(4636), + [anon_sym_u32] = ACTIONS(4636), + [anon_sym_u64] = ACTIONS(4636), + [anon_sym_isize] = ACTIONS(4636), + [anon_sym_usize] = ACTIONS(4636), + [anon_sym_f32] = ACTIONS(4636), + [anon_sym_f64] = ACTIONS(4636), + [anon_sym_c_char] = ACTIONS(4636), + [anon_sym_c_schar] = ACTIONS(4636), + [anon_sym_c_uchar] = ACTIONS(4636), + [anon_sym_c_short] = ACTIONS(4636), + [anon_sym_c_ushort] = ACTIONS(4636), + [anon_sym_c_int] = ACTIONS(4636), + [anon_sym_c_uint] = ACTIONS(4636), + [anon_sym_c_long] = ACTIONS(4636), + [anon_sym_c_ulong] = ACTIONS(4636), + [anon_sym_c_longlong] = ACTIONS(4636), + [anon_sym_c_ulonglong] = ACTIONS(4636), + [anon_sym_c_float] = ACTIONS(4636), + [anon_sym_c_double] = ACTIONS(4636), + [anon_sym_c_longdouble] = ACTIONS(4636), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_yield] = ACTIONS(4636), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_defer] = ACTIONS(4636), + [anon_sym_errdefer] = ACTIONS(4636), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_expand] = ACTIONS(4636), + [anon_sym_for] = ACTIONS(4636), + [anon_sym_match] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4634), + [anon_sym_orelse] = ACTIONS(4636), + [anon_sym_or] = ACTIONS(4636), + [anon_sym_and] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_AMP] = ACTIONS(4634), + [anon_sym_xor] = ACTIONS(4636), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(4634), + [anon_sym_LT_LT_PIPE] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4634), + [anon_sym_SLASH] = ACTIONS(4634), + [anon_sym_catch] = ACTIONS(4636), + [anon_sym_TILDE] = ACTIONS(4634), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4636), + [anon_sym_false] = ACTIONS(4636), + [anon_sym_null] = ACTIONS(4636), + [anon_sym_unreachable] = ACTIONS(4636), + [anon_sym_undefined] = ACTIONS(4636), + [sym_sink] = ACTIONS(4636), + [sym_integer] = ACTIONS(4636), + [sym_float] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4634), + [sym_multiline_string] = ACTIONS(4634), + [sym_character] = ACTIONS(4634), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4634), + }, + [STATE(4389)] = { + [ts_builtin_sym_end] = ACTIONS(4638), + [sym_identifier] = ACTIONS(4640), + [anon_sym_import] = ACTIONS(4640), + [anon_sym_test] = ACTIONS(4640), + [anon_sym_hide] = ACTIONS(4640), + [anon_sym_func] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4638), + [anon_sym_DOLLAR] = ACTIONS(4638), + [anon_sym_PIPE] = ACTIONS(4638), + [anon_sym_QMARK] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4638), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_void] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym_type] = ACTIONS(4640), + [anon_sym_anyopaque] = ACTIONS(4640), + [anon_sym_bool] = ACTIONS(4640), + [anon_sym_int] = ACTIONS(4640), + [anon_sym_uint] = ACTIONS(4640), + [anon_sym_float] = ACTIONS(4640), + [anon_sym_range] = ACTIONS(4640), + [anon_sym_i8] = ACTIONS(4640), + [anon_sym_i16] = ACTIONS(4640), + [anon_sym_i32] = ACTIONS(4640), + [anon_sym_i64] = ACTIONS(4640), + [anon_sym_u8] = ACTIONS(4640), + [anon_sym_u16] = ACTIONS(4640), + [anon_sym_u32] = ACTIONS(4640), + [anon_sym_u64] = ACTIONS(4640), + [anon_sym_isize] = ACTIONS(4640), + [anon_sym_usize] = ACTIONS(4640), + [anon_sym_f32] = ACTIONS(4640), + [anon_sym_f64] = ACTIONS(4640), + [anon_sym_c_char] = ACTIONS(4640), + [anon_sym_c_schar] = ACTIONS(4640), + [anon_sym_c_uchar] = ACTIONS(4640), + [anon_sym_c_short] = ACTIONS(4640), + [anon_sym_c_ushort] = ACTIONS(4640), + [anon_sym_c_int] = ACTIONS(4640), + [anon_sym_c_uint] = ACTIONS(4640), + [anon_sym_c_long] = ACTIONS(4640), + [anon_sym_c_ulong] = ACTIONS(4640), + [anon_sym_c_longlong] = ACTIONS(4640), + [anon_sym_c_ulonglong] = ACTIONS(4640), + [anon_sym_c_float] = ACTIONS(4640), + [anon_sym_c_double] = ACTIONS(4640), + [anon_sym_c_longdouble] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_yield] = ACTIONS(4640), + [anon_sym_COLON] = ACTIONS(4638), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_defer] = ACTIONS(4640), + [anon_sym_errdefer] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_expand] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_match] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4638), + [anon_sym_orelse] = ACTIONS(4640), + [anon_sym_or] = ACTIONS(4640), + [anon_sym_and] = ACTIONS(4640), + [anon_sym_EQ_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4638), + [anon_sym_xor] = ACTIONS(4640), + [anon_sym_LT_LT] = ACTIONS(4640), + [anon_sym_GT_GT] = ACTIONS(4638), + [anon_sym_LT_LT_PIPE] = ACTIONS(4638), + [anon_sym_PLUS] = ACTIONS(4638), + [anon_sym_SLASH] = ACTIONS(4638), + [anon_sym_catch] = ACTIONS(4640), + [anon_sym_TILDE] = ACTIONS(4638), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_CARET] = ACTIONS(4638), + [anon_sym_true] = ACTIONS(4640), + [anon_sym_false] = ACTIONS(4640), + [anon_sym_null] = ACTIONS(4640), + [anon_sym_unreachable] = ACTIONS(4640), + [anon_sym_undefined] = ACTIONS(4640), + [sym_sink] = ACTIONS(4640), + [sym_integer] = ACTIONS(4640), + [sym_float] = ACTIONS(4638), + [anon_sym_DQUOTE] = ACTIONS(4638), + [sym_multiline_string] = ACTIONS(4638), + [sym_character] = ACTIONS(4638), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4638), + }, + [STATE(4390)] = { + [ts_builtin_sym_end] = ACTIONS(4488), + [sym_identifier] = ACTIONS(4490), + [anon_sym_import] = ACTIONS(4490), + [anon_sym_test] = ACTIONS(4490), + [anon_sym_hide] = ACTIONS(4490), + [anon_sym_func] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_PIPE] = ACTIONS(4488), + [anon_sym_QMARK] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_void] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym_type] = ACTIONS(4490), + [anon_sym_anyopaque] = ACTIONS(4490), + [anon_sym_bool] = ACTIONS(4490), + [anon_sym_int] = ACTIONS(4490), + [anon_sym_uint] = ACTIONS(4490), + [anon_sym_float] = ACTIONS(4490), + [anon_sym_range] = ACTIONS(4490), + [anon_sym_i8] = ACTIONS(4490), + [anon_sym_i16] = ACTIONS(4490), + [anon_sym_i32] = ACTIONS(4490), + [anon_sym_i64] = ACTIONS(4490), + [anon_sym_u8] = ACTIONS(4490), + [anon_sym_u16] = ACTIONS(4490), + [anon_sym_u32] = ACTIONS(4490), + [anon_sym_u64] = ACTIONS(4490), + [anon_sym_isize] = ACTIONS(4490), + [anon_sym_usize] = ACTIONS(4490), + [anon_sym_f32] = ACTIONS(4490), + [anon_sym_f64] = ACTIONS(4490), + [anon_sym_c_char] = ACTIONS(4490), + [anon_sym_c_schar] = ACTIONS(4490), + [anon_sym_c_uchar] = ACTIONS(4490), + [anon_sym_c_short] = ACTIONS(4490), + [anon_sym_c_ushort] = ACTIONS(4490), + [anon_sym_c_int] = ACTIONS(4490), + [anon_sym_c_uint] = ACTIONS(4490), + [anon_sym_c_long] = ACTIONS(4490), + [anon_sym_c_ulong] = ACTIONS(4490), + [anon_sym_c_longlong] = ACTIONS(4490), + [anon_sym_c_ulonglong] = ACTIONS(4490), + [anon_sym_c_float] = ACTIONS(4490), + [anon_sym_c_double] = ACTIONS(4490), + [anon_sym_c_longdouble] = ACTIONS(4490), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_yield] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(7144), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_defer] = ACTIONS(4490), + [anon_sym_errdefer] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_else] = ACTIONS(4490), + [anon_sym_while] = ACTIONS(4490), + [anon_sym_expand] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_DOT_DOT] = ACTIONS(4490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4488), + [anon_sym_orelse] = ACTIONS(4490), + [anon_sym_or] = ACTIONS(4490), + [anon_sym_and] = ACTIONS(4490), + [anon_sym_EQ_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4488), + [anon_sym_LT] = ACTIONS(4490), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT] = ACTIONS(4490), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_xor] = ACTIONS(4490), + [anon_sym_LT_LT] = ACTIONS(4490), + [anon_sym_GT_GT] = ACTIONS(4488), + [anon_sym_LT_LT_PIPE] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4488), + [anon_sym_SLASH] = ACTIONS(4488), + [anon_sym_catch] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4490), + [anon_sym_false] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4490), + [anon_sym_unreachable] = ACTIONS(4490), + [anon_sym_undefined] = ACTIONS(4490), + [sym_sink] = ACTIONS(4490), + [sym_integer] = ACTIONS(4490), + [sym_float] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4488), + [sym_multiline_string] = ACTIONS(4488), + [sym_character] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4488), + }, + [STATE(4391)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10997), + [sym_labeled_block] = STATE(10997), + [sym_if_statement] = STATE(10997), + [sym_while_statement] = STATE(10997), + [sym_for_statement] = STATE(10997), + [sym_match_statement] = STATE(10997), + [sym__value] = STATE(10997), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4392)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4393)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4394)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4828), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(509), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4829), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7146), + }, + [STATE(4395)] = { + [ts_builtin_sym_end] = ACTIONS(4958), + [sym_identifier] = ACTIONS(4960), + [anon_sym_import] = ACTIONS(4960), + [anon_sym_test] = ACTIONS(4960), + [anon_sym_hide] = ACTIONS(4960), + [anon_sym_func] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_struct] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_QMARK] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_void] = ACTIONS(4960), + [anon_sym_noreturn] = ACTIONS(4960), + [anon_sym_type] = ACTIONS(4960), + [anon_sym_anyopaque] = ACTIONS(4960), + [anon_sym_bool] = ACTIONS(4960), + [anon_sym_int] = ACTIONS(4960), + [anon_sym_uint] = ACTIONS(4960), + [anon_sym_float] = ACTIONS(4960), + [anon_sym_range] = ACTIONS(4960), + [anon_sym_i8] = ACTIONS(4960), + [anon_sym_i16] = ACTIONS(4960), + [anon_sym_i32] = ACTIONS(4960), + [anon_sym_i64] = ACTIONS(4960), + [anon_sym_u8] = ACTIONS(4960), + [anon_sym_u16] = ACTIONS(4960), + [anon_sym_u32] = ACTIONS(4960), + [anon_sym_u64] = ACTIONS(4960), + [anon_sym_isize] = ACTIONS(4960), + [anon_sym_usize] = ACTIONS(4960), + [anon_sym_f32] = ACTIONS(4960), + [anon_sym_f64] = ACTIONS(4960), + [anon_sym_c_char] = ACTIONS(4960), + [anon_sym_c_schar] = ACTIONS(4960), + [anon_sym_c_uchar] = ACTIONS(4960), + [anon_sym_c_short] = ACTIONS(4960), + [anon_sym_c_ushort] = ACTIONS(4960), + [anon_sym_c_int] = ACTIONS(4960), + [anon_sym_c_uint] = ACTIONS(4960), + [anon_sym_c_long] = ACTIONS(4960), + [anon_sym_c_ulong] = ACTIONS(4960), + [anon_sym_c_longlong] = ACTIONS(4960), + [anon_sym_c_ulonglong] = ACTIONS(4960), + [anon_sym_c_float] = ACTIONS(4960), + [anon_sym_c_double] = ACTIONS(4960), + [anon_sym_c_longdouble] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_defer] = ACTIONS(4960), + [anon_sym_errdefer] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_expand] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4958), + [anon_sym_orelse] = ACTIONS(4960), + [anon_sym_or] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_xor] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4960), + [anon_sym_GT_GT] = ACTIONS(4958), + [anon_sym_LT_LT_PIPE] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_catch] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_unreachable] = ACTIONS(4960), + [anon_sym_undefined] = ACTIONS(4960), + [sym_sink] = ACTIONS(4960), + [sym_integer] = ACTIONS(4960), + [sym_float] = ACTIONS(4958), + [anon_sym_DQUOTE] = ACTIONS(4958), + [sym_multiline_string] = ACTIONS(4958), + [sym_character] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4958), + }, + [STATE(4396)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(4906), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(5065), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4907), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7148), + }, + [STATE(4397)] = { + [ts_builtin_sym_end] = ACTIONS(4962), + [sym_identifier] = ACTIONS(4964), + [anon_sym_import] = ACTIONS(4964), + [anon_sym_test] = ACTIONS(4964), + [anon_sym_hide] = ACTIONS(4964), + [anon_sym_func] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_struct] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_QMARK] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_void] = ACTIONS(4964), + [anon_sym_noreturn] = ACTIONS(4964), + [anon_sym_type] = ACTIONS(4964), + [anon_sym_anyopaque] = ACTIONS(4964), + [anon_sym_bool] = ACTIONS(4964), + [anon_sym_int] = ACTIONS(4964), + [anon_sym_uint] = ACTIONS(4964), + [anon_sym_float] = ACTIONS(4964), + [anon_sym_range] = ACTIONS(4964), + [anon_sym_i8] = ACTIONS(4964), + [anon_sym_i16] = ACTIONS(4964), + [anon_sym_i32] = ACTIONS(4964), + [anon_sym_i64] = ACTIONS(4964), + [anon_sym_u8] = ACTIONS(4964), + [anon_sym_u16] = ACTIONS(4964), + [anon_sym_u32] = ACTIONS(4964), + [anon_sym_u64] = ACTIONS(4964), + [anon_sym_isize] = ACTIONS(4964), + [anon_sym_usize] = ACTIONS(4964), + [anon_sym_f32] = ACTIONS(4964), + [anon_sym_f64] = ACTIONS(4964), + [anon_sym_c_char] = ACTIONS(4964), + [anon_sym_c_schar] = ACTIONS(4964), + [anon_sym_c_uchar] = ACTIONS(4964), + [anon_sym_c_short] = ACTIONS(4964), + [anon_sym_c_ushort] = ACTIONS(4964), + [anon_sym_c_int] = ACTIONS(4964), + [anon_sym_c_uint] = ACTIONS(4964), + [anon_sym_c_long] = ACTIONS(4964), + [anon_sym_c_ulong] = ACTIONS(4964), + [anon_sym_c_longlong] = ACTIONS(4964), + [anon_sym_c_ulonglong] = ACTIONS(4964), + [anon_sym_c_float] = ACTIONS(4964), + [anon_sym_c_double] = ACTIONS(4964), + [anon_sym_c_longdouble] = ACTIONS(4964), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_yield] = ACTIONS(4964), + [anon_sym_COLON] = ACTIONS(4962), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_defer] = ACTIONS(4964), + [anon_sym_errdefer] = ACTIONS(4964), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_while] = ACTIONS(4964), + [anon_sym_expand] = ACTIONS(4964), + [anon_sym_for] = ACTIONS(4964), + [anon_sym_match] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), + [anon_sym_orelse] = ACTIONS(4964), + [anon_sym_or] = ACTIONS(4964), + [anon_sym_and] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_xor] = ACTIONS(4964), + [anon_sym_LT_LT] = ACTIONS(4964), + [anon_sym_GT_GT] = ACTIONS(4962), + [anon_sym_LT_LT_PIPE] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_catch] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4964), + [anon_sym_unreachable] = ACTIONS(4964), + [anon_sym_undefined] = ACTIONS(4964), + [sym_sink] = ACTIONS(4964), + [sym_integer] = ACTIONS(4964), + [sym_float] = ACTIONS(4962), + [anon_sym_DQUOTE] = ACTIONS(4962), + [sym_multiline_string] = ACTIONS(4962), + [sym_character] = ACTIONS(4962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4962), + }, + [STATE(4398)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4399), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7150), + }, + [STATE(4399)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4400)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4402), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7152), + }, + [STATE(4401)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4403), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7154), + }, + [STATE(4402)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4403)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4404)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3550), + [sym_labeled_block] = STATE(3550), + [sym_if_statement] = STATE(3550), + [sym_while_statement] = STATE(3550), + [sym_for_statement] = STATE(3550), + [sym_match_statement] = STATE(3550), + [sym__value] = STATE(3550), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(4053), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7156), + }, + [STATE(4405)] = { + [ts_builtin_sym_end] = ACTIONS(4642), + [sym_identifier] = ACTIONS(4644), + [anon_sym_import] = ACTIONS(4644), + [anon_sym_test] = ACTIONS(4644), + [anon_sym_hide] = ACTIONS(4644), + [anon_sym_func] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_void] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym_type] = ACTIONS(4644), + [anon_sym_anyopaque] = ACTIONS(4644), + [anon_sym_bool] = ACTIONS(4644), + [anon_sym_int] = ACTIONS(4644), + [anon_sym_uint] = ACTIONS(4644), + [anon_sym_float] = ACTIONS(4644), + [anon_sym_range] = ACTIONS(4644), + [anon_sym_i8] = ACTIONS(4644), + [anon_sym_i16] = ACTIONS(4644), + [anon_sym_i32] = ACTIONS(4644), + [anon_sym_i64] = ACTIONS(4644), + [anon_sym_u8] = ACTIONS(4644), + [anon_sym_u16] = ACTIONS(4644), + [anon_sym_u32] = ACTIONS(4644), + [anon_sym_u64] = ACTIONS(4644), + [anon_sym_isize] = ACTIONS(4644), + [anon_sym_usize] = ACTIONS(4644), + [anon_sym_f32] = ACTIONS(4644), + [anon_sym_f64] = ACTIONS(4644), + [anon_sym_c_char] = ACTIONS(4644), + [anon_sym_c_schar] = ACTIONS(4644), + [anon_sym_c_uchar] = ACTIONS(4644), + [anon_sym_c_short] = ACTIONS(4644), + [anon_sym_c_ushort] = ACTIONS(4644), + [anon_sym_c_int] = ACTIONS(4644), + [anon_sym_c_uint] = ACTIONS(4644), + [anon_sym_c_long] = ACTIONS(4644), + [anon_sym_c_ulong] = ACTIONS(4644), + [anon_sym_c_longlong] = ACTIONS(4644), + [anon_sym_c_ulonglong] = ACTIONS(4644), + [anon_sym_c_float] = ACTIONS(4644), + [anon_sym_c_double] = ACTIONS(4644), + [anon_sym_c_longdouble] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_yield] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_defer] = ACTIONS(4644), + [anon_sym_errdefer] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_expand] = ACTIONS(4644), + [anon_sym_for] = ACTIONS(4644), + [anon_sym_match] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4642), + [anon_sym_orelse] = ACTIONS(4644), + [anon_sym_or] = ACTIONS(4644), + [anon_sym_and] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4642), + [anon_sym_xor] = ACTIONS(4644), + [anon_sym_LT_LT] = ACTIONS(4644), + [anon_sym_GT_GT] = ACTIONS(4642), + [anon_sym_LT_LT_PIPE] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_catch] = ACTIONS(4644), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4642), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_unreachable] = ACTIONS(4644), + [anon_sym_undefined] = ACTIONS(4644), + [sym_sink] = ACTIONS(4644), + [sym_integer] = ACTIONS(4644), + [sym_float] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [sym_multiline_string] = ACTIONS(4642), + [sym_character] = ACTIONS(4642), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4642), + }, + [STATE(4406)] = { + [ts_builtin_sym_end] = ACTIONS(4646), + [sym_identifier] = ACTIONS(4648), + [anon_sym_import] = ACTIONS(4648), + [anon_sym_test] = ACTIONS(4648), + [anon_sym_hide] = ACTIONS(4648), + [anon_sym_func] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4646), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_void] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym_type] = ACTIONS(4648), + [anon_sym_anyopaque] = ACTIONS(4648), + [anon_sym_bool] = ACTIONS(4648), + [anon_sym_int] = ACTIONS(4648), + [anon_sym_uint] = ACTIONS(4648), + [anon_sym_float] = ACTIONS(4648), + [anon_sym_range] = ACTIONS(4648), + [anon_sym_i8] = ACTIONS(4648), + [anon_sym_i16] = ACTIONS(4648), + [anon_sym_i32] = ACTIONS(4648), + [anon_sym_i64] = ACTIONS(4648), + [anon_sym_u8] = ACTIONS(4648), + [anon_sym_u16] = ACTIONS(4648), + [anon_sym_u32] = ACTIONS(4648), + [anon_sym_u64] = ACTIONS(4648), + [anon_sym_isize] = ACTIONS(4648), + [anon_sym_usize] = ACTIONS(4648), + [anon_sym_f32] = ACTIONS(4648), + [anon_sym_f64] = ACTIONS(4648), + [anon_sym_c_char] = ACTIONS(4648), + [anon_sym_c_schar] = ACTIONS(4648), + [anon_sym_c_uchar] = ACTIONS(4648), + [anon_sym_c_short] = ACTIONS(4648), + [anon_sym_c_ushort] = ACTIONS(4648), + [anon_sym_c_int] = ACTIONS(4648), + [anon_sym_c_uint] = ACTIONS(4648), + [anon_sym_c_long] = ACTIONS(4648), + [anon_sym_c_ulong] = ACTIONS(4648), + [anon_sym_c_longlong] = ACTIONS(4648), + [anon_sym_c_ulonglong] = ACTIONS(4648), + [anon_sym_c_float] = ACTIONS(4648), + [anon_sym_c_double] = ACTIONS(4648), + [anon_sym_c_longdouble] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_yield] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_defer] = ACTIONS(4648), + [anon_sym_errdefer] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_expand] = ACTIONS(4648), + [anon_sym_for] = ACTIONS(4648), + [anon_sym_match] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4646), + [anon_sym_orelse] = ACTIONS(4648), + [anon_sym_or] = ACTIONS(4648), + [anon_sym_and] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_AMP] = ACTIONS(4646), + [anon_sym_xor] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4646), + [anon_sym_LT_LT_PIPE] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_catch] = ACTIONS(4648), + [anon_sym_TILDE] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4648), + [anon_sym_false] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4648), + [anon_sym_unreachable] = ACTIONS(4648), + [anon_sym_undefined] = ACTIONS(4648), + [sym_sink] = ACTIONS(4648), + [sym_integer] = ACTIONS(4648), + [sym_float] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym_multiline_string] = ACTIONS(4646), + [sym_character] = ACTIONS(4646), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4646), + }, + [STATE(4407)] = { + [ts_builtin_sym_end] = ACTIONS(4650), + [sym_identifier] = ACTIONS(4652), + [anon_sym_import] = ACTIONS(4652), + [anon_sym_test] = ACTIONS(4652), + [anon_sym_hide] = ACTIONS(4652), + [anon_sym_func] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOLLAR] = ACTIONS(4650), + [anon_sym_PIPE] = ACTIONS(4650), + [anon_sym_QMARK] = ACTIONS(4650), + [anon_sym_STAR] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_void] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym_type] = ACTIONS(4652), + [anon_sym_anyopaque] = ACTIONS(4652), + [anon_sym_bool] = ACTIONS(4652), + [anon_sym_int] = ACTIONS(4652), + [anon_sym_uint] = ACTIONS(4652), + [anon_sym_float] = ACTIONS(4652), + [anon_sym_range] = ACTIONS(4652), + [anon_sym_i8] = ACTIONS(4652), + [anon_sym_i16] = ACTIONS(4652), + [anon_sym_i32] = ACTIONS(4652), + [anon_sym_i64] = ACTIONS(4652), + [anon_sym_u8] = ACTIONS(4652), + [anon_sym_u16] = ACTIONS(4652), + [anon_sym_u32] = ACTIONS(4652), + [anon_sym_u64] = ACTIONS(4652), + [anon_sym_isize] = ACTIONS(4652), + [anon_sym_usize] = ACTIONS(4652), + [anon_sym_f32] = ACTIONS(4652), + [anon_sym_f64] = ACTIONS(4652), + [anon_sym_c_char] = ACTIONS(4652), + [anon_sym_c_schar] = ACTIONS(4652), + [anon_sym_c_uchar] = ACTIONS(4652), + [anon_sym_c_short] = ACTIONS(4652), + [anon_sym_c_ushort] = ACTIONS(4652), + [anon_sym_c_int] = ACTIONS(4652), + [anon_sym_c_uint] = ACTIONS(4652), + [anon_sym_c_long] = ACTIONS(4652), + [anon_sym_c_ulong] = ACTIONS(4652), + [anon_sym_c_longlong] = ACTIONS(4652), + [anon_sym_c_ulonglong] = ACTIONS(4652), + [anon_sym_c_float] = ACTIONS(4652), + [anon_sym_c_double] = ACTIONS(4652), + [anon_sym_c_longdouble] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_yield] = ACTIONS(4652), + [anon_sym_COLON] = ACTIONS(4650), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_defer] = ACTIONS(4652), + [anon_sym_errdefer] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_expand] = ACTIONS(4652), + [anon_sym_for] = ACTIONS(4652), + [anon_sym_match] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4650), + [anon_sym_orelse] = ACTIONS(4652), + [anon_sym_or] = ACTIONS(4652), + [anon_sym_and] = ACTIONS(4652), + [anon_sym_EQ_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4650), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_xor] = ACTIONS(4652), + [anon_sym_LT_LT] = ACTIONS(4652), + [anon_sym_GT_GT] = ACTIONS(4650), + [anon_sym_LT_LT_PIPE] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4650), + [anon_sym_catch] = ACTIONS(4652), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_CARET] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_unreachable] = ACTIONS(4652), + [anon_sym_undefined] = ACTIONS(4652), + [sym_sink] = ACTIONS(4652), + [sym_integer] = ACTIONS(4652), + [sym_float] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym_multiline_string] = ACTIONS(4650), + [sym_character] = ACTIONS(4650), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4650), + }, + [STATE(4408)] = { + [ts_builtin_sym_end] = ACTIONS(4654), + [sym_identifier] = ACTIONS(4656), + [anon_sym_import] = ACTIONS(4656), + [anon_sym_test] = ACTIONS(4656), + [anon_sym_hide] = ACTIONS(4656), + [anon_sym_func] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4654), + [anon_sym_DOLLAR] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_void] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym_type] = ACTIONS(4656), + [anon_sym_anyopaque] = ACTIONS(4656), + [anon_sym_bool] = ACTIONS(4656), + [anon_sym_int] = ACTIONS(4656), + [anon_sym_uint] = ACTIONS(4656), + [anon_sym_float] = ACTIONS(4656), + [anon_sym_range] = ACTIONS(4656), + [anon_sym_i8] = ACTIONS(4656), + [anon_sym_i16] = ACTIONS(4656), + [anon_sym_i32] = ACTIONS(4656), + [anon_sym_i64] = ACTIONS(4656), + [anon_sym_u8] = ACTIONS(4656), + [anon_sym_u16] = ACTIONS(4656), + [anon_sym_u32] = ACTIONS(4656), + [anon_sym_u64] = ACTIONS(4656), + [anon_sym_isize] = ACTIONS(4656), + [anon_sym_usize] = ACTIONS(4656), + [anon_sym_f32] = ACTIONS(4656), + [anon_sym_f64] = ACTIONS(4656), + [anon_sym_c_char] = ACTIONS(4656), + [anon_sym_c_schar] = ACTIONS(4656), + [anon_sym_c_uchar] = ACTIONS(4656), + [anon_sym_c_short] = ACTIONS(4656), + [anon_sym_c_ushort] = ACTIONS(4656), + [anon_sym_c_int] = ACTIONS(4656), + [anon_sym_c_uint] = ACTIONS(4656), + [anon_sym_c_long] = ACTIONS(4656), + [anon_sym_c_ulong] = ACTIONS(4656), + [anon_sym_c_longlong] = ACTIONS(4656), + [anon_sym_c_ulonglong] = ACTIONS(4656), + [anon_sym_c_float] = ACTIONS(4656), + [anon_sym_c_double] = ACTIONS(4656), + [anon_sym_c_longdouble] = ACTIONS(4656), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_yield] = ACTIONS(4656), + [anon_sym_COLON] = ACTIONS(4654), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_continue] = ACTIONS(4656), + [anon_sym_defer] = ACTIONS(4656), + [anon_sym_errdefer] = ACTIONS(4656), + [anon_sym_if] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_expand] = ACTIONS(4656), + [anon_sym_for] = ACTIONS(4656), + [anon_sym_match] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4656), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4654), + [anon_sym_orelse] = ACTIONS(4656), + [anon_sym_or] = ACTIONS(4656), + [anon_sym_and] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_AMP] = ACTIONS(4654), + [anon_sym_xor] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4654), + [anon_sym_LT_LT_PIPE] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4654), + [anon_sym_SLASH] = ACTIONS(4654), + [anon_sym_catch] = ACTIONS(4656), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_try] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4656), + [anon_sym_false] = ACTIONS(4656), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_unreachable] = ACTIONS(4656), + [anon_sym_undefined] = ACTIONS(4656), + [sym_sink] = ACTIONS(4656), + [sym_integer] = ACTIONS(4656), + [sym_float] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym_multiline_string] = ACTIONS(4654), + [sym_character] = ACTIONS(4654), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4654), + }, + [STATE(4409)] = { + [ts_builtin_sym_end] = ACTIONS(5164), + [sym_identifier] = ACTIONS(5166), + [anon_sym_import] = ACTIONS(5166), + [anon_sym_test] = ACTIONS(5166), + [anon_sym_hide] = ACTIONS(5166), + [anon_sym_func] = ACTIONS(5166), + [anon_sym_BANG] = ACTIONS(5166), + [anon_sym_struct] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5164), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_void] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym_type] = ACTIONS(5166), + [anon_sym_anyopaque] = ACTIONS(5166), + [anon_sym_bool] = ACTIONS(5166), + [anon_sym_int] = ACTIONS(5166), + [anon_sym_uint] = ACTIONS(5166), + [anon_sym_float] = ACTIONS(5166), + [anon_sym_range] = ACTIONS(5166), + [anon_sym_i8] = ACTIONS(5166), + [anon_sym_i16] = ACTIONS(5166), + [anon_sym_i32] = ACTIONS(5166), + [anon_sym_i64] = ACTIONS(5166), + [anon_sym_u8] = ACTIONS(5166), + [anon_sym_u16] = ACTIONS(5166), + [anon_sym_u32] = ACTIONS(5166), + [anon_sym_u64] = ACTIONS(5166), + [anon_sym_isize] = ACTIONS(5166), + [anon_sym_usize] = ACTIONS(5166), + [anon_sym_f32] = ACTIONS(5166), + [anon_sym_f64] = ACTIONS(5166), + [anon_sym_c_char] = ACTIONS(5166), + [anon_sym_c_schar] = ACTIONS(5166), + [anon_sym_c_uchar] = ACTIONS(5166), + [anon_sym_c_short] = ACTIONS(5166), + [anon_sym_c_ushort] = ACTIONS(5166), + [anon_sym_c_int] = ACTIONS(5166), + [anon_sym_c_uint] = ACTIONS(5166), + [anon_sym_c_long] = ACTIONS(5166), + [anon_sym_c_ulong] = ACTIONS(5166), + [anon_sym_c_longlong] = ACTIONS(5166), + [anon_sym_c_ulonglong] = ACTIONS(5166), + [anon_sym_c_float] = ACTIONS(5166), + [anon_sym_c_double] = ACTIONS(5166), + [anon_sym_c_longdouble] = ACTIONS(5166), + [anon_sym_return] = ACTIONS(5166), + [anon_sym_yield] = ACTIONS(5166), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_break] = ACTIONS(5166), + [anon_sym_continue] = ACTIONS(5166), + [anon_sym_defer] = ACTIONS(5166), + [anon_sym_errdefer] = ACTIONS(5166), + [anon_sym_if] = ACTIONS(5166), + [anon_sym_else] = ACTIONS(5166), + [anon_sym_while] = ACTIONS(5166), + [anon_sym_expand] = ACTIONS(5166), + [anon_sym_for] = ACTIONS(5166), + [anon_sym_match] = ACTIONS(5166), + [anon_sym_DOT_DOT] = ACTIONS(5166), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5164), + [anon_sym_orelse] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5166), + [anon_sym_and] = ACTIONS(5166), + [anon_sym_EQ_EQ] = ACTIONS(5164), + [anon_sym_BANG_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5166), + [anon_sym_GT_EQ] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5166), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_LT_LT_PIPE] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_catch] = ACTIONS(5166), + [anon_sym_TILDE] = ACTIONS(5164), + [anon_sym_try] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5166), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_true] = ACTIONS(5166), + [anon_sym_false] = ACTIONS(5166), + [anon_sym_null] = ACTIONS(5166), + [anon_sym_unreachable] = ACTIONS(5166), + [anon_sym_undefined] = ACTIONS(5166), + [sym_sink] = ACTIONS(5166), + [sym_integer] = ACTIONS(5166), + [sym_float] = ACTIONS(5164), + [anon_sym_DQUOTE] = ACTIONS(5164), + [sym_multiline_string] = ACTIONS(5164), + [sym_character] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5164), + }, + [STATE(4410)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10812), + [sym_labeled_block] = STATE(10812), + [sym_if_statement] = STATE(10812), + [sym_while_statement] = STATE(10812), + [sym_for_statement] = STATE(10812), + [sym_match_statement] = STATE(10812), + [sym__value] = STATE(10812), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4264), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7158), + }, + [STATE(4411)] = { + [ts_builtin_sym_end] = ACTIONS(5168), + [sym_identifier] = ACTIONS(5170), + [anon_sym_import] = ACTIONS(5170), + [anon_sym_test] = ACTIONS(5170), + [anon_sym_hide] = ACTIONS(5170), + [anon_sym_func] = ACTIONS(5170), + [anon_sym_BANG] = ACTIONS(5170), + [anon_sym_struct] = ACTIONS(5170), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_QMARK] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_void] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym_type] = ACTIONS(5170), + [anon_sym_anyopaque] = ACTIONS(5170), + [anon_sym_bool] = ACTIONS(5170), + [anon_sym_int] = ACTIONS(5170), + [anon_sym_uint] = ACTIONS(5170), + [anon_sym_float] = ACTIONS(5170), + [anon_sym_range] = ACTIONS(5170), + [anon_sym_i8] = ACTIONS(5170), + [anon_sym_i16] = ACTIONS(5170), + [anon_sym_i32] = ACTIONS(5170), + [anon_sym_i64] = ACTIONS(5170), + [anon_sym_u8] = ACTIONS(5170), + [anon_sym_u16] = ACTIONS(5170), + [anon_sym_u32] = ACTIONS(5170), + [anon_sym_u64] = ACTIONS(5170), + [anon_sym_isize] = ACTIONS(5170), + [anon_sym_usize] = ACTIONS(5170), + [anon_sym_f32] = ACTIONS(5170), + [anon_sym_f64] = ACTIONS(5170), + [anon_sym_c_char] = ACTIONS(5170), + [anon_sym_c_schar] = ACTIONS(5170), + [anon_sym_c_uchar] = ACTIONS(5170), + [anon_sym_c_short] = ACTIONS(5170), + [anon_sym_c_ushort] = ACTIONS(5170), + [anon_sym_c_int] = ACTIONS(5170), + [anon_sym_c_uint] = ACTIONS(5170), + [anon_sym_c_long] = ACTIONS(5170), + [anon_sym_c_ulong] = ACTIONS(5170), + [anon_sym_c_longlong] = ACTIONS(5170), + [anon_sym_c_ulonglong] = ACTIONS(5170), + [anon_sym_c_float] = ACTIONS(5170), + [anon_sym_c_double] = ACTIONS(5170), + [anon_sym_c_longdouble] = ACTIONS(5170), + [anon_sym_return] = ACTIONS(5170), + [anon_sym_yield] = ACTIONS(5170), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_break] = ACTIONS(5170), + [anon_sym_continue] = ACTIONS(5170), + [anon_sym_defer] = ACTIONS(5170), + [anon_sym_errdefer] = ACTIONS(5170), + [anon_sym_if] = ACTIONS(5170), + [anon_sym_else] = ACTIONS(5170), + [anon_sym_while] = ACTIONS(5170), + [anon_sym_expand] = ACTIONS(5170), + [anon_sym_for] = ACTIONS(5170), + [anon_sym_match] = ACTIONS(5170), + [anon_sym_DOT_DOT] = ACTIONS(5170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5168), + [anon_sym_orelse] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_xor] = ACTIONS(5170), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_LT_LT_PIPE] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_catch] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5168), + [anon_sym_try] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym_true] = ACTIONS(5170), + [anon_sym_false] = ACTIONS(5170), + [anon_sym_null] = ACTIONS(5170), + [anon_sym_unreachable] = ACTIONS(5170), + [anon_sym_undefined] = ACTIONS(5170), + [sym_sink] = ACTIONS(5170), + [sym_integer] = ACTIONS(5170), + [sym_float] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [sym_multiline_string] = ACTIONS(5168), + [sym_character] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5168), + }, + [STATE(4412)] = { + [ts_builtin_sym_end] = ACTIONS(4658), + [sym_identifier] = ACTIONS(4660), + [anon_sym_import] = ACTIONS(4660), + [anon_sym_test] = ACTIONS(4660), + [anon_sym_hide] = ACTIONS(4660), + [anon_sym_func] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4658), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4658), + [anon_sym_DOLLAR] = ACTIONS(4658), + [anon_sym_PIPE] = ACTIONS(4658), + [anon_sym_QMARK] = ACTIONS(4658), + [anon_sym_STAR] = ACTIONS(4658), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_void] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym_type] = ACTIONS(4660), + [anon_sym_anyopaque] = ACTIONS(4660), + [anon_sym_bool] = ACTIONS(4660), + [anon_sym_int] = ACTIONS(4660), + [anon_sym_uint] = ACTIONS(4660), + [anon_sym_float] = ACTIONS(4660), + [anon_sym_range] = ACTIONS(4660), + [anon_sym_i8] = ACTIONS(4660), + [anon_sym_i16] = ACTIONS(4660), + [anon_sym_i32] = ACTIONS(4660), + [anon_sym_i64] = ACTIONS(4660), + [anon_sym_u8] = ACTIONS(4660), + [anon_sym_u16] = ACTIONS(4660), + [anon_sym_u32] = ACTIONS(4660), + [anon_sym_u64] = ACTIONS(4660), + [anon_sym_isize] = ACTIONS(4660), + [anon_sym_usize] = ACTIONS(4660), + [anon_sym_f32] = ACTIONS(4660), + [anon_sym_f64] = ACTIONS(4660), + [anon_sym_c_char] = ACTIONS(4660), + [anon_sym_c_schar] = ACTIONS(4660), + [anon_sym_c_uchar] = ACTIONS(4660), + [anon_sym_c_short] = ACTIONS(4660), + [anon_sym_c_ushort] = ACTIONS(4660), + [anon_sym_c_int] = ACTIONS(4660), + [anon_sym_c_uint] = ACTIONS(4660), + [anon_sym_c_long] = ACTIONS(4660), + [anon_sym_c_ulong] = ACTIONS(4660), + [anon_sym_c_longlong] = ACTIONS(4660), + [anon_sym_c_ulonglong] = ACTIONS(4660), + [anon_sym_c_float] = ACTIONS(4660), + [anon_sym_c_double] = ACTIONS(4660), + [anon_sym_c_longdouble] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4658), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_defer] = ACTIONS(4660), + [anon_sym_errdefer] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_expand] = ACTIONS(4660), + [anon_sym_for] = ACTIONS(4660), + [anon_sym_match] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4658), + [anon_sym_orelse] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_EQ_EQ] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(4658), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4658), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4658), + [anon_sym_AMP] = ACTIONS(4658), + [anon_sym_xor] = ACTIONS(4660), + [anon_sym_LT_LT] = ACTIONS(4660), + [anon_sym_GT_GT] = ACTIONS(4658), + [anon_sym_LT_LT_PIPE] = ACTIONS(4658), + [anon_sym_PLUS] = ACTIONS(4658), + [anon_sym_SLASH] = ACTIONS(4658), + [anon_sym_catch] = ACTIONS(4660), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_CARET] = ACTIONS(4658), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_unreachable] = ACTIONS(4660), + [anon_sym_undefined] = ACTIONS(4660), + [sym_sink] = ACTIONS(4660), + [sym_integer] = ACTIONS(4660), + [sym_float] = ACTIONS(4658), + [anon_sym_DQUOTE] = ACTIONS(4658), + [sym_multiline_string] = ACTIONS(4658), + [sym_character] = ACTIONS(4658), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4658), + }, + [STATE(4413)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10816), + [sym_labeled_block] = STATE(10816), + [sym_if_statement] = STATE(10816), + [sym_while_statement] = STATE(10816), + [sym_for_statement] = STATE(10816), + [sym_match_statement] = STATE(10816), + [sym__value] = STATE(10816), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4414)] = { + [ts_builtin_sym_end] = ACTIONS(5172), + [sym_identifier] = ACTIONS(5174), + [anon_sym_import] = ACTIONS(5174), + [anon_sym_test] = ACTIONS(5174), + [anon_sym_hide] = ACTIONS(5174), + [anon_sym_func] = ACTIONS(5174), + [anon_sym_BANG] = ACTIONS(5174), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_QMARK] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_void] = ACTIONS(5174), + [anon_sym_noreturn] = ACTIONS(5174), + [anon_sym_type] = ACTIONS(5174), + [anon_sym_anyopaque] = ACTIONS(5174), + [anon_sym_bool] = ACTIONS(5174), + [anon_sym_int] = ACTIONS(5174), + [anon_sym_uint] = ACTIONS(5174), + [anon_sym_float] = ACTIONS(5174), + [anon_sym_range] = ACTIONS(5174), + [anon_sym_i8] = ACTIONS(5174), + [anon_sym_i16] = ACTIONS(5174), + [anon_sym_i32] = ACTIONS(5174), + [anon_sym_i64] = ACTIONS(5174), + [anon_sym_u8] = ACTIONS(5174), + [anon_sym_u16] = ACTIONS(5174), + [anon_sym_u32] = ACTIONS(5174), + [anon_sym_u64] = ACTIONS(5174), + [anon_sym_isize] = ACTIONS(5174), + [anon_sym_usize] = ACTIONS(5174), + [anon_sym_f32] = ACTIONS(5174), + [anon_sym_f64] = ACTIONS(5174), + [anon_sym_c_char] = ACTIONS(5174), + [anon_sym_c_schar] = ACTIONS(5174), + [anon_sym_c_uchar] = ACTIONS(5174), + [anon_sym_c_short] = ACTIONS(5174), + [anon_sym_c_ushort] = ACTIONS(5174), + [anon_sym_c_int] = ACTIONS(5174), + [anon_sym_c_uint] = ACTIONS(5174), + [anon_sym_c_long] = ACTIONS(5174), + [anon_sym_c_ulong] = ACTIONS(5174), + [anon_sym_c_longlong] = ACTIONS(5174), + [anon_sym_c_ulonglong] = ACTIONS(5174), + [anon_sym_c_float] = ACTIONS(5174), + [anon_sym_c_double] = ACTIONS(5174), + [anon_sym_c_longdouble] = ACTIONS(5174), + [anon_sym_return] = ACTIONS(5174), + [anon_sym_yield] = ACTIONS(5174), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_break] = ACTIONS(5174), + [anon_sym_continue] = ACTIONS(5174), + [anon_sym_defer] = ACTIONS(5174), + [anon_sym_errdefer] = ACTIONS(5174), + [anon_sym_if] = ACTIONS(5174), + [anon_sym_else] = ACTIONS(5174), + [anon_sym_while] = ACTIONS(5174), + [anon_sym_expand] = ACTIONS(5174), + [anon_sym_for] = ACTIONS(5174), + [anon_sym_match] = ACTIONS(5174), + [anon_sym_DOT_DOT] = ACTIONS(5174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5172), + [anon_sym_orelse] = ACTIONS(5174), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5172), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_LT_LT_PIPE] = ACTIONS(5172), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_SLASH] = ACTIONS(5172), + [anon_sym_catch] = ACTIONS(5174), + [anon_sym_TILDE] = ACTIONS(5172), + [anon_sym_try] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym_true] = ACTIONS(5174), + [anon_sym_false] = ACTIONS(5174), + [anon_sym_null] = ACTIONS(5174), + [anon_sym_unreachable] = ACTIONS(5174), + [anon_sym_undefined] = ACTIONS(5174), + [sym_sink] = ACTIONS(5174), + [sym_integer] = ACTIONS(5174), + [sym_float] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [sym_multiline_string] = ACTIONS(5172), + [sym_character] = ACTIONS(5172), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5172), + }, + [STATE(4415)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4416)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9118), + [sym_labeled_block] = STATE(9118), + [sym_if_statement] = STATE(9118), + [sym_while_statement] = STATE(9118), + [sym_for_statement] = STATE(9118), + [sym_match_statement] = STATE(9118), + [sym__value] = STATE(9118), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4417)] = { + [ts_builtin_sym_end] = ACTIONS(4666), + [sym_identifier] = ACTIONS(4668), + [anon_sym_import] = ACTIONS(4668), + [anon_sym_test] = ACTIONS(4668), + [anon_sym_hide] = ACTIONS(4668), + [anon_sym_func] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(4668), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_LPAREN] = ACTIONS(4666), + [anon_sym_LBRACE] = ACTIONS(4666), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4666), + [anon_sym_DOLLAR] = ACTIONS(4666), + [anon_sym_PIPE] = ACTIONS(4666), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_STAR] = ACTIONS(4666), + [anon_sym_LBRACK] = ACTIONS(4666), + [anon_sym_void] = ACTIONS(4668), + [anon_sym_noreturn] = ACTIONS(4668), + [anon_sym_type] = ACTIONS(4668), + [anon_sym_anyopaque] = ACTIONS(4668), + [anon_sym_bool] = ACTIONS(4668), + [anon_sym_int] = ACTIONS(4668), + [anon_sym_uint] = ACTIONS(4668), + [anon_sym_float] = ACTIONS(4668), + [anon_sym_range] = ACTIONS(4668), + [anon_sym_i8] = ACTIONS(4668), + [anon_sym_i16] = ACTIONS(4668), + [anon_sym_i32] = ACTIONS(4668), + [anon_sym_i64] = ACTIONS(4668), + [anon_sym_u8] = ACTIONS(4668), + [anon_sym_u16] = ACTIONS(4668), + [anon_sym_u32] = ACTIONS(4668), + [anon_sym_u64] = ACTIONS(4668), + [anon_sym_isize] = ACTIONS(4668), + [anon_sym_usize] = ACTIONS(4668), + [anon_sym_f32] = ACTIONS(4668), + [anon_sym_f64] = ACTIONS(4668), + [anon_sym_c_char] = ACTIONS(4668), + [anon_sym_c_schar] = ACTIONS(4668), + [anon_sym_c_uchar] = ACTIONS(4668), + [anon_sym_c_short] = ACTIONS(4668), + [anon_sym_c_ushort] = ACTIONS(4668), + [anon_sym_c_int] = ACTIONS(4668), + [anon_sym_c_uint] = ACTIONS(4668), + [anon_sym_c_long] = ACTIONS(4668), + [anon_sym_c_ulong] = ACTIONS(4668), + [anon_sym_c_longlong] = ACTIONS(4668), + [anon_sym_c_ulonglong] = ACTIONS(4668), + [anon_sym_c_float] = ACTIONS(4668), + [anon_sym_c_double] = ACTIONS(4668), + [anon_sym_c_longdouble] = ACTIONS(4668), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_yield] = ACTIONS(4668), + [anon_sym_COLON] = ACTIONS(4666), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_continue] = ACTIONS(4668), + [anon_sym_defer] = ACTIONS(4668), + [anon_sym_errdefer] = ACTIONS(4668), + [anon_sym_if] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_while] = ACTIONS(4668), + [anon_sym_expand] = ACTIONS(4668), + [anon_sym_for] = ACTIONS(4668), + [anon_sym_match] = ACTIONS(4668), + [anon_sym_DOT_DOT] = ACTIONS(4668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4666), + [anon_sym_orelse] = ACTIONS(4668), + [anon_sym_or] = ACTIONS(4668), + [anon_sym_and] = ACTIONS(4668), + [anon_sym_EQ_EQ] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(4666), + [anon_sym_LT] = ACTIONS(4668), + [anon_sym_LT_EQ] = ACTIONS(4666), + [anon_sym_GT] = ACTIONS(4668), + [anon_sym_GT_EQ] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4666), + [anon_sym_xor] = ACTIONS(4668), + [anon_sym_LT_LT] = ACTIONS(4668), + [anon_sym_GT_GT] = ACTIONS(4666), + [anon_sym_LT_LT_PIPE] = ACTIONS(4666), + [anon_sym_PLUS] = ACTIONS(4666), + [anon_sym_SLASH] = ACTIONS(4666), + [anon_sym_catch] = ACTIONS(4668), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_try] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_CARET] = ACTIONS(4666), + [anon_sym_true] = ACTIONS(4668), + [anon_sym_false] = ACTIONS(4668), + [anon_sym_null] = ACTIONS(4668), + [anon_sym_unreachable] = ACTIONS(4668), + [anon_sym_undefined] = ACTIONS(4668), + [sym_sink] = ACTIONS(4668), + [sym_integer] = ACTIONS(4668), + [sym_float] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(4666), + [sym_multiline_string] = ACTIONS(4666), + [sym_character] = ACTIONS(4666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4666), + }, + [STATE(4418)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4419)] = { + [ts_builtin_sym_end] = ACTIONS(6112), + [sym_identifier] = ACTIONS(6114), + [anon_sym_import] = ACTIONS(6114), + [anon_sym_test] = ACTIONS(6114), + [anon_sym_hide] = ACTIONS(6114), + [anon_sym_func] = ACTIONS(6114), + [anon_sym_BANG] = ACTIONS(6114), + [anon_sym_struct] = ACTIONS(6114), + [anon_sym_LPAREN] = ACTIONS(6112), + [anon_sym_LBRACE] = ACTIONS(6112), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_DASH] = ACTIONS(6112), + [anon_sym_DOLLAR] = ACTIONS(6112), + [anon_sym_PIPE] = ACTIONS(6112), + [anon_sym_QMARK] = ACTIONS(6112), + [anon_sym_STAR] = ACTIONS(6112), + [anon_sym_LBRACK] = ACTIONS(6112), + [anon_sym_void] = ACTIONS(6114), + [anon_sym_noreturn] = ACTIONS(6114), + [anon_sym_type] = ACTIONS(6114), + [anon_sym_anyopaque] = ACTIONS(6114), + [anon_sym_bool] = ACTIONS(6114), + [anon_sym_int] = ACTIONS(6114), + [anon_sym_uint] = ACTIONS(6114), + [anon_sym_float] = ACTIONS(6114), + [anon_sym_range] = ACTIONS(6114), + [anon_sym_i8] = ACTIONS(6114), + [anon_sym_i16] = ACTIONS(6114), + [anon_sym_i32] = ACTIONS(6114), + [anon_sym_i64] = ACTIONS(6114), + [anon_sym_u8] = ACTIONS(6114), + [anon_sym_u16] = ACTIONS(6114), + [anon_sym_u32] = ACTIONS(6114), + [anon_sym_u64] = ACTIONS(6114), + [anon_sym_isize] = ACTIONS(6114), + [anon_sym_usize] = ACTIONS(6114), + [anon_sym_f32] = ACTIONS(6114), + [anon_sym_f64] = ACTIONS(6114), + [anon_sym_c_char] = ACTIONS(6114), + [anon_sym_c_schar] = ACTIONS(6114), + [anon_sym_c_uchar] = ACTIONS(6114), + [anon_sym_c_short] = ACTIONS(6114), + [anon_sym_c_ushort] = ACTIONS(6114), + [anon_sym_c_int] = ACTIONS(6114), + [anon_sym_c_uint] = ACTIONS(6114), + [anon_sym_c_long] = ACTIONS(6114), + [anon_sym_c_ulong] = ACTIONS(6114), + [anon_sym_c_longlong] = ACTIONS(6114), + [anon_sym_c_ulonglong] = ACTIONS(6114), + [anon_sym_c_float] = ACTIONS(6114), + [anon_sym_c_double] = ACTIONS(6114), + [anon_sym_c_longdouble] = ACTIONS(6114), + [anon_sym_return] = ACTIONS(6114), + [anon_sym_yield] = ACTIONS(6114), + [anon_sym_COLON] = ACTIONS(6112), + [anon_sym_break] = ACTIONS(6114), + [anon_sym_continue] = ACTIONS(6114), + [anon_sym_defer] = ACTIONS(6114), + [anon_sym_errdefer] = ACTIONS(6114), + [anon_sym_if] = ACTIONS(6114), + [anon_sym_else] = ACTIONS(6114), + [anon_sym_while] = ACTIONS(6114), + [anon_sym_expand] = ACTIONS(6114), + [anon_sym_for] = ACTIONS(6114), + [anon_sym_match] = ACTIONS(6114), + [anon_sym_DOT_DOT] = ACTIONS(6114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6112), + [anon_sym_orelse] = ACTIONS(6114), + [anon_sym_or] = ACTIONS(6114), + [anon_sym_and] = ACTIONS(6114), + [anon_sym_EQ_EQ] = ACTIONS(6112), + [anon_sym_BANG_EQ] = ACTIONS(6112), + [anon_sym_LT] = ACTIONS(6114), + [anon_sym_LT_EQ] = ACTIONS(6112), + [anon_sym_GT] = ACTIONS(6114), + [anon_sym_GT_EQ] = ACTIONS(6112), + [anon_sym_AMP] = ACTIONS(6112), + [anon_sym_xor] = ACTIONS(6114), + [anon_sym_LT_LT] = ACTIONS(6114), + [anon_sym_GT_GT] = ACTIONS(6112), + [anon_sym_LT_LT_PIPE] = ACTIONS(6112), + [anon_sym_PLUS] = ACTIONS(6112), + [anon_sym_SLASH] = ACTIONS(6112), + [anon_sym_catch] = ACTIONS(6114), + [anon_sym_TILDE] = ACTIONS(6112), + [anon_sym_try] = ACTIONS(6114), + [anon_sym_DOT] = ACTIONS(6114), + [anon_sym_CARET] = ACTIONS(6112), + [anon_sym_true] = ACTIONS(6114), + [anon_sym_false] = ACTIONS(6114), + [anon_sym_null] = ACTIONS(6114), + [anon_sym_unreachable] = ACTIONS(6114), + [anon_sym_undefined] = ACTIONS(6114), + [sym_sink] = ACTIONS(6114), + [sym_integer] = ACTIONS(6114), + [sym_float] = ACTIONS(6112), + [anon_sym_DQUOTE] = ACTIONS(6112), + [sym_multiline_string] = ACTIONS(6112), + [sym_character] = ACTIONS(6112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6112), + }, + [STATE(4420)] = { + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1329), + [anon_sym_import] = ACTIONS(1329), + [anon_sym_test] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_defer] = ACTIONS(1329), + [anon_sym_errdefer] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_expand] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_LT_LT_PIPE] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_unreachable] = ACTIONS(1329), + [anon_sym_undefined] = ACTIONS(1329), + [sym_sink] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_multiline_string] = ACTIONS(1331), + [sym_character] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1331), + }, + [STATE(4421)] = { + [sym_type] = STATE(14844), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7162), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7166), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4422)] = { + [ts_builtin_sym_end] = ACTIONS(6132), + [sym_identifier] = ACTIONS(6134), + [anon_sym_import] = ACTIONS(6134), + [anon_sym_test] = ACTIONS(6134), + [anon_sym_hide] = ACTIONS(6134), + [anon_sym_func] = ACTIONS(6134), + [anon_sym_BANG] = ACTIONS(6134), + [anon_sym_struct] = ACTIONS(6134), + [anon_sym_LPAREN] = ACTIONS(6132), + [anon_sym_LBRACE] = ACTIONS(6132), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_DASH] = ACTIONS(6132), + [anon_sym_DOLLAR] = ACTIONS(6132), + [anon_sym_PIPE] = ACTIONS(6132), + [anon_sym_QMARK] = ACTIONS(6132), + [anon_sym_STAR] = ACTIONS(6132), + [anon_sym_LBRACK] = ACTIONS(6132), + [anon_sym_void] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym_type] = ACTIONS(6134), + [anon_sym_anyopaque] = ACTIONS(6134), + [anon_sym_bool] = ACTIONS(6134), + [anon_sym_int] = ACTIONS(6134), + [anon_sym_uint] = ACTIONS(6134), + [anon_sym_float] = ACTIONS(6134), + [anon_sym_range] = ACTIONS(6134), + [anon_sym_i8] = ACTIONS(6134), + [anon_sym_i16] = ACTIONS(6134), + [anon_sym_i32] = ACTIONS(6134), + [anon_sym_i64] = ACTIONS(6134), + [anon_sym_u8] = ACTIONS(6134), + [anon_sym_u16] = ACTIONS(6134), + [anon_sym_u32] = ACTIONS(6134), + [anon_sym_u64] = ACTIONS(6134), + [anon_sym_isize] = ACTIONS(6134), + [anon_sym_usize] = ACTIONS(6134), + [anon_sym_f32] = ACTIONS(6134), + [anon_sym_f64] = ACTIONS(6134), + [anon_sym_c_char] = ACTIONS(6134), + [anon_sym_c_schar] = ACTIONS(6134), + [anon_sym_c_uchar] = ACTIONS(6134), + [anon_sym_c_short] = ACTIONS(6134), + [anon_sym_c_ushort] = ACTIONS(6134), + [anon_sym_c_int] = ACTIONS(6134), + [anon_sym_c_uint] = ACTIONS(6134), + [anon_sym_c_long] = ACTIONS(6134), + [anon_sym_c_ulong] = ACTIONS(6134), + [anon_sym_c_longlong] = ACTIONS(6134), + [anon_sym_c_ulonglong] = ACTIONS(6134), + [anon_sym_c_float] = ACTIONS(6134), + [anon_sym_c_double] = ACTIONS(6134), + [anon_sym_c_longdouble] = ACTIONS(6134), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_yield] = ACTIONS(6134), + [anon_sym_COLON] = ACTIONS(6132), + [anon_sym_break] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [anon_sym_defer] = ACTIONS(6134), + [anon_sym_errdefer] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [anon_sym_else] = ACTIONS(6134), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_expand] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [anon_sym_match] = ACTIONS(6134), + [anon_sym_DOT_DOT] = ACTIONS(6134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6132), + [anon_sym_orelse] = ACTIONS(6134), + [anon_sym_or] = ACTIONS(6134), + [anon_sym_and] = ACTIONS(6134), + [anon_sym_EQ_EQ] = ACTIONS(6132), + [anon_sym_BANG_EQ] = ACTIONS(6132), + [anon_sym_LT] = ACTIONS(6134), + [anon_sym_LT_EQ] = ACTIONS(6132), + [anon_sym_GT] = ACTIONS(6134), + [anon_sym_GT_EQ] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6132), + [anon_sym_xor] = ACTIONS(6134), + [anon_sym_LT_LT] = ACTIONS(6134), + [anon_sym_GT_GT] = ACTIONS(6132), + [anon_sym_LT_LT_PIPE] = ACTIONS(6132), + [anon_sym_PLUS] = ACTIONS(6132), + [anon_sym_SLASH] = ACTIONS(6132), + [anon_sym_catch] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6132), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_DOT] = ACTIONS(6134), + [anon_sym_CARET] = ACTIONS(6132), + [anon_sym_true] = ACTIONS(6134), + [anon_sym_false] = ACTIONS(6134), + [anon_sym_null] = ACTIONS(6134), + [anon_sym_unreachable] = ACTIONS(6134), + [anon_sym_undefined] = ACTIONS(6134), + [sym_sink] = ACTIONS(6134), + [sym_integer] = ACTIONS(6134), + [sym_float] = ACTIONS(6132), + [anon_sym_DQUOTE] = ACTIONS(6132), + [sym_multiline_string] = ACTIONS(6132), + [sym_character] = ACTIONS(6132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6132), + }, + [STATE(4423)] = { + [ts_builtin_sym_end] = ACTIONS(6166), + [sym_identifier] = ACTIONS(6168), + [anon_sym_import] = ACTIONS(6168), + [anon_sym_test] = ACTIONS(6168), + [anon_sym_hide] = ACTIONS(6168), + [anon_sym_func] = ACTIONS(6168), + [anon_sym_BANG] = ACTIONS(6168), + [anon_sym_struct] = ACTIONS(6168), + [anon_sym_LPAREN] = ACTIONS(6166), + [anon_sym_LBRACE] = ACTIONS(6166), + [anon_sym_RBRACE] = ACTIONS(6166), + [anon_sym_DASH] = ACTIONS(6166), + [anon_sym_DOLLAR] = ACTIONS(6166), + [anon_sym_PIPE] = ACTIONS(6166), + [anon_sym_QMARK] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(6166), + [anon_sym_LBRACK] = ACTIONS(6166), + [anon_sym_void] = ACTIONS(6168), + [anon_sym_noreturn] = ACTIONS(6168), + [anon_sym_type] = ACTIONS(6168), + [anon_sym_anyopaque] = ACTIONS(6168), + [anon_sym_bool] = ACTIONS(6168), + [anon_sym_int] = ACTIONS(6168), + [anon_sym_uint] = ACTIONS(6168), + [anon_sym_float] = ACTIONS(6168), + [anon_sym_range] = ACTIONS(6168), + [anon_sym_i8] = ACTIONS(6168), + [anon_sym_i16] = ACTIONS(6168), + [anon_sym_i32] = ACTIONS(6168), + [anon_sym_i64] = ACTIONS(6168), + [anon_sym_u8] = ACTIONS(6168), + [anon_sym_u16] = ACTIONS(6168), + [anon_sym_u32] = ACTIONS(6168), + [anon_sym_u64] = ACTIONS(6168), + [anon_sym_isize] = ACTIONS(6168), + [anon_sym_usize] = ACTIONS(6168), + [anon_sym_f32] = ACTIONS(6168), + [anon_sym_f64] = ACTIONS(6168), + [anon_sym_c_char] = ACTIONS(6168), + [anon_sym_c_schar] = ACTIONS(6168), + [anon_sym_c_uchar] = ACTIONS(6168), + [anon_sym_c_short] = ACTIONS(6168), + [anon_sym_c_ushort] = ACTIONS(6168), + [anon_sym_c_int] = ACTIONS(6168), + [anon_sym_c_uint] = ACTIONS(6168), + [anon_sym_c_long] = ACTIONS(6168), + [anon_sym_c_ulong] = ACTIONS(6168), + [anon_sym_c_longlong] = ACTIONS(6168), + [anon_sym_c_ulonglong] = ACTIONS(6168), + [anon_sym_c_float] = ACTIONS(6168), + [anon_sym_c_double] = ACTIONS(6168), + [anon_sym_c_longdouble] = ACTIONS(6168), + [anon_sym_return] = ACTIONS(6168), + [anon_sym_yield] = ACTIONS(6168), + [anon_sym_COLON] = ACTIONS(6166), + [anon_sym_break] = ACTIONS(6168), + [anon_sym_continue] = ACTIONS(6168), + [anon_sym_defer] = ACTIONS(6168), + [anon_sym_errdefer] = ACTIONS(6168), + [anon_sym_if] = ACTIONS(6168), + [anon_sym_else] = ACTIONS(6168), + [anon_sym_while] = ACTIONS(6168), + [anon_sym_expand] = ACTIONS(6168), + [anon_sym_for] = ACTIONS(6168), + [anon_sym_match] = ACTIONS(6168), + [anon_sym_DOT_DOT] = ACTIONS(6168), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6166), + [anon_sym_orelse] = ACTIONS(6168), + [anon_sym_or] = ACTIONS(6168), + [anon_sym_and] = ACTIONS(6168), + [anon_sym_EQ_EQ] = ACTIONS(6166), + [anon_sym_BANG_EQ] = ACTIONS(6166), + [anon_sym_LT] = ACTIONS(6168), + [anon_sym_LT_EQ] = ACTIONS(6166), + [anon_sym_GT] = ACTIONS(6168), + [anon_sym_GT_EQ] = ACTIONS(6166), + [anon_sym_AMP] = ACTIONS(6166), + [anon_sym_xor] = ACTIONS(6168), + [anon_sym_LT_LT] = ACTIONS(6168), + [anon_sym_GT_GT] = ACTIONS(6166), + [anon_sym_LT_LT_PIPE] = ACTIONS(6166), + [anon_sym_PLUS] = ACTIONS(6166), + [anon_sym_SLASH] = ACTIONS(6166), + [anon_sym_catch] = ACTIONS(6168), + [anon_sym_TILDE] = ACTIONS(6166), + [anon_sym_try] = ACTIONS(6168), + [anon_sym_DOT] = ACTIONS(6168), + [anon_sym_CARET] = ACTIONS(6166), + [anon_sym_true] = ACTIONS(6168), + [anon_sym_false] = ACTIONS(6168), + [anon_sym_null] = ACTIONS(6168), + [anon_sym_unreachable] = ACTIONS(6168), + [anon_sym_undefined] = ACTIONS(6168), + [sym_sink] = ACTIONS(6168), + [sym_integer] = ACTIONS(6168), + [sym_float] = ACTIONS(6166), + [anon_sym_DQUOTE] = ACTIONS(6166), + [sym_multiline_string] = ACTIONS(6166), + [sym_character] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6166), + }, + [STATE(4424)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(4827), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(9903), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4830), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7168), + }, + [STATE(4425)] = { + [ts_builtin_sym_end] = ACTIONS(6170), + [sym_identifier] = ACTIONS(6172), + [anon_sym_import] = ACTIONS(6172), + [anon_sym_test] = ACTIONS(6172), + [anon_sym_hide] = ACTIONS(6172), + [anon_sym_func] = ACTIONS(6172), + [anon_sym_BANG] = ACTIONS(6172), + [anon_sym_struct] = ACTIONS(6172), + [anon_sym_LPAREN] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(6170), + [anon_sym_RBRACE] = ACTIONS(6170), + [anon_sym_DASH] = ACTIONS(6170), + [anon_sym_DOLLAR] = ACTIONS(6170), + [anon_sym_PIPE] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6170), + [anon_sym_STAR] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(6170), + [anon_sym_void] = ACTIONS(6172), + [anon_sym_noreturn] = ACTIONS(6172), + [anon_sym_type] = ACTIONS(6172), + [anon_sym_anyopaque] = ACTIONS(6172), + [anon_sym_bool] = ACTIONS(6172), + [anon_sym_int] = ACTIONS(6172), + [anon_sym_uint] = ACTIONS(6172), + [anon_sym_float] = ACTIONS(6172), + [anon_sym_range] = ACTIONS(6172), + [anon_sym_i8] = ACTIONS(6172), + [anon_sym_i16] = ACTIONS(6172), + [anon_sym_i32] = ACTIONS(6172), + [anon_sym_i64] = ACTIONS(6172), + [anon_sym_u8] = ACTIONS(6172), + [anon_sym_u16] = ACTIONS(6172), + [anon_sym_u32] = ACTIONS(6172), + [anon_sym_u64] = ACTIONS(6172), + [anon_sym_isize] = ACTIONS(6172), + [anon_sym_usize] = ACTIONS(6172), + [anon_sym_f32] = ACTIONS(6172), + [anon_sym_f64] = ACTIONS(6172), + [anon_sym_c_char] = ACTIONS(6172), + [anon_sym_c_schar] = ACTIONS(6172), + [anon_sym_c_uchar] = ACTIONS(6172), + [anon_sym_c_short] = ACTIONS(6172), + [anon_sym_c_ushort] = ACTIONS(6172), + [anon_sym_c_int] = ACTIONS(6172), + [anon_sym_c_uint] = ACTIONS(6172), + [anon_sym_c_long] = ACTIONS(6172), + [anon_sym_c_ulong] = ACTIONS(6172), + [anon_sym_c_longlong] = ACTIONS(6172), + [anon_sym_c_ulonglong] = ACTIONS(6172), + [anon_sym_c_float] = ACTIONS(6172), + [anon_sym_c_double] = ACTIONS(6172), + [anon_sym_c_longdouble] = ACTIONS(6172), + [anon_sym_return] = ACTIONS(6172), + [anon_sym_yield] = ACTIONS(6172), + [anon_sym_COLON] = ACTIONS(6170), + [anon_sym_break] = ACTIONS(6172), + [anon_sym_continue] = ACTIONS(6172), + [anon_sym_defer] = ACTIONS(6172), + [anon_sym_errdefer] = ACTIONS(6172), + [anon_sym_if] = ACTIONS(6172), + [anon_sym_else] = ACTIONS(6172), + [anon_sym_while] = ACTIONS(6172), + [anon_sym_expand] = ACTIONS(6172), + [anon_sym_for] = ACTIONS(6172), + [anon_sym_match] = ACTIONS(6172), + [anon_sym_DOT_DOT] = ACTIONS(6172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6170), + [anon_sym_orelse] = ACTIONS(6172), + [anon_sym_or] = ACTIONS(6172), + [anon_sym_and] = ACTIONS(6172), + [anon_sym_EQ_EQ] = ACTIONS(6170), + [anon_sym_BANG_EQ] = ACTIONS(6170), + [anon_sym_LT] = ACTIONS(6172), + [anon_sym_LT_EQ] = ACTIONS(6170), + [anon_sym_GT] = ACTIONS(6172), + [anon_sym_GT_EQ] = ACTIONS(6170), + [anon_sym_AMP] = ACTIONS(6170), + [anon_sym_xor] = ACTIONS(6172), + [anon_sym_LT_LT] = ACTIONS(6172), + [anon_sym_GT_GT] = ACTIONS(6170), + [anon_sym_LT_LT_PIPE] = ACTIONS(6170), + [anon_sym_PLUS] = ACTIONS(6170), + [anon_sym_SLASH] = ACTIONS(6170), + [anon_sym_catch] = ACTIONS(6172), + [anon_sym_TILDE] = ACTIONS(6170), + [anon_sym_try] = ACTIONS(6172), + [anon_sym_DOT] = ACTIONS(6172), + [anon_sym_CARET] = ACTIONS(6170), + [anon_sym_true] = ACTIONS(6172), + [anon_sym_false] = ACTIONS(6172), + [anon_sym_null] = ACTIONS(6172), + [anon_sym_unreachable] = ACTIONS(6172), + [anon_sym_undefined] = ACTIONS(6172), + [sym_sink] = ACTIONS(6172), + [sym_integer] = ACTIONS(6172), + [sym_float] = ACTIONS(6170), + [anon_sym_DQUOTE] = ACTIONS(6170), + [sym_multiline_string] = ACTIONS(6170), + [sym_character] = ACTIONS(6170), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6170), + }, + [STATE(4426)] = { + [ts_builtin_sym_end] = ACTIONS(4966), + [sym_identifier] = ACTIONS(4968), + [anon_sym_import] = ACTIONS(4968), + [anon_sym_test] = ACTIONS(4968), + [anon_sym_hide] = ACTIONS(4968), + [anon_sym_func] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_struct] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_QMARK] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_void] = ACTIONS(4968), + [anon_sym_noreturn] = ACTIONS(4968), + [anon_sym_type] = ACTIONS(4968), + [anon_sym_anyopaque] = ACTIONS(4968), + [anon_sym_bool] = ACTIONS(4968), + [anon_sym_int] = ACTIONS(4968), + [anon_sym_uint] = ACTIONS(4968), + [anon_sym_float] = ACTIONS(4968), + [anon_sym_range] = ACTIONS(4968), + [anon_sym_i8] = ACTIONS(4968), + [anon_sym_i16] = ACTIONS(4968), + [anon_sym_i32] = ACTIONS(4968), + [anon_sym_i64] = ACTIONS(4968), + [anon_sym_u8] = ACTIONS(4968), + [anon_sym_u16] = ACTIONS(4968), + [anon_sym_u32] = ACTIONS(4968), + [anon_sym_u64] = ACTIONS(4968), + [anon_sym_isize] = ACTIONS(4968), + [anon_sym_usize] = ACTIONS(4968), + [anon_sym_f32] = ACTIONS(4968), + [anon_sym_f64] = ACTIONS(4968), + [anon_sym_c_char] = ACTIONS(4968), + [anon_sym_c_schar] = ACTIONS(4968), + [anon_sym_c_uchar] = ACTIONS(4968), + [anon_sym_c_short] = ACTIONS(4968), + [anon_sym_c_ushort] = ACTIONS(4968), + [anon_sym_c_int] = ACTIONS(4968), + [anon_sym_c_uint] = ACTIONS(4968), + [anon_sym_c_long] = ACTIONS(4968), + [anon_sym_c_ulong] = ACTIONS(4968), + [anon_sym_c_longlong] = ACTIONS(4968), + [anon_sym_c_ulonglong] = ACTIONS(4968), + [anon_sym_c_float] = ACTIONS(4968), + [anon_sym_c_double] = ACTIONS(4968), + [anon_sym_c_longdouble] = ACTIONS(4968), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_yield] = ACTIONS(4968), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_defer] = ACTIONS(4968), + [anon_sym_errdefer] = ACTIONS(4968), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_while] = ACTIONS(4968), + [anon_sym_expand] = ACTIONS(4968), + [anon_sym_for] = ACTIONS(4968), + [anon_sym_match] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4966), + [anon_sym_orelse] = ACTIONS(4968), + [anon_sym_or] = ACTIONS(4968), + [anon_sym_and] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_xor] = ACTIONS(4968), + [anon_sym_LT_LT] = ACTIONS(4968), + [anon_sym_GT_GT] = ACTIONS(4966), + [anon_sym_LT_LT_PIPE] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_catch] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4968), + [anon_sym_unreachable] = ACTIONS(4968), + [anon_sym_undefined] = ACTIONS(4968), + [sym_sink] = ACTIONS(4968), + [sym_integer] = ACTIONS(4968), + [sym_float] = ACTIONS(4966), + [anon_sym_DQUOTE] = ACTIONS(4966), + [sym_multiline_string] = ACTIONS(4966), + [sym_character] = ACTIONS(4966), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4966), + }, + [STATE(4427)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4428), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7170), + }, + [STATE(4428)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4429)] = { + [ts_builtin_sym_end] = ACTIONS(4970), + [sym_identifier] = ACTIONS(4972), + [anon_sym_import] = ACTIONS(4972), + [anon_sym_test] = ACTIONS(4972), + [anon_sym_hide] = ACTIONS(4972), + [anon_sym_func] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_struct] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_QMARK] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_void] = ACTIONS(4972), + [anon_sym_noreturn] = ACTIONS(4972), + [anon_sym_type] = ACTIONS(4972), + [anon_sym_anyopaque] = ACTIONS(4972), + [anon_sym_bool] = ACTIONS(4972), + [anon_sym_int] = ACTIONS(4972), + [anon_sym_uint] = ACTIONS(4972), + [anon_sym_float] = ACTIONS(4972), + [anon_sym_range] = ACTIONS(4972), + [anon_sym_i8] = ACTIONS(4972), + [anon_sym_i16] = ACTIONS(4972), + [anon_sym_i32] = ACTIONS(4972), + [anon_sym_i64] = ACTIONS(4972), + [anon_sym_u8] = ACTIONS(4972), + [anon_sym_u16] = ACTIONS(4972), + [anon_sym_u32] = ACTIONS(4972), + [anon_sym_u64] = ACTIONS(4972), + [anon_sym_isize] = ACTIONS(4972), + [anon_sym_usize] = ACTIONS(4972), + [anon_sym_f32] = ACTIONS(4972), + [anon_sym_f64] = ACTIONS(4972), + [anon_sym_c_char] = ACTIONS(4972), + [anon_sym_c_schar] = ACTIONS(4972), + [anon_sym_c_uchar] = ACTIONS(4972), + [anon_sym_c_short] = ACTIONS(4972), + [anon_sym_c_ushort] = ACTIONS(4972), + [anon_sym_c_int] = ACTIONS(4972), + [anon_sym_c_uint] = ACTIONS(4972), + [anon_sym_c_long] = ACTIONS(4972), + [anon_sym_c_ulong] = ACTIONS(4972), + [anon_sym_c_longlong] = ACTIONS(4972), + [anon_sym_c_ulonglong] = ACTIONS(4972), + [anon_sym_c_float] = ACTIONS(4972), + [anon_sym_c_double] = ACTIONS(4972), + [anon_sym_c_longdouble] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_defer] = ACTIONS(4972), + [anon_sym_errdefer] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_expand] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4970), + [anon_sym_orelse] = ACTIONS(4972), + [anon_sym_or] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_xor] = ACTIONS(4972), + [anon_sym_LT_LT] = ACTIONS(4972), + [anon_sym_GT_GT] = ACTIONS(4970), + [anon_sym_LT_LT_PIPE] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_catch] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_unreachable] = ACTIONS(4972), + [anon_sym_undefined] = ACTIONS(4972), + [sym_sink] = ACTIONS(4972), + [sym_integer] = ACTIONS(4972), + [sym_float] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(4970), + [sym_multiline_string] = ACTIONS(4970), + [sym_character] = ACTIONS(4970), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4970), + }, + [STATE(4430)] = { + [ts_builtin_sym_end] = ACTIONS(5738), + [sym_identifier] = ACTIONS(5740), + [anon_sym_import] = ACTIONS(5740), + [anon_sym_test] = ACTIONS(5740), + [anon_sym_hide] = ACTIONS(5740), + [anon_sym_func] = ACTIONS(5740), + [anon_sym_BANG] = ACTIONS(5740), + [anon_sym_struct] = ACTIONS(5740), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(5738), + [anon_sym_RBRACE] = ACTIONS(5738), + [anon_sym_DASH] = ACTIONS(5738), + [anon_sym_DOLLAR] = ACTIONS(5738), + [anon_sym_PIPE] = ACTIONS(5738), + [anon_sym_QMARK] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5738), + [anon_sym_LBRACK] = ACTIONS(5738), + [anon_sym_void] = ACTIONS(5740), + [anon_sym_noreturn] = ACTIONS(5740), + [anon_sym_type] = ACTIONS(5740), + [anon_sym_anyopaque] = ACTIONS(5740), + [anon_sym_bool] = ACTIONS(5740), + [anon_sym_int] = ACTIONS(5740), + [anon_sym_uint] = ACTIONS(5740), + [anon_sym_float] = ACTIONS(5740), + [anon_sym_range] = ACTIONS(5740), + [anon_sym_i8] = ACTIONS(5740), + [anon_sym_i16] = ACTIONS(5740), + [anon_sym_i32] = ACTIONS(5740), + [anon_sym_i64] = ACTIONS(5740), + [anon_sym_u8] = ACTIONS(5740), + [anon_sym_u16] = ACTIONS(5740), + [anon_sym_u32] = ACTIONS(5740), + [anon_sym_u64] = ACTIONS(5740), + [anon_sym_isize] = ACTIONS(5740), + [anon_sym_usize] = ACTIONS(5740), + [anon_sym_f32] = ACTIONS(5740), + [anon_sym_f64] = ACTIONS(5740), + [anon_sym_c_char] = ACTIONS(5740), + [anon_sym_c_schar] = ACTIONS(5740), + [anon_sym_c_uchar] = ACTIONS(5740), + [anon_sym_c_short] = ACTIONS(5740), + [anon_sym_c_ushort] = ACTIONS(5740), + [anon_sym_c_int] = ACTIONS(5740), + [anon_sym_c_uint] = ACTIONS(5740), + [anon_sym_c_long] = ACTIONS(5740), + [anon_sym_c_ulong] = ACTIONS(5740), + [anon_sym_c_longlong] = ACTIONS(5740), + [anon_sym_c_ulonglong] = ACTIONS(5740), + [anon_sym_c_float] = ACTIONS(5740), + [anon_sym_c_double] = ACTIONS(5740), + [anon_sym_c_longdouble] = ACTIONS(5740), + [anon_sym_return] = ACTIONS(5740), + [anon_sym_yield] = ACTIONS(5740), + [anon_sym_COLON] = ACTIONS(5738), + [anon_sym_break] = ACTIONS(5740), + [anon_sym_continue] = ACTIONS(5740), + [anon_sym_defer] = ACTIONS(5740), + [anon_sym_errdefer] = ACTIONS(5740), + [anon_sym_if] = ACTIONS(5740), + [anon_sym_else] = ACTIONS(5740), + [anon_sym_while] = ACTIONS(5740), + [anon_sym_expand] = ACTIONS(5740), + [anon_sym_for] = ACTIONS(5740), + [anon_sym_match] = ACTIONS(5740), + [anon_sym_DOT_DOT] = ACTIONS(5740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5738), + [anon_sym_orelse] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5740), + [anon_sym_and] = ACTIONS(5740), + [anon_sym_EQ_EQ] = ACTIONS(5738), + [anon_sym_BANG_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_GT] = ACTIONS(5740), + [anon_sym_GT_EQ] = ACTIONS(5738), + [anon_sym_AMP] = ACTIONS(5738), + [anon_sym_xor] = ACTIONS(5740), + [anon_sym_LT_LT] = ACTIONS(5740), + [anon_sym_GT_GT] = ACTIONS(5738), + [anon_sym_LT_LT_PIPE] = ACTIONS(5738), + [anon_sym_PLUS] = ACTIONS(5738), + [anon_sym_SLASH] = ACTIONS(5738), + [anon_sym_catch] = ACTIONS(5740), + [anon_sym_TILDE] = ACTIONS(5738), + [anon_sym_try] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5740), + [anon_sym_CARET] = ACTIONS(5738), + [anon_sym_true] = ACTIONS(5740), + [anon_sym_false] = ACTIONS(5740), + [anon_sym_null] = ACTIONS(5740), + [anon_sym_unreachable] = ACTIONS(5740), + [anon_sym_undefined] = ACTIONS(5740), + [sym_sink] = ACTIONS(5740), + [sym_integer] = ACTIONS(5740), + [sym_float] = ACTIONS(5738), + [anon_sym_DQUOTE] = ACTIONS(5738), + [sym_multiline_string] = ACTIONS(5738), + [sym_character] = ACTIONS(5738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5738), + }, + [STATE(4431)] = { + [ts_builtin_sym_end] = ACTIONS(6174), + [sym_identifier] = ACTIONS(6176), + [anon_sym_import] = ACTIONS(6176), + [anon_sym_test] = ACTIONS(6176), + [anon_sym_hide] = ACTIONS(6176), + [anon_sym_func] = ACTIONS(6176), + [anon_sym_BANG] = ACTIONS(6176), + [anon_sym_struct] = ACTIONS(6176), + [anon_sym_LPAREN] = ACTIONS(6174), + [anon_sym_LBRACE] = ACTIONS(6174), + [anon_sym_RBRACE] = ACTIONS(6174), + [anon_sym_DASH] = ACTIONS(6174), + [anon_sym_DOLLAR] = ACTIONS(6174), + [anon_sym_PIPE] = ACTIONS(6174), + [anon_sym_QMARK] = ACTIONS(6174), + [anon_sym_STAR] = ACTIONS(6174), + [anon_sym_LBRACK] = ACTIONS(6174), + [anon_sym_void] = ACTIONS(6176), + [anon_sym_noreturn] = ACTIONS(6176), + [anon_sym_type] = ACTIONS(6176), + [anon_sym_anyopaque] = ACTIONS(6176), + [anon_sym_bool] = ACTIONS(6176), + [anon_sym_int] = ACTIONS(6176), + [anon_sym_uint] = ACTIONS(6176), + [anon_sym_float] = ACTIONS(6176), + [anon_sym_range] = ACTIONS(6176), + [anon_sym_i8] = ACTIONS(6176), + [anon_sym_i16] = ACTIONS(6176), + [anon_sym_i32] = ACTIONS(6176), + [anon_sym_i64] = ACTIONS(6176), + [anon_sym_u8] = ACTIONS(6176), + [anon_sym_u16] = ACTIONS(6176), + [anon_sym_u32] = ACTIONS(6176), + [anon_sym_u64] = ACTIONS(6176), + [anon_sym_isize] = ACTIONS(6176), + [anon_sym_usize] = ACTIONS(6176), + [anon_sym_f32] = ACTIONS(6176), + [anon_sym_f64] = ACTIONS(6176), + [anon_sym_c_char] = ACTIONS(6176), + [anon_sym_c_schar] = ACTIONS(6176), + [anon_sym_c_uchar] = ACTIONS(6176), + [anon_sym_c_short] = ACTIONS(6176), + [anon_sym_c_ushort] = ACTIONS(6176), + [anon_sym_c_int] = ACTIONS(6176), + [anon_sym_c_uint] = ACTIONS(6176), + [anon_sym_c_long] = ACTIONS(6176), + [anon_sym_c_ulong] = ACTIONS(6176), + [anon_sym_c_longlong] = ACTIONS(6176), + [anon_sym_c_ulonglong] = ACTIONS(6176), + [anon_sym_c_float] = ACTIONS(6176), + [anon_sym_c_double] = ACTIONS(6176), + [anon_sym_c_longdouble] = ACTIONS(6176), + [anon_sym_return] = ACTIONS(6176), + [anon_sym_yield] = ACTIONS(6176), + [anon_sym_COLON] = ACTIONS(6174), + [anon_sym_break] = ACTIONS(6176), + [anon_sym_continue] = ACTIONS(6176), + [anon_sym_defer] = ACTIONS(6176), + [anon_sym_errdefer] = ACTIONS(6176), + [anon_sym_if] = ACTIONS(6176), + [anon_sym_else] = ACTIONS(6176), + [anon_sym_while] = ACTIONS(6176), + [anon_sym_expand] = ACTIONS(6176), + [anon_sym_for] = ACTIONS(6176), + [anon_sym_match] = ACTIONS(6176), + [anon_sym_DOT_DOT] = ACTIONS(6176), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6174), + [anon_sym_orelse] = ACTIONS(6176), + [anon_sym_or] = ACTIONS(6176), + [anon_sym_and] = ACTIONS(6176), + [anon_sym_EQ_EQ] = ACTIONS(6174), + [anon_sym_BANG_EQ] = ACTIONS(6174), + [anon_sym_LT] = ACTIONS(6176), + [anon_sym_LT_EQ] = ACTIONS(6174), + [anon_sym_GT] = ACTIONS(6176), + [anon_sym_GT_EQ] = ACTIONS(6174), + [anon_sym_AMP] = ACTIONS(6174), + [anon_sym_xor] = ACTIONS(6176), + [anon_sym_LT_LT] = ACTIONS(6176), + [anon_sym_GT_GT] = ACTIONS(6174), + [anon_sym_LT_LT_PIPE] = ACTIONS(6174), + [anon_sym_PLUS] = ACTIONS(6174), + [anon_sym_SLASH] = ACTIONS(6174), + [anon_sym_catch] = ACTIONS(6176), + [anon_sym_TILDE] = ACTIONS(6174), + [anon_sym_try] = ACTIONS(6176), + [anon_sym_DOT] = ACTIONS(6176), + [anon_sym_CARET] = ACTIONS(6174), + [anon_sym_true] = ACTIONS(6176), + [anon_sym_false] = ACTIONS(6176), + [anon_sym_null] = ACTIONS(6176), + [anon_sym_unreachable] = ACTIONS(6176), + [anon_sym_undefined] = ACTIONS(6176), + [sym_sink] = ACTIONS(6176), + [sym_integer] = ACTIONS(6176), + [sym_float] = ACTIONS(6174), + [anon_sym_DQUOTE] = ACTIONS(6174), + [sym_multiline_string] = ACTIONS(6174), + [sym_character] = ACTIONS(6174), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6174), + }, + [STATE(4432)] = { + [ts_builtin_sym_end] = ACTIONS(4974), + [sym_identifier] = ACTIONS(4976), + [anon_sym_import] = ACTIONS(4976), + [anon_sym_test] = ACTIONS(4976), + [anon_sym_hide] = ACTIONS(4976), + [anon_sym_func] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4974), + [anon_sym_PIPE] = ACTIONS(4974), + [anon_sym_QMARK] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_void] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym_type] = ACTIONS(4976), + [anon_sym_anyopaque] = ACTIONS(4976), + [anon_sym_bool] = ACTIONS(4976), + [anon_sym_int] = ACTIONS(4976), + [anon_sym_uint] = ACTIONS(4976), + [anon_sym_float] = ACTIONS(4976), + [anon_sym_range] = ACTIONS(4976), + [anon_sym_i8] = ACTIONS(4976), + [anon_sym_i16] = ACTIONS(4976), + [anon_sym_i32] = ACTIONS(4976), + [anon_sym_i64] = ACTIONS(4976), + [anon_sym_u8] = ACTIONS(4976), + [anon_sym_u16] = ACTIONS(4976), + [anon_sym_u32] = ACTIONS(4976), + [anon_sym_u64] = ACTIONS(4976), + [anon_sym_isize] = ACTIONS(4976), + [anon_sym_usize] = ACTIONS(4976), + [anon_sym_f32] = ACTIONS(4976), + [anon_sym_f64] = ACTIONS(4976), + [anon_sym_c_char] = ACTIONS(4976), + [anon_sym_c_schar] = ACTIONS(4976), + [anon_sym_c_uchar] = ACTIONS(4976), + [anon_sym_c_short] = ACTIONS(4976), + [anon_sym_c_ushort] = ACTIONS(4976), + [anon_sym_c_int] = ACTIONS(4976), + [anon_sym_c_uint] = ACTIONS(4976), + [anon_sym_c_long] = ACTIONS(4976), + [anon_sym_c_ulong] = ACTIONS(4976), + [anon_sym_c_longlong] = ACTIONS(4976), + [anon_sym_c_ulonglong] = ACTIONS(4976), + [anon_sym_c_float] = ACTIONS(4976), + [anon_sym_c_double] = ACTIONS(4976), + [anon_sym_c_longdouble] = ACTIONS(4976), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_yield] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4974), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_defer] = ACTIONS(4976), + [anon_sym_errdefer] = ACTIONS(4976), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_while] = ACTIONS(4976), + [anon_sym_expand] = ACTIONS(4976), + [anon_sym_for] = ACTIONS(4976), + [anon_sym_match] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), + [anon_sym_orelse] = ACTIONS(4976), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4974), + [anon_sym_LT_LT_PIPE] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_catch] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_unreachable] = ACTIONS(4976), + [anon_sym_undefined] = ACTIONS(4976), + [sym_sink] = ACTIONS(4976), + [sym_integer] = ACTIONS(4976), + [sym_float] = ACTIONS(4974), + [anon_sym_DQUOTE] = ACTIONS(4974), + [sym_multiline_string] = ACTIONS(4974), + [sym_character] = ACTIONS(4974), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4974), + }, + [STATE(4433)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10998), + [sym_labeled_block] = STATE(10998), + [sym_if_statement] = STATE(10998), + [sym_while_statement] = STATE(10998), + [sym_for_statement] = STATE(10998), + [sym_match_statement] = STATE(10998), + [sym__value] = STATE(10998), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4367), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7172), + }, + [STATE(4434)] = { + [ts_builtin_sym_end] = ACTIONS(5274), + [sym_identifier] = ACTIONS(5276), + [anon_sym_import] = ACTIONS(5276), + [anon_sym_test] = ACTIONS(5276), + [anon_sym_hide] = ACTIONS(5276), + [anon_sym_func] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_struct] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5274), + [anon_sym_PIPE] = ACTIONS(5274), + [anon_sym_QMARK] = ACTIONS(5274), + [anon_sym_STAR] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_void] = ACTIONS(5276), + [anon_sym_noreturn] = ACTIONS(5276), + [anon_sym_type] = ACTIONS(5276), + [anon_sym_anyopaque] = ACTIONS(5276), + [anon_sym_bool] = ACTIONS(5276), + [anon_sym_int] = ACTIONS(5276), + [anon_sym_uint] = ACTIONS(5276), + [anon_sym_float] = ACTIONS(5276), + [anon_sym_range] = ACTIONS(5276), + [anon_sym_i8] = ACTIONS(5276), + [anon_sym_i16] = ACTIONS(5276), + [anon_sym_i32] = ACTIONS(5276), + [anon_sym_i64] = ACTIONS(5276), + [anon_sym_u8] = ACTIONS(5276), + [anon_sym_u16] = ACTIONS(5276), + [anon_sym_u32] = ACTIONS(5276), + [anon_sym_u64] = ACTIONS(5276), + [anon_sym_isize] = ACTIONS(5276), + [anon_sym_usize] = ACTIONS(5276), + [anon_sym_f32] = ACTIONS(5276), + [anon_sym_f64] = ACTIONS(5276), + [anon_sym_c_char] = ACTIONS(5276), + [anon_sym_c_schar] = ACTIONS(5276), + [anon_sym_c_uchar] = ACTIONS(5276), + [anon_sym_c_short] = ACTIONS(5276), + [anon_sym_c_ushort] = ACTIONS(5276), + [anon_sym_c_int] = ACTIONS(5276), + [anon_sym_c_uint] = ACTIONS(5276), + [anon_sym_c_long] = ACTIONS(5276), + [anon_sym_c_ulong] = ACTIONS(5276), + [anon_sym_c_longlong] = ACTIONS(5276), + [anon_sym_c_ulonglong] = ACTIONS(5276), + [anon_sym_c_float] = ACTIONS(5276), + [anon_sym_c_double] = ACTIONS(5276), + [anon_sym_c_longdouble] = ACTIONS(5276), + [anon_sym_return] = ACTIONS(5276), + [anon_sym_yield] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5274), + [anon_sym_break] = ACTIONS(5276), + [anon_sym_continue] = ACTIONS(5276), + [anon_sym_defer] = ACTIONS(5276), + [anon_sym_errdefer] = ACTIONS(5276), + [anon_sym_if] = ACTIONS(5276), + [anon_sym_else] = ACTIONS(5276), + [anon_sym_while] = ACTIONS(5276), + [anon_sym_expand] = ACTIONS(5276), + [anon_sym_for] = ACTIONS(5276), + [anon_sym_match] = ACTIONS(5276), + [anon_sym_DOT_DOT] = ACTIONS(5276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5274), + [anon_sym_orelse] = ACTIONS(5276), + [anon_sym_or] = ACTIONS(5276), + [anon_sym_and] = ACTIONS(5276), + [anon_sym_EQ_EQ] = ACTIONS(5274), + [anon_sym_BANG_EQ] = ACTIONS(5274), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_LT_EQ] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_GT_EQ] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(5274), + [anon_sym_xor] = ACTIONS(5276), + [anon_sym_LT_LT] = ACTIONS(5276), + [anon_sym_GT_GT] = ACTIONS(5274), + [anon_sym_LT_LT_PIPE] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_SLASH] = ACTIONS(5274), + [anon_sym_catch] = ACTIONS(5276), + [anon_sym_TILDE] = ACTIONS(5274), + [anon_sym_try] = ACTIONS(5276), + [anon_sym_DOT] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5274), + [anon_sym_true] = ACTIONS(5276), + [anon_sym_false] = ACTIONS(5276), + [anon_sym_null] = ACTIONS(5276), + [anon_sym_unreachable] = ACTIONS(5276), + [anon_sym_undefined] = ACTIONS(5276), + [sym_sink] = ACTIONS(5276), + [sym_integer] = ACTIONS(5276), + [sym_float] = ACTIONS(5274), + [anon_sym_DQUOTE] = ACTIONS(5274), + [sym_multiline_string] = ACTIONS(5274), + [sym_character] = ACTIONS(5274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5274), + }, + [STATE(4435)] = { + [ts_builtin_sym_end] = ACTIONS(4670), + [sym_identifier] = ACTIONS(4672), + [anon_sym_import] = ACTIONS(4672), + [anon_sym_test] = ACTIONS(4672), + [anon_sym_hide] = ACTIONS(4672), + [anon_sym_func] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_struct] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_DOLLAR] = ACTIONS(4670), + [anon_sym_PIPE] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_void] = ACTIONS(4672), + [anon_sym_noreturn] = ACTIONS(4672), + [anon_sym_type] = ACTIONS(4672), + [anon_sym_anyopaque] = ACTIONS(4672), + [anon_sym_bool] = ACTIONS(4672), + [anon_sym_int] = ACTIONS(4672), + [anon_sym_uint] = ACTIONS(4672), + [anon_sym_float] = ACTIONS(4672), + [anon_sym_range] = ACTIONS(4672), + [anon_sym_i8] = ACTIONS(4672), + [anon_sym_i16] = ACTIONS(4672), + [anon_sym_i32] = ACTIONS(4672), + [anon_sym_i64] = ACTIONS(4672), + [anon_sym_u8] = ACTIONS(4672), + [anon_sym_u16] = ACTIONS(4672), + [anon_sym_u32] = ACTIONS(4672), + [anon_sym_u64] = ACTIONS(4672), + [anon_sym_isize] = ACTIONS(4672), + [anon_sym_usize] = ACTIONS(4672), + [anon_sym_f32] = ACTIONS(4672), + [anon_sym_f64] = ACTIONS(4672), + [anon_sym_c_char] = ACTIONS(4672), + [anon_sym_c_schar] = ACTIONS(4672), + [anon_sym_c_uchar] = ACTIONS(4672), + [anon_sym_c_short] = ACTIONS(4672), + [anon_sym_c_ushort] = ACTIONS(4672), + [anon_sym_c_int] = ACTIONS(4672), + [anon_sym_c_uint] = ACTIONS(4672), + [anon_sym_c_long] = ACTIONS(4672), + [anon_sym_c_ulong] = ACTIONS(4672), + [anon_sym_c_longlong] = ACTIONS(4672), + [anon_sym_c_ulonglong] = ACTIONS(4672), + [anon_sym_c_float] = ACTIONS(4672), + [anon_sym_c_double] = ACTIONS(4672), + [anon_sym_c_longdouble] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_yield] = ACTIONS(4672), + [anon_sym_COLON] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_defer] = ACTIONS(4672), + [anon_sym_errdefer] = ACTIONS(4672), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_expand] = ACTIONS(4672), + [anon_sym_for] = ACTIONS(4672), + [anon_sym_match] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4670), + [anon_sym_orelse] = ACTIONS(4672), + [anon_sym_or] = ACTIONS(4672), + [anon_sym_and] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_AMP] = ACTIONS(4670), + [anon_sym_xor] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4670), + [anon_sym_LT_LT_PIPE] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_catch] = ACTIONS(4672), + [anon_sym_TILDE] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4670), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4672), + [anon_sym_unreachable] = ACTIONS(4672), + [anon_sym_undefined] = ACTIONS(4672), + [sym_sink] = ACTIONS(4672), + [sym_integer] = ACTIONS(4672), + [sym_float] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(4670), + [sym_multiline_string] = ACTIONS(4670), + [sym_character] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4670), + }, + [STATE(4436)] = { + [ts_builtin_sym_end] = ACTIONS(4978), + [sym_identifier] = ACTIONS(4980), + [anon_sym_import] = ACTIONS(4980), + [anon_sym_test] = ACTIONS(4980), + [anon_sym_hide] = ACTIONS(4980), + [anon_sym_func] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_struct] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4978), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_void] = ACTIONS(4980), + [anon_sym_noreturn] = ACTIONS(4980), + [anon_sym_type] = ACTIONS(4980), + [anon_sym_anyopaque] = ACTIONS(4980), + [anon_sym_bool] = ACTIONS(4980), + [anon_sym_int] = ACTIONS(4980), + [anon_sym_uint] = ACTIONS(4980), + [anon_sym_float] = ACTIONS(4980), + [anon_sym_range] = ACTIONS(4980), + [anon_sym_i8] = ACTIONS(4980), + [anon_sym_i16] = ACTIONS(4980), + [anon_sym_i32] = ACTIONS(4980), + [anon_sym_i64] = ACTIONS(4980), + [anon_sym_u8] = ACTIONS(4980), + [anon_sym_u16] = ACTIONS(4980), + [anon_sym_u32] = ACTIONS(4980), + [anon_sym_u64] = ACTIONS(4980), + [anon_sym_isize] = ACTIONS(4980), + [anon_sym_usize] = ACTIONS(4980), + [anon_sym_f32] = ACTIONS(4980), + [anon_sym_f64] = ACTIONS(4980), + [anon_sym_c_char] = ACTIONS(4980), + [anon_sym_c_schar] = ACTIONS(4980), + [anon_sym_c_uchar] = ACTIONS(4980), + [anon_sym_c_short] = ACTIONS(4980), + [anon_sym_c_ushort] = ACTIONS(4980), + [anon_sym_c_int] = ACTIONS(4980), + [anon_sym_c_uint] = ACTIONS(4980), + [anon_sym_c_long] = ACTIONS(4980), + [anon_sym_c_ulong] = ACTIONS(4980), + [anon_sym_c_longlong] = ACTIONS(4980), + [anon_sym_c_ulonglong] = ACTIONS(4980), + [anon_sym_c_float] = ACTIONS(4980), + [anon_sym_c_double] = ACTIONS(4980), + [anon_sym_c_longdouble] = ACTIONS(4980), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_yield] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4978), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_defer] = ACTIONS(4980), + [anon_sym_errdefer] = ACTIONS(4980), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_while] = ACTIONS(4980), + [anon_sym_expand] = ACTIONS(4980), + [anon_sym_for] = ACTIONS(4980), + [anon_sym_match] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4978), + [anon_sym_orelse] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_xor] = ACTIONS(4980), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4978), + [anon_sym_LT_LT_PIPE] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4978), + [anon_sym_catch] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_null] = ACTIONS(4980), + [anon_sym_unreachable] = ACTIONS(4980), + [anon_sym_undefined] = ACTIONS(4980), + [sym_sink] = ACTIONS(4980), + [sym_integer] = ACTIONS(4980), + [sym_float] = ACTIONS(4978), + [anon_sym_DQUOTE] = ACTIONS(4978), + [sym_multiline_string] = ACTIONS(4978), + [sym_character] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4978), + }, + [STATE(4437)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4447), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7174), + }, + [STATE(4438)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4450), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7176), + }, + [STATE(4439)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4440)] = { + [ts_builtin_sym_end] = ACTIONS(5180), + [sym_identifier] = ACTIONS(5182), + [anon_sym_import] = ACTIONS(5182), + [anon_sym_test] = ACTIONS(5182), + [anon_sym_hide] = ACTIONS(5182), + [anon_sym_func] = ACTIONS(5182), + [anon_sym_BANG] = ACTIONS(5182), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_LPAREN] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5180), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_QMARK] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_void] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym_type] = ACTIONS(5182), + [anon_sym_anyopaque] = ACTIONS(5182), + [anon_sym_bool] = ACTIONS(5182), + [anon_sym_int] = ACTIONS(5182), + [anon_sym_uint] = ACTIONS(5182), + [anon_sym_float] = ACTIONS(5182), + [anon_sym_range] = ACTIONS(5182), + [anon_sym_i8] = ACTIONS(5182), + [anon_sym_i16] = ACTIONS(5182), + [anon_sym_i32] = ACTIONS(5182), + [anon_sym_i64] = ACTIONS(5182), + [anon_sym_u8] = ACTIONS(5182), + [anon_sym_u16] = ACTIONS(5182), + [anon_sym_u32] = ACTIONS(5182), + [anon_sym_u64] = ACTIONS(5182), + [anon_sym_isize] = ACTIONS(5182), + [anon_sym_usize] = ACTIONS(5182), + [anon_sym_f32] = ACTIONS(5182), + [anon_sym_f64] = ACTIONS(5182), + [anon_sym_c_char] = ACTIONS(5182), + [anon_sym_c_schar] = ACTIONS(5182), + [anon_sym_c_uchar] = ACTIONS(5182), + [anon_sym_c_short] = ACTIONS(5182), + [anon_sym_c_ushort] = ACTIONS(5182), + [anon_sym_c_int] = ACTIONS(5182), + [anon_sym_c_uint] = ACTIONS(5182), + [anon_sym_c_long] = ACTIONS(5182), + [anon_sym_c_ulong] = ACTIONS(5182), + [anon_sym_c_longlong] = ACTIONS(5182), + [anon_sym_c_ulonglong] = ACTIONS(5182), + [anon_sym_c_float] = ACTIONS(5182), + [anon_sym_c_double] = ACTIONS(5182), + [anon_sym_c_longdouble] = ACTIONS(5182), + [anon_sym_return] = ACTIONS(5182), + [anon_sym_yield] = ACTIONS(5182), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_break] = ACTIONS(5182), + [anon_sym_continue] = ACTIONS(5182), + [anon_sym_defer] = ACTIONS(5182), + [anon_sym_errdefer] = ACTIONS(5182), + [anon_sym_if] = ACTIONS(5182), + [anon_sym_else] = ACTIONS(5182), + [anon_sym_while] = ACTIONS(5182), + [anon_sym_expand] = ACTIONS(5182), + [anon_sym_for] = ACTIONS(5182), + [anon_sym_match] = ACTIONS(5182), + [anon_sym_DOT_DOT] = ACTIONS(5182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5180), + [anon_sym_orelse] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_BANG_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5182), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5182), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_LT_LT_PIPE] = ACTIONS(5180), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_catch] = ACTIONS(5182), + [anon_sym_TILDE] = ACTIONS(5180), + [anon_sym_try] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5182), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_true] = ACTIONS(5182), + [anon_sym_false] = ACTIONS(5182), + [anon_sym_null] = ACTIONS(5182), + [anon_sym_unreachable] = ACTIONS(5182), + [anon_sym_undefined] = ACTIONS(5182), + [sym_sink] = ACTIONS(5182), + [sym_integer] = ACTIONS(5182), + [sym_float] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [sym_multiline_string] = ACTIONS(5180), + [sym_character] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5180), + }, + [STATE(4441)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9119), + [sym_labeled_block] = STATE(9119), + [sym_if_statement] = STATE(9119), + [sym_while_statement] = STATE(9119), + [sym_for_statement] = STATE(9119), + [sym_match_statement] = STATE(9119), + [sym__value] = STATE(9119), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4576), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7178), + }, + [STATE(4442)] = { + [ts_builtin_sym_end] = ACTIONS(5184), + [sym_identifier] = ACTIONS(5186), + [anon_sym_import] = ACTIONS(5186), + [anon_sym_test] = ACTIONS(5186), + [anon_sym_hide] = ACTIONS(5186), + [anon_sym_func] = ACTIONS(5186), + [anon_sym_BANG] = ACTIONS(5186), + [anon_sym_struct] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5184), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_QMARK] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_void] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym_type] = ACTIONS(5186), + [anon_sym_anyopaque] = ACTIONS(5186), + [anon_sym_bool] = ACTIONS(5186), + [anon_sym_int] = ACTIONS(5186), + [anon_sym_uint] = ACTIONS(5186), + [anon_sym_float] = ACTIONS(5186), + [anon_sym_range] = ACTIONS(5186), + [anon_sym_i8] = ACTIONS(5186), + [anon_sym_i16] = ACTIONS(5186), + [anon_sym_i32] = ACTIONS(5186), + [anon_sym_i64] = ACTIONS(5186), + [anon_sym_u8] = ACTIONS(5186), + [anon_sym_u16] = ACTIONS(5186), + [anon_sym_u32] = ACTIONS(5186), + [anon_sym_u64] = ACTIONS(5186), + [anon_sym_isize] = ACTIONS(5186), + [anon_sym_usize] = ACTIONS(5186), + [anon_sym_f32] = ACTIONS(5186), + [anon_sym_f64] = ACTIONS(5186), + [anon_sym_c_char] = ACTIONS(5186), + [anon_sym_c_schar] = ACTIONS(5186), + [anon_sym_c_uchar] = ACTIONS(5186), + [anon_sym_c_short] = ACTIONS(5186), + [anon_sym_c_ushort] = ACTIONS(5186), + [anon_sym_c_int] = ACTIONS(5186), + [anon_sym_c_uint] = ACTIONS(5186), + [anon_sym_c_long] = ACTIONS(5186), + [anon_sym_c_ulong] = ACTIONS(5186), + [anon_sym_c_longlong] = ACTIONS(5186), + [anon_sym_c_ulonglong] = ACTIONS(5186), + [anon_sym_c_float] = ACTIONS(5186), + [anon_sym_c_double] = ACTIONS(5186), + [anon_sym_c_longdouble] = ACTIONS(5186), + [anon_sym_return] = ACTIONS(5186), + [anon_sym_yield] = ACTIONS(5186), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_break] = ACTIONS(5186), + [anon_sym_continue] = ACTIONS(5186), + [anon_sym_defer] = ACTIONS(5186), + [anon_sym_errdefer] = ACTIONS(5186), + [anon_sym_if] = ACTIONS(5186), + [anon_sym_else] = ACTIONS(5186), + [anon_sym_while] = ACTIONS(5186), + [anon_sym_expand] = ACTIONS(5186), + [anon_sym_for] = ACTIONS(5186), + [anon_sym_match] = ACTIONS(5186), + [anon_sym_DOT_DOT] = ACTIONS(5186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5184), + [anon_sym_orelse] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5186), + [anon_sym_and] = ACTIONS(5186), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5186), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_xor] = ACTIONS(5186), + [anon_sym_LT_LT] = ACTIONS(5186), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_LT_LT_PIPE] = ACTIONS(5184), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_catch] = ACTIONS(5186), + [anon_sym_TILDE] = ACTIONS(5184), + [anon_sym_try] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5186), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_true] = ACTIONS(5186), + [anon_sym_false] = ACTIONS(5186), + [anon_sym_null] = ACTIONS(5186), + [anon_sym_unreachable] = ACTIONS(5186), + [anon_sym_undefined] = ACTIONS(5186), + [sym_sink] = ACTIONS(5186), + [sym_integer] = ACTIONS(5186), + [sym_float] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [sym_multiline_string] = ACTIONS(5184), + [sym_character] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5184), + }, + [STATE(4443)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4444)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4445)] = { + [ts_builtin_sym_end] = ACTIONS(5664), + [sym_identifier] = ACTIONS(5666), + [anon_sym_import] = ACTIONS(5666), + [anon_sym_test] = ACTIONS(5666), + [anon_sym_hide] = ACTIONS(5666), + [anon_sym_func] = ACTIONS(5666), + [anon_sym_BANG] = ACTIONS(5666), + [anon_sym_struct] = ACTIONS(5666), + [anon_sym_LPAREN] = ACTIONS(5664), + [anon_sym_LBRACE] = ACTIONS(5664), + [anon_sym_RBRACE] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5664), + [anon_sym_DOLLAR] = ACTIONS(5664), + [anon_sym_PIPE] = ACTIONS(5664), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_LBRACK] = ACTIONS(5664), + [anon_sym_void] = ACTIONS(5666), + [anon_sym_noreturn] = ACTIONS(5666), + [anon_sym_type] = ACTIONS(5666), + [anon_sym_anyopaque] = ACTIONS(5666), + [anon_sym_bool] = ACTIONS(5666), + [anon_sym_int] = ACTIONS(5666), + [anon_sym_uint] = ACTIONS(5666), + [anon_sym_float] = ACTIONS(5666), + [anon_sym_range] = ACTIONS(5666), + [anon_sym_i8] = ACTIONS(5666), + [anon_sym_i16] = ACTIONS(5666), + [anon_sym_i32] = ACTIONS(5666), + [anon_sym_i64] = ACTIONS(5666), + [anon_sym_u8] = ACTIONS(5666), + [anon_sym_u16] = ACTIONS(5666), + [anon_sym_u32] = ACTIONS(5666), + [anon_sym_u64] = ACTIONS(5666), + [anon_sym_isize] = ACTIONS(5666), + [anon_sym_usize] = ACTIONS(5666), + [anon_sym_f32] = ACTIONS(5666), + [anon_sym_f64] = ACTIONS(5666), + [anon_sym_c_char] = ACTIONS(5666), + [anon_sym_c_schar] = ACTIONS(5666), + [anon_sym_c_uchar] = ACTIONS(5666), + [anon_sym_c_short] = ACTIONS(5666), + [anon_sym_c_ushort] = ACTIONS(5666), + [anon_sym_c_int] = ACTIONS(5666), + [anon_sym_c_uint] = ACTIONS(5666), + [anon_sym_c_long] = ACTIONS(5666), + [anon_sym_c_ulong] = ACTIONS(5666), + [anon_sym_c_longlong] = ACTIONS(5666), + [anon_sym_c_ulonglong] = ACTIONS(5666), + [anon_sym_c_float] = ACTIONS(5666), + [anon_sym_c_double] = ACTIONS(5666), + [anon_sym_c_longdouble] = ACTIONS(5666), + [anon_sym_return] = ACTIONS(5666), + [anon_sym_yield] = ACTIONS(5666), + [anon_sym_COLON] = ACTIONS(5664), + [anon_sym_break] = ACTIONS(5666), + [anon_sym_continue] = ACTIONS(5666), + [anon_sym_defer] = ACTIONS(5666), + [anon_sym_errdefer] = ACTIONS(5666), + [anon_sym_if] = ACTIONS(5666), + [anon_sym_else] = ACTIONS(5666), + [anon_sym_while] = ACTIONS(5666), + [anon_sym_expand] = ACTIONS(5666), + [anon_sym_for] = ACTIONS(5666), + [anon_sym_match] = ACTIONS(5666), + [anon_sym_DOT_DOT] = ACTIONS(5666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5664), + [anon_sym_orelse] = ACTIONS(5666), + [anon_sym_or] = ACTIONS(5666), + [anon_sym_and] = ACTIONS(5666), + [anon_sym_EQ_EQ] = ACTIONS(5664), + [anon_sym_BANG_EQ] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(5666), + [anon_sym_LT_EQ] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5666), + [anon_sym_GT_EQ] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5664), + [anon_sym_xor] = ACTIONS(5666), + [anon_sym_LT_LT] = ACTIONS(5666), + [anon_sym_GT_GT] = ACTIONS(5664), + [anon_sym_LT_LT_PIPE] = ACTIONS(5664), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5664), + [anon_sym_catch] = ACTIONS(5666), + [anon_sym_TILDE] = ACTIONS(5664), + [anon_sym_try] = ACTIONS(5666), + [anon_sym_DOT] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5664), + [anon_sym_true] = ACTIONS(5666), + [anon_sym_false] = ACTIONS(5666), + [anon_sym_null] = ACTIONS(5666), + [anon_sym_unreachable] = ACTIONS(5666), + [anon_sym_undefined] = ACTIONS(5666), + [sym_sink] = ACTIONS(5666), + [sym_integer] = ACTIONS(5666), + [sym_float] = ACTIONS(5664), + [anon_sym_DQUOTE] = ACTIONS(5664), + [sym_multiline_string] = ACTIONS(5664), + [sym_character] = ACTIONS(5664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5664), + }, + [STATE(4446)] = { + [ts_builtin_sym_end] = ACTIONS(5604), + [sym_identifier] = ACTIONS(5606), + [anon_sym_import] = ACTIONS(5606), + [anon_sym_test] = ACTIONS(5606), + [anon_sym_hide] = ACTIONS(5606), + [anon_sym_func] = ACTIONS(5606), + [anon_sym_BANG] = ACTIONS(5606), + [anon_sym_struct] = ACTIONS(5606), + [anon_sym_LPAREN] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(5604), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_DASH] = ACTIONS(5604), + [anon_sym_DOLLAR] = ACTIONS(5604), + [anon_sym_PIPE] = ACTIONS(5604), + [anon_sym_QMARK] = ACTIONS(5604), + [anon_sym_STAR] = ACTIONS(5604), + [anon_sym_LBRACK] = ACTIONS(5604), + [anon_sym_void] = ACTIONS(5606), + [anon_sym_noreturn] = ACTIONS(5606), + [anon_sym_type] = ACTIONS(5606), + [anon_sym_anyopaque] = ACTIONS(5606), + [anon_sym_bool] = ACTIONS(5606), + [anon_sym_int] = ACTIONS(5606), + [anon_sym_uint] = ACTIONS(5606), + [anon_sym_float] = ACTIONS(5606), + [anon_sym_range] = ACTIONS(5606), + [anon_sym_i8] = ACTIONS(5606), + [anon_sym_i16] = ACTIONS(5606), + [anon_sym_i32] = ACTIONS(5606), + [anon_sym_i64] = ACTIONS(5606), + [anon_sym_u8] = ACTIONS(5606), + [anon_sym_u16] = ACTIONS(5606), + [anon_sym_u32] = ACTIONS(5606), + [anon_sym_u64] = ACTIONS(5606), + [anon_sym_isize] = ACTIONS(5606), + [anon_sym_usize] = ACTIONS(5606), + [anon_sym_f32] = ACTIONS(5606), + [anon_sym_f64] = ACTIONS(5606), + [anon_sym_c_char] = ACTIONS(5606), + [anon_sym_c_schar] = ACTIONS(5606), + [anon_sym_c_uchar] = ACTIONS(5606), + [anon_sym_c_short] = ACTIONS(5606), + [anon_sym_c_ushort] = ACTIONS(5606), + [anon_sym_c_int] = ACTIONS(5606), + [anon_sym_c_uint] = ACTIONS(5606), + [anon_sym_c_long] = ACTIONS(5606), + [anon_sym_c_ulong] = ACTIONS(5606), + [anon_sym_c_longlong] = ACTIONS(5606), + [anon_sym_c_ulonglong] = ACTIONS(5606), + [anon_sym_c_float] = ACTIONS(5606), + [anon_sym_c_double] = ACTIONS(5606), + [anon_sym_c_longdouble] = ACTIONS(5606), + [anon_sym_return] = ACTIONS(5606), + [anon_sym_yield] = ACTIONS(5606), + [anon_sym_COLON] = ACTIONS(5604), + [anon_sym_break] = ACTIONS(5606), + [anon_sym_continue] = ACTIONS(5606), + [anon_sym_defer] = ACTIONS(5606), + [anon_sym_errdefer] = ACTIONS(5606), + [anon_sym_if] = ACTIONS(5606), + [anon_sym_else] = ACTIONS(5606), + [anon_sym_while] = ACTIONS(5606), + [anon_sym_expand] = ACTIONS(5606), + [anon_sym_for] = ACTIONS(5606), + [anon_sym_match] = ACTIONS(5606), + [anon_sym_DOT_DOT] = ACTIONS(5606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5604), + [anon_sym_orelse] = ACTIONS(5606), + [anon_sym_or] = ACTIONS(5606), + [anon_sym_and] = ACTIONS(5606), + [anon_sym_EQ_EQ] = ACTIONS(5604), + [anon_sym_BANG_EQ] = ACTIONS(5604), + [anon_sym_LT] = ACTIONS(5606), + [anon_sym_LT_EQ] = ACTIONS(5604), + [anon_sym_GT] = ACTIONS(5606), + [anon_sym_GT_EQ] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5604), + [anon_sym_xor] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5604), + [anon_sym_LT_LT_PIPE] = ACTIONS(5604), + [anon_sym_PLUS] = ACTIONS(5604), + [anon_sym_SLASH] = ACTIONS(5604), + [anon_sym_catch] = ACTIONS(5606), + [anon_sym_TILDE] = ACTIONS(5604), + [anon_sym_try] = ACTIONS(5606), + [anon_sym_DOT] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5604), + [anon_sym_true] = ACTIONS(5606), + [anon_sym_false] = ACTIONS(5606), + [anon_sym_null] = ACTIONS(5606), + [anon_sym_unreachable] = ACTIONS(5606), + [anon_sym_undefined] = ACTIONS(5606), + [sym_sink] = ACTIONS(5606), + [sym_integer] = ACTIONS(5606), + [sym_float] = ACTIONS(5604), + [anon_sym_DQUOTE] = ACTIONS(5604), + [sym_multiline_string] = ACTIONS(5604), + [sym_character] = ACTIONS(5604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5604), + }, + [STATE(4447)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4448)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4452), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7180), + }, + [STATE(4449)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4453), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7182), + }, + [STATE(4450)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4451)] = { + [ts_builtin_sym_end] = ACTIONS(6054), + [sym_identifier] = ACTIONS(6056), + [anon_sym_import] = ACTIONS(6056), + [anon_sym_test] = ACTIONS(6056), + [anon_sym_hide] = ACTIONS(6056), + [anon_sym_func] = ACTIONS(6056), + [anon_sym_BANG] = ACTIONS(6056), + [anon_sym_struct] = ACTIONS(6056), + [anon_sym_LPAREN] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(6054), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6054), + [anon_sym_DOLLAR] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6054), + [anon_sym_QMARK] = ACTIONS(6054), + [anon_sym_STAR] = ACTIONS(6054), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_void] = ACTIONS(6056), + [anon_sym_noreturn] = ACTIONS(6056), + [anon_sym_type] = ACTIONS(6056), + [anon_sym_anyopaque] = ACTIONS(6056), + [anon_sym_bool] = ACTIONS(6056), + [anon_sym_int] = ACTIONS(6056), + [anon_sym_uint] = ACTIONS(6056), + [anon_sym_float] = ACTIONS(6056), + [anon_sym_range] = ACTIONS(6056), + [anon_sym_i8] = ACTIONS(6056), + [anon_sym_i16] = ACTIONS(6056), + [anon_sym_i32] = ACTIONS(6056), + [anon_sym_i64] = ACTIONS(6056), + [anon_sym_u8] = ACTIONS(6056), + [anon_sym_u16] = ACTIONS(6056), + [anon_sym_u32] = ACTIONS(6056), + [anon_sym_u64] = ACTIONS(6056), + [anon_sym_isize] = ACTIONS(6056), + [anon_sym_usize] = ACTIONS(6056), + [anon_sym_f32] = ACTIONS(6056), + [anon_sym_f64] = ACTIONS(6056), + [anon_sym_c_char] = ACTIONS(6056), + [anon_sym_c_schar] = ACTIONS(6056), + [anon_sym_c_uchar] = ACTIONS(6056), + [anon_sym_c_short] = ACTIONS(6056), + [anon_sym_c_ushort] = ACTIONS(6056), + [anon_sym_c_int] = ACTIONS(6056), + [anon_sym_c_uint] = ACTIONS(6056), + [anon_sym_c_long] = ACTIONS(6056), + [anon_sym_c_ulong] = ACTIONS(6056), + [anon_sym_c_longlong] = ACTIONS(6056), + [anon_sym_c_ulonglong] = ACTIONS(6056), + [anon_sym_c_float] = ACTIONS(6056), + [anon_sym_c_double] = ACTIONS(6056), + [anon_sym_c_longdouble] = ACTIONS(6056), + [anon_sym_return] = ACTIONS(6056), + [anon_sym_yield] = ACTIONS(6056), + [anon_sym_COLON] = ACTIONS(6054), + [anon_sym_break] = ACTIONS(6056), + [anon_sym_continue] = ACTIONS(6056), + [anon_sym_defer] = ACTIONS(6056), + [anon_sym_errdefer] = ACTIONS(6056), + [anon_sym_if] = ACTIONS(6056), + [anon_sym_else] = ACTIONS(6056), + [anon_sym_while] = ACTIONS(6056), + [anon_sym_expand] = ACTIONS(6056), + [anon_sym_for] = ACTIONS(6056), + [anon_sym_match] = ACTIONS(6056), + [anon_sym_DOT_DOT] = ACTIONS(6056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6054), + [anon_sym_orelse] = ACTIONS(6056), + [anon_sym_or] = ACTIONS(6056), + [anon_sym_and] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6054), + [anon_sym_BANG_EQ] = ACTIONS(6054), + [anon_sym_LT] = ACTIONS(6056), + [anon_sym_LT_EQ] = ACTIONS(6054), + [anon_sym_GT] = ACTIONS(6056), + [anon_sym_GT_EQ] = ACTIONS(6054), + [anon_sym_AMP] = ACTIONS(6054), + [anon_sym_xor] = ACTIONS(6056), + [anon_sym_LT_LT] = ACTIONS(6056), + [anon_sym_GT_GT] = ACTIONS(6054), + [anon_sym_LT_LT_PIPE] = ACTIONS(6054), + [anon_sym_PLUS] = ACTIONS(6054), + [anon_sym_SLASH] = ACTIONS(6054), + [anon_sym_catch] = ACTIONS(6056), + [anon_sym_TILDE] = ACTIONS(6054), + [anon_sym_try] = ACTIONS(6056), + [anon_sym_DOT] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6054), + [anon_sym_true] = ACTIONS(6056), + [anon_sym_false] = ACTIONS(6056), + [anon_sym_null] = ACTIONS(6056), + [anon_sym_unreachable] = ACTIONS(6056), + [anon_sym_undefined] = ACTIONS(6056), + [sym_sink] = ACTIONS(6056), + [sym_integer] = ACTIONS(6056), + [sym_float] = ACTIONS(6054), + [anon_sym_DQUOTE] = ACTIONS(6054), + [sym_multiline_string] = ACTIONS(6054), + [sym_character] = ACTIONS(6054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6054), + }, + [STATE(4452)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4453)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4454)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3285), + [sym_labeled_block] = STATE(3285), + [sym_if_statement] = STATE(3285), + [sym_while_statement] = STATE(3285), + [sym_for_statement] = STATE(3285), + [sym_match_statement] = STATE(3285), + [sym__value] = STATE(3285), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4232), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7184), + }, + [STATE(4455)] = { + [ts_builtin_sym_end] = ACTIONS(5962), + [sym_identifier] = ACTIONS(5964), + [anon_sym_import] = ACTIONS(5964), + [anon_sym_test] = ACTIONS(5964), + [anon_sym_hide] = ACTIONS(5964), + [anon_sym_func] = ACTIONS(5964), + [anon_sym_BANG] = ACTIONS(5964), + [anon_sym_struct] = ACTIONS(5964), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_DOLLAR] = ACTIONS(5962), + [anon_sym_PIPE] = ACTIONS(5962), + [anon_sym_QMARK] = ACTIONS(5962), + [anon_sym_STAR] = ACTIONS(5962), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_void] = ACTIONS(5964), + [anon_sym_noreturn] = ACTIONS(5964), + [anon_sym_type] = ACTIONS(5964), + [anon_sym_anyopaque] = ACTIONS(5964), + [anon_sym_bool] = ACTIONS(5964), + [anon_sym_int] = ACTIONS(5964), + [anon_sym_uint] = ACTIONS(5964), + [anon_sym_float] = ACTIONS(5964), + [anon_sym_range] = ACTIONS(5964), + [anon_sym_i8] = ACTIONS(5964), + [anon_sym_i16] = ACTIONS(5964), + [anon_sym_i32] = ACTIONS(5964), + [anon_sym_i64] = ACTIONS(5964), + [anon_sym_u8] = ACTIONS(5964), + [anon_sym_u16] = ACTIONS(5964), + [anon_sym_u32] = ACTIONS(5964), + [anon_sym_u64] = ACTIONS(5964), + [anon_sym_isize] = ACTIONS(5964), + [anon_sym_usize] = ACTIONS(5964), + [anon_sym_f32] = ACTIONS(5964), + [anon_sym_f64] = ACTIONS(5964), + [anon_sym_c_char] = ACTIONS(5964), + [anon_sym_c_schar] = ACTIONS(5964), + [anon_sym_c_uchar] = ACTIONS(5964), + [anon_sym_c_short] = ACTIONS(5964), + [anon_sym_c_ushort] = ACTIONS(5964), + [anon_sym_c_int] = ACTIONS(5964), + [anon_sym_c_uint] = ACTIONS(5964), + [anon_sym_c_long] = ACTIONS(5964), + [anon_sym_c_ulong] = ACTIONS(5964), + [anon_sym_c_longlong] = ACTIONS(5964), + [anon_sym_c_ulonglong] = ACTIONS(5964), + [anon_sym_c_float] = ACTIONS(5964), + [anon_sym_c_double] = ACTIONS(5964), + [anon_sym_c_longdouble] = ACTIONS(5964), + [anon_sym_return] = ACTIONS(5964), + [anon_sym_yield] = ACTIONS(5964), + [anon_sym_COLON] = ACTIONS(5962), + [anon_sym_break] = ACTIONS(5964), + [anon_sym_continue] = ACTIONS(5964), + [anon_sym_defer] = ACTIONS(5964), + [anon_sym_errdefer] = ACTIONS(5964), + [anon_sym_if] = ACTIONS(5964), + [anon_sym_else] = ACTIONS(5964), + [anon_sym_while] = ACTIONS(5964), + [anon_sym_expand] = ACTIONS(5964), + [anon_sym_for] = ACTIONS(5964), + [anon_sym_match] = ACTIONS(5964), + [anon_sym_DOT_DOT] = ACTIONS(5964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_orelse] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5964), + [anon_sym_and] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5962), + [anon_sym_BANG_EQ] = ACTIONS(5962), + [anon_sym_LT] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5962), + [anon_sym_GT] = ACTIONS(5964), + [anon_sym_GT_EQ] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5962), + [anon_sym_xor] = ACTIONS(5964), + [anon_sym_LT_LT] = ACTIONS(5964), + [anon_sym_GT_GT] = ACTIONS(5962), + [anon_sym_LT_LT_PIPE] = ACTIONS(5962), + [anon_sym_PLUS] = ACTIONS(5962), + [anon_sym_SLASH] = ACTIONS(5962), + [anon_sym_catch] = ACTIONS(5964), + [anon_sym_TILDE] = ACTIONS(5962), + [anon_sym_try] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_true] = ACTIONS(5964), + [anon_sym_false] = ACTIONS(5964), + [anon_sym_null] = ACTIONS(5964), + [anon_sym_unreachable] = ACTIONS(5964), + [anon_sym_undefined] = ACTIONS(5964), + [sym_sink] = ACTIONS(5964), + [sym_integer] = ACTIONS(5964), + [sym_float] = ACTIONS(5962), + [anon_sym_DQUOTE] = ACTIONS(5962), + [sym_multiline_string] = ACTIONS(5962), + [sym_character] = ACTIONS(5962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5962), + }, + [STATE(4456)] = { + [ts_builtin_sym_end] = ACTIONS(6184), + [sym_identifier] = ACTIONS(6186), + [anon_sym_import] = ACTIONS(6186), + [anon_sym_test] = ACTIONS(6186), + [anon_sym_hide] = ACTIONS(6186), + [anon_sym_func] = ACTIONS(6186), + [anon_sym_BANG] = ACTIONS(6186), + [anon_sym_struct] = ACTIONS(6186), + [anon_sym_LPAREN] = ACTIONS(6184), + [anon_sym_LBRACE] = ACTIONS(6184), + [anon_sym_RBRACE] = ACTIONS(6184), + [anon_sym_DASH] = ACTIONS(6184), + [anon_sym_DOLLAR] = ACTIONS(6184), + [anon_sym_PIPE] = ACTIONS(6184), + [anon_sym_QMARK] = ACTIONS(6184), + [anon_sym_STAR] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(6184), + [anon_sym_void] = ACTIONS(6186), + [anon_sym_noreturn] = ACTIONS(6186), + [anon_sym_type] = ACTIONS(6186), + [anon_sym_anyopaque] = ACTIONS(6186), + [anon_sym_bool] = ACTIONS(6186), + [anon_sym_int] = ACTIONS(6186), + [anon_sym_uint] = ACTIONS(6186), + [anon_sym_float] = ACTIONS(6186), + [anon_sym_range] = ACTIONS(6186), + [anon_sym_i8] = ACTIONS(6186), + [anon_sym_i16] = ACTIONS(6186), + [anon_sym_i32] = ACTIONS(6186), + [anon_sym_i64] = ACTIONS(6186), + [anon_sym_u8] = ACTIONS(6186), + [anon_sym_u16] = ACTIONS(6186), + [anon_sym_u32] = ACTIONS(6186), + [anon_sym_u64] = ACTIONS(6186), + [anon_sym_isize] = ACTIONS(6186), + [anon_sym_usize] = ACTIONS(6186), + [anon_sym_f32] = ACTIONS(6186), + [anon_sym_f64] = ACTIONS(6186), + [anon_sym_c_char] = ACTIONS(6186), + [anon_sym_c_schar] = ACTIONS(6186), + [anon_sym_c_uchar] = ACTIONS(6186), + [anon_sym_c_short] = ACTIONS(6186), + [anon_sym_c_ushort] = ACTIONS(6186), + [anon_sym_c_int] = ACTIONS(6186), + [anon_sym_c_uint] = ACTIONS(6186), + [anon_sym_c_long] = ACTIONS(6186), + [anon_sym_c_ulong] = ACTIONS(6186), + [anon_sym_c_longlong] = ACTIONS(6186), + [anon_sym_c_ulonglong] = ACTIONS(6186), + [anon_sym_c_float] = ACTIONS(6186), + [anon_sym_c_double] = ACTIONS(6186), + [anon_sym_c_longdouble] = ACTIONS(6186), + [anon_sym_return] = ACTIONS(6186), + [anon_sym_yield] = ACTIONS(6186), + [anon_sym_COLON] = ACTIONS(6184), + [anon_sym_break] = ACTIONS(6186), + [anon_sym_continue] = ACTIONS(6186), + [anon_sym_defer] = ACTIONS(6186), + [anon_sym_errdefer] = ACTIONS(6186), + [anon_sym_if] = ACTIONS(6186), + [anon_sym_else] = ACTIONS(6186), + [anon_sym_while] = ACTIONS(6186), + [anon_sym_expand] = ACTIONS(6186), + [anon_sym_for] = ACTIONS(6186), + [anon_sym_match] = ACTIONS(6186), + [anon_sym_DOT_DOT] = ACTIONS(6186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6184), + [anon_sym_orelse] = ACTIONS(6186), + [anon_sym_or] = ACTIONS(6186), + [anon_sym_and] = ACTIONS(6186), + [anon_sym_EQ_EQ] = ACTIONS(6184), + [anon_sym_BANG_EQ] = ACTIONS(6184), + [anon_sym_LT] = ACTIONS(6186), + [anon_sym_LT_EQ] = ACTIONS(6184), + [anon_sym_GT] = ACTIONS(6186), + [anon_sym_GT_EQ] = ACTIONS(6184), + [anon_sym_AMP] = ACTIONS(6184), + [anon_sym_xor] = ACTIONS(6186), + [anon_sym_LT_LT] = ACTIONS(6186), + [anon_sym_GT_GT] = ACTIONS(6184), + [anon_sym_LT_LT_PIPE] = ACTIONS(6184), + [anon_sym_PLUS] = ACTIONS(6184), + [anon_sym_SLASH] = ACTIONS(6184), + [anon_sym_catch] = ACTIONS(6186), + [anon_sym_TILDE] = ACTIONS(6184), + [anon_sym_try] = ACTIONS(6186), + [anon_sym_DOT] = ACTIONS(6186), + [anon_sym_CARET] = ACTIONS(6184), + [anon_sym_true] = ACTIONS(6186), + [anon_sym_false] = ACTIONS(6186), + [anon_sym_null] = ACTIONS(6186), + [anon_sym_unreachable] = ACTIONS(6186), + [anon_sym_undefined] = ACTIONS(6186), + [sym_sink] = ACTIONS(6186), + [sym_integer] = ACTIONS(6186), + [sym_float] = ACTIONS(6184), + [anon_sym_DQUOTE] = ACTIONS(6184), + [sym_multiline_string] = ACTIONS(6184), + [sym_character] = ACTIONS(6184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6184), + }, + [STATE(4457)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3454), + [sym_error_capture] = STATE(4832), + [sym_if_statement] = STATE(3454), + [sym_while_statement] = STATE(3454), + [sym_for_statement] = STATE(3454), + [sym_match_statement] = STATE(3454), + [sym_expression] = STATE(3392), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7188), + }, + [STATE(4458)] = { + [ts_builtin_sym_end] = ACTIONS(6188), + [sym_identifier] = ACTIONS(6190), + [anon_sym_import] = ACTIONS(6190), + [anon_sym_test] = ACTIONS(6190), + [anon_sym_hide] = ACTIONS(6190), + [anon_sym_func] = ACTIONS(6190), + [anon_sym_BANG] = ACTIONS(6190), + [anon_sym_struct] = ACTIONS(6190), + [anon_sym_LPAREN] = ACTIONS(6188), + [anon_sym_LBRACE] = ACTIONS(6188), + [anon_sym_RBRACE] = ACTIONS(6188), + [anon_sym_DASH] = ACTIONS(6188), + [anon_sym_DOLLAR] = ACTIONS(6188), + [anon_sym_PIPE] = ACTIONS(6188), + [anon_sym_QMARK] = ACTIONS(6188), + [anon_sym_STAR] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(6188), + [anon_sym_void] = ACTIONS(6190), + [anon_sym_noreturn] = ACTIONS(6190), + [anon_sym_type] = ACTIONS(6190), + [anon_sym_anyopaque] = ACTIONS(6190), + [anon_sym_bool] = ACTIONS(6190), + [anon_sym_int] = ACTIONS(6190), + [anon_sym_uint] = ACTIONS(6190), + [anon_sym_float] = ACTIONS(6190), + [anon_sym_range] = ACTIONS(6190), + [anon_sym_i8] = ACTIONS(6190), + [anon_sym_i16] = ACTIONS(6190), + [anon_sym_i32] = ACTIONS(6190), + [anon_sym_i64] = ACTIONS(6190), + [anon_sym_u8] = ACTIONS(6190), + [anon_sym_u16] = ACTIONS(6190), + [anon_sym_u32] = ACTIONS(6190), + [anon_sym_u64] = ACTIONS(6190), + [anon_sym_isize] = ACTIONS(6190), + [anon_sym_usize] = ACTIONS(6190), + [anon_sym_f32] = ACTIONS(6190), + [anon_sym_f64] = ACTIONS(6190), + [anon_sym_c_char] = ACTIONS(6190), + [anon_sym_c_schar] = ACTIONS(6190), + [anon_sym_c_uchar] = ACTIONS(6190), + [anon_sym_c_short] = ACTIONS(6190), + [anon_sym_c_ushort] = ACTIONS(6190), + [anon_sym_c_int] = ACTIONS(6190), + [anon_sym_c_uint] = ACTIONS(6190), + [anon_sym_c_long] = ACTIONS(6190), + [anon_sym_c_ulong] = ACTIONS(6190), + [anon_sym_c_longlong] = ACTIONS(6190), + [anon_sym_c_ulonglong] = ACTIONS(6190), + [anon_sym_c_float] = ACTIONS(6190), + [anon_sym_c_double] = ACTIONS(6190), + [anon_sym_c_longdouble] = ACTIONS(6190), + [anon_sym_return] = ACTIONS(6190), + [anon_sym_yield] = ACTIONS(6190), + [anon_sym_COLON] = ACTIONS(6188), + [anon_sym_break] = ACTIONS(6190), + [anon_sym_continue] = ACTIONS(6190), + [anon_sym_defer] = ACTIONS(6190), + [anon_sym_errdefer] = ACTIONS(6190), + [anon_sym_if] = ACTIONS(6190), + [anon_sym_else] = ACTIONS(6190), + [anon_sym_while] = ACTIONS(6190), + [anon_sym_expand] = ACTIONS(6190), + [anon_sym_for] = ACTIONS(6190), + [anon_sym_match] = ACTIONS(6190), + [anon_sym_DOT_DOT] = ACTIONS(6190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6188), + [anon_sym_orelse] = ACTIONS(6190), + [anon_sym_or] = ACTIONS(6190), + [anon_sym_and] = ACTIONS(6190), + [anon_sym_EQ_EQ] = ACTIONS(6188), + [anon_sym_BANG_EQ] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(6190), + [anon_sym_LT_EQ] = ACTIONS(6188), + [anon_sym_GT] = ACTIONS(6190), + [anon_sym_GT_EQ] = ACTIONS(6188), + [anon_sym_AMP] = ACTIONS(6188), + [anon_sym_xor] = ACTIONS(6190), + [anon_sym_LT_LT] = ACTIONS(6190), + [anon_sym_GT_GT] = ACTIONS(6188), + [anon_sym_LT_LT_PIPE] = ACTIONS(6188), + [anon_sym_PLUS] = ACTIONS(6188), + [anon_sym_SLASH] = ACTIONS(6188), + [anon_sym_catch] = ACTIONS(6190), + [anon_sym_TILDE] = ACTIONS(6188), + [anon_sym_try] = ACTIONS(6190), + [anon_sym_DOT] = ACTIONS(6190), + [anon_sym_CARET] = ACTIONS(6188), + [anon_sym_true] = ACTIONS(6190), + [anon_sym_false] = ACTIONS(6190), + [anon_sym_null] = ACTIONS(6190), + [anon_sym_unreachable] = ACTIONS(6190), + [anon_sym_undefined] = ACTIONS(6190), + [sym_sink] = ACTIONS(6190), + [sym_integer] = ACTIONS(6190), + [sym_float] = ACTIONS(6188), + [anon_sym_DQUOTE] = ACTIONS(6188), + [sym_multiline_string] = ACTIONS(6188), + [sym_character] = ACTIONS(6188), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6188), + }, + [STATE(4459)] = { + [ts_builtin_sym_end] = ACTIONS(6192), + [sym_identifier] = ACTIONS(6194), + [anon_sym_import] = ACTIONS(6194), + [anon_sym_test] = ACTIONS(6194), + [anon_sym_hide] = ACTIONS(6194), + [anon_sym_func] = ACTIONS(6194), + [anon_sym_BANG] = ACTIONS(6194), + [anon_sym_struct] = ACTIONS(6194), + [anon_sym_LPAREN] = ACTIONS(6192), + [anon_sym_LBRACE] = ACTIONS(6192), + [anon_sym_RBRACE] = ACTIONS(6192), + [anon_sym_DASH] = ACTIONS(6192), + [anon_sym_DOLLAR] = ACTIONS(6192), + [anon_sym_PIPE] = ACTIONS(6192), + [anon_sym_QMARK] = ACTIONS(6192), + [anon_sym_STAR] = ACTIONS(6192), + [anon_sym_LBRACK] = ACTIONS(6192), + [anon_sym_void] = ACTIONS(6194), + [anon_sym_noreturn] = ACTIONS(6194), + [anon_sym_type] = ACTIONS(6194), + [anon_sym_anyopaque] = ACTIONS(6194), + [anon_sym_bool] = ACTIONS(6194), + [anon_sym_int] = ACTIONS(6194), + [anon_sym_uint] = ACTIONS(6194), + [anon_sym_float] = ACTIONS(6194), + [anon_sym_range] = ACTIONS(6194), + [anon_sym_i8] = ACTIONS(6194), + [anon_sym_i16] = ACTIONS(6194), + [anon_sym_i32] = ACTIONS(6194), + [anon_sym_i64] = ACTIONS(6194), + [anon_sym_u8] = ACTIONS(6194), + [anon_sym_u16] = ACTIONS(6194), + [anon_sym_u32] = ACTIONS(6194), + [anon_sym_u64] = ACTIONS(6194), + [anon_sym_isize] = ACTIONS(6194), + [anon_sym_usize] = ACTIONS(6194), + [anon_sym_f32] = ACTIONS(6194), + [anon_sym_f64] = ACTIONS(6194), + [anon_sym_c_char] = ACTIONS(6194), + [anon_sym_c_schar] = ACTIONS(6194), + [anon_sym_c_uchar] = ACTIONS(6194), + [anon_sym_c_short] = ACTIONS(6194), + [anon_sym_c_ushort] = ACTIONS(6194), + [anon_sym_c_int] = ACTIONS(6194), + [anon_sym_c_uint] = ACTIONS(6194), + [anon_sym_c_long] = ACTIONS(6194), + [anon_sym_c_ulong] = ACTIONS(6194), + [anon_sym_c_longlong] = ACTIONS(6194), + [anon_sym_c_ulonglong] = ACTIONS(6194), + [anon_sym_c_float] = ACTIONS(6194), + [anon_sym_c_double] = ACTIONS(6194), + [anon_sym_c_longdouble] = ACTIONS(6194), + [anon_sym_return] = ACTIONS(6194), + [anon_sym_yield] = ACTIONS(6194), + [anon_sym_COLON] = ACTIONS(6192), + [anon_sym_break] = ACTIONS(6194), + [anon_sym_continue] = ACTIONS(6194), + [anon_sym_defer] = ACTIONS(6194), + [anon_sym_errdefer] = ACTIONS(6194), + [anon_sym_if] = ACTIONS(6194), + [anon_sym_else] = ACTIONS(6194), + [anon_sym_while] = ACTIONS(6194), + [anon_sym_expand] = ACTIONS(6194), + [anon_sym_for] = ACTIONS(6194), + [anon_sym_match] = ACTIONS(6194), + [anon_sym_DOT_DOT] = ACTIONS(6194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6192), + [anon_sym_orelse] = ACTIONS(6194), + [anon_sym_or] = ACTIONS(6194), + [anon_sym_and] = ACTIONS(6194), + [anon_sym_EQ_EQ] = ACTIONS(6192), + [anon_sym_BANG_EQ] = ACTIONS(6192), + [anon_sym_LT] = ACTIONS(6194), + [anon_sym_LT_EQ] = ACTIONS(6192), + [anon_sym_GT] = ACTIONS(6194), + [anon_sym_GT_EQ] = ACTIONS(6192), + [anon_sym_AMP] = ACTIONS(6192), + [anon_sym_xor] = ACTIONS(6194), + [anon_sym_LT_LT] = ACTIONS(6194), + [anon_sym_GT_GT] = ACTIONS(6192), + [anon_sym_LT_LT_PIPE] = ACTIONS(6192), + [anon_sym_PLUS] = ACTIONS(6192), + [anon_sym_SLASH] = ACTIONS(6192), + [anon_sym_catch] = ACTIONS(6194), + [anon_sym_TILDE] = ACTIONS(6192), + [anon_sym_try] = ACTIONS(6194), + [anon_sym_DOT] = ACTIONS(6194), + [anon_sym_CARET] = ACTIONS(6192), + [anon_sym_true] = ACTIONS(6194), + [anon_sym_false] = ACTIONS(6194), + [anon_sym_null] = ACTIONS(6194), + [anon_sym_unreachable] = ACTIONS(6194), + [anon_sym_undefined] = ACTIONS(6194), + [sym_sink] = ACTIONS(6194), + [sym_integer] = ACTIONS(6194), + [sym_float] = ACTIONS(6192), + [anon_sym_DQUOTE] = ACTIONS(6192), + [sym_multiline_string] = ACTIONS(6192), + [sym_character] = ACTIONS(6192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6192), + }, + [STATE(4460)] = { + [ts_builtin_sym_end] = ACTIONS(5632), + [sym_identifier] = ACTIONS(5634), + [anon_sym_import] = ACTIONS(5634), + [anon_sym_test] = ACTIONS(5634), + [anon_sym_hide] = ACTIONS(5634), + [anon_sym_func] = ACTIONS(5634), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_LPAREN] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5632), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_DASH] = ACTIONS(5632), + [anon_sym_DOLLAR] = ACTIONS(5632), + [anon_sym_PIPE] = ACTIONS(5632), + [anon_sym_QMARK] = ACTIONS(5632), + [anon_sym_STAR] = ACTIONS(5632), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_void] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_type] = ACTIONS(5634), + [anon_sym_anyopaque] = ACTIONS(5634), + [anon_sym_bool] = ACTIONS(5634), + [anon_sym_int] = ACTIONS(5634), + [anon_sym_uint] = ACTIONS(5634), + [anon_sym_float] = ACTIONS(5634), + [anon_sym_range] = ACTIONS(5634), + [anon_sym_i8] = ACTIONS(5634), + [anon_sym_i16] = ACTIONS(5634), + [anon_sym_i32] = ACTIONS(5634), + [anon_sym_i64] = ACTIONS(5634), + [anon_sym_u8] = ACTIONS(5634), + [anon_sym_u16] = ACTIONS(5634), + [anon_sym_u32] = ACTIONS(5634), + [anon_sym_u64] = ACTIONS(5634), + [anon_sym_isize] = ACTIONS(5634), + [anon_sym_usize] = ACTIONS(5634), + [anon_sym_f32] = ACTIONS(5634), + [anon_sym_f64] = ACTIONS(5634), + [anon_sym_c_char] = ACTIONS(5634), + [anon_sym_c_schar] = ACTIONS(5634), + [anon_sym_c_uchar] = ACTIONS(5634), + [anon_sym_c_short] = ACTIONS(5634), + [anon_sym_c_ushort] = ACTIONS(5634), + [anon_sym_c_int] = ACTIONS(5634), + [anon_sym_c_uint] = ACTIONS(5634), + [anon_sym_c_long] = ACTIONS(5634), + [anon_sym_c_ulong] = ACTIONS(5634), + [anon_sym_c_longlong] = ACTIONS(5634), + [anon_sym_c_ulonglong] = ACTIONS(5634), + [anon_sym_c_float] = ACTIONS(5634), + [anon_sym_c_double] = ACTIONS(5634), + [anon_sym_c_longdouble] = ACTIONS(5634), + [anon_sym_return] = ACTIONS(5634), + [anon_sym_yield] = ACTIONS(5634), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_break] = ACTIONS(5634), + [anon_sym_continue] = ACTIONS(5634), + [anon_sym_defer] = ACTIONS(5634), + [anon_sym_errdefer] = ACTIONS(5634), + [anon_sym_if] = ACTIONS(5634), + [anon_sym_else] = ACTIONS(5634), + [anon_sym_while] = ACTIONS(5634), + [anon_sym_expand] = ACTIONS(5634), + [anon_sym_for] = ACTIONS(5634), + [anon_sym_match] = ACTIONS(5634), + [anon_sym_DOT_DOT] = ACTIONS(5634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5632), + [anon_sym_orelse] = ACTIONS(5634), + [anon_sym_or] = ACTIONS(5634), + [anon_sym_and] = ACTIONS(5634), + [anon_sym_EQ_EQ] = ACTIONS(5632), + [anon_sym_BANG_EQ] = ACTIONS(5632), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_LT_EQ] = ACTIONS(5632), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_GT_EQ] = ACTIONS(5632), + [anon_sym_AMP] = ACTIONS(5632), + [anon_sym_xor] = ACTIONS(5634), + [anon_sym_LT_LT] = ACTIONS(5634), + [anon_sym_GT_GT] = ACTIONS(5632), + [anon_sym_LT_LT_PIPE] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5632), + [anon_sym_SLASH] = ACTIONS(5632), + [anon_sym_catch] = ACTIONS(5634), + [anon_sym_TILDE] = ACTIONS(5632), + [anon_sym_try] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5632), + [anon_sym_true] = ACTIONS(5634), + [anon_sym_false] = ACTIONS(5634), + [anon_sym_null] = ACTIONS(5634), + [anon_sym_unreachable] = ACTIONS(5634), + [anon_sym_undefined] = ACTIONS(5634), + [sym_sink] = ACTIONS(5634), + [sym_integer] = ACTIONS(5634), + [sym_float] = ACTIONS(5632), + [anon_sym_DQUOTE] = ACTIONS(5632), + [sym_multiline_string] = ACTIONS(5632), + [sym_character] = ACTIONS(5632), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5632), + }, + [STATE(4461)] = { + [ts_builtin_sym_end] = ACTIONS(4676), + [sym_identifier] = ACTIONS(4678), + [anon_sym_import] = ACTIONS(4678), + [anon_sym_test] = ACTIONS(4678), + [anon_sym_hide] = ACTIONS(4678), + [anon_sym_func] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_struct] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_DOLLAR] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_QMARK] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_void] = ACTIONS(4678), + [anon_sym_noreturn] = ACTIONS(4678), + [anon_sym_type] = ACTIONS(4678), + [anon_sym_anyopaque] = ACTIONS(4678), + [anon_sym_bool] = ACTIONS(4678), + [anon_sym_int] = ACTIONS(4678), + [anon_sym_uint] = ACTIONS(4678), + [anon_sym_float] = ACTIONS(4678), + [anon_sym_range] = ACTIONS(4678), + [anon_sym_i8] = ACTIONS(4678), + [anon_sym_i16] = ACTIONS(4678), + [anon_sym_i32] = ACTIONS(4678), + [anon_sym_i64] = ACTIONS(4678), + [anon_sym_u8] = ACTIONS(4678), + [anon_sym_u16] = ACTIONS(4678), + [anon_sym_u32] = ACTIONS(4678), + [anon_sym_u64] = ACTIONS(4678), + [anon_sym_isize] = ACTIONS(4678), + [anon_sym_usize] = ACTIONS(4678), + [anon_sym_f32] = ACTIONS(4678), + [anon_sym_f64] = ACTIONS(4678), + [anon_sym_c_char] = ACTIONS(4678), + [anon_sym_c_schar] = ACTIONS(4678), + [anon_sym_c_uchar] = ACTIONS(4678), + [anon_sym_c_short] = ACTIONS(4678), + [anon_sym_c_ushort] = ACTIONS(4678), + [anon_sym_c_int] = ACTIONS(4678), + [anon_sym_c_uint] = ACTIONS(4678), + [anon_sym_c_long] = ACTIONS(4678), + [anon_sym_c_ulong] = ACTIONS(4678), + [anon_sym_c_longlong] = ACTIONS(4678), + [anon_sym_c_ulonglong] = ACTIONS(4678), + [anon_sym_c_float] = ACTIONS(4678), + [anon_sym_c_double] = ACTIONS(4678), + [anon_sym_c_longdouble] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_yield] = ACTIONS(4678), + [anon_sym_COLON] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_defer] = ACTIONS(4678), + [anon_sym_errdefer] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_while] = ACTIONS(4678), + [anon_sym_expand] = ACTIONS(4678), + [anon_sym_for] = ACTIONS(4678), + [anon_sym_match] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4676), + [anon_sym_orelse] = ACTIONS(4678), + [anon_sym_or] = ACTIONS(4678), + [anon_sym_and] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym_LT_LT_PIPE] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_catch] = ACTIONS(4678), + [anon_sym_TILDE] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_unreachable] = ACTIONS(4678), + [anon_sym_undefined] = ACTIONS(4678), + [sym_sink] = ACTIONS(4678), + [sym_integer] = ACTIONS(4678), + [sym_float] = ACTIONS(4676), + [anon_sym_DQUOTE] = ACTIONS(4676), + [sym_multiline_string] = ACTIONS(4676), + [sym_character] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4676), + }, + [STATE(4462)] = { + [ts_builtin_sym_end] = ACTIONS(6196), + [sym_identifier] = ACTIONS(6198), + [anon_sym_import] = ACTIONS(6198), + [anon_sym_test] = ACTIONS(6198), + [anon_sym_hide] = ACTIONS(6198), + [anon_sym_func] = ACTIONS(6198), + [anon_sym_BANG] = ACTIONS(6198), + [anon_sym_struct] = ACTIONS(6198), + [anon_sym_LPAREN] = ACTIONS(6196), + [anon_sym_LBRACE] = ACTIONS(6196), + [anon_sym_RBRACE] = ACTIONS(6196), + [anon_sym_DASH] = ACTIONS(6196), + [anon_sym_DOLLAR] = ACTIONS(6196), + [anon_sym_PIPE] = ACTIONS(6196), + [anon_sym_QMARK] = ACTIONS(6196), + [anon_sym_STAR] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(6196), + [anon_sym_void] = ACTIONS(6198), + [anon_sym_noreturn] = ACTIONS(6198), + [anon_sym_type] = ACTIONS(6198), + [anon_sym_anyopaque] = ACTIONS(6198), + [anon_sym_bool] = ACTIONS(6198), + [anon_sym_int] = ACTIONS(6198), + [anon_sym_uint] = ACTIONS(6198), + [anon_sym_float] = ACTIONS(6198), + [anon_sym_range] = ACTIONS(6198), + [anon_sym_i8] = ACTIONS(6198), + [anon_sym_i16] = ACTIONS(6198), + [anon_sym_i32] = ACTIONS(6198), + [anon_sym_i64] = ACTIONS(6198), + [anon_sym_u8] = ACTIONS(6198), + [anon_sym_u16] = ACTIONS(6198), + [anon_sym_u32] = ACTIONS(6198), + [anon_sym_u64] = ACTIONS(6198), + [anon_sym_isize] = ACTIONS(6198), + [anon_sym_usize] = ACTIONS(6198), + [anon_sym_f32] = ACTIONS(6198), + [anon_sym_f64] = ACTIONS(6198), + [anon_sym_c_char] = ACTIONS(6198), + [anon_sym_c_schar] = ACTIONS(6198), + [anon_sym_c_uchar] = ACTIONS(6198), + [anon_sym_c_short] = ACTIONS(6198), + [anon_sym_c_ushort] = ACTIONS(6198), + [anon_sym_c_int] = ACTIONS(6198), + [anon_sym_c_uint] = ACTIONS(6198), + [anon_sym_c_long] = ACTIONS(6198), + [anon_sym_c_ulong] = ACTIONS(6198), + [anon_sym_c_longlong] = ACTIONS(6198), + [anon_sym_c_ulonglong] = ACTIONS(6198), + [anon_sym_c_float] = ACTIONS(6198), + [anon_sym_c_double] = ACTIONS(6198), + [anon_sym_c_longdouble] = ACTIONS(6198), + [anon_sym_return] = ACTIONS(6198), + [anon_sym_yield] = ACTIONS(6198), + [anon_sym_COLON] = ACTIONS(6196), + [anon_sym_break] = ACTIONS(6198), + [anon_sym_continue] = ACTIONS(6198), + [anon_sym_defer] = ACTIONS(6198), + [anon_sym_errdefer] = ACTIONS(6198), + [anon_sym_if] = ACTIONS(6198), + [anon_sym_else] = ACTIONS(6198), + [anon_sym_while] = ACTIONS(6198), + [anon_sym_expand] = ACTIONS(6198), + [anon_sym_for] = ACTIONS(6198), + [anon_sym_match] = ACTIONS(6198), + [anon_sym_DOT_DOT] = ACTIONS(6198), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6196), + [anon_sym_orelse] = ACTIONS(6198), + [anon_sym_or] = ACTIONS(6198), + [anon_sym_and] = ACTIONS(6198), + [anon_sym_EQ_EQ] = ACTIONS(6196), + [anon_sym_BANG_EQ] = ACTIONS(6196), + [anon_sym_LT] = ACTIONS(6198), + [anon_sym_LT_EQ] = ACTIONS(6196), + [anon_sym_GT] = ACTIONS(6198), + [anon_sym_GT_EQ] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6196), + [anon_sym_xor] = ACTIONS(6198), + [anon_sym_LT_LT] = ACTIONS(6198), + [anon_sym_GT_GT] = ACTIONS(6196), + [anon_sym_LT_LT_PIPE] = ACTIONS(6196), + [anon_sym_PLUS] = ACTIONS(6196), + [anon_sym_SLASH] = ACTIONS(6196), + [anon_sym_catch] = ACTIONS(6198), + [anon_sym_TILDE] = ACTIONS(6196), + [anon_sym_try] = ACTIONS(6198), + [anon_sym_DOT] = ACTIONS(6198), + [anon_sym_CARET] = ACTIONS(6196), + [anon_sym_true] = ACTIONS(6198), + [anon_sym_false] = ACTIONS(6198), + [anon_sym_null] = ACTIONS(6198), + [anon_sym_unreachable] = ACTIONS(6198), + [anon_sym_undefined] = ACTIONS(6198), + [sym_sink] = ACTIONS(6198), + [sym_integer] = ACTIONS(6198), + [sym_float] = ACTIONS(6196), + [anon_sym_DQUOTE] = ACTIONS(6196), + [sym_multiline_string] = ACTIONS(6196), + [sym_character] = ACTIONS(6196), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6196), + }, + [STATE(4463)] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [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_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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(1198), + [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(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_xor] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1194), + [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_catch] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_unreachable] = ACTIONS(1194), + [anon_sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_multiline_string] = ACTIONS(1198), + [sym_character] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(4464)] = { + [ts_builtin_sym_end] = ACTIONS(5262), + [sym_identifier] = ACTIONS(5264), + [anon_sym_import] = ACTIONS(5264), + [anon_sym_test] = ACTIONS(5264), + [anon_sym_hide] = ACTIONS(5264), + [anon_sym_func] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_RBRACE] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5262), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_QMARK] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_void] = ACTIONS(5264), + [anon_sym_noreturn] = ACTIONS(5264), + [anon_sym_type] = ACTIONS(5264), + [anon_sym_anyopaque] = ACTIONS(5264), + [anon_sym_bool] = ACTIONS(5264), + [anon_sym_int] = ACTIONS(5264), + [anon_sym_uint] = ACTIONS(5264), + [anon_sym_float] = ACTIONS(5264), + [anon_sym_range] = ACTIONS(5264), + [anon_sym_i8] = ACTIONS(5264), + [anon_sym_i16] = ACTIONS(5264), + [anon_sym_i32] = ACTIONS(5264), + [anon_sym_i64] = ACTIONS(5264), + [anon_sym_u8] = ACTIONS(5264), + [anon_sym_u16] = ACTIONS(5264), + [anon_sym_u32] = ACTIONS(5264), + [anon_sym_u64] = ACTIONS(5264), + [anon_sym_isize] = ACTIONS(5264), + [anon_sym_usize] = ACTIONS(5264), + [anon_sym_f32] = ACTIONS(5264), + [anon_sym_f64] = ACTIONS(5264), + [anon_sym_c_char] = ACTIONS(5264), + [anon_sym_c_schar] = ACTIONS(5264), + [anon_sym_c_uchar] = ACTIONS(5264), + [anon_sym_c_short] = ACTIONS(5264), + [anon_sym_c_ushort] = ACTIONS(5264), + [anon_sym_c_int] = ACTIONS(5264), + [anon_sym_c_uint] = ACTIONS(5264), + [anon_sym_c_long] = ACTIONS(5264), + [anon_sym_c_ulong] = ACTIONS(5264), + [anon_sym_c_longlong] = ACTIONS(5264), + [anon_sym_c_ulonglong] = ACTIONS(5264), + [anon_sym_c_float] = ACTIONS(5264), + [anon_sym_c_double] = ACTIONS(5264), + [anon_sym_c_longdouble] = ACTIONS(5264), + [anon_sym_return] = ACTIONS(5264), + [anon_sym_yield] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5262), + [anon_sym_break] = ACTIONS(5264), + [anon_sym_continue] = ACTIONS(5264), + [anon_sym_defer] = ACTIONS(5264), + [anon_sym_errdefer] = ACTIONS(5264), + [anon_sym_if] = ACTIONS(5264), + [anon_sym_else] = ACTIONS(5264), + [anon_sym_while] = ACTIONS(5264), + [anon_sym_expand] = ACTIONS(5264), + [anon_sym_for] = ACTIONS(5264), + [anon_sym_match] = ACTIONS(5264), + [anon_sym_DOT_DOT] = ACTIONS(5264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5262), + [anon_sym_orelse] = ACTIONS(5264), + [anon_sym_or] = ACTIONS(5264), + [anon_sym_and] = ACTIONS(5264), + [anon_sym_EQ_EQ] = ACTIONS(5262), + [anon_sym_BANG_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_xor] = ACTIONS(5264), + [anon_sym_LT_LT] = ACTIONS(5264), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_LT_LT_PIPE] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5262), + [anon_sym_catch] = ACTIONS(5264), + [anon_sym_TILDE] = ACTIONS(5262), + [anon_sym_try] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_true] = ACTIONS(5264), + [anon_sym_false] = ACTIONS(5264), + [anon_sym_null] = ACTIONS(5264), + [anon_sym_unreachable] = ACTIONS(5264), + [anon_sym_undefined] = ACTIONS(5264), + [sym_sink] = ACTIONS(5264), + [sym_integer] = ACTIONS(5264), + [sym_float] = ACTIONS(5262), + [anon_sym_DQUOTE] = ACTIONS(5262), + [sym_multiline_string] = ACTIONS(5262), + [sym_character] = ACTIONS(5262), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5262), + }, + [STATE(4465)] = { + [ts_builtin_sym_end] = ACTIONS(5968), + [sym_identifier] = ACTIONS(5970), + [anon_sym_import] = ACTIONS(5970), + [anon_sym_test] = ACTIONS(5970), + [anon_sym_hide] = ACTIONS(5970), + [anon_sym_func] = ACTIONS(5970), + [anon_sym_BANG] = ACTIONS(5970), + [anon_sym_struct] = ACTIONS(5970), + [anon_sym_LPAREN] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_DASH] = ACTIONS(5968), + [anon_sym_DOLLAR] = ACTIONS(5968), + [anon_sym_PIPE] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(5968), + [anon_sym_void] = ACTIONS(5970), + [anon_sym_noreturn] = ACTIONS(5970), + [anon_sym_type] = ACTIONS(5970), + [anon_sym_anyopaque] = ACTIONS(5970), + [anon_sym_bool] = ACTIONS(5970), + [anon_sym_int] = ACTIONS(5970), + [anon_sym_uint] = ACTIONS(5970), + [anon_sym_float] = ACTIONS(5970), + [anon_sym_range] = ACTIONS(5970), + [anon_sym_i8] = ACTIONS(5970), + [anon_sym_i16] = ACTIONS(5970), + [anon_sym_i32] = ACTIONS(5970), + [anon_sym_i64] = ACTIONS(5970), + [anon_sym_u8] = ACTIONS(5970), + [anon_sym_u16] = ACTIONS(5970), + [anon_sym_u32] = ACTIONS(5970), + [anon_sym_u64] = ACTIONS(5970), + [anon_sym_isize] = ACTIONS(5970), + [anon_sym_usize] = ACTIONS(5970), + [anon_sym_f32] = ACTIONS(5970), + [anon_sym_f64] = ACTIONS(5970), + [anon_sym_c_char] = ACTIONS(5970), + [anon_sym_c_schar] = ACTIONS(5970), + [anon_sym_c_uchar] = ACTIONS(5970), + [anon_sym_c_short] = ACTIONS(5970), + [anon_sym_c_ushort] = ACTIONS(5970), + [anon_sym_c_int] = ACTIONS(5970), + [anon_sym_c_uint] = ACTIONS(5970), + [anon_sym_c_long] = ACTIONS(5970), + [anon_sym_c_ulong] = ACTIONS(5970), + [anon_sym_c_longlong] = ACTIONS(5970), + [anon_sym_c_ulonglong] = ACTIONS(5970), + [anon_sym_c_float] = ACTIONS(5970), + [anon_sym_c_double] = ACTIONS(5970), + [anon_sym_c_longdouble] = ACTIONS(5970), + [anon_sym_return] = ACTIONS(5970), + [anon_sym_yield] = ACTIONS(5970), + [anon_sym_COLON] = ACTIONS(5968), + [anon_sym_break] = ACTIONS(5970), + [anon_sym_continue] = ACTIONS(5970), + [anon_sym_defer] = ACTIONS(5970), + [anon_sym_errdefer] = ACTIONS(5970), + [anon_sym_if] = ACTIONS(5970), + [anon_sym_else] = ACTIONS(5970), + [anon_sym_while] = ACTIONS(5970), + [anon_sym_expand] = ACTIONS(5970), + [anon_sym_for] = ACTIONS(5970), + [anon_sym_match] = ACTIONS(5970), + [anon_sym_DOT_DOT] = ACTIONS(5970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5968), + [anon_sym_orelse] = ACTIONS(5970), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(5968), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_LT_LT_PIPE] = ACTIONS(5968), + [anon_sym_PLUS] = ACTIONS(5968), + [anon_sym_SLASH] = ACTIONS(5968), + [anon_sym_catch] = ACTIONS(5970), + [anon_sym_TILDE] = ACTIONS(5968), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_true] = ACTIONS(5970), + [anon_sym_false] = ACTIONS(5970), + [anon_sym_null] = ACTIONS(5970), + [anon_sym_unreachable] = ACTIONS(5970), + [anon_sym_undefined] = ACTIONS(5970), + [sym_sink] = ACTIONS(5970), + [sym_integer] = ACTIONS(5970), + [sym_float] = ACTIONS(5968), + [anon_sym_DQUOTE] = ACTIONS(5968), + [sym_multiline_string] = ACTIONS(5968), + [sym_character] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5968), + }, + [STATE(4466)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10963), + [sym_labeled_block] = STATE(10963), + [sym_if_statement] = STATE(10963), + [sym_while_statement] = STATE(10963), + [sym_for_statement] = STATE(10963), + [sym_match_statement] = STATE(10963), + [sym__value] = STATE(10963), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4496), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7190), + }, + [STATE(4467)] = { + [ts_builtin_sym_end] = ACTIONS(5972), + [sym_identifier] = ACTIONS(5974), + [anon_sym_import] = ACTIONS(5974), + [anon_sym_test] = ACTIONS(5974), + [anon_sym_hide] = ACTIONS(5974), + [anon_sym_func] = ACTIONS(5974), + [anon_sym_BANG] = ACTIONS(5974), + [anon_sym_struct] = ACTIONS(5974), + [anon_sym_LPAREN] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5972), + [anon_sym_DOLLAR] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5972), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(5972), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_void] = ACTIONS(5974), + [anon_sym_noreturn] = ACTIONS(5974), + [anon_sym_type] = ACTIONS(5974), + [anon_sym_anyopaque] = ACTIONS(5974), + [anon_sym_bool] = ACTIONS(5974), + [anon_sym_int] = ACTIONS(5974), + [anon_sym_uint] = ACTIONS(5974), + [anon_sym_float] = ACTIONS(5974), + [anon_sym_range] = ACTIONS(5974), + [anon_sym_i8] = ACTIONS(5974), + [anon_sym_i16] = ACTIONS(5974), + [anon_sym_i32] = ACTIONS(5974), + [anon_sym_i64] = ACTIONS(5974), + [anon_sym_u8] = ACTIONS(5974), + [anon_sym_u16] = ACTIONS(5974), + [anon_sym_u32] = ACTIONS(5974), + [anon_sym_u64] = ACTIONS(5974), + [anon_sym_isize] = ACTIONS(5974), + [anon_sym_usize] = ACTIONS(5974), + [anon_sym_f32] = ACTIONS(5974), + [anon_sym_f64] = ACTIONS(5974), + [anon_sym_c_char] = ACTIONS(5974), + [anon_sym_c_schar] = ACTIONS(5974), + [anon_sym_c_uchar] = ACTIONS(5974), + [anon_sym_c_short] = ACTIONS(5974), + [anon_sym_c_ushort] = ACTIONS(5974), + [anon_sym_c_int] = ACTIONS(5974), + [anon_sym_c_uint] = ACTIONS(5974), + [anon_sym_c_long] = ACTIONS(5974), + [anon_sym_c_ulong] = ACTIONS(5974), + [anon_sym_c_longlong] = ACTIONS(5974), + [anon_sym_c_ulonglong] = ACTIONS(5974), + [anon_sym_c_float] = ACTIONS(5974), + [anon_sym_c_double] = ACTIONS(5974), + [anon_sym_c_longdouble] = ACTIONS(5974), + [anon_sym_return] = ACTIONS(5974), + [anon_sym_yield] = ACTIONS(5974), + [anon_sym_COLON] = ACTIONS(5972), + [anon_sym_break] = ACTIONS(5974), + [anon_sym_continue] = ACTIONS(5974), + [anon_sym_defer] = ACTIONS(5974), + [anon_sym_errdefer] = ACTIONS(5974), + [anon_sym_if] = ACTIONS(5974), + [anon_sym_else] = ACTIONS(5974), + [anon_sym_while] = ACTIONS(5974), + [anon_sym_expand] = ACTIONS(5974), + [anon_sym_for] = ACTIONS(5974), + [anon_sym_match] = ACTIONS(5974), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5972), + [anon_sym_orelse] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5974), + [anon_sym_and] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_AMP] = ACTIONS(5972), + [anon_sym_xor] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5972), + [anon_sym_LT_LT_PIPE] = ACTIONS(5972), + [anon_sym_PLUS] = ACTIONS(5972), + [anon_sym_SLASH] = ACTIONS(5972), + [anon_sym_catch] = ACTIONS(5974), + [anon_sym_TILDE] = ACTIONS(5972), + [anon_sym_try] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5972), + [anon_sym_true] = ACTIONS(5974), + [anon_sym_false] = ACTIONS(5974), + [anon_sym_null] = ACTIONS(5974), + [anon_sym_unreachable] = ACTIONS(5974), + [anon_sym_undefined] = ACTIONS(5974), + [sym_sink] = ACTIONS(5974), + [sym_integer] = ACTIONS(5974), + [sym_float] = ACTIONS(5972), + [anon_sym_DQUOTE] = ACTIONS(5972), + [sym_multiline_string] = ACTIONS(5972), + [sym_character] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5972), + }, + [STATE(4468)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10999), + [sym_labeled_block] = STATE(10999), + [sym_if_statement] = STATE(10999), + [sym_while_statement] = STATE(10999), + [sym_for_statement] = STATE(10999), + [sym_match_statement] = STATE(10999), + [sym__value] = STATE(10999), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4087), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7192), + }, + [STATE(4469)] = { + [ts_builtin_sym_end] = ACTIONS(5190), + [sym_identifier] = ACTIONS(5192), + [anon_sym_import] = ACTIONS(5192), + [anon_sym_test] = ACTIONS(5192), + [anon_sym_hide] = ACTIONS(5192), + [anon_sym_func] = ACTIONS(5192), + [anon_sym_BANG] = ACTIONS(5192), + [anon_sym_struct] = ACTIONS(5192), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_DOLLAR] = ACTIONS(5190), + [anon_sym_PIPE] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_void] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym_type] = ACTIONS(5192), + [anon_sym_anyopaque] = ACTIONS(5192), + [anon_sym_bool] = ACTIONS(5192), + [anon_sym_int] = ACTIONS(5192), + [anon_sym_uint] = ACTIONS(5192), + [anon_sym_float] = ACTIONS(5192), + [anon_sym_range] = ACTIONS(5192), + [anon_sym_i8] = ACTIONS(5192), + [anon_sym_i16] = ACTIONS(5192), + [anon_sym_i32] = ACTIONS(5192), + [anon_sym_i64] = ACTIONS(5192), + [anon_sym_u8] = ACTIONS(5192), + [anon_sym_u16] = ACTIONS(5192), + [anon_sym_u32] = ACTIONS(5192), + [anon_sym_u64] = ACTIONS(5192), + [anon_sym_isize] = ACTIONS(5192), + [anon_sym_usize] = ACTIONS(5192), + [anon_sym_f32] = ACTIONS(5192), + [anon_sym_f64] = ACTIONS(5192), + [anon_sym_c_char] = ACTIONS(5192), + [anon_sym_c_schar] = ACTIONS(5192), + [anon_sym_c_uchar] = ACTIONS(5192), + [anon_sym_c_short] = ACTIONS(5192), + [anon_sym_c_ushort] = ACTIONS(5192), + [anon_sym_c_int] = ACTIONS(5192), + [anon_sym_c_uint] = ACTIONS(5192), + [anon_sym_c_long] = ACTIONS(5192), + [anon_sym_c_ulong] = ACTIONS(5192), + [anon_sym_c_longlong] = ACTIONS(5192), + [anon_sym_c_ulonglong] = ACTIONS(5192), + [anon_sym_c_float] = ACTIONS(5192), + [anon_sym_c_double] = ACTIONS(5192), + [anon_sym_c_longdouble] = ACTIONS(5192), + [anon_sym_return] = ACTIONS(5192), + [anon_sym_yield] = ACTIONS(5192), + [anon_sym_COLON] = ACTIONS(5190), + [anon_sym_break] = ACTIONS(5192), + [anon_sym_continue] = ACTIONS(5192), + [anon_sym_defer] = ACTIONS(5192), + [anon_sym_errdefer] = ACTIONS(5192), + [anon_sym_if] = ACTIONS(5192), + [anon_sym_else] = ACTIONS(5192), + [anon_sym_while] = ACTIONS(5192), + [anon_sym_expand] = ACTIONS(5192), + [anon_sym_for] = ACTIONS(5192), + [anon_sym_match] = ACTIONS(5192), + [anon_sym_DOT_DOT] = ACTIONS(5192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5190), + [anon_sym_orelse] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_EQ_EQ] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_GT] = ACTIONS(5192), + [anon_sym_GT_EQ] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_xor] = ACTIONS(5192), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5190), + [anon_sym_LT_LT_PIPE] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_SLASH] = ACTIONS(5190), + [anon_sym_catch] = ACTIONS(5192), + [anon_sym_TILDE] = ACTIONS(5190), + [anon_sym_try] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5192), + [anon_sym_CARET] = ACTIONS(5190), + [anon_sym_true] = ACTIONS(5192), + [anon_sym_false] = ACTIONS(5192), + [anon_sym_null] = ACTIONS(5192), + [anon_sym_unreachable] = ACTIONS(5192), + [anon_sym_undefined] = ACTIONS(5192), + [sym_sink] = ACTIONS(5192), + [sym_integer] = ACTIONS(5192), + [sym_float] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(5190), + [sym_multiline_string] = ACTIONS(5190), + [sym_character] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5190), + }, + [STATE(4470)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9120), + [sym_labeled_block] = STATE(9120), + [sym_if_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_match_statement] = STATE(9120), + [sym__value] = STATE(9120), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4222), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7194), + }, + [STATE(4471)] = { + [ts_builtin_sym_end] = ACTIONS(5194), + [sym_identifier] = ACTIONS(5196), + [anon_sym_import] = ACTIONS(5196), + [anon_sym_test] = ACTIONS(5196), + [anon_sym_hide] = ACTIONS(5196), + [anon_sym_func] = ACTIONS(5196), + [anon_sym_BANG] = ACTIONS(5196), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_QMARK] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_void] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym_type] = ACTIONS(5196), + [anon_sym_anyopaque] = ACTIONS(5196), + [anon_sym_bool] = ACTIONS(5196), + [anon_sym_int] = ACTIONS(5196), + [anon_sym_uint] = ACTIONS(5196), + [anon_sym_float] = ACTIONS(5196), + [anon_sym_range] = ACTIONS(5196), + [anon_sym_i8] = ACTIONS(5196), + [anon_sym_i16] = ACTIONS(5196), + [anon_sym_i32] = ACTIONS(5196), + [anon_sym_i64] = ACTIONS(5196), + [anon_sym_u8] = ACTIONS(5196), + [anon_sym_u16] = ACTIONS(5196), + [anon_sym_u32] = ACTIONS(5196), + [anon_sym_u64] = ACTIONS(5196), + [anon_sym_isize] = ACTIONS(5196), + [anon_sym_usize] = ACTIONS(5196), + [anon_sym_f32] = ACTIONS(5196), + [anon_sym_f64] = ACTIONS(5196), + [anon_sym_c_char] = ACTIONS(5196), + [anon_sym_c_schar] = ACTIONS(5196), + [anon_sym_c_uchar] = ACTIONS(5196), + [anon_sym_c_short] = ACTIONS(5196), + [anon_sym_c_ushort] = ACTIONS(5196), + [anon_sym_c_int] = ACTIONS(5196), + [anon_sym_c_uint] = ACTIONS(5196), + [anon_sym_c_long] = ACTIONS(5196), + [anon_sym_c_ulong] = ACTIONS(5196), + [anon_sym_c_longlong] = ACTIONS(5196), + [anon_sym_c_ulonglong] = ACTIONS(5196), + [anon_sym_c_float] = ACTIONS(5196), + [anon_sym_c_double] = ACTIONS(5196), + [anon_sym_c_longdouble] = ACTIONS(5196), + [anon_sym_return] = ACTIONS(5196), + [anon_sym_yield] = ACTIONS(5196), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_break] = ACTIONS(5196), + [anon_sym_continue] = ACTIONS(5196), + [anon_sym_defer] = ACTIONS(5196), + [anon_sym_errdefer] = ACTIONS(5196), + [anon_sym_if] = ACTIONS(5196), + [anon_sym_else] = ACTIONS(5196), + [anon_sym_while] = ACTIONS(5196), + [anon_sym_expand] = ACTIONS(5196), + [anon_sym_for] = ACTIONS(5196), + [anon_sym_match] = ACTIONS(5196), + [anon_sym_DOT_DOT] = ACTIONS(5196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5194), + [anon_sym_orelse] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_EQ_EQ] = ACTIONS(5194), + [anon_sym_BANG_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5196), + [anon_sym_GT_EQ] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_xor] = ACTIONS(5196), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5194), + [anon_sym_LT_LT_PIPE] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_catch] = ACTIONS(5196), + [anon_sym_TILDE] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5196), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym_true] = ACTIONS(5196), + [anon_sym_false] = ACTIONS(5196), + [anon_sym_null] = ACTIONS(5196), + [anon_sym_unreachable] = ACTIONS(5196), + [anon_sym_undefined] = ACTIONS(5196), + [sym_sink] = ACTIONS(5196), + [sym_integer] = ACTIONS(5196), + [sym_float] = ACTIONS(5194), + [anon_sym_DQUOTE] = ACTIONS(5194), + [sym_multiline_string] = ACTIONS(5194), + [sym_character] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5194), + }, + [STATE(4472)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9121), + [sym_labeled_block] = STATE(9121), + [sym_if_statement] = STATE(9121), + [sym_while_statement] = STATE(9121), + [sym_for_statement] = STATE(9121), + [sym_match_statement] = STATE(9121), + [sym__value] = STATE(9121), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4473)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9549), + [sym_labeled_block] = STATE(9549), + [sym_if_statement] = STATE(9549), + [sym_while_statement] = STATE(9549), + [sym_for_statement] = STATE(9549), + [sym_match_statement] = STATE(9549), + [sym__value] = STATE(9549), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4188), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7196), + }, + [STATE(4474)] = { + [ts_builtin_sym_end] = ACTIONS(5198), + [sym_identifier] = ACTIONS(5200), + [anon_sym_import] = ACTIONS(5200), + [anon_sym_test] = ACTIONS(5200), + [anon_sym_hide] = ACTIONS(5200), + [anon_sym_func] = ACTIONS(5200), + [anon_sym_BANG] = ACTIONS(5200), + [anon_sym_struct] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_QMARK] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_void] = ACTIONS(5200), + [anon_sym_noreturn] = ACTIONS(5200), + [anon_sym_type] = ACTIONS(5200), + [anon_sym_anyopaque] = ACTIONS(5200), + [anon_sym_bool] = ACTIONS(5200), + [anon_sym_int] = ACTIONS(5200), + [anon_sym_uint] = ACTIONS(5200), + [anon_sym_float] = ACTIONS(5200), + [anon_sym_range] = ACTIONS(5200), + [anon_sym_i8] = ACTIONS(5200), + [anon_sym_i16] = ACTIONS(5200), + [anon_sym_i32] = ACTIONS(5200), + [anon_sym_i64] = ACTIONS(5200), + [anon_sym_u8] = ACTIONS(5200), + [anon_sym_u16] = ACTIONS(5200), + [anon_sym_u32] = ACTIONS(5200), + [anon_sym_u64] = ACTIONS(5200), + [anon_sym_isize] = ACTIONS(5200), + [anon_sym_usize] = ACTIONS(5200), + [anon_sym_f32] = ACTIONS(5200), + [anon_sym_f64] = ACTIONS(5200), + [anon_sym_c_char] = ACTIONS(5200), + [anon_sym_c_schar] = ACTIONS(5200), + [anon_sym_c_uchar] = ACTIONS(5200), + [anon_sym_c_short] = ACTIONS(5200), + [anon_sym_c_ushort] = ACTIONS(5200), + [anon_sym_c_int] = ACTIONS(5200), + [anon_sym_c_uint] = ACTIONS(5200), + [anon_sym_c_long] = ACTIONS(5200), + [anon_sym_c_ulong] = ACTIONS(5200), + [anon_sym_c_longlong] = ACTIONS(5200), + [anon_sym_c_ulonglong] = ACTIONS(5200), + [anon_sym_c_float] = ACTIONS(5200), + [anon_sym_c_double] = ACTIONS(5200), + [anon_sym_c_longdouble] = ACTIONS(5200), + [anon_sym_return] = ACTIONS(5200), + [anon_sym_yield] = ACTIONS(5200), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_break] = ACTIONS(5200), + [anon_sym_continue] = ACTIONS(5200), + [anon_sym_defer] = ACTIONS(5200), + [anon_sym_errdefer] = ACTIONS(5200), + [anon_sym_if] = ACTIONS(5200), + [anon_sym_else] = ACTIONS(5200), + [anon_sym_while] = ACTIONS(5200), + [anon_sym_expand] = ACTIONS(5200), + [anon_sym_for] = ACTIONS(5200), + [anon_sym_match] = ACTIONS(5200), + [anon_sym_DOT_DOT] = ACTIONS(5200), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5198), + [anon_sym_orelse] = ACTIONS(5200), + [anon_sym_or] = ACTIONS(5200), + [anon_sym_and] = ACTIONS(5200), + [anon_sym_EQ_EQ] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5198), + [anon_sym_xor] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_LT_LT_PIPE] = ACTIONS(5198), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_catch] = ACTIONS(5200), + [anon_sym_TILDE] = ACTIONS(5198), + [anon_sym_try] = ACTIONS(5200), + [anon_sym_DOT] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_true] = ACTIONS(5200), + [anon_sym_false] = ACTIONS(5200), + [anon_sym_null] = ACTIONS(5200), + [anon_sym_unreachable] = ACTIONS(5200), + [anon_sym_undefined] = ACTIONS(5200), + [sym_sink] = ACTIONS(5200), + [sym_integer] = ACTIONS(5200), + [sym_float] = ACTIONS(5198), + [anon_sym_DQUOTE] = ACTIONS(5198), + [sym_multiline_string] = ACTIONS(5198), + [sym_character] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5198), + }, + [STATE(4475)] = { + [ts_builtin_sym_end] = ACTIONS(5978), + [sym_identifier] = ACTIONS(5980), + [anon_sym_import] = ACTIONS(5980), + [anon_sym_test] = ACTIONS(5980), + [anon_sym_hide] = ACTIONS(5980), + [anon_sym_func] = ACTIONS(5980), + [anon_sym_BANG] = ACTIONS(5980), + [anon_sym_struct] = ACTIONS(5980), + [anon_sym_LPAREN] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5978), + [anon_sym_RBRACE] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5978), + [anon_sym_DOLLAR] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5978), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_STAR] = ACTIONS(5978), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_void] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym_type] = ACTIONS(5980), + [anon_sym_anyopaque] = ACTIONS(5980), + [anon_sym_bool] = ACTIONS(5980), + [anon_sym_int] = ACTIONS(5980), + [anon_sym_uint] = ACTIONS(5980), + [anon_sym_float] = ACTIONS(5980), + [anon_sym_range] = ACTIONS(5980), + [anon_sym_i8] = ACTIONS(5980), + [anon_sym_i16] = ACTIONS(5980), + [anon_sym_i32] = ACTIONS(5980), + [anon_sym_i64] = ACTIONS(5980), + [anon_sym_u8] = ACTIONS(5980), + [anon_sym_u16] = ACTIONS(5980), + [anon_sym_u32] = ACTIONS(5980), + [anon_sym_u64] = ACTIONS(5980), + [anon_sym_isize] = ACTIONS(5980), + [anon_sym_usize] = ACTIONS(5980), + [anon_sym_f32] = ACTIONS(5980), + [anon_sym_f64] = ACTIONS(5980), + [anon_sym_c_char] = ACTIONS(5980), + [anon_sym_c_schar] = ACTIONS(5980), + [anon_sym_c_uchar] = ACTIONS(5980), + [anon_sym_c_short] = ACTIONS(5980), + [anon_sym_c_ushort] = ACTIONS(5980), + [anon_sym_c_int] = ACTIONS(5980), + [anon_sym_c_uint] = ACTIONS(5980), + [anon_sym_c_long] = ACTIONS(5980), + [anon_sym_c_ulong] = ACTIONS(5980), + [anon_sym_c_longlong] = ACTIONS(5980), + [anon_sym_c_ulonglong] = ACTIONS(5980), + [anon_sym_c_float] = ACTIONS(5980), + [anon_sym_c_double] = ACTIONS(5980), + [anon_sym_c_longdouble] = ACTIONS(5980), + [anon_sym_return] = ACTIONS(5980), + [anon_sym_yield] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_break] = ACTIONS(5980), + [anon_sym_continue] = ACTIONS(5980), + [anon_sym_defer] = ACTIONS(5980), + [anon_sym_errdefer] = ACTIONS(5980), + [anon_sym_if] = ACTIONS(5980), + [anon_sym_else] = ACTIONS(5980), + [anon_sym_while] = ACTIONS(5980), + [anon_sym_expand] = ACTIONS(5980), + [anon_sym_for] = ACTIONS(5980), + [anon_sym_match] = ACTIONS(5980), + [anon_sym_DOT_DOT] = ACTIONS(5980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5978), + [anon_sym_orelse] = ACTIONS(5980), + [anon_sym_or] = ACTIONS(5980), + [anon_sym_and] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_xor] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5978), + [anon_sym_LT_LT_PIPE] = ACTIONS(5978), + [anon_sym_PLUS] = ACTIONS(5978), + [anon_sym_SLASH] = ACTIONS(5978), + [anon_sym_catch] = ACTIONS(5980), + [anon_sym_TILDE] = ACTIONS(5978), + [anon_sym_try] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_true] = ACTIONS(5980), + [anon_sym_false] = ACTIONS(5980), + [anon_sym_null] = ACTIONS(5980), + [anon_sym_unreachable] = ACTIONS(5980), + [anon_sym_undefined] = ACTIONS(5980), + [sym_sink] = ACTIONS(5980), + [sym_integer] = ACTIONS(5980), + [sym_float] = ACTIONS(5978), + [anon_sym_DQUOTE] = ACTIONS(5978), + [sym_multiline_string] = ACTIONS(5978), + [sym_character] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5978), + }, + [STATE(4476)] = { + [ts_builtin_sym_end] = ACTIONS(5538), + [sym_identifier] = ACTIONS(5540), + [anon_sym_import] = ACTIONS(5540), + [anon_sym_test] = ACTIONS(5540), + [anon_sym_hide] = ACTIONS(5540), + [anon_sym_func] = ACTIONS(5540), + [anon_sym_BANG] = ACTIONS(5540), + [anon_sym_struct] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(5538), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5538), + [anon_sym_DOLLAR] = ACTIONS(5538), + [anon_sym_PIPE] = ACTIONS(5538), + [anon_sym_QMARK] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5538), + [anon_sym_void] = ACTIONS(5540), + [anon_sym_noreturn] = ACTIONS(5540), + [anon_sym_type] = ACTIONS(5540), + [anon_sym_anyopaque] = ACTIONS(5540), + [anon_sym_bool] = ACTIONS(5540), + [anon_sym_int] = ACTIONS(5540), + [anon_sym_uint] = ACTIONS(5540), + [anon_sym_float] = ACTIONS(5540), + [anon_sym_range] = ACTIONS(5540), + [anon_sym_i8] = ACTIONS(5540), + [anon_sym_i16] = ACTIONS(5540), + [anon_sym_i32] = ACTIONS(5540), + [anon_sym_i64] = ACTIONS(5540), + [anon_sym_u8] = ACTIONS(5540), + [anon_sym_u16] = ACTIONS(5540), + [anon_sym_u32] = ACTIONS(5540), + [anon_sym_u64] = ACTIONS(5540), + [anon_sym_isize] = ACTIONS(5540), + [anon_sym_usize] = ACTIONS(5540), + [anon_sym_f32] = ACTIONS(5540), + [anon_sym_f64] = ACTIONS(5540), + [anon_sym_c_char] = ACTIONS(5540), + [anon_sym_c_schar] = ACTIONS(5540), + [anon_sym_c_uchar] = ACTIONS(5540), + [anon_sym_c_short] = ACTIONS(5540), + [anon_sym_c_ushort] = ACTIONS(5540), + [anon_sym_c_int] = ACTIONS(5540), + [anon_sym_c_uint] = ACTIONS(5540), + [anon_sym_c_long] = ACTIONS(5540), + [anon_sym_c_ulong] = ACTIONS(5540), + [anon_sym_c_longlong] = ACTIONS(5540), + [anon_sym_c_ulonglong] = ACTIONS(5540), + [anon_sym_c_float] = ACTIONS(5540), + [anon_sym_c_double] = ACTIONS(5540), + [anon_sym_c_longdouble] = ACTIONS(5540), + [anon_sym_return] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5540), + [anon_sym_COLON] = ACTIONS(5538), + [anon_sym_break] = ACTIONS(5540), + [anon_sym_continue] = ACTIONS(5540), + [anon_sym_defer] = ACTIONS(5540), + [anon_sym_errdefer] = ACTIONS(5540), + [anon_sym_if] = ACTIONS(5540), + [anon_sym_else] = ACTIONS(5540), + [anon_sym_while] = ACTIONS(5540), + [anon_sym_expand] = ACTIONS(5540), + [anon_sym_for] = ACTIONS(5540), + [anon_sym_match] = ACTIONS(5540), + [anon_sym_DOT_DOT] = ACTIONS(5540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5538), + [anon_sym_orelse] = ACTIONS(5540), + [anon_sym_or] = ACTIONS(5540), + [anon_sym_and] = ACTIONS(5540), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5540), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT] = ACTIONS(5540), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5538), + [anon_sym_xor] = ACTIONS(5540), + [anon_sym_LT_LT] = ACTIONS(5540), + [anon_sym_GT_GT] = ACTIONS(5538), + [anon_sym_LT_LT_PIPE] = ACTIONS(5538), + [anon_sym_PLUS] = ACTIONS(5538), + [anon_sym_SLASH] = ACTIONS(5538), + [anon_sym_catch] = ACTIONS(5540), + [anon_sym_TILDE] = ACTIONS(5538), + [anon_sym_try] = ACTIONS(5540), + [anon_sym_DOT] = ACTIONS(5540), + [anon_sym_CARET] = ACTIONS(5538), + [anon_sym_true] = ACTIONS(5540), + [anon_sym_false] = ACTIONS(5540), + [anon_sym_null] = ACTIONS(5540), + [anon_sym_unreachable] = ACTIONS(5540), + [anon_sym_undefined] = ACTIONS(5540), + [sym_sink] = ACTIONS(5540), + [sym_integer] = ACTIONS(5540), + [sym_float] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(5538), + [sym_multiline_string] = ACTIONS(5538), + [sym_character] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5538), + }, + [STATE(4477)] = { + [ts_builtin_sym_end] = ACTIONS(4680), + [sym_identifier] = ACTIONS(4682), + [anon_sym_import] = ACTIONS(4682), + [anon_sym_test] = ACTIONS(4682), + [anon_sym_hide] = ACTIONS(4682), + [anon_sym_func] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_struct] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_DOLLAR] = ACTIONS(4680), + [anon_sym_PIPE] = ACTIONS(4680), + [anon_sym_QMARK] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_void] = ACTIONS(4682), + [anon_sym_noreturn] = ACTIONS(4682), + [anon_sym_type] = ACTIONS(4682), + [anon_sym_anyopaque] = ACTIONS(4682), + [anon_sym_bool] = ACTIONS(4682), + [anon_sym_int] = ACTIONS(4682), + [anon_sym_uint] = ACTIONS(4682), + [anon_sym_float] = ACTIONS(4682), + [anon_sym_range] = ACTIONS(4682), + [anon_sym_i8] = ACTIONS(4682), + [anon_sym_i16] = ACTIONS(4682), + [anon_sym_i32] = ACTIONS(4682), + [anon_sym_i64] = ACTIONS(4682), + [anon_sym_u8] = ACTIONS(4682), + [anon_sym_u16] = ACTIONS(4682), + [anon_sym_u32] = ACTIONS(4682), + [anon_sym_u64] = ACTIONS(4682), + [anon_sym_isize] = ACTIONS(4682), + [anon_sym_usize] = ACTIONS(4682), + [anon_sym_f32] = ACTIONS(4682), + [anon_sym_f64] = ACTIONS(4682), + [anon_sym_c_char] = ACTIONS(4682), + [anon_sym_c_schar] = ACTIONS(4682), + [anon_sym_c_uchar] = ACTIONS(4682), + [anon_sym_c_short] = ACTIONS(4682), + [anon_sym_c_ushort] = ACTIONS(4682), + [anon_sym_c_int] = ACTIONS(4682), + [anon_sym_c_uint] = ACTIONS(4682), + [anon_sym_c_long] = ACTIONS(4682), + [anon_sym_c_ulong] = ACTIONS(4682), + [anon_sym_c_longlong] = ACTIONS(4682), + [anon_sym_c_ulonglong] = ACTIONS(4682), + [anon_sym_c_float] = ACTIONS(4682), + [anon_sym_c_double] = ACTIONS(4682), + [anon_sym_c_longdouble] = ACTIONS(4682), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_yield] = ACTIONS(4682), + [anon_sym_COLON] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_defer] = ACTIONS(4682), + [anon_sym_errdefer] = ACTIONS(4682), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_while] = ACTIONS(4682), + [anon_sym_expand] = ACTIONS(4682), + [anon_sym_for] = ACTIONS(4682), + [anon_sym_match] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4680), + [anon_sym_orelse] = ACTIONS(4682), + [anon_sym_or] = ACTIONS(4682), + [anon_sym_and] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4680), + [anon_sym_AMP] = ACTIONS(4680), + [anon_sym_xor] = ACTIONS(4682), + [anon_sym_LT_LT] = ACTIONS(4682), + [anon_sym_GT_GT] = ACTIONS(4680), + [anon_sym_LT_LT_PIPE] = ACTIONS(4680), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_catch] = ACTIONS(4682), + [anon_sym_TILDE] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_CARET] = ACTIONS(4680), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(4682), + [anon_sym_unreachable] = ACTIONS(4682), + [anon_sym_undefined] = ACTIONS(4682), + [sym_sink] = ACTIONS(4682), + [sym_integer] = ACTIONS(4682), + [sym_float] = ACTIONS(4680), + [anon_sym_DQUOTE] = ACTIONS(4680), + [sym_multiline_string] = ACTIONS(4680), + [sym_character] = ACTIONS(4680), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4680), + }, + [STATE(4478)] = { + [ts_builtin_sym_end] = ACTIONS(5542), + [sym_identifier] = ACTIONS(5544), + [anon_sym_import] = ACTIONS(5544), + [anon_sym_test] = ACTIONS(5544), + [anon_sym_hide] = ACTIONS(5544), + [anon_sym_func] = ACTIONS(5544), + [anon_sym_BANG] = ACTIONS(5544), + [anon_sym_struct] = ACTIONS(5544), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_RBRACE] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_DOLLAR] = ACTIONS(5542), + [anon_sym_PIPE] = ACTIONS(5542), + [anon_sym_QMARK] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_void] = ACTIONS(5544), + [anon_sym_noreturn] = ACTIONS(5544), + [anon_sym_type] = ACTIONS(5544), + [anon_sym_anyopaque] = ACTIONS(5544), + [anon_sym_bool] = ACTIONS(5544), + [anon_sym_int] = ACTIONS(5544), + [anon_sym_uint] = ACTIONS(5544), + [anon_sym_float] = ACTIONS(5544), + [anon_sym_range] = ACTIONS(5544), + [anon_sym_i8] = ACTIONS(5544), + [anon_sym_i16] = ACTIONS(5544), + [anon_sym_i32] = ACTIONS(5544), + [anon_sym_i64] = ACTIONS(5544), + [anon_sym_u8] = ACTIONS(5544), + [anon_sym_u16] = ACTIONS(5544), + [anon_sym_u32] = ACTIONS(5544), + [anon_sym_u64] = ACTIONS(5544), + [anon_sym_isize] = ACTIONS(5544), + [anon_sym_usize] = ACTIONS(5544), + [anon_sym_f32] = ACTIONS(5544), + [anon_sym_f64] = ACTIONS(5544), + [anon_sym_c_char] = ACTIONS(5544), + [anon_sym_c_schar] = ACTIONS(5544), + [anon_sym_c_uchar] = ACTIONS(5544), + [anon_sym_c_short] = ACTIONS(5544), + [anon_sym_c_ushort] = ACTIONS(5544), + [anon_sym_c_int] = ACTIONS(5544), + [anon_sym_c_uint] = ACTIONS(5544), + [anon_sym_c_long] = ACTIONS(5544), + [anon_sym_c_ulong] = ACTIONS(5544), + [anon_sym_c_longlong] = ACTIONS(5544), + [anon_sym_c_ulonglong] = ACTIONS(5544), + [anon_sym_c_float] = ACTIONS(5544), + [anon_sym_c_double] = ACTIONS(5544), + [anon_sym_c_longdouble] = ACTIONS(5544), + [anon_sym_return] = ACTIONS(5544), + [anon_sym_yield] = ACTIONS(5544), + [anon_sym_COLON] = ACTIONS(5542), + [anon_sym_break] = ACTIONS(5544), + [anon_sym_continue] = ACTIONS(5544), + [anon_sym_defer] = ACTIONS(5544), + [anon_sym_errdefer] = ACTIONS(5544), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_else] = ACTIONS(5544), + [anon_sym_while] = ACTIONS(5544), + [anon_sym_expand] = ACTIONS(5544), + [anon_sym_for] = ACTIONS(5544), + [anon_sym_match] = ACTIONS(5544), + [anon_sym_DOT_DOT] = ACTIONS(5544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5542), + [anon_sym_orelse] = ACTIONS(5544), + [anon_sym_or] = ACTIONS(5544), + [anon_sym_and] = ACTIONS(5544), + [anon_sym_EQ_EQ] = ACTIONS(5542), + [anon_sym_BANG_EQ] = ACTIONS(5542), + [anon_sym_LT] = ACTIONS(5544), + [anon_sym_LT_EQ] = ACTIONS(5542), + [anon_sym_GT] = ACTIONS(5544), + [anon_sym_GT_EQ] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_xor] = ACTIONS(5544), + [anon_sym_LT_LT] = ACTIONS(5544), + [anon_sym_GT_GT] = ACTIONS(5542), + [anon_sym_LT_LT_PIPE] = ACTIONS(5542), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_SLASH] = ACTIONS(5542), + [anon_sym_catch] = ACTIONS(5544), + [anon_sym_TILDE] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5544), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_CARET] = ACTIONS(5542), + [anon_sym_true] = ACTIONS(5544), + [anon_sym_false] = ACTIONS(5544), + [anon_sym_null] = ACTIONS(5544), + [anon_sym_unreachable] = ACTIONS(5544), + [anon_sym_undefined] = ACTIONS(5544), + [sym_sink] = ACTIONS(5544), + [sym_integer] = ACTIONS(5544), + [sym_float] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [sym_multiline_string] = ACTIONS(5542), + [sym_character] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5542), + }, + [STATE(4479)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9696), + [sym_labeled_block] = STATE(9696), + [sym_if_statement] = STATE(9696), + [sym_while_statement] = STATE(9696), + [sym_for_statement] = STATE(9696), + [sym_match_statement] = STATE(9696), + [sym__value] = STATE(9696), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4191), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7198), + }, + [STATE(4480)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8669), + [sym_error_capture] = STATE(4882), + [sym_if_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_match_statement] = STATE(8669), + [sym_expression] = STATE(8574), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4883), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7200), + }, + [STATE(4481)] = { + [ts_builtin_sym_end] = ACTIONS(5786), + [sym_identifier] = ACTIONS(5788), + [anon_sym_import] = ACTIONS(5788), + [anon_sym_test] = ACTIONS(5788), + [anon_sym_hide] = ACTIONS(5788), + [anon_sym_func] = ACTIONS(5788), + [anon_sym_BANG] = ACTIONS(5788), + [anon_sym_struct] = ACTIONS(5788), + [anon_sym_LPAREN] = ACTIONS(5786), + [anon_sym_LBRACE] = ACTIONS(5786), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5786), + [anon_sym_DOLLAR] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5786), + [anon_sym_QMARK] = ACTIONS(5786), + [anon_sym_STAR] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_void] = ACTIONS(5788), + [anon_sym_noreturn] = ACTIONS(5788), + [anon_sym_type] = ACTIONS(5788), + [anon_sym_anyopaque] = ACTIONS(5788), + [anon_sym_bool] = ACTIONS(5788), + [anon_sym_int] = ACTIONS(5788), + [anon_sym_uint] = ACTIONS(5788), + [anon_sym_float] = ACTIONS(5788), + [anon_sym_range] = ACTIONS(5788), + [anon_sym_i8] = ACTIONS(5788), + [anon_sym_i16] = ACTIONS(5788), + [anon_sym_i32] = ACTIONS(5788), + [anon_sym_i64] = ACTIONS(5788), + [anon_sym_u8] = ACTIONS(5788), + [anon_sym_u16] = ACTIONS(5788), + [anon_sym_u32] = ACTIONS(5788), + [anon_sym_u64] = ACTIONS(5788), + [anon_sym_isize] = ACTIONS(5788), + [anon_sym_usize] = ACTIONS(5788), + [anon_sym_f32] = ACTIONS(5788), + [anon_sym_f64] = ACTIONS(5788), + [anon_sym_c_char] = ACTIONS(5788), + [anon_sym_c_schar] = ACTIONS(5788), + [anon_sym_c_uchar] = ACTIONS(5788), + [anon_sym_c_short] = ACTIONS(5788), + [anon_sym_c_ushort] = ACTIONS(5788), + [anon_sym_c_int] = ACTIONS(5788), + [anon_sym_c_uint] = ACTIONS(5788), + [anon_sym_c_long] = ACTIONS(5788), + [anon_sym_c_ulong] = ACTIONS(5788), + [anon_sym_c_longlong] = ACTIONS(5788), + [anon_sym_c_ulonglong] = ACTIONS(5788), + [anon_sym_c_float] = ACTIONS(5788), + [anon_sym_c_double] = ACTIONS(5788), + [anon_sym_c_longdouble] = ACTIONS(5788), + [anon_sym_return] = ACTIONS(5788), + [anon_sym_yield] = ACTIONS(5788), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym_break] = ACTIONS(5788), + [anon_sym_continue] = ACTIONS(5788), + [anon_sym_defer] = ACTIONS(5788), + [anon_sym_errdefer] = ACTIONS(5788), + [anon_sym_if] = ACTIONS(5788), + [anon_sym_else] = ACTIONS(5788), + [anon_sym_while] = ACTIONS(5788), + [anon_sym_expand] = ACTIONS(5788), + [anon_sym_for] = ACTIONS(5788), + [anon_sym_match] = ACTIONS(5788), + [anon_sym_DOT_DOT] = ACTIONS(5788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5786), + [anon_sym_orelse] = ACTIONS(5788), + [anon_sym_or] = ACTIONS(5788), + [anon_sym_and] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5786), + [anon_sym_BANG_EQ] = ACTIONS(5786), + [anon_sym_LT] = ACTIONS(5788), + [anon_sym_LT_EQ] = ACTIONS(5786), + [anon_sym_GT] = ACTIONS(5788), + [anon_sym_GT_EQ] = ACTIONS(5786), + [anon_sym_AMP] = ACTIONS(5786), + [anon_sym_xor] = ACTIONS(5788), + [anon_sym_LT_LT] = ACTIONS(5788), + [anon_sym_GT_GT] = ACTIONS(5786), + [anon_sym_LT_LT_PIPE] = ACTIONS(5786), + [anon_sym_PLUS] = ACTIONS(5786), + [anon_sym_SLASH] = ACTIONS(5786), + [anon_sym_catch] = ACTIONS(5788), + [anon_sym_TILDE] = ACTIONS(5786), + [anon_sym_try] = ACTIONS(5788), + [anon_sym_DOT] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5786), + [anon_sym_true] = ACTIONS(5788), + [anon_sym_false] = ACTIONS(5788), + [anon_sym_null] = ACTIONS(5788), + [anon_sym_unreachable] = ACTIONS(5788), + [anon_sym_undefined] = ACTIONS(5788), + [sym_sink] = ACTIONS(5788), + [sym_integer] = ACTIONS(5788), + [sym_float] = ACTIONS(5786), + [anon_sym_DQUOTE] = ACTIONS(5786), + [sym_multiline_string] = ACTIONS(5786), + [sym_character] = ACTIONS(5786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5786), + }, + [STATE(4482)] = { + [ts_builtin_sym_end] = ACTIONS(4684), + [sym_identifier] = ACTIONS(4686), + [anon_sym_import] = ACTIONS(4686), + [anon_sym_test] = ACTIONS(4686), + [anon_sym_hide] = ACTIONS(4686), + [anon_sym_func] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_struct] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_DOLLAR] = ACTIONS(4684), + [anon_sym_PIPE] = ACTIONS(4684), + [anon_sym_QMARK] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_void] = ACTIONS(4686), + [anon_sym_noreturn] = ACTIONS(4686), + [anon_sym_type] = ACTIONS(4686), + [anon_sym_anyopaque] = ACTIONS(4686), + [anon_sym_bool] = ACTIONS(4686), + [anon_sym_int] = ACTIONS(4686), + [anon_sym_uint] = ACTIONS(4686), + [anon_sym_float] = ACTIONS(4686), + [anon_sym_range] = ACTIONS(4686), + [anon_sym_i8] = ACTIONS(4686), + [anon_sym_i16] = ACTIONS(4686), + [anon_sym_i32] = ACTIONS(4686), + [anon_sym_i64] = ACTIONS(4686), + [anon_sym_u8] = ACTIONS(4686), + [anon_sym_u16] = ACTIONS(4686), + [anon_sym_u32] = ACTIONS(4686), + [anon_sym_u64] = ACTIONS(4686), + [anon_sym_isize] = ACTIONS(4686), + [anon_sym_usize] = ACTIONS(4686), + [anon_sym_f32] = ACTIONS(4686), + [anon_sym_f64] = ACTIONS(4686), + [anon_sym_c_char] = ACTIONS(4686), + [anon_sym_c_schar] = ACTIONS(4686), + [anon_sym_c_uchar] = ACTIONS(4686), + [anon_sym_c_short] = ACTIONS(4686), + [anon_sym_c_ushort] = ACTIONS(4686), + [anon_sym_c_int] = ACTIONS(4686), + [anon_sym_c_uint] = ACTIONS(4686), + [anon_sym_c_long] = ACTIONS(4686), + [anon_sym_c_ulong] = ACTIONS(4686), + [anon_sym_c_longlong] = ACTIONS(4686), + [anon_sym_c_ulonglong] = ACTIONS(4686), + [anon_sym_c_float] = ACTIONS(4686), + [anon_sym_c_double] = ACTIONS(4686), + [anon_sym_c_longdouble] = ACTIONS(4686), + [anon_sym_return] = ACTIONS(4686), + [anon_sym_yield] = ACTIONS(4686), + [anon_sym_COLON] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4686), + [anon_sym_continue] = ACTIONS(4686), + [anon_sym_defer] = ACTIONS(4686), + [anon_sym_errdefer] = ACTIONS(4686), + [anon_sym_if] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_while] = ACTIONS(4686), + [anon_sym_expand] = ACTIONS(4686), + [anon_sym_for] = ACTIONS(4686), + [anon_sym_match] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4684), + [anon_sym_orelse] = ACTIONS(4686), + [anon_sym_or] = ACTIONS(4686), + [anon_sym_and] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_AMP] = ACTIONS(4684), + [anon_sym_xor] = ACTIONS(4686), + [anon_sym_LT_LT] = ACTIONS(4686), + [anon_sym_GT_GT] = ACTIONS(4684), + [anon_sym_LT_LT_PIPE] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_catch] = ACTIONS(4686), + [anon_sym_TILDE] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_CARET] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4686), + [anon_sym_false] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4686), + [anon_sym_unreachable] = ACTIONS(4686), + [anon_sym_undefined] = ACTIONS(4686), + [sym_sink] = ACTIONS(4686), + [sym_integer] = ACTIONS(4686), + [sym_float] = ACTIONS(4684), + [anon_sym_DQUOTE] = ACTIONS(4684), + [sym_multiline_string] = ACTIONS(4684), + [sym_character] = ACTIONS(4684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4684), + }, + [STATE(4483)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8694), + [sym_labeled_block] = STATE(8694), + [sym_if_statement] = STATE(8694), + [sym_while_statement] = STATE(8694), + [sym_for_statement] = STATE(8694), + [sym_match_statement] = STATE(8694), + [sym__value] = STATE(8694), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7202), + }, + [STATE(4484)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4911), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(509), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4912), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7204), + }, + [STATE(4485)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4487), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7206), + }, + [STATE(4486)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4493), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7208), + }, + [STATE(4487)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4488)] = { + [ts_builtin_sym_end] = ACTIONS(6310), + [sym_identifier] = ACTIONS(6312), + [anon_sym_import] = ACTIONS(6312), + [anon_sym_test] = ACTIONS(6312), + [anon_sym_hide] = ACTIONS(6312), + [anon_sym_func] = ACTIONS(6312), + [anon_sym_BANG] = ACTIONS(6312), + [anon_sym_struct] = ACTIONS(6312), + [anon_sym_LPAREN] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(6310), + [anon_sym_RBRACE] = ACTIONS(6310), + [anon_sym_DASH] = ACTIONS(6310), + [anon_sym_DOLLAR] = ACTIONS(6310), + [anon_sym_PIPE] = ACTIONS(6310), + [anon_sym_QMARK] = ACTIONS(6310), + [anon_sym_STAR] = ACTIONS(6310), + [anon_sym_LBRACK] = ACTIONS(6310), + [anon_sym_void] = ACTIONS(6312), + [anon_sym_noreturn] = ACTIONS(6312), + [anon_sym_type] = ACTIONS(6312), + [anon_sym_anyopaque] = ACTIONS(6312), + [anon_sym_bool] = ACTIONS(6312), + [anon_sym_int] = ACTIONS(6312), + [anon_sym_uint] = ACTIONS(6312), + [anon_sym_float] = ACTIONS(6312), + [anon_sym_range] = ACTIONS(6312), + [anon_sym_i8] = ACTIONS(6312), + [anon_sym_i16] = ACTIONS(6312), + [anon_sym_i32] = ACTIONS(6312), + [anon_sym_i64] = ACTIONS(6312), + [anon_sym_u8] = ACTIONS(6312), + [anon_sym_u16] = ACTIONS(6312), + [anon_sym_u32] = ACTIONS(6312), + [anon_sym_u64] = ACTIONS(6312), + [anon_sym_isize] = ACTIONS(6312), + [anon_sym_usize] = ACTIONS(6312), + [anon_sym_f32] = ACTIONS(6312), + [anon_sym_f64] = ACTIONS(6312), + [anon_sym_c_char] = ACTIONS(6312), + [anon_sym_c_schar] = ACTIONS(6312), + [anon_sym_c_uchar] = ACTIONS(6312), + [anon_sym_c_short] = ACTIONS(6312), + [anon_sym_c_ushort] = ACTIONS(6312), + [anon_sym_c_int] = ACTIONS(6312), + [anon_sym_c_uint] = ACTIONS(6312), + [anon_sym_c_long] = ACTIONS(6312), + [anon_sym_c_ulong] = ACTIONS(6312), + [anon_sym_c_longlong] = ACTIONS(6312), + [anon_sym_c_ulonglong] = ACTIONS(6312), + [anon_sym_c_float] = ACTIONS(6312), + [anon_sym_c_double] = ACTIONS(6312), + [anon_sym_c_longdouble] = ACTIONS(6312), + [anon_sym_return] = ACTIONS(6312), + [anon_sym_yield] = ACTIONS(6312), + [anon_sym_COLON] = ACTIONS(6310), + [anon_sym_break] = ACTIONS(6312), + [anon_sym_continue] = ACTIONS(6312), + [anon_sym_defer] = ACTIONS(6312), + [anon_sym_errdefer] = ACTIONS(6312), + [anon_sym_if] = ACTIONS(6312), + [anon_sym_else] = ACTIONS(6312), + [anon_sym_while] = ACTIONS(6312), + [anon_sym_expand] = ACTIONS(6312), + [anon_sym_for] = ACTIONS(6312), + [anon_sym_match] = ACTIONS(6312), + [anon_sym_DOT_DOT] = ACTIONS(6312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6310), + [anon_sym_orelse] = ACTIONS(6312), + [anon_sym_or] = ACTIONS(6312), + [anon_sym_and] = ACTIONS(6312), + [anon_sym_EQ_EQ] = ACTIONS(6310), + [anon_sym_BANG_EQ] = ACTIONS(6310), + [anon_sym_LT] = ACTIONS(6312), + [anon_sym_LT_EQ] = ACTIONS(6310), + [anon_sym_GT] = ACTIONS(6312), + [anon_sym_GT_EQ] = ACTIONS(6310), + [anon_sym_AMP] = ACTIONS(6310), + [anon_sym_xor] = ACTIONS(6312), + [anon_sym_LT_LT] = ACTIONS(6312), + [anon_sym_GT_GT] = ACTIONS(6310), + [anon_sym_LT_LT_PIPE] = ACTIONS(6310), + [anon_sym_PLUS] = ACTIONS(6310), + [anon_sym_SLASH] = ACTIONS(6310), + [anon_sym_catch] = ACTIONS(6312), + [anon_sym_TILDE] = ACTIONS(6310), + [anon_sym_try] = ACTIONS(6312), + [anon_sym_DOT] = ACTIONS(6312), + [anon_sym_CARET] = ACTIONS(6310), + [anon_sym_true] = ACTIONS(6312), + [anon_sym_false] = ACTIONS(6312), + [anon_sym_null] = ACTIONS(6312), + [anon_sym_unreachable] = ACTIONS(6312), + [anon_sym_undefined] = ACTIONS(6312), + [sym_sink] = ACTIONS(6312), + [sym_integer] = ACTIONS(6312), + [sym_float] = ACTIONS(6310), + [anon_sym_DQUOTE] = ACTIONS(6310), + [sym_multiline_string] = ACTIONS(6310), + [sym_character] = ACTIONS(6310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6310), + }, + [STATE(4489)] = { + [ts_builtin_sym_end] = ACTIONS(5546), + [sym_identifier] = ACTIONS(5548), + [anon_sym_import] = ACTIONS(5548), + [anon_sym_test] = ACTIONS(5548), + [anon_sym_hide] = ACTIONS(5548), + [anon_sym_func] = ACTIONS(5548), + [anon_sym_BANG] = ACTIONS(5548), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_LPAREN] = ACTIONS(5546), + [anon_sym_LBRACE] = ACTIONS(5546), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5546), + [anon_sym_DOLLAR] = ACTIONS(5546), + [anon_sym_PIPE] = ACTIONS(5546), + [anon_sym_QMARK] = ACTIONS(5546), + [anon_sym_STAR] = ACTIONS(5546), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_void] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_type] = ACTIONS(5548), + [anon_sym_anyopaque] = ACTIONS(5548), + [anon_sym_bool] = ACTIONS(5548), + [anon_sym_int] = ACTIONS(5548), + [anon_sym_uint] = ACTIONS(5548), + [anon_sym_float] = ACTIONS(5548), + [anon_sym_range] = ACTIONS(5548), + [anon_sym_i8] = ACTIONS(5548), + [anon_sym_i16] = ACTIONS(5548), + [anon_sym_i32] = ACTIONS(5548), + [anon_sym_i64] = ACTIONS(5548), + [anon_sym_u8] = ACTIONS(5548), + [anon_sym_u16] = ACTIONS(5548), + [anon_sym_u32] = ACTIONS(5548), + [anon_sym_u64] = ACTIONS(5548), + [anon_sym_isize] = ACTIONS(5548), + [anon_sym_usize] = ACTIONS(5548), + [anon_sym_f32] = ACTIONS(5548), + [anon_sym_f64] = ACTIONS(5548), + [anon_sym_c_char] = ACTIONS(5548), + [anon_sym_c_schar] = ACTIONS(5548), + [anon_sym_c_uchar] = ACTIONS(5548), + [anon_sym_c_short] = ACTIONS(5548), + [anon_sym_c_ushort] = ACTIONS(5548), + [anon_sym_c_int] = ACTIONS(5548), + [anon_sym_c_uint] = ACTIONS(5548), + [anon_sym_c_long] = ACTIONS(5548), + [anon_sym_c_ulong] = ACTIONS(5548), + [anon_sym_c_longlong] = ACTIONS(5548), + [anon_sym_c_ulonglong] = ACTIONS(5548), + [anon_sym_c_float] = ACTIONS(5548), + [anon_sym_c_double] = ACTIONS(5548), + [anon_sym_c_longdouble] = ACTIONS(5548), + [anon_sym_return] = ACTIONS(5548), + [anon_sym_yield] = ACTIONS(5548), + [anon_sym_COLON] = ACTIONS(5546), + [anon_sym_break] = ACTIONS(5548), + [anon_sym_continue] = ACTIONS(5548), + [anon_sym_defer] = ACTIONS(5548), + [anon_sym_errdefer] = ACTIONS(5548), + [anon_sym_if] = ACTIONS(5548), + [anon_sym_else] = ACTIONS(5548), + [anon_sym_while] = ACTIONS(5548), + [anon_sym_expand] = ACTIONS(5548), + [anon_sym_for] = ACTIONS(5548), + [anon_sym_match] = ACTIONS(5548), + [anon_sym_DOT_DOT] = ACTIONS(5548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5546), + [anon_sym_orelse] = ACTIONS(5548), + [anon_sym_or] = ACTIONS(5548), + [anon_sym_and] = ACTIONS(5548), + [anon_sym_EQ_EQ] = ACTIONS(5546), + [anon_sym_BANG_EQ] = ACTIONS(5546), + [anon_sym_LT] = ACTIONS(5548), + [anon_sym_LT_EQ] = ACTIONS(5546), + [anon_sym_GT] = ACTIONS(5548), + [anon_sym_GT_EQ] = ACTIONS(5546), + [anon_sym_AMP] = ACTIONS(5546), + [anon_sym_xor] = ACTIONS(5548), + [anon_sym_LT_LT] = ACTIONS(5548), + [anon_sym_GT_GT] = ACTIONS(5546), + [anon_sym_LT_LT_PIPE] = ACTIONS(5546), + [anon_sym_PLUS] = ACTIONS(5546), + [anon_sym_SLASH] = ACTIONS(5546), + [anon_sym_catch] = ACTIONS(5548), + [anon_sym_TILDE] = ACTIONS(5546), + [anon_sym_try] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5548), + [anon_sym_CARET] = ACTIONS(5546), + [anon_sym_true] = ACTIONS(5548), + [anon_sym_false] = ACTIONS(5548), + [anon_sym_null] = ACTIONS(5548), + [anon_sym_unreachable] = ACTIONS(5548), + [anon_sym_undefined] = ACTIONS(5548), + [sym_sink] = ACTIONS(5548), + [sym_integer] = ACTIONS(5548), + [sym_float] = ACTIONS(5546), + [anon_sym_DQUOTE] = ACTIONS(5546), + [sym_multiline_string] = ACTIONS(5546), + [sym_character] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5546), + }, + [STATE(4490)] = { + [ts_builtin_sym_end] = ACTIONS(6072), + [sym_identifier] = ACTIONS(6074), + [anon_sym_import] = ACTIONS(6074), + [anon_sym_test] = ACTIONS(6074), + [anon_sym_hide] = ACTIONS(6074), + [anon_sym_func] = ACTIONS(6074), + [anon_sym_BANG] = ACTIONS(6074), + [anon_sym_struct] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6072), + [anon_sym_LBRACE] = ACTIONS(6072), + [anon_sym_RBRACE] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(6072), + [anon_sym_DOLLAR] = ACTIONS(6072), + [anon_sym_PIPE] = ACTIONS(6072), + [anon_sym_QMARK] = ACTIONS(6072), + [anon_sym_STAR] = ACTIONS(6072), + [anon_sym_LBRACK] = ACTIONS(6072), + [anon_sym_void] = ACTIONS(6074), + [anon_sym_noreturn] = ACTIONS(6074), + [anon_sym_type] = ACTIONS(6074), + [anon_sym_anyopaque] = ACTIONS(6074), + [anon_sym_bool] = ACTIONS(6074), + [anon_sym_int] = ACTIONS(6074), + [anon_sym_uint] = ACTIONS(6074), + [anon_sym_float] = ACTIONS(6074), + [anon_sym_range] = ACTIONS(6074), + [anon_sym_i8] = ACTIONS(6074), + [anon_sym_i16] = ACTIONS(6074), + [anon_sym_i32] = ACTIONS(6074), + [anon_sym_i64] = ACTIONS(6074), + [anon_sym_u8] = ACTIONS(6074), + [anon_sym_u16] = ACTIONS(6074), + [anon_sym_u32] = ACTIONS(6074), + [anon_sym_u64] = ACTIONS(6074), + [anon_sym_isize] = ACTIONS(6074), + [anon_sym_usize] = ACTIONS(6074), + [anon_sym_f32] = ACTIONS(6074), + [anon_sym_f64] = ACTIONS(6074), + [anon_sym_c_char] = ACTIONS(6074), + [anon_sym_c_schar] = ACTIONS(6074), + [anon_sym_c_uchar] = ACTIONS(6074), + [anon_sym_c_short] = ACTIONS(6074), + [anon_sym_c_ushort] = ACTIONS(6074), + [anon_sym_c_int] = ACTIONS(6074), + [anon_sym_c_uint] = ACTIONS(6074), + [anon_sym_c_long] = ACTIONS(6074), + [anon_sym_c_ulong] = ACTIONS(6074), + [anon_sym_c_longlong] = ACTIONS(6074), + [anon_sym_c_ulonglong] = ACTIONS(6074), + [anon_sym_c_float] = ACTIONS(6074), + [anon_sym_c_double] = ACTIONS(6074), + [anon_sym_c_longdouble] = ACTIONS(6074), + [anon_sym_return] = ACTIONS(6074), + [anon_sym_yield] = ACTIONS(6074), + [anon_sym_COLON] = ACTIONS(6072), + [anon_sym_break] = ACTIONS(6074), + [anon_sym_continue] = ACTIONS(6074), + [anon_sym_defer] = ACTIONS(6074), + [anon_sym_errdefer] = ACTIONS(6074), + [anon_sym_if] = ACTIONS(6074), + [anon_sym_else] = ACTIONS(6074), + [anon_sym_while] = ACTIONS(6074), + [anon_sym_expand] = ACTIONS(6074), + [anon_sym_for] = ACTIONS(6074), + [anon_sym_match] = ACTIONS(6074), + [anon_sym_DOT_DOT] = ACTIONS(6074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6072), + [anon_sym_orelse] = ACTIONS(6074), + [anon_sym_or] = ACTIONS(6074), + [anon_sym_and] = ACTIONS(6074), + [anon_sym_EQ_EQ] = ACTIONS(6072), + [anon_sym_BANG_EQ] = ACTIONS(6072), + [anon_sym_LT] = ACTIONS(6074), + [anon_sym_LT_EQ] = ACTIONS(6072), + [anon_sym_GT] = ACTIONS(6074), + [anon_sym_GT_EQ] = ACTIONS(6072), + [anon_sym_AMP] = ACTIONS(6072), + [anon_sym_xor] = ACTIONS(6074), + [anon_sym_LT_LT] = ACTIONS(6074), + [anon_sym_GT_GT] = ACTIONS(6072), + [anon_sym_LT_LT_PIPE] = ACTIONS(6072), + [anon_sym_PLUS] = ACTIONS(6072), + [anon_sym_SLASH] = ACTIONS(6072), + [anon_sym_catch] = ACTIONS(6074), + [anon_sym_TILDE] = ACTIONS(6072), + [anon_sym_try] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6074), + [anon_sym_CARET] = ACTIONS(6072), + [anon_sym_true] = ACTIONS(6074), + [anon_sym_false] = ACTIONS(6074), + [anon_sym_null] = ACTIONS(6074), + [anon_sym_unreachable] = ACTIONS(6074), + [anon_sym_undefined] = ACTIONS(6074), + [sym_sink] = ACTIONS(6074), + [sym_integer] = ACTIONS(6074), + [sym_float] = ACTIONS(6072), + [anon_sym_DQUOTE] = ACTIONS(6072), + [sym_multiline_string] = ACTIONS(6072), + [sym_character] = ACTIONS(6072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6072), + }, + [STATE(4491)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4494), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7210), + }, + [STATE(4492)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4498), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7212), + }, + [STATE(4493)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4494)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4495)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3059), + [sym_error_capture] = STATE(4838), + [sym_if_statement] = STATE(3059), + [sym_while_statement] = STATE(3059), + [sym_for_statement] = STATE(3059), + [sym_match_statement] = STATE(3059), + [sym_expression] = STATE(6570), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4839), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7214), + }, + [STATE(4496)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10975), + [sym_labeled_block] = STATE(10975), + [sym_if_statement] = STATE(10975), + [sym_while_statement] = STATE(10975), + [sym_for_statement] = STATE(10975), + [sym_match_statement] = STATE(10975), + [sym__value] = STATE(10975), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4497)] = { + [ts_builtin_sym_end] = ACTIONS(5698), + [sym_identifier] = ACTIONS(5702), + [anon_sym_import] = ACTIONS(5702), + [anon_sym_test] = ACTIONS(5702), + [anon_sym_hide] = ACTIONS(5702), + [anon_sym_func] = ACTIONS(5702), + [anon_sym_BANG] = ACTIONS(5702), + [anon_sym_struct] = ACTIONS(5702), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5698), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), + [anon_sym_DOLLAR] = ACTIONS(5698), + [anon_sym_PIPE] = ACTIONS(5698), + [anon_sym_QMARK] = ACTIONS(5698), + [anon_sym_STAR] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [anon_sym_void] = ACTIONS(5702), + [anon_sym_noreturn] = ACTIONS(5702), + [anon_sym_type] = ACTIONS(5702), + [anon_sym_anyopaque] = ACTIONS(5702), + [anon_sym_bool] = ACTIONS(5702), + [anon_sym_int] = ACTIONS(5702), + [anon_sym_uint] = ACTIONS(5702), + [anon_sym_float] = ACTIONS(5702), + [anon_sym_range] = ACTIONS(5702), + [anon_sym_i8] = ACTIONS(5702), + [anon_sym_i16] = ACTIONS(5702), + [anon_sym_i32] = ACTIONS(5702), + [anon_sym_i64] = ACTIONS(5702), + [anon_sym_u8] = ACTIONS(5702), + [anon_sym_u16] = ACTIONS(5702), + [anon_sym_u32] = ACTIONS(5702), + [anon_sym_u64] = ACTIONS(5702), + [anon_sym_isize] = ACTIONS(5702), + [anon_sym_usize] = ACTIONS(5702), + [anon_sym_f32] = ACTIONS(5702), + [anon_sym_f64] = ACTIONS(5702), + [anon_sym_c_char] = ACTIONS(5702), + [anon_sym_c_schar] = ACTIONS(5702), + [anon_sym_c_uchar] = ACTIONS(5702), + [anon_sym_c_short] = ACTIONS(5702), + [anon_sym_c_ushort] = ACTIONS(5702), + [anon_sym_c_int] = ACTIONS(5702), + [anon_sym_c_uint] = ACTIONS(5702), + [anon_sym_c_long] = ACTIONS(5702), + [anon_sym_c_ulong] = ACTIONS(5702), + [anon_sym_c_longlong] = ACTIONS(5702), + [anon_sym_c_ulonglong] = ACTIONS(5702), + [anon_sym_c_float] = ACTIONS(5702), + [anon_sym_c_double] = ACTIONS(5702), + [anon_sym_c_longdouble] = ACTIONS(5702), + [anon_sym_return] = ACTIONS(5702), + [anon_sym_yield] = ACTIONS(5702), + [anon_sym_COLON] = ACTIONS(5698), + [anon_sym_break] = ACTIONS(5702), + [anon_sym_continue] = ACTIONS(5702), + [anon_sym_defer] = ACTIONS(5702), + [anon_sym_errdefer] = ACTIONS(5702), + [anon_sym_if] = ACTIONS(5702), + [anon_sym_else] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5702), + [anon_sym_expand] = ACTIONS(5702), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_match] = ACTIONS(5702), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5698), + [anon_sym_orelse] = ACTIONS(5702), + [anon_sym_or] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5702), + [anon_sym_EQ_EQ] = ACTIONS(5698), + [anon_sym_BANG_EQ] = ACTIONS(5698), + [anon_sym_LT] = ACTIONS(5702), + [anon_sym_LT_EQ] = ACTIONS(5698), + [anon_sym_GT] = ACTIONS(5702), + [anon_sym_GT_EQ] = ACTIONS(5698), + [anon_sym_AMP] = ACTIONS(5698), + [anon_sym_xor] = ACTIONS(5702), + [anon_sym_LT_LT] = ACTIONS(5702), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_LT_LT_PIPE] = ACTIONS(5698), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_SLASH] = ACTIONS(5698), + [anon_sym_catch] = ACTIONS(5702), + [anon_sym_TILDE] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5702), + [anon_sym_DOT] = ACTIONS(5702), + [anon_sym_CARET] = ACTIONS(5698), + [anon_sym_true] = ACTIONS(5702), + [anon_sym_false] = ACTIONS(5702), + [anon_sym_null] = ACTIONS(5702), + [anon_sym_unreachable] = ACTIONS(5702), + [anon_sym_undefined] = ACTIONS(5702), + [sym_sink] = ACTIONS(5702), + [sym_integer] = ACTIONS(5702), + [sym_float] = ACTIONS(5698), + [anon_sym_DQUOTE] = ACTIONS(5698), + [sym_multiline_string] = ACTIONS(5698), + [sym_character] = ACTIONS(5698), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5698), + }, + [STATE(4498)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4499)] = { + [ts_builtin_sym_end] = ACTIONS(5202), + [sym_identifier] = ACTIONS(5204), + [anon_sym_import] = ACTIONS(5204), + [anon_sym_test] = ACTIONS(5204), + [anon_sym_hide] = ACTIONS(5204), + [anon_sym_func] = ACTIONS(5204), + [anon_sym_BANG] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5202), + [anon_sym_LBRACE] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_QMARK] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_void] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym_type] = ACTIONS(5204), + [anon_sym_anyopaque] = ACTIONS(5204), + [anon_sym_bool] = ACTIONS(5204), + [anon_sym_int] = ACTIONS(5204), + [anon_sym_uint] = ACTIONS(5204), + [anon_sym_float] = ACTIONS(5204), + [anon_sym_range] = ACTIONS(5204), + [anon_sym_i8] = ACTIONS(5204), + [anon_sym_i16] = ACTIONS(5204), + [anon_sym_i32] = ACTIONS(5204), + [anon_sym_i64] = ACTIONS(5204), + [anon_sym_u8] = ACTIONS(5204), + [anon_sym_u16] = ACTIONS(5204), + [anon_sym_u32] = ACTIONS(5204), + [anon_sym_u64] = ACTIONS(5204), + [anon_sym_isize] = ACTIONS(5204), + [anon_sym_usize] = ACTIONS(5204), + [anon_sym_f32] = ACTIONS(5204), + [anon_sym_f64] = ACTIONS(5204), + [anon_sym_c_char] = ACTIONS(5204), + [anon_sym_c_schar] = ACTIONS(5204), + [anon_sym_c_uchar] = ACTIONS(5204), + [anon_sym_c_short] = ACTIONS(5204), + [anon_sym_c_ushort] = ACTIONS(5204), + [anon_sym_c_int] = ACTIONS(5204), + [anon_sym_c_uint] = ACTIONS(5204), + [anon_sym_c_long] = ACTIONS(5204), + [anon_sym_c_ulong] = ACTIONS(5204), + [anon_sym_c_longlong] = ACTIONS(5204), + [anon_sym_c_ulonglong] = ACTIONS(5204), + [anon_sym_c_float] = ACTIONS(5204), + [anon_sym_c_double] = ACTIONS(5204), + [anon_sym_c_longdouble] = ACTIONS(5204), + [anon_sym_return] = ACTIONS(5204), + [anon_sym_yield] = ACTIONS(5204), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_break] = ACTIONS(5204), + [anon_sym_continue] = ACTIONS(5204), + [anon_sym_defer] = ACTIONS(5204), + [anon_sym_errdefer] = ACTIONS(5204), + [anon_sym_if] = ACTIONS(5204), + [anon_sym_else] = ACTIONS(5204), + [anon_sym_while] = ACTIONS(5204), + [anon_sym_expand] = ACTIONS(5204), + [anon_sym_for] = ACTIONS(5204), + [anon_sym_match] = ACTIONS(5204), + [anon_sym_DOT_DOT] = ACTIONS(5204), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5202), + [anon_sym_orelse] = ACTIONS(5204), + [anon_sym_or] = ACTIONS(5204), + [anon_sym_and] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5202), + [anon_sym_xor] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_LT_LT_PIPE] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_catch] = ACTIONS(5204), + [anon_sym_TILDE] = ACTIONS(5202), + [anon_sym_try] = ACTIONS(5204), + [anon_sym_DOT] = ACTIONS(5204), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym_true] = ACTIONS(5204), + [anon_sym_false] = ACTIONS(5204), + [anon_sym_null] = ACTIONS(5204), + [anon_sym_unreachable] = ACTIONS(5204), + [anon_sym_undefined] = ACTIONS(5204), + [sym_sink] = ACTIONS(5204), + [sym_integer] = ACTIONS(5204), + [sym_float] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [sym_multiline_string] = ACTIONS(5202), + [sym_character] = ACTIONS(5202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5202), + }, + [STATE(4500)] = { + [ts_builtin_sym_end] = ACTIONS(6076), + [sym_identifier] = ACTIONS(6078), + [anon_sym_import] = ACTIONS(6078), + [anon_sym_test] = ACTIONS(6078), + [anon_sym_hide] = ACTIONS(6078), + [anon_sym_func] = ACTIONS(6078), + [anon_sym_BANG] = ACTIONS(6078), + [anon_sym_struct] = ACTIONS(6078), + [anon_sym_LPAREN] = ACTIONS(6076), + [anon_sym_LBRACE] = ACTIONS(6076), + [anon_sym_RBRACE] = ACTIONS(6076), + [anon_sym_DASH] = ACTIONS(6076), + [anon_sym_DOLLAR] = ACTIONS(6076), + [anon_sym_PIPE] = ACTIONS(6076), + [anon_sym_QMARK] = ACTIONS(6076), + [anon_sym_STAR] = ACTIONS(6076), + [anon_sym_LBRACK] = ACTIONS(6076), + [anon_sym_void] = ACTIONS(6078), + [anon_sym_noreturn] = ACTIONS(6078), + [anon_sym_type] = ACTIONS(6078), + [anon_sym_anyopaque] = ACTIONS(6078), + [anon_sym_bool] = ACTIONS(6078), + [anon_sym_int] = ACTIONS(6078), + [anon_sym_uint] = ACTIONS(6078), + [anon_sym_float] = ACTIONS(6078), + [anon_sym_range] = ACTIONS(6078), + [anon_sym_i8] = ACTIONS(6078), + [anon_sym_i16] = ACTIONS(6078), + [anon_sym_i32] = ACTIONS(6078), + [anon_sym_i64] = ACTIONS(6078), + [anon_sym_u8] = ACTIONS(6078), + [anon_sym_u16] = ACTIONS(6078), + [anon_sym_u32] = ACTIONS(6078), + [anon_sym_u64] = ACTIONS(6078), + [anon_sym_isize] = ACTIONS(6078), + [anon_sym_usize] = ACTIONS(6078), + [anon_sym_f32] = ACTIONS(6078), + [anon_sym_f64] = ACTIONS(6078), + [anon_sym_c_char] = ACTIONS(6078), + [anon_sym_c_schar] = ACTIONS(6078), + [anon_sym_c_uchar] = ACTIONS(6078), + [anon_sym_c_short] = ACTIONS(6078), + [anon_sym_c_ushort] = ACTIONS(6078), + [anon_sym_c_int] = ACTIONS(6078), + [anon_sym_c_uint] = ACTIONS(6078), + [anon_sym_c_long] = ACTIONS(6078), + [anon_sym_c_ulong] = ACTIONS(6078), + [anon_sym_c_longlong] = ACTIONS(6078), + [anon_sym_c_ulonglong] = ACTIONS(6078), + [anon_sym_c_float] = ACTIONS(6078), + [anon_sym_c_double] = ACTIONS(6078), + [anon_sym_c_longdouble] = ACTIONS(6078), + [anon_sym_return] = ACTIONS(6078), + [anon_sym_yield] = ACTIONS(6078), + [anon_sym_COLON] = ACTIONS(6076), + [anon_sym_break] = ACTIONS(6078), + [anon_sym_continue] = ACTIONS(6078), + [anon_sym_defer] = ACTIONS(6078), + [anon_sym_errdefer] = ACTIONS(6078), + [anon_sym_if] = ACTIONS(6078), + [anon_sym_else] = ACTIONS(6078), + [anon_sym_while] = ACTIONS(6078), + [anon_sym_expand] = ACTIONS(6078), + [anon_sym_for] = ACTIONS(6078), + [anon_sym_match] = ACTIONS(6078), + [anon_sym_DOT_DOT] = ACTIONS(6078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6076), + [anon_sym_orelse] = ACTIONS(6078), + [anon_sym_or] = ACTIONS(6078), + [anon_sym_and] = ACTIONS(6078), + [anon_sym_EQ_EQ] = ACTIONS(6076), + [anon_sym_BANG_EQ] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(6078), + [anon_sym_LT_EQ] = ACTIONS(6076), + [anon_sym_GT] = ACTIONS(6078), + [anon_sym_GT_EQ] = ACTIONS(6076), + [anon_sym_AMP] = ACTIONS(6076), + [anon_sym_xor] = ACTIONS(6078), + [anon_sym_LT_LT] = ACTIONS(6078), + [anon_sym_GT_GT] = ACTIONS(6076), + [anon_sym_LT_LT_PIPE] = ACTIONS(6076), + [anon_sym_PLUS] = ACTIONS(6076), + [anon_sym_SLASH] = ACTIONS(6076), + [anon_sym_catch] = ACTIONS(6078), + [anon_sym_TILDE] = ACTIONS(6076), + [anon_sym_try] = ACTIONS(6078), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_CARET] = ACTIONS(6076), + [anon_sym_true] = ACTIONS(6078), + [anon_sym_false] = ACTIONS(6078), + [anon_sym_null] = ACTIONS(6078), + [anon_sym_unreachable] = ACTIONS(6078), + [anon_sym_undefined] = ACTIONS(6078), + [sym_sink] = ACTIONS(6078), + [sym_integer] = ACTIONS(6078), + [sym_float] = ACTIONS(6076), + [anon_sym_DQUOTE] = ACTIONS(6076), + [sym_multiline_string] = ACTIONS(6076), + [sym_character] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6076), + }, + [STATE(4501)] = { + [ts_builtin_sym_end] = ACTIONS(5206), + [sym_identifier] = ACTIONS(5208), + [anon_sym_import] = ACTIONS(5208), + [anon_sym_test] = ACTIONS(5208), + [anon_sym_hide] = ACTIONS(5208), + [anon_sym_func] = ACTIONS(5208), + [anon_sym_BANG] = ACTIONS(5208), + [anon_sym_struct] = ACTIONS(5208), + [anon_sym_LPAREN] = ACTIONS(5206), + [anon_sym_LBRACE] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5206), + [anon_sym_QMARK] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_LBRACK] = ACTIONS(5206), + [anon_sym_void] = ACTIONS(5208), + [anon_sym_noreturn] = ACTIONS(5208), + [anon_sym_type] = ACTIONS(5208), + [anon_sym_anyopaque] = ACTIONS(5208), + [anon_sym_bool] = ACTIONS(5208), + [anon_sym_int] = ACTIONS(5208), + [anon_sym_uint] = ACTIONS(5208), + [anon_sym_float] = ACTIONS(5208), + [anon_sym_range] = ACTIONS(5208), + [anon_sym_i8] = ACTIONS(5208), + [anon_sym_i16] = ACTIONS(5208), + [anon_sym_i32] = ACTIONS(5208), + [anon_sym_i64] = ACTIONS(5208), + [anon_sym_u8] = ACTIONS(5208), + [anon_sym_u16] = ACTIONS(5208), + [anon_sym_u32] = ACTIONS(5208), + [anon_sym_u64] = ACTIONS(5208), + [anon_sym_isize] = ACTIONS(5208), + [anon_sym_usize] = ACTIONS(5208), + [anon_sym_f32] = ACTIONS(5208), + [anon_sym_f64] = ACTIONS(5208), + [anon_sym_c_char] = ACTIONS(5208), + [anon_sym_c_schar] = ACTIONS(5208), + [anon_sym_c_uchar] = ACTIONS(5208), + [anon_sym_c_short] = ACTIONS(5208), + [anon_sym_c_ushort] = ACTIONS(5208), + [anon_sym_c_int] = ACTIONS(5208), + [anon_sym_c_uint] = ACTIONS(5208), + [anon_sym_c_long] = ACTIONS(5208), + [anon_sym_c_ulong] = ACTIONS(5208), + [anon_sym_c_longlong] = ACTIONS(5208), + [anon_sym_c_ulonglong] = ACTIONS(5208), + [anon_sym_c_float] = ACTIONS(5208), + [anon_sym_c_double] = ACTIONS(5208), + [anon_sym_c_longdouble] = ACTIONS(5208), + [anon_sym_return] = ACTIONS(5208), + [anon_sym_yield] = ACTIONS(5208), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_break] = ACTIONS(5208), + [anon_sym_continue] = ACTIONS(5208), + [anon_sym_defer] = ACTIONS(5208), + [anon_sym_errdefer] = ACTIONS(5208), + [anon_sym_if] = ACTIONS(5208), + [anon_sym_else] = ACTIONS(5208), + [anon_sym_while] = ACTIONS(5208), + [anon_sym_expand] = ACTIONS(5208), + [anon_sym_for] = ACTIONS(5208), + [anon_sym_match] = ACTIONS(5208), + [anon_sym_DOT_DOT] = ACTIONS(5208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5206), + [anon_sym_orelse] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5208), + [anon_sym_and] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5206), + [anon_sym_xor] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_LT_LT_PIPE] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(5206), + [anon_sym_SLASH] = ACTIONS(5206), + [anon_sym_catch] = ACTIONS(5208), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_try] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym_true] = ACTIONS(5208), + [anon_sym_false] = ACTIONS(5208), + [anon_sym_null] = ACTIONS(5208), + [anon_sym_unreachable] = ACTIONS(5208), + [anon_sym_undefined] = ACTIONS(5208), + [sym_sink] = ACTIONS(5208), + [sym_integer] = ACTIONS(5208), + [sym_float] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [sym_multiline_string] = ACTIONS(5206), + [sym_character] = ACTIONS(5206), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5206), + }, + [STATE(4502)] = { + [ts_builtin_sym_end] = ACTIONS(6314), + [sym_identifier] = ACTIONS(6316), + [anon_sym_import] = ACTIONS(6316), + [anon_sym_test] = ACTIONS(6316), + [anon_sym_hide] = ACTIONS(6316), + [anon_sym_func] = ACTIONS(6316), + [anon_sym_BANG] = ACTIONS(6316), + [anon_sym_struct] = ACTIONS(6316), + [anon_sym_LPAREN] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(6314), + [anon_sym_RBRACE] = ACTIONS(6314), + [anon_sym_DASH] = ACTIONS(6314), + [anon_sym_DOLLAR] = ACTIONS(6314), + [anon_sym_PIPE] = ACTIONS(6314), + [anon_sym_QMARK] = ACTIONS(6314), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_LBRACK] = ACTIONS(6314), + [anon_sym_void] = ACTIONS(6316), + [anon_sym_noreturn] = ACTIONS(6316), + [anon_sym_type] = ACTIONS(6316), + [anon_sym_anyopaque] = ACTIONS(6316), + [anon_sym_bool] = ACTIONS(6316), + [anon_sym_int] = ACTIONS(6316), + [anon_sym_uint] = ACTIONS(6316), + [anon_sym_float] = ACTIONS(6316), + [anon_sym_range] = ACTIONS(6316), + [anon_sym_i8] = ACTIONS(6316), + [anon_sym_i16] = ACTIONS(6316), + [anon_sym_i32] = ACTIONS(6316), + [anon_sym_i64] = ACTIONS(6316), + [anon_sym_u8] = ACTIONS(6316), + [anon_sym_u16] = ACTIONS(6316), + [anon_sym_u32] = ACTIONS(6316), + [anon_sym_u64] = ACTIONS(6316), + [anon_sym_isize] = ACTIONS(6316), + [anon_sym_usize] = ACTIONS(6316), + [anon_sym_f32] = ACTIONS(6316), + [anon_sym_f64] = ACTIONS(6316), + [anon_sym_c_char] = ACTIONS(6316), + [anon_sym_c_schar] = ACTIONS(6316), + [anon_sym_c_uchar] = ACTIONS(6316), + [anon_sym_c_short] = ACTIONS(6316), + [anon_sym_c_ushort] = ACTIONS(6316), + [anon_sym_c_int] = ACTIONS(6316), + [anon_sym_c_uint] = ACTIONS(6316), + [anon_sym_c_long] = ACTIONS(6316), + [anon_sym_c_ulong] = ACTIONS(6316), + [anon_sym_c_longlong] = ACTIONS(6316), + [anon_sym_c_ulonglong] = ACTIONS(6316), + [anon_sym_c_float] = ACTIONS(6316), + [anon_sym_c_double] = ACTIONS(6316), + [anon_sym_c_longdouble] = ACTIONS(6316), + [anon_sym_return] = ACTIONS(6316), + [anon_sym_yield] = ACTIONS(6316), + [anon_sym_COLON] = ACTIONS(6314), + [anon_sym_break] = ACTIONS(6316), + [anon_sym_continue] = ACTIONS(6316), + [anon_sym_defer] = ACTIONS(6316), + [anon_sym_errdefer] = ACTIONS(6316), + [anon_sym_if] = ACTIONS(6316), + [anon_sym_else] = ACTIONS(6316), + [anon_sym_while] = ACTIONS(6316), + [anon_sym_expand] = ACTIONS(6316), + [anon_sym_for] = ACTIONS(6316), + [anon_sym_match] = ACTIONS(6316), + [anon_sym_DOT_DOT] = ACTIONS(6316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6314), + [anon_sym_orelse] = ACTIONS(6316), + [anon_sym_or] = ACTIONS(6316), + [anon_sym_and] = ACTIONS(6316), + [anon_sym_EQ_EQ] = ACTIONS(6314), + [anon_sym_BANG_EQ] = ACTIONS(6314), + [anon_sym_LT] = ACTIONS(6316), + [anon_sym_LT_EQ] = ACTIONS(6314), + [anon_sym_GT] = ACTIONS(6316), + [anon_sym_GT_EQ] = ACTIONS(6314), + [anon_sym_AMP] = ACTIONS(6314), + [anon_sym_xor] = ACTIONS(6316), + [anon_sym_LT_LT] = ACTIONS(6316), + [anon_sym_GT_GT] = ACTIONS(6314), + [anon_sym_LT_LT_PIPE] = ACTIONS(6314), + [anon_sym_PLUS] = ACTIONS(6314), + [anon_sym_SLASH] = ACTIONS(6314), + [anon_sym_catch] = ACTIONS(6316), + [anon_sym_TILDE] = ACTIONS(6314), + [anon_sym_try] = ACTIONS(6316), + [anon_sym_DOT] = ACTIONS(6316), + [anon_sym_CARET] = ACTIONS(6314), + [anon_sym_true] = ACTIONS(6316), + [anon_sym_false] = ACTIONS(6316), + [anon_sym_null] = ACTIONS(6316), + [anon_sym_unreachable] = ACTIONS(6316), + [anon_sym_undefined] = ACTIONS(6316), + [sym_sink] = ACTIONS(6316), + [sym_integer] = ACTIONS(6316), + [sym_float] = ACTIONS(6314), + [anon_sym_DQUOTE] = ACTIONS(6314), + [sym_multiline_string] = ACTIONS(6314), + [sym_character] = ACTIONS(6314), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6314), + }, + [STATE(4503)] = { + [ts_builtin_sym_end] = ACTIONS(5550), + [sym_identifier] = ACTIONS(5552), + [anon_sym_import] = ACTIONS(5552), + [anon_sym_test] = ACTIONS(5552), + [anon_sym_hide] = ACTIONS(5552), + [anon_sym_func] = ACTIONS(5552), + [anon_sym_BANG] = ACTIONS(5552), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_LPAREN] = ACTIONS(5550), + [anon_sym_LBRACE] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5550), + [anon_sym_DOLLAR] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5550), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR] = ACTIONS(5550), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_void] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_type] = ACTIONS(5552), + [anon_sym_anyopaque] = ACTIONS(5552), + [anon_sym_bool] = ACTIONS(5552), + [anon_sym_int] = ACTIONS(5552), + [anon_sym_uint] = ACTIONS(5552), + [anon_sym_float] = ACTIONS(5552), + [anon_sym_range] = ACTIONS(5552), + [anon_sym_i8] = ACTIONS(5552), + [anon_sym_i16] = ACTIONS(5552), + [anon_sym_i32] = ACTIONS(5552), + [anon_sym_i64] = ACTIONS(5552), + [anon_sym_u8] = ACTIONS(5552), + [anon_sym_u16] = ACTIONS(5552), + [anon_sym_u32] = ACTIONS(5552), + [anon_sym_u64] = ACTIONS(5552), + [anon_sym_isize] = ACTIONS(5552), + [anon_sym_usize] = ACTIONS(5552), + [anon_sym_f32] = ACTIONS(5552), + [anon_sym_f64] = ACTIONS(5552), + [anon_sym_c_char] = ACTIONS(5552), + [anon_sym_c_schar] = ACTIONS(5552), + [anon_sym_c_uchar] = ACTIONS(5552), + [anon_sym_c_short] = ACTIONS(5552), + [anon_sym_c_ushort] = ACTIONS(5552), + [anon_sym_c_int] = ACTIONS(5552), + [anon_sym_c_uint] = ACTIONS(5552), + [anon_sym_c_long] = ACTIONS(5552), + [anon_sym_c_ulong] = ACTIONS(5552), + [anon_sym_c_longlong] = ACTIONS(5552), + [anon_sym_c_ulonglong] = ACTIONS(5552), + [anon_sym_c_float] = ACTIONS(5552), + [anon_sym_c_double] = ACTIONS(5552), + [anon_sym_c_longdouble] = ACTIONS(5552), + [anon_sym_return] = ACTIONS(5552), + [anon_sym_yield] = ACTIONS(5552), + [anon_sym_COLON] = ACTIONS(5550), + [anon_sym_break] = ACTIONS(5552), + [anon_sym_continue] = ACTIONS(5552), + [anon_sym_defer] = ACTIONS(5552), + [anon_sym_errdefer] = ACTIONS(5552), + [anon_sym_if] = ACTIONS(5552), + [anon_sym_else] = ACTIONS(5552), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_expand] = ACTIONS(5552), + [anon_sym_for] = ACTIONS(5552), + [anon_sym_match] = ACTIONS(5552), + [anon_sym_DOT_DOT] = ACTIONS(5552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5550), + [anon_sym_orelse] = ACTIONS(5552), + [anon_sym_or] = ACTIONS(5552), + [anon_sym_and] = ACTIONS(5552), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_LT] = ACTIONS(5552), + [anon_sym_LT_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5552), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP] = ACTIONS(5550), + [anon_sym_xor] = ACTIONS(5552), + [anon_sym_LT_LT] = ACTIONS(5552), + [anon_sym_GT_GT] = ACTIONS(5550), + [anon_sym_LT_LT_PIPE] = ACTIONS(5550), + [anon_sym_PLUS] = ACTIONS(5550), + [anon_sym_SLASH] = ACTIONS(5550), + [anon_sym_catch] = ACTIONS(5552), + [anon_sym_TILDE] = ACTIONS(5550), + [anon_sym_try] = ACTIONS(5552), + [anon_sym_DOT] = ACTIONS(5552), + [anon_sym_CARET] = ACTIONS(5550), + [anon_sym_true] = ACTIONS(5552), + [anon_sym_false] = ACTIONS(5552), + [anon_sym_null] = ACTIONS(5552), + [anon_sym_unreachable] = ACTIONS(5552), + [anon_sym_undefined] = ACTIONS(5552), + [sym_sink] = ACTIONS(5552), + [sym_integer] = ACTIONS(5552), + [sym_float] = ACTIONS(5550), + [anon_sym_DQUOTE] = ACTIONS(5550), + [sym_multiline_string] = ACTIONS(5550), + [sym_character] = ACTIONS(5550), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5550), + }, + [STATE(4504)] = { + [ts_builtin_sym_end] = ACTIONS(5210), + [sym_identifier] = ACTIONS(5212), + [anon_sym_import] = ACTIONS(5212), + [anon_sym_test] = ACTIONS(5212), + [anon_sym_hide] = ACTIONS(5212), + [anon_sym_func] = ACTIONS(5212), + [anon_sym_BANG] = ACTIONS(5212), + [anon_sym_struct] = ACTIONS(5212), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_LBRACE] = ACTIONS(5210), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_LBRACK] = ACTIONS(5210), + [anon_sym_void] = ACTIONS(5212), + [anon_sym_noreturn] = ACTIONS(5212), + [anon_sym_type] = ACTIONS(5212), + [anon_sym_anyopaque] = ACTIONS(5212), + [anon_sym_bool] = ACTIONS(5212), + [anon_sym_int] = ACTIONS(5212), + [anon_sym_uint] = ACTIONS(5212), + [anon_sym_float] = ACTIONS(5212), + [anon_sym_range] = ACTIONS(5212), + [anon_sym_i8] = ACTIONS(5212), + [anon_sym_i16] = ACTIONS(5212), + [anon_sym_i32] = ACTIONS(5212), + [anon_sym_i64] = ACTIONS(5212), + [anon_sym_u8] = ACTIONS(5212), + [anon_sym_u16] = ACTIONS(5212), + [anon_sym_u32] = ACTIONS(5212), + [anon_sym_u64] = ACTIONS(5212), + [anon_sym_isize] = ACTIONS(5212), + [anon_sym_usize] = ACTIONS(5212), + [anon_sym_f32] = ACTIONS(5212), + [anon_sym_f64] = ACTIONS(5212), + [anon_sym_c_char] = ACTIONS(5212), + [anon_sym_c_schar] = ACTIONS(5212), + [anon_sym_c_uchar] = ACTIONS(5212), + [anon_sym_c_short] = ACTIONS(5212), + [anon_sym_c_ushort] = ACTIONS(5212), + [anon_sym_c_int] = ACTIONS(5212), + [anon_sym_c_uint] = ACTIONS(5212), + [anon_sym_c_long] = ACTIONS(5212), + [anon_sym_c_ulong] = ACTIONS(5212), + [anon_sym_c_longlong] = ACTIONS(5212), + [anon_sym_c_ulonglong] = ACTIONS(5212), + [anon_sym_c_float] = ACTIONS(5212), + [anon_sym_c_double] = ACTIONS(5212), + [anon_sym_c_longdouble] = ACTIONS(5212), + [anon_sym_return] = ACTIONS(5212), + [anon_sym_yield] = ACTIONS(5212), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_break] = ACTIONS(5212), + [anon_sym_continue] = ACTIONS(5212), + [anon_sym_defer] = ACTIONS(5212), + [anon_sym_errdefer] = ACTIONS(5212), + [anon_sym_if] = ACTIONS(5212), + [anon_sym_else] = ACTIONS(5212), + [anon_sym_while] = ACTIONS(5212), + [anon_sym_expand] = ACTIONS(5212), + [anon_sym_for] = ACTIONS(5212), + [anon_sym_match] = ACTIONS(5212), + [anon_sym_DOT_DOT] = ACTIONS(5212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5210), + [anon_sym_orelse] = ACTIONS(5212), + [anon_sym_or] = ACTIONS(5212), + [anon_sym_and] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5210), + [anon_sym_xor] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_LT_LT_PIPE] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_catch] = ACTIONS(5212), + [anon_sym_TILDE] = ACTIONS(5210), + [anon_sym_try] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_true] = ACTIONS(5212), + [anon_sym_false] = ACTIONS(5212), + [anon_sym_null] = ACTIONS(5212), + [anon_sym_unreachable] = ACTIONS(5212), + [anon_sym_undefined] = ACTIONS(5212), + [sym_sink] = ACTIONS(5212), + [sym_integer] = ACTIONS(5212), + [sym_float] = ACTIONS(5210), + [anon_sym_DQUOTE] = ACTIONS(5210), + [sym_multiline_string] = ACTIONS(5210), + [sym_character] = ACTIONS(5210), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5210), + }, + [STATE(4505)] = { + [ts_builtin_sym_end] = ACTIONS(5328), + [sym_identifier] = ACTIONS(5330), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_test] = ACTIONS(5330), + [anon_sym_hide] = ACTIONS(5330), + [anon_sym_func] = ACTIONS(5330), + [anon_sym_BANG] = ACTIONS(5330), + [anon_sym_struct] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_LBRACE] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5328), + [anon_sym_void] = ACTIONS(5330), + [anon_sym_noreturn] = ACTIONS(5330), + [anon_sym_type] = ACTIONS(5330), + [anon_sym_anyopaque] = ACTIONS(5330), + [anon_sym_bool] = ACTIONS(5330), + [anon_sym_int] = ACTIONS(5330), + [anon_sym_uint] = ACTIONS(5330), + [anon_sym_float] = ACTIONS(5330), + [anon_sym_range] = ACTIONS(5330), + [anon_sym_i8] = ACTIONS(5330), + [anon_sym_i16] = ACTIONS(5330), + [anon_sym_i32] = ACTIONS(5330), + [anon_sym_i64] = ACTIONS(5330), + [anon_sym_u8] = ACTIONS(5330), + [anon_sym_u16] = ACTIONS(5330), + [anon_sym_u32] = ACTIONS(5330), + [anon_sym_u64] = ACTIONS(5330), + [anon_sym_isize] = ACTIONS(5330), + [anon_sym_usize] = ACTIONS(5330), + [anon_sym_f32] = ACTIONS(5330), + [anon_sym_f64] = ACTIONS(5330), + [anon_sym_c_char] = ACTIONS(5330), + [anon_sym_c_schar] = ACTIONS(5330), + [anon_sym_c_uchar] = ACTIONS(5330), + [anon_sym_c_short] = ACTIONS(5330), + [anon_sym_c_ushort] = ACTIONS(5330), + [anon_sym_c_int] = ACTIONS(5330), + [anon_sym_c_uint] = ACTIONS(5330), + [anon_sym_c_long] = ACTIONS(5330), + [anon_sym_c_ulong] = ACTIONS(5330), + [anon_sym_c_longlong] = ACTIONS(5330), + [anon_sym_c_ulonglong] = ACTIONS(5330), + [anon_sym_c_float] = ACTIONS(5330), + [anon_sym_c_double] = ACTIONS(5330), + [anon_sym_c_longdouble] = ACTIONS(5330), + [anon_sym_return] = ACTIONS(5330), + [anon_sym_yield] = ACTIONS(5330), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_break] = ACTIONS(5330), + [anon_sym_continue] = ACTIONS(5330), + [anon_sym_defer] = ACTIONS(5330), + [anon_sym_errdefer] = ACTIONS(5330), + [anon_sym_if] = ACTIONS(5330), + [anon_sym_else] = ACTIONS(5330), + [anon_sym_while] = ACTIONS(5330), + [anon_sym_expand] = ACTIONS(5330), + [anon_sym_for] = ACTIONS(5330), + [anon_sym_match] = ACTIONS(5330), + [anon_sym_DOT_DOT] = ACTIONS(5330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5328), + [anon_sym_orelse] = ACTIONS(5330), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_and] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_BANG_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_EQ] = ACTIONS(5328), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_xor] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5328), + [anon_sym_LT_LT_PIPE] = ACTIONS(5328), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_catch] = ACTIONS(5330), + [anon_sym_TILDE] = ACTIONS(5328), + [anon_sym_try] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym_true] = ACTIONS(5330), + [anon_sym_false] = ACTIONS(5330), + [anon_sym_null] = ACTIONS(5330), + [anon_sym_unreachable] = ACTIONS(5330), + [anon_sym_undefined] = ACTIONS(5330), + [sym_sink] = ACTIONS(5330), + [sym_integer] = ACTIONS(5330), + [sym_float] = ACTIONS(5328), + [anon_sym_DQUOTE] = ACTIONS(5328), + [sym_multiline_string] = ACTIONS(5328), + [sym_character] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5328), + }, + [STATE(4506)] = { + [ts_builtin_sym_end] = ACTIONS(5332), + [sym_identifier] = ACTIONS(5334), + [anon_sym_import] = ACTIONS(5334), + [anon_sym_test] = ACTIONS(5334), + [anon_sym_hide] = ACTIONS(5334), + [anon_sym_func] = ACTIONS(5334), + [anon_sym_BANG] = ACTIONS(5334), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5332), + [anon_sym_LBRACE] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5332), + [anon_sym_void] = ACTIONS(5334), + [anon_sym_noreturn] = ACTIONS(5334), + [anon_sym_type] = ACTIONS(5334), + [anon_sym_anyopaque] = ACTIONS(5334), + [anon_sym_bool] = ACTIONS(5334), + [anon_sym_int] = ACTIONS(5334), + [anon_sym_uint] = ACTIONS(5334), + [anon_sym_float] = ACTIONS(5334), + [anon_sym_range] = ACTIONS(5334), + [anon_sym_i8] = ACTIONS(5334), + [anon_sym_i16] = ACTIONS(5334), + [anon_sym_i32] = ACTIONS(5334), + [anon_sym_i64] = ACTIONS(5334), + [anon_sym_u8] = ACTIONS(5334), + [anon_sym_u16] = ACTIONS(5334), + [anon_sym_u32] = ACTIONS(5334), + [anon_sym_u64] = ACTIONS(5334), + [anon_sym_isize] = ACTIONS(5334), + [anon_sym_usize] = ACTIONS(5334), + [anon_sym_f32] = ACTIONS(5334), + [anon_sym_f64] = ACTIONS(5334), + [anon_sym_c_char] = ACTIONS(5334), + [anon_sym_c_schar] = ACTIONS(5334), + [anon_sym_c_uchar] = ACTIONS(5334), + [anon_sym_c_short] = ACTIONS(5334), + [anon_sym_c_ushort] = ACTIONS(5334), + [anon_sym_c_int] = ACTIONS(5334), + [anon_sym_c_uint] = ACTIONS(5334), + [anon_sym_c_long] = ACTIONS(5334), + [anon_sym_c_ulong] = ACTIONS(5334), + [anon_sym_c_longlong] = ACTIONS(5334), + [anon_sym_c_ulonglong] = ACTIONS(5334), + [anon_sym_c_float] = ACTIONS(5334), + [anon_sym_c_double] = ACTIONS(5334), + [anon_sym_c_longdouble] = ACTIONS(5334), + [anon_sym_return] = ACTIONS(5334), + [anon_sym_yield] = ACTIONS(5334), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_break] = ACTIONS(5334), + [anon_sym_continue] = ACTIONS(5334), + [anon_sym_defer] = ACTIONS(5334), + [anon_sym_errdefer] = ACTIONS(5334), + [anon_sym_if] = ACTIONS(5334), + [anon_sym_else] = ACTIONS(5334), + [anon_sym_while] = ACTIONS(5334), + [anon_sym_expand] = ACTIONS(5334), + [anon_sym_for] = ACTIONS(5334), + [anon_sym_match] = ACTIONS(5334), + [anon_sym_DOT_DOT] = ACTIONS(5334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5332), + [anon_sym_orelse] = ACTIONS(5334), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_and] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5332), + [anon_sym_BANG_EQ] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5334), + [anon_sym_LT_EQ] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5334), + [anon_sym_GT_EQ] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_xor] = ACTIONS(5334), + [anon_sym_LT_LT] = ACTIONS(5334), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_LT_LT_PIPE] = ACTIONS(5332), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_catch] = ACTIONS(5334), + [anon_sym_TILDE] = ACTIONS(5332), + [anon_sym_try] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(5334), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym_true] = ACTIONS(5334), + [anon_sym_false] = ACTIONS(5334), + [anon_sym_null] = ACTIONS(5334), + [anon_sym_unreachable] = ACTIONS(5334), + [anon_sym_undefined] = ACTIONS(5334), + [sym_sink] = ACTIONS(5334), + [sym_integer] = ACTIONS(5334), + [sym_float] = ACTIONS(5332), + [anon_sym_DQUOTE] = ACTIONS(5332), + [sym_multiline_string] = ACTIONS(5332), + [sym_character] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5332), + }, + [STATE(4507)] = { + [ts_builtin_sym_end] = ACTIONS(5336), + [sym_identifier] = ACTIONS(5338), + [anon_sym_import] = ACTIONS(5338), + [anon_sym_test] = ACTIONS(5338), + [anon_sym_hide] = ACTIONS(5338), + [anon_sym_func] = ACTIONS(5338), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_struct] = ACTIONS(5338), + [anon_sym_LPAREN] = ACTIONS(5336), + [anon_sym_LBRACE] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5336), + [anon_sym_void] = ACTIONS(5338), + [anon_sym_noreturn] = ACTIONS(5338), + [anon_sym_type] = ACTIONS(5338), + [anon_sym_anyopaque] = ACTIONS(5338), + [anon_sym_bool] = ACTIONS(5338), + [anon_sym_int] = ACTIONS(5338), + [anon_sym_uint] = ACTIONS(5338), + [anon_sym_float] = ACTIONS(5338), + [anon_sym_range] = ACTIONS(5338), + [anon_sym_i8] = ACTIONS(5338), + [anon_sym_i16] = ACTIONS(5338), + [anon_sym_i32] = ACTIONS(5338), + [anon_sym_i64] = ACTIONS(5338), + [anon_sym_u8] = ACTIONS(5338), + [anon_sym_u16] = ACTIONS(5338), + [anon_sym_u32] = ACTIONS(5338), + [anon_sym_u64] = ACTIONS(5338), + [anon_sym_isize] = ACTIONS(5338), + [anon_sym_usize] = ACTIONS(5338), + [anon_sym_f32] = ACTIONS(5338), + [anon_sym_f64] = ACTIONS(5338), + [anon_sym_c_char] = ACTIONS(5338), + [anon_sym_c_schar] = ACTIONS(5338), + [anon_sym_c_uchar] = ACTIONS(5338), + [anon_sym_c_short] = ACTIONS(5338), + [anon_sym_c_ushort] = ACTIONS(5338), + [anon_sym_c_int] = ACTIONS(5338), + [anon_sym_c_uint] = ACTIONS(5338), + [anon_sym_c_long] = ACTIONS(5338), + [anon_sym_c_ulong] = ACTIONS(5338), + [anon_sym_c_longlong] = ACTIONS(5338), + [anon_sym_c_ulonglong] = ACTIONS(5338), + [anon_sym_c_float] = ACTIONS(5338), + [anon_sym_c_double] = ACTIONS(5338), + [anon_sym_c_longdouble] = ACTIONS(5338), + [anon_sym_return] = ACTIONS(5338), + [anon_sym_yield] = ACTIONS(5338), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_break] = ACTIONS(5338), + [anon_sym_continue] = ACTIONS(5338), + [anon_sym_defer] = ACTIONS(5338), + [anon_sym_errdefer] = ACTIONS(5338), + [anon_sym_if] = ACTIONS(5338), + [anon_sym_else] = ACTIONS(5338), + [anon_sym_while] = ACTIONS(5338), + [anon_sym_expand] = ACTIONS(5338), + [anon_sym_for] = ACTIONS(5338), + [anon_sym_match] = ACTIONS(5338), + [anon_sym_DOT_DOT] = ACTIONS(5338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5336), + [anon_sym_orelse] = ACTIONS(5338), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_and] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5338), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5336), + [anon_sym_xor] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5336), + [anon_sym_LT_LT_PIPE] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_catch] = ACTIONS(5338), + [anon_sym_TILDE] = ACTIONS(5336), + [anon_sym_try] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym_true] = ACTIONS(5338), + [anon_sym_false] = ACTIONS(5338), + [anon_sym_null] = ACTIONS(5338), + [anon_sym_unreachable] = ACTIONS(5338), + [anon_sym_undefined] = ACTIONS(5338), + [sym_sink] = ACTIONS(5338), + [sym_integer] = ACTIONS(5338), + [sym_float] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(5336), + [sym_multiline_string] = ACTIONS(5336), + [sym_character] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5336), + }, + [STATE(4508)] = { + [ts_builtin_sym_end] = ACTIONS(6318), + [sym_identifier] = ACTIONS(6320), + [anon_sym_import] = ACTIONS(6320), + [anon_sym_test] = ACTIONS(6320), + [anon_sym_hide] = ACTIONS(6320), + [anon_sym_func] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6320), + [anon_sym_struct] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(6318), + [anon_sym_RBRACE] = ACTIONS(6318), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_DOLLAR] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(6318), + [anon_sym_QMARK] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6318), + [anon_sym_LBRACK] = ACTIONS(6318), + [anon_sym_void] = ACTIONS(6320), + [anon_sym_noreturn] = ACTIONS(6320), + [anon_sym_type] = ACTIONS(6320), + [anon_sym_anyopaque] = ACTIONS(6320), + [anon_sym_bool] = ACTIONS(6320), + [anon_sym_int] = ACTIONS(6320), + [anon_sym_uint] = ACTIONS(6320), + [anon_sym_float] = ACTIONS(6320), + [anon_sym_range] = ACTIONS(6320), + [anon_sym_i8] = ACTIONS(6320), + [anon_sym_i16] = ACTIONS(6320), + [anon_sym_i32] = ACTIONS(6320), + [anon_sym_i64] = ACTIONS(6320), + [anon_sym_u8] = ACTIONS(6320), + [anon_sym_u16] = ACTIONS(6320), + [anon_sym_u32] = ACTIONS(6320), + [anon_sym_u64] = ACTIONS(6320), + [anon_sym_isize] = ACTIONS(6320), + [anon_sym_usize] = ACTIONS(6320), + [anon_sym_f32] = ACTIONS(6320), + [anon_sym_f64] = ACTIONS(6320), + [anon_sym_c_char] = ACTIONS(6320), + [anon_sym_c_schar] = ACTIONS(6320), + [anon_sym_c_uchar] = ACTIONS(6320), + [anon_sym_c_short] = ACTIONS(6320), + [anon_sym_c_ushort] = ACTIONS(6320), + [anon_sym_c_int] = ACTIONS(6320), + [anon_sym_c_uint] = ACTIONS(6320), + [anon_sym_c_long] = ACTIONS(6320), + [anon_sym_c_ulong] = ACTIONS(6320), + [anon_sym_c_longlong] = ACTIONS(6320), + [anon_sym_c_ulonglong] = ACTIONS(6320), + [anon_sym_c_float] = ACTIONS(6320), + [anon_sym_c_double] = ACTIONS(6320), + [anon_sym_c_longdouble] = ACTIONS(6320), + [anon_sym_return] = ACTIONS(6320), + [anon_sym_yield] = ACTIONS(6320), + [anon_sym_COLON] = ACTIONS(6318), + [anon_sym_break] = ACTIONS(6320), + [anon_sym_continue] = ACTIONS(6320), + [anon_sym_defer] = ACTIONS(6320), + [anon_sym_errdefer] = ACTIONS(6320), + [anon_sym_if] = ACTIONS(6320), + [anon_sym_else] = ACTIONS(6320), + [anon_sym_while] = ACTIONS(6320), + [anon_sym_expand] = ACTIONS(6320), + [anon_sym_for] = ACTIONS(6320), + [anon_sym_match] = ACTIONS(6320), + [anon_sym_DOT_DOT] = ACTIONS(6320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6318), + [anon_sym_orelse] = ACTIONS(6320), + [anon_sym_or] = ACTIONS(6320), + [anon_sym_and] = ACTIONS(6320), + [anon_sym_EQ_EQ] = ACTIONS(6318), + [anon_sym_BANG_EQ] = ACTIONS(6318), + [anon_sym_LT] = ACTIONS(6320), + [anon_sym_LT_EQ] = ACTIONS(6318), + [anon_sym_GT] = ACTIONS(6320), + [anon_sym_GT_EQ] = ACTIONS(6318), + [anon_sym_AMP] = ACTIONS(6318), + [anon_sym_xor] = ACTIONS(6320), + [anon_sym_LT_LT] = ACTIONS(6320), + [anon_sym_GT_GT] = ACTIONS(6318), + [anon_sym_LT_LT_PIPE] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_SLASH] = ACTIONS(6318), + [anon_sym_catch] = ACTIONS(6320), + [anon_sym_TILDE] = ACTIONS(6318), + [anon_sym_try] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(6318), + [anon_sym_true] = ACTIONS(6320), + [anon_sym_false] = ACTIONS(6320), + [anon_sym_null] = ACTIONS(6320), + [anon_sym_unreachable] = ACTIONS(6320), + [anon_sym_undefined] = ACTIONS(6320), + [sym_sink] = ACTIONS(6320), + [sym_integer] = ACTIONS(6320), + [sym_float] = ACTIONS(6318), + [anon_sym_DQUOTE] = ACTIONS(6318), + [sym_multiline_string] = ACTIONS(6318), + [sym_character] = ACTIONS(6318), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6318), + }, + [STATE(4509)] = { + [ts_builtin_sym_end] = ACTIONS(5558), + [sym_identifier] = ACTIONS(5560), + [anon_sym_import] = ACTIONS(5560), + [anon_sym_test] = ACTIONS(5560), + [anon_sym_hide] = ACTIONS(5560), + [anon_sym_func] = ACTIONS(5560), + [anon_sym_BANG] = ACTIONS(5560), + [anon_sym_struct] = ACTIONS(5560), + [anon_sym_LPAREN] = ACTIONS(5558), + [anon_sym_LBRACE] = ACTIONS(5558), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_DOLLAR] = ACTIONS(5558), + [anon_sym_PIPE] = ACTIONS(5558), + [anon_sym_QMARK] = ACTIONS(5558), + [anon_sym_STAR] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_void] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_type] = ACTIONS(5560), + [anon_sym_anyopaque] = ACTIONS(5560), + [anon_sym_bool] = ACTIONS(5560), + [anon_sym_int] = ACTIONS(5560), + [anon_sym_uint] = ACTIONS(5560), + [anon_sym_float] = ACTIONS(5560), + [anon_sym_range] = ACTIONS(5560), + [anon_sym_i8] = ACTIONS(5560), + [anon_sym_i16] = ACTIONS(5560), + [anon_sym_i32] = ACTIONS(5560), + [anon_sym_i64] = ACTIONS(5560), + [anon_sym_u8] = ACTIONS(5560), + [anon_sym_u16] = ACTIONS(5560), + [anon_sym_u32] = ACTIONS(5560), + [anon_sym_u64] = ACTIONS(5560), + [anon_sym_isize] = ACTIONS(5560), + [anon_sym_usize] = ACTIONS(5560), + [anon_sym_f32] = ACTIONS(5560), + [anon_sym_f64] = ACTIONS(5560), + [anon_sym_c_char] = ACTIONS(5560), + [anon_sym_c_schar] = ACTIONS(5560), + [anon_sym_c_uchar] = ACTIONS(5560), + [anon_sym_c_short] = ACTIONS(5560), + [anon_sym_c_ushort] = ACTIONS(5560), + [anon_sym_c_int] = ACTIONS(5560), + [anon_sym_c_uint] = ACTIONS(5560), + [anon_sym_c_long] = ACTIONS(5560), + [anon_sym_c_ulong] = ACTIONS(5560), + [anon_sym_c_longlong] = ACTIONS(5560), + [anon_sym_c_ulonglong] = ACTIONS(5560), + [anon_sym_c_float] = ACTIONS(5560), + [anon_sym_c_double] = ACTIONS(5560), + [anon_sym_c_longdouble] = ACTIONS(5560), + [anon_sym_return] = ACTIONS(5560), + [anon_sym_yield] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5560), + [anon_sym_defer] = ACTIONS(5560), + [anon_sym_errdefer] = ACTIONS(5560), + [anon_sym_if] = ACTIONS(5560), + [anon_sym_else] = ACTIONS(5560), + [anon_sym_while] = ACTIONS(5560), + [anon_sym_expand] = ACTIONS(5560), + [anon_sym_for] = ACTIONS(5560), + [anon_sym_match] = ACTIONS(5560), + [anon_sym_DOT_DOT] = ACTIONS(5560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5558), + [anon_sym_orelse] = ACTIONS(5560), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5558), + [anon_sym_BANG_EQ] = ACTIONS(5558), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_EQ] = ACTIONS(5558), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(5558), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5558), + [anon_sym_LT_LT_PIPE] = ACTIONS(5558), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_SLASH] = ACTIONS(5558), + [anon_sym_catch] = ACTIONS(5560), + [anon_sym_TILDE] = ACTIONS(5558), + [anon_sym_try] = ACTIONS(5560), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5558), + [anon_sym_true] = ACTIONS(5560), + [anon_sym_false] = ACTIONS(5560), + [anon_sym_null] = ACTIONS(5560), + [anon_sym_unreachable] = ACTIONS(5560), + [anon_sym_undefined] = ACTIONS(5560), + [sym_sink] = ACTIONS(5560), + [sym_integer] = ACTIONS(5560), + [sym_float] = ACTIONS(5558), + [anon_sym_DQUOTE] = ACTIONS(5558), + [sym_multiline_string] = ACTIONS(5558), + [sym_character] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5558), + }, + [STATE(4510)] = { + [ts_builtin_sym_end] = ACTIONS(6322), + [sym_identifier] = ACTIONS(6324), + [anon_sym_import] = ACTIONS(6324), + [anon_sym_test] = ACTIONS(6324), + [anon_sym_hide] = ACTIONS(6324), + [anon_sym_func] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6324), + [anon_sym_struct] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6322), + [anon_sym_LBRACE] = ACTIONS(6322), + [anon_sym_RBRACE] = ACTIONS(6322), + [anon_sym_DASH] = ACTIONS(6322), + [anon_sym_DOLLAR] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(6322), + [anon_sym_QMARK] = ACTIONS(6322), + [anon_sym_STAR] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(6322), + [anon_sym_void] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym_type] = ACTIONS(6324), + [anon_sym_anyopaque] = ACTIONS(6324), + [anon_sym_bool] = ACTIONS(6324), + [anon_sym_int] = ACTIONS(6324), + [anon_sym_uint] = ACTIONS(6324), + [anon_sym_float] = ACTIONS(6324), + [anon_sym_range] = ACTIONS(6324), + [anon_sym_i8] = ACTIONS(6324), + [anon_sym_i16] = ACTIONS(6324), + [anon_sym_i32] = ACTIONS(6324), + [anon_sym_i64] = ACTIONS(6324), + [anon_sym_u8] = ACTIONS(6324), + [anon_sym_u16] = ACTIONS(6324), + [anon_sym_u32] = ACTIONS(6324), + [anon_sym_u64] = ACTIONS(6324), + [anon_sym_isize] = ACTIONS(6324), + [anon_sym_usize] = ACTIONS(6324), + [anon_sym_f32] = ACTIONS(6324), + [anon_sym_f64] = ACTIONS(6324), + [anon_sym_c_char] = ACTIONS(6324), + [anon_sym_c_schar] = ACTIONS(6324), + [anon_sym_c_uchar] = ACTIONS(6324), + [anon_sym_c_short] = ACTIONS(6324), + [anon_sym_c_ushort] = ACTIONS(6324), + [anon_sym_c_int] = ACTIONS(6324), + [anon_sym_c_uint] = ACTIONS(6324), + [anon_sym_c_long] = ACTIONS(6324), + [anon_sym_c_ulong] = ACTIONS(6324), + [anon_sym_c_longlong] = ACTIONS(6324), + [anon_sym_c_ulonglong] = ACTIONS(6324), + [anon_sym_c_float] = ACTIONS(6324), + [anon_sym_c_double] = ACTIONS(6324), + [anon_sym_c_longdouble] = ACTIONS(6324), + [anon_sym_return] = ACTIONS(6324), + [anon_sym_yield] = ACTIONS(6324), + [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_break] = ACTIONS(6324), + [anon_sym_continue] = ACTIONS(6324), + [anon_sym_defer] = ACTIONS(6324), + [anon_sym_errdefer] = ACTIONS(6324), + [anon_sym_if] = ACTIONS(6324), + [anon_sym_else] = ACTIONS(6324), + [anon_sym_while] = ACTIONS(6324), + [anon_sym_expand] = ACTIONS(6324), + [anon_sym_for] = ACTIONS(6324), + [anon_sym_match] = ACTIONS(6324), + [anon_sym_DOT_DOT] = ACTIONS(6324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6322), + [anon_sym_orelse] = ACTIONS(6324), + [anon_sym_or] = ACTIONS(6324), + [anon_sym_and] = ACTIONS(6324), + [anon_sym_EQ_EQ] = ACTIONS(6322), + [anon_sym_BANG_EQ] = ACTIONS(6322), + [anon_sym_LT] = ACTIONS(6324), + [anon_sym_LT_EQ] = ACTIONS(6322), + [anon_sym_GT] = ACTIONS(6324), + [anon_sym_GT_EQ] = ACTIONS(6322), + [anon_sym_AMP] = ACTIONS(6322), + [anon_sym_xor] = ACTIONS(6324), + [anon_sym_LT_LT] = ACTIONS(6324), + [anon_sym_GT_GT] = ACTIONS(6322), + [anon_sym_LT_LT_PIPE] = ACTIONS(6322), + [anon_sym_PLUS] = ACTIONS(6322), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_catch] = ACTIONS(6324), + [anon_sym_TILDE] = ACTIONS(6322), + [anon_sym_try] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(6322), + [anon_sym_true] = ACTIONS(6324), + [anon_sym_false] = ACTIONS(6324), + [anon_sym_null] = ACTIONS(6324), + [anon_sym_unreachable] = ACTIONS(6324), + [anon_sym_undefined] = ACTIONS(6324), + [sym_sink] = ACTIONS(6324), + [sym_integer] = ACTIONS(6324), + [sym_float] = ACTIONS(6322), + [anon_sym_DQUOTE] = ACTIONS(6322), + [sym_multiline_string] = ACTIONS(6322), + [sym_character] = ACTIONS(6322), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6322), + }, + [STATE(4511)] = { + [ts_builtin_sym_end] = ACTIONS(4982), + [sym_identifier] = ACTIONS(4984), + [anon_sym_import] = ACTIONS(4984), + [anon_sym_test] = ACTIONS(4984), + [anon_sym_hide] = ACTIONS(4984), + [anon_sym_func] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4982), + [anon_sym_QMARK] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_void] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym_type] = ACTIONS(4984), + [anon_sym_anyopaque] = ACTIONS(4984), + [anon_sym_bool] = ACTIONS(4984), + [anon_sym_int] = ACTIONS(4984), + [anon_sym_uint] = ACTIONS(4984), + [anon_sym_float] = ACTIONS(4984), + [anon_sym_range] = ACTIONS(4984), + [anon_sym_i8] = ACTIONS(4984), + [anon_sym_i16] = ACTIONS(4984), + [anon_sym_i32] = ACTIONS(4984), + [anon_sym_i64] = ACTIONS(4984), + [anon_sym_u8] = ACTIONS(4984), + [anon_sym_u16] = ACTIONS(4984), + [anon_sym_u32] = ACTIONS(4984), + [anon_sym_u64] = ACTIONS(4984), + [anon_sym_isize] = ACTIONS(4984), + [anon_sym_usize] = ACTIONS(4984), + [anon_sym_f32] = ACTIONS(4984), + [anon_sym_f64] = ACTIONS(4984), + [anon_sym_c_char] = ACTIONS(4984), + [anon_sym_c_schar] = ACTIONS(4984), + [anon_sym_c_uchar] = ACTIONS(4984), + [anon_sym_c_short] = ACTIONS(4984), + [anon_sym_c_ushort] = ACTIONS(4984), + [anon_sym_c_int] = ACTIONS(4984), + [anon_sym_c_uint] = ACTIONS(4984), + [anon_sym_c_long] = ACTIONS(4984), + [anon_sym_c_ulong] = ACTIONS(4984), + [anon_sym_c_longlong] = ACTIONS(4984), + [anon_sym_c_ulonglong] = ACTIONS(4984), + [anon_sym_c_float] = ACTIONS(4984), + [anon_sym_c_double] = ACTIONS(4984), + [anon_sym_c_longdouble] = ACTIONS(4984), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_yield] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4982), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_defer] = ACTIONS(4984), + [anon_sym_errdefer] = ACTIONS(4984), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_expand] = ACTIONS(4984), + [anon_sym_for] = ACTIONS(4984), + [anon_sym_match] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4982), + [anon_sym_orelse] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4984), + [anon_sym_and] = ACTIONS(4984), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_xor] = ACTIONS(4984), + [anon_sym_LT_LT] = ACTIONS(4984), + [anon_sym_GT_GT] = ACTIONS(4982), + [anon_sym_LT_LT_PIPE] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_catch] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4982), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_null] = ACTIONS(4984), + [anon_sym_unreachable] = ACTIONS(4984), + [anon_sym_undefined] = ACTIONS(4984), + [sym_sink] = ACTIONS(4984), + [sym_integer] = ACTIONS(4984), + [sym_float] = ACTIONS(4982), + [anon_sym_DQUOTE] = ACTIONS(4982), + [sym_multiline_string] = ACTIONS(4982), + [sym_character] = ACTIONS(4982), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4982), + }, + [STATE(4512)] = { + [ts_builtin_sym_end] = ACTIONS(6326), + [sym_identifier] = ACTIONS(6328), + [anon_sym_import] = ACTIONS(6328), + [anon_sym_test] = ACTIONS(6328), + [anon_sym_hide] = ACTIONS(6328), + [anon_sym_func] = ACTIONS(6328), + [anon_sym_BANG] = ACTIONS(6328), + [anon_sym_struct] = ACTIONS(6328), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(6326), + [anon_sym_RBRACE] = ACTIONS(6326), + [anon_sym_DASH] = ACTIONS(6326), + [anon_sym_DOLLAR] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6326), + [anon_sym_QMARK] = ACTIONS(6326), + [anon_sym_STAR] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_void] = ACTIONS(6328), + [anon_sym_noreturn] = ACTIONS(6328), + [anon_sym_type] = ACTIONS(6328), + [anon_sym_anyopaque] = ACTIONS(6328), + [anon_sym_bool] = ACTIONS(6328), + [anon_sym_int] = ACTIONS(6328), + [anon_sym_uint] = ACTIONS(6328), + [anon_sym_float] = ACTIONS(6328), + [anon_sym_range] = ACTIONS(6328), + [anon_sym_i8] = ACTIONS(6328), + [anon_sym_i16] = ACTIONS(6328), + [anon_sym_i32] = ACTIONS(6328), + [anon_sym_i64] = ACTIONS(6328), + [anon_sym_u8] = ACTIONS(6328), + [anon_sym_u16] = ACTIONS(6328), + [anon_sym_u32] = ACTIONS(6328), + [anon_sym_u64] = ACTIONS(6328), + [anon_sym_isize] = ACTIONS(6328), + [anon_sym_usize] = ACTIONS(6328), + [anon_sym_f32] = ACTIONS(6328), + [anon_sym_f64] = ACTIONS(6328), + [anon_sym_c_char] = ACTIONS(6328), + [anon_sym_c_schar] = ACTIONS(6328), + [anon_sym_c_uchar] = ACTIONS(6328), + [anon_sym_c_short] = ACTIONS(6328), + [anon_sym_c_ushort] = ACTIONS(6328), + [anon_sym_c_int] = ACTIONS(6328), + [anon_sym_c_uint] = ACTIONS(6328), + [anon_sym_c_long] = ACTIONS(6328), + [anon_sym_c_ulong] = ACTIONS(6328), + [anon_sym_c_longlong] = ACTIONS(6328), + [anon_sym_c_ulonglong] = ACTIONS(6328), + [anon_sym_c_float] = ACTIONS(6328), + [anon_sym_c_double] = ACTIONS(6328), + [anon_sym_c_longdouble] = ACTIONS(6328), + [anon_sym_return] = ACTIONS(6328), + [anon_sym_yield] = ACTIONS(6328), + [anon_sym_COLON] = ACTIONS(6326), + [anon_sym_break] = ACTIONS(6328), + [anon_sym_continue] = ACTIONS(6328), + [anon_sym_defer] = ACTIONS(6328), + [anon_sym_errdefer] = ACTIONS(6328), + [anon_sym_if] = ACTIONS(6328), + [anon_sym_else] = ACTIONS(6328), + [anon_sym_while] = ACTIONS(6328), + [anon_sym_expand] = ACTIONS(6328), + [anon_sym_for] = ACTIONS(6328), + [anon_sym_match] = ACTIONS(6328), + [anon_sym_DOT_DOT] = ACTIONS(6328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6326), + [anon_sym_orelse] = ACTIONS(6328), + [anon_sym_or] = ACTIONS(6328), + [anon_sym_and] = ACTIONS(6328), + [anon_sym_EQ_EQ] = ACTIONS(6326), + [anon_sym_BANG_EQ] = ACTIONS(6326), + [anon_sym_LT] = ACTIONS(6328), + [anon_sym_LT_EQ] = ACTIONS(6326), + [anon_sym_GT] = ACTIONS(6328), + [anon_sym_GT_EQ] = ACTIONS(6326), + [anon_sym_AMP] = ACTIONS(6326), + [anon_sym_xor] = ACTIONS(6328), + [anon_sym_LT_LT] = ACTIONS(6328), + [anon_sym_GT_GT] = ACTIONS(6326), + [anon_sym_LT_LT_PIPE] = ACTIONS(6326), + [anon_sym_PLUS] = ACTIONS(6326), + [anon_sym_SLASH] = ACTIONS(6326), + [anon_sym_catch] = ACTIONS(6328), + [anon_sym_TILDE] = ACTIONS(6326), + [anon_sym_try] = ACTIONS(6328), + [anon_sym_DOT] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6326), + [anon_sym_true] = ACTIONS(6328), + [anon_sym_false] = ACTIONS(6328), + [anon_sym_null] = ACTIONS(6328), + [anon_sym_unreachable] = ACTIONS(6328), + [anon_sym_undefined] = ACTIONS(6328), + [sym_sink] = ACTIONS(6328), + [sym_integer] = ACTIONS(6328), + [sym_float] = ACTIONS(6326), + [anon_sym_DQUOTE] = ACTIONS(6326), + [sym_multiline_string] = ACTIONS(6326), + [sym_character] = ACTIONS(6326), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6326), + }, + [STATE(4513)] = { + [ts_builtin_sym_end] = ACTIONS(4986), + [sym_identifier] = ACTIONS(4988), + [anon_sym_import] = ACTIONS(4988), + [anon_sym_test] = ACTIONS(4988), + [anon_sym_hide] = ACTIONS(4988), + [anon_sym_func] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_void] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym_type] = ACTIONS(4988), + [anon_sym_anyopaque] = ACTIONS(4988), + [anon_sym_bool] = ACTIONS(4988), + [anon_sym_int] = ACTIONS(4988), + [anon_sym_uint] = ACTIONS(4988), + [anon_sym_float] = ACTIONS(4988), + [anon_sym_range] = ACTIONS(4988), + [anon_sym_i8] = ACTIONS(4988), + [anon_sym_i16] = ACTIONS(4988), + [anon_sym_i32] = ACTIONS(4988), + [anon_sym_i64] = ACTIONS(4988), + [anon_sym_u8] = ACTIONS(4988), + [anon_sym_u16] = ACTIONS(4988), + [anon_sym_u32] = ACTIONS(4988), + [anon_sym_u64] = ACTIONS(4988), + [anon_sym_isize] = ACTIONS(4988), + [anon_sym_usize] = ACTIONS(4988), + [anon_sym_f32] = ACTIONS(4988), + [anon_sym_f64] = ACTIONS(4988), + [anon_sym_c_char] = ACTIONS(4988), + [anon_sym_c_schar] = ACTIONS(4988), + [anon_sym_c_uchar] = ACTIONS(4988), + [anon_sym_c_short] = ACTIONS(4988), + [anon_sym_c_ushort] = ACTIONS(4988), + [anon_sym_c_int] = ACTIONS(4988), + [anon_sym_c_uint] = ACTIONS(4988), + [anon_sym_c_long] = ACTIONS(4988), + [anon_sym_c_ulong] = ACTIONS(4988), + [anon_sym_c_longlong] = ACTIONS(4988), + [anon_sym_c_ulonglong] = ACTIONS(4988), + [anon_sym_c_float] = ACTIONS(4988), + [anon_sym_c_double] = ACTIONS(4988), + [anon_sym_c_longdouble] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4986), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_defer] = ACTIONS(4988), + [anon_sym_errdefer] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_while] = ACTIONS(4988), + [anon_sym_expand] = ACTIONS(4988), + [anon_sym_for] = ACTIONS(4988), + [anon_sym_match] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), + [anon_sym_orelse] = ACTIONS(4988), + [anon_sym_or] = ACTIONS(4988), + [anon_sym_and] = ACTIONS(4988), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_xor] = ACTIONS(4988), + [anon_sym_LT_LT] = ACTIONS(4988), + [anon_sym_GT_GT] = ACTIONS(4986), + [anon_sym_LT_LT_PIPE] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_catch] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4986), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_null] = ACTIONS(4988), + [anon_sym_unreachable] = ACTIONS(4988), + [anon_sym_undefined] = ACTIONS(4988), + [sym_sink] = ACTIONS(4988), + [sym_integer] = ACTIONS(4988), + [sym_float] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(4986), + [sym_multiline_string] = ACTIONS(4986), + [sym_character] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4986), + }, + [STATE(4514)] = { + [ts_builtin_sym_end] = ACTIONS(6254), + [sym_identifier] = ACTIONS(6256), + [anon_sym_import] = ACTIONS(6256), + [anon_sym_test] = ACTIONS(6256), + [anon_sym_hide] = ACTIONS(6256), + [anon_sym_func] = ACTIONS(6256), + [anon_sym_BANG] = ACTIONS(6256), + [anon_sym_struct] = ACTIONS(6256), + [anon_sym_LPAREN] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6254), + [anon_sym_RBRACE] = ACTIONS(6254), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_DOLLAR] = ACTIONS(6254), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_void] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym_type] = ACTIONS(6256), + [anon_sym_anyopaque] = ACTIONS(6256), + [anon_sym_bool] = ACTIONS(6256), + [anon_sym_int] = ACTIONS(6256), + [anon_sym_uint] = ACTIONS(6256), + [anon_sym_float] = ACTIONS(6256), + [anon_sym_range] = ACTIONS(6256), + [anon_sym_i8] = ACTIONS(6256), + [anon_sym_i16] = ACTIONS(6256), + [anon_sym_i32] = ACTIONS(6256), + [anon_sym_i64] = ACTIONS(6256), + [anon_sym_u8] = ACTIONS(6256), + [anon_sym_u16] = ACTIONS(6256), + [anon_sym_u32] = ACTIONS(6256), + [anon_sym_u64] = ACTIONS(6256), + [anon_sym_isize] = ACTIONS(6256), + [anon_sym_usize] = ACTIONS(6256), + [anon_sym_f32] = ACTIONS(6256), + [anon_sym_f64] = ACTIONS(6256), + [anon_sym_c_char] = ACTIONS(6256), + [anon_sym_c_schar] = ACTIONS(6256), + [anon_sym_c_uchar] = ACTIONS(6256), + [anon_sym_c_short] = ACTIONS(6256), + [anon_sym_c_ushort] = ACTIONS(6256), + [anon_sym_c_int] = ACTIONS(6256), + [anon_sym_c_uint] = ACTIONS(6256), + [anon_sym_c_long] = ACTIONS(6256), + [anon_sym_c_ulong] = ACTIONS(6256), + [anon_sym_c_longlong] = ACTIONS(6256), + [anon_sym_c_ulonglong] = ACTIONS(6256), + [anon_sym_c_float] = ACTIONS(6256), + [anon_sym_c_double] = ACTIONS(6256), + [anon_sym_c_longdouble] = ACTIONS(6256), + [anon_sym_return] = ACTIONS(6256), + [anon_sym_yield] = ACTIONS(6256), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_break] = ACTIONS(6256), + [anon_sym_continue] = ACTIONS(6256), + [anon_sym_defer] = ACTIONS(6256), + [anon_sym_errdefer] = ACTIONS(6256), + [anon_sym_if] = ACTIONS(6256), + [anon_sym_else] = ACTIONS(6256), + [anon_sym_while] = ACTIONS(6256), + [anon_sym_expand] = ACTIONS(6256), + [anon_sym_for] = ACTIONS(6256), + [anon_sym_match] = ACTIONS(6256), + [anon_sym_DOT_DOT] = ACTIONS(6256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6254), + [anon_sym_orelse] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6256), + [anon_sym_and] = ACTIONS(6256), + [anon_sym_EQ_EQ] = ACTIONS(6254), + [anon_sym_BANG_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_GT] = ACTIONS(6256), + [anon_sym_GT_EQ] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6256), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym_LT_LT_PIPE] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_catch] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6254), + [anon_sym_try] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6256), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_true] = ACTIONS(6256), + [anon_sym_false] = ACTIONS(6256), + [anon_sym_null] = ACTIONS(6256), + [anon_sym_unreachable] = ACTIONS(6256), + [anon_sym_undefined] = ACTIONS(6256), + [sym_sink] = ACTIONS(6256), + [sym_integer] = ACTIONS(6256), + [sym_float] = ACTIONS(6254), + [anon_sym_DQUOTE] = ACTIONS(6254), + [sym_multiline_string] = ACTIONS(6254), + [sym_character] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6254), + }, + [STATE(4515)] = { + [ts_builtin_sym_end] = ACTIONS(6080), + [sym_identifier] = ACTIONS(6082), + [anon_sym_import] = ACTIONS(6082), + [anon_sym_test] = ACTIONS(6082), + [anon_sym_hide] = ACTIONS(6082), + [anon_sym_func] = ACTIONS(6082), + [anon_sym_BANG] = ACTIONS(6082), + [anon_sym_struct] = ACTIONS(6082), + [anon_sym_LPAREN] = ACTIONS(6080), + [anon_sym_LBRACE] = ACTIONS(6080), + [anon_sym_RBRACE] = ACTIONS(6080), + [anon_sym_DASH] = ACTIONS(6080), + [anon_sym_DOLLAR] = ACTIONS(6080), + [anon_sym_PIPE] = ACTIONS(6080), + [anon_sym_QMARK] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(6080), + [anon_sym_LBRACK] = ACTIONS(6080), + [anon_sym_void] = ACTIONS(6082), + [anon_sym_noreturn] = ACTIONS(6082), + [anon_sym_type] = ACTIONS(6082), + [anon_sym_anyopaque] = ACTIONS(6082), + [anon_sym_bool] = ACTIONS(6082), + [anon_sym_int] = ACTIONS(6082), + [anon_sym_uint] = ACTIONS(6082), + [anon_sym_float] = ACTIONS(6082), + [anon_sym_range] = ACTIONS(6082), + [anon_sym_i8] = ACTIONS(6082), + [anon_sym_i16] = ACTIONS(6082), + [anon_sym_i32] = ACTIONS(6082), + [anon_sym_i64] = ACTIONS(6082), + [anon_sym_u8] = ACTIONS(6082), + [anon_sym_u16] = ACTIONS(6082), + [anon_sym_u32] = ACTIONS(6082), + [anon_sym_u64] = ACTIONS(6082), + [anon_sym_isize] = ACTIONS(6082), + [anon_sym_usize] = ACTIONS(6082), + [anon_sym_f32] = ACTIONS(6082), + [anon_sym_f64] = ACTIONS(6082), + [anon_sym_c_char] = ACTIONS(6082), + [anon_sym_c_schar] = ACTIONS(6082), + [anon_sym_c_uchar] = ACTIONS(6082), + [anon_sym_c_short] = ACTIONS(6082), + [anon_sym_c_ushort] = ACTIONS(6082), + [anon_sym_c_int] = ACTIONS(6082), + [anon_sym_c_uint] = ACTIONS(6082), + [anon_sym_c_long] = ACTIONS(6082), + [anon_sym_c_ulong] = ACTIONS(6082), + [anon_sym_c_longlong] = ACTIONS(6082), + [anon_sym_c_ulonglong] = ACTIONS(6082), + [anon_sym_c_float] = ACTIONS(6082), + [anon_sym_c_double] = ACTIONS(6082), + [anon_sym_c_longdouble] = ACTIONS(6082), + [anon_sym_return] = ACTIONS(6082), + [anon_sym_yield] = ACTIONS(6082), + [anon_sym_COLON] = ACTIONS(6080), + [anon_sym_break] = ACTIONS(6082), + [anon_sym_continue] = ACTIONS(6082), + [anon_sym_defer] = ACTIONS(6082), + [anon_sym_errdefer] = ACTIONS(6082), + [anon_sym_if] = ACTIONS(6082), + [anon_sym_else] = ACTIONS(6082), + [anon_sym_while] = ACTIONS(6082), + [anon_sym_expand] = ACTIONS(6082), + [anon_sym_for] = ACTIONS(6082), + [anon_sym_match] = ACTIONS(6082), + [anon_sym_DOT_DOT] = ACTIONS(6082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6080), + [anon_sym_orelse] = ACTIONS(6082), + [anon_sym_or] = ACTIONS(6082), + [anon_sym_and] = ACTIONS(6082), + [anon_sym_EQ_EQ] = ACTIONS(6080), + [anon_sym_BANG_EQ] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(6082), + [anon_sym_LT_EQ] = ACTIONS(6080), + [anon_sym_GT] = ACTIONS(6082), + [anon_sym_GT_EQ] = ACTIONS(6080), + [anon_sym_AMP] = ACTIONS(6080), + [anon_sym_xor] = ACTIONS(6082), + [anon_sym_LT_LT] = ACTIONS(6082), + [anon_sym_GT_GT] = ACTIONS(6080), + [anon_sym_LT_LT_PIPE] = ACTIONS(6080), + [anon_sym_PLUS] = ACTIONS(6080), + [anon_sym_SLASH] = ACTIONS(6080), + [anon_sym_catch] = ACTIONS(6082), + [anon_sym_TILDE] = ACTIONS(6080), + [anon_sym_try] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6082), + [anon_sym_CARET] = ACTIONS(6080), + [anon_sym_true] = ACTIONS(6082), + [anon_sym_false] = ACTIONS(6082), + [anon_sym_null] = ACTIONS(6082), + [anon_sym_unreachable] = ACTIONS(6082), + [anon_sym_undefined] = ACTIONS(6082), + [sym_sink] = ACTIONS(6082), + [sym_integer] = ACTIONS(6082), + [sym_float] = ACTIONS(6080), + [anon_sym_DQUOTE] = ACTIONS(6080), + [sym_multiline_string] = ACTIONS(6080), + [sym_character] = ACTIONS(6080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6080), + }, + [STATE(4516)] = { + [ts_builtin_sym_end] = ACTIONS(6330), + [sym_identifier] = ACTIONS(6332), + [anon_sym_import] = ACTIONS(6332), + [anon_sym_test] = ACTIONS(6332), + [anon_sym_hide] = ACTIONS(6332), + [anon_sym_func] = ACTIONS(6332), + [anon_sym_BANG] = ACTIONS(6332), + [anon_sym_struct] = ACTIONS(6332), + [anon_sym_LPAREN] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(6330), + [anon_sym_RBRACE] = ACTIONS(6330), + [anon_sym_DASH] = ACTIONS(6330), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_PIPE] = ACTIONS(6330), + [anon_sym_QMARK] = ACTIONS(6330), + [anon_sym_STAR] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(6330), + [anon_sym_void] = ACTIONS(6332), + [anon_sym_noreturn] = ACTIONS(6332), + [anon_sym_type] = ACTIONS(6332), + [anon_sym_anyopaque] = ACTIONS(6332), + [anon_sym_bool] = ACTIONS(6332), + [anon_sym_int] = ACTIONS(6332), + [anon_sym_uint] = ACTIONS(6332), + [anon_sym_float] = ACTIONS(6332), + [anon_sym_range] = ACTIONS(6332), + [anon_sym_i8] = ACTIONS(6332), + [anon_sym_i16] = ACTIONS(6332), + [anon_sym_i32] = ACTIONS(6332), + [anon_sym_i64] = ACTIONS(6332), + [anon_sym_u8] = ACTIONS(6332), + [anon_sym_u16] = ACTIONS(6332), + [anon_sym_u32] = ACTIONS(6332), + [anon_sym_u64] = ACTIONS(6332), + [anon_sym_isize] = ACTIONS(6332), + [anon_sym_usize] = ACTIONS(6332), + [anon_sym_f32] = ACTIONS(6332), + [anon_sym_f64] = ACTIONS(6332), + [anon_sym_c_char] = ACTIONS(6332), + [anon_sym_c_schar] = ACTIONS(6332), + [anon_sym_c_uchar] = ACTIONS(6332), + [anon_sym_c_short] = ACTIONS(6332), + [anon_sym_c_ushort] = ACTIONS(6332), + [anon_sym_c_int] = ACTIONS(6332), + [anon_sym_c_uint] = ACTIONS(6332), + [anon_sym_c_long] = ACTIONS(6332), + [anon_sym_c_ulong] = ACTIONS(6332), + [anon_sym_c_longlong] = ACTIONS(6332), + [anon_sym_c_ulonglong] = ACTIONS(6332), + [anon_sym_c_float] = ACTIONS(6332), + [anon_sym_c_double] = ACTIONS(6332), + [anon_sym_c_longdouble] = ACTIONS(6332), + [anon_sym_return] = ACTIONS(6332), + [anon_sym_yield] = ACTIONS(6332), + [anon_sym_COLON] = ACTIONS(6330), + [anon_sym_break] = ACTIONS(6332), + [anon_sym_continue] = ACTIONS(6332), + [anon_sym_defer] = ACTIONS(6332), + [anon_sym_errdefer] = ACTIONS(6332), + [anon_sym_if] = ACTIONS(6332), + [anon_sym_else] = ACTIONS(6332), + [anon_sym_while] = ACTIONS(6332), + [anon_sym_expand] = ACTIONS(6332), + [anon_sym_for] = ACTIONS(6332), + [anon_sym_match] = ACTIONS(6332), + [anon_sym_DOT_DOT] = ACTIONS(6332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6330), + [anon_sym_orelse] = ACTIONS(6332), + [anon_sym_or] = ACTIONS(6332), + [anon_sym_and] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6330), + [anon_sym_BANG_EQ] = ACTIONS(6330), + [anon_sym_LT] = ACTIONS(6332), + [anon_sym_LT_EQ] = ACTIONS(6330), + [anon_sym_GT] = ACTIONS(6332), + [anon_sym_GT_EQ] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6330), + [anon_sym_xor] = ACTIONS(6332), + [anon_sym_LT_LT] = ACTIONS(6332), + [anon_sym_GT_GT] = ACTIONS(6330), + [anon_sym_LT_LT_PIPE] = ACTIONS(6330), + [anon_sym_PLUS] = ACTIONS(6330), + [anon_sym_SLASH] = ACTIONS(6330), + [anon_sym_catch] = ACTIONS(6332), + [anon_sym_TILDE] = ACTIONS(6330), + [anon_sym_try] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6332), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_true] = ACTIONS(6332), + [anon_sym_false] = ACTIONS(6332), + [anon_sym_null] = ACTIONS(6332), + [anon_sym_unreachable] = ACTIONS(6332), + [anon_sym_undefined] = ACTIONS(6332), + [sym_sink] = ACTIONS(6332), + [sym_integer] = ACTIONS(6332), + [sym_float] = ACTIONS(6330), + [anon_sym_DQUOTE] = ACTIONS(6330), + [sym_multiline_string] = ACTIONS(6330), + [sym_character] = ACTIONS(6330), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6330), + }, + [STATE(4517)] = { + [ts_builtin_sym_end] = ACTIONS(4502), + [sym_identifier] = ACTIONS(4504), + [anon_sym_import] = ACTIONS(4504), + [anon_sym_test] = ACTIONS(4504), + [anon_sym_hide] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_DOLLAR] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4502), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_COLON] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_errdefer] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_expand] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4502), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE] = ACTIONS(4502), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [anon_sym_true] = ACTIONS(4504), + [anon_sym_false] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_unreachable] = ACTIONS(4504), + [anon_sym_undefined] = ACTIONS(4504), + [sym_sink] = ACTIONS(4504), + [sym_integer] = ACTIONS(4504), + [sym_float] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_multiline_string] = ACTIONS(4502), + [sym_character] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(4518)] = { + [ts_builtin_sym_end] = ACTIONS(4990), + [sym_identifier] = ACTIONS(4992), + [anon_sym_import] = ACTIONS(4992), + [anon_sym_test] = ACTIONS(4992), + [anon_sym_hide] = ACTIONS(4992), + [anon_sym_func] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_struct] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4990), + [anon_sym_PIPE] = ACTIONS(4990), + [anon_sym_QMARK] = ACTIONS(4990), + [anon_sym_STAR] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_void] = ACTIONS(4992), + [anon_sym_noreturn] = ACTIONS(4992), + [anon_sym_type] = ACTIONS(4992), + [anon_sym_anyopaque] = ACTIONS(4992), + [anon_sym_bool] = ACTIONS(4992), + [anon_sym_int] = ACTIONS(4992), + [anon_sym_uint] = ACTIONS(4992), + [anon_sym_float] = ACTIONS(4992), + [anon_sym_range] = ACTIONS(4992), + [anon_sym_i8] = ACTIONS(4992), + [anon_sym_i16] = ACTIONS(4992), + [anon_sym_i32] = ACTIONS(4992), + [anon_sym_i64] = ACTIONS(4992), + [anon_sym_u8] = ACTIONS(4992), + [anon_sym_u16] = ACTIONS(4992), + [anon_sym_u32] = ACTIONS(4992), + [anon_sym_u64] = ACTIONS(4992), + [anon_sym_isize] = ACTIONS(4992), + [anon_sym_usize] = ACTIONS(4992), + [anon_sym_f32] = ACTIONS(4992), + [anon_sym_f64] = ACTIONS(4992), + [anon_sym_c_char] = ACTIONS(4992), + [anon_sym_c_schar] = ACTIONS(4992), + [anon_sym_c_uchar] = ACTIONS(4992), + [anon_sym_c_short] = ACTIONS(4992), + [anon_sym_c_ushort] = ACTIONS(4992), + [anon_sym_c_int] = ACTIONS(4992), + [anon_sym_c_uint] = ACTIONS(4992), + [anon_sym_c_long] = ACTIONS(4992), + [anon_sym_c_ulong] = ACTIONS(4992), + [anon_sym_c_longlong] = ACTIONS(4992), + [anon_sym_c_ulonglong] = ACTIONS(4992), + [anon_sym_c_float] = ACTIONS(4992), + [anon_sym_c_double] = ACTIONS(4992), + [anon_sym_c_longdouble] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_yield] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4990), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_defer] = ACTIONS(4992), + [anon_sym_errdefer] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_while] = ACTIONS(4992), + [anon_sym_expand] = ACTIONS(4992), + [anon_sym_for] = ACTIONS(4992), + [anon_sym_match] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4990), + [anon_sym_orelse] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_xor] = ACTIONS(4992), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym_LT_LT_PIPE] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4990), + [anon_sym_catch] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4990), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_unreachable] = ACTIONS(4992), + [anon_sym_undefined] = ACTIONS(4992), + [sym_sink] = ACTIONS(4992), + [sym_integer] = ACTIONS(4992), + [sym_float] = ACTIONS(4990), + [anon_sym_DQUOTE] = ACTIONS(4990), + [sym_multiline_string] = ACTIONS(4990), + [sym_character] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4990), + }, + [STATE(4519)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(4884), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(9988), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4885), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7216), + }, + [STATE(4520)] = { + [ts_builtin_sym_end] = ACTIONS(4688), + [sym_identifier] = ACTIONS(4690), + [anon_sym_import] = ACTIONS(4690), + [anon_sym_test] = ACTIONS(4690), + [anon_sym_hide] = ACTIONS(4690), + [anon_sym_func] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_struct] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_DOLLAR] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_QMARK] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_void] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym_type] = ACTIONS(4690), + [anon_sym_anyopaque] = ACTIONS(4690), + [anon_sym_bool] = ACTIONS(4690), + [anon_sym_int] = ACTIONS(4690), + [anon_sym_uint] = ACTIONS(4690), + [anon_sym_float] = ACTIONS(4690), + [anon_sym_range] = ACTIONS(4690), + [anon_sym_i8] = ACTIONS(4690), + [anon_sym_i16] = ACTIONS(4690), + [anon_sym_i32] = ACTIONS(4690), + [anon_sym_i64] = ACTIONS(4690), + [anon_sym_u8] = ACTIONS(4690), + [anon_sym_u16] = ACTIONS(4690), + [anon_sym_u32] = ACTIONS(4690), + [anon_sym_u64] = ACTIONS(4690), + [anon_sym_isize] = ACTIONS(4690), + [anon_sym_usize] = ACTIONS(4690), + [anon_sym_f32] = ACTIONS(4690), + [anon_sym_f64] = ACTIONS(4690), + [anon_sym_c_char] = ACTIONS(4690), + [anon_sym_c_schar] = ACTIONS(4690), + [anon_sym_c_uchar] = ACTIONS(4690), + [anon_sym_c_short] = ACTIONS(4690), + [anon_sym_c_ushort] = ACTIONS(4690), + [anon_sym_c_int] = ACTIONS(4690), + [anon_sym_c_uint] = ACTIONS(4690), + [anon_sym_c_long] = ACTIONS(4690), + [anon_sym_c_ulong] = ACTIONS(4690), + [anon_sym_c_longlong] = ACTIONS(4690), + [anon_sym_c_ulonglong] = ACTIONS(4690), + [anon_sym_c_float] = ACTIONS(4690), + [anon_sym_c_double] = ACTIONS(4690), + [anon_sym_c_longdouble] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_yield] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4688), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_defer] = ACTIONS(4690), + [anon_sym_errdefer] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_expand] = ACTIONS(4690), + [anon_sym_for] = ACTIONS(4690), + [anon_sym_match] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4688), + [anon_sym_orelse] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4690), + [anon_sym_and] = ACTIONS(4690), + [anon_sym_EQ_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_xor] = ACTIONS(4690), + [anon_sym_LT_LT] = ACTIONS(4690), + [anon_sym_GT_GT] = ACTIONS(4688), + [anon_sym_LT_LT_PIPE] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_SLASH] = ACTIONS(4688), + [anon_sym_catch] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4688), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_unreachable] = ACTIONS(4690), + [anon_sym_undefined] = ACTIONS(4690), + [sym_sink] = ACTIONS(4690), + [sym_integer] = ACTIONS(4690), + [sym_float] = ACTIONS(4688), + [anon_sym_DQUOTE] = ACTIONS(4688), + [sym_multiline_string] = ACTIONS(4688), + [sym_character] = ACTIONS(4688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4688), + }, + [STATE(4521)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7237), + [sym_labeled_block] = STATE(7237), + [sym_if_statement] = STATE(7237), + [sym_while_statement] = STATE(7237), + [sym_for_statement] = STATE(7237), + [sym_match_statement] = STATE(7237), + [sym__value] = STATE(7237), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4546), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7218), + }, + [STATE(4522)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7238), + [sym_labeled_block] = STATE(7238), + [sym_if_statement] = STATE(7238), + [sym_while_statement] = STATE(7238), + [sym_for_statement] = STATE(7238), + [sym_match_statement] = STATE(7238), + [sym__value] = STATE(7238), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4550), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7220), + }, + [STATE(4523)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4524)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4415), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7222), + }, + [STATE(4525)] = { + [ts_builtin_sym_end] = ACTIONS(4692), + [sym_identifier] = ACTIONS(4694), + [anon_sym_import] = ACTIONS(4694), + [anon_sym_test] = ACTIONS(4694), + [anon_sym_hide] = ACTIONS(4694), + [anon_sym_func] = ACTIONS(4694), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOLLAR] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_QMARK] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_void] = ACTIONS(4694), + [anon_sym_noreturn] = ACTIONS(4694), + [anon_sym_type] = ACTIONS(4694), + [anon_sym_anyopaque] = ACTIONS(4694), + [anon_sym_bool] = ACTIONS(4694), + [anon_sym_int] = ACTIONS(4694), + [anon_sym_uint] = ACTIONS(4694), + [anon_sym_float] = ACTIONS(4694), + [anon_sym_range] = ACTIONS(4694), + [anon_sym_i8] = ACTIONS(4694), + [anon_sym_i16] = ACTIONS(4694), + [anon_sym_i32] = ACTIONS(4694), + [anon_sym_i64] = ACTIONS(4694), + [anon_sym_u8] = ACTIONS(4694), + [anon_sym_u16] = ACTIONS(4694), + [anon_sym_u32] = ACTIONS(4694), + [anon_sym_u64] = ACTIONS(4694), + [anon_sym_isize] = ACTIONS(4694), + [anon_sym_usize] = ACTIONS(4694), + [anon_sym_f32] = ACTIONS(4694), + [anon_sym_f64] = ACTIONS(4694), + [anon_sym_c_char] = ACTIONS(4694), + [anon_sym_c_schar] = ACTIONS(4694), + [anon_sym_c_uchar] = ACTIONS(4694), + [anon_sym_c_short] = ACTIONS(4694), + [anon_sym_c_ushort] = ACTIONS(4694), + [anon_sym_c_int] = ACTIONS(4694), + [anon_sym_c_uint] = ACTIONS(4694), + [anon_sym_c_long] = ACTIONS(4694), + [anon_sym_c_ulong] = ACTIONS(4694), + [anon_sym_c_longlong] = ACTIONS(4694), + [anon_sym_c_ulonglong] = ACTIONS(4694), + [anon_sym_c_float] = ACTIONS(4694), + [anon_sym_c_double] = ACTIONS(4694), + [anon_sym_c_longdouble] = ACTIONS(4694), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_yield] = ACTIONS(4694), + [anon_sym_COLON] = ACTIONS(4692), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_defer] = ACTIONS(4694), + [anon_sym_errdefer] = ACTIONS(4694), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_while] = ACTIONS(4694), + [anon_sym_expand] = ACTIONS(4694), + [anon_sym_for] = ACTIONS(4694), + [anon_sym_match] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4692), + [anon_sym_orelse] = ACTIONS(4694), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [anon_sym_EQ_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_xor] = ACTIONS(4694), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4692), + [anon_sym_LT_LT_PIPE] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_catch] = ACTIONS(4694), + [anon_sym_TILDE] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_null] = ACTIONS(4694), + [anon_sym_unreachable] = ACTIONS(4694), + [anon_sym_undefined] = ACTIONS(4694), + [sym_sink] = ACTIONS(4694), + [sym_integer] = ACTIONS(4694), + [sym_float] = ACTIONS(4692), + [anon_sym_DQUOTE] = ACTIONS(4692), + [sym_multiline_string] = ACTIONS(4692), + [sym_character] = ACTIONS(4692), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4692), + }, + [STATE(4526)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4536), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7224), + }, + [STATE(4527)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4443), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7226), + }, + [STATE(4528)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7228), + }, + [STATE(4529)] = { + [ts_builtin_sym_end] = ACTIONS(5562), + [sym_identifier] = ACTIONS(5564), + [anon_sym_import] = ACTIONS(5564), + [anon_sym_test] = ACTIONS(5564), + [anon_sym_hide] = ACTIONS(5564), + [anon_sym_func] = ACTIONS(5564), + [anon_sym_BANG] = ACTIONS(5564), + [anon_sym_struct] = ACTIONS(5564), + [anon_sym_LPAREN] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_DOLLAR] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_void] = ACTIONS(5564), + [anon_sym_noreturn] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_anyopaque] = ACTIONS(5564), + [anon_sym_bool] = ACTIONS(5564), + [anon_sym_int] = ACTIONS(5564), + [anon_sym_uint] = ACTIONS(5564), + [anon_sym_float] = ACTIONS(5564), + [anon_sym_range] = ACTIONS(5564), + [anon_sym_i8] = ACTIONS(5564), + [anon_sym_i16] = ACTIONS(5564), + [anon_sym_i32] = ACTIONS(5564), + [anon_sym_i64] = ACTIONS(5564), + [anon_sym_u8] = ACTIONS(5564), + [anon_sym_u16] = ACTIONS(5564), + [anon_sym_u32] = ACTIONS(5564), + [anon_sym_u64] = ACTIONS(5564), + [anon_sym_isize] = ACTIONS(5564), + [anon_sym_usize] = ACTIONS(5564), + [anon_sym_f32] = ACTIONS(5564), + [anon_sym_f64] = ACTIONS(5564), + [anon_sym_c_char] = ACTIONS(5564), + [anon_sym_c_schar] = ACTIONS(5564), + [anon_sym_c_uchar] = ACTIONS(5564), + [anon_sym_c_short] = ACTIONS(5564), + [anon_sym_c_ushort] = ACTIONS(5564), + [anon_sym_c_int] = ACTIONS(5564), + [anon_sym_c_uint] = ACTIONS(5564), + [anon_sym_c_long] = ACTIONS(5564), + [anon_sym_c_ulong] = ACTIONS(5564), + [anon_sym_c_longlong] = ACTIONS(5564), + [anon_sym_c_ulonglong] = ACTIONS(5564), + [anon_sym_c_float] = ACTIONS(5564), + [anon_sym_c_double] = ACTIONS(5564), + [anon_sym_c_longdouble] = ACTIONS(5564), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_COLON] = ACTIONS(5562), + [anon_sym_break] = ACTIONS(5564), + [anon_sym_continue] = ACTIONS(5564), + [anon_sym_defer] = ACTIONS(5564), + [anon_sym_errdefer] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_else] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_expand] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_DOT_DOT] = ACTIONS(5564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5562), + [anon_sym_orelse] = ACTIONS(5564), + [anon_sym_or] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_LT] = ACTIONS(5564), + [anon_sym_LT_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5564), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP] = ACTIONS(5562), + [anon_sym_xor] = ACTIONS(5564), + [anon_sym_LT_LT] = ACTIONS(5564), + [anon_sym_GT_GT] = ACTIONS(5562), + [anon_sym_LT_LT_PIPE] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5562), + [anon_sym_SLASH] = ACTIONS(5562), + [anon_sym_catch] = ACTIONS(5564), + [anon_sym_TILDE] = ACTIONS(5562), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5562), + [anon_sym_true] = ACTIONS(5564), + [anon_sym_false] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_unreachable] = ACTIONS(5564), + [anon_sym_undefined] = ACTIONS(5564), + [sym_sink] = ACTIONS(5564), + [sym_integer] = ACTIONS(5564), + [sym_float] = ACTIONS(5562), + [anon_sym_DQUOTE] = ACTIONS(5562), + [sym_multiline_string] = ACTIONS(5562), + [sym_character] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5562), + }, + [STATE(4530)] = { + [ts_builtin_sym_end] = ACTIONS(5568), + [sym_identifier] = ACTIONS(5570), + [anon_sym_import] = ACTIONS(5570), + [anon_sym_test] = ACTIONS(5570), + [anon_sym_hide] = ACTIONS(5570), + [anon_sym_func] = ACTIONS(5570), + [anon_sym_BANG] = ACTIONS(5570), + [anon_sym_struct] = ACTIONS(5570), + [anon_sym_LPAREN] = ACTIONS(5568), + [anon_sym_LBRACE] = ACTIONS(5568), + [anon_sym_RBRACE] = ACTIONS(5568), + [anon_sym_DASH] = ACTIONS(5568), + [anon_sym_DOLLAR] = ACTIONS(5568), + [anon_sym_PIPE] = ACTIONS(5568), + [anon_sym_QMARK] = ACTIONS(5568), + [anon_sym_STAR] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_void] = ACTIONS(5570), + [anon_sym_noreturn] = ACTIONS(5570), + [anon_sym_type] = ACTIONS(5570), + [anon_sym_anyopaque] = ACTIONS(5570), + [anon_sym_bool] = ACTIONS(5570), + [anon_sym_int] = ACTIONS(5570), + [anon_sym_uint] = ACTIONS(5570), + [anon_sym_float] = ACTIONS(5570), + [anon_sym_range] = ACTIONS(5570), + [anon_sym_i8] = ACTIONS(5570), + [anon_sym_i16] = ACTIONS(5570), + [anon_sym_i32] = ACTIONS(5570), + [anon_sym_i64] = ACTIONS(5570), + [anon_sym_u8] = ACTIONS(5570), + [anon_sym_u16] = ACTIONS(5570), + [anon_sym_u32] = ACTIONS(5570), + [anon_sym_u64] = ACTIONS(5570), + [anon_sym_isize] = ACTIONS(5570), + [anon_sym_usize] = ACTIONS(5570), + [anon_sym_f32] = ACTIONS(5570), + [anon_sym_f64] = ACTIONS(5570), + [anon_sym_c_char] = ACTIONS(5570), + [anon_sym_c_schar] = ACTIONS(5570), + [anon_sym_c_uchar] = ACTIONS(5570), + [anon_sym_c_short] = ACTIONS(5570), + [anon_sym_c_ushort] = ACTIONS(5570), + [anon_sym_c_int] = ACTIONS(5570), + [anon_sym_c_uint] = ACTIONS(5570), + [anon_sym_c_long] = ACTIONS(5570), + [anon_sym_c_ulong] = ACTIONS(5570), + [anon_sym_c_longlong] = ACTIONS(5570), + [anon_sym_c_ulonglong] = ACTIONS(5570), + [anon_sym_c_float] = ACTIONS(5570), + [anon_sym_c_double] = ACTIONS(5570), + [anon_sym_c_longdouble] = ACTIONS(5570), + [anon_sym_return] = ACTIONS(5570), + [anon_sym_yield] = ACTIONS(5570), + [anon_sym_COLON] = ACTIONS(5568), + [anon_sym_break] = ACTIONS(5570), + [anon_sym_continue] = ACTIONS(5570), + [anon_sym_defer] = ACTIONS(5570), + [anon_sym_errdefer] = ACTIONS(5570), + [anon_sym_if] = ACTIONS(5570), + [anon_sym_else] = ACTIONS(5570), + [anon_sym_while] = ACTIONS(5570), + [anon_sym_expand] = ACTIONS(5570), + [anon_sym_for] = ACTIONS(5570), + [anon_sym_match] = ACTIONS(5570), + [anon_sym_DOT_DOT] = ACTIONS(5570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5568), + [anon_sym_orelse] = ACTIONS(5570), + [anon_sym_or] = ACTIONS(5570), + [anon_sym_and] = ACTIONS(5570), + [anon_sym_EQ_EQ] = ACTIONS(5568), + [anon_sym_BANG_EQ] = ACTIONS(5568), + [anon_sym_LT] = ACTIONS(5570), + [anon_sym_LT_EQ] = ACTIONS(5568), + [anon_sym_GT] = ACTIONS(5570), + [anon_sym_GT_EQ] = ACTIONS(5568), + [anon_sym_AMP] = ACTIONS(5568), + [anon_sym_xor] = ACTIONS(5570), + [anon_sym_LT_LT] = ACTIONS(5570), + [anon_sym_GT_GT] = ACTIONS(5568), + [anon_sym_LT_LT_PIPE] = ACTIONS(5568), + [anon_sym_PLUS] = ACTIONS(5568), + [anon_sym_SLASH] = ACTIONS(5568), + [anon_sym_catch] = ACTIONS(5570), + [anon_sym_TILDE] = ACTIONS(5568), + [anon_sym_try] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5570), + [anon_sym_CARET] = ACTIONS(5568), + [anon_sym_true] = ACTIONS(5570), + [anon_sym_false] = ACTIONS(5570), + [anon_sym_null] = ACTIONS(5570), + [anon_sym_unreachable] = ACTIONS(5570), + [anon_sym_undefined] = ACTIONS(5570), + [sym_sink] = ACTIONS(5570), + [sym_integer] = ACTIONS(5570), + [sym_float] = ACTIONS(5568), + [anon_sym_DQUOTE] = ACTIONS(5568), + [sym_multiline_string] = ACTIONS(5568), + [sym_character] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5568), + }, + [STATE(4531)] = { + [ts_builtin_sym_end] = ACTIONS(5214), + [sym_identifier] = ACTIONS(5216), + [anon_sym_import] = ACTIONS(5216), + [anon_sym_test] = ACTIONS(5216), + [anon_sym_hide] = ACTIONS(5216), + [anon_sym_func] = ACTIONS(5216), + [anon_sym_BANG] = ACTIONS(5216), + [anon_sym_struct] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_LBRACE] = ACTIONS(5214), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_QMARK] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_void] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym_type] = ACTIONS(5216), + [anon_sym_anyopaque] = ACTIONS(5216), + [anon_sym_bool] = ACTIONS(5216), + [anon_sym_int] = ACTIONS(5216), + [anon_sym_uint] = ACTIONS(5216), + [anon_sym_float] = ACTIONS(5216), + [anon_sym_range] = ACTIONS(5216), + [anon_sym_i8] = ACTIONS(5216), + [anon_sym_i16] = ACTIONS(5216), + [anon_sym_i32] = ACTIONS(5216), + [anon_sym_i64] = ACTIONS(5216), + [anon_sym_u8] = ACTIONS(5216), + [anon_sym_u16] = ACTIONS(5216), + [anon_sym_u32] = ACTIONS(5216), + [anon_sym_u64] = ACTIONS(5216), + [anon_sym_isize] = ACTIONS(5216), + [anon_sym_usize] = ACTIONS(5216), + [anon_sym_f32] = ACTIONS(5216), + [anon_sym_f64] = ACTIONS(5216), + [anon_sym_c_char] = ACTIONS(5216), + [anon_sym_c_schar] = ACTIONS(5216), + [anon_sym_c_uchar] = ACTIONS(5216), + [anon_sym_c_short] = ACTIONS(5216), + [anon_sym_c_ushort] = ACTIONS(5216), + [anon_sym_c_int] = ACTIONS(5216), + [anon_sym_c_uint] = ACTIONS(5216), + [anon_sym_c_long] = ACTIONS(5216), + [anon_sym_c_ulong] = ACTIONS(5216), + [anon_sym_c_longlong] = ACTIONS(5216), + [anon_sym_c_ulonglong] = ACTIONS(5216), + [anon_sym_c_float] = ACTIONS(5216), + [anon_sym_c_double] = ACTIONS(5216), + [anon_sym_c_longdouble] = ACTIONS(5216), + [anon_sym_return] = ACTIONS(5216), + [anon_sym_yield] = ACTIONS(5216), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_break] = ACTIONS(5216), + [anon_sym_continue] = ACTIONS(5216), + [anon_sym_defer] = ACTIONS(5216), + [anon_sym_errdefer] = ACTIONS(5216), + [anon_sym_if] = ACTIONS(5216), + [anon_sym_else] = ACTIONS(5216), + [anon_sym_while] = ACTIONS(5216), + [anon_sym_expand] = ACTIONS(5216), + [anon_sym_for] = ACTIONS(5216), + [anon_sym_match] = ACTIONS(5216), + [anon_sym_DOT_DOT] = ACTIONS(5216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5214), + [anon_sym_orelse] = ACTIONS(5216), + [anon_sym_or] = ACTIONS(5216), + [anon_sym_and] = ACTIONS(5216), + [anon_sym_EQ_EQ] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_LT_EQ] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_EQ] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5214), + [anon_sym_xor] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5214), + [anon_sym_LT_LT_PIPE] = ACTIONS(5214), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_catch] = ACTIONS(5216), + [anon_sym_TILDE] = ACTIONS(5214), + [anon_sym_try] = ACTIONS(5216), + [anon_sym_DOT] = ACTIONS(5216), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym_true] = ACTIONS(5216), + [anon_sym_false] = ACTIONS(5216), + [anon_sym_null] = ACTIONS(5216), + [anon_sym_unreachable] = ACTIONS(5216), + [anon_sym_undefined] = ACTIONS(5216), + [sym_sink] = ACTIONS(5216), + [sym_integer] = ACTIONS(5216), + [sym_float] = ACTIONS(5214), + [anon_sym_DQUOTE] = ACTIONS(5214), + [sym_multiline_string] = ACTIONS(5214), + [sym_character] = ACTIONS(5214), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5214), + }, + [STATE(4532)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8392), + [sym_labeled_block] = STATE(8392), + [sym_if_statement] = STATE(8392), + [sym_while_statement] = STATE(8392), + [sym_for_statement] = STATE(8392), + [sym_match_statement] = STATE(8392), + [sym__value] = STATE(8392), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(3925), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7230), + }, + [STATE(4533)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(10985), + [sym_labeled_block] = STATE(10985), + [sym_if_statement] = STATE(10985), + [sym_while_statement] = STATE(10985), + [sym_for_statement] = STATE(10985), + [sym_match_statement] = STATE(10985), + [sym__value] = STATE(10985), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(3942), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7232), + }, + [STATE(4534)] = { + [ts_builtin_sym_end] = ACTIONS(5218), + [sym_identifier] = ACTIONS(5220), + [anon_sym_import] = ACTIONS(5220), + [anon_sym_test] = ACTIONS(5220), + [anon_sym_hide] = ACTIONS(5220), + [anon_sym_func] = ACTIONS(5220), + [anon_sym_BANG] = ACTIONS(5220), + [anon_sym_struct] = ACTIONS(5220), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_LBRACE] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_void] = ACTIONS(5220), + [anon_sym_noreturn] = ACTIONS(5220), + [anon_sym_type] = ACTIONS(5220), + [anon_sym_anyopaque] = ACTIONS(5220), + [anon_sym_bool] = ACTIONS(5220), + [anon_sym_int] = ACTIONS(5220), + [anon_sym_uint] = ACTIONS(5220), + [anon_sym_float] = ACTIONS(5220), + [anon_sym_range] = ACTIONS(5220), + [anon_sym_i8] = ACTIONS(5220), + [anon_sym_i16] = ACTIONS(5220), + [anon_sym_i32] = ACTIONS(5220), + [anon_sym_i64] = ACTIONS(5220), + [anon_sym_u8] = ACTIONS(5220), + [anon_sym_u16] = ACTIONS(5220), + [anon_sym_u32] = ACTIONS(5220), + [anon_sym_u64] = ACTIONS(5220), + [anon_sym_isize] = ACTIONS(5220), + [anon_sym_usize] = ACTIONS(5220), + [anon_sym_f32] = ACTIONS(5220), + [anon_sym_f64] = ACTIONS(5220), + [anon_sym_c_char] = ACTIONS(5220), + [anon_sym_c_schar] = ACTIONS(5220), + [anon_sym_c_uchar] = ACTIONS(5220), + [anon_sym_c_short] = ACTIONS(5220), + [anon_sym_c_ushort] = ACTIONS(5220), + [anon_sym_c_int] = ACTIONS(5220), + [anon_sym_c_uint] = ACTIONS(5220), + [anon_sym_c_long] = ACTIONS(5220), + [anon_sym_c_ulong] = ACTIONS(5220), + [anon_sym_c_longlong] = ACTIONS(5220), + [anon_sym_c_ulonglong] = ACTIONS(5220), + [anon_sym_c_float] = ACTIONS(5220), + [anon_sym_c_double] = ACTIONS(5220), + [anon_sym_c_longdouble] = ACTIONS(5220), + [anon_sym_return] = ACTIONS(5220), + [anon_sym_yield] = ACTIONS(5220), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_break] = ACTIONS(5220), + [anon_sym_continue] = ACTIONS(5220), + [anon_sym_defer] = ACTIONS(5220), + [anon_sym_errdefer] = ACTIONS(5220), + [anon_sym_if] = ACTIONS(5220), + [anon_sym_else] = ACTIONS(5220), + [anon_sym_while] = ACTIONS(5220), + [anon_sym_expand] = ACTIONS(5220), + [anon_sym_for] = ACTIONS(5220), + [anon_sym_match] = ACTIONS(5220), + [anon_sym_DOT_DOT] = ACTIONS(5220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5218), + [anon_sym_orelse] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5220), + [anon_sym_and] = ACTIONS(5220), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_AMP] = ACTIONS(5218), + [anon_sym_xor] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5220), + [anon_sym_GT_GT] = ACTIONS(5218), + [anon_sym_LT_LT_PIPE] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_catch] = ACTIONS(5220), + [anon_sym_TILDE] = ACTIONS(5218), + [anon_sym_try] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym_true] = ACTIONS(5220), + [anon_sym_false] = ACTIONS(5220), + [anon_sym_null] = ACTIONS(5220), + [anon_sym_unreachable] = ACTIONS(5220), + [anon_sym_undefined] = ACTIONS(5220), + [sym_sink] = ACTIONS(5220), + [sym_integer] = ACTIONS(5220), + [sym_float] = ACTIONS(5218), + [anon_sym_DQUOTE] = ACTIONS(5218), + [sym_multiline_string] = ACTIONS(5218), + [sym_character] = ACTIONS(5218), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5218), + }, + [STATE(4535)] = { + [ts_builtin_sym_end] = ACTIONS(5668), + [sym_identifier] = ACTIONS(5670), + [anon_sym_import] = ACTIONS(5670), + [anon_sym_test] = ACTIONS(5670), + [anon_sym_hide] = ACTIONS(5670), + [anon_sym_func] = ACTIONS(5670), + [anon_sym_BANG] = ACTIONS(5670), + [anon_sym_struct] = ACTIONS(5670), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LBRACE] = ACTIONS(5668), + [anon_sym_RBRACE] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5668), + [anon_sym_DOLLAR] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5668), + [anon_sym_QMARK] = ACTIONS(5668), + [anon_sym_STAR] = ACTIONS(5668), + [anon_sym_LBRACK] = ACTIONS(5668), + [anon_sym_void] = ACTIONS(5670), + [anon_sym_noreturn] = ACTIONS(5670), + [anon_sym_type] = ACTIONS(5670), + [anon_sym_anyopaque] = ACTIONS(5670), + [anon_sym_bool] = ACTIONS(5670), + [anon_sym_int] = ACTIONS(5670), + [anon_sym_uint] = ACTIONS(5670), + [anon_sym_float] = ACTIONS(5670), + [anon_sym_range] = ACTIONS(5670), + [anon_sym_i8] = ACTIONS(5670), + [anon_sym_i16] = ACTIONS(5670), + [anon_sym_i32] = ACTIONS(5670), + [anon_sym_i64] = ACTIONS(5670), + [anon_sym_u8] = ACTIONS(5670), + [anon_sym_u16] = ACTIONS(5670), + [anon_sym_u32] = ACTIONS(5670), + [anon_sym_u64] = ACTIONS(5670), + [anon_sym_isize] = ACTIONS(5670), + [anon_sym_usize] = ACTIONS(5670), + [anon_sym_f32] = ACTIONS(5670), + [anon_sym_f64] = ACTIONS(5670), + [anon_sym_c_char] = ACTIONS(5670), + [anon_sym_c_schar] = ACTIONS(5670), + [anon_sym_c_uchar] = ACTIONS(5670), + [anon_sym_c_short] = ACTIONS(5670), + [anon_sym_c_ushort] = ACTIONS(5670), + [anon_sym_c_int] = ACTIONS(5670), + [anon_sym_c_uint] = ACTIONS(5670), + [anon_sym_c_long] = ACTIONS(5670), + [anon_sym_c_ulong] = ACTIONS(5670), + [anon_sym_c_longlong] = ACTIONS(5670), + [anon_sym_c_ulonglong] = ACTIONS(5670), + [anon_sym_c_float] = ACTIONS(5670), + [anon_sym_c_double] = ACTIONS(5670), + [anon_sym_c_longdouble] = ACTIONS(5670), + [anon_sym_return] = ACTIONS(5670), + [anon_sym_yield] = ACTIONS(5670), + [anon_sym_COLON] = ACTIONS(5668), + [anon_sym_break] = ACTIONS(5670), + [anon_sym_continue] = ACTIONS(5670), + [anon_sym_defer] = ACTIONS(5670), + [anon_sym_errdefer] = ACTIONS(5670), + [anon_sym_if] = ACTIONS(5670), + [anon_sym_else] = ACTIONS(5670), + [anon_sym_while] = ACTIONS(5670), + [anon_sym_expand] = ACTIONS(5670), + [anon_sym_for] = ACTIONS(5670), + [anon_sym_match] = ACTIONS(5670), + [anon_sym_DOT_DOT] = ACTIONS(5670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5668), + [anon_sym_orelse] = ACTIONS(5670), + [anon_sym_or] = ACTIONS(5670), + [anon_sym_and] = ACTIONS(5670), + [anon_sym_EQ_EQ] = ACTIONS(5668), + [anon_sym_BANG_EQ] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5670), + [anon_sym_LT_EQ] = ACTIONS(5668), + [anon_sym_GT] = ACTIONS(5670), + [anon_sym_GT_EQ] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5668), + [anon_sym_xor] = ACTIONS(5670), + [anon_sym_LT_LT] = ACTIONS(5670), + [anon_sym_GT_GT] = ACTIONS(5668), + [anon_sym_LT_LT_PIPE] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_SLASH] = ACTIONS(5668), + [anon_sym_catch] = ACTIONS(5670), + [anon_sym_TILDE] = ACTIONS(5668), + [anon_sym_try] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5670), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_true] = ACTIONS(5670), + [anon_sym_false] = ACTIONS(5670), + [anon_sym_null] = ACTIONS(5670), + [anon_sym_unreachable] = ACTIONS(5670), + [anon_sym_undefined] = ACTIONS(5670), + [sym_sink] = ACTIONS(5670), + [sym_integer] = ACTIONS(5670), + [sym_float] = ACTIONS(5668), + [anon_sym_DQUOTE] = ACTIONS(5668), + [sym_multiline_string] = ACTIONS(5668), + [sym_character] = ACTIONS(5668), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5668), + }, + [STATE(4536)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4537)] = { + [ts_builtin_sym_end] = ACTIONS(5984), + [sym_identifier] = ACTIONS(5986), + [anon_sym_import] = ACTIONS(5986), + [anon_sym_test] = ACTIONS(5986), + [anon_sym_hide] = ACTIONS(5986), + [anon_sym_func] = ACTIONS(5986), + [anon_sym_BANG] = ACTIONS(5986), + [anon_sym_struct] = ACTIONS(5986), + [anon_sym_LPAREN] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5984), + [anon_sym_DOLLAR] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5984), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(5984), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_void] = ACTIONS(5986), + [anon_sym_noreturn] = ACTIONS(5986), + [anon_sym_type] = ACTIONS(5986), + [anon_sym_anyopaque] = ACTIONS(5986), + [anon_sym_bool] = ACTIONS(5986), + [anon_sym_int] = ACTIONS(5986), + [anon_sym_uint] = ACTIONS(5986), + [anon_sym_float] = ACTIONS(5986), + [anon_sym_range] = ACTIONS(5986), + [anon_sym_i8] = ACTIONS(5986), + [anon_sym_i16] = ACTIONS(5986), + [anon_sym_i32] = ACTIONS(5986), + [anon_sym_i64] = ACTIONS(5986), + [anon_sym_u8] = ACTIONS(5986), + [anon_sym_u16] = ACTIONS(5986), + [anon_sym_u32] = ACTIONS(5986), + [anon_sym_u64] = ACTIONS(5986), + [anon_sym_isize] = ACTIONS(5986), + [anon_sym_usize] = ACTIONS(5986), + [anon_sym_f32] = ACTIONS(5986), + [anon_sym_f64] = ACTIONS(5986), + [anon_sym_c_char] = ACTIONS(5986), + [anon_sym_c_schar] = ACTIONS(5986), + [anon_sym_c_uchar] = ACTIONS(5986), + [anon_sym_c_short] = ACTIONS(5986), + [anon_sym_c_ushort] = ACTIONS(5986), + [anon_sym_c_int] = ACTIONS(5986), + [anon_sym_c_uint] = ACTIONS(5986), + [anon_sym_c_long] = ACTIONS(5986), + [anon_sym_c_ulong] = ACTIONS(5986), + [anon_sym_c_longlong] = ACTIONS(5986), + [anon_sym_c_ulonglong] = ACTIONS(5986), + [anon_sym_c_float] = ACTIONS(5986), + [anon_sym_c_double] = ACTIONS(5986), + [anon_sym_c_longdouble] = ACTIONS(5986), + [anon_sym_return] = ACTIONS(5986), + [anon_sym_yield] = ACTIONS(5986), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_break] = ACTIONS(5986), + [anon_sym_continue] = ACTIONS(5986), + [anon_sym_defer] = ACTIONS(5986), + [anon_sym_errdefer] = ACTIONS(5986), + [anon_sym_if] = ACTIONS(5986), + [anon_sym_else] = ACTIONS(5986), + [anon_sym_while] = ACTIONS(5986), + [anon_sym_expand] = ACTIONS(5986), + [anon_sym_for] = ACTIONS(5986), + [anon_sym_match] = ACTIONS(5986), + [anon_sym_DOT_DOT] = ACTIONS(5986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5984), + [anon_sym_orelse] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5984), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_LT_LT_PIPE] = ACTIONS(5984), + [anon_sym_PLUS] = ACTIONS(5984), + [anon_sym_SLASH] = ACTIONS(5984), + [anon_sym_catch] = ACTIONS(5986), + [anon_sym_TILDE] = ACTIONS(5984), + [anon_sym_try] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5984), + [anon_sym_true] = ACTIONS(5986), + [anon_sym_false] = ACTIONS(5986), + [anon_sym_null] = ACTIONS(5986), + [anon_sym_unreachable] = ACTIONS(5986), + [anon_sym_undefined] = ACTIONS(5986), + [sym_sink] = ACTIONS(5986), + [sym_integer] = ACTIONS(5986), + [sym_float] = ACTIONS(5984), + [anon_sym_DQUOTE] = ACTIONS(5984), + [sym_multiline_string] = ACTIONS(5984), + [sym_character] = ACTIONS(5984), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5984), + }, + [STATE(4538)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4549), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7234), + }, + [STATE(4539)] = { + [ts_builtin_sym_end] = ACTIONS(5988), + [sym_identifier] = ACTIONS(5990), + [anon_sym_import] = ACTIONS(5990), + [anon_sym_test] = ACTIONS(5990), + [anon_sym_hide] = ACTIONS(5990), + [anon_sym_func] = ACTIONS(5990), + [anon_sym_BANG] = ACTIONS(5990), + [anon_sym_struct] = ACTIONS(5990), + [anon_sym_LPAREN] = ACTIONS(5988), + [anon_sym_LBRACE] = ACTIONS(5988), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5988), + [anon_sym_DOLLAR] = ACTIONS(5988), + [anon_sym_PIPE] = ACTIONS(5988), + [anon_sym_QMARK] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5988), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_void] = ACTIONS(5990), + [anon_sym_noreturn] = ACTIONS(5990), + [anon_sym_type] = ACTIONS(5990), + [anon_sym_anyopaque] = ACTIONS(5990), + [anon_sym_bool] = ACTIONS(5990), + [anon_sym_int] = ACTIONS(5990), + [anon_sym_uint] = ACTIONS(5990), + [anon_sym_float] = ACTIONS(5990), + [anon_sym_range] = ACTIONS(5990), + [anon_sym_i8] = ACTIONS(5990), + [anon_sym_i16] = ACTIONS(5990), + [anon_sym_i32] = ACTIONS(5990), + [anon_sym_i64] = ACTIONS(5990), + [anon_sym_u8] = ACTIONS(5990), + [anon_sym_u16] = ACTIONS(5990), + [anon_sym_u32] = ACTIONS(5990), + [anon_sym_u64] = ACTIONS(5990), + [anon_sym_isize] = ACTIONS(5990), + [anon_sym_usize] = ACTIONS(5990), + [anon_sym_f32] = ACTIONS(5990), + [anon_sym_f64] = ACTIONS(5990), + [anon_sym_c_char] = ACTIONS(5990), + [anon_sym_c_schar] = ACTIONS(5990), + [anon_sym_c_uchar] = ACTIONS(5990), + [anon_sym_c_short] = ACTIONS(5990), + [anon_sym_c_ushort] = ACTIONS(5990), + [anon_sym_c_int] = ACTIONS(5990), + [anon_sym_c_uint] = ACTIONS(5990), + [anon_sym_c_long] = ACTIONS(5990), + [anon_sym_c_ulong] = ACTIONS(5990), + [anon_sym_c_longlong] = ACTIONS(5990), + [anon_sym_c_ulonglong] = ACTIONS(5990), + [anon_sym_c_float] = ACTIONS(5990), + [anon_sym_c_double] = ACTIONS(5990), + [anon_sym_c_longdouble] = ACTIONS(5990), + [anon_sym_return] = ACTIONS(5990), + [anon_sym_yield] = ACTIONS(5990), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_break] = ACTIONS(5990), + [anon_sym_continue] = ACTIONS(5990), + [anon_sym_defer] = ACTIONS(5990), + [anon_sym_errdefer] = ACTIONS(5990), + [anon_sym_if] = ACTIONS(5990), + [anon_sym_else] = ACTIONS(5990), + [anon_sym_while] = ACTIONS(5990), + [anon_sym_expand] = ACTIONS(5990), + [anon_sym_for] = ACTIONS(5990), + [anon_sym_match] = ACTIONS(5990), + [anon_sym_DOT_DOT] = ACTIONS(5990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5988), + [anon_sym_orelse] = ACTIONS(5990), + [anon_sym_or] = ACTIONS(5990), + [anon_sym_and] = ACTIONS(5990), + [anon_sym_EQ_EQ] = ACTIONS(5988), + [anon_sym_BANG_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5990), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_GT] = ACTIONS(5990), + [anon_sym_GT_EQ] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_xor] = ACTIONS(5990), + [anon_sym_LT_LT] = ACTIONS(5990), + [anon_sym_GT_GT] = ACTIONS(5988), + [anon_sym_LT_LT_PIPE] = ACTIONS(5988), + [anon_sym_PLUS] = ACTIONS(5988), + [anon_sym_SLASH] = ACTIONS(5988), + [anon_sym_catch] = ACTIONS(5990), + [anon_sym_TILDE] = ACTIONS(5988), + [anon_sym_try] = ACTIONS(5990), + [anon_sym_DOT] = ACTIONS(5990), + [anon_sym_CARET] = ACTIONS(5988), + [anon_sym_true] = ACTIONS(5990), + [anon_sym_false] = ACTIONS(5990), + [anon_sym_null] = ACTIONS(5990), + [anon_sym_unreachable] = ACTIONS(5990), + [anon_sym_undefined] = ACTIONS(5990), + [sym_sink] = ACTIONS(5990), + [sym_integer] = ACTIONS(5990), + [sym_float] = ACTIONS(5988), + [anon_sym_DQUOTE] = ACTIONS(5988), + [sym_multiline_string] = ACTIONS(5988), + [sym_character] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5988), + }, + [STATE(4540)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4553), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7236), + }, + [STATE(4541)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4542)] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2716), + [anon_sym_test] = ACTIONS(2716), + [anon_sym_hide] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_DOLLAR] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_COLON] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_defer] = ACTIONS(2716), + [anon_sym_errdefer] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_expand] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(2716), + [anon_sym_and] = ACTIONS(2716), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_xor] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2716), + [anon_sym_GT_GT] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_unreachable] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [sym_sink] = ACTIONS(2716), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [sym_multiline_string] = ACTIONS(2714), + [sym_character] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(4543)] = { + [ts_builtin_sym_end] = ACTIONS(4696), + [sym_identifier] = ACTIONS(4698), + [anon_sym_import] = ACTIONS(4698), + [anon_sym_test] = ACTIONS(4698), + [anon_sym_hide] = ACTIONS(4698), + [anon_sym_func] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_struct] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_DOLLAR] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4696), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_void] = ACTIONS(4698), + [anon_sym_noreturn] = ACTIONS(4698), + [anon_sym_type] = ACTIONS(4698), + [anon_sym_anyopaque] = ACTIONS(4698), + [anon_sym_bool] = ACTIONS(4698), + [anon_sym_int] = ACTIONS(4698), + [anon_sym_uint] = ACTIONS(4698), + [anon_sym_float] = ACTIONS(4698), + [anon_sym_range] = ACTIONS(4698), + [anon_sym_i8] = ACTIONS(4698), + [anon_sym_i16] = ACTIONS(4698), + [anon_sym_i32] = ACTIONS(4698), + [anon_sym_i64] = ACTIONS(4698), + [anon_sym_u8] = ACTIONS(4698), + [anon_sym_u16] = ACTIONS(4698), + [anon_sym_u32] = ACTIONS(4698), + [anon_sym_u64] = ACTIONS(4698), + [anon_sym_isize] = ACTIONS(4698), + [anon_sym_usize] = ACTIONS(4698), + [anon_sym_f32] = ACTIONS(4698), + [anon_sym_f64] = ACTIONS(4698), + [anon_sym_c_char] = ACTIONS(4698), + [anon_sym_c_schar] = ACTIONS(4698), + [anon_sym_c_uchar] = ACTIONS(4698), + [anon_sym_c_short] = ACTIONS(4698), + [anon_sym_c_ushort] = ACTIONS(4698), + [anon_sym_c_int] = ACTIONS(4698), + [anon_sym_c_uint] = ACTIONS(4698), + [anon_sym_c_long] = ACTIONS(4698), + [anon_sym_c_ulong] = ACTIONS(4698), + [anon_sym_c_longlong] = ACTIONS(4698), + [anon_sym_c_ulonglong] = ACTIONS(4698), + [anon_sym_c_float] = ACTIONS(4698), + [anon_sym_c_double] = ACTIONS(4698), + [anon_sym_c_longdouble] = ACTIONS(4698), + [anon_sym_return] = ACTIONS(4698), + [anon_sym_yield] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4698), + [anon_sym_continue] = ACTIONS(4698), + [anon_sym_defer] = ACTIONS(4698), + [anon_sym_errdefer] = ACTIONS(4698), + [anon_sym_if] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_while] = ACTIONS(4698), + [anon_sym_expand] = ACTIONS(4698), + [anon_sym_for] = ACTIONS(4698), + [anon_sym_match] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4696), + [anon_sym_orelse] = ACTIONS(4698), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4696), + [anon_sym_xor] = ACTIONS(4698), + [anon_sym_LT_LT] = ACTIONS(4698), + [anon_sym_GT_GT] = ACTIONS(4696), + [anon_sym_LT_LT_PIPE] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_catch] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4698), + [anon_sym_false] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4698), + [anon_sym_unreachable] = ACTIONS(4698), + [anon_sym_undefined] = ACTIONS(4698), + [sym_sink] = ACTIONS(4698), + [sym_integer] = ACTIONS(4698), + [sym_float] = ACTIONS(4696), + [anon_sym_DQUOTE] = ACTIONS(4696), + [sym_multiline_string] = ACTIONS(4696), + [sym_character] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4696), + }, + [STATE(4544)] = { + [ts_builtin_sym_end] = ACTIONS(4700), + [sym_identifier] = ACTIONS(4702), + [anon_sym_import] = ACTIONS(4702), + [anon_sym_test] = ACTIONS(4702), + [anon_sym_hide] = ACTIONS(4702), + [anon_sym_func] = ACTIONS(4702), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_struct] = ACTIONS(4702), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOLLAR] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(4700), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_STAR] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_void] = ACTIONS(4702), + [anon_sym_noreturn] = ACTIONS(4702), + [anon_sym_type] = ACTIONS(4702), + [anon_sym_anyopaque] = ACTIONS(4702), + [anon_sym_bool] = ACTIONS(4702), + [anon_sym_int] = ACTIONS(4702), + [anon_sym_uint] = ACTIONS(4702), + [anon_sym_float] = ACTIONS(4702), + [anon_sym_range] = ACTIONS(4702), + [anon_sym_i8] = ACTIONS(4702), + [anon_sym_i16] = ACTIONS(4702), + [anon_sym_i32] = ACTIONS(4702), + [anon_sym_i64] = ACTIONS(4702), + [anon_sym_u8] = ACTIONS(4702), + [anon_sym_u16] = ACTIONS(4702), + [anon_sym_u32] = ACTIONS(4702), + [anon_sym_u64] = ACTIONS(4702), + [anon_sym_isize] = ACTIONS(4702), + [anon_sym_usize] = ACTIONS(4702), + [anon_sym_f32] = ACTIONS(4702), + [anon_sym_f64] = ACTIONS(4702), + [anon_sym_c_char] = ACTIONS(4702), + [anon_sym_c_schar] = ACTIONS(4702), + [anon_sym_c_uchar] = ACTIONS(4702), + [anon_sym_c_short] = ACTIONS(4702), + [anon_sym_c_ushort] = ACTIONS(4702), + [anon_sym_c_int] = ACTIONS(4702), + [anon_sym_c_uint] = ACTIONS(4702), + [anon_sym_c_long] = ACTIONS(4702), + [anon_sym_c_ulong] = ACTIONS(4702), + [anon_sym_c_longlong] = ACTIONS(4702), + [anon_sym_c_ulonglong] = ACTIONS(4702), + [anon_sym_c_float] = ACTIONS(4702), + [anon_sym_c_double] = ACTIONS(4702), + [anon_sym_c_longdouble] = ACTIONS(4702), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_yield] = ACTIONS(4702), + [anon_sym_COLON] = ACTIONS(4700), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_defer] = ACTIONS(4702), + [anon_sym_errdefer] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_while] = ACTIONS(4702), + [anon_sym_expand] = ACTIONS(4702), + [anon_sym_for] = ACTIONS(4702), + [anon_sym_match] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4700), + [anon_sym_orelse] = ACTIONS(4702), + [anon_sym_or] = ACTIONS(4702), + [anon_sym_and] = ACTIONS(4702), + [anon_sym_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_xor] = ACTIONS(4702), + [anon_sym_LT_LT] = ACTIONS(4702), + [anon_sym_GT_GT] = ACTIONS(4700), + [anon_sym_LT_LT_PIPE] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4700), + [anon_sym_catch] = ACTIONS(4702), + [anon_sym_TILDE] = ACTIONS(4700), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_unreachable] = ACTIONS(4702), + [anon_sym_undefined] = ACTIONS(4702), + [sym_sink] = ACTIONS(4702), + [sym_integer] = ACTIONS(4702), + [sym_float] = ACTIONS(4700), + [anon_sym_DQUOTE] = ACTIONS(4700), + [sym_multiline_string] = ACTIONS(4700), + [sym_character] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4700), + }, + [STATE(4545)] = { + [ts_builtin_sym_end] = ACTIONS(5992), + [sym_identifier] = ACTIONS(5994), + [anon_sym_import] = ACTIONS(5994), + [anon_sym_test] = ACTIONS(5994), + [anon_sym_hide] = ACTIONS(5994), + [anon_sym_func] = ACTIONS(5994), + [anon_sym_BANG] = ACTIONS(5994), + [anon_sym_struct] = ACTIONS(5994), + [anon_sym_LPAREN] = ACTIONS(5992), + [anon_sym_LBRACE] = ACTIONS(5992), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_DASH] = ACTIONS(5992), + [anon_sym_DOLLAR] = ACTIONS(5992), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_QMARK] = ACTIONS(5992), + [anon_sym_STAR] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(5992), + [anon_sym_void] = ACTIONS(5994), + [anon_sym_noreturn] = ACTIONS(5994), + [anon_sym_type] = ACTIONS(5994), + [anon_sym_anyopaque] = ACTIONS(5994), + [anon_sym_bool] = ACTIONS(5994), + [anon_sym_int] = ACTIONS(5994), + [anon_sym_uint] = ACTIONS(5994), + [anon_sym_float] = ACTIONS(5994), + [anon_sym_range] = ACTIONS(5994), + [anon_sym_i8] = ACTIONS(5994), + [anon_sym_i16] = ACTIONS(5994), + [anon_sym_i32] = ACTIONS(5994), + [anon_sym_i64] = ACTIONS(5994), + [anon_sym_u8] = ACTIONS(5994), + [anon_sym_u16] = ACTIONS(5994), + [anon_sym_u32] = ACTIONS(5994), + [anon_sym_u64] = ACTIONS(5994), + [anon_sym_isize] = ACTIONS(5994), + [anon_sym_usize] = ACTIONS(5994), + [anon_sym_f32] = ACTIONS(5994), + [anon_sym_f64] = ACTIONS(5994), + [anon_sym_c_char] = ACTIONS(5994), + [anon_sym_c_schar] = ACTIONS(5994), + [anon_sym_c_uchar] = ACTIONS(5994), + [anon_sym_c_short] = ACTIONS(5994), + [anon_sym_c_ushort] = ACTIONS(5994), + [anon_sym_c_int] = ACTIONS(5994), + [anon_sym_c_uint] = ACTIONS(5994), + [anon_sym_c_long] = ACTIONS(5994), + [anon_sym_c_ulong] = ACTIONS(5994), + [anon_sym_c_longlong] = ACTIONS(5994), + [anon_sym_c_ulonglong] = ACTIONS(5994), + [anon_sym_c_float] = ACTIONS(5994), + [anon_sym_c_double] = ACTIONS(5994), + [anon_sym_c_longdouble] = ACTIONS(5994), + [anon_sym_return] = ACTIONS(5994), + [anon_sym_yield] = ACTIONS(5994), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_break] = ACTIONS(5994), + [anon_sym_continue] = ACTIONS(5994), + [anon_sym_defer] = ACTIONS(5994), + [anon_sym_errdefer] = ACTIONS(5994), + [anon_sym_if] = ACTIONS(5994), + [anon_sym_else] = ACTIONS(5994), + [anon_sym_while] = ACTIONS(5994), + [anon_sym_expand] = ACTIONS(5994), + [anon_sym_for] = ACTIONS(5994), + [anon_sym_match] = ACTIONS(5994), + [anon_sym_DOT_DOT] = ACTIONS(5994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5992), + [anon_sym_orelse] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5994), + [anon_sym_and] = ACTIONS(5994), + [anon_sym_EQ_EQ] = ACTIONS(5992), + [anon_sym_BANG_EQ] = ACTIONS(5992), + [anon_sym_LT] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5992), + [anon_sym_GT] = ACTIONS(5994), + [anon_sym_GT_EQ] = ACTIONS(5992), + [anon_sym_AMP] = ACTIONS(5992), + [anon_sym_xor] = ACTIONS(5994), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5992), + [anon_sym_LT_LT_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5992), + [anon_sym_SLASH] = ACTIONS(5992), + [anon_sym_catch] = ACTIONS(5994), + [anon_sym_TILDE] = ACTIONS(5992), + [anon_sym_try] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_CARET] = ACTIONS(5992), + [anon_sym_true] = ACTIONS(5994), + [anon_sym_false] = ACTIONS(5994), + [anon_sym_null] = ACTIONS(5994), + [anon_sym_unreachable] = ACTIONS(5994), + [anon_sym_undefined] = ACTIONS(5994), + [sym_sink] = ACTIONS(5994), + [sym_integer] = ACTIONS(5994), + [sym_float] = ACTIONS(5992), + [anon_sym_DQUOTE] = ACTIONS(5992), + [sym_multiline_string] = ACTIONS(5992), + [sym_character] = ACTIONS(5992), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5992), + }, + [STATE(4546)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7254), + [sym_labeled_block] = STATE(7254), + [sym_if_statement] = STATE(7254), + [sym_while_statement] = STATE(7254), + [sym_for_statement] = STATE(7254), + [sym_match_statement] = STATE(7254), + [sym__value] = STATE(7254), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4547)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7255), + [sym_labeled_block] = STATE(7255), + [sym_if_statement] = STATE(7255), + [sym_while_statement] = STATE(7255), + [sym_for_statement] = STATE(7255), + [sym_match_statement] = STATE(7255), + [sym__value] = STATE(7255), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4577), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7238), + }, + [STATE(4548)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7256), + [sym_labeled_block] = STATE(7256), + [sym_if_statement] = STATE(7256), + [sym_while_statement] = STATE(7256), + [sym_for_statement] = STATE(7256), + [sym_match_statement] = STATE(7256), + [sym__value] = STATE(7256), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4579), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7240), + }, + [STATE(4549)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4550)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7257), + [sym_labeled_block] = STATE(7257), + [sym_if_statement] = STATE(7257), + [sym_while_statement] = STATE(7257), + [sym_for_statement] = STATE(7257), + [sym_match_statement] = STATE(7257), + [sym__value] = STATE(7257), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4551)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4552)] = { + [ts_builtin_sym_end] = ACTIONS(5854), + [sym_identifier] = ACTIONS(5856), + [anon_sym_import] = ACTIONS(5856), + [anon_sym_test] = ACTIONS(5856), + [anon_sym_hide] = ACTIONS(5856), + [anon_sym_func] = ACTIONS(5856), + [anon_sym_BANG] = ACTIONS(5856), + [anon_sym_struct] = ACTIONS(5856), + [anon_sym_LPAREN] = ACTIONS(5854), + [anon_sym_LBRACE] = ACTIONS(5854), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_DASH] = ACTIONS(5854), + [anon_sym_DOLLAR] = ACTIONS(5854), + [anon_sym_PIPE] = ACTIONS(5854), + [anon_sym_QMARK] = ACTIONS(5854), + [anon_sym_STAR] = ACTIONS(5854), + [anon_sym_LBRACK] = ACTIONS(5854), + [anon_sym_void] = ACTIONS(5856), + [anon_sym_noreturn] = ACTIONS(5856), + [anon_sym_type] = ACTIONS(5856), + [anon_sym_anyopaque] = ACTIONS(5856), + [anon_sym_bool] = ACTIONS(5856), + [anon_sym_int] = ACTIONS(5856), + [anon_sym_uint] = ACTIONS(5856), + [anon_sym_float] = ACTIONS(5856), + [anon_sym_range] = ACTIONS(5856), + [anon_sym_i8] = ACTIONS(5856), + [anon_sym_i16] = ACTIONS(5856), + [anon_sym_i32] = ACTIONS(5856), + [anon_sym_i64] = ACTIONS(5856), + [anon_sym_u8] = ACTIONS(5856), + [anon_sym_u16] = ACTIONS(5856), + [anon_sym_u32] = ACTIONS(5856), + [anon_sym_u64] = ACTIONS(5856), + [anon_sym_isize] = ACTIONS(5856), + [anon_sym_usize] = ACTIONS(5856), + [anon_sym_f32] = ACTIONS(5856), + [anon_sym_f64] = ACTIONS(5856), + [anon_sym_c_char] = ACTIONS(5856), + [anon_sym_c_schar] = ACTIONS(5856), + [anon_sym_c_uchar] = ACTIONS(5856), + [anon_sym_c_short] = ACTIONS(5856), + [anon_sym_c_ushort] = ACTIONS(5856), + [anon_sym_c_int] = ACTIONS(5856), + [anon_sym_c_uint] = ACTIONS(5856), + [anon_sym_c_long] = ACTIONS(5856), + [anon_sym_c_ulong] = ACTIONS(5856), + [anon_sym_c_longlong] = ACTIONS(5856), + [anon_sym_c_ulonglong] = ACTIONS(5856), + [anon_sym_c_float] = ACTIONS(5856), + [anon_sym_c_double] = ACTIONS(5856), + [anon_sym_c_longdouble] = ACTIONS(5856), + [anon_sym_return] = ACTIONS(5856), + [anon_sym_yield] = ACTIONS(5856), + [anon_sym_COLON] = ACTIONS(5854), + [anon_sym_break] = ACTIONS(5856), + [anon_sym_continue] = ACTIONS(5856), + [anon_sym_defer] = ACTIONS(5856), + [anon_sym_errdefer] = ACTIONS(5856), + [anon_sym_if] = ACTIONS(5856), + [anon_sym_else] = ACTIONS(5856), + [anon_sym_while] = ACTIONS(5856), + [anon_sym_expand] = ACTIONS(5856), + [anon_sym_for] = ACTIONS(5856), + [anon_sym_match] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5854), + [anon_sym_orelse] = ACTIONS(5856), + [anon_sym_or] = ACTIONS(5856), + [anon_sym_and] = ACTIONS(5856), + [anon_sym_EQ_EQ] = ACTIONS(5854), + [anon_sym_BANG_EQ] = ACTIONS(5854), + [anon_sym_LT] = ACTIONS(5856), + [anon_sym_LT_EQ] = ACTIONS(5854), + [anon_sym_GT] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5854), + [anon_sym_AMP] = ACTIONS(5854), + [anon_sym_xor] = ACTIONS(5856), + [anon_sym_LT_LT] = ACTIONS(5856), + [anon_sym_GT_GT] = ACTIONS(5854), + [anon_sym_LT_LT_PIPE] = ACTIONS(5854), + [anon_sym_PLUS] = ACTIONS(5854), + [anon_sym_SLASH] = ACTIONS(5854), + [anon_sym_catch] = ACTIONS(5856), + [anon_sym_TILDE] = ACTIONS(5854), + [anon_sym_try] = ACTIONS(5856), + [anon_sym_DOT] = ACTIONS(5856), + [anon_sym_CARET] = ACTIONS(5854), + [anon_sym_true] = ACTIONS(5856), + [anon_sym_false] = ACTIONS(5856), + [anon_sym_null] = ACTIONS(5856), + [anon_sym_unreachable] = ACTIONS(5856), + [anon_sym_undefined] = ACTIONS(5856), + [sym_sink] = ACTIONS(5856), + [sym_integer] = ACTIONS(5856), + [sym_float] = ACTIONS(5854), + [anon_sym_DQUOTE] = ACTIONS(5854), + [sym_multiline_string] = ACTIONS(5854), + [sym_character] = ACTIONS(5854), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5854), + }, + [STATE(4553)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4554)] = { + [ts_builtin_sym_end] = ACTIONS(5340), + [sym_identifier] = ACTIONS(5342), + [anon_sym_import] = ACTIONS(5342), + [anon_sym_test] = ACTIONS(5342), + [anon_sym_hide] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5342), + [anon_sym_BANG] = ACTIONS(5342), + [anon_sym_struct] = ACTIONS(5342), + [anon_sym_LPAREN] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5340), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_QMARK] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5340), + [anon_sym_void] = ACTIONS(5342), + [anon_sym_noreturn] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_anyopaque] = ACTIONS(5342), + [anon_sym_bool] = ACTIONS(5342), + [anon_sym_int] = ACTIONS(5342), + [anon_sym_uint] = ACTIONS(5342), + [anon_sym_float] = ACTIONS(5342), + [anon_sym_range] = ACTIONS(5342), + [anon_sym_i8] = ACTIONS(5342), + [anon_sym_i16] = ACTIONS(5342), + [anon_sym_i32] = ACTIONS(5342), + [anon_sym_i64] = ACTIONS(5342), + [anon_sym_u8] = ACTIONS(5342), + [anon_sym_u16] = ACTIONS(5342), + [anon_sym_u32] = ACTIONS(5342), + [anon_sym_u64] = ACTIONS(5342), + [anon_sym_isize] = ACTIONS(5342), + [anon_sym_usize] = ACTIONS(5342), + [anon_sym_f32] = ACTIONS(5342), + [anon_sym_f64] = ACTIONS(5342), + [anon_sym_c_char] = ACTIONS(5342), + [anon_sym_c_schar] = ACTIONS(5342), + [anon_sym_c_uchar] = ACTIONS(5342), + [anon_sym_c_short] = ACTIONS(5342), + [anon_sym_c_ushort] = ACTIONS(5342), + [anon_sym_c_int] = ACTIONS(5342), + [anon_sym_c_uint] = ACTIONS(5342), + [anon_sym_c_long] = ACTIONS(5342), + [anon_sym_c_ulong] = ACTIONS(5342), + [anon_sym_c_longlong] = ACTIONS(5342), + [anon_sym_c_ulonglong] = ACTIONS(5342), + [anon_sym_c_float] = ACTIONS(5342), + [anon_sym_c_double] = ACTIONS(5342), + [anon_sym_c_longdouble] = ACTIONS(5342), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_break] = ACTIONS(5342), + [anon_sym_continue] = ACTIONS(5342), + [anon_sym_defer] = ACTIONS(5342), + [anon_sym_errdefer] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_else] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_expand] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_DOT_DOT] = ACTIONS(5342), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5340), + [anon_sym_orelse] = ACTIONS(5342), + [anon_sym_or] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_EQ_EQ] = ACTIONS(5340), + [anon_sym_BANG_EQ] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5342), + [anon_sym_LT_EQ] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5342), + [anon_sym_GT_EQ] = ACTIONS(5340), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_xor] = ACTIONS(5342), + [anon_sym_LT_LT] = ACTIONS(5342), + [anon_sym_GT_GT] = ACTIONS(5340), + [anon_sym_LT_LT_PIPE] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_catch] = ACTIONS(5342), + [anon_sym_TILDE] = ACTIONS(5340), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_DOT] = ACTIONS(5342), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym_true] = ACTIONS(5342), + [anon_sym_false] = ACTIONS(5342), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_unreachable] = ACTIONS(5342), + [anon_sym_undefined] = ACTIONS(5342), + [sym_sink] = ACTIONS(5342), + [sym_integer] = ACTIONS(5342), + [sym_float] = ACTIONS(5340), + [anon_sym_DQUOTE] = ACTIONS(5340), + [sym_multiline_string] = ACTIONS(5340), + [sym_character] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5340), + }, + [STATE(4555)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7242), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4556)] = { + [ts_builtin_sym_end] = ACTIONS(5806), + [sym_identifier] = ACTIONS(5808), + [anon_sym_import] = ACTIONS(5808), + [anon_sym_test] = ACTIONS(5808), + [anon_sym_hide] = ACTIONS(5808), + [anon_sym_func] = ACTIONS(5808), + [anon_sym_BANG] = ACTIONS(5808), + [anon_sym_struct] = ACTIONS(5808), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5806), + [anon_sym_DOLLAR] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5806), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_STAR] = ACTIONS(5806), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_void] = ACTIONS(5808), + [anon_sym_noreturn] = ACTIONS(5808), + [anon_sym_type] = ACTIONS(5808), + [anon_sym_anyopaque] = ACTIONS(5808), + [anon_sym_bool] = ACTIONS(5808), + [anon_sym_int] = ACTIONS(5808), + [anon_sym_uint] = ACTIONS(5808), + [anon_sym_float] = ACTIONS(5808), + [anon_sym_range] = ACTIONS(5808), + [anon_sym_i8] = ACTIONS(5808), + [anon_sym_i16] = ACTIONS(5808), + [anon_sym_i32] = ACTIONS(5808), + [anon_sym_i64] = ACTIONS(5808), + [anon_sym_u8] = ACTIONS(5808), + [anon_sym_u16] = ACTIONS(5808), + [anon_sym_u32] = ACTIONS(5808), + [anon_sym_u64] = ACTIONS(5808), + [anon_sym_isize] = ACTIONS(5808), + [anon_sym_usize] = ACTIONS(5808), + [anon_sym_f32] = ACTIONS(5808), + [anon_sym_f64] = ACTIONS(5808), + [anon_sym_c_char] = ACTIONS(5808), + [anon_sym_c_schar] = ACTIONS(5808), + [anon_sym_c_uchar] = ACTIONS(5808), + [anon_sym_c_short] = ACTIONS(5808), + [anon_sym_c_ushort] = ACTIONS(5808), + [anon_sym_c_int] = ACTIONS(5808), + [anon_sym_c_uint] = ACTIONS(5808), + [anon_sym_c_long] = ACTIONS(5808), + [anon_sym_c_ulong] = ACTIONS(5808), + [anon_sym_c_longlong] = ACTIONS(5808), + [anon_sym_c_ulonglong] = ACTIONS(5808), + [anon_sym_c_float] = ACTIONS(5808), + [anon_sym_c_double] = ACTIONS(5808), + [anon_sym_c_longdouble] = ACTIONS(5808), + [anon_sym_return] = ACTIONS(5808), + [anon_sym_yield] = ACTIONS(5808), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym_break] = ACTIONS(5808), + [anon_sym_continue] = ACTIONS(5808), + [anon_sym_defer] = ACTIONS(5808), + [anon_sym_errdefer] = ACTIONS(5808), + [anon_sym_if] = ACTIONS(5808), + [anon_sym_else] = ACTIONS(5808), + [anon_sym_while] = ACTIONS(5808), + [anon_sym_expand] = ACTIONS(5808), + [anon_sym_for] = ACTIONS(5808), + [anon_sym_match] = ACTIONS(5808), + [anon_sym_DOT_DOT] = ACTIONS(5808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5806), + [anon_sym_orelse] = ACTIONS(5808), + [anon_sym_or] = ACTIONS(5808), + [anon_sym_and] = ACTIONS(5808), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5808), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_AMP] = ACTIONS(5806), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_LT_LT] = ACTIONS(5808), + [anon_sym_GT_GT] = ACTIONS(5806), + [anon_sym_LT_LT_PIPE] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5806), + [anon_sym_SLASH] = ACTIONS(5806), + [anon_sym_catch] = ACTIONS(5808), + [anon_sym_TILDE] = ACTIONS(5806), + [anon_sym_try] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(5808), + [anon_sym_CARET] = ACTIONS(5806), + [anon_sym_true] = ACTIONS(5808), + [anon_sym_false] = ACTIONS(5808), + [anon_sym_null] = ACTIONS(5808), + [anon_sym_unreachable] = ACTIONS(5808), + [anon_sym_undefined] = ACTIONS(5808), + [sym_sink] = ACTIONS(5808), + [sym_integer] = ACTIONS(5808), + [sym_float] = ACTIONS(5806), + [anon_sym_DQUOTE] = ACTIONS(5806), + [sym_multiline_string] = ACTIONS(5806), + [sym_character] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5806), + }, + [STATE(4557)] = { + [ts_builtin_sym_end] = ACTIONS(6334), + [sym_identifier] = ACTIONS(6336), + [anon_sym_import] = ACTIONS(6336), + [anon_sym_test] = ACTIONS(6336), + [anon_sym_hide] = ACTIONS(6336), + [anon_sym_func] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6336), + [anon_sym_struct] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(6334), + [anon_sym_RBRACE] = ACTIONS(6334), + [anon_sym_DASH] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6334), + [anon_sym_PIPE] = ACTIONS(6334), + [anon_sym_QMARK] = ACTIONS(6334), + [anon_sym_STAR] = ACTIONS(6334), + [anon_sym_LBRACK] = ACTIONS(6334), + [anon_sym_void] = ACTIONS(6336), + [anon_sym_noreturn] = ACTIONS(6336), + [anon_sym_type] = ACTIONS(6336), + [anon_sym_anyopaque] = ACTIONS(6336), + [anon_sym_bool] = ACTIONS(6336), + [anon_sym_int] = ACTIONS(6336), + [anon_sym_uint] = ACTIONS(6336), + [anon_sym_float] = ACTIONS(6336), + [anon_sym_range] = ACTIONS(6336), + [anon_sym_i8] = ACTIONS(6336), + [anon_sym_i16] = ACTIONS(6336), + [anon_sym_i32] = ACTIONS(6336), + [anon_sym_i64] = ACTIONS(6336), + [anon_sym_u8] = ACTIONS(6336), + [anon_sym_u16] = ACTIONS(6336), + [anon_sym_u32] = ACTIONS(6336), + [anon_sym_u64] = ACTIONS(6336), + [anon_sym_isize] = ACTIONS(6336), + [anon_sym_usize] = ACTIONS(6336), + [anon_sym_f32] = ACTIONS(6336), + [anon_sym_f64] = ACTIONS(6336), + [anon_sym_c_char] = ACTIONS(6336), + [anon_sym_c_schar] = ACTIONS(6336), + [anon_sym_c_uchar] = ACTIONS(6336), + [anon_sym_c_short] = ACTIONS(6336), + [anon_sym_c_ushort] = ACTIONS(6336), + [anon_sym_c_int] = ACTIONS(6336), + [anon_sym_c_uint] = ACTIONS(6336), + [anon_sym_c_long] = ACTIONS(6336), + [anon_sym_c_ulong] = ACTIONS(6336), + [anon_sym_c_longlong] = ACTIONS(6336), + [anon_sym_c_ulonglong] = ACTIONS(6336), + [anon_sym_c_float] = ACTIONS(6336), + [anon_sym_c_double] = ACTIONS(6336), + [anon_sym_c_longdouble] = ACTIONS(6336), + [anon_sym_return] = ACTIONS(6336), + [anon_sym_yield] = ACTIONS(6336), + [anon_sym_COLON] = ACTIONS(6334), + [anon_sym_break] = ACTIONS(6336), + [anon_sym_continue] = ACTIONS(6336), + [anon_sym_defer] = ACTIONS(6336), + [anon_sym_errdefer] = ACTIONS(6336), + [anon_sym_if] = ACTIONS(6336), + [anon_sym_else] = ACTIONS(6336), + [anon_sym_while] = ACTIONS(6336), + [anon_sym_expand] = ACTIONS(6336), + [anon_sym_for] = ACTIONS(6336), + [anon_sym_match] = ACTIONS(6336), + [anon_sym_DOT_DOT] = ACTIONS(6336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6334), + [anon_sym_orelse] = ACTIONS(6336), + [anon_sym_or] = ACTIONS(6336), + [anon_sym_and] = ACTIONS(6336), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6334), + [anon_sym_AMP] = ACTIONS(6334), + [anon_sym_xor] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6336), + [anon_sym_GT_GT] = ACTIONS(6334), + [anon_sym_LT_LT_PIPE] = ACTIONS(6334), + [anon_sym_PLUS] = ACTIONS(6334), + [anon_sym_SLASH] = ACTIONS(6334), + [anon_sym_catch] = ACTIONS(6336), + [anon_sym_TILDE] = ACTIONS(6334), + [anon_sym_try] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(6334), + [anon_sym_true] = ACTIONS(6336), + [anon_sym_false] = ACTIONS(6336), + [anon_sym_null] = ACTIONS(6336), + [anon_sym_unreachable] = ACTIONS(6336), + [anon_sym_undefined] = ACTIONS(6336), + [sym_sink] = ACTIONS(6336), + [sym_integer] = ACTIONS(6336), + [sym_float] = ACTIONS(6334), + [anon_sym_DQUOTE] = ACTIONS(6334), + [sym_multiline_string] = ACTIONS(6334), + [sym_character] = ACTIONS(6334), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6334), + }, + [STATE(4558)] = { + [ts_builtin_sym_end] = ACTIONS(6338), + [sym_identifier] = ACTIONS(6340), + [anon_sym_import] = ACTIONS(6340), + [anon_sym_test] = ACTIONS(6340), + [anon_sym_hide] = ACTIONS(6340), + [anon_sym_func] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6340), + [anon_sym_struct] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(6338), + [anon_sym_RBRACE] = ACTIONS(6338), + [anon_sym_DASH] = ACTIONS(6338), + [anon_sym_DOLLAR] = ACTIONS(6338), + [anon_sym_PIPE] = ACTIONS(6338), + [anon_sym_QMARK] = ACTIONS(6338), + [anon_sym_STAR] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(6338), + [anon_sym_void] = ACTIONS(6340), + [anon_sym_noreturn] = ACTIONS(6340), + [anon_sym_type] = ACTIONS(6340), + [anon_sym_anyopaque] = ACTIONS(6340), + [anon_sym_bool] = ACTIONS(6340), + [anon_sym_int] = ACTIONS(6340), + [anon_sym_uint] = ACTIONS(6340), + [anon_sym_float] = ACTIONS(6340), + [anon_sym_range] = ACTIONS(6340), + [anon_sym_i8] = ACTIONS(6340), + [anon_sym_i16] = ACTIONS(6340), + [anon_sym_i32] = ACTIONS(6340), + [anon_sym_i64] = ACTIONS(6340), + [anon_sym_u8] = ACTIONS(6340), + [anon_sym_u16] = ACTIONS(6340), + [anon_sym_u32] = ACTIONS(6340), + [anon_sym_u64] = ACTIONS(6340), + [anon_sym_isize] = ACTIONS(6340), + [anon_sym_usize] = ACTIONS(6340), + [anon_sym_f32] = ACTIONS(6340), + [anon_sym_f64] = ACTIONS(6340), + [anon_sym_c_char] = ACTIONS(6340), + [anon_sym_c_schar] = ACTIONS(6340), + [anon_sym_c_uchar] = ACTIONS(6340), + [anon_sym_c_short] = ACTIONS(6340), + [anon_sym_c_ushort] = ACTIONS(6340), + [anon_sym_c_int] = ACTIONS(6340), + [anon_sym_c_uint] = ACTIONS(6340), + [anon_sym_c_long] = ACTIONS(6340), + [anon_sym_c_ulong] = ACTIONS(6340), + [anon_sym_c_longlong] = ACTIONS(6340), + [anon_sym_c_ulonglong] = ACTIONS(6340), + [anon_sym_c_float] = ACTIONS(6340), + [anon_sym_c_double] = ACTIONS(6340), + [anon_sym_c_longdouble] = ACTIONS(6340), + [anon_sym_return] = ACTIONS(6340), + [anon_sym_yield] = ACTIONS(6340), + [anon_sym_COLON] = ACTIONS(6338), + [anon_sym_break] = ACTIONS(6340), + [anon_sym_continue] = ACTIONS(6340), + [anon_sym_defer] = ACTIONS(6340), + [anon_sym_errdefer] = ACTIONS(6340), + [anon_sym_if] = ACTIONS(6340), + [anon_sym_else] = ACTIONS(6340), + [anon_sym_while] = ACTIONS(6340), + [anon_sym_expand] = ACTIONS(6340), + [anon_sym_for] = ACTIONS(6340), + [anon_sym_match] = ACTIONS(6340), + [anon_sym_DOT_DOT] = ACTIONS(6340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6338), + [anon_sym_orelse] = ACTIONS(6340), + [anon_sym_or] = ACTIONS(6340), + [anon_sym_and] = ACTIONS(6340), + [anon_sym_EQ_EQ] = ACTIONS(6338), + [anon_sym_BANG_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6340), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_GT] = ACTIONS(6340), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_AMP] = ACTIONS(6338), + [anon_sym_xor] = ACTIONS(6340), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6338), + [anon_sym_LT_LT_PIPE] = ACTIONS(6338), + [anon_sym_PLUS] = ACTIONS(6338), + [anon_sym_SLASH] = ACTIONS(6338), + [anon_sym_catch] = ACTIONS(6340), + [anon_sym_TILDE] = ACTIONS(6338), + [anon_sym_try] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6338), + [anon_sym_true] = ACTIONS(6340), + [anon_sym_false] = ACTIONS(6340), + [anon_sym_null] = ACTIONS(6340), + [anon_sym_unreachable] = ACTIONS(6340), + [anon_sym_undefined] = ACTIONS(6340), + [sym_sink] = ACTIONS(6340), + [sym_integer] = ACTIONS(6340), + [sym_float] = ACTIONS(6338), + [anon_sym_DQUOTE] = ACTIONS(6338), + [sym_multiline_string] = ACTIONS(6338), + [sym_character] = ACTIONS(6338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6338), + }, + [STATE(4559)] = { + [ts_builtin_sym_end] = ACTIONS(6342), + [sym_identifier] = ACTIONS(6344), + [anon_sym_import] = ACTIONS(6344), + [anon_sym_test] = ACTIONS(6344), + [anon_sym_hide] = ACTIONS(6344), + [anon_sym_func] = ACTIONS(6344), + [anon_sym_BANG] = ACTIONS(6344), + [anon_sym_struct] = ACTIONS(6344), + [anon_sym_LPAREN] = ACTIONS(6342), + [anon_sym_LBRACE] = ACTIONS(6342), + [anon_sym_RBRACE] = ACTIONS(6342), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_DOLLAR] = ACTIONS(6342), + [anon_sym_PIPE] = ACTIONS(6342), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_STAR] = ACTIONS(6342), + [anon_sym_LBRACK] = ACTIONS(6342), + [anon_sym_void] = ACTIONS(6344), + [anon_sym_noreturn] = ACTIONS(6344), + [anon_sym_type] = ACTIONS(6344), + [anon_sym_anyopaque] = ACTIONS(6344), + [anon_sym_bool] = ACTIONS(6344), + [anon_sym_int] = ACTIONS(6344), + [anon_sym_uint] = ACTIONS(6344), + [anon_sym_float] = ACTIONS(6344), + [anon_sym_range] = ACTIONS(6344), + [anon_sym_i8] = ACTIONS(6344), + [anon_sym_i16] = ACTIONS(6344), + [anon_sym_i32] = ACTIONS(6344), + [anon_sym_i64] = ACTIONS(6344), + [anon_sym_u8] = ACTIONS(6344), + [anon_sym_u16] = ACTIONS(6344), + [anon_sym_u32] = ACTIONS(6344), + [anon_sym_u64] = ACTIONS(6344), + [anon_sym_isize] = ACTIONS(6344), + [anon_sym_usize] = ACTIONS(6344), + [anon_sym_f32] = ACTIONS(6344), + [anon_sym_f64] = ACTIONS(6344), + [anon_sym_c_char] = ACTIONS(6344), + [anon_sym_c_schar] = ACTIONS(6344), + [anon_sym_c_uchar] = ACTIONS(6344), + [anon_sym_c_short] = ACTIONS(6344), + [anon_sym_c_ushort] = ACTIONS(6344), + [anon_sym_c_int] = ACTIONS(6344), + [anon_sym_c_uint] = ACTIONS(6344), + [anon_sym_c_long] = ACTIONS(6344), + [anon_sym_c_ulong] = ACTIONS(6344), + [anon_sym_c_longlong] = ACTIONS(6344), + [anon_sym_c_ulonglong] = ACTIONS(6344), + [anon_sym_c_float] = ACTIONS(6344), + [anon_sym_c_double] = ACTIONS(6344), + [anon_sym_c_longdouble] = ACTIONS(6344), + [anon_sym_return] = ACTIONS(6344), + [anon_sym_yield] = ACTIONS(6344), + [anon_sym_COLON] = ACTIONS(6342), + [anon_sym_break] = ACTIONS(6344), + [anon_sym_continue] = ACTIONS(6344), + [anon_sym_defer] = ACTIONS(6344), + [anon_sym_errdefer] = ACTIONS(6344), + [anon_sym_if] = ACTIONS(6344), + [anon_sym_else] = ACTIONS(6344), + [anon_sym_while] = ACTIONS(6344), + [anon_sym_expand] = ACTIONS(6344), + [anon_sym_for] = ACTIONS(6344), + [anon_sym_match] = ACTIONS(6344), + [anon_sym_DOT_DOT] = ACTIONS(6344), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6342), + [anon_sym_orelse] = ACTIONS(6344), + [anon_sym_or] = ACTIONS(6344), + [anon_sym_and] = ACTIONS(6344), + [anon_sym_EQ_EQ] = ACTIONS(6342), + [anon_sym_BANG_EQ] = ACTIONS(6342), + [anon_sym_LT] = ACTIONS(6344), + [anon_sym_LT_EQ] = ACTIONS(6342), + [anon_sym_GT] = ACTIONS(6344), + [anon_sym_GT_EQ] = ACTIONS(6342), + [anon_sym_AMP] = ACTIONS(6342), + [anon_sym_xor] = ACTIONS(6344), + [anon_sym_LT_LT] = ACTIONS(6344), + [anon_sym_GT_GT] = ACTIONS(6342), + [anon_sym_LT_LT_PIPE] = ACTIONS(6342), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_SLASH] = ACTIONS(6342), + [anon_sym_catch] = ACTIONS(6344), + [anon_sym_TILDE] = ACTIONS(6342), + [anon_sym_try] = ACTIONS(6344), + [anon_sym_DOT] = ACTIONS(6344), + [anon_sym_CARET] = ACTIONS(6342), + [anon_sym_true] = ACTIONS(6344), + [anon_sym_false] = ACTIONS(6344), + [anon_sym_null] = ACTIONS(6344), + [anon_sym_unreachable] = ACTIONS(6344), + [anon_sym_undefined] = ACTIONS(6344), + [sym_sink] = ACTIONS(6344), + [sym_integer] = ACTIONS(6344), + [sym_float] = ACTIONS(6342), + [anon_sym_DQUOTE] = ACTIONS(6342), + [sym_multiline_string] = ACTIONS(6342), + [sym_character] = ACTIONS(6342), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6342), + }, + [STATE(4560)] = { + [ts_builtin_sym_end] = ACTIONS(6346), + [sym_identifier] = ACTIONS(6348), + [anon_sym_import] = ACTIONS(6348), + [anon_sym_test] = ACTIONS(6348), + [anon_sym_hide] = ACTIONS(6348), + [anon_sym_func] = ACTIONS(6348), + [anon_sym_BANG] = ACTIONS(6348), + [anon_sym_struct] = ACTIONS(6348), + [anon_sym_LPAREN] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(6346), + [anon_sym_RBRACE] = ACTIONS(6346), + [anon_sym_DASH] = ACTIONS(6346), + [anon_sym_DOLLAR] = ACTIONS(6346), + [anon_sym_PIPE] = ACTIONS(6346), + [anon_sym_QMARK] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(6346), + [anon_sym_void] = ACTIONS(6348), + [anon_sym_noreturn] = ACTIONS(6348), + [anon_sym_type] = ACTIONS(6348), + [anon_sym_anyopaque] = ACTIONS(6348), + [anon_sym_bool] = ACTIONS(6348), + [anon_sym_int] = ACTIONS(6348), + [anon_sym_uint] = ACTIONS(6348), + [anon_sym_float] = ACTIONS(6348), + [anon_sym_range] = ACTIONS(6348), + [anon_sym_i8] = ACTIONS(6348), + [anon_sym_i16] = ACTIONS(6348), + [anon_sym_i32] = ACTIONS(6348), + [anon_sym_i64] = ACTIONS(6348), + [anon_sym_u8] = ACTIONS(6348), + [anon_sym_u16] = ACTIONS(6348), + [anon_sym_u32] = ACTIONS(6348), + [anon_sym_u64] = ACTIONS(6348), + [anon_sym_isize] = ACTIONS(6348), + [anon_sym_usize] = ACTIONS(6348), + [anon_sym_f32] = ACTIONS(6348), + [anon_sym_f64] = ACTIONS(6348), + [anon_sym_c_char] = ACTIONS(6348), + [anon_sym_c_schar] = ACTIONS(6348), + [anon_sym_c_uchar] = ACTIONS(6348), + [anon_sym_c_short] = ACTIONS(6348), + [anon_sym_c_ushort] = ACTIONS(6348), + [anon_sym_c_int] = ACTIONS(6348), + [anon_sym_c_uint] = ACTIONS(6348), + [anon_sym_c_long] = ACTIONS(6348), + [anon_sym_c_ulong] = ACTIONS(6348), + [anon_sym_c_longlong] = ACTIONS(6348), + [anon_sym_c_ulonglong] = ACTIONS(6348), + [anon_sym_c_float] = ACTIONS(6348), + [anon_sym_c_double] = ACTIONS(6348), + [anon_sym_c_longdouble] = ACTIONS(6348), + [anon_sym_return] = ACTIONS(6348), + [anon_sym_yield] = ACTIONS(6348), + [anon_sym_COLON] = ACTIONS(6346), + [anon_sym_break] = ACTIONS(6348), + [anon_sym_continue] = ACTIONS(6348), + [anon_sym_defer] = ACTIONS(6348), + [anon_sym_errdefer] = ACTIONS(6348), + [anon_sym_if] = ACTIONS(6348), + [anon_sym_else] = ACTIONS(6348), + [anon_sym_while] = ACTIONS(6348), + [anon_sym_expand] = ACTIONS(6348), + [anon_sym_for] = ACTIONS(6348), + [anon_sym_match] = ACTIONS(6348), + [anon_sym_DOT_DOT] = ACTIONS(6348), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6346), + [anon_sym_orelse] = ACTIONS(6348), + [anon_sym_or] = ACTIONS(6348), + [anon_sym_and] = ACTIONS(6348), + [anon_sym_EQ_EQ] = ACTIONS(6346), + [anon_sym_BANG_EQ] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6348), + [anon_sym_LT_EQ] = ACTIONS(6346), + [anon_sym_GT] = ACTIONS(6348), + [anon_sym_GT_EQ] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6346), + [anon_sym_xor] = ACTIONS(6348), + [anon_sym_LT_LT] = ACTIONS(6348), + [anon_sym_GT_GT] = ACTIONS(6346), + [anon_sym_LT_LT_PIPE] = ACTIONS(6346), + [anon_sym_PLUS] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6346), + [anon_sym_catch] = ACTIONS(6348), + [anon_sym_TILDE] = ACTIONS(6346), + [anon_sym_try] = ACTIONS(6348), + [anon_sym_DOT] = ACTIONS(6348), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_true] = ACTIONS(6348), + [anon_sym_false] = ACTIONS(6348), + [anon_sym_null] = ACTIONS(6348), + [anon_sym_unreachable] = ACTIONS(6348), + [anon_sym_undefined] = ACTIONS(6348), + [sym_sink] = ACTIONS(6348), + [sym_integer] = ACTIONS(6348), + [sym_float] = ACTIONS(6346), + [anon_sym_DQUOTE] = ACTIONS(6346), + [sym_multiline_string] = ACTIONS(6346), + [sym_character] = ACTIONS(6346), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6346), + }, + [STATE(4561)] = { + [ts_builtin_sym_end] = ACTIONS(5222), + [sym_identifier] = ACTIONS(5224), + [anon_sym_import] = ACTIONS(5224), + [anon_sym_test] = ACTIONS(5224), + [anon_sym_hide] = ACTIONS(5224), + [anon_sym_func] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_struct] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_void] = ACTIONS(5224), + [anon_sym_noreturn] = ACTIONS(5224), + [anon_sym_type] = ACTIONS(5224), + [anon_sym_anyopaque] = ACTIONS(5224), + [anon_sym_bool] = ACTIONS(5224), + [anon_sym_int] = ACTIONS(5224), + [anon_sym_uint] = ACTIONS(5224), + [anon_sym_float] = ACTIONS(5224), + [anon_sym_range] = ACTIONS(5224), + [anon_sym_i8] = ACTIONS(5224), + [anon_sym_i16] = ACTIONS(5224), + [anon_sym_i32] = ACTIONS(5224), + [anon_sym_i64] = ACTIONS(5224), + [anon_sym_u8] = ACTIONS(5224), + [anon_sym_u16] = ACTIONS(5224), + [anon_sym_u32] = ACTIONS(5224), + [anon_sym_u64] = ACTIONS(5224), + [anon_sym_isize] = ACTIONS(5224), + [anon_sym_usize] = ACTIONS(5224), + [anon_sym_f32] = ACTIONS(5224), + [anon_sym_f64] = ACTIONS(5224), + [anon_sym_c_char] = ACTIONS(5224), + [anon_sym_c_schar] = ACTIONS(5224), + [anon_sym_c_uchar] = ACTIONS(5224), + [anon_sym_c_short] = ACTIONS(5224), + [anon_sym_c_ushort] = ACTIONS(5224), + [anon_sym_c_int] = ACTIONS(5224), + [anon_sym_c_uint] = ACTIONS(5224), + [anon_sym_c_long] = ACTIONS(5224), + [anon_sym_c_ulong] = ACTIONS(5224), + [anon_sym_c_longlong] = ACTIONS(5224), + [anon_sym_c_ulonglong] = ACTIONS(5224), + [anon_sym_c_float] = ACTIONS(5224), + [anon_sym_c_double] = ACTIONS(5224), + [anon_sym_c_longdouble] = ACTIONS(5224), + [anon_sym_return] = ACTIONS(5224), + [anon_sym_yield] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5222), + [anon_sym_break] = ACTIONS(5224), + [anon_sym_continue] = ACTIONS(5224), + [anon_sym_defer] = ACTIONS(5224), + [anon_sym_errdefer] = ACTIONS(5224), + [anon_sym_if] = ACTIONS(5224), + [anon_sym_else] = ACTIONS(5224), + [anon_sym_while] = ACTIONS(5224), + [anon_sym_expand] = ACTIONS(5224), + [anon_sym_for] = ACTIONS(5224), + [anon_sym_match] = ACTIONS(5224), + [anon_sym_DOT_DOT] = ACTIONS(5224), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5222), + [anon_sym_orelse] = ACTIONS(5224), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_and] = ACTIONS(5224), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_xor] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5224), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_LT_LT_PIPE] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_catch] = ACTIONS(5224), + [anon_sym_TILDE] = ACTIONS(5222), + [anon_sym_try] = ACTIONS(5224), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_true] = ACTIONS(5224), + [anon_sym_false] = ACTIONS(5224), + [anon_sym_null] = ACTIONS(5224), + [anon_sym_unreachable] = ACTIONS(5224), + [anon_sym_undefined] = ACTIONS(5224), + [sym_sink] = ACTIONS(5224), + [sym_integer] = ACTIONS(5224), + [sym_float] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [sym_multiline_string] = ACTIONS(5222), + [sym_character] = ACTIONS(5222), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5222), + }, + [STATE(4562)] = { + [ts_builtin_sym_end] = ACTIONS(6058), + [sym_identifier] = ACTIONS(6060), + [anon_sym_import] = ACTIONS(6060), + [anon_sym_test] = ACTIONS(6060), + [anon_sym_hide] = ACTIONS(6060), + [anon_sym_func] = ACTIONS(6060), + [anon_sym_BANG] = ACTIONS(6060), + [anon_sym_struct] = ACTIONS(6060), + [anon_sym_LPAREN] = ACTIONS(6058), + [anon_sym_LBRACE] = ACTIONS(6058), + [anon_sym_RBRACE] = ACTIONS(6058), + [anon_sym_DASH] = ACTIONS(6058), + [anon_sym_DOLLAR] = ACTIONS(6058), + [anon_sym_PIPE] = ACTIONS(6058), + [anon_sym_QMARK] = ACTIONS(6058), + [anon_sym_STAR] = ACTIONS(6058), + [anon_sym_LBRACK] = ACTIONS(6058), + [anon_sym_void] = ACTIONS(6060), + [anon_sym_noreturn] = ACTIONS(6060), + [anon_sym_type] = ACTIONS(6060), + [anon_sym_anyopaque] = ACTIONS(6060), + [anon_sym_bool] = ACTIONS(6060), + [anon_sym_int] = ACTIONS(6060), + [anon_sym_uint] = ACTIONS(6060), + [anon_sym_float] = ACTIONS(6060), + [anon_sym_range] = ACTIONS(6060), + [anon_sym_i8] = ACTIONS(6060), + [anon_sym_i16] = ACTIONS(6060), + [anon_sym_i32] = ACTIONS(6060), + [anon_sym_i64] = ACTIONS(6060), + [anon_sym_u8] = ACTIONS(6060), + [anon_sym_u16] = ACTIONS(6060), + [anon_sym_u32] = ACTIONS(6060), + [anon_sym_u64] = ACTIONS(6060), + [anon_sym_isize] = ACTIONS(6060), + [anon_sym_usize] = ACTIONS(6060), + [anon_sym_f32] = ACTIONS(6060), + [anon_sym_f64] = ACTIONS(6060), + [anon_sym_c_char] = ACTIONS(6060), + [anon_sym_c_schar] = ACTIONS(6060), + [anon_sym_c_uchar] = ACTIONS(6060), + [anon_sym_c_short] = ACTIONS(6060), + [anon_sym_c_ushort] = ACTIONS(6060), + [anon_sym_c_int] = ACTIONS(6060), + [anon_sym_c_uint] = ACTIONS(6060), + [anon_sym_c_long] = ACTIONS(6060), + [anon_sym_c_ulong] = ACTIONS(6060), + [anon_sym_c_longlong] = ACTIONS(6060), + [anon_sym_c_ulonglong] = ACTIONS(6060), + [anon_sym_c_float] = ACTIONS(6060), + [anon_sym_c_double] = ACTIONS(6060), + [anon_sym_c_longdouble] = ACTIONS(6060), + [anon_sym_return] = ACTIONS(6060), + [anon_sym_yield] = ACTIONS(6060), + [anon_sym_COLON] = ACTIONS(6058), + [anon_sym_break] = ACTIONS(6060), + [anon_sym_continue] = ACTIONS(6060), + [anon_sym_defer] = ACTIONS(6060), + [anon_sym_errdefer] = ACTIONS(6060), + [anon_sym_if] = ACTIONS(6060), + [anon_sym_else] = ACTIONS(6060), + [anon_sym_while] = ACTIONS(6060), + [anon_sym_expand] = ACTIONS(6060), + [anon_sym_for] = ACTIONS(6060), + [anon_sym_match] = ACTIONS(6060), + [anon_sym_DOT_DOT] = ACTIONS(6060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6058), + [anon_sym_orelse] = ACTIONS(6060), + [anon_sym_or] = ACTIONS(6060), + [anon_sym_and] = ACTIONS(6060), + [anon_sym_EQ_EQ] = ACTIONS(6058), + [anon_sym_BANG_EQ] = ACTIONS(6058), + [anon_sym_LT] = ACTIONS(6060), + [anon_sym_LT_EQ] = ACTIONS(6058), + [anon_sym_GT] = ACTIONS(6060), + [anon_sym_GT_EQ] = ACTIONS(6058), + [anon_sym_AMP] = ACTIONS(6058), + [anon_sym_xor] = ACTIONS(6060), + [anon_sym_LT_LT] = ACTIONS(6060), + [anon_sym_GT_GT] = ACTIONS(6058), + [anon_sym_LT_LT_PIPE] = ACTIONS(6058), + [anon_sym_PLUS] = ACTIONS(6058), + [anon_sym_SLASH] = ACTIONS(6058), + [anon_sym_catch] = ACTIONS(6060), + [anon_sym_TILDE] = ACTIONS(6058), + [anon_sym_try] = ACTIONS(6060), + [anon_sym_DOT] = ACTIONS(6060), + [anon_sym_CARET] = ACTIONS(6058), + [anon_sym_true] = ACTIONS(6060), + [anon_sym_false] = ACTIONS(6060), + [anon_sym_null] = ACTIONS(6060), + [anon_sym_unreachable] = ACTIONS(6060), + [anon_sym_undefined] = ACTIONS(6060), + [sym_sink] = ACTIONS(6060), + [sym_integer] = ACTIONS(6060), + [sym_float] = ACTIONS(6058), + [anon_sym_DQUOTE] = ACTIONS(6058), + [sym_multiline_string] = ACTIONS(6058), + [sym_character] = ACTIONS(6058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6058), + }, + [STATE(4563)] = { + [ts_builtin_sym_end] = ACTIONS(5344), + [sym_identifier] = ACTIONS(5346), + [anon_sym_import] = ACTIONS(5346), + [anon_sym_test] = ACTIONS(5346), + [anon_sym_hide] = ACTIONS(5346), + [anon_sym_func] = ACTIONS(5346), + [anon_sym_BANG] = ACTIONS(5346), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_LPAREN] = ACTIONS(5344), + [anon_sym_LBRACE] = ACTIONS(5344), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_QMARK] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_LBRACK] = ACTIONS(5344), + [anon_sym_void] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_type] = ACTIONS(5346), + [anon_sym_anyopaque] = ACTIONS(5346), + [anon_sym_bool] = ACTIONS(5346), + [anon_sym_int] = ACTIONS(5346), + [anon_sym_uint] = ACTIONS(5346), + [anon_sym_float] = ACTIONS(5346), + [anon_sym_range] = ACTIONS(5346), + [anon_sym_i8] = ACTIONS(5346), + [anon_sym_i16] = ACTIONS(5346), + [anon_sym_i32] = ACTIONS(5346), + [anon_sym_i64] = ACTIONS(5346), + [anon_sym_u8] = ACTIONS(5346), + [anon_sym_u16] = ACTIONS(5346), + [anon_sym_u32] = ACTIONS(5346), + [anon_sym_u64] = ACTIONS(5346), + [anon_sym_isize] = ACTIONS(5346), + [anon_sym_usize] = ACTIONS(5346), + [anon_sym_f32] = ACTIONS(5346), + [anon_sym_f64] = ACTIONS(5346), + [anon_sym_c_char] = ACTIONS(5346), + [anon_sym_c_schar] = ACTIONS(5346), + [anon_sym_c_uchar] = ACTIONS(5346), + [anon_sym_c_short] = ACTIONS(5346), + [anon_sym_c_ushort] = ACTIONS(5346), + [anon_sym_c_int] = ACTIONS(5346), + [anon_sym_c_uint] = ACTIONS(5346), + [anon_sym_c_long] = ACTIONS(5346), + [anon_sym_c_ulong] = ACTIONS(5346), + [anon_sym_c_longlong] = ACTIONS(5346), + [anon_sym_c_ulonglong] = ACTIONS(5346), + [anon_sym_c_float] = ACTIONS(5346), + [anon_sym_c_double] = ACTIONS(5346), + [anon_sym_c_longdouble] = ACTIONS(5346), + [anon_sym_return] = ACTIONS(5346), + [anon_sym_yield] = ACTIONS(5346), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_break] = ACTIONS(5346), + [anon_sym_continue] = ACTIONS(5346), + [anon_sym_defer] = ACTIONS(5346), + [anon_sym_errdefer] = ACTIONS(5346), + [anon_sym_if] = ACTIONS(5346), + [anon_sym_else] = ACTIONS(5346), + [anon_sym_while] = ACTIONS(5346), + [anon_sym_expand] = ACTIONS(5346), + [anon_sym_for] = ACTIONS(5346), + [anon_sym_match] = ACTIONS(5346), + [anon_sym_DOT_DOT] = ACTIONS(5346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5344), + [anon_sym_orelse] = ACTIONS(5346), + [anon_sym_or] = ACTIONS(5346), + [anon_sym_and] = ACTIONS(5346), + [anon_sym_EQ_EQ] = ACTIONS(5344), + [anon_sym_BANG_EQ] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5346), + [anon_sym_LT_EQ] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5346), + [anon_sym_GT_EQ] = ACTIONS(5344), + [anon_sym_AMP] = ACTIONS(5344), + [anon_sym_xor] = ACTIONS(5346), + [anon_sym_LT_LT] = ACTIONS(5346), + [anon_sym_GT_GT] = ACTIONS(5344), + [anon_sym_LT_LT_PIPE] = ACTIONS(5344), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_catch] = ACTIONS(5346), + [anon_sym_TILDE] = ACTIONS(5344), + [anon_sym_try] = ACTIONS(5346), + [anon_sym_DOT] = ACTIONS(5346), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym_true] = ACTIONS(5346), + [anon_sym_false] = ACTIONS(5346), + [anon_sym_null] = ACTIONS(5346), + [anon_sym_unreachable] = ACTIONS(5346), + [anon_sym_undefined] = ACTIONS(5346), + [sym_sink] = ACTIONS(5346), + [sym_integer] = ACTIONS(5346), + [sym_float] = ACTIONS(5344), + [anon_sym_DQUOTE] = ACTIONS(5344), + [sym_multiline_string] = ACTIONS(5344), + [sym_character] = ACTIONS(5344), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5344), + }, + [STATE(4564)] = { + [ts_builtin_sym_end] = ACTIONS(5226), + [sym_identifier] = ACTIONS(5228), + [anon_sym_import] = ACTIONS(5228), + [anon_sym_test] = ACTIONS(5228), + [anon_sym_hide] = ACTIONS(5228), + [anon_sym_func] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_struct] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_void] = ACTIONS(5228), + [anon_sym_noreturn] = ACTIONS(5228), + [anon_sym_type] = ACTIONS(5228), + [anon_sym_anyopaque] = ACTIONS(5228), + [anon_sym_bool] = ACTIONS(5228), + [anon_sym_int] = ACTIONS(5228), + [anon_sym_uint] = ACTIONS(5228), + [anon_sym_float] = ACTIONS(5228), + [anon_sym_range] = ACTIONS(5228), + [anon_sym_i8] = ACTIONS(5228), + [anon_sym_i16] = ACTIONS(5228), + [anon_sym_i32] = ACTIONS(5228), + [anon_sym_i64] = ACTIONS(5228), + [anon_sym_u8] = ACTIONS(5228), + [anon_sym_u16] = ACTIONS(5228), + [anon_sym_u32] = ACTIONS(5228), + [anon_sym_u64] = ACTIONS(5228), + [anon_sym_isize] = ACTIONS(5228), + [anon_sym_usize] = ACTIONS(5228), + [anon_sym_f32] = ACTIONS(5228), + [anon_sym_f64] = ACTIONS(5228), + [anon_sym_c_char] = ACTIONS(5228), + [anon_sym_c_schar] = ACTIONS(5228), + [anon_sym_c_uchar] = ACTIONS(5228), + [anon_sym_c_short] = ACTIONS(5228), + [anon_sym_c_ushort] = ACTIONS(5228), + [anon_sym_c_int] = ACTIONS(5228), + [anon_sym_c_uint] = ACTIONS(5228), + [anon_sym_c_long] = ACTIONS(5228), + [anon_sym_c_ulong] = ACTIONS(5228), + [anon_sym_c_longlong] = ACTIONS(5228), + [anon_sym_c_ulonglong] = ACTIONS(5228), + [anon_sym_c_float] = ACTIONS(5228), + [anon_sym_c_double] = ACTIONS(5228), + [anon_sym_c_longdouble] = ACTIONS(5228), + [anon_sym_return] = ACTIONS(5228), + [anon_sym_yield] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5226), + [anon_sym_break] = ACTIONS(5228), + [anon_sym_continue] = ACTIONS(5228), + [anon_sym_defer] = ACTIONS(5228), + [anon_sym_errdefer] = ACTIONS(5228), + [anon_sym_if] = ACTIONS(5228), + [anon_sym_else] = ACTIONS(5228), + [anon_sym_while] = ACTIONS(5228), + [anon_sym_expand] = ACTIONS(5228), + [anon_sym_for] = ACTIONS(5228), + [anon_sym_match] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5226), + [anon_sym_orelse] = ACTIONS(5228), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_and] = ACTIONS(5228), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5226), + [anon_sym_xor] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5226), + [anon_sym_LT_LT_PIPE] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_SLASH] = ACTIONS(5226), + [anon_sym_catch] = ACTIONS(5228), + [anon_sym_TILDE] = ACTIONS(5226), + [anon_sym_try] = ACTIONS(5228), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_true] = ACTIONS(5228), + [anon_sym_false] = ACTIONS(5228), + [anon_sym_null] = ACTIONS(5228), + [anon_sym_unreachable] = ACTIONS(5228), + [anon_sym_undefined] = ACTIONS(5228), + [sym_sink] = ACTIONS(5228), + [sym_integer] = ACTIONS(5228), + [sym_float] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [sym_multiline_string] = ACTIONS(5226), + [sym_character] = ACTIONS(5226), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5226), + }, + [STATE(4565)] = { + [ts_builtin_sym_end] = ACTIONS(5348), + [sym_identifier] = ACTIONS(5350), + [anon_sym_import] = ACTIONS(5350), + [anon_sym_test] = ACTIONS(5350), + [anon_sym_hide] = ACTIONS(5350), + [anon_sym_func] = ACTIONS(5350), + [anon_sym_BANG] = ACTIONS(5350), + [anon_sym_struct] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5348), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_void] = ACTIONS(5350), + [anon_sym_noreturn] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_anyopaque] = ACTIONS(5350), + [anon_sym_bool] = ACTIONS(5350), + [anon_sym_int] = ACTIONS(5350), + [anon_sym_uint] = ACTIONS(5350), + [anon_sym_float] = ACTIONS(5350), + [anon_sym_range] = ACTIONS(5350), + [anon_sym_i8] = ACTIONS(5350), + [anon_sym_i16] = ACTIONS(5350), + [anon_sym_i32] = ACTIONS(5350), + [anon_sym_i64] = ACTIONS(5350), + [anon_sym_u8] = ACTIONS(5350), + [anon_sym_u16] = ACTIONS(5350), + [anon_sym_u32] = ACTIONS(5350), + [anon_sym_u64] = ACTIONS(5350), + [anon_sym_isize] = ACTIONS(5350), + [anon_sym_usize] = ACTIONS(5350), + [anon_sym_f32] = ACTIONS(5350), + [anon_sym_f64] = ACTIONS(5350), + [anon_sym_c_char] = ACTIONS(5350), + [anon_sym_c_schar] = ACTIONS(5350), + [anon_sym_c_uchar] = ACTIONS(5350), + [anon_sym_c_short] = ACTIONS(5350), + [anon_sym_c_ushort] = ACTIONS(5350), + [anon_sym_c_int] = ACTIONS(5350), + [anon_sym_c_uint] = ACTIONS(5350), + [anon_sym_c_long] = ACTIONS(5350), + [anon_sym_c_ulong] = ACTIONS(5350), + [anon_sym_c_longlong] = ACTIONS(5350), + [anon_sym_c_ulonglong] = ACTIONS(5350), + [anon_sym_c_float] = ACTIONS(5350), + [anon_sym_c_double] = ACTIONS(5350), + [anon_sym_c_longdouble] = ACTIONS(5350), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_break] = ACTIONS(5350), + [anon_sym_continue] = ACTIONS(5350), + [anon_sym_defer] = ACTIONS(5350), + [anon_sym_errdefer] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_else] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_expand] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_DOT_DOT] = ACTIONS(5350), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5348), + [anon_sym_orelse] = ACTIONS(5350), + [anon_sym_or] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5348), + [anon_sym_xor] = ACTIONS(5350), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5348), + [anon_sym_LT_LT_PIPE] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_catch] = ACTIONS(5350), + [anon_sym_TILDE] = ACTIONS(5348), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_true] = ACTIONS(5350), + [anon_sym_false] = ACTIONS(5350), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_unreachable] = ACTIONS(5350), + [anon_sym_undefined] = ACTIONS(5350), + [sym_sink] = ACTIONS(5350), + [sym_integer] = ACTIONS(5350), + [sym_float] = ACTIONS(5348), + [anon_sym_DQUOTE] = ACTIONS(5348), + [sym_multiline_string] = ACTIONS(5348), + [sym_character] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5348), + }, + [STATE(4566)] = { + [ts_builtin_sym_end] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5354), + [anon_sym_import] = ACTIONS(5354), + [anon_sym_test] = ACTIONS(5354), + [anon_sym_hide] = ACTIONS(5354), + [anon_sym_func] = ACTIONS(5354), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5352), + [anon_sym_LBRACE] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_void] = ACTIONS(5354), + [anon_sym_noreturn] = ACTIONS(5354), + [anon_sym_type] = ACTIONS(5354), + [anon_sym_anyopaque] = ACTIONS(5354), + [anon_sym_bool] = ACTIONS(5354), + [anon_sym_int] = ACTIONS(5354), + [anon_sym_uint] = ACTIONS(5354), + [anon_sym_float] = ACTIONS(5354), + [anon_sym_range] = ACTIONS(5354), + [anon_sym_i8] = ACTIONS(5354), + [anon_sym_i16] = ACTIONS(5354), + [anon_sym_i32] = ACTIONS(5354), + [anon_sym_i64] = ACTIONS(5354), + [anon_sym_u8] = ACTIONS(5354), + [anon_sym_u16] = ACTIONS(5354), + [anon_sym_u32] = ACTIONS(5354), + [anon_sym_u64] = ACTIONS(5354), + [anon_sym_isize] = ACTIONS(5354), + [anon_sym_usize] = ACTIONS(5354), + [anon_sym_f32] = ACTIONS(5354), + [anon_sym_f64] = ACTIONS(5354), + [anon_sym_c_char] = ACTIONS(5354), + [anon_sym_c_schar] = ACTIONS(5354), + [anon_sym_c_uchar] = ACTIONS(5354), + [anon_sym_c_short] = ACTIONS(5354), + [anon_sym_c_ushort] = ACTIONS(5354), + [anon_sym_c_int] = ACTIONS(5354), + [anon_sym_c_uint] = ACTIONS(5354), + [anon_sym_c_long] = ACTIONS(5354), + [anon_sym_c_ulong] = ACTIONS(5354), + [anon_sym_c_longlong] = ACTIONS(5354), + [anon_sym_c_ulonglong] = ACTIONS(5354), + [anon_sym_c_float] = ACTIONS(5354), + [anon_sym_c_double] = ACTIONS(5354), + [anon_sym_c_longdouble] = ACTIONS(5354), + [anon_sym_return] = ACTIONS(5354), + [anon_sym_yield] = ACTIONS(5354), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5354), + [anon_sym_continue] = ACTIONS(5354), + [anon_sym_defer] = ACTIONS(5354), + [anon_sym_errdefer] = ACTIONS(5354), + [anon_sym_if] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5354), + [anon_sym_expand] = ACTIONS(5354), + [anon_sym_for] = ACTIONS(5354), + [anon_sym_match] = ACTIONS(5354), + [anon_sym_DOT_DOT] = ACTIONS(5354), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5352), + [anon_sym_orelse] = ACTIONS(5354), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_and] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_xor] = ACTIONS(5354), + [anon_sym_LT_LT] = ACTIONS(5354), + [anon_sym_GT_GT] = ACTIONS(5352), + [anon_sym_LT_LT_PIPE] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(5354), + [anon_sym_TILDE] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym_true] = ACTIONS(5354), + [anon_sym_false] = ACTIONS(5354), + [anon_sym_null] = ACTIONS(5354), + [anon_sym_unreachable] = ACTIONS(5354), + [anon_sym_undefined] = ACTIONS(5354), + [sym_sink] = ACTIONS(5354), + [sym_integer] = ACTIONS(5354), + [sym_float] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5352), + [sym_multiline_string] = ACTIONS(5352), + [sym_character] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5352), + }, + [STATE(4567)] = { + [ts_builtin_sym_end] = ACTIONS(6016), + [sym_identifier] = ACTIONS(6018), + [anon_sym_import] = ACTIONS(6018), + [anon_sym_test] = ACTIONS(6018), + [anon_sym_hide] = ACTIONS(6018), + [anon_sym_func] = ACTIONS(6018), + [anon_sym_BANG] = ACTIONS(6018), + [anon_sym_struct] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACE] = ACTIONS(6016), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6016), + [anon_sym_DOLLAR] = ACTIONS(6016), + [anon_sym_PIPE] = ACTIONS(6016), + [anon_sym_QMARK] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_void] = ACTIONS(6018), + [anon_sym_noreturn] = ACTIONS(6018), + [anon_sym_type] = ACTIONS(6018), + [anon_sym_anyopaque] = ACTIONS(6018), + [anon_sym_bool] = ACTIONS(6018), + [anon_sym_int] = ACTIONS(6018), + [anon_sym_uint] = ACTIONS(6018), + [anon_sym_float] = ACTIONS(6018), + [anon_sym_range] = ACTIONS(6018), + [anon_sym_i8] = ACTIONS(6018), + [anon_sym_i16] = ACTIONS(6018), + [anon_sym_i32] = ACTIONS(6018), + [anon_sym_i64] = ACTIONS(6018), + [anon_sym_u8] = ACTIONS(6018), + [anon_sym_u16] = ACTIONS(6018), + [anon_sym_u32] = ACTIONS(6018), + [anon_sym_u64] = ACTIONS(6018), + [anon_sym_isize] = ACTIONS(6018), + [anon_sym_usize] = ACTIONS(6018), + [anon_sym_f32] = ACTIONS(6018), + [anon_sym_f64] = ACTIONS(6018), + [anon_sym_c_char] = ACTIONS(6018), + [anon_sym_c_schar] = ACTIONS(6018), + [anon_sym_c_uchar] = ACTIONS(6018), + [anon_sym_c_short] = ACTIONS(6018), + [anon_sym_c_ushort] = ACTIONS(6018), + [anon_sym_c_int] = ACTIONS(6018), + [anon_sym_c_uint] = ACTIONS(6018), + [anon_sym_c_long] = ACTIONS(6018), + [anon_sym_c_ulong] = ACTIONS(6018), + [anon_sym_c_longlong] = ACTIONS(6018), + [anon_sym_c_ulonglong] = ACTIONS(6018), + [anon_sym_c_float] = ACTIONS(6018), + [anon_sym_c_double] = ACTIONS(6018), + [anon_sym_c_longdouble] = ACTIONS(6018), + [anon_sym_return] = ACTIONS(6018), + [anon_sym_yield] = ACTIONS(6018), + [anon_sym_COLON] = ACTIONS(6016), + [anon_sym_break] = ACTIONS(6018), + [anon_sym_continue] = ACTIONS(6018), + [anon_sym_defer] = ACTIONS(6018), + [anon_sym_errdefer] = ACTIONS(6018), + [anon_sym_if] = ACTIONS(6018), + [anon_sym_else] = ACTIONS(6018), + [anon_sym_while] = ACTIONS(6018), + [anon_sym_expand] = ACTIONS(6018), + [anon_sym_for] = ACTIONS(6018), + [anon_sym_match] = ACTIONS(6018), + [anon_sym_DOT_DOT] = ACTIONS(6018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6016), + [anon_sym_orelse] = ACTIONS(6018), + [anon_sym_or] = ACTIONS(6018), + [anon_sym_and] = ACTIONS(6018), + [anon_sym_EQ_EQ] = ACTIONS(6016), + [anon_sym_BANG_EQ] = ACTIONS(6016), + [anon_sym_LT] = ACTIONS(6018), + [anon_sym_LT_EQ] = ACTIONS(6016), + [anon_sym_GT] = ACTIONS(6018), + [anon_sym_GT_EQ] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_xor] = ACTIONS(6018), + [anon_sym_LT_LT] = ACTIONS(6018), + [anon_sym_GT_GT] = ACTIONS(6016), + [anon_sym_LT_LT_PIPE] = ACTIONS(6016), + [anon_sym_PLUS] = ACTIONS(6016), + [anon_sym_SLASH] = ACTIONS(6016), + [anon_sym_catch] = ACTIONS(6018), + [anon_sym_TILDE] = ACTIONS(6016), + [anon_sym_try] = ACTIONS(6018), + [anon_sym_DOT] = ACTIONS(6018), + [anon_sym_CARET] = ACTIONS(6016), + [anon_sym_true] = ACTIONS(6018), + [anon_sym_false] = ACTIONS(6018), + [anon_sym_null] = ACTIONS(6018), + [anon_sym_unreachable] = ACTIONS(6018), + [anon_sym_undefined] = ACTIONS(6018), + [sym_sink] = ACTIONS(6018), + [sym_integer] = ACTIONS(6018), + [sym_float] = ACTIONS(6016), + [anon_sym_DQUOTE] = ACTIONS(6016), + [sym_multiline_string] = ACTIONS(6016), + [sym_character] = ACTIONS(6016), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6016), + }, + [STATE(4568)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4569), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7244), + }, + [STATE(4569)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6799), + [sym_labeled_block] = STATE(6799), + [sym_if_statement] = STATE(6799), + [sym_while_statement] = STATE(6799), + [sym_for_statement] = STATE(6799), + [sym_match_statement] = STATE(6799), + [sym__value] = STATE(6799), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4570)] = { + [ts_builtin_sym_end] = ACTIONS(4364), + [sym_identifier] = ACTIONS(4366), + [anon_sym_import] = ACTIONS(4366), + [anon_sym_test] = ACTIONS(4366), + [anon_sym_hide] = ACTIONS(4366), + [anon_sym_func] = ACTIONS(4366), + [anon_sym_BANG] = ACTIONS(4366), + [anon_sym_struct] = ACTIONS(4366), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4364), + [anon_sym_DOLLAR] = ACTIONS(4364), + [anon_sym_PIPE] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [anon_sym_STAR] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_void] = ACTIONS(4366), + [anon_sym_noreturn] = ACTIONS(4366), + [anon_sym_type] = ACTIONS(4366), + [anon_sym_anyopaque] = ACTIONS(4366), + [anon_sym_bool] = ACTIONS(4366), + [anon_sym_int] = ACTIONS(4366), + [anon_sym_uint] = ACTIONS(4366), + [anon_sym_float] = ACTIONS(4366), + [anon_sym_range] = ACTIONS(4366), + [anon_sym_i8] = ACTIONS(4366), + [anon_sym_i16] = ACTIONS(4366), + [anon_sym_i32] = ACTIONS(4366), + [anon_sym_i64] = ACTIONS(4366), + [anon_sym_u8] = ACTIONS(4366), + [anon_sym_u16] = ACTIONS(4366), + [anon_sym_u32] = ACTIONS(4366), + [anon_sym_u64] = ACTIONS(4366), + [anon_sym_isize] = ACTIONS(4366), + [anon_sym_usize] = ACTIONS(4366), + [anon_sym_f32] = ACTIONS(4366), + [anon_sym_f64] = ACTIONS(4366), + [anon_sym_c_char] = ACTIONS(4366), + [anon_sym_c_schar] = ACTIONS(4366), + [anon_sym_c_uchar] = ACTIONS(4366), + [anon_sym_c_short] = ACTIONS(4366), + [anon_sym_c_ushort] = ACTIONS(4366), + [anon_sym_c_int] = ACTIONS(4366), + [anon_sym_c_uint] = ACTIONS(4366), + [anon_sym_c_long] = ACTIONS(4366), + [anon_sym_c_ulong] = ACTIONS(4366), + [anon_sym_c_longlong] = ACTIONS(4366), + [anon_sym_c_ulonglong] = ACTIONS(4366), + [anon_sym_c_float] = ACTIONS(4366), + [anon_sym_c_double] = ACTIONS(4366), + [anon_sym_c_longdouble] = ACTIONS(4366), + [anon_sym_return] = ACTIONS(4366), + [anon_sym_yield] = ACTIONS(4366), + [anon_sym_COLON] = ACTIONS(4364), + [anon_sym_break] = ACTIONS(4366), + [anon_sym_continue] = ACTIONS(4366), + [anon_sym_defer] = ACTIONS(4366), + [anon_sym_errdefer] = ACTIONS(4366), + [anon_sym_if] = ACTIONS(4366), + [anon_sym_else] = ACTIONS(4366), + [anon_sym_while] = ACTIONS(4366), + [anon_sym_expand] = ACTIONS(4366), + [anon_sym_for] = ACTIONS(4366), + [anon_sym_match] = ACTIONS(4366), + [anon_sym_DOT_DOT] = ACTIONS(4366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4364), + [anon_sym_orelse] = ACTIONS(4366), + [anon_sym_or] = ACTIONS(4366), + [anon_sym_and] = ACTIONS(4366), + [anon_sym_EQ_EQ] = ACTIONS(4364), + [anon_sym_BANG_EQ] = ACTIONS(4364), + [anon_sym_LT] = ACTIONS(4366), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4366), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_xor] = ACTIONS(4366), + [anon_sym_LT_LT] = ACTIONS(4366), + [anon_sym_GT_GT] = ACTIONS(4364), + [anon_sym_LT_LT_PIPE] = ACTIONS(4364), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_catch] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4364), + [anon_sym_try] = ACTIONS(4366), + [anon_sym_DOT] = ACTIONS(4366), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4366), + [anon_sym_false] = ACTIONS(4366), + [anon_sym_null] = ACTIONS(4366), + [anon_sym_unreachable] = ACTIONS(4366), + [anon_sym_undefined] = ACTIONS(4366), + [sym_sink] = ACTIONS(4366), + [sym_integer] = ACTIONS(4366), + [sym_float] = ACTIONS(4364), + [anon_sym_DQUOTE] = ACTIONS(4364), + [sym_multiline_string] = ACTIONS(4364), + [sym_character] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4364), + }, + [STATE(4571)] = { + [ts_builtin_sym_end] = ACTIONS(4368), + [sym_identifier] = ACTIONS(4370), + [anon_sym_import] = ACTIONS(4370), + [anon_sym_test] = ACTIONS(4370), + [anon_sym_hide] = ACTIONS(4370), + [anon_sym_func] = ACTIONS(4370), + [anon_sym_BANG] = ACTIONS(4370), + [anon_sym_struct] = ACTIONS(4370), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_LBRACE] = ACTIONS(4368), + [anon_sym_RBRACE] = ACTIONS(4368), + [anon_sym_DASH] = ACTIONS(4368), + [anon_sym_DOLLAR] = ACTIONS(4368), + [anon_sym_PIPE] = ACTIONS(4368), + [anon_sym_QMARK] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_void] = ACTIONS(4370), + [anon_sym_noreturn] = ACTIONS(4370), + [anon_sym_type] = ACTIONS(4370), + [anon_sym_anyopaque] = ACTIONS(4370), + [anon_sym_bool] = ACTIONS(4370), + [anon_sym_int] = ACTIONS(4370), + [anon_sym_uint] = ACTIONS(4370), + [anon_sym_float] = ACTIONS(4370), + [anon_sym_range] = ACTIONS(4370), + [anon_sym_i8] = ACTIONS(4370), + [anon_sym_i16] = ACTIONS(4370), + [anon_sym_i32] = ACTIONS(4370), + [anon_sym_i64] = ACTIONS(4370), + [anon_sym_u8] = ACTIONS(4370), + [anon_sym_u16] = ACTIONS(4370), + [anon_sym_u32] = ACTIONS(4370), + [anon_sym_u64] = ACTIONS(4370), + [anon_sym_isize] = ACTIONS(4370), + [anon_sym_usize] = ACTIONS(4370), + [anon_sym_f32] = ACTIONS(4370), + [anon_sym_f64] = ACTIONS(4370), + [anon_sym_c_char] = ACTIONS(4370), + [anon_sym_c_schar] = ACTIONS(4370), + [anon_sym_c_uchar] = ACTIONS(4370), + [anon_sym_c_short] = ACTIONS(4370), + [anon_sym_c_ushort] = ACTIONS(4370), + [anon_sym_c_int] = ACTIONS(4370), + [anon_sym_c_uint] = ACTIONS(4370), + [anon_sym_c_long] = ACTIONS(4370), + [anon_sym_c_ulong] = ACTIONS(4370), + [anon_sym_c_longlong] = ACTIONS(4370), + [anon_sym_c_ulonglong] = ACTIONS(4370), + [anon_sym_c_float] = ACTIONS(4370), + [anon_sym_c_double] = ACTIONS(4370), + [anon_sym_c_longdouble] = ACTIONS(4370), + [anon_sym_return] = ACTIONS(4370), + [anon_sym_yield] = ACTIONS(4370), + [anon_sym_COLON] = ACTIONS(4368), + [anon_sym_break] = ACTIONS(4370), + [anon_sym_continue] = ACTIONS(4370), + [anon_sym_defer] = ACTIONS(4370), + [anon_sym_errdefer] = ACTIONS(4370), + [anon_sym_if] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(4370), + [anon_sym_while] = ACTIONS(4370), + [anon_sym_expand] = ACTIONS(4370), + [anon_sym_for] = ACTIONS(4370), + [anon_sym_match] = ACTIONS(4370), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4368), + [anon_sym_orelse] = ACTIONS(4370), + [anon_sym_or] = ACTIONS(4370), + [anon_sym_and] = ACTIONS(4370), + [anon_sym_EQ_EQ] = ACTIONS(4368), + [anon_sym_BANG_EQ] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4370), + [anon_sym_LT_EQ] = ACTIONS(4368), + [anon_sym_GT] = ACTIONS(4370), + [anon_sym_GT_EQ] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_xor] = ACTIONS(4370), + [anon_sym_LT_LT] = ACTIONS(4370), + [anon_sym_GT_GT] = ACTIONS(4368), + [anon_sym_LT_LT_PIPE] = ACTIONS(4368), + [anon_sym_PLUS] = ACTIONS(4368), + [anon_sym_SLASH] = ACTIONS(4368), + [anon_sym_catch] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4368), + [anon_sym_try] = ACTIONS(4370), + [anon_sym_DOT] = ACTIONS(4370), + [anon_sym_CARET] = ACTIONS(4368), + [anon_sym_true] = ACTIONS(4370), + [anon_sym_false] = ACTIONS(4370), + [anon_sym_null] = ACTIONS(4370), + [anon_sym_unreachable] = ACTIONS(4370), + [anon_sym_undefined] = ACTIONS(4370), + [sym_sink] = ACTIONS(4370), + [sym_integer] = ACTIONS(4370), + [sym_float] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(4368), + [sym_multiline_string] = ACTIONS(4368), + [sym_character] = ACTIONS(4368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4368), + }, + [STATE(4572)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4891), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(8848), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4892), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7246), + }, + [STATE(4573)] = { + [sym_type] = STATE(14906), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7248), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7250), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4574)] = { + [ts_builtin_sym_end] = ACTIONS(4372), + [sym_identifier] = ACTIONS(4374), + [anon_sym_import] = ACTIONS(4374), + [anon_sym_test] = ACTIONS(4374), + [anon_sym_hide] = ACTIONS(4374), + [anon_sym_func] = ACTIONS(4374), + [anon_sym_BANG] = ACTIONS(4374), + [anon_sym_struct] = ACTIONS(4374), + [anon_sym_LPAREN] = ACTIONS(4372), + [anon_sym_LBRACE] = ACTIONS(4372), + [anon_sym_RBRACE] = ACTIONS(4372), + [anon_sym_DASH] = ACTIONS(4372), + [anon_sym_DOLLAR] = ACTIONS(4372), + [anon_sym_PIPE] = ACTIONS(4372), + [anon_sym_QMARK] = ACTIONS(4372), + [anon_sym_STAR] = ACTIONS(4372), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_void] = ACTIONS(4374), + [anon_sym_noreturn] = ACTIONS(4374), + [anon_sym_type] = ACTIONS(4374), + [anon_sym_anyopaque] = ACTIONS(4374), + [anon_sym_bool] = ACTIONS(4374), + [anon_sym_int] = ACTIONS(4374), + [anon_sym_uint] = ACTIONS(4374), + [anon_sym_float] = ACTIONS(4374), + [anon_sym_range] = ACTIONS(4374), + [anon_sym_i8] = ACTIONS(4374), + [anon_sym_i16] = ACTIONS(4374), + [anon_sym_i32] = ACTIONS(4374), + [anon_sym_i64] = ACTIONS(4374), + [anon_sym_u8] = ACTIONS(4374), + [anon_sym_u16] = ACTIONS(4374), + [anon_sym_u32] = ACTIONS(4374), + [anon_sym_u64] = ACTIONS(4374), + [anon_sym_isize] = ACTIONS(4374), + [anon_sym_usize] = ACTIONS(4374), + [anon_sym_f32] = ACTIONS(4374), + [anon_sym_f64] = ACTIONS(4374), + [anon_sym_c_char] = ACTIONS(4374), + [anon_sym_c_schar] = ACTIONS(4374), + [anon_sym_c_uchar] = ACTIONS(4374), + [anon_sym_c_short] = ACTIONS(4374), + [anon_sym_c_ushort] = ACTIONS(4374), + [anon_sym_c_int] = ACTIONS(4374), + [anon_sym_c_uint] = ACTIONS(4374), + [anon_sym_c_long] = ACTIONS(4374), + [anon_sym_c_ulong] = ACTIONS(4374), + [anon_sym_c_longlong] = ACTIONS(4374), + [anon_sym_c_ulonglong] = ACTIONS(4374), + [anon_sym_c_float] = ACTIONS(4374), + [anon_sym_c_double] = ACTIONS(4374), + [anon_sym_c_longdouble] = ACTIONS(4374), + [anon_sym_return] = ACTIONS(4374), + [anon_sym_yield] = ACTIONS(4374), + [anon_sym_COLON] = ACTIONS(4372), + [anon_sym_break] = ACTIONS(4374), + [anon_sym_continue] = ACTIONS(4374), + [anon_sym_defer] = ACTIONS(4374), + [anon_sym_errdefer] = ACTIONS(4374), + [anon_sym_if] = ACTIONS(4374), + [anon_sym_else] = ACTIONS(4374), + [anon_sym_while] = ACTIONS(4374), + [anon_sym_expand] = ACTIONS(4374), + [anon_sym_for] = ACTIONS(4374), + [anon_sym_match] = ACTIONS(4374), + [anon_sym_DOT_DOT] = ACTIONS(4374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_orelse] = ACTIONS(4374), + [anon_sym_or] = ACTIONS(4374), + [anon_sym_and] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_LT] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4372), + [anon_sym_GT] = ACTIONS(4374), + [anon_sym_GT_EQ] = ACTIONS(4372), + [anon_sym_AMP] = ACTIONS(4372), + [anon_sym_xor] = ACTIONS(4374), + [anon_sym_LT_LT] = ACTIONS(4374), + [anon_sym_GT_GT] = ACTIONS(4372), + [anon_sym_LT_LT_PIPE] = ACTIONS(4372), + [anon_sym_PLUS] = ACTIONS(4372), + [anon_sym_SLASH] = ACTIONS(4372), + [anon_sym_catch] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4372), + [anon_sym_try] = ACTIONS(4374), + [anon_sym_DOT] = ACTIONS(4374), + [anon_sym_CARET] = ACTIONS(4372), + [anon_sym_true] = ACTIONS(4374), + [anon_sym_false] = ACTIONS(4374), + [anon_sym_null] = ACTIONS(4374), + [anon_sym_unreachable] = ACTIONS(4374), + [anon_sym_undefined] = ACTIONS(4374), + [sym_sink] = ACTIONS(4374), + [sym_integer] = ACTIONS(4374), + [sym_float] = ACTIONS(4372), + [anon_sym_DQUOTE] = ACTIONS(4372), + [sym_multiline_string] = ACTIONS(4372), + [sym_character] = ACTIONS(4372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4372), + }, + [STATE(4575)] = { + [ts_builtin_sym_end] = ACTIONS(5914), + [sym_identifier] = ACTIONS(5916), + [anon_sym_import] = ACTIONS(5916), + [anon_sym_test] = ACTIONS(5916), + [anon_sym_hide] = ACTIONS(5916), + [anon_sym_func] = ACTIONS(5916), + [anon_sym_BANG] = ACTIONS(5916), + [anon_sym_struct] = ACTIONS(5916), + [anon_sym_LPAREN] = ACTIONS(5914), + [anon_sym_LBRACE] = ACTIONS(5914), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_DASH] = ACTIONS(5914), + [anon_sym_DOLLAR] = ACTIONS(5914), + [anon_sym_PIPE] = ACTIONS(5914), + [anon_sym_QMARK] = ACTIONS(5914), + [anon_sym_STAR] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(5914), + [anon_sym_void] = ACTIONS(5916), + [anon_sym_noreturn] = ACTIONS(5916), + [anon_sym_type] = ACTIONS(5916), + [anon_sym_anyopaque] = ACTIONS(5916), + [anon_sym_bool] = ACTIONS(5916), + [anon_sym_int] = ACTIONS(5916), + [anon_sym_uint] = ACTIONS(5916), + [anon_sym_float] = ACTIONS(5916), + [anon_sym_range] = ACTIONS(5916), + [anon_sym_i8] = ACTIONS(5916), + [anon_sym_i16] = ACTIONS(5916), + [anon_sym_i32] = ACTIONS(5916), + [anon_sym_i64] = ACTIONS(5916), + [anon_sym_u8] = ACTIONS(5916), + [anon_sym_u16] = ACTIONS(5916), + [anon_sym_u32] = ACTIONS(5916), + [anon_sym_u64] = ACTIONS(5916), + [anon_sym_isize] = ACTIONS(5916), + [anon_sym_usize] = ACTIONS(5916), + [anon_sym_f32] = ACTIONS(5916), + [anon_sym_f64] = ACTIONS(5916), + [anon_sym_c_char] = ACTIONS(5916), + [anon_sym_c_schar] = ACTIONS(5916), + [anon_sym_c_uchar] = ACTIONS(5916), + [anon_sym_c_short] = ACTIONS(5916), + [anon_sym_c_ushort] = ACTIONS(5916), + [anon_sym_c_int] = ACTIONS(5916), + [anon_sym_c_uint] = ACTIONS(5916), + [anon_sym_c_long] = ACTIONS(5916), + [anon_sym_c_ulong] = ACTIONS(5916), + [anon_sym_c_longlong] = ACTIONS(5916), + [anon_sym_c_ulonglong] = ACTIONS(5916), + [anon_sym_c_float] = ACTIONS(5916), + [anon_sym_c_double] = ACTIONS(5916), + [anon_sym_c_longdouble] = ACTIONS(5916), + [anon_sym_return] = ACTIONS(5916), + [anon_sym_yield] = ACTIONS(5916), + [anon_sym_COLON] = ACTIONS(5914), + [anon_sym_break] = ACTIONS(5916), + [anon_sym_continue] = ACTIONS(5916), + [anon_sym_defer] = ACTIONS(5916), + [anon_sym_errdefer] = ACTIONS(5916), + [anon_sym_if] = ACTIONS(5916), + [anon_sym_else] = ACTIONS(5916), + [anon_sym_while] = ACTIONS(5916), + [anon_sym_expand] = ACTIONS(5916), + [anon_sym_for] = ACTIONS(5916), + [anon_sym_match] = ACTIONS(5916), + [anon_sym_DOT_DOT] = ACTIONS(5916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5914), + [anon_sym_orelse] = ACTIONS(5916), + [anon_sym_or] = ACTIONS(5916), + [anon_sym_and] = ACTIONS(5916), + [anon_sym_EQ_EQ] = ACTIONS(5914), + [anon_sym_BANG_EQ] = ACTIONS(5914), + [anon_sym_LT] = ACTIONS(5916), + [anon_sym_LT_EQ] = ACTIONS(5914), + [anon_sym_GT] = ACTIONS(5916), + [anon_sym_GT_EQ] = ACTIONS(5914), + [anon_sym_AMP] = ACTIONS(5914), + [anon_sym_xor] = ACTIONS(5916), + [anon_sym_LT_LT] = ACTIONS(5916), + [anon_sym_GT_GT] = ACTIONS(5914), + [anon_sym_LT_LT_PIPE] = ACTIONS(5914), + [anon_sym_PLUS] = ACTIONS(5914), + [anon_sym_SLASH] = ACTIONS(5914), + [anon_sym_catch] = ACTIONS(5916), + [anon_sym_TILDE] = ACTIONS(5914), + [anon_sym_try] = ACTIONS(5916), + [anon_sym_DOT] = ACTIONS(5916), + [anon_sym_CARET] = ACTIONS(5914), + [anon_sym_true] = ACTIONS(5916), + [anon_sym_false] = ACTIONS(5916), + [anon_sym_null] = ACTIONS(5916), + [anon_sym_unreachable] = ACTIONS(5916), + [anon_sym_undefined] = ACTIONS(5916), + [sym_sink] = ACTIONS(5916), + [sym_integer] = ACTIONS(5916), + [sym_float] = ACTIONS(5914), + [anon_sym_DQUOTE] = ACTIONS(5914), + [sym_multiline_string] = ACTIONS(5914), + [sym_character] = ACTIONS(5914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5914), + }, + [STATE(4576)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9130), + [sym_labeled_block] = STATE(9130), + [sym_if_statement] = STATE(9130), + [sym_while_statement] = STATE(9130), + [sym_for_statement] = STATE(9130), + [sym_match_statement] = STATE(9130), + [sym__value] = STATE(9130), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4577)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7279), + [sym_labeled_block] = STATE(7279), + [sym_if_statement] = STATE(7279), + [sym_while_statement] = STATE(7279), + [sym_for_statement] = STATE(7279), + [sym_match_statement] = STATE(7279), + [sym__value] = STATE(7279), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4578)] = { [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_BANG] = ACTIONS(4420), [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_PIPE] = ACTIONS(4418), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), [anon_sym_LBRACK] = ACTIONS(4418), [anon_sym_void] = ACTIONS(4420), [anon_sym_noreturn] = ACTIONS(4420), @@ -209765,6 +567539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(4420), [anon_sym_return] = ACTIONS(4420), [anon_sym_yield] = ACTIONS(4420), + [anon_sym_COLON] = ACTIONS(4418), [anon_sym_break] = ACTIONS(4420), [anon_sym_continue] = ACTIONS(4420), [anon_sym_defer] = ACTIONS(4420), @@ -209775,10 +567550,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expand] = ACTIONS(4420), [anon_sym_for] = ACTIONS(4420), [anon_sym_match] = ACTIONS(4420), + [anon_sym_DOT_DOT] = ACTIONS(4420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), + [anon_sym_orelse] = ACTIONS(4420), + [anon_sym_or] = ACTIONS(4420), + [anon_sym_and] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4418), [anon_sym_AMP] = ACTIONS(4418), + [anon_sym_xor] = ACTIONS(4420), + [anon_sym_LT_LT] = ACTIONS(4420), + [anon_sym_GT_GT] = ACTIONS(4418), + [anon_sym_LT_LT_PIPE] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4418), + [anon_sym_SLASH] = ACTIONS(4418), + [anon_sym_catch] = ACTIONS(4420), [anon_sym_TILDE] = ACTIONS(4418), [anon_sym_try] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4418), [anon_sym_true] = ACTIONS(4420), [anon_sym_false] = ACTIONS(4420), [anon_sym_null] = ACTIONS(4420), @@ -209793,21 +567587,16503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4418), }, - [STATE(1855)] = { + [STATE(4579)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7280), + [sym_labeled_block] = STATE(7280), + [sym_if_statement] = STATE(7280), + [sym_while_statement] = STATE(7280), + [sym_for_statement] = STATE(7280), + [sym_match_statement] = STATE(7280), + [sym__value] = STATE(7280), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4580)] = { + [ts_builtin_sym_end] = ACTIONS(4704), + [sym_identifier] = ACTIONS(4706), + [anon_sym_import] = ACTIONS(4706), + [anon_sym_test] = ACTIONS(4706), + [anon_sym_hide] = ACTIONS(4706), + [anon_sym_func] = ACTIONS(4706), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_struct] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_void] = ACTIONS(4706), + [anon_sym_noreturn] = ACTIONS(4706), + [anon_sym_type] = ACTIONS(4706), + [anon_sym_anyopaque] = ACTIONS(4706), + [anon_sym_bool] = ACTIONS(4706), + [anon_sym_int] = ACTIONS(4706), + [anon_sym_uint] = ACTIONS(4706), + [anon_sym_float] = ACTIONS(4706), + [anon_sym_range] = ACTIONS(4706), + [anon_sym_i8] = ACTIONS(4706), + [anon_sym_i16] = ACTIONS(4706), + [anon_sym_i32] = ACTIONS(4706), + [anon_sym_i64] = ACTIONS(4706), + [anon_sym_u8] = ACTIONS(4706), + [anon_sym_u16] = ACTIONS(4706), + [anon_sym_u32] = ACTIONS(4706), + [anon_sym_u64] = ACTIONS(4706), + [anon_sym_isize] = ACTIONS(4706), + [anon_sym_usize] = ACTIONS(4706), + [anon_sym_f32] = ACTIONS(4706), + [anon_sym_f64] = ACTIONS(4706), + [anon_sym_c_char] = ACTIONS(4706), + [anon_sym_c_schar] = ACTIONS(4706), + [anon_sym_c_uchar] = ACTIONS(4706), + [anon_sym_c_short] = ACTIONS(4706), + [anon_sym_c_ushort] = ACTIONS(4706), + [anon_sym_c_int] = ACTIONS(4706), + [anon_sym_c_uint] = ACTIONS(4706), + [anon_sym_c_long] = ACTIONS(4706), + [anon_sym_c_ulong] = ACTIONS(4706), + [anon_sym_c_longlong] = ACTIONS(4706), + [anon_sym_c_ulonglong] = ACTIONS(4706), + [anon_sym_c_float] = ACTIONS(4706), + [anon_sym_c_double] = ACTIONS(4706), + [anon_sym_c_longdouble] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_yield] = ACTIONS(4706), + [anon_sym_COLON] = ACTIONS(4704), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_defer] = ACTIONS(4706), + [anon_sym_errdefer] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_expand] = ACTIONS(4706), + [anon_sym_for] = ACTIONS(4706), + [anon_sym_match] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4704), + [anon_sym_orelse] = ACTIONS(4706), + [anon_sym_or] = ACTIONS(4706), + [anon_sym_and] = ACTIONS(4706), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4704), + [anon_sym_xor] = ACTIONS(4706), + [anon_sym_LT_LT] = ACTIONS(4706), + [anon_sym_GT_GT] = ACTIONS(4704), + [anon_sym_LT_LT_PIPE] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_catch] = ACTIONS(4706), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_unreachable] = ACTIONS(4706), + [anon_sym_undefined] = ACTIONS(4706), + [sym_sink] = ACTIONS(4706), + [sym_integer] = ACTIONS(4706), + [sym_float] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [sym_multiline_string] = ACTIONS(4704), + [sym_character] = ACTIONS(4704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4704), + }, + [STATE(4581)] = { + [ts_builtin_sym_end] = ACTIONS(5858), + [sym_identifier] = ACTIONS(5860), + [anon_sym_import] = ACTIONS(5860), + [anon_sym_test] = ACTIONS(5860), + [anon_sym_hide] = ACTIONS(5860), + [anon_sym_func] = ACTIONS(5860), + [anon_sym_BANG] = ACTIONS(5860), + [anon_sym_struct] = ACTIONS(5860), + [anon_sym_LPAREN] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5858), + [anon_sym_RBRACE] = ACTIONS(5858), + [anon_sym_DASH] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_QMARK] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(5858), + [anon_sym_LBRACK] = ACTIONS(5858), + [anon_sym_void] = ACTIONS(5860), + [anon_sym_noreturn] = ACTIONS(5860), + [anon_sym_type] = ACTIONS(5860), + [anon_sym_anyopaque] = ACTIONS(5860), + [anon_sym_bool] = ACTIONS(5860), + [anon_sym_int] = ACTIONS(5860), + [anon_sym_uint] = ACTIONS(5860), + [anon_sym_float] = ACTIONS(5860), + [anon_sym_range] = ACTIONS(5860), + [anon_sym_i8] = ACTIONS(5860), + [anon_sym_i16] = ACTIONS(5860), + [anon_sym_i32] = ACTIONS(5860), + [anon_sym_i64] = ACTIONS(5860), + [anon_sym_u8] = ACTIONS(5860), + [anon_sym_u16] = ACTIONS(5860), + [anon_sym_u32] = ACTIONS(5860), + [anon_sym_u64] = ACTIONS(5860), + [anon_sym_isize] = ACTIONS(5860), + [anon_sym_usize] = ACTIONS(5860), + [anon_sym_f32] = ACTIONS(5860), + [anon_sym_f64] = ACTIONS(5860), + [anon_sym_c_char] = ACTIONS(5860), + [anon_sym_c_schar] = ACTIONS(5860), + [anon_sym_c_uchar] = ACTIONS(5860), + [anon_sym_c_short] = ACTIONS(5860), + [anon_sym_c_ushort] = ACTIONS(5860), + [anon_sym_c_int] = ACTIONS(5860), + [anon_sym_c_uint] = ACTIONS(5860), + [anon_sym_c_long] = ACTIONS(5860), + [anon_sym_c_ulong] = ACTIONS(5860), + [anon_sym_c_longlong] = ACTIONS(5860), + [anon_sym_c_ulonglong] = ACTIONS(5860), + [anon_sym_c_float] = ACTIONS(5860), + [anon_sym_c_double] = ACTIONS(5860), + [anon_sym_c_longdouble] = ACTIONS(5860), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_COLON] = ACTIONS(5858), + [anon_sym_break] = ACTIONS(5860), + [anon_sym_continue] = ACTIONS(5860), + [anon_sym_defer] = ACTIONS(5860), + [anon_sym_errdefer] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_else] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_expand] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_DOT_DOT] = ACTIONS(5860), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5858), + [anon_sym_orelse] = ACTIONS(5860), + [anon_sym_or] = ACTIONS(5860), + [anon_sym_and] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_BANG_EQ] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_LT_EQ] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_EQ] = ACTIONS(5858), + [anon_sym_AMP] = ACTIONS(5858), + [anon_sym_xor] = ACTIONS(5860), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(5858), + [anon_sym_LT_LT_PIPE] = ACTIONS(5858), + [anon_sym_PLUS] = ACTIONS(5858), + [anon_sym_SLASH] = ACTIONS(5858), + [anon_sym_catch] = ACTIONS(5860), + [anon_sym_TILDE] = ACTIONS(5858), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_DOT] = ACTIONS(5860), + [anon_sym_CARET] = ACTIONS(5858), + [anon_sym_true] = ACTIONS(5860), + [anon_sym_false] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_unreachable] = ACTIONS(5860), + [anon_sym_undefined] = ACTIONS(5860), + [sym_sink] = ACTIONS(5860), + [sym_integer] = ACTIONS(5860), + [sym_float] = ACTIONS(5858), + [anon_sym_DQUOTE] = ACTIONS(5858), + [sym_multiline_string] = ACTIONS(5858), + [sym_character] = ACTIONS(5858), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5858), + }, + [STATE(4582)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3267), + [sym_labeled_block] = STATE(3267), + [sym_if_statement] = STATE(3267), + [sym_while_statement] = STATE(3267), + [sym_for_statement] = STATE(3267), + [sym_match_statement] = STATE(3267), + [sym__value] = STATE(3267), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4377), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7252), + }, + [STATE(4583)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4667), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7254), + }, + [STATE(4584)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4701), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7256), + }, + [STATE(4585)] = { + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_import] = ACTIONS(2903), + [anon_sym_test] = ACTIONS(2903), + [anon_sym_hide] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_COLON] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_errdefer] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_expand] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2903), + [anon_sym_unreachable] = ACTIONS(2903), + [anon_sym_undefined] = ACTIONS(2903), + [sym_sink] = ACTIONS(2903), + [sym_integer] = ACTIONS(2903), + [sym_float] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_multiline_string] = ACTIONS(2901), + [sym_character] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(4586)] = { + [ts_builtin_sym_end] = ACTIONS(5442), + [sym_identifier] = ACTIONS(5444), + [anon_sym_import] = ACTIONS(5444), + [anon_sym_test] = ACTIONS(5444), + [anon_sym_hide] = ACTIONS(5444), + [anon_sym_func] = ACTIONS(5444), + [anon_sym_BANG] = ACTIONS(5444), + [anon_sym_struct] = ACTIONS(5444), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5442), + [anon_sym_RBRACE] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5442), + [anon_sym_DOLLAR] = ACTIONS(5442), + [anon_sym_PIPE] = ACTIONS(5442), + [anon_sym_QMARK] = ACTIONS(5442), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_void] = ACTIONS(5444), + [anon_sym_noreturn] = ACTIONS(5444), + [anon_sym_type] = ACTIONS(5444), + [anon_sym_anyopaque] = ACTIONS(5444), + [anon_sym_bool] = ACTIONS(5444), + [anon_sym_int] = ACTIONS(5444), + [anon_sym_uint] = ACTIONS(5444), + [anon_sym_float] = ACTIONS(5444), + [anon_sym_range] = ACTIONS(5444), + [anon_sym_i8] = ACTIONS(5444), + [anon_sym_i16] = ACTIONS(5444), + [anon_sym_i32] = ACTIONS(5444), + [anon_sym_i64] = ACTIONS(5444), + [anon_sym_u8] = ACTIONS(5444), + [anon_sym_u16] = ACTIONS(5444), + [anon_sym_u32] = ACTIONS(5444), + [anon_sym_u64] = ACTIONS(5444), + [anon_sym_isize] = ACTIONS(5444), + [anon_sym_usize] = ACTIONS(5444), + [anon_sym_f32] = ACTIONS(5444), + [anon_sym_f64] = ACTIONS(5444), + [anon_sym_c_char] = ACTIONS(5444), + [anon_sym_c_schar] = ACTIONS(5444), + [anon_sym_c_uchar] = ACTIONS(5444), + [anon_sym_c_short] = ACTIONS(5444), + [anon_sym_c_ushort] = ACTIONS(5444), + [anon_sym_c_int] = ACTIONS(5444), + [anon_sym_c_uint] = ACTIONS(5444), + [anon_sym_c_long] = ACTIONS(5444), + [anon_sym_c_ulong] = ACTIONS(5444), + [anon_sym_c_longlong] = ACTIONS(5444), + [anon_sym_c_ulonglong] = ACTIONS(5444), + [anon_sym_c_float] = ACTIONS(5444), + [anon_sym_c_double] = ACTIONS(5444), + [anon_sym_c_longdouble] = ACTIONS(5444), + [anon_sym_return] = ACTIONS(5444), + [anon_sym_yield] = ACTIONS(5444), + [anon_sym_COLON] = ACTIONS(5442), + [anon_sym_break] = ACTIONS(5444), + [anon_sym_continue] = ACTIONS(5444), + [anon_sym_defer] = ACTIONS(5444), + [anon_sym_errdefer] = ACTIONS(5444), + [anon_sym_if] = ACTIONS(5444), + [anon_sym_else] = ACTIONS(5444), + [anon_sym_while] = ACTIONS(5444), + [anon_sym_expand] = ACTIONS(5444), + [anon_sym_for] = ACTIONS(5444), + [anon_sym_match] = ACTIONS(5444), + [anon_sym_DOT_DOT] = ACTIONS(5444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5442), + [anon_sym_orelse] = ACTIONS(5444), + [anon_sym_or] = ACTIONS(5444), + [anon_sym_and] = ACTIONS(5444), + [anon_sym_EQ_EQ] = ACTIONS(5442), + [anon_sym_BANG_EQ] = ACTIONS(5442), + [anon_sym_LT] = ACTIONS(5444), + [anon_sym_LT_EQ] = ACTIONS(5442), + [anon_sym_GT] = ACTIONS(5444), + [anon_sym_GT_EQ] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_xor] = ACTIONS(5444), + [anon_sym_LT_LT] = ACTIONS(5444), + [anon_sym_GT_GT] = ACTIONS(5442), + [anon_sym_LT_LT_PIPE] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5442), + [anon_sym_catch] = ACTIONS(5444), + [anon_sym_TILDE] = ACTIONS(5442), + [anon_sym_try] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5444), + [anon_sym_CARET] = ACTIONS(5442), + [anon_sym_true] = ACTIONS(5444), + [anon_sym_false] = ACTIONS(5444), + [anon_sym_null] = ACTIONS(5444), + [anon_sym_unreachable] = ACTIONS(5444), + [anon_sym_undefined] = ACTIONS(5444), + [sym_sink] = ACTIONS(5444), + [sym_integer] = ACTIONS(5444), + [sym_float] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [sym_multiline_string] = ACTIONS(5442), + [sym_character] = ACTIONS(5442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5442), + }, + [STATE(4587)] = { + [ts_builtin_sym_end] = ACTIONS(5446), + [sym_identifier] = ACTIONS(5448), + [anon_sym_import] = ACTIONS(5448), + [anon_sym_test] = ACTIONS(5448), + [anon_sym_hide] = ACTIONS(5448), + [anon_sym_func] = ACTIONS(5448), + [anon_sym_BANG] = ACTIONS(5448), + [anon_sym_struct] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_LBRACE] = ACTIONS(5446), + [anon_sym_RBRACE] = ACTIONS(5446), + [anon_sym_DASH] = ACTIONS(5446), + [anon_sym_DOLLAR] = ACTIONS(5446), + [anon_sym_PIPE] = ACTIONS(5446), + [anon_sym_QMARK] = ACTIONS(5446), + [anon_sym_STAR] = ACTIONS(5446), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_void] = ACTIONS(5448), + [anon_sym_noreturn] = ACTIONS(5448), + [anon_sym_type] = ACTIONS(5448), + [anon_sym_anyopaque] = ACTIONS(5448), + [anon_sym_bool] = ACTIONS(5448), + [anon_sym_int] = ACTIONS(5448), + [anon_sym_uint] = ACTIONS(5448), + [anon_sym_float] = ACTIONS(5448), + [anon_sym_range] = ACTIONS(5448), + [anon_sym_i8] = ACTIONS(5448), + [anon_sym_i16] = ACTIONS(5448), + [anon_sym_i32] = ACTIONS(5448), + [anon_sym_i64] = ACTIONS(5448), + [anon_sym_u8] = ACTIONS(5448), + [anon_sym_u16] = ACTIONS(5448), + [anon_sym_u32] = ACTIONS(5448), + [anon_sym_u64] = ACTIONS(5448), + [anon_sym_isize] = ACTIONS(5448), + [anon_sym_usize] = ACTIONS(5448), + [anon_sym_f32] = ACTIONS(5448), + [anon_sym_f64] = ACTIONS(5448), + [anon_sym_c_char] = ACTIONS(5448), + [anon_sym_c_schar] = ACTIONS(5448), + [anon_sym_c_uchar] = ACTIONS(5448), + [anon_sym_c_short] = ACTIONS(5448), + [anon_sym_c_ushort] = ACTIONS(5448), + [anon_sym_c_int] = ACTIONS(5448), + [anon_sym_c_uint] = ACTIONS(5448), + [anon_sym_c_long] = ACTIONS(5448), + [anon_sym_c_ulong] = ACTIONS(5448), + [anon_sym_c_longlong] = ACTIONS(5448), + [anon_sym_c_ulonglong] = ACTIONS(5448), + [anon_sym_c_float] = ACTIONS(5448), + [anon_sym_c_double] = ACTIONS(5448), + [anon_sym_c_longdouble] = ACTIONS(5448), + [anon_sym_return] = ACTIONS(5448), + [anon_sym_yield] = ACTIONS(5448), + [anon_sym_COLON] = ACTIONS(5446), + [anon_sym_break] = ACTIONS(5448), + [anon_sym_continue] = ACTIONS(5448), + [anon_sym_defer] = ACTIONS(5448), + [anon_sym_errdefer] = ACTIONS(5448), + [anon_sym_if] = ACTIONS(5448), + [anon_sym_else] = ACTIONS(5448), + [anon_sym_while] = ACTIONS(5448), + [anon_sym_expand] = ACTIONS(5448), + [anon_sym_for] = ACTIONS(5448), + [anon_sym_match] = ACTIONS(5448), + [anon_sym_DOT_DOT] = ACTIONS(5448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5446), + [anon_sym_orelse] = ACTIONS(5448), + [anon_sym_or] = ACTIONS(5448), + [anon_sym_and] = ACTIONS(5448), + [anon_sym_EQ_EQ] = ACTIONS(5446), + [anon_sym_BANG_EQ] = ACTIONS(5446), + [anon_sym_LT] = ACTIONS(5448), + [anon_sym_LT_EQ] = ACTIONS(5446), + [anon_sym_GT] = ACTIONS(5448), + [anon_sym_GT_EQ] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(5446), + [anon_sym_xor] = ACTIONS(5448), + [anon_sym_LT_LT] = ACTIONS(5448), + [anon_sym_GT_GT] = ACTIONS(5446), + [anon_sym_LT_LT_PIPE] = ACTIONS(5446), + [anon_sym_PLUS] = ACTIONS(5446), + [anon_sym_SLASH] = ACTIONS(5446), + [anon_sym_catch] = ACTIONS(5448), + [anon_sym_TILDE] = ACTIONS(5446), + [anon_sym_try] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5448), + [anon_sym_CARET] = ACTIONS(5446), + [anon_sym_true] = ACTIONS(5448), + [anon_sym_false] = ACTIONS(5448), + [anon_sym_null] = ACTIONS(5448), + [anon_sym_unreachable] = ACTIONS(5448), + [anon_sym_undefined] = ACTIONS(5448), + [sym_sink] = ACTIONS(5448), + [sym_integer] = ACTIONS(5448), + [sym_float] = ACTIONS(5446), + [anon_sym_DQUOTE] = ACTIONS(5446), + [sym_multiline_string] = ACTIONS(5446), + [sym_character] = ACTIONS(5446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5446), + }, + [STATE(4588)] = { + [ts_builtin_sym_end] = ACTIONS(5450), + [sym_identifier] = ACTIONS(5452), + [anon_sym_import] = ACTIONS(5452), + [anon_sym_test] = ACTIONS(5452), + [anon_sym_hide] = ACTIONS(5452), + [anon_sym_func] = ACTIONS(5452), + [anon_sym_BANG] = ACTIONS(5452), + [anon_sym_struct] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(5450), + [anon_sym_LBRACE] = ACTIONS(5450), + [anon_sym_RBRACE] = ACTIONS(5450), + [anon_sym_DASH] = ACTIONS(5450), + [anon_sym_DOLLAR] = ACTIONS(5450), + [anon_sym_PIPE] = ACTIONS(5450), + [anon_sym_QMARK] = ACTIONS(5450), + [anon_sym_STAR] = ACTIONS(5450), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_void] = ACTIONS(5452), + [anon_sym_noreturn] = ACTIONS(5452), + [anon_sym_type] = ACTIONS(5452), + [anon_sym_anyopaque] = ACTIONS(5452), + [anon_sym_bool] = ACTIONS(5452), + [anon_sym_int] = ACTIONS(5452), + [anon_sym_uint] = ACTIONS(5452), + [anon_sym_float] = ACTIONS(5452), + [anon_sym_range] = ACTIONS(5452), + [anon_sym_i8] = ACTIONS(5452), + [anon_sym_i16] = ACTIONS(5452), + [anon_sym_i32] = ACTIONS(5452), + [anon_sym_i64] = ACTIONS(5452), + [anon_sym_u8] = ACTIONS(5452), + [anon_sym_u16] = ACTIONS(5452), + [anon_sym_u32] = ACTIONS(5452), + [anon_sym_u64] = ACTIONS(5452), + [anon_sym_isize] = ACTIONS(5452), + [anon_sym_usize] = ACTIONS(5452), + [anon_sym_f32] = ACTIONS(5452), + [anon_sym_f64] = ACTIONS(5452), + [anon_sym_c_char] = ACTIONS(5452), + [anon_sym_c_schar] = ACTIONS(5452), + [anon_sym_c_uchar] = ACTIONS(5452), + [anon_sym_c_short] = ACTIONS(5452), + [anon_sym_c_ushort] = ACTIONS(5452), + [anon_sym_c_int] = ACTIONS(5452), + [anon_sym_c_uint] = ACTIONS(5452), + [anon_sym_c_long] = ACTIONS(5452), + [anon_sym_c_ulong] = ACTIONS(5452), + [anon_sym_c_longlong] = ACTIONS(5452), + [anon_sym_c_ulonglong] = ACTIONS(5452), + [anon_sym_c_float] = ACTIONS(5452), + [anon_sym_c_double] = ACTIONS(5452), + [anon_sym_c_longdouble] = ACTIONS(5452), + [anon_sym_return] = ACTIONS(5452), + [anon_sym_yield] = ACTIONS(5452), + [anon_sym_COLON] = ACTIONS(5450), + [anon_sym_break] = ACTIONS(5452), + [anon_sym_continue] = ACTIONS(5452), + [anon_sym_defer] = ACTIONS(5452), + [anon_sym_errdefer] = ACTIONS(5452), + [anon_sym_if] = ACTIONS(5452), + [anon_sym_else] = ACTIONS(5452), + [anon_sym_while] = ACTIONS(5452), + [anon_sym_expand] = ACTIONS(5452), + [anon_sym_for] = ACTIONS(5452), + [anon_sym_match] = ACTIONS(5452), + [anon_sym_DOT_DOT] = ACTIONS(5452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5450), + [anon_sym_orelse] = ACTIONS(5452), + [anon_sym_or] = ACTIONS(5452), + [anon_sym_and] = ACTIONS(5452), + [anon_sym_EQ_EQ] = ACTIONS(5450), + [anon_sym_BANG_EQ] = ACTIONS(5450), + [anon_sym_LT] = ACTIONS(5452), + [anon_sym_LT_EQ] = ACTIONS(5450), + [anon_sym_GT] = ACTIONS(5452), + [anon_sym_GT_EQ] = ACTIONS(5450), + [anon_sym_AMP] = ACTIONS(5450), + [anon_sym_xor] = ACTIONS(5452), + [anon_sym_LT_LT] = ACTIONS(5452), + [anon_sym_GT_GT] = ACTIONS(5450), + [anon_sym_LT_LT_PIPE] = ACTIONS(5450), + [anon_sym_PLUS] = ACTIONS(5450), + [anon_sym_SLASH] = ACTIONS(5450), + [anon_sym_catch] = ACTIONS(5452), + [anon_sym_TILDE] = ACTIONS(5450), + [anon_sym_try] = ACTIONS(5452), + [anon_sym_DOT] = ACTIONS(5452), + [anon_sym_CARET] = ACTIONS(5450), + [anon_sym_true] = ACTIONS(5452), + [anon_sym_false] = ACTIONS(5452), + [anon_sym_null] = ACTIONS(5452), + [anon_sym_unreachable] = ACTIONS(5452), + [anon_sym_undefined] = ACTIONS(5452), + [sym_sink] = ACTIONS(5452), + [sym_integer] = ACTIONS(5452), + [sym_float] = ACTIONS(5450), + [anon_sym_DQUOTE] = ACTIONS(5450), + [sym_multiline_string] = ACTIONS(5450), + [sym_character] = ACTIONS(5450), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5450), + }, + [STATE(4589)] = { + [ts_builtin_sym_end] = ACTIONS(5454), + [sym_identifier] = ACTIONS(5456), + [anon_sym_import] = ACTIONS(5456), + [anon_sym_test] = ACTIONS(5456), + [anon_sym_hide] = ACTIONS(5456), + [anon_sym_func] = ACTIONS(5456), + [anon_sym_BANG] = ACTIONS(5456), + [anon_sym_struct] = ACTIONS(5456), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_LBRACE] = ACTIONS(5454), + [anon_sym_RBRACE] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5454), + [anon_sym_DOLLAR] = ACTIONS(5454), + [anon_sym_PIPE] = ACTIONS(5454), + [anon_sym_QMARK] = ACTIONS(5454), + [anon_sym_STAR] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_void] = ACTIONS(5456), + [anon_sym_noreturn] = ACTIONS(5456), + [anon_sym_type] = ACTIONS(5456), + [anon_sym_anyopaque] = ACTIONS(5456), + [anon_sym_bool] = ACTIONS(5456), + [anon_sym_int] = ACTIONS(5456), + [anon_sym_uint] = ACTIONS(5456), + [anon_sym_float] = ACTIONS(5456), + [anon_sym_range] = ACTIONS(5456), + [anon_sym_i8] = ACTIONS(5456), + [anon_sym_i16] = ACTIONS(5456), + [anon_sym_i32] = ACTIONS(5456), + [anon_sym_i64] = ACTIONS(5456), + [anon_sym_u8] = ACTIONS(5456), + [anon_sym_u16] = ACTIONS(5456), + [anon_sym_u32] = ACTIONS(5456), + [anon_sym_u64] = ACTIONS(5456), + [anon_sym_isize] = ACTIONS(5456), + [anon_sym_usize] = ACTIONS(5456), + [anon_sym_f32] = ACTIONS(5456), + [anon_sym_f64] = ACTIONS(5456), + [anon_sym_c_char] = ACTIONS(5456), + [anon_sym_c_schar] = ACTIONS(5456), + [anon_sym_c_uchar] = ACTIONS(5456), + [anon_sym_c_short] = ACTIONS(5456), + [anon_sym_c_ushort] = ACTIONS(5456), + [anon_sym_c_int] = ACTIONS(5456), + [anon_sym_c_uint] = ACTIONS(5456), + [anon_sym_c_long] = ACTIONS(5456), + [anon_sym_c_ulong] = ACTIONS(5456), + [anon_sym_c_longlong] = ACTIONS(5456), + [anon_sym_c_ulonglong] = ACTIONS(5456), + [anon_sym_c_float] = ACTIONS(5456), + [anon_sym_c_double] = ACTIONS(5456), + [anon_sym_c_longdouble] = ACTIONS(5456), + [anon_sym_return] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(5456), + [anon_sym_COLON] = ACTIONS(5454), + [anon_sym_break] = ACTIONS(5456), + [anon_sym_continue] = ACTIONS(5456), + [anon_sym_defer] = ACTIONS(5456), + [anon_sym_errdefer] = ACTIONS(5456), + [anon_sym_if] = ACTIONS(5456), + [anon_sym_else] = ACTIONS(5456), + [anon_sym_while] = ACTIONS(5456), + [anon_sym_expand] = ACTIONS(5456), + [anon_sym_for] = ACTIONS(5456), + [anon_sym_match] = ACTIONS(5456), + [anon_sym_DOT_DOT] = ACTIONS(5456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5454), + [anon_sym_orelse] = ACTIONS(5456), + [anon_sym_or] = ACTIONS(5456), + [anon_sym_and] = ACTIONS(5456), + [anon_sym_EQ_EQ] = ACTIONS(5454), + [anon_sym_BANG_EQ] = ACTIONS(5454), + [anon_sym_LT] = ACTIONS(5456), + [anon_sym_LT_EQ] = ACTIONS(5454), + [anon_sym_GT] = ACTIONS(5456), + [anon_sym_GT_EQ] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_xor] = ACTIONS(5456), + [anon_sym_LT_LT] = ACTIONS(5456), + [anon_sym_GT_GT] = ACTIONS(5454), + [anon_sym_LT_LT_PIPE] = ACTIONS(5454), + [anon_sym_PLUS] = ACTIONS(5454), + [anon_sym_SLASH] = ACTIONS(5454), + [anon_sym_catch] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5454), + [anon_sym_try] = ACTIONS(5456), + [anon_sym_DOT] = ACTIONS(5456), + [anon_sym_CARET] = ACTIONS(5454), + [anon_sym_true] = ACTIONS(5456), + [anon_sym_false] = ACTIONS(5456), + [anon_sym_null] = ACTIONS(5456), + [anon_sym_unreachable] = ACTIONS(5456), + [anon_sym_undefined] = ACTIONS(5456), + [sym_sink] = ACTIONS(5456), + [sym_integer] = ACTIONS(5456), + [sym_float] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5454), + [sym_multiline_string] = ACTIONS(5454), + [sym_character] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5454), + }, + [STATE(4590)] = { + [ts_builtin_sym_end] = ACTIONS(5672), + [sym_identifier] = ACTIONS(5674), + [anon_sym_import] = ACTIONS(5674), + [anon_sym_test] = ACTIONS(5674), + [anon_sym_hide] = ACTIONS(5674), + [anon_sym_func] = ACTIONS(5674), + [anon_sym_BANG] = ACTIONS(5674), + [anon_sym_struct] = ACTIONS(5674), + [anon_sym_LPAREN] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5672), + [anon_sym_RBRACE] = ACTIONS(5672), + [anon_sym_DASH] = ACTIONS(5672), + [anon_sym_DOLLAR] = ACTIONS(5672), + [anon_sym_PIPE] = ACTIONS(5672), + [anon_sym_QMARK] = ACTIONS(5672), + [anon_sym_STAR] = ACTIONS(5672), + [anon_sym_LBRACK] = ACTIONS(5672), + [anon_sym_void] = ACTIONS(5674), + [anon_sym_noreturn] = ACTIONS(5674), + [anon_sym_type] = ACTIONS(5674), + [anon_sym_anyopaque] = ACTIONS(5674), + [anon_sym_bool] = ACTIONS(5674), + [anon_sym_int] = ACTIONS(5674), + [anon_sym_uint] = ACTIONS(5674), + [anon_sym_float] = ACTIONS(5674), + [anon_sym_range] = ACTIONS(5674), + [anon_sym_i8] = ACTIONS(5674), + [anon_sym_i16] = ACTIONS(5674), + [anon_sym_i32] = ACTIONS(5674), + [anon_sym_i64] = ACTIONS(5674), + [anon_sym_u8] = ACTIONS(5674), + [anon_sym_u16] = ACTIONS(5674), + [anon_sym_u32] = ACTIONS(5674), + [anon_sym_u64] = ACTIONS(5674), + [anon_sym_isize] = ACTIONS(5674), + [anon_sym_usize] = ACTIONS(5674), + [anon_sym_f32] = ACTIONS(5674), + [anon_sym_f64] = ACTIONS(5674), + [anon_sym_c_char] = ACTIONS(5674), + [anon_sym_c_schar] = ACTIONS(5674), + [anon_sym_c_uchar] = ACTIONS(5674), + [anon_sym_c_short] = ACTIONS(5674), + [anon_sym_c_ushort] = ACTIONS(5674), + [anon_sym_c_int] = ACTIONS(5674), + [anon_sym_c_uint] = ACTIONS(5674), + [anon_sym_c_long] = ACTIONS(5674), + [anon_sym_c_ulong] = ACTIONS(5674), + [anon_sym_c_longlong] = ACTIONS(5674), + [anon_sym_c_ulonglong] = ACTIONS(5674), + [anon_sym_c_float] = ACTIONS(5674), + [anon_sym_c_double] = ACTIONS(5674), + [anon_sym_c_longdouble] = ACTIONS(5674), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_COLON] = ACTIONS(5672), + [anon_sym_break] = ACTIONS(5674), + [anon_sym_continue] = ACTIONS(5674), + [anon_sym_defer] = ACTIONS(5674), + [anon_sym_errdefer] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_else] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_expand] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_DOT_DOT] = ACTIONS(5674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5672), + [anon_sym_orelse] = ACTIONS(5674), + [anon_sym_or] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5672), + [anon_sym_BANG_EQ] = ACTIONS(5672), + [anon_sym_LT] = ACTIONS(5674), + [anon_sym_LT_EQ] = ACTIONS(5672), + [anon_sym_GT] = ACTIONS(5674), + [anon_sym_GT_EQ] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_xor] = ACTIONS(5674), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5672), + [anon_sym_LT_LT_PIPE] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5672), + [anon_sym_SLASH] = ACTIONS(5672), + [anon_sym_catch] = ACTIONS(5674), + [anon_sym_TILDE] = ACTIONS(5672), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5674), + [anon_sym_CARET] = ACTIONS(5672), + [anon_sym_true] = ACTIONS(5674), + [anon_sym_false] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_unreachable] = ACTIONS(5674), + [anon_sym_undefined] = ACTIONS(5674), + [sym_sink] = ACTIONS(5674), + [sym_integer] = ACTIONS(5674), + [sym_float] = ACTIONS(5672), + [anon_sym_DQUOTE] = ACTIONS(5672), + [sym_multiline_string] = ACTIONS(5672), + [sym_character] = ACTIONS(5672), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5672), + }, + [STATE(4591)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4593), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7258), + }, + [STATE(4592)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4595), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7260), + }, + [STATE(4593)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4594)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4596), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7262), + }, + [STATE(4595)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4596)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4597)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4598)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4963), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(8750), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7264), + }, + [STATE(4599)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4601), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7266), + }, + [STATE(4600)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9696), + [sym_labeled_block] = STATE(9696), + [sym_if_statement] = STATE(9696), + [sym_while_statement] = STATE(9696), + [sym_for_statement] = STATE(9696), + [sym_match_statement] = STATE(9696), + [sym__value] = STATE(9696), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4604), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7268), + }, + [STATE(4601)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4602)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4605), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7270), + }, + [STATE(4603)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4606), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7272), + }, + [STATE(4604)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9701), + [sym_labeled_block] = STATE(9701), + [sym_if_statement] = STATE(9701), + [sym_while_statement] = STATE(9701), + [sym_for_statement] = STATE(9701), + [sym_match_statement] = STATE(9701), + [sym__value] = STATE(9701), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4605)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4606)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4607)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4609), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7274), + }, + [STATE(4608)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4612), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7276), + }, + [STATE(4609)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4610)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4613), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7278), + }, + [STATE(4611)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4614), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7280), + }, + [STATE(4612)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4613)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4614)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4615)] = { + [ts_builtin_sym_end] = ACTIONS(5230), + [sym_identifier] = ACTIONS(5232), + [anon_sym_import] = ACTIONS(5232), + [anon_sym_test] = ACTIONS(5232), + [anon_sym_hide] = ACTIONS(5232), + [anon_sym_func] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_struct] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5230), + [anon_sym_PIPE] = ACTIONS(5230), + [anon_sym_QMARK] = ACTIONS(5230), + [anon_sym_STAR] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_void] = ACTIONS(5232), + [anon_sym_noreturn] = ACTIONS(5232), + [anon_sym_type] = ACTIONS(5232), + [anon_sym_anyopaque] = ACTIONS(5232), + [anon_sym_bool] = ACTIONS(5232), + [anon_sym_int] = ACTIONS(5232), + [anon_sym_uint] = ACTIONS(5232), + [anon_sym_float] = ACTIONS(5232), + [anon_sym_range] = ACTIONS(5232), + [anon_sym_i8] = ACTIONS(5232), + [anon_sym_i16] = ACTIONS(5232), + [anon_sym_i32] = ACTIONS(5232), + [anon_sym_i64] = ACTIONS(5232), + [anon_sym_u8] = ACTIONS(5232), + [anon_sym_u16] = ACTIONS(5232), + [anon_sym_u32] = ACTIONS(5232), + [anon_sym_u64] = ACTIONS(5232), + [anon_sym_isize] = ACTIONS(5232), + [anon_sym_usize] = ACTIONS(5232), + [anon_sym_f32] = ACTIONS(5232), + [anon_sym_f64] = ACTIONS(5232), + [anon_sym_c_char] = ACTIONS(5232), + [anon_sym_c_schar] = ACTIONS(5232), + [anon_sym_c_uchar] = ACTIONS(5232), + [anon_sym_c_short] = ACTIONS(5232), + [anon_sym_c_ushort] = ACTIONS(5232), + [anon_sym_c_int] = ACTIONS(5232), + [anon_sym_c_uint] = ACTIONS(5232), + [anon_sym_c_long] = ACTIONS(5232), + [anon_sym_c_ulong] = ACTIONS(5232), + [anon_sym_c_longlong] = ACTIONS(5232), + [anon_sym_c_ulonglong] = ACTIONS(5232), + [anon_sym_c_float] = ACTIONS(5232), + [anon_sym_c_double] = ACTIONS(5232), + [anon_sym_c_longdouble] = ACTIONS(5232), + [anon_sym_return] = ACTIONS(5232), + [anon_sym_yield] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5230), + [anon_sym_break] = ACTIONS(5232), + [anon_sym_continue] = ACTIONS(5232), + [anon_sym_defer] = ACTIONS(5232), + [anon_sym_errdefer] = ACTIONS(5232), + [anon_sym_if] = ACTIONS(5232), + [anon_sym_else] = ACTIONS(5232), + [anon_sym_while] = ACTIONS(5232), + [anon_sym_expand] = ACTIONS(5232), + [anon_sym_for] = ACTIONS(5232), + [anon_sym_match] = ACTIONS(5232), + [anon_sym_DOT_DOT] = ACTIONS(5232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5230), + [anon_sym_orelse] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5230), + [anon_sym_BANG_EQ] = ACTIONS(5230), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_LT_EQ] = ACTIONS(5230), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_GT_EQ] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_xor] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5232), + [anon_sym_GT_GT] = ACTIONS(5230), + [anon_sym_LT_LT_PIPE] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5230), + [anon_sym_SLASH] = ACTIONS(5230), + [anon_sym_catch] = ACTIONS(5232), + [anon_sym_TILDE] = ACTIONS(5230), + [anon_sym_try] = ACTIONS(5232), + [anon_sym_DOT] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5230), + [anon_sym_true] = ACTIONS(5232), + [anon_sym_false] = ACTIONS(5232), + [anon_sym_null] = ACTIONS(5232), + [anon_sym_unreachable] = ACTIONS(5232), + [anon_sym_undefined] = ACTIONS(5232), + [sym_sink] = ACTIONS(5232), + [sym_integer] = ACTIONS(5232), + [sym_float] = ACTIONS(5230), + [anon_sym_DQUOTE] = ACTIONS(5230), + [sym_multiline_string] = ACTIONS(5230), + [sym_character] = ACTIONS(5230), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5230), + }, + [STATE(4616)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8669), + [sym_error_capture] = STATE(4968), + [sym_if_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_match_statement] = STATE(8669), + [sym_expression] = STATE(9002), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4969), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7282), + }, + [STATE(4617)] = { + [ts_builtin_sym_end] = ACTIONS(5234), + [sym_identifier] = ACTIONS(5236), + [anon_sym_import] = ACTIONS(5236), + [anon_sym_test] = ACTIONS(5236), + [anon_sym_hide] = ACTIONS(5236), + [anon_sym_func] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_struct] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_void] = ACTIONS(5236), + [anon_sym_noreturn] = ACTIONS(5236), + [anon_sym_type] = ACTIONS(5236), + [anon_sym_anyopaque] = ACTIONS(5236), + [anon_sym_bool] = ACTIONS(5236), + [anon_sym_int] = ACTIONS(5236), + [anon_sym_uint] = ACTIONS(5236), + [anon_sym_float] = ACTIONS(5236), + [anon_sym_range] = ACTIONS(5236), + [anon_sym_i8] = ACTIONS(5236), + [anon_sym_i16] = ACTIONS(5236), + [anon_sym_i32] = ACTIONS(5236), + [anon_sym_i64] = ACTIONS(5236), + [anon_sym_u8] = ACTIONS(5236), + [anon_sym_u16] = ACTIONS(5236), + [anon_sym_u32] = ACTIONS(5236), + [anon_sym_u64] = ACTIONS(5236), + [anon_sym_isize] = ACTIONS(5236), + [anon_sym_usize] = ACTIONS(5236), + [anon_sym_f32] = ACTIONS(5236), + [anon_sym_f64] = ACTIONS(5236), + [anon_sym_c_char] = ACTIONS(5236), + [anon_sym_c_schar] = ACTIONS(5236), + [anon_sym_c_uchar] = ACTIONS(5236), + [anon_sym_c_short] = ACTIONS(5236), + [anon_sym_c_ushort] = ACTIONS(5236), + [anon_sym_c_int] = ACTIONS(5236), + [anon_sym_c_uint] = ACTIONS(5236), + [anon_sym_c_long] = ACTIONS(5236), + [anon_sym_c_ulong] = ACTIONS(5236), + [anon_sym_c_longlong] = ACTIONS(5236), + [anon_sym_c_ulonglong] = ACTIONS(5236), + [anon_sym_c_float] = ACTIONS(5236), + [anon_sym_c_double] = ACTIONS(5236), + [anon_sym_c_longdouble] = ACTIONS(5236), + [anon_sym_return] = ACTIONS(5236), + [anon_sym_yield] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_break] = ACTIONS(5236), + [anon_sym_continue] = ACTIONS(5236), + [anon_sym_defer] = ACTIONS(5236), + [anon_sym_errdefer] = ACTIONS(5236), + [anon_sym_if] = ACTIONS(5236), + [anon_sym_else] = ACTIONS(5236), + [anon_sym_while] = ACTIONS(5236), + [anon_sym_expand] = ACTIONS(5236), + [anon_sym_for] = ACTIONS(5236), + [anon_sym_match] = ACTIONS(5236), + [anon_sym_DOT_DOT] = ACTIONS(5236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5234), + [anon_sym_orelse] = ACTIONS(5236), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP] = ACTIONS(5234), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5234), + [anon_sym_LT_LT_PIPE] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5234), + [anon_sym_SLASH] = ACTIONS(5234), + [anon_sym_catch] = ACTIONS(5236), + [anon_sym_TILDE] = ACTIONS(5234), + [anon_sym_try] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_true] = ACTIONS(5236), + [anon_sym_false] = ACTIONS(5236), + [anon_sym_null] = ACTIONS(5236), + [anon_sym_unreachable] = ACTIONS(5236), + [anon_sym_undefined] = ACTIONS(5236), + [sym_sink] = ACTIONS(5236), + [sym_integer] = ACTIONS(5236), + [sym_float] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [sym_multiline_string] = ACTIONS(5234), + [sym_character] = ACTIONS(5234), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5234), + }, + [STATE(4618)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4620), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7284), + }, + [STATE(4619)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4623), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7286), + }, + [STATE(4620)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4621)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4624), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7288), + }, + [STATE(4622)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4625), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7290), + }, + [STATE(4623)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4624)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4625)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4626)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8694), + [sym_labeled_block] = STATE(8694), + [sym_if_statement] = STATE(8694), + [sym_while_statement] = STATE(8694), + [sym_for_statement] = STATE(8694), + [sym_match_statement] = STATE(8694), + [sym__value] = STATE(8694), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4628), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7292), + }, + [STATE(4627)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8392), + [sym_labeled_block] = STATE(8392), + [sym_if_statement] = STATE(8392), + [sym_while_statement] = STATE(8392), + [sym_for_statement] = STATE(8392), + [sym_match_statement] = STATE(8392), + [sym__value] = STATE(8392), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4631), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7294), + }, + [STATE(4628)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8666), + [sym_labeled_block] = STATE(8666), + [sym_if_statement] = STATE(8666), + [sym_while_statement] = STATE(8666), + [sym_for_statement] = STATE(8666), + [sym_match_statement] = STATE(8666), + [sym__value] = STATE(8666), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4629)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8588), + [sym_labeled_block] = STATE(8588), + [sym_if_statement] = STATE(8588), + [sym_while_statement] = STATE(8588), + [sym_for_statement] = STATE(8588), + [sym_match_statement] = STATE(8588), + [sym__value] = STATE(8588), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4632), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7296), + }, + [STATE(4630)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8618), + [sym_labeled_block] = STATE(8618), + [sym_if_statement] = STATE(8618), + [sym_while_statement] = STATE(8618), + [sym_for_statement] = STATE(8618), + [sym_match_statement] = STATE(8618), + [sym__value] = STATE(8618), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4633), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7298), + }, + [STATE(4631)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8630), + [sym_labeled_block] = STATE(8630), + [sym_if_statement] = STATE(8630), + [sym_while_statement] = STATE(8630), + [sym_for_statement] = STATE(8630), + [sym_match_statement] = STATE(8630), + [sym__value] = STATE(8630), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4632)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8487), + [sym_labeled_block] = STATE(8487), + [sym_if_statement] = STATE(8487), + [sym_while_statement] = STATE(8487), + [sym_for_statement] = STATE(8487), + [sym_match_statement] = STATE(8487), + [sym__value] = STATE(8487), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4633)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8488), + [sym_labeled_block] = STATE(8488), + [sym_if_statement] = STATE(8488), + [sym_while_statement] = STATE(8488), + [sym_for_statement] = STATE(8488), + [sym_match_statement] = STATE(8488), + [sym__value] = STATE(8488), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4634)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(4973), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(9988), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4974), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7300), + }, + [STATE(4635)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4636), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7302), + }, + [STATE(4636)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4637)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4639), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7304), + }, + [STATE(4638)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4640), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7306), + }, + [STATE(4639)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4640)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4641)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4978), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(8848), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4979), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7308), + }, + [STATE(4642)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8694), + [sym_labeled_block] = STATE(8694), + [sym_if_statement] = STATE(8694), + [sym_while_statement] = STATE(8694), + [sym_for_statement] = STATE(8694), + [sym_match_statement] = STATE(8694), + [sym__value] = STATE(8694), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4644), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7310), + }, + [STATE(4643)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8392), + [sym_labeled_block] = STATE(8392), + [sym_if_statement] = STATE(8392), + [sym_while_statement] = STATE(8392), + [sym_for_statement] = STATE(8392), + [sym_match_statement] = STATE(8392), + [sym__value] = STATE(8392), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4647), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7312), + }, + [STATE(4644)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8666), + [sym_labeled_block] = STATE(8666), + [sym_if_statement] = STATE(8666), + [sym_while_statement] = STATE(8666), + [sym_for_statement] = STATE(8666), + [sym_match_statement] = STATE(8666), + [sym__value] = STATE(8666), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4645)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8588), + [sym_labeled_block] = STATE(8588), + [sym_if_statement] = STATE(8588), + [sym_while_statement] = STATE(8588), + [sym_for_statement] = STATE(8588), + [sym_match_statement] = STATE(8588), + [sym__value] = STATE(8588), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4648), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7314), + }, + [STATE(4646)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8618), + [sym_labeled_block] = STATE(8618), + [sym_if_statement] = STATE(8618), + [sym_while_statement] = STATE(8618), + [sym_for_statement] = STATE(8618), + [sym_match_statement] = STATE(8618), + [sym__value] = STATE(8618), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4649), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7316), + }, + [STATE(4647)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8630), + [sym_labeled_block] = STATE(8630), + [sym_if_statement] = STATE(8630), + [sym_while_statement] = STATE(8630), + [sym_for_statement] = STATE(8630), + [sym_match_statement] = STATE(8630), + [sym__value] = STATE(8630), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4648)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8487), + [sym_labeled_block] = STATE(8487), + [sym_if_statement] = STATE(8487), + [sym_while_statement] = STATE(8487), + [sym_for_statement] = STATE(8487), + [sym_match_statement] = STATE(8487), + [sym__value] = STATE(8487), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4649)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8488), + [sym_labeled_block] = STATE(8488), + [sym_if_statement] = STATE(8488), + [sym_while_statement] = STATE(8488), + [sym_for_statement] = STATE(8488), + [sym_match_statement] = STATE(8488), + [sym__value] = STATE(8488), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4650)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4652), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7318), + }, + [STATE(4651)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4655), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7320), + }, + [STATE(4652)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4653)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4656), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7322), + }, + [STATE(4654)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4657), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7324), + }, + [STATE(4655)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4656)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4657)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4658)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4267), + [sym_labeled_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_match_statement] = STATE(4267), + [sym__value] = STATE(4267), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4660), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7326), + }, + [STATE(4659)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4663), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7328), + }, + [STATE(4660)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4661)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7330), + }, + [STATE(4662)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4665), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7332), + }, + [STATE(4663)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4664)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4665)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4666)] = { + [ts_builtin_sym_end] = ACTIONS(5636), + [sym_identifier] = ACTIONS(5638), + [anon_sym_import] = ACTIONS(5638), + [anon_sym_test] = ACTIONS(5638), + [anon_sym_hide] = ACTIONS(5638), + [anon_sym_func] = ACTIONS(5638), + [anon_sym_BANG] = ACTIONS(5638), + [anon_sym_struct] = ACTIONS(5638), + [anon_sym_LPAREN] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_DOLLAR] = ACTIONS(5636), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_void] = ACTIONS(5638), + [anon_sym_noreturn] = ACTIONS(5638), + [anon_sym_type] = ACTIONS(5638), + [anon_sym_anyopaque] = ACTIONS(5638), + [anon_sym_bool] = ACTIONS(5638), + [anon_sym_int] = ACTIONS(5638), + [anon_sym_uint] = ACTIONS(5638), + [anon_sym_float] = ACTIONS(5638), + [anon_sym_range] = ACTIONS(5638), + [anon_sym_i8] = ACTIONS(5638), + [anon_sym_i16] = ACTIONS(5638), + [anon_sym_i32] = ACTIONS(5638), + [anon_sym_i64] = ACTIONS(5638), + [anon_sym_u8] = ACTIONS(5638), + [anon_sym_u16] = ACTIONS(5638), + [anon_sym_u32] = ACTIONS(5638), + [anon_sym_u64] = ACTIONS(5638), + [anon_sym_isize] = ACTIONS(5638), + [anon_sym_usize] = ACTIONS(5638), + [anon_sym_f32] = ACTIONS(5638), + [anon_sym_f64] = ACTIONS(5638), + [anon_sym_c_char] = ACTIONS(5638), + [anon_sym_c_schar] = ACTIONS(5638), + [anon_sym_c_uchar] = ACTIONS(5638), + [anon_sym_c_short] = ACTIONS(5638), + [anon_sym_c_ushort] = ACTIONS(5638), + [anon_sym_c_int] = ACTIONS(5638), + [anon_sym_c_uint] = ACTIONS(5638), + [anon_sym_c_long] = ACTIONS(5638), + [anon_sym_c_ulong] = ACTIONS(5638), + [anon_sym_c_longlong] = ACTIONS(5638), + [anon_sym_c_ulonglong] = ACTIONS(5638), + [anon_sym_c_float] = ACTIONS(5638), + [anon_sym_c_double] = ACTIONS(5638), + [anon_sym_c_longdouble] = ACTIONS(5638), + [anon_sym_return] = ACTIONS(5638), + [anon_sym_yield] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_break] = ACTIONS(5638), + [anon_sym_continue] = ACTIONS(5638), + [anon_sym_defer] = ACTIONS(5638), + [anon_sym_errdefer] = ACTIONS(5638), + [anon_sym_if] = ACTIONS(5638), + [anon_sym_else] = ACTIONS(5638), + [anon_sym_while] = ACTIONS(5638), + [anon_sym_expand] = ACTIONS(5638), + [anon_sym_for] = ACTIONS(5638), + [anon_sym_match] = ACTIONS(5638), + [anon_sym_DOT_DOT] = ACTIONS(5638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5636), + [anon_sym_orelse] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5638), + [anon_sym_and] = ACTIONS(5638), + [anon_sym_EQ_EQ] = ACTIONS(5636), + [anon_sym_BANG_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_GT] = ACTIONS(5638), + [anon_sym_GT_EQ] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_xor] = ACTIONS(5638), + [anon_sym_LT_LT] = ACTIONS(5638), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym_LT_LT_PIPE] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_catch] = ACTIONS(5638), + [anon_sym_TILDE] = ACTIONS(5636), + [anon_sym_try] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5638), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_true] = ACTIONS(5638), + [anon_sym_false] = ACTIONS(5638), + [anon_sym_null] = ACTIONS(5638), + [anon_sym_unreachable] = ACTIONS(5638), + [anon_sym_undefined] = ACTIONS(5638), + [sym_sink] = ACTIONS(5638), + [sym_integer] = ACTIONS(5638), + [sym_float] = ACTIONS(5636), + [anon_sym_DQUOTE] = ACTIONS(5636), + [sym_multiline_string] = ACTIONS(5636), + [sym_character] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5636), + }, + [STATE(4667)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4341), + [sym_labeled_block] = STATE(4341), + [sym_if_statement] = STATE(4341), + [sym_while_statement] = STATE(4341), + [sym_for_statement] = STATE(4341), + [sym_match_statement] = STATE(4341), + [sym__value] = STATE(4341), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4668)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9651), + [sym_error_capture] = STATE(4984), + [sym_if_statement] = STATE(9651), + [sym_while_statement] = STATE(9651), + [sym_for_statement] = STATE(9651), + [sym_match_statement] = STATE(9651), + [sym_expression] = STATE(9654), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4985), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7334), + }, + [STATE(4669)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9549), + [sym_labeled_block] = STATE(9549), + [sym_if_statement] = STATE(9549), + [sym_while_statement] = STATE(9549), + [sym_for_statement] = STATE(9549), + [sym_match_statement] = STATE(9549), + [sym__value] = STATE(9549), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7336), + }, + [STATE(4670)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9522), + [sym_labeled_block] = STATE(9522), + [sym_if_statement] = STATE(9522), + [sym_while_statement] = STATE(9522), + [sym_for_statement] = STATE(9522), + [sym_match_statement] = STATE(9522), + [sym__value] = STATE(9522), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4671)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9523), + [sym_labeled_block] = STATE(9523), + [sym_if_statement] = STATE(9523), + [sym_while_statement] = STATE(9523), + [sym_for_statement] = STATE(9523), + [sym_match_statement] = STATE(9523), + [sym__value] = STATE(9523), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4673), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7338), + }, + [STATE(4672)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9584), + [sym_labeled_block] = STATE(9584), + [sym_if_statement] = STATE(9584), + [sym_while_statement] = STATE(9584), + [sym_for_statement] = STATE(9584), + [sym_match_statement] = STATE(9584), + [sym__value] = STATE(9584), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4674), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7340), + }, + [STATE(4673)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9611), + [sym_labeled_block] = STATE(9611), + [sym_if_statement] = STATE(9611), + [sym_while_statement] = STATE(9611), + [sym_for_statement] = STATE(9611), + [sym_match_statement] = STATE(9611), + [sym__value] = STATE(9611), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4674)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9615), + [sym_labeled_block] = STATE(9615), + [sym_if_statement] = STATE(9615), + [sym_while_statement] = STATE(9615), + [sym_for_statement] = STATE(9615), + [sym_match_statement] = STATE(9615), + [sym__value] = STATE(9615), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4675)] = { + [ts_builtin_sym_end] = ACTIONS(5238), + [sym_identifier] = ACTIONS(5240), + [anon_sym_import] = ACTIONS(5240), + [anon_sym_test] = ACTIONS(5240), + [anon_sym_hide] = ACTIONS(5240), + [anon_sym_func] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_struct] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5238), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_void] = ACTIONS(5240), + [anon_sym_noreturn] = ACTIONS(5240), + [anon_sym_type] = ACTIONS(5240), + [anon_sym_anyopaque] = ACTIONS(5240), + [anon_sym_bool] = ACTIONS(5240), + [anon_sym_int] = ACTIONS(5240), + [anon_sym_uint] = ACTIONS(5240), + [anon_sym_float] = ACTIONS(5240), + [anon_sym_range] = ACTIONS(5240), + [anon_sym_i8] = ACTIONS(5240), + [anon_sym_i16] = ACTIONS(5240), + [anon_sym_i32] = ACTIONS(5240), + [anon_sym_i64] = ACTIONS(5240), + [anon_sym_u8] = ACTIONS(5240), + [anon_sym_u16] = ACTIONS(5240), + [anon_sym_u32] = ACTIONS(5240), + [anon_sym_u64] = ACTIONS(5240), + [anon_sym_isize] = ACTIONS(5240), + [anon_sym_usize] = ACTIONS(5240), + [anon_sym_f32] = ACTIONS(5240), + [anon_sym_f64] = ACTIONS(5240), + [anon_sym_c_char] = ACTIONS(5240), + [anon_sym_c_schar] = ACTIONS(5240), + [anon_sym_c_uchar] = ACTIONS(5240), + [anon_sym_c_short] = ACTIONS(5240), + [anon_sym_c_ushort] = ACTIONS(5240), + [anon_sym_c_int] = ACTIONS(5240), + [anon_sym_c_uint] = ACTIONS(5240), + [anon_sym_c_long] = ACTIONS(5240), + [anon_sym_c_ulong] = ACTIONS(5240), + [anon_sym_c_longlong] = ACTIONS(5240), + [anon_sym_c_ulonglong] = ACTIONS(5240), + [anon_sym_c_float] = ACTIONS(5240), + [anon_sym_c_double] = ACTIONS(5240), + [anon_sym_c_longdouble] = ACTIONS(5240), + [anon_sym_return] = ACTIONS(5240), + [anon_sym_yield] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_break] = ACTIONS(5240), + [anon_sym_continue] = ACTIONS(5240), + [anon_sym_defer] = ACTIONS(5240), + [anon_sym_errdefer] = ACTIONS(5240), + [anon_sym_if] = ACTIONS(5240), + [anon_sym_else] = ACTIONS(5240), + [anon_sym_while] = ACTIONS(5240), + [anon_sym_expand] = ACTIONS(5240), + [anon_sym_for] = ACTIONS(5240), + [anon_sym_match] = ACTIONS(5240), + [anon_sym_DOT_DOT] = ACTIONS(5240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5238), + [anon_sym_orelse] = ACTIONS(5240), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_and] = ACTIONS(5240), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_xor] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5240), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_LT_LT_PIPE] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5238), + [anon_sym_catch] = ACTIONS(5240), + [anon_sym_TILDE] = ACTIONS(5238), + [anon_sym_try] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_true] = ACTIONS(5240), + [anon_sym_false] = ACTIONS(5240), + [anon_sym_null] = ACTIONS(5240), + [anon_sym_unreachable] = ACTIONS(5240), + [anon_sym_undefined] = ACTIONS(5240), + [sym_sink] = ACTIONS(5240), + [sym_integer] = ACTIONS(5240), + [sym_float] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [sym_multiline_string] = ACTIONS(5238), + [sym_character] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5238), + }, + [STATE(4676)] = { + [ts_builtin_sym_end] = ACTIONS(5242), + [sym_identifier] = ACTIONS(5244), + [anon_sym_import] = ACTIONS(5244), + [anon_sym_test] = ACTIONS(5244), + [anon_sym_hide] = ACTIONS(5244), + [anon_sym_func] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_struct] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_DASH] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5242), + [anon_sym_QMARK] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_void] = ACTIONS(5244), + [anon_sym_noreturn] = ACTIONS(5244), + [anon_sym_type] = ACTIONS(5244), + [anon_sym_anyopaque] = ACTIONS(5244), + [anon_sym_bool] = ACTIONS(5244), + [anon_sym_int] = ACTIONS(5244), + [anon_sym_uint] = ACTIONS(5244), + [anon_sym_float] = ACTIONS(5244), + [anon_sym_range] = ACTIONS(5244), + [anon_sym_i8] = ACTIONS(5244), + [anon_sym_i16] = ACTIONS(5244), + [anon_sym_i32] = ACTIONS(5244), + [anon_sym_i64] = ACTIONS(5244), + [anon_sym_u8] = ACTIONS(5244), + [anon_sym_u16] = ACTIONS(5244), + [anon_sym_u32] = ACTIONS(5244), + [anon_sym_u64] = ACTIONS(5244), + [anon_sym_isize] = ACTIONS(5244), + [anon_sym_usize] = ACTIONS(5244), + [anon_sym_f32] = ACTIONS(5244), + [anon_sym_f64] = ACTIONS(5244), + [anon_sym_c_char] = ACTIONS(5244), + [anon_sym_c_schar] = ACTIONS(5244), + [anon_sym_c_uchar] = ACTIONS(5244), + [anon_sym_c_short] = ACTIONS(5244), + [anon_sym_c_ushort] = ACTIONS(5244), + [anon_sym_c_int] = ACTIONS(5244), + [anon_sym_c_uint] = ACTIONS(5244), + [anon_sym_c_long] = ACTIONS(5244), + [anon_sym_c_ulong] = ACTIONS(5244), + [anon_sym_c_longlong] = ACTIONS(5244), + [anon_sym_c_ulonglong] = ACTIONS(5244), + [anon_sym_c_float] = ACTIONS(5244), + [anon_sym_c_double] = ACTIONS(5244), + [anon_sym_c_longdouble] = ACTIONS(5244), + [anon_sym_return] = ACTIONS(5244), + [anon_sym_yield] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5242), + [anon_sym_break] = ACTIONS(5244), + [anon_sym_continue] = ACTIONS(5244), + [anon_sym_defer] = ACTIONS(5244), + [anon_sym_errdefer] = ACTIONS(5244), + [anon_sym_if] = ACTIONS(5244), + [anon_sym_else] = ACTIONS(5244), + [anon_sym_while] = ACTIONS(5244), + [anon_sym_expand] = ACTIONS(5244), + [anon_sym_for] = ACTIONS(5244), + [anon_sym_match] = ACTIONS(5244), + [anon_sym_DOT_DOT] = ACTIONS(5244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5242), + [anon_sym_orelse] = ACTIONS(5244), + [anon_sym_or] = ACTIONS(5244), + [anon_sym_and] = ACTIONS(5244), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_AMP] = ACTIONS(5242), + [anon_sym_xor] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5244), + [anon_sym_GT_GT] = ACTIONS(5242), + [anon_sym_LT_LT_PIPE] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5242), + [anon_sym_SLASH] = ACTIONS(5242), + [anon_sym_catch] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5242), + [anon_sym_try] = ACTIONS(5244), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_true] = ACTIONS(5244), + [anon_sym_false] = ACTIONS(5244), + [anon_sym_null] = ACTIONS(5244), + [anon_sym_unreachable] = ACTIONS(5244), + [anon_sym_undefined] = ACTIONS(5244), + [sym_sink] = ACTIONS(5244), + [sym_integer] = ACTIONS(5244), + [sym_float] = ACTIONS(5242), + [anon_sym_DQUOTE] = ACTIONS(5242), + [sym_multiline_string] = ACTIONS(5242), + [sym_character] = ACTIONS(5242), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5242), + }, + [STATE(4677)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2178), + [sym_labeled_block] = STATE(2178), + [sym_if_statement] = STATE(2178), + [sym_while_statement] = STATE(2178), + [sym_for_statement] = STATE(2178), + [sym_match_statement] = STATE(2178), + [sym__value] = STATE(2178), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4680), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7342), + }, + [STATE(4678)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2181), + [sym_labeled_block] = STATE(2181), + [sym_if_statement] = STATE(2181), + [sym_while_statement] = STATE(2181), + [sym_for_statement] = STATE(2181), + [sym_match_statement] = STATE(2181), + [sym__value] = STATE(2181), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4683), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7344), + }, + [STATE(4679)] = { + [ts_builtin_sym_end] = ACTIONS(5246), + [sym_identifier] = ACTIONS(5248), + [anon_sym_import] = ACTIONS(5248), + [anon_sym_test] = ACTIONS(5248), + [anon_sym_hide] = ACTIONS(5248), + [anon_sym_func] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_struct] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_DASH] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5246), + [anon_sym_QMARK] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_void] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym_type] = ACTIONS(5248), + [anon_sym_anyopaque] = ACTIONS(5248), + [anon_sym_bool] = ACTIONS(5248), + [anon_sym_int] = ACTIONS(5248), + [anon_sym_uint] = ACTIONS(5248), + [anon_sym_float] = ACTIONS(5248), + [anon_sym_range] = ACTIONS(5248), + [anon_sym_i8] = ACTIONS(5248), + [anon_sym_i16] = ACTIONS(5248), + [anon_sym_i32] = ACTIONS(5248), + [anon_sym_i64] = ACTIONS(5248), + [anon_sym_u8] = ACTIONS(5248), + [anon_sym_u16] = ACTIONS(5248), + [anon_sym_u32] = ACTIONS(5248), + [anon_sym_u64] = ACTIONS(5248), + [anon_sym_isize] = ACTIONS(5248), + [anon_sym_usize] = ACTIONS(5248), + [anon_sym_f32] = ACTIONS(5248), + [anon_sym_f64] = ACTIONS(5248), + [anon_sym_c_char] = ACTIONS(5248), + [anon_sym_c_schar] = ACTIONS(5248), + [anon_sym_c_uchar] = ACTIONS(5248), + [anon_sym_c_short] = ACTIONS(5248), + [anon_sym_c_ushort] = ACTIONS(5248), + [anon_sym_c_int] = ACTIONS(5248), + [anon_sym_c_uint] = ACTIONS(5248), + [anon_sym_c_long] = ACTIONS(5248), + [anon_sym_c_ulong] = ACTIONS(5248), + [anon_sym_c_longlong] = ACTIONS(5248), + [anon_sym_c_ulonglong] = ACTIONS(5248), + [anon_sym_c_float] = ACTIONS(5248), + [anon_sym_c_double] = ACTIONS(5248), + [anon_sym_c_longdouble] = ACTIONS(5248), + [anon_sym_return] = ACTIONS(5248), + [anon_sym_yield] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5246), + [anon_sym_break] = ACTIONS(5248), + [anon_sym_continue] = ACTIONS(5248), + [anon_sym_defer] = ACTIONS(5248), + [anon_sym_errdefer] = ACTIONS(5248), + [anon_sym_if] = ACTIONS(5248), + [anon_sym_else] = ACTIONS(5248), + [anon_sym_while] = ACTIONS(5248), + [anon_sym_expand] = ACTIONS(5248), + [anon_sym_for] = ACTIONS(5248), + [anon_sym_match] = ACTIONS(5248), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5246), + [anon_sym_orelse] = ACTIONS(5248), + [anon_sym_or] = ACTIONS(5248), + [anon_sym_and] = ACTIONS(5248), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_xor] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5248), + [anon_sym_GT_GT] = ACTIONS(5246), + [anon_sym_LT_LT_PIPE] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5246), + [anon_sym_catch] = ACTIONS(5248), + [anon_sym_TILDE] = ACTIONS(5246), + [anon_sym_try] = ACTIONS(5248), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_true] = ACTIONS(5248), + [anon_sym_false] = ACTIONS(5248), + [anon_sym_null] = ACTIONS(5248), + [anon_sym_unreachable] = ACTIONS(5248), + [anon_sym_undefined] = ACTIONS(5248), + [sym_sink] = ACTIONS(5248), + [sym_integer] = ACTIONS(5248), + [sym_float] = ACTIONS(5246), + [anon_sym_DQUOTE] = ACTIONS(5246), + [sym_multiline_string] = ACTIONS(5246), + [sym_character] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5246), + }, + [STATE(4680)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2194), + [sym_labeled_block] = STATE(2194), + [sym_if_statement] = STATE(2194), + [sym_while_statement] = STATE(2194), + [sym_for_statement] = STATE(2194), + [sym_match_statement] = STATE(2194), + [sym__value] = STATE(2194), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4681)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2195), + [sym_labeled_block] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_for_statement] = STATE(2195), + [sym_match_statement] = STATE(2195), + [sym__value] = STATE(2195), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4684), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7346), + }, + [STATE(4682)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2198), + [sym_labeled_block] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_match_statement] = STATE(2198), + [sym__value] = STATE(2198), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4685), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7348), + }, + [STATE(4683)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2199), + [sym_labeled_block] = STATE(2199), + [sym_if_statement] = STATE(2199), + [sym_while_statement] = STATE(2199), + [sym_for_statement] = STATE(2199), + [sym_match_statement] = STATE(2199), + [sym__value] = STATE(2199), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4684)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2208), + [sym_labeled_block] = STATE(2208), + [sym_if_statement] = STATE(2208), + [sym_while_statement] = STATE(2208), + [sym_for_statement] = STATE(2208), + [sym_match_statement] = STATE(2208), + [sym__value] = STATE(2208), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4685)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2213), + [sym_labeled_block] = STATE(2213), + [sym_if_statement] = STATE(2213), + [sym_while_statement] = STATE(2213), + [sym_for_statement] = STATE(2213), + [sym_match_statement] = STATE(2213), + [sym__value] = STATE(2213), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4686)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4342), + [sym_labeled_block] = STATE(4342), + [sym_if_statement] = STATE(4342), + [sym_while_statement] = STATE(4342), + [sym_for_statement] = STATE(4342), + [sym_match_statement] = STATE(4342), + [sym__value] = STATE(4342), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4738), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7350), + }, + [STATE(4687)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4347), + [sym_labeled_block] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_while_statement] = STATE(4347), + [sym_for_statement] = STATE(4347), + [sym_match_statement] = STATE(4347), + [sym__value] = STATE(4347), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7352), + }, + [STATE(4688)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8694), + [sym_labeled_block] = STATE(8694), + [sym_if_statement] = STATE(8694), + [sym_while_statement] = STATE(8694), + [sym_for_statement] = STATE(8694), + [sym_match_statement] = STATE(8694), + [sym__value] = STATE(8694), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4690), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7354), + }, + [STATE(4689)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8392), + [sym_labeled_block] = STATE(8392), + [sym_if_statement] = STATE(8392), + [sym_while_statement] = STATE(8392), + [sym_for_statement] = STATE(8392), + [sym_match_statement] = STATE(8392), + [sym__value] = STATE(8392), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7356), + }, + [STATE(4690)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8666), + [sym_labeled_block] = STATE(8666), + [sym_if_statement] = STATE(8666), + [sym_while_statement] = STATE(8666), + [sym_for_statement] = STATE(8666), + [sym_match_statement] = STATE(8666), + [sym__value] = STATE(8666), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4691)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8588), + [sym_labeled_block] = STATE(8588), + [sym_if_statement] = STATE(8588), + [sym_while_statement] = STATE(8588), + [sym_for_statement] = STATE(8588), + [sym_match_statement] = STATE(8588), + [sym__value] = STATE(8588), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4697), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7358), + }, + [STATE(4692)] = { + [ts_builtin_sym_end] = ACTIONS(5458), + [sym_identifier] = ACTIONS(5460), + [anon_sym_import] = ACTIONS(5460), + [anon_sym_test] = ACTIONS(5460), + [anon_sym_hide] = ACTIONS(5460), + [anon_sym_func] = ACTIONS(5460), + [anon_sym_BANG] = ACTIONS(5460), + [anon_sym_struct] = ACTIONS(5460), + [anon_sym_LPAREN] = ACTIONS(5458), + [anon_sym_LBRACE] = ACTIONS(5458), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_DASH] = ACTIONS(5458), + [anon_sym_DOLLAR] = ACTIONS(5458), + [anon_sym_PIPE] = ACTIONS(5458), + [anon_sym_QMARK] = ACTIONS(5458), + [anon_sym_STAR] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_void] = ACTIONS(5460), + [anon_sym_noreturn] = ACTIONS(5460), + [anon_sym_type] = ACTIONS(5460), + [anon_sym_anyopaque] = ACTIONS(5460), + [anon_sym_bool] = ACTIONS(5460), + [anon_sym_int] = ACTIONS(5460), + [anon_sym_uint] = ACTIONS(5460), + [anon_sym_float] = ACTIONS(5460), + [anon_sym_range] = ACTIONS(5460), + [anon_sym_i8] = ACTIONS(5460), + [anon_sym_i16] = ACTIONS(5460), + [anon_sym_i32] = ACTIONS(5460), + [anon_sym_i64] = ACTIONS(5460), + [anon_sym_u8] = ACTIONS(5460), + [anon_sym_u16] = ACTIONS(5460), + [anon_sym_u32] = ACTIONS(5460), + [anon_sym_u64] = ACTIONS(5460), + [anon_sym_isize] = ACTIONS(5460), + [anon_sym_usize] = ACTIONS(5460), + [anon_sym_f32] = ACTIONS(5460), + [anon_sym_f64] = ACTIONS(5460), + [anon_sym_c_char] = ACTIONS(5460), + [anon_sym_c_schar] = ACTIONS(5460), + [anon_sym_c_uchar] = ACTIONS(5460), + [anon_sym_c_short] = ACTIONS(5460), + [anon_sym_c_ushort] = ACTIONS(5460), + [anon_sym_c_int] = ACTIONS(5460), + [anon_sym_c_uint] = ACTIONS(5460), + [anon_sym_c_long] = ACTIONS(5460), + [anon_sym_c_ulong] = ACTIONS(5460), + [anon_sym_c_longlong] = ACTIONS(5460), + [anon_sym_c_ulonglong] = ACTIONS(5460), + [anon_sym_c_float] = ACTIONS(5460), + [anon_sym_c_double] = ACTIONS(5460), + [anon_sym_c_longdouble] = ACTIONS(5460), + [anon_sym_return] = ACTIONS(5460), + [anon_sym_yield] = ACTIONS(5460), + [anon_sym_COLON] = ACTIONS(5458), + [anon_sym_break] = ACTIONS(5460), + [anon_sym_continue] = ACTIONS(5460), + [anon_sym_defer] = ACTIONS(5460), + [anon_sym_errdefer] = ACTIONS(5460), + [anon_sym_if] = ACTIONS(5460), + [anon_sym_else] = ACTIONS(5460), + [anon_sym_while] = ACTIONS(5460), + [anon_sym_expand] = ACTIONS(5460), + [anon_sym_for] = ACTIONS(5460), + [anon_sym_match] = ACTIONS(5460), + [anon_sym_DOT_DOT] = ACTIONS(5460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5458), + [anon_sym_orelse] = ACTIONS(5460), + [anon_sym_or] = ACTIONS(5460), + [anon_sym_and] = ACTIONS(5460), + [anon_sym_EQ_EQ] = ACTIONS(5458), + [anon_sym_BANG_EQ] = ACTIONS(5458), + [anon_sym_LT] = ACTIONS(5460), + [anon_sym_LT_EQ] = ACTIONS(5458), + [anon_sym_GT] = ACTIONS(5460), + [anon_sym_GT_EQ] = ACTIONS(5458), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_xor] = ACTIONS(5460), + [anon_sym_LT_LT] = ACTIONS(5460), + [anon_sym_GT_GT] = ACTIONS(5458), + [anon_sym_LT_LT_PIPE] = ACTIONS(5458), + [anon_sym_PLUS] = ACTIONS(5458), + [anon_sym_SLASH] = ACTIONS(5458), + [anon_sym_catch] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5458), + [anon_sym_try] = ACTIONS(5460), + [anon_sym_DOT] = ACTIONS(5460), + [anon_sym_CARET] = ACTIONS(5458), + [anon_sym_true] = ACTIONS(5460), + [anon_sym_false] = ACTIONS(5460), + [anon_sym_null] = ACTIONS(5460), + [anon_sym_unreachable] = ACTIONS(5460), + [anon_sym_undefined] = ACTIONS(5460), + [sym_sink] = ACTIONS(5460), + [sym_integer] = ACTIONS(5460), + [sym_float] = ACTIONS(5458), + [anon_sym_DQUOTE] = ACTIONS(5458), + [sym_multiline_string] = ACTIONS(5458), + [sym_character] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5458), + }, + [STATE(4693)] = { + [ts_builtin_sym_end] = ACTIONS(5462), + [sym_identifier] = ACTIONS(5464), + [anon_sym_import] = ACTIONS(5464), + [anon_sym_test] = ACTIONS(5464), + [anon_sym_hide] = ACTIONS(5464), + [anon_sym_func] = ACTIONS(5464), + [anon_sym_BANG] = ACTIONS(5464), + [anon_sym_struct] = ACTIONS(5464), + [anon_sym_LPAREN] = ACTIONS(5462), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_DASH] = ACTIONS(5462), + [anon_sym_DOLLAR] = ACTIONS(5462), + [anon_sym_PIPE] = ACTIONS(5462), + [anon_sym_QMARK] = ACTIONS(5462), + [anon_sym_STAR] = ACTIONS(5462), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_void] = ACTIONS(5464), + [anon_sym_noreturn] = ACTIONS(5464), + [anon_sym_type] = ACTIONS(5464), + [anon_sym_anyopaque] = ACTIONS(5464), + [anon_sym_bool] = ACTIONS(5464), + [anon_sym_int] = ACTIONS(5464), + [anon_sym_uint] = ACTIONS(5464), + [anon_sym_float] = ACTIONS(5464), + [anon_sym_range] = ACTIONS(5464), + [anon_sym_i8] = ACTIONS(5464), + [anon_sym_i16] = ACTIONS(5464), + [anon_sym_i32] = ACTIONS(5464), + [anon_sym_i64] = ACTIONS(5464), + [anon_sym_u8] = ACTIONS(5464), + [anon_sym_u16] = ACTIONS(5464), + [anon_sym_u32] = ACTIONS(5464), + [anon_sym_u64] = ACTIONS(5464), + [anon_sym_isize] = ACTIONS(5464), + [anon_sym_usize] = ACTIONS(5464), + [anon_sym_f32] = ACTIONS(5464), + [anon_sym_f64] = ACTIONS(5464), + [anon_sym_c_char] = ACTIONS(5464), + [anon_sym_c_schar] = ACTIONS(5464), + [anon_sym_c_uchar] = ACTIONS(5464), + [anon_sym_c_short] = ACTIONS(5464), + [anon_sym_c_ushort] = ACTIONS(5464), + [anon_sym_c_int] = ACTIONS(5464), + [anon_sym_c_uint] = ACTIONS(5464), + [anon_sym_c_long] = ACTIONS(5464), + [anon_sym_c_ulong] = ACTIONS(5464), + [anon_sym_c_longlong] = ACTIONS(5464), + [anon_sym_c_ulonglong] = ACTIONS(5464), + [anon_sym_c_float] = ACTIONS(5464), + [anon_sym_c_double] = ACTIONS(5464), + [anon_sym_c_longdouble] = ACTIONS(5464), + [anon_sym_return] = ACTIONS(5464), + [anon_sym_yield] = ACTIONS(5464), + [anon_sym_COLON] = ACTIONS(5462), + [anon_sym_break] = ACTIONS(5464), + [anon_sym_continue] = ACTIONS(5464), + [anon_sym_defer] = ACTIONS(5464), + [anon_sym_errdefer] = ACTIONS(5464), + [anon_sym_if] = ACTIONS(5464), + [anon_sym_else] = ACTIONS(5464), + [anon_sym_while] = ACTIONS(5464), + [anon_sym_expand] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(5464), + [anon_sym_match] = ACTIONS(5464), + [anon_sym_DOT_DOT] = ACTIONS(5464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5462), + [anon_sym_orelse] = ACTIONS(5464), + [anon_sym_or] = ACTIONS(5464), + [anon_sym_and] = ACTIONS(5464), + [anon_sym_EQ_EQ] = ACTIONS(5462), + [anon_sym_BANG_EQ] = ACTIONS(5462), + [anon_sym_LT] = ACTIONS(5464), + [anon_sym_LT_EQ] = ACTIONS(5462), + [anon_sym_GT] = ACTIONS(5464), + [anon_sym_GT_EQ] = ACTIONS(5462), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_xor] = ACTIONS(5464), + [anon_sym_LT_LT] = ACTIONS(5464), + [anon_sym_GT_GT] = ACTIONS(5462), + [anon_sym_LT_LT_PIPE] = ACTIONS(5462), + [anon_sym_PLUS] = ACTIONS(5462), + [anon_sym_SLASH] = ACTIONS(5462), + [anon_sym_catch] = ACTIONS(5464), + [anon_sym_TILDE] = ACTIONS(5462), + [anon_sym_try] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5464), + [anon_sym_CARET] = ACTIONS(5462), + [anon_sym_true] = ACTIONS(5464), + [anon_sym_false] = ACTIONS(5464), + [anon_sym_null] = ACTIONS(5464), + [anon_sym_unreachable] = ACTIONS(5464), + [anon_sym_undefined] = ACTIONS(5464), + [sym_sink] = ACTIONS(5464), + [sym_integer] = ACTIONS(5464), + [sym_float] = ACTIONS(5462), + [anon_sym_DQUOTE] = ACTIONS(5462), + [sym_multiline_string] = ACTIONS(5462), + [sym_character] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5462), + }, + [STATE(4694)] = { + [ts_builtin_sym_end] = ACTIONS(5466), + [sym_identifier] = ACTIONS(5468), + [anon_sym_import] = ACTIONS(5468), + [anon_sym_test] = ACTIONS(5468), + [anon_sym_hide] = ACTIONS(5468), + [anon_sym_func] = ACTIONS(5468), + [anon_sym_BANG] = ACTIONS(5468), + [anon_sym_struct] = ACTIONS(5468), + [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5466), + [anon_sym_RBRACE] = ACTIONS(5466), + [anon_sym_DASH] = ACTIONS(5466), + [anon_sym_DOLLAR] = ACTIONS(5466), + [anon_sym_PIPE] = ACTIONS(5466), + [anon_sym_QMARK] = ACTIONS(5466), + [anon_sym_STAR] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_void] = ACTIONS(5468), + [anon_sym_noreturn] = ACTIONS(5468), + [anon_sym_type] = ACTIONS(5468), + [anon_sym_anyopaque] = ACTIONS(5468), + [anon_sym_bool] = ACTIONS(5468), + [anon_sym_int] = ACTIONS(5468), + [anon_sym_uint] = ACTIONS(5468), + [anon_sym_float] = ACTIONS(5468), + [anon_sym_range] = ACTIONS(5468), + [anon_sym_i8] = ACTIONS(5468), + [anon_sym_i16] = ACTIONS(5468), + [anon_sym_i32] = ACTIONS(5468), + [anon_sym_i64] = ACTIONS(5468), + [anon_sym_u8] = ACTIONS(5468), + [anon_sym_u16] = ACTIONS(5468), + [anon_sym_u32] = ACTIONS(5468), + [anon_sym_u64] = ACTIONS(5468), + [anon_sym_isize] = ACTIONS(5468), + [anon_sym_usize] = ACTIONS(5468), + [anon_sym_f32] = ACTIONS(5468), + [anon_sym_f64] = ACTIONS(5468), + [anon_sym_c_char] = ACTIONS(5468), + [anon_sym_c_schar] = ACTIONS(5468), + [anon_sym_c_uchar] = ACTIONS(5468), + [anon_sym_c_short] = ACTIONS(5468), + [anon_sym_c_ushort] = ACTIONS(5468), + [anon_sym_c_int] = ACTIONS(5468), + [anon_sym_c_uint] = ACTIONS(5468), + [anon_sym_c_long] = ACTIONS(5468), + [anon_sym_c_ulong] = ACTIONS(5468), + [anon_sym_c_longlong] = ACTIONS(5468), + [anon_sym_c_ulonglong] = ACTIONS(5468), + [anon_sym_c_float] = ACTIONS(5468), + [anon_sym_c_double] = ACTIONS(5468), + [anon_sym_c_longdouble] = ACTIONS(5468), + [anon_sym_return] = ACTIONS(5468), + [anon_sym_yield] = ACTIONS(5468), + [anon_sym_COLON] = ACTIONS(5466), + [anon_sym_break] = ACTIONS(5468), + [anon_sym_continue] = ACTIONS(5468), + [anon_sym_defer] = ACTIONS(5468), + [anon_sym_errdefer] = ACTIONS(5468), + [anon_sym_if] = ACTIONS(5468), + [anon_sym_else] = ACTIONS(5468), + [anon_sym_while] = ACTIONS(5468), + [anon_sym_expand] = ACTIONS(5468), + [anon_sym_for] = ACTIONS(5468), + [anon_sym_match] = ACTIONS(5468), + [anon_sym_DOT_DOT] = ACTIONS(5468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5466), + [anon_sym_orelse] = ACTIONS(5468), + [anon_sym_or] = ACTIONS(5468), + [anon_sym_and] = ACTIONS(5468), + [anon_sym_EQ_EQ] = ACTIONS(5466), + [anon_sym_BANG_EQ] = ACTIONS(5466), + [anon_sym_LT] = ACTIONS(5468), + [anon_sym_LT_EQ] = ACTIONS(5466), + [anon_sym_GT] = ACTIONS(5468), + [anon_sym_GT_EQ] = ACTIONS(5466), + [anon_sym_AMP] = ACTIONS(5466), + [anon_sym_xor] = ACTIONS(5468), + [anon_sym_LT_LT] = ACTIONS(5468), + [anon_sym_GT_GT] = ACTIONS(5466), + [anon_sym_LT_LT_PIPE] = ACTIONS(5466), + [anon_sym_PLUS] = ACTIONS(5466), + [anon_sym_SLASH] = ACTIONS(5466), + [anon_sym_catch] = ACTIONS(5468), + [anon_sym_TILDE] = ACTIONS(5466), + [anon_sym_try] = ACTIONS(5468), + [anon_sym_DOT] = ACTIONS(5468), + [anon_sym_CARET] = ACTIONS(5466), + [anon_sym_true] = ACTIONS(5468), + [anon_sym_false] = ACTIONS(5468), + [anon_sym_null] = ACTIONS(5468), + [anon_sym_unreachable] = ACTIONS(5468), + [anon_sym_undefined] = ACTIONS(5468), + [sym_sink] = ACTIONS(5468), + [sym_integer] = ACTIONS(5468), + [sym_float] = ACTIONS(5466), + [anon_sym_DQUOTE] = ACTIONS(5466), + [sym_multiline_string] = ACTIONS(5466), + [sym_character] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5466), + }, + [STATE(4695)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8618), + [sym_labeled_block] = STATE(8618), + [sym_if_statement] = STATE(8618), + [sym_while_statement] = STATE(8618), + [sym_for_statement] = STATE(8618), + [sym_match_statement] = STATE(8618), + [sym__value] = STATE(8618), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4698), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7360), + }, + [STATE(4696)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8630), + [sym_labeled_block] = STATE(8630), + [sym_if_statement] = STATE(8630), + [sym_while_statement] = STATE(8630), + [sym_for_statement] = STATE(8630), + [sym_match_statement] = STATE(8630), + [sym__value] = STATE(8630), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4697)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8487), + [sym_labeled_block] = STATE(8487), + [sym_if_statement] = STATE(8487), + [sym_while_statement] = STATE(8487), + [sym_for_statement] = STATE(8487), + [sym_match_statement] = STATE(8487), + [sym__value] = STATE(8487), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4698)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8488), + [sym_labeled_block] = STATE(8488), + [sym_if_statement] = STATE(8488), + [sym_while_statement] = STATE(8488), + [sym_for_statement] = STATE(8488), + [sym_match_statement] = STATE(8488), + [sym__value] = STATE(8488), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4699)] = { + [ts_builtin_sym_end] = ACTIONS(5954), + [sym_identifier] = ACTIONS(5956), + [anon_sym_import] = ACTIONS(5956), + [anon_sym_test] = ACTIONS(5956), + [anon_sym_hide] = ACTIONS(5956), + [anon_sym_func] = ACTIONS(5956), + [anon_sym_BANG] = ACTIONS(5956), + [anon_sym_struct] = ACTIONS(5956), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5954), + [anon_sym_DOLLAR] = ACTIONS(5954), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_QMARK] = ACTIONS(5954), + [anon_sym_STAR] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_void] = ACTIONS(5956), + [anon_sym_noreturn] = ACTIONS(5956), + [anon_sym_type] = ACTIONS(5956), + [anon_sym_anyopaque] = ACTIONS(5956), + [anon_sym_bool] = ACTIONS(5956), + [anon_sym_int] = ACTIONS(5956), + [anon_sym_uint] = ACTIONS(5956), + [anon_sym_float] = ACTIONS(5956), + [anon_sym_range] = ACTIONS(5956), + [anon_sym_i8] = ACTIONS(5956), + [anon_sym_i16] = ACTIONS(5956), + [anon_sym_i32] = ACTIONS(5956), + [anon_sym_i64] = ACTIONS(5956), + [anon_sym_u8] = ACTIONS(5956), + [anon_sym_u16] = ACTIONS(5956), + [anon_sym_u32] = ACTIONS(5956), + [anon_sym_u64] = ACTIONS(5956), + [anon_sym_isize] = ACTIONS(5956), + [anon_sym_usize] = ACTIONS(5956), + [anon_sym_f32] = ACTIONS(5956), + [anon_sym_f64] = ACTIONS(5956), + [anon_sym_c_char] = ACTIONS(5956), + [anon_sym_c_schar] = ACTIONS(5956), + [anon_sym_c_uchar] = ACTIONS(5956), + [anon_sym_c_short] = ACTIONS(5956), + [anon_sym_c_ushort] = ACTIONS(5956), + [anon_sym_c_int] = ACTIONS(5956), + [anon_sym_c_uint] = ACTIONS(5956), + [anon_sym_c_long] = ACTIONS(5956), + [anon_sym_c_ulong] = ACTIONS(5956), + [anon_sym_c_longlong] = ACTIONS(5956), + [anon_sym_c_ulonglong] = ACTIONS(5956), + [anon_sym_c_float] = ACTIONS(5956), + [anon_sym_c_double] = ACTIONS(5956), + [anon_sym_c_longdouble] = ACTIONS(5956), + [anon_sym_return] = ACTIONS(5956), + [anon_sym_yield] = ACTIONS(5956), + [anon_sym_COLON] = ACTIONS(5954), + [anon_sym_break] = ACTIONS(5956), + [anon_sym_continue] = ACTIONS(5956), + [anon_sym_defer] = ACTIONS(5956), + [anon_sym_errdefer] = ACTIONS(5956), + [anon_sym_if] = ACTIONS(5956), + [anon_sym_else] = ACTIONS(5956), + [anon_sym_while] = ACTIONS(5956), + [anon_sym_expand] = ACTIONS(5956), + [anon_sym_for] = ACTIONS(5956), + [anon_sym_match] = ACTIONS(5956), + [anon_sym_DOT_DOT] = ACTIONS(5956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_orelse] = ACTIONS(5956), + [anon_sym_or] = ACTIONS(5956), + [anon_sym_and] = ACTIONS(5956), + [anon_sym_EQ_EQ] = ACTIONS(5954), + [anon_sym_BANG_EQ] = ACTIONS(5954), + [anon_sym_LT] = ACTIONS(5956), + [anon_sym_LT_EQ] = ACTIONS(5954), + [anon_sym_GT] = ACTIONS(5956), + [anon_sym_GT_EQ] = ACTIONS(5954), + [anon_sym_AMP] = ACTIONS(5954), + [anon_sym_xor] = ACTIONS(5956), + [anon_sym_LT_LT] = ACTIONS(5956), + [anon_sym_GT_GT] = ACTIONS(5954), + [anon_sym_LT_LT_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_SLASH] = ACTIONS(5954), + [anon_sym_catch] = ACTIONS(5956), + [anon_sym_TILDE] = ACTIONS(5954), + [anon_sym_try] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(7362), + [anon_sym_CARET] = ACTIONS(5954), + [anon_sym_true] = ACTIONS(5956), + [anon_sym_false] = ACTIONS(5956), + [anon_sym_null] = ACTIONS(5956), + [anon_sym_unreachable] = ACTIONS(5956), + [anon_sym_undefined] = ACTIONS(5956), + [sym_sink] = ACTIONS(5956), + [sym_integer] = ACTIONS(5956), + [sym_float] = ACTIONS(5954), + [anon_sym_DQUOTE] = ACTIONS(5954), + [sym_multiline_string] = ACTIONS(5954), + [sym_character] = ACTIONS(5954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5954), + }, + [STATE(4700)] = { + [ts_builtin_sym_end] = ACTIONS(5356), + [sym_identifier] = ACTIONS(5358), + [anon_sym_import] = ACTIONS(5358), + [anon_sym_test] = ACTIONS(5358), + [anon_sym_hide] = ACTIONS(5358), + [anon_sym_func] = ACTIONS(5358), + [anon_sym_BANG] = ACTIONS(5358), + [anon_sym_struct] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5356), + [anon_sym_LBRACE] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_void] = ACTIONS(5358), + [anon_sym_noreturn] = ACTIONS(5358), + [anon_sym_type] = ACTIONS(5358), + [anon_sym_anyopaque] = ACTIONS(5358), + [anon_sym_bool] = ACTIONS(5358), + [anon_sym_int] = ACTIONS(5358), + [anon_sym_uint] = ACTIONS(5358), + [anon_sym_float] = ACTIONS(5358), + [anon_sym_range] = ACTIONS(5358), + [anon_sym_i8] = ACTIONS(5358), + [anon_sym_i16] = ACTIONS(5358), + [anon_sym_i32] = ACTIONS(5358), + [anon_sym_i64] = ACTIONS(5358), + [anon_sym_u8] = ACTIONS(5358), + [anon_sym_u16] = ACTIONS(5358), + [anon_sym_u32] = ACTIONS(5358), + [anon_sym_u64] = ACTIONS(5358), + [anon_sym_isize] = ACTIONS(5358), + [anon_sym_usize] = ACTIONS(5358), + [anon_sym_f32] = ACTIONS(5358), + [anon_sym_f64] = ACTIONS(5358), + [anon_sym_c_char] = ACTIONS(5358), + [anon_sym_c_schar] = ACTIONS(5358), + [anon_sym_c_uchar] = ACTIONS(5358), + [anon_sym_c_short] = ACTIONS(5358), + [anon_sym_c_ushort] = ACTIONS(5358), + [anon_sym_c_int] = ACTIONS(5358), + [anon_sym_c_uint] = ACTIONS(5358), + [anon_sym_c_long] = ACTIONS(5358), + [anon_sym_c_ulong] = ACTIONS(5358), + [anon_sym_c_longlong] = ACTIONS(5358), + [anon_sym_c_ulonglong] = ACTIONS(5358), + [anon_sym_c_float] = ACTIONS(5358), + [anon_sym_c_double] = ACTIONS(5358), + [anon_sym_c_longdouble] = ACTIONS(5358), + [anon_sym_return] = ACTIONS(5358), + [anon_sym_yield] = ACTIONS(5358), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_break] = ACTIONS(5358), + [anon_sym_continue] = ACTIONS(5358), + [anon_sym_defer] = ACTIONS(5358), + [anon_sym_errdefer] = ACTIONS(5358), + [anon_sym_if] = ACTIONS(5358), + [anon_sym_else] = ACTIONS(5358), + [anon_sym_while] = ACTIONS(5358), + [anon_sym_expand] = ACTIONS(5358), + [anon_sym_for] = ACTIONS(5358), + [anon_sym_match] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5356), + [anon_sym_orelse] = ACTIONS(5358), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5356), + [anon_sym_BANG_EQ] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5356), + [anon_sym_xor] = ACTIONS(5358), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5356), + [anon_sym_LT_LT_PIPE] = ACTIONS(5356), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_catch] = ACTIONS(5358), + [anon_sym_TILDE] = ACTIONS(5356), + [anon_sym_try] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym_true] = ACTIONS(5358), + [anon_sym_false] = ACTIONS(5358), + [anon_sym_null] = ACTIONS(5358), + [anon_sym_unreachable] = ACTIONS(5358), + [anon_sym_undefined] = ACTIONS(5358), + [sym_sink] = ACTIONS(5358), + [sym_integer] = ACTIONS(5358), + [sym_float] = ACTIONS(5356), + [anon_sym_DQUOTE] = ACTIONS(5356), + [sym_multiline_string] = ACTIONS(5356), + [sym_character] = ACTIONS(5356), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5356), + }, + [STATE(4701)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4702)] = { + [ts_builtin_sym_end] = ACTIONS(5360), + [sym_identifier] = ACTIONS(5362), + [anon_sym_import] = ACTIONS(5362), + [anon_sym_test] = ACTIONS(5362), + [anon_sym_hide] = ACTIONS(5362), + [anon_sym_func] = ACTIONS(5362), + [anon_sym_BANG] = ACTIONS(5362), + [anon_sym_struct] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5360), + [anon_sym_LBRACE] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(5360), + [anon_sym_void] = ACTIONS(5362), + [anon_sym_noreturn] = ACTIONS(5362), + [anon_sym_type] = ACTIONS(5362), + [anon_sym_anyopaque] = ACTIONS(5362), + [anon_sym_bool] = ACTIONS(5362), + [anon_sym_int] = ACTIONS(5362), + [anon_sym_uint] = ACTIONS(5362), + [anon_sym_float] = ACTIONS(5362), + [anon_sym_range] = ACTIONS(5362), + [anon_sym_i8] = ACTIONS(5362), + [anon_sym_i16] = ACTIONS(5362), + [anon_sym_i32] = ACTIONS(5362), + [anon_sym_i64] = ACTIONS(5362), + [anon_sym_u8] = ACTIONS(5362), + [anon_sym_u16] = ACTIONS(5362), + [anon_sym_u32] = ACTIONS(5362), + [anon_sym_u64] = ACTIONS(5362), + [anon_sym_isize] = ACTIONS(5362), + [anon_sym_usize] = ACTIONS(5362), + [anon_sym_f32] = ACTIONS(5362), + [anon_sym_f64] = ACTIONS(5362), + [anon_sym_c_char] = ACTIONS(5362), + [anon_sym_c_schar] = ACTIONS(5362), + [anon_sym_c_uchar] = ACTIONS(5362), + [anon_sym_c_short] = ACTIONS(5362), + [anon_sym_c_ushort] = ACTIONS(5362), + [anon_sym_c_int] = ACTIONS(5362), + [anon_sym_c_uint] = ACTIONS(5362), + [anon_sym_c_long] = ACTIONS(5362), + [anon_sym_c_ulong] = ACTIONS(5362), + [anon_sym_c_longlong] = ACTIONS(5362), + [anon_sym_c_ulonglong] = ACTIONS(5362), + [anon_sym_c_float] = ACTIONS(5362), + [anon_sym_c_double] = ACTIONS(5362), + [anon_sym_c_longdouble] = ACTIONS(5362), + [anon_sym_return] = ACTIONS(5362), + [anon_sym_yield] = ACTIONS(5362), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_break] = ACTIONS(5362), + [anon_sym_continue] = ACTIONS(5362), + [anon_sym_defer] = ACTIONS(5362), + [anon_sym_errdefer] = ACTIONS(5362), + [anon_sym_if] = ACTIONS(5362), + [anon_sym_else] = ACTIONS(5362), + [anon_sym_while] = ACTIONS(5362), + [anon_sym_expand] = ACTIONS(5362), + [anon_sym_for] = ACTIONS(5362), + [anon_sym_match] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5360), + [anon_sym_orelse] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5360), + [anon_sym_xor] = ACTIONS(5362), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5360), + [anon_sym_LT_LT_PIPE] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_catch] = ACTIONS(5362), + [anon_sym_TILDE] = ACTIONS(5360), + [anon_sym_try] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym_true] = ACTIONS(5362), + [anon_sym_false] = ACTIONS(5362), + [anon_sym_null] = ACTIONS(5362), + [anon_sym_unreachable] = ACTIONS(5362), + [anon_sym_undefined] = ACTIONS(5362), + [sym_sink] = ACTIONS(5362), + [sym_integer] = ACTIONS(5362), + [sym_float] = ACTIONS(5360), + [anon_sym_DQUOTE] = ACTIONS(5360), + [sym_multiline_string] = ACTIONS(5360), + [sym_character] = ACTIONS(5360), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5360), + }, + [STATE(4703)] = { + [ts_builtin_sym_end] = ACTIONS(5364), + [sym_identifier] = ACTIONS(5366), + [anon_sym_import] = ACTIONS(5366), + [anon_sym_test] = ACTIONS(5366), + [anon_sym_hide] = ACTIONS(5366), + [anon_sym_func] = ACTIONS(5366), + [anon_sym_BANG] = ACTIONS(5366), + [anon_sym_struct] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5364), + [anon_sym_LBRACE] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5364), + [anon_sym_void] = ACTIONS(5366), + [anon_sym_noreturn] = ACTIONS(5366), + [anon_sym_type] = ACTIONS(5366), + [anon_sym_anyopaque] = ACTIONS(5366), + [anon_sym_bool] = ACTIONS(5366), + [anon_sym_int] = ACTIONS(5366), + [anon_sym_uint] = ACTIONS(5366), + [anon_sym_float] = ACTIONS(5366), + [anon_sym_range] = ACTIONS(5366), + [anon_sym_i8] = ACTIONS(5366), + [anon_sym_i16] = ACTIONS(5366), + [anon_sym_i32] = ACTIONS(5366), + [anon_sym_i64] = ACTIONS(5366), + [anon_sym_u8] = ACTIONS(5366), + [anon_sym_u16] = ACTIONS(5366), + [anon_sym_u32] = ACTIONS(5366), + [anon_sym_u64] = ACTIONS(5366), + [anon_sym_isize] = ACTIONS(5366), + [anon_sym_usize] = ACTIONS(5366), + [anon_sym_f32] = ACTIONS(5366), + [anon_sym_f64] = ACTIONS(5366), + [anon_sym_c_char] = ACTIONS(5366), + [anon_sym_c_schar] = ACTIONS(5366), + [anon_sym_c_uchar] = ACTIONS(5366), + [anon_sym_c_short] = ACTIONS(5366), + [anon_sym_c_ushort] = ACTIONS(5366), + [anon_sym_c_int] = ACTIONS(5366), + [anon_sym_c_uint] = ACTIONS(5366), + [anon_sym_c_long] = ACTIONS(5366), + [anon_sym_c_ulong] = ACTIONS(5366), + [anon_sym_c_longlong] = ACTIONS(5366), + [anon_sym_c_ulonglong] = ACTIONS(5366), + [anon_sym_c_float] = ACTIONS(5366), + [anon_sym_c_double] = ACTIONS(5366), + [anon_sym_c_longdouble] = ACTIONS(5366), + [anon_sym_return] = ACTIONS(5366), + [anon_sym_yield] = ACTIONS(5366), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_break] = ACTIONS(5366), + [anon_sym_continue] = ACTIONS(5366), + [anon_sym_defer] = ACTIONS(5366), + [anon_sym_errdefer] = ACTIONS(5366), + [anon_sym_if] = ACTIONS(5366), + [anon_sym_else] = ACTIONS(5366), + [anon_sym_while] = ACTIONS(5366), + [anon_sym_expand] = ACTIONS(5366), + [anon_sym_for] = ACTIONS(5366), + [anon_sym_match] = ACTIONS(5366), + [anon_sym_DOT_DOT] = ACTIONS(5366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5364), + [anon_sym_orelse] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_and] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5364), + [anon_sym_BANG_EQ] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5366), + [anon_sym_GT_EQ] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_xor] = ACTIONS(5366), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_LT_LT_PIPE] = ACTIONS(5364), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_catch] = ACTIONS(5366), + [anon_sym_TILDE] = ACTIONS(5364), + [anon_sym_try] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5366), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym_true] = ACTIONS(5366), + [anon_sym_false] = ACTIONS(5366), + [anon_sym_null] = ACTIONS(5366), + [anon_sym_unreachable] = ACTIONS(5366), + [anon_sym_undefined] = ACTIONS(5366), + [sym_sink] = ACTIONS(5366), + [sym_integer] = ACTIONS(5366), + [sym_float] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(5364), + [sym_multiline_string] = ACTIONS(5364), + [sym_character] = ACTIONS(5364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5364), + }, + [STATE(4704)] = { + [ts_builtin_sym_end] = ACTIONS(4708), + [sym_identifier] = ACTIONS(4710), + [anon_sym_import] = ACTIONS(4710), + [anon_sym_test] = ACTIONS(4710), + [anon_sym_hide] = ACTIONS(4710), + [anon_sym_func] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_struct] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4708), + [anon_sym_DOLLAR] = ACTIONS(4708), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_QMARK] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_void] = ACTIONS(4710), + [anon_sym_noreturn] = ACTIONS(4710), + [anon_sym_type] = ACTIONS(4710), + [anon_sym_anyopaque] = ACTIONS(4710), + [anon_sym_bool] = ACTIONS(4710), + [anon_sym_int] = ACTIONS(4710), + [anon_sym_uint] = ACTIONS(4710), + [anon_sym_float] = ACTIONS(4710), + [anon_sym_range] = ACTIONS(4710), + [anon_sym_i8] = ACTIONS(4710), + [anon_sym_i16] = ACTIONS(4710), + [anon_sym_i32] = ACTIONS(4710), + [anon_sym_i64] = ACTIONS(4710), + [anon_sym_u8] = ACTIONS(4710), + [anon_sym_u16] = ACTIONS(4710), + [anon_sym_u32] = ACTIONS(4710), + [anon_sym_u64] = ACTIONS(4710), + [anon_sym_isize] = ACTIONS(4710), + [anon_sym_usize] = ACTIONS(4710), + [anon_sym_f32] = ACTIONS(4710), + [anon_sym_f64] = ACTIONS(4710), + [anon_sym_c_char] = ACTIONS(4710), + [anon_sym_c_schar] = ACTIONS(4710), + [anon_sym_c_uchar] = ACTIONS(4710), + [anon_sym_c_short] = ACTIONS(4710), + [anon_sym_c_ushort] = ACTIONS(4710), + [anon_sym_c_int] = ACTIONS(4710), + [anon_sym_c_uint] = ACTIONS(4710), + [anon_sym_c_long] = ACTIONS(4710), + [anon_sym_c_ulong] = ACTIONS(4710), + [anon_sym_c_longlong] = ACTIONS(4710), + [anon_sym_c_ulonglong] = ACTIONS(4710), + [anon_sym_c_float] = ACTIONS(4710), + [anon_sym_c_double] = ACTIONS(4710), + [anon_sym_c_longdouble] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_yield] = ACTIONS(4710), + [anon_sym_COLON] = ACTIONS(4708), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_defer] = ACTIONS(4710), + [anon_sym_errdefer] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_expand] = ACTIONS(4710), + [anon_sym_for] = ACTIONS(4710), + [anon_sym_match] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4708), + [anon_sym_orelse] = ACTIONS(4710), + [anon_sym_or] = ACTIONS(4710), + [anon_sym_and] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [anon_sym_xor] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4710), + [anon_sym_GT_GT] = ACTIONS(4708), + [anon_sym_LT_LT_PIPE] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4708), + [anon_sym_SLASH] = ACTIONS(4708), + [anon_sym_catch] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4708), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_unreachable] = ACTIONS(4710), + [anon_sym_undefined] = ACTIONS(4710), + [sym_sink] = ACTIONS(4710), + [sym_integer] = ACTIONS(4710), + [sym_float] = ACTIONS(4708), + [anon_sym_DQUOTE] = ACTIONS(4708), + [sym_multiline_string] = ACTIONS(4708), + [sym_character] = ACTIONS(4708), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4708), + }, + [STATE(4705)] = { + [ts_builtin_sym_end] = ACTIONS(5758), + [sym_identifier] = ACTIONS(5760), + [anon_sym_import] = ACTIONS(5760), + [anon_sym_test] = ACTIONS(5760), + [anon_sym_hide] = ACTIONS(5760), + [anon_sym_func] = ACTIONS(5760), + [anon_sym_BANG] = ACTIONS(5760), + [anon_sym_struct] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(5758), + [anon_sym_DASH] = ACTIONS(5758), + [anon_sym_DOLLAR] = ACTIONS(5758), + [anon_sym_PIPE] = ACTIONS(5758), + [anon_sym_QMARK] = ACTIONS(5758), + [anon_sym_STAR] = ACTIONS(5758), + [anon_sym_LBRACK] = ACTIONS(5758), + [anon_sym_void] = ACTIONS(5760), + [anon_sym_noreturn] = ACTIONS(5760), + [anon_sym_type] = ACTIONS(5760), + [anon_sym_anyopaque] = ACTIONS(5760), + [anon_sym_bool] = ACTIONS(5760), + [anon_sym_int] = ACTIONS(5760), + [anon_sym_uint] = ACTIONS(5760), + [anon_sym_float] = ACTIONS(5760), + [anon_sym_range] = ACTIONS(5760), + [anon_sym_i8] = ACTIONS(5760), + [anon_sym_i16] = ACTIONS(5760), + [anon_sym_i32] = ACTIONS(5760), + [anon_sym_i64] = ACTIONS(5760), + [anon_sym_u8] = ACTIONS(5760), + [anon_sym_u16] = ACTIONS(5760), + [anon_sym_u32] = ACTIONS(5760), + [anon_sym_u64] = ACTIONS(5760), + [anon_sym_isize] = ACTIONS(5760), + [anon_sym_usize] = ACTIONS(5760), + [anon_sym_f32] = ACTIONS(5760), + [anon_sym_f64] = ACTIONS(5760), + [anon_sym_c_char] = ACTIONS(5760), + [anon_sym_c_schar] = ACTIONS(5760), + [anon_sym_c_uchar] = ACTIONS(5760), + [anon_sym_c_short] = ACTIONS(5760), + [anon_sym_c_ushort] = ACTIONS(5760), + [anon_sym_c_int] = ACTIONS(5760), + [anon_sym_c_uint] = ACTIONS(5760), + [anon_sym_c_long] = ACTIONS(5760), + [anon_sym_c_ulong] = ACTIONS(5760), + [anon_sym_c_longlong] = ACTIONS(5760), + [anon_sym_c_ulonglong] = ACTIONS(5760), + [anon_sym_c_float] = ACTIONS(5760), + [anon_sym_c_double] = ACTIONS(5760), + [anon_sym_c_longdouble] = ACTIONS(5760), + [anon_sym_return] = ACTIONS(5760), + [anon_sym_yield] = ACTIONS(5760), + [anon_sym_COLON] = ACTIONS(5758), + [anon_sym_break] = ACTIONS(5760), + [anon_sym_continue] = ACTIONS(5760), + [anon_sym_defer] = ACTIONS(5760), + [anon_sym_errdefer] = ACTIONS(5760), + [anon_sym_if] = ACTIONS(5760), + [anon_sym_else] = ACTIONS(5760), + [anon_sym_while] = ACTIONS(5760), + [anon_sym_expand] = ACTIONS(5760), + [anon_sym_for] = ACTIONS(5760), + [anon_sym_match] = ACTIONS(5760), + [anon_sym_DOT_DOT] = ACTIONS(5760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5758), + [anon_sym_orelse] = ACTIONS(5760), + [anon_sym_or] = ACTIONS(5760), + [anon_sym_and] = ACTIONS(5760), + [anon_sym_EQ_EQ] = ACTIONS(5758), + [anon_sym_BANG_EQ] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_LT_EQ] = ACTIONS(5758), + [anon_sym_GT] = ACTIONS(5760), + [anon_sym_GT_EQ] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(5758), + [anon_sym_xor] = ACTIONS(5760), + [anon_sym_LT_LT] = ACTIONS(5760), + [anon_sym_GT_GT] = ACTIONS(5758), + [anon_sym_LT_LT_PIPE] = ACTIONS(5758), + [anon_sym_PLUS] = ACTIONS(5758), + [anon_sym_SLASH] = ACTIONS(5758), + [anon_sym_catch] = ACTIONS(5760), + [anon_sym_TILDE] = ACTIONS(5758), + [anon_sym_try] = ACTIONS(5760), + [anon_sym_DOT] = ACTIONS(5760), + [anon_sym_CARET] = ACTIONS(5758), + [anon_sym_true] = ACTIONS(5760), + [anon_sym_false] = ACTIONS(5760), + [anon_sym_null] = ACTIONS(5760), + [anon_sym_unreachable] = ACTIONS(5760), + [anon_sym_undefined] = ACTIONS(5760), + [sym_sink] = ACTIONS(5760), + [sym_integer] = ACTIONS(5760), + [sym_float] = ACTIONS(5758), + [anon_sym_DQUOTE] = ACTIONS(5758), + [sym_multiline_string] = ACTIONS(5758), + [sym_character] = ACTIONS(5758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5758), + }, + [STATE(4706)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8669), + [sym_error_capture] = STATE(4988), + [sym_if_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_match_statement] = STATE(8669), + [sym_expression] = STATE(8574), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4989), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7364), + }, + [STATE(4707)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8694), + [sym_labeled_block] = STATE(8694), + [sym_if_statement] = STATE(8694), + [sym_while_statement] = STATE(8694), + [sym_for_statement] = STATE(8694), + [sym_match_statement] = STATE(8694), + [sym__value] = STATE(8694), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7366), + }, + [STATE(4708)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8392), + [sym_labeled_block] = STATE(8392), + [sym_if_statement] = STATE(8392), + [sym_while_statement] = STATE(8392), + [sym_for_statement] = STATE(8392), + [sym_match_statement] = STATE(8392), + [sym__value] = STATE(8392), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4712), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7368), + }, + [STATE(4709)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8666), + [sym_labeled_block] = STATE(8666), + [sym_if_statement] = STATE(8666), + [sym_while_statement] = STATE(8666), + [sym_for_statement] = STATE(8666), + [sym_match_statement] = STATE(8666), + [sym__value] = STATE(8666), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4710)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8588), + [sym_labeled_block] = STATE(8588), + [sym_if_statement] = STATE(8588), + [sym_while_statement] = STATE(8588), + [sym_for_statement] = STATE(8588), + [sym_match_statement] = STATE(8588), + [sym__value] = STATE(8588), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4713), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7370), + }, + [STATE(4711)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8618), + [sym_labeled_block] = STATE(8618), + [sym_if_statement] = STATE(8618), + [sym_while_statement] = STATE(8618), + [sym_for_statement] = STATE(8618), + [sym_match_statement] = STATE(8618), + [sym__value] = STATE(8618), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4714), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7372), + }, + [STATE(4712)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8630), + [sym_labeled_block] = STATE(8630), + [sym_if_statement] = STATE(8630), + [sym_while_statement] = STATE(8630), + [sym_for_statement] = STATE(8630), + [sym_match_statement] = STATE(8630), + [sym__value] = STATE(8630), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4713)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8487), + [sym_labeled_block] = STATE(8487), + [sym_if_statement] = STATE(8487), + [sym_while_statement] = STATE(8487), + [sym_for_statement] = STATE(8487), + [sym_match_statement] = STATE(8487), + [sym__value] = STATE(8487), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4714)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8488), + [sym_labeled_block] = STATE(8488), + [sym_if_statement] = STATE(8488), + [sym_while_statement] = STATE(8488), + [sym_for_statement] = STATE(8488), + [sym_match_statement] = STATE(8488), + [sym__value] = STATE(8488), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4715)] = { + [ts_builtin_sym_end] = ACTIONS(5250), + [sym_identifier] = ACTIONS(5252), + [anon_sym_import] = ACTIONS(5252), + [anon_sym_test] = ACTIONS(5252), + [anon_sym_hide] = ACTIONS(5252), + [anon_sym_func] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5252), + [anon_sym_struct] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5250), + [anon_sym_DOLLAR] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5250), + [anon_sym_QMARK] = ACTIONS(5250), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_void] = ACTIONS(5252), + [anon_sym_noreturn] = ACTIONS(5252), + [anon_sym_type] = ACTIONS(5252), + [anon_sym_anyopaque] = ACTIONS(5252), + [anon_sym_bool] = ACTIONS(5252), + [anon_sym_int] = ACTIONS(5252), + [anon_sym_uint] = ACTIONS(5252), + [anon_sym_float] = ACTIONS(5252), + [anon_sym_range] = ACTIONS(5252), + [anon_sym_i8] = ACTIONS(5252), + [anon_sym_i16] = ACTIONS(5252), + [anon_sym_i32] = ACTIONS(5252), + [anon_sym_i64] = ACTIONS(5252), + [anon_sym_u8] = ACTIONS(5252), + [anon_sym_u16] = ACTIONS(5252), + [anon_sym_u32] = ACTIONS(5252), + [anon_sym_u64] = ACTIONS(5252), + [anon_sym_isize] = ACTIONS(5252), + [anon_sym_usize] = ACTIONS(5252), + [anon_sym_f32] = ACTIONS(5252), + [anon_sym_f64] = ACTIONS(5252), + [anon_sym_c_char] = ACTIONS(5252), + [anon_sym_c_schar] = ACTIONS(5252), + [anon_sym_c_uchar] = ACTIONS(5252), + [anon_sym_c_short] = ACTIONS(5252), + [anon_sym_c_ushort] = ACTIONS(5252), + [anon_sym_c_int] = ACTIONS(5252), + [anon_sym_c_uint] = ACTIONS(5252), + [anon_sym_c_long] = ACTIONS(5252), + [anon_sym_c_ulong] = ACTIONS(5252), + [anon_sym_c_longlong] = ACTIONS(5252), + [anon_sym_c_ulonglong] = ACTIONS(5252), + [anon_sym_c_float] = ACTIONS(5252), + [anon_sym_c_double] = ACTIONS(5252), + [anon_sym_c_longdouble] = ACTIONS(5252), + [anon_sym_return] = ACTIONS(5252), + [anon_sym_yield] = ACTIONS(5252), + [anon_sym_COLON] = ACTIONS(5250), + [anon_sym_break] = ACTIONS(5252), + [anon_sym_continue] = ACTIONS(5252), + [anon_sym_defer] = ACTIONS(5252), + [anon_sym_errdefer] = ACTIONS(5252), + [anon_sym_if] = ACTIONS(5252), + [anon_sym_else] = ACTIONS(5252), + [anon_sym_while] = ACTIONS(5252), + [anon_sym_expand] = ACTIONS(5252), + [anon_sym_for] = ACTIONS(5252), + [anon_sym_match] = ACTIONS(5252), + [anon_sym_DOT_DOT] = ACTIONS(5252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5250), + [anon_sym_orelse] = ACTIONS(5252), + [anon_sym_or] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5250), + [anon_sym_xor] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5252), + [anon_sym_GT_GT] = ACTIONS(5250), + [anon_sym_LT_LT_PIPE] = ACTIONS(5250), + [anon_sym_PLUS] = ACTIONS(5250), + [anon_sym_SLASH] = ACTIONS(5250), + [anon_sym_catch] = ACTIONS(5252), + [anon_sym_TILDE] = ACTIONS(5250), + [anon_sym_try] = ACTIONS(5252), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_true] = ACTIONS(5252), + [anon_sym_false] = ACTIONS(5252), + [anon_sym_null] = ACTIONS(5252), + [anon_sym_unreachable] = ACTIONS(5252), + [anon_sym_undefined] = ACTIONS(5252), + [sym_sink] = ACTIONS(5252), + [sym_integer] = ACTIONS(5252), + [sym_float] = ACTIONS(5250), + [anon_sym_DQUOTE] = ACTIONS(5250), + [sym_multiline_string] = ACTIONS(5250), + [sym_character] = ACTIONS(5250), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5250), + }, + [STATE(4716)] = { + [ts_builtin_sym_end] = ACTIONS(5608), + [sym_identifier] = ACTIONS(5610), + [anon_sym_import] = ACTIONS(5610), + [anon_sym_test] = ACTIONS(5610), + [anon_sym_hide] = ACTIONS(5610), + [anon_sym_func] = ACTIONS(5610), + [anon_sym_BANG] = ACTIONS(5610), + [anon_sym_struct] = ACTIONS(5610), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_DASH] = ACTIONS(5608), + [anon_sym_DOLLAR] = ACTIONS(5608), + [anon_sym_PIPE] = ACTIONS(5608), + [anon_sym_QMARK] = ACTIONS(5608), + [anon_sym_STAR] = ACTIONS(5608), + [anon_sym_LBRACK] = ACTIONS(5608), + [anon_sym_void] = ACTIONS(5610), + [anon_sym_noreturn] = ACTIONS(5610), + [anon_sym_type] = ACTIONS(5610), + [anon_sym_anyopaque] = ACTIONS(5610), + [anon_sym_bool] = ACTIONS(5610), + [anon_sym_int] = ACTIONS(5610), + [anon_sym_uint] = ACTIONS(5610), + [anon_sym_float] = ACTIONS(5610), + [anon_sym_range] = ACTIONS(5610), + [anon_sym_i8] = ACTIONS(5610), + [anon_sym_i16] = ACTIONS(5610), + [anon_sym_i32] = ACTIONS(5610), + [anon_sym_i64] = ACTIONS(5610), + [anon_sym_u8] = ACTIONS(5610), + [anon_sym_u16] = ACTIONS(5610), + [anon_sym_u32] = ACTIONS(5610), + [anon_sym_u64] = ACTIONS(5610), + [anon_sym_isize] = ACTIONS(5610), + [anon_sym_usize] = ACTIONS(5610), + [anon_sym_f32] = ACTIONS(5610), + [anon_sym_f64] = ACTIONS(5610), + [anon_sym_c_char] = ACTIONS(5610), + [anon_sym_c_schar] = ACTIONS(5610), + [anon_sym_c_uchar] = ACTIONS(5610), + [anon_sym_c_short] = ACTIONS(5610), + [anon_sym_c_ushort] = ACTIONS(5610), + [anon_sym_c_int] = ACTIONS(5610), + [anon_sym_c_uint] = ACTIONS(5610), + [anon_sym_c_long] = ACTIONS(5610), + [anon_sym_c_ulong] = ACTIONS(5610), + [anon_sym_c_longlong] = ACTIONS(5610), + [anon_sym_c_ulonglong] = ACTIONS(5610), + [anon_sym_c_float] = ACTIONS(5610), + [anon_sym_c_double] = ACTIONS(5610), + [anon_sym_c_longdouble] = ACTIONS(5610), + [anon_sym_return] = ACTIONS(5610), + [anon_sym_yield] = ACTIONS(5610), + [anon_sym_COLON] = ACTIONS(5608), + [anon_sym_break] = ACTIONS(5610), + [anon_sym_continue] = ACTIONS(5610), + [anon_sym_defer] = ACTIONS(5610), + [anon_sym_errdefer] = ACTIONS(5610), + [anon_sym_if] = ACTIONS(5610), + [anon_sym_else] = ACTIONS(5610), + [anon_sym_while] = ACTIONS(5610), + [anon_sym_expand] = ACTIONS(5610), + [anon_sym_for] = ACTIONS(5610), + [anon_sym_match] = ACTIONS(5610), + [anon_sym_DOT_DOT] = ACTIONS(5610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5608), + [anon_sym_orelse] = ACTIONS(5610), + [anon_sym_or] = ACTIONS(5610), + [anon_sym_and] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5608), + [anon_sym_BANG_EQ] = ACTIONS(5608), + [anon_sym_LT] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5610), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_AMP] = ACTIONS(5608), + [anon_sym_xor] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5608), + [anon_sym_LT_LT_PIPE] = ACTIONS(5608), + [anon_sym_PLUS] = ACTIONS(5608), + [anon_sym_SLASH] = ACTIONS(5608), + [anon_sym_catch] = ACTIONS(5610), + [anon_sym_TILDE] = ACTIONS(5608), + [anon_sym_try] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5608), + [anon_sym_true] = ACTIONS(5610), + [anon_sym_false] = ACTIONS(5610), + [anon_sym_null] = ACTIONS(5610), + [anon_sym_unreachable] = ACTIONS(5610), + [anon_sym_undefined] = ACTIONS(5610), + [sym_sink] = ACTIONS(5610), + [sym_integer] = ACTIONS(5610), + [sym_float] = ACTIONS(5608), + [anon_sym_DQUOTE] = ACTIONS(5608), + [sym_multiline_string] = ACTIONS(5608), + [sym_character] = ACTIONS(5608), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5608), + }, + [STATE(4717)] = { + [ts_builtin_sym_end] = ACTIONS(5368), + [sym_identifier] = ACTIONS(5370), + [anon_sym_import] = ACTIONS(5370), + [anon_sym_test] = ACTIONS(5370), + [anon_sym_hide] = ACTIONS(5370), + [anon_sym_func] = ACTIONS(5370), + [anon_sym_BANG] = ACTIONS(5370), + [anon_sym_struct] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5368), + [anon_sym_LBRACE] = ACTIONS(5368), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_LBRACK] = ACTIONS(5368), + [anon_sym_void] = ACTIONS(5370), + [anon_sym_noreturn] = ACTIONS(5370), + [anon_sym_type] = ACTIONS(5370), + [anon_sym_anyopaque] = ACTIONS(5370), + [anon_sym_bool] = ACTIONS(5370), + [anon_sym_int] = ACTIONS(5370), + [anon_sym_uint] = ACTIONS(5370), + [anon_sym_float] = ACTIONS(5370), + [anon_sym_range] = ACTIONS(5370), + [anon_sym_i8] = ACTIONS(5370), + [anon_sym_i16] = ACTIONS(5370), + [anon_sym_i32] = ACTIONS(5370), + [anon_sym_i64] = ACTIONS(5370), + [anon_sym_u8] = ACTIONS(5370), + [anon_sym_u16] = ACTIONS(5370), + [anon_sym_u32] = ACTIONS(5370), + [anon_sym_u64] = ACTIONS(5370), + [anon_sym_isize] = ACTIONS(5370), + [anon_sym_usize] = ACTIONS(5370), + [anon_sym_f32] = ACTIONS(5370), + [anon_sym_f64] = ACTIONS(5370), + [anon_sym_c_char] = ACTIONS(5370), + [anon_sym_c_schar] = ACTIONS(5370), + [anon_sym_c_uchar] = ACTIONS(5370), + [anon_sym_c_short] = ACTIONS(5370), + [anon_sym_c_ushort] = ACTIONS(5370), + [anon_sym_c_int] = ACTIONS(5370), + [anon_sym_c_uint] = ACTIONS(5370), + [anon_sym_c_long] = ACTIONS(5370), + [anon_sym_c_ulong] = ACTIONS(5370), + [anon_sym_c_longlong] = ACTIONS(5370), + [anon_sym_c_ulonglong] = ACTIONS(5370), + [anon_sym_c_float] = ACTIONS(5370), + [anon_sym_c_double] = ACTIONS(5370), + [anon_sym_c_longdouble] = ACTIONS(5370), + [anon_sym_return] = ACTIONS(5370), + [anon_sym_yield] = ACTIONS(5370), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_break] = ACTIONS(5370), + [anon_sym_continue] = ACTIONS(5370), + [anon_sym_defer] = ACTIONS(5370), + [anon_sym_errdefer] = ACTIONS(5370), + [anon_sym_if] = ACTIONS(5370), + [anon_sym_else] = ACTIONS(5370), + [anon_sym_while] = ACTIONS(5370), + [anon_sym_expand] = ACTIONS(5370), + [anon_sym_for] = ACTIONS(5370), + [anon_sym_match] = ACTIONS(5370), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5368), + [anon_sym_orelse] = ACTIONS(5370), + [anon_sym_or] = ACTIONS(5370), + [anon_sym_and] = ACTIONS(5370), + [anon_sym_EQ_EQ] = ACTIONS(5368), + [anon_sym_BANG_EQ] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5368), + [anon_sym_xor] = ACTIONS(5370), + [anon_sym_LT_LT] = ACTIONS(5370), + [anon_sym_GT_GT] = ACTIONS(5368), + [anon_sym_LT_LT_PIPE] = ACTIONS(5368), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_catch] = ACTIONS(5370), + [anon_sym_TILDE] = ACTIONS(5368), + [anon_sym_try] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5370), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym_true] = ACTIONS(5370), + [anon_sym_false] = ACTIONS(5370), + [anon_sym_null] = ACTIONS(5370), + [anon_sym_unreachable] = ACTIONS(5370), + [anon_sym_undefined] = ACTIONS(5370), + [sym_sink] = ACTIONS(5370), + [sym_integer] = ACTIONS(5370), + [sym_float] = ACTIONS(5368), + [anon_sym_DQUOTE] = ACTIONS(5368), + [sym_multiline_string] = ACTIONS(5368), + [sym_character] = ACTIONS(5368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5368), + }, + [STATE(4718)] = { + [ts_builtin_sym_end] = ACTIONS(4380), + [sym_identifier] = ACTIONS(4382), + [anon_sym_import] = ACTIONS(4382), + [anon_sym_test] = ACTIONS(4382), + [anon_sym_hide] = ACTIONS(4382), + [anon_sym_func] = ACTIONS(4382), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_struct] = ACTIONS(4382), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4380), + [anon_sym_RBRACE] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_DOLLAR] = ACTIONS(4380), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_QMARK] = ACTIONS(4380), + [anon_sym_STAR] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_void] = ACTIONS(4382), + [anon_sym_noreturn] = ACTIONS(4382), + [anon_sym_type] = ACTIONS(4382), + [anon_sym_anyopaque] = ACTIONS(4382), + [anon_sym_bool] = ACTIONS(4382), + [anon_sym_int] = ACTIONS(4382), + [anon_sym_uint] = ACTIONS(4382), + [anon_sym_float] = ACTIONS(4382), + [anon_sym_range] = ACTIONS(4382), + [anon_sym_i8] = ACTIONS(4382), + [anon_sym_i16] = ACTIONS(4382), + [anon_sym_i32] = ACTIONS(4382), + [anon_sym_i64] = ACTIONS(4382), + [anon_sym_u8] = ACTIONS(4382), + [anon_sym_u16] = ACTIONS(4382), + [anon_sym_u32] = ACTIONS(4382), + [anon_sym_u64] = ACTIONS(4382), + [anon_sym_isize] = ACTIONS(4382), + [anon_sym_usize] = ACTIONS(4382), + [anon_sym_f32] = ACTIONS(4382), + [anon_sym_f64] = ACTIONS(4382), + [anon_sym_c_char] = ACTIONS(4382), + [anon_sym_c_schar] = ACTIONS(4382), + [anon_sym_c_uchar] = ACTIONS(4382), + [anon_sym_c_short] = ACTIONS(4382), + [anon_sym_c_ushort] = ACTIONS(4382), + [anon_sym_c_int] = ACTIONS(4382), + [anon_sym_c_uint] = ACTIONS(4382), + [anon_sym_c_long] = ACTIONS(4382), + [anon_sym_c_ulong] = ACTIONS(4382), + [anon_sym_c_longlong] = ACTIONS(4382), + [anon_sym_c_ulonglong] = ACTIONS(4382), + [anon_sym_c_float] = ACTIONS(4382), + [anon_sym_c_double] = ACTIONS(4382), + [anon_sym_c_longdouble] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_yield] = ACTIONS(4382), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_defer] = ACTIONS(4382), + [anon_sym_errdefer] = ACTIONS(4382), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_expand] = ACTIONS(4382), + [anon_sym_for] = ACTIONS(4382), + [anon_sym_match] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4380), + [anon_sym_orelse] = ACTIONS(4382), + [anon_sym_or] = ACTIONS(4382), + [anon_sym_and] = ACTIONS(4382), + [anon_sym_EQ_EQ] = ACTIONS(4380), + [anon_sym_BANG_EQ] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_LT_EQ] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_GT_EQ] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_xor] = ACTIONS(4382), + [anon_sym_LT_LT] = ACTIONS(4382), + [anon_sym_GT_GT] = ACTIONS(4380), + [anon_sym_LT_LT_PIPE] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_catch] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4380), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_null] = ACTIONS(4382), + [anon_sym_unreachable] = ACTIONS(4382), + [anon_sym_undefined] = ACTIONS(4382), + [sym_sink] = ACTIONS(4382), + [sym_integer] = ACTIONS(4382), + [sym_float] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(4380), + [sym_multiline_string] = ACTIONS(4380), + [sym_character] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4380), + }, + [STATE(4719)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4523), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7374), + }, + [STATE(4720)] = { + [ts_builtin_sym_end] = ACTIONS(4384), + [sym_identifier] = ACTIONS(4386), + [anon_sym_import] = ACTIONS(4386), + [anon_sym_test] = ACTIONS(4386), + [anon_sym_hide] = ACTIONS(4386), + [anon_sym_func] = ACTIONS(4386), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_struct] = ACTIONS(4386), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_DASH] = ACTIONS(4384), + [anon_sym_DOLLAR] = ACTIONS(4384), + [anon_sym_PIPE] = ACTIONS(4384), + [anon_sym_QMARK] = ACTIONS(4384), + [anon_sym_STAR] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_void] = ACTIONS(4386), + [anon_sym_noreturn] = ACTIONS(4386), + [anon_sym_type] = ACTIONS(4386), + [anon_sym_anyopaque] = ACTIONS(4386), + [anon_sym_bool] = ACTIONS(4386), + [anon_sym_int] = ACTIONS(4386), + [anon_sym_uint] = ACTIONS(4386), + [anon_sym_float] = ACTIONS(4386), + [anon_sym_range] = ACTIONS(4386), + [anon_sym_i8] = ACTIONS(4386), + [anon_sym_i16] = ACTIONS(4386), + [anon_sym_i32] = ACTIONS(4386), + [anon_sym_i64] = ACTIONS(4386), + [anon_sym_u8] = ACTIONS(4386), + [anon_sym_u16] = ACTIONS(4386), + [anon_sym_u32] = ACTIONS(4386), + [anon_sym_u64] = ACTIONS(4386), + [anon_sym_isize] = ACTIONS(4386), + [anon_sym_usize] = ACTIONS(4386), + [anon_sym_f32] = ACTIONS(4386), + [anon_sym_f64] = ACTIONS(4386), + [anon_sym_c_char] = ACTIONS(4386), + [anon_sym_c_schar] = ACTIONS(4386), + [anon_sym_c_uchar] = ACTIONS(4386), + [anon_sym_c_short] = ACTIONS(4386), + [anon_sym_c_ushort] = ACTIONS(4386), + [anon_sym_c_int] = ACTIONS(4386), + [anon_sym_c_uint] = ACTIONS(4386), + [anon_sym_c_long] = ACTIONS(4386), + [anon_sym_c_ulong] = ACTIONS(4386), + [anon_sym_c_longlong] = ACTIONS(4386), + [anon_sym_c_ulonglong] = ACTIONS(4386), + [anon_sym_c_float] = ACTIONS(4386), + [anon_sym_c_double] = ACTIONS(4386), + [anon_sym_c_longdouble] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_yield] = ACTIONS(4386), + [anon_sym_COLON] = ACTIONS(4384), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_defer] = ACTIONS(4386), + [anon_sym_errdefer] = ACTIONS(4386), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_while] = ACTIONS(4386), + [anon_sym_expand] = ACTIONS(4386), + [anon_sym_for] = ACTIONS(4386), + [anon_sym_match] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4384), + [anon_sym_orelse] = ACTIONS(4386), + [anon_sym_or] = ACTIONS(4386), + [anon_sym_and] = ACTIONS(4386), + [anon_sym_EQ_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(4384), + [anon_sym_xor] = ACTIONS(4386), + [anon_sym_LT_LT] = ACTIONS(4386), + [anon_sym_GT_GT] = ACTIONS(4384), + [anon_sym_LT_LT_PIPE] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4384), + [anon_sym_SLASH] = ACTIONS(4384), + [anon_sym_catch] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4384), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_CARET] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_null] = ACTIONS(4386), + [anon_sym_unreachable] = ACTIONS(4386), + [anon_sym_undefined] = ACTIONS(4386), + [sym_sink] = ACTIONS(4386), + [sym_integer] = ACTIONS(4386), + [sym_float] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym_multiline_string] = ACTIONS(4384), + [sym_character] = ACTIONS(4384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4384), + }, + [STATE(4721)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9651), + [sym_error_capture] = STATE(4855), + [sym_if_statement] = STATE(9651), + [sym_while_statement] = STATE(9651), + [sym_for_statement] = STATE(9651), + [sym_match_statement] = STATE(9651), + [sym_expression] = STATE(10269), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4856), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7376), + }, + [STATE(4722)] = { + [ts_builtin_sym_end] = ACTIONS(4388), + [sym_identifier] = ACTIONS(4390), + [anon_sym_import] = ACTIONS(4390), + [anon_sym_test] = ACTIONS(4390), + [anon_sym_hide] = ACTIONS(4390), + [anon_sym_func] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_struct] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_DOLLAR] = ACTIONS(4388), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_QMARK] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_void] = ACTIONS(4390), + [anon_sym_noreturn] = ACTIONS(4390), + [anon_sym_type] = ACTIONS(4390), + [anon_sym_anyopaque] = ACTIONS(4390), + [anon_sym_bool] = ACTIONS(4390), + [anon_sym_int] = ACTIONS(4390), + [anon_sym_uint] = ACTIONS(4390), + [anon_sym_float] = ACTIONS(4390), + [anon_sym_range] = ACTIONS(4390), + [anon_sym_i8] = ACTIONS(4390), + [anon_sym_i16] = ACTIONS(4390), + [anon_sym_i32] = ACTIONS(4390), + [anon_sym_i64] = ACTIONS(4390), + [anon_sym_u8] = ACTIONS(4390), + [anon_sym_u16] = ACTIONS(4390), + [anon_sym_u32] = ACTIONS(4390), + [anon_sym_u64] = ACTIONS(4390), + [anon_sym_isize] = ACTIONS(4390), + [anon_sym_usize] = ACTIONS(4390), + [anon_sym_f32] = ACTIONS(4390), + [anon_sym_f64] = ACTIONS(4390), + [anon_sym_c_char] = ACTIONS(4390), + [anon_sym_c_schar] = ACTIONS(4390), + [anon_sym_c_uchar] = ACTIONS(4390), + [anon_sym_c_short] = ACTIONS(4390), + [anon_sym_c_ushort] = ACTIONS(4390), + [anon_sym_c_int] = ACTIONS(4390), + [anon_sym_c_uint] = ACTIONS(4390), + [anon_sym_c_long] = ACTIONS(4390), + [anon_sym_c_ulong] = ACTIONS(4390), + [anon_sym_c_longlong] = ACTIONS(4390), + [anon_sym_c_ulonglong] = ACTIONS(4390), + [anon_sym_c_float] = ACTIONS(4390), + [anon_sym_c_double] = ACTIONS(4390), + [anon_sym_c_longdouble] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_yield] = ACTIONS(4390), + [anon_sym_COLON] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_defer] = ACTIONS(4390), + [anon_sym_errdefer] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_expand] = ACTIONS(4390), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_match] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4388), + [anon_sym_orelse] = ACTIONS(4390), + [anon_sym_or] = ACTIONS(4390), + [anon_sym_and] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_xor] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4388), + [anon_sym_LT_LT_PIPE] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4388), + [anon_sym_SLASH] = ACTIONS(4388), + [anon_sym_catch] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4388), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_CARET] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_unreachable] = ACTIONS(4390), + [anon_sym_undefined] = ACTIONS(4390), + [sym_sink] = ACTIONS(4390), + [sym_integer] = ACTIONS(4390), + [sym_float] = ACTIONS(4388), + [anon_sym_DQUOTE] = ACTIONS(4388), + [sym_multiline_string] = ACTIONS(4388), + [sym_character] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4388), + }, + [STATE(4723)] = { + [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(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_DOLLAR] = ACTIONS(4414), + [anon_sym_PIPE] = ACTIONS(4414), + [anon_sym_QMARK] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_void] = ACTIONS(4416), + [anon_sym_noreturn] = 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_COLON] = ACTIONS(4414), + [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_DOT_DOT] = ACTIONS(4416), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4414), + [anon_sym_orelse] = ACTIONS(4416), + [anon_sym_or] = ACTIONS(4416), + [anon_sym_and] = ACTIONS(4416), + [anon_sym_EQ_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4414), + [anon_sym_xor] = ACTIONS(4416), + [anon_sym_LT_LT] = ACTIONS(4416), + [anon_sym_GT_GT] = ACTIONS(4414), + [anon_sym_LT_LT_PIPE] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_SLASH] = ACTIONS(4414), + [anon_sym_catch] = ACTIONS(4416), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_CARET] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_unreachable] = ACTIONS(4416), + [anon_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(4724)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6711), + [sym_labeled_block] = STATE(6711), + [sym_if_statement] = STATE(6711), + [sym_while_statement] = STATE(6711), + [sym_for_statement] = STATE(6711), + [sym_match_statement] = STATE(6711), + [sym__value] = STATE(6711), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4732), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7378), + }, + [STATE(4725)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4279), + [sym_labeled_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_while_statement] = STATE(4279), + [sym_for_statement] = STATE(4279), + [sym_match_statement] = STATE(4279), + [sym__value] = STATE(4279), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4735), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7380), + }, + [STATE(4726)] = { + [ts_builtin_sym_end] = ACTIONS(5372), + [sym_identifier] = ACTIONS(5374), + [anon_sym_import] = ACTIONS(5374), + [anon_sym_test] = ACTIONS(5374), + [anon_sym_hide] = ACTIONS(5374), + [anon_sym_func] = ACTIONS(5374), + [anon_sym_BANG] = ACTIONS(5374), + [anon_sym_struct] = ACTIONS(5374), + [anon_sym_LPAREN] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5372), + [anon_sym_RBRACE] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_LBRACK] = ACTIONS(5372), + [anon_sym_void] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_anyopaque] = ACTIONS(5374), + [anon_sym_bool] = ACTIONS(5374), + [anon_sym_int] = ACTIONS(5374), + [anon_sym_uint] = ACTIONS(5374), + [anon_sym_float] = ACTIONS(5374), + [anon_sym_range] = ACTIONS(5374), + [anon_sym_i8] = ACTIONS(5374), + [anon_sym_i16] = ACTIONS(5374), + [anon_sym_i32] = ACTIONS(5374), + [anon_sym_i64] = ACTIONS(5374), + [anon_sym_u8] = ACTIONS(5374), + [anon_sym_u16] = ACTIONS(5374), + [anon_sym_u32] = ACTIONS(5374), + [anon_sym_u64] = ACTIONS(5374), + [anon_sym_isize] = ACTIONS(5374), + [anon_sym_usize] = ACTIONS(5374), + [anon_sym_f32] = ACTIONS(5374), + [anon_sym_f64] = ACTIONS(5374), + [anon_sym_c_char] = ACTIONS(5374), + [anon_sym_c_schar] = ACTIONS(5374), + [anon_sym_c_uchar] = ACTIONS(5374), + [anon_sym_c_short] = ACTIONS(5374), + [anon_sym_c_ushort] = ACTIONS(5374), + [anon_sym_c_int] = ACTIONS(5374), + [anon_sym_c_uint] = ACTIONS(5374), + [anon_sym_c_long] = ACTIONS(5374), + [anon_sym_c_ulong] = ACTIONS(5374), + [anon_sym_c_longlong] = ACTIONS(5374), + [anon_sym_c_ulonglong] = ACTIONS(5374), + [anon_sym_c_float] = ACTIONS(5374), + [anon_sym_c_double] = ACTIONS(5374), + [anon_sym_c_longdouble] = ACTIONS(5374), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_break] = ACTIONS(5374), + [anon_sym_continue] = ACTIONS(5374), + [anon_sym_defer] = ACTIONS(5374), + [anon_sym_errdefer] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_else] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_expand] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_DOT_DOT] = ACTIONS(5374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5372), + [anon_sym_orelse] = ACTIONS(5374), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_EQ_EQ] = ACTIONS(5372), + [anon_sym_BANG_EQ] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5374), + [anon_sym_LT_EQ] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(5372), + [anon_sym_xor] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(5374), + [anon_sym_GT_GT] = ACTIONS(5372), + [anon_sym_LT_LT_PIPE] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_catch] = ACTIONS(5374), + [anon_sym_TILDE] = ACTIONS(5372), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_DOT] = ACTIONS(5374), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym_true] = ACTIONS(5374), + [anon_sym_false] = ACTIONS(5374), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_unreachable] = ACTIONS(5374), + [anon_sym_undefined] = ACTIONS(5374), + [sym_sink] = ACTIONS(5374), + [sym_integer] = ACTIONS(5374), + [sym_float] = ACTIONS(5372), + [anon_sym_DQUOTE] = ACTIONS(5372), + [sym_multiline_string] = ACTIONS(5372), + [sym_character] = ACTIONS(5372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5372), + }, + [STATE(4727)] = { + [ts_builtin_sym_end] = ACTIONS(4994), + [sym_identifier] = ACTIONS(4996), + [anon_sym_import] = ACTIONS(4996), + [anon_sym_test] = ACTIONS(4996), + [anon_sym_hide] = ACTIONS(4996), + [anon_sym_func] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_struct] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4994), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_void] = ACTIONS(4996), + [anon_sym_noreturn] = ACTIONS(4996), + [anon_sym_type] = ACTIONS(4996), + [anon_sym_anyopaque] = ACTIONS(4996), + [anon_sym_bool] = ACTIONS(4996), + [anon_sym_int] = ACTIONS(4996), + [anon_sym_uint] = ACTIONS(4996), + [anon_sym_float] = ACTIONS(4996), + [anon_sym_range] = ACTIONS(4996), + [anon_sym_i8] = ACTIONS(4996), + [anon_sym_i16] = ACTIONS(4996), + [anon_sym_i32] = ACTIONS(4996), + [anon_sym_i64] = ACTIONS(4996), + [anon_sym_u8] = ACTIONS(4996), + [anon_sym_u16] = ACTIONS(4996), + [anon_sym_u32] = ACTIONS(4996), + [anon_sym_u64] = ACTIONS(4996), + [anon_sym_isize] = ACTIONS(4996), + [anon_sym_usize] = ACTIONS(4996), + [anon_sym_f32] = ACTIONS(4996), + [anon_sym_f64] = ACTIONS(4996), + [anon_sym_c_char] = ACTIONS(4996), + [anon_sym_c_schar] = ACTIONS(4996), + [anon_sym_c_uchar] = ACTIONS(4996), + [anon_sym_c_short] = ACTIONS(4996), + [anon_sym_c_ushort] = ACTIONS(4996), + [anon_sym_c_int] = ACTIONS(4996), + [anon_sym_c_uint] = ACTIONS(4996), + [anon_sym_c_long] = ACTIONS(4996), + [anon_sym_c_ulong] = ACTIONS(4996), + [anon_sym_c_longlong] = ACTIONS(4996), + [anon_sym_c_ulonglong] = ACTIONS(4996), + [anon_sym_c_float] = ACTIONS(4996), + [anon_sym_c_double] = ACTIONS(4996), + [anon_sym_c_longdouble] = ACTIONS(4996), + [anon_sym_return] = ACTIONS(4996), + [anon_sym_yield] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4994), + [anon_sym_break] = ACTIONS(4996), + [anon_sym_continue] = ACTIONS(4996), + [anon_sym_defer] = ACTIONS(4996), + [anon_sym_errdefer] = ACTIONS(4996), + [anon_sym_if] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_while] = ACTIONS(4996), + [anon_sym_expand] = ACTIONS(4996), + [anon_sym_for] = ACTIONS(4996), + [anon_sym_match] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4994), + [anon_sym_orelse] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_xor] = ACTIONS(4996), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4994), + [anon_sym_LT_LT_PIPE] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_catch] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4996), + [anon_sym_unreachable] = ACTIONS(4996), + [anon_sym_undefined] = ACTIONS(4996), + [sym_sink] = ACTIONS(4996), + [sym_integer] = ACTIONS(4996), + [sym_float] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(4994), + [sym_multiline_string] = ACTIONS(4994), + [sym_character] = ACTIONS(4994), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4994), + }, + [STATE(4728)] = { + [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(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4466), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_QMARK] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_void] = ACTIONS(4468), + [anon_sym_noreturn] = 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_COLON] = ACTIONS(4466), + [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_DOT_DOT] = ACTIONS(4468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4466), + [anon_sym_orelse] = ACTIONS(4468), + [anon_sym_or] = ACTIONS(4468), + [anon_sym_and] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + [anon_sym_xor] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4466), + [anon_sym_LT_LT_PIPE] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4466), + [anon_sym_SLASH] = ACTIONS(4466), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_CARET] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4468), + [anon_sym_false] = ACTIONS(4468), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_unreachable] = ACTIONS(4468), + [anon_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(4729)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6715), + [sym_labeled_block] = STATE(6715), + [sym_if_statement] = STATE(6715), + [sym_while_statement] = STATE(6715), + [sym_for_statement] = STATE(6715), + [sym_match_statement] = STATE(6715), + [sym__value] = STATE(6715), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4551), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7382), + }, + [STATE(4730)] = { + [ts_builtin_sym_end] = ACTIONS(5470), + [sym_identifier] = ACTIONS(5472), + [anon_sym_import] = ACTIONS(5472), + [anon_sym_test] = ACTIONS(5472), + [anon_sym_hide] = ACTIONS(5472), + [anon_sym_func] = ACTIONS(5472), + [anon_sym_BANG] = ACTIONS(5472), + [anon_sym_struct] = ACTIONS(5472), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_DASH] = ACTIONS(5470), + [anon_sym_DOLLAR] = ACTIONS(5470), + [anon_sym_PIPE] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_void] = ACTIONS(5472), + [anon_sym_noreturn] = ACTIONS(5472), + [anon_sym_type] = ACTIONS(5472), + [anon_sym_anyopaque] = ACTIONS(5472), + [anon_sym_bool] = ACTIONS(5472), + [anon_sym_int] = ACTIONS(5472), + [anon_sym_uint] = ACTIONS(5472), + [anon_sym_float] = ACTIONS(5472), + [anon_sym_range] = ACTIONS(5472), + [anon_sym_i8] = ACTIONS(5472), + [anon_sym_i16] = ACTIONS(5472), + [anon_sym_i32] = ACTIONS(5472), + [anon_sym_i64] = ACTIONS(5472), + [anon_sym_u8] = ACTIONS(5472), + [anon_sym_u16] = ACTIONS(5472), + [anon_sym_u32] = ACTIONS(5472), + [anon_sym_u64] = ACTIONS(5472), + [anon_sym_isize] = ACTIONS(5472), + [anon_sym_usize] = ACTIONS(5472), + [anon_sym_f32] = ACTIONS(5472), + [anon_sym_f64] = ACTIONS(5472), + [anon_sym_c_char] = ACTIONS(5472), + [anon_sym_c_schar] = ACTIONS(5472), + [anon_sym_c_uchar] = ACTIONS(5472), + [anon_sym_c_short] = ACTIONS(5472), + [anon_sym_c_ushort] = ACTIONS(5472), + [anon_sym_c_int] = ACTIONS(5472), + [anon_sym_c_uint] = ACTIONS(5472), + [anon_sym_c_long] = ACTIONS(5472), + [anon_sym_c_ulong] = ACTIONS(5472), + [anon_sym_c_longlong] = ACTIONS(5472), + [anon_sym_c_ulonglong] = ACTIONS(5472), + [anon_sym_c_float] = ACTIONS(5472), + [anon_sym_c_double] = ACTIONS(5472), + [anon_sym_c_longdouble] = ACTIONS(5472), + [anon_sym_return] = ACTIONS(5472), + [anon_sym_yield] = ACTIONS(5472), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_break] = ACTIONS(5472), + [anon_sym_continue] = ACTIONS(5472), + [anon_sym_defer] = ACTIONS(5472), + [anon_sym_errdefer] = ACTIONS(5472), + [anon_sym_if] = ACTIONS(5472), + [anon_sym_else] = ACTIONS(5472), + [anon_sym_while] = ACTIONS(5472), + [anon_sym_expand] = ACTIONS(5472), + [anon_sym_for] = ACTIONS(5472), + [anon_sym_match] = ACTIONS(5472), + [anon_sym_DOT_DOT] = ACTIONS(5472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5470), + [anon_sym_orelse] = ACTIONS(5472), + [anon_sym_or] = ACTIONS(5472), + [anon_sym_and] = ACTIONS(5472), + [anon_sym_EQ_EQ] = ACTIONS(5470), + [anon_sym_BANG_EQ] = ACTIONS(5470), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_LT_EQ] = ACTIONS(5470), + [anon_sym_GT] = ACTIONS(5472), + [anon_sym_GT_EQ] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_xor] = ACTIONS(5472), + [anon_sym_LT_LT] = ACTIONS(5472), + [anon_sym_GT_GT] = ACTIONS(5470), + [anon_sym_LT_LT_PIPE] = ACTIONS(5470), + [anon_sym_PLUS] = ACTIONS(5470), + [anon_sym_SLASH] = ACTIONS(5470), + [anon_sym_catch] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5470), + [anon_sym_try] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5472), + [anon_sym_CARET] = ACTIONS(5470), + [anon_sym_true] = ACTIONS(5472), + [anon_sym_false] = ACTIONS(5472), + [anon_sym_null] = ACTIONS(5472), + [anon_sym_unreachable] = ACTIONS(5472), + [anon_sym_undefined] = ACTIONS(5472), + [sym_sink] = ACTIONS(5472), + [sym_integer] = ACTIONS(5472), + [sym_float] = ACTIONS(5470), + [anon_sym_DQUOTE] = ACTIONS(5470), + [sym_multiline_string] = ACTIONS(5470), + [sym_character] = ACTIONS(5470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5470), + }, + [STATE(4731)] = { + [ts_builtin_sym_end] = ACTIONS(4470), + [sym_identifier] = ACTIONS(4472), + [anon_sym_import] = ACTIONS(4472), + [anon_sym_test] = ACTIONS(4472), + [anon_sym_hide] = ACTIONS(4472), + [anon_sym_func] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_void] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym_type] = ACTIONS(4472), + [anon_sym_anyopaque] = ACTIONS(4472), + [anon_sym_bool] = ACTIONS(4472), + [anon_sym_int] = ACTIONS(4472), + [anon_sym_uint] = ACTIONS(4472), + [anon_sym_float] = ACTIONS(4472), + [anon_sym_range] = ACTIONS(4472), + [anon_sym_i8] = ACTIONS(4472), + [anon_sym_i16] = ACTIONS(4472), + [anon_sym_i32] = ACTIONS(4472), + [anon_sym_i64] = ACTIONS(4472), + [anon_sym_u8] = ACTIONS(4472), + [anon_sym_u16] = ACTIONS(4472), + [anon_sym_u32] = ACTIONS(4472), + [anon_sym_u64] = ACTIONS(4472), + [anon_sym_isize] = ACTIONS(4472), + [anon_sym_usize] = ACTIONS(4472), + [anon_sym_f32] = ACTIONS(4472), + [anon_sym_f64] = ACTIONS(4472), + [anon_sym_c_char] = ACTIONS(4472), + [anon_sym_c_schar] = ACTIONS(4472), + [anon_sym_c_uchar] = ACTIONS(4472), + [anon_sym_c_short] = ACTIONS(4472), + [anon_sym_c_ushort] = ACTIONS(4472), + [anon_sym_c_int] = ACTIONS(4472), + [anon_sym_c_uint] = ACTIONS(4472), + [anon_sym_c_long] = ACTIONS(4472), + [anon_sym_c_ulong] = ACTIONS(4472), + [anon_sym_c_longlong] = ACTIONS(4472), + [anon_sym_c_ulonglong] = ACTIONS(4472), + [anon_sym_c_float] = ACTIONS(4472), + [anon_sym_c_double] = ACTIONS(4472), + [anon_sym_c_longdouble] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_defer] = ACTIONS(4472), + [anon_sym_errdefer] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_expand] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_match] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4470), + [anon_sym_orelse] = ACTIONS(4472), + [anon_sym_or] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4472), + [anon_sym_EQ_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + [anon_sym_xor] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(4472), + [anon_sym_GT_GT] = ACTIONS(4470), + [anon_sym_LT_LT_PIPE] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_SLASH] = ACTIONS(4470), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_CARET] = ACTIONS(4470), + [anon_sym_true] = ACTIONS(4472), + [anon_sym_false] = ACTIONS(4472), + [anon_sym_null] = ACTIONS(4472), + [anon_sym_unreachable] = ACTIONS(4472), + [anon_sym_undefined] = ACTIONS(4472), + [sym_sink] = ACTIONS(4472), + [sym_integer] = ACTIONS(4472), + [sym_float] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_multiline_string] = ACTIONS(4470), + [sym_character] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4470), + }, + [STATE(4732)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6668), + [sym_labeled_block] = STATE(6668), + [sym_if_statement] = STATE(6668), + [sym_while_statement] = STATE(6668), + [sym_for_statement] = STATE(6668), + [sym_match_statement] = STATE(6668), + [sym__value] = STATE(6668), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4733)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6712), + [sym_labeled_block] = STATE(6712), + [sym_if_statement] = STATE(6712), + [sym_while_statement] = STATE(6712), + [sym_for_statement] = STATE(6712), + [sym_match_statement] = STATE(6712), + [sym__value] = STATE(6712), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4742), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7384), + }, + [STATE(4734)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6713), + [sym_labeled_block] = STATE(6713), + [sym_if_statement] = STATE(6713), + [sym_while_statement] = STATE(6713), + [sym_for_statement] = STATE(6713), + [sym_match_statement] = STATE(6713), + [sym__value] = STATE(6713), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4744), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7386), + }, + [STATE(4735)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4365), + [sym_labeled_block] = STATE(4365), + [sym_if_statement] = STATE(4365), + [sym_while_statement] = STATE(4365), + [sym_for_statement] = STATE(4365), + [sym_match_statement] = STATE(4365), + [sym__value] = STATE(4365), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4736)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9549), + [sym_labeled_block] = STATE(9549), + [sym_if_statement] = STATE(9549), + [sym_while_statement] = STATE(9549), + [sym_for_statement] = STATE(9549), + [sym_match_statement] = STATE(9549), + [sym__value] = STATE(9549), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(3980), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7388), + }, + [STATE(4737)] = { + [ts_builtin_sym_end] = ACTIONS(4998), + [sym_identifier] = ACTIONS(5000), + [anon_sym_import] = ACTIONS(5000), + [anon_sym_test] = ACTIONS(5000), + [anon_sym_hide] = ACTIONS(5000), + [anon_sym_func] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_void] = ACTIONS(5000), + [anon_sym_noreturn] = ACTIONS(5000), + [anon_sym_type] = ACTIONS(5000), + [anon_sym_anyopaque] = ACTIONS(5000), + [anon_sym_bool] = ACTIONS(5000), + [anon_sym_int] = ACTIONS(5000), + [anon_sym_uint] = ACTIONS(5000), + [anon_sym_float] = ACTIONS(5000), + [anon_sym_range] = ACTIONS(5000), + [anon_sym_i8] = ACTIONS(5000), + [anon_sym_i16] = ACTIONS(5000), + [anon_sym_i32] = ACTIONS(5000), + [anon_sym_i64] = ACTIONS(5000), + [anon_sym_u8] = ACTIONS(5000), + [anon_sym_u16] = ACTIONS(5000), + [anon_sym_u32] = ACTIONS(5000), + [anon_sym_u64] = ACTIONS(5000), + [anon_sym_isize] = ACTIONS(5000), + [anon_sym_usize] = ACTIONS(5000), + [anon_sym_f32] = ACTIONS(5000), + [anon_sym_f64] = ACTIONS(5000), + [anon_sym_c_char] = ACTIONS(5000), + [anon_sym_c_schar] = ACTIONS(5000), + [anon_sym_c_uchar] = ACTIONS(5000), + [anon_sym_c_short] = ACTIONS(5000), + [anon_sym_c_ushort] = ACTIONS(5000), + [anon_sym_c_int] = ACTIONS(5000), + [anon_sym_c_uint] = ACTIONS(5000), + [anon_sym_c_long] = ACTIONS(5000), + [anon_sym_c_ulong] = ACTIONS(5000), + [anon_sym_c_longlong] = ACTIONS(5000), + [anon_sym_c_ulonglong] = ACTIONS(5000), + [anon_sym_c_float] = ACTIONS(5000), + [anon_sym_c_double] = ACTIONS(5000), + [anon_sym_c_longdouble] = ACTIONS(5000), + [anon_sym_return] = ACTIONS(5000), + [anon_sym_yield] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_break] = ACTIONS(5000), + [anon_sym_continue] = ACTIONS(5000), + [anon_sym_defer] = ACTIONS(5000), + [anon_sym_errdefer] = ACTIONS(5000), + [anon_sym_if] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_while] = ACTIONS(5000), + [anon_sym_expand] = ACTIONS(5000), + [anon_sym_for] = ACTIONS(5000), + [anon_sym_match] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4998), + [anon_sym_orelse] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(5000), + [anon_sym_and] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(5000), + [anon_sym_LT_LT] = ACTIONS(5000), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_LT_LT_PIPE] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_catch] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_try] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_true] = ACTIONS(5000), + [anon_sym_false] = ACTIONS(5000), + [anon_sym_null] = ACTIONS(5000), + [anon_sym_unreachable] = ACTIONS(5000), + [anon_sym_undefined] = ACTIONS(5000), + [sym_sink] = ACTIONS(5000), + [sym_integer] = ACTIONS(5000), + [sym_float] = ACTIONS(4998), + [anon_sym_DQUOTE] = ACTIONS(4998), + [sym_multiline_string] = ACTIONS(4998), + [sym_character] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4998), + }, + [STATE(4738)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4412), + [sym_labeled_block] = STATE(4412), + [sym_if_statement] = STATE(4412), + [sym_while_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_match_statement] = STATE(4412), + [sym__value] = STATE(4412), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4739)] = { [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_BANG] = ACTIONS(4424), [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_PIPE] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), [anon_sym_LBRACK] = ACTIONS(4422), [anon_sym_void] = ACTIONS(4424), [anon_sym_noreturn] = ACTIONS(4424), @@ -209846,6 +584122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(4424), [anon_sym_return] = ACTIONS(4424), [anon_sym_yield] = ACTIONS(4424), + [anon_sym_COLON] = ACTIONS(4422), [anon_sym_break] = ACTIONS(4424), [anon_sym_continue] = ACTIONS(4424), [anon_sym_defer] = ACTIONS(4424), @@ -209856,10 +584133,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expand] = ACTIONS(4424), [anon_sym_for] = ACTIONS(4424), [anon_sym_match] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4422), + [anon_sym_orelse] = ACTIONS(4424), + [anon_sym_or] = ACTIONS(4424), + [anon_sym_and] = ACTIONS(4424), + [anon_sym_EQ_EQ] = ACTIONS(4422), + [anon_sym_BANG_EQ] = ACTIONS(4422), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_LT_EQ] = ACTIONS(4422), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_GT_EQ] = ACTIONS(4422), [anon_sym_AMP] = ACTIONS(4422), + [anon_sym_xor] = ACTIONS(4424), + [anon_sym_LT_LT] = ACTIONS(4424), + [anon_sym_GT_GT] = ACTIONS(4422), + [anon_sym_LT_LT_PIPE] = ACTIONS(4422), + [anon_sym_PLUS] = ACTIONS(4422), + [anon_sym_SLASH] = ACTIONS(4422), + [anon_sym_catch] = ACTIONS(4424), [anon_sym_TILDE] = ACTIONS(4422), [anon_sym_try] = ACTIONS(4424), - [anon_sym_DOT] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4422), [anon_sym_true] = ACTIONS(4424), [anon_sym_false] = ACTIONS(4424), [anon_sym_null] = ACTIONS(4424), @@ -209874,21 +584170,30397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4422), }, - [STATE(1856)] = { - [ts_builtin_sym_end] = ACTIONS(4426), + [STATE(4740)] = { + [ts_builtin_sym_end] = ACTIONS(5254), + [sym_identifier] = ACTIONS(5256), + [anon_sym_import] = ACTIONS(5256), + [anon_sym_test] = ACTIONS(5256), + [anon_sym_hide] = ACTIONS(5256), + [anon_sym_func] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_struct] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(5254), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_void] = ACTIONS(5256), + [anon_sym_noreturn] = ACTIONS(5256), + [anon_sym_type] = ACTIONS(5256), + [anon_sym_anyopaque] = ACTIONS(5256), + [anon_sym_bool] = ACTIONS(5256), + [anon_sym_int] = ACTIONS(5256), + [anon_sym_uint] = ACTIONS(5256), + [anon_sym_float] = ACTIONS(5256), + [anon_sym_range] = ACTIONS(5256), + [anon_sym_i8] = ACTIONS(5256), + [anon_sym_i16] = ACTIONS(5256), + [anon_sym_i32] = ACTIONS(5256), + [anon_sym_i64] = ACTIONS(5256), + [anon_sym_u8] = ACTIONS(5256), + [anon_sym_u16] = ACTIONS(5256), + [anon_sym_u32] = ACTIONS(5256), + [anon_sym_u64] = ACTIONS(5256), + [anon_sym_isize] = ACTIONS(5256), + [anon_sym_usize] = ACTIONS(5256), + [anon_sym_f32] = ACTIONS(5256), + [anon_sym_f64] = ACTIONS(5256), + [anon_sym_c_char] = ACTIONS(5256), + [anon_sym_c_schar] = ACTIONS(5256), + [anon_sym_c_uchar] = ACTIONS(5256), + [anon_sym_c_short] = ACTIONS(5256), + [anon_sym_c_ushort] = ACTIONS(5256), + [anon_sym_c_int] = ACTIONS(5256), + [anon_sym_c_uint] = ACTIONS(5256), + [anon_sym_c_long] = ACTIONS(5256), + [anon_sym_c_ulong] = ACTIONS(5256), + [anon_sym_c_longlong] = ACTIONS(5256), + [anon_sym_c_ulonglong] = ACTIONS(5256), + [anon_sym_c_float] = ACTIONS(5256), + [anon_sym_c_double] = ACTIONS(5256), + [anon_sym_c_longdouble] = ACTIONS(5256), + [anon_sym_return] = ACTIONS(5256), + [anon_sym_yield] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5254), + [anon_sym_break] = ACTIONS(5256), + [anon_sym_continue] = ACTIONS(5256), + [anon_sym_defer] = ACTIONS(5256), + [anon_sym_errdefer] = ACTIONS(5256), + [anon_sym_if] = ACTIONS(5256), + [anon_sym_else] = ACTIONS(5256), + [anon_sym_while] = ACTIONS(5256), + [anon_sym_expand] = ACTIONS(5256), + [anon_sym_for] = ACTIONS(5256), + [anon_sym_match] = ACTIONS(5256), + [anon_sym_DOT_DOT] = ACTIONS(5256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5254), + [anon_sym_orelse] = ACTIONS(5256), + [anon_sym_or] = ACTIONS(5256), + [anon_sym_and] = ACTIONS(5256), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(5254), + [anon_sym_xor] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5256), + [anon_sym_GT_GT] = ACTIONS(5254), + [anon_sym_LT_LT_PIPE] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5254), + [anon_sym_SLASH] = ACTIONS(5254), + [anon_sym_catch] = ACTIONS(5256), + [anon_sym_TILDE] = ACTIONS(5254), + [anon_sym_try] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_true] = ACTIONS(5256), + [anon_sym_false] = ACTIONS(5256), + [anon_sym_null] = ACTIONS(5256), + [anon_sym_unreachable] = ACTIONS(5256), + [anon_sym_undefined] = ACTIONS(5256), + [sym_sink] = ACTIONS(5256), + [sym_integer] = ACTIONS(5256), + [sym_float] = ACTIONS(5254), + [anon_sym_DQUOTE] = ACTIONS(5254), + [sym_multiline_string] = ACTIONS(5254), + [sym_character] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5254), + }, + [STATE(4741)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9651), + [sym_error_capture] = STATE(4849), + [sym_if_statement] = STATE(9651), + [sym_while_statement] = STATE(9651), + [sym_for_statement] = STATE(9651), + [sym_match_statement] = STATE(9651), + [sym_expression] = STATE(9654), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4850), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7390), + }, + [STATE(4742)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6734), + [sym_labeled_block] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym_while_statement] = STATE(6734), + [sym_for_statement] = STATE(6734), + [sym_match_statement] = STATE(6734), + [sym__value] = STATE(6734), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4743)] = { + [ts_builtin_sym_end] = ACTIONS(5258), + [sym_identifier] = ACTIONS(5260), + [anon_sym_import] = ACTIONS(5260), + [anon_sym_test] = ACTIONS(5260), + [anon_sym_hide] = ACTIONS(5260), + [anon_sym_func] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_struct] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_void] = ACTIONS(5260), + [anon_sym_noreturn] = ACTIONS(5260), + [anon_sym_type] = ACTIONS(5260), + [anon_sym_anyopaque] = ACTIONS(5260), + [anon_sym_bool] = ACTIONS(5260), + [anon_sym_int] = ACTIONS(5260), + [anon_sym_uint] = ACTIONS(5260), + [anon_sym_float] = ACTIONS(5260), + [anon_sym_range] = ACTIONS(5260), + [anon_sym_i8] = ACTIONS(5260), + [anon_sym_i16] = ACTIONS(5260), + [anon_sym_i32] = ACTIONS(5260), + [anon_sym_i64] = ACTIONS(5260), + [anon_sym_u8] = ACTIONS(5260), + [anon_sym_u16] = ACTIONS(5260), + [anon_sym_u32] = ACTIONS(5260), + [anon_sym_u64] = ACTIONS(5260), + [anon_sym_isize] = ACTIONS(5260), + [anon_sym_usize] = ACTIONS(5260), + [anon_sym_f32] = ACTIONS(5260), + [anon_sym_f64] = ACTIONS(5260), + [anon_sym_c_char] = ACTIONS(5260), + [anon_sym_c_schar] = ACTIONS(5260), + [anon_sym_c_uchar] = ACTIONS(5260), + [anon_sym_c_short] = ACTIONS(5260), + [anon_sym_c_ushort] = ACTIONS(5260), + [anon_sym_c_int] = ACTIONS(5260), + [anon_sym_c_uint] = ACTIONS(5260), + [anon_sym_c_long] = ACTIONS(5260), + [anon_sym_c_ulong] = ACTIONS(5260), + [anon_sym_c_longlong] = ACTIONS(5260), + [anon_sym_c_ulonglong] = ACTIONS(5260), + [anon_sym_c_float] = ACTIONS(5260), + [anon_sym_c_double] = ACTIONS(5260), + [anon_sym_c_longdouble] = ACTIONS(5260), + [anon_sym_return] = ACTIONS(5260), + [anon_sym_yield] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5258), + [anon_sym_break] = ACTIONS(5260), + [anon_sym_continue] = ACTIONS(5260), + [anon_sym_defer] = ACTIONS(5260), + [anon_sym_errdefer] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(5260), + [anon_sym_else] = ACTIONS(5260), + [anon_sym_while] = ACTIONS(5260), + [anon_sym_expand] = ACTIONS(5260), + [anon_sym_for] = ACTIONS(5260), + [anon_sym_match] = ACTIONS(5260), + [anon_sym_DOT_DOT] = ACTIONS(5260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5258), + [anon_sym_orelse] = ACTIONS(5260), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_LT_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5258), + [anon_sym_LT_LT_PIPE] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5258), + [anon_sym_SLASH] = ACTIONS(5258), + [anon_sym_catch] = ACTIONS(5260), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_try] = ACTIONS(5260), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_true] = ACTIONS(5260), + [anon_sym_false] = ACTIONS(5260), + [anon_sym_null] = ACTIONS(5260), + [anon_sym_unreachable] = ACTIONS(5260), + [anon_sym_undefined] = ACTIONS(5260), + [sym_sink] = ACTIONS(5260), + [sym_integer] = ACTIONS(5260), + [sym_float] = ACTIONS(5258), + [anon_sym_DQUOTE] = ACTIONS(5258), + [sym_multiline_string] = ACTIONS(5258), + [sym_character] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5258), + }, + [STATE(4744)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6735), + [sym_labeled_block] = STATE(6735), + [sym_if_statement] = STATE(6735), + [sym_while_statement] = STATE(6735), + [sym_for_statement] = STATE(6735), + [sym_match_statement] = STATE(6735), + [sym__value] = STATE(6735), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4745)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4417), + [sym_labeled_block] = STATE(4417), + [sym_if_statement] = STATE(4417), + [sym_while_statement] = STATE(4417), + [sym_for_statement] = STATE(4417), + [sym_match_statement] = STATE(4417), + [sym__value] = STATE(4417), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4746)] = { + [ts_builtin_sym_end] = ACTIONS(4484), + [sym_identifier] = ACTIONS(4486), + [anon_sym_import] = ACTIONS(4486), + [anon_sym_test] = ACTIONS(4486), + [anon_sym_hide] = ACTIONS(4486), + [anon_sym_func] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4484), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_void] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_type] = ACTIONS(4486), + [anon_sym_anyopaque] = ACTIONS(4486), + [anon_sym_bool] = ACTIONS(4486), + [anon_sym_int] = ACTIONS(4486), + [anon_sym_uint] = ACTIONS(4486), + [anon_sym_float] = ACTIONS(4486), + [anon_sym_range] = ACTIONS(4486), + [anon_sym_i8] = ACTIONS(4486), + [anon_sym_i16] = ACTIONS(4486), + [anon_sym_i32] = ACTIONS(4486), + [anon_sym_i64] = ACTIONS(4486), + [anon_sym_u8] = ACTIONS(4486), + [anon_sym_u16] = ACTIONS(4486), + [anon_sym_u32] = ACTIONS(4486), + [anon_sym_u64] = ACTIONS(4486), + [anon_sym_isize] = ACTIONS(4486), + [anon_sym_usize] = ACTIONS(4486), + [anon_sym_f32] = ACTIONS(4486), + [anon_sym_f64] = ACTIONS(4486), + [anon_sym_c_char] = ACTIONS(4486), + [anon_sym_c_schar] = ACTIONS(4486), + [anon_sym_c_uchar] = ACTIONS(4486), + [anon_sym_c_short] = ACTIONS(4486), + [anon_sym_c_ushort] = ACTIONS(4486), + [anon_sym_c_int] = ACTIONS(4486), + [anon_sym_c_uint] = ACTIONS(4486), + [anon_sym_c_long] = ACTIONS(4486), + [anon_sym_c_ulong] = ACTIONS(4486), + [anon_sym_c_longlong] = ACTIONS(4486), + [anon_sym_c_ulonglong] = ACTIONS(4486), + [anon_sym_c_float] = ACTIONS(4486), + [anon_sym_c_double] = ACTIONS(4486), + [anon_sym_c_longdouble] = ACTIONS(4486), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_yield] = ACTIONS(4486), + [anon_sym_COLON] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_defer] = ACTIONS(4486), + [anon_sym_errdefer] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_while] = ACTIONS(4486), + [anon_sym_expand] = ACTIONS(4486), + [anon_sym_for] = ACTIONS(4486), + [anon_sym_match] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4484), + [anon_sym_orelse] = ACTIONS(4486), + [anon_sym_or] = ACTIONS(4486), + [anon_sym_and] = ACTIONS(4486), + [anon_sym_EQ_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_xor] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_LT_LT_PIPE] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4484), + [anon_sym_SLASH] = ACTIONS(4484), + [anon_sym_catch] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_CARET] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_unreachable] = ACTIONS(4486), + [anon_sym_undefined] = ACTIONS(4486), + [sym_sink] = ACTIONS(4486), + [sym_integer] = ACTIONS(4486), + [sym_float] = ACTIONS(4484), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_multiline_string] = ACTIONS(4484), + [sym_character] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4484), + }, + [STATE(4747)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9696), + [sym_labeled_block] = STATE(9696), + [sym_if_statement] = STATE(9696), + [sym_while_statement] = STATE(9696), + [sym_for_statement] = STATE(9696), + [sym_match_statement] = STATE(9696), + [sym__value] = STATE(9696), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4748), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7392), + }, + [STATE(4748)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9701), + [sym_labeled_block] = STATE(9701), + [sym_if_statement] = STATE(9701), + [sym_while_statement] = STATE(9701), + [sym_for_statement] = STATE(9701), + [sym_match_statement] = STATE(9701), + [sym__value] = STATE(9701), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4749)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(4992), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(9988), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4993), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7394), + }, + [STATE(4750)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(4995), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(8848), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4996), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7396), + }, + [STATE(4751)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9651), + [sym_error_capture] = STATE(4998), + [sym_if_statement] = STATE(9651), + [sym_while_statement] = STATE(9651), + [sym_for_statement] = STATE(9651), + [sym_match_statement] = STATE(9651), + [sym_expression] = STATE(9654), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4999), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7398), + }, + [STATE(4752)] = { + [ts_builtin_sym_end] = ACTIONS(5002), + [sym_identifier] = ACTIONS(5004), + [anon_sym_import] = ACTIONS(5004), + [anon_sym_test] = ACTIONS(5004), + [anon_sym_hide] = ACTIONS(5004), + [anon_sym_func] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_struct] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5002), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_void] = ACTIONS(5004), + [anon_sym_noreturn] = ACTIONS(5004), + [anon_sym_type] = ACTIONS(5004), + [anon_sym_anyopaque] = ACTIONS(5004), + [anon_sym_bool] = ACTIONS(5004), + [anon_sym_int] = ACTIONS(5004), + [anon_sym_uint] = ACTIONS(5004), + [anon_sym_float] = ACTIONS(5004), + [anon_sym_range] = ACTIONS(5004), + [anon_sym_i8] = ACTIONS(5004), + [anon_sym_i16] = ACTIONS(5004), + [anon_sym_i32] = ACTIONS(5004), + [anon_sym_i64] = ACTIONS(5004), + [anon_sym_u8] = ACTIONS(5004), + [anon_sym_u16] = ACTIONS(5004), + [anon_sym_u32] = ACTIONS(5004), + [anon_sym_u64] = ACTIONS(5004), + [anon_sym_isize] = ACTIONS(5004), + [anon_sym_usize] = ACTIONS(5004), + [anon_sym_f32] = ACTIONS(5004), + [anon_sym_f64] = ACTIONS(5004), + [anon_sym_c_char] = ACTIONS(5004), + [anon_sym_c_schar] = ACTIONS(5004), + [anon_sym_c_uchar] = ACTIONS(5004), + [anon_sym_c_short] = ACTIONS(5004), + [anon_sym_c_ushort] = ACTIONS(5004), + [anon_sym_c_int] = ACTIONS(5004), + [anon_sym_c_uint] = ACTIONS(5004), + [anon_sym_c_long] = ACTIONS(5004), + [anon_sym_c_ulong] = ACTIONS(5004), + [anon_sym_c_longlong] = ACTIONS(5004), + [anon_sym_c_ulonglong] = ACTIONS(5004), + [anon_sym_c_float] = ACTIONS(5004), + [anon_sym_c_double] = ACTIONS(5004), + [anon_sym_c_longdouble] = ACTIONS(5004), + [anon_sym_return] = ACTIONS(5004), + [anon_sym_yield] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_break] = ACTIONS(5004), + [anon_sym_continue] = ACTIONS(5004), + [anon_sym_defer] = ACTIONS(5004), + [anon_sym_errdefer] = ACTIONS(5004), + [anon_sym_if] = ACTIONS(5004), + [anon_sym_else] = ACTIONS(5004), + [anon_sym_while] = ACTIONS(5004), + [anon_sym_expand] = ACTIONS(5004), + [anon_sym_for] = ACTIONS(5004), + [anon_sym_match] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), + [anon_sym_orelse] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym_LT_LT_PIPE] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_catch] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5002), + [anon_sym_try] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_true] = ACTIONS(5004), + [anon_sym_false] = ACTIONS(5004), + [anon_sym_null] = ACTIONS(5004), + [anon_sym_unreachable] = ACTIONS(5004), + [anon_sym_undefined] = ACTIONS(5004), + [sym_sink] = ACTIONS(5004), + [sym_integer] = ACTIONS(5004), + [sym_float] = ACTIONS(5002), + [anon_sym_DQUOTE] = ACTIONS(5002), + [sym_multiline_string] = ACTIONS(5002), + [sym_character] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5002), + }, + [STATE(4753)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8669), + [sym_error_capture] = STATE(5001), + [sym_if_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_match_statement] = STATE(8669), + [sym_expression] = STATE(8574), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5002), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7400), + }, + [STATE(4754)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4317), + [sym_error_capture] = STATE(5004), + [sym_if_statement] = STATE(4317), + [sym_while_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym_match_statement] = STATE(4317), + [sym_expression] = STATE(9988), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5005), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7402), + }, + [STATE(4755)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2550), + [sym_error_capture] = STATE(5007), + [sym_if_statement] = STATE(2550), + [sym_while_statement] = STATE(2550), + [sym_for_statement] = STATE(2550), + [sym_match_statement] = STATE(2550), + [sym_expression] = STATE(8848), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7404), + }, + [STATE(4756)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9651), + [sym_error_capture] = STATE(5010), + [sym_if_statement] = STATE(9651), + [sym_while_statement] = STATE(9651), + [sym_for_statement] = STATE(9651), + [sym_match_statement] = STATE(9651), + [sym_expression] = STATE(9654), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5011), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7406), + }, + [STATE(4757)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8669), + [sym_error_capture] = STATE(5013), + [sym_if_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_match_statement] = STATE(8669), + [sym_expression] = STATE(8574), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5014), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7408), + }, + [STATE(4758)] = { + [ts_builtin_sym_end] = ACTIONS(5400), + [sym_identifier] = ACTIONS(5402), + [anon_sym_import] = ACTIONS(5402), + [anon_sym_test] = ACTIONS(5402), + [anon_sym_hide] = ACTIONS(5402), + [anon_sym_func] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5402), + [anon_sym_struct] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5400), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_void] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_type] = ACTIONS(5402), + [anon_sym_anyopaque] = ACTIONS(5402), + [anon_sym_bool] = ACTIONS(5402), + [anon_sym_int] = ACTIONS(5402), + [anon_sym_uint] = ACTIONS(5402), + [anon_sym_float] = ACTIONS(5402), + [anon_sym_range] = ACTIONS(5402), + [anon_sym_i8] = ACTIONS(5402), + [anon_sym_i16] = ACTIONS(5402), + [anon_sym_i32] = ACTIONS(5402), + [anon_sym_i64] = ACTIONS(5402), + [anon_sym_u8] = ACTIONS(5402), + [anon_sym_u16] = ACTIONS(5402), + [anon_sym_u32] = ACTIONS(5402), + [anon_sym_u64] = ACTIONS(5402), + [anon_sym_isize] = ACTIONS(5402), + [anon_sym_usize] = ACTIONS(5402), + [anon_sym_f32] = ACTIONS(5402), + [anon_sym_f64] = ACTIONS(5402), + [anon_sym_c_char] = ACTIONS(5402), + [anon_sym_c_schar] = ACTIONS(5402), + [anon_sym_c_uchar] = ACTIONS(5402), + [anon_sym_c_short] = ACTIONS(5402), + [anon_sym_c_ushort] = ACTIONS(5402), + [anon_sym_c_int] = ACTIONS(5402), + [anon_sym_c_uint] = ACTIONS(5402), + [anon_sym_c_long] = ACTIONS(5402), + [anon_sym_c_ulong] = ACTIONS(5402), + [anon_sym_c_longlong] = ACTIONS(5402), + [anon_sym_c_ulonglong] = ACTIONS(5402), + [anon_sym_c_float] = ACTIONS(5402), + [anon_sym_c_double] = ACTIONS(5402), + [anon_sym_c_longdouble] = ACTIONS(5402), + [anon_sym_return] = ACTIONS(5402), + [anon_sym_yield] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5400), + [anon_sym_break] = ACTIONS(5402), + [anon_sym_continue] = ACTIONS(5402), + [anon_sym_defer] = ACTIONS(5402), + [anon_sym_errdefer] = ACTIONS(5402), + [anon_sym_if] = ACTIONS(5402), + [anon_sym_else] = ACTIONS(5402), + [anon_sym_while] = ACTIONS(5402), + [anon_sym_expand] = ACTIONS(5402), + [anon_sym_for] = ACTIONS(5402), + [anon_sym_match] = ACTIONS(5402), + [anon_sym_DOT_DOT] = ACTIONS(5402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5400), + [anon_sym_orelse] = ACTIONS(5402), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5400), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5400), + [anon_sym_LT_LT_PIPE] = ACTIONS(5400), + [anon_sym_PLUS] = ACTIONS(5400), + [anon_sym_SLASH] = ACTIONS(5400), + [anon_sym_catch] = ACTIONS(5402), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_try] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5400), + [anon_sym_true] = ACTIONS(5402), + [anon_sym_false] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5402), + [anon_sym_unreachable] = ACTIONS(5402), + [anon_sym_undefined] = ACTIONS(5402), + [sym_sink] = ACTIONS(5402), + [sym_integer] = ACTIONS(5402), + [sym_float] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [sym_multiline_string] = ACTIONS(5400), + [sym_character] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5400), + }, + [STATE(4759)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10683), + [sym_labeled_block] = STATE(10683), + [sym_if_statement] = STATE(10683), + [sym_while_statement] = STATE(10683), + [sym_for_statement] = STATE(10683), + [sym_match_statement] = STATE(10683), + [sym__value] = STATE(10683), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_COLON] = ACTIONS(7410), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + }, + [STATE(4760)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9583), + [sym_labeled_block] = STATE(9583), + [sym_if_statement] = STATE(9583), + [sym_while_statement] = STATE(9583), + [sym_for_statement] = STATE(9583), + [sym_match_statement] = STATE(9583), + [sym__value] = STATE(9583), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7412), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4761)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8400), + [sym_labeled_block] = STATE(8400), + [sym_if_statement] = STATE(8400), + [sym_while_statement] = STATE(8400), + [sym_for_statement] = STATE(8400), + [sym_match_statement] = STATE(8400), + [sym__value] = STATE(8400), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(7414), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4762)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7416), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4763)] = { + [sym_type] = STATE(15015), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7418), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7250), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4764)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8400), + [sym_labeled_block] = STATE(8400), + [sym_if_statement] = STATE(8400), + [sym_while_statement] = STATE(8400), + [sym_for_statement] = STATE(8400), + [sym_match_statement] = STATE(8400), + [sym__value] = STATE(8400), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(7420), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4765)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7422), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4766)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7424), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4767)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7426), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4768)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7428), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4769)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7430), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4770)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3535), + [sym_labeled_block] = STATE(3535), + [sym_if_statement] = STATE(3535), + [sym_while_statement] = STATE(3535), + [sym_for_statement] = STATE(3535), + [sym_match_statement] = STATE(3535), + [sym__value] = STATE(3535), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_COLON] = ACTIONS(7432), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + }, + [STATE(4771)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8400), + [sym_labeled_block] = STATE(8400), + [sym_if_statement] = STATE(8400), + [sym_while_statement] = STATE(8400), + [sym_for_statement] = STATE(8400), + [sym_match_statement] = STATE(8400), + [sym__value] = STATE(8400), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(7434), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4772)] = { + [sym_type] = STATE(8350), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(7436), + [anon_sym_func] = ACTIONS(1452), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(7438), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(7441), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(7444), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(7447), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(4773)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7450), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4774)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7452), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4775)] = { + [sym_type] = STATE(8353), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(7436), + [anon_sym_func] = ACTIONS(1452), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(7454), + [anon_sym_RPAREN] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(7457), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(7460), + [anon_sym_mut] = ACTIONS(7463), + [anon_sym_LBRACK] = ACTIONS(7465), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_RBRACK] = ACTIONS(1202), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(1202), + [anon_sym_DASH_EQ] = ACTIONS(1202), + [anon_sym_STAR_EQ] = ACTIONS(1202), + [anon_sym_SLASH_EQ] = ACTIONS(1202), + [anon_sym_AMP_EQ] = ACTIONS(1202), + [anon_sym_PIPE_EQ] = ACTIONS(1202), + [anon_sym_xor_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_EQ] = ACTIONS(1202), + [anon_sym_GT_GT_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1202), + [anon_sym_COLON] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [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_catch] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(4776)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7468), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4777)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9583), + [sym_labeled_block] = STATE(9583), + [sym_if_statement] = STATE(9583), + [sym_while_statement] = STATE(9583), + [sym_for_statement] = STATE(9583), + [sym_match_statement] = STATE(9583), + [sym__value] = STATE(9583), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7470), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4778)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9583), + [sym_labeled_block] = STATE(9583), + [sym_if_statement] = STATE(9583), + [sym_while_statement] = STATE(9583), + [sym_for_statement] = STATE(9583), + [sym_match_statement] = STATE(9583), + [sym__value] = STATE(9583), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4779)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8400), + [sym_labeled_block] = STATE(8400), + [sym_if_statement] = STATE(8400), + [sym_while_statement] = STATE(8400), + [sym_for_statement] = STATE(8400), + [sym_match_statement] = STATE(8400), + [sym__value] = STATE(8400), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(7474), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4780)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7476), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4781)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10683), + [sym_labeled_block] = STATE(10683), + [sym_if_statement] = STATE(10683), + [sym_while_statement] = STATE(10683), + [sym_for_statement] = STATE(10683), + [sym_match_statement] = STATE(10683), + [sym__value] = STATE(10683), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_COLON] = ACTIONS(7478), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + }, + [STATE(4782)] = { + [sym_type] = STATE(8344), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(7436), + [anon_sym_func] = ACTIONS(1452), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(7438), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(7441), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(7444), + [anon_sym_mut] = ACTIONS(7480), + [anon_sym_LBRACK] = ACTIONS(7447), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(4783)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7482), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4784)] = { + [sym_type] = STATE(8340), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(7436), + [anon_sym_func] = ACTIONS(1452), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(7484), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(7487), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(7490), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_RBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [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_COLON] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(4785)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9591), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6238), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(7496), + [anon_sym_yield] = ACTIONS(7496), + [anon_sym_break] = ACTIONS(7496), + [anon_sym_continue] = ACTIONS(7496), + [anon_sym_defer] = ACTIONS(7496), + [anon_sym_errdefer] = ACTIONS(7496), + [anon_sym_if] = ACTIONS(7496), + [anon_sym_while] = ACTIONS(7496), + [anon_sym_expand] = ACTIONS(7496), + [anon_sym_for] = ACTIONS(7496), + [anon_sym_match] = ACTIONS(7496), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7498), + }, + [STATE(4786)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7500), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4787)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9083), + [sym_labeled_block] = STATE(9083), + [sym_if_statement] = STATE(9083), + [sym_while_statement] = STATE(9083), + [sym_for_statement] = STATE(9083), + [sym_match_statement] = STATE(9083), + [sym__value] = STATE(9083), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_COLON] = ACTIONS(7502), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + }, + [STATE(4788)] = { + [sym_type] = STATE(15105), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7504), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4789)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7506), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4790)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4791)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7510), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4792)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3251), + [sym_labeled_block] = STATE(3251), + [sym_if_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_for_statement] = STATE(3251), + [sym_match_statement] = STATE(3251), + [sym__value] = STATE(3251), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(7512), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [STATE(4793)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7514), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4794)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3251), + [sym_labeled_block] = STATE(3251), + [sym_if_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_for_statement] = STATE(3251), + [sym_match_statement] = STATE(3251), + [sym__value] = STATE(3251), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(7516), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [STATE(4795)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9583), + [sym_labeled_block] = STATE(9583), + [sym_if_statement] = STATE(9583), + [sym_while_statement] = STATE(9583), + [sym_for_statement] = STATE(9583), + [sym_match_statement] = STATE(9583), + [sym__value] = STATE(9583), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7518), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4796)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9583), + [sym_labeled_block] = STATE(9583), + [sym_if_statement] = STATE(9583), + [sym_while_statement] = STATE(9583), + [sym_for_statement] = STATE(9583), + [sym_match_statement] = STATE(9583), + [sym__value] = STATE(9583), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7520), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4797)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9583), + [sym_labeled_block] = STATE(9583), + [sym_if_statement] = STATE(9583), + [sym_while_statement] = STATE(9583), + [sym_for_statement] = STATE(9583), + [sym_match_statement] = STATE(9583), + [sym__value] = STATE(9583), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7522), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4798)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7524), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4799)] = { + [sym_type] = STATE(15055), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7526), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4800)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7528), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4801)] = { + [sym_type] = STATE(14893), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7530), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7166), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4802)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7532), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4803)] = { + [sym_type] = STATE(14885), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7534), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4804)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7536), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4805)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9083), + [sym_labeled_block] = STATE(9083), + [sym_if_statement] = STATE(9083), + [sym_while_statement] = STATE(9083), + [sym_for_statement] = STATE(9083), + [sym_match_statement] = STATE(9083), + [sym__value] = STATE(9083), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_COLON] = ACTIONS(7538), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + }, + [STATE(4806)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7540), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4807)] = { + [sym_type] = STATE(8297), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(7436), + [anon_sym_func] = ACTIONS(1452), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(7545), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(7548), + [anon_sym_mut] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(4808)] = { + [sym_type] = STATE(8354), + [sym__type_atom] = STATE(8293), + [sym_parenthesized_type] = STATE(8293), + [sym_named_type] = STATE(8293), + [sym_intrinsic_type] = STATE(8293), + [sym_optional_type] = STATE(8293), + [sym_pointer_type] = STATE(8293), + [sym_array_type] = STATE(8293), + [sym_function_type] = STATE(8293), + [sym_builtin_type] = STATE(8293), + [sym_qualified_identifier] = STATE(8289), + [sym_identifier] = ACTIONS(7436), + [anon_sym_func] = ACTIONS(1452), + [anon_sym_c_func] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(7545), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(7548), + [anon_sym_mut] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(4809)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7554), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4810)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8400), + [sym_labeled_block] = STATE(8400), + [sym_if_statement] = STATE(8400), + [sym_while_statement] = STATE(8400), + [sym_for_statement] = STATE(8400), + [sym_match_statement] = STATE(8400), + [sym__value] = STATE(8400), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(7556), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4811)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7242), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4812)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9583), + [sym_labeled_block] = STATE(9583), + [sym_if_statement] = STATE(9583), + [sym_while_statement] = STATE(9583), + [sym_for_statement] = STATE(9583), + [sym_match_statement] = STATE(9583), + [sym__value] = STATE(9583), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(7558), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4813)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7560), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4814)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7562), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4815)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8400), + [sym_labeled_block] = STATE(8400), + [sym_if_statement] = STATE(8400), + [sym_while_statement] = STATE(8400), + [sym_for_statement] = STATE(8400), + [sym_match_statement] = STATE(8400), + [sym__value] = STATE(8400), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(7564), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4816)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3251), + [sym_labeled_block] = STATE(3251), + [sym_if_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_for_statement] = STATE(3251), + [sym_match_statement] = STATE(3251), + [sym__value] = STATE(3251), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [STATE(4817)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2159), + [sym_labeled_block] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_match_statement] = STATE(2159), + [sym__value] = STATE(2159), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(7568), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4818)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9591), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6238), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(7570), + [anon_sym_yield] = ACTIONS(7570), + [anon_sym_break] = ACTIONS(7570), + [anon_sym_continue] = ACTIONS(7570), + [anon_sym_defer] = ACTIONS(7570), + [anon_sym_errdefer] = ACTIONS(7570), + [anon_sym_if] = ACTIONS(7570), + [anon_sym_while] = ACTIONS(7570), + [anon_sym_expand] = ACTIONS(7570), + [anon_sym_for] = ACTIONS(7570), + [anon_sym_match] = ACTIONS(7570), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7498), + }, + [STATE(4819)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7219), + [sym_labeled_block] = STATE(7219), + [sym_if_statement] = STATE(7219), + [sym_while_statement] = STATE(7219), + [sym_for_statement] = STATE(7219), + [sym_match_statement] = STATE(7219), + [sym__value] = STATE(7219), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_COLON] = ACTIONS(7572), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [STATE(4820)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6774), + [sym_labeled_block] = STATE(6774), + [sym_if_statement] = STATE(6774), + [sym_while_statement] = STATE(6774), + [sym_for_statement] = STATE(6774), + [sym_match_statement] = STATE(6774), + [sym__value] = STATE(6774), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7574), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4821)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4263), + [sym_labeled_block] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_while_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym_match_statement] = STATE(4263), + [sym__value] = STATE(4263), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(7576), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4822)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7219), + [sym_labeled_block] = STATE(7219), + [sym_if_statement] = STATE(7219), + [sym_while_statement] = STATE(7219), + [sym_for_statement] = STATE(7219), + [sym_match_statement] = STATE(7219), + [sym__value] = STATE(7219), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_COLON] = ACTIONS(7578), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [STATE(4823)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8400), + [sym_labeled_block] = STATE(8400), + [sym_if_statement] = STATE(8400), + [sym_while_statement] = STATE(8400), + [sym_for_statement] = STATE(8400), + [sym_match_statement] = STATE(8400), + [sym__value] = STATE(8400), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(7580), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4824)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6761), + [sym_labeled_block] = STATE(6761), + [sym_if_statement] = STATE(6761), + [sym_while_statement] = STATE(6761), + [sym_for_statement] = STATE(6761), + [sym_match_statement] = STATE(6761), + [sym__value] = STATE(6761), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(17), + }, + [STATE(4825)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8645), + [sym_if_statement] = STATE(8645), + [sym_while_statement] = STATE(8645), + [sym_for_statement] = STATE(8645), + [sym_match_statement] = STATE(8645), + [sym_expression] = STATE(8696), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4826)] = { + [sym_type] = STATE(14879), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7582), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4827)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(9901), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4854), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7584), + }, + [STATE(4828)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(522), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4835), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7586), + }, + [STATE(4829)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(523), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4830)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(9907), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4831)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9497), + [sym_labeled_block] = STATE(9497), + [sym_if_statement] = STATE(9497), + [sym_while_statement] = STATE(9497), + [sym_for_statement] = STATE(9497), + [sym_match_statement] = STATE(9497), + [sym__value] = STATE(9497), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4832)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3466), + [sym_if_statement] = STATE(3466), + [sym_while_statement] = STATE(3466), + [sym_for_statement] = STATE(3466), + [sym_match_statement] = STATE(3466), + [sym_expression] = STATE(3375), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(4836), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7588), + }, + [STATE(4833)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3467), + [sym_if_statement] = STATE(3467), + [sym_while_statement] = STATE(3467), + [sym_for_statement] = STATE(3467), + [sym_match_statement] = STATE(3467), + [sym_expression] = STATE(3379), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4834)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8735), + [sym_labeled_block] = STATE(8735), + [sym_if_statement] = STATE(8735), + [sym_while_statement] = STATE(8735), + [sym_for_statement] = STATE(8735), + [sym_match_statement] = STATE(8735), + [sym__value] = STATE(8735), + [sym_expression] = STATE(8785), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4835)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(529), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4836)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3484), + [sym_if_statement] = STATE(3484), + [sym_while_statement] = STATE(3484), + [sym_for_statement] = STATE(3484), + [sym_match_statement] = STATE(3484), + [sym_expression] = STATE(3418), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4837)] = { + [sym_type] = STATE(15085), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7590), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7592), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4838)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3092), + [sym_if_statement] = STATE(3092), + [sym_while_statement] = STATE(3092), + [sym_for_statement] = STATE(3092), + [sym_match_statement] = STATE(3092), + [sym_expression] = STATE(6553), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4841), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7594), + }, + [STATE(4839)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3093), + [sym_if_statement] = STATE(3093), + [sym_while_statement] = STATE(3093), + [sym_for_statement] = STATE(3093), + [sym_match_statement] = STATE(3093), + [sym_expression] = STATE(6554), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4840)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7251), + [sym_labeled_block] = STATE(7251), + [sym_if_statement] = STATE(7251), + [sym_while_statement] = STATE(7251), + [sym_for_statement] = STATE(7251), + [sym_match_statement] = STATE(7251), + [sym__value] = STATE(7251), + [sym_expression] = STATE(7166), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [STATE(4841)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3122), + [sym_if_statement] = STATE(3122), + [sym_while_statement] = STATE(3122), + [sym_for_statement] = STATE(3122), + [sym_match_statement] = STATE(3122), + [sym_expression] = STATE(6573), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4842)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10755), + [sym_if_statement] = STATE(10755), + [sym_while_statement] = STATE(10755), + [sym_for_statement] = STATE(10755), + [sym_match_statement] = STATE(10755), + [sym_expression] = STATE(10314), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4845), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7596), + }, + [STATE(4843)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10766), + [sym_if_statement] = STATE(10766), + [sym_while_statement] = STATE(10766), + [sym_for_statement] = STATE(10766), + [sym_match_statement] = STATE(10766), + [sym_expression] = STATE(10319), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4844)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4845)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10652), + [sym_if_statement] = STATE(10652), + [sym_while_statement] = STATE(10652), + [sym_for_statement] = STATE(10652), + [sym_match_statement] = STATE(10652), + [sym_expression] = STATE(10429), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4846)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4847)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9115), + [sym_labeled_block] = STATE(9115), + [sym_if_statement] = STATE(9115), + [sym_while_statement] = STATE(9115), + [sym_for_statement] = STATE(9115), + [sym_match_statement] = STATE(9115), + [sym__value] = STATE(9115), + [sym_expression] = STATE(9037), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + }, + [STATE(4848)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3560), + [sym_labeled_block] = STATE(3560), + [sym_if_statement] = STATE(3560), + [sym_while_statement] = STATE(3560), + [sym_for_statement] = STATE(3560), + [sym_match_statement] = STATE(3560), + [sym__value] = STATE(3560), + [sym_expression] = STATE(3399), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [sym_identifier] = ACTIONS(671), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_if] = ACTIONS(689), + [anon_sym_while] = ACTIONS(691), + [anon_sym_expand] = ACTIONS(693), + [anon_sym_for] = ACTIONS(695), + [anon_sym_match] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + }, + [STATE(4849)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9729), + [sym_if_statement] = STATE(9729), + [sym_while_statement] = STATE(9729), + [sym_for_statement] = STATE(9729), + [sym_match_statement] = STATE(9729), + [sym_expression] = STATE(9730), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4853), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7598), + }, + [STATE(4850)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9733), + [sym_if_statement] = STATE(9733), + [sym_while_statement] = STATE(9733), + [sym_for_statement] = STATE(9733), + [sym_match_statement] = STATE(9733), + [sym_expression] = STATE(9734), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4851)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(371), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4852)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3280), + [sym_labeled_block] = STATE(3280), + [sym_if_statement] = STATE(3280), + [sym_while_statement] = STATE(3280), + [sym_for_statement] = STATE(3280), + [sym_match_statement] = STATE(3280), + [sym__value] = STATE(3280), + [sym_expression] = STATE(6577), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(823), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [STATE(4853)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9579), + [sym_if_statement] = STATE(9579), + [sym_while_statement] = STATE(9579), + [sym_for_statement] = STATE(9579), + [sym_match_statement] = STATE(9579), + [sym_expression] = STATE(9580), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4854)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(9904), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4855)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9729), + [sym_if_statement] = STATE(9729), + [sym_while_statement] = STATE(9729), + [sym_for_statement] = STATE(9729), + [sym_match_statement] = STATE(9729), + [sym_expression] = STATE(10408), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4858), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7600), + }, + [STATE(4856)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9733), + [sym_if_statement] = STATE(9733), + [sym_while_statement] = STATE(9733), + [sym_for_statement] = STATE(9733), + [sym_match_statement] = STATE(9733), + [sym_expression] = STATE(10415), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4857)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10756), + [sym_labeled_block] = STATE(10756), + [sym_if_statement] = STATE(10756), + [sym_while_statement] = STATE(10756), + [sym_for_statement] = STATE(10756), + [sym_match_statement] = STATE(10756), + [sym__value] = STATE(10756), + [sym_expression] = STATE(10367), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + }, + [STATE(4858)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9579), + [sym_if_statement] = STATE(9579), + [sym_while_statement] = STATE(9579), + [sym_for_statement] = STATE(9579), + [sym_match_statement] = STATE(9579), + [sym_expression] = STATE(10201), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4859)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(5075), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4862), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7602), + }, + [STATE(4860)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(5080), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4861)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4862)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(5078), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4863)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(9896), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4864)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(8757), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4867), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7604), + }, + [STATE(4865)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(8758), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4866)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(9871), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4867)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(8754), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4868)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(8857), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4869)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8631), + [sym_if_statement] = STATE(8631), + [sym_while_statement] = STATE(8631), + [sym_for_statement] = STATE(8631), + [sym_match_statement] = STATE(8631), + [sym_expression] = STATE(9027), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4871), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7606), + }, + [STATE(4870)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8645), + [sym_if_statement] = STATE(8645), + [sym_while_statement] = STATE(8645), + [sym_for_statement] = STATE(8645), + [sym_match_statement] = STATE(8645), + [sym_expression] = STATE(9029), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4871)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8380), + [sym_if_statement] = STATE(8380), + [sym_while_statement] = STATE(8380), + [sym_for_statement] = STATE(8380), + [sym_match_statement] = STATE(8380), + [sym_expression] = STATE(9033), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4872)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(8833), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4873)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8735), + [sym_labeled_block] = STATE(8735), + [sym_if_statement] = STATE(8735), + [sym_while_statement] = STATE(8735), + [sym_for_statement] = STATE(8735), + [sym_match_statement] = STATE(8735), + [sym__value] = STATE(8735), + [sym_expression] = STATE(9020), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(757), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4874)] = { + [sym_type] = STATE(15092), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7608), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4875)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3092), + [sym_if_statement] = STATE(3092), + [sym_while_statement] = STATE(3092), + [sym_for_statement] = STATE(3092), + [sym_match_statement] = STATE(3092), + [sym_expression] = STATE(2875), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4877), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7610), + }, + [STATE(4876)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3093), + [sym_if_statement] = STATE(3093), + [sym_while_statement] = STATE(3093), + [sym_for_statement] = STATE(3093), + [sym_match_statement] = STATE(3093), + [sym_expression] = STATE(2876), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4877)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3122), + [sym_if_statement] = STATE(3122), + [sym_while_statement] = STATE(3122), + [sym_for_statement] = STATE(3122), + [sym_match_statement] = STATE(3122), + [sym_expression] = STATE(2877), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4878)] = { + [sym_type] = STATE(2559), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1207), + [anon_sym_test] = ACTIONS(1207), + [anon_sym_hide] = ACTIONS(1207), + [anon_sym_func] = ACTIONS(1169), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(1202), + [anon_sym_DASH_EQ] = ACTIONS(1202), + [anon_sym_STAR_EQ] = ACTIONS(1202), + [anon_sym_SLASH_EQ] = ACTIONS(1202), + [anon_sym_AMP_EQ] = ACTIONS(1202), + [anon_sym_PIPE_EQ] = ACTIONS(1202), + [anon_sym_xor_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_EQ] = ACTIONS(1202), + [anon_sym_GT_GT_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1202), + [anon_sym_COLON] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [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_catch] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(4879)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3280), + [sym_labeled_block] = STATE(3280), + [sym_if_statement] = STATE(3280), + [sym_while_statement] = STATE(3280), + [sym_for_statement] = STATE(3280), + [sym_match_statement] = STATE(3280), + [sym__value] = STATE(3280), + [sym_expression] = STATE(2889), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(67), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [STATE(4880)] = { + [sym_type] = STATE(2565), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1161), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_test] = ACTIONS(1164), + [anon_sym_hide] = ACTIONS(1164), + [anon_sym_func] = ACTIONS(1169), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(4881)] = { + [sym_type] = STATE(2564), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1161), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_test] = ACTIONS(1164), + [anon_sym_hide] = ACTIONS(1164), + [anon_sym_func] = ACTIONS(1169), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_mut] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1159), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(4882)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8631), + [sym_if_statement] = STATE(8631), + [sym_while_statement] = STATE(8631), + [sym_for_statement] = STATE(8631), + [sym_match_statement] = STATE(8631), + [sym_expression] = STATE(8689), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4895), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7612), + }, + [STATE(4883)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8645), + [sym_if_statement] = STATE(8645), + [sym_while_statement] = STATE(8645), + [sym_for_statement] = STATE(8645), + [sym_match_statement] = STATE(8645), + [sym_expression] = STATE(8696), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4884)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(10016), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4888), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7614), + }, + [STATE(4885)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(10031), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4886)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(10046), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4887)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9497), + [sym_labeled_block] = STATE(9497), + [sym_if_statement] = STATE(9497), + [sym_while_statement] = STATE(9497), + [sym_for_statement] = STATE(9497), + [sym_match_statement] = STATE(9497), + [sym__value] = STATE(9497), + [sym_expression] = STATE(10235), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4888)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(9989), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4889)] = { + [sym_type] = STATE(2571), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1262), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1169), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(4890)] = { + [sym_type] = STATE(2573), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1262), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1169), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(4891)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(8845), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4893), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7616), + }, + [STATE(4892)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(8849), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4893)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(8815), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4894)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(3367), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4895)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8380), + [sym_if_statement] = STATE(8380), + [sym_while_statement] = STATE(8380), + [sym_for_statement] = STATE(8380), + [sym_match_statement] = STATE(8380), + [sym_expression] = STATE(8462), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4896)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8735), + [sym_labeled_block] = STATE(8735), + [sym_if_statement] = STATE(8735), + [sym_while_statement] = STATE(8735), + [sym_for_statement] = STATE(8735), + [sym_match_statement] = STATE(8735), + [sym__value] = STATE(8735), + [sym_expression] = STATE(8895), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4897)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(525), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4898)] = { + [sym_type] = STATE(2583), + [sym__type_atom] = STATE(735), + [sym_parenthesized_type] = STATE(735), + [sym_named_type] = STATE(735), + [sym_intrinsic_type] = STATE(735), + [sym_optional_type] = STATE(735), + [sym_pointer_type] = STATE(735), + [sym_array_type] = STATE(735), + [sym_function_type] = STATE(735), + [sym_builtin_type] = STATE(735), + [sym_qualified_identifier] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1229), + [anon_sym_import] = ACTIONS(1196), + [anon_sym_test] = ACTIONS(1196), + [anon_sym_hide] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(1169), + [anon_sym_c_func] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_struct_type_BANG] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_mut] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [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_COLON] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(4899)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(10174), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4900)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(5042), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(229), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4901)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6356), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4902)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(522), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4904), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7618), + }, + [STATE(4903)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(523), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4904)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(529), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4905)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(3400), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4906)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(5075), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4909), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7620), + }, + [STATE(4907)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(5080), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4908)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(5085), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4909)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(5078), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(311), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4910)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(909), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4911)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(522), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4913), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7622), + }, + [STATE(4912)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(523), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4913)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(529), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4914)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(5033), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4915)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7548), + [sym_if_statement] = STATE(7548), + [sym_while_statement] = STATE(7548), + [sym_for_statement] = STATE(7548), + [sym_match_statement] = STATE(7548), + [sym_expression] = STATE(7157), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4918), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7624), + }, + [STATE(4916)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7553), + [sym_if_statement] = STATE(7553), + [sym_while_statement] = STATE(7553), + [sym_for_statement] = STATE(7553), + [sym_match_statement] = STATE(7553), + [sym_expression] = STATE(7158), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4917)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(8770), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(509), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4918)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7260), + [sym_if_statement] = STATE(7260), + [sym_while_statement] = STATE(7260), + [sym_for_statement] = STATE(7260), + [sym_match_statement] = STATE(7260), + [sym_expression] = STATE(7165), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4919)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(5075), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5016), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7626), + }, + [STATE(4920)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(5080), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4921)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(6539), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4922)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(522), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4924), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7628), + }, + [STATE(4923)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(523), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4924)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(529), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4925)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(9901), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4927), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7630), + }, + [STATE(4926)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(9907), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4927)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(9904), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(283), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4928)] = { + [sym_type] = STATE(15098), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7632), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4929)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9729), + [sym_if_statement] = STATE(9729), + [sym_while_statement] = STATE(9729), + [sym_for_statement] = STATE(9729), + [sym_match_statement] = STATE(9729), + [sym_expression] = STATE(9730), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4931), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7634), + }, + [STATE(4930)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9733), + [sym_if_statement] = STATE(9733), + [sym_while_statement] = STATE(9733), + [sym_for_statement] = STATE(9733), + [sym_match_statement] = STATE(9733), + [sym_expression] = STATE(9734), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4931)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9579), + [sym_if_statement] = STATE(9579), + [sym_while_statement] = STATE(9579), + [sym_for_statement] = STATE(9579), + [sym_match_statement] = STATE(9579), + [sym_expression] = STATE(9580), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4932)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9497), + [sym_labeled_block] = STATE(9497), + [sym_if_statement] = STATE(9497), + [sym_while_statement] = STATE(9497), + [sym_for_statement] = STATE(9497), + [sym_match_statement] = STATE(9497), + [sym__value] = STATE(9497), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4933)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10755), + [sym_if_statement] = STATE(10755), + [sym_while_statement] = STATE(10755), + [sym_for_statement] = STATE(10755), + [sym_match_statement] = STATE(10755), + [sym_expression] = STATE(10314), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(4935), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7636), + }, + [STATE(4934)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10766), + [sym_if_statement] = STATE(10766), + [sym_while_statement] = STATE(10766), + [sym_for_statement] = STATE(10766), + [sym_match_statement] = STATE(10766), + [sym_expression] = STATE(10319), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4935)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10652), + [sym_if_statement] = STATE(10652), + [sym_while_statement] = STATE(10652), + [sym_for_statement] = STATE(10652), + [sym_match_statement] = STATE(10652), + [sym_expression] = STATE(10429), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4936)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9729), + [sym_if_statement] = STATE(9729), + [sym_while_statement] = STATE(9729), + [sym_for_statement] = STATE(9729), + [sym_match_statement] = STATE(9729), + [sym_expression] = STATE(10408), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4939), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7638), + }, + [STATE(4937)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9733), + [sym_if_statement] = STATE(9733), + [sym_while_statement] = STATE(9733), + [sym_for_statement] = STATE(9733), + [sym_match_statement] = STATE(9733), + [sym_expression] = STATE(10415), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4938)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10756), + [sym_labeled_block] = STATE(10756), + [sym_if_statement] = STATE(10756), + [sym_while_statement] = STATE(10756), + [sym_for_statement] = STATE(10756), + [sym_match_statement] = STATE(10756), + [sym__value] = STATE(10756), + [sym_expression] = STATE(10704), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [sym_identifier] = ACTIONS(1506), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(441), + [anon_sym_expand] = ACTIONS(443), + [anon_sym_for] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + }, + [STATE(4939)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9579), + [sym_if_statement] = STATE(9579), + [sym_while_statement] = STATE(9579), + [sym_for_statement] = STATE(9579), + [sym_match_statement] = STATE(9579), + [sym_expression] = STATE(10201), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(489), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4940)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8631), + [sym_if_statement] = STATE(8631), + [sym_while_statement] = STATE(8631), + [sym_for_statement] = STATE(8631), + [sym_match_statement] = STATE(8631), + [sym_expression] = STATE(8689), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4942), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7640), + }, + [STATE(4941)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9497), + [sym_labeled_block] = STATE(9497), + [sym_if_statement] = STATE(9497), + [sym_while_statement] = STATE(9497), + [sym_for_statement] = STATE(9497), + [sym_match_statement] = STATE(9497), + [sym__value] = STATE(9497), + [sym_expression] = STATE(10597), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1568), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4942)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8380), + [sym_if_statement] = STATE(8380), + [sym_while_statement] = STATE(8380), + [sym_for_statement] = STATE(8380), + [sym_match_statement] = STATE(8380), + [sym_expression] = STATE(8462), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(579), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4943)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7548), + [sym_if_statement] = STATE(7548), + [sym_while_statement] = STATE(7548), + [sym_for_statement] = STATE(7548), + [sym_match_statement] = STATE(7548), + [sym_expression] = STATE(7157), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(4946), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7642), + }, + [STATE(4944)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7553), + [sym_if_statement] = STATE(7553), + [sym_while_statement] = STATE(7553), + [sym_for_statement] = STATE(7553), + [sym_match_statement] = STATE(7553), + [sym_expression] = STATE(7158), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4945)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(8803), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4946)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7260), + [sym_if_statement] = STATE(7260), + [sym_while_statement] = STATE(7260), + [sym_for_statement] = STATE(7260), + [sym_match_statement] = STATE(7260), + [sym_expression] = STATE(7165), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(619), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4947)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9109), + [sym_if_statement] = STATE(9109), + [sym_while_statement] = STATE(9109), + [sym_for_statement] = STATE(9109), + [sym_match_statement] = STATE(9109), + [sym_expression] = STATE(8973), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4950), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7644), + }, + [STATE(4948)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9110), + [sym_if_statement] = STATE(9110), + [sym_while_statement] = STATE(9110), + [sym_for_statement] = STATE(9110), + [sym_match_statement] = STATE(9110), + [sym_expression] = STATE(8974), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4949)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9497), + [sym_labeled_block] = STATE(9497), + [sym_if_statement] = STATE(9497), + [sym_while_statement] = STATE(9497), + [sym_for_statement] = STATE(9497), + [sym_match_statement] = STATE(9497), + [sym__value] = STATE(9497), + [sym_expression] = STATE(10449), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4950)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9241), + [sym_if_statement] = STATE(9241), + [sym_while_statement] = STATE(9241), + [sym_for_statement] = STATE(9241), + [sym_match_statement] = STATE(9241), + [sym_expression] = STATE(8980), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4951)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8735), + [sym_labeled_block] = STATE(8735), + [sym_if_statement] = STATE(8735), + [sym_while_statement] = STATE(8735), + [sym_for_statement] = STATE(8735), + [sym_match_statement] = STATE(8735), + [sym__value] = STATE(8735), + [sym_expression] = STATE(8813), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4952)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3092), + [sym_if_statement] = STATE(3092), + [sym_while_statement] = STATE(3092), + [sym_for_statement] = STATE(3092), + [sym_match_statement] = STATE(3092), + [sym_expression] = STATE(6553), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(4955), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7646), + }, + [STATE(4953)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3093), + [sym_if_statement] = STATE(3093), + [sym_while_statement] = STATE(3093), + [sym_for_statement] = STATE(3093), + [sym_match_statement] = STATE(3093), + [sym_expression] = STATE(6554), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4954)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7251), + [sym_labeled_block] = STATE(7251), + [sym_if_statement] = STATE(7251), + [sym_while_statement] = STATE(7251), + [sym_for_statement] = STATE(7251), + [sym_match_statement] = STATE(7251), + [sym__value] = STATE(7251), + [sym_expression] = STATE(7544), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [sym_identifier] = ACTIONS(1378), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(621), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [STATE(4955)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3122), + [sym_if_statement] = STATE(3122), + [sym_while_statement] = STATE(3122), + [sym_for_statement] = STATE(3122), + [sym_match_statement] = STATE(3122), + [sym_expression] = STATE(6573), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4956)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9115), + [sym_labeled_block] = STATE(9115), + [sym_if_statement] = STATE(9115), + [sym_while_statement] = STATE(9115), + [sym_for_statement] = STATE(9115), + [sym_match_statement] = STATE(9115), + [sym__value] = STATE(9115), + [sym_expression] = STATE(9409), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [sym_identifier] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + }, + [STATE(4957)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3280), + [sym_labeled_block] = STATE(3280), + [sym_if_statement] = STATE(3280), + [sym_while_statement] = STATE(3280), + [sym_for_statement] = STATE(3280), + [sym_match_statement] = STATE(3280), + [sym__value] = STATE(3280), + [sym_expression] = STATE(6593), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(87), + [anon_sym_expand] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_match] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [STATE(4958)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9109), + [sym_if_statement] = STATE(9109), + [sym_while_statement] = STATE(9109), + [sym_for_statement] = STATE(9109), + [sym_match_statement] = STATE(9109), + [sym_expression] = STATE(8973), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(4961), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7648), + }, + [STATE(4959)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9110), + [sym_if_statement] = STATE(9110), + [sym_while_statement] = STATE(9110), + [sym_for_statement] = STATE(9110), + [sym_match_statement] = STATE(9110), + [sym_expression] = STATE(8974), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4960)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9497), + [sym_labeled_block] = STATE(9497), + [sym_if_statement] = STATE(9497), + [sym_while_statement] = STATE(9497), + [sym_for_statement] = STATE(9497), + [sym_match_statement] = STATE(9497), + [sym__value] = STATE(9497), + [sym_expression] = STATE(10172), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1482), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4961)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9241), + [sym_if_statement] = STATE(9241), + [sym_while_statement] = STATE(9241), + [sym_for_statement] = STATE(9241), + [sym_match_statement] = STATE(9241), + [sym_expression] = STATE(8980), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_if] = ACTIONS(733), + [anon_sym_while] = ACTIONS(735), + [anon_sym_expand] = ACTIONS(737), + [anon_sym_for] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4962)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(9917), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1462), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4963)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(8757), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4966), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7650), + }, + [STATE(4964)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(8758), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4965)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(9937), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(6828), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4966)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(8754), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4967)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(9022), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(19), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4968)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8631), + [sym_if_statement] = STATE(8631), + [sym_while_statement] = STATE(8631), + [sym_for_statement] = STATE(8631), + [sym_match_statement] = STATE(8631), + [sym_expression] = STATE(9027), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4970), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7652), + }, + [STATE(4969)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8645), + [sym_if_statement] = STATE(8645), + [sym_while_statement] = STATE(8645), + [sym_for_statement] = STATE(8645), + [sym_match_statement] = STATE(8645), + [sym_expression] = STATE(9029), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4970)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8380), + [sym_if_statement] = STATE(8380), + [sym_while_statement] = STATE(8380), + [sym_for_statement] = STATE(8380), + [sym_match_statement] = STATE(8380), + [sym_expression] = STATE(9033), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4971)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2187), + [sym_labeled_block] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_match_statement] = STATE(2187), + [sym__value] = STATE(2187), + [sym_expression] = STATE(8896), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [sym_identifier] = ACTIONS(113), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [STATE(4972)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8735), + [sym_labeled_block] = STATE(8735), + [sym_if_statement] = STATE(8735), + [sym_while_statement] = STATE(8735), + [sym_for_statement] = STATE(8735), + [sym_match_statement] = STATE(8735), + [sym__value] = STATE(8735), + [sym_expression] = STATE(9291), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4973)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(10016), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4976), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7654), + }, + [STATE(4974)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(10031), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4975)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(10125), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1498), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4976)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(9989), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4977)] = { + [sym_type] = STATE(14946), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7656), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(4978)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(8845), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4980), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7658), + }, + [STATE(4979)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(8849), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4980)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(8815), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4981)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8735), + [sym_labeled_block] = STATE(8735), + [sym_if_statement] = STATE(8735), + [sym_while_statement] = STATE(8735), + [sym_for_statement] = STATE(8735), + [sym_match_statement] = STATE(8735), + [sym__value] = STATE(8735), + [sym_expression] = STATE(9047), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1133), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4982)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(6663), + [sym_labeled_block] = STATE(6663), + [sym_if_statement] = STATE(6663), + [sym_while_statement] = STATE(6663), + [sym_for_statement] = STATE(6663), + [sym_match_statement] = STATE(6663), + [sym__value] = STATE(6663), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(6748), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(157), + [anon_sym_expand] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), + [anon_sym_match] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4983)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4336), + [sym_labeled_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_match_statement] = STATE(4336), + [sym__value] = STATE(4336), + [sym_expression] = STATE(10265), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [sym_identifier] = ACTIONS(1340), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(4984)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9729), + [sym_if_statement] = STATE(9729), + [sym_while_statement] = STATE(9729), + [sym_for_statement] = STATE(9729), + [sym_match_statement] = STATE(9729), + [sym_expression] = STATE(9730), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(4986), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7660), + }, + [STATE(4985)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9733), + [sym_if_statement] = STATE(9733), + [sym_while_statement] = STATE(9733), + [sym_for_statement] = STATE(9733), + [sym_match_statement] = STATE(9733), + [sym_expression] = STATE(9734), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4986)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9579), + [sym_if_statement] = STATE(9579), + [sym_while_statement] = STATE(9579), + [sym_for_statement] = STATE(9579), + [sym_match_statement] = STATE(9579), + [sym_expression] = STATE(9580), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4987)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9497), + [sym_labeled_block] = STATE(9497), + [sym_if_statement] = STATE(9497), + [sym_while_statement] = STATE(9497), + [sym_for_statement] = STATE(9497), + [sym_match_statement] = STATE(9497), + [sym__value] = STATE(9497), + [sym_expression] = STATE(10834), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(1414), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(4988)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8631), + [sym_if_statement] = STATE(8631), + [sym_while_statement] = STATE(8631), + [sym_for_statement] = STATE(8631), + [sym_match_statement] = STATE(8631), + [sym_expression] = STATE(8689), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(4990), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7662), + }, + [STATE(4989)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8645), + [sym_if_statement] = STATE(8645), + [sym_while_statement] = STATE(8645), + [sym_for_statement] = STATE(8645), + [sym_match_statement] = STATE(8645), + [sym_expression] = STATE(8696), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4990)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8380), + [sym_if_statement] = STATE(8380), + [sym_while_statement] = STATE(8380), + [sym_for_statement] = STATE(8380), + [sym_match_statement] = STATE(8380), + [sym_expression] = STATE(8462), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(803), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4991)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8735), + [sym_labeled_block] = STATE(8735), + [sym_if_statement] = STATE(8735), + [sym_while_statement] = STATE(8735), + [sym_for_statement] = STATE(8735), + [sym_match_statement] = STATE(8735), + [sym__value] = STATE(8735), + [sym_expression] = STATE(9419), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [sym_identifier] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + }, + [STATE(4992)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(10016), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(4994), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7664), + }, + [STATE(4993)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(10031), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4994)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(9989), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4995)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(8845), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(4997), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7666), + }, + [STATE(4996)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(8849), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4997)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(8815), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(541), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(4998)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9729), + [sym_if_statement] = STATE(9729), + [sym_while_statement] = STATE(9729), + [sym_for_statement] = STATE(9729), + [sym_match_statement] = STATE(9729), + [sym_expression] = STATE(9730), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5000), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7668), + }, + [STATE(4999)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9733), + [sym_if_statement] = STATE(9733), + [sym_while_statement] = STATE(9733), + [sym_for_statement] = STATE(9733), + [sym_match_statement] = STATE(9733), + [sym_expression] = STATE(9734), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5000)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9579), + [sym_if_statement] = STATE(9579), + [sym_while_statement] = STATE(9579), + [sym_for_statement] = STATE(9579), + [sym_match_statement] = STATE(9579), + [sym_expression] = STATE(9580), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5001)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8631), + [sym_if_statement] = STATE(8631), + [sym_while_statement] = STATE(8631), + [sym_for_statement] = STATE(8631), + [sym_match_statement] = STATE(8631), + [sym_expression] = STATE(8689), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5003), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7670), + }, + [STATE(5002)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8645), + [sym_if_statement] = STATE(8645), + [sym_while_statement] = STATE(8645), + [sym_for_statement] = STATE(8645), + [sym_match_statement] = STATE(8645), + [sym_expression] = STATE(8696), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5003)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8380), + [sym_if_statement] = STATE(8380), + [sym_while_statement] = STATE(8380), + [sym_for_statement] = STATE(8380), + [sym_match_statement] = STATE(8380), + [sym_expression] = STATE(8462), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5004)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3964), + [sym_if_statement] = STATE(3964), + [sym_while_statement] = STATE(3964), + [sym_for_statement] = STATE(3964), + [sym_match_statement] = STATE(3964), + [sym_expression] = STATE(10016), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5006), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7672), + }, + [STATE(5005)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4542), + [sym_if_statement] = STATE(4542), + [sym_while_statement] = STATE(4542), + [sym_for_statement] = STATE(4542), + [sym_match_statement] = STATE(4542), + [sym_expression] = STATE(10031), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5006)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(9989), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(649), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5007)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_match_statement] = STATE(2622), + [sym_expression] = STATE(8845), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5009), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7674), + }, + [STATE(5008)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2633), + [sym_if_statement] = STATE(2633), + [sym_while_statement] = STATE(2633), + [sym_for_statement] = STATE(2633), + [sym_match_statement] = STATE(2633), + [sym_expression] = STATE(8849), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5009)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2696), + [sym_if_statement] = STATE(2696), + [sym_while_statement] = STATE(2696), + [sym_for_statement] = STATE(2696), + [sym_match_statement] = STATE(2696), + [sym_expression] = STATE(8815), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(41), + [anon_sym_expand] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5010)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9729), + [sym_if_statement] = STATE(9729), + [sym_while_statement] = STATE(9729), + [sym_for_statement] = STATE(9729), + [sym_match_statement] = STATE(9729), + [sym_expression] = STATE(9730), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7676), + }, + [STATE(5011)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9733), + [sym_if_statement] = STATE(9733), + [sym_while_statement] = STATE(9733), + [sym_for_statement] = STATE(9733), + [sym_match_statement] = STATE(9733), + [sym_expression] = STATE(9734), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5012)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9579), + [sym_if_statement] = STATE(9579), + [sym_while_statement] = STATE(9579), + [sym_for_statement] = STATE(9579), + [sym_match_statement] = STATE(9579), + [sym_expression] = STATE(9580), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(557), + [anon_sym_while] = ACTIONS(335), + [anon_sym_expand] = ACTIONS(337), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5013)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8631), + [sym_if_statement] = STATE(8631), + [sym_while_statement] = STATE(8631), + [sym_for_statement] = STATE(8631), + [sym_match_statement] = STATE(8631), + [sym_expression] = STATE(8689), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5015), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7678), + }, + [STATE(5014)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8645), + [sym_if_statement] = STATE(8645), + [sym_while_statement] = STATE(8645), + [sym_for_statement] = STATE(8645), + [sym_match_statement] = STATE(8645), + [sym_expression] = STATE(8696), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5015)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8380), + [sym_if_statement] = STATE(8380), + [sym_while_statement] = STATE(8380), + [sym_for_statement] = STATE(8380), + [sym_match_statement] = STATE(8380), + [sym_expression] = STATE(8462), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(581), + [anon_sym_expand] = ACTIONS(583), + [anon_sym_for] = ACTIONS(585), + [anon_sym_match] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5016)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4160), + [sym_if_statement] = STATE(4160), + [sym_while_statement] = STATE(4160), + [sym_for_statement] = STATE(4160), + [sym_match_statement] = STATE(4160), + [sym_expression] = STATE(5078), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(945), + [anon_sym_while] = ACTIONS(285), + [anon_sym_expand] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5017)] = { + [sym_type] = STATE(15038), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7680), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7592), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5018)] = { + [sym_type] = STATE(14906), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7248), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5019)] = { + [aux_sym_import_declaration_repeat1] = STATE(14453), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4394), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_AMP_EQ] = ACTIONS(4392), + [anon_sym_PIPE_EQ] = ACTIONS(4392), + [anon_sym_xor_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_GT_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(7682), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_LT_LT_PIPE] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7685), + }, + [STATE(5020)] = { + [aux_sym_import_declaration_repeat1] = STATE(14454), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4406), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_AMP_EQ] = ACTIONS(4404), + [anon_sym_PIPE_EQ] = ACTIONS(4404), + [anon_sym_xor_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_GT_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(7688), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4406), + [anon_sym_LT_LT_PIPE] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7691), + }, + [STATE(5021)] = { + [aux_sym_import_declaration_repeat1] = STATE(14455), [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_BANG] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4428), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_AMP_EQ] = ACTIONS(4426), + [anon_sym_PIPE_EQ] = ACTIONS(4426), + [anon_sym_xor_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_GT_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4426), + [anon_sym_else] = ACTIONS(7694), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4428), + [anon_sym_LT_LT_PIPE] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_SLASH] = ACTIONS(4428), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(7697), + }, + [STATE(5022)] = { + [aux_sym_import_declaration_repeat1] = STATE(14456), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4446), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_AMP_EQ] = ACTIONS(4444), + [anon_sym_PIPE_EQ] = ACTIONS(4444), + [anon_sym_xor_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_GT_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(7700), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT_PIPE] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7703), + }, + [STATE(5023)] = { + [aux_sym_import_declaration_repeat1] = STATE(14457), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_PLUS_EQ] = ACTIONS(4456), + [anon_sym_DASH_EQ] = ACTIONS(4456), + [anon_sym_STAR_EQ] = ACTIONS(4456), + [anon_sym_SLASH_EQ] = ACTIONS(4456), + [anon_sym_AMP_EQ] = ACTIONS(4456), + [anon_sym_PIPE_EQ] = ACTIONS(4456), + [anon_sym_xor_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_EQ] = ACTIONS(4456), + [anon_sym_GT_GT_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4456), + [anon_sym_else] = ACTIONS(7706), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4458), + [anon_sym_LT_LT_PIPE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(4458), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7709), + }, + [STATE(5024)] = { + [aux_sym_import_declaration_repeat1] = STATE(14458), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_AMP_EQ] = ACTIONS(4474), + [anon_sym_PIPE_EQ] = ACTIONS(4474), + [anon_sym_xor_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_GT_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4474), + [anon_sym_else] = ACTIONS(7712), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_LT_LT_PIPE] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7715), + }, + [STATE(5025)] = { + [aux_sym_import_declaration_repeat1] = STATE(14351), + [aux_sym_capture_list_repeat1] = STATE(10970), + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(7718), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(7720), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7725), + }, + [STATE(5026)] = { + [sym_type] = STATE(14844), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7162), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5027)] = { + [aux_sym_import_declaration_repeat1] = STATE(14351), + [aux_sym_capture_list_repeat1] = STATE(10970), + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(7728), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(7718), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(7720), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7725), + }, + [STATE(5028)] = { + [sym_variant_payload] = STATE(4210), + [sym_identifier] = ACTIONS(2659), + [anon_sym_func] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(7730), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_anyopaque] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_int] = ACTIONS(2659), + [anon_sym_uint] = ACTIONS(2659), + [anon_sym_float] = ACTIONS(2659), + [anon_sym_range] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_c_char] = ACTIONS(2659), + [anon_sym_c_schar] = ACTIONS(2659), + [anon_sym_c_uchar] = ACTIONS(2659), + [anon_sym_c_short] = ACTIONS(2659), + [anon_sym_c_ushort] = ACTIONS(2659), + [anon_sym_c_int] = ACTIONS(2659), + [anon_sym_c_uint] = ACTIONS(2659), + [anon_sym_c_long] = ACTIONS(2659), + [anon_sym_c_ulong] = ACTIONS(2659), + [anon_sym_c_longlong] = ACTIONS(2659), + [anon_sym_c_ulonglong] = ACTIONS(2659), + [anon_sym_c_float] = ACTIONS(2659), + [anon_sym_c_double] = ACTIONS(2659), + [anon_sym_c_longdouble] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_defer] = ACTIONS(2659), + [anon_sym_errdefer] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_expand] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_match] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2657), + [anon_sym_orelse] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_xor] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_null] = ACTIONS(2659), + [anon_sym_unreachable] = ACTIONS(2659), + [anon_sym_undefined] = ACTIONS(2659), + [sym_sink] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_multiline_string] = ACTIONS(2657), + [sym_character] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2657), + }, + [STATE(5029)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(7733), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(5030)] = { + [sym_type] = STATE(15095), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7735), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5031)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(7733), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(5032)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(7737), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(7739), + [anon_sym_DASH_EQ] = ACTIONS(7739), + [anon_sym_STAR_EQ] = ACTIONS(7739), + [anon_sym_SLASH_EQ] = ACTIONS(7739), + [anon_sym_AMP_EQ] = ACTIONS(7739), + [anon_sym_PIPE_EQ] = ACTIONS(7739), + [anon_sym_xor_EQ] = ACTIONS(7739), + [anon_sym_LT_LT_EQ] = ACTIONS(7739), + [anon_sym_GT_GT_EQ] = ACTIONS(7739), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(7739), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(7741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(7743), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(7733), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(5033)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_PLUS_EQ] = ACTIONS(5706), + [anon_sym_DASH_EQ] = ACTIONS(5706), + [anon_sym_STAR_EQ] = ACTIONS(5706), + [anon_sym_SLASH_EQ] = ACTIONS(5706), + [anon_sym_AMP_EQ] = ACTIONS(5706), + [anon_sym_PIPE_EQ] = ACTIONS(5706), + [anon_sym_xor_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_GT_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5706), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(7741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(7743), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(7733), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(5034)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(7745), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(7747), + [anon_sym_DASH_EQ] = ACTIONS(7747), + [anon_sym_STAR_EQ] = ACTIONS(7747), + [anon_sym_SLASH_EQ] = ACTIONS(7747), + [anon_sym_AMP_EQ] = ACTIONS(7747), + [anon_sym_PIPE_EQ] = ACTIONS(7747), + [anon_sym_xor_EQ] = ACTIONS(7747), + [anon_sym_LT_LT_EQ] = ACTIONS(7747), + [anon_sym_GT_GT_EQ] = ACTIONS(7747), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(7747), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(7741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(7743), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(7733), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(5035)] = { + [sym_argument_list] = STATE(2530), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_BANG] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(7749), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(7752), + [anon_sym_DASH_EQ] = ACTIONS(7752), + [anon_sym_STAR_EQ] = ACTIONS(7752), + [anon_sym_SLASH_EQ] = ACTIONS(7752), + [anon_sym_AMP_EQ] = ACTIONS(7752), + [anon_sym_PIPE_EQ] = ACTIONS(7752), + [anon_sym_xor_EQ] = ACTIONS(7752), + [anon_sym_LT_LT_EQ] = ACTIONS(7752), + [anon_sym_GT_GT_EQ] = ACTIONS(7752), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(7752), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_expand] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(7741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(7743), + [anon_sym_orelse] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(2682), + [anon_sym_and] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_xor] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_LT_LT_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(7733), + [anon_sym_TILDE] = ACTIONS(5748), + [anon_sym_try] = ACTIONS(5750), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(5750), + [anon_sym_false] = ACTIONS(5750), + [anon_sym_null] = ACTIONS(5750), + [anon_sym_unreachable] = ACTIONS(5750), + [anon_sym_undefined] = ACTIONS(5750), + [sym_sink] = ACTIONS(5750), + [sym_integer] = ACTIONS(5750), + [sym_float] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_multiline_string] = ACTIONS(5748), + [sym_character] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(5036)] = { + [sym_type] = STATE(15114), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7755), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7757), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5037)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(7728), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(7760), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5038)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(7764), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(5039)] = { + [aux_sym_import_declaration_repeat1] = STATE(14521), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(7766), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4404), + [anon_sym_SLASH] = ACTIONS(4404), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7768), + }, + [STATE(5040)] = { + [aux_sym_import_declaration_repeat1] = STATE(14522), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4428), [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_PIPE] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), [anon_sym_LBRACK] = ACTIONS(4426), [anon_sym_void] = ACTIONS(4428), [anon_sym_noreturn] = ACTIONS(4428), @@ -209932,15 +614604,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(4428), [anon_sym_errdefer] = ACTIONS(4428), [anon_sym_if] = ACTIONS(4428), - [anon_sym_else] = ACTIONS(4428), + [anon_sym_else] = ACTIONS(7771), [anon_sym_while] = ACTIONS(4428), [anon_sym_expand] = ACTIONS(4428), [anon_sym_for] = ACTIONS(4428), [anon_sym_match] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_SLASH] = ACTIONS(4426), + [anon_sym_catch] = ACTIONS(4428), [anon_sym_TILDE] = ACTIONS(4426), [anon_sym_try] = ACTIONS(4428), - [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), [anon_sym_true] = ACTIONS(4428), [anon_sym_false] = ACTIONS(4428), [anon_sym_null] = ACTIONS(4428), @@ -209953,995 +614644,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(4426), [sym_character] = ACTIONS(4426), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4426), + [sym__newline] = ACTIONS(7773), }, - [STATE(1857)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4432), - [anon_sym_unreachable] = ACTIONS(4432), - [anon_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), + [STATE(5041)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(7764), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4430), + [sym__newline] = ACTIONS(2702), }, - [STATE(1858)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4436), - [anon_sym_unreachable] = ACTIONS(4436), - [anon_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), + [STATE(5042)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_return] = ACTIONS(5708), + [anon_sym_yield] = ACTIONS(5708), + [anon_sym_break] = ACTIONS(5708), + [anon_sym_continue] = ACTIONS(5708), + [anon_sym_defer] = ACTIONS(5708), + [anon_sym_errdefer] = ACTIONS(5708), + [anon_sym_if] = ACTIONS(5708), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_while] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_for] = ACTIONS(5708), + [anon_sym_match] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(7776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(7778), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(7764), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4434), + [sym__newline] = ACTIONS(5706), }, - [STATE(1859)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4440), - [anon_sym_unreachable] = ACTIONS(4440), - [anon_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(1860)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4444), - [anon_sym_unreachable] = ACTIONS(4444), - [anon_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(1861)] = { - [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), + [STATE(5043)] = { + [aux_sym_import_declaration_repeat1] = STATE(14541), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), [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_noreturn] = 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_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(7780), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), [anon_sym_DOT] = ACTIONS(4446), - [anon_sym_true] = ACTIONS(4448), - [anon_sym_false] = ACTIONS(4448), - [anon_sym_null] = ACTIONS(4448), - [anon_sym_unreachable] = ACTIONS(4448), - [anon_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), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4446), + [sym__newline] = ACTIONS(7782), }, - [STATE(1862)] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_test] = ACTIONS(1741), - [anon_sym_hide] = ACTIONS(1741), - [anon_sym_func] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_noreturn] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_anyopaque] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_int] = ACTIONS(1741), - [anon_sym_uint] = ACTIONS(1741), - [anon_sym_float] = ACTIONS(1741), - [anon_sym_range] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_c_char] = ACTIONS(1741), - [anon_sym_c_schar] = ACTIONS(1741), - [anon_sym_c_uchar] = ACTIONS(1741), - [anon_sym_c_short] = ACTIONS(1741), - [anon_sym_c_ushort] = ACTIONS(1741), - [anon_sym_c_int] = ACTIONS(1741), - [anon_sym_c_uint] = ACTIONS(1741), - [anon_sym_c_long] = ACTIONS(1741), - [anon_sym_c_ulong] = ACTIONS(1741), - [anon_sym_c_longlong] = ACTIONS(1741), - [anon_sym_c_ulonglong] = ACTIONS(1741), - [anon_sym_c_float] = ACTIONS(1741), - [anon_sym_c_double] = ACTIONS(1741), - [anon_sym_c_longdouble] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_defer] = ACTIONS(1741), - [anon_sym_errdefer] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_expand] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_DOT] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_unreachable] = ACTIONS(1741), - [anon_sym_undefined] = ACTIONS(1741), - [sym_sink] = ACTIONS(1741), - [sym_integer] = ACTIONS(1741), - [sym_float] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym_multiline_string] = ACTIONS(1739), - [sym_character] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1739), - }, - [STATE(1863)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_unreachable] = ACTIONS(4452), - [anon_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(1864)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4456), - [anon_sym_unreachable] = ACTIONS(4456), - [anon_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(1865)] = { - [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), + [STATE(5044)] = { + [aux_sym_import_declaration_repeat1] = STATE(14542), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), [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_noreturn] = 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_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(7785), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_SLASH] = ACTIONS(4456), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_true] = ACTIONS(4460), - [anon_sym_false] = ACTIONS(4460), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_unreachable] = ACTIONS(4460), - [anon_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), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4458), + [sym__newline] = ACTIONS(7787), }, - [STATE(1866)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4464), - [anon_sym_unreachable] = ACTIONS(4464), - [anon_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(1867)] = { - [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_noreturn] = 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), - [anon_sym_null] = ACTIONS(4468), - [anon_sym_unreachable] = ACTIONS(4468), - [anon_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(1868)] = { - [ts_builtin_sym_end] = ACTIONS(4470), - [sym_identifier] = ACTIONS(4472), - [anon_sym_import] = ACTIONS(4472), - [anon_sym_test] = ACTIONS(4472), - [anon_sym_hide] = ACTIONS(4472), - [anon_sym_func] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_struct] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_RPAREN] = ACTIONS(4470), - [anon_sym_LBRACE] = ACTIONS(4470), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_void] = ACTIONS(4472), - [anon_sym_noreturn] = ACTIONS(4472), - [anon_sym_type] = ACTIONS(4472), - [anon_sym_anyopaque] = ACTIONS(4472), - [anon_sym_bool] = ACTIONS(4472), - [anon_sym_int] = ACTIONS(4472), - [anon_sym_uint] = ACTIONS(4472), - [anon_sym_float] = ACTIONS(4472), - [anon_sym_range] = ACTIONS(4472), - [anon_sym_i8] = ACTIONS(4472), - [anon_sym_i16] = ACTIONS(4472), - [anon_sym_i32] = ACTIONS(4472), - [anon_sym_i64] = ACTIONS(4472), - [anon_sym_u8] = ACTIONS(4472), - [anon_sym_u16] = ACTIONS(4472), - [anon_sym_u32] = ACTIONS(4472), - [anon_sym_u64] = ACTIONS(4472), - [anon_sym_isize] = ACTIONS(4472), - [anon_sym_usize] = ACTIONS(4472), - [anon_sym_f32] = ACTIONS(4472), - [anon_sym_f64] = ACTIONS(4472), - [anon_sym_c_char] = ACTIONS(4472), - [anon_sym_c_schar] = ACTIONS(4472), - [anon_sym_c_uchar] = ACTIONS(4472), - [anon_sym_c_short] = ACTIONS(4472), - [anon_sym_c_ushort] = ACTIONS(4472), - [anon_sym_c_int] = ACTIONS(4472), - [anon_sym_c_uint] = ACTIONS(4472), - [anon_sym_c_long] = ACTIONS(4472), - [anon_sym_c_ulong] = ACTIONS(4472), - [anon_sym_c_longlong] = ACTIONS(4472), - [anon_sym_c_ulonglong] = ACTIONS(4472), - [anon_sym_c_float] = ACTIONS(4472), - [anon_sym_c_double] = ACTIONS(4472), - [anon_sym_c_longdouble] = ACTIONS(4472), - [anon_sym_return] = ACTIONS(4472), - [anon_sym_yield] = ACTIONS(4472), - [anon_sym_break] = ACTIONS(4472), - [anon_sym_continue] = ACTIONS(4472), - [anon_sym_defer] = ACTIONS(4472), - [anon_sym_errdefer] = ACTIONS(4472), - [anon_sym_if] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4472), - [anon_sym_while] = ACTIONS(4472), - [anon_sym_expand] = ACTIONS(4472), - [anon_sym_for] = ACTIONS(4472), - [anon_sym_match] = ACTIONS(4472), - [anon_sym_AMP] = ACTIONS(4470), - [anon_sym_TILDE] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4472), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_true] = ACTIONS(4472), - [anon_sym_false] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4472), - [anon_sym_unreachable] = ACTIONS(4472), - [anon_sym_undefined] = ACTIONS(4472), - [sym_sink] = ACTIONS(4472), - [sym_integer] = ACTIONS(4472), - [sym_float] = ACTIONS(4470), - [anon_sym_DQUOTE] = ACTIONS(4470), - [sym_multiline_string] = ACTIONS(4470), - [sym_character] = ACTIONS(4470), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4470), - }, - [STATE(1869)] = { - [ts_builtin_sym_end] = ACTIONS(4474), + [STATE(5045)] = { + [aux_sym_import_declaration_repeat1] = STATE(14554), [sym_identifier] = ACTIONS(4476), - [anon_sym_import] = ACTIONS(4476), - [anon_sym_test] = ACTIONS(4476), - [anon_sym_hide] = ACTIONS(4476), [anon_sym_func] = ACTIONS(4476), - [anon_sym_BANG] = ACTIONS(4474), + [anon_sym_BANG] = ACTIONS(4476), [anon_sym_struct] = ACTIONS(4476), [anon_sym_LPAREN] = ACTIONS(4474), - [anon_sym_RPAREN] = ACTIONS(4474), [anon_sym_LBRACE] = ACTIONS(4474), [anon_sym_RBRACE] = ACTIONS(4474), [anon_sym_DASH] = ACTIONS(4474), [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), [anon_sym_LBRACK] = ACTIONS(4474), [anon_sym_void] = ACTIONS(4476), [anon_sym_noreturn] = ACTIONS(4476), @@ -210985,15 +615099,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(4476), [anon_sym_errdefer] = ACTIONS(4476), [anon_sym_if] = ACTIONS(4476), - [anon_sym_else] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(7790), [anon_sym_while] = ACTIONS(4476), [anon_sym_expand] = ACTIONS(4476), [anon_sym_for] = ACTIONS(4476), [anon_sym_match] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_SLASH] = ACTIONS(4474), + [anon_sym_catch] = ACTIONS(4476), [anon_sym_TILDE] = ACTIONS(4474), [anon_sym_try] = ACTIONS(4476), - [anon_sym_DOT] = ACTIONS(4474), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), [anon_sym_true] = ACTIONS(4476), [anon_sym_false] = ACTIONS(4476), [anon_sym_null] = ACTIONS(4476), @@ -211006,333 +615139,143319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(4474), [sym_character] = ACTIONS(4474), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4474), + [sym__newline] = ACTIONS(7792), }, - [STATE(1870)] = { - [ts_builtin_sym_end] = ACTIONS(4478), - [sym_identifier] = ACTIONS(4480), - [anon_sym_import] = ACTIONS(4480), - [anon_sym_test] = ACTIONS(4480), - [anon_sym_hide] = ACTIONS(4480), - [anon_sym_func] = ACTIONS(4480), - [anon_sym_BANG] = ACTIONS(4478), - [anon_sym_struct] = ACTIONS(4480), - [anon_sym_LPAREN] = ACTIONS(4478), - [anon_sym_RPAREN] = ACTIONS(4478), - [anon_sym_LBRACE] = ACTIONS(4478), - [anon_sym_RBRACE] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(4478), - [anon_sym_DOLLAR] = ACTIONS(4478), - [anon_sym_LBRACK] = ACTIONS(4478), - [anon_sym_void] = ACTIONS(4480), - [anon_sym_noreturn] = ACTIONS(4480), - [anon_sym_type] = ACTIONS(4480), - [anon_sym_anyopaque] = ACTIONS(4480), - [anon_sym_bool] = ACTIONS(4480), - [anon_sym_int] = ACTIONS(4480), - [anon_sym_uint] = ACTIONS(4480), - [anon_sym_float] = ACTIONS(4480), - [anon_sym_range] = ACTIONS(4480), - [anon_sym_i8] = ACTIONS(4480), - [anon_sym_i16] = ACTIONS(4480), - [anon_sym_i32] = ACTIONS(4480), - [anon_sym_i64] = ACTIONS(4480), - [anon_sym_u8] = ACTIONS(4480), - [anon_sym_u16] = ACTIONS(4480), - [anon_sym_u32] = ACTIONS(4480), - [anon_sym_u64] = ACTIONS(4480), - [anon_sym_isize] = ACTIONS(4480), - [anon_sym_usize] = ACTIONS(4480), - [anon_sym_f32] = ACTIONS(4480), - [anon_sym_f64] = ACTIONS(4480), - [anon_sym_c_char] = ACTIONS(4480), - [anon_sym_c_schar] = ACTIONS(4480), - [anon_sym_c_uchar] = ACTIONS(4480), - [anon_sym_c_short] = ACTIONS(4480), - [anon_sym_c_ushort] = ACTIONS(4480), - [anon_sym_c_int] = ACTIONS(4480), - [anon_sym_c_uint] = ACTIONS(4480), - [anon_sym_c_long] = ACTIONS(4480), - [anon_sym_c_ulong] = ACTIONS(4480), - [anon_sym_c_longlong] = ACTIONS(4480), - [anon_sym_c_ulonglong] = ACTIONS(4480), - [anon_sym_c_float] = ACTIONS(4480), - [anon_sym_c_double] = ACTIONS(4480), - [anon_sym_c_longdouble] = ACTIONS(4480), - [anon_sym_return] = ACTIONS(4480), - [anon_sym_yield] = ACTIONS(4480), - [anon_sym_break] = ACTIONS(4480), - [anon_sym_continue] = ACTIONS(4480), - [anon_sym_defer] = ACTIONS(4480), - [anon_sym_errdefer] = ACTIONS(4480), - [anon_sym_if] = ACTIONS(4480), - [anon_sym_else] = ACTIONS(4480), - [anon_sym_while] = ACTIONS(4480), - [anon_sym_expand] = ACTIONS(4480), - [anon_sym_for] = ACTIONS(4480), - [anon_sym_match] = ACTIONS(4480), - [anon_sym_AMP] = ACTIONS(4478), - [anon_sym_TILDE] = ACTIONS(4478), - [anon_sym_try] = ACTIONS(4480), - [anon_sym_DOT] = ACTIONS(4478), - [anon_sym_true] = ACTIONS(4480), - [anon_sym_false] = ACTIONS(4480), - [anon_sym_null] = ACTIONS(4480), - [anon_sym_unreachable] = ACTIONS(4480), - [anon_sym_undefined] = ACTIONS(4480), - [sym_sink] = ACTIONS(4480), - [sym_integer] = ACTIONS(4480), - [sym_float] = ACTIONS(4478), - [anon_sym_DQUOTE] = ACTIONS(4478), - [sym_multiline_string] = ACTIONS(4478), - [sym_character] = ACTIONS(4478), + [STATE(5046)] = { + [sym_type] = STATE(14885), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7534), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4478), + [sym__newline] = ACTIONS(1285), }, - [STATE(1871)] = { - [ts_builtin_sym_end] = ACTIONS(4482), - [sym_identifier] = ACTIONS(4484), - [anon_sym_import] = ACTIONS(4484), - [anon_sym_test] = ACTIONS(4484), - [anon_sym_hide] = ACTIONS(4484), - [anon_sym_func] = ACTIONS(4484), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_struct] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4482), - [anon_sym_RPAREN] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4482), - [anon_sym_RBRACE] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_DOLLAR] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4482), - [anon_sym_void] = ACTIONS(4484), - [anon_sym_noreturn] = ACTIONS(4484), - [anon_sym_type] = ACTIONS(4484), - [anon_sym_anyopaque] = ACTIONS(4484), - [anon_sym_bool] = ACTIONS(4484), - [anon_sym_int] = ACTIONS(4484), - [anon_sym_uint] = ACTIONS(4484), - [anon_sym_float] = ACTIONS(4484), - [anon_sym_range] = ACTIONS(4484), - [anon_sym_i8] = ACTIONS(4484), - [anon_sym_i16] = ACTIONS(4484), - [anon_sym_i32] = ACTIONS(4484), - [anon_sym_i64] = ACTIONS(4484), - [anon_sym_u8] = ACTIONS(4484), - [anon_sym_u16] = ACTIONS(4484), - [anon_sym_u32] = ACTIONS(4484), - [anon_sym_u64] = ACTIONS(4484), - [anon_sym_isize] = ACTIONS(4484), - [anon_sym_usize] = ACTIONS(4484), - [anon_sym_f32] = ACTIONS(4484), - [anon_sym_f64] = ACTIONS(4484), - [anon_sym_c_char] = ACTIONS(4484), - [anon_sym_c_schar] = ACTIONS(4484), - [anon_sym_c_uchar] = ACTIONS(4484), - [anon_sym_c_short] = ACTIONS(4484), - [anon_sym_c_ushort] = ACTIONS(4484), - [anon_sym_c_int] = ACTIONS(4484), - [anon_sym_c_uint] = ACTIONS(4484), - [anon_sym_c_long] = ACTIONS(4484), - [anon_sym_c_ulong] = ACTIONS(4484), - [anon_sym_c_longlong] = ACTIONS(4484), - [anon_sym_c_ulonglong] = ACTIONS(4484), - [anon_sym_c_float] = ACTIONS(4484), - [anon_sym_c_double] = ACTIONS(4484), - [anon_sym_c_longdouble] = ACTIONS(4484), - [anon_sym_return] = ACTIONS(4484), - [anon_sym_yield] = ACTIONS(4484), - [anon_sym_break] = ACTIONS(4484), - [anon_sym_continue] = ACTIONS(4484), - [anon_sym_defer] = ACTIONS(4484), - [anon_sym_errdefer] = ACTIONS(4484), - [anon_sym_if] = ACTIONS(4484), - [anon_sym_else] = ACTIONS(4484), - [anon_sym_while] = ACTIONS(4484), - [anon_sym_expand] = ACTIONS(4484), - [anon_sym_for] = ACTIONS(4484), - [anon_sym_match] = ACTIONS(4484), - [anon_sym_AMP] = ACTIONS(4482), - [anon_sym_TILDE] = ACTIONS(4482), - [anon_sym_try] = ACTIONS(4484), - [anon_sym_DOT] = ACTIONS(4482), - [anon_sym_true] = ACTIONS(4484), - [anon_sym_false] = ACTIONS(4484), - [anon_sym_null] = ACTIONS(4484), - [anon_sym_unreachable] = ACTIONS(4484), - [anon_sym_undefined] = ACTIONS(4484), - [sym_sink] = ACTIONS(4484), - [sym_integer] = ACTIONS(4484), - [sym_float] = ACTIONS(4482), - [anon_sym_DQUOTE] = ACTIONS(4482), - [sym_multiline_string] = ACTIONS(4482), - [sym_character] = ACTIONS(4482), + [STATE(5047)] = { + [sym_type] = STATE(15078), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7795), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7797), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4482), + [sym__newline] = ACTIONS(1285), }, - [STATE(1872)] = { - [ts_builtin_sym_end] = ACTIONS(4486), - [sym_identifier] = ACTIONS(4488), - [anon_sym_import] = ACTIONS(4488), - [anon_sym_test] = ACTIONS(4488), - [anon_sym_hide] = ACTIONS(4488), - [anon_sym_func] = ACTIONS(4488), - [anon_sym_BANG] = ACTIONS(4486), - [anon_sym_struct] = ACTIONS(4488), - [anon_sym_LPAREN] = ACTIONS(4486), - [anon_sym_RPAREN] = ACTIONS(4486), - [anon_sym_LBRACE] = ACTIONS(4486), - [anon_sym_RBRACE] = ACTIONS(4486), - [anon_sym_DASH] = ACTIONS(4486), - [anon_sym_DOLLAR] = ACTIONS(4486), - [anon_sym_LBRACK] = ACTIONS(4486), - [anon_sym_void] = ACTIONS(4488), - [anon_sym_noreturn] = 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(4488), - [anon_sym_while] = ACTIONS(4488), - [anon_sym_expand] = ACTIONS(4488), - [anon_sym_for] = ACTIONS(4488), - [anon_sym_match] = ACTIONS(4488), - [anon_sym_AMP] = ACTIONS(4486), - [anon_sym_TILDE] = ACTIONS(4486), - [anon_sym_try] = ACTIONS(4488), - [anon_sym_DOT] = ACTIONS(4486), - [anon_sym_true] = ACTIONS(4488), - [anon_sym_false] = ACTIONS(4488), - [anon_sym_null] = ACTIONS(4488), - [anon_sym_unreachable] = ACTIONS(4488), - [anon_sym_undefined] = ACTIONS(4488), - [sym_sink] = ACTIONS(4488), - [sym_integer] = ACTIONS(4488), - [sym_float] = ACTIONS(4486), - [anon_sym_DQUOTE] = ACTIONS(4486), - [sym_multiline_string] = ACTIONS(4486), - [sym_character] = ACTIONS(4486), + [STATE(5048)] = { + [sym_type] = STATE(14947), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7800), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7804), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4486), + [sym__newline] = ACTIONS(1285), }, - [STATE(1873)] = { - [ts_builtin_sym_end] = ACTIONS(4490), - [sym_identifier] = ACTIONS(4492), - [anon_sym_import] = ACTIONS(4492), - [anon_sym_test] = ACTIONS(4492), - [anon_sym_hide] = ACTIONS(4492), - [anon_sym_func] = ACTIONS(4492), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_struct] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4490), - [anon_sym_RPAREN] = 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(4492), - [anon_sym_noreturn] = ACTIONS(4492), - [anon_sym_type] = ACTIONS(4492), - [anon_sym_anyopaque] = ACTIONS(4492), - [anon_sym_bool] = ACTIONS(4492), - [anon_sym_int] = ACTIONS(4492), - [anon_sym_uint] = ACTIONS(4492), - [anon_sym_float] = ACTIONS(4492), - [anon_sym_range] = ACTIONS(4492), - [anon_sym_i8] = ACTIONS(4492), - [anon_sym_i16] = ACTIONS(4492), - [anon_sym_i32] = ACTIONS(4492), - [anon_sym_i64] = ACTIONS(4492), - [anon_sym_u8] = ACTIONS(4492), - [anon_sym_u16] = ACTIONS(4492), - [anon_sym_u32] = ACTIONS(4492), - [anon_sym_u64] = ACTIONS(4492), - [anon_sym_isize] = ACTIONS(4492), - [anon_sym_usize] = ACTIONS(4492), - [anon_sym_f32] = ACTIONS(4492), - [anon_sym_f64] = ACTIONS(4492), - [anon_sym_c_char] = ACTIONS(4492), - [anon_sym_c_schar] = ACTIONS(4492), - [anon_sym_c_uchar] = ACTIONS(4492), - [anon_sym_c_short] = ACTIONS(4492), - [anon_sym_c_ushort] = ACTIONS(4492), - [anon_sym_c_int] = ACTIONS(4492), - [anon_sym_c_uint] = ACTIONS(4492), - [anon_sym_c_long] = ACTIONS(4492), - [anon_sym_c_ulong] = ACTIONS(4492), - [anon_sym_c_longlong] = ACTIONS(4492), - [anon_sym_c_ulonglong] = ACTIONS(4492), - [anon_sym_c_float] = ACTIONS(4492), - [anon_sym_c_double] = ACTIONS(4492), - [anon_sym_c_longdouble] = ACTIONS(4492), - [anon_sym_return] = ACTIONS(4492), - [anon_sym_yield] = ACTIONS(4492), - [anon_sym_break] = ACTIONS(4492), - [anon_sym_continue] = ACTIONS(4492), - [anon_sym_defer] = ACTIONS(4492), - [anon_sym_errdefer] = ACTIONS(4492), - [anon_sym_if] = ACTIONS(4492), - [anon_sym_else] = ACTIONS(4492), - [anon_sym_while] = ACTIONS(4492), - [anon_sym_expand] = ACTIONS(4492), - [anon_sym_for] = ACTIONS(4492), - [anon_sym_match] = ACTIONS(4492), - [anon_sym_AMP] = ACTIONS(4490), - [anon_sym_TILDE] = ACTIONS(4490), - [anon_sym_try] = ACTIONS(4492), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_true] = ACTIONS(4492), - [anon_sym_false] = ACTIONS(4492), - [anon_sym_null] = ACTIONS(4492), - [anon_sym_unreachable] = ACTIONS(4492), - [anon_sym_undefined] = ACTIONS(4492), - [sym_sink] = ACTIONS(4492), - [sym_integer] = ACTIONS(4492), - [sym_float] = ACTIONS(4490), - [anon_sym_DQUOTE] = ACTIONS(4490), - [sym_multiline_string] = ACTIONS(4490), - [sym_character] = ACTIONS(4490), + [STATE(5049)] = { + [aux_sym_import_declaration_repeat1] = STATE(14249), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(7806), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4392), + [anon_sym_SLASH] = ACTIONS(4392), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4490), + [sym__newline] = ACTIONS(7809), }, - [STATE(1874)] = { + [STATE(5050)] = { + [sym_type] = STATE(14956), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7812), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7814), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5051)] = { + [sym_type] = STATE(15015), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7418), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5052)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(7728), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(7816), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5053)] = { + [aux_sym_import_declaration_repeat1] = STATE(14250), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(7818), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4404), + [anon_sym_SLASH] = ACTIONS(4404), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7821), + }, + [STATE(5054)] = { + [sym_type] = STATE(15105), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7504), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5055)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(5056)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(7728), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_defer] = ACTIONS(1292), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_expand] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1292), + [anon_sym_unreachable] = ACTIONS(1292), + [anon_sym_undefined] = ACTIONS(1292), + [sym_sink] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5057)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(5058)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(5059)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_errdefer] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_expand] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_unreachable] = ACTIONS(2692), + [anon_sym_undefined] = ACTIONS(2692), + [sym_sink] = ACTIONS(2692), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [sym_multiline_string] = ACTIONS(2690), + [sym_character] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(5060)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_errdefer] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_expand] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_unreachable] = ACTIONS(2692), + [anon_sym_undefined] = ACTIONS(2692), + [sym_sink] = ACTIONS(2692), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [sym_multiline_string] = ACTIONS(2690), + [sym_character] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(5061)] = { + [aux_sym_import_declaration_repeat1] = STATE(14490), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(7824), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4392), + [anon_sym_SLASH] = ACTIONS(4392), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7826), + }, + [STATE(5062)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(5063)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(5064)] = { + [aux_sym_import_declaration_repeat1] = STATE(14251), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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(7829), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_SLASH] = ACTIONS(4426), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(7832), + }, + [STATE(5065)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_errdefer] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_expand] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_unreachable] = ACTIONS(2696), + [anon_sym_undefined] = ACTIONS(2696), + [sym_sink] = ACTIONS(2696), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [sym_multiline_string] = ACTIONS(2694), + [sym_character] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(5066)] = { + [aux_sym_import_declaration_repeat1] = STATE(14252), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(7835), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7838), + }, + [STATE(5067)] = { + [aux_sym_import_declaration_repeat1] = STATE(14253), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(7841), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_SLASH] = ACTIONS(4456), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7844), + }, + [STATE(5068)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(5069)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(5070)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(5071)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_defer] = ACTIONS(2708), + [anon_sym_errdefer] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_expand] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_unreachable] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [sym_sink] = ACTIONS(2708), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [sym_multiline_string] = ACTIONS(2706), + [sym_character] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(5072)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_defer] = ACTIONS(2708), + [anon_sym_errdefer] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_expand] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_unreachable] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [sym_sink] = ACTIONS(2708), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [sym_multiline_string] = ACTIONS(2706), + [sym_character] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(5073)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(5074)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(5075)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_defer] = ACTIONS(2712), + [anon_sym_errdefer] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_expand] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_unreachable] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [sym_sink] = ACTIONS(2712), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [sym_multiline_string] = ACTIONS(2710), + [sym_character] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(5076)] = { + [aux_sym_import_declaration_repeat1] = STATE(14254), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_yield] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_errdefer] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(7847), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_SLASH] = ACTIONS(4474), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7850), + }, + [STATE(5077)] = { + [sym_type] = STATE(14893), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7530), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5078)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_defer] = ACTIONS(2726), + [anon_sym_errdefer] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_expand] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2726), + [anon_sym_unreachable] = ACTIONS(2726), + [anon_sym_undefined] = ACTIONS(2726), + [sym_sink] = ACTIONS(2726), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [sym_multiline_string] = ACTIONS(2724), + [sym_character] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(5079)] = { + [sym_type] = STATE(15055), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7526), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5080)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_defer] = ACTIONS(2716), + [anon_sym_errdefer] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_expand] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_unreachable] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [sym_sink] = ACTIONS(2716), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [sym_multiline_string] = ACTIONS(2714), + [sym_character] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(5081)] = { + [sym_type] = STATE(14851), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7853), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5082)] = { + [sym_type] = STATE(14925), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7855), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7814), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5083)] = { + [sym_type] = STATE(14966), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7857), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7757), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5084)] = { + [sym_type] = STATE(14946), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7656), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5085)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_return] = ACTIONS(5708), + [anon_sym_yield] = ACTIONS(5708), + [anon_sym_break] = ACTIONS(5708), + [anon_sym_continue] = ACTIONS(5708), + [anon_sym_defer] = ACTIONS(5708), + [anon_sym_errdefer] = ACTIONS(5708), + [anon_sym_if] = ACTIONS(5708), + [anon_sym_while] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_for] = ACTIONS(5708), + [anon_sym_match] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(167), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(5086)] = { + [sym_type] = STATE(15067), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7859), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5087)] = { + [sym_type] = STATE(14932), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7861), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5088)] = { + [sym_type] = STATE(14879), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7582), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5089)] = { + [sym_type] = STATE(15057), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7863), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7804), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5090)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_errdefer] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(5091)] = { + [sym_type] = STATE(15112), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7865), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5092)] = { + [sym_type] = STATE(15077), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7867), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7869), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5093)] = { + [sym_type] = STATE(14846), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7872), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5094)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_errdefer] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(5095)] = { + [sym_type] = STATE(15085), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7590), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5096)] = { + [sym_type] = STATE(15098), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7632), + [anon_sym_import] = ACTIONS(1292), + [anon_sym_test] = ACTIONS(1292), + [anon_sym_hide] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5097)] = { + [sym_type] = STATE(14974), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7874), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7250), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5098)] = { + [sym_type] = STATE(15092), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7608), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5099)] = { + [sym_type] = STATE(15087), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7876), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7797), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5100)] = { + [sym_type] = STATE(15034), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7166), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5101)] = { + [sym_type] = STATE(14977), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7880), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5102)] = { + [sym_type] = STATE(15077), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7867), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5103)] = { + [sym_type] = STATE(15078), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7795), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5104)] = { + [sym_type] = STATE(14847), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7882), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5105)] = { + [sym_type] = STATE(15112), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7865), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5106)] = { + [sym_type] = STATE(15114), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7755), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5107)] = { + [sym_type] = STATE(15095), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7735), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5108)] = { + [sym_type] = STATE(15038), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7680), + [anon_sym_func] = ACTIONS(1294), + [anon_sym_c_func] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_anyopaque] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_int] = ACTIONS(1321), + [anon_sym_uint] = ACTIONS(1321), + [anon_sym_float] = ACTIONS(1321), + [anon_sym_range] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_c_char] = ACTIONS(1321), + [anon_sym_c_schar] = ACTIONS(1321), + [anon_sym_c_uchar] = ACTIONS(1321), + [anon_sym_c_short] = ACTIONS(1321), + [anon_sym_c_ushort] = ACTIONS(1321), + [anon_sym_c_int] = ACTIONS(1321), + [anon_sym_c_uint] = ACTIONS(1321), + [anon_sym_c_long] = ACTIONS(1321), + [anon_sym_c_ulong] = ACTIONS(1321), + [anon_sym_c_longlong] = ACTIONS(1321), + [anon_sym_c_ulonglong] = ACTIONS(1321), + [anon_sym_c_float] = ACTIONS(1321), + [anon_sym_c_double] = ACTIONS(1321), + [anon_sym_c_longdouble] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5109)] = { + [sym_type] = STATE(14843), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7884), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7869), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5110)] = { + [sym_type] = STATE(14954), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7886), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5111)] = { + [sym_type] = STATE(14845), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7888), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5112)] = { + [sym_type] = STATE(14926), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7890), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7166), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5113)] = { + [sym_type] = STATE(15046), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7892), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5114)] = { + [sym_type] = STATE(15065), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7894), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7250), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5115)] = { + [sym_type] = STATE(14846), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7872), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5116)] = { + [sym_type] = STATE(14851), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7853), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5117)] = { + [sym_type] = STATE(14912), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7896), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7166), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + }, + [STATE(5118)] = { + [sym_type] = STATE(8911), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(7898), + [anon_sym_func] = ACTIONS(1784), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(7900), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(7903), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(7906), + [anon_sym_mut] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(7909), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_PIPE2] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(5119)] = { + [sym_type] = STATE(15034), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5120)] = { + [sym_type] = STATE(8968), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(7898), + [anon_sym_func] = ACTIONS(1784), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(7900), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(7903), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(7906), + [anon_sym_mut] = ACTIONS(7912), + [anon_sym_LBRACK] = ACTIONS(7909), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(1159), + [anon_sym_DASH_EQ] = ACTIONS(1159), + [anon_sym_STAR_EQ] = ACTIONS(1159), + [anon_sym_SLASH_EQ] = ACTIONS(1159), + [anon_sym_AMP_EQ] = ACTIONS(1159), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_xor_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_PIPE2] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(5121)] = { + [sym_type] = STATE(14956), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7812), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5122)] = { + [sym_type] = STATE(14932), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7861), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5123)] = { + [sym_type] = STATE(8991), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(7898), + [anon_sym_func] = ACTIONS(1784), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(7914), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(7917), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(7920), + [anon_sym_mut] = ACTIONS(7923), + [anon_sym_LBRACK] = ACTIONS(7925), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(1202), + [anon_sym_DASH_EQ] = ACTIONS(1202), + [anon_sym_STAR_EQ] = ACTIONS(1202), + [anon_sym_SLASH_EQ] = ACTIONS(1202), + [anon_sym_AMP_EQ] = ACTIONS(1202), + [anon_sym_PIPE_EQ] = ACTIONS(1207), + [anon_sym_xor_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_EQ] = ACTIONS(1202), + [anon_sym_GT_GT_EQ] = ACTIONS(1202), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_PIPE2] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [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_catch] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(5124)] = { + [sym_type] = STATE(9046), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(7898), + [anon_sym_func] = ACTIONS(1784), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(7928), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(7931), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(7934), + [anon_sym_mut] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(7937), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [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(1196), + [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_else] = ACTIONS(1196), + [anon_sym_PIPE2] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(5125)] = { + [sym_type] = STATE(15067), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7859), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5126)] = { + [sym_type] = STATE(8939), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(7898), + [anon_sym_func] = ACTIONS(1784), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(7940), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(7943), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(7946), + [anon_sym_mut] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(7949), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(5127)] = { + [sym_type] = STATE(14947), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7800), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5128)] = { + [sym_type] = STATE(9001), + [sym__type_atom] = STATE(8861), + [sym_parenthesized_type] = STATE(8861), + [sym_named_type] = STATE(8861), + [sym_intrinsic_type] = STATE(8861), + [sym_optional_type] = STATE(8861), + [sym_pointer_type] = STATE(8861), + [sym_array_type] = STATE(8861), + [sym_function_type] = STATE(8861), + [sym_builtin_type] = STATE(8861), + [sym_qualified_identifier] = STATE(8897), + [sym_identifier] = ACTIONS(7898), + [anon_sym_func] = ACTIONS(1784), + [anon_sym_c_func] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(7940), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(7943), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(7946), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(7949), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_xor_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_LT_LT_PIPE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(5129)] = { + [sym_type] = STATE(14974), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7874), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5130)] = { + [sym_type] = STATE(14966), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7857), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5131)] = { + [sym_type] = STATE(15046), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7892), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5132)] = { + [sym_type] = STATE(15087), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7876), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5133)] = { + [sym_type] = STATE(14920), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7952), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(7250), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + }, + [STATE(5134)] = { + [sym_type] = STATE(14843), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7884), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5135)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5141), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5141), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7954), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7960), + }, + [STATE(5136)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5213), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5213), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7962), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7964), + }, + [STATE(5137)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5138)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9947), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7569), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(7972), + [anon_sym_RBRACK] = ACTIONS(7974), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(7976), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(7978), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7980), + }, + [STATE(5139)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7954), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5140)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5142), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5142), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7982), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7984), + }, + [STATE(5141)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5142)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7988), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5143)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5144), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5144), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7988), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7990), + }, + [STATE(5144)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(7992), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5145)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9927), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7566), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(7994), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(7996), + [anon_sym_RBRACK] = ACTIONS(7998), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(7976), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8000), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8002), + }, + [STATE(5146)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8004), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5147)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5232), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5232), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8004), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8006), + }, + [STATE(5148)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5233), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5233), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8010), + }, + [STATE(5149)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9927), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7566), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(7994), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(7996), + [anon_sym_RBRACK] = ACTIONS(8012), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(7976), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8000), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8002), + }, + [STATE(5150)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8014), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5151)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9934), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5153), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8016), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8018), + [anon_sym_RBRACK] = ACTIONS(8020), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(8022), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8024), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8026), + }, + [STATE(5152)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5154), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5154), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8028), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8030), + }, + [STATE(5153)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9957), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7570), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8032), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8034), + [anon_sym_RBRACK] = ACTIONS(8036), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(7976), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8038), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8040), + }, + [STATE(5154)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8042), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5155)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5157), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5157), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8042), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8044), + }, + [STATE(5156)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5158), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5158), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8046), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8048), + }, + [STATE(5157)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8050), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5158)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8052), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5159)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5160), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5160), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8052), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8054), + }, + [STATE(5160)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8056), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5161)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9940), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5164), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8058), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8060), + [anon_sym_RBRACK] = ACTIONS(8062), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(8022), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8064), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8066), + }, + [STATE(5162)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5165), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8070), + }, + [STATE(5163)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9938), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5145), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8072), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8074), + [anon_sym_RBRACK] = ACTIONS(8076), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(8022), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8078), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8080), + }, + [STATE(5164)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9955), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7567), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8082), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8084), + [anon_sym_RBRACK] = ACTIONS(8086), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(7976), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8088), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8090), + }, + [STATE(5165)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8092), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5166)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5168), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5168), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8092), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8094), + }, + [STATE(5167)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5169), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5169), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8096), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8098), + }, + [STATE(5168)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8100), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5169)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8102), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5170)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5171), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5171), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8102), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8104), + }, + [STATE(5171)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8106), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5172)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5212), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5212), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8014), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8108), + }, + [STATE(5173)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8110), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5174)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9938), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5149), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8072), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8074), + [anon_sym_RBRACK] = ACTIONS(8112), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(8022), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8078), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8114), + }, + [STATE(5175)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5150), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5150), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8116), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8118), + }, + [STATE(5176)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9942), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5178), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8120), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8122), + [anon_sym_RBRACK] = ACTIONS(8124), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(8022), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8126), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8128), + }, + [STATE(5177)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5179), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5179), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8130), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8132), + }, + [STATE(5178)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9914), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7571), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8134), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8136), + [anon_sym_RBRACK] = ACTIONS(8138), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(7976), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8140), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8142), + }, + [STATE(5179)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8144), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5180)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5183), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5183), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8144), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8146), + }, + [STATE(5181)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5184), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5184), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8148), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8150), + }, + [STATE(5182)] = { + [sym_type] = STATE(14926), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7890), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5183)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8152), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5184)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8154), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5185)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5186), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5186), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8154), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8156), + }, + [STATE(5186)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8158), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5187)] = { + [sym_type] = STATE(15057), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7863), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5188)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5146), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5146), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8162), + }, + [STATE(5189)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5190), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5190), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8166), + }, + [STATE(5190)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5191)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5193), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5193), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8170), + }, + [STATE(5192)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5195), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5195), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8174), + }, + [STATE(5193)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5194)] = { + [sym_type] = STATE(14954), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7886), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5195)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8178), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5196)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5197), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5197), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8178), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8180), + }, + [STATE(5197)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8182), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5198)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9948), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5138), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8184), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8186), + [anon_sym_RBRACK] = ACTIONS(8188), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(8022), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8190), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8192), + }, + [STATE(5199)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5201), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5201), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8196), + }, + [STATE(5200)] = { + [sym_type] = STATE(15065), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7894), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5201)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5202)] = { + [sym_type] = STATE(14977), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7880), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5203)] = { + [sym_type] = STATE(14845), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7888), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5204)] = { + [sym_type] = STATE(14847), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(7882), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5205)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5207), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5207), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8200), + }, + [STATE(5206)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5208), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5208), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8202), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8204), + }, + [STATE(5207)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8206), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5208)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8208), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5209)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5210), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5210), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8208), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8210), + }, + [STATE(5210)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8212), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5211)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(8214), + [anon_sym_func] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8220), + [anon_sym_struct] = ACTIONS(8223), + [anon_sym_LPAREN] = ACTIONS(8226), + [anon_sym_LBRACE] = ACTIONS(8229), + [anon_sym_RBRACE] = ACTIONS(8232), + [anon_sym_DASH] = ACTIONS(8220), + [anon_sym_DOLLAR] = ACTIONS(8234), + [anon_sym_LBRACK] = ACTIONS(8237), + [anon_sym_void] = ACTIONS(8240), + [anon_sym_noreturn] = ACTIONS(8240), + [anon_sym_type] = ACTIONS(8240), + [anon_sym_anyopaque] = ACTIONS(8240), + [anon_sym_bool] = ACTIONS(8240), + [anon_sym_int] = ACTIONS(8240), + [anon_sym_uint] = ACTIONS(8240), + [anon_sym_float] = ACTIONS(8240), + [anon_sym_range] = ACTIONS(8240), + [anon_sym_i8] = ACTIONS(8240), + [anon_sym_i16] = ACTIONS(8240), + [anon_sym_i32] = ACTIONS(8240), + [anon_sym_i64] = ACTIONS(8240), + [anon_sym_u8] = ACTIONS(8240), + [anon_sym_u16] = ACTIONS(8240), + [anon_sym_u32] = ACTIONS(8240), + [anon_sym_u64] = ACTIONS(8240), + [anon_sym_isize] = ACTIONS(8240), + [anon_sym_usize] = ACTIONS(8240), + [anon_sym_f32] = ACTIONS(8240), + [anon_sym_f64] = ACTIONS(8240), + [anon_sym_c_char] = ACTIONS(8240), + [anon_sym_c_schar] = ACTIONS(8240), + [anon_sym_c_uchar] = ACTIONS(8240), + [anon_sym_c_short] = ACTIONS(8240), + [anon_sym_c_ushort] = ACTIONS(8240), + [anon_sym_c_int] = ACTIONS(8240), + [anon_sym_c_uint] = ACTIONS(8240), + [anon_sym_c_long] = ACTIONS(8240), + [anon_sym_c_ulong] = ACTIONS(8240), + [anon_sym_c_longlong] = ACTIONS(8240), + [anon_sym_c_ulonglong] = ACTIONS(8240), + [anon_sym_c_float] = ACTIONS(8240), + [anon_sym_c_double] = ACTIONS(8240), + [anon_sym_c_longdouble] = ACTIONS(8240), + [anon_sym_else] = ACTIONS(8243), + [anon_sym_expand] = ACTIONS(8246), + [anon_sym_AMP] = ACTIONS(8220), + [anon_sym_TILDE] = ACTIONS(8220), + [anon_sym_try] = ACTIONS(8249), + [anon_sym_DOT] = ACTIONS(8252), + [anon_sym_true] = ACTIONS(8255), + [anon_sym_false] = ACTIONS(8255), + [anon_sym_null] = ACTIONS(8258), + [anon_sym_unreachable] = ACTIONS(8261), + [anon_sym_undefined] = ACTIONS(8264), + [sym_sink] = ACTIONS(8267), + [sym_integer] = ACTIONS(8267), + [sym_float] = ACTIONS(8270), + [anon_sym_DQUOTE] = ACTIONS(8273), + [sym_multiline_string] = ACTIONS(8270), + [sym_character] = ACTIONS(8270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8276), + }, + [STATE(5212)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8279), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5213)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5214)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5215), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5215), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8283), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8285), + }, + [STATE(5215)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5216)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5218), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5218), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8289), + }, + [STATE(5217)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5219), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5219), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8291), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8293), + }, + [STATE(5218)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8295), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5219)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8297), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5220)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5221), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5221), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8297), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8299), + }, + [STATE(5221)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8301), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5222)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5173), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5173), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8303), + }, + [STATE(5223)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5224), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5224), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8305), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8307), + }, + [STATE(5224)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8309), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5225)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5227), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5227), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8309), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8311), + }, + [STATE(5226)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5228), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5228), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8313), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8315), + }, + [STATE(5227)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8317), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5228)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8319), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5229)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5230), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5230), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8319), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8321), + }, + [STATE(5230)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8323), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5231)] = { + [sym_type] = STATE(14925), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7855), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_PIPE2] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(5232)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8325), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5233)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5211), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8327), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7968), + }, + [STATE(5234)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5137), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5137), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8327), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8329), + }, + [STATE(5235)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_match_arm] = STATE(5139), + [sym_expression] = STATE(9969), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_match_statement_repeat1] = STATE(5139), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8331), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(7956), + [anon_sym_expand] = ACTIONS(7958), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8333), + }, + [STATE(5236)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10090), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5258), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8337), + [anon_sym_RBRACK] = ACTIONS(8339), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8341), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8343), + }, + [STATE(5237)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9946), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7573), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8345), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8347), + [anon_sym_RBRACK] = ACTIONS(8349), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8351), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8353), + }, + [STATE(5238)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9924), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5237), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8337), + [anon_sym_RBRACK] = ACTIONS(8355), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8341), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8357), + }, + [STATE(5239)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9960), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5243), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8072), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8074), + [anon_sym_RBRACK] = ACTIONS(8076), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8078), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8359), + }, + [STATE(5240)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10137), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5265), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8361), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8363), + [anon_sym_RBRACK] = ACTIONS(8365), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8367), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8369), + }, + [STATE(5241)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9920), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5274), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8371), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8373), + [anon_sym_RBRACK] = ACTIONS(8375), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8377), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8379), + }, + [STATE(5242)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10117), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7589), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8381), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8383), + [anon_sym_RBRACK] = ACTIONS(8385), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8387), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8389), + }, + [STATE(5243)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9919), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7586), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(7994), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(7996), + [anon_sym_RBRACK] = ACTIONS(7998), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8000), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8391), + }, + [STATE(5244)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9464), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6151), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8393), + }, + [STATE(5245)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10152), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5242), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8395), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8397), + [anon_sym_RBRACK] = ACTIONS(8399), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8401), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8403), + }, + [STATE(5246)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10113), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5249), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8405), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8407), + [anon_sym_RBRACK] = ACTIONS(8409), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8411), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8413), + }, + [STATE(5247)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9953), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5250), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8016), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8018), + [anon_sym_RBRACK] = ACTIONS(8020), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8024), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8415), + }, + [STATE(5248)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10126), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5252), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8417), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8419), + [anon_sym_RBRACK] = ACTIONS(8421), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8423), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8425), + }, + [STATE(5249)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10114), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7572), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8427), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8429), + [anon_sym_RBRACK] = ACTIONS(8431), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8433), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8435), + }, + [STATE(5250)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9963), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7575), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8032), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8034), + [anon_sym_RBRACK] = ACTIONS(8036), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8038), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8437), + }, + [STATE(5251)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9928), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5253), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8184), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8186), + [anon_sym_RBRACK] = ACTIONS(8188), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8190), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8439), + }, + [STATE(5252)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10132), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7584), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8443), + [anon_sym_RBRACK] = ACTIONS(8445), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8447), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8449), + }, + [STATE(5253)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9945), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7585), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(7972), + [anon_sym_RBRACK] = ACTIONS(7974), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(7978), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8451), + }, + [STATE(5254)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10163), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7583), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8455), + [anon_sym_RBRACK] = ACTIONS(8457), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8459), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8461), + }, + [STATE(5255)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9958), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7584), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8443), + [anon_sym_RBRACK] = ACTIONS(8463), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8447), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8449), + }, + [STATE(5256)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9949), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7573), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8345), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8347), + [anon_sym_RBRACK] = ACTIONS(8465), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8351), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8353), + }, + [STATE(5257)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10112), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5254), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8467), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8469), + [anon_sym_RBRACK] = ACTIONS(8471), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8473), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8475), + }, + [STATE(5258)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10095), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7573), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8345), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8347), + [anon_sym_RBRACK] = ACTIONS(8477), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8351), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8353), + }, + [STATE(5259)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10109), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5261), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8016), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8018), + [anon_sym_RBRACK] = ACTIONS(8479), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8024), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8481), + }, + [STATE(5260)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9941), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5262), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8120), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8122), + [anon_sym_RBRACK] = ACTIONS(8124), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8126), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8483), + }, + [STATE(5261)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10111), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7575), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8032), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8034), + [anon_sym_RBRACK] = ACTIONS(8485), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8038), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8437), + }, + [STATE(5262)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9931), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7576), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8134), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8136), + [anon_sym_RBRACK] = ACTIONS(8138), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8140), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8487), + }, + [STATE(5263)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10087), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5266), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8072), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8074), + [anon_sym_RBRACK] = ACTIONS(8489), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8078), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8491), + }, + [STATE(5264)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9933), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5270), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8072), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8074), + [anon_sym_RBRACK] = ACTIONS(8112), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8078), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8493), + }, + [STATE(5265)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10196), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7582), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8495), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8497), + [anon_sym_RBRACK] = ACTIONS(8499), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8501), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8503), + }, + [STATE(5266)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10093), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7586), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(7994), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(7996), + [anon_sym_RBRACK] = ACTIONS(8505), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8000), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8391), + }, + [STATE(5267)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10133), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5269), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8184), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8186), + [anon_sym_RBRACK] = ACTIONS(8507), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8190), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8509), + }, + [STATE(5268)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9929), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5271), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8405), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8407), + [anon_sym_RBRACK] = ACTIONS(8511), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8411), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8513), + }, + [STATE(5269)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10135), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7585), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(7972), + [anon_sym_RBRACK] = ACTIONS(8515), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(7978), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8451), + }, + [STATE(5270)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9965), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7586), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(7994), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(7996), + [anon_sym_RBRACK] = ACTIONS(8012), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8000), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8391), + }, + [STATE(5271)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9932), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7572), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8427), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8429), + [anon_sym_RBRACK] = ACTIONS(8517), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8433), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8435), + }, + [STATE(5272)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10123), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5275), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8120), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8122), + [anon_sym_RBRACK] = ACTIONS(8519), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8126), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8521), + }, + [STATE(5273)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9923), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5276), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8058), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8060), + [anon_sym_RBRACK] = ACTIONS(8062), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8064), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8523), + }, + [STATE(5274)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9950), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7587), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8525), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8527), + [anon_sym_RBRACK] = ACTIONS(8529), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8531), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8533), + }, + [STATE(5275)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10124), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7576), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8134), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8136), + [anon_sym_RBRACK] = ACTIONS(8535), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8140), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8487), + }, + [STATE(5276)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9936), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7577), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8082), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8084), + [anon_sym_RBRACK] = ACTIONS(8086), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8088), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8537), + }, + [STATE(5277)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10128), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5278), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8058), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8060), + [anon_sym_RBRACK] = ACTIONS(8539), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8064), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8541), + }, + [STATE(5278)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10130), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7577), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8082), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8084), + [anon_sym_RBRACK] = ACTIONS(8543), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8088), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8537), + }, + [STATE(5279)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10146), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5281), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8371), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8373), + [anon_sym_RBRACK] = ACTIONS(8545), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8377), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8547), + }, + [STATE(5280)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9913), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5255), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8417), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8419), + [anon_sym_RBRACK] = ACTIONS(8549), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8423), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8551), + }, + [STATE(5281)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10160), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7587), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8525), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8527), + [anon_sym_RBRACK] = ACTIONS(8553), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8531), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8533), + }, + [STATE(5282)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9961), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5256), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(8337), + [anon_sym_RBRACK] = ACTIONS(8555), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(8341), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8557), + }, + [STATE(5283)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14321), + [sym_expression_statement] = STATE(14321), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5296), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8561), + }, + [STATE(5284)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14029), + [sym_expression_statement] = STATE(14029), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5285), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8563), + }, + [STATE(5285)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14063), + [sym_expression_statement] = STATE(14063), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5286)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11718), + [sym_expression_statement] = STATE(11718), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8565), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5287)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11443), + [sym_expression_statement] = STATE(11443), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5305), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8569), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8571), + }, + [STATE(5288)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11623), + [sym_expression_statement] = STATE(11623), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5295), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8573), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8575), + }, + [STATE(5289)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14305), + [sym_expression_statement] = STATE(14305), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8577), + }, + [STATE(5290)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14310), + [sym_expression_statement] = STATE(14310), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5291)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14311), + [sym_expression_statement] = STATE(14311), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5293), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8579), + }, + [STATE(5292)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14312), + [sym_expression_statement] = STATE(14312), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5294), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8581), + }, + [STATE(5293)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14318), + [sym_expression_statement] = STATE(14318), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5294)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14320), + [sym_expression_statement] = STATE(14320), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5295)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11631), + [sym_expression_statement] = STATE(11631), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8583), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5296)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14327), + [sym_expression_statement] = STATE(14327), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5297)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11424), + [sym_expression_statement] = STATE(11424), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5286), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8585), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8587), + }, + [STATE(5298)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11632), + [sym_expression_statement] = STATE(11632), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5299), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8589), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8591), + }, + [STATE(5299)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11642), + [sym_expression_statement] = STATE(11642), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8593), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5300)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11765), + [sym_expression_statement] = STATE(11765), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5301), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8595), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8597), + }, + [STATE(5301)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11779), + [sym_expression_statement] = STATE(11779), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8599), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5302)] = { + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(8601), + [anon_sym_import] = ACTIONS(8601), + [anon_sym_test] = ACTIONS(8601), + [anon_sym_hide] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_c_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_c_struct] = ACTIONS(8601), + [anon_sym_opaque] = ACTIONS(8601), + [anon_sym_distinct] = ACTIONS(8601), + [anon_sym_alias] = ACTIONS(8601), + [anon_sym_union] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_enum] = ACTIONS(8601), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_RBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_mut] = ACTIONS(8601), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_return] = ACTIONS(8601), + [anon_sym_yield] = ACTIONS(8601), + [anon_sym_break] = ACTIONS(8601), + [anon_sym_continue] = ACTIONS(8601), + [anon_sym_defer] = ACTIONS(8601), + [anon_sym_errdefer] = ACTIONS(8601), + [anon_sym_if] = ACTIONS(8601), + [anon_sym_else] = ACTIONS(8601), + [anon_sym_while] = ACTIONS(8601), + [anon_sym_expand] = ACTIONS(8601), + [anon_sym_for] = ACTIONS(8601), + [anon_sym_match] = ACTIONS(8601), + [anon_sym_orelse] = ACTIONS(8601), + [anon_sym_or] = ACTIONS(8601), + [anon_sym_and] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_xor] = ACTIONS(8601), + [anon_sym_catch] = ACTIONS(8601), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8605), + }, + [STATE(5303)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11780), + [sym_expression_statement] = STATE(11780), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5304), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8608), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8610), + }, + [STATE(5304)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11797), + [sym_expression_statement] = STATE(11797), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8612), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5305)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11464), + [sym_expression_statement] = STATE(11464), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8614), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5306)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14569), + [sym_expression_statement] = STATE(14569), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5307)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11928), + [sym_expression_statement] = STATE(11928), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5308), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8616), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8618), + }, + [STATE(5308)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11947), + [sym_expression_statement] = STATE(11947), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8620), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5309)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11122), + [sym_expression_statement] = STATE(11122), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5389), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8622), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8624), + }, + [STATE(5310)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11948), + [sym_expression_statement] = STATE(11948), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5311), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8626), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8628), + }, + [STATE(5311)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11478), + [sym_expression_statement] = STATE(11478), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8630), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5312)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11721), + [sym_expression_statement] = STATE(11721), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5322), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8632), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8634), + }, + [STATE(5313)] = { + [sym_type] = STATE(14920), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7952), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + }, + [STATE(5314)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14501), + [sym_expression_statement] = STATE(14501), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5315), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8636), + }, + [STATE(5315)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14511), + [sym_expression_statement] = STATE(14511), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5316)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14512), + [sym_expression_statement] = STATE(14512), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5318), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8638), + }, + [STATE(5317)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14513), + [sym_expression_statement] = STATE(14513), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5319), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8640), + }, + [STATE(5318)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14520), + [sym_expression_statement] = STATE(14520), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5319)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14524), + [sym_expression_statement] = STATE(14524), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5320)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14525), + [sym_expression_statement] = STATE(14525), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5321), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8642), + }, + [STATE(5321)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14536), + [sym_expression_statement] = STATE(14536), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5322)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11789), + [sym_expression_statement] = STATE(11789), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8644), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5323)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11802), + [sym_expression_statement] = STATE(11802), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5325), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8646), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8648), + }, + [STATE(5324)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14662), + [sym_expression_statement] = STATE(14662), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5328), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8650), + }, + [STATE(5325)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11883), + [sym_expression_statement] = STATE(11883), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8652), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5326)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11097), + [sym_expression_statement] = STATE(11097), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5327), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8654), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8656), + }, + [STATE(5327)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11109), + [sym_expression_statement] = STATE(11109), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8658), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5328)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14106), + [sym_expression_statement] = STATE(14106), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5329)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14115), + [sym_expression_statement] = STATE(14115), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5330)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11110), + [sym_expression_statement] = STATE(11110), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5332), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8660), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8662), + }, + [STATE(5331)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14227), + [sym_expression_statement] = STATE(14227), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5329), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8664), + }, + [STATE(5332)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11130), + [sym_expression_statement] = STATE(11130), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8666), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5333)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11638), + [sym_expression_statement] = STATE(11638), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8668), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5334)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14685), + [sym_expression_statement] = STATE(14685), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5335), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8670), + }, + [STATE(5335)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14689), + [sym_expression_statement] = STATE(14689), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5336)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14690), + [sym_expression_statement] = STATE(14690), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5338), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8672), + }, + [STATE(5337)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14691), + [sym_expression_statement] = STATE(14691), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5339), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8674), + }, + [STATE(5338)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14697), + [sym_expression_statement] = STATE(14697), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5339)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14699), + [sym_expression_statement] = STATE(14699), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5340)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14700), + [sym_expression_statement] = STATE(14700), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5341), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8676), + }, + [STATE(5341)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14706), + [sym_expression_statement] = STATE(14706), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5342)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11224), + [sym_expression_statement] = STATE(11224), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5344), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8678), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8680), + }, + [STATE(5343)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14117), + [sym_expression_statement] = STATE(14117), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5306), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8682), + }, + [STATE(5344)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11230), + [sym_expression_statement] = STATE(11230), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8684), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5345)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11231), + [sym_expression_statement] = STATE(11231), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5346), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8686), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8688), + }, + [STATE(5346)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11236), + [sym_expression_statement] = STATE(11236), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8690), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5347)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11121), + [sym_expression_statement] = STATE(11121), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8692), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5348)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14737), + [sym_expression_statement] = STATE(14737), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5349), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8694), + }, + [STATE(5349)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14742), + [sym_expression_statement] = STATE(14742), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5350)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14743), + [sym_expression_statement] = STATE(14743), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5352), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8696), + }, + [STATE(5351)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14744), + [sym_expression_statement] = STATE(14744), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5353), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8698), + }, + [STATE(5352)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14751), + [sym_expression_statement] = STATE(14751), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5353)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14753), + [sym_expression_statement] = STATE(14753), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5354)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14754), + [sym_expression_statement] = STATE(14754), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5355), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8700), + }, + [STATE(5355)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14761), + [sym_expression_statement] = STATE(14761), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5356)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14794), + [sym_expression_statement] = STATE(14794), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5357), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8702), + }, + [STATE(5357)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14803), + [sym_expression_statement] = STATE(14803), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5358)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14804), + [sym_expression_statement] = STATE(14804), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5360), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8704), + }, + [STATE(5359)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14805), + [sym_expression_statement] = STATE(14805), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8706), + }, + [STATE(5360)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14811), + [sym_expression_statement] = STATE(14811), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5361)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14813), + [sym_expression_statement] = STATE(14813), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5362)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14816), + [sym_expression_statement] = STATE(14816), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5363), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8708), + }, + [STATE(5363)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14822), + [sym_expression_statement] = STATE(14822), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5364)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13951), + [sym_expression_statement] = STATE(13951), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5365), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8710), + }, + [STATE(5365)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13956), + [sym_expression_statement] = STATE(13956), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5366)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13957), + [sym_expression_statement] = STATE(13957), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5368), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8712), + }, + [STATE(5367)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13958), + [sym_expression_statement] = STATE(13958), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5369), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8714), + }, + [STATE(5368)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13964), + [sym_expression_statement] = STATE(13964), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5369)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13966), + [sym_expression_statement] = STATE(13966), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5370)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13967), + [sym_expression_statement] = STATE(13967), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5371), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8716), + }, + [STATE(5371)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13973), + [sym_expression_statement] = STATE(13973), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5372)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13994), + [sym_expression_statement] = STATE(13994), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5373), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8718), + }, + [STATE(5373)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13999), + [sym_expression_statement] = STATE(13999), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5374)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14000), + [sym_expression_statement] = STATE(14000), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5376), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8720), + }, + [STATE(5375)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14001), + [sym_expression_statement] = STATE(14001), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5377), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8722), + }, + [STATE(5376)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14007), + [sym_expression_statement] = STATE(14007), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5377)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14009), + [sym_expression_statement] = STATE(14009), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5378)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14010), + [sym_expression_statement] = STATE(14010), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5379), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8724), + }, + [STATE(5379)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14016), + [sym_expression_statement] = STATE(14016), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5380)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14032), + [sym_expression_statement] = STATE(14032), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5381), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8726), + }, + [STATE(5381)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14036), + [sym_expression_statement] = STATE(14036), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5382)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14037), + [sym_expression_statement] = STATE(14037), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5384), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8728), + }, + [STATE(5383)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14038), + [sym_expression_statement] = STATE(14038), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5385), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8730), + }, + [STATE(5384)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14044), + [sym_expression_statement] = STATE(14044), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5385)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14046), + [sym_expression_statement] = STATE(14046), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5386)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14047), + [sym_expression_statement] = STATE(14047), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5387), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8732), + }, + [STATE(5387)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14053), + [sym_expression_statement] = STATE(14053), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5388)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11065), + [sym_expression_statement] = STATE(11065), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5347), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8734), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8736), + }, + [STATE(5389)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11212), + [sym_expression_statement] = STATE(11212), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8738), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5390)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11484), + [sym_expression_statement] = STATE(11484), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8740), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5391)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13946), + [sym_expression_statement] = STATE(13946), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5393), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8742), + }, + [STATE(5392)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11720), + [sym_expression_statement] = STATE(11720), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8744), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8746), + }, + [STATE(5393)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13984), + [sym_expression_statement] = STATE(13984), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5394)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13985), + [sym_expression_statement] = STATE(13985), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5398), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8748), + }, + [STATE(5395)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(13986), + [sym_expression_statement] = STATE(13986), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5402), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8750), + }, + [STATE(5396)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14287), + [sym_expression_statement] = STATE(14287), + [sym_expression] = STATE(8933), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5403), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8752), + }, + [STATE(5397)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11383), + [sym_expression_statement] = STATE(11383), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5399), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8754), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8756), + }, + [STATE(5398)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14025), + [sym_expression_statement] = STATE(14025), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5399)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11411), + [sym_expression_statement] = STATE(11411), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8758), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5400)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11412), + [sym_expression_statement] = STATE(11412), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5401), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8760), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8762), + }, + [STATE(5401)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11450), + [sym_expression_statement] = STATE(11450), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8764), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5402)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14028), + [sym_expression_statement] = STATE(14028), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5403)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_assignment_statement] = STATE(14778), + [sym_expression_statement] = STATE(14778), + [sym_expression] = STATE(8926), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5404)] = { + [sym_type] = STATE(14912), + [sym__type_atom] = STATE(10913), + [sym_parenthesized_type] = STATE(10913), + [sym_named_type] = STATE(10913), + [sym_intrinsic_type] = STATE(10913), + [sym_optional_type] = STATE(10913), + [sym_pointer_type] = STATE(10913), + [sym_array_type] = STATE(10913), + [sym_function_type] = STATE(10913), + [sym_builtin_type] = STATE(10913), + [sym_qualified_identifier] = STATE(10912), + [sym_identifier] = ACTIONS(7160), + [anon_sym_COLON_COLON] = ACTIONS(7896), + [anon_sym_func] = ACTIONS(1297), + [anon_sym_c_func] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + }, + [STATE(5405)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_assignment_statement] = STATE(11465), + [sym_expression_statement] = STATE(11465), + [sym_expression] = STATE(8903), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5390), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(8766), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8768), + }, + [STATE(5406)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8770), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5407)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8772), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5408)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10349), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5419), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8774), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8776), + }, + [STATE(5409)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8778), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5410)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8778), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5411)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5420), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8778), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8780), + }, + [STATE(5412)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5421), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8778), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8782), + }, + [STATE(5413)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8784), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5414)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8784), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5415)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5423), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8784), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8786), + }, + [STATE(5416)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8788), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5417)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8788), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5418)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5424), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8788), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8790), + }, + [STATE(5419)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8792), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5420)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8794), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5421)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8794), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5422)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5425), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8794), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8796), + }, + [STATE(5423)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8798), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5424)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8800), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5425)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8802), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5426)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2528), + [sym_expression] = STATE(496), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5427), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8804), + }, + [STATE(5427)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2547), + [sym_expression] = STATE(498), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5428)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8687), + [sym_expression] = STATE(8304), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5429)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3053), + [sym_expression] = STATE(2919), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5430)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9090), + [sym_expression] = STATE(9045), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(5838), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8806), + }, + [STATE(5431)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8687), + [sym_expression] = STATE(8304), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5432)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5433)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5434)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3911), + [sym_expression] = STATE(3899), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5436), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8810), + }, + [STATE(5435)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10004), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5437), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8812), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8814), + }, + [STATE(5436)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4481), + [sym_expression] = STATE(3905), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5437)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10077), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8816), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5438)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5827), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8818), + }, + [STATE(5439)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5443), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8820), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8822), + }, + [STATE(5440)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8824), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8826), + }, + [STATE(5441)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10280), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14110), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8828), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8830), + }, + [STATE(5442)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5452), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8832), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8834), + }, + [STATE(5443)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8836), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5444)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8836), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8838), + }, + [STATE(5445)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5456), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8836), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8840), + }, + [STATE(5446)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8842), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5447)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5459), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8842), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8844), + }, + [STATE(5448)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5460), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8842), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8846), + }, + [STATE(5449)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3053), + [sym_expression] = STATE(2919), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5450)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10426), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5463), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8848), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8850), + }, + [STATE(5451)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10433), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(13936), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8852), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8854), + }, + [STATE(5452)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8856), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5453)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5465), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8856), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8858), + }, + [STATE(5454)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5466), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8856), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8860), + }, + [STATE(5455)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8862), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5456)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8862), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5457)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5469), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8862), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8864), + }, + [STATE(5458)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8862), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8866), + }, + [STATE(5459)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8868), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5460)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8868), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5461)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5472), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8868), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8870), + }, + [STATE(5462)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5473), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8868), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8872), + }, + [STATE(5463)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8874), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5464)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10208), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5475), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8876), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8878), + }, + [STATE(5465)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8880), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5466)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8880), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5467)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5476), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8880), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8882), + }, + [STATE(5468)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5477), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8880), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8884), + }, + [STATE(5469)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8886), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5470)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8886), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5471)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5479), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8886), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8888), + }, + [STATE(5472)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8890), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5473)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8890), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5474)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5480), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8890), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8892), + }, + [STATE(5475)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8894), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5476)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8896), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5477)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8896), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5478)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5481), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8896), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8898), + }, + [STATE(5479)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8900), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5480)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8902), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5481)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8904), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5482)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5828), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8906), + }, + [STATE(5483)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8476), + [sym_expression] = STATE(8307), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5431), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8908), + }, + [STATE(5484)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8910), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5485)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8910), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5486)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5830), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8910), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8912), + }, + [STATE(5487)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5831), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8910), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8914), + }, + [STATE(5488)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10012), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8916), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8918), + }, + [STATE(5489)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10075), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8920), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5490)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5494), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8922), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8924), + }, + [STATE(5491)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5497), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8926), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8928), + }, + [STATE(5492)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10261), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14341), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8930), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8932), + }, + [STATE(5493)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5502), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8934), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8936), + }, + [STATE(5494)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8938), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5495)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5505), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8938), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8940), + }, + [STATE(5496)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5506), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8938), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8942), + }, + [STATE(5497)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8944), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5498)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8944), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8946), + }, + [STATE(5499)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5510), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8944), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8948), + }, + [STATE(5500)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10303), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5513), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8950), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8952), + }, + [STATE(5501)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10307), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14392), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8954), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8956), + }, + [STATE(5502)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8958), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5503)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5515), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8958), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8960), + }, + [STATE(5504)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5516), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8958), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8962), + }, + [STATE(5505)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5506)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5507)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5519), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8966), + }, + [STATE(5508)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5520), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8968), + }, + [STATE(5509)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8970), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5510)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8970), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5511)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5522), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8970), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8972), + }, + [STATE(5512)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5523), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8970), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8974), + }, + [STATE(5513)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8976), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5514)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10327), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5525), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8978), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8980), + }, + [STATE(5515)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8982), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5516)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8982), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5517)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5526), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8982), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8984), + }, + [STATE(5518)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5527), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8982), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8986), + }, + [STATE(5519)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8988), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5520)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8988), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5521)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5529), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(8988), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8990), + }, + [STATE(5522)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8992), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5523)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8992), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5524)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5530), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8992), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8994), + }, + [STATE(5525)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(8996), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5526)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8998), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5527)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8998), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5528)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5531), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8998), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9000), + }, + [STATE(5529)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5530)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9004), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5531)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9006), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5532)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7414), + [sym_expression] = STATE(7167), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(5794), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9008), + }, + [STATE(5533)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9995), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5534), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9010), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9012), + }, + [STATE(5534)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10029), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9014), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5535)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5539), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9016), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9018), + }, + [STATE(5536)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5542), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9020), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9022), + }, + [STATE(5537)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10330), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14204), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9024), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9026), + }, + [STATE(5538)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5547), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9028), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9030), + }, + [STATE(5539)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5540)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5550), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9034), + }, + [STATE(5541)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9036), + }, + [STATE(5542)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9038), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5543)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5554), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9038), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9040), + }, + [STATE(5544)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5555), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9038), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9042), + }, + [STATE(5545)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10456), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5559), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9044), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9046), + }, + [STATE(5546)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10457), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14246), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9048), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9050), + }, + [STATE(5547)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9052), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5548)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9052), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9054), + }, + [STATE(5549)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5562), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9052), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9056), + }, + [STATE(5550)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9058), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5551)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9058), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5552)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5565), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9058), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9060), + }, + [STATE(5553)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5566), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9058), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9062), + }, + [STATE(5554)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9064), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5555)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9064), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5556)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9064), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9066), + }, + [STATE(5557)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5569), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9064), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9068), + }, + [STATE(5558)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10612), + [sym_expression] = STATE(10333), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(5605), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9070), + }, + [STATE(5559)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9072), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5560)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10273), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5571), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9074), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9076), + }, + [STATE(5561)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9078), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5562)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9078), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5563)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5573), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9078), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9080), + }, + [STATE(5564)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5574), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9078), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9082), + }, + [STATE(5565)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9084), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5566)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9084), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5567)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5576), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9084), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9086), + }, + [STATE(5568)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9088), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5569)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9088), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5570)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5577), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9088), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9090), + }, + [STATE(5571)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9092), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5572)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10065), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9094), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5573)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9096), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5574)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9096), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5575)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5578), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9096), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9098), + }, + [STATE(5576)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9100), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5577)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9102), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5578)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9104), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5579)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_block] = STATE(8476), + [sym_expression] = STATE(8307), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5428), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9106), + }, + [STATE(5580)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10024), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5581), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9108), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9110), + }, + [STATE(5581)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9980), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9112), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5582)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5586), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9114), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9116), + }, + [STATE(5583)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5589), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9118), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9120), + }, + [STATE(5584)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10286), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14496), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9122), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9124), + }, + [STATE(5585)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9126), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9128), + }, + [STATE(5586)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9130), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5587)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5597), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9130), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9132), + }, + [STATE(5588)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9130), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9134), + }, + [STATE(5589)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9136), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5590)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5601), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9136), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9138), + }, + [STATE(5591)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5602), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9136), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9140), + }, + [STATE(5592)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10417), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5606), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9142), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9144), + }, + [STATE(5593)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10424), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14530), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9146), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9148), + }, + [STATE(5594)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9150), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5595)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5608), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9150), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9152), + }, + [STATE(5596)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5609), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9150), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9154), + }, + [STATE(5597)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9156), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5598)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9156), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5599)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5612), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9156), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9158), + }, + [STATE(5600)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5613), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9156), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9160), + }, + [STATE(5601)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9162), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5602)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9162), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5603)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5615), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9162), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9164), + }, + [STATE(5604)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5616), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9162), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9166), + }, + [STATE(5605)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_block] = STATE(10829), + [sym_expression] = STATE(10236), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5606)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9168), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5607)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10380), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5618), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9170), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9172), + }, + [STATE(5608)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9174), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5609)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9174), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5610)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9174), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9176), + }, + [STATE(5611)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5620), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9174), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9178), + }, + [STATE(5612)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9180), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5613)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9180), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5614)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5622), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9180), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9182), + }, + [STATE(5615)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9184), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5616)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9184), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5617)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5623), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9184), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9186), + }, + [STATE(5618)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9188), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5619)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9190), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5620)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9190), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5621)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5624), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9190), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9192), + }, + [STATE(5622)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5623)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9196), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5624)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9198), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5625)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3440), + [sym_expression] = STATE(3407), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(5814), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9200), + }, + [STATE(5626)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10017), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5627), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9202), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9204), + }, + [STATE(5627)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10027), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9206), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5628)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9208), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9210), + }, + [STATE(5629)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5635), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9212), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9214), + }, + [STATE(5630)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10397), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14785), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9216), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9218), + }, + [STATE(5631)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9220), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9222), + }, + [STATE(5632)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9224), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5633)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5643), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9224), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9226), + }, + [STATE(5634)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5644), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9224), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9228), + }, + [STATE(5635)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9230), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5636)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5647), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9230), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9232), + }, + [STATE(5637)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5648), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9230), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9234), + }, + [STATE(5638)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10439), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9236), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9238), + }, + [STATE(5639)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10462), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14827), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9240), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9242), + }, + [STATE(5640)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9244), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5641)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5654), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9244), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9246), + }, + [STATE(5642)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5655), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9244), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9248), + }, + [STATE(5643)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5644)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5645)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5658), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9252), + }, + [STATE(5646)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9254), + }, + [STATE(5647)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9256), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5648)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9256), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5649)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5661), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9256), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9258), + }, + [STATE(5650)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5662), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9256), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9260), + }, + [STATE(5651)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9262), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5652)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10382), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5664), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9264), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9266), + }, + [STATE(5653)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9591), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6238), + [sym_identifier] = ACTIONS(9268), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(9270), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(9272), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7498), + }, + [STATE(5654)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9274), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5655)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9274), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5656)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5665), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9274), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9276), + }, + [STATE(5657)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5666), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9274), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9278), + }, + [STATE(5658)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9280), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5659)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9280), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5660)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5668), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9280), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9282), + }, + [STATE(5661)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9284), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5662)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9284), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5663)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5669), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9284), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9286), + }, + [STATE(5664)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9288), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5665)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9290), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5666)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9290), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5667)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5670), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9290), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9292), + }, + [STATE(5668)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9294), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5669)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9296), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5670)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9298), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5671)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3035), + [sym_expression] = STATE(2891), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5449), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9300), + }, + [STATE(5672)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10061), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5673), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9302), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9304), + }, + [STATE(5673)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10026), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9306), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5674)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5417), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9308), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9310), + }, + [STATE(5675)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5681), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9312), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9314), + }, + [STATE(5676)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10276), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14080), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9316), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9318), + }, + [STATE(5677)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5406), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9320), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9322), + }, + [STATE(5678)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9324), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5679)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5688), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9324), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9326), + }, + [STATE(5680)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5689), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9324), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9328), + }, + [STATE(5681)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9330), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5682)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5692), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9330), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9332), + }, + [STATE(5683)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5693), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9330), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9334), + }, + [STATE(5684)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10294), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5696), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9336), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9338), + }, + [STATE(5685)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10295), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14494), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9340), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9342), + }, + [STATE(5686)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5698), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8770), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9344), + }, + [STATE(5687)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(8770), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9346), + }, + [STATE(5688)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9348), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5689)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9348), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5690)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5702), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9348), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9350), + }, + [STATE(5691)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5703), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9348), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9352), + }, + [STATE(5692)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9354), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5693)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9354), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5694)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5705), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9354), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9356), + }, + [STATE(5695)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5706), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9354), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9358), + }, + [STATE(5696)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9360), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5697)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10313), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5708), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9362), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9364), + }, + [STATE(5698)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9366), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5699)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9366), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5700)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5709), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9366), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9368), + }, + [STATE(5701)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5710), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9366), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9370), + }, + [STATE(5702)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5703)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5704)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5712), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9374), + }, + [STATE(5705)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9376), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5706)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9376), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5707)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5713), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9376), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9378), + }, + [STATE(5708)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9380), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5709)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9382), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5710)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9382), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5711)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5714), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9382), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9384), + }, + [STATE(5712)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9386), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5713)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9388), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5714)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9390), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5715)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_block] = STATE(3035), + [sym_expression] = STATE(2891), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5429), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9392), + }, + [STATE(5716)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10057), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5717), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9394), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9396), + }, + [STATE(5717)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9993), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9398), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5718)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5722), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9400), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9402), + }, + [STATE(5719)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5725), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9404), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9406), + }, + [STATE(5720)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10351), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14378), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9408), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9410), + }, + [STATE(5721)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5730), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9412), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9414), + }, + [STATE(5722)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9416), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5723)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5733), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9416), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9418), + }, + [STATE(5724)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9416), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9420), + }, + [STATE(5725)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9422), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5726)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5737), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9422), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9424), + }, + [STATE(5727)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9422), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9426), + }, + [STATE(5728)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10375), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5741), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9428), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9430), + }, + [STATE(5729)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10378), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14679), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9432), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9434), + }, + [STATE(5730)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9436), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5731)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9436), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9438), + }, + [STATE(5732)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5744), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9436), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9440), + }, + [STATE(5733)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9442), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5734)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9442), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5735)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5747), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9442), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9444), + }, + [STATE(5736)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5748), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9442), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9446), + }, + [STATE(5737)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9448), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5738)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9448), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5739)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5750), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9448), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9450), + }, + [STATE(5740)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5751), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9448), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9452), + }, + [STATE(5741)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9454), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5742)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10411), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5753), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9456), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9458), + }, + [STATE(5743)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9460), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5744)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9460), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5745)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5754), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9460), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9462), + }, + [STATE(5746)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5755), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9460), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9464), + }, + [STATE(5747)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9466), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5748)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9466), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5749)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5757), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9466), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9468), + }, + [STATE(5750)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9470), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5751)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9470), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5752)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5758), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9470), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9472), + }, + [STATE(5753)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9474), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5754)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9476), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5755)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9476), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5756)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5759), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9476), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9478), + }, + [STATE(5757)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9480), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5758)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9482), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5759)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9484), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5760)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10074), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5761), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9486), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9488), + }, + [STATE(5761)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10080), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9490), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5762)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5763), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9492), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9494), + }, + [STATE(5763)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9496), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5764)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5766), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9496), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9498), + }, + [STATE(5765)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5767), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9496), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9500), + }, + [STATE(5766)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9502), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5767)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9502), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5768)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5770), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9502), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9504), + }, + [STATE(5769)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5771), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9502), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9506), + }, + [STATE(5770)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9508), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5771)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9508), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5772)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5773), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9508), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9510), + }, + [STATE(5773)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9512), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5774)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9981), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5775), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9514), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9516), + }, + [STATE(5775)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10007), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9518), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5776)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9520), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9522), + }, + [STATE(5777)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9524), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5778)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5780), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9524), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9526), + }, + [STATE(5779)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5781), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9524), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9528), + }, + [STATE(5780)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9530), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5781)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9530), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5782)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5784), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9530), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9532), + }, + [STATE(5783)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5785), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9530), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9534), + }, + [STATE(5784)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9536), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5785)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9536), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5786)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5787), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9536), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9538), + }, + [STATE(5787)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9540), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5788)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10398), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5790), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9542), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9544), + }, + [STATE(5789)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10000), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5791), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9546), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9548), + }, + [STATE(5790)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10432), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9550), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5791)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10051), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9094), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5792)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2528), + [sym_expression] = STATE(496), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5793), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9554), + }, + [STATE(5793)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2547), + [sym_expression] = STATE(498), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5794)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_block] = STATE(7515), + [sym_expression] = STATE(7111), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5795)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3911), + [sym_expression] = STATE(3899), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5823), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9556), + }, + [STATE(5796)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9558), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5797)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10227), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5799), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9560), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9562), + }, + [STATE(5798)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10081), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5801), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9546), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9564), + }, + [STATE(5799)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10418), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9566), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5800)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10006), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5840), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9568), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9570), + }, + [STATE(5801)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10062), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9094), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5802)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9572), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5803)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9572), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5804)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5842), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9572), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9574), + }, + [STATE(5805)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5843), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9572), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9576), + }, + [STATE(5806)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10221), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5807), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9578), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9580), + }, + [STATE(5807)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10268), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9582), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5808)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10469), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5809), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9584), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9586), + }, + [STATE(5809)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10209), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9588), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5810)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9589), + [sym_expression] = STATE(9464), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5817), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9590), + }, + [STATE(5811)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10214), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5813), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9592), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9594), + }, + [STATE(5812)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9596), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5813)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10292), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9598), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5814)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_block] = STATE(3450), + [sym_expression] = STATE(3419), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5815)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10028), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5572), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9546), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9600), + }, + [STATE(5816)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10347), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5818), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9602), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9604), + }, + [STATE(5817)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9546), + [sym_expression] = STATE(9444), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5818)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10404), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9606), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5819)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10263), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5820), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9608), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9610), + }, + [STATE(5820)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10279), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9612), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5821)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10340), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5822), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9614), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9616), + }, + [STATE(5822)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10352), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(9618), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5823)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4481), + [sym_expression] = STATE(3905), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5824)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9620), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5825)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9620), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9622), + }, + [STATE(5826)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5433), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9620), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9624), + }, + [STATE(5827)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9626), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5828)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9626), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5829)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5848), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9626), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9628), + }, + [STATE(5830)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9630), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5831)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9630), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5832)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9630), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9632), + }, + [STATE(5833)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9634), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5834)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5484), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9634), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9636), + }, + [STATE(5835)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5485), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9634), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9638), + }, + [STATE(5836)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9991), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9094), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5837)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5824), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9640), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9642), + }, + [STATE(5838)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_block] = STATE(9068), + [sym_expression] = STATE(8901), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5839)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5833), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9644), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9646), + }, + [STATE(5840)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9648), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5841)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9972), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5836), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9546), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9650), + }, + [STATE(5842)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9652), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5843)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9652), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5844)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5812), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9652), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9654), + }, + [STATE(5845)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(6), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6394), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9658), + }, + [STATE(5846)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5862), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9660), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9662), + }, + [STATE(5847)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9951), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6236), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9664), + }, + [STATE(5848)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9666), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5849)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10129), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6278), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9670), + }, + [STATE(5850)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9672), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5851)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10329), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6279), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9674), + }, + [STATE(5852)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2528), + [sym_expression] = STATE(496), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5853), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9676), + }, + [STATE(5853)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_block] = STATE(2547), + [sym_expression] = STATE(498), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5854)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(496), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6320), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9678), + }, + [STATE(5855)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10437), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14492), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9680), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9682), + }, + [STATE(5856)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10198), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(7976), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9552), + }, + [STATE(5857)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10455), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5856), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(8022), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9684), + }, + [STATE(5858)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10050), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5796), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9686), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9688), + }, + [STATE(5859)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10350), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14503), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9690), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9692), + }, + [STATE(5860)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9589), + [sym_expression] = STATE(9464), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5861), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9694), + }, + [STATE(5861)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_block] = STATE(9546), + [sym_expression] = STATE(9444), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5862)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9696), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5863)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5802), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9696), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9698), + }, + [STATE(5864)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5803), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9696), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9700), + }, + [STATE(5865)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(3911), + [sym_expression] = STATE(3899), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5867), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9702), + }, + [STATE(5866)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10019), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5868), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9704), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9706), + }, + [STATE(5867)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_block] = STATE(4481), + [sym_expression] = STATE(3905), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5868)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9987), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9708), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5869)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5874), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9712), + }, + [STATE(5870)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5877), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9714), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9716), + }, + [STATE(5871)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10430), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14124), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9718), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9720), + }, + [STATE(5872)] = { + [sym_identifier] = ACTIONS(9722), + [anon_sym_import] = ACTIONS(9725), + [anon_sym_test] = ACTIONS(9725), + [anon_sym_hide] = ACTIONS(9725), + [anon_sym_func] = ACTIONS(9722), + [anon_sym_c_func] = ACTIONS(9725), + [anon_sym_BANG] = ACTIONS(9727), + [anon_sym_struct] = ACTIONS(9722), + [anon_sym_c_struct] = ACTIONS(9725), + [anon_sym_opaque] = ACTIONS(9725), + [anon_sym_distinct] = ACTIONS(9725), + [anon_sym_alias] = ACTIONS(9725), + [anon_sym_union] = ACTIONS(9725), + [anon_sym_LPAREN] = ACTIONS(9727), + [anon_sym_enum] = ACTIONS(9725), + [anon_sym_LBRACE] = ACTIONS(9727), + [anon_sym_RBRACE] = ACTIONS(9727), + [anon_sym_DASH] = ACTIONS(9727), + [anon_sym_DOLLAR] = ACTIONS(9727), + [anon_sym_mut] = ACTIONS(9725), + [anon_sym_LBRACK] = ACTIONS(9727), + [anon_sym_void] = ACTIONS(9722), + [anon_sym_noreturn] = ACTIONS(9722), + [anon_sym_type] = ACTIONS(9722), + [anon_sym_anyopaque] = ACTIONS(9722), + [anon_sym_bool] = ACTIONS(9722), + [anon_sym_int] = ACTIONS(9722), + [anon_sym_uint] = ACTIONS(9722), + [anon_sym_float] = ACTIONS(9722), + [anon_sym_range] = ACTIONS(9722), + [anon_sym_i8] = ACTIONS(9722), + [anon_sym_i16] = ACTIONS(9722), + [anon_sym_i32] = ACTIONS(9722), + [anon_sym_i64] = ACTIONS(9722), + [anon_sym_u8] = ACTIONS(9722), + [anon_sym_u16] = ACTIONS(9722), + [anon_sym_u32] = ACTIONS(9722), + [anon_sym_u64] = ACTIONS(9722), + [anon_sym_isize] = ACTIONS(9722), + [anon_sym_usize] = ACTIONS(9722), + [anon_sym_f32] = ACTIONS(9722), + [anon_sym_f64] = ACTIONS(9722), + [anon_sym_c_char] = ACTIONS(9722), + [anon_sym_c_schar] = ACTIONS(9722), + [anon_sym_c_uchar] = ACTIONS(9722), + [anon_sym_c_short] = ACTIONS(9722), + [anon_sym_c_ushort] = ACTIONS(9722), + [anon_sym_c_int] = ACTIONS(9722), + [anon_sym_c_uint] = ACTIONS(9722), + [anon_sym_c_long] = ACTIONS(9722), + [anon_sym_c_ulong] = ACTIONS(9722), + [anon_sym_c_longlong] = ACTIONS(9722), + [anon_sym_c_ulonglong] = ACTIONS(9722), + [anon_sym_c_float] = ACTIONS(9722), + [anon_sym_c_double] = ACTIONS(9722), + [anon_sym_c_longdouble] = ACTIONS(9722), + [anon_sym_return] = ACTIONS(9722), + [anon_sym_yield] = ACTIONS(9722), + [anon_sym_break] = ACTIONS(9722), + [anon_sym_continue] = ACTIONS(9722), + [anon_sym_defer] = ACTIONS(9722), + [anon_sym_errdefer] = ACTIONS(9722), + [anon_sym_if] = ACTIONS(9722), + [anon_sym_else] = ACTIONS(9725), + [anon_sym_while] = ACTIONS(9722), + [anon_sym_expand] = ACTIONS(9722), + [anon_sym_for] = ACTIONS(9722), + [anon_sym_match] = ACTIONS(9722), + [anon_sym_orelse] = ACTIONS(9725), + [anon_sym_or] = ACTIONS(9725), + [anon_sym_and] = ACTIONS(9725), + [anon_sym_AMP] = ACTIONS(9727), + [anon_sym_xor] = ACTIONS(9725), + [anon_sym_catch] = ACTIONS(9725), + [anon_sym_TILDE] = ACTIONS(9727), + [anon_sym_try] = ACTIONS(9722), + [anon_sym_DOT] = ACTIONS(9727), + [anon_sym_true] = ACTIONS(9722), + [anon_sym_false] = ACTIONS(9722), + [anon_sym_null] = ACTIONS(9722), + [anon_sym_unreachable] = ACTIONS(9722), + [anon_sym_undefined] = ACTIONS(9722), + [sym_sink] = ACTIONS(9722), + [sym_integer] = ACTIONS(9722), + [sym_float] = ACTIONS(9727), + [anon_sym_DQUOTE] = ACTIONS(9727), + [sym_multiline_string] = ACTIONS(9727), + [sym_character] = ACTIONS(9727), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9727), + }, + [STATE(5873)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5882), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9730), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9732), + }, + [STATE(5874)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9734), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5875)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5885), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9734), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9736), + }, + [STATE(5876)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5886), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9734), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9738), + }, + [STATE(5877)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9740), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5878)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5889), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9740), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9742), + }, + [STATE(5879)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5890), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9740), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9744), + }, + [STATE(5880)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10459), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5407), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9746), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9748), + }, + [STATE(5881)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10461), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(14228), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9750), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9752), + }, + [STATE(5882)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9754), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5883)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5409), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9754), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9756), + }, + [STATE(5884)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5410), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(9754), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9758), + }, + [STATE(5885)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9760), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5886)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9760), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5887)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5413), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9760), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9762), + }, + [STATE(5888)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5414), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9760), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9764), + }, + [STATE(5889)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9308), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5890)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9308), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5891)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5416), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(9308), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9766), + }, + [STATE(5892)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(5678), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(9768), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9770), + }, + [STATE(5893)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7143), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6120), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9774), + }, + [STATE(5894)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6562), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5927), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9778), + }, + [STATE(5895)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3377), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5901), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9780), + }, + [STATE(5896)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3383), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5902), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9782), + }, + [STATE(5897)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10413), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6010), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9784), + }, + [STATE(5898)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10428), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6011), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9786), + }, + [STATE(5899)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6569), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5930), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9788), + }, + [STATE(5900)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6575), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5936), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9790), + }, + [STATE(5901)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3382), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5902)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3390), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5903)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8304), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5904)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8909), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5918), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9792), + }, + [STATE(5905)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8910), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5920), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9794), + }, + [STATE(5906)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6552), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5945), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9796), + }, + [STATE(5907)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8349), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5923), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9798), + }, + [STATE(5908)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8919), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5924), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9800), + }, + [STATE(5909)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8936), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5925), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9802), + }, + [STATE(5910)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8938), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5933), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9804), + }, + [STATE(5911)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8940), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5938), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9806), + }, + [STATE(5912)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8947), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5939), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9808), + }, + [STATE(5913)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9000), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5940), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9810), + }, + [STATE(5914)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6584), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5947), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9812), + }, + [STATE(5915)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6563), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5951), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9814), + }, + [STATE(5916)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(516), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5917)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8307), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5981), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9816), + }, + [STATE(5918)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9005), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5919)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10213), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6257), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9818), + }, + [STATE(5920)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9014), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5921)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6589), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5922)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6578), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5923)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8306), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5924)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9015), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5925)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9016), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5926)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2898), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5927)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6580), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5928)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2891), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6362), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9820), + }, + [STATE(5929)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(61), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6037), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9822), + }, + [STATE(5930)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6581), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5931)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(16), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5932)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(8), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6175), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9824), + }, + [STATE(5933)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9018), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5934)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2883), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5943), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9826), + }, + [STATE(5935)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2884), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5944), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9828), + }, + [STATE(5936)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6582), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5937)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(11), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5938)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9019), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5939)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9021), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5940)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9026), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5941)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3410), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5949), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9830), + }, + [STATE(5942)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3411), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5950), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9832), + }, + [STATE(5943)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2885), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5944)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2886), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5945)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6583), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5946)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10195), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5947)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6586), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5948)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2919), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5949)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3422), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5950)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3431), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5951)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6587), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5952)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9891), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5953)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2879), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5962), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9834), + }, + [STATE(5954)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2880), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5963), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9836), + }, + [STATE(5955)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2893), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5964), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9838), + }, + [STATE(5956)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2887), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5970), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9840), + }, + [STATE(5957)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2888), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5971), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9842), + }, + [STATE(5958)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2894), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5974), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9844), + }, + [STATE(5959)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2895), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5975), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9846), + }, + [STATE(5960)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2896), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5976), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9848), + }, + [STATE(5961)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2901), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5978), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9850), + }, + [STATE(5962)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2918), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5963)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2892), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5964)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2898), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5965)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2891), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5948), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9852), + }, + [STATE(5966)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3373), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5967)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(63), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6050), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9854), + }, + [STATE(5968)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(517), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5969)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(17), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5970)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2869), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5971)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2870), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5972)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3415), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(5979), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9858), + }, + [STATE(5973)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3416), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(5980), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9860), + }, + [STATE(5974)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2871), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5975)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2872), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5976)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2873), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5977)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(9045), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6282), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9864), + }, + [STATE(5978)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2874), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5979)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3395), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5980)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3396), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5981)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8304), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5982)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7167), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6098), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9866), + }, + [STATE(5983)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8480), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6018), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9868), + }, + [STATE(5984)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6474), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9870), + }, + [STATE(5985)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8481), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6020), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9872), + }, + [STATE(5986)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(39), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5987)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8349), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6021), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9874), + }, + [STATE(5988)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8808), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6022), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9876), + }, + [STATE(5989)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8490), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6023), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9878), + }, + [STATE(5990)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3402), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6012), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9880), + }, + [STATE(5991)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3403), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6015), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9882), + }, + [STATE(5992)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9892), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5993)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8491), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6024), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9884), + }, + [STATE(5994)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8497), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6073), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9886), + }, + [STATE(5995)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10288), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5996)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10290), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(5997)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(12), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6053), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9888), + }, + [STATE(5998)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8501), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6077), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9890), + }, + [STATE(5999)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10291), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6000)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10661), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6001)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10297), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6002)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(18), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6003)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8504), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6079), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9892), + }, + [STATE(6004)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2909), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6007), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9894), + }, + [STATE(6005)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2910), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6008), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9896), + }, + [STATE(6006)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10298), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6007)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2915), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6008)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2916), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7006), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_try] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6009)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10306), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6010)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10308), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6011)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10312), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6012)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3405), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6013)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(519), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6014)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9900), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6015)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3406), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6016)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(496), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6074), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9898), + }, + [STATE(6017)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(64), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6055), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9900), + }, + [STATE(6018)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8596), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6019)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(19), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6020)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8622), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6021)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8306), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6022)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8811), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6023)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8664), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6024)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8671), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6025)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3899), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6075), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9902), + }, + [STATE(6026)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10333), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6293), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9904), + }, + [STATE(6027)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(38), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5986), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9906), + }, + [STATE(6028)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(520), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6029)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(41), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6030)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(43), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6031)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(44), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6032)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(45), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6033)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(20), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6034)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(21), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6035)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(46), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6036)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(47), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6037)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(62), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6038)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(22), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6039)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(48), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6040)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(49), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6041)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(23), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6042)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(53), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6043)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(24), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6044)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(65), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6045)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(50), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6046)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(25), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6047)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(51), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6048)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(26), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6049)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(28), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6050)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(66), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6051)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(52), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6052)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(29), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6053)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(30), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6054)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(32), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6055)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(67), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6056)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(54), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6057)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(55), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6058)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(56), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6059)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(57), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6060)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(33), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6061)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(110), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6062)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(34), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6063)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(58), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6064)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(35), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6065)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(59), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6066)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(68), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6067)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10357), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6070), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9908), + }, + [STATE(6068)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(36), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6071), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9910), + }, + [STATE(6069)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9926), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6072), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9912), + }, + [STATE(6070)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10383), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6071)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(37), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6072)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9952), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6073)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8676), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6074)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(498), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6075)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3905), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6076)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(496), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6078), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9914), + }, + [STATE(6077)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8682), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6078)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(498), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6079)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8683), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6080)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8824), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6089), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9916), + }, + [STATE(6081)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8825), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6090), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9918), + }, + [STATE(6082)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(503), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6091), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9920), + }, + [STATE(6083)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8913), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6092), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9922), + }, + [STATE(6084)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8831), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6093), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9924), + }, + [STATE(6085)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8847), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6094), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9926), + }, + [STATE(6086)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8830), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6095), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9928), + }, + [STATE(6087)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8834), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6096), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9930), + }, + [STATE(6088)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8839), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6097), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9932), + }, + [STATE(6089)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8829), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6090)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8846), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6091)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(516), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6092)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8915), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6093)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8832), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6094)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8835), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6095)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8821), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6096)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8827), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6097)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8844), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6098)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7111), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6099)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7142), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6119), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9934), + }, + [STATE(6100)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9897), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6101)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7112), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6121), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9936), + }, + [STATE(6102)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7226), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6122), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9938), + }, + [STATE(6103)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7144), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9940), + }, + [STATE(6104)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7145), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6124), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9942), + }, + [STATE(6105)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7146), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6125), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9944), + }, + [STATE(6106)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7147), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6126), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9946), + }, + [STATE(6107)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7148), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6127), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9948), + }, + [STATE(6108)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10425), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6111), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9950), + }, + [STATE(6109)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(60), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6114), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9952), + }, + [STATE(6110)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9922), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6113), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9954), + }, + [STATE(6111)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10316), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6112)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6113)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9971), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6114)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6115)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10043), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6250), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9956), + }, + [STATE(6116)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10055), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6266), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9958), + }, + [STATE(6117)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(521), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6118)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3902), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6267), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9960), + }, + [STATE(6119)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7150), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6120)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7151), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6121)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7202), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6122)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7245), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6123)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7152), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6124)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7153), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6125)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7154), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6126)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7155), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6127)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7156), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6128)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10412), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6129)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10104), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6298), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9962), + }, + [STATE(6130)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10047), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6299), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9964), + }, + [STATE(6131)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9996), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6300), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9966), + }, + [STATE(6132)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10058), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6301), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9968), + }, + [STATE(6133)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(13), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6229), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9970), + }, + [STATE(6134)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3905), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6135)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10447), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6138), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9972), + }, + [STATE(6136)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(69), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5937), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9974), + }, + [STATE(6137)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9964), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6141), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9976), + }, + [STATE(6138)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10210), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6139)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9951), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6236), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9664), + }, + [STATE(6140)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(70), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6141)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9962), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6142)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10052), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6302), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9978), + }, + [STATE(6143)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10041), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6314), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9980), + }, + [STATE(6144)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10396), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6147), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9982), + }, + [STATE(6145)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(71), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5931), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9984), + }, + [STATE(6146)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9925), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6148), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9986), + }, + [STATE(6147)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10434), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6148)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9968), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6149)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9464), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6151), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(8393), + }, + [STATE(6150)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9902), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6151)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9444), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6152)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10335), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6155), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9988), + }, + [STATE(6153)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(72), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5969), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9990), + }, + [STATE(6154)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9916), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6156), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9992), + }, + [STATE(6155)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10199), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6156)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9944), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6157)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8307), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(5903), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9994), + }, + [STATE(6158)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10315), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6161), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9996), + }, + [STATE(6159)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(73), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6002), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9998), + }, + [STATE(6160)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9930), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6162), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10000), + }, + [STATE(6161)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10338), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6162)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9966), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6163)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(40), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6031), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10002), + }, + [STATE(6164)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8773), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6363), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10004), + }, + [STATE(6165)] = { + [sym_type] = STATE(9460), + [sym__type_atom] = STATE(9423), + [sym_parenthesized_type] = STATE(9423), + [sym_named_type] = STATE(9423), + [sym_intrinsic_type] = STATE(9423), + [sym_optional_type] = STATE(9423), + [sym_pointer_type] = STATE(9423), + [sym_array_type] = STATE(9423), + [sym_function_type] = STATE(9423), + [sym_builtin_type] = STATE(9423), + [sym_qualified_identifier] = STATE(9422), + [sym_identifier] = ACTIONS(10006), + [anon_sym_func] = ACTIONS(10008), + [anon_sym_c_func] = ACTIONS(10008), + [anon_sym_LPAREN] = ACTIONS(10010), + [anon_sym_RPAREN] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_struct_type_BANG] = ACTIONS(10013), + [anon_sym_QMARK] = ACTIONS(10015), + [anon_sym_AT] = ACTIONS(10018), + [anon_sym_STAR] = ACTIONS(10020), + [anon_sym_mut] = ACTIONS(10023), + [anon_sym_LBRACK] = ACTIONS(10025), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_RBRACK] = ACTIONS(1202), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_xor] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1207), + [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_catch] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(6166)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3380), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6227), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10028), + }, + [STATE(6167)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9586), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6237), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10030), + }, + [STATE(6168)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3381), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6249), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10032), + }, + [STATE(6169)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10244), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6172), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10034), + }, + [STATE(6170)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(74), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6019), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10036), + }, + [STATE(6171)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9943), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6173), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10038), + }, + [STATE(6172)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10258), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6173)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9935), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6174)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9591), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6238), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7498), + }, + [STATE(6175)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(14), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6176)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9486), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6240), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10040), + }, + [STATE(6177)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9915), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6242), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10042), + }, + [STATE(6178)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9628), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6247), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10044), + }, + [STATE(6179)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10332), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6182), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10046), + }, + [STATE(6180)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(75), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6029), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10048), + }, + [STATE(6181)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9956), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6183), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10050), + }, + [STATE(6182)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10337), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6183)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9967), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6184)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8774), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6393), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10052), + }, + [STATE(6185)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9634), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6248), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10054), + }, + [STATE(6186)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(503), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6408), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10056), + }, + [STATE(6187)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9637), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6252), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10058), + }, + [STATE(6188)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9643), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6254), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10060), + }, + [STATE(6189)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9647), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6255), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10062), + }, + [STATE(6190)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(76), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6030), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10064), + }, + [STATE(6191)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9954), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6192), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10066), + }, + [STATE(6192)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9970), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6193)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(77), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6033), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10068), + }, + [STATE(6194)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(78), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6034), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10070), + }, + [STATE(6195)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(79), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6035), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10072), + }, + [STATE(6196)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(80), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6036), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10074), + }, + [STATE(6197)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(81), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6038), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10076), + }, + [STATE(6198)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(82), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6039), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10078), + }, + [STATE(6199)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(83), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6040), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10080), + }, + [STATE(6200)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(84), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6112), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10082), + }, + [STATE(6201)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(86), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6042), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10084), + }, + [STATE(6202)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(87), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6043), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10086), + }, + [STATE(6203)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(88), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6044), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10088), + }, + [STATE(6204)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(89), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6045), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10090), + }, + [STATE(6205)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(90), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6046), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10092), + }, + [STATE(6206)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(91), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6047), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10094), + }, + [STATE(6207)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(92), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6048), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10096), + }, + [STATE(6208)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(93), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6049), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10098), + }, + [STATE(6209)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(94), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6051), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10100), + }, + [STATE(6210)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(95), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6052), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10102), + }, + [STATE(6211)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(96), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6140), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10104), + }, + [STATE(6212)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(97), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6054), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10106), + }, + [STATE(6213)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(98), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6056), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10108), + }, + [STATE(6214)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(99), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6057), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10110), + }, + [STATE(6215)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(100), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6058), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10112), + }, + [STATE(6216)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(101), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6059), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10114), + }, + [STATE(6217)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(102), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6060), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10116), + }, + [STATE(6218)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(103), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6061), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10118), + }, + [STATE(6219)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(104), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6062), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10120), + }, + [STATE(6220)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(105), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6063), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10122), + }, + [STATE(6221)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(106), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6064), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10124), + }, + [STATE(6222)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(107), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6065), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10126), + }, + [STATE(6223)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(108), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6066), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10128), + }, + [STATE(6224)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10360), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6225), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10130), + }, + [STATE(6225)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10200), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6226)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2858), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6347), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10132), + }, + [STATE(6227)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3397), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6228)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3899), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6134), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10134), + }, + [STATE(6229)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(31), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6230)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3557), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6269), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10136), + }, + [STATE(6231)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3558), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6283), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10138), + }, + [STATE(6232)] = { + [sym_type] = STATE(9433), + [sym__type_atom] = STATE(9423), + [sym_parenthesized_type] = STATE(9423), + [sym_named_type] = STATE(9423), + [sym_intrinsic_type] = STATE(9423), + [sym_optional_type] = STATE(9423), + [sym_pointer_type] = STATE(9423), + [sym_array_type] = STATE(9423), + [sym_function_type] = STATE(9423), + [sym_builtin_type] = STATE(9423), + [sym_qualified_identifier] = STATE(9422), + [sym_identifier] = ACTIONS(10006), + [anon_sym_func] = ACTIONS(10008), + [anon_sym_c_func] = ACTIONS(10008), + [anon_sym_LPAREN] = ACTIONS(10140), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_struct_type_BANG] = ACTIONS(10013), + [anon_sym_QMARK] = ACTIONS(10143), + [anon_sym_AT] = ACTIONS(10018), + [anon_sym_STAR] = ACTIONS(10146), + [anon_sym_mut] = ACTIONS(10149), + [anon_sym_LBRACK] = ACTIONS(10151), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(6233)] = { + [sym_type] = STATE(9485), + [sym__type_atom] = STATE(9423), + [sym_parenthesized_type] = STATE(9423), + [sym_named_type] = STATE(9423), + [sym_intrinsic_type] = STATE(9423), + [sym_optional_type] = STATE(9423), + [sym_pointer_type] = STATE(9423), + [sym_array_type] = STATE(9423), + [sym_function_type] = STATE(9423), + [sym_builtin_type] = STATE(9423), + [sym_qualified_identifier] = STATE(9422), + [sym_identifier] = ACTIONS(10006), + [anon_sym_func] = ACTIONS(10008), + [anon_sym_c_func] = ACTIONS(10008), + [anon_sym_LPAREN] = ACTIONS(10140), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_struct_type_BANG] = ACTIONS(10013), + [anon_sym_QMARK] = ACTIONS(10143), + [anon_sym_AT] = ACTIONS(10018), + [anon_sym_STAR] = ACTIONS(10146), + [anon_sym_mut] = ACTIONS(10154), + [anon_sym_LBRACK] = ACTIONS(10151), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(6234)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7526), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6235)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10342), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6236)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9959), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6237)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9715), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6238)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9716), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6239)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6241), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10156), + }, + [STATE(6240)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9441), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6241)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2649), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6242)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9921), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6243)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6244)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10056), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6313), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10158), + }, + [STATE(6245)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2859), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6361), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10160), + }, + [STATE(6246)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9975), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6243), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10162), + }, + [STATE(6247)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9721), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6248)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9723), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6249)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3401), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6250)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9992), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6251)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10129), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6278), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9670), + }, + [STATE(6252)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9724), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6253)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3429), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6254)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9726), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6255)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9727), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6256)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3433), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6257)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10203), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6258)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3404), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6259)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3369), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6260)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(514), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6261)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3370), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6262)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3371), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6263)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10329), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6279), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9674), + }, + [STATE(6264)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3372), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6265)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3378), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6253), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10164), + }, + [STATE(6266)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10001), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6267)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3906), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6268)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8761), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6418), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10166), + }, + [STATE(6269)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3567), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6270)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10165), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6312), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10168), + }, + [STATE(6271)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2921), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6272)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3384), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6256), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10170), + }, + [STATE(6273)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_import] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_c_struct] = ACTIONS(8601), + [anon_sym_opaque] = ACTIONS(8601), + [anon_sym_distinct] = ACTIONS(8601), + [anon_sym_alias] = ACTIONS(8601), + [anon_sym_union] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_enum] = ACTIONS(8601), + [anon_sym_RPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(8603), + [anon_sym_RBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_PIPE] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(8603), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_return] = ACTIONS(8601), + [anon_sym_yield] = ACTIONS(8601), + [anon_sym_break] = ACTIONS(8601), + [anon_sym_continue] = ACTIONS(8601), + [anon_sym_defer] = ACTIONS(8601), + [anon_sym_errdefer] = ACTIONS(8601), + [anon_sym_if] = ACTIONS(8601), + [anon_sym_else] = ACTIONS(8601), + [anon_sym_while] = ACTIONS(8601), + [anon_sym_expand] = ACTIONS(8601), + [anon_sym_for] = ACTIONS(8601), + [anon_sym_match] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8601), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(6274)] = { + [sym_type] = STATE(9478), + [sym__type_atom] = STATE(9423), + [sym_parenthesized_type] = STATE(9423), + [sym_named_type] = STATE(9423), + [sym_intrinsic_type] = STATE(9423), + [sym_optional_type] = STATE(9423), + [sym_pointer_type] = STATE(9423), + [sym_array_type] = STATE(9423), + [sym_function_type] = STATE(9423), + [sym_builtin_type] = STATE(9423), + [sym_qualified_identifier] = STATE(9422), + [sym_identifier] = ACTIONS(10006), + [anon_sym_func] = ACTIONS(10008), + [anon_sym_c_func] = ACTIONS(10008), + [anon_sym_LPAREN] = ACTIONS(10175), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(10013), + [anon_sym_QMARK] = ACTIONS(10178), + [anon_sym_AT] = ACTIONS(10018), + [anon_sym_STAR] = ACTIONS(10181), + [anon_sym_mut] = ACTIONS(10184), + [anon_sym_LBRACK] = ACTIONS(10186), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(6275)] = { + [sym_type] = STATE(9427), + [sym__type_atom] = STATE(9423), + [sym_parenthesized_type] = STATE(9423), + [sym_named_type] = STATE(9423), + [sym_intrinsic_type] = STATE(9423), + [sym_optional_type] = STATE(9423), + [sym_pointer_type] = STATE(9423), + [sym_array_type] = STATE(9423), + [sym_function_type] = STATE(9423), + [sym_builtin_type] = STATE(9423), + [sym_qualified_identifier] = STATE(9422), + [sym_identifier] = ACTIONS(10006), + [anon_sym_func] = ACTIONS(10008), + [anon_sym_c_func] = ACTIONS(10008), + [anon_sym_LPAREN] = ACTIONS(10175), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(10013), + [anon_sym_QMARK] = ACTIONS(10178), + [anon_sym_AT] = ACTIONS(10018), + [anon_sym_STAR] = ACTIONS(10181), + [anon_sym_mut] = ACTIONS(10189), + [anon_sym_LBRACK] = ACTIONS(10186), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(6276)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3385), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6258), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10191), + }, + [STATE(6277)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2992), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6278)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10165), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6279)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10442), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6280)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9911), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6319), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10193), + }, + [STATE(6281)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10234), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6235), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10195), + }, + [STATE(6282)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8901), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6283)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3571), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6284)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8952), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6303), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10197), + }, + [STATE(6285)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8953), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6304), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10199), + }, + [STATE(6286)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8907), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10201), + }, + [STATE(6287)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8954), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6306), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10203), + }, + [STATE(6288)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8955), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6307), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10205), + }, + [STATE(6289)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8956), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6308), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10207), + }, + [STATE(6290)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8957), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6309), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10209), + }, + [STATE(6291)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8958), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6310), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10211), + }, + [STATE(6292)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8959), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6311), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10213), + }, + [STATE(6293)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10236), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6294)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(518), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6295)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2972), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6271), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10215), + }, + [STATE(6296)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5057), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6416), + [sym_identifier] = ACTIONS(10217), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(10219), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10221), + }, + [STATE(6297)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2974), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6277), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10223), + }, + [STATE(6298)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10091), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6299)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10039), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6300)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10045), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6301)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9985), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6302)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9986), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6303)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8964), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6304)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8965), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6305)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8916), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6306)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8967), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6307)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8898), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6308)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8969), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6309)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8970), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6310)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8971), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6311)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(8972), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6312)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10158), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6313)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9982), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6314)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10009), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6315)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8763), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6433), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10225), + }, + [STATE(6316)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(496), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6320), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9678), + }, + [STATE(6317)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8775), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6434), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10227), + }, + [STATE(6318)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9889), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6321), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10229), + }, + [STATE(6319)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9867), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6320)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(498), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6321)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9869), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6322)] = { + [sym_type] = STATE(9475), + [sym__type_atom] = STATE(9423), + [sym_parenthesized_type] = STATE(9423), + [sym_named_type] = STATE(9423), + [sym_intrinsic_type] = STATE(9423), + [sym_optional_type] = STATE(9423), + [sym_pointer_type] = STATE(9423), + [sym_array_type] = STATE(9423), + [sym_function_type] = STATE(9423), + [sym_builtin_type] = STATE(9423), + [sym_qualified_identifier] = STATE(9422), + [sym_identifier] = ACTIONS(10006), + [anon_sym_func] = ACTIONS(10008), + [anon_sym_c_func] = ACTIONS(10008), + [anon_sym_LPAREN] = ACTIONS(10231), + [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_PIPE] = ACTIONS(1192), + [anon_sym_struct_type_BANG] = ACTIONS(10013), + [anon_sym_QMARK] = ACTIONS(10234), + [anon_sym_AT] = ACTIONS(10018), + [anon_sym_STAR] = ACTIONS(10237), + [anon_sym_mut] = ACTIONS(10240), + [anon_sym_LBRACK] = ACTIONS(10242), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_RBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(6323)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8742), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6435), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10245), + }, + [STATE(6324)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8746), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6438), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10247), + }, + [STATE(6325)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3906), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6326)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(501), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6260), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10249), + }, + [STATE(6327)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(502), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6425), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10251), + }, + [STATE(6328)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8747), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6439), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10253), + }, + [STATE(6329)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(503), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5916), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10255), + }, + [STATE(6330)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3409), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5966), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10257), + }, + [STATE(6331)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(504), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(5968), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10259), + }, + [STATE(6332)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(505), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6294), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10261), + }, + [STATE(6333)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(506), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6013), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10263), + }, + [STATE(6334)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(507), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6028), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10265), + }, + [STATE(6335)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(508), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6117), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10267), + }, + [STATE(6336)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5038), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6337), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10269), + }, + [STATE(6337)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5041), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6338)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3902), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6325), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10271), + }, + [STATE(6339)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9939), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6340)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9918), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6339), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10273), + }, + [STATE(6341)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9885), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6100), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10275), + }, + [STATE(6342)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3386), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6259), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10277), + }, + [STATE(6343)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9872), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6014), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10279), + }, + [STATE(6344)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9898), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6150), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10281), + }, + [STATE(6345)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9865), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5952), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10283), + }, + [STATE(6346)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9464), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6348), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10285), + }, + [STATE(6347)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2860), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6348)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9444), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6349)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10243), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6128), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10287), + }, + [STATE(6350)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3387), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6261), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10289), + }, + [STATE(6351)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10436), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6364), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10291), + }, + [STATE(6352)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10453), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6365), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10293), + }, + [STATE(6353)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9486), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6368), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10295), + }, + [STATE(6354)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10633), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6369), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10297), + }, + [STATE(6355)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10220), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6372), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10299), + }, + [STATE(6356)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10252), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6373), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10301), + }, + [STATE(6357)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10255), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6374), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10303), + }, + [STATE(6358)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10259), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6375), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10305), + }, + [STATE(6359)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10264), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6376), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10307), + }, + [STATE(6360)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9868), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(5992), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10309), + }, + [STATE(6361)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(2861), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6362)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2919), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6363)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8792), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6364)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10369), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6365)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10371), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6366)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8817), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6367), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10311), + }, + [STATE(6367)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8818), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6368)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9441), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6369)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10622), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6370)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10362), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6371), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10313), + }, + [STATE(6371)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10419), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6372)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10394), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6373)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10395), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6374)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10399), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6375)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10400), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6376)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10402), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6377)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(5029), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6378), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10315), + }, + [STATE(6378)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(5031), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6379)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7265), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6234), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10317), + }, + [STATE(6380)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(6548), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6381), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10319), + }, + [STATE(6381)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(6544), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6382)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8889), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6383), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10321), + }, + [STATE(6383)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8890), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6384)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10270), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6385), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10323), + }, + [STATE(6385)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10274), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6386)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3899), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6392), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10325), + }, + [STATE(6387)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6576), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5921), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10327), + }, + [STATE(6388)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(6), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6394), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(9658), + }, + [STATE(6389)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6590), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5922), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10329), + }, + [STATE(6390)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3352), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6391), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10331), + }, + [STATE(6391)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(3353), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6392)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3905), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6393)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8743), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6394)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(7), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6395)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5055), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6415), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10333), + }, + [STATE(6396)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5057), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6416), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10221), + }, + [STATE(6397)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3902), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6417), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10335), + }, + [STATE(6398)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5094), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6420), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10337), + }, + [STATE(6399)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8891), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6400), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10339), + }, + [STATE(6400)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8892), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(401), + [anon_sym_try] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6401)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10317), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6402), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10341), + }, + [STATE(6402)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10323), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6403)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5058), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6424), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10343), + }, + [STATE(6404)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5059), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6426), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10345), + }, + [STATE(6405)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5060), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6428), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10347), + }, + [STATE(6406)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5062), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6429), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10349), + }, + [STATE(6407)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5063), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6432), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10351), + }, + [STATE(6408)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(516), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6409)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(2893), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(5926), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10353), + }, + [STATE(6410)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3419), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6411)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6441), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10355), + }, + [STATE(6412)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6442), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10357), + }, + [STATE(6413)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10334), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6414), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10359), + }, + [STATE(6414)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10336), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6415)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5068), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6416)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5069), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6417)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(3906), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6418)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8789), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6419)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3388), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6262), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10361), + }, + [STATE(6420)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5090), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6421)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3389), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6264), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10363), + }, + [STATE(6422)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10341), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6423), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10365), + }, + [STATE(6423)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10344), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6424)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5070), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6425)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(515), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6426)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5071), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6427)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10283), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(5995), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10367), + }, + [STATE(6428)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5072), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6429)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5073), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6430)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10355), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6431), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10369), + }, + [STATE(6431)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10361), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6432)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(5074), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6433)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8767), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6434)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8780), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6435)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8740), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6436)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10387), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6437), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10371), + }, + [STATE(6437)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10390), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6438)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8752), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6439)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8755), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6440)] = { + [sym_struct_type] = STATE(3858), + [sym_array_type] = STATE(3858), + [sym_builtin_type] = STATE(3858), + [sym_expression] = STATE(3407), + [sym_binary_expression] = STATE(3858), + [sym_catch_expression] = STATE(3858), + [sym_unary_expression] = STATE(3858), + [sym_field_expression] = STATE(3858), + [sym_intrinsic_call_expression] = STATE(3858), + [sym_call_expression] = STATE(3858), + [sym_index_expression] = STATE(3858), + [sym_slice_expression] = STATE(3858), + [sym_postfix_expression] = STATE(3858), + [sym_struct_literal] = STATE(3858), + [sym_anonymous_record_literal] = STATE(3858), + [sym_tuple_literal] = STATE(3858), + [sym_enum_literal] = STATE(3858), + [sym_array_literal] = STATE(3858), + [sym_parenthesized_expression] = STATE(3858), + [sym_comptime_block] = STATE(3858), + [sym_function_literal] = STATE(3858), + [sym_qualified_identifier] = STATE(12790), + [sym_boolean] = STATE(3858), + [sym_null] = STATE(3858), + [sym_unreachable] = STATE(3858), + [sym_undefined] = STATE(3858), + [sym_string] = STATE(3858), + [aux_sym_import_declaration_repeat1] = STATE(6410), + [sym_identifier] = ACTIONS(7186), + [anon_sym_func] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_struct] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(9856), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_void] = ACTIONS(687), + [anon_sym_noreturn] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_anyopaque] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_int] = ACTIONS(687), + [anon_sym_uint] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_range] = ACTIONS(687), + [anon_sym_i8] = ACTIONS(687), + [anon_sym_i16] = ACTIONS(687), + [anon_sym_i32] = ACTIONS(687), + [anon_sym_i64] = ACTIONS(687), + [anon_sym_u8] = ACTIONS(687), + [anon_sym_u16] = ACTIONS(687), + [anon_sym_u32] = ACTIONS(687), + [anon_sym_u64] = ACTIONS(687), + [anon_sym_isize] = ACTIONS(687), + [anon_sym_usize] = ACTIONS(687), + [anon_sym_f32] = ACTIONS(687), + [anon_sym_f64] = ACTIONS(687), + [anon_sym_c_char] = ACTIONS(687), + [anon_sym_c_schar] = ACTIONS(687), + [anon_sym_c_uchar] = ACTIONS(687), + [anon_sym_c_short] = ACTIONS(687), + [anon_sym_c_ushort] = ACTIONS(687), + [anon_sym_c_int] = ACTIONS(687), + [anon_sym_c_uint] = ACTIONS(687), + [anon_sym_c_long] = ACTIONS(687), + [anon_sym_c_ulong] = ACTIONS(687), + [anon_sym_c_longlong] = ACTIONS(687), + [anon_sym_c_ulonglong] = ACTIONS(687), + [anon_sym_c_float] = ACTIONS(687), + [anon_sym_c_double] = ACTIONS(687), + [anon_sym_c_longdouble] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_try] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_unreachable] = ACTIONS(707), + [anon_sym_undefined] = ACTIONS(709), + [sym_sink] = ACTIONS(711), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_multiline_string] = ACTIONS(713), + [sym_character] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10373), + }, + [STATE(6441)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(1420), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6442)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6876), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_try] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6443)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10403), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6444), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10375), + }, + [STATE(6444)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10406), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6445)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10385), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(5996), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10377), + }, + [STATE(6446)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9906), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6447), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10379), + }, + [STATE(6447)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(9909), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6880), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(6374), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6448)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10420), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6449), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10381), + }, + [STATE(6449)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10421), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6450)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10421), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6451), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10383), + }, + [STATE(6451)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10422), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6452)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10458), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6453), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10385), + }, + [STATE(6453)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10217), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6454)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10445), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6455), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10387), + }, + [STATE(6455)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10451), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6456)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10204), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6457), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10389), + }, + [STATE(6457)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10211), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6942), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6458)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8784), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6459), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10391), + }, + [STATE(6459)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8772), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6460)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7168), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6462), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10393), + }, + [STATE(6461)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10454), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(5999), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10395), + }, + [STATE(6462)] = { + [sym_struct_type] = STATE(7275), + [sym_array_type] = STATE(7275), + [sym_builtin_type] = STATE(7275), + [sym_expression] = STATE(7169), + [sym_binary_expression] = STATE(7275), + [sym_catch_expression] = STATE(7275), + [sym_unary_expression] = STATE(7275), + [sym_field_expression] = STATE(7275), + [sym_intrinsic_call_expression] = STATE(7275), + [sym_call_expression] = STATE(7275), + [sym_index_expression] = STATE(7275), + [sym_slice_expression] = STATE(7275), + [sym_postfix_expression] = STATE(7275), + [sym_struct_literal] = STATE(7275), + [sym_anonymous_record_literal] = STATE(7275), + [sym_tuple_literal] = STATE(7275), + [sym_enum_literal] = STATE(7275), + [sym_array_literal] = STATE(7275), + [sym_parenthesized_expression] = STATE(7275), + [sym_comptime_block] = STATE(7275), + [sym_function_literal] = STATE(7275), + [sym_qualified_identifier] = STATE(13350), + [sym_boolean] = STATE(7275), + [sym_null] = STATE(7275), + [sym_unreachable] = STATE(7275), + [sym_undefined] = STATE(7275), + [sym_string] = STATE(7275), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6966), + [anon_sym_func] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(9772), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_anyopaque] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_int] = ACTIONS(1396), + [anon_sym_uint] = ACTIONS(1396), + [anon_sym_float] = ACTIONS(1396), + [anon_sym_range] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_c_char] = ACTIONS(1396), + [anon_sym_c_schar] = ACTIONS(1396), + [anon_sym_c_uchar] = ACTIONS(1396), + [anon_sym_c_short] = ACTIONS(1396), + [anon_sym_c_ushort] = ACTIONS(1396), + [anon_sym_c_int] = ACTIONS(1396), + [anon_sym_c_uint] = ACTIONS(1396), + [anon_sym_c_long] = ACTIONS(1396), + [anon_sym_c_ulong] = ACTIONS(1396), + [anon_sym_c_longlong] = ACTIONS(1396), + [anon_sym_c_ulonglong] = ACTIONS(1396), + [anon_sym_c_float] = ACTIONS(1396), + [anon_sym_c_double] = ACTIONS(1396), + [anon_sym_c_longdouble] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_unreachable] = ACTIONS(1404), + [anon_sym_undefined] = ACTIONS(1406), + [sym_sink] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_multiline_string] = ACTIONS(1410), + [sym_character] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6463)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(9055), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6465), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10397), + }, + [STATE(6464)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10814), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6000), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10399), + }, + [STATE(6465)] = { + [sym_struct_type] = STATE(9069), + [sym_array_type] = STATE(9069), + [sym_builtin_type] = STATE(9069), + [sym_expression] = STATE(9056), + [sym_binary_expression] = STATE(9069), + [sym_catch_expression] = STATE(9069), + [sym_unary_expression] = STATE(9069), + [sym_field_expression] = STATE(9069), + [sym_intrinsic_call_expression] = STATE(9069), + [sym_call_expression] = STATE(9069), + [sym_index_expression] = STATE(9069), + [sym_slice_expression] = STATE(9069), + [sym_postfix_expression] = STATE(9069), + [sym_struct_literal] = STATE(9069), + [sym_anonymous_record_literal] = STATE(9069), + [sym_tuple_literal] = STATE(9069), + [sym_enum_literal] = STATE(9069), + [sym_array_literal] = STATE(9069), + [sym_parenthesized_expression] = STATE(9069), + [sym_comptime_block] = STATE(9069), + [sym_function_literal] = STATE(9069), + [sym_qualified_identifier] = STATE(13753), + [sym_boolean] = STATE(9069), + [sym_null] = STATE(9069), + [sym_unreachable] = STATE(9069), + [sym_undefined] = STATE(9069), + [sym_string] = STATE(9069), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6988), + [anon_sym_func] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(9862), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_void] = ACTIONS(425), + [anon_sym_noreturn] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_anyopaque] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_int] = ACTIONS(425), + [anon_sym_uint] = ACTIONS(425), + [anon_sym_float] = ACTIONS(425), + [anon_sym_range] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_c_char] = ACTIONS(425), + [anon_sym_c_schar] = ACTIONS(425), + [anon_sym_c_uchar] = ACTIONS(425), + [anon_sym_c_short] = ACTIONS(425), + [anon_sym_c_ushort] = ACTIONS(425), + [anon_sym_c_int] = ACTIONS(425), + [anon_sym_c_uint] = ACTIONS(425), + [anon_sym_c_long] = ACTIONS(425), + [anon_sym_c_ulong] = ACTIONS(425), + [anon_sym_c_longlong] = ACTIONS(425), + [anon_sym_c_ulonglong] = ACTIONS(425), + [anon_sym_c_float] = ACTIONS(425), + [anon_sym_c_double] = ACTIONS(425), + [anon_sym_c_longdouble] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_try] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_null] = ACTIONS(457), + [anon_sym_unreachable] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(461), + [sym_sink] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(469), + [sym_multiline_string] = ACTIONS(467), + [sym_character] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6466)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6595), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6468), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10401), + }, + [STATE(6467)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(42), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6032), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10403), + }, + [STATE(6468)] = { + [sym_struct_type] = STATE(3026), + [sym_array_type] = STATE(3026), + [sym_builtin_type] = STATE(3026), + [sym_expression] = STATE(6596), + [sym_binary_expression] = STATE(3026), + [sym_catch_expression] = STATE(3026), + [sym_unary_expression] = STATE(3026), + [sym_field_expression] = STATE(3026), + [sym_intrinsic_call_expression] = STATE(3026), + [sym_call_expression] = STATE(3026), + [sym_index_expression] = STATE(3026), + [sym_slice_expression] = STATE(3026), + [sym_postfix_expression] = STATE(3026), + [sym_struct_literal] = STATE(3026), + [sym_anonymous_record_literal] = STATE(3026), + [sym_tuple_literal] = STATE(3026), + [sym_enum_literal] = STATE(3026), + [sym_array_literal] = STATE(3026), + [sym_parenthesized_expression] = STATE(3026), + [sym_comptime_block] = STATE(3026), + [sym_function_literal] = STATE(3026), + [sym_qualified_identifier] = STATE(12535), + [sym_boolean] = STATE(3026), + [sym_null] = STATE(3026), + [sym_unreachable] = STATE(3026), + [sym_undefined] = STATE(3026), + [sym_string] = STATE(3026), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(7032), + [anon_sym_func] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(9776), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_noreturn] = ACTIONS(83), + [anon_sym_type] = ACTIONS(83), + [anon_sym_anyopaque] = ACTIONS(83), + [anon_sym_bool] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_uint] = ACTIONS(83), + [anon_sym_float] = ACTIONS(83), + [anon_sym_range] = ACTIONS(83), + [anon_sym_i8] = ACTIONS(83), + [anon_sym_i16] = ACTIONS(83), + [anon_sym_i32] = ACTIONS(83), + [anon_sym_i64] = ACTIONS(83), + [anon_sym_u8] = ACTIONS(83), + [anon_sym_u16] = ACTIONS(83), + [anon_sym_u32] = ACTIONS(83), + [anon_sym_u64] = ACTIONS(83), + [anon_sym_isize] = ACTIONS(83), + [anon_sym_usize] = ACTIONS(83), + [anon_sym_f32] = ACTIONS(83), + [anon_sym_f64] = ACTIONS(83), + [anon_sym_c_char] = ACTIONS(83), + [anon_sym_c_schar] = ACTIONS(83), + [anon_sym_c_uchar] = ACTIONS(83), + [anon_sym_c_short] = ACTIONS(83), + [anon_sym_c_ushort] = ACTIONS(83), + [anon_sym_c_int] = ACTIONS(83), + [anon_sym_c_uint] = ACTIONS(83), + [anon_sym_c_long] = ACTIONS(83), + [anon_sym_c_ulong] = ACTIONS(83), + [anon_sym_c_longlong] = ACTIONS(83), + [anon_sym_c_ulonglong] = ACTIONS(83), + [anon_sym_c_float] = ACTIONS(83), + [anon_sym_c_double] = ACTIONS(83), + [anon_sym_c_longdouble] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_try] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_null] = ACTIONS(101), + [anon_sym_unreachable] = ACTIONS(103), + [anon_sym_undefined] = ACTIONS(105), + [sym_sink] = ACTIONS(107), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_multiline_string] = ACTIONS(109), + [sym_character] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6469)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10248), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6001), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10405), + }, + [STATE(6470)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8797), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6472), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10407), + }, + [STATE(6471)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10249), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6006), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10409), + }, + [STATE(6472)] = { + [sym_struct_type] = STATE(2523), + [sym_array_type] = STATE(2523), + [sym_builtin_type] = STATE(2523), + [sym_expression] = STATE(8799), + [sym_binary_expression] = STATE(2523), + [sym_catch_expression] = STATE(2523), + [sym_unary_expression] = STATE(2523), + [sym_field_expression] = STATE(2523), + [sym_intrinsic_call_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_postfix_expression] = STATE(2523), + [sym_struct_literal] = STATE(2523), + [sym_anonymous_record_literal] = STATE(2523), + [sym_tuple_literal] = STATE(2523), + [sym_enum_literal] = STATE(2523), + [sym_array_literal] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_comptime_block] = STATE(2523), + [sym_function_literal] = STATE(2523), + [sym_qualified_identifier] = STATE(12689), + [sym_boolean] = STATE(2523), + [sym_null] = STATE(2523), + [sym_unreachable] = STATE(2523), + [sym_undefined] = STATE(2523), + [sym_string] = STATE(2523), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6844), + [anon_sym_func] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym_type] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_uint] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), + [anon_sym_null] = ACTIONS(55), + [anon_sym_unreachable] = ACTIONS(57), + [anon_sym_undefined] = ACTIONS(59), + [sym_sink] = ACTIONS(61), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_multiline_string] = ACTIONS(63), + [sym_character] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6473)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9215), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6475), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10411), + }, + [STATE(6474)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(15), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6475)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9217), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6918), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_try] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6476)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10311), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6009), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10413), + }, + [STATE(6477)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10262), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6478), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10415), + }, + [STATE(6478)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10266), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6479)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10835), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6480), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10417), + }, + [STATE(6480)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10833), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6481)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8887), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6482), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10419), + }, + [STATE(6482)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(8888), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6483)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10034), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6484), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10421), + }, + [STATE(6484)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10054), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6485)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9879), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6486), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10423), + }, + [STATE(6486)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(9881), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6487)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9030), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6488), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10425), + }, + [STATE(6488)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9031), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6489)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10140), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6490), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10427), + }, + [STATE(6490)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(10141), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6491)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10147), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6492), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10429), + }, + [STATE(6492)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10148), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6493)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9416), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6494), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10431), + }, + [STATE(6494)] = { + [sym_struct_type] = STATE(8661), + [sym_array_type] = STATE(8661), + [sym_builtin_type] = STATE(8661), + [sym_expression] = STATE(9420), + [sym_binary_expression] = STATE(8661), + [sym_catch_expression] = STATE(8661), + [sym_unary_expression] = STATE(8661), + [sym_field_expression] = STATE(8661), + [sym_intrinsic_call_expression] = STATE(8661), + [sym_call_expression] = STATE(8661), + [sym_index_expression] = STATE(8661), + [sym_slice_expression] = STATE(8661), + [sym_postfix_expression] = STATE(8661), + [sym_struct_literal] = STATE(8661), + [sym_anonymous_record_literal] = STATE(8661), + [sym_tuple_literal] = STATE(8661), + [sym_enum_literal] = STATE(8661), + [sym_array_literal] = STATE(8661), + [sym_parenthesized_expression] = STATE(8661), + [sym_comptime_block] = STATE(8661), + [sym_function_literal] = STATE(8661), + [sym_qualified_identifier] = STATE(12915), + [sym_boolean] = STATE(8661), + [sym_null] = STATE(8661), + [sym_unreachable] = STATE(8661), + [sym_undefined] = STATE(8661), + [sym_string] = STATE(8661), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6954), + [anon_sym_func] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(141), + [anon_sym_noreturn] = ACTIONS(141), + [anon_sym_type] = ACTIONS(141), + [anon_sym_anyopaque] = ACTIONS(141), + [anon_sym_bool] = ACTIONS(141), + [anon_sym_int] = ACTIONS(141), + [anon_sym_uint] = ACTIONS(141), + [anon_sym_float] = ACTIONS(141), + [anon_sym_range] = ACTIONS(141), + [anon_sym_i8] = ACTIONS(141), + [anon_sym_i16] = ACTIONS(141), + [anon_sym_i32] = ACTIONS(141), + [anon_sym_i64] = ACTIONS(141), + [anon_sym_u8] = ACTIONS(141), + [anon_sym_u16] = ACTIONS(141), + [anon_sym_u32] = ACTIONS(141), + [anon_sym_u64] = ACTIONS(141), + [anon_sym_isize] = ACTIONS(141), + [anon_sym_usize] = ACTIONS(141), + [anon_sym_f32] = ACTIONS(141), + [anon_sym_f64] = ACTIONS(141), + [anon_sym_c_char] = ACTIONS(141), + [anon_sym_c_schar] = ACTIONS(141), + [anon_sym_c_uchar] = ACTIONS(141), + [anon_sym_c_short] = ACTIONS(141), + [anon_sym_c_ushort] = ACTIONS(141), + [anon_sym_c_int] = ACTIONS(141), + [anon_sym_c_uint] = ACTIONS(141), + [anon_sym_c_long] = ACTIONS(141), + [anon_sym_c_ulong] = ACTIONS(141), + [anon_sym_c_longlong] = ACTIONS(141), + [anon_sym_c_ulonglong] = ACTIONS(141), + [anon_sym_c_float] = ACTIONS(141), + [anon_sym_c_double] = ACTIONS(141), + [anon_sym_c_longdouble] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_try] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_null] = ACTIONS(197), + [anon_sym_unreachable] = ACTIONS(199), + [anon_sym_undefined] = ACTIONS(201), + [sym_sink] = ACTIONS(205), + [sym_integer] = ACTIONS(205), + [sym_float] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_multiline_string] = ACTIONS(207), + [sym_character] = ACTIONS(207), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6495)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10156), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6497), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10433), + }, + [STATE(6496)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10157), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6498), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10435), + }, + [STATE(6497)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10157), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6498)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10159), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6499)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10169), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6501), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10437), + }, + [STATE(6500)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10170), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6502), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10439), + }, + [STATE(6501)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10170), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6502)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10171), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6503)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10175), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6505), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10441), + }, + [STATE(6504)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10176), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6506), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10443), + }, + [STATE(6505)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10176), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6506)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10177), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6507)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10178), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6509), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10445), + }, + [STATE(6508)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10179), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6510), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10447), + }, + [STATE(6509)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10179), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6510)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10180), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6511)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10181), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6513), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10449), + }, + [STATE(6512)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10182), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6514), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10451), + }, + [STATE(6513)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10182), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6514)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10183), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6515)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10184), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6517), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10453), + }, + [STATE(6516)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10185), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6518), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10455), + }, + [STATE(6517)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10185), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6518)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10186), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6519)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10187), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6521), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10457), + }, + [STATE(6520)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10188), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6522), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10459), + }, + [STATE(6521)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10188), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6522)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10189), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6523)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10190), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6525), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10461), + }, + [STATE(6524)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10191), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6526), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10463), + }, + [STATE(6525)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10191), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6526)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10192), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6527)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10193), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6529), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10465), + }, + [STATE(6528)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10194), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(5946), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10467), + }, + [STATE(6529)] = { + [sym_struct_type] = STATE(10824), + [sym_array_type] = STATE(10824), + [sym_builtin_type] = STATE(10824), + [sym_expression] = STATE(10194), + [sym_binary_expression] = STATE(10824), + [sym_catch_expression] = STATE(10824), + [sym_unary_expression] = STATE(10824), + [sym_field_expression] = STATE(10824), + [sym_intrinsic_call_expression] = STATE(10824), + [sym_call_expression] = STATE(10824), + [sym_index_expression] = STATE(10824), + [sym_slice_expression] = STATE(10824), + [sym_postfix_expression] = STATE(10824), + [sym_struct_literal] = STATE(10824), + [sym_anonymous_record_literal] = STATE(10824), + [sym_tuple_literal] = STATE(10824), + [sym_enum_literal] = STATE(10824), + [sym_array_literal] = STATE(10824), + [sym_parenthesized_expression] = STATE(10824), + [sym_comptime_block] = STATE(10824), + [sym_function_literal] = STATE(10824), + [sym_qualified_identifier] = STATE(12413), + [sym_boolean] = STATE(10824), + [sym_null] = STATE(10824), + [sym_unreachable] = STATE(10824), + [sym_undefined] = STATE(10824), + [sym_string] = STATE(10824), + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(6922), + [anon_sym_func] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_unreachable] = ACTIONS(1532), + [anon_sym_undefined] = ACTIONS(1534), + [sym_sink] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_multiline_string] = ACTIONS(1538), + [sym_character] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(6530)] = { + [sym_struct_type] = STATE(3935), + [sym_array_type] = STATE(3935), + [sym_builtin_type] = STATE(3935), + [sym_expression] = STATE(85), + [sym_binary_expression] = STATE(3935), + [sym_catch_expression] = STATE(3935), + [sym_unary_expression] = STATE(3935), + [sym_field_expression] = STATE(3935), + [sym_intrinsic_call_expression] = STATE(3935), + [sym_call_expression] = STATE(3935), + [sym_index_expression] = STATE(3935), + [sym_slice_expression] = STATE(3935), + [sym_postfix_expression] = STATE(3935), + [sym_struct_literal] = STATE(3935), + [sym_anonymous_record_literal] = STATE(3935), + [sym_tuple_literal] = STATE(3935), + [sym_enum_literal] = STATE(3935), + [sym_array_literal] = STATE(3935), + [sym_parenthesized_expression] = STATE(3935), + [sym_comptime_block] = STATE(3935), + [sym_function_literal] = STATE(3935), + [sym_qualified_identifier] = STATE(13710), + [sym_boolean] = STATE(3935), + [sym_null] = STATE(3935), + [sym_unreachable] = STATE(3935), + [sym_undefined] = STATE(3935), + [sym_string] = STATE(3935), + [aux_sym_import_declaration_repeat1] = STATE(6041), + [sym_identifier] = ACTIONS(6862), + [anon_sym_func] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1344), + [anon_sym_DOT] = ACTIONS(6750), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1364), + [anon_sym_unreachable] = ACTIONS(1366), + [anon_sym_undefined] = ACTIONS(1368), + [sym_sink] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [sym_float] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_multiline_string] = ACTIONS(1372), + [sym_character] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10469), + }, + [STATE(6531)] = { + [sym_type] = STATE(3860), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(6509), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_test] = ACTIONS(1164), + [anon_sym_hide] = ACTIONS(1164), + [anon_sym_func] = ACTIONS(6486), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_LPAREN] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6518), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_mut] = ACTIONS(6580), + [anon_sym_LBRACK] = ACTIONS(6526), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(6532)] = { + [sym_type] = STATE(3865), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(6532), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(6486), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_LPAREN] = ACTIONS(6538), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6541), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6544), + [anon_sym_mut] = ACTIONS(6547), + [anon_sym_LBRACK] = ACTIONS(6549), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(6533)] = { + [sym_type] = STATE(3886), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(6480), + [anon_sym_import] = ACTIONS(1207), + [anon_sym_test] = ACTIONS(1207), + [anon_sym_hide] = ACTIONS(1207), + [anon_sym_func] = ACTIONS(6486), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_LPAREN] = ACTIONS(6488), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6493), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6498), + [anon_sym_mut] = ACTIONS(6501), + [anon_sym_LBRACK] = ACTIONS(6503), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_xor] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1207), + [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_catch] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(6534)] = { + [sym_type] = STATE(3862), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(6557), + [anon_sym_import] = ACTIONS(1196), + [anon_sym_test] = ACTIONS(1196), + [anon_sym_hide] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(6486), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_LPAREN] = ACTIONS(6563), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6569), + [anon_sym_mut] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6574), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(6535)] = { + [sym_type] = STATE(3890), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(6532), + [anon_sym_import] = ACTIONS(1256), + [anon_sym_test] = ACTIONS(1256), + [anon_sym_hide] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(6486), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_LPAREN] = ACTIONS(6538), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6541), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6544), + [anon_sym_mut] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6549), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(6536)] = { + [sym_type] = STATE(3863), + [sym__type_atom] = STATE(3901), + [sym_parenthesized_type] = STATE(3901), + [sym_named_type] = STATE(3901), + [sym_intrinsic_type] = STATE(3901), + [sym_optional_type] = STATE(3901), + [sym_pointer_type] = STATE(3901), + [sym_array_type] = STATE(3901), + [sym_function_type] = STATE(3901), + [sym_builtin_type] = STATE(3901), + [sym_qualified_identifier] = STATE(3903), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(6509), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_test] = ACTIONS(1164), + [anon_sym_hide] = ACTIONS(1164), + [anon_sym_func] = ACTIONS(6486), + [anon_sym_c_func] = ACTIONS(6486), + [anon_sym_LPAREN] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_struct_type_BANG] = ACTIONS(6491), + [anon_sym_QMARK] = ACTIONS(6518), + [anon_sym_AT] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_mut] = ACTIONS(6524), + [anon_sym_LBRACK] = ACTIONS(6526), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_anyopaque] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), + [anon_sym_float] = ACTIONS(1358), + [anon_sym_range] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_c_char] = ACTIONS(1358), + [anon_sym_c_schar] = ACTIONS(1358), + [anon_sym_c_uchar] = ACTIONS(1358), + [anon_sym_c_short] = ACTIONS(1358), + [anon_sym_c_ushort] = ACTIONS(1358), + [anon_sym_c_int] = ACTIONS(1358), + [anon_sym_c_uint] = ACTIONS(1358), + [anon_sym_c_long] = ACTIONS(1358), + [anon_sym_c_ulong] = ACTIONS(1358), + [anon_sym_c_longlong] = ACTIONS(1358), + [anon_sym_c_ulonglong] = ACTIONS(1358), + [anon_sym_c_float] = ACTIONS(1358), + [anon_sym_c_double] = ACTIONS(1358), + [anon_sym_c_longdouble] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(6537)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10836), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(6538)] = { + [sym_struct_type] = STATE(9538), + [sym_array_type] = STATE(9538), + [sym_builtin_type] = STATE(9538), + [sym_expression] = STATE(10837), + [sym_binary_expression] = STATE(9538), + [sym_catch_expression] = STATE(9538), + [sym_unary_expression] = STATE(9538), + [sym_field_expression] = STATE(9538), + [sym_intrinsic_call_expression] = STATE(9538), + [sym_call_expression] = STATE(9538), + [sym_index_expression] = STATE(9538), + [sym_slice_expression] = STATE(9538), + [sym_postfix_expression] = STATE(9538), + [sym_struct_literal] = STATE(9538), + [sym_anonymous_record_literal] = STATE(9538), + [sym_tuple_literal] = STATE(9538), + [sym_enum_literal] = STATE(9538), + [sym_array_literal] = STATE(9538), + [sym_parenthesized_expression] = STATE(9538), + [sym_comptime_block] = STATE(9538), + [sym_function_literal] = STATE(9538), + [sym_qualified_identifier] = STATE(12109), + [sym_boolean] = STATE(9538), + [sym_null] = STATE(9538), + [sym_unreachable] = STATE(9538), + [sym_undefined] = STATE(9538), + [sym_string] = STATE(9538), + [sym_identifier] = ACTIONS(6884), + [anon_sym_func] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_anyopaque] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_int] = ACTIONS(1432), + [anon_sym_uint] = ACTIONS(1432), + [anon_sym_float] = ACTIONS(1432), + [anon_sym_range] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_c_char] = ACTIONS(1432), + [anon_sym_c_schar] = ACTIONS(1432), + [anon_sym_c_uchar] = ACTIONS(1432), + [anon_sym_c_short] = ACTIONS(1432), + [anon_sym_c_ushort] = ACTIONS(1432), + [anon_sym_c_int] = ACTIONS(1432), + [anon_sym_c_uint] = ACTIONS(1432), + [anon_sym_c_long] = ACTIONS(1432), + [anon_sym_c_ulong] = ACTIONS(1432), + [anon_sym_c_longlong] = ACTIONS(1432), + [anon_sym_c_ulonglong] = ACTIONS(1432), + [anon_sym_c_float] = ACTIONS(1432), + [anon_sym_c_double] = ACTIONS(1432), + [anon_sym_c_longdouble] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1438), + [anon_sym_unreachable] = ACTIONS(1440), + [anon_sym_undefined] = ACTIONS(1442), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [STATE(6539)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_BANG] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_expand] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(10471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(10473), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(10475), + [anon_sym_TILDE] = ACTIONS(5706), + [anon_sym_try] = ACTIONS(5708), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(5708), + [anon_sym_false] = ACTIONS(5708), + [anon_sym_null] = ACTIONS(5708), + [anon_sym_unreachable] = ACTIONS(5708), + [anon_sym_undefined] = ACTIONS(5708), + [sym_sink] = ACTIONS(5708), + [sym_integer] = ACTIONS(5708), + [sym_float] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(5706), + [sym_multiline_string] = ACTIONS(5706), + [sym_character] = ACTIONS(5706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(6540)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_c_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(6416), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(6541)] = { + [aux_sym_import_declaration_repeat1] = STATE(14462), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_else] = ACTIONS(10477), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_SLASH] = ACTIONS(4426), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(10480), + }, + [STATE(6542)] = { + [aux_sym_import_declaration_repeat1] = STATE(14459), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(10483), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4392), + [anon_sym_SLASH] = ACTIONS(4392), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10486), + }, + [STATE(6543)] = { + [aux_sym_import_declaration_repeat1] = STATE(14460), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(10489), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4404), + [anon_sym_SLASH] = ACTIONS(4404), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10492), + }, + [STATE(6544)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_expand] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(10475), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_unreachable] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [sym_sink] = ACTIONS(2704), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_multiline_string] = ACTIONS(2702), + [sym_character] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(6545)] = { + [aux_sym_import_declaration_repeat1] = STATE(14463), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(10495), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10498), + }, + [STATE(6546)] = { + [aux_sym_import_declaration_repeat1] = STATE(14464), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(10501), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_SLASH] = ACTIONS(4456), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10504), + }, + [STATE(6547)] = { + [aux_sym_import_declaration_repeat1] = STATE(14465), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(10507), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_SLASH] = ACTIONS(4474), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10510), + }, + [STATE(6548)] = { + [sym_argument_list] = STATE(4430), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(7762), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_expand] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(169), + [anon_sym_or] = ACTIONS(171), + [anon_sym_and] = ACTIONS(173), + [anon_sym_EQ_EQ] = ACTIONS(175), + [anon_sym_BANG_EQ] = ACTIONS(175), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(177), + [anon_sym_GT_EQ] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(7762), + [anon_sym_xor] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_PIPE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(10475), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6836), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_unreachable] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [sym_sink] = ACTIONS(2672), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [sym_multiline_string] = ACTIONS(2670), + [sym_character] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(6549)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_c_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_struct_type_BANG] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_xor_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_LT_LT_PIPE] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(6550)] = { + [sym_variant_payload] = STATE(3056), + [sym_identifier] = ACTIONS(2659), + [anon_sym_func] = ACTIONS(2659), + [anon_sym_c_func] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(10513), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_struct_type_BANG] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_anyopaque] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_int] = ACTIONS(2659), + [anon_sym_uint] = ACTIONS(2659), + [anon_sym_float] = ACTIONS(2659), + [anon_sym_range] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_c_char] = ACTIONS(2659), + [anon_sym_c_schar] = ACTIONS(2659), + [anon_sym_c_uchar] = ACTIONS(2659), + [anon_sym_c_short] = ACTIONS(2659), + [anon_sym_c_ushort] = ACTIONS(2659), + [anon_sym_c_int] = ACTIONS(2659), + [anon_sym_c_uint] = ACTIONS(2659), + [anon_sym_c_long] = ACTIONS(2659), + [anon_sym_c_ulong] = ACTIONS(2659), + [anon_sym_c_longlong] = ACTIONS(2659), + [anon_sym_c_ulonglong] = ACTIONS(2659), + [anon_sym_c_float] = ACTIONS(2659), + [anon_sym_c_double] = ACTIONS(2659), + [anon_sym_c_longdouble] = ACTIONS(2659), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2657), + [anon_sym_xor_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2657), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2657), + [anon_sym_orelse] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_xor] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_PIPE] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2657), + }, + [STATE(6551)] = { + [aux_sym_import_declaration_repeat1] = STATE(14660), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_c_func] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_COMMA] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_struct_type_BANG] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_AT] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_PLUS_EQ] = ACTIONS(4456), + [anon_sym_DASH_EQ] = ACTIONS(4456), + [anon_sym_STAR_EQ] = ACTIONS(4456), + [anon_sym_SLASH_EQ] = ACTIONS(4456), + [anon_sym_AMP_EQ] = ACTIONS(4456), + [anon_sym_PIPE_EQ] = ACTIONS(4456), + [anon_sym_xor_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_EQ] = ACTIONS(4456), + [anon_sym_GT_GT_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4456), + [anon_sym_else] = ACTIONS(10515), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4458), + [anon_sym_LT_LT_PIPE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(4458), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10517), + }, + [STATE(6552)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_c_func] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2690), + [anon_sym_xor_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2690), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(6553)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_c_func] = ACTIONS(2712), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_PLUS_EQ] = ACTIONS(2710), + [anon_sym_DASH_EQ] = ACTIONS(2710), + [anon_sym_STAR_EQ] = ACTIONS(2710), + [anon_sym_SLASH_EQ] = ACTIONS(2710), + [anon_sym_AMP_EQ] = ACTIONS(2710), + [anon_sym_PIPE_EQ] = ACTIONS(2710), + [anon_sym_xor_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2710), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(6554)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_c_func] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_PLUS_EQ] = ACTIONS(2714), + [anon_sym_DASH_EQ] = ACTIONS(2714), + [anon_sym_STAR_EQ] = ACTIONS(2714), + [anon_sym_SLASH_EQ] = ACTIONS(2714), + [anon_sym_AMP_EQ] = ACTIONS(2714), + [anon_sym_PIPE_EQ] = ACTIONS(2714), + [anon_sym_xor_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2714), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(6555)] = { + [aux_sym_import_declaration_repeat1] = STATE(14423), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_c_func] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_PIPE] = ACTIONS(4394), + [anon_sym_struct_type_BANG] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_AMP_EQ] = ACTIONS(4392), + [anon_sym_PIPE_EQ] = ACTIONS(4392), + [anon_sym_xor_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_GT_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(10536), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_LT_LT_PIPE] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10539), + }, + [STATE(6556)] = { + [aux_sym_import_declaration_repeat1] = STATE(14424), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_c_func] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_PIPE] = ACTIONS(4406), + [anon_sym_struct_type_BANG] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_AMP_EQ] = ACTIONS(4404), + [anon_sym_PIPE_EQ] = ACTIONS(4404), + [anon_sym_xor_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_GT_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(10542), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4406), + [anon_sym_LT_LT_PIPE] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10545), + }, + [STATE(6557)] = { + [aux_sym_import_declaration_repeat1] = STATE(14425), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_c_func] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_PIPE] = ACTIONS(4428), + [anon_sym_struct_type_BANG] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_AMP_EQ] = ACTIONS(4426), + [anon_sym_PIPE_EQ] = ACTIONS(4426), + [anon_sym_xor_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_GT_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4426), + [anon_sym_else] = ACTIONS(10548), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4428), + [anon_sym_LT_LT_PIPE] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_SLASH] = ACTIONS(4428), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10551), + }, + [STATE(6558)] = { + [aux_sym_import_declaration_repeat1] = STATE(14426), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_c_func] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_PIPE] = ACTIONS(4446), + [anon_sym_struct_type_BANG] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_AMP_EQ] = ACTIONS(4444), + [anon_sym_PIPE_EQ] = ACTIONS(4444), + [anon_sym_xor_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_GT_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(10554), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT_PIPE] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10557), + }, + [STATE(6559)] = { + [aux_sym_import_declaration_repeat1] = STATE(14427), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_c_func] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_COMMA] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_struct_type_BANG] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_AT] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_PLUS_EQ] = ACTIONS(4456), + [anon_sym_DASH_EQ] = ACTIONS(4456), + [anon_sym_STAR_EQ] = ACTIONS(4456), + [anon_sym_SLASH_EQ] = ACTIONS(4456), + [anon_sym_AMP_EQ] = ACTIONS(4456), + [anon_sym_PIPE_EQ] = ACTIONS(4456), + [anon_sym_xor_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_EQ] = ACTIONS(4456), + [anon_sym_GT_GT_EQ] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4456), + [anon_sym_else] = ACTIONS(10560), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4458), + [anon_sym_LT_LT_PIPE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(4458), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10563), + }, + [STATE(6560)] = { + [aux_sym_import_declaration_repeat1] = STATE(14428), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_c_func] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_struct_type_BANG] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_AMP_EQ] = ACTIONS(4474), + [anon_sym_PIPE_EQ] = ACTIONS(4474), + [anon_sym_xor_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_GT_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4474), + [anon_sym_else] = ACTIONS(10566), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_LT_LT_PIPE] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10569), + }, + [STATE(6561)] = { + [aux_sym_import_declaration_repeat1] = STATE(14656), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_c_func] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_PIPE] = ACTIONS(4394), + [anon_sym_struct_type_BANG] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_AMP_EQ] = ACTIONS(4392), + [anon_sym_PIPE_EQ] = ACTIONS(4392), + [anon_sym_xor_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_GT_EQ] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(10572), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_LT_LT_PIPE] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10574), + }, + [STATE(6562)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10579), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(6563)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(6564)] = { + [aux_sym_import_declaration_repeat1] = STATE(14657), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_c_func] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_PIPE] = ACTIONS(4406), + [anon_sym_struct_type_BANG] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_AMP_EQ] = ACTIONS(4404), + [anon_sym_PIPE_EQ] = ACTIONS(4404), + [anon_sym_xor_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_GT_EQ] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(10581), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4406), + [anon_sym_LT_LT_PIPE] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10583), + }, + [STATE(6565)] = { + [aux_sym_import_declaration_repeat1] = STATE(14658), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_c_func] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_PIPE] = ACTIONS(4428), + [anon_sym_struct_type_BANG] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_AMP_EQ] = ACTIONS(4426), + [anon_sym_PIPE_EQ] = ACTIONS(4426), + [anon_sym_xor_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_GT_EQ] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4426), + [anon_sym_else] = ACTIONS(10586), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4428), + [anon_sym_LT_LT_PIPE] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_SLASH] = ACTIONS(4428), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10588), + }, + [STATE(6566)] = { + [aux_sym_import_declaration_repeat1] = STATE(14659), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_c_func] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_PIPE] = ACTIONS(4446), + [anon_sym_struct_type_BANG] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_AMP_EQ] = ACTIONS(4444), + [anon_sym_PIPE_EQ] = ACTIONS(4444), + [anon_sym_xor_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_GT_EQ] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(10591), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT_PIPE] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_SLASH] = ACTIONS(4446), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10593), + }, + [STATE(6567)] = { + [sym_type] = STATE(7129), + [sym__type_atom] = STATE(7106), + [sym_parenthesized_type] = STATE(7106), + [sym_named_type] = STATE(7106), + [sym_intrinsic_type] = STATE(7106), + [sym_optional_type] = STATE(7106), + [sym_pointer_type] = STATE(7106), + [sym_array_type] = STATE(7106), + [sym_function_type] = STATE(7106), + [sym_builtin_type] = STATE(7106), + [sym_qualified_identifier] = STATE(7095), + [sym_identifier] = ACTIONS(10596), + [anon_sym_func] = ACTIONS(10599), + [anon_sym_c_func] = ACTIONS(10599), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(10602), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_struct_type_BANG] = ACTIONS(10605), + [anon_sym_QMARK] = ACTIONS(10608), + [anon_sym_AT] = ACTIONS(10611), + [anon_sym_STAR] = ACTIONS(10611), + [anon_sym_mut] = ACTIONS(10614), + [anon_sym_LBRACK] = ACTIONS(10616), + [anon_sym_void] = ACTIONS(10619), + [anon_sym_noreturn] = ACTIONS(10619), + [anon_sym_type] = ACTIONS(10619), + [anon_sym_anyopaque] = ACTIONS(10619), + [anon_sym_bool] = ACTIONS(10619), + [anon_sym_int] = ACTIONS(10619), + [anon_sym_uint] = ACTIONS(10619), + [anon_sym_float] = ACTIONS(10619), + [anon_sym_range] = ACTIONS(10619), + [anon_sym_i8] = ACTIONS(10619), + [anon_sym_i16] = ACTIONS(10619), + [anon_sym_i32] = ACTIONS(10619), + [anon_sym_i64] = ACTIONS(10619), + [anon_sym_u8] = ACTIONS(10619), + [anon_sym_u16] = ACTIONS(10619), + [anon_sym_u32] = ACTIONS(10619), + [anon_sym_u64] = ACTIONS(10619), + [anon_sym_isize] = ACTIONS(10619), + [anon_sym_usize] = ACTIONS(10619), + [anon_sym_f32] = ACTIONS(10619), + [anon_sym_f64] = ACTIONS(10619), + [anon_sym_c_char] = ACTIONS(10619), + [anon_sym_c_schar] = ACTIONS(10619), + [anon_sym_c_uchar] = ACTIONS(10619), + [anon_sym_c_short] = ACTIONS(10619), + [anon_sym_c_ushort] = ACTIONS(10619), + [anon_sym_c_int] = ACTIONS(10619), + [anon_sym_c_uint] = ACTIONS(10619), + [anon_sym_c_long] = ACTIONS(10619), + [anon_sym_c_ulong] = ACTIONS(10619), + [anon_sym_c_longlong] = ACTIONS(10619), + [anon_sym_c_ulonglong] = ACTIONS(10619), + [anon_sym_c_float] = ACTIONS(10619), + [anon_sym_c_double] = ACTIONS(10619), + [anon_sym_c_longdouble] = ACTIONS(10619), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(6568)] = { + [aux_sym_import_declaration_repeat1] = STATE(14661), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_c_func] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_struct_type_BANG] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_AMP_EQ] = ACTIONS(4474), + [anon_sym_PIPE_EQ] = ACTIONS(4474), + [anon_sym_xor_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_GT_EQ] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(4474), + [anon_sym_else] = ACTIONS(10622), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_LT_LT_PIPE] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10624), + }, + [STATE(6569)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(6570)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_c_func] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_xor_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2694), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(6571)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_c_func] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(10627), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(5748), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(5748), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(10630), + [anon_sym_DASH_EQ] = ACTIONS(10630), + [anon_sym_STAR_EQ] = ACTIONS(10630), + [anon_sym_SLASH_EQ] = ACTIONS(10630), + [anon_sym_AMP_EQ] = ACTIONS(10630), + [anon_sym_PIPE_EQ] = ACTIONS(10630), + [anon_sym_xor_EQ] = ACTIONS(10630), + [anon_sym_LT_LT_EQ] = ACTIONS(10630), + [anon_sym_GT_GT_EQ] = ACTIONS(10630), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(10630), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(10633), + [anon_sym_DOT_DOT_EQ] = ACTIONS(10635), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10579), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(6572)] = { + [sym_type] = STATE(7126), + [sym__type_atom] = STATE(7106), + [sym_parenthesized_type] = STATE(7106), + [sym_named_type] = STATE(7106), + [sym_intrinsic_type] = STATE(7106), + [sym_optional_type] = STATE(7106), + [sym_pointer_type] = STATE(7106), + [sym_array_type] = STATE(7106), + [sym_function_type] = STATE(7106), + [sym_builtin_type] = STATE(7106), + [sym_qualified_identifier] = STATE(7095), + [sym_identifier] = ACTIONS(10596), + [anon_sym_func] = ACTIONS(10599), + [anon_sym_c_func] = ACTIONS(10599), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(10602), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_struct_type_BANG] = ACTIONS(10605), + [anon_sym_QMARK] = ACTIONS(10608), + [anon_sym_AT] = ACTIONS(10611), + [anon_sym_STAR] = ACTIONS(10611), + [anon_sym_mut] = ACTIONS(10637), + [anon_sym_LBRACK] = ACTIONS(10616), + [anon_sym_void] = ACTIONS(10619), + [anon_sym_noreturn] = ACTIONS(10619), + [anon_sym_type] = ACTIONS(10619), + [anon_sym_anyopaque] = ACTIONS(10619), + [anon_sym_bool] = ACTIONS(10619), + [anon_sym_int] = ACTIONS(10619), + [anon_sym_uint] = ACTIONS(10619), + [anon_sym_float] = ACTIONS(10619), + [anon_sym_range] = ACTIONS(10619), + [anon_sym_i8] = ACTIONS(10619), + [anon_sym_i16] = ACTIONS(10619), + [anon_sym_i32] = ACTIONS(10619), + [anon_sym_i64] = ACTIONS(10619), + [anon_sym_u8] = ACTIONS(10619), + [anon_sym_u16] = ACTIONS(10619), + [anon_sym_u32] = ACTIONS(10619), + [anon_sym_u64] = ACTIONS(10619), + [anon_sym_isize] = ACTIONS(10619), + [anon_sym_usize] = ACTIONS(10619), + [anon_sym_f32] = ACTIONS(10619), + [anon_sym_f64] = ACTIONS(10619), + [anon_sym_c_char] = ACTIONS(10619), + [anon_sym_c_schar] = ACTIONS(10619), + [anon_sym_c_uchar] = ACTIONS(10619), + [anon_sym_c_short] = ACTIONS(10619), + [anon_sym_c_ushort] = ACTIONS(10619), + [anon_sym_c_int] = ACTIONS(10619), + [anon_sym_c_uint] = ACTIONS(10619), + [anon_sym_c_long] = ACTIONS(10619), + [anon_sym_c_ulong] = ACTIONS(10619), + [anon_sym_c_longlong] = ACTIONS(10619), + [anon_sym_c_ulonglong] = ACTIONS(10619), + [anon_sym_c_float] = ACTIONS(10619), + [anon_sym_c_double] = ACTIONS(10619), + [anon_sym_c_longdouble] = ACTIONS(10619), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(6573)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_c_func] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2724), + [anon_sym_xor_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(6574)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_c_func] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(10639), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(5748), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(5748), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(10641), + [anon_sym_DASH_EQ] = ACTIONS(10641), + [anon_sym_STAR_EQ] = ACTIONS(10641), + [anon_sym_SLASH_EQ] = ACTIONS(10641), + [anon_sym_AMP_EQ] = ACTIONS(10641), + [anon_sym_PIPE_EQ] = ACTIONS(10641), + [anon_sym_xor_EQ] = ACTIONS(10641), + [anon_sym_LT_LT_EQ] = ACTIONS(10641), + [anon_sym_GT_GT_EQ] = ACTIONS(10641), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(10641), + [anon_sym_else] = ACTIONS(5750), + [anon_sym_DOT_DOT] = ACTIONS(10633), + [anon_sym_DOT_DOT_EQ] = ACTIONS(10635), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10579), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(6575)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_c_func] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2690), + [anon_sym_xor_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2690), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(6576)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_LT_LT_PIPE] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(6577)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_c_func] = ACTIONS(5708), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(5706), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(5706), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_PLUS_EQ] = ACTIONS(5706), + [anon_sym_DASH_EQ] = ACTIONS(5706), + [anon_sym_STAR_EQ] = ACTIONS(5706), + [anon_sym_SLASH_EQ] = ACTIONS(5706), + [anon_sym_AMP_EQ] = ACTIONS(5706), + [anon_sym_PIPE_EQ] = ACTIONS(5706), + [anon_sym_xor_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_GT_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5706), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(10633), + [anon_sym_DOT_DOT_EQ] = ACTIONS(10635), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10579), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(6578)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(6579)] = { + [sym_type] = STATE(7134), + [sym__type_atom] = STATE(7106), + [sym_parenthesized_type] = STATE(7106), + [sym_named_type] = STATE(7106), + [sym_intrinsic_type] = STATE(7106), + [sym_optional_type] = STATE(7106), + [sym_pointer_type] = STATE(7106), + [sym_array_type] = STATE(7106), + [sym_function_type] = STATE(7106), + [sym_builtin_type] = STATE(7106), + [sym_qualified_identifier] = STATE(7095), + [sym_identifier] = ACTIONS(10643), + [anon_sym_func] = ACTIONS(10646), + [anon_sym_c_func] = ACTIONS(10646), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(10649), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(10652), + [anon_sym_QMARK] = ACTIONS(10655), + [anon_sym_AT] = ACTIONS(10658), + [anon_sym_STAR] = ACTIONS(10658), + [anon_sym_mut] = ACTIONS(10661), + [anon_sym_LBRACK] = ACTIONS(10663), + [anon_sym_void] = ACTIONS(10666), + [anon_sym_noreturn] = ACTIONS(10666), + [anon_sym_type] = ACTIONS(10666), + [anon_sym_anyopaque] = ACTIONS(10666), + [anon_sym_bool] = ACTIONS(10666), + [anon_sym_int] = ACTIONS(10666), + [anon_sym_uint] = ACTIONS(10666), + [anon_sym_float] = ACTIONS(10666), + [anon_sym_range] = ACTIONS(10666), + [anon_sym_i8] = ACTIONS(10666), + [anon_sym_i16] = ACTIONS(10666), + [anon_sym_i32] = ACTIONS(10666), + [anon_sym_i64] = ACTIONS(10666), + [anon_sym_u8] = ACTIONS(10666), + [anon_sym_u16] = ACTIONS(10666), + [anon_sym_u32] = ACTIONS(10666), + [anon_sym_u64] = ACTIONS(10666), + [anon_sym_isize] = ACTIONS(10666), + [anon_sym_usize] = ACTIONS(10666), + [anon_sym_f32] = ACTIONS(10666), + [anon_sym_f64] = ACTIONS(10666), + [anon_sym_c_char] = ACTIONS(10666), + [anon_sym_c_schar] = ACTIONS(10666), + [anon_sym_c_uchar] = ACTIONS(10666), + [anon_sym_c_short] = ACTIONS(10666), + [anon_sym_c_ushort] = ACTIONS(10666), + [anon_sym_c_int] = ACTIONS(10666), + [anon_sym_c_uint] = ACTIONS(10666), + [anon_sym_c_long] = ACTIONS(10666), + [anon_sym_c_ulong] = ACTIONS(10666), + [anon_sym_c_longlong] = ACTIONS(10666), + [anon_sym_c_ulonglong] = ACTIONS(10666), + [anon_sym_c_float] = ACTIONS(10666), + [anon_sym_c_double] = ACTIONS(10666), + [anon_sym_c_longdouble] = ACTIONS(10666), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(6580)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10579), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(6581)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(6582)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_c_func] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2706), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_xor_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2706), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(6583)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_c_func] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2706), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_xor_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2706), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(6584)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(6585)] = { + [sym_type] = STATE(7206), + [sym__type_atom] = STATE(7106), + [sym_parenthesized_type] = STATE(7106), + [sym_named_type] = STATE(7106), + [sym_intrinsic_type] = STATE(7106), + [sym_optional_type] = STATE(7106), + [sym_pointer_type] = STATE(7106), + [sym_array_type] = STATE(7106), + [sym_function_type] = STATE(7106), + [sym_builtin_type] = STATE(7106), + [sym_qualified_identifier] = STATE(7095), + [sym_identifier] = ACTIONS(10669), + [anon_sym_func] = ACTIONS(10672), + [anon_sym_c_func] = ACTIONS(10672), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(10675), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_struct_type_BANG] = ACTIONS(10678), + [anon_sym_QMARK] = ACTIONS(10681), + [anon_sym_AT] = ACTIONS(10684), + [anon_sym_STAR] = ACTIONS(10684), + [anon_sym_mut] = ACTIONS(10687), + [anon_sym_LBRACK] = ACTIONS(10689), + [anon_sym_void] = ACTIONS(10692), + [anon_sym_noreturn] = ACTIONS(10692), + [anon_sym_type] = ACTIONS(10692), + [anon_sym_anyopaque] = ACTIONS(10692), + [anon_sym_bool] = ACTIONS(10692), + [anon_sym_int] = ACTIONS(10692), + [anon_sym_uint] = ACTIONS(10692), + [anon_sym_float] = ACTIONS(10692), + [anon_sym_range] = ACTIONS(10692), + [anon_sym_i8] = ACTIONS(10692), + [anon_sym_i16] = ACTIONS(10692), + [anon_sym_i32] = ACTIONS(10692), + [anon_sym_i64] = ACTIONS(10692), + [anon_sym_u8] = ACTIONS(10692), + [anon_sym_u16] = ACTIONS(10692), + [anon_sym_u32] = ACTIONS(10692), + [anon_sym_u64] = ACTIONS(10692), + [anon_sym_isize] = ACTIONS(10692), + [anon_sym_usize] = ACTIONS(10692), + [anon_sym_f32] = ACTIONS(10692), + [anon_sym_f64] = ACTIONS(10692), + [anon_sym_c_char] = ACTIONS(10692), + [anon_sym_c_schar] = ACTIONS(10692), + [anon_sym_c_uchar] = ACTIONS(10692), + [anon_sym_c_short] = ACTIONS(10692), + [anon_sym_c_ushort] = ACTIONS(10692), + [anon_sym_c_int] = ACTIONS(10692), + [anon_sym_c_uint] = ACTIONS(10692), + [anon_sym_c_long] = ACTIONS(10692), + [anon_sym_c_ulong] = ACTIONS(10692), + [anon_sym_c_longlong] = ACTIONS(10692), + [anon_sym_c_ulonglong] = ACTIONS(10692), + [anon_sym_c_float] = ACTIONS(10692), + [anon_sym_c_double] = ACTIONS(10692), + [anon_sym_c_longdouble] = ACTIONS(10692), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_xor] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1207), + [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_catch] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(6586)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(6587)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(6588)] = { + [sym_type] = STATE(7136), + [sym__type_atom] = STATE(7106), + [sym_parenthesized_type] = STATE(7106), + [sym_named_type] = STATE(7106), + [sym_intrinsic_type] = STATE(7106), + [sym_optional_type] = STATE(7106), + [sym_pointer_type] = STATE(7106), + [sym_array_type] = STATE(7106), + [sym_function_type] = STATE(7106), + [sym_builtin_type] = STATE(7106), + [sym_qualified_identifier] = STATE(7095), + [sym_identifier] = ACTIONS(10643), + [anon_sym_func] = ACTIONS(10646), + [anon_sym_c_func] = ACTIONS(10646), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(10649), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(10652), + [anon_sym_QMARK] = ACTIONS(10655), + [anon_sym_AT] = ACTIONS(10658), + [anon_sym_STAR] = ACTIONS(10658), + [anon_sym_mut] = ACTIONS(10695), + [anon_sym_LBRACK] = ACTIONS(10663), + [anon_sym_void] = ACTIONS(10666), + [anon_sym_noreturn] = ACTIONS(10666), + [anon_sym_type] = ACTIONS(10666), + [anon_sym_anyopaque] = ACTIONS(10666), + [anon_sym_bool] = ACTIONS(10666), + [anon_sym_int] = ACTIONS(10666), + [anon_sym_uint] = ACTIONS(10666), + [anon_sym_float] = ACTIONS(10666), + [anon_sym_range] = ACTIONS(10666), + [anon_sym_i8] = ACTIONS(10666), + [anon_sym_i16] = ACTIONS(10666), + [anon_sym_i32] = ACTIONS(10666), + [anon_sym_i64] = ACTIONS(10666), + [anon_sym_u8] = ACTIONS(10666), + [anon_sym_u16] = ACTIONS(10666), + [anon_sym_u32] = ACTIONS(10666), + [anon_sym_u64] = ACTIONS(10666), + [anon_sym_isize] = ACTIONS(10666), + [anon_sym_usize] = ACTIONS(10666), + [anon_sym_f32] = ACTIONS(10666), + [anon_sym_f64] = ACTIONS(10666), + [anon_sym_c_char] = ACTIONS(10666), + [anon_sym_c_schar] = ACTIONS(10666), + [anon_sym_c_uchar] = ACTIONS(10666), + [anon_sym_c_short] = ACTIONS(10666), + [anon_sym_c_ushort] = ACTIONS(10666), + [anon_sym_c_int] = ACTIONS(10666), + [anon_sym_c_uint] = ACTIONS(10666), + [anon_sym_c_long] = ACTIONS(10666), + [anon_sym_c_ulong] = ACTIONS(10666), + [anon_sym_c_longlong] = ACTIONS(10666), + [anon_sym_c_ulonglong] = ACTIONS(10666), + [anon_sym_c_float] = ACTIONS(10666), + [anon_sym_c_double] = ACTIONS(10666), + [anon_sym_c_longdouble] = ACTIONS(10666), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(6589)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_LT_LT_PIPE] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(6590)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(6591)] = { + [sym_type] = STATE(7199), + [sym__type_atom] = STATE(7106), + [sym_parenthesized_type] = STATE(7106), + [sym_named_type] = STATE(7106), + [sym_intrinsic_type] = STATE(7106), + [sym_optional_type] = STATE(7106), + [sym_pointer_type] = STATE(7106), + [sym_array_type] = STATE(7106), + [sym_function_type] = STATE(7106), + [sym_builtin_type] = STATE(7106), + [sym_qualified_identifier] = STATE(7095), + [sym_identifier] = ACTIONS(10697), + [anon_sym_func] = ACTIONS(10700), + [anon_sym_c_func] = ACTIONS(10700), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(10703), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_struct_type_BANG] = ACTIONS(10706), + [anon_sym_QMARK] = ACTIONS(10709), + [anon_sym_AT] = ACTIONS(10712), + [anon_sym_STAR] = ACTIONS(10712), + [anon_sym_mut] = ACTIONS(10715), + [anon_sym_LBRACK] = ACTIONS(10717), + [anon_sym_void] = ACTIONS(10720), + [anon_sym_noreturn] = ACTIONS(10720), + [anon_sym_type] = ACTIONS(10720), + [anon_sym_anyopaque] = ACTIONS(10720), + [anon_sym_bool] = ACTIONS(10720), + [anon_sym_int] = ACTIONS(10720), + [anon_sym_uint] = ACTIONS(10720), + [anon_sym_float] = ACTIONS(10720), + [anon_sym_range] = ACTIONS(10720), + [anon_sym_i8] = ACTIONS(10720), + [anon_sym_i16] = ACTIONS(10720), + [anon_sym_i32] = ACTIONS(10720), + [anon_sym_i64] = ACTIONS(10720), + [anon_sym_u8] = ACTIONS(10720), + [anon_sym_u16] = ACTIONS(10720), + [anon_sym_u32] = ACTIONS(10720), + [anon_sym_u64] = ACTIONS(10720), + [anon_sym_isize] = ACTIONS(10720), + [anon_sym_usize] = ACTIONS(10720), + [anon_sym_f32] = ACTIONS(10720), + [anon_sym_f64] = ACTIONS(10720), + [anon_sym_c_char] = ACTIONS(10720), + [anon_sym_c_schar] = ACTIONS(10720), + [anon_sym_c_uchar] = ACTIONS(10720), + [anon_sym_c_short] = ACTIONS(10720), + [anon_sym_c_ushort] = ACTIONS(10720), + [anon_sym_c_int] = ACTIONS(10720), + [anon_sym_c_uint] = ACTIONS(10720), + [anon_sym_c_long] = ACTIONS(10720), + [anon_sym_c_ulong] = ACTIONS(10720), + [anon_sym_c_longlong] = ACTIONS(10720), + [anon_sym_c_ulonglong] = ACTIONS(10720), + [anon_sym_c_float] = ACTIONS(10720), + [anon_sym_c_double] = ACTIONS(10720), + [anon_sym_c_longdouble] = ACTIONS(10720), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(6592)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_c_func] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(10723), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(5748), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(5748), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(10725), + [anon_sym_DASH_EQ] = ACTIONS(10725), + [anon_sym_STAR_EQ] = ACTIONS(10725), + [anon_sym_SLASH_EQ] = ACTIONS(10725), + [anon_sym_AMP_EQ] = ACTIONS(10725), + [anon_sym_PIPE_EQ] = ACTIONS(10725), + [anon_sym_xor_EQ] = ACTIONS(10725), + [anon_sym_LT_LT_EQ] = ACTIONS(10725), + [anon_sym_GT_GT_EQ] = ACTIONS(10725), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(10725), + [anon_sym_DOT_DOT] = ACTIONS(10727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(10729), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10731), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(6593)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_c_func] = ACTIONS(5708), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(5706), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(5706), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_PLUS_EQ] = ACTIONS(5706), + [anon_sym_DASH_EQ] = ACTIONS(5706), + [anon_sym_STAR_EQ] = ACTIONS(5706), + [anon_sym_SLASH_EQ] = ACTIONS(5706), + [anon_sym_AMP_EQ] = ACTIONS(5706), + [anon_sym_PIPE_EQ] = ACTIONS(5706), + [anon_sym_xor_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_GT_EQ] = ACTIONS(5706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(5706), + [anon_sym_DOT_DOT] = ACTIONS(10727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(10729), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10731), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(6594)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(5750), + [anon_sym_func] = ACTIONS(5750), + [anon_sym_c_func] = ACTIONS(5750), + [anon_sym_EQ] = ACTIONS(10733), + [anon_sym_struct] = ACTIONS(5750), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(5748), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(5748), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_type] = ACTIONS(5750), + [anon_sym_anyopaque] = ACTIONS(5750), + [anon_sym_bool] = ACTIONS(5750), + [anon_sym_int] = ACTIONS(5750), + [anon_sym_uint] = ACTIONS(5750), + [anon_sym_float] = ACTIONS(5750), + [anon_sym_range] = ACTIONS(5750), + [anon_sym_i8] = ACTIONS(5750), + [anon_sym_i16] = ACTIONS(5750), + [anon_sym_i32] = ACTIONS(5750), + [anon_sym_i64] = ACTIONS(5750), + [anon_sym_u8] = ACTIONS(5750), + [anon_sym_u16] = ACTIONS(5750), + [anon_sym_u32] = ACTIONS(5750), + [anon_sym_u64] = ACTIONS(5750), + [anon_sym_isize] = ACTIONS(5750), + [anon_sym_usize] = ACTIONS(5750), + [anon_sym_f32] = ACTIONS(5750), + [anon_sym_f64] = ACTIONS(5750), + [anon_sym_c_char] = ACTIONS(5750), + [anon_sym_c_schar] = ACTIONS(5750), + [anon_sym_c_uchar] = ACTIONS(5750), + [anon_sym_c_short] = ACTIONS(5750), + [anon_sym_c_ushort] = ACTIONS(5750), + [anon_sym_c_int] = ACTIONS(5750), + [anon_sym_c_uint] = ACTIONS(5750), + [anon_sym_c_long] = ACTIONS(5750), + [anon_sym_c_ulong] = ACTIONS(5750), + [anon_sym_c_longlong] = ACTIONS(5750), + [anon_sym_c_ulonglong] = ACTIONS(5750), + [anon_sym_c_float] = ACTIONS(5750), + [anon_sym_c_double] = ACTIONS(5750), + [anon_sym_c_longdouble] = ACTIONS(5750), + [anon_sym_PLUS_EQ] = ACTIONS(10736), + [anon_sym_DASH_EQ] = ACTIONS(10736), + [anon_sym_STAR_EQ] = ACTIONS(10736), + [anon_sym_SLASH_EQ] = ACTIONS(10736), + [anon_sym_AMP_EQ] = ACTIONS(10736), + [anon_sym_PIPE_EQ] = ACTIONS(10736), + [anon_sym_xor_EQ] = ACTIONS(10736), + [anon_sym_LT_LT_EQ] = ACTIONS(10736), + [anon_sym_GT_GT_EQ] = ACTIONS(10736), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(10736), + [anon_sym_DOT_DOT] = ACTIONS(10727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(10729), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10731), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5748), + }, + [STATE(6595)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2670), + [anon_sym_DASH_EQ] = ACTIONS(2670), + [anon_sym_STAR_EQ] = ACTIONS(2670), + [anon_sym_SLASH_EQ] = ACTIONS(2670), + [anon_sym_AMP_EQ] = ACTIONS(2670), + [anon_sym_PIPE_EQ] = ACTIONS(2670), + [anon_sym_xor_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_GT_EQ] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2670), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10731), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(6596)] = { + [sym_argument_list] = STATE(3037), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(6388), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(10520), + [anon_sym_PIPE] = ACTIONS(10522), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(10524), + [anon_sym_LBRACK] = ACTIONS(6398), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_xor_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(2702), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(10577), + [anon_sym_or] = ACTIONS(10532), + [anon_sym_and] = ACTIONS(10534), + [anon_sym_EQ_EQ] = ACTIONS(10526), + [anon_sym_BANG_EQ] = ACTIONS(10526), + [anon_sym_LT] = ACTIONS(10528), + [anon_sym_LT_EQ] = ACTIONS(10526), + [anon_sym_GT] = ACTIONS(10528), + [anon_sym_GT_EQ] = ACTIONS(10526), + [anon_sym_AMP] = ACTIONS(10522), + [anon_sym_xor] = ACTIONS(10522), + [anon_sym_LT_LT] = ACTIONS(10530), + [anon_sym_GT_GT] = ACTIONS(10530), + [anon_sym_LT_LT_PIPE] = ACTIONS(10530), + [anon_sym_PLUS] = ACTIONS(10520), + [anon_sym_SLASH] = ACTIONS(10524), + [anon_sym_catch] = ACTIONS(10731), + [anon_sym_DOT] = ACTIONS(6414), + [anon_sym_CARET] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(6597)] = { + [sym_type] = STATE(10376), + [sym__type_atom] = STATE(10084), + [sym_parenthesized_type] = STATE(10084), + [sym_named_type] = STATE(10084), + [sym_intrinsic_type] = STATE(10084), + [sym_optional_type] = STATE(10084), + [sym_pointer_type] = STATE(10084), + [sym_array_type] = STATE(10084), + [sym_function_type] = STATE(10084), + [sym_builtin_type] = STATE(10084), + [sym_qualified_identifier] = STATE(10100), + [sym_identifier] = ACTIONS(10739), + [anon_sym_func] = ACTIONS(10741), + [anon_sym_c_func] = ACTIONS(10741), + [anon_sym_LPAREN] = ACTIONS(10743), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(10746), + [anon_sym_QMARK] = ACTIONS(10748), + [anon_sym_AT] = ACTIONS(10751), + [anon_sym_STAR] = ACTIONS(10753), + [anon_sym_mut] = ACTIONS(10756), + [anon_sym_LBRACK] = ACTIONS(10758), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(6598)] = { + [sym_type] = STATE(10356), + [sym__type_atom] = STATE(10084), + [sym_parenthesized_type] = STATE(10084), + [sym_named_type] = STATE(10084), + [sym_intrinsic_type] = STATE(10084), + [sym_optional_type] = STATE(10084), + [sym_pointer_type] = STATE(10084), + [sym_array_type] = STATE(10084), + [sym_function_type] = STATE(10084), + [sym_builtin_type] = STATE(10084), + [sym_qualified_identifier] = STATE(10100), + [sym_identifier] = ACTIONS(10739), + [anon_sym_func] = ACTIONS(10741), + [anon_sym_c_func] = ACTIONS(10741), + [anon_sym_LPAREN] = ACTIONS(10761), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_struct_type_BANG] = ACTIONS(10746), + [anon_sym_QMARK] = ACTIONS(10764), + [anon_sym_AT] = ACTIONS(10751), + [anon_sym_STAR] = ACTIONS(10767), + [anon_sym_mut] = ACTIONS(10770), + [anon_sym_LBRACK] = ACTIONS(10772), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_PIPE2] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_xor] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1207), + [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_catch] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1202), + }, + [STATE(6599)] = { + [sym_type] = STATE(10377), + [sym__type_atom] = STATE(10084), + [sym_parenthesized_type] = STATE(10084), + [sym_named_type] = STATE(10084), + [sym_intrinsic_type] = STATE(10084), + [sym_optional_type] = STATE(10084), + [sym_pointer_type] = STATE(10084), + [sym_array_type] = STATE(10084), + [sym_function_type] = STATE(10084), + [sym_builtin_type] = STATE(10084), + [sym_qualified_identifier] = STATE(10100), + [sym_identifier] = ACTIONS(10739), + [anon_sym_func] = ACTIONS(10741), + [anon_sym_c_func] = ACTIONS(10741), + [anon_sym_LPAREN] = ACTIONS(10775), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_struct_type_BANG] = ACTIONS(10746), + [anon_sym_QMARK] = ACTIONS(10778), + [anon_sym_AT] = ACTIONS(10751), + [anon_sym_STAR] = ACTIONS(10781), + [anon_sym_mut] = ACTIONS(10784), + [anon_sym_LBRACK] = ACTIONS(10786), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_PIPE2] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(6600)] = { + [sym_type] = STATE(10285), + [sym__type_atom] = STATE(10084), + [sym_parenthesized_type] = STATE(10084), + [sym_named_type] = STATE(10084), + [sym_intrinsic_type] = STATE(10084), + [sym_optional_type] = STATE(10084), + [sym_pointer_type] = STATE(10084), + [sym_array_type] = STATE(10084), + [sym_function_type] = STATE(10084), + [sym_builtin_type] = STATE(10084), + [sym_qualified_identifier] = STATE(10100), + [sym_identifier] = ACTIONS(10739), + [anon_sym_func] = ACTIONS(10741), + [anon_sym_c_func] = ACTIONS(10741), + [anon_sym_LPAREN] = ACTIONS(10789), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(10746), + [anon_sym_QMARK] = ACTIONS(10792), + [anon_sym_AT] = ACTIONS(10751), + [anon_sym_STAR] = ACTIONS(10795), + [anon_sym_mut] = ACTIONS(10798), + [anon_sym_LBRACK] = ACTIONS(10800), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_PIPE2] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(6601)] = { + [sym_type] = STATE(10284), + [sym__type_atom] = STATE(10084), + [sym_parenthesized_type] = STATE(10084), + [sym_named_type] = STATE(10084), + [sym_intrinsic_type] = STATE(10084), + [sym_optional_type] = STATE(10084), + [sym_pointer_type] = STATE(10084), + [sym_array_type] = STATE(10084), + [sym_function_type] = STATE(10084), + [sym_builtin_type] = STATE(10084), + [sym_qualified_identifier] = STATE(10100), + [sym_identifier] = ACTIONS(10739), + [anon_sym_func] = ACTIONS(10741), + [anon_sym_c_func] = ACTIONS(10741), + [anon_sym_LPAREN] = ACTIONS(10789), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_struct_type_BANG] = ACTIONS(10746), + [anon_sym_QMARK] = ACTIONS(10792), + [anon_sym_AT] = ACTIONS(10751), + [anon_sym_STAR] = ACTIONS(10795), + [anon_sym_mut] = ACTIONS(10803), + [anon_sym_LBRACK] = ACTIONS(10800), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_PIPE2] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_orelse] = ACTIONS(1164), + [anon_sym_or] = ACTIONS(1164), + [anon_sym_and] = ACTIONS(1164), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [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_catch] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1159), + }, + [STATE(6602)] = { + [sym_type] = STATE(10393), + [sym__type_atom] = STATE(10084), + [sym_parenthesized_type] = STATE(10084), + [sym_named_type] = STATE(10084), + [sym_intrinsic_type] = STATE(10084), + [sym_optional_type] = STATE(10084), + [sym_pointer_type] = STATE(10084), + [sym_array_type] = STATE(10084), + [sym_function_type] = STATE(10084), + [sym_builtin_type] = STATE(10084), + [sym_qualified_identifier] = STATE(10100), + [sym_identifier] = ACTIONS(10739), + [anon_sym_func] = ACTIONS(10741), + [anon_sym_c_func] = ACTIONS(10741), + [anon_sym_LPAREN] = ACTIONS(10743), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_struct_type_BANG] = ACTIONS(10746), + [anon_sym_QMARK] = ACTIONS(10748), + [anon_sym_AT] = ACTIONS(10751), + [anon_sym_STAR] = ACTIONS(10753), + [anon_sym_mut] = ACTIONS(10805), + [anon_sym_LBRACK] = ACTIONS(10758), + [anon_sym_void] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_anyopaque] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_int] = ACTIONS(1524), + [anon_sym_uint] = ACTIONS(1524), + [anon_sym_float] = ACTIONS(1524), + [anon_sym_range] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_c_char] = ACTIONS(1524), + [anon_sym_c_schar] = ACTIONS(1524), + [anon_sym_c_uchar] = ACTIONS(1524), + [anon_sym_c_short] = ACTIONS(1524), + [anon_sym_c_ushort] = ACTIONS(1524), + [anon_sym_c_int] = ACTIONS(1524), + [anon_sym_c_uint] = ACTIONS(1524), + [anon_sym_c_long] = ACTIONS(1524), + [anon_sym_c_ulong] = ACTIONS(1524), + [anon_sym_c_longlong] = ACTIONS(1524), + [anon_sym_c_ulonglong] = ACTIONS(1524), + [anon_sym_c_float] = ACTIONS(1524), + [anon_sym_c_double] = ACTIONS(1524), + [anon_sym_c_longdouble] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_PIPE2] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(6603)] = { [ts_builtin_sym_end] = ACTIONS(4494), [sym_identifier] = ACTIONS(4496), [anon_sym_import] = ACTIONS(4496), @@ -211385,6 +758504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(4496), [anon_sym_return] = ACTIONS(4496), [anon_sym_yield] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(10807), [anon_sym_break] = ACTIONS(4496), [anon_sym_continue] = ACTIONS(4496), [anon_sym_defer] = ACTIONS(4496), @@ -211413,10618 +758533,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4494), }, - [STATE(1875)] = { - [ts_builtin_sym_end] = ACTIONS(4498), - [sym_identifier] = ACTIONS(4500), - [anon_sym_import] = ACTIONS(4500), - [anon_sym_test] = ACTIONS(4500), - [anon_sym_hide] = ACTIONS(4500), - [anon_sym_func] = ACTIONS(4500), - [anon_sym_BANG] = ACTIONS(4498), - [anon_sym_struct] = ACTIONS(4500), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_RPAREN] = ACTIONS(4498), - [anon_sym_LBRACE] = ACTIONS(4498), - [anon_sym_RBRACE] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4498), - [anon_sym_DOLLAR] = ACTIONS(4498), - [anon_sym_LBRACK] = ACTIONS(4498), - [anon_sym_void] = ACTIONS(4500), - [anon_sym_noreturn] = ACTIONS(4500), - [anon_sym_type] = ACTIONS(4500), - [anon_sym_anyopaque] = ACTIONS(4500), - [anon_sym_bool] = ACTIONS(4500), - [anon_sym_int] = ACTIONS(4500), - [anon_sym_uint] = ACTIONS(4500), - [anon_sym_float] = ACTIONS(4500), - [anon_sym_range] = ACTIONS(4500), - [anon_sym_i8] = ACTIONS(4500), - [anon_sym_i16] = ACTIONS(4500), - [anon_sym_i32] = ACTIONS(4500), - [anon_sym_i64] = ACTIONS(4500), - [anon_sym_u8] = ACTIONS(4500), - [anon_sym_u16] = ACTIONS(4500), - [anon_sym_u32] = ACTIONS(4500), - [anon_sym_u64] = ACTIONS(4500), - [anon_sym_isize] = ACTIONS(4500), - [anon_sym_usize] = ACTIONS(4500), - [anon_sym_f32] = ACTIONS(4500), - [anon_sym_f64] = ACTIONS(4500), - [anon_sym_c_char] = ACTIONS(4500), - [anon_sym_c_schar] = ACTIONS(4500), - [anon_sym_c_uchar] = ACTIONS(4500), - [anon_sym_c_short] = ACTIONS(4500), - [anon_sym_c_ushort] = ACTIONS(4500), - [anon_sym_c_int] = ACTIONS(4500), - [anon_sym_c_uint] = ACTIONS(4500), - [anon_sym_c_long] = ACTIONS(4500), - [anon_sym_c_ulong] = ACTIONS(4500), - [anon_sym_c_longlong] = ACTIONS(4500), - [anon_sym_c_ulonglong] = ACTIONS(4500), - [anon_sym_c_float] = ACTIONS(4500), - [anon_sym_c_double] = ACTIONS(4500), - [anon_sym_c_longdouble] = ACTIONS(4500), - [anon_sym_return] = ACTIONS(4500), - [anon_sym_yield] = ACTIONS(4500), - [anon_sym_break] = ACTIONS(4500), - [anon_sym_continue] = ACTIONS(4500), - [anon_sym_defer] = ACTIONS(4500), - [anon_sym_errdefer] = ACTIONS(4500), - [anon_sym_if] = ACTIONS(4500), - [anon_sym_else] = ACTIONS(4500), - [anon_sym_while] = ACTIONS(4500), - [anon_sym_expand] = ACTIONS(4500), - [anon_sym_for] = ACTIONS(4500), - [anon_sym_match] = ACTIONS(4500), - [anon_sym_AMP] = ACTIONS(4498), - [anon_sym_TILDE] = ACTIONS(4498), - [anon_sym_try] = ACTIONS(4500), - [anon_sym_DOT] = ACTIONS(4498), - [anon_sym_true] = ACTIONS(4500), - [anon_sym_false] = ACTIONS(4500), - [anon_sym_null] = ACTIONS(4500), - [anon_sym_unreachable] = ACTIONS(4500), - [anon_sym_undefined] = ACTIONS(4500), - [sym_sink] = ACTIONS(4500), - [sym_integer] = ACTIONS(4500), - [sym_float] = ACTIONS(4498), - [anon_sym_DQUOTE] = ACTIONS(4498), - [sym_multiline_string] = ACTIONS(4498), - [sym_character] = ACTIONS(4498), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4498), - }, - [STATE(1876)] = { - [ts_builtin_sym_end] = ACTIONS(4502), - [sym_identifier] = ACTIONS(4504), - [anon_sym_import] = ACTIONS(4504), - [anon_sym_test] = ACTIONS(4504), - [anon_sym_hide] = ACTIONS(4504), - [anon_sym_func] = ACTIONS(4504), - [anon_sym_BANG] = ACTIONS(4502), - [anon_sym_struct] = ACTIONS(4504), - [anon_sym_LPAREN] = ACTIONS(4502), - [anon_sym_RPAREN] = ACTIONS(4502), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_RBRACE] = ACTIONS(4502), - [anon_sym_DASH] = ACTIONS(4502), - [anon_sym_DOLLAR] = ACTIONS(4502), - [anon_sym_LBRACK] = ACTIONS(4502), - [anon_sym_void] = ACTIONS(4504), - [anon_sym_noreturn] = ACTIONS(4504), - [anon_sym_type] = ACTIONS(4504), - [anon_sym_anyopaque] = ACTIONS(4504), - [anon_sym_bool] = ACTIONS(4504), - [anon_sym_int] = ACTIONS(4504), - [anon_sym_uint] = ACTIONS(4504), - [anon_sym_float] = ACTIONS(4504), - [anon_sym_range] = ACTIONS(4504), - [anon_sym_i8] = ACTIONS(4504), - [anon_sym_i16] = ACTIONS(4504), - [anon_sym_i32] = ACTIONS(4504), - [anon_sym_i64] = ACTIONS(4504), - [anon_sym_u8] = ACTIONS(4504), - [anon_sym_u16] = ACTIONS(4504), - [anon_sym_u32] = ACTIONS(4504), - [anon_sym_u64] = ACTIONS(4504), - [anon_sym_isize] = ACTIONS(4504), - [anon_sym_usize] = ACTIONS(4504), - [anon_sym_f32] = ACTIONS(4504), - [anon_sym_f64] = ACTIONS(4504), - [anon_sym_c_char] = ACTIONS(4504), - [anon_sym_c_schar] = ACTIONS(4504), - [anon_sym_c_uchar] = ACTIONS(4504), - [anon_sym_c_short] = ACTIONS(4504), - [anon_sym_c_ushort] = ACTIONS(4504), - [anon_sym_c_int] = ACTIONS(4504), - [anon_sym_c_uint] = ACTIONS(4504), - [anon_sym_c_long] = ACTIONS(4504), - [anon_sym_c_ulong] = ACTIONS(4504), - [anon_sym_c_longlong] = ACTIONS(4504), - [anon_sym_c_ulonglong] = ACTIONS(4504), - [anon_sym_c_float] = ACTIONS(4504), - [anon_sym_c_double] = ACTIONS(4504), - [anon_sym_c_longdouble] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_yield] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_defer] = ACTIONS(4504), - [anon_sym_errdefer] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_while] = ACTIONS(4504), - [anon_sym_expand] = ACTIONS(4504), - [anon_sym_for] = ACTIONS(4504), - [anon_sym_match] = ACTIONS(4504), - [anon_sym_AMP] = ACTIONS(4502), - [anon_sym_TILDE] = ACTIONS(4502), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4502), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_unreachable] = ACTIONS(4504), - [anon_sym_undefined] = ACTIONS(4504), - [sym_sink] = ACTIONS(4504), - [sym_integer] = ACTIONS(4504), - [sym_float] = ACTIONS(4502), - [anon_sym_DQUOTE] = ACTIONS(4502), - [sym_multiline_string] = ACTIONS(4502), - [sym_character] = ACTIONS(4502), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4502), - }, - [STATE(1877)] = { - [ts_builtin_sym_end] = ACTIONS(4506), - [sym_identifier] = ACTIONS(4508), - [anon_sym_import] = ACTIONS(4508), - [anon_sym_test] = ACTIONS(4508), - [anon_sym_hide] = ACTIONS(4508), - [anon_sym_func] = ACTIONS(4508), - [anon_sym_BANG] = ACTIONS(4506), - [anon_sym_struct] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_RPAREN] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_DASH] = ACTIONS(4506), - [anon_sym_DOLLAR] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_void] = ACTIONS(4508), - [anon_sym_noreturn] = ACTIONS(4508), - [anon_sym_type] = ACTIONS(4508), - [anon_sym_anyopaque] = ACTIONS(4508), - [anon_sym_bool] = ACTIONS(4508), - [anon_sym_int] = ACTIONS(4508), - [anon_sym_uint] = ACTIONS(4508), - [anon_sym_float] = ACTIONS(4508), - [anon_sym_range] = ACTIONS(4508), - [anon_sym_i8] = ACTIONS(4508), - [anon_sym_i16] = ACTIONS(4508), - [anon_sym_i32] = ACTIONS(4508), - [anon_sym_i64] = ACTIONS(4508), - [anon_sym_u8] = ACTIONS(4508), - [anon_sym_u16] = ACTIONS(4508), - [anon_sym_u32] = ACTIONS(4508), - [anon_sym_u64] = ACTIONS(4508), - [anon_sym_isize] = ACTIONS(4508), - [anon_sym_usize] = ACTIONS(4508), - [anon_sym_f32] = ACTIONS(4508), - [anon_sym_f64] = ACTIONS(4508), - [anon_sym_c_char] = ACTIONS(4508), - [anon_sym_c_schar] = ACTIONS(4508), - [anon_sym_c_uchar] = ACTIONS(4508), - [anon_sym_c_short] = ACTIONS(4508), - [anon_sym_c_ushort] = ACTIONS(4508), - [anon_sym_c_int] = ACTIONS(4508), - [anon_sym_c_uint] = ACTIONS(4508), - [anon_sym_c_long] = ACTIONS(4508), - [anon_sym_c_ulong] = ACTIONS(4508), - [anon_sym_c_longlong] = ACTIONS(4508), - [anon_sym_c_ulonglong] = ACTIONS(4508), - [anon_sym_c_float] = ACTIONS(4508), - [anon_sym_c_double] = ACTIONS(4508), - [anon_sym_c_longdouble] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4508), - [anon_sym_yield] = ACTIONS(4508), - [anon_sym_break] = ACTIONS(4508), - [anon_sym_continue] = ACTIONS(4508), - [anon_sym_defer] = ACTIONS(4508), - [anon_sym_errdefer] = ACTIONS(4508), - [anon_sym_if] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_while] = ACTIONS(4508), - [anon_sym_expand] = ACTIONS(4508), - [anon_sym_for] = ACTIONS(4508), - [anon_sym_match] = ACTIONS(4508), - [anon_sym_AMP] = ACTIONS(4506), - [anon_sym_TILDE] = ACTIONS(4506), - [anon_sym_try] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4508), - [anon_sym_false] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4508), - [anon_sym_unreachable] = ACTIONS(4508), - [anon_sym_undefined] = ACTIONS(4508), - [sym_sink] = ACTIONS(4508), - [sym_integer] = ACTIONS(4508), - [sym_float] = ACTIONS(4506), - [anon_sym_DQUOTE] = ACTIONS(4506), - [sym_multiline_string] = ACTIONS(4506), - [sym_character] = ACTIONS(4506), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4506), - }, - [STATE(1878)] = { - [ts_builtin_sym_end] = ACTIONS(4510), - [sym_identifier] = ACTIONS(4512), - [anon_sym_import] = ACTIONS(4512), - [anon_sym_test] = ACTIONS(4512), - [anon_sym_hide] = ACTIONS(4512), - [anon_sym_func] = ACTIONS(4512), - [anon_sym_BANG] = ACTIONS(4510), - [anon_sym_struct] = ACTIONS(4512), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_RPAREN] = ACTIONS(4510), - [anon_sym_LBRACE] = ACTIONS(4510), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_DASH] = ACTIONS(4510), - [anon_sym_DOLLAR] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_void] = ACTIONS(4512), - [anon_sym_noreturn] = ACTIONS(4512), - [anon_sym_type] = ACTIONS(4512), - [anon_sym_anyopaque] = ACTIONS(4512), - [anon_sym_bool] = ACTIONS(4512), - [anon_sym_int] = ACTIONS(4512), - [anon_sym_uint] = ACTIONS(4512), - [anon_sym_float] = ACTIONS(4512), - [anon_sym_range] = ACTIONS(4512), - [anon_sym_i8] = ACTIONS(4512), - [anon_sym_i16] = ACTIONS(4512), - [anon_sym_i32] = ACTIONS(4512), - [anon_sym_i64] = ACTIONS(4512), - [anon_sym_u8] = ACTIONS(4512), - [anon_sym_u16] = ACTIONS(4512), - [anon_sym_u32] = ACTIONS(4512), - [anon_sym_u64] = ACTIONS(4512), - [anon_sym_isize] = ACTIONS(4512), - [anon_sym_usize] = ACTIONS(4512), - [anon_sym_f32] = ACTIONS(4512), - [anon_sym_f64] = ACTIONS(4512), - [anon_sym_c_char] = ACTIONS(4512), - [anon_sym_c_schar] = ACTIONS(4512), - [anon_sym_c_uchar] = ACTIONS(4512), - [anon_sym_c_short] = ACTIONS(4512), - [anon_sym_c_ushort] = ACTIONS(4512), - [anon_sym_c_int] = ACTIONS(4512), - [anon_sym_c_uint] = ACTIONS(4512), - [anon_sym_c_long] = ACTIONS(4512), - [anon_sym_c_ulong] = ACTIONS(4512), - [anon_sym_c_longlong] = ACTIONS(4512), - [anon_sym_c_ulonglong] = ACTIONS(4512), - [anon_sym_c_float] = ACTIONS(4512), - [anon_sym_c_double] = ACTIONS(4512), - [anon_sym_c_longdouble] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_yield] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_defer] = ACTIONS(4512), - [anon_sym_errdefer] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_while] = ACTIONS(4512), - [anon_sym_expand] = ACTIONS(4512), - [anon_sym_for] = ACTIONS(4512), - [anon_sym_match] = ACTIONS(4512), - [anon_sym_AMP] = ACTIONS(4510), - [anon_sym_TILDE] = ACTIONS(4510), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_unreachable] = ACTIONS(4512), - [anon_sym_undefined] = ACTIONS(4512), - [sym_sink] = ACTIONS(4512), - [sym_integer] = ACTIONS(4512), - [sym_float] = ACTIONS(4510), - [anon_sym_DQUOTE] = ACTIONS(4510), - [sym_multiline_string] = ACTIONS(4510), - [sym_character] = ACTIONS(4510), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4510), - }, - [STATE(1879)] = { - [ts_builtin_sym_end] = ACTIONS(4514), - [sym_identifier] = ACTIONS(4516), - [anon_sym_import] = ACTIONS(4516), - [anon_sym_test] = ACTIONS(4516), - [anon_sym_hide] = ACTIONS(4516), - [anon_sym_func] = ACTIONS(4516), - [anon_sym_BANG] = ACTIONS(4514), - [anon_sym_struct] = ACTIONS(4516), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_RPAREN] = ACTIONS(4514), - [anon_sym_LBRACE] = ACTIONS(4514), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_DASH] = ACTIONS(4514), - [anon_sym_DOLLAR] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_void] = ACTIONS(4516), - [anon_sym_noreturn] = ACTIONS(4516), - [anon_sym_type] = ACTIONS(4516), - [anon_sym_anyopaque] = ACTIONS(4516), - [anon_sym_bool] = ACTIONS(4516), - [anon_sym_int] = ACTIONS(4516), - [anon_sym_uint] = ACTIONS(4516), - [anon_sym_float] = ACTIONS(4516), - [anon_sym_range] = ACTIONS(4516), - [anon_sym_i8] = ACTIONS(4516), - [anon_sym_i16] = ACTIONS(4516), - [anon_sym_i32] = ACTIONS(4516), - [anon_sym_i64] = ACTIONS(4516), - [anon_sym_u8] = ACTIONS(4516), - [anon_sym_u16] = ACTIONS(4516), - [anon_sym_u32] = ACTIONS(4516), - [anon_sym_u64] = ACTIONS(4516), - [anon_sym_isize] = ACTIONS(4516), - [anon_sym_usize] = ACTIONS(4516), - [anon_sym_f32] = ACTIONS(4516), - [anon_sym_f64] = ACTIONS(4516), - [anon_sym_c_char] = ACTIONS(4516), - [anon_sym_c_schar] = ACTIONS(4516), - [anon_sym_c_uchar] = ACTIONS(4516), - [anon_sym_c_short] = ACTIONS(4516), - [anon_sym_c_ushort] = ACTIONS(4516), - [anon_sym_c_int] = ACTIONS(4516), - [anon_sym_c_uint] = ACTIONS(4516), - [anon_sym_c_long] = ACTIONS(4516), - [anon_sym_c_ulong] = ACTIONS(4516), - [anon_sym_c_longlong] = ACTIONS(4516), - [anon_sym_c_ulonglong] = ACTIONS(4516), - [anon_sym_c_float] = ACTIONS(4516), - [anon_sym_c_double] = ACTIONS(4516), - [anon_sym_c_longdouble] = ACTIONS(4516), - [anon_sym_return] = ACTIONS(4516), - [anon_sym_yield] = ACTIONS(4516), - [anon_sym_break] = ACTIONS(4516), - [anon_sym_continue] = ACTIONS(4516), - [anon_sym_defer] = ACTIONS(4516), - [anon_sym_errdefer] = ACTIONS(4516), - [anon_sym_if] = ACTIONS(4516), - [anon_sym_else] = ACTIONS(4516), - [anon_sym_while] = ACTIONS(4516), - [anon_sym_expand] = ACTIONS(4516), - [anon_sym_for] = ACTIONS(4516), - [anon_sym_match] = ACTIONS(4516), - [anon_sym_AMP] = ACTIONS(4514), - [anon_sym_TILDE] = ACTIONS(4514), - [anon_sym_try] = ACTIONS(4516), - [anon_sym_DOT] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4516), - [anon_sym_false] = ACTIONS(4516), - [anon_sym_null] = ACTIONS(4516), - [anon_sym_unreachable] = ACTIONS(4516), - [anon_sym_undefined] = ACTIONS(4516), - [sym_sink] = ACTIONS(4516), - [sym_integer] = ACTIONS(4516), - [sym_float] = ACTIONS(4514), - [anon_sym_DQUOTE] = ACTIONS(4514), - [sym_multiline_string] = ACTIONS(4514), - [sym_character] = ACTIONS(4514), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4514), - }, - [STATE(1880)] = { - [ts_builtin_sym_end] = ACTIONS(4518), - [sym_identifier] = ACTIONS(4520), - [anon_sym_import] = ACTIONS(4520), - [anon_sym_test] = ACTIONS(4520), - [anon_sym_hide] = ACTIONS(4520), - [anon_sym_func] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4518), - [anon_sym_struct] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4518), - [anon_sym_RPAREN] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4518), - [anon_sym_RBRACE] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_DOLLAR] = ACTIONS(4518), - [anon_sym_LBRACK] = ACTIONS(4518), - [anon_sym_void] = ACTIONS(4520), - [anon_sym_noreturn] = ACTIONS(4520), - [anon_sym_type] = ACTIONS(4520), - [anon_sym_anyopaque] = ACTIONS(4520), - [anon_sym_bool] = ACTIONS(4520), - [anon_sym_int] = ACTIONS(4520), - [anon_sym_uint] = ACTIONS(4520), - [anon_sym_float] = ACTIONS(4520), - [anon_sym_range] = ACTIONS(4520), - [anon_sym_i8] = ACTIONS(4520), - [anon_sym_i16] = ACTIONS(4520), - [anon_sym_i32] = ACTIONS(4520), - [anon_sym_i64] = ACTIONS(4520), - [anon_sym_u8] = ACTIONS(4520), - [anon_sym_u16] = ACTIONS(4520), - [anon_sym_u32] = ACTIONS(4520), - [anon_sym_u64] = ACTIONS(4520), - [anon_sym_isize] = ACTIONS(4520), - [anon_sym_usize] = ACTIONS(4520), - [anon_sym_f32] = ACTIONS(4520), - [anon_sym_f64] = ACTIONS(4520), - [anon_sym_c_char] = ACTIONS(4520), - [anon_sym_c_schar] = ACTIONS(4520), - [anon_sym_c_uchar] = ACTIONS(4520), - [anon_sym_c_short] = ACTIONS(4520), - [anon_sym_c_ushort] = ACTIONS(4520), - [anon_sym_c_int] = ACTIONS(4520), - [anon_sym_c_uint] = ACTIONS(4520), - [anon_sym_c_long] = ACTIONS(4520), - [anon_sym_c_ulong] = ACTIONS(4520), - [anon_sym_c_longlong] = ACTIONS(4520), - [anon_sym_c_ulonglong] = ACTIONS(4520), - [anon_sym_c_float] = ACTIONS(4520), - [anon_sym_c_double] = ACTIONS(4520), - [anon_sym_c_longdouble] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_yield] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_defer] = ACTIONS(4520), - [anon_sym_errdefer] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_while] = ACTIONS(4520), - [anon_sym_expand] = ACTIONS(4520), - [anon_sym_for] = ACTIONS(4520), - [anon_sym_match] = ACTIONS(4520), - [anon_sym_AMP] = ACTIONS(4518), - [anon_sym_TILDE] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4518), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_unreachable] = ACTIONS(4520), - [anon_sym_undefined] = ACTIONS(4520), - [sym_sink] = ACTIONS(4520), - [sym_integer] = ACTIONS(4520), - [sym_float] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4518), - [sym_multiline_string] = ACTIONS(4518), - [sym_character] = ACTIONS(4518), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4518), - }, - [STATE(1881)] = { - [ts_builtin_sym_end] = ACTIONS(4522), - [sym_identifier] = ACTIONS(4524), - [anon_sym_import] = ACTIONS(4524), - [anon_sym_test] = ACTIONS(4524), - [anon_sym_hide] = ACTIONS(4524), - [anon_sym_func] = ACTIONS(4524), - [anon_sym_BANG] = ACTIONS(4522), - [anon_sym_struct] = ACTIONS(4524), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_RPAREN] = ACTIONS(4522), - [anon_sym_LBRACE] = ACTIONS(4522), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_DASH] = ACTIONS(4522), - [anon_sym_DOLLAR] = ACTIONS(4522), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_void] = ACTIONS(4524), - [anon_sym_noreturn] = 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(4524), - [anon_sym_while] = ACTIONS(4524), - [anon_sym_expand] = ACTIONS(4524), - [anon_sym_for] = ACTIONS(4524), - [anon_sym_match] = ACTIONS(4524), - [anon_sym_AMP] = ACTIONS(4522), - [anon_sym_TILDE] = ACTIONS(4522), - [anon_sym_try] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4524), - [anon_sym_false] = ACTIONS(4524), - [anon_sym_null] = ACTIONS(4524), - [anon_sym_unreachable] = ACTIONS(4524), - [anon_sym_undefined] = ACTIONS(4524), - [sym_sink] = ACTIONS(4524), - [sym_integer] = ACTIONS(4524), - [sym_float] = ACTIONS(4522), - [anon_sym_DQUOTE] = ACTIONS(4522), - [sym_multiline_string] = ACTIONS(4522), - [sym_character] = ACTIONS(4522), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4522), - }, - [STATE(1882)] = { - [ts_builtin_sym_end] = ACTIONS(4526), - [sym_identifier] = ACTIONS(4528), - [anon_sym_import] = ACTIONS(4528), - [anon_sym_test] = ACTIONS(4528), - [anon_sym_hide] = ACTIONS(4528), - [anon_sym_func] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4526), - [anon_sym_struct] = ACTIONS(4528), - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_RPAREN] = 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(4528), - [anon_sym_noreturn] = ACTIONS(4528), - [anon_sym_type] = ACTIONS(4528), - [anon_sym_anyopaque] = ACTIONS(4528), - [anon_sym_bool] = ACTIONS(4528), - [anon_sym_int] = ACTIONS(4528), - [anon_sym_uint] = ACTIONS(4528), - [anon_sym_float] = ACTIONS(4528), - [anon_sym_range] = ACTIONS(4528), - [anon_sym_i8] = ACTIONS(4528), - [anon_sym_i16] = ACTIONS(4528), - [anon_sym_i32] = ACTIONS(4528), - [anon_sym_i64] = ACTIONS(4528), - [anon_sym_u8] = ACTIONS(4528), - [anon_sym_u16] = ACTIONS(4528), - [anon_sym_u32] = ACTIONS(4528), - [anon_sym_u64] = ACTIONS(4528), - [anon_sym_isize] = ACTIONS(4528), - [anon_sym_usize] = ACTIONS(4528), - [anon_sym_f32] = ACTIONS(4528), - [anon_sym_f64] = ACTIONS(4528), - [anon_sym_c_char] = ACTIONS(4528), - [anon_sym_c_schar] = ACTIONS(4528), - [anon_sym_c_uchar] = ACTIONS(4528), - [anon_sym_c_short] = ACTIONS(4528), - [anon_sym_c_ushort] = ACTIONS(4528), - [anon_sym_c_int] = ACTIONS(4528), - [anon_sym_c_uint] = ACTIONS(4528), - [anon_sym_c_long] = ACTIONS(4528), - [anon_sym_c_ulong] = ACTIONS(4528), - [anon_sym_c_longlong] = ACTIONS(4528), - [anon_sym_c_ulonglong] = ACTIONS(4528), - [anon_sym_c_float] = ACTIONS(4528), - [anon_sym_c_double] = ACTIONS(4528), - [anon_sym_c_longdouble] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_yield] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_defer] = ACTIONS(4528), - [anon_sym_errdefer] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_while] = ACTIONS(4528), - [anon_sym_expand] = ACTIONS(4528), - [anon_sym_for] = ACTIONS(4528), - [anon_sym_match] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_TILDE] = ACTIONS(4526), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4526), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_unreachable] = ACTIONS(4528), - [anon_sym_undefined] = ACTIONS(4528), - [sym_sink] = ACTIONS(4528), - [sym_integer] = ACTIONS(4528), - [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(4526), - }, - [STATE(1883)] = { - [ts_builtin_sym_end] = ACTIONS(4530), - [sym_identifier] = ACTIONS(4532), - [anon_sym_import] = ACTIONS(4532), - [anon_sym_test] = ACTIONS(4532), - [anon_sym_hide] = ACTIONS(4532), - [anon_sym_func] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_struct] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_RPAREN] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4530), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_DOLLAR] = ACTIONS(4530), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_void] = ACTIONS(4532), - [anon_sym_noreturn] = ACTIONS(4532), - [anon_sym_type] = ACTIONS(4532), - [anon_sym_anyopaque] = ACTIONS(4532), - [anon_sym_bool] = ACTIONS(4532), - [anon_sym_int] = ACTIONS(4532), - [anon_sym_uint] = ACTIONS(4532), - [anon_sym_float] = ACTIONS(4532), - [anon_sym_range] = ACTIONS(4532), - [anon_sym_i8] = ACTIONS(4532), - [anon_sym_i16] = ACTIONS(4532), - [anon_sym_i32] = ACTIONS(4532), - [anon_sym_i64] = ACTIONS(4532), - [anon_sym_u8] = ACTIONS(4532), - [anon_sym_u16] = ACTIONS(4532), - [anon_sym_u32] = ACTIONS(4532), - [anon_sym_u64] = ACTIONS(4532), - [anon_sym_isize] = ACTIONS(4532), - [anon_sym_usize] = ACTIONS(4532), - [anon_sym_f32] = ACTIONS(4532), - [anon_sym_f64] = ACTIONS(4532), - [anon_sym_c_char] = ACTIONS(4532), - [anon_sym_c_schar] = ACTIONS(4532), - [anon_sym_c_uchar] = ACTIONS(4532), - [anon_sym_c_short] = ACTIONS(4532), - [anon_sym_c_ushort] = ACTIONS(4532), - [anon_sym_c_int] = ACTIONS(4532), - [anon_sym_c_uint] = ACTIONS(4532), - [anon_sym_c_long] = ACTIONS(4532), - [anon_sym_c_ulong] = ACTIONS(4532), - [anon_sym_c_longlong] = ACTIONS(4532), - [anon_sym_c_ulonglong] = ACTIONS(4532), - [anon_sym_c_float] = ACTIONS(4532), - [anon_sym_c_double] = ACTIONS(4532), - [anon_sym_c_longdouble] = ACTIONS(4532), - [anon_sym_return] = ACTIONS(4532), - [anon_sym_yield] = ACTIONS(4532), - [anon_sym_break] = ACTIONS(4532), - [anon_sym_continue] = ACTIONS(4532), - [anon_sym_defer] = ACTIONS(4532), - [anon_sym_errdefer] = ACTIONS(4532), - [anon_sym_if] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4532), - [anon_sym_while] = ACTIONS(4532), - [anon_sym_expand] = ACTIONS(4532), - [anon_sym_for] = ACTIONS(4532), - [anon_sym_match] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_TILDE] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4532), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4532), - [anon_sym_false] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4532), - [anon_sym_unreachable] = ACTIONS(4532), - [anon_sym_undefined] = ACTIONS(4532), - [sym_sink] = ACTIONS(4532), - [sym_integer] = ACTIONS(4532), - [sym_float] = ACTIONS(4530), - [anon_sym_DQUOTE] = ACTIONS(4530), - [sym_multiline_string] = ACTIONS(4530), - [sym_character] = ACTIONS(4530), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4530), - }, - [STATE(1884)] = { - [ts_builtin_sym_end] = ACTIONS(4534), - [sym_identifier] = ACTIONS(4536), - [anon_sym_import] = ACTIONS(4536), - [anon_sym_test] = ACTIONS(4536), - [anon_sym_hide] = ACTIONS(4536), - [anon_sym_func] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_struct] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4534), - [anon_sym_RPAREN] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4534), - [anon_sym_RBRACE] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_DOLLAR] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_void] = ACTIONS(4536), - [anon_sym_noreturn] = ACTIONS(4536), - [anon_sym_type] = ACTIONS(4536), - [anon_sym_anyopaque] = ACTIONS(4536), - [anon_sym_bool] = ACTIONS(4536), - [anon_sym_int] = ACTIONS(4536), - [anon_sym_uint] = ACTIONS(4536), - [anon_sym_float] = ACTIONS(4536), - [anon_sym_range] = ACTIONS(4536), - [anon_sym_i8] = ACTIONS(4536), - [anon_sym_i16] = ACTIONS(4536), - [anon_sym_i32] = ACTIONS(4536), - [anon_sym_i64] = ACTIONS(4536), - [anon_sym_u8] = ACTIONS(4536), - [anon_sym_u16] = ACTIONS(4536), - [anon_sym_u32] = ACTIONS(4536), - [anon_sym_u64] = ACTIONS(4536), - [anon_sym_isize] = ACTIONS(4536), - [anon_sym_usize] = ACTIONS(4536), - [anon_sym_f32] = ACTIONS(4536), - [anon_sym_f64] = ACTIONS(4536), - [anon_sym_c_char] = ACTIONS(4536), - [anon_sym_c_schar] = ACTIONS(4536), - [anon_sym_c_uchar] = ACTIONS(4536), - [anon_sym_c_short] = ACTIONS(4536), - [anon_sym_c_ushort] = ACTIONS(4536), - [anon_sym_c_int] = ACTIONS(4536), - [anon_sym_c_uint] = ACTIONS(4536), - [anon_sym_c_long] = ACTIONS(4536), - [anon_sym_c_ulong] = ACTIONS(4536), - [anon_sym_c_longlong] = ACTIONS(4536), - [anon_sym_c_ulonglong] = ACTIONS(4536), - [anon_sym_c_float] = ACTIONS(4536), - [anon_sym_c_double] = ACTIONS(4536), - [anon_sym_c_longdouble] = ACTIONS(4536), - [anon_sym_return] = ACTIONS(4536), - [anon_sym_yield] = ACTIONS(4536), - [anon_sym_break] = ACTIONS(4536), - [anon_sym_continue] = ACTIONS(4536), - [anon_sym_defer] = ACTIONS(4536), - [anon_sym_errdefer] = ACTIONS(4536), - [anon_sym_if] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4536), - [anon_sym_while] = ACTIONS(4536), - [anon_sym_expand] = ACTIONS(4536), - [anon_sym_for] = ACTIONS(4536), - [anon_sym_match] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4534), - [anon_sym_TILDE] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4536), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_true] = ACTIONS(4536), - [anon_sym_false] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4536), - [anon_sym_unreachable] = ACTIONS(4536), - [anon_sym_undefined] = ACTIONS(4536), - [sym_sink] = ACTIONS(4536), - [sym_integer] = ACTIONS(4536), - [sym_float] = ACTIONS(4534), - [anon_sym_DQUOTE] = ACTIONS(4534), - [sym_multiline_string] = ACTIONS(4534), - [sym_character] = ACTIONS(4534), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4534), - }, - [STATE(1885)] = { - [ts_builtin_sym_end] = ACTIONS(4538), - [sym_identifier] = ACTIONS(4540), - [anon_sym_import] = ACTIONS(4540), - [anon_sym_test] = ACTIONS(4540), - [anon_sym_hide] = ACTIONS(4540), - [anon_sym_func] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_struct] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4538), - [anon_sym_RPAREN] = ACTIONS(4538), - [anon_sym_LBRACE] = ACTIONS(4538), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_DOLLAR] = ACTIONS(4538), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_void] = ACTIONS(4540), - [anon_sym_noreturn] = ACTIONS(4540), - [anon_sym_type] = ACTIONS(4540), - [anon_sym_anyopaque] = ACTIONS(4540), - [anon_sym_bool] = ACTIONS(4540), - [anon_sym_int] = ACTIONS(4540), - [anon_sym_uint] = ACTIONS(4540), - [anon_sym_float] = ACTIONS(4540), - [anon_sym_range] = ACTIONS(4540), - [anon_sym_i8] = ACTIONS(4540), - [anon_sym_i16] = ACTIONS(4540), - [anon_sym_i32] = ACTIONS(4540), - [anon_sym_i64] = ACTIONS(4540), - [anon_sym_u8] = ACTIONS(4540), - [anon_sym_u16] = ACTIONS(4540), - [anon_sym_u32] = ACTIONS(4540), - [anon_sym_u64] = ACTIONS(4540), - [anon_sym_isize] = ACTIONS(4540), - [anon_sym_usize] = ACTIONS(4540), - [anon_sym_f32] = ACTIONS(4540), - [anon_sym_f64] = ACTIONS(4540), - [anon_sym_c_char] = ACTIONS(4540), - [anon_sym_c_schar] = ACTIONS(4540), - [anon_sym_c_uchar] = ACTIONS(4540), - [anon_sym_c_short] = ACTIONS(4540), - [anon_sym_c_ushort] = ACTIONS(4540), - [anon_sym_c_int] = ACTIONS(4540), - [anon_sym_c_uint] = ACTIONS(4540), - [anon_sym_c_long] = ACTIONS(4540), - [anon_sym_c_ulong] = ACTIONS(4540), - [anon_sym_c_longlong] = ACTIONS(4540), - [anon_sym_c_ulonglong] = ACTIONS(4540), - [anon_sym_c_float] = ACTIONS(4540), - [anon_sym_c_double] = ACTIONS(4540), - [anon_sym_c_longdouble] = ACTIONS(4540), - [anon_sym_return] = ACTIONS(4540), - [anon_sym_yield] = ACTIONS(4540), - [anon_sym_break] = ACTIONS(4540), - [anon_sym_continue] = ACTIONS(4540), - [anon_sym_defer] = ACTIONS(4540), - [anon_sym_errdefer] = ACTIONS(4540), - [anon_sym_if] = ACTIONS(4540), - [anon_sym_else] = ACTIONS(4540), - [anon_sym_while] = ACTIONS(4540), - [anon_sym_expand] = ACTIONS(4540), - [anon_sym_for] = ACTIONS(4540), - [anon_sym_match] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_TILDE] = ACTIONS(4538), - [anon_sym_try] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_true] = ACTIONS(4540), - [anon_sym_false] = ACTIONS(4540), - [anon_sym_null] = ACTIONS(4540), - [anon_sym_unreachable] = ACTIONS(4540), - [anon_sym_undefined] = ACTIONS(4540), - [sym_sink] = ACTIONS(4540), - [sym_integer] = ACTIONS(4540), - [sym_float] = ACTIONS(4538), - [anon_sym_DQUOTE] = ACTIONS(4538), - [sym_multiline_string] = ACTIONS(4538), - [sym_character] = ACTIONS(4538), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4538), - }, - [STATE(1886)] = { - [ts_builtin_sym_end] = ACTIONS(4542), - [sym_identifier] = ACTIONS(4544), - [anon_sym_import] = ACTIONS(4544), - [anon_sym_test] = ACTIONS(4544), - [anon_sym_hide] = ACTIONS(4544), - [anon_sym_func] = ACTIONS(4544), - [anon_sym_BANG] = ACTIONS(4542), - [anon_sym_struct] = ACTIONS(4544), - [anon_sym_LPAREN] = ACTIONS(4542), - [anon_sym_RPAREN] = ACTIONS(4542), - [anon_sym_LBRACE] = ACTIONS(4542), - [anon_sym_RBRACE] = ACTIONS(4542), - [anon_sym_DASH] = ACTIONS(4542), - [anon_sym_DOLLAR] = ACTIONS(4542), - [anon_sym_LBRACK] = ACTIONS(4542), - [anon_sym_void] = ACTIONS(4544), - [anon_sym_noreturn] = ACTIONS(4544), - [anon_sym_type] = ACTIONS(4544), - [anon_sym_anyopaque] = ACTIONS(4544), - [anon_sym_bool] = ACTIONS(4544), - [anon_sym_int] = ACTIONS(4544), - [anon_sym_uint] = ACTIONS(4544), - [anon_sym_float] = ACTIONS(4544), - [anon_sym_range] = ACTIONS(4544), - [anon_sym_i8] = ACTIONS(4544), - [anon_sym_i16] = ACTIONS(4544), - [anon_sym_i32] = ACTIONS(4544), - [anon_sym_i64] = ACTIONS(4544), - [anon_sym_u8] = ACTIONS(4544), - [anon_sym_u16] = ACTIONS(4544), - [anon_sym_u32] = ACTIONS(4544), - [anon_sym_u64] = ACTIONS(4544), - [anon_sym_isize] = ACTIONS(4544), - [anon_sym_usize] = ACTIONS(4544), - [anon_sym_f32] = ACTIONS(4544), - [anon_sym_f64] = ACTIONS(4544), - [anon_sym_c_char] = ACTIONS(4544), - [anon_sym_c_schar] = ACTIONS(4544), - [anon_sym_c_uchar] = ACTIONS(4544), - [anon_sym_c_short] = ACTIONS(4544), - [anon_sym_c_ushort] = ACTIONS(4544), - [anon_sym_c_int] = ACTIONS(4544), - [anon_sym_c_uint] = ACTIONS(4544), - [anon_sym_c_long] = ACTIONS(4544), - [anon_sym_c_ulong] = ACTIONS(4544), - [anon_sym_c_longlong] = ACTIONS(4544), - [anon_sym_c_ulonglong] = ACTIONS(4544), - [anon_sym_c_float] = ACTIONS(4544), - [anon_sym_c_double] = ACTIONS(4544), - [anon_sym_c_longdouble] = ACTIONS(4544), - [anon_sym_return] = ACTIONS(4544), - [anon_sym_yield] = ACTIONS(4544), - [anon_sym_break] = ACTIONS(4544), - [anon_sym_continue] = ACTIONS(4544), - [anon_sym_defer] = ACTIONS(4544), - [anon_sym_errdefer] = ACTIONS(4544), - [anon_sym_if] = ACTIONS(4544), - [anon_sym_else] = ACTIONS(4544), - [anon_sym_while] = ACTIONS(4544), - [anon_sym_expand] = ACTIONS(4544), - [anon_sym_for] = ACTIONS(4544), - [anon_sym_match] = ACTIONS(4544), - [anon_sym_AMP] = ACTIONS(4542), - [anon_sym_TILDE] = ACTIONS(4542), - [anon_sym_try] = ACTIONS(4544), - [anon_sym_DOT] = ACTIONS(4542), - [anon_sym_true] = ACTIONS(4544), - [anon_sym_false] = ACTIONS(4544), - [anon_sym_null] = ACTIONS(4544), - [anon_sym_unreachable] = ACTIONS(4544), - [anon_sym_undefined] = ACTIONS(4544), - [sym_sink] = ACTIONS(4544), - [sym_integer] = ACTIONS(4544), - [sym_float] = ACTIONS(4542), - [anon_sym_DQUOTE] = ACTIONS(4542), - [sym_multiline_string] = ACTIONS(4542), - [sym_character] = ACTIONS(4542), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4542), - }, - [STATE(1887)] = { - [ts_builtin_sym_end] = ACTIONS(4546), - [sym_identifier] = ACTIONS(4548), - [anon_sym_import] = ACTIONS(4548), - [anon_sym_test] = ACTIONS(4548), - [anon_sym_hide] = ACTIONS(4548), - [anon_sym_func] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4546), - [anon_sym_struct] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4546), - [anon_sym_RPAREN] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4546), - [anon_sym_RBRACE] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), - [anon_sym_DOLLAR] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_void] = ACTIONS(4548), - [anon_sym_noreturn] = ACTIONS(4548), - [anon_sym_type] = ACTIONS(4548), - [anon_sym_anyopaque] = ACTIONS(4548), - [anon_sym_bool] = ACTIONS(4548), - [anon_sym_int] = ACTIONS(4548), - [anon_sym_uint] = ACTIONS(4548), - [anon_sym_float] = ACTIONS(4548), - [anon_sym_range] = ACTIONS(4548), - [anon_sym_i8] = ACTIONS(4548), - [anon_sym_i16] = ACTIONS(4548), - [anon_sym_i32] = ACTIONS(4548), - [anon_sym_i64] = ACTIONS(4548), - [anon_sym_u8] = ACTIONS(4548), - [anon_sym_u16] = ACTIONS(4548), - [anon_sym_u32] = ACTIONS(4548), - [anon_sym_u64] = ACTIONS(4548), - [anon_sym_isize] = ACTIONS(4548), - [anon_sym_usize] = ACTIONS(4548), - [anon_sym_f32] = ACTIONS(4548), - [anon_sym_f64] = ACTIONS(4548), - [anon_sym_c_char] = ACTIONS(4548), - [anon_sym_c_schar] = ACTIONS(4548), - [anon_sym_c_uchar] = ACTIONS(4548), - [anon_sym_c_short] = ACTIONS(4548), - [anon_sym_c_ushort] = ACTIONS(4548), - [anon_sym_c_int] = ACTIONS(4548), - [anon_sym_c_uint] = ACTIONS(4548), - [anon_sym_c_long] = ACTIONS(4548), - [anon_sym_c_ulong] = ACTIONS(4548), - [anon_sym_c_longlong] = ACTIONS(4548), - [anon_sym_c_ulonglong] = ACTIONS(4548), - [anon_sym_c_float] = ACTIONS(4548), - [anon_sym_c_double] = ACTIONS(4548), - [anon_sym_c_longdouble] = ACTIONS(4548), - [anon_sym_return] = ACTIONS(4548), - [anon_sym_yield] = ACTIONS(4548), - [anon_sym_break] = ACTIONS(4548), - [anon_sym_continue] = ACTIONS(4548), - [anon_sym_defer] = ACTIONS(4548), - [anon_sym_errdefer] = ACTIONS(4548), - [anon_sym_if] = ACTIONS(4548), - [anon_sym_else] = ACTIONS(4548), - [anon_sym_while] = ACTIONS(4548), - [anon_sym_expand] = ACTIONS(4548), - [anon_sym_for] = ACTIONS(4548), - [anon_sym_match] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4546), - [anon_sym_TILDE] = ACTIONS(4546), - [anon_sym_try] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_true] = ACTIONS(4548), - [anon_sym_false] = ACTIONS(4548), - [anon_sym_null] = ACTIONS(4548), - [anon_sym_unreachable] = ACTIONS(4548), - [anon_sym_undefined] = ACTIONS(4548), - [sym_sink] = ACTIONS(4548), - [sym_integer] = ACTIONS(4548), - [sym_float] = ACTIONS(4546), - [anon_sym_DQUOTE] = ACTIONS(4546), - [sym_multiline_string] = ACTIONS(4546), - [sym_character] = ACTIONS(4546), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4546), - }, - [STATE(1888)] = { - [ts_builtin_sym_end] = ACTIONS(4550), - [sym_identifier] = ACTIONS(4552), - [anon_sym_import] = ACTIONS(4552), - [anon_sym_test] = ACTIONS(4552), - [anon_sym_hide] = ACTIONS(4552), - [anon_sym_func] = ACTIONS(4552), - [anon_sym_BANG] = ACTIONS(4550), - [anon_sym_struct] = ACTIONS(4552), - [anon_sym_LPAREN] = ACTIONS(4550), - [anon_sym_RPAREN] = ACTIONS(4550), - [anon_sym_LBRACE] = ACTIONS(4550), - [anon_sym_RBRACE] = ACTIONS(4550), - [anon_sym_DASH] = ACTIONS(4550), - [anon_sym_DOLLAR] = ACTIONS(4550), - [anon_sym_LBRACK] = ACTIONS(4550), - [anon_sym_void] = ACTIONS(4552), - [anon_sym_noreturn] = ACTIONS(4552), - [anon_sym_type] = ACTIONS(4552), - [anon_sym_anyopaque] = ACTIONS(4552), - [anon_sym_bool] = ACTIONS(4552), - [anon_sym_int] = ACTIONS(4552), - [anon_sym_uint] = ACTIONS(4552), - [anon_sym_float] = ACTIONS(4552), - [anon_sym_range] = ACTIONS(4552), - [anon_sym_i8] = ACTIONS(4552), - [anon_sym_i16] = ACTIONS(4552), - [anon_sym_i32] = ACTIONS(4552), - [anon_sym_i64] = ACTIONS(4552), - [anon_sym_u8] = ACTIONS(4552), - [anon_sym_u16] = ACTIONS(4552), - [anon_sym_u32] = ACTIONS(4552), - [anon_sym_u64] = ACTIONS(4552), - [anon_sym_isize] = ACTIONS(4552), - [anon_sym_usize] = ACTIONS(4552), - [anon_sym_f32] = ACTIONS(4552), - [anon_sym_f64] = ACTIONS(4552), - [anon_sym_c_char] = ACTIONS(4552), - [anon_sym_c_schar] = ACTIONS(4552), - [anon_sym_c_uchar] = ACTIONS(4552), - [anon_sym_c_short] = ACTIONS(4552), - [anon_sym_c_ushort] = ACTIONS(4552), - [anon_sym_c_int] = ACTIONS(4552), - [anon_sym_c_uint] = ACTIONS(4552), - [anon_sym_c_long] = ACTIONS(4552), - [anon_sym_c_ulong] = ACTIONS(4552), - [anon_sym_c_longlong] = ACTIONS(4552), - [anon_sym_c_ulonglong] = ACTIONS(4552), - [anon_sym_c_float] = ACTIONS(4552), - [anon_sym_c_double] = ACTIONS(4552), - [anon_sym_c_longdouble] = ACTIONS(4552), - [anon_sym_return] = ACTIONS(4552), - [anon_sym_yield] = ACTIONS(4552), - [anon_sym_break] = ACTIONS(4552), - [anon_sym_continue] = ACTIONS(4552), - [anon_sym_defer] = ACTIONS(4552), - [anon_sym_errdefer] = ACTIONS(4552), - [anon_sym_if] = ACTIONS(4552), - [anon_sym_else] = ACTIONS(4552), - [anon_sym_while] = ACTIONS(4552), - [anon_sym_expand] = ACTIONS(4552), - [anon_sym_for] = ACTIONS(4552), - [anon_sym_match] = ACTIONS(4552), - [anon_sym_AMP] = ACTIONS(4550), - [anon_sym_TILDE] = ACTIONS(4550), - [anon_sym_try] = ACTIONS(4552), - [anon_sym_DOT] = ACTIONS(4550), - [anon_sym_true] = ACTIONS(4552), - [anon_sym_false] = ACTIONS(4552), - [anon_sym_null] = ACTIONS(4552), - [anon_sym_unreachable] = ACTIONS(4552), - [anon_sym_undefined] = ACTIONS(4552), - [sym_sink] = ACTIONS(4552), - [sym_integer] = ACTIONS(4552), - [sym_float] = ACTIONS(4550), - [anon_sym_DQUOTE] = ACTIONS(4550), - [sym_multiline_string] = ACTIONS(4550), - [sym_character] = ACTIONS(4550), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4550), - }, - [STATE(1889)] = { - [ts_builtin_sym_end] = ACTIONS(4554), - [sym_identifier] = ACTIONS(4556), - [anon_sym_import] = ACTIONS(4556), - [anon_sym_test] = ACTIONS(4556), - [anon_sym_hide] = ACTIONS(4556), - [anon_sym_func] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_struct] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4554), - [anon_sym_RPAREN] = ACTIONS(4554), - [anon_sym_LBRACE] = ACTIONS(4554), - [anon_sym_RBRACE] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_DOLLAR] = ACTIONS(4554), - [anon_sym_LBRACK] = ACTIONS(4554), - [anon_sym_void] = ACTIONS(4556), - [anon_sym_noreturn] = ACTIONS(4556), - [anon_sym_type] = ACTIONS(4556), - [anon_sym_anyopaque] = ACTIONS(4556), - [anon_sym_bool] = ACTIONS(4556), - [anon_sym_int] = ACTIONS(4556), - [anon_sym_uint] = ACTIONS(4556), - [anon_sym_float] = ACTIONS(4556), - [anon_sym_range] = ACTIONS(4556), - [anon_sym_i8] = ACTIONS(4556), - [anon_sym_i16] = ACTIONS(4556), - [anon_sym_i32] = ACTIONS(4556), - [anon_sym_i64] = ACTIONS(4556), - [anon_sym_u8] = ACTIONS(4556), - [anon_sym_u16] = ACTIONS(4556), - [anon_sym_u32] = ACTIONS(4556), - [anon_sym_u64] = ACTIONS(4556), - [anon_sym_isize] = ACTIONS(4556), - [anon_sym_usize] = ACTIONS(4556), - [anon_sym_f32] = ACTIONS(4556), - [anon_sym_f64] = ACTIONS(4556), - [anon_sym_c_char] = ACTIONS(4556), - [anon_sym_c_schar] = ACTIONS(4556), - [anon_sym_c_uchar] = ACTIONS(4556), - [anon_sym_c_short] = ACTIONS(4556), - [anon_sym_c_ushort] = ACTIONS(4556), - [anon_sym_c_int] = ACTIONS(4556), - [anon_sym_c_uint] = ACTIONS(4556), - [anon_sym_c_long] = ACTIONS(4556), - [anon_sym_c_ulong] = ACTIONS(4556), - [anon_sym_c_longlong] = ACTIONS(4556), - [anon_sym_c_ulonglong] = ACTIONS(4556), - [anon_sym_c_float] = ACTIONS(4556), - [anon_sym_c_double] = ACTIONS(4556), - [anon_sym_c_longdouble] = ACTIONS(4556), - [anon_sym_return] = ACTIONS(4556), - [anon_sym_yield] = ACTIONS(4556), - [anon_sym_break] = ACTIONS(4556), - [anon_sym_continue] = ACTIONS(4556), - [anon_sym_defer] = ACTIONS(4556), - [anon_sym_errdefer] = ACTIONS(4556), - [anon_sym_if] = ACTIONS(4556), - [anon_sym_else] = ACTIONS(4556), - [anon_sym_while] = ACTIONS(4556), - [anon_sym_expand] = ACTIONS(4556), - [anon_sym_for] = ACTIONS(4556), - [anon_sym_match] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4554), - [anon_sym_TILDE] = ACTIONS(4554), - [anon_sym_try] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_true] = ACTIONS(4556), - [anon_sym_false] = ACTIONS(4556), - [anon_sym_null] = ACTIONS(4556), - [anon_sym_unreachable] = ACTIONS(4556), - [anon_sym_undefined] = ACTIONS(4556), - [sym_sink] = ACTIONS(4556), - [sym_integer] = ACTIONS(4556), - [sym_float] = ACTIONS(4554), - [anon_sym_DQUOTE] = ACTIONS(4554), - [sym_multiline_string] = ACTIONS(4554), - [sym_character] = ACTIONS(4554), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4554), - }, - [STATE(1890)] = { - [ts_builtin_sym_end] = ACTIONS(4558), - [sym_identifier] = ACTIONS(4560), - [anon_sym_import] = ACTIONS(4560), - [anon_sym_test] = ACTIONS(4560), - [anon_sym_hide] = ACTIONS(4560), - [anon_sym_func] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_struct] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_RPAREN] = ACTIONS(4558), - [anon_sym_LBRACE] = ACTIONS(4558), - [anon_sym_RBRACE] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_DOLLAR] = ACTIONS(4558), - [anon_sym_LBRACK] = ACTIONS(4558), - [anon_sym_void] = ACTIONS(4560), - [anon_sym_noreturn] = 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_return] = ACTIONS(4560), - [anon_sym_yield] = ACTIONS(4560), - [anon_sym_break] = ACTIONS(4560), - [anon_sym_continue] = ACTIONS(4560), - [anon_sym_defer] = ACTIONS(4560), - [anon_sym_errdefer] = ACTIONS(4560), - [anon_sym_if] = ACTIONS(4560), - [anon_sym_else] = ACTIONS(4560), - [anon_sym_while] = ACTIONS(4560), - [anon_sym_expand] = ACTIONS(4560), - [anon_sym_for] = ACTIONS(4560), - [anon_sym_match] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4558), - [anon_sym_TILDE] = ACTIONS(4558), - [anon_sym_try] = ACTIONS(4560), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_true] = ACTIONS(4560), - [anon_sym_false] = ACTIONS(4560), - [anon_sym_null] = ACTIONS(4560), - [anon_sym_unreachable] = ACTIONS(4560), - [anon_sym_undefined] = ACTIONS(4560), - [sym_sink] = ACTIONS(4560), - [sym_integer] = ACTIONS(4560), - [sym_float] = ACTIONS(4558), - [anon_sym_DQUOTE] = ACTIONS(4558), - [sym_multiline_string] = ACTIONS(4558), - [sym_character] = ACTIONS(4558), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4558), - }, - [STATE(1891)] = { - [ts_builtin_sym_end] = ACTIONS(4562), - [sym_identifier] = ACTIONS(4564), - [anon_sym_import] = ACTIONS(4564), - [anon_sym_test] = ACTIONS(4564), - [anon_sym_hide] = ACTIONS(4564), - [anon_sym_func] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_struct] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4562), - [anon_sym_RPAREN] = ACTIONS(4562), - [anon_sym_LBRACE] = ACTIONS(4562), - [anon_sym_RBRACE] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_DOLLAR] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(4562), - [anon_sym_void] = ACTIONS(4564), - [anon_sym_noreturn] = ACTIONS(4564), - [anon_sym_type] = ACTIONS(4564), - [anon_sym_anyopaque] = ACTIONS(4564), - [anon_sym_bool] = ACTIONS(4564), - [anon_sym_int] = ACTIONS(4564), - [anon_sym_uint] = ACTIONS(4564), - [anon_sym_float] = ACTIONS(4564), - [anon_sym_range] = ACTIONS(4564), - [anon_sym_i8] = ACTIONS(4564), - [anon_sym_i16] = ACTIONS(4564), - [anon_sym_i32] = ACTIONS(4564), - [anon_sym_i64] = ACTIONS(4564), - [anon_sym_u8] = ACTIONS(4564), - [anon_sym_u16] = ACTIONS(4564), - [anon_sym_u32] = ACTIONS(4564), - [anon_sym_u64] = ACTIONS(4564), - [anon_sym_isize] = ACTIONS(4564), - [anon_sym_usize] = ACTIONS(4564), - [anon_sym_f32] = ACTIONS(4564), - [anon_sym_f64] = ACTIONS(4564), - [anon_sym_c_char] = ACTIONS(4564), - [anon_sym_c_schar] = ACTIONS(4564), - [anon_sym_c_uchar] = ACTIONS(4564), - [anon_sym_c_short] = ACTIONS(4564), - [anon_sym_c_ushort] = ACTIONS(4564), - [anon_sym_c_int] = ACTIONS(4564), - [anon_sym_c_uint] = ACTIONS(4564), - [anon_sym_c_long] = ACTIONS(4564), - [anon_sym_c_ulong] = ACTIONS(4564), - [anon_sym_c_longlong] = ACTIONS(4564), - [anon_sym_c_ulonglong] = ACTIONS(4564), - [anon_sym_c_float] = ACTIONS(4564), - [anon_sym_c_double] = ACTIONS(4564), - [anon_sym_c_longdouble] = ACTIONS(4564), - [anon_sym_return] = ACTIONS(4564), - [anon_sym_yield] = ACTIONS(4564), - [anon_sym_break] = ACTIONS(4564), - [anon_sym_continue] = ACTIONS(4564), - [anon_sym_defer] = ACTIONS(4564), - [anon_sym_errdefer] = ACTIONS(4564), - [anon_sym_if] = ACTIONS(4564), - [anon_sym_else] = ACTIONS(4564), - [anon_sym_while] = ACTIONS(4564), - [anon_sym_expand] = ACTIONS(4564), - [anon_sym_for] = ACTIONS(4564), - [anon_sym_match] = ACTIONS(4564), - [anon_sym_AMP] = ACTIONS(4562), - [anon_sym_TILDE] = ACTIONS(4562), - [anon_sym_try] = ACTIONS(4564), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_true] = ACTIONS(4564), - [anon_sym_false] = ACTIONS(4564), - [anon_sym_null] = ACTIONS(4564), - [anon_sym_unreachable] = ACTIONS(4564), - [anon_sym_undefined] = ACTIONS(4564), - [sym_sink] = ACTIONS(4564), - [sym_integer] = ACTIONS(4564), - [sym_float] = ACTIONS(4562), - [anon_sym_DQUOTE] = ACTIONS(4562), - [sym_multiline_string] = ACTIONS(4562), - [sym_character] = ACTIONS(4562), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4562), - }, - [STATE(1892)] = { - [ts_builtin_sym_end] = ACTIONS(4566), - [sym_identifier] = ACTIONS(4568), - [anon_sym_import] = ACTIONS(4568), - [anon_sym_test] = ACTIONS(4568), - [anon_sym_hide] = ACTIONS(4568), - [anon_sym_func] = ACTIONS(4568), - [anon_sym_BANG] = ACTIONS(4566), - [anon_sym_struct] = ACTIONS(4568), - [anon_sym_LPAREN] = ACTIONS(4566), - [anon_sym_RPAREN] = ACTIONS(4566), - [anon_sym_LBRACE] = ACTIONS(4566), - [anon_sym_RBRACE] = ACTIONS(4566), - [anon_sym_DASH] = ACTIONS(4566), - [anon_sym_DOLLAR] = ACTIONS(4566), - [anon_sym_LBRACK] = ACTIONS(4566), - [anon_sym_void] = ACTIONS(4568), - [anon_sym_noreturn] = ACTIONS(4568), - [anon_sym_type] = ACTIONS(4568), - [anon_sym_anyopaque] = ACTIONS(4568), - [anon_sym_bool] = ACTIONS(4568), - [anon_sym_int] = ACTIONS(4568), - [anon_sym_uint] = ACTIONS(4568), - [anon_sym_float] = ACTIONS(4568), - [anon_sym_range] = ACTIONS(4568), - [anon_sym_i8] = ACTIONS(4568), - [anon_sym_i16] = ACTIONS(4568), - [anon_sym_i32] = ACTIONS(4568), - [anon_sym_i64] = ACTIONS(4568), - [anon_sym_u8] = ACTIONS(4568), - [anon_sym_u16] = ACTIONS(4568), - [anon_sym_u32] = ACTIONS(4568), - [anon_sym_u64] = ACTIONS(4568), - [anon_sym_isize] = ACTIONS(4568), - [anon_sym_usize] = ACTIONS(4568), - [anon_sym_f32] = ACTIONS(4568), - [anon_sym_f64] = ACTIONS(4568), - [anon_sym_c_char] = ACTIONS(4568), - [anon_sym_c_schar] = ACTIONS(4568), - [anon_sym_c_uchar] = ACTIONS(4568), - [anon_sym_c_short] = ACTIONS(4568), - [anon_sym_c_ushort] = ACTIONS(4568), - [anon_sym_c_int] = ACTIONS(4568), - [anon_sym_c_uint] = ACTIONS(4568), - [anon_sym_c_long] = ACTIONS(4568), - [anon_sym_c_ulong] = ACTIONS(4568), - [anon_sym_c_longlong] = ACTIONS(4568), - [anon_sym_c_ulonglong] = ACTIONS(4568), - [anon_sym_c_float] = ACTIONS(4568), - [anon_sym_c_double] = ACTIONS(4568), - [anon_sym_c_longdouble] = ACTIONS(4568), - [anon_sym_return] = ACTIONS(4568), - [anon_sym_yield] = ACTIONS(4568), - [anon_sym_break] = ACTIONS(4568), - [anon_sym_continue] = ACTIONS(4568), - [anon_sym_defer] = ACTIONS(4568), - [anon_sym_errdefer] = ACTIONS(4568), - [anon_sym_if] = ACTIONS(4568), - [anon_sym_else] = ACTIONS(4568), - [anon_sym_while] = ACTIONS(4568), - [anon_sym_expand] = ACTIONS(4568), - [anon_sym_for] = ACTIONS(4568), - [anon_sym_match] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4566), - [anon_sym_TILDE] = ACTIONS(4566), - [anon_sym_try] = ACTIONS(4568), - [anon_sym_DOT] = ACTIONS(4566), - [anon_sym_true] = ACTIONS(4568), - [anon_sym_false] = ACTIONS(4568), - [anon_sym_null] = ACTIONS(4568), - [anon_sym_unreachable] = ACTIONS(4568), - [anon_sym_undefined] = ACTIONS(4568), - [sym_sink] = ACTIONS(4568), - [sym_integer] = ACTIONS(4568), - [sym_float] = ACTIONS(4566), - [anon_sym_DQUOTE] = ACTIONS(4566), - [sym_multiline_string] = ACTIONS(4566), - [sym_character] = ACTIONS(4566), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4566), - }, - [STATE(1893)] = { - [ts_builtin_sym_end] = ACTIONS(4570), - [sym_identifier] = ACTIONS(4572), - [anon_sym_import] = ACTIONS(4572), - [anon_sym_test] = ACTIONS(4572), - [anon_sym_hide] = ACTIONS(4572), - [anon_sym_func] = ACTIONS(4572), - [anon_sym_BANG] = ACTIONS(4570), - [anon_sym_struct] = ACTIONS(4572), - [anon_sym_LPAREN] = ACTIONS(4570), - [anon_sym_RPAREN] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4570), - [anon_sym_RBRACE] = ACTIONS(4570), - [anon_sym_DASH] = ACTIONS(4570), - [anon_sym_DOLLAR] = ACTIONS(4570), - [anon_sym_LBRACK] = ACTIONS(4570), - [anon_sym_void] = ACTIONS(4572), - [anon_sym_noreturn] = ACTIONS(4572), - [anon_sym_type] = ACTIONS(4572), - [anon_sym_anyopaque] = ACTIONS(4572), - [anon_sym_bool] = ACTIONS(4572), - [anon_sym_int] = ACTIONS(4572), - [anon_sym_uint] = ACTIONS(4572), - [anon_sym_float] = ACTIONS(4572), - [anon_sym_range] = ACTIONS(4572), - [anon_sym_i8] = ACTIONS(4572), - [anon_sym_i16] = ACTIONS(4572), - [anon_sym_i32] = ACTIONS(4572), - [anon_sym_i64] = ACTIONS(4572), - [anon_sym_u8] = ACTIONS(4572), - [anon_sym_u16] = ACTIONS(4572), - [anon_sym_u32] = ACTIONS(4572), - [anon_sym_u64] = ACTIONS(4572), - [anon_sym_isize] = ACTIONS(4572), - [anon_sym_usize] = ACTIONS(4572), - [anon_sym_f32] = ACTIONS(4572), - [anon_sym_f64] = ACTIONS(4572), - [anon_sym_c_char] = ACTIONS(4572), - [anon_sym_c_schar] = ACTIONS(4572), - [anon_sym_c_uchar] = ACTIONS(4572), - [anon_sym_c_short] = ACTIONS(4572), - [anon_sym_c_ushort] = ACTIONS(4572), - [anon_sym_c_int] = ACTIONS(4572), - [anon_sym_c_uint] = ACTIONS(4572), - [anon_sym_c_long] = ACTIONS(4572), - [anon_sym_c_ulong] = ACTIONS(4572), - [anon_sym_c_longlong] = ACTIONS(4572), - [anon_sym_c_ulonglong] = ACTIONS(4572), - [anon_sym_c_float] = ACTIONS(4572), - [anon_sym_c_double] = ACTIONS(4572), - [anon_sym_c_longdouble] = ACTIONS(4572), - [anon_sym_return] = ACTIONS(4572), - [anon_sym_yield] = ACTIONS(4572), - [anon_sym_break] = ACTIONS(4572), - [anon_sym_continue] = ACTIONS(4572), - [anon_sym_defer] = ACTIONS(4572), - [anon_sym_errdefer] = ACTIONS(4572), - [anon_sym_if] = ACTIONS(4572), - [anon_sym_else] = ACTIONS(4572), - [anon_sym_while] = ACTIONS(4572), - [anon_sym_expand] = ACTIONS(4572), - [anon_sym_for] = ACTIONS(4572), - [anon_sym_match] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4570), - [anon_sym_TILDE] = ACTIONS(4570), - [anon_sym_try] = ACTIONS(4572), - [anon_sym_DOT] = ACTIONS(4570), - [anon_sym_true] = ACTIONS(4572), - [anon_sym_false] = ACTIONS(4572), - [anon_sym_null] = ACTIONS(4572), - [anon_sym_unreachable] = ACTIONS(4572), - [anon_sym_undefined] = ACTIONS(4572), - [sym_sink] = ACTIONS(4572), - [sym_integer] = ACTIONS(4572), - [sym_float] = ACTIONS(4570), - [anon_sym_DQUOTE] = ACTIONS(4570), - [sym_multiline_string] = ACTIONS(4570), - [sym_character] = ACTIONS(4570), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4570), - }, - [STATE(1894)] = { - [ts_builtin_sym_end] = ACTIONS(4574), - [sym_identifier] = ACTIONS(4576), - [anon_sym_import] = ACTIONS(4576), - [anon_sym_test] = ACTIONS(4576), - [anon_sym_hide] = ACTIONS(4576), - [anon_sym_func] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4574), - [anon_sym_struct] = ACTIONS(4576), - [anon_sym_LPAREN] = ACTIONS(4574), - [anon_sym_RPAREN] = ACTIONS(4574), - [anon_sym_LBRACE] = ACTIONS(4574), - [anon_sym_RBRACE] = ACTIONS(4574), - [anon_sym_DASH] = ACTIONS(4574), - [anon_sym_DOLLAR] = ACTIONS(4574), - [anon_sym_LBRACK] = ACTIONS(4574), - [anon_sym_void] = ACTIONS(4576), - [anon_sym_noreturn] = ACTIONS(4576), - [anon_sym_type] = ACTIONS(4576), - [anon_sym_anyopaque] = ACTIONS(4576), - [anon_sym_bool] = ACTIONS(4576), - [anon_sym_int] = ACTIONS(4576), - [anon_sym_uint] = ACTIONS(4576), - [anon_sym_float] = ACTIONS(4576), - [anon_sym_range] = ACTIONS(4576), - [anon_sym_i8] = ACTIONS(4576), - [anon_sym_i16] = ACTIONS(4576), - [anon_sym_i32] = ACTIONS(4576), - [anon_sym_i64] = ACTIONS(4576), - [anon_sym_u8] = ACTIONS(4576), - [anon_sym_u16] = ACTIONS(4576), - [anon_sym_u32] = ACTIONS(4576), - [anon_sym_u64] = ACTIONS(4576), - [anon_sym_isize] = ACTIONS(4576), - [anon_sym_usize] = ACTIONS(4576), - [anon_sym_f32] = ACTIONS(4576), - [anon_sym_f64] = ACTIONS(4576), - [anon_sym_c_char] = ACTIONS(4576), - [anon_sym_c_schar] = ACTIONS(4576), - [anon_sym_c_uchar] = ACTIONS(4576), - [anon_sym_c_short] = ACTIONS(4576), - [anon_sym_c_ushort] = ACTIONS(4576), - [anon_sym_c_int] = ACTIONS(4576), - [anon_sym_c_uint] = ACTIONS(4576), - [anon_sym_c_long] = ACTIONS(4576), - [anon_sym_c_ulong] = ACTIONS(4576), - [anon_sym_c_longlong] = ACTIONS(4576), - [anon_sym_c_ulonglong] = ACTIONS(4576), - [anon_sym_c_float] = ACTIONS(4576), - [anon_sym_c_double] = ACTIONS(4576), - [anon_sym_c_longdouble] = ACTIONS(4576), - [anon_sym_return] = ACTIONS(4576), - [anon_sym_yield] = ACTIONS(4576), - [anon_sym_break] = ACTIONS(4576), - [anon_sym_continue] = ACTIONS(4576), - [anon_sym_defer] = ACTIONS(4576), - [anon_sym_errdefer] = ACTIONS(4576), - [anon_sym_if] = ACTIONS(4576), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_while] = ACTIONS(4576), - [anon_sym_expand] = ACTIONS(4576), - [anon_sym_for] = ACTIONS(4576), - [anon_sym_match] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4574), - [anon_sym_TILDE] = ACTIONS(4574), - [anon_sym_try] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4574), - [anon_sym_true] = ACTIONS(4576), - [anon_sym_false] = ACTIONS(4576), - [anon_sym_null] = ACTIONS(4576), - [anon_sym_unreachable] = ACTIONS(4576), - [anon_sym_undefined] = ACTIONS(4576), - [sym_sink] = ACTIONS(4576), - [sym_integer] = ACTIONS(4576), - [sym_float] = ACTIONS(4574), - [anon_sym_DQUOTE] = ACTIONS(4574), - [sym_multiline_string] = ACTIONS(4574), - [sym_character] = ACTIONS(4574), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4574), - }, - [STATE(1895)] = { - [ts_builtin_sym_end] = ACTIONS(4578), - [sym_identifier] = ACTIONS(4580), - [anon_sym_import] = ACTIONS(4580), - [anon_sym_test] = ACTIONS(4580), - [anon_sym_hide] = ACTIONS(4580), - [anon_sym_func] = ACTIONS(4580), - [anon_sym_BANG] = ACTIONS(4578), - [anon_sym_struct] = ACTIONS(4580), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_RPAREN] = ACTIONS(4578), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_DASH] = ACTIONS(4578), - [anon_sym_DOLLAR] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_void] = ACTIONS(4580), - [anon_sym_noreturn] = ACTIONS(4580), - [anon_sym_type] = ACTIONS(4580), - [anon_sym_anyopaque] = ACTIONS(4580), - [anon_sym_bool] = ACTIONS(4580), - [anon_sym_int] = ACTIONS(4580), - [anon_sym_uint] = ACTIONS(4580), - [anon_sym_float] = ACTIONS(4580), - [anon_sym_range] = ACTIONS(4580), - [anon_sym_i8] = ACTIONS(4580), - [anon_sym_i16] = ACTIONS(4580), - [anon_sym_i32] = ACTIONS(4580), - [anon_sym_i64] = ACTIONS(4580), - [anon_sym_u8] = ACTIONS(4580), - [anon_sym_u16] = ACTIONS(4580), - [anon_sym_u32] = ACTIONS(4580), - [anon_sym_u64] = ACTIONS(4580), - [anon_sym_isize] = ACTIONS(4580), - [anon_sym_usize] = ACTIONS(4580), - [anon_sym_f32] = ACTIONS(4580), - [anon_sym_f64] = ACTIONS(4580), - [anon_sym_c_char] = ACTIONS(4580), - [anon_sym_c_schar] = ACTIONS(4580), - [anon_sym_c_uchar] = ACTIONS(4580), - [anon_sym_c_short] = ACTIONS(4580), - [anon_sym_c_ushort] = ACTIONS(4580), - [anon_sym_c_int] = ACTIONS(4580), - [anon_sym_c_uint] = ACTIONS(4580), - [anon_sym_c_long] = ACTIONS(4580), - [anon_sym_c_ulong] = ACTIONS(4580), - [anon_sym_c_longlong] = ACTIONS(4580), - [anon_sym_c_ulonglong] = ACTIONS(4580), - [anon_sym_c_float] = ACTIONS(4580), - [anon_sym_c_double] = ACTIONS(4580), - [anon_sym_c_longdouble] = ACTIONS(4580), - [anon_sym_return] = ACTIONS(4580), - [anon_sym_yield] = ACTIONS(4580), - [anon_sym_break] = ACTIONS(4580), - [anon_sym_continue] = ACTIONS(4580), - [anon_sym_defer] = ACTIONS(4580), - [anon_sym_errdefer] = ACTIONS(4580), - [anon_sym_if] = ACTIONS(4580), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_while] = ACTIONS(4580), - [anon_sym_expand] = ACTIONS(4580), - [anon_sym_for] = ACTIONS(4580), - [anon_sym_match] = ACTIONS(4580), - [anon_sym_AMP] = ACTIONS(4578), - [anon_sym_TILDE] = ACTIONS(4578), - [anon_sym_try] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_true] = ACTIONS(4580), - [anon_sym_false] = ACTIONS(4580), - [anon_sym_null] = ACTIONS(4580), - [anon_sym_unreachable] = ACTIONS(4580), - [anon_sym_undefined] = ACTIONS(4580), - [sym_sink] = ACTIONS(4580), - [sym_integer] = ACTIONS(4580), - [sym_float] = ACTIONS(4578), - [anon_sym_DQUOTE] = ACTIONS(4578), - [sym_multiline_string] = ACTIONS(4578), - [sym_character] = ACTIONS(4578), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4578), - }, - [STATE(1896)] = { - [ts_builtin_sym_end] = ACTIONS(4582), - [sym_identifier] = ACTIONS(4584), - [anon_sym_import] = ACTIONS(4584), - [anon_sym_test] = ACTIONS(4584), - [anon_sym_hide] = ACTIONS(4584), - [anon_sym_func] = ACTIONS(4584), - [anon_sym_BANG] = ACTIONS(4582), - [anon_sym_struct] = ACTIONS(4584), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_RPAREN] = ACTIONS(4582), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_DASH] = ACTIONS(4582), - [anon_sym_DOLLAR] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_void] = ACTIONS(4584), - [anon_sym_noreturn] = ACTIONS(4584), - [anon_sym_type] = ACTIONS(4584), - [anon_sym_anyopaque] = ACTIONS(4584), - [anon_sym_bool] = ACTIONS(4584), - [anon_sym_int] = ACTIONS(4584), - [anon_sym_uint] = ACTIONS(4584), - [anon_sym_float] = ACTIONS(4584), - [anon_sym_range] = ACTIONS(4584), - [anon_sym_i8] = ACTIONS(4584), - [anon_sym_i16] = ACTIONS(4584), - [anon_sym_i32] = ACTIONS(4584), - [anon_sym_i64] = ACTIONS(4584), - [anon_sym_u8] = ACTIONS(4584), - [anon_sym_u16] = ACTIONS(4584), - [anon_sym_u32] = ACTIONS(4584), - [anon_sym_u64] = ACTIONS(4584), - [anon_sym_isize] = ACTIONS(4584), - [anon_sym_usize] = ACTIONS(4584), - [anon_sym_f32] = ACTIONS(4584), - [anon_sym_f64] = ACTIONS(4584), - [anon_sym_c_char] = ACTIONS(4584), - [anon_sym_c_schar] = ACTIONS(4584), - [anon_sym_c_uchar] = ACTIONS(4584), - [anon_sym_c_short] = ACTIONS(4584), - [anon_sym_c_ushort] = ACTIONS(4584), - [anon_sym_c_int] = ACTIONS(4584), - [anon_sym_c_uint] = ACTIONS(4584), - [anon_sym_c_long] = ACTIONS(4584), - [anon_sym_c_ulong] = ACTIONS(4584), - [anon_sym_c_longlong] = ACTIONS(4584), - [anon_sym_c_ulonglong] = ACTIONS(4584), - [anon_sym_c_float] = ACTIONS(4584), - [anon_sym_c_double] = ACTIONS(4584), - [anon_sym_c_longdouble] = ACTIONS(4584), - [anon_sym_return] = ACTIONS(4584), - [anon_sym_yield] = ACTIONS(4584), - [anon_sym_break] = ACTIONS(4584), - [anon_sym_continue] = ACTIONS(4584), - [anon_sym_defer] = ACTIONS(4584), - [anon_sym_errdefer] = ACTIONS(4584), - [anon_sym_if] = ACTIONS(4584), - [anon_sym_else] = ACTIONS(4584), - [anon_sym_while] = ACTIONS(4584), - [anon_sym_expand] = ACTIONS(4584), - [anon_sym_for] = ACTIONS(4584), - [anon_sym_match] = ACTIONS(4584), - [anon_sym_AMP] = ACTIONS(4582), - [anon_sym_TILDE] = ACTIONS(4582), - [anon_sym_try] = ACTIONS(4584), - [anon_sym_DOT] = ACTIONS(4582), - [anon_sym_true] = ACTIONS(4584), - [anon_sym_false] = ACTIONS(4584), - [anon_sym_null] = ACTIONS(4584), - [anon_sym_unreachable] = ACTIONS(4584), - [anon_sym_undefined] = ACTIONS(4584), - [sym_sink] = ACTIONS(4584), - [sym_integer] = ACTIONS(4584), - [sym_float] = ACTIONS(4582), - [anon_sym_DQUOTE] = ACTIONS(4582), - [sym_multiline_string] = ACTIONS(4582), - [sym_character] = ACTIONS(4582), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4582), - }, - [STATE(1897)] = { - [ts_builtin_sym_end] = ACTIONS(4586), - [sym_identifier] = ACTIONS(4588), - [anon_sym_import] = ACTIONS(4588), - [anon_sym_test] = ACTIONS(4588), - [anon_sym_hide] = ACTIONS(4588), - [anon_sym_func] = ACTIONS(4588), - [anon_sym_BANG] = ACTIONS(4586), - [anon_sym_struct] = ACTIONS(4588), - [anon_sym_LPAREN] = ACTIONS(4586), - [anon_sym_RPAREN] = ACTIONS(4586), - [anon_sym_LBRACE] = ACTIONS(4586), - [anon_sym_RBRACE] = ACTIONS(4586), - [anon_sym_DASH] = ACTIONS(4586), - [anon_sym_DOLLAR] = ACTIONS(4586), - [anon_sym_LBRACK] = ACTIONS(4586), - [anon_sym_void] = ACTIONS(4588), - [anon_sym_noreturn] = ACTIONS(4588), - [anon_sym_type] = ACTIONS(4588), - [anon_sym_anyopaque] = ACTIONS(4588), - [anon_sym_bool] = ACTIONS(4588), - [anon_sym_int] = ACTIONS(4588), - [anon_sym_uint] = ACTIONS(4588), - [anon_sym_float] = ACTIONS(4588), - [anon_sym_range] = ACTIONS(4588), - [anon_sym_i8] = ACTIONS(4588), - [anon_sym_i16] = ACTIONS(4588), - [anon_sym_i32] = ACTIONS(4588), - [anon_sym_i64] = ACTIONS(4588), - [anon_sym_u8] = ACTIONS(4588), - [anon_sym_u16] = ACTIONS(4588), - [anon_sym_u32] = ACTIONS(4588), - [anon_sym_u64] = ACTIONS(4588), - [anon_sym_isize] = ACTIONS(4588), - [anon_sym_usize] = ACTIONS(4588), - [anon_sym_f32] = ACTIONS(4588), - [anon_sym_f64] = ACTIONS(4588), - [anon_sym_c_char] = ACTIONS(4588), - [anon_sym_c_schar] = ACTIONS(4588), - [anon_sym_c_uchar] = ACTIONS(4588), - [anon_sym_c_short] = ACTIONS(4588), - [anon_sym_c_ushort] = ACTIONS(4588), - [anon_sym_c_int] = ACTIONS(4588), - [anon_sym_c_uint] = ACTIONS(4588), - [anon_sym_c_long] = ACTIONS(4588), - [anon_sym_c_ulong] = ACTIONS(4588), - [anon_sym_c_longlong] = ACTIONS(4588), - [anon_sym_c_ulonglong] = ACTIONS(4588), - [anon_sym_c_float] = ACTIONS(4588), - [anon_sym_c_double] = ACTIONS(4588), - [anon_sym_c_longdouble] = ACTIONS(4588), - [anon_sym_return] = ACTIONS(4588), - [anon_sym_yield] = ACTIONS(4588), - [anon_sym_break] = ACTIONS(4588), - [anon_sym_continue] = ACTIONS(4588), - [anon_sym_defer] = ACTIONS(4588), - [anon_sym_errdefer] = ACTIONS(4588), - [anon_sym_if] = ACTIONS(4588), - [anon_sym_else] = ACTIONS(4588), - [anon_sym_while] = ACTIONS(4588), - [anon_sym_expand] = ACTIONS(4588), - [anon_sym_for] = ACTIONS(4588), - [anon_sym_match] = ACTIONS(4588), - [anon_sym_AMP] = ACTIONS(4586), - [anon_sym_TILDE] = ACTIONS(4586), - [anon_sym_try] = ACTIONS(4588), - [anon_sym_DOT] = ACTIONS(4586), - [anon_sym_true] = ACTIONS(4588), - [anon_sym_false] = ACTIONS(4588), - [anon_sym_null] = ACTIONS(4588), - [anon_sym_unreachable] = ACTIONS(4588), - [anon_sym_undefined] = ACTIONS(4588), - [sym_sink] = ACTIONS(4588), - [sym_integer] = ACTIONS(4588), - [sym_float] = ACTIONS(4586), - [anon_sym_DQUOTE] = ACTIONS(4586), - [sym_multiline_string] = ACTIONS(4586), - [sym_character] = ACTIONS(4586), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4586), - }, - [STATE(1898)] = { - [ts_builtin_sym_end] = ACTIONS(4590), - [sym_identifier] = ACTIONS(4592), - [anon_sym_import] = ACTIONS(4592), - [anon_sym_test] = ACTIONS(4592), - [anon_sym_hide] = ACTIONS(4592), - [anon_sym_func] = ACTIONS(4592), - [anon_sym_BANG] = ACTIONS(4590), - [anon_sym_struct] = ACTIONS(4592), - [anon_sym_LPAREN] = ACTIONS(4590), - [anon_sym_RPAREN] = ACTIONS(4590), - [anon_sym_LBRACE] = ACTIONS(4590), - [anon_sym_RBRACE] = ACTIONS(4590), - [anon_sym_DASH] = ACTIONS(4590), - [anon_sym_DOLLAR] = ACTIONS(4590), - [anon_sym_LBRACK] = ACTIONS(4590), - [anon_sym_void] = ACTIONS(4592), - [anon_sym_noreturn] = 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(4592), - [anon_sym_yield] = ACTIONS(4592), - [anon_sym_break] = ACTIONS(4592), - [anon_sym_continue] = ACTIONS(4592), - [anon_sym_defer] = ACTIONS(4592), - [anon_sym_errdefer] = ACTIONS(4592), - [anon_sym_if] = ACTIONS(4592), - [anon_sym_else] = ACTIONS(4592), - [anon_sym_while] = ACTIONS(4592), - [anon_sym_expand] = ACTIONS(4592), - [anon_sym_for] = ACTIONS(4592), - [anon_sym_match] = ACTIONS(4592), - [anon_sym_AMP] = ACTIONS(4590), - [anon_sym_TILDE] = ACTIONS(4590), - [anon_sym_try] = ACTIONS(4592), - [anon_sym_DOT] = ACTIONS(4590), - [anon_sym_true] = ACTIONS(4592), - [anon_sym_false] = ACTIONS(4592), - [anon_sym_null] = ACTIONS(4592), - [anon_sym_unreachable] = ACTIONS(4592), - [anon_sym_undefined] = ACTIONS(4592), - [sym_sink] = ACTIONS(4592), - [sym_integer] = ACTIONS(4592), - [sym_float] = ACTIONS(4590), - [anon_sym_DQUOTE] = ACTIONS(4590), - [sym_multiline_string] = ACTIONS(4590), - [sym_character] = ACTIONS(4590), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4590), - }, - [STATE(1899)] = { - [ts_builtin_sym_end] = ACTIONS(4594), - [sym_identifier] = ACTIONS(4596), - [anon_sym_import] = ACTIONS(4596), - [anon_sym_test] = ACTIONS(4596), - [anon_sym_hide] = ACTIONS(4596), - [anon_sym_func] = ACTIONS(4596), - [anon_sym_BANG] = ACTIONS(4594), - [anon_sym_struct] = ACTIONS(4596), - [anon_sym_LPAREN] = ACTIONS(4594), - [anon_sym_RPAREN] = ACTIONS(4594), - [anon_sym_LBRACE] = ACTIONS(4594), - [anon_sym_RBRACE] = ACTIONS(4594), - [anon_sym_DASH] = ACTIONS(4594), - [anon_sym_DOLLAR] = ACTIONS(4594), - [anon_sym_LBRACK] = ACTIONS(4594), - [anon_sym_void] = ACTIONS(4596), - [anon_sym_noreturn] = ACTIONS(4596), - [anon_sym_type] = ACTIONS(4596), - [anon_sym_anyopaque] = ACTIONS(4596), - [anon_sym_bool] = ACTIONS(4596), - [anon_sym_int] = ACTIONS(4596), - [anon_sym_uint] = ACTIONS(4596), - [anon_sym_float] = ACTIONS(4596), - [anon_sym_range] = ACTIONS(4596), - [anon_sym_i8] = ACTIONS(4596), - [anon_sym_i16] = ACTIONS(4596), - [anon_sym_i32] = ACTIONS(4596), - [anon_sym_i64] = ACTIONS(4596), - [anon_sym_u8] = ACTIONS(4596), - [anon_sym_u16] = ACTIONS(4596), - [anon_sym_u32] = ACTIONS(4596), - [anon_sym_u64] = ACTIONS(4596), - [anon_sym_isize] = ACTIONS(4596), - [anon_sym_usize] = ACTIONS(4596), - [anon_sym_f32] = ACTIONS(4596), - [anon_sym_f64] = ACTIONS(4596), - [anon_sym_c_char] = ACTIONS(4596), - [anon_sym_c_schar] = ACTIONS(4596), - [anon_sym_c_uchar] = ACTIONS(4596), - [anon_sym_c_short] = ACTIONS(4596), - [anon_sym_c_ushort] = ACTIONS(4596), - [anon_sym_c_int] = ACTIONS(4596), - [anon_sym_c_uint] = ACTIONS(4596), - [anon_sym_c_long] = ACTIONS(4596), - [anon_sym_c_ulong] = ACTIONS(4596), - [anon_sym_c_longlong] = ACTIONS(4596), - [anon_sym_c_ulonglong] = ACTIONS(4596), - [anon_sym_c_float] = ACTIONS(4596), - [anon_sym_c_double] = ACTIONS(4596), - [anon_sym_c_longdouble] = ACTIONS(4596), - [anon_sym_return] = ACTIONS(4596), - [anon_sym_yield] = ACTIONS(4596), - [anon_sym_break] = ACTIONS(4596), - [anon_sym_continue] = ACTIONS(4596), - [anon_sym_defer] = ACTIONS(4596), - [anon_sym_errdefer] = ACTIONS(4596), - [anon_sym_if] = ACTIONS(4596), - [anon_sym_else] = ACTIONS(4596), - [anon_sym_while] = ACTIONS(4596), - [anon_sym_expand] = ACTIONS(4596), - [anon_sym_for] = ACTIONS(4596), - [anon_sym_match] = ACTIONS(4596), - [anon_sym_AMP] = ACTIONS(4594), - [anon_sym_TILDE] = ACTIONS(4594), - [anon_sym_try] = ACTIONS(4596), - [anon_sym_DOT] = ACTIONS(4594), - [anon_sym_true] = ACTIONS(4596), - [anon_sym_false] = ACTIONS(4596), - [anon_sym_null] = ACTIONS(4596), - [anon_sym_unreachable] = ACTIONS(4596), - [anon_sym_undefined] = ACTIONS(4596), - [sym_sink] = ACTIONS(4596), - [sym_integer] = ACTIONS(4596), - [sym_float] = ACTIONS(4594), - [anon_sym_DQUOTE] = ACTIONS(4594), - [sym_multiline_string] = ACTIONS(4594), - [sym_character] = ACTIONS(4594), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4594), - }, - [STATE(1900)] = { - [ts_builtin_sym_end] = ACTIONS(4598), - [sym_identifier] = ACTIONS(4600), - [anon_sym_import] = ACTIONS(4600), - [anon_sym_test] = ACTIONS(4600), - [anon_sym_hide] = ACTIONS(4600), - [anon_sym_func] = ACTIONS(4600), - [anon_sym_BANG] = ACTIONS(4598), - [anon_sym_struct] = ACTIONS(4600), - [anon_sym_LPAREN] = ACTIONS(4598), - [anon_sym_RPAREN] = ACTIONS(4598), - [anon_sym_LBRACE] = ACTIONS(4598), - [anon_sym_RBRACE] = ACTIONS(4598), - [anon_sym_DASH] = ACTIONS(4598), - [anon_sym_DOLLAR] = ACTIONS(4598), - [anon_sym_LBRACK] = ACTIONS(4598), - [anon_sym_void] = ACTIONS(4600), - [anon_sym_noreturn] = 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_return] = ACTIONS(4600), - [anon_sym_yield] = ACTIONS(4600), - [anon_sym_break] = ACTIONS(4600), - [anon_sym_continue] = ACTIONS(4600), - [anon_sym_defer] = ACTIONS(4600), - [anon_sym_errdefer] = ACTIONS(4600), - [anon_sym_if] = ACTIONS(4600), - [anon_sym_else] = ACTIONS(4600), - [anon_sym_while] = ACTIONS(4600), - [anon_sym_expand] = ACTIONS(4600), - [anon_sym_for] = ACTIONS(4600), - [anon_sym_match] = ACTIONS(4600), - [anon_sym_AMP] = ACTIONS(4598), - [anon_sym_TILDE] = ACTIONS(4598), - [anon_sym_try] = ACTIONS(4600), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_true] = ACTIONS(4600), - [anon_sym_false] = ACTIONS(4600), - [anon_sym_null] = ACTIONS(4600), - [anon_sym_unreachable] = ACTIONS(4600), - [anon_sym_undefined] = ACTIONS(4600), - [sym_sink] = ACTIONS(4600), - [sym_integer] = ACTIONS(4600), - [sym_float] = ACTIONS(4598), - [anon_sym_DQUOTE] = ACTIONS(4598), - [sym_multiline_string] = ACTIONS(4598), - [sym_character] = ACTIONS(4598), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4598), - }, - [STATE(1901)] = { - [ts_builtin_sym_end] = ACTIONS(4602), - [sym_identifier] = ACTIONS(4604), - [anon_sym_import] = ACTIONS(4604), - [anon_sym_test] = ACTIONS(4604), - [anon_sym_hide] = ACTIONS(4604), - [anon_sym_func] = ACTIONS(4604), - [anon_sym_BANG] = ACTIONS(4602), - [anon_sym_struct] = ACTIONS(4604), - [anon_sym_LPAREN] = ACTIONS(4602), - [anon_sym_RPAREN] = ACTIONS(4602), - [anon_sym_LBRACE] = ACTIONS(4602), - [anon_sym_RBRACE] = ACTIONS(4602), - [anon_sym_DASH] = ACTIONS(4602), - [anon_sym_DOLLAR] = ACTIONS(4602), - [anon_sym_LBRACK] = ACTIONS(4602), - [anon_sym_void] = ACTIONS(4604), - [anon_sym_noreturn] = 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_else] = 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(4602), - [anon_sym_TILDE] = ACTIONS(4602), - [anon_sym_try] = ACTIONS(4604), - [anon_sym_DOT] = ACTIONS(4602), - [anon_sym_true] = ACTIONS(4604), - [anon_sym_false] = ACTIONS(4604), - [anon_sym_null] = ACTIONS(4604), - [anon_sym_unreachable] = ACTIONS(4604), - [anon_sym_undefined] = ACTIONS(4604), - [sym_sink] = ACTIONS(4604), - [sym_integer] = ACTIONS(4604), - [sym_float] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(4602), - [sym_multiline_string] = ACTIONS(4602), - [sym_character] = ACTIONS(4602), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4602), - }, - [STATE(1902)] = { - [ts_builtin_sym_end] = ACTIONS(4606), - [sym_identifier] = ACTIONS(4608), - [anon_sym_import] = ACTIONS(4608), - [anon_sym_test] = ACTIONS(4608), - [anon_sym_hide] = ACTIONS(4608), - [anon_sym_func] = ACTIONS(4608), - [anon_sym_BANG] = ACTIONS(4606), - [anon_sym_struct] = ACTIONS(4608), - [anon_sym_LPAREN] = ACTIONS(4606), - [anon_sym_RPAREN] = ACTIONS(4606), - [anon_sym_LBRACE] = ACTIONS(4606), - [anon_sym_RBRACE] = ACTIONS(4606), - [anon_sym_DASH] = ACTIONS(4606), - [anon_sym_DOLLAR] = ACTIONS(4606), - [anon_sym_LBRACK] = ACTIONS(4606), - [anon_sym_void] = ACTIONS(4608), - [anon_sym_noreturn] = 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_else] = 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(4606), - [anon_sym_TILDE] = ACTIONS(4606), - [anon_sym_try] = ACTIONS(4608), - [anon_sym_DOT] = ACTIONS(4606), - [anon_sym_true] = ACTIONS(4608), - [anon_sym_false] = ACTIONS(4608), - [anon_sym_null] = ACTIONS(4608), - [anon_sym_unreachable] = ACTIONS(4608), - [anon_sym_undefined] = ACTIONS(4608), - [sym_sink] = ACTIONS(4608), - [sym_integer] = ACTIONS(4608), - [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(1903)] = { - [ts_builtin_sym_end] = ACTIONS(4610), - [sym_identifier] = ACTIONS(4612), - [anon_sym_import] = ACTIONS(4612), - [anon_sym_test] = ACTIONS(4612), - [anon_sym_hide] = ACTIONS(4612), - [anon_sym_func] = ACTIONS(4612), - [anon_sym_BANG] = ACTIONS(4610), - [anon_sym_struct] = ACTIONS(4612), - [anon_sym_LPAREN] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(4610), - [anon_sym_LBRACE] = ACTIONS(4610), - [anon_sym_RBRACE] = ACTIONS(4610), - [anon_sym_DASH] = ACTIONS(4610), - [anon_sym_DOLLAR] = ACTIONS(4610), - [anon_sym_LBRACK] = ACTIONS(4610), - [anon_sym_void] = ACTIONS(4612), - [anon_sym_noreturn] = 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_else] = 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(4610), - [anon_sym_TILDE] = ACTIONS(4610), - [anon_sym_try] = ACTIONS(4612), - [anon_sym_DOT] = ACTIONS(4610), - [anon_sym_true] = ACTIONS(4612), - [anon_sym_false] = ACTIONS(4612), - [anon_sym_null] = ACTIONS(4612), - [anon_sym_unreachable] = ACTIONS(4612), - [anon_sym_undefined] = ACTIONS(4612), - [sym_sink] = ACTIONS(4612), - [sym_integer] = ACTIONS(4612), - [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(1904)] = { - [ts_builtin_sym_end] = ACTIONS(4614), - [sym_identifier] = ACTIONS(4616), - [anon_sym_import] = ACTIONS(4616), - [anon_sym_test] = ACTIONS(4616), - [anon_sym_hide] = ACTIONS(4616), - [anon_sym_func] = ACTIONS(4616), - [anon_sym_BANG] = ACTIONS(4614), - [anon_sym_struct] = ACTIONS(4616), - [anon_sym_LPAREN] = ACTIONS(4614), - [anon_sym_RPAREN] = ACTIONS(4614), - [anon_sym_LBRACE] = ACTIONS(4614), - [anon_sym_RBRACE] = ACTIONS(4614), - [anon_sym_DASH] = ACTIONS(4614), - [anon_sym_DOLLAR] = ACTIONS(4614), - [anon_sym_LBRACK] = ACTIONS(4614), - [anon_sym_void] = ACTIONS(4616), - [anon_sym_noreturn] = ACTIONS(4616), - [anon_sym_type] = ACTIONS(4616), - [anon_sym_anyopaque] = ACTIONS(4616), - [anon_sym_bool] = ACTIONS(4616), - [anon_sym_int] = ACTIONS(4616), - [anon_sym_uint] = ACTIONS(4616), - [anon_sym_float] = ACTIONS(4616), - [anon_sym_range] = ACTIONS(4616), - [anon_sym_i8] = ACTIONS(4616), - [anon_sym_i16] = ACTIONS(4616), - [anon_sym_i32] = ACTIONS(4616), - [anon_sym_i64] = ACTIONS(4616), - [anon_sym_u8] = ACTIONS(4616), - [anon_sym_u16] = ACTIONS(4616), - [anon_sym_u32] = ACTIONS(4616), - [anon_sym_u64] = ACTIONS(4616), - [anon_sym_isize] = ACTIONS(4616), - [anon_sym_usize] = ACTIONS(4616), - [anon_sym_f32] = ACTIONS(4616), - [anon_sym_f64] = ACTIONS(4616), - [anon_sym_c_char] = ACTIONS(4616), - [anon_sym_c_schar] = ACTIONS(4616), - [anon_sym_c_uchar] = ACTIONS(4616), - [anon_sym_c_short] = ACTIONS(4616), - [anon_sym_c_ushort] = ACTIONS(4616), - [anon_sym_c_int] = ACTIONS(4616), - [anon_sym_c_uint] = ACTIONS(4616), - [anon_sym_c_long] = ACTIONS(4616), - [anon_sym_c_ulong] = ACTIONS(4616), - [anon_sym_c_longlong] = ACTIONS(4616), - [anon_sym_c_ulonglong] = ACTIONS(4616), - [anon_sym_c_float] = ACTIONS(4616), - [anon_sym_c_double] = ACTIONS(4616), - [anon_sym_c_longdouble] = ACTIONS(4616), - [anon_sym_return] = ACTIONS(4616), - [anon_sym_yield] = ACTIONS(4616), - [anon_sym_break] = ACTIONS(4616), - [anon_sym_continue] = ACTIONS(4616), - [anon_sym_defer] = ACTIONS(4616), - [anon_sym_errdefer] = ACTIONS(4616), - [anon_sym_if] = ACTIONS(4616), - [anon_sym_else] = ACTIONS(4616), - [anon_sym_while] = ACTIONS(4616), - [anon_sym_expand] = ACTIONS(4616), - [anon_sym_for] = ACTIONS(4616), - [anon_sym_match] = ACTIONS(4616), - [anon_sym_AMP] = ACTIONS(4614), - [anon_sym_TILDE] = ACTIONS(4614), - [anon_sym_try] = ACTIONS(4616), - [anon_sym_DOT] = ACTIONS(4614), - [anon_sym_true] = ACTIONS(4616), - [anon_sym_false] = ACTIONS(4616), - [anon_sym_null] = ACTIONS(4616), - [anon_sym_unreachable] = ACTIONS(4616), - [anon_sym_undefined] = ACTIONS(4616), - [sym_sink] = ACTIONS(4616), - [sym_integer] = ACTIONS(4616), - [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(1905)] = { - [ts_builtin_sym_end] = ACTIONS(4618), - [sym_identifier] = ACTIONS(4620), - [anon_sym_import] = ACTIONS(4620), - [anon_sym_test] = ACTIONS(4620), - [anon_sym_hide] = ACTIONS(4620), - [anon_sym_func] = ACTIONS(4620), - [anon_sym_BANG] = ACTIONS(4618), - [anon_sym_struct] = ACTIONS(4620), - [anon_sym_LPAREN] = ACTIONS(4618), - [anon_sym_RPAREN] = ACTIONS(4618), - [anon_sym_LBRACE] = ACTIONS(4618), - [anon_sym_RBRACE] = ACTIONS(4618), - [anon_sym_DASH] = ACTIONS(4618), - [anon_sym_DOLLAR] = ACTIONS(4618), - [anon_sym_LBRACK] = ACTIONS(4618), - [anon_sym_void] = ACTIONS(4620), - [anon_sym_noreturn] = ACTIONS(4620), - [anon_sym_type] = ACTIONS(4620), - [anon_sym_anyopaque] = ACTIONS(4620), - [anon_sym_bool] = ACTIONS(4620), - [anon_sym_int] = ACTIONS(4620), - [anon_sym_uint] = ACTIONS(4620), - [anon_sym_float] = ACTIONS(4620), - [anon_sym_range] = ACTIONS(4620), - [anon_sym_i8] = ACTIONS(4620), - [anon_sym_i16] = ACTIONS(4620), - [anon_sym_i32] = ACTIONS(4620), - [anon_sym_i64] = ACTIONS(4620), - [anon_sym_u8] = ACTIONS(4620), - [anon_sym_u16] = ACTIONS(4620), - [anon_sym_u32] = ACTIONS(4620), - [anon_sym_u64] = ACTIONS(4620), - [anon_sym_isize] = ACTIONS(4620), - [anon_sym_usize] = ACTIONS(4620), - [anon_sym_f32] = ACTIONS(4620), - [anon_sym_f64] = ACTIONS(4620), - [anon_sym_c_char] = ACTIONS(4620), - [anon_sym_c_schar] = ACTIONS(4620), - [anon_sym_c_uchar] = ACTIONS(4620), - [anon_sym_c_short] = ACTIONS(4620), - [anon_sym_c_ushort] = ACTIONS(4620), - [anon_sym_c_int] = ACTIONS(4620), - [anon_sym_c_uint] = ACTIONS(4620), - [anon_sym_c_long] = ACTIONS(4620), - [anon_sym_c_ulong] = ACTIONS(4620), - [anon_sym_c_longlong] = ACTIONS(4620), - [anon_sym_c_ulonglong] = ACTIONS(4620), - [anon_sym_c_float] = ACTIONS(4620), - [anon_sym_c_double] = ACTIONS(4620), - [anon_sym_c_longdouble] = ACTIONS(4620), - [anon_sym_return] = ACTIONS(4620), - [anon_sym_yield] = ACTIONS(4620), - [anon_sym_break] = ACTIONS(4620), - [anon_sym_continue] = ACTIONS(4620), - [anon_sym_defer] = ACTIONS(4620), - [anon_sym_errdefer] = ACTIONS(4620), - [anon_sym_if] = ACTIONS(4620), - [anon_sym_else] = ACTIONS(4620), - [anon_sym_while] = ACTIONS(4620), - [anon_sym_expand] = ACTIONS(4620), - [anon_sym_for] = ACTIONS(4620), - [anon_sym_match] = ACTIONS(4620), - [anon_sym_AMP] = ACTIONS(4618), - [anon_sym_TILDE] = ACTIONS(4618), - [anon_sym_try] = ACTIONS(4620), - [anon_sym_DOT] = ACTIONS(4618), - [anon_sym_true] = ACTIONS(4620), - [anon_sym_false] = ACTIONS(4620), - [anon_sym_null] = ACTIONS(4620), - [anon_sym_unreachable] = ACTIONS(4620), - [anon_sym_undefined] = ACTIONS(4620), - [sym_sink] = ACTIONS(4620), - [sym_integer] = ACTIONS(4620), - [sym_float] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(4618), - [sym_multiline_string] = ACTIONS(4618), - [sym_character] = ACTIONS(4618), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4618), - }, - [STATE(1906)] = { - [ts_builtin_sym_end] = ACTIONS(4622), - [sym_identifier] = ACTIONS(4624), - [anon_sym_import] = ACTIONS(4624), - [anon_sym_test] = ACTIONS(4624), - [anon_sym_hide] = ACTIONS(4624), - [anon_sym_func] = ACTIONS(4624), - [anon_sym_BANG] = ACTIONS(4622), - [anon_sym_struct] = ACTIONS(4624), - [anon_sym_LPAREN] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(4622), - [anon_sym_LBRACE] = ACTIONS(4622), - [anon_sym_RBRACE] = ACTIONS(4622), - [anon_sym_DASH] = ACTIONS(4622), - [anon_sym_DOLLAR] = ACTIONS(4622), - [anon_sym_LBRACK] = ACTIONS(4622), - [anon_sym_void] = ACTIONS(4624), - [anon_sym_noreturn] = ACTIONS(4624), - [anon_sym_type] = ACTIONS(4624), - [anon_sym_anyopaque] = ACTIONS(4624), - [anon_sym_bool] = ACTIONS(4624), - [anon_sym_int] = ACTIONS(4624), - [anon_sym_uint] = ACTIONS(4624), - [anon_sym_float] = ACTIONS(4624), - [anon_sym_range] = ACTIONS(4624), - [anon_sym_i8] = ACTIONS(4624), - [anon_sym_i16] = ACTIONS(4624), - [anon_sym_i32] = ACTIONS(4624), - [anon_sym_i64] = ACTIONS(4624), - [anon_sym_u8] = ACTIONS(4624), - [anon_sym_u16] = ACTIONS(4624), - [anon_sym_u32] = ACTIONS(4624), - [anon_sym_u64] = ACTIONS(4624), - [anon_sym_isize] = ACTIONS(4624), - [anon_sym_usize] = ACTIONS(4624), - [anon_sym_f32] = ACTIONS(4624), - [anon_sym_f64] = ACTIONS(4624), - [anon_sym_c_char] = ACTIONS(4624), - [anon_sym_c_schar] = ACTIONS(4624), - [anon_sym_c_uchar] = ACTIONS(4624), - [anon_sym_c_short] = ACTIONS(4624), - [anon_sym_c_ushort] = ACTIONS(4624), - [anon_sym_c_int] = ACTIONS(4624), - [anon_sym_c_uint] = ACTIONS(4624), - [anon_sym_c_long] = ACTIONS(4624), - [anon_sym_c_ulong] = ACTIONS(4624), - [anon_sym_c_longlong] = ACTIONS(4624), - [anon_sym_c_ulonglong] = ACTIONS(4624), - [anon_sym_c_float] = ACTIONS(4624), - [anon_sym_c_double] = ACTIONS(4624), - [anon_sym_c_longdouble] = ACTIONS(4624), - [anon_sym_return] = ACTIONS(4624), - [anon_sym_yield] = ACTIONS(4624), - [anon_sym_break] = ACTIONS(4624), - [anon_sym_continue] = ACTIONS(4624), - [anon_sym_defer] = ACTIONS(4624), - [anon_sym_errdefer] = ACTIONS(4624), - [anon_sym_if] = ACTIONS(4624), - [anon_sym_else] = ACTIONS(4624), - [anon_sym_while] = ACTIONS(4624), - [anon_sym_expand] = ACTIONS(4624), - [anon_sym_for] = ACTIONS(4624), - [anon_sym_match] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4622), - [anon_sym_TILDE] = ACTIONS(4622), - [anon_sym_try] = ACTIONS(4624), - [anon_sym_DOT] = ACTIONS(4622), - [anon_sym_true] = ACTIONS(4624), - [anon_sym_false] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(4624), - [anon_sym_unreachable] = ACTIONS(4624), - [anon_sym_undefined] = ACTIONS(4624), - [sym_sink] = ACTIONS(4624), - [sym_integer] = ACTIONS(4624), - [sym_float] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(4622), - [sym_multiline_string] = ACTIONS(4622), - [sym_character] = ACTIONS(4622), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4622), - }, - [STATE(1907)] = { - [ts_builtin_sym_end] = ACTIONS(4626), - [sym_identifier] = ACTIONS(4628), - [anon_sym_import] = ACTIONS(4628), - [anon_sym_test] = ACTIONS(4628), - [anon_sym_hide] = ACTIONS(4628), - [anon_sym_func] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(4626), - [anon_sym_struct] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_RPAREN] = ACTIONS(4626), - [anon_sym_LBRACE] = ACTIONS(4626), - [anon_sym_RBRACE] = ACTIONS(4626), - [anon_sym_DASH] = ACTIONS(4626), - [anon_sym_DOLLAR] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4626), - [anon_sym_void] = ACTIONS(4628), - [anon_sym_noreturn] = ACTIONS(4628), - [anon_sym_type] = ACTIONS(4628), - [anon_sym_anyopaque] = ACTIONS(4628), - [anon_sym_bool] = ACTIONS(4628), - [anon_sym_int] = ACTIONS(4628), - [anon_sym_uint] = ACTIONS(4628), - [anon_sym_float] = ACTIONS(4628), - [anon_sym_range] = ACTIONS(4628), - [anon_sym_i8] = ACTIONS(4628), - [anon_sym_i16] = ACTIONS(4628), - [anon_sym_i32] = ACTIONS(4628), - [anon_sym_i64] = ACTIONS(4628), - [anon_sym_u8] = ACTIONS(4628), - [anon_sym_u16] = ACTIONS(4628), - [anon_sym_u32] = ACTIONS(4628), - [anon_sym_u64] = ACTIONS(4628), - [anon_sym_isize] = ACTIONS(4628), - [anon_sym_usize] = ACTIONS(4628), - [anon_sym_f32] = ACTIONS(4628), - [anon_sym_f64] = ACTIONS(4628), - [anon_sym_c_char] = ACTIONS(4628), - [anon_sym_c_schar] = ACTIONS(4628), - [anon_sym_c_uchar] = ACTIONS(4628), - [anon_sym_c_short] = ACTIONS(4628), - [anon_sym_c_ushort] = ACTIONS(4628), - [anon_sym_c_int] = ACTIONS(4628), - [anon_sym_c_uint] = ACTIONS(4628), - [anon_sym_c_long] = ACTIONS(4628), - [anon_sym_c_ulong] = ACTIONS(4628), - [anon_sym_c_longlong] = ACTIONS(4628), - [anon_sym_c_ulonglong] = ACTIONS(4628), - [anon_sym_c_float] = ACTIONS(4628), - [anon_sym_c_double] = ACTIONS(4628), - [anon_sym_c_longdouble] = ACTIONS(4628), - [anon_sym_return] = ACTIONS(4628), - [anon_sym_yield] = ACTIONS(4628), - [anon_sym_break] = ACTIONS(4628), - [anon_sym_continue] = ACTIONS(4628), - [anon_sym_defer] = ACTIONS(4628), - [anon_sym_errdefer] = ACTIONS(4628), - [anon_sym_if] = ACTIONS(4628), - [anon_sym_else] = ACTIONS(4628), - [anon_sym_while] = ACTIONS(4628), - [anon_sym_expand] = ACTIONS(4628), - [anon_sym_for] = ACTIONS(4628), - [anon_sym_match] = ACTIONS(4628), - [anon_sym_AMP] = ACTIONS(4626), - [anon_sym_TILDE] = ACTIONS(4626), - [anon_sym_try] = ACTIONS(4628), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_true] = ACTIONS(4628), - [anon_sym_false] = ACTIONS(4628), - [anon_sym_null] = ACTIONS(4628), - [anon_sym_unreachable] = ACTIONS(4628), - [anon_sym_undefined] = ACTIONS(4628), - [sym_sink] = ACTIONS(4628), - [sym_integer] = ACTIONS(4628), - [sym_float] = ACTIONS(4626), - [anon_sym_DQUOTE] = ACTIONS(4626), - [sym_multiline_string] = ACTIONS(4626), - [sym_character] = ACTIONS(4626), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4626), - }, - [STATE(1908)] = { - [ts_builtin_sym_end] = ACTIONS(4630), - [sym_identifier] = ACTIONS(4632), - [anon_sym_import] = ACTIONS(4632), - [anon_sym_test] = ACTIONS(4632), - [anon_sym_hide] = ACTIONS(4632), - [anon_sym_func] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(4630), - [anon_sym_struct] = ACTIONS(4632), - [anon_sym_LPAREN] = ACTIONS(4630), - [anon_sym_RPAREN] = ACTIONS(4630), - [anon_sym_LBRACE] = ACTIONS(4630), - [anon_sym_RBRACE] = ACTIONS(4630), - [anon_sym_DASH] = ACTIONS(4630), - [anon_sym_DOLLAR] = ACTIONS(4630), - [anon_sym_LBRACK] = ACTIONS(4630), - [anon_sym_void] = ACTIONS(4632), - [anon_sym_noreturn] = ACTIONS(4632), - [anon_sym_type] = ACTIONS(4632), - [anon_sym_anyopaque] = ACTIONS(4632), - [anon_sym_bool] = ACTIONS(4632), - [anon_sym_int] = ACTIONS(4632), - [anon_sym_uint] = ACTIONS(4632), - [anon_sym_float] = ACTIONS(4632), - [anon_sym_range] = ACTIONS(4632), - [anon_sym_i8] = ACTIONS(4632), - [anon_sym_i16] = ACTIONS(4632), - [anon_sym_i32] = ACTIONS(4632), - [anon_sym_i64] = ACTIONS(4632), - [anon_sym_u8] = ACTIONS(4632), - [anon_sym_u16] = ACTIONS(4632), - [anon_sym_u32] = ACTIONS(4632), - [anon_sym_u64] = ACTIONS(4632), - [anon_sym_isize] = ACTIONS(4632), - [anon_sym_usize] = ACTIONS(4632), - [anon_sym_f32] = ACTIONS(4632), - [anon_sym_f64] = ACTIONS(4632), - [anon_sym_c_char] = ACTIONS(4632), - [anon_sym_c_schar] = ACTIONS(4632), - [anon_sym_c_uchar] = ACTIONS(4632), - [anon_sym_c_short] = ACTIONS(4632), - [anon_sym_c_ushort] = ACTIONS(4632), - [anon_sym_c_int] = ACTIONS(4632), - [anon_sym_c_uint] = ACTIONS(4632), - [anon_sym_c_long] = ACTIONS(4632), - [anon_sym_c_ulong] = ACTIONS(4632), - [anon_sym_c_longlong] = ACTIONS(4632), - [anon_sym_c_ulonglong] = ACTIONS(4632), - [anon_sym_c_float] = ACTIONS(4632), - [anon_sym_c_double] = ACTIONS(4632), - [anon_sym_c_longdouble] = ACTIONS(4632), - [anon_sym_return] = ACTIONS(4632), - [anon_sym_yield] = ACTIONS(4632), - [anon_sym_break] = ACTIONS(4632), - [anon_sym_continue] = ACTIONS(4632), - [anon_sym_defer] = ACTIONS(4632), - [anon_sym_errdefer] = ACTIONS(4632), - [anon_sym_if] = ACTIONS(4632), - [anon_sym_else] = ACTIONS(4632), - [anon_sym_while] = ACTIONS(4632), - [anon_sym_expand] = ACTIONS(4632), - [anon_sym_for] = ACTIONS(4632), - [anon_sym_match] = ACTIONS(4632), - [anon_sym_AMP] = ACTIONS(4630), - [anon_sym_TILDE] = ACTIONS(4630), - [anon_sym_try] = ACTIONS(4632), - [anon_sym_DOT] = ACTIONS(4630), - [anon_sym_true] = ACTIONS(4632), - [anon_sym_false] = ACTIONS(4632), - [anon_sym_null] = ACTIONS(4632), - [anon_sym_unreachable] = ACTIONS(4632), - [anon_sym_undefined] = ACTIONS(4632), - [sym_sink] = ACTIONS(4632), - [sym_integer] = ACTIONS(4632), - [sym_float] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(4630), - [sym_multiline_string] = ACTIONS(4630), - [sym_character] = ACTIONS(4630), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4630), - }, - [STATE(1909)] = { - [ts_builtin_sym_end] = ACTIONS(4634), - [sym_identifier] = ACTIONS(4636), - [anon_sym_import] = ACTIONS(4636), - [anon_sym_test] = ACTIONS(4636), - [anon_sym_hide] = ACTIONS(4636), - [anon_sym_func] = ACTIONS(4636), - [anon_sym_BANG] = ACTIONS(4634), - [anon_sym_struct] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4634), - [anon_sym_RPAREN] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4634), - [anon_sym_RBRACE] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_DOLLAR] = ACTIONS(4634), - [anon_sym_LBRACK] = ACTIONS(4634), - [anon_sym_void] = ACTIONS(4636), - [anon_sym_noreturn] = ACTIONS(4636), - [anon_sym_type] = ACTIONS(4636), - [anon_sym_anyopaque] = ACTIONS(4636), - [anon_sym_bool] = ACTIONS(4636), - [anon_sym_int] = ACTIONS(4636), - [anon_sym_uint] = ACTIONS(4636), - [anon_sym_float] = ACTIONS(4636), - [anon_sym_range] = ACTIONS(4636), - [anon_sym_i8] = ACTIONS(4636), - [anon_sym_i16] = ACTIONS(4636), - [anon_sym_i32] = ACTIONS(4636), - [anon_sym_i64] = ACTIONS(4636), - [anon_sym_u8] = ACTIONS(4636), - [anon_sym_u16] = ACTIONS(4636), - [anon_sym_u32] = ACTIONS(4636), - [anon_sym_u64] = ACTIONS(4636), - [anon_sym_isize] = ACTIONS(4636), - [anon_sym_usize] = ACTIONS(4636), - [anon_sym_f32] = ACTIONS(4636), - [anon_sym_f64] = ACTIONS(4636), - [anon_sym_c_char] = ACTIONS(4636), - [anon_sym_c_schar] = ACTIONS(4636), - [anon_sym_c_uchar] = ACTIONS(4636), - [anon_sym_c_short] = ACTIONS(4636), - [anon_sym_c_ushort] = ACTIONS(4636), - [anon_sym_c_int] = ACTIONS(4636), - [anon_sym_c_uint] = ACTIONS(4636), - [anon_sym_c_long] = ACTIONS(4636), - [anon_sym_c_ulong] = ACTIONS(4636), - [anon_sym_c_longlong] = ACTIONS(4636), - [anon_sym_c_ulonglong] = ACTIONS(4636), - [anon_sym_c_float] = ACTIONS(4636), - [anon_sym_c_double] = ACTIONS(4636), - [anon_sym_c_longdouble] = ACTIONS(4636), - [anon_sym_return] = ACTIONS(4636), - [anon_sym_yield] = ACTIONS(4636), - [anon_sym_break] = ACTIONS(4636), - [anon_sym_continue] = ACTIONS(4636), - [anon_sym_defer] = ACTIONS(4636), - [anon_sym_errdefer] = ACTIONS(4636), - [anon_sym_if] = ACTIONS(4636), - [anon_sym_else] = ACTIONS(4636), - [anon_sym_while] = ACTIONS(4636), - [anon_sym_expand] = ACTIONS(4636), - [anon_sym_for] = ACTIONS(4636), - [anon_sym_match] = ACTIONS(4636), - [anon_sym_AMP] = ACTIONS(4634), - [anon_sym_TILDE] = ACTIONS(4634), - [anon_sym_try] = ACTIONS(4636), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_true] = ACTIONS(4636), - [anon_sym_false] = ACTIONS(4636), - [anon_sym_null] = ACTIONS(4636), - [anon_sym_unreachable] = ACTIONS(4636), - [anon_sym_undefined] = ACTIONS(4636), - [sym_sink] = ACTIONS(4636), - [sym_integer] = ACTIONS(4636), - [sym_float] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(4634), - [sym_multiline_string] = ACTIONS(4634), - [sym_character] = ACTIONS(4634), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4634), - }, - [STATE(1910)] = { - [ts_builtin_sym_end] = ACTIONS(4638), - [sym_identifier] = ACTIONS(4640), - [anon_sym_import] = ACTIONS(4640), - [anon_sym_test] = ACTIONS(4640), - [anon_sym_hide] = ACTIONS(4640), - [anon_sym_func] = ACTIONS(4640), - [anon_sym_BANG] = ACTIONS(4638), - [anon_sym_struct] = ACTIONS(4640), - [anon_sym_LPAREN] = ACTIONS(4638), - [anon_sym_RPAREN] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4638), - [anon_sym_RBRACE] = ACTIONS(4638), - [anon_sym_DASH] = ACTIONS(4638), - [anon_sym_DOLLAR] = ACTIONS(4638), - [anon_sym_LBRACK] = ACTIONS(4638), - [anon_sym_void] = ACTIONS(4640), - [anon_sym_noreturn] = ACTIONS(4640), - [anon_sym_type] = ACTIONS(4640), - [anon_sym_anyopaque] = ACTIONS(4640), - [anon_sym_bool] = ACTIONS(4640), - [anon_sym_int] = ACTIONS(4640), - [anon_sym_uint] = ACTIONS(4640), - [anon_sym_float] = ACTIONS(4640), - [anon_sym_range] = ACTIONS(4640), - [anon_sym_i8] = ACTIONS(4640), - [anon_sym_i16] = ACTIONS(4640), - [anon_sym_i32] = ACTIONS(4640), - [anon_sym_i64] = ACTIONS(4640), - [anon_sym_u8] = ACTIONS(4640), - [anon_sym_u16] = ACTIONS(4640), - [anon_sym_u32] = ACTIONS(4640), - [anon_sym_u64] = ACTIONS(4640), - [anon_sym_isize] = ACTIONS(4640), - [anon_sym_usize] = ACTIONS(4640), - [anon_sym_f32] = ACTIONS(4640), - [anon_sym_f64] = ACTIONS(4640), - [anon_sym_c_char] = ACTIONS(4640), - [anon_sym_c_schar] = ACTIONS(4640), - [anon_sym_c_uchar] = ACTIONS(4640), - [anon_sym_c_short] = ACTIONS(4640), - [anon_sym_c_ushort] = ACTIONS(4640), - [anon_sym_c_int] = ACTIONS(4640), - [anon_sym_c_uint] = ACTIONS(4640), - [anon_sym_c_long] = ACTIONS(4640), - [anon_sym_c_ulong] = ACTIONS(4640), - [anon_sym_c_longlong] = ACTIONS(4640), - [anon_sym_c_ulonglong] = ACTIONS(4640), - [anon_sym_c_float] = ACTIONS(4640), - [anon_sym_c_double] = ACTIONS(4640), - [anon_sym_c_longdouble] = ACTIONS(4640), - [anon_sym_return] = ACTIONS(4640), - [anon_sym_yield] = ACTIONS(4640), - [anon_sym_break] = ACTIONS(4640), - [anon_sym_continue] = ACTIONS(4640), - [anon_sym_defer] = ACTIONS(4640), - [anon_sym_errdefer] = ACTIONS(4640), - [anon_sym_if] = ACTIONS(4640), - [anon_sym_else] = ACTIONS(4640), - [anon_sym_while] = ACTIONS(4640), - [anon_sym_expand] = ACTIONS(4640), - [anon_sym_for] = ACTIONS(4640), - [anon_sym_match] = ACTIONS(4640), - [anon_sym_AMP] = ACTIONS(4638), - [anon_sym_TILDE] = ACTIONS(4638), - [anon_sym_try] = ACTIONS(4640), - [anon_sym_DOT] = ACTIONS(4638), - [anon_sym_true] = ACTIONS(4640), - [anon_sym_false] = ACTIONS(4640), - [anon_sym_null] = ACTIONS(4640), - [anon_sym_unreachable] = ACTIONS(4640), - [anon_sym_undefined] = ACTIONS(4640), - [sym_sink] = ACTIONS(4640), - [sym_integer] = ACTIONS(4640), - [sym_float] = ACTIONS(4638), - [anon_sym_DQUOTE] = ACTIONS(4638), - [sym_multiline_string] = ACTIONS(4638), - [sym_character] = ACTIONS(4638), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4638), - }, - [STATE(1911)] = { - [ts_builtin_sym_end] = ACTIONS(4642), - [sym_identifier] = ACTIONS(4644), - [anon_sym_import] = ACTIONS(4644), - [anon_sym_test] = ACTIONS(4644), - [anon_sym_hide] = ACTIONS(4644), - [anon_sym_func] = ACTIONS(4644), - [anon_sym_BANG] = ACTIONS(4642), - [anon_sym_struct] = ACTIONS(4644), - [anon_sym_LPAREN] = ACTIONS(4642), - [anon_sym_RPAREN] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(4642), - [anon_sym_RBRACE] = ACTIONS(4642), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_DOLLAR] = ACTIONS(4642), - [anon_sym_LBRACK] = ACTIONS(4642), - [anon_sym_void] = ACTIONS(4644), - [anon_sym_noreturn] = ACTIONS(4644), - [anon_sym_type] = ACTIONS(4644), - [anon_sym_anyopaque] = ACTIONS(4644), - [anon_sym_bool] = ACTIONS(4644), - [anon_sym_int] = ACTIONS(4644), - [anon_sym_uint] = ACTIONS(4644), - [anon_sym_float] = ACTIONS(4644), - [anon_sym_range] = ACTIONS(4644), - [anon_sym_i8] = ACTIONS(4644), - [anon_sym_i16] = ACTIONS(4644), - [anon_sym_i32] = ACTIONS(4644), - [anon_sym_i64] = ACTIONS(4644), - [anon_sym_u8] = ACTIONS(4644), - [anon_sym_u16] = ACTIONS(4644), - [anon_sym_u32] = ACTIONS(4644), - [anon_sym_u64] = ACTIONS(4644), - [anon_sym_isize] = ACTIONS(4644), - [anon_sym_usize] = ACTIONS(4644), - [anon_sym_f32] = ACTIONS(4644), - [anon_sym_f64] = ACTIONS(4644), - [anon_sym_c_char] = ACTIONS(4644), - [anon_sym_c_schar] = ACTIONS(4644), - [anon_sym_c_uchar] = ACTIONS(4644), - [anon_sym_c_short] = ACTIONS(4644), - [anon_sym_c_ushort] = ACTIONS(4644), - [anon_sym_c_int] = ACTIONS(4644), - [anon_sym_c_uint] = ACTIONS(4644), - [anon_sym_c_long] = ACTIONS(4644), - [anon_sym_c_ulong] = ACTIONS(4644), - [anon_sym_c_longlong] = ACTIONS(4644), - [anon_sym_c_ulonglong] = ACTIONS(4644), - [anon_sym_c_float] = ACTIONS(4644), - [anon_sym_c_double] = ACTIONS(4644), - [anon_sym_c_longdouble] = ACTIONS(4644), - [anon_sym_return] = ACTIONS(4644), - [anon_sym_yield] = ACTIONS(4644), - [anon_sym_break] = ACTIONS(4644), - [anon_sym_continue] = ACTIONS(4644), - [anon_sym_defer] = ACTIONS(4644), - [anon_sym_errdefer] = ACTIONS(4644), - [anon_sym_if] = ACTIONS(4644), - [anon_sym_else] = ACTIONS(4644), - [anon_sym_while] = ACTIONS(4644), - [anon_sym_expand] = ACTIONS(4644), - [anon_sym_for] = ACTIONS(4644), - [anon_sym_match] = ACTIONS(4644), - [anon_sym_AMP] = ACTIONS(4642), - [anon_sym_TILDE] = ACTIONS(4642), - [anon_sym_try] = ACTIONS(4644), - [anon_sym_DOT] = ACTIONS(4642), - [anon_sym_true] = ACTIONS(4644), - [anon_sym_false] = ACTIONS(4644), - [anon_sym_null] = ACTIONS(4644), - [anon_sym_unreachable] = ACTIONS(4644), - [anon_sym_undefined] = ACTIONS(4644), - [sym_sink] = ACTIONS(4644), - [sym_integer] = ACTIONS(4644), - [sym_float] = ACTIONS(4642), - [anon_sym_DQUOTE] = ACTIONS(4642), - [sym_multiline_string] = ACTIONS(4642), - [sym_character] = ACTIONS(4642), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4642), - }, - [STATE(1912)] = { - [ts_builtin_sym_end] = ACTIONS(4646), - [sym_identifier] = ACTIONS(4648), - [anon_sym_import] = ACTIONS(4648), - [anon_sym_test] = ACTIONS(4648), - [anon_sym_hide] = ACTIONS(4648), - [anon_sym_func] = ACTIONS(4648), - [anon_sym_BANG] = ACTIONS(4646), - [anon_sym_struct] = ACTIONS(4648), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_RPAREN] = ACTIONS(4646), - [anon_sym_LBRACE] = ACTIONS(4646), - [anon_sym_RBRACE] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_DOLLAR] = ACTIONS(4646), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_void] = ACTIONS(4648), - [anon_sym_noreturn] = ACTIONS(4648), - [anon_sym_type] = ACTIONS(4648), - [anon_sym_anyopaque] = ACTIONS(4648), - [anon_sym_bool] = ACTIONS(4648), - [anon_sym_int] = ACTIONS(4648), - [anon_sym_uint] = ACTIONS(4648), - [anon_sym_float] = ACTIONS(4648), - [anon_sym_range] = ACTIONS(4648), - [anon_sym_i8] = ACTIONS(4648), - [anon_sym_i16] = ACTIONS(4648), - [anon_sym_i32] = ACTIONS(4648), - [anon_sym_i64] = ACTIONS(4648), - [anon_sym_u8] = ACTIONS(4648), - [anon_sym_u16] = ACTIONS(4648), - [anon_sym_u32] = ACTIONS(4648), - [anon_sym_u64] = ACTIONS(4648), - [anon_sym_isize] = ACTIONS(4648), - [anon_sym_usize] = ACTIONS(4648), - [anon_sym_f32] = ACTIONS(4648), - [anon_sym_f64] = ACTIONS(4648), - [anon_sym_c_char] = ACTIONS(4648), - [anon_sym_c_schar] = ACTIONS(4648), - [anon_sym_c_uchar] = ACTIONS(4648), - [anon_sym_c_short] = ACTIONS(4648), - [anon_sym_c_ushort] = ACTIONS(4648), - [anon_sym_c_int] = ACTIONS(4648), - [anon_sym_c_uint] = ACTIONS(4648), - [anon_sym_c_long] = ACTIONS(4648), - [anon_sym_c_ulong] = ACTIONS(4648), - [anon_sym_c_longlong] = ACTIONS(4648), - [anon_sym_c_ulonglong] = ACTIONS(4648), - [anon_sym_c_float] = ACTIONS(4648), - [anon_sym_c_double] = ACTIONS(4648), - [anon_sym_c_longdouble] = ACTIONS(4648), - [anon_sym_return] = ACTIONS(4648), - [anon_sym_yield] = ACTIONS(4648), - [anon_sym_break] = ACTIONS(4648), - [anon_sym_continue] = ACTIONS(4648), - [anon_sym_defer] = ACTIONS(4648), - [anon_sym_errdefer] = ACTIONS(4648), - [anon_sym_if] = ACTIONS(4648), - [anon_sym_else] = ACTIONS(4648), - [anon_sym_while] = ACTIONS(4648), - [anon_sym_expand] = ACTIONS(4648), - [anon_sym_for] = ACTIONS(4648), - [anon_sym_match] = ACTIONS(4648), - [anon_sym_AMP] = ACTIONS(4646), - [anon_sym_TILDE] = ACTIONS(4646), - [anon_sym_try] = ACTIONS(4648), - [anon_sym_DOT] = ACTIONS(4646), - [anon_sym_true] = ACTIONS(4648), - [anon_sym_false] = ACTIONS(4648), - [anon_sym_null] = ACTIONS(4648), - [anon_sym_unreachable] = ACTIONS(4648), - [anon_sym_undefined] = ACTIONS(4648), - [sym_sink] = ACTIONS(4648), - [sym_integer] = ACTIONS(4648), - [sym_float] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(4646), - [sym_multiline_string] = ACTIONS(4646), - [sym_character] = ACTIONS(4646), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4646), - }, - [STATE(1913)] = { - [ts_builtin_sym_end] = ACTIONS(4650), - [sym_identifier] = ACTIONS(4652), - [anon_sym_import] = ACTIONS(4652), - [anon_sym_test] = ACTIONS(4652), - [anon_sym_hide] = ACTIONS(4652), - [anon_sym_func] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(4650), - [anon_sym_struct] = ACTIONS(4652), - [anon_sym_LPAREN] = ACTIONS(4650), - [anon_sym_RPAREN] = ACTIONS(4650), - [anon_sym_LBRACE] = ACTIONS(4650), - [anon_sym_RBRACE] = ACTIONS(4650), - [anon_sym_DASH] = ACTIONS(4650), - [anon_sym_DOLLAR] = ACTIONS(4650), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_void] = ACTIONS(4652), - [anon_sym_noreturn] = ACTIONS(4652), - [anon_sym_type] = ACTIONS(4652), - [anon_sym_anyopaque] = ACTIONS(4652), - [anon_sym_bool] = ACTIONS(4652), - [anon_sym_int] = ACTIONS(4652), - [anon_sym_uint] = ACTIONS(4652), - [anon_sym_float] = ACTIONS(4652), - [anon_sym_range] = ACTIONS(4652), - [anon_sym_i8] = ACTIONS(4652), - [anon_sym_i16] = ACTIONS(4652), - [anon_sym_i32] = ACTIONS(4652), - [anon_sym_i64] = ACTIONS(4652), - [anon_sym_u8] = ACTIONS(4652), - [anon_sym_u16] = ACTIONS(4652), - [anon_sym_u32] = ACTIONS(4652), - [anon_sym_u64] = ACTIONS(4652), - [anon_sym_isize] = ACTIONS(4652), - [anon_sym_usize] = ACTIONS(4652), - [anon_sym_f32] = ACTIONS(4652), - [anon_sym_f64] = ACTIONS(4652), - [anon_sym_c_char] = ACTIONS(4652), - [anon_sym_c_schar] = ACTIONS(4652), - [anon_sym_c_uchar] = ACTIONS(4652), - [anon_sym_c_short] = ACTIONS(4652), - [anon_sym_c_ushort] = ACTIONS(4652), - [anon_sym_c_int] = ACTIONS(4652), - [anon_sym_c_uint] = ACTIONS(4652), - [anon_sym_c_long] = ACTIONS(4652), - [anon_sym_c_ulong] = ACTIONS(4652), - [anon_sym_c_longlong] = ACTIONS(4652), - [anon_sym_c_ulonglong] = ACTIONS(4652), - [anon_sym_c_float] = ACTIONS(4652), - [anon_sym_c_double] = ACTIONS(4652), - [anon_sym_c_longdouble] = ACTIONS(4652), - [anon_sym_return] = ACTIONS(4652), - [anon_sym_yield] = ACTIONS(4652), - [anon_sym_break] = ACTIONS(4652), - [anon_sym_continue] = ACTIONS(4652), - [anon_sym_defer] = ACTIONS(4652), - [anon_sym_errdefer] = ACTIONS(4652), - [anon_sym_if] = ACTIONS(4652), - [anon_sym_else] = ACTIONS(4652), - [anon_sym_while] = ACTIONS(4652), - [anon_sym_expand] = ACTIONS(4652), - [anon_sym_for] = ACTIONS(4652), - [anon_sym_match] = ACTIONS(4652), - [anon_sym_AMP] = ACTIONS(4650), - [anon_sym_TILDE] = ACTIONS(4650), - [anon_sym_try] = ACTIONS(4652), - [anon_sym_DOT] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [anon_sym_null] = ACTIONS(4652), - [anon_sym_unreachable] = ACTIONS(4652), - [anon_sym_undefined] = ACTIONS(4652), - [sym_sink] = ACTIONS(4652), - [sym_integer] = ACTIONS(4652), - [sym_float] = ACTIONS(4650), - [anon_sym_DQUOTE] = ACTIONS(4650), - [sym_multiline_string] = ACTIONS(4650), - [sym_character] = ACTIONS(4650), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4650), - }, - [STATE(1914)] = { - [ts_builtin_sym_end] = ACTIONS(4654), - [sym_identifier] = ACTIONS(4656), - [anon_sym_import] = ACTIONS(4656), - [anon_sym_test] = ACTIONS(4656), - [anon_sym_hide] = ACTIONS(4656), - [anon_sym_func] = ACTIONS(4656), - [anon_sym_BANG] = ACTIONS(4654), - [anon_sym_struct] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(4654), - [anon_sym_RPAREN] = ACTIONS(4654), - [anon_sym_LBRACE] = ACTIONS(4654), - [anon_sym_RBRACE] = ACTIONS(4654), - [anon_sym_DASH] = ACTIONS(4654), - [anon_sym_DOLLAR] = ACTIONS(4654), - [anon_sym_LBRACK] = ACTIONS(4654), - [anon_sym_void] = ACTIONS(4656), - [anon_sym_noreturn] = ACTIONS(4656), - [anon_sym_type] = ACTIONS(4656), - [anon_sym_anyopaque] = ACTIONS(4656), - [anon_sym_bool] = ACTIONS(4656), - [anon_sym_int] = ACTIONS(4656), - [anon_sym_uint] = ACTIONS(4656), - [anon_sym_float] = ACTIONS(4656), - [anon_sym_range] = ACTIONS(4656), - [anon_sym_i8] = ACTIONS(4656), - [anon_sym_i16] = ACTIONS(4656), - [anon_sym_i32] = ACTIONS(4656), - [anon_sym_i64] = ACTIONS(4656), - [anon_sym_u8] = ACTIONS(4656), - [anon_sym_u16] = ACTIONS(4656), - [anon_sym_u32] = ACTIONS(4656), - [anon_sym_u64] = ACTIONS(4656), - [anon_sym_isize] = ACTIONS(4656), - [anon_sym_usize] = ACTIONS(4656), - [anon_sym_f32] = ACTIONS(4656), - [anon_sym_f64] = ACTIONS(4656), - [anon_sym_c_char] = ACTIONS(4656), - [anon_sym_c_schar] = ACTIONS(4656), - [anon_sym_c_uchar] = ACTIONS(4656), - [anon_sym_c_short] = ACTIONS(4656), - [anon_sym_c_ushort] = ACTIONS(4656), - [anon_sym_c_int] = ACTIONS(4656), - [anon_sym_c_uint] = ACTIONS(4656), - [anon_sym_c_long] = ACTIONS(4656), - [anon_sym_c_ulong] = ACTIONS(4656), - [anon_sym_c_longlong] = ACTIONS(4656), - [anon_sym_c_ulonglong] = ACTIONS(4656), - [anon_sym_c_float] = ACTIONS(4656), - [anon_sym_c_double] = ACTIONS(4656), - [anon_sym_c_longdouble] = ACTIONS(4656), - [anon_sym_return] = ACTIONS(4656), - [anon_sym_yield] = ACTIONS(4656), - [anon_sym_break] = ACTIONS(4656), - [anon_sym_continue] = ACTIONS(4656), - [anon_sym_defer] = ACTIONS(4656), - [anon_sym_errdefer] = ACTIONS(4656), - [anon_sym_if] = ACTIONS(4656), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_while] = ACTIONS(4656), - [anon_sym_expand] = ACTIONS(4656), - [anon_sym_for] = ACTIONS(4656), - [anon_sym_match] = ACTIONS(4656), - [anon_sym_AMP] = ACTIONS(4654), - [anon_sym_TILDE] = ACTIONS(4654), - [anon_sym_try] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_true] = ACTIONS(4656), - [anon_sym_false] = ACTIONS(4656), - [anon_sym_null] = ACTIONS(4656), - [anon_sym_unreachable] = ACTIONS(4656), - [anon_sym_undefined] = ACTIONS(4656), - [sym_sink] = ACTIONS(4656), - [sym_integer] = ACTIONS(4656), - [sym_float] = ACTIONS(4654), - [anon_sym_DQUOTE] = ACTIONS(4654), - [sym_multiline_string] = ACTIONS(4654), - [sym_character] = ACTIONS(4654), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4654), - }, - [STATE(1915)] = { - [ts_builtin_sym_end] = ACTIONS(4658), - [sym_identifier] = ACTIONS(4660), - [anon_sym_import] = ACTIONS(4660), - [anon_sym_test] = ACTIONS(4660), - [anon_sym_hide] = ACTIONS(4660), - [anon_sym_func] = ACTIONS(4660), - [anon_sym_BANG] = ACTIONS(4658), - [anon_sym_struct] = ACTIONS(4660), - [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_RPAREN] = ACTIONS(4658), - [anon_sym_LBRACE] = ACTIONS(4658), - [anon_sym_RBRACE] = ACTIONS(4658), - [anon_sym_DASH] = ACTIONS(4658), - [anon_sym_DOLLAR] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4658), - [anon_sym_void] = ACTIONS(4660), - [anon_sym_noreturn] = ACTIONS(4660), - [anon_sym_type] = ACTIONS(4660), - [anon_sym_anyopaque] = ACTIONS(4660), - [anon_sym_bool] = ACTIONS(4660), - [anon_sym_int] = ACTIONS(4660), - [anon_sym_uint] = ACTIONS(4660), - [anon_sym_float] = ACTIONS(4660), - [anon_sym_range] = ACTIONS(4660), - [anon_sym_i8] = ACTIONS(4660), - [anon_sym_i16] = ACTIONS(4660), - [anon_sym_i32] = ACTIONS(4660), - [anon_sym_i64] = ACTIONS(4660), - [anon_sym_u8] = ACTIONS(4660), - [anon_sym_u16] = ACTIONS(4660), - [anon_sym_u32] = ACTIONS(4660), - [anon_sym_u64] = ACTIONS(4660), - [anon_sym_isize] = ACTIONS(4660), - [anon_sym_usize] = ACTIONS(4660), - [anon_sym_f32] = ACTIONS(4660), - [anon_sym_f64] = ACTIONS(4660), - [anon_sym_c_char] = ACTIONS(4660), - [anon_sym_c_schar] = ACTIONS(4660), - [anon_sym_c_uchar] = ACTIONS(4660), - [anon_sym_c_short] = ACTIONS(4660), - [anon_sym_c_ushort] = ACTIONS(4660), - [anon_sym_c_int] = ACTIONS(4660), - [anon_sym_c_uint] = ACTIONS(4660), - [anon_sym_c_long] = ACTIONS(4660), - [anon_sym_c_ulong] = ACTIONS(4660), - [anon_sym_c_longlong] = ACTIONS(4660), - [anon_sym_c_ulonglong] = ACTIONS(4660), - [anon_sym_c_float] = ACTIONS(4660), - [anon_sym_c_double] = ACTIONS(4660), - [anon_sym_c_longdouble] = ACTIONS(4660), - [anon_sym_return] = ACTIONS(4660), - [anon_sym_yield] = ACTIONS(4660), - [anon_sym_break] = ACTIONS(4660), - [anon_sym_continue] = ACTIONS(4660), - [anon_sym_defer] = ACTIONS(4660), - [anon_sym_errdefer] = ACTIONS(4660), - [anon_sym_if] = ACTIONS(4660), - [anon_sym_else] = ACTIONS(4660), - [anon_sym_while] = ACTIONS(4660), - [anon_sym_expand] = ACTIONS(4660), - [anon_sym_for] = ACTIONS(4660), - [anon_sym_match] = ACTIONS(4660), - [anon_sym_AMP] = ACTIONS(4658), - [anon_sym_TILDE] = ACTIONS(4658), - [anon_sym_try] = ACTIONS(4660), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_true] = ACTIONS(4660), - [anon_sym_false] = ACTIONS(4660), - [anon_sym_null] = ACTIONS(4660), - [anon_sym_unreachable] = ACTIONS(4660), - [anon_sym_undefined] = ACTIONS(4660), - [sym_sink] = ACTIONS(4660), - [sym_integer] = ACTIONS(4660), - [sym_float] = ACTIONS(4658), - [anon_sym_DQUOTE] = ACTIONS(4658), - [sym_multiline_string] = ACTIONS(4658), - [sym_character] = ACTIONS(4658), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4658), - }, - [STATE(1916)] = { - [ts_builtin_sym_end] = ACTIONS(4662), - [sym_identifier] = ACTIONS(4664), - [anon_sym_import] = ACTIONS(4664), - [anon_sym_test] = ACTIONS(4664), - [anon_sym_hide] = ACTIONS(4664), - [anon_sym_func] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_struct] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4662), - [anon_sym_RPAREN] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4662), - [anon_sym_RBRACE] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_DOLLAR] = ACTIONS(4662), - [anon_sym_LBRACK] = ACTIONS(4662), - [anon_sym_void] = ACTIONS(4664), - [anon_sym_noreturn] = ACTIONS(4664), - [anon_sym_type] = ACTIONS(4664), - [anon_sym_anyopaque] = ACTIONS(4664), - [anon_sym_bool] = ACTIONS(4664), - [anon_sym_int] = ACTIONS(4664), - [anon_sym_uint] = ACTIONS(4664), - [anon_sym_float] = ACTIONS(4664), - [anon_sym_range] = ACTIONS(4664), - [anon_sym_i8] = ACTIONS(4664), - [anon_sym_i16] = ACTIONS(4664), - [anon_sym_i32] = ACTIONS(4664), - [anon_sym_i64] = ACTIONS(4664), - [anon_sym_u8] = ACTIONS(4664), - [anon_sym_u16] = ACTIONS(4664), - [anon_sym_u32] = ACTIONS(4664), - [anon_sym_u64] = ACTIONS(4664), - [anon_sym_isize] = ACTIONS(4664), - [anon_sym_usize] = ACTIONS(4664), - [anon_sym_f32] = ACTIONS(4664), - [anon_sym_f64] = ACTIONS(4664), - [anon_sym_c_char] = ACTIONS(4664), - [anon_sym_c_schar] = ACTIONS(4664), - [anon_sym_c_uchar] = ACTIONS(4664), - [anon_sym_c_short] = ACTIONS(4664), - [anon_sym_c_ushort] = ACTIONS(4664), - [anon_sym_c_int] = ACTIONS(4664), - [anon_sym_c_uint] = ACTIONS(4664), - [anon_sym_c_long] = ACTIONS(4664), - [anon_sym_c_ulong] = ACTIONS(4664), - [anon_sym_c_longlong] = ACTIONS(4664), - [anon_sym_c_ulonglong] = ACTIONS(4664), - [anon_sym_c_float] = ACTIONS(4664), - [anon_sym_c_double] = ACTIONS(4664), - [anon_sym_c_longdouble] = ACTIONS(4664), - [anon_sym_return] = ACTIONS(4664), - [anon_sym_yield] = ACTIONS(4664), - [anon_sym_break] = ACTIONS(4664), - [anon_sym_continue] = ACTIONS(4664), - [anon_sym_defer] = ACTIONS(4664), - [anon_sym_errdefer] = ACTIONS(4664), - [anon_sym_if] = ACTIONS(4664), - [anon_sym_else] = ACTIONS(4664), - [anon_sym_while] = ACTIONS(4664), - [anon_sym_expand] = ACTIONS(4664), - [anon_sym_for] = ACTIONS(4664), - [anon_sym_match] = ACTIONS(4664), - [anon_sym_AMP] = ACTIONS(4662), - [anon_sym_TILDE] = ACTIONS(4662), - [anon_sym_try] = ACTIONS(4664), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_true] = ACTIONS(4664), - [anon_sym_false] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4664), - [anon_sym_unreachable] = ACTIONS(4664), - [anon_sym_undefined] = ACTIONS(4664), - [sym_sink] = ACTIONS(4664), - [sym_integer] = ACTIONS(4664), - [sym_float] = ACTIONS(4662), - [anon_sym_DQUOTE] = ACTIONS(4662), - [sym_multiline_string] = ACTIONS(4662), - [sym_character] = ACTIONS(4662), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4662), - }, - [STATE(1917)] = { - [ts_builtin_sym_end] = ACTIONS(4666), - [sym_identifier] = ACTIONS(4668), - [anon_sym_import] = ACTIONS(4668), - [anon_sym_test] = ACTIONS(4668), - [anon_sym_hide] = ACTIONS(4668), - [anon_sym_func] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(4666), - [anon_sym_struct] = ACTIONS(4668), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_RPAREN] = ACTIONS(4666), - [anon_sym_LBRACE] = ACTIONS(4666), - [anon_sym_RBRACE] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_DOLLAR] = ACTIONS(4666), - [anon_sym_LBRACK] = ACTIONS(4666), - [anon_sym_void] = ACTIONS(4668), - [anon_sym_noreturn] = ACTIONS(4668), - [anon_sym_type] = ACTIONS(4668), - [anon_sym_anyopaque] = ACTIONS(4668), - [anon_sym_bool] = ACTIONS(4668), - [anon_sym_int] = ACTIONS(4668), - [anon_sym_uint] = ACTIONS(4668), - [anon_sym_float] = ACTIONS(4668), - [anon_sym_range] = ACTIONS(4668), - [anon_sym_i8] = ACTIONS(4668), - [anon_sym_i16] = ACTIONS(4668), - [anon_sym_i32] = ACTIONS(4668), - [anon_sym_i64] = ACTIONS(4668), - [anon_sym_u8] = ACTIONS(4668), - [anon_sym_u16] = ACTIONS(4668), - [anon_sym_u32] = ACTIONS(4668), - [anon_sym_u64] = ACTIONS(4668), - [anon_sym_isize] = ACTIONS(4668), - [anon_sym_usize] = ACTIONS(4668), - [anon_sym_f32] = ACTIONS(4668), - [anon_sym_f64] = ACTIONS(4668), - [anon_sym_c_char] = ACTIONS(4668), - [anon_sym_c_schar] = ACTIONS(4668), - [anon_sym_c_uchar] = ACTIONS(4668), - [anon_sym_c_short] = ACTIONS(4668), - [anon_sym_c_ushort] = ACTIONS(4668), - [anon_sym_c_int] = ACTIONS(4668), - [anon_sym_c_uint] = ACTIONS(4668), - [anon_sym_c_long] = ACTIONS(4668), - [anon_sym_c_ulong] = ACTIONS(4668), - [anon_sym_c_longlong] = ACTIONS(4668), - [anon_sym_c_ulonglong] = ACTIONS(4668), - [anon_sym_c_float] = ACTIONS(4668), - [anon_sym_c_double] = ACTIONS(4668), - [anon_sym_c_longdouble] = ACTIONS(4668), - [anon_sym_return] = ACTIONS(4668), - [anon_sym_yield] = ACTIONS(4668), - [anon_sym_break] = ACTIONS(4668), - [anon_sym_continue] = ACTIONS(4668), - [anon_sym_defer] = ACTIONS(4668), - [anon_sym_errdefer] = ACTIONS(4668), - [anon_sym_if] = ACTIONS(4668), - [anon_sym_else] = ACTIONS(4668), - [anon_sym_while] = ACTIONS(4668), - [anon_sym_expand] = ACTIONS(4668), - [anon_sym_for] = ACTIONS(4668), - [anon_sym_match] = ACTIONS(4668), - [anon_sym_AMP] = ACTIONS(4666), - [anon_sym_TILDE] = ACTIONS(4666), - [anon_sym_try] = ACTIONS(4668), - [anon_sym_DOT] = ACTIONS(4666), - [anon_sym_true] = ACTIONS(4668), - [anon_sym_false] = ACTIONS(4668), - [anon_sym_null] = ACTIONS(4668), - [anon_sym_unreachable] = ACTIONS(4668), - [anon_sym_undefined] = ACTIONS(4668), - [sym_sink] = ACTIONS(4668), - [sym_integer] = ACTIONS(4668), - [sym_float] = ACTIONS(4666), - [anon_sym_DQUOTE] = ACTIONS(4666), - [sym_multiline_string] = ACTIONS(4666), - [sym_character] = ACTIONS(4666), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4666), - }, - [STATE(1918)] = { - [ts_builtin_sym_end] = ACTIONS(4670), - [sym_identifier] = ACTIONS(4672), - [anon_sym_import] = ACTIONS(4672), - [anon_sym_test] = ACTIONS(4672), - [anon_sym_hide] = ACTIONS(4672), - [anon_sym_func] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(4670), - [anon_sym_struct] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4670), - [anon_sym_RPAREN] = ACTIONS(4670), - [anon_sym_LBRACE] = ACTIONS(4670), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_DASH] = ACTIONS(4670), - [anon_sym_DOLLAR] = ACTIONS(4670), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_void] = ACTIONS(4672), - [anon_sym_noreturn] = ACTIONS(4672), - [anon_sym_type] = ACTIONS(4672), - [anon_sym_anyopaque] = ACTIONS(4672), - [anon_sym_bool] = ACTIONS(4672), - [anon_sym_int] = ACTIONS(4672), - [anon_sym_uint] = ACTIONS(4672), - [anon_sym_float] = ACTIONS(4672), - [anon_sym_range] = ACTIONS(4672), - [anon_sym_i8] = ACTIONS(4672), - [anon_sym_i16] = ACTIONS(4672), - [anon_sym_i32] = ACTIONS(4672), - [anon_sym_i64] = ACTIONS(4672), - [anon_sym_u8] = ACTIONS(4672), - [anon_sym_u16] = ACTIONS(4672), - [anon_sym_u32] = ACTIONS(4672), - [anon_sym_u64] = ACTIONS(4672), - [anon_sym_isize] = ACTIONS(4672), - [anon_sym_usize] = ACTIONS(4672), - [anon_sym_f32] = ACTIONS(4672), - [anon_sym_f64] = ACTIONS(4672), - [anon_sym_c_char] = ACTIONS(4672), - [anon_sym_c_schar] = ACTIONS(4672), - [anon_sym_c_uchar] = ACTIONS(4672), - [anon_sym_c_short] = ACTIONS(4672), - [anon_sym_c_ushort] = ACTIONS(4672), - [anon_sym_c_int] = ACTIONS(4672), - [anon_sym_c_uint] = ACTIONS(4672), - [anon_sym_c_long] = ACTIONS(4672), - [anon_sym_c_ulong] = ACTIONS(4672), - [anon_sym_c_longlong] = ACTIONS(4672), - [anon_sym_c_ulonglong] = ACTIONS(4672), - [anon_sym_c_float] = ACTIONS(4672), - [anon_sym_c_double] = ACTIONS(4672), - [anon_sym_c_longdouble] = ACTIONS(4672), - [anon_sym_return] = ACTIONS(4672), - [anon_sym_yield] = ACTIONS(4672), - [anon_sym_break] = ACTIONS(4672), - [anon_sym_continue] = ACTIONS(4672), - [anon_sym_defer] = ACTIONS(4672), - [anon_sym_errdefer] = ACTIONS(4672), - [anon_sym_if] = ACTIONS(4672), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_while] = ACTIONS(4672), - [anon_sym_expand] = ACTIONS(4672), - [anon_sym_for] = ACTIONS(4672), - [anon_sym_match] = ACTIONS(4672), - [anon_sym_AMP] = ACTIONS(4670), - [anon_sym_TILDE] = ACTIONS(4670), - [anon_sym_try] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4670), - [anon_sym_true] = ACTIONS(4672), - [anon_sym_false] = ACTIONS(4672), - [anon_sym_null] = ACTIONS(4672), - [anon_sym_unreachable] = ACTIONS(4672), - [anon_sym_undefined] = ACTIONS(4672), - [sym_sink] = ACTIONS(4672), - [sym_integer] = ACTIONS(4672), - [sym_float] = ACTIONS(4670), - [anon_sym_DQUOTE] = ACTIONS(4670), - [sym_multiline_string] = ACTIONS(4670), - [sym_character] = ACTIONS(4670), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4670), - }, - [STATE(1919)] = { - [ts_builtin_sym_end] = ACTIONS(4674), - [sym_identifier] = ACTIONS(4676), - [anon_sym_import] = ACTIONS(4676), - [anon_sym_test] = ACTIONS(4676), - [anon_sym_hide] = ACTIONS(4676), - [anon_sym_func] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4674), - [anon_sym_struct] = ACTIONS(4676), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_RPAREN] = ACTIONS(4674), - [anon_sym_LBRACE] = ACTIONS(4674), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_DASH] = ACTIONS(4674), - [anon_sym_DOLLAR] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_void] = ACTIONS(4676), - [anon_sym_noreturn] = ACTIONS(4676), - [anon_sym_type] = ACTIONS(4676), - [anon_sym_anyopaque] = ACTIONS(4676), - [anon_sym_bool] = ACTIONS(4676), - [anon_sym_int] = ACTIONS(4676), - [anon_sym_uint] = ACTIONS(4676), - [anon_sym_float] = ACTIONS(4676), - [anon_sym_range] = ACTIONS(4676), - [anon_sym_i8] = ACTIONS(4676), - [anon_sym_i16] = ACTIONS(4676), - [anon_sym_i32] = ACTIONS(4676), - [anon_sym_i64] = ACTIONS(4676), - [anon_sym_u8] = ACTIONS(4676), - [anon_sym_u16] = ACTIONS(4676), - [anon_sym_u32] = ACTIONS(4676), - [anon_sym_u64] = ACTIONS(4676), - [anon_sym_isize] = ACTIONS(4676), - [anon_sym_usize] = ACTIONS(4676), - [anon_sym_f32] = ACTIONS(4676), - [anon_sym_f64] = ACTIONS(4676), - [anon_sym_c_char] = ACTIONS(4676), - [anon_sym_c_schar] = ACTIONS(4676), - [anon_sym_c_uchar] = ACTIONS(4676), - [anon_sym_c_short] = ACTIONS(4676), - [anon_sym_c_ushort] = ACTIONS(4676), - [anon_sym_c_int] = ACTIONS(4676), - [anon_sym_c_uint] = ACTIONS(4676), - [anon_sym_c_long] = ACTIONS(4676), - [anon_sym_c_ulong] = ACTIONS(4676), - [anon_sym_c_longlong] = ACTIONS(4676), - [anon_sym_c_ulonglong] = ACTIONS(4676), - [anon_sym_c_float] = ACTIONS(4676), - [anon_sym_c_double] = ACTIONS(4676), - [anon_sym_c_longdouble] = ACTIONS(4676), - [anon_sym_return] = ACTIONS(4676), - [anon_sym_yield] = ACTIONS(4676), - [anon_sym_break] = ACTIONS(4676), - [anon_sym_continue] = ACTIONS(4676), - [anon_sym_defer] = ACTIONS(4676), - [anon_sym_errdefer] = ACTIONS(4676), - [anon_sym_if] = ACTIONS(4676), - [anon_sym_else] = ACTIONS(4676), - [anon_sym_while] = ACTIONS(4676), - [anon_sym_expand] = ACTIONS(4676), - [anon_sym_for] = ACTIONS(4676), - [anon_sym_match] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4674), - [anon_sym_TILDE] = ACTIONS(4674), - [anon_sym_try] = ACTIONS(4676), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_true] = ACTIONS(4676), - [anon_sym_false] = ACTIONS(4676), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_unreachable] = ACTIONS(4676), - [anon_sym_undefined] = ACTIONS(4676), - [sym_sink] = ACTIONS(4676), - [sym_integer] = ACTIONS(4676), - [sym_float] = ACTIONS(4674), - [anon_sym_DQUOTE] = ACTIONS(4674), - [sym_multiline_string] = ACTIONS(4674), - [sym_character] = ACTIONS(4674), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4674), - }, - [STATE(1920)] = { - [ts_builtin_sym_end] = ACTIONS(4678), - [sym_identifier] = ACTIONS(4680), - [anon_sym_import] = ACTIONS(4680), - [anon_sym_test] = ACTIONS(4680), - [anon_sym_hide] = ACTIONS(4680), - [anon_sym_func] = ACTIONS(4680), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_struct] = ACTIONS(4680), - [anon_sym_LPAREN] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4678), - [anon_sym_RBRACE] = ACTIONS(4678), - [anon_sym_DASH] = ACTIONS(4678), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_void] = ACTIONS(4680), - [anon_sym_noreturn] = ACTIONS(4680), - [anon_sym_type] = ACTIONS(4680), - [anon_sym_anyopaque] = ACTIONS(4680), - [anon_sym_bool] = ACTIONS(4680), - [anon_sym_int] = ACTIONS(4680), - [anon_sym_uint] = ACTIONS(4680), - [anon_sym_float] = ACTIONS(4680), - [anon_sym_range] = ACTIONS(4680), - [anon_sym_i8] = ACTIONS(4680), - [anon_sym_i16] = ACTIONS(4680), - [anon_sym_i32] = ACTIONS(4680), - [anon_sym_i64] = ACTIONS(4680), - [anon_sym_u8] = ACTIONS(4680), - [anon_sym_u16] = ACTIONS(4680), - [anon_sym_u32] = ACTIONS(4680), - [anon_sym_u64] = ACTIONS(4680), - [anon_sym_isize] = ACTIONS(4680), - [anon_sym_usize] = ACTIONS(4680), - [anon_sym_f32] = ACTIONS(4680), - [anon_sym_f64] = ACTIONS(4680), - [anon_sym_c_char] = ACTIONS(4680), - [anon_sym_c_schar] = ACTIONS(4680), - [anon_sym_c_uchar] = ACTIONS(4680), - [anon_sym_c_short] = ACTIONS(4680), - [anon_sym_c_ushort] = ACTIONS(4680), - [anon_sym_c_int] = ACTIONS(4680), - [anon_sym_c_uint] = ACTIONS(4680), - [anon_sym_c_long] = ACTIONS(4680), - [anon_sym_c_ulong] = ACTIONS(4680), - [anon_sym_c_longlong] = ACTIONS(4680), - [anon_sym_c_ulonglong] = ACTIONS(4680), - [anon_sym_c_float] = ACTIONS(4680), - [anon_sym_c_double] = ACTIONS(4680), - [anon_sym_c_longdouble] = ACTIONS(4680), - [anon_sym_return] = ACTIONS(4680), - [anon_sym_yield] = ACTIONS(4680), - [anon_sym_break] = ACTIONS(4680), - [anon_sym_continue] = ACTIONS(4680), - [anon_sym_defer] = ACTIONS(4680), - [anon_sym_errdefer] = ACTIONS(4680), - [anon_sym_if] = ACTIONS(4680), - [anon_sym_else] = ACTIONS(4680), - [anon_sym_while] = ACTIONS(4680), - [anon_sym_expand] = ACTIONS(4680), - [anon_sym_for] = ACTIONS(4680), - [anon_sym_match] = ACTIONS(4680), - [anon_sym_AMP] = ACTIONS(4678), - [anon_sym_TILDE] = ACTIONS(4678), - [anon_sym_try] = ACTIONS(4680), - [anon_sym_DOT] = ACTIONS(4678), - [anon_sym_true] = ACTIONS(4680), - [anon_sym_false] = ACTIONS(4680), - [anon_sym_null] = ACTIONS(4680), - [anon_sym_unreachable] = ACTIONS(4680), - [anon_sym_undefined] = ACTIONS(4680), - [sym_sink] = ACTIONS(4680), - [sym_integer] = ACTIONS(4680), - [sym_float] = ACTIONS(4678), - [anon_sym_DQUOTE] = ACTIONS(4678), - [sym_multiline_string] = ACTIONS(4678), - [sym_character] = ACTIONS(4678), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4678), - }, - [STATE(1921)] = { - [ts_builtin_sym_end] = ACTIONS(4682), - [sym_identifier] = ACTIONS(4684), - [anon_sym_import] = ACTIONS(4684), - [anon_sym_test] = ACTIONS(4684), - [anon_sym_hide] = ACTIONS(4684), - [anon_sym_func] = ACTIONS(4684), - [anon_sym_BANG] = ACTIONS(4682), - [anon_sym_struct] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4682), - [anon_sym_RPAREN] = ACTIONS(4682), - [anon_sym_LBRACE] = ACTIONS(4682), - [anon_sym_RBRACE] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4682), - [anon_sym_DOLLAR] = ACTIONS(4682), - [anon_sym_LBRACK] = ACTIONS(4682), - [anon_sym_void] = ACTIONS(4684), - [anon_sym_noreturn] = ACTIONS(4684), - [anon_sym_type] = ACTIONS(4684), - [anon_sym_anyopaque] = ACTIONS(4684), - [anon_sym_bool] = ACTIONS(4684), - [anon_sym_int] = ACTIONS(4684), - [anon_sym_uint] = ACTIONS(4684), - [anon_sym_float] = ACTIONS(4684), - [anon_sym_range] = ACTIONS(4684), - [anon_sym_i8] = ACTIONS(4684), - [anon_sym_i16] = ACTIONS(4684), - [anon_sym_i32] = ACTIONS(4684), - [anon_sym_i64] = ACTIONS(4684), - [anon_sym_u8] = ACTIONS(4684), - [anon_sym_u16] = ACTIONS(4684), - [anon_sym_u32] = ACTIONS(4684), - [anon_sym_u64] = ACTIONS(4684), - [anon_sym_isize] = ACTIONS(4684), - [anon_sym_usize] = ACTIONS(4684), - [anon_sym_f32] = ACTIONS(4684), - [anon_sym_f64] = ACTIONS(4684), - [anon_sym_c_char] = ACTIONS(4684), - [anon_sym_c_schar] = ACTIONS(4684), - [anon_sym_c_uchar] = ACTIONS(4684), - [anon_sym_c_short] = ACTIONS(4684), - [anon_sym_c_ushort] = ACTIONS(4684), - [anon_sym_c_int] = ACTIONS(4684), - [anon_sym_c_uint] = ACTIONS(4684), - [anon_sym_c_long] = ACTIONS(4684), - [anon_sym_c_ulong] = ACTIONS(4684), - [anon_sym_c_longlong] = ACTIONS(4684), - [anon_sym_c_ulonglong] = ACTIONS(4684), - [anon_sym_c_float] = ACTIONS(4684), - [anon_sym_c_double] = ACTIONS(4684), - [anon_sym_c_longdouble] = ACTIONS(4684), - [anon_sym_return] = ACTIONS(4684), - [anon_sym_yield] = ACTIONS(4684), - [anon_sym_break] = ACTIONS(4684), - [anon_sym_continue] = ACTIONS(4684), - [anon_sym_defer] = ACTIONS(4684), - [anon_sym_errdefer] = ACTIONS(4684), - [anon_sym_if] = ACTIONS(4684), - [anon_sym_else] = ACTIONS(4684), - [anon_sym_while] = ACTIONS(4684), - [anon_sym_expand] = ACTIONS(4684), - [anon_sym_for] = ACTIONS(4684), - [anon_sym_match] = ACTIONS(4684), - [anon_sym_AMP] = ACTIONS(4682), - [anon_sym_TILDE] = ACTIONS(4682), - [anon_sym_try] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4682), - [anon_sym_true] = ACTIONS(4684), - [anon_sym_false] = ACTIONS(4684), - [anon_sym_null] = ACTIONS(4684), - [anon_sym_unreachable] = ACTIONS(4684), - [anon_sym_undefined] = ACTIONS(4684), - [sym_sink] = ACTIONS(4684), - [sym_integer] = ACTIONS(4684), - [sym_float] = ACTIONS(4682), - [anon_sym_DQUOTE] = ACTIONS(4682), - [sym_multiline_string] = ACTIONS(4682), - [sym_character] = ACTIONS(4682), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4682), - }, - [STATE(1922)] = { - [ts_builtin_sym_end] = ACTIONS(4686), - [sym_identifier] = ACTIONS(4688), - [anon_sym_import] = ACTIONS(4688), - [anon_sym_test] = ACTIONS(4688), - [anon_sym_hide] = ACTIONS(4688), - [anon_sym_func] = ACTIONS(4688), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_struct] = ACTIONS(4688), - [anon_sym_LPAREN] = ACTIONS(4686), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_LBRACE] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_DOLLAR] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4686), - [anon_sym_void] = ACTIONS(4688), - [anon_sym_noreturn] = ACTIONS(4688), - [anon_sym_type] = ACTIONS(4688), - [anon_sym_anyopaque] = ACTIONS(4688), - [anon_sym_bool] = ACTIONS(4688), - [anon_sym_int] = ACTIONS(4688), - [anon_sym_uint] = ACTIONS(4688), - [anon_sym_float] = ACTIONS(4688), - [anon_sym_range] = ACTIONS(4688), - [anon_sym_i8] = ACTIONS(4688), - [anon_sym_i16] = ACTIONS(4688), - [anon_sym_i32] = ACTIONS(4688), - [anon_sym_i64] = ACTIONS(4688), - [anon_sym_u8] = ACTIONS(4688), - [anon_sym_u16] = ACTIONS(4688), - [anon_sym_u32] = ACTIONS(4688), - [anon_sym_u64] = ACTIONS(4688), - [anon_sym_isize] = ACTIONS(4688), - [anon_sym_usize] = ACTIONS(4688), - [anon_sym_f32] = ACTIONS(4688), - [anon_sym_f64] = ACTIONS(4688), - [anon_sym_c_char] = ACTIONS(4688), - [anon_sym_c_schar] = ACTIONS(4688), - [anon_sym_c_uchar] = ACTIONS(4688), - [anon_sym_c_short] = ACTIONS(4688), - [anon_sym_c_ushort] = ACTIONS(4688), - [anon_sym_c_int] = ACTIONS(4688), - [anon_sym_c_uint] = ACTIONS(4688), - [anon_sym_c_long] = ACTIONS(4688), - [anon_sym_c_ulong] = ACTIONS(4688), - [anon_sym_c_longlong] = ACTIONS(4688), - [anon_sym_c_ulonglong] = ACTIONS(4688), - [anon_sym_c_float] = ACTIONS(4688), - [anon_sym_c_double] = ACTIONS(4688), - [anon_sym_c_longdouble] = ACTIONS(4688), - [anon_sym_return] = ACTIONS(4688), - [anon_sym_yield] = ACTIONS(4688), - [anon_sym_break] = ACTIONS(4688), - [anon_sym_continue] = ACTIONS(4688), - [anon_sym_defer] = ACTIONS(4688), - [anon_sym_errdefer] = ACTIONS(4688), - [anon_sym_if] = ACTIONS(4688), - [anon_sym_else] = ACTIONS(4688), - [anon_sym_while] = ACTIONS(4688), - [anon_sym_expand] = ACTIONS(4688), - [anon_sym_for] = ACTIONS(4688), - [anon_sym_match] = ACTIONS(4688), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_TILDE] = ACTIONS(4686), - [anon_sym_try] = ACTIONS(4688), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_true] = ACTIONS(4688), - [anon_sym_false] = ACTIONS(4688), - [anon_sym_null] = ACTIONS(4688), - [anon_sym_unreachable] = ACTIONS(4688), - [anon_sym_undefined] = ACTIONS(4688), - [sym_sink] = ACTIONS(4688), - [sym_integer] = ACTIONS(4688), - [sym_float] = ACTIONS(4686), - [anon_sym_DQUOTE] = ACTIONS(4686), - [sym_multiline_string] = ACTIONS(4686), - [sym_character] = ACTIONS(4686), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4686), - }, - [STATE(1923)] = { - [ts_builtin_sym_end] = ACTIONS(4690), - [sym_identifier] = ACTIONS(4692), - [anon_sym_import] = ACTIONS(4692), - [anon_sym_test] = ACTIONS(4692), - [anon_sym_hide] = ACTIONS(4692), - [anon_sym_func] = ACTIONS(4692), - [anon_sym_BANG] = ACTIONS(4690), - [anon_sym_struct] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(4690), - [anon_sym_RPAREN] = ACTIONS(4690), - [anon_sym_LBRACE] = ACTIONS(4690), - [anon_sym_RBRACE] = ACTIONS(4690), - [anon_sym_DASH] = ACTIONS(4690), - [anon_sym_DOLLAR] = ACTIONS(4690), - [anon_sym_LBRACK] = ACTIONS(4690), - [anon_sym_void] = ACTIONS(4692), - [anon_sym_noreturn] = ACTIONS(4692), - [anon_sym_type] = ACTIONS(4692), - [anon_sym_anyopaque] = ACTIONS(4692), - [anon_sym_bool] = ACTIONS(4692), - [anon_sym_int] = ACTIONS(4692), - [anon_sym_uint] = ACTIONS(4692), - [anon_sym_float] = ACTIONS(4692), - [anon_sym_range] = ACTIONS(4692), - [anon_sym_i8] = ACTIONS(4692), - [anon_sym_i16] = ACTIONS(4692), - [anon_sym_i32] = ACTIONS(4692), - [anon_sym_i64] = ACTIONS(4692), - [anon_sym_u8] = ACTIONS(4692), - [anon_sym_u16] = ACTIONS(4692), - [anon_sym_u32] = ACTIONS(4692), - [anon_sym_u64] = ACTIONS(4692), - [anon_sym_isize] = ACTIONS(4692), - [anon_sym_usize] = ACTIONS(4692), - [anon_sym_f32] = ACTIONS(4692), - [anon_sym_f64] = ACTIONS(4692), - [anon_sym_c_char] = ACTIONS(4692), - [anon_sym_c_schar] = ACTIONS(4692), - [anon_sym_c_uchar] = ACTIONS(4692), - [anon_sym_c_short] = ACTIONS(4692), - [anon_sym_c_ushort] = ACTIONS(4692), - [anon_sym_c_int] = ACTIONS(4692), - [anon_sym_c_uint] = ACTIONS(4692), - [anon_sym_c_long] = ACTIONS(4692), - [anon_sym_c_ulong] = ACTIONS(4692), - [anon_sym_c_longlong] = ACTIONS(4692), - [anon_sym_c_ulonglong] = ACTIONS(4692), - [anon_sym_c_float] = ACTIONS(4692), - [anon_sym_c_double] = ACTIONS(4692), - [anon_sym_c_longdouble] = ACTIONS(4692), - [anon_sym_return] = ACTIONS(4692), - [anon_sym_yield] = ACTIONS(4692), - [anon_sym_break] = ACTIONS(4692), - [anon_sym_continue] = ACTIONS(4692), - [anon_sym_defer] = ACTIONS(4692), - [anon_sym_errdefer] = ACTIONS(4692), - [anon_sym_if] = ACTIONS(4692), - [anon_sym_else] = ACTIONS(4692), - [anon_sym_while] = ACTIONS(4692), - [anon_sym_expand] = ACTIONS(4692), - [anon_sym_for] = ACTIONS(4692), - [anon_sym_match] = ACTIONS(4692), - [anon_sym_AMP] = ACTIONS(4690), - [anon_sym_TILDE] = ACTIONS(4690), - [anon_sym_try] = ACTIONS(4692), - [anon_sym_DOT] = ACTIONS(4690), - [anon_sym_true] = ACTIONS(4692), - [anon_sym_false] = ACTIONS(4692), - [anon_sym_null] = ACTIONS(4692), - [anon_sym_unreachable] = ACTIONS(4692), - [anon_sym_undefined] = ACTIONS(4692), - [sym_sink] = ACTIONS(4692), - [sym_integer] = ACTIONS(4692), - [sym_float] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(4690), - [sym_multiline_string] = ACTIONS(4690), - [sym_character] = ACTIONS(4690), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4690), - }, - [STATE(1924)] = { - [ts_builtin_sym_end] = ACTIONS(4694), - [sym_identifier] = ACTIONS(4696), - [anon_sym_import] = ACTIONS(4696), - [anon_sym_test] = ACTIONS(4696), - [anon_sym_hide] = ACTIONS(4696), - [anon_sym_func] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(4694), - [anon_sym_struct] = ACTIONS(4696), - [anon_sym_LPAREN] = ACTIONS(4694), - [anon_sym_RPAREN] = ACTIONS(4694), - [anon_sym_LBRACE] = ACTIONS(4694), - [anon_sym_RBRACE] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_DOLLAR] = ACTIONS(4694), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_void] = ACTIONS(4696), - [anon_sym_noreturn] = ACTIONS(4696), - [anon_sym_type] = ACTIONS(4696), - [anon_sym_anyopaque] = ACTIONS(4696), - [anon_sym_bool] = ACTIONS(4696), - [anon_sym_int] = ACTIONS(4696), - [anon_sym_uint] = ACTIONS(4696), - [anon_sym_float] = ACTIONS(4696), - [anon_sym_range] = ACTIONS(4696), - [anon_sym_i8] = ACTIONS(4696), - [anon_sym_i16] = ACTIONS(4696), - [anon_sym_i32] = ACTIONS(4696), - [anon_sym_i64] = ACTIONS(4696), - [anon_sym_u8] = ACTIONS(4696), - [anon_sym_u16] = ACTIONS(4696), - [anon_sym_u32] = ACTIONS(4696), - [anon_sym_u64] = ACTIONS(4696), - [anon_sym_isize] = ACTIONS(4696), - [anon_sym_usize] = ACTIONS(4696), - [anon_sym_f32] = ACTIONS(4696), - [anon_sym_f64] = ACTIONS(4696), - [anon_sym_c_char] = ACTIONS(4696), - [anon_sym_c_schar] = ACTIONS(4696), - [anon_sym_c_uchar] = ACTIONS(4696), - [anon_sym_c_short] = ACTIONS(4696), - [anon_sym_c_ushort] = ACTIONS(4696), - [anon_sym_c_int] = ACTIONS(4696), - [anon_sym_c_uint] = ACTIONS(4696), - [anon_sym_c_long] = ACTIONS(4696), - [anon_sym_c_ulong] = ACTIONS(4696), - [anon_sym_c_longlong] = ACTIONS(4696), - [anon_sym_c_ulonglong] = ACTIONS(4696), - [anon_sym_c_float] = ACTIONS(4696), - [anon_sym_c_double] = ACTIONS(4696), - [anon_sym_c_longdouble] = ACTIONS(4696), - [anon_sym_return] = ACTIONS(4696), - [anon_sym_yield] = ACTIONS(4696), - [anon_sym_break] = ACTIONS(4696), - [anon_sym_continue] = ACTIONS(4696), - [anon_sym_defer] = ACTIONS(4696), - [anon_sym_errdefer] = ACTIONS(4696), - [anon_sym_if] = ACTIONS(4696), - [anon_sym_else] = ACTIONS(4696), - [anon_sym_while] = ACTIONS(4696), - [anon_sym_expand] = ACTIONS(4696), - [anon_sym_for] = ACTIONS(4696), - [anon_sym_match] = ACTIONS(4696), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_TILDE] = ACTIONS(4694), - [anon_sym_try] = ACTIONS(4696), - [anon_sym_DOT] = ACTIONS(4694), - [anon_sym_true] = ACTIONS(4696), - [anon_sym_false] = ACTIONS(4696), - [anon_sym_null] = ACTIONS(4696), - [anon_sym_unreachable] = ACTIONS(4696), - [anon_sym_undefined] = ACTIONS(4696), - [sym_sink] = ACTIONS(4696), - [sym_integer] = ACTIONS(4696), - [sym_float] = ACTIONS(4694), - [anon_sym_DQUOTE] = ACTIONS(4694), - [sym_multiline_string] = ACTIONS(4694), - [sym_character] = ACTIONS(4694), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4694), - }, - [STATE(1925)] = { - [ts_builtin_sym_end] = ACTIONS(4698), - [sym_identifier] = ACTIONS(4700), - [anon_sym_import] = ACTIONS(4700), - [anon_sym_test] = ACTIONS(4700), - [anon_sym_hide] = ACTIONS(4700), - [anon_sym_func] = ACTIONS(4700), - [anon_sym_BANG] = ACTIONS(4698), - [anon_sym_struct] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(4698), - [anon_sym_RPAREN] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4698), - [anon_sym_RBRACE] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_DOLLAR] = ACTIONS(4698), - [anon_sym_LBRACK] = ACTIONS(4698), - [anon_sym_void] = ACTIONS(4700), - [anon_sym_noreturn] = ACTIONS(4700), - [anon_sym_type] = ACTIONS(4700), - [anon_sym_anyopaque] = ACTIONS(4700), - [anon_sym_bool] = ACTIONS(4700), - [anon_sym_int] = ACTIONS(4700), - [anon_sym_uint] = ACTIONS(4700), - [anon_sym_float] = ACTIONS(4700), - [anon_sym_range] = ACTIONS(4700), - [anon_sym_i8] = ACTIONS(4700), - [anon_sym_i16] = ACTIONS(4700), - [anon_sym_i32] = ACTIONS(4700), - [anon_sym_i64] = ACTIONS(4700), - [anon_sym_u8] = ACTIONS(4700), - [anon_sym_u16] = ACTIONS(4700), - [anon_sym_u32] = ACTIONS(4700), - [anon_sym_u64] = ACTIONS(4700), - [anon_sym_isize] = ACTIONS(4700), - [anon_sym_usize] = ACTIONS(4700), - [anon_sym_f32] = ACTIONS(4700), - [anon_sym_f64] = ACTIONS(4700), - [anon_sym_c_char] = ACTIONS(4700), - [anon_sym_c_schar] = ACTIONS(4700), - [anon_sym_c_uchar] = ACTIONS(4700), - [anon_sym_c_short] = ACTIONS(4700), - [anon_sym_c_ushort] = ACTIONS(4700), - [anon_sym_c_int] = ACTIONS(4700), - [anon_sym_c_uint] = ACTIONS(4700), - [anon_sym_c_long] = ACTIONS(4700), - [anon_sym_c_ulong] = ACTIONS(4700), - [anon_sym_c_longlong] = ACTIONS(4700), - [anon_sym_c_ulonglong] = ACTIONS(4700), - [anon_sym_c_float] = ACTIONS(4700), - [anon_sym_c_double] = ACTIONS(4700), - [anon_sym_c_longdouble] = ACTIONS(4700), - [anon_sym_return] = ACTIONS(4700), - [anon_sym_yield] = ACTIONS(4700), - [anon_sym_break] = ACTIONS(4700), - [anon_sym_continue] = ACTIONS(4700), - [anon_sym_defer] = ACTIONS(4700), - [anon_sym_errdefer] = ACTIONS(4700), - [anon_sym_if] = ACTIONS(4700), - [anon_sym_else] = ACTIONS(4700), - [anon_sym_while] = ACTIONS(4700), - [anon_sym_expand] = ACTIONS(4700), - [anon_sym_for] = ACTIONS(4700), - [anon_sym_match] = ACTIONS(4700), - [anon_sym_AMP] = ACTIONS(4698), - [anon_sym_TILDE] = ACTIONS(4698), - [anon_sym_try] = ACTIONS(4700), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_true] = ACTIONS(4700), - [anon_sym_false] = ACTIONS(4700), - [anon_sym_null] = ACTIONS(4700), - [anon_sym_unreachable] = ACTIONS(4700), - [anon_sym_undefined] = ACTIONS(4700), - [sym_sink] = ACTIONS(4700), - [sym_integer] = ACTIONS(4700), - [sym_float] = ACTIONS(4698), - [anon_sym_DQUOTE] = ACTIONS(4698), - [sym_multiline_string] = ACTIONS(4698), - [sym_character] = ACTIONS(4698), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4698), - }, - [STATE(1926)] = { - [ts_builtin_sym_end] = ACTIONS(4702), - [sym_identifier] = ACTIONS(4704), - [anon_sym_import] = ACTIONS(4704), - [anon_sym_test] = ACTIONS(4704), - [anon_sym_hide] = ACTIONS(4704), - [anon_sym_func] = ACTIONS(4704), - [anon_sym_BANG] = ACTIONS(4702), - [anon_sym_struct] = ACTIONS(4704), - [anon_sym_LPAREN] = ACTIONS(4702), - [anon_sym_RPAREN] = ACTIONS(4702), - [anon_sym_LBRACE] = ACTIONS(4702), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_DOLLAR] = ACTIONS(4702), - [anon_sym_LBRACK] = ACTIONS(4702), - [anon_sym_void] = ACTIONS(4704), - [anon_sym_noreturn] = ACTIONS(4704), - [anon_sym_type] = ACTIONS(4704), - [anon_sym_anyopaque] = ACTIONS(4704), - [anon_sym_bool] = ACTIONS(4704), - [anon_sym_int] = ACTIONS(4704), - [anon_sym_uint] = ACTIONS(4704), - [anon_sym_float] = ACTIONS(4704), - [anon_sym_range] = ACTIONS(4704), - [anon_sym_i8] = ACTIONS(4704), - [anon_sym_i16] = ACTIONS(4704), - [anon_sym_i32] = ACTIONS(4704), - [anon_sym_i64] = ACTIONS(4704), - [anon_sym_u8] = ACTIONS(4704), - [anon_sym_u16] = ACTIONS(4704), - [anon_sym_u32] = ACTIONS(4704), - [anon_sym_u64] = ACTIONS(4704), - [anon_sym_isize] = ACTIONS(4704), - [anon_sym_usize] = ACTIONS(4704), - [anon_sym_f32] = ACTIONS(4704), - [anon_sym_f64] = ACTIONS(4704), - [anon_sym_c_char] = ACTIONS(4704), - [anon_sym_c_schar] = ACTIONS(4704), - [anon_sym_c_uchar] = ACTIONS(4704), - [anon_sym_c_short] = ACTIONS(4704), - [anon_sym_c_ushort] = ACTIONS(4704), - [anon_sym_c_int] = ACTIONS(4704), - [anon_sym_c_uint] = ACTIONS(4704), - [anon_sym_c_long] = ACTIONS(4704), - [anon_sym_c_ulong] = ACTIONS(4704), - [anon_sym_c_longlong] = ACTIONS(4704), - [anon_sym_c_ulonglong] = ACTIONS(4704), - [anon_sym_c_float] = ACTIONS(4704), - [anon_sym_c_double] = ACTIONS(4704), - [anon_sym_c_longdouble] = ACTIONS(4704), - [anon_sym_return] = ACTIONS(4704), - [anon_sym_yield] = ACTIONS(4704), - [anon_sym_break] = ACTIONS(4704), - [anon_sym_continue] = ACTIONS(4704), - [anon_sym_defer] = ACTIONS(4704), - [anon_sym_errdefer] = ACTIONS(4704), - [anon_sym_if] = ACTIONS(4704), - [anon_sym_else] = ACTIONS(4704), - [anon_sym_while] = ACTIONS(4704), - [anon_sym_expand] = ACTIONS(4704), - [anon_sym_for] = ACTIONS(4704), - [anon_sym_match] = ACTIONS(4704), - [anon_sym_AMP] = ACTIONS(4702), - [anon_sym_TILDE] = ACTIONS(4702), - [anon_sym_try] = ACTIONS(4704), - [anon_sym_DOT] = ACTIONS(4702), - [anon_sym_true] = ACTIONS(4704), - [anon_sym_false] = ACTIONS(4704), - [anon_sym_null] = ACTIONS(4704), - [anon_sym_unreachable] = ACTIONS(4704), - [anon_sym_undefined] = ACTIONS(4704), - [sym_sink] = ACTIONS(4704), - [sym_integer] = ACTIONS(4704), - [sym_float] = ACTIONS(4702), - [anon_sym_DQUOTE] = ACTIONS(4702), - [sym_multiline_string] = ACTIONS(4702), - [sym_character] = ACTIONS(4702), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4702), - }, - [STATE(1927)] = { - [ts_builtin_sym_end] = ACTIONS(4706), - [sym_identifier] = ACTIONS(4708), - [anon_sym_import] = ACTIONS(4708), - [anon_sym_test] = ACTIONS(4708), - [anon_sym_hide] = ACTIONS(4708), - [anon_sym_func] = ACTIONS(4708), - [anon_sym_BANG] = ACTIONS(4706), - [anon_sym_struct] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4706), - [anon_sym_RPAREN] = ACTIONS(4706), - [anon_sym_LBRACE] = ACTIONS(4706), - [anon_sym_RBRACE] = ACTIONS(4706), - [anon_sym_DASH] = ACTIONS(4706), - [anon_sym_DOLLAR] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4706), - [anon_sym_void] = ACTIONS(4708), - [anon_sym_noreturn] = ACTIONS(4708), - [anon_sym_type] = ACTIONS(4708), - [anon_sym_anyopaque] = ACTIONS(4708), - [anon_sym_bool] = ACTIONS(4708), - [anon_sym_int] = ACTIONS(4708), - [anon_sym_uint] = ACTIONS(4708), - [anon_sym_float] = ACTIONS(4708), - [anon_sym_range] = ACTIONS(4708), - [anon_sym_i8] = ACTIONS(4708), - [anon_sym_i16] = ACTIONS(4708), - [anon_sym_i32] = ACTIONS(4708), - [anon_sym_i64] = ACTIONS(4708), - [anon_sym_u8] = ACTIONS(4708), - [anon_sym_u16] = ACTIONS(4708), - [anon_sym_u32] = ACTIONS(4708), - [anon_sym_u64] = ACTIONS(4708), - [anon_sym_isize] = ACTIONS(4708), - [anon_sym_usize] = ACTIONS(4708), - [anon_sym_f32] = ACTIONS(4708), - [anon_sym_f64] = ACTIONS(4708), - [anon_sym_c_char] = ACTIONS(4708), - [anon_sym_c_schar] = ACTIONS(4708), - [anon_sym_c_uchar] = ACTIONS(4708), - [anon_sym_c_short] = ACTIONS(4708), - [anon_sym_c_ushort] = ACTIONS(4708), - [anon_sym_c_int] = ACTIONS(4708), - [anon_sym_c_uint] = ACTIONS(4708), - [anon_sym_c_long] = ACTIONS(4708), - [anon_sym_c_ulong] = ACTIONS(4708), - [anon_sym_c_longlong] = ACTIONS(4708), - [anon_sym_c_ulonglong] = ACTIONS(4708), - [anon_sym_c_float] = ACTIONS(4708), - [anon_sym_c_double] = ACTIONS(4708), - [anon_sym_c_longdouble] = ACTIONS(4708), - [anon_sym_return] = ACTIONS(4708), - [anon_sym_yield] = ACTIONS(4708), - [anon_sym_break] = ACTIONS(4708), - [anon_sym_continue] = ACTIONS(4708), - [anon_sym_defer] = ACTIONS(4708), - [anon_sym_errdefer] = ACTIONS(4708), - [anon_sym_if] = ACTIONS(4708), - [anon_sym_else] = ACTIONS(4708), - [anon_sym_while] = ACTIONS(4708), - [anon_sym_expand] = ACTIONS(4708), - [anon_sym_for] = ACTIONS(4708), - [anon_sym_match] = ACTIONS(4708), - [anon_sym_AMP] = ACTIONS(4706), - [anon_sym_TILDE] = ACTIONS(4706), - [anon_sym_try] = ACTIONS(4708), - [anon_sym_DOT] = ACTIONS(4706), - [anon_sym_true] = ACTIONS(4708), - [anon_sym_false] = ACTIONS(4708), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_unreachable] = ACTIONS(4708), - [anon_sym_undefined] = ACTIONS(4708), - [sym_sink] = ACTIONS(4708), - [sym_integer] = ACTIONS(4708), - [sym_float] = ACTIONS(4706), - [anon_sym_DQUOTE] = ACTIONS(4706), - [sym_multiline_string] = ACTIONS(4706), - [sym_character] = ACTIONS(4706), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4706), - }, - [STATE(1928)] = { - [ts_builtin_sym_end] = ACTIONS(4710), - [sym_identifier] = ACTIONS(4712), - [anon_sym_import] = ACTIONS(4712), - [anon_sym_test] = ACTIONS(4712), - [anon_sym_hide] = ACTIONS(4712), - [anon_sym_func] = ACTIONS(4712), - [anon_sym_BANG] = ACTIONS(4710), - [anon_sym_struct] = ACTIONS(4712), - [anon_sym_LPAREN] = ACTIONS(4710), - [anon_sym_RPAREN] = ACTIONS(4710), - [anon_sym_LBRACE] = ACTIONS(4710), - [anon_sym_RBRACE] = ACTIONS(4710), - [anon_sym_DASH] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4710), - [anon_sym_void] = ACTIONS(4712), - [anon_sym_noreturn] = ACTIONS(4712), - [anon_sym_type] = ACTIONS(4712), - [anon_sym_anyopaque] = ACTIONS(4712), - [anon_sym_bool] = ACTIONS(4712), - [anon_sym_int] = ACTIONS(4712), - [anon_sym_uint] = ACTIONS(4712), - [anon_sym_float] = ACTIONS(4712), - [anon_sym_range] = ACTIONS(4712), - [anon_sym_i8] = ACTIONS(4712), - [anon_sym_i16] = ACTIONS(4712), - [anon_sym_i32] = ACTIONS(4712), - [anon_sym_i64] = ACTIONS(4712), - [anon_sym_u8] = ACTIONS(4712), - [anon_sym_u16] = ACTIONS(4712), - [anon_sym_u32] = ACTIONS(4712), - [anon_sym_u64] = ACTIONS(4712), - [anon_sym_isize] = ACTIONS(4712), - [anon_sym_usize] = ACTIONS(4712), - [anon_sym_f32] = ACTIONS(4712), - [anon_sym_f64] = ACTIONS(4712), - [anon_sym_c_char] = ACTIONS(4712), - [anon_sym_c_schar] = ACTIONS(4712), - [anon_sym_c_uchar] = ACTIONS(4712), - [anon_sym_c_short] = ACTIONS(4712), - [anon_sym_c_ushort] = ACTIONS(4712), - [anon_sym_c_int] = ACTIONS(4712), - [anon_sym_c_uint] = ACTIONS(4712), - [anon_sym_c_long] = ACTIONS(4712), - [anon_sym_c_ulong] = ACTIONS(4712), - [anon_sym_c_longlong] = ACTIONS(4712), - [anon_sym_c_ulonglong] = ACTIONS(4712), - [anon_sym_c_float] = ACTIONS(4712), - [anon_sym_c_double] = ACTIONS(4712), - [anon_sym_c_longdouble] = ACTIONS(4712), - [anon_sym_return] = ACTIONS(4712), - [anon_sym_yield] = ACTIONS(4712), - [anon_sym_break] = ACTIONS(4712), - [anon_sym_continue] = ACTIONS(4712), - [anon_sym_defer] = ACTIONS(4712), - [anon_sym_errdefer] = ACTIONS(4712), - [anon_sym_if] = ACTIONS(4712), - [anon_sym_else] = ACTIONS(4712), - [anon_sym_while] = ACTIONS(4712), - [anon_sym_expand] = ACTIONS(4712), - [anon_sym_for] = ACTIONS(4712), - [anon_sym_match] = ACTIONS(4712), - [anon_sym_AMP] = ACTIONS(4710), - [anon_sym_TILDE] = ACTIONS(4710), - [anon_sym_try] = ACTIONS(4712), - [anon_sym_DOT] = ACTIONS(4710), - [anon_sym_true] = ACTIONS(4712), - [anon_sym_false] = ACTIONS(4712), - [anon_sym_null] = ACTIONS(4712), - [anon_sym_unreachable] = ACTIONS(4712), - [anon_sym_undefined] = ACTIONS(4712), - [sym_sink] = ACTIONS(4712), - [sym_integer] = ACTIONS(4712), - [sym_float] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [sym_multiline_string] = ACTIONS(4710), - [sym_character] = ACTIONS(4710), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4710), - }, - [STATE(1929)] = { - [ts_builtin_sym_end] = ACTIONS(4714), - [sym_identifier] = ACTIONS(4716), - [anon_sym_import] = ACTIONS(4716), - [anon_sym_test] = ACTIONS(4716), - [anon_sym_hide] = ACTIONS(4716), - [anon_sym_func] = ACTIONS(4716), - [anon_sym_BANG] = ACTIONS(4714), - [anon_sym_struct] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4714), - [anon_sym_RPAREN] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4714), - [anon_sym_RBRACE] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4714), - [anon_sym_void] = ACTIONS(4716), - [anon_sym_noreturn] = ACTIONS(4716), - [anon_sym_type] = ACTIONS(4716), - [anon_sym_anyopaque] = ACTIONS(4716), - [anon_sym_bool] = ACTIONS(4716), - [anon_sym_int] = ACTIONS(4716), - [anon_sym_uint] = ACTIONS(4716), - [anon_sym_float] = ACTIONS(4716), - [anon_sym_range] = ACTIONS(4716), - [anon_sym_i8] = ACTIONS(4716), - [anon_sym_i16] = ACTIONS(4716), - [anon_sym_i32] = ACTIONS(4716), - [anon_sym_i64] = ACTIONS(4716), - [anon_sym_u8] = ACTIONS(4716), - [anon_sym_u16] = ACTIONS(4716), - [anon_sym_u32] = ACTIONS(4716), - [anon_sym_u64] = ACTIONS(4716), - [anon_sym_isize] = ACTIONS(4716), - [anon_sym_usize] = ACTIONS(4716), - [anon_sym_f32] = ACTIONS(4716), - [anon_sym_f64] = ACTIONS(4716), - [anon_sym_c_char] = ACTIONS(4716), - [anon_sym_c_schar] = ACTIONS(4716), - [anon_sym_c_uchar] = ACTIONS(4716), - [anon_sym_c_short] = ACTIONS(4716), - [anon_sym_c_ushort] = ACTIONS(4716), - [anon_sym_c_int] = ACTIONS(4716), - [anon_sym_c_uint] = ACTIONS(4716), - [anon_sym_c_long] = ACTIONS(4716), - [anon_sym_c_ulong] = ACTIONS(4716), - [anon_sym_c_longlong] = ACTIONS(4716), - [anon_sym_c_ulonglong] = ACTIONS(4716), - [anon_sym_c_float] = ACTIONS(4716), - [anon_sym_c_double] = ACTIONS(4716), - [anon_sym_c_longdouble] = ACTIONS(4716), - [anon_sym_return] = ACTIONS(4716), - [anon_sym_yield] = ACTIONS(4716), - [anon_sym_break] = ACTIONS(4716), - [anon_sym_continue] = ACTIONS(4716), - [anon_sym_defer] = ACTIONS(4716), - [anon_sym_errdefer] = ACTIONS(4716), - [anon_sym_if] = ACTIONS(4716), - [anon_sym_else] = ACTIONS(4716), - [anon_sym_while] = ACTIONS(4716), - [anon_sym_expand] = ACTIONS(4716), - [anon_sym_for] = ACTIONS(4716), - [anon_sym_match] = ACTIONS(4716), - [anon_sym_AMP] = ACTIONS(4714), - [anon_sym_TILDE] = ACTIONS(4714), - [anon_sym_try] = ACTIONS(4716), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_true] = ACTIONS(4716), - [anon_sym_false] = ACTIONS(4716), - [anon_sym_null] = ACTIONS(4716), - [anon_sym_unreachable] = ACTIONS(4716), - [anon_sym_undefined] = ACTIONS(4716), - [sym_sink] = ACTIONS(4716), - [sym_integer] = ACTIONS(4716), - [sym_float] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [sym_multiline_string] = ACTIONS(4714), - [sym_character] = ACTIONS(4714), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4714), - }, - [STATE(1930)] = { - [ts_builtin_sym_end] = ACTIONS(4718), - [sym_identifier] = ACTIONS(4720), - [anon_sym_import] = ACTIONS(4720), - [anon_sym_test] = ACTIONS(4720), - [anon_sym_hide] = ACTIONS(4720), - [anon_sym_func] = ACTIONS(4720), - [anon_sym_BANG] = ACTIONS(4718), - [anon_sym_struct] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4718), - [anon_sym_RPAREN] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4718), - [anon_sym_RBRACE] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_void] = ACTIONS(4720), - [anon_sym_noreturn] = ACTIONS(4720), - [anon_sym_type] = ACTIONS(4720), - [anon_sym_anyopaque] = ACTIONS(4720), - [anon_sym_bool] = ACTIONS(4720), - [anon_sym_int] = ACTIONS(4720), - [anon_sym_uint] = ACTIONS(4720), - [anon_sym_float] = ACTIONS(4720), - [anon_sym_range] = ACTIONS(4720), - [anon_sym_i8] = ACTIONS(4720), - [anon_sym_i16] = ACTIONS(4720), - [anon_sym_i32] = ACTIONS(4720), - [anon_sym_i64] = ACTIONS(4720), - [anon_sym_u8] = ACTIONS(4720), - [anon_sym_u16] = ACTIONS(4720), - [anon_sym_u32] = ACTIONS(4720), - [anon_sym_u64] = ACTIONS(4720), - [anon_sym_isize] = ACTIONS(4720), - [anon_sym_usize] = ACTIONS(4720), - [anon_sym_f32] = ACTIONS(4720), - [anon_sym_f64] = ACTIONS(4720), - [anon_sym_c_char] = ACTIONS(4720), - [anon_sym_c_schar] = ACTIONS(4720), - [anon_sym_c_uchar] = ACTIONS(4720), - [anon_sym_c_short] = ACTIONS(4720), - [anon_sym_c_ushort] = ACTIONS(4720), - [anon_sym_c_int] = ACTIONS(4720), - [anon_sym_c_uint] = ACTIONS(4720), - [anon_sym_c_long] = ACTIONS(4720), - [anon_sym_c_ulong] = ACTIONS(4720), - [anon_sym_c_longlong] = ACTIONS(4720), - [anon_sym_c_ulonglong] = ACTIONS(4720), - [anon_sym_c_float] = ACTIONS(4720), - [anon_sym_c_double] = ACTIONS(4720), - [anon_sym_c_longdouble] = ACTIONS(4720), - [anon_sym_return] = ACTIONS(4720), - [anon_sym_yield] = ACTIONS(4720), - [anon_sym_break] = ACTIONS(4720), - [anon_sym_continue] = ACTIONS(4720), - [anon_sym_defer] = ACTIONS(4720), - [anon_sym_errdefer] = ACTIONS(4720), - [anon_sym_if] = ACTIONS(4720), - [anon_sym_else] = ACTIONS(4720), - [anon_sym_while] = ACTIONS(4720), - [anon_sym_expand] = ACTIONS(4720), - [anon_sym_for] = ACTIONS(4720), - [anon_sym_match] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4718), - [anon_sym_TILDE] = ACTIONS(4718), - [anon_sym_try] = ACTIONS(4720), - [anon_sym_DOT] = ACTIONS(4718), - [anon_sym_true] = ACTIONS(4720), - [anon_sym_false] = ACTIONS(4720), - [anon_sym_null] = ACTIONS(4720), - [anon_sym_unreachable] = ACTIONS(4720), - [anon_sym_undefined] = ACTIONS(4720), - [sym_sink] = ACTIONS(4720), - [sym_integer] = ACTIONS(4720), - [sym_float] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [sym_multiline_string] = ACTIONS(4718), - [sym_character] = ACTIONS(4718), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4718), - }, - [STATE(1931)] = { - [ts_builtin_sym_end] = ACTIONS(4722), - [sym_identifier] = ACTIONS(4724), - [anon_sym_import] = ACTIONS(4724), - [anon_sym_test] = ACTIONS(4724), - [anon_sym_hide] = ACTIONS(4724), - [anon_sym_func] = ACTIONS(4724), - [anon_sym_BANG] = ACTIONS(4722), - [anon_sym_struct] = ACTIONS(4724), - [anon_sym_LPAREN] = ACTIONS(4722), - [anon_sym_RPAREN] = ACTIONS(4722), - [anon_sym_LBRACE] = ACTIONS(4722), - [anon_sym_RBRACE] = ACTIONS(4722), - [anon_sym_DASH] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [anon_sym_LBRACK] = ACTIONS(4722), - [anon_sym_void] = ACTIONS(4724), - [anon_sym_noreturn] = ACTIONS(4724), - [anon_sym_type] = ACTIONS(4724), - [anon_sym_anyopaque] = ACTIONS(4724), - [anon_sym_bool] = ACTIONS(4724), - [anon_sym_int] = ACTIONS(4724), - [anon_sym_uint] = ACTIONS(4724), - [anon_sym_float] = ACTIONS(4724), - [anon_sym_range] = ACTIONS(4724), - [anon_sym_i8] = ACTIONS(4724), - [anon_sym_i16] = ACTIONS(4724), - [anon_sym_i32] = ACTIONS(4724), - [anon_sym_i64] = ACTIONS(4724), - [anon_sym_u8] = ACTIONS(4724), - [anon_sym_u16] = ACTIONS(4724), - [anon_sym_u32] = ACTIONS(4724), - [anon_sym_u64] = ACTIONS(4724), - [anon_sym_isize] = ACTIONS(4724), - [anon_sym_usize] = ACTIONS(4724), - [anon_sym_f32] = ACTIONS(4724), - [anon_sym_f64] = ACTIONS(4724), - [anon_sym_c_char] = ACTIONS(4724), - [anon_sym_c_schar] = ACTIONS(4724), - [anon_sym_c_uchar] = ACTIONS(4724), - [anon_sym_c_short] = ACTIONS(4724), - [anon_sym_c_ushort] = ACTIONS(4724), - [anon_sym_c_int] = ACTIONS(4724), - [anon_sym_c_uint] = ACTIONS(4724), - [anon_sym_c_long] = ACTIONS(4724), - [anon_sym_c_ulong] = ACTIONS(4724), - [anon_sym_c_longlong] = ACTIONS(4724), - [anon_sym_c_ulonglong] = ACTIONS(4724), - [anon_sym_c_float] = ACTIONS(4724), - [anon_sym_c_double] = ACTIONS(4724), - [anon_sym_c_longdouble] = ACTIONS(4724), - [anon_sym_return] = ACTIONS(4724), - [anon_sym_yield] = ACTIONS(4724), - [anon_sym_break] = ACTIONS(4724), - [anon_sym_continue] = ACTIONS(4724), - [anon_sym_defer] = ACTIONS(4724), - [anon_sym_errdefer] = ACTIONS(4724), - [anon_sym_if] = ACTIONS(4724), - [anon_sym_else] = ACTIONS(4724), - [anon_sym_while] = ACTIONS(4724), - [anon_sym_expand] = ACTIONS(4724), - [anon_sym_for] = ACTIONS(4724), - [anon_sym_match] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4722), - [anon_sym_TILDE] = ACTIONS(4722), - [anon_sym_try] = ACTIONS(4724), - [anon_sym_DOT] = ACTIONS(4722), - [anon_sym_true] = ACTIONS(4724), - [anon_sym_false] = ACTIONS(4724), - [anon_sym_null] = ACTIONS(4724), - [anon_sym_unreachable] = ACTIONS(4724), - [anon_sym_undefined] = ACTIONS(4724), - [sym_sink] = ACTIONS(4724), - [sym_integer] = ACTIONS(4724), - [sym_float] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4722), - [sym_multiline_string] = ACTIONS(4722), - [sym_character] = ACTIONS(4722), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4722), - }, - [STATE(1932)] = { - [ts_builtin_sym_end] = ACTIONS(4726), - [sym_identifier] = ACTIONS(4728), - [anon_sym_import] = ACTIONS(4728), - [anon_sym_test] = ACTIONS(4728), - [anon_sym_hide] = ACTIONS(4728), - [anon_sym_func] = ACTIONS(4728), - [anon_sym_BANG] = ACTIONS(4726), - [anon_sym_struct] = ACTIONS(4728), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_RPAREN] = ACTIONS(4726), - [anon_sym_LBRACE] = ACTIONS(4726), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [anon_sym_LBRACK] = ACTIONS(4726), - [anon_sym_void] = ACTIONS(4728), - [anon_sym_noreturn] = ACTIONS(4728), - [anon_sym_type] = ACTIONS(4728), - [anon_sym_anyopaque] = ACTIONS(4728), - [anon_sym_bool] = ACTIONS(4728), - [anon_sym_int] = ACTIONS(4728), - [anon_sym_uint] = ACTIONS(4728), - [anon_sym_float] = ACTIONS(4728), - [anon_sym_range] = ACTIONS(4728), - [anon_sym_i8] = ACTIONS(4728), - [anon_sym_i16] = ACTIONS(4728), - [anon_sym_i32] = ACTIONS(4728), - [anon_sym_i64] = ACTIONS(4728), - [anon_sym_u8] = ACTIONS(4728), - [anon_sym_u16] = ACTIONS(4728), - [anon_sym_u32] = ACTIONS(4728), - [anon_sym_u64] = ACTIONS(4728), - [anon_sym_isize] = ACTIONS(4728), - [anon_sym_usize] = ACTIONS(4728), - [anon_sym_f32] = ACTIONS(4728), - [anon_sym_f64] = ACTIONS(4728), - [anon_sym_c_char] = ACTIONS(4728), - [anon_sym_c_schar] = ACTIONS(4728), - [anon_sym_c_uchar] = ACTIONS(4728), - [anon_sym_c_short] = ACTIONS(4728), - [anon_sym_c_ushort] = ACTIONS(4728), - [anon_sym_c_int] = ACTIONS(4728), - [anon_sym_c_uint] = ACTIONS(4728), - [anon_sym_c_long] = ACTIONS(4728), - [anon_sym_c_ulong] = ACTIONS(4728), - [anon_sym_c_longlong] = ACTIONS(4728), - [anon_sym_c_ulonglong] = ACTIONS(4728), - [anon_sym_c_float] = ACTIONS(4728), - [anon_sym_c_double] = ACTIONS(4728), - [anon_sym_c_longdouble] = ACTIONS(4728), - [anon_sym_return] = ACTIONS(4728), - [anon_sym_yield] = ACTIONS(4728), - [anon_sym_break] = ACTIONS(4728), - [anon_sym_continue] = ACTIONS(4728), - [anon_sym_defer] = ACTIONS(4728), - [anon_sym_errdefer] = ACTIONS(4728), - [anon_sym_if] = ACTIONS(4728), - [anon_sym_else] = ACTIONS(4728), - [anon_sym_while] = ACTIONS(4728), - [anon_sym_expand] = ACTIONS(4728), - [anon_sym_for] = ACTIONS(4728), - [anon_sym_match] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4726), - [anon_sym_TILDE] = ACTIONS(4726), - [anon_sym_try] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4726), - [anon_sym_true] = ACTIONS(4728), - [anon_sym_false] = ACTIONS(4728), - [anon_sym_null] = ACTIONS(4728), - [anon_sym_unreachable] = ACTIONS(4728), - [anon_sym_undefined] = ACTIONS(4728), - [sym_sink] = ACTIONS(4728), - [sym_integer] = ACTIONS(4728), - [sym_float] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [sym_multiline_string] = ACTIONS(4726), - [sym_character] = ACTIONS(4726), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4726), - }, - [STATE(1933)] = { - [ts_builtin_sym_end] = ACTIONS(4730), - [sym_identifier] = ACTIONS(4732), - [anon_sym_import] = ACTIONS(4732), - [anon_sym_test] = ACTIONS(4732), - [anon_sym_hide] = ACTIONS(4732), - [anon_sym_func] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4730), - [anon_sym_struct] = ACTIONS(4732), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4730), - [anon_sym_RBRACE] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [anon_sym_LBRACK] = ACTIONS(4730), - [anon_sym_void] = ACTIONS(4732), - [anon_sym_noreturn] = ACTIONS(4732), - [anon_sym_type] = ACTIONS(4732), - [anon_sym_anyopaque] = ACTIONS(4732), - [anon_sym_bool] = ACTIONS(4732), - [anon_sym_int] = ACTIONS(4732), - [anon_sym_uint] = ACTIONS(4732), - [anon_sym_float] = ACTIONS(4732), - [anon_sym_range] = ACTIONS(4732), - [anon_sym_i8] = ACTIONS(4732), - [anon_sym_i16] = ACTIONS(4732), - [anon_sym_i32] = ACTIONS(4732), - [anon_sym_i64] = ACTIONS(4732), - [anon_sym_u8] = ACTIONS(4732), - [anon_sym_u16] = ACTIONS(4732), - [anon_sym_u32] = ACTIONS(4732), - [anon_sym_u64] = ACTIONS(4732), - [anon_sym_isize] = ACTIONS(4732), - [anon_sym_usize] = ACTIONS(4732), - [anon_sym_f32] = ACTIONS(4732), - [anon_sym_f64] = ACTIONS(4732), - [anon_sym_c_char] = ACTIONS(4732), - [anon_sym_c_schar] = ACTIONS(4732), - [anon_sym_c_uchar] = ACTIONS(4732), - [anon_sym_c_short] = ACTIONS(4732), - [anon_sym_c_ushort] = ACTIONS(4732), - [anon_sym_c_int] = ACTIONS(4732), - [anon_sym_c_uint] = ACTIONS(4732), - [anon_sym_c_long] = ACTIONS(4732), - [anon_sym_c_ulong] = ACTIONS(4732), - [anon_sym_c_longlong] = ACTIONS(4732), - [anon_sym_c_ulonglong] = ACTIONS(4732), - [anon_sym_c_float] = ACTIONS(4732), - [anon_sym_c_double] = ACTIONS(4732), - [anon_sym_c_longdouble] = ACTIONS(4732), - [anon_sym_return] = ACTIONS(4732), - [anon_sym_yield] = ACTIONS(4732), - [anon_sym_break] = ACTIONS(4732), - [anon_sym_continue] = ACTIONS(4732), - [anon_sym_defer] = ACTIONS(4732), - [anon_sym_errdefer] = ACTIONS(4732), - [anon_sym_if] = ACTIONS(4732), - [anon_sym_else] = ACTIONS(4732), - [anon_sym_while] = ACTIONS(4732), - [anon_sym_expand] = ACTIONS(4732), - [anon_sym_for] = ACTIONS(4732), - [anon_sym_match] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4730), - [anon_sym_TILDE] = ACTIONS(4730), - [anon_sym_try] = ACTIONS(4732), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_true] = ACTIONS(4732), - [anon_sym_false] = ACTIONS(4732), - [anon_sym_null] = ACTIONS(4732), - [anon_sym_unreachable] = ACTIONS(4732), - [anon_sym_undefined] = ACTIONS(4732), - [sym_sink] = ACTIONS(4732), - [sym_integer] = ACTIONS(4732), - [sym_float] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym_multiline_string] = ACTIONS(4730), - [sym_character] = ACTIONS(4730), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4730), - }, - [STATE(1934)] = { - [ts_builtin_sym_end] = ACTIONS(4734), - [sym_identifier] = ACTIONS(4736), - [anon_sym_import] = ACTIONS(4736), - [anon_sym_test] = ACTIONS(4736), - [anon_sym_hide] = ACTIONS(4736), - [anon_sym_func] = ACTIONS(4736), - [anon_sym_BANG] = ACTIONS(4734), - [anon_sym_struct] = ACTIONS(4736), - [anon_sym_LPAREN] = ACTIONS(4734), - [anon_sym_RPAREN] = ACTIONS(4734), - [anon_sym_LBRACE] = ACTIONS(4734), - [anon_sym_RBRACE] = ACTIONS(4734), - [anon_sym_DASH] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(4734), - [anon_sym_LBRACK] = ACTIONS(4734), - [anon_sym_void] = ACTIONS(4736), - [anon_sym_noreturn] = ACTIONS(4736), - [anon_sym_type] = ACTIONS(4736), - [anon_sym_anyopaque] = ACTIONS(4736), - [anon_sym_bool] = ACTIONS(4736), - [anon_sym_int] = ACTIONS(4736), - [anon_sym_uint] = ACTIONS(4736), - [anon_sym_float] = ACTIONS(4736), - [anon_sym_range] = ACTIONS(4736), - [anon_sym_i8] = ACTIONS(4736), - [anon_sym_i16] = ACTIONS(4736), - [anon_sym_i32] = ACTIONS(4736), - [anon_sym_i64] = ACTIONS(4736), - [anon_sym_u8] = ACTIONS(4736), - [anon_sym_u16] = ACTIONS(4736), - [anon_sym_u32] = ACTIONS(4736), - [anon_sym_u64] = ACTIONS(4736), - [anon_sym_isize] = ACTIONS(4736), - [anon_sym_usize] = ACTIONS(4736), - [anon_sym_f32] = ACTIONS(4736), - [anon_sym_f64] = ACTIONS(4736), - [anon_sym_c_char] = ACTIONS(4736), - [anon_sym_c_schar] = ACTIONS(4736), - [anon_sym_c_uchar] = ACTIONS(4736), - [anon_sym_c_short] = ACTIONS(4736), - [anon_sym_c_ushort] = ACTIONS(4736), - [anon_sym_c_int] = ACTIONS(4736), - [anon_sym_c_uint] = ACTIONS(4736), - [anon_sym_c_long] = ACTIONS(4736), - [anon_sym_c_ulong] = ACTIONS(4736), - [anon_sym_c_longlong] = ACTIONS(4736), - [anon_sym_c_ulonglong] = ACTIONS(4736), - [anon_sym_c_float] = ACTIONS(4736), - [anon_sym_c_double] = ACTIONS(4736), - [anon_sym_c_longdouble] = ACTIONS(4736), - [anon_sym_return] = ACTIONS(4736), - [anon_sym_yield] = ACTIONS(4736), - [anon_sym_break] = ACTIONS(4736), - [anon_sym_continue] = ACTIONS(4736), - [anon_sym_defer] = ACTIONS(4736), - [anon_sym_errdefer] = ACTIONS(4736), - [anon_sym_if] = ACTIONS(4736), - [anon_sym_else] = ACTIONS(4736), - [anon_sym_while] = ACTIONS(4736), - [anon_sym_expand] = ACTIONS(4736), - [anon_sym_for] = ACTIONS(4736), - [anon_sym_match] = ACTIONS(4736), - [anon_sym_AMP] = ACTIONS(4734), - [anon_sym_TILDE] = ACTIONS(4734), - [anon_sym_try] = ACTIONS(4736), - [anon_sym_DOT] = ACTIONS(4734), - [anon_sym_true] = ACTIONS(4736), - [anon_sym_false] = ACTIONS(4736), - [anon_sym_null] = ACTIONS(4736), - [anon_sym_unreachable] = ACTIONS(4736), - [anon_sym_undefined] = ACTIONS(4736), - [sym_sink] = ACTIONS(4736), - [sym_integer] = ACTIONS(4736), - [sym_float] = ACTIONS(4734), - [anon_sym_DQUOTE] = ACTIONS(4734), - [sym_multiline_string] = ACTIONS(4734), - [sym_character] = ACTIONS(4734), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4734), - }, - [STATE(1935)] = { - [ts_builtin_sym_end] = ACTIONS(4738), - [sym_identifier] = ACTIONS(4740), - [anon_sym_import] = ACTIONS(4740), - [anon_sym_test] = ACTIONS(4740), - [anon_sym_hide] = ACTIONS(4740), - [anon_sym_func] = ACTIONS(4740), - [anon_sym_BANG] = ACTIONS(4738), - [anon_sym_struct] = ACTIONS(4740), - [anon_sym_LPAREN] = ACTIONS(4738), - [anon_sym_RPAREN] = ACTIONS(4738), - [anon_sym_LBRACE] = ACTIONS(4738), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_DASH] = ACTIONS(4738), - [anon_sym_DOLLAR] = ACTIONS(4738), - [anon_sym_LBRACK] = ACTIONS(4738), - [anon_sym_void] = ACTIONS(4740), - [anon_sym_noreturn] = ACTIONS(4740), - [anon_sym_type] = ACTIONS(4740), - [anon_sym_anyopaque] = ACTIONS(4740), - [anon_sym_bool] = ACTIONS(4740), - [anon_sym_int] = ACTIONS(4740), - [anon_sym_uint] = ACTIONS(4740), - [anon_sym_float] = ACTIONS(4740), - [anon_sym_range] = ACTIONS(4740), - [anon_sym_i8] = ACTIONS(4740), - [anon_sym_i16] = ACTIONS(4740), - [anon_sym_i32] = ACTIONS(4740), - [anon_sym_i64] = ACTIONS(4740), - [anon_sym_u8] = ACTIONS(4740), - [anon_sym_u16] = ACTIONS(4740), - [anon_sym_u32] = ACTIONS(4740), - [anon_sym_u64] = ACTIONS(4740), - [anon_sym_isize] = ACTIONS(4740), - [anon_sym_usize] = ACTIONS(4740), - [anon_sym_f32] = ACTIONS(4740), - [anon_sym_f64] = ACTIONS(4740), - [anon_sym_c_char] = ACTIONS(4740), - [anon_sym_c_schar] = ACTIONS(4740), - [anon_sym_c_uchar] = ACTIONS(4740), - [anon_sym_c_short] = ACTIONS(4740), - [anon_sym_c_ushort] = ACTIONS(4740), - [anon_sym_c_int] = ACTIONS(4740), - [anon_sym_c_uint] = ACTIONS(4740), - [anon_sym_c_long] = ACTIONS(4740), - [anon_sym_c_ulong] = ACTIONS(4740), - [anon_sym_c_longlong] = ACTIONS(4740), - [anon_sym_c_ulonglong] = ACTIONS(4740), - [anon_sym_c_float] = ACTIONS(4740), - [anon_sym_c_double] = ACTIONS(4740), - [anon_sym_c_longdouble] = ACTIONS(4740), - [anon_sym_return] = ACTIONS(4740), - [anon_sym_yield] = ACTIONS(4740), - [anon_sym_break] = ACTIONS(4740), - [anon_sym_continue] = ACTIONS(4740), - [anon_sym_defer] = ACTIONS(4740), - [anon_sym_errdefer] = ACTIONS(4740), - [anon_sym_if] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4740), - [anon_sym_while] = ACTIONS(4740), - [anon_sym_expand] = ACTIONS(4740), - [anon_sym_for] = ACTIONS(4740), - [anon_sym_match] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4738), - [anon_sym_TILDE] = ACTIONS(4738), - [anon_sym_try] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4738), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [anon_sym_null] = ACTIONS(4740), - [anon_sym_unreachable] = ACTIONS(4740), - [anon_sym_undefined] = ACTIONS(4740), - [sym_sink] = ACTIONS(4740), - [sym_integer] = ACTIONS(4740), - [sym_float] = ACTIONS(4738), - [anon_sym_DQUOTE] = ACTIONS(4738), - [sym_multiline_string] = ACTIONS(4738), - [sym_character] = ACTIONS(4738), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4738), - }, - [STATE(1936)] = { - [ts_builtin_sym_end] = ACTIONS(4742), - [sym_identifier] = ACTIONS(4744), - [anon_sym_import] = ACTIONS(4744), - [anon_sym_test] = ACTIONS(4744), - [anon_sym_hide] = ACTIONS(4744), - [anon_sym_func] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4742), - [anon_sym_struct] = ACTIONS(4744), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_LBRACE] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4742), - [anon_sym_void] = ACTIONS(4744), - [anon_sym_noreturn] = ACTIONS(4744), - [anon_sym_type] = ACTIONS(4744), - [anon_sym_anyopaque] = ACTIONS(4744), - [anon_sym_bool] = ACTIONS(4744), - [anon_sym_int] = ACTIONS(4744), - [anon_sym_uint] = ACTIONS(4744), - [anon_sym_float] = ACTIONS(4744), - [anon_sym_range] = ACTIONS(4744), - [anon_sym_i8] = ACTIONS(4744), - [anon_sym_i16] = ACTIONS(4744), - [anon_sym_i32] = ACTIONS(4744), - [anon_sym_i64] = ACTIONS(4744), - [anon_sym_u8] = ACTIONS(4744), - [anon_sym_u16] = ACTIONS(4744), - [anon_sym_u32] = ACTIONS(4744), - [anon_sym_u64] = ACTIONS(4744), - [anon_sym_isize] = ACTIONS(4744), - [anon_sym_usize] = ACTIONS(4744), - [anon_sym_f32] = ACTIONS(4744), - [anon_sym_f64] = ACTIONS(4744), - [anon_sym_c_char] = ACTIONS(4744), - [anon_sym_c_schar] = ACTIONS(4744), - [anon_sym_c_uchar] = ACTIONS(4744), - [anon_sym_c_short] = ACTIONS(4744), - [anon_sym_c_ushort] = ACTIONS(4744), - [anon_sym_c_int] = ACTIONS(4744), - [anon_sym_c_uint] = ACTIONS(4744), - [anon_sym_c_long] = ACTIONS(4744), - [anon_sym_c_ulong] = ACTIONS(4744), - [anon_sym_c_longlong] = ACTIONS(4744), - [anon_sym_c_ulonglong] = ACTIONS(4744), - [anon_sym_c_float] = ACTIONS(4744), - [anon_sym_c_double] = ACTIONS(4744), - [anon_sym_c_longdouble] = ACTIONS(4744), - [anon_sym_return] = ACTIONS(4744), - [anon_sym_yield] = ACTIONS(4744), - [anon_sym_break] = ACTIONS(4744), - [anon_sym_continue] = ACTIONS(4744), - [anon_sym_defer] = ACTIONS(4744), - [anon_sym_errdefer] = ACTIONS(4744), - [anon_sym_if] = ACTIONS(4744), - [anon_sym_else] = ACTIONS(4744), - [anon_sym_while] = ACTIONS(4744), - [anon_sym_expand] = ACTIONS(4744), - [anon_sym_for] = ACTIONS(4744), - [anon_sym_match] = ACTIONS(4744), - [anon_sym_AMP] = ACTIONS(4742), - [anon_sym_TILDE] = ACTIONS(4742), - [anon_sym_try] = ACTIONS(4744), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_true] = ACTIONS(4744), - [anon_sym_false] = ACTIONS(4744), - [anon_sym_null] = ACTIONS(4744), - [anon_sym_unreachable] = ACTIONS(4744), - [anon_sym_undefined] = ACTIONS(4744), - [sym_sink] = ACTIONS(4744), - [sym_integer] = ACTIONS(4744), - [sym_float] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4742), - [sym_multiline_string] = ACTIONS(4742), - [sym_character] = ACTIONS(4742), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4742), - }, - [STATE(1937)] = { - [ts_builtin_sym_end] = ACTIONS(4746), - [sym_identifier] = ACTIONS(4748), - [anon_sym_import] = ACTIONS(4748), - [anon_sym_test] = ACTIONS(4748), - [anon_sym_hide] = ACTIONS(4748), - [anon_sym_func] = ACTIONS(4748), - [anon_sym_BANG] = ACTIONS(4746), - [anon_sym_struct] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_RPAREN] = ACTIONS(4746), - [anon_sym_LBRACE] = ACTIONS(4746), - [anon_sym_RBRACE] = ACTIONS(4746), - [anon_sym_DASH] = ACTIONS(4746), - [anon_sym_DOLLAR] = ACTIONS(4746), - [anon_sym_LBRACK] = ACTIONS(4746), - [anon_sym_void] = ACTIONS(4748), - [anon_sym_noreturn] = ACTIONS(4748), - [anon_sym_type] = ACTIONS(4748), - [anon_sym_anyopaque] = ACTIONS(4748), - [anon_sym_bool] = ACTIONS(4748), - [anon_sym_int] = ACTIONS(4748), - [anon_sym_uint] = ACTIONS(4748), - [anon_sym_float] = ACTIONS(4748), - [anon_sym_range] = ACTIONS(4748), - [anon_sym_i8] = ACTIONS(4748), - [anon_sym_i16] = ACTIONS(4748), - [anon_sym_i32] = ACTIONS(4748), - [anon_sym_i64] = ACTIONS(4748), - [anon_sym_u8] = ACTIONS(4748), - [anon_sym_u16] = ACTIONS(4748), - [anon_sym_u32] = ACTIONS(4748), - [anon_sym_u64] = ACTIONS(4748), - [anon_sym_isize] = ACTIONS(4748), - [anon_sym_usize] = ACTIONS(4748), - [anon_sym_f32] = ACTIONS(4748), - [anon_sym_f64] = ACTIONS(4748), - [anon_sym_c_char] = ACTIONS(4748), - [anon_sym_c_schar] = ACTIONS(4748), - [anon_sym_c_uchar] = ACTIONS(4748), - [anon_sym_c_short] = ACTIONS(4748), - [anon_sym_c_ushort] = ACTIONS(4748), - [anon_sym_c_int] = ACTIONS(4748), - [anon_sym_c_uint] = ACTIONS(4748), - [anon_sym_c_long] = ACTIONS(4748), - [anon_sym_c_ulong] = ACTIONS(4748), - [anon_sym_c_longlong] = ACTIONS(4748), - [anon_sym_c_ulonglong] = ACTIONS(4748), - [anon_sym_c_float] = ACTIONS(4748), - [anon_sym_c_double] = ACTIONS(4748), - [anon_sym_c_longdouble] = ACTIONS(4748), - [anon_sym_return] = ACTIONS(4748), - [anon_sym_yield] = ACTIONS(4748), - [anon_sym_break] = ACTIONS(4748), - [anon_sym_continue] = ACTIONS(4748), - [anon_sym_defer] = ACTIONS(4748), - [anon_sym_errdefer] = ACTIONS(4748), - [anon_sym_if] = ACTIONS(4748), - [anon_sym_else] = ACTIONS(4748), - [anon_sym_while] = ACTIONS(4748), - [anon_sym_expand] = ACTIONS(4748), - [anon_sym_for] = ACTIONS(4748), - [anon_sym_match] = ACTIONS(4748), - [anon_sym_AMP] = ACTIONS(4746), - [anon_sym_TILDE] = ACTIONS(4746), - [anon_sym_try] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4746), - [anon_sym_true] = ACTIONS(4748), - [anon_sym_false] = ACTIONS(4748), - [anon_sym_null] = ACTIONS(4748), - [anon_sym_unreachable] = ACTIONS(4748), - [anon_sym_undefined] = ACTIONS(4748), - [sym_sink] = ACTIONS(4748), - [sym_integer] = ACTIONS(4748), - [sym_float] = ACTIONS(4746), - [anon_sym_DQUOTE] = ACTIONS(4746), - [sym_multiline_string] = ACTIONS(4746), - [sym_character] = ACTIONS(4746), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4746), - }, - [STATE(1938)] = { - [ts_builtin_sym_end] = ACTIONS(4750), - [sym_identifier] = ACTIONS(4752), - [anon_sym_import] = ACTIONS(4752), - [anon_sym_test] = ACTIONS(4752), - [anon_sym_hide] = ACTIONS(4752), - [anon_sym_func] = ACTIONS(4752), - [anon_sym_BANG] = ACTIONS(4750), - [anon_sym_struct] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4750), - [anon_sym_RPAREN] = ACTIONS(4750), - [anon_sym_LBRACE] = ACTIONS(4750), - [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_DASH] = ACTIONS(4750), - [anon_sym_DOLLAR] = ACTIONS(4750), - [anon_sym_LBRACK] = ACTIONS(4750), - [anon_sym_void] = ACTIONS(4752), - [anon_sym_noreturn] = ACTIONS(4752), - [anon_sym_type] = ACTIONS(4752), - [anon_sym_anyopaque] = ACTIONS(4752), - [anon_sym_bool] = ACTIONS(4752), - [anon_sym_int] = ACTIONS(4752), - [anon_sym_uint] = ACTIONS(4752), - [anon_sym_float] = ACTIONS(4752), - [anon_sym_range] = ACTIONS(4752), - [anon_sym_i8] = ACTIONS(4752), - [anon_sym_i16] = ACTIONS(4752), - [anon_sym_i32] = ACTIONS(4752), - [anon_sym_i64] = ACTIONS(4752), - [anon_sym_u8] = ACTIONS(4752), - [anon_sym_u16] = ACTIONS(4752), - [anon_sym_u32] = ACTIONS(4752), - [anon_sym_u64] = ACTIONS(4752), - [anon_sym_isize] = ACTIONS(4752), - [anon_sym_usize] = ACTIONS(4752), - [anon_sym_f32] = ACTIONS(4752), - [anon_sym_f64] = ACTIONS(4752), - [anon_sym_c_char] = ACTIONS(4752), - [anon_sym_c_schar] = ACTIONS(4752), - [anon_sym_c_uchar] = ACTIONS(4752), - [anon_sym_c_short] = ACTIONS(4752), - [anon_sym_c_ushort] = ACTIONS(4752), - [anon_sym_c_int] = ACTIONS(4752), - [anon_sym_c_uint] = ACTIONS(4752), - [anon_sym_c_long] = ACTIONS(4752), - [anon_sym_c_ulong] = ACTIONS(4752), - [anon_sym_c_longlong] = ACTIONS(4752), - [anon_sym_c_ulonglong] = ACTIONS(4752), - [anon_sym_c_float] = ACTIONS(4752), - [anon_sym_c_double] = ACTIONS(4752), - [anon_sym_c_longdouble] = ACTIONS(4752), - [anon_sym_return] = ACTIONS(4752), - [anon_sym_yield] = ACTIONS(4752), - [anon_sym_break] = ACTIONS(4752), - [anon_sym_continue] = ACTIONS(4752), - [anon_sym_defer] = ACTIONS(4752), - [anon_sym_errdefer] = ACTIONS(4752), - [anon_sym_if] = ACTIONS(4752), - [anon_sym_else] = ACTIONS(4752), - [anon_sym_while] = ACTIONS(4752), - [anon_sym_expand] = ACTIONS(4752), - [anon_sym_for] = ACTIONS(4752), - [anon_sym_match] = ACTIONS(4752), - [anon_sym_AMP] = ACTIONS(4750), - [anon_sym_TILDE] = ACTIONS(4750), - [anon_sym_try] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4750), - [anon_sym_true] = ACTIONS(4752), - [anon_sym_false] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(4752), - [anon_sym_unreachable] = ACTIONS(4752), - [anon_sym_undefined] = ACTIONS(4752), - [sym_sink] = ACTIONS(4752), - [sym_integer] = ACTIONS(4752), - [sym_float] = ACTIONS(4750), - [anon_sym_DQUOTE] = ACTIONS(4750), - [sym_multiline_string] = ACTIONS(4750), - [sym_character] = ACTIONS(4750), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4750), - }, - [STATE(1939)] = { - [ts_builtin_sym_end] = ACTIONS(4754), - [sym_identifier] = ACTIONS(4756), - [anon_sym_import] = ACTIONS(4756), - [anon_sym_test] = ACTIONS(4756), - [anon_sym_hide] = ACTIONS(4756), - [anon_sym_func] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_struct] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4754), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(4754), - [anon_sym_RBRACE] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4754), - [anon_sym_LBRACK] = ACTIONS(4754), - [anon_sym_void] = ACTIONS(4756), - [anon_sym_noreturn] = ACTIONS(4756), - [anon_sym_type] = ACTIONS(4756), - [anon_sym_anyopaque] = ACTIONS(4756), - [anon_sym_bool] = ACTIONS(4756), - [anon_sym_int] = ACTIONS(4756), - [anon_sym_uint] = ACTIONS(4756), - [anon_sym_float] = ACTIONS(4756), - [anon_sym_range] = ACTIONS(4756), - [anon_sym_i8] = ACTIONS(4756), - [anon_sym_i16] = ACTIONS(4756), - [anon_sym_i32] = ACTIONS(4756), - [anon_sym_i64] = ACTIONS(4756), - [anon_sym_u8] = ACTIONS(4756), - [anon_sym_u16] = ACTIONS(4756), - [anon_sym_u32] = ACTIONS(4756), - [anon_sym_u64] = ACTIONS(4756), - [anon_sym_isize] = ACTIONS(4756), - [anon_sym_usize] = ACTIONS(4756), - [anon_sym_f32] = ACTIONS(4756), - [anon_sym_f64] = ACTIONS(4756), - [anon_sym_c_char] = ACTIONS(4756), - [anon_sym_c_schar] = ACTIONS(4756), - [anon_sym_c_uchar] = ACTIONS(4756), - [anon_sym_c_short] = ACTIONS(4756), - [anon_sym_c_ushort] = ACTIONS(4756), - [anon_sym_c_int] = ACTIONS(4756), - [anon_sym_c_uint] = ACTIONS(4756), - [anon_sym_c_long] = ACTIONS(4756), - [anon_sym_c_ulong] = ACTIONS(4756), - [anon_sym_c_longlong] = ACTIONS(4756), - [anon_sym_c_ulonglong] = ACTIONS(4756), - [anon_sym_c_float] = ACTIONS(4756), - [anon_sym_c_double] = ACTIONS(4756), - [anon_sym_c_longdouble] = ACTIONS(4756), - [anon_sym_return] = ACTIONS(4756), - [anon_sym_yield] = ACTIONS(4756), - [anon_sym_break] = ACTIONS(4756), - [anon_sym_continue] = ACTIONS(4756), - [anon_sym_defer] = ACTIONS(4756), - [anon_sym_errdefer] = ACTIONS(4756), - [anon_sym_if] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4756), - [anon_sym_while] = ACTIONS(4756), - [anon_sym_expand] = ACTIONS(4756), - [anon_sym_for] = ACTIONS(4756), - [anon_sym_match] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_TILDE] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_true] = ACTIONS(4756), - [anon_sym_false] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4756), - [anon_sym_unreachable] = ACTIONS(4756), - [anon_sym_undefined] = ACTIONS(4756), - [sym_sink] = ACTIONS(4756), - [sym_integer] = ACTIONS(4756), - [sym_float] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [sym_multiline_string] = ACTIONS(4754), - [sym_character] = ACTIONS(4754), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4754), - }, - [STATE(1940)] = { - [ts_builtin_sym_end] = ACTIONS(4758), - [sym_identifier] = ACTIONS(4760), - [anon_sym_import] = ACTIONS(4760), - [anon_sym_test] = ACTIONS(4760), - [anon_sym_hide] = ACTIONS(4760), - [anon_sym_func] = ACTIONS(4760), - [anon_sym_BANG] = ACTIONS(4758), - [anon_sym_struct] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_LBRACE] = ACTIONS(4758), - [anon_sym_RBRACE] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4758), - [anon_sym_void] = ACTIONS(4760), - [anon_sym_noreturn] = ACTIONS(4760), - [anon_sym_type] = ACTIONS(4760), - [anon_sym_anyopaque] = ACTIONS(4760), - [anon_sym_bool] = ACTIONS(4760), - [anon_sym_int] = ACTIONS(4760), - [anon_sym_uint] = ACTIONS(4760), - [anon_sym_float] = ACTIONS(4760), - [anon_sym_range] = ACTIONS(4760), - [anon_sym_i8] = ACTIONS(4760), - [anon_sym_i16] = ACTIONS(4760), - [anon_sym_i32] = ACTIONS(4760), - [anon_sym_i64] = ACTIONS(4760), - [anon_sym_u8] = ACTIONS(4760), - [anon_sym_u16] = ACTIONS(4760), - [anon_sym_u32] = ACTIONS(4760), - [anon_sym_u64] = ACTIONS(4760), - [anon_sym_isize] = ACTIONS(4760), - [anon_sym_usize] = ACTIONS(4760), - [anon_sym_f32] = ACTIONS(4760), - [anon_sym_f64] = ACTIONS(4760), - [anon_sym_c_char] = ACTIONS(4760), - [anon_sym_c_schar] = ACTIONS(4760), - [anon_sym_c_uchar] = ACTIONS(4760), - [anon_sym_c_short] = ACTIONS(4760), - [anon_sym_c_ushort] = ACTIONS(4760), - [anon_sym_c_int] = ACTIONS(4760), - [anon_sym_c_uint] = ACTIONS(4760), - [anon_sym_c_long] = ACTIONS(4760), - [anon_sym_c_ulong] = ACTIONS(4760), - [anon_sym_c_longlong] = ACTIONS(4760), - [anon_sym_c_ulonglong] = ACTIONS(4760), - [anon_sym_c_float] = ACTIONS(4760), - [anon_sym_c_double] = ACTIONS(4760), - [anon_sym_c_longdouble] = ACTIONS(4760), - [anon_sym_return] = ACTIONS(4760), - [anon_sym_yield] = ACTIONS(4760), - [anon_sym_break] = ACTIONS(4760), - [anon_sym_continue] = ACTIONS(4760), - [anon_sym_defer] = ACTIONS(4760), - [anon_sym_errdefer] = ACTIONS(4760), - [anon_sym_if] = ACTIONS(4760), - [anon_sym_else] = ACTIONS(4760), - [anon_sym_while] = ACTIONS(4760), - [anon_sym_expand] = ACTIONS(4760), - [anon_sym_for] = ACTIONS(4760), - [anon_sym_match] = ACTIONS(4760), - [anon_sym_AMP] = ACTIONS(4758), - [anon_sym_TILDE] = ACTIONS(4758), - [anon_sym_try] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_true] = ACTIONS(4760), - [anon_sym_false] = ACTIONS(4760), - [anon_sym_null] = ACTIONS(4760), - [anon_sym_unreachable] = ACTIONS(4760), - [anon_sym_undefined] = ACTIONS(4760), - [sym_sink] = ACTIONS(4760), - [sym_integer] = ACTIONS(4760), - [sym_float] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [sym_multiline_string] = ACTIONS(4758), - [sym_character] = ACTIONS(4758), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4758), - }, - [STATE(1941)] = { - [ts_builtin_sym_end] = ACTIONS(4762), - [sym_identifier] = ACTIONS(4764), - [anon_sym_import] = ACTIONS(4764), - [anon_sym_test] = ACTIONS(4764), - [anon_sym_hide] = ACTIONS(4764), - [anon_sym_func] = ACTIONS(4764), - [anon_sym_BANG] = ACTIONS(4762), - [anon_sym_struct] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4762), - [anon_sym_RPAREN] = ACTIONS(4762), - [anon_sym_LBRACE] = ACTIONS(4762), - [anon_sym_RBRACE] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_DOLLAR] = ACTIONS(4762), - [anon_sym_LBRACK] = ACTIONS(4762), - [anon_sym_void] = ACTIONS(4764), - [anon_sym_noreturn] = ACTIONS(4764), - [anon_sym_type] = ACTIONS(4764), - [anon_sym_anyopaque] = ACTIONS(4764), - [anon_sym_bool] = ACTIONS(4764), - [anon_sym_int] = ACTIONS(4764), - [anon_sym_uint] = ACTIONS(4764), - [anon_sym_float] = ACTIONS(4764), - [anon_sym_range] = ACTIONS(4764), - [anon_sym_i8] = ACTIONS(4764), - [anon_sym_i16] = ACTIONS(4764), - [anon_sym_i32] = ACTIONS(4764), - [anon_sym_i64] = ACTIONS(4764), - [anon_sym_u8] = ACTIONS(4764), - [anon_sym_u16] = ACTIONS(4764), - [anon_sym_u32] = ACTIONS(4764), - [anon_sym_u64] = ACTIONS(4764), - [anon_sym_isize] = ACTIONS(4764), - [anon_sym_usize] = ACTIONS(4764), - [anon_sym_f32] = ACTIONS(4764), - [anon_sym_f64] = ACTIONS(4764), - [anon_sym_c_char] = ACTIONS(4764), - [anon_sym_c_schar] = ACTIONS(4764), - [anon_sym_c_uchar] = ACTIONS(4764), - [anon_sym_c_short] = ACTIONS(4764), - [anon_sym_c_ushort] = ACTIONS(4764), - [anon_sym_c_int] = ACTIONS(4764), - [anon_sym_c_uint] = ACTIONS(4764), - [anon_sym_c_long] = ACTIONS(4764), - [anon_sym_c_ulong] = ACTIONS(4764), - [anon_sym_c_longlong] = ACTIONS(4764), - [anon_sym_c_ulonglong] = ACTIONS(4764), - [anon_sym_c_float] = ACTIONS(4764), - [anon_sym_c_double] = ACTIONS(4764), - [anon_sym_c_longdouble] = ACTIONS(4764), - [anon_sym_return] = ACTIONS(4764), - [anon_sym_yield] = ACTIONS(4764), - [anon_sym_break] = ACTIONS(4764), - [anon_sym_continue] = ACTIONS(4764), - [anon_sym_defer] = ACTIONS(4764), - [anon_sym_errdefer] = ACTIONS(4764), - [anon_sym_if] = ACTIONS(4764), - [anon_sym_else] = ACTIONS(4764), - [anon_sym_while] = ACTIONS(4764), - [anon_sym_expand] = ACTIONS(4764), - [anon_sym_for] = ACTIONS(4764), - [anon_sym_match] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_TILDE] = ACTIONS(4762), - [anon_sym_try] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4762), - [anon_sym_true] = ACTIONS(4764), - [anon_sym_false] = ACTIONS(4764), - [anon_sym_null] = ACTIONS(4764), - [anon_sym_unreachable] = ACTIONS(4764), - [anon_sym_undefined] = ACTIONS(4764), - [sym_sink] = ACTIONS(4764), - [sym_integer] = ACTIONS(4764), - [sym_float] = ACTIONS(4762), - [anon_sym_DQUOTE] = ACTIONS(4762), - [sym_multiline_string] = ACTIONS(4762), - [sym_character] = ACTIONS(4762), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4762), - }, - [STATE(1942)] = { - [ts_builtin_sym_end] = ACTIONS(4766), - [sym_identifier] = ACTIONS(4768), - [anon_sym_import] = ACTIONS(4768), - [anon_sym_test] = ACTIONS(4768), - [anon_sym_hide] = ACTIONS(4768), - [anon_sym_func] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_struct] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4766), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(4766), - [anon_sym_void] = ACTIONS(4768), - [anon_sym_noreturn] = ACTIONS(4768), - [anon_sym_type] = ACTIONS(4768), - [anon_sym_anyopaque] = ACTIONS(4768), - [anon_sym_bool] = ACTIONS(4768), - [anon_sym_int] = ACTIONS(4768), - [anon_sym_uint] = ACTIONS(4768), - [anon_sym_float] = ACTIONS(4768), - [anon_sym_range] = ACTIONS(4768), - [anon_sym_i8] = ACTIONS(4768), - [anon_sym_i16] = ACTIONS(4768), - [anon_sym_i32] = ACTIONS(4768), - [anon_sym_i64] = ACTIONS(4768), - [anon_sym_u8] = ACTIONS(4768), - [anon_sym_u16] = ACTIONS(4768), - [anon_sym_u32] = ACTIONS(4768), - [anon_sym_u64] = ACTIONS(4768), - [anon_sym_isize] = ACTIONS(4768), - [anon_sym_usize] = ACTIONS(4768), - [anon_sym_f32] = ACTIONS(4768), - [anon_sym_f64] = ACTIONS(4768), - [anon_sym_c_char] = ACTIONS(4768), - [anon_sym_c_schar] = ACTIONS(4768), - [anon_sym_c_uchar] = ACTIONS(4768), - [anon_sym_c_short] = ACTIONS(4768), - [anon_sym_c_ushort] = ACTIONS(4768), - [anon_sym_c_int] = ACTIONS(4768), - [anon_sym_c_uint] = ACTIONS(4768), - [anon_sym_c_long] = ACTIONS(4768), - [anon_sym_c_ulong] = ACTIONS(4768), - [anon_sym_c_longlong] = ACTIONS(4768), - [anon_sym_c_ulonglong] = ACTIONS(4768), - [anon_sym_c_float] = ACTIONS(4768), - [anon_sym_c_double] = ACTIONS(4768), - [anon_sym_c_longdouble] = ACTIONS(4768), - [anon_sym_return] = ACTIONS(4768), - [anon_sym_yield] = ACTIONS(4768), - [anon_sym_break] = ACTIONS(4768), - [anon_sym_continue] = ACTIONS(4768), - [anon_sym_defer] = ACTIONS(4768), - [anon_sym_errdefer] = ACTIONS(4768), - [anon_sym_if] = ACTIONS(4768), - [anon_sym_else] = ACTIONS(4768), - [anon_sym_while] = ACTIONS(4768), - [anon_sym_expand] = ACTIONS(4768), - [anon_sym_for] = ACTIONS(4768), - [anon_sym_match] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_TILDE] = ACTIONS(4766), - [anon_sym_try] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_true] = ACTIONS(4768), - [anon_sym_false] = ACTIONS(4768), - [anon_sym_null] = ACTIONS(4768), - [anon_sym_unreachable] = ACTIONS(4768), - [anon_sym_undefined] = ACTIONS(4768), - [sym_sink] = ACTIONS(4768), - [sym_integer] = ACTIONS(4768), - [sym_float] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4766), - [sym_multiline_string] = ACTIONS(4766), - [sym_character] = ACTIONS(4766), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4766), - }, - [STATE(1943)] = { - [ts_builtin_sym_end] = ACTIONS(4770), - [sym_identifier] = ACTIONS(4772), - [anon_sym_import] = ACTIONS(4772), - [anon_sym_test] = ACTIONS(4772), - [anon_sym_hide] = ACTIONS(4772), - [anon_sym_func] = ACTIONS(4772), - [anon_sym_BANG] = ACTIONS(4770), - [anon_sym_struct] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4770), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_LBRACE] = ACTIONS(4770), - [anon_sym_RBRACE] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [anon_sym_LBRACK] = ACTIONS(4770), - [anon_sym_void] = ACTIONS(4772), - [anon_sym_noreturn] = ACTIONS(4772), - [anon_sym_type] = ACTIONS(4772), - [anon_sym_anyopaque] = ACTIONS(4772), - [anon_sym_bool] = ACTIONS(4772), - [anon_sym_int] = ACTIONS(4772), - [anon_sym_uint] = ACTIONS(4772), - [anon_sym_float] = ACTIONS(4772), - [anon_sym_range] = ACTIONS(4772), - [anon_sym_i8] = ACTIONS(4772), - [anon_sym_i16] = ACTIONS(4772), - [anon_sym_i32] = ACTIONS(4772), - [anon_sym_i64] = ACTIONS(4772), - [anon_sym_u8] = ACTIONS(4772), - [anon_sym_u16] = ACTIONS(4772), - [anon_sym_u32] = ACTIONS(4772), - [anon_sym_u64] = ACTIONS(4772), - [anon_sym_isize] = ACTIONS(4772), - [anon_sym_usize] = ACTIONS(4772), - [anon_sym_f32] = ACTIONS(4772), - [anon_sym_f64] = ACTIONS(4772), - [anon_sym_c_char] = ACTIONS(4772), - [anon_sym_c_schar] = ACTIONS(4772), - [anon_sym_c_uchar] = ACTIONS(4772), - [anon_sym_c_short] = ACTIONS(4772), - [anon_sym_c_ushort] = ACTIONS(4772), - [anon_sym_c_int] = ACTIONS(4772), - [anon_sym_c_uint] = ACTIONS(4772), - [anon_sym_c_long] = ACTIONS(4772), - [anon_sym_c_ulong] = ACTIONS(4772), - [anon_sym_c_longlong] = ACTIONS(4772), - [anon_sym_c_ulonglong] = ACTIONS(4772), - [anon_sym_c_float] = ACTIONS(4772), - [anon_sym_c_double] = ACTIONS(4772), - [anon_sym_c_longdouble] = ACTIONS(4772), - [anon_sym_return] = ACTIONS(4772), - [anon_sym_yield] = ACTIONS(4772), - [anon_sym_break] = ACTIONS(4772), - [anon_sym_continue] = ACTIONS(4772), - [anon_sym_defer] = ACTIONS(4772), - [anon_sym_errdefer] = ACTIONS(4772), - [anon_sym_if] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_while] = ACTIONS(4772), - [anon_sym_expand] = ACTIONS(4772), - [anon_sym_for] = ACTIONS(4772), - [anon_sym_match] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_TILDE] = ACTIONS(4770), - [anon_sym_try] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4770), - [anon_sym_true] = ACTIONS(4772), - [anon_sym_false] = ACTIONS(4772), - [anon_sym_null] = ACTIONS(4772), - [anon_sym_unreachable] = ACTIONS(4772), - [anon_sym_undefined] = ACTIONS(4772), - [sym_sink] = ACTIONS(4772), - [sym_integer] = ACTIONS(4772), - [sym_float] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4770), - [sym_multiline_string] = ACTIONS(4770), - [sym_character] = ACTIONS(4770), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4770), - }, - [STATE(1944)] = { - [ts_builtin_sym_end] = ACTIONS(4774), - [sym_identifier] = ACTIONS(4776), - [anon_sym_import] = ACTIONS(4776), - [anon_sym_test] = ACTIONS(4776), - [anon_sym_hide] = ACTIONS(4776), - [anon_sym_func] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4774), - [anon_sym_struct] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_LBRACE] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_DASH] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_void] = ACTIONS(4776), - [anon_sym_noreturn] = ACTIONS(4776), - [anon_sym_type] = ACTIONS(4776), - [anon_sym_anyopaque] = ACTIONS(4776), - [anon_sym_bool] = ACTIONS(4776), - [anon_sym_int] = ACTIONS(4776), - [anon_sym_uint] = ACTIONS(4776), - [anon_sym_float] = ACTIONS(4776), - [anon_sym_range] = ACTIONS(4776), - [anon_sym_i8] = ACTIONS(4776), - [anon_sym_i16] = ACTIONS(4776), - [anon_sym_i32] = ACTIONS(4776), - [anon_sym_i64] = ACTIONS(4776), - [anon_sym_u8] = ACTIONS(4776), - [anon_sym_u16] = ACTIONS(4776), - [anon_sym_u32] = ACTIONS(4776), - [anon_sym_u64] = ACTIONS(4776), - [anon_sym_isize] = ACTIONS(4776), - [anon_sym_usize] = ACTIONS(4776), - [anon_sym_f32] = ACTIONS(4776), - [anon_sym_f64] = ACTIONS(4776), - [anon_sym_c_char] = ACTIONS(4776), - [anon_sym_c_schar] = ACTIONS(4776), - [anon_sym_c_uchar] = ACTIONS(4776), - [anon_sym_c_short] = ACTIONS(4776), - [anon_sym_c_ushort] = ACTIONS(4776), - [anon_sym_c_int] = ACTIONS(4776), - [anon_sym_c_uint] = ACTIONS(4776), - [anon_sym_c_long] = ACTIONS(4776), - [anon_sym_c_ulong] = ACTIONS(4776), - [anon_sym_c_longlong] = ACTIONS(4776), - [anon_sym_c_ulonglong] = ACTIONS(4776), - [anon_sym_c_float] = ACTIONS(4776), - [anon_sym_c_double] = ACTIONS(4776), - [anon_sym_c_longdouble] = ACTIONS(4776), - [anon_sym_return] = ACTIONS(4776), - [anon_sym_yield] = ACTIONS(4776), - [anon_sym_break] = ACTIONS(4776), - [anon_sym_continue] = ACTIONS(4776), - [anon_sym_defer] = ACTIONS(4776), - [anon_sym_errdefer] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(4776), - [anon_sym_else] = ACTIONS(4776), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_expand] = ACTIONS(4776), - [anon_sym_for] = ACTIONS(4776), - [anon_sym_match] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4774), - [anon_sym_TILDE] = ACTIONS(4774), - [anon_sym_try] = ACTIONS(4776), - [anon_sym_DOT] = ACTIONS(4774), - [anon_sym_true] = ACTIONS(4776), - [anon_sym_false] = ACTIONS(4776), - [anon_sym_null] = ACTIONS(4776), - [anon_sym_unreachable] = ACTIONS(4776), - [anon_sym_undefined] = ACTIONS(4776), - [sym_sink] = ACTIONS(4776), - [sym_integer] = ACTIONS(4776), - [sym_float] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4774), - [sym_multiline_string] = ACTIONS(4774), - [sym_character] = ACTIONS(4774), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4774), - }, - [STATE(1945)] = { - [ts_builtin_sym_end] = ACTIONS(4778), - [sym_identifier] = ACTIONS(4780), - [anon_sym_import] = ACTIONS(4780), - [anon_sym_test] = ACTIONS(4780), - [anon_sym_hide] = ACTIONS(4780), - [anon_sym_func] = ACTIONS(4780), - [anon_sym_BANG] = ACTIONS(4778), - [anon_sym_struct] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4778), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_LBRACE] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_DASH] = ACTIONS(4778), - [anon_sym_DOLLAR] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(4778), - [anon_sym_void] = ACTIONS(4780), - [anon_sym_noreturn] = ACTIONS(4780), - [anon_sym_type] = ACTIONS(4780), - [anon_sym_anyopaque] = ACTIONS(4780), - [anon_sym_bool] = ACTIONS(4780), - [anon_sym_int] = ACTIONS(4780), - [anon_sym_uint] = ACTIONS(4780), - [anon_sym_float] = ACTIONS(4780), - [anon_sym_range] = ACTIONS(4780), - [anon_sym_i8] = ACTIONS(4780), - [anon_sym_i16] = ACTIONS(4780), - [anon_sym_i32] = ACTIONS(4780), - [anon_sym_i64] = ACTIONS(4780), - [anon_sym_u8] = ACTIONS(4780), - [anon_sym_u16] = ACTIONS(4780), - [anon_sym_u32] = ACTIONS(4780), - [anon_sym_u64] = ACTIONS(4780), - [anon_sym_isize] = ACTIONS(4780), - [anon_sym_usize] = ACTIONS(4780), - [anon_sym_f32] = ACTIONS(4780), - [anon_sym_f64] = ACTIONS(4780), - [anon_sym_c_char] = ACTIONS(4780), - [anon_sym_c_schar] = ACTIONS(4780), - [anon_sym_c_uchar] = ACTIONS(4780), - [anon_sym_c_short] = ACTIONS(4780), - [anon_sym_c_ushort] = ACTIONS(4780), - [anon_sym_c_int] = ACTIONS(4780), - [anon_sym_c_uint] = ACTIONS(4780), - [anon_sym_c_long] = ACTIONS(4780), - [anon_sym_c_ulong] = ACTIONS(4780), - [anon_sym_c_longlong] = ACTIONS(4780), - [anon_sym_c_ulonglong] = ACTIONS(4780), - [anon_sym_c_float] = ACTIONS(4780), - [anon_sym_c_double] = ACTIONS(4780), - [anon_sym_c_longdouble] = ACTIONS(4780), - [anon_sym_return] = ACTIONS(4780), - [anon_sym_yield] = ACTIONS(4780), - [anon_sym_break] = ACTIONS(4780), - [anon_sym_continue] = ACTIONS(4780), - [anon_sym_defer] = ACTIONS(4780), - [anon_sym_errdefer] = ACTIONS(4780), - [anon_sym_if] = ACTIONS(4780), - [anon_sym_else] = ACTIONS(4780), - [anon_sym_while] = ACTIONS(4780), - [anon_sym_expand] = ACTIONS(4780), - [anon_sym_for] = ACTIONS(4780), - [anon_sym_match] = ACTIONS(4780), - [anon_sym_AMP] = ACTIONS(4778), - [anon_sym_TILDE] = ACTIONS(4778), - [anon_sym_try] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4778), - [anon_sym_true] = ACTIONS(4780), - [anon_sym_false] = ACTIONS(4780), - [anon_sym_null] = ACTIONS(4780), - [anon_sym_unreachable] = ACTIONS(4780), - [anon_sym_undefined] = ACTIONS(4780), - [sym_sink] = ACTIONS(4780), - [sym_integer] = ACTIONS(4780), - [sym_float] = ACTIONS(4778), - [anon_sym_DQUOTE] = ACTIONS(4778), - [sym_multiline_string] = ACTIONS(4778), - [sym_character] = ACTIONS(4778), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4778), - }, - [STATE(1946)] = { - [ts_builtin_sym_end] = ACTIONS(4782), - [sym_identifier] = ACTIONS(4784), - [anon_sym_import] = ACTIONS(4784), - [anon_sym_test] = ACTIONS(4784), - [anon_sym_hide] = ACTIONS(4784), - [anon_sym_func] = ACTIONS(4784), - [anon_sym_BANG] = ACTIONS(4782), - [anon_sym_struct] = ACTIONS(4784), - [anon_sym_LPAREN] = ACTIONS(4782), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_LBRACE] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_DASH] = ACTIONS(4782), - [anon_sym_DOLLAR] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4782), - [anon_sym_void] = ACTIONS(4784), - [anon_sym_noreturn] = ACTIONS(4784), - [anon_sym_type] = ACTIONS(4784), - [anon_sym_anyopaque] = ACTIONS(4784), - [anon_sym_bool] = ACTIONS(4784), - [anon_sym_int] = ACTIONS(4784), - [anon_sym_uint] = ACTIONS(4784), - [anon_sym_float] = ACTIONS(4784), - [anon_sym_range] = ACTIONS(4784), - [anon_sym_i8] = ACTIONS(4784), - [anon_sym_i16] = ACTIONS(4784), - [anon_sym_i32] = ACTIONS(4784), - [anon_sym_i64] = ACTIONS(4784), - [anon_sym_u8] = ACTIONS(4784), - [anon_sym_u16] = ACTIONS(4784), - [anon_sym_u32] = ACTIONS(4784), - [anon_sym_u64] = ACTIONS(4784), - [anon_sym_isize] = ACTIONS(4784), - [anon_sym_usize] = ACTIONS(4784), - [anon_sym_f32] = ACTIONS(4784), - [anon_sym_f64] = ACTIONS(4784), - [anon_sym_c_char] = ACTIONS(4784), - [anon_sym_c_schar] = ACTIONS(4784), - [anon_sym_c_uchar] = ACTIONS(4784), - [anon_sym_c_short] = ACTIONS(4784), - [anon_sym_c_ushort] = ACTIONS(4784), - [anon_sym_c_int] = ACTIONS(4784), - [anon_sym_c_uint] = ACTIONS(4784), - [anon_sym_c_long] = ACTIONS(4784), - [anon_sym_c_ulong] = ACTIONS(4784), - [anon_sym_c_longlong] = ACTIONS(4784), - [anon_sym_c_ulonglong] = ACTIONS(4784), - [anon_sym_c_float] = ACTIONS(4784), - [anon_sym_c_double] = ACTIONS(4784), - [anon_sym_c_longdouble] = ACTIONS(4784), - [anon_sym_return] = ACTIONS(4784), - [anon_sym_yield] = ACTIONS(4784), - [anon_sym_break] = ACTIONS(4784), - [anon_sym_continue] = ACTIONS(4784), - [anon_sym_defer] = ACTIONS(4784), - [anon_sym_errdefer] = ACTIONS(4784), - [anon_sym_if] = ACTIONS(4784), - [anon_sym_else] = ACTIONS(4784), - [anon_sym_while] = ACTIONS(4784), - [anon_sym_expand] = ACTIONS(4784), - [anon_sym_for] = ACTIONS(4784), - [anon_sym_match] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_TILDE] = ACTIONS(4782), - [anon_sym_try] = ACTIONS(4784), - [anon_sym_DOT] = ACTIONS(4782), - [anon_sym_true] = ACTIONS(4784), - [anon_sym_false] = ACTIONS(4784), - [anon_sym_null] = ACTIONS(4784), - [anon_sym_unreachable] = ACTIONS(4784), - [anon_sym_undefined] = ACTIONS(4784), - [sym_sink] = ACTIONS(4784), - [sym_integer] = ACTIONS(4784), - [sym_float] = ACTIONS(4782), - [anon_sym_DQUOTE] = ACTIONS(4782), - [sym_multiline_string] = ACTIONS(4782), - [sym_character] = ACTIONS(4782), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4782), - }, - [STATE(1947)] = { - [ts_builtin_sym_end] = ACTIONS(4786), - [sym_identifier] = ACTIONS(4788), - [anon_sym_import] = ACTIONS(4788), - [anon_sym_test] = ACTIONS(4788), - [anon_sym_hide] = ACTIONS(4788), - [anon_sym_func] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4786), - [anon_sym_struct] = ACTIONS(4788), - [anon_sym_LPAREN] = ACTIONS(4786), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_LBRACE] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_void] = ACTIONS(4788), - [anon_sym_noreturn] = ACTIONS(4788), - [anon_sym_type] = ACTIONS(4788), - [anon_sym_anyopaque] = ACTIONS(4788), - [anon_sym_bool] = ACTIONS(4788), - [anon_sym_int] = ACTIONS(4788), - [anon_sym_uint] = ACTIONS(4788), - [anon_sym_float] = ACTIONS(4788), - [anon_sym_range] = ACTIONS(4788), - [anon_sym_i8] = ACTIONS(4788), - [anon_sym_i16] = ACTIONS(4788), - [anon_sym_i32] = ACTIONS(4788), - [anon_sym_i64] = ACTIONS(4788), - [anon_sym_u8] = ACTIONS(4788), - [anon_sym_u16] = ACTIONS(4788), - [anon_sym_u32] = ACTIONS(4788), - [anon_sym_u64] = ACTIONS(4788), - [anon_sym_isize] = ACTIONS(4788), - [anon_sym_usize] = ACTIONS(4788), - [anon_sym_f32] = ACTIONS(4788), - [anon_sym_f64] = ACTIONS(4788), - [anon_sym_c_char] = ACTIONS(4788), - [anon_sym_c_schar] = ACTIONS(4788), - [anon_sym_c_uchar] = ACTIONS(4788), - [anon_sym_c_short] = ACTIONS(4788), - [anon_sym_c_ushort] = ACTIONS(4788), - [anon_sym_c_int] = ACTIONS(4788), - [anon_sym_c_uint] = ACTIONS(4788), - [anon_sym_c_long] = ACTIONS(4788), - [anon_sym_c_ulong] = ACTIONS(4788), - [anon_sym_c_longlong] = ACTIONS(4788), - [anon_sym_c_ulonglong] = ACTIONS(4788), - [anon_sym_c_float] = ACTIONS(4788), - [anon_sym_c_double] = ACTIONS(4788), - [anon_sym_c_longdouble] = ACTIONS(4788), - [anon_sym_return] = ACTIONS(4788), - [anon_sym_yield] = ACTIONS(4788), - [anon_sym_break] = ACTIONS(4788), - [anon_sym_continue] = ACTIONS(4788), - [anon_sym_defer] = ACTIONS(4788), - [anon_sym_errdefer] = ACTIONS(4788), - [anon_sym_if] = ACTIONS(4788), - [anon_sym_else] = ACTIONS(4788), - [anon_sym_while] = ACTIONS(4788), - [anon_sym_expand] = ACTIONS(4788), - [anon_sym_for] = ACTIONS(4788), - [anon_sym_match] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4786), - [anon_sym_TILDE] = ACTIONS(4786), - [anon_sym_try] = ACTIONS(4788), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_true] = ACTIONS(4788), - [anon_sym_false] = ACTIONS(4788), - [anon_sym_null] = ACTIONS(4788), - [anon_sym_unreachable] = ACTIONS(4788), - [anon_sym_undefined] = ACTIONS(4788), - [sym_sink] = ACTIONS(4788), - [sym_integer] = ACTIONS(4788), - [sym_float] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4786), - [sym_multiline_string] = ACTIONS(4786), - [sym_character] = ACTIONS(4786), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4786), - }, - [STATE(1948)] = { - [ts_builtin_sym_end] = ACTIONS(4790), - [sym_identifier] = ACTIONS(4792), - [anon_sym_import] = ACTIONS(4792), - [anon_sym_test] = ACTIONS(4792), - [anon_sym_hide] = ACTIONS(4792), - [anon_sym_func] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4790), - [anon_sym_struct] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4790), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_DASH] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(4790), - [anon_sym_void] = ACTIONS(4792), - [anon_sym_noreturn] = ACTIONS(4792), - [anon_sym_type] = ACTIONS(4792), - [anon_sym_anyopaque] = ACTIONS(4792), - [anon_sym_bool] = ACTIONS(4792), - [anon_sym_int] = ACTIONS(4792), - [anon_sym_uint] = ACTIONS(4792), - [anon_sym_float] = ACTIONS(4792), - [anon_sym_range] = ACTIONS(4792), - [anon_sym_i8] = ACTIONS(4792), - [anon_sym_i16] = ACTIONS(4792), - [anon_sym_i32] = ACTIONS(4792), - [anon_sym_i64] = ACTIONS(4792), - [anon_sym_u8] = ACTIONS(4792), - [anon_sym_u16] = ACTIONS(4792), - [anon_sym_u32] = ACTIONS(4792), - [anon_sym_u64] = ACTIONS(4792), - [anon_sym_isize] = ACTIONS(4792), - [anon_sym_usize] = ACTIONS(4792), - [anon_sym_f32] = ACTIONS(4792), - [anon_sym_f64] = ACTIONS(4792), - [anon_sym_c_char] = ACTIONS(4792), - [anon_sym_c_schar] = ACTIONS(4792), - [anon_sym_c_uchar] = ACTIONS(4792), - [anon_sym_c_short] = ACTIONS(4792), - [anon_sym_c_ushort] = ACTIONS(4792), - [anon_sym_c_int] = ACTIONS(4792), - [anon_sym_c_uint] = ACTIONS(4792), - [anon_sym_c_long] = ACTIONS(4792), - [anon_sym_c_ulong] = ACTIONS(4792), - [anon_sym_c_longlong] = ACTIONS(4792), - [anon_sym_c_ulonglong] = ACTIONS(4792), - [anon_sym_c_float] = ACTIONS(4792), - [anon_sym_c_double] = ACTIONS(4792), - [anon_sym_c_longdouble] = ACTIONS(4792), - [anon_sym_return] = ACTIONS(4792), - [anon_sym_yield] = ACTIONS(4792), - [anon_sym_break] = ACTIONS(4792), - [anon_sym_continue] = ACTIONS(4792), - [anon_sym_defer] = ACTIONS(4792), - [anon_sym_errdefer] = ACTIONS(4792), - [anon_sym_if] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(4792), - [anon_sym_while] = ACTIONS(4792), - [anon_sym_expand] = ACTIONS(4792), - [anon_sym_for] = ACTIONS(4792), - [anon_sym_match] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4790), - [anon_sym_TILDE] = ACTIONS(4790), - [anon_sym_try] = ACTIONS(4792), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_true] = ACTIONS(4792), - [anon_sym_false] = ACTIONS(4792), - [anon_sym_null] = ACTIONS(4792), - [anon_sym_unreachable] = ACTIONS(4792), - [anon_sym_undefined] = ACTIONS(4792), - [sym_sink] = ACTIONS(4792), - [sym_integer] = ACTIONS(4792), - [sym_float] = ACTIONS(4790), - [anon_sym_DQUOTE] = ACTIONS(4790), - [sym_multiline_string] = ACTIONS(4790), - [sym_character] = ACTIONS(4790), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4790), - }, - [STATE(1949)] = { - [ts_builtin_sym_end] = ACTIONS(4794), - [sym_identifier] = ACTIONS(4796), - [anon_sym_import] = ACTIONS(4796), - [anon_sym_test] = ACTIONS(4796), - [anon_sym_hide] = ACTIONS(4796), - [anon_sym_func] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4794), - [anon_sym_struct] = ACTIONS(4796), - [anon_sym_LPAREN] = ACTIONS(4794), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_LBRACE] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_DASH] = ACTIONS(4794), - [anon_sym_DOLLAR] = ACTIONS(4794), - [anon_sym_LBRACK] = ACTIONS(4794), - [anon_sym_void] = ACTIONS(4796), - [anon_sym_noreturn] = ACTIONS(4796), - [anon_sym_type] = ACTIONS(4796), - [anon_sym_anyopaque] = ACTIONS(4796), - [anon_sym_bool] = ACTIONS(4796), - [anon_sym_int] = ACTIONS(4796), - [anon_sym_uint] = ACTIONS(4796), - [anon_sym_float] = ACTIONS(4796), - [anon_sym_range] = ACTIONS(4796), - [anon_sym_i8] = ACTIONS(4796), - [anon_sym_i16] = ACTIONS(4796), - [anon_sym_i32] = ACTIONS(4796), - [anon_sym_i64] = ACTIONS(4796), - [anon_sym_u8] = ACTIONS(4796), - [anon_sym_u16] = ACTIONS(4796), - [anon_sym_u32] = ACTIONS(4796), - [anon_sym_u64] = ACTIONS(4796), - [anon_sym_isize] = ACTIONS(4796), - [anon_sym_usize] = ACTIONS(4796), - [anon_sym_f32] = ACTIONS(4796), - [anon_sym_f64] = ACTIONS(4796), - [anon_sym_c_char] = ACTIONS(4796), - [anon_sym_c_schar] = ACTIONS(4796), - [anon_sym_c_uchar] = ACTIONS(4796), - [anon_sym_c_short] = ACTIONS(4796), - [anon_sym_c_ushort] = ACTIONS(4796), - [anon_sym_c_int] = ACTIONS(4796), - [anon_sym_c_uint] = ACTIONS(4796), - [anon_sym_c_long] = ACTIONS(4796), - [anon_sym_c_ulong] = ACTIONS(4796), - [anon_sym_c_longlong] = ACTIONS(4796), - [anon_sym_c_ulonglong] = ACTIONS(4796), - [anon_sym_c_float] = ACTIONS(4796), - [anon_sym_c_double] = ACTIONS(4796), - [anon_sym_c_longdouble] = ACTIONS(4796), - [anon_sym_return] = ACTIONS(4796), - [anon_sym_yield] = ACTIONS(4796), - [anon_sym_break] = ACTIONS(4796), - [anon_sym_continue] = ACTIONS(4796), - [anon_sym_defer] = ACTIONS(4796), - [anon_sym_errdefer] = ACTIONS(4796), - [anon_sym_if] = ACTIONS(4796), - [anon_sym_else] = ACTIONS(4796), - [anon_sym_while] = ACTIONS(4796), - [anon_sym_expand] = ACTIONS(4796), - [anon_sym_for] = ACTIONS(4796), - [anon_sym_match] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4794), - [anon_sym_TILDE] = ACTIONS(4794), - [anon_sym_try] = ACTIONS(4796), - [anon_sym_DOT] = ACTIONS(4794), - [anon_sym_true] = ACTIONS(4796), - [anon_sym_false] = ACTIONS(4796), - [anon_sym_null] = ACTIONS(4796), - [anon_sym_unreachable] = ACTIONS(4796), - [anon_sym_undefined] = ACTIONS(4796), - [sym_sink] = ACTIONS(4796), - [sym_integer] = ACTIONS(4796), - [sym_float] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(4794), - [sym_multiline_string] = ACTIONS(4794), - [sym_character] = ACTIONS(4794), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4794), - }, - [STATE(1950)] = { - [ts_builtin_sym_end] = ACTIONS(4798), - [sym_identifier] = ACTIONS(4800), - [anon_sym_import] = ACTIONS(4800), - [anon_sym_test] = ACTIONS(4800), - [anon_sym_hide] = ACTIONS(4800), - [anon_sym_func] = ACTIONS(4800), - [anon_sym_BANG] = ACTIONS(4798), - [anon_sym_struct] = ACTIONS(4800), - [anon_sym_LPAREN] = ACTIONS(4798), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_LBRACE] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_DASH] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [anon_sym_LBRACK] = ACTIONS(4798), - [anon_sym_void] = ACTIONS(4800), - [anon_sym_noreturn] = ACTIONS(4800), - [anon_sym_type] = ACTIONS(4800), - [anon_sym_anyopaque] = ACTIONS(4800), - [anon_sym_bool] = ACTIONS(4800), - [anon_sym_int] = ACTIONS(4800), - [anon_sym_uint] = ACTIONS(4800), - [anon_sym_float] = ACTIONS(4800), - [anon_sym_range] = ACTIONS(4800), - [anon_sym_i8] = ACTIONS(4800), - [anon_sym_i16] = ACTIONS(4800), - [anon_sym_i32] = ACTIONS(4800), - [anon_sym_i64] = ACTIONS(4800), - [anon_sym_u8] = ACTIONS(4800), - [anon_sym_u16] = ACTIONS(4800), - [anon_sym_u32] = ACTIONS(4800), - [anon_sym_u64] = ACTIONS(4800), - [anon_sym_isize] = ACTIONS(4800), - [anon_sym_usize] = ACTIONS(4800), - [anon_sym_f32] = ACTIONS(4800), - [anon_sym_f64] = ACTIONS(4800), - [anon_sym_c_char] = ACTIONS(4800), - [anon_sym_c_schar] = ACTIONS(4800), - [anon_sym_c_uchar] = ACTIONS(4800), - [anon_sym_c_short] = ACTIONS(4800), - [anon_sym_c_ushort] = ACTIONS(4800), - [anon_sym_c_int] = ACTIONS(4800), - [anon_sym_c_uint] = ACTIONS(4800), - [anon_sym_c_long] = ACTIONS(4800), - [anon_sym_c_ulong] = ACTIONS(4800), - [anon_sym_c_longlong] = ACTIONS(4800), - [anon_sym_c_ulonglong] = ACTIONS(4800), - [anon_sym_c_float] = ACTIONS(4800), - [anon_sym_c_double] = ACTIONS(4800), - [anon_sym_c_longdouble] = ACTIONS(4800), - [anon_sym_return] = ACTIONS(4800), - [anon_sym_yield] = ACTIONS(4800), - [anon_sym_break] = ACTIONS(4800), - [anon_sym_continue] = ACTIONS(4800), - [anon_sym_defer] = ACTIONS(4800), - [anon_sym_errdefer] = ACTIONS(4800), - [anon_sym_if] = ACTIONS(4800), - [anon_sym_else] = ACTIONS(4800), - [anon_sym_while] = ACTIONS(4800), - [anon_sym_expand] = ACTIONS(4800), - [anon_sym_for] = ACTIONS(4800), - [anon_sym_match] = ACTIONS(4800), - [anon_sym_AMP] = ACTIONS(4798), - [anon_sym_TILDE] = ACTIONS(4798), - [anon_sym_try] = ACTIONS(4800), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_true] = ACTIONS(4800), - [anon_sym_false] = ACTIONS(4800), - [anon_sym_null] = ACTIONS(4800), - [anon_sym_unreachable] = ACTIONS(4800), - [anon_sym_undefined] = ACTIONS(4800), - [sym_sink] = ACTIONS(4800), - [sym_integer] = ACTIONS(4800), - [sym_float] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [sym_multiline_string] = ACTIONS(4798), - [sym_character] = ACTIONS(4798), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4798), - }, - [STATE(1951)] = { - [ts_builtin_sym_end] = ACTIONS(4802), - [sym_identifier] = ACTIONS(4804), - [anon_sym_import] = ACTIONS(4804), - [anon_sym_test] = ACTIONS(4804), - [anon_sym_hide] = ACTIONS(4804), - [anon_sym_func] = ACTIONS(4804), - [anon_sym_BANG] = ACTIONS(4802), - [anon_sym_struct] = ACTIONS(4804), - [anon_sym_LPAREN] = ACTIONS(4802), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(4802), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_void] = ACTIONS(4804), - [anon_sym_noreturn] = ACTIONS(4804), - [anon_sym_type] = ACTIONS(4804), - [anon_sym_anyopaque] = ACTIONS(4804), - [anon_sym_bool] = ACTIONS(4804), - [anon_sym_int] = ACTIONS(4804), - [anon_sym_uint] = ACTIONS(4804), - [anon_sym_float] = ACTIONS(4804), - [anon_sym_range] = ACTIONS(4804), - [anon_sym_i8] = ACTIONS(4804), - [anon_sym_i16] = ACTIONS(4804), - [anon_sym_i32] = ACTIONS(4804), - [anon_sym_i64] = ACTIONS(4804), - [anon_sym_u8] = ACTIONS(4804), - [anon_sym_u16] = ACTIONS(4804), - [anon_sym_u32] = ACTIONS(4804), - [anon_sym_u64] = ACTIONS(4804), - [anon_sym_isize] = ACTIONS(4804), - [anon_sym_usize] = ACTIONS(4804), - [anon_sym_f32] = ACTIONS(4804), - [anon_sym_f64] = ACTIONS(4804), - [anon_sym_c_char] = ACTIONS(4804), - [anon_sym_c_schar] = ACTIONS(4804), - [anon_sym_c_uchar] = ACTIONS(4804), - [anon_sym_c_short] = ACTIONS(4804), - [anon_sym_c_ushort] = ACTIONS(4804), - [anon_sym_c_int] = ACTIONS(4804), - [anon_sym_c_uint] = ACTIONS(4804), - [anon_sym_c_long] = ACTIONS(4804), - [anon_sym_c_ulong] = ACTIONS(4804), - [anon_sym_c_longlong] = ACTIONS(4804), - [anon_sym_c_ulonglong] = ACTIONS(4804), - [anon_sym_c_float] = ACTIONS(4804), - [anon_sym_c_double] = ACTIONS(4804), - [anon_sym_c_longdouble] = ACTIONS(4804), - [anon_sym_return] = ACTIONS(4804), - [anon_sym_yield] = ACTIONS(4804), - [anon_sym_break] = ACTIONS(4804), - [anon_sym_continue] = ACTIONS(4804), - [anon_sym_defer] = ACTIONS(4804), - [anon_sym_errdefer] = ACTIONS(4804), - [anon_sym_if] = ACTIONS(4804), - [anon_sym_else] = ACTIONS(4804), - [anon_sym_while] = ACTIONS(4804), - [anon_sym_expand] = ACTIONS(4804), - [anon_sym_for] = ACTIONS(4804), - [anon_sym_match] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4802), - [anon_sym_TILDE] = ACTIONS(4802), - [anon_sym_try] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(4802), - [anon_sym_true] = ACTIONS(4804), - [anon_sym_false] = ACTIONS(4804), - [anon_sym_null] = ACTIONS(4804), - [anon_sym_unreachable] = ACTIONS(4804), - [anon_sym_undefined] = ACTIONS(4804), - [sym_sink] = ACTIONS(4804), - [sym_integer] = ACTIONS(4804), - [sym_float] = ACTIONS(4802), - [anon_sym_DQUOTE] = ACTIONS(4802), - [sym_multiline_string] = ACTIONS(4802), - [sym_character] = ACTIONS(4802), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4802), - }, - [STATE(1952)] = { - [ts_builtin_sym_end] = ACTIONS(4806), - [sym_identifier] = ACTIONS(4808), - [anon_sym_import] = ACTIONS(4808), - [anon_sym_test] = ACTIONS(4808), - [anon_sym_hide] = ACTIONS(4808), - [anon_sym_func] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4806), - [anon_sym_struct] = ACTIONS(4808), - [anon_sym_LPAREN] = ACTIONS(4806), - [anon_sym_RPAREN] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(4806), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_DASH] = ACTIONS(4806), - [anon_sym_DOLLAR] = ACTIONS(4806), - [anon_sym_LBRACK] = ACTIONS(4806), - [anon_sym_void] = ACTIONS(4808), - [anon_sym_noreturn] = ACTIONS(4808), - [anon_sym_type] = ACTIONS(4808), - [anon_sym_anyopaque] = ACTIONS(4808), - [anon_sym_bool] = ACTIONS(4808), - [anon_sym_int] = ACTIONS(4808), - [anon_sym_uint] = ACTIONS(4808), - [anon_sym_float] = ACTIONS(4808), - [anon_sym_range] = ACTIONS(4808), - [anon_sym_i8] = ACTIONS(4808), - [anon_sym_i16] = ACTIONS(4808), - [anon_sym_i32] = ACTIONS(4808), - [anon_sym_i64] = ACTIONS(4808), - [anon_sym_u8] = ACTIONS(4808), - [anon_sym_u16] = ACTIONS(4808), - [anon_sym_u32] = ACTIONS(4808), - [anon_sym_u64] = ACTIONS(4808), - [anon_sym_isize] = ACTIONS(4808), - [anon_sym_usize] = ACTIONS(4808), - [anon_sym_f32] = ACTIONS(4808), - [anon_sym_f64] = ACTIONS(4808), - [anon_sym_c_char] = ACTIONS(4808), - [anon_sym_c_schar] = ACTIONS(4808), - [anon_sym_c_uchar] = ACTIONS(4808), - [anon_sym_c_short] = ACTIONS(4808), - [anon_sym_c_ushort] = ACTIONS(4808), - [anon_sym_c_int] = ACTIONS(4808), - [anon_sym_c_uint] = ACTIONS(4808), - [anon_sym_c_long] = ACTIONS(4808), - [anon_sym_c_ulong] = ACTIONS(4808), - [anon_sym_c_longlong] = ACTIONS(4808), - [anon_sym_c_ulonglong] = ACTIONS(4808), - [anon_sym_c_float] = ACTIONS(4808), - [anon_sym_c_double] = ACTIONS(4808), - [anon_sym_c_longdouble] = ACTIONS(4808), - [anon_sym_return] = ACTIONS(4808), - [anon_sym_yield] = ACTIONS(4808), - [anon_sym_break] = ACTIONS(4808), - [anon_sym_continue] = ACTIONS(4808), - [anon_sym_defer] = ACTIONS(4808), - [anon_sym_errdefer] = ACTIONS(4808), - [anon_sym_if] = ACTIONS(4808), - [anon_sym_else] = ACTIONS(4808), - [anon_sym_while] = ACTIONS(4808), - [anon_sym_expand] = ACTIONS(4808), - [anon_sym_for] = ACTIONS(4808), - [anon_sym_match] = ACTIONS(4808), - [anon_sym_AMP] = ACTIONS(4806), - [anon_sym_TILDE] = ACTIONS(4806), - [anon_sym_try] = ACTIONS(4808), - [anon_sym_DOT] = ACTIONS(4806), - [anon_sym_true] = ACTIONS(4808), - [anon_sym_false] = ACTIONS(4808), - [anon_sym_null] = ACTIONS(4808), - [anon_sym_unreachable] = ACTIONS(4808), - [anon_sym_undefined] = ACTIONS(4808), - [sym_sink] = ACTIONS(4808), - [sym_integer] = ACTIONS(4808), - [sym_float] = ACTIONS(4806), - [anon_sym_DQUOTE] = ACTIONS(4806), - [sym_multiline_string] = ACTIONS(4806), - [sym_character] = ACTIONS(4806), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4806), - }, - [STATE(1953)] = { - [ts_builtin_sym_end] = ACTIONS(4810), - [sym_identifier] = ACTIONS(4812), - [anon_sym_import] = ACTIONS(4812), - [anon_sym_test] = ACTIONS(4812), - [anon_sym_hide] = ACTIONS(4812), - [anon_sym_func] = ACTIONS(4812), - [anon_sym_BANG] = ACTIONS(4810), - [anon_sym_struct] = ACTIONS(4812), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_LBRACE] = ACTIONS(4810), - [anon_sym_RBRACE] = ACTIONS(4810), - [anon_sym_DASH] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_void] = ACTIONS(4812), - [anon_sym_noreturn] = ACTIONS(4812), - [anon_sym_type] = ACTIONS(4812), - [anon_sym_anyopaque] = ACTIONS(4812), - [anon_sym_bool] = ACTIONS(4812), - [anon_sym_int] = ACTIONS(4812), - [anon_sym_uint] = ACTIONS(4812), - [anon_sym_float] = ACTIONS(4812), - [anon_sym_range] = ACTIONS(4812), - [anon_sym_i8] = ACTIONS(4812), - [anon_sym_i16] = ACTIONS(4812), - [anon_sym_i32] = ACTIONS(4812), - [anon_sym_i64] = ACTIONS(4812), - [anon_sym_u8] = ACTIONS(4812), - [anon_sym_u16] = ACTIONS(4812), - [anon_sym_u32] = ACTIONS(4812), - [anon_sym_u64] = ACTIONS(4812), - [anon_sym_isize] = ACTIONS(4812), - [anon_sym_usize] = ACTIONS(4812), - [anon_sym_f32] = ACTIONS(4812), - [anon_sym_f64] = ACTIONS(4812), - [anon_sym_c_char] = ACTIONS(4812), - [anon_sym_c_schar] = ACTIONS(4812), - [anon_sym_c_uchar] = ACTIONS(4812), - [anon_sym_c_short] = ACTIONS(4812), - [anon_sym_c_ushort] = ACTIONS(4812), - [anon_sym_c_int] = ACTIONS(4812), - [anon_sym_c_uint] = ACTIONS(4812), - [anon_sym_c_long] = ACTIONS(4812), - [anon_sym_c_ulong] = ACTIONS(4812), - [anon_sym_c_longlong] = ACTIONS(4812), - [anon_sym_c_ulonglong] = ACTIONS(4812), - [anon_sym_c_float] = ACTIONS(4812), - [anon_sym_c_double] = ACTIONS(4812), - [anon_sym_c_longdouble] = ACTIONS(4812), - [anon_sym_return] = ACTIONS(4812), - [anon_sym_yield] = ACTIONS(4812), - [anon_sym_break] = ACTIONS(4812), - [anon_sym_continue] = ACTIONS(4812), - [anon_sym_defer] = ACTIONS(4812), - [anon_sym_errdefer] = ACTIONS(4812), - [anon_sym_if] = ACTIONS(4812), - [anon_sym_else] = ACTIONS(4812), - [anon_sym_while] = ACTIONS(4812), - [anon_sym_expand] = ACTIONS(4812), - [anon_sym_for] = ACTIONS(4812), - [anon_sym_match] = ACTIONS(4812), - [anon_sym_AMP] = ACTIONS(4810), - [anon_sym_TILDE] = ACTIONS(4810), - [anon_sym_try] = ACTIONS(4812), - [anon_sym_DOT] = ACTIONS(4810), - [anon_sym_true] = ACTIONS(4812), - [anon_sym_false] = ACTIONS(4812), - [anon_sym_null] = ACTIONS(4812), - [anon_sym_unreachable] = ACTIONS(4812), - [anon_sym_undefined] = ACTIONS(4812), - [sym_sink] = ACTIONS(4812), - [sym_integer] = ACTIONS(4812), - [sym_float] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [sym_multiline_string] = ACTIONS(4810), - [sym_character] = ACTIONS(4810), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4810), - }, - [STATE(1954)] = { - [ts_builtin_sym_end] = ACTIONS(4814), - [sym_identifier] = ACTIONS(4816), - [anon_sym_import] = ACTIONS(4816), - [anon_sym_test] = ACTIONS(4816), - [anon_sym_hide] = ACTIONS(4816), - [anon_sym_func] = ACTIONS(4816), - [anon_sym_BANG] = ACTIONS(4814), - [anon_sym_struct] = ACTIONS(4816), - [anon_sym_LPAREN] = ACTIONS(4814), - [anon_sym_RPAREN] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4814), - [anon_sym_RBRACE] = ACTIONS(4814), - [anon_sym_DASH] = ACTIONS(4814), - [anon_sym_DOLLAR] = ACTIONS(4814), - [anon_sym_LBRACK] = ACTIONS(4814), - [anon_sym_void] = ACTIONS(4816), - [anon_sym_noreturn] = ACTIONS(4816), - [anon_sym_type] = ACTIONS(4816), - [anon_sym_anyopaque] = ACTIONS(4816), - [anon_sym_bool] = ACTIONS(4816), - [anon_sym_int] = ACTIONS(4816), - [anon_sym_uint] = ACTIONS(4816), - [anon_sym_float] = ACTIONS(4816), - [anon_sym_range] = ACTIONS(4816), - [anon_sym_i8] = ACTIONS(4816), - [anon_sym_i16] = ACTIONS(4816), - [anon_sym_i32] = ACTIONS(4816), - [anon_sym_i64] = ACTIONS(4816), - [anon_sym_u8] = ACTIONS(4816), - [anon_sym_u16] = ACTIONS(4816), - [anon_sym_u32] = ACTIONS(4816), - [anon_sym_u64] = ACTIONS(4816), - [anon_sym_isize] = ACTIONS(4816), - [anon_sym_usize] = ACTIONS(4816), - [anon_sym_f32] = ACTIONS(4816), - [anon_sym_f64] = ACTIONS(4816), - [anon_sym_c_char] = ACTIONS(4816), - [anon_sym_c_schar] = ACTIONS(4816), - [anon_sym_c_uchar] = ACTIONS(4816), - [anon_sym_c_short] = ACTIONS(4816), - [anon_sym_c_ushort] = ACTIONS(4816), - [anon_sym_c_int] = ACTIONS(4816), - [anon_sym_c_uint] = ACTIONS(4816), - [anon_sym_c_long] = ACTIONS(4816), - [anon_sym_c_ulong] = ACTIONS(4816), - [anon_sym_c_longlong] = ACTIONS(4816), - [anon_sym_c_ulonglong] = ACTIONS(4816), - [anon_sym_c_float] = ACTIONS(4816), - [anon_sym_c_double] = ACTIONS(4816), - [anon_sym_c_longdouble] = ACTIONS(4816), - [anon_sym_return] = ACTIONS(4816), - [anon_sym_yield] = ACTIONS(4816), - [anon_sym_break] = ACTIONS(4816), - [anon_sym_continue] = ACTIONS(4816), - [anon_sym_defer] = ACTIONS(4816), - [anon_sym_errdefer] = ACTIONS(4816), - [anon_sym_if] = ACTIONS(4816), - [anon_sym_else] = ACTIONS(4816), - [anon_sym_while] = ACTIONS(4816), - [anon_sym_expand] = ACTIONS(4816), - [anon_sym_for] = ACTIONS(4816), - [anon_sym_match] = ACTIONS(4816), - [anon_sym_AMP] = ACTIONS(4814), - [anon_sym_TILDE] = ACTIONS(4814), - [anon_sym_try] = ACTIONS(4816), - [anon_sym_DOT] = ACTIONS(4814), - [anon_sym_true] = ACTIONS(4816), - [anon_sym_false] = ACTIONS(4816), - [anon_sym_null] = ACTIONS(4816), - [anon_sym_unreachable] = ACTIONS(4816), - [anon_sym_undefined] = ACTIONS(4816), - [sym_sink] = ACTIONS(4816), - [sym_integer] = ACTIONS(4816), - [sym_float] = ACTIONS(4814), - [anon_sym_DQUOTE] = ACTIONS(4814), - [sym_multiline_string] = ACTIONS(4814), - [sym_character] = ACTIONS(4814), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4814), - }, - [STATE(1955)] = { - [ts_builtin_sym_end] = ACTIONS(4818), - [sym_identifier] = ACTIONS(4820), - [anon_sym_import] = ACTIONS(4820), - [anon_sym_test] = ACTIONS(4820), - [anon_sym_hide] = ACTIONS(4820), - [anon_sym_func] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4818), - [anon_sym_struct] = ACTIONS(4820), - [anon_sym_LPAREN] = ACTIONS(4818), - [anon_sym_RPAREN] = ACTIONS(4818), - [anon_sym_LBRACE] = ACTIONS(4818), - [anon_sym_RBRACE] = ACTIONS(4818), - [anon_sym_DASH] = ACTIONS(4818), - [anon_sym_DOLLAR] = ACTIONS(4818), - [anon_sym_LBRACK] = ACTIONS(4818), - [anon_sym_void] = ACTIONS(4820), - [anon_sym_noreturn] = ACTIONS(4820), - [anon_sym_type] = ACTIONS(4820), - [anon_sym_anyopaque] = ACTIONS(4820), - [anon_sym_bool] = ACTIONS(4820), - [anon_sym_int] = ACTIONS(4820), - [anon_sym_uint] = ACTIONS(4820), - [anon_sym_float] = ACTIONS(4820), - [anon_sym_range] = ACTIONS(4820), - [anon_sym_i8] = ACTIONS(4820), - [anon_sym_i16] = ACTIONS(4820), - [anon_sym_i32] = ACTIONS(4820), - [anon_sym_i64] = ACTIONS(4820), - [anon_sym_u8] = ACTIONS(4820), - [anon_sym_u16] = ACTIONS(4820), - [anon_sym_u32] = ACTIONS(4820), - [anon_sym_u64] = ACTIONS(4820), - [anon_sym_isize] = ACTIONS(4820), - [anon_sym_usize] = ACTIONS(4820), - [anon_sym_f32] = ACTIONS(4820), - [anon_sym_f64] = ACTIONS(4820), - [anon_sym_c_char] = ACTIONS(4820), - [anon_sym_c_schar] = ACTIONS(4820), - [anon_sym_c_uchar] = ACTIONS(4820), - [anon_sym_c_short] = ACTIONS(4820), - [anon_sym_c_ushort] = ACTIONS(4820), - [anon_sym_c_int] = ACTIONS(4820), - [anon_sym_c_uint] = ACTIONS(4820), - [anon_sym_c_long] = ACTIONS(4820), - [anon_sym_c_ulong] = ACTIONS(4820), - [anon_sym_c_longlong] = ACTIONS(4820), - [anon_sym_c_ulonglong] = ACTIONS(4820), - [anon_sym_c_float] = ACTIONS(4820), - [anon_sym_c_double] = ACTIONS(4820), - [anon_sym_c_longdouble] = ACTIONS(4820), - [anon_sym_return] = ACTIONS(4820), - [anon_sym_yield] = ACTIONS(4820), - [anon_sym_break] = ACTIONS(4820), - [anon_sym_continue] = ACTIONS(4820), - [anon_sym_defer] = ACTIONS(4820), - [anon_sym_errdefer] = ACTIONS(4820), - [anon_sym_if] = ACTIONS(4820), - [anon_sym_else] = ACTIONS(4820), - [anon_sym_while] = ACTIONS(4820), - [anon_sym_expand] = ACTIONS(4820), - [anon_sym_for] = ACTIONS(4820), - [anon_sym_match] = ACTIONS(4820), - [anon_sym_AMP] = ACTIONS(4818), - [anon_sym_TILDE] = ACTIONS(4818), - [anon_sym_try] = ACTIONS(4820), - [anon_sym_DOT] = ACTIONS(4818), - [anon_sym_true] = ACTIONS(4820), - [anon_sym_false] = ACTIONS(4820), - [anon_sym_null] = ACTIONS(4820), - [anon_sym_unreachable] = ACTIONS(4820), - [anon_sym_undefined] = ACTIONS(4820), - [sym_sink] = ACTIONS(4820), - [sym_integer] = ACTIONS(4820), - [sym_float] = ACTIONS(4818), - [anon_sym_DQUOTE] = ACTIONS(4818), - [sym_multiline_string] = ACTIONS(4818), - [sym_character] = ACTIONS(4818), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4818), - }, - [STATE(1956)] = { - [ts_builtin_sym_end] = ACTIONS(4822), - [sym_identifier] = ACTIONS(4824), - [anon_sym_import] = ACTIONS(4824), - [anon_sym_test] = ACTIONS(4824), - [anon_sym_hide] = ACTIONS(4824), - [anon_sym_func] = ACTIONS(4824), - [anon_sym_BANG] = ACTIONS(4822), - [anon_sym_struct] = ACTIONS(4824), - [anon_sym_LPAREN] = ACTIONS(4822), - [anon_sym_RPAREN] = ACTIONS(4822), - [anon_sym_LBRACE] = ACTIONS(4822), - [anon_sym_RBRACE] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4822), - [anon_sym_DOLLAR] = ACTIONS(4822), - [anon_sym_LBRACK] = ACTIONS(4822), - [anon_sym_void] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym_type] = ACTIONS(4824), - [anon_sym_anyopaque] = ACTIONS(4824), - [anon_sym_bool] = ACTIONS(4824), - [anon_sym_int] = ACTIONS(4824), - [anon_sym_uint] = ACTIONS(4824), - [anon_sym_float] = ACTIONS(4824), - [anon_sym_range] = ACTIONS(4824), - [anon_sym_i8] = ACTIONS(4824), - [anon_sym_i16] = ACTIONS(4824), - [anon_sym_i32] = ACTIONS(4824), - [anon_sym_i64] = ACTIONS(4824), - [anon_sym_u8] = ACTIONS(4824), - [anon_sym_u16] = ACTIONS(4824), - [anon_sym_u32] = ACTIONS(4824), - [anon_sym_u64] = ACTIONS(4824), - [anon_sym_isize] = ACTIONS(4824), - [anon_sym_usize] = ACTIONS(4824), - [anon_sym_f32] = ACTIONS(4824), - [anon_sym_f64] = ACTIONS(4824), - [anon_sym_c_char] = ACTIONS(4824), - [anon_sym_c_schar] = ACTIONS(4824), - [anon_sym_c_uchar] = ACTIONS(4824), - [anon_sym_c_short] = ACTIONS(4824), - [anon_sym_c_ushort] = ACTIONS(4824), - [anon_sym_c_int] = ACTIONS(4824), - [anon_sym_c_uint] = ACTIONS(4824), - [anon_sym_c_long] = ACTIONS(4824), - [anon_sym_c_ulong] = ACTIONS(4824), - [anon_sym_c_longlong] = ACTIONS(4824), - [anon_sym_c_ulonglong] = ACTIONS(4824), - [anon_sym_c_float] = ACTIONS(4824), - [anon_sym_c_double] = ACTIONS(4824), - [anon_sym_c_longdouble] = ACTIONS(4824), - [anon_sym_return] = ACTIONS(4824), - [anon_sym_yield] = ACTIONS(4824), - [anon_sym_break] = ACTIONS(4824), - [anon_sym_continue] = ACTIONS(4824), - [anon_sym_defer] = ACTIONS(4824), - [anon_sym_errdefer] = ACTIONS(4824), - [anon_sym_if] = ACTIONS(4824), - [anon_sym_else] = ACTIONS(4824), - [anon_sym_while] = ACTIONS(4824), - [anon_sym_expand] = ACTIONS(4824), - [anon_sym_for] = ACTIONS(4824), - [anon_sym_match] = ACTIONS(4824), - [anon_sym_AMP] = ACTIONS(4822), - [anon_sym_TILDE] = ACTIONS(4822), - [anon_sym_try] = ACTIONS(4824), - [anon_sym_DOT] = ACTIONS(4822), - [anon_sym_true] = ACTIONS(4824), - [anon_sym_false] = ACTIONS(4824), - [anon_sym_null] = ACTIONS(4824), - [anon_sym_unreachable] = ACTIONS(4824), - [anon_sym_undefined] = ACTIONS(4824), - [sym_sink] = ACTIONS(4824), - [sym_integer] = ACTIONS(4824), - [sym_float] = ACTIONS(4822), - [anon_sym_DQUOTE] = ACTIONS(4822), - [sym_multiline_string] = ACTIONS(4822), - [sym_character] = ACTIONS(4822), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4822), - }, - [STATE(1957)] = { - [ts_builtin_sym_end] = ACTIONS(4826), - [sym_identifier] = ACTIONS(4828), - [anon_sym_import] = ACTIONS(4828), - [anon_sym_test] = ACTIONS(4828), - [anon_sym_hide] = ACTIONS(4828), - [anon_sym_func] = ACTIONS(4828), - [anon_sym_BANG] = ACTIONS(4826), - [anon_sym_struct] = ACTIONS(4828), - [anon_sym_LPAREN] = ACTIONS(4826), - [anon_sym_RPAREN] = ACTIONS(4826), - [anon_sym_LBRACE] = ACTIONS(4826), - [anon_sym_RBRACE] = ACTIONS(4826), - [anon_sym_DASH] = ACTIONS(4826), - [anon_sym_DOLLAR] = ACTIONS(4826), - [anon_sym_LBRACK] = ACTIONS(4826), - [anon_sym_void] = ACTIONS(4828), - [anon_sym_noreturn] = ACTIONS(4828), - [anon_sym_type] = ACTIONS(4828), - [anon_sym_anyopaque] = ACTIONS(4828), - [anon_sym_bool] = ACTIONS(4828), - [anon_sym_int] = ACTIONS(4828), - [anon_sym_uint] = ACTIONS(4828), - [anon_sym_float] = ACTIONS(4828), - [anon_sym_range] = ACTIONS(4828), - [anon_sym_i8] = ACTIONS(4828), - [anon_sym_i16] = ACTIONS(4828), - [anon_sym_i32] = ACTIONS(4828), - [anon_sym_i64] = ACTIONS(4828), - [anon_sym_u8] = ACTIONS(4828), - [anon_sym_u16] = ACTIONS(4828), - [anon_sym_u32] = ACTIONS(4828), - [anon_sym_u64] = ACTIONS(4828), - [anon_sym_isize] = ACTIONS(4828), - [anon_sym_usize] = ACTIONS(4828), - [anon_sym_f32] = ACTIONS(4828), - [anon_sym_f64] = ACTIONS(4828), - [anon_sym_c_char] = ACTIONS(4828), - [anon_sym_c_schar] = ACTIONS(4828), - [anon_sym_c_uchar] = ACTIONS(4828), - [anon_sym_c_short] = ACTIONS(4828), - [anon_sym_c_ushort] = ACTIONS(4828), - [anon_sym_c_int] = ACTIONS(4828), - [anon_sym_c_uint] = ACTIONS(4828), - [anon_sym_c_long] = ACTIONS(4828), - [anon_sym_c_ulong] = ACTIONS(4828), - [anon_sym_c_longlong] = ACTIONS(4828), - [anon_sym_c_ulonglong] = ACTIONS(4828), - [anon_sym_c_float] = ACTIONS(4828), - [anon_sym_c_double] = ACTIONS(4828), - [anon_sym_c_longdouble] = ACTIONS(4828), - [anon_sym_return] = ACTIONS(4828), - [anon_sym_yield] = ACTIONS(4828), - [anon_sym_break] = ACTIONS(4828), - [anon_sym_continue] = ACTIONS(4828), - [anon_sym_defer] = ACTIONS(4828), - [anon_sym_errdefer] = ACTIONS(4828), - [anon_sym_if] = ACTIONS(4828), - [anon_sym_else] = ACTIONS(4828), - [anon_sym_while] = ACTIONS(4828), - [anon_sym_expand] = ACTIONS(4828), - [anon_sym_for] = ACTIONS(4828), - [anon_sym_match] = ACTIONS(4828), - [anon_sym_AMP] = ACTIONS(4826), - [anon_sym_TILDE] = ACTIONS(4826), - [anon_sym_try] = ACTIONS(4828), - [anon_sym_DOT] = ACTIONS(4826), - [anon_sym_true] = ACTIONS(4828), - [anon_sym_false] = ACTIONS(4828), - [anon_sym_null] = ACTIONS(4828), - [anon_sym_unreachable] = ACTIONS(4828), - [anon_sym_undefined] = ACTIONS(4828), - [sym_sink] = ACTIONS(4828), - [sym_integer] = ACTIONS(4828), - [sym_float] = ACTIONS(4826), - [anon_sym_DQUOTE] = ACTIONS(4826), - [sym_multiline_string] = ACTIONS(4826), - [sym_character] = ACTIONS(4826), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4826), - }, - [STATE(1958)] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_test] = ACTIONS(1837), - [anon_sym_hide] = ACTIONS(1837), - [anon_sym_func] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_RPAREN] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_noreturn] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_anyopaque] = ACTIONS(1837), - [anon_sym_bool] = ACTIONS(1837), - [anon_sym_int] = ACTIONS(1837), - [anon_sym_uint] = ACTIONS(1837), - [anon_sym_float] = ACTIONS(1837), - [anon_sym_range] = ACTIONS(1837), - [anon_sym_i8] = ACTIONS(1837), - [anon_sym_i16] = ACTIONS(1837), - [anon_sym_i32] = ACTIONS(1837), - [anon_sym_i64] = ACTIONS(1837), - [anon_sym_u8] = ACTIONS(1837), - [anon_sym_u16] = ACTIONS(1837), - [anon_sym_u32] = ACTIONS(1837), - [anon_sym_u64] = ACTIONS(1837), - [anon_sym_isize] = ACTIONS(1837), - [anon_sym_usize] = ACTIONS(1837), - [anon_sym_f32] = ACTIONS(1837), - [anon_sym_f64] = ACTIONS(1837), - [anon_sym_c_char] = ACTIONS(1837), - [anon_sym_c_schar] = ACTIONS(1837), - [anon_sym_c_uchar] = ACTIONS(1837), - [anon_sym_c_short] = ACTIONS(1837), - [anon_sym_c_ushort] = ACTIONS(1837), - [anon_sym_c_int] = ACTIONS(1837), - [anon_sym_c_uint] = ACTIONS(1837), - [anon_sym_c_long] = ACTIONS(1837), - [anon_sym_c_ulong] = ACTIONS(1837), - [anon_sym_c_longlong] = ACTIONS(1837), - [anon_sym_c_ulonglong] = ACTIONS(1837), - [anon_sym_c_float] = ACTIONS(1837), - [anon_sym_c_double] = ACTIONS(1837), - [anon_sym_c_longdouble] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_defer] = ACTIONS(1837), - [anon_sym_errdefer] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_expand] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_unreachable] = ACTIONS(1837), - [anon_sym_undefined] = ACTIONS(1837), - [sym_sink] = ACTIONS(1837), - [sym_integer] = ACTIONS(1837), - [sym_float] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym_multiline_string] = ACTIONS(1835), - [sym_character] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1835), - }, - [STATE(1959)] = { - [ts_builtin_sym_end] = ACTIONS(4830), - [sym_identifier] = ACTIONS(4832), - [anon_sym_import] = ACTIONS(4832), - [anon_sym_test] = ACTIONS(4832), - [anon_sym_hide] = ACTIONS(4832), - [anon_sym_func] = ACTIONS(4832), - [anon_sym_BANG] = ACTIONS(4830), - [anon_sym_struct] = ACTIONS(4832), - [anon_sym_LPAREN] = ACTIONS(4830), - [anon_sym_RPAREN] = ACTIONS(4830), - [anon_sym_LBRACE] = ACTIONS(4830), - [anon_sym_RBRACE] = ACTIONS(4830), - [anon_sym_DASH] = ACTIONS(4830), - [anon_sym_DOLLAR] = ACTIONS(4830), - [anon_sym_LBRACK] = ACTIONS(4830), - [anon_sym_void] = ACTIONS(4832), - [anon_sym_noreturn] = ACTIONS(4832), - [anon_sym_type] = ACTIONS(4832), - [anon_sym_anyopaque] = ACTIONS(4832), - [anon_sym_bool] = ACTIONS(4832), - [anon_sym_int] = ACTIONS(4832), - [anon_sym_uint] = ACTIONS(4832), - [anon_sym_float] = ACTIONS(4832), - [anon_sym_range] = ACTIONS(4832), - [anon_sym_i8] = ACTIONS(4832), - [anon_sym_i16] = ACTIONS(4832), - [anon_sym_i32] = ACTIONS(4832), - [anon_sym_i64] = ACTIONS(4832), - [anon_sym_u8] = ACTIONS(4832), - [anon_sym_u16] = ACTIONS(4832), - [anon_sym_u32] = ACTIONS(4832), - [anon_sym_u64] = ACTIONS(4832), - [anon_sym_isize] = ACTIONS(4832), - [anon_sym_usize] = ACTIONS(4832), - [anon_sym_f32] = ACTIONS(4832), - [anon_sym_f64] = ACTIONS(4832), - [anon_sym_c_char] = ACTIONS(4832), - [anon_sym_c_schar] = ACTIONS(4832), - [anon_sym_c_uchar] = ACTIONS(4832), - [anon_sym_c_short] = ACTIONS(4832), - [anon_sym_c_ushort] = ACTIONS(4832), - [anon_sym_c_int] = ACTIONS(4832), - [anon_sym_c_uint] = ACTIONS(4832), - [anon_sym_c_long] = ACTIONS(4832), - [anon_sym_c_ulong] = ACTIONS(4832), - [anon_sym_c_longlong] = ACTIONS(4832), - [anon_sym_c_ulonglong] = ACTIONS(4832), - [anon_sym_c_float] = ACTIONS(4832), - [anon_sym_c_double] = ACTIONS(4832), - [anon_sym_c_longdouble] = ACTIONS(4832), - [anon_sym_return] = ACTIONS(4832), - [anon_sym_yield] = ACTIONS(4832), - [anon_sym_break] = ACTIONS(4832), - [anon_sym_continue] = ACTIONS(4832), - [anon_sym_defer] = ACTIONS(4832), - [anon_sym_errdefer] = ACTIONS(4832), - [anon_sym_if] = ACTIONS(4832), - [anon_sym_else] = ACTIONS(4832), - [anon_sym_while] = ACTIONS(4832), - [anon_sym_expand] = ACTIONS(4832), - [anon_sym_for] = ACTIONS(4832), - [anon_sym_match] = ACTIONS(4832), - [anon_sym_AMP] = ACTIONS(4830), - [anon_sym_TILDE] = ACTIONS(4830), - [anon_sym_try] = ACTIONS(4832), - [anon_sym_DOT] = ACTIONS(4830), - [anon_sym_true] = ACTIONS(4832), - [anon_sym_false] = ACTIONS(4832), - [anon_sym_null] = ACTIONS(4832), - [anon_sym_unreachable] = ACTIONS(4832), - [anon_sym_undefined] = ACTIONS(4832), - [sym_sink] = ACTIONS(4832), - [sym_integer] = ACTIONS(4832), - [sym_float] = ACTIONS(4830), - [anon_sym_DQUOTE] = ACTIONS(4830), - [sym_multiline_string] = ACTIONS(4830), - [sym_character] = ACTIONS(4830), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4830), - }, - [STATE(1960)] = { - [ts_builtin_sym_end] = ACTIONS(4834), - [sym_identifier] = ACTIONS(4836), - [anon_sym_import] = ACTIONS(4836), - [anon_sym_test] = ACTIONS(4836), - [anon_sym_hide] = ACTIONS(4836), - [anon_sym_func] = ACTIONS(4836), - [anon_sym_BANG] = ACTIONS(4834), - [anon_sym_struct] = ACTIONS(4836), - [anon_sym_LPAREN] = ACTIONS(4834), - [anon_sym_RPAREN] = ACTIONS(4834), - [anon_sym_LBRACE] = ACTIONS(4834), - [anon_sym_RBRACE] = ACTIONS(4834), - [anon_sym_DASH] = ACTIONS(4834), - [anon_sym_DOLLAR] = ACTIONS(4834), - [anon_sym_LBRACK] = ACTIONS(4834), - [anon_sym_void] = ACTIONS(4836), - [anon_sym_noreturn] = ACTIONS(4836), - [anon_sym_type] = ACTIONS(4836), - [anon_sym_anyopaque] = ACTIONS(4836), - [anon_sym_bool] = ACTIONS(4836), - [anon_sym_int] = ACTIONS(4836), - [anon_sym_uint] = ACTIONS(4836), - [anon_sym_float] = ACTIONS(4836), - [anon_sym_range] = ACTIONS(4836), - [anon_sym_i8] = ACTIONS(4836), - [anon_sym_i16] = ACTIONS(4836), - [anon_sym_i32] = ACTIONS(4836), - [anon_sym_i64] = ACTIONS(4836), - [anon_sym_u8] = ACTIONS(4836), - [anon_sym_u16] = ACTIONS(4836), - [anon_sym_u32] = ACTIONS(4836), - [anon_sym_u64] = ACTIONS(4836), - [anon_sym_isize] = ACTIONS(4836), - [anon_sym_usize] = ACTIONS(4836), - [anon_sym_f32] = ACTIONS(4836), - [anon_sym_f64] = ACTIONS(4836), - [anon_sym_c_char] = ACTIONS(4836), - [anon_sym_c_schar] = ACTIONS(4836), - [anon_sym_c_uchar] = ACTIONS(4836), - [anon_sym_c_short] = ACTIONS(4836), - [anon_sym_c_ushort] = ACTIONS(4836), - [anon_sym_c_int] = ACTIONS(4836), - [anon_sym_c_uint] = ACTIONS(4836), - [anon_sym_c_long] = ACTIONS(4836), - [anon_sym_c_ulong] = ACTIONS(4836), - [anon_sym_c_longlong] = ACTIONS(4836), - [anon_sym_c_ulonglong] = ACTIONS(4836), - [anon_sym_c_float] = ACTIONS(4836), - [anon_sym_c_double] = ACTIONS(4836), - [anon_sym_c_longdouble] = ACTIONS(4836), - [anon_sym_return] = ACTIONS(4836), - [anon_sym_yield] = ACTIONS(4836), - [anon_sym_break] = ACTIONS(4836), - [anon_sym_continue] = ACTIONS(4836), - [anon_sym_defer] = ACTIONS(4836), - [anon_sym_errdefer] = ACTIONS(4836), - [anon_sym_if] = ACTIONS(4836), - [anon_sym_else] = ACTIONS(4836), - [anon_sym_while] = ACTIONS(4836), - [anon_sym_expand] = ACTIONS(4836), - [anon_sym_for] = ACTIONS(4836), - [anon_sym_match] = ACTIONS(4836), - [anon_sym_AMP] = ACTIONS(4834), - [anon_sym_TILDE] = ACTIONS(4834), - [anon_sym_try] = ACTIONS(4836), - [anon_sym_DOT] = ACTIONS(4834), - [anon_sym_true] = ACTIONS(4836), - [anon_sym_false] = ACTIONS(4836), - [anon_sym_null] = ACTIONS(4836), - [anon_sym_unreachable] = ACTIONS(4836), - [anon_sym_undefined] = ACTIONS(4836), - [sym_sink] = ACTIONS(4836), - [sym_integer] = ACTIONS(4836), - [sym_float] = ACTIONS(4834), - [anon_sym_DQUOTE] = ACTIONS(4834), - [sym_multiline_string] = ACTIONS(4834), - [sym_character] = ACTIONS(4834), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4834), - }, - [STATE(1961)] = { - [ts_builtin_sym_end] = ACTIONS(4838), - [sym_identifier] = ACTIONS(4840), - [anon_sym_import] = ACTIONS(4840), - [anon_sym_test] = ACTIONS(4840), - [anon_sym_hide] = ACTIONS(4840), - [anon_sym_func] = ACTIONS(4840), - [anon_sym_BANG] = ACTIONS(4838), - [anon_sym_struct] = ACTIONS(4840), - [anon_sym_LPAREN] = ACTIONS(4838), - [anon_sym_RPAREN] = ACTIONS(4838), - [anon_sym_LBRACE] = ACTIONS(4838), - [anon_sym_RBRACE] = ACTIONS(4838), - [anon_sym_DASH] = ACTIONS(4838), - [anon_sym_DOLLAR] = ACTIONS(4838), - [anon_sym_LBRACK] = ACTIONS(4838), - [anon_sym_void] = ACTIONS(4840), - [anon_sym_noreturn] = ACTIONS(4840), - [anon_sym_type] = ACTIONS(4840), - [anon_sym_anyopaque] = ACTIONS(4840), - [anon_sym_bool] = ACTIONS(4840), - [anon_sym_int] = ACTIONS(4840), - [anon_sym_uint] = ACTIONS(4840), - [anon_sym_float] = ACTIONS(4840), - [anon_sym_range] = ACTIONS(4840), - [anon_sym_i8] = ACTIONS(4840), - [anon_sym_i16] = ACTIONS(4840), - [anon_sym_i32] = ACTIONS(4840), - [anon_sym_i64] = ACTIONS(4840), - [anon_sym_u8] = ACTIONS(4840), - [anon_sym_u16] = ACTIONS(4840), - [anon_sym_u32] = ACTIONS(4840), - [anon_sym_u64] = ACTIONS(4840), - [anon_sym_isize] = ACTIONS(4840), - [anon_sym_usize] = ACTIONS(4840), - [anon_sym_f32] = ACTIONS(4840), - [anon_sym_f64] = ACTIONS(4840), - [anon_sym_c_char] = ACTIONS(4840), - [anon_sym_c_schar] = ACTIONS(4840), - [anon_sym_c_uchar] = ACTIONS(4840), - [anon_sym_c_short] = ACTIONS(4840), - [anon_sym_c_ushort] = ACTIONS(4840), - [anon_sym_c_int] = ACTIONS(4840), - [anon_sym_c_uint] = ACTIONS(4840), - [anon_sym_c_long] = ACTIONS(4840), - [anon_sym_c_ulong] = ACTIONS(4840), - [anon_sym_c_longlong] = ACTIONS(4840), - [anon_sym_c_ulonglong] = ACTIONS(4840), - [anon_sym_c_float] = ACTIONS(4840), - [anon_sym_c_double] = ACTIONS(4840), - [anon_sym_c_longdouble] = ACTIONS(4840), - [anon_sym_return] = ACTIONS(4840), - [anon_sym_yield] = ACTIONS(4840), - [anon_sym_break] = ACTIONS(4840), - [anon_sym_continue] = ACTIONS(4840), - [anon_sym_defer] = ACTIONS(4840), - [anon_sym_errdefer] = ACTIONS(4840), - [anon_sym_if] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_while] = ACTIONS(4840), - [anon_sym_expand] = ACTIONS(4840), - [anon_sym_for] = ACTIONS(4840), - [anon_sym_match] = ACTIONS(4840), - [anon_sym_AMP] = ACTIONS(4838), - [anon_sym_TILDE] = ACTIONS(4838), - [anon_sym_try] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4838), - [anon_sym_true] = ACTIONS(4840), - [anon_sym_false] = ACTIONS(4840), - [anon_sym_null] = ACTIONS(4840), - [anon_sym_unreachable] = ACTIONS(4840), - [anon_sym_undefined] = ACTIONS(4840), - [sym_sink] = ACTIONS(4840), - [sym_integer] = ACTIONS(4840), - [sym_float] = ACTIONS(4838), - [anon_sym_DQUOTE] = ACTIONS(4838), - [sym_multiline_string] = ACTIONS(4838), - [sym_character] = ACTIONS(4838), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4838), - }, - [STATE(1962)] = { - [ts_builtin_sym_end] = ACTIONS(4842), - [sym_identifier] = ACTIONS(4844), - [anon_sym_import] = ACTIONS(4844), - [anon_sym_test] = ACTIONS(4844), - [anon_sym_hide] = ACTIONS(4844), - [anon_sym_func] = ACTIONS(4844), - [anon_sym_BANG] = ACTIONS(4842), - [anon_sym_struct] = ACTIONS(4844), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4842), - [anon_sym_DOLLAR] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_void] = ACTIONS(4844), - [anon_sym_noreturn] = ACTIONS(4844), - [anon_sym_type] = ACTIONS(4844), - [anon_sym_anyopaque] = ACTIONS(4844), - [anon_sym_bool] = ACTIONS(4844), - [anon_sym_int] = ACTIONS(4844), - [anon_sym_uint] = ACTIONS(4844), - [anon_sym_float] = ACTIONS(4844), - [anon_sym_range] = ACTIONS(4844), - [anon_sym_i8] = ACTIONS(4844), - [anon_sym_i16] = ACTIONS(4844), - [anon_sym_i32] = ACTIONS(4844), - [anon_sym_i64] = ACTIONS(4844), - [anon_sym_u8] = ACTIONS(4844), - [anon_sym_u16] = ACTIONS(4844), - [anon_sym_u32] = ACTIONS(4844), - [anon_sym_u64] = ACTIONS(4844), - [anon_sym_isize] = ACTIONS(4844), - [anon_sym_usize] = ACTIONS(4844), - [anon_sym_f32] = ACTIONS(4844), - [anon_sym_f64] = ACTIONS(4844), - [anon_sym_c_char] = ACTIONS(4844), - [anon_sym_c_schar] = ACTIONS(4844), - [anon_sym_c_uchar] = ACTIONS(4844), - [anon_sym_c_short] = ACTIONS(4844), - [anon_sym_c_ushort] = ACTIONS(4844), - [anon_sym_c_int] = ACTIONS(4844), - [anon_sym_c_uint] = ACTIONS(4844), - [anon_sym_c_long] = ACTIONS(4844), - [anon_sym_c_ulong] = ACTIONS(4844), - [anon_sym_c_longlong] = ACTIONS(4844), - [anon_sym_c_ulonglong] = ACTIONS(4844), - [anon_sym_c_float] = ACTIONS(4844), - [anon_sym_c_double] = ACTIONS(4844), - [anon_sym_c_longdouble] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_yield] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_defer] = ACTIONS(4844), - [anon_sym_errdefer] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_expand] = ACTIONS(4844), - [anon_sym_for] = ACTIONS(4844), - [anon_sym_match] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4842), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_DOT] = ACTIONS(4842), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_unreachable] = ACTIONS(4844), - [anon_sym_undefined] = ACTIONS(4844), - [sym_sink] = ACTIONS(4844), - [sym_integer] = ACTIONS(4844), - [sym_float] = ACTIONS(4842), - [anon_sym_DQUOTE] = ACTIONS(4842), - [sym_multiline_string] = ACTIONS(4842), - [sym_character] = ACTIONS(4842), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4842), - }, - [STATE(1963)] = { - [ts_builtin_sym_end] = ACTIONS(4846), - [sym_identifier] = ACTIONS(4848), - [anon_sym_import] = ACTIONS(4848), - [anon_sym_test] = ACTIONS(4848), - [anon_sym_hide] = ACTIONS(4848), - [anon_sym_func] = ACTIONS(4848), - [anon_sym_BANG] = ACTIONS(4846), - [anon_sym_struct] = ACTIONS(4848), - [anon_sym_LPAREN] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4846), - [anon_sym_DOLLAR] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_void] = ACTIONS(4848), - [anon_sym_noreturn] = ACTIONS(4848), - [anon_sym_type] = ACTIONS(4848), - [anon_sym_anyopaque] = ACTIONS(4848), - [anon_sym_bool] = ACTIONS(4848), - [anon_sym_int] = ACTIONS(4848), - [anon_sym_uint] = ACTIONS(4848), - [anon_sym_float] = ACTIONS(4848), - [anon_sym_range] = ACTIONS(4848), - [anon_sym_i8] = ACTIONS(4848), - [anon_sym_i16] = ACTIONS(4848), - [anon_sym_i32] = ACTIONS(4848), - [anon_sym_i64] = ACTIONS(4848), - [anon_sym_u8] = ACTIONS(4848), - [anon_sym_u16] = ACTIONS(4848), - [anon_sym_u32] = ACTIONS(4848), - [anon_sym_u64] = ACTIONS(4848), - [anon_sym_isize] = ACTIONS(4848), - [anon_sym_usize] = ACTIONS(4848), - [anon_sym_f32] = ACTIONS(4848), - [anon_sym_f64] = ACTIONS(4848), - [anon_sym_c_char] = ACTIONS(4848), - [anon_sym_c_schar] = ACTIONS(4848), - [anon_sym_c_uchar] = ACTIONS(4848), - [anon_sym_c_short] = ACTIONS(4848), - [anon_sym_c_ushort] = ACTIONS(4848), - [anon_sym_c_int] = ACTIONS(4848), - [anon_sym_c_uint] = ACTIONS(4848), - [anon_sym_c_long] = ACTIONS(4848), - [anon_sym_c_ulong] = ACTIONS(4848), - [anon_sym_c_longlong] = ACTIONS(4848), - [anon_sym_c_ulonglong] = ACTIONS(4848), - [anon_sym_c_float] = ACTIONS(4848), - [anon_sym_c_double] = ACTIONS(4848), - [anon_sym_c_longdouble] = ACTIONS(4848), - [anon_sym_return] = ACTIONS(4848), - [anon_sym_yield] = ACTIONS(4848), - [anon_sym_break] = ACTIONS(4848), - [anon_sym_continue] = ACTIONS(4848), - [anon_sym_defer] = ACTIONS(4848), - [anon_sym_errdefer] = ACTIONS(4848), - [anon_sym_if] = ACTIONS(4848), - [anon_sym_else] = ACTIONS(4848), - [anon_sym_while] = ACTIONS(4848), - [anon_sym_expand] = ACTIONS(4848), - [anon_sym_for] = ACTIONS(4848), - [anon_sym_match] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_try] = ACTIONS(4848), - [anon_sym_DOT] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4848), - [anon_sym_false] = ACTIONS(4848), - [anon_sym_null] = ACTIONS(4848), - [anon_sym_unreachable] = ACTIONS(4848), - [anon_sym_undefined] = ACTIONS(4848), - [sym_sink] = ACTIONS(4848), - [sym_integer] = ACTIONS(4848), - [sym_float] = ACTIONS(4846), - [anon_sym_DQUOTE] = ACTIONS(4846), - [sym_multiline_string] = ACTIONS(4846), - [sym_character] = ACTIONS(4846), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4846), - }, - [STATE(1964)] = { - [ts_builtin_sym_end] = ACTIONS(4850), - [sym_identifier] = ACTIONS(4852), - [anon_sym_import] = ACTIONS(4852), - [anon_sym_test] = ACTIONS(4852), - [anon_sym_hide] = ACTIONS(4852), - [anon_sym_func] = ACTIONS(4852), - [anon_sym_BANG] = ACTIONS(4850), - [anon_sym_struct] = ACTIONS(4852), - [anon_sym_LPAREN] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_RBRACE] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4850), - [anon_sym_DOLLAR] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4850), - [anon_sym_void] = ACTIONS(4852), - [anon_sym_noreturn] = ACTIONS(4852), - [anon_sym_type] = ACTIONS(4852), - [anon_sym_anyopaque] = ACTIONS(4852), - [anon_sym_bool] = ACTIONS(4852), - [anon_sym_int] = ACTIONS(4852), - [anon_sym_uint] = ACTIONS(4852), - [anon_sym_float] = ACTIONS(4852), - [anon_sym_range] = ACTIONS(4852), - [anon_sym_i8] = ACTIONS(4852), - [anon_sym_i16] = ACTIONS(4852), - [anon_sym_i32] = ACTIONS(4852), - [anon_sym_i64] = ACTIONS(4852), - [anon_sym_u8] = ACTIONS(4852), - [anon_sym_u16] = ACTIONS(4852), - [anon_sym_u32] = ACTIONS(4852), - [anon_sym_u64] = ACTIONS(4852), - [anon_sym_isize] = ACTIONS(4852), - [anon_sym_usize] = ACTIONS(4852), - [anon_sym_f32] = ACTIONS(4852), - [anon_sym_f64] = ACTIONS(4852), - [anon_sym_c_char] = ACTIONS(4852), - [anon_sym_c_schar] = ACTIONS(4852), - [anon_sym_c_uchar] = ACTIONS(4852), - [anon_sym_c_short] = ACTIONS(4852), - [anon_sym_c_ushort] = ACTIONS(4852), - [anon_sym_c_int] = ACTIONS(4852), - [anon_sym_c_uint] = ACTIONS(4852), - [anon_sym_c_long] = ACTIONS(4852), - [anon_sym_c_ulong] = ACTIONS(4852), - [anon_sym_c_longlong] = ACTIONS(4852), - [anon_sym_c_ulonglong] = ACTIONS(4852), - [anon_sym_c_float] = ACTIONS(4852), - [anon_sym_c_double] = ACTIONS(4852), - [anon_sym_c_longdouble] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_yield] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_defer] = ACTIONS(4852), - [anon_sym_errdefer] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_while] = ACTIONS(4852), - [anon_sym_expand] = ACTIONS(4852), - [anon_sym_for] = ACTIONS(4852), - [anon_sym_match] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4850), - [anon_sym_TILDE] = ACTIONS(4850), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_DOT] = ACTIONS(4850), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_unreachable] = ACTIONS(4852), - [anon_sym_undefined] = ACTIONS(4852), - [sym_sink] = ACTIONS(4852), - [sym_integer] = ACTIONS(4852), - [sym_float] = ACTIONS(4850), - [anon_sym_DQUOTE] = ACTIONS(4850), - [sym_multiline_string] = ACTIONS(4850), - [sym_character] = ACTIONS(4850), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4850), - }, - [STATE(1965)] = { - [ts_builtin_sym_end] = ACTIONS(4854), - [sym_identifier] = ACTIONS(4856), - [anon_sym_import] = ACTIONS(4856), - [anon_sym_test] = ACTIONS(4856), - [anon_sym_hide] = ACTIONS(4856), - [anon_sym_func] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(4854), - [anon_sym_struct] = ACTIONS(4856), - [anon_sym_LPAREN] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4854), - [anon_sym_DOLLAR] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_void] = ACTIONS(4856), - [anon_sym_noreturn] = ACTIONS(4856), - [anon_sym_type] = ACTIONS(4856), - [anon_sym_anyopaque] = ACTIONS(4856), - [anon_sym_bool] = ACTIONS(4856), - [anon_sym_int] = ACTIONS(4856), - [anon_sym_uint] = ACTIONS(4856), - [anon_sym_float] = ACTIONS(4856), - [anon_sym_range] = ACTIONS(4856), - [anon_sym_i8] = ACTIONS(4856), - [anon_sym_i16] = ACTIONS(4856), - [anon_sym_i32] = ACTIONS(4856), - [anon_sym_i64] = ACTIONS(4856), - [anon_sym_u8] = ACTIONS(4856), - [anon_sym_u16] = ACTIONS(4856), - [anon_sym_u32] = ACTIONS(4856), - [anon_sym_u64] = ACTIONS(4856), - [anon_sym_isize] = ACTIONS(4856), - [anon_sym_usize] = ACTIONS(4856), - [anon_sym_f32] = ACTIONS(4856), - [anon_sym_f64] = ACTIONS(4856), - [anon_sym_c_char] = ACTIONS(4856), - [anon_sym_c_schar] = ACTIONS(4856), - [anon_sym_c_uchar] = ACTIONS(4856), - [anon_sym_c_short] = ACTIONS(4856), - [anon_sym_c_ushort] = ACTIONS(4856), - [anon_sym_c_int] = ACTIONS(4856), - [anon_sym_c_uint] = ACTIONS(4856), - [anon_sym_c_long] = ACTIONS(4856), - [anon_sym_c_ulong] = ACTIONS(4856), - [anon_sym_c_longlong] = ACTIONS(4856), - [anon_sym_c_ulonglong] = ACTIONS(4856), - [anon_sym_c_float] = ACTIONS(4856), - [anon_sym_c_double] = ACTIONS(4856), - [anon_sym_c_longdouble] = ACTIONS(4856), - [anon_sym_return] = ACTIONS(4856), - [anon_sym_yield] = ACTIONS(4856), - [anon_sym_break] = ACTIONS(4856), - [anon_sym_continue] = ACTIONS(4856), - [anon_sym_defer] = ACTIONS(4856), - [anon_sym_errdefer] = ACTIONS(4856), - [anon_sym_if] = ACTIONS(4856), - [anon_sym_else] = ACTIONS(4856), - [anon_sym_while] = ACTIONS(4856), - [anon_sym_expand] = ACTIONS(4856), - [anon_sym_for] = ACTIONS(4856), - [anon_sym_match] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4854), - [anon_sym_TILDE] = ACTIONS(4854), - [anon_sym_try] = ACTIONS(4856), - [anon_sym_DOT] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4856), - [anon_sym_false] = ACTIONS(4856), - [anon_sym_null] = ACTIONS(4856), - [anon_sym_unreachable] = ACTIONS(4856), - [anon_sym_undefined] = ACTIONS(4856), - [sym_sink] = ACTIONS(4856), - [sym_integer] = ACTIONS(4856), - [sym_float] = ACTIONS(4854), - [anon_sym_DQUOTE] = ACTIONS(4854), - [sym_multiline_string] = ACTIONS(4854), - [sym_character] = ACTIONS(4854), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4854), - }, - [STATE(1966)] = { - [ts_builtin_sym_end] = ACTIONS(4858), - [sym_identifier] = ACTIONS(4860), - [anon_sym_import] = ACTIONS(4860), - [anon_sym_test] = ACTIONS(4860), - [anon_sym_hide] = ACTIONS(4860), - [anon_sym_func] = ACTIONS(4860), - [anon_sym_BANG] = ACTIONS(4858), - [anon_sym_struct] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4858), - [anon_sym_DOLLAR] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_void] = ACTIONS(4860), - [anon_sym_noreturn] = ACTIONS(4860), - [anon_sym_type] = ACTIONS(4860), - [anon_sym_anyopaque] = ACTIONS(4860), - [anon_sym_bool] = ACTIONS(4860), - [anon_sym_int] = ACTIONS(4860), - [anon_sym_uint] = ACTIONS(4860), - [anon_sym_float] = ACTIONS(4860), - [anon_sym_range] = ACTIONS(4860), - [anon_sym_i8] = ACTIONS(4860), - [anon_sym_i16] = ACTIONS(4860), - [anon_sym_i32] = ACTIONS(4860), - [anon_sym_i64] = ACTIONS(4860), - [anon_sym_u8] = ACTIONS(4860), - [anon_sym_u16] = ACTIONS(4860), - [anon_sym_u32] = ACTIONS(4860), - [anon_sym_u64] = ACTIONS(4860), - [anon_sym_isize] = ACTIONS(4860), - [anon_sym_usize] = ACTIONS(4860), - [anon_sym_f32] = ACTIONS(4860), - [anon_sym_f64] = ACTIONS(4860), - [anon_sym_c_char] = ACTIONS(4860), - [anon_sym_c_schar] = ACTIONS(4860), - [anon_sym_c_uchar] = ACTIONS(4860), - [anon_sym_c_short] = ACTIONS(4860), - [anon_sym_c_ushort] = ACTIONS(4860), - [anon_sym_c_int] = ACTIONS(4860), - [anon_sym_c_uint] = ACTIONS(4860), - [anon_sym_c_long] = ACTIONS(4860), - [anon_sym_c_ulong] = ACTIONS(4860), - [anon_sym_c_longlong] = ACTIONS(4860), - [anon_sym_c_ulonglong] = ACTIONS(4860), - [anon_sym_c_float] = ACTIONS(4860), - [anon_sym_c_double] = ACTIONS(4860), - [anon_sym_c_longdouble] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4860), - [anon_sym_yield] = ACTIONS(4860), - [anon_sym_break] = ACTIONS(4860), - [anon_sym_continue] = ACTIONS(4860), - [anon_sym_defer] = ACTIONS(4860), - [anon_sym_errdefer] = ACTIONS(4860), - [anon_sym_if] = ACTIONS(4860), - [anon_sym_else] = ACTIONS(4860), - [anon_sym_while] = ACTIONS(4860), - [anon_sym_expand] = ACTIONS(4860), - [anon_sym_for] = ACTIONS(4860), - [anon_sym_match] = ACTIONS(4860), - [anon_sym_AMP] = ACTIONS(4858), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_try] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4858), - [anon_sym_true] = ACTIONS(4860), - [anon_sym_false] = ACTIONS(4860), - [anon_sym_null] = ACTIONS(4860), - [anon_sym_unreachable] = ACTIONS(4860), - [anon_sym_undefined] = ACTIONS(4860), - [sym_sink] = ACTIONS(4860), - [sym_integer] = ACTIONS(4860), - [sym_float] = ACTIONS(4858), - [anon_sym_DQUOTE] = ACTIONS(4858), - [sym_multiline_string] = ACTIONS(4858), - [sym_character] = ACTIONS(4858), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4858), - }, - [STATE(1967)] = { - [ts_builtin_sym_end] = ACTIONS(4862), - [sym_identifier] = ACTIONS(4864), - [anon_sym_import] = ACTIONS(4864), - [anon_sym_test] = ACTIONS(4864), - [anon_sym_hide] = ACTIONS(4864), - [anon_sym_func] = ACTIONS(4864), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_struct] = ACTIONS(4864), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_RPAREN] = ACTIONS(4862), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_DOLLAR] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_void] = ACTIONS(4864), - [anon_sym_noreturn] = ACTIONS(4864), - [anon_sym_type] = ACTIONS(4864), - [anon_sym_anyopaque] = ACTIONS(4864), - [anon_sym_bool] = ACTIONS(4864), - [anon_sym_int] = ACTIONS(4864), - [anon_sym_uint] = ACTIONS(4864), - [anon_sym_float] = ACTIONS(4864), - [anon_sym_range] = ACTIONS(4864), - [anon_sym_i8] = ACTIONS(4864), - [anon_sym_i16] = ACTIONS(4864), - [anon_sym_i32] = ACTIONS(4864), - [anon_sym_i64] = ACTIONS(4864), - [anon_sym_u8] = ACTIONS(4864), - [anon_sym_u16] = ACTIONS(4864), - [anon_sym_u32] = ACTIONS(4864), - [anon_sym_u64] = ACTIONS(4864), - [anon_sym_isize] = ACTIONS(4864), - [anon_sym_usize] = ACTIONS(4864), - [anon_sym_f32] = ACTIONS(4864), - [anon_sym_f64] = ACTIONS(4864), - [anon_sym_c_char] = ACTIONS(4864), - [anon_sym_c_schar] = ACTIONS(4864), - [anon_sym_c_uchar] = ACTIONS(4864), - [anon_sym_c_short] = ACTIONS(4864), - [anon_sym_c_ushort] = ACTIONS(4864), - [anon_sym_c_int] = ACTIONS(4864), - [anon_sym_c_uint] = ACTIONS(4864), - [anon_sym_c_long] = ACTIONS(4864), - [anon_sym_c_ulong] = ACTIONS(4864), - [anon_sym_c_longlong] = ACTIONS(4864), - [anon_sym_c_ulonglong] = ACTIONS(4864), - [anon_sym_c_float] = ACTIONS(4864), - [anon_sym_c_double] = ACTIONS(4864), - [anon_sym_c_longdouble] = ACTIONS(4864), - [anon_sym_return] = ACTIONS(4864), - [anon_sym_yield] = ACTIONS(4864), - [anon_sym_break] = ACTIONS(4864), - [anon_sym_continue] = ACTIONS(4864), - [anon_sym_defer] = ACTIONS(4864), - [anon_sym_errdefer] = ACTIONS(4864), - [anon_sym_if] = ACTIONS(4864), - [anon_sym_else] = ACTIONS(4864), - [anon_sym_while] = ACTIONS(4864), - [anon_sym_expand] = ACTIONS(4864), - [anon_sym_for] = ACTIONS(4864), - [anon_sym_match] = ACTIONS(4864), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_TILDE] = ACTIONS(4862), - [anon_sym_try] = ACTIONS(4864), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4864), - [anon_sym_false] = ACTIONS(4864), - [anon_sym_null] = ACTIONS(4864), - [anon_sym_unreachable] = ACTIONS(4864), - [anon_sym_undefined] = ACTIONS(4864), - [sym_sink] = ACTIONS(4864), - [sym_integer] = ACTIONS(4864), - [sym_float] = ACTIONS(4862), - [anon_sym_DQUOTE] = ACTIONS(4862), - [sym_multiline_string] = ACTIONS(4862), - [sym_character] = ACTIONS(4862), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4862), - }, - [STATE(1968)] = { - [ts_builtin_sym_end] = ACTIONS(4866), - [sym_identifier] = ACTIONS(4868), - [anon_sym_import] = ACTIONS(4868), - [anon_sym_test] = ACTIONS(4868), - [anon_sym_hide] = ACTIONS(4868), - [anon_sym_func] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4866), - [anon_sym_struct] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4866), - [anon_sym_RPAREN] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(4866), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_DASH] = ACTIONS(4866), - [anon_sym_DOLLAR] = ACTIONS(4866), - [anon_sym_LBRACK] = ACTIONS(4866), - [anon_sym_void] = ACTIONS(4868), - [anon_sym_noreturn] = ACTIONS(4868), - [anon_sym_type] = ACTIONS(4868), - [anon_sym_anyopaque] = ACTIONS(4868), - [anon_sym_bool] = ACTIONS(4868), - [anon_sym_int] = ACTIONS(4868), - [anon_sym_uint] = ACTIONS(4868), - [anon_sym_float] = ACTIONS(4868), - [anon_sym_range] = ACTIONS(4868), - [anon_sym_i8] = ACTIONS(4868), - [anon_sym_i16] = ACTIONS(4868), - [anon_sym_i32] = ACTIONS(4868), - [anon_sym_i64] = ACTIONS(4868), - [anon_sym_u8] = ACTIONS(4868), - [anon_sym_u16] = ACTIONS(4868), - [anon_sym_u32] = ACTIONS(4868), - [anon_sym_u64] = ACTIONS(4868), - [anon_sym_isize] = ACTIONS(4868), - [anon_sym_usize] = ACTIONS(4868), - [anon_sym_f32] = ACTIONS(4868), - [anon_sym_f64] = ACTIONS(4868), - [anon_sym_c_char] = ACTIONS(4868), - [anon_sym_c_schar] = ACTIONS(4868), - [anon_sym_c_uchar] = ACTIONS(4868), - [anon_sym_c_short] = ACTIONS(4868), - [anon_sym_c_ushort] = ACTIONS(4868), - [anon_sym_c_int] = ACTIONS(4868), - [anon_sym_c_uint] = ACTIONS(4868), - [anon_sym_c_long] = ACTIONS(4868), - [anon_sym_c_ulong] = ACTIONS(4868), - [anon_sym_c_longlong] = ACTIONS(4868), - [anon_sym_c_ulonglong] = ACTIONS(4868), - [anon_sym_c_float] = ACTIONS(4868), - [anon_sym_c_double] = ACTIONS(4868), - [anon_sym_c_longdouble] = ACTIONS(4868), - [anon_sym_return] = ACTIONS(4868), - [anon_sym_yield] = ACTIONS(4868), - [anon_sym_break] = ACTIONS(4868), - [anon_sym_continue] = ACTIONS(4868), - [anon_sym_defer] = ACTIONS(4868), - [anon_sym_errdefer] = ACTIONS(4868), - [anon_sym_if] = ACTIONS(4868), - [anon_sym_else] = ACTIONS(4868), - [anon_sym_while] = ACTIONS(4868), - [anon_sym_expand] = ACTIONS(4868), - [anon_sym_for] = ACTIONS(4868), - [anon_sym_match] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4866), - [anon_sym_TILDE] = ACTIONS(4866), - [anon_sym_try] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4866), - [anon_sym_true] = ACTIONS(4868), - [anon_sym_false] = ACTIONS(4868), - [anon_sym_null] = ACTIONS(4868), - [anon_sym_unreachable] = ACTIONS(4868), - [anon_sym_undefined] = ACTIONS(4868), - [sym_sink] = ACTIONS(4868), - [sym_integer] = ACTIONS(4868), - [sym_float] = ACTIONS(4866), - [anon_sym_DQUOTE] = ACTIONS(4866), - [sym_multiline_string] = ACTIONS(4866), - [sym_character] = ACTIONS(4866), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4866), - }, - [STATE(1969)] = { - [ts_builtin_sym_end] = ACTIONS(4870), - [sym_identifier] = ACTIONS(4872), - [anon_sym_import] = ACTIONS(4872), - [anon_sym_test] = ACTIONS(4872), - [anon_sym_hide] = ACTIONS(4872), - [anon_sym_func] = ACTIONS(4872), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_struct] = ACTIONS(4872), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_RPAREN] = ACTIONS(4870), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_DOLLAR] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_void] = ACTIONS(4872), - [anon_sym_noreturn] = ACTIONS(4872), - [anon_sym_type] = ACTIONS(4872), - [anon_sym_anyopaque] = ACTIONS(4872), - [anon_sym_bool] = ACTIONS(4872), - [anon_sym_int] = ACTIONS(4872), - [anon_sym_uint] = ACTIONS(4872), - [anon_sym_float] = ACTIONS(4872), - [anon_sym_range] = ACTIONS(4872), - [anon_sym_i8] = ACTIONS(4872), - [anon_sym_i16] = ACTIONS(4872), - [anon_sym_i32] = ACTIONS(4872), - [anon_sym_i64] = ACTIONS(4872), - [anon_sym_u8] = ACTIONS(4872), - [anon_sym_u16] = ACTIONS(4872), - [anon_sym_u32] = ACTIONS(4872), - [anon_sym_u64] = ACTIONS(4872), - [anon_sym_isize] = ACTIONS(4872), - [anon_sym_usize] = ACTIONS(4872), - [anon_sym_f32] = ACTIONS(4872), - [anon_sym_f64] = ACTIONS(4872), - [anon_sym_c_char] = ACTIONS(4872), - [anon_sym_c_schar] = ACTIONS(4872), - [anon_sym_c_uchar] = ACTIONS(4872), - [anon_sym_c_short] = ACTIONS(4872), - [anon_sym_c_ushort] = ACTIONS(4872), - [anon_sym_c_int] = ACTIONS(4872), - [anon_sym_c_uint] = ACTIONS(4872), - [anon_sym_c_long] = ACTIONS(4872), - [anon_sym_c_ulong] = ACTIONS(4872), - [anon_sym_c_longlong] = ACTIONS(4872), - [anon_sym_c_ulonglong] = ACTIONS(4872), - [anon_sym_c_float] = ACTIONS(4872), - [anon_sym_c_double] = ACTIONS(4872), - [anon_sym_c_longdouble] = ACTIONS(4872), - [anon_sym_return] = ACTIONS(4872), - [anon_sym_yield] = ACTIONS(4872), - [anon_sym_break] = ACTIONS(4872), - [anon_sym_continue] = ACTIONS(4872), - [anon_sym_defer] = ACTIONS(4872), - [anon_sym_errdefer] = ACTIONS(4872), - [anon_sym_if] = ACTIONS(4872), - [anon_sym_else] = ACTIONS(4872), - [anon_sym_while] = ACTIONS(4872), - [anon_sym_expand] = ACTIONS(4872), - [anon_sym_for] = ACTIONS(4872), - [anon_sym_match] = ACTIONS(4872), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_TILDE] = ACTIONS(4870), - [anon_sym_try] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_true] = ACTIONS(4872), - [anon_sym_false] = ACTIONS(4872), - [anon_sym_null] = ACTIONS(4872), - [anon_sym_unreachable] = ACTIONS(4872), - [anon_sym_undefined] = ACTIONS(4872), - [sym_sink] = ACTIONS(4872), - [sym_integer] = ACTIONS(4872), - [sym_float] = ACTIONS(4870), - [anon_sym_DQUOTE] = ACTIONS(4870), - [sym_multiline_string] = ACTIONS(4870), - [sym_character] = ACTIONS(4870), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4870), - }, - [STATE(1970)] = { - [ts_builtin_sym_end] = ACTIONS(4874), - [sym_identifier] = ACTIONS(4876), - [anon_sym_import] = ACTIONS(4876), - [anon_sym_test] = ACTIONS(4876), - [anon_sym_hide] = ACTIONS(4876), - [anon_sym_func] = ACTIONS(4876), - [anon_sym_BANG] = ACTIONS(4874), - [anon_sym_struct] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(4874), - [anon_sym_RPAREN] = ACTIONS(4874), - [anon_sym_LBRACE] = ACTIONS(4874), - [anon_sym_RBRACE] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_DOLLAR] = ACTIONS(4874), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_void] = ACTIONS(4876), - [anon_sym_noreturn] = ACTIONS(4876), - [anon_sym_type] = ACTIONS(4876), - [anon_sym_anyopaque] = ACTIONS(4876), - [anon_sym_bool] = ACTIONS(4876), - [anon_sym_int] = ACTIONS(4876), - [anon_sym_uint] = ACTIONS(4876), - [anon_sym_float] = ACTIONS(4876), - [anon_sym_range] = ACTIONS(4876), - [anon_sym_i8] = ACTIONS(4876), - [anon_sym_i16] = ACTIONS(4876), - [anon_sym_i32] = ACTIONS(4876), - [anon_sym_i64] = ACTIONS(4876), - [anon_sym_u8] = ACTIONS(4876), - [anon_sym_u16] = ACTIONS(4876), - [anon_sym_u32] = ACTIONS(4876), - [anon_sym_u64] = ACTIONS(4876), - [anon_sym_isize] = ACTIONS(4876), - [anon_sym_usize] = ACTIONS(4876), - [anon_sym_f32] = ACTIONS(4876), - [anon_sym_f64] = ACTIONS(4876), - [anon_sym_c_char] = ACTIONS(4876), - [anon_sym_c_schar] = ACTIONS(4876), - [anon_sym_c_uchar] = ACTIONS(4876), - [anon_sym_c_short] = ACTIONS(4876), - [anon_sym_c_ushort] = ACTIONS(4876), - [anon_sym_c_int] = ACTIONS(4876), - [anon_sym_c_uint] = ACTIONS(4876), - [anon_sym_c_long] = ACTIONS(4876), - [anon_sym_c_ulong] = ACTIONS(4876), - [anon_sym_c_longlong] = ACTIONS(4876), - [anon_sym_c_ulonglong] = ACTIONS(4876), - [anon_sym_c_float] = ACTIONS(4876), - [anon_sym_c_double] = ACTIONS(4876), - [anon_sym_c_longdouble] = ACTIONS(4876), - [anon_sym_return] = ACTIONS(4876), - [anon_sym_yield] = ACTIONS(4876), - [anon_sym_break] = ACTIONS(4876), - [anon_sym_continue] = ACTIONS(4876), - [anon_sym_defer] = ACTIONS(4876), - [anon_sym_errdefer] = ACTIONS(4876), - [anon_sym_if] = ACTIONS(4876), - [anon_sym_else] = ACTIONS(4876), - [anon_sym_while] = ACTIONS(4876), - [anon_sym_expand] = ACTIONS(4876), - [anon_sym_for] = ACTIONS(4876), - [anon_sym_match] = ACTIONS(4876), - [anon_sym_AMP] = ACTIONS(4874), - [anon_sym_TILDE] = ACTIONS(4874), - [anon_sym_try] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_true] = ACTIONS(4876), - [anon_sym_false] = ACTIONS(4876), - [anon_sym_null] = ACTIONS(4876), - [anon_sym_unreachable] = ACTIONS(4876), - [anon_sym_undefined] = ACTIONS(4876), - [sym_sink] = ACTIONS(4876), - [sym_integer] = ACTIONS(4876), - [sym_float] = ACTIONS(4874), - [anon_sym_DQUOTE] = ACTIONS(4874), - [sym_multiline_string] = ACTIONS(4874), - [sym_character] = ACTIONS(4874), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4874), - }, - [STATE(1971)] = { - [ts_builtin_sym_end] = ACTIONS(4878), - [sym_identifier] = ACTIONS(4880), - [anon_sym_import] = ACTIONS(4880), - [anon_sym_test] = ACTIONS(4880), - [anon_sym_hide] = ACTIONS(4880), - [anon_sym_func] = ACTIONS(4880), - [anon_sym_BANG] = ACTIONS(4878), - [anon_sym_struct] = ACTIONS(4880), - [anon_sym_LPAREN] = ACTIONS(4878), - [anon_sym_RPAREN] = ACTIONS(4878), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_DASH] = ACTIONS(4878), - [anon_sym_DOLLAR] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_void] = ACTIONS(4880), - [anon_sym_noreturn] = ACTIONS(4880), - [anon_sym_type] = ACTIONS(4880), - [anon_sym_anyopaque] = ACTIONS(4880), - [anon_sym_bool] = ACTIONS(4880), - [anon_sym_int] = ACTIONS(4880), - [anon_sym_uint] = ACTIONS(4880), - [anon_sym_float] = ACTIONS(4880), - [anon_sym_range] = ACTIONS(4880), - [anon_sym_i8] = ACTIONS(4880), - [anon_sym_i16] = ACTIONS(4880), - [anon_sym_i32] = ACTIONS(4880), - [anon_sym_i64] = ACTIONS(4880), - [anon_sym_u8] = ACTIONS(4880), - [anon_sym_u16] = ACTIONS(4880), - [anon_sym_u32] = ACTIONS(4880), - [anon_sym_u64] = ACTIONS(4880), - [anon_sym_isize] = ACTIONS(4880), - [anon_sym_usize] = ACTIONS(4880), - [anon_sym_f32] = ACTIONS(4880), - [anon_sym_f64] = ACTIONS(4880), - [anon_sym_c_char] = ACTIONS(4880), - [anon_sym_c_schar] = ACTIONS(4880), - [anon_sym_c_uchar] = ACTIONS(4880), - [anon_sym_c_short] = ACTIONS(4880), - [anon_sym_c_ushort] = ACTIONS(4880), - [anon_sym_c_int] = ACTIONS(4880), - [anon_sym_c_uint] = ACTIONS(4880), - [anon_sym_c_long] = ACTIONS(4880), - [anon_sym_c_ulong] = ACTIONS(4880), - [anon_sym_c_longlong] = ACTIONS(4880), - [anon_sym_c_ulonglong] = ACTIONS(4880), - [anon_sym_c_float] = ACTIONS(4880), - [anon_sym_c_double] = ACTIONS(4880), - [anon_sym_c_longdouble] = ACTIONS(4880), - [anon_sym_return] = ACTIONS(4880), - [anon_sym_yield] = ACTIONS(4880), - [anon_sym_break] = ACTIONS(4880), - [anon_sym_continue] = ACTIONS(4880), - [anon_sym_defer] = ACTIONS(4880), - [anon_sym_errdefer] = ACTIONS(4880), - [anon_sym_if] = ACTIONS(4880), - [anon_sym_else] = ACTIONS(4880), - [anon_sym_while] = ACTIONS(4880), - [anon_sym_expand] = ACTIONS(4880), - [anon_sym_for] = ACTIONS(4880), - [anon_sym_match] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(4878), - [anon_sym_TILDE] = ACTIONS(4878), - [anon_sym_try] = ACTIONS(4880), - [anon_sym_DOT] = ACTIONS(4878), - [anon_sym_true] = ACTIONS(4880), - [anon_sym_false] = ACTIONS(4880), - [anon_sym_null] = ACTIONS(4880), - [anon_sym_unreachable] = ACTIONS(4880), - [anon_sym_undefined] = ACTIONS(4880), - [sym_sink] = ACTIONS(4880), - [sym_integer] = ACTIONS(4880), - [sym_float] = ACTIONS(4878), - [anon_sym_DQUOTE] = ACTIONS(4878), - [sym_multiline_string] = ACTIONS(4878), - [sym_character] = ACTIONS(4878), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4878), - }, - [STATE(1972)] = { - [ts_builtin_sym_end] = ACTIONS(4882), - [sym_identifier] = ACTIONS(4884), - [anon_sym_import] = ACTIONS(4884), - [anon_sym_test] = ACTIONS(4884), - [anon_sym_hide] = ACTIONS(4884), - [anon_sym_func] = ACTIONS(4884), - [anon_sym_BANG] = ACTIONS(4882), - [anon_sym_struct] = ACTIONS(4884), - [anon_sym_LPAREN] = ACTIONS(4882), - [anon_sym_RPAREN] = ACTIONS(4882), - [anon_sym_LBRACE] = ACTIONS(4882), - [anon_sym_RBRACE] = ACTIONS(4882), - [anon_sym_DASH] = ACTIONS(4882), - [anon_sym_DOLLAR] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_void] = ACTIONS(4884), - [anon_sym_noreturn] = ACTIONS(4884), - [anon_sym_type] = ACTIONS(4884), - [anon_sym_anyopaque] = ACTIONS(4884), - [anon_sym_bool] = ACTIONS(4884), - [anon_sym_int] = ACTIONS(4884), - [anon_sym_uint] = ACTIONS(4884), - [anon_sym_float] = ACTIONS(4884), - [anon_sym_range] = ACTIONS(4884), - [anon_sym_i8] = ACTIONS(4884), - [anon_sym_i16] = ACTIONS(4884), - [anon_sym_i32] = ACTIONS(4884), - [anon_sym_i64] = ACTIONS(4884), - [anon_sym_u8] = ACTIONS(4884), - [anon_sym_u16] = ACTIONS(4884), - [anon_sym_u32] = ACTIONS(4884), - [anon_sym_u64] = ACTIONS(4884), - [anon_sym_isize] = ACTIONS(4884), - [anon_sym_usize] = ACTIONS(4884), - [anon_sym_f32] = ACTIONS(4884), - [anon_sym_f64] = ACTIONS(4884), - [anon_sym_c_char] = ACTIONS(4884), - [anon_sym_c_schar] = ACTIONS(4884), - [anon_sym_c_uchar] = ACTIONS(4884), - [anon_sym_c_short] = ACTIONS(4884), - [anon_sym_c_ushort] = ACTIONS(4884), - [anon_sym_c_int] = ACTIONS(4884), - [anon_sym_c_uint] = ACTIONS(4884), - [anon_sym_c_long] = ACTIONS(4884), - [anon_sym_c_ulong] = ACTIONS(4884), - [anon_sym_c_longlong] = ACTIONS(4884), - [anon_sym_c_ulonglong] = ACTIONS(4884), - [anon_sym_c_float] = ACTIONS(4884), - [anon_sym_c_double] = ACTIONS(4884), - [anon_sym_c_longdouble] = ACTIONS(4884), - [anon_sym_return] = ACTIONS(4884), - [anon_sym_yield] = ACTIONS(4884), - [anon_sym_break] = ACTIONS(4884), - [anon_sym_continue] = ACTIONS(4884), - [anon_sym_defer] = ACTIONS(4884), - [anon_sym_errdefer] = ACTIONS(4884), - [anon_sym_if] = ACTIONS(4884), - [anon_sym_else] = ACTIONS(4884), - [anon_sym_while] = ACTIONS(4884), - [anon_sym_expand] = ACTIONS(4884), - [anon_sym_for] = ACTIONS(4884), - [anon_sym_match] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4882), - [anon_sym_TILDE] = ACTIONS(4882), - [anon_sym_try] = ACTIONS(4884), - [anon_sym_DOT] = ACTIONS(4882), - [anon_sym_true] = ACTIONS(4884), - [anon_sym_false] = ACTIONS(4884), - [anon_sym_null] = ACTIONS(4884), - [anon_sym_unreachable] = ACTIONS(4884), - [anon_sym_undefined] = ACTIONS(4884), - [sym_sink] = ACTIONS(4884), - [sym_integer] = ACTIONS(4884), - [sym_float] = ACTIONS(4882), - [anon_sym_DQUOTE] = ACTIONS(4882), - [sym_multiline_string] = ACTIONS(4882), - [sym_character] = ACTIONS(4882), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4882), - }, - [STATE(1973)] = { - [ts_builtin_sym_end] = ACTIONS(4886), - [sym_identifier] = ACTIONS(4888), - [anon_sym_import] = ACTIONS(4888), - [anon_sym_test] = ACTIONS(4888), - [anon_sym_hide] = ACTIONS(4888), - [anon_sym_func] = ACTIONS(4888), - [anon_sym_BANG] = ACTIONS(4886), - [anon_sym_struct] = ACTIONS(4888), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_void] = ACTIONS(4888), - [anon_sym_noreturn] = ACTIONS(4888), - [anon_sym_type] = ACTIONS(4888), - [anon_sym_anyopaque] = ACTIONS(4888), - [anon_sym_bool] = ACTIONS(4888), - [anon_sym_int] = ACTIONS(4888), - [anon_sym_uint] = ACTIONS(4888), - [anon_sym_float] = ACTIONS(4888), - [anon_sym_range] = ACTIONS(4888), - [anon_sym_i8] = ACTIONS(4888), - [anon_sym_i16] = ACTIONS(4888), - [anon_sym_i32] = ACTIONS(4888), - [anon_sym_i64] = ACTIONS(4888), - [anon_sym_u8] = ACTIONS(4888), - [anon_sym_u16] = ACTIONS(4888), - [anon_sym_u32] = ACTIONS(4888), - [anon_sym_u64] = ACTIONS(4888), - [anon_sym_isize] = ACTIONS(4888), - [anon_sym_usize] = ACTIONS(4888), - [anon_sym_f32] = ACTIONS(4888), - [anon_sym_f64] = ACTIONS(4888), - [anon_sym_c_char] = ACTIONS(4888), - [anon_sym_c_schar] = ACTIONS(4888), - [anon_sym_c_uchar] = ACTIONS(4888), - [anon_sym_c_short] = ACTIONS(4888), - [anon_sym_c_ushort] = ACTIONS(4888), - [anon_sym_c_int] = ACTIONS(4888), - [anon_sym_c_uint] = ACTIONS(4888), - [anon_sym_c_long] = ACTIONS(4888), - [anon_sym_c_ulong] = ACTIONS(4888), - [anon_sym_c_longlong] = ACTIONS(4888), - [anon_sym_c_ulonglong] = ACTIONS(4888), - [anon_sym_c_float] = ACTIONS(4888), - [anon_sym_c_double] = ACTIONS(4888), - [anon_sym_c_longdouble] = ACTIONS(4888), - [anon_sym_return] = ACTIONS(4888), - [anon_sym_yield] = ACTIONS(4888), - [anon_sym_break] = ACTIONS(4888), - [anon_sym_continue] = ACTIONS(4888), - [anon_sym_defer] = ACTIONS(4888), - [anon_sym_errdefer] = ACTIONS(4888), - [anon_sym_if] = ACTIONS(4888), - [anon_sym_else] = ACTIONS(4888), - [anon_sym_while] = ACTIONS(4888), - [anon_sym_expand] = ACTIONS(4888), - [anon_sym_for] = ACTIONS(4888), - [anon_sym_match] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [anon_sym_try] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4886), - [anon_sym_true] = ACTIONS(4888), - [anon_sym_false] = ACTIONS(4888), - [anon_sym_null] = ACTIONS(4888), - [anon_sym_unreachable] = ACTIONS(4888), - [anon_sym_undefined] = ACTIONS(4888), - [sym_sink] = ACTIONS(4888), - [sym_integer] = ACTIONS(4888), - [sym_float] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [sym_multiline_string] = ACTIONS(4886), - [sym_character] = ACTIONS(4886), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4886), - }, - [STATE(1974)] = { - [ts_builtin_sym_end] = ACTIONS(4890), - [sym_identifier] = ACTIONS(4892), - [anon_sym_import] = ACTIONS(4892), - [anon_sym_test] = ACTIONS(4892), - [anon_sym_hide] = ACTIONS(4892), - [anon_sym_func] = ACTIONS(4892), - [anon_sym_BANG] = ACTIONS(4890), - [anon_sym_struct] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_void] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_type] = ACTIONS(4892), - [anon_sym_anyopaque] = ACTIONS(4892), - [anon_sym_bool] = ACTIONS(4892), - [anon_sym_int] = ACTIONS(4892), - [anon_sym_uint] = ACTIONS(4892), - [anon_sym_float] = ACTIONS(4892), - [anon_sym_range] = ACTIONS(4892), - [anon_sym_i8] = ACTIONS(4892), - [anon_sym_i16] = ACTIONS(4892), - [anon_sym_i32] = ACTIONS(4892), - [anon_sym_i64] = ACTIONS(4892), - [anon_sym_u8] = ACTIONS(4892), - [anon_sym_u16] = ACTIONS(4892), - [anon_sym_u32] = ACTIONS(4892), - [anon_sym_u64] = ACTIONS(4892), - [anon_sym_isize] = ACTIONS(4892), - [anon_sym_usize] = ACTIONS(4892), - [anon_sym_f32] = ACTIONS(4892), - [anon_sym_f64] = ACTIONS(4892), - [anon_sym_c_char] = ACTIONS(4892), - [anon_sym_c_schar] = ACTIONS(4892), - [anon_sym_c_uchar] = ACTIONS(4892), - [anon_sym_c_short] = ACTIONS(4892), - [anon_sym_c_ushort] = ACTIONS(4892), - [anon_sym_c_int] = ACTIONS(4892), - [anon_sym_c_uint] = ACTIONS(4892), - [anon_sym_c_long] = ACTIONS(4892), - [anon_sym_c_ulong] = ACTIONS(4892), - [anon_sym_c_longlong] = ACTIONS(4892), - [anon_sym_c_ulonglong] = ACTIONS(4892), - [anon_sym_c_float] = ACTIONS(4892), - [anon_sym_c_double] = ACTIONS(4892), - [anon_sym_c_longdouble] = ACTIONS(4892), - [anon_sym_return] = ACTIONS(4892), - [anon_sym_yield] = ACTIONS(4892), - [anon_sym_break] = ACTIONS(4892), - [anon_sym_continue] = ACTIONS(4892), - [anon_sym_defer] = ACTIONS(4892), - [anon_sym_errdefer] = ACTIONS(4892), - [anon_sym_if] = ACTIONS(4892), - [anon_sym_else] = ACTIONS(4892), - [anon_sym_while] = ACTIONS(4892), - [anon_sym_expand] = ACTIONS(4892), - [anon_sym_for] = ACTIONS(4892), - [anon_sym_match] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4890), - [anon_sym_TILDE] = ACTIONS(4890), - [anon_sym_try] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4890), - [anon_sym_true] = ACTIONS(4892), - [anon_sym_false] = ACTIONS(4892), - [anon_sym_null] = ACTIONS(4892), - [anon_sym_unreachable] = ACTIONS(4892), - [anon_sym_undefined] = ACTIONS(4892), - [sym_sink] = ACTIONS(4892), - [sym_integer] = ACTIONS(4892), - [sym_float] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [sym_multiline_string] = ACTIONS(4890), - [sym_character] = ACTIONS(4890), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4890), - }, - [STATE(1975)] = { - [ts_builtin_sym_end] = ACTIONS(4894), - [sym_identifier] = ACTIONS(4896), - [anon_sym_import] = ACTIONS(4896), - [anon_sym_test] = ACTIONS(4896), - [anon_sym_hide] = ACTIONS(4896), - [anon_sym_func] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_struct] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4894), - [anon_sym_RBRACE] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_DOLLAR] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_void] = ACTIONS(4896), - [anon_sym_noreturn] = ACTIONS(4896), - [anon_sym_type] = ACTIONS(4896), - [anon_sym_anyopaque] = ACTIONS(4896), - [anon_sym_bool] = ACTIONS(4896), - [anon_sym_int] = ACTIONS(4896), - [anon_sym_uint] = ACTIONS(4896), - [anon_sym_float] = ACTIONS(4896), - [anon_sym_range] = ACTIONS(4896), - [anon_sym_i8] = ACTIONS(4896), - [anon_sym_i16] = ACTIONS(4896), - [anon_sym_i32] = ACTIONS(4896), - [anon_sym_i64] = ACTIONS(4896), - [anon_sym_u8] = ACTIONS(4896), - [anon_sym_u16] = ACTIONS(4896), - [anon_sym_u32] = ACTIONS(4896), - [anon_sym_u64] = ACTIONS(4896), - [anon_sym_isize] = ACTIONS(4896), - [anon_sym_usize] = ACTIONS(4896), - [anon_sym_f32] = ACTIONS(4896), - [anon_sym_f64] = ACTIONS(4896), - [anon_sym_c_char] = ACTIONS(4896), - [anon_sym_c_schar] = ACTIONS(4896), - [anon_sym_c_uchar] = ACTIONS(4896), - [anon_sym_c_short] = ACTIONS(4896), - [anon_sym_c_ushort] = ACTIONS(4896), - [anon_sym_c_int] = ACTIONS(4896), - [anon_sym_c_uint] = ACTIONS(4896), - [anon_sym_c_long] = ACTIONS(4896), - [anon_sym_c_ulong] = ACTIONS(4896), - [anon_sym_c_longlong] = ACTIONS(4896), - [anon_sym_c_ulonglong] = ACTIONS(4896), - [anon_sym_c_float] = ACTIONS(4896), - [anon_sym_c_double] = ACTIONS(4896), - [anon_sym_c_longdouble] = ACTIONS(4896), - [anon_sym_return] = ACTIONS(4896), - [anon_sym_yield] = ACTIONS(4896), - [anon_sym_break] = ACTIONS(4896), - [anon_sym_continue] = ACTIONS(4896), - [anon_sym_defer] = ACTIONS(4896), - [anon_sym_errdefer] = ACTIONS(4896), - [anon_sym_if] = ACTIONS(4896), - [anon_sym_else] = ACTIONS(4896), - [anon_sym_while] = ACTIONS(4896), - [anon_sym_expand] = ACTIONS(4896), - [anon_sym_for] = ACTIONS(4896), - [anon_sym_match] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_true] = ACTIONS(4896), - [anon_sym_false] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4896), - [anon_sym_unreachable] = ACTIONS(4896), - [anon_sym_undefined] = ACTIONS(4896), - [sym_sink] = ACTIONS(4896), - [sym_integer] = ACTIONS(4896), - [sym_float] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [sym_multiline_string] = ACTIONS(4894), - [sym_character] = ACTIONS(4894), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4894), - }, - [STATE(1976)] = { - [ts_builtin_sym_end] = ACTIONS(4898), - [sym_identifier] = ACTIONS(4900), - [anon_sym_import] = ACTIONS(4900), - [anon_sym_test] = ACTIONS(4900), - [anon_sym_hide] = ACTIONS(4900), - [anon_sym_func] = ACTIONS(4900), - [anon_sym_BANG] = ACTIONS(4898), - [anon_sym_struct] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_LBRACE] = ACTIONS(4898), - [anon_sym_RBRACE] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_DOLLAR] = ACTIONS(4898), - [anon_sym_LBRACK] = ACTIONS(4898), - [anon_sym_void] = ACTIONS(4900), - [anon_sym_noreturn] = ACTIONS(4900), - [anon_sym_type] = ACTIONS(4900), - [anon_sym_anyopaque] = ACTIONS(4900), - [anon_sym_bool] = ACTIONS(4900), - [anon_sym_int] = ACTIONS(4900), - [anon_sym_uint] = ACTIONS(4900), - [anon_sym_float] = ACTIONS(4900), - [anon_sym_range] = ACTIONS(4900), - [anon_sym_i8] = ACTIONS(4900), - [anon_sym_i16] = ACTIONS(4900), - [anon_sym_i32] = ACTIONS(4900), - [anon_sym_i64] = ACTIONS(4900), - [anon_sym_u8] = ACTIONS(4900), - [anon_sym_u16] = ACTIONS(4900), - [anon_sym_u32] = ACTIONS(4900), - [anon_sym_u64] = ACTIONS(4900), - [anon_sym_isize] = ACTIONS(4900), - [anon_sym_usize] = ACTIONS(4900), - [anon_sym_f32] = ACTIONS(4900), - [anon_sym_f64] = ACTIONS(4900), - [anon_sym_c_char] = ACTIONS(4900), - [anon_sym_c_schar] = ACTIONS(4900), - [anon_sym_c_uchar] = ACTIONS(4900), - [anon_sym_c_short] = ACTIONS(4900), - [anon_sym_c_ushort] = ACTIONS(4900), - [anon_sym_c_int] = ACTIONS(4900), - [anon_sym_c_uint] = ACTIONS(4900), - [anon_sym_c_long] = ACTIONS(4900), - [anon_sym_c_ulong] = ACTIONS(4900), - [anon_sym_c_longlong] = ACTIONS(4900), - [anon_sym_c_ulonglong] = ACTIONS(4900), - [anon_sym_c_float] = ACTIONS(4900), - [anon_sym_c_double] = ACTIONS(4900), - [anon_sym_c_longdouble] = ACTIONS(4900), - [anon_sym_return] = ACTIONS(4900), - [anon_sym_yield] = ACTIONS(4900), - [anon_sym_break] = ACTIONS(4900), - [anon_sym_continue] = ACTIONS(4900), - [anon_sym_defer] = ACTIONS(4900), - [anon_sym_errdefer] = ACTIONS(4900), - [anon_sym_if] = ACTIONS(4900), - [anon_sym_else] = ACTIONS(4900), - [anon_sym_while] = ACTIONS(4900), - [anon_sym_expand] = ACTIONS(4900), - [anon_sym_for] = ACTIONS(4900), - [anon_sym_match] = ACTIONS(4900), - [anon_sym_AMP] = ACTIONS(4898), - [anon_sym_TILDE] = ACTIONS(4898), - [anon_sym_try] = ACTIONS(4900), - [anon_sym_DOT] = ACTIONS(4898), - [anon_sym_true] = ACTIONS(4900), - [anon_sym_false] = ACTIONS(4900), - [anon_sym_null] = ACTIONS(4900), - [anon_sym_unreachable] = ACTIONS(4900), - [anon_sym_undefined] = ACTIONS(4900), - [sym_sink] = ACTIONS(4900), - [sym_integer] = ACTIONS(4900), - [sym_float] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4898), - [sym_multiline_string] = ACTIONS(4898), - [sym_character] = ACTIONS(4898), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4898), - }, - [STATE(1977)] = { - [ts_builtin_sym_end] = ACTIONS(4902), - [sym_identifier] = ACTIONS(4904), - [anon_sym_import] = ACTIONS(4904), - [anon_sym_test] = ACTIONS(4904), - [anon_sym_hide] = ACTIONS(4904), - [anon_sym_func] = ACTIONS(4904), - [anon_sym_BANG] = ACTIONS(4902), - [anon_sym_struct] = ACTIONS(4904), - [anon_sym_LPAREN] = ACTIONS(4902), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_LBRACE] = ACTIONS(4902), - [anon_sym_RBRACE] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [anon_sym_DOLLAR] = ACTIONS(4902), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_void] = ACTIONS(4904), - [anon_sym_noreturn] = ACTIONS(4904), - [anon_sym_type] = ACTIONS(4904), - [anon_sym_anyopaque] = ACTIONS(4904), - [anon_sym_bool] = ACTIONS(4904), - [anon_sym_int] = ACTIONS(4904), - [anon_sym_uint] = ACTIONS(4904), - [anon_sym_float] = ACTIONS(4904), - [anon_sym_range] = ACTIONS(4904), - [anon_sym_i8] = ACTIONS(4904), - [anon_sym_i16] = ACTIONS(4904), - [anon_sym_i32] = ACTIONS(4904), - [anon_sym_i64] = ACTIONS(4904), - [anon_sym_u8] = ACTIONS(4904), - [anon_sym_u16] = ACTIONS(4904), - [anon_sym_u32] = ACTIONS(4904), - [anon_sym_u64] = ACTIONS(4904), - [anon_sym_isize] = ACTIONS(4904), - [anon_sym_usize] = ACTIONS(4904), - [anon_sym_f32] = ACTIONS(4904), - [anon_sym_f64] = ACTIONS(4904), - [anon_sym_c_char] = ACTIONS(4904), - [anon_sym_c_schar] = ACTIONS(4904), - [anon_sym_c_uchar] = ACTIONS(4904), - [anon_sym_c_short] = ACTIONS(4904), - [anon_sym_c_ushort] = ACTIONS(4904), - [anon_sym_c_int] = ACTIONS(4904), - [anon_sym_c_uint] = ACTIONS(4904), - [anon_sym_c_long] = ACTIONS(4904), - [anon_sym_c_ulong] = ACTIONS(4904), - [anon_sym_c_longlong] = ACTIONS(4904), - [anon_sym_c_ulonglong] = ACTIONS(4904), - [anon_sym_c_float] = ACTIONS(4904), - [anon_sym_c_double] = ACTIONS(4904), - [anon_sym_c_longdouble] = ACTIONS(4904), - [anon_sym_return] = ACTIONS(4904), - [anon_sym_yield] = ACTIONS(4904), - [anon_sym_break] = ACTIONS(4904), - [anon_sym_continue] = ACTIONS(4904), - [anon_sym_defer] = ACTIONS(4904), - [anon_sym_errdefer] = ACTIONS(4904), - [anon_sym_if] = ACTIONS(4904), - [anon_sym_else] = ACTIONS(4904), - [anon_sym_while] = ACTIONS(4904), - [anon_sym_expand] = ACTIONS(4904), - [anon_sym_for] = ACTIONS(4904), - [anon_sym_match] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4902), - [anon_sym_TILDE] = ACTIONS(4902), - [anon_sym_try] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_true] = ACTIONS(4904), - [anon_sym_false] = ACTIONS(4904), - [anon_sym_null] = ACTIONS(4904), - [anon_sym_unreachable] = ACTIONS(4904), - [anon_sym_undefined] = ACTIONS(4904), - [sym_sink] = ACTIONS(4904), - [sym_integer] = ACTIONS(4904), - [sym_float] = ACTIONS(4902), - [anon_sym_DQUOTE] = ACTIONS(4902), - [sym_multiline_string] = ACTIONS(4902), - [sym_character] = ACTIONS(4902), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4902), - }, - [STATE(1978)] = { - [ts_builtin_sym_end] = ACTIONS(4906), - [sym_identifier] = ACTIONS(4908), - [anon_sym_import] = ACTIONS(4908), - [anon_sym_test] = ACTIONS(4908), - [anon_sym_hide] = ACTIONS(4908), - [anon_sym_func] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4906), - [anon_sym_struct] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_LBRACE] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_DASH] = ACTIONS(4906), - [anon_sym_DOLLAR] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_void] = ACTIONS(4908), - [anon_sym_noreturn] = ACTIONS(4908), - [anon_sym_type] = ACTIONS(4908), - [anon_sym_anyopaque] = ACTIONS(4908), - [anon_sym_bool] = ACTIONS(4908), - [anon_sym_int] = ACTIONS(4908), - [anon_sym_uint] = ACTIONS(4908), - [anon_sym_float] = ACTIONS(4908), - [anon_sym_range] = ACTIONS(4908), - [anon_sym_i8] = ACTIONS(4908), - [anon_sym_i16] = ACTIONS(4908), - [anon_sym_i32] = ACTIONS(4908), - [anon_sym_i64] = ACTIONS(4908), - [anon_sym_u8] = ACTIONS(4908), - [anon_sym_u16] = ACTIONS(4908), - [anon_sym_u32] = ACTIONS(4908), - [anon_sym_u64] = ACTIONS(4908), - [anon_sym_isize] = ACTIONS(4908), - [anon_sym_usize] = ACTIONS(4908), - [anon_sym_f32] = ACTIONS(4908), - [anon_sym_f64] = ACTIONS(4908), - [anon_sym_c_char] = ACTIONS(4908), - [anon_sym_c_schar] = ACTIONS(4908), - [anon_sym_c_uchar] = ACTIONS(4908), - [anon_sym_c_short] = ACTIONS(4908), - [anon_sym_c_ushort] = ACTIONS(4908), - [anon_sym_c_int] = ACTIONS(4908), - [anon_sym_c_uint] = ACTIONS(4908), - [anon_sym_c_long] = ACTIONS(4908), - [anon_sym_c_ulong] = ACTIONS(4908), - [anon_sym_c_longlong] = ACTIONS(4908), - [anon_sym_c_ulonglong] = ACTIONS(4908), - [anon_sym_c_float] = ACTIONS(4908), - [anon_sym_c_double] = ACTIONS(4908), - [anon_sym_c_longdouble] = ACTIONS(4908), - [anon_sym_return] = ACTIONS(4908), - [anon_sym_yield] = ACTIONS(4908), - [anon_sym_break] = ACTIONS(4908), - [anon_sym_continue] = ACTIONS(4908), - [anon_sym_defer] = ACTIONS(4908), - [anon_sym_errdefer] = ACTIONS(4908), - [anon_sym_if] = ACTIONS(4908), - [anon_sym_else] = ACTIONS(4908), - [anon_sym_while] = ACTIONS(4908), - [anon_sym_expand] = ACTIONS(4908), - [anon_sym_for] = ACTIONS(4908), - [anon_sym_match] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4906), - [anon_sym_TILDE] = ACTIONS(4906), - [anon_sym_try] = ACTIONS(4908), - [anon_sym_DOT] = ACTIONS(4906), - [anon_sym_true] = ACTIONS(4908), - [anon_sym_false] = ACTIONS(4908), - [anon_sym_null] = ACTIONS(4908), - [anon_sym_unreachable] = ACTIONS(4908), - [anon_sym_undefined] = ACTIONS(4908), - [sym_sink] = ACTIONS(4908), - [sym_integer] = ACTIONS(4908), - [sym_float] = ACTIONS(4906), - [anon_sym_DQUOTE] = ACTIONS(4906), - [sym_multiline_string] = ACTIONS(4906), - [sym_character] = ACTIONS(4906), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4906), - }, - [STATE(1979)] = { - [ts_builtin_sym_end] = ACTIONS(4910), - [sym_identifier] = ACTIONS(4912), - [anon_sym_import] = ACTIONS(4912), - [anon_sym_test] = ACTIONS(4912), - [anon_sym_hide] = ACTIONS(4912), - [anon_sym_func] = ACTIONS(4912), - [anon_sym_BANG] = ACTIONS(4910), - [anon_sym_struct] = ACTIONS(4912), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_LBRACE] = ACTIONS(4910), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_DASH] = ACTIONS(4910), - [anon_sym_DOLLAR] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_void] = ACTIONS(4912), - [anon_sym_noreturn] = ACTIONS(4912), - [anon_sym_type] = ACTIONS(4912), - [anon_sym_anyopaque] = ACTIONS(4912), - [anon_sym_bool] = ACTIONS(4912), - [anon_sym_int] = ACTIONS(4912), - [anon_sym_uint] = ACTIONS(4912), - [anon_sym_float] = ACTIONS(4912), - [anon_sym_range] = ACTIONS(4912), - [anon_sym_i8] = ACTIONS(4912), - [anon_sym_i16] = ACTIONS(4912), - [anon_sym_i32] = ACTIONS(4912), - [anon_sym_i64] = ACTIONS(4912), - [anon_sym_u8] = ACTIONS(4912), - [anon_sym_u16] = ACTIONS(4912), - [anon_sym_u32] = ACTIONS(4912), - [anon_sym_u64] = ACTIONS(4912), - [anon_sym_isize] = ACTIONS(4912), - [anon_sym_usize] = ACTIONS(4912), - [anon_sym_f32] = ACTIONS(4912), - [anon_sym_f64] = ACTIONS(4912), - [anon_sym_c_char] = ACTIONS(4912), - [anon_sym_c_schar] = ACTIONS(4912), - [anon_sym_c_uchar] = ACTIONS(4912), - [anon_sym_c_short] = ACTIONS(4912), - [anon_sym_c_ushort] = ACTIONS(4912), - [anon_sym_c_int] = ACTIONS(4912), - [anon_sym_c_uint] = ACTIONS(4912), - [anon_sym_c_long] = ACTIONS(4912), - [anon_sym_c_ulong] = ACTIONS(4912), - [anon_sym_c_longlong] = ACTIONS(4912), - [anon_sym_c_ulonglong] = ACTIONS(4912), - [anon_sym_c_float] = ACTIONS(4912), - [anon_sym_c_double] = ACTIONS(4912), - [anon_sym_c_longdouble] = ACTIONS(4912), - [anon_sym_return] = ACTIONS(4912), - [anon_sym_yield] = ACTIONS(4912), - [anon_sym_break] = ACTIONS(4912), - [anon_sym_continue] = ACTIONS(4912), - [anon_sym_defer] = ACTIONS(4912), - [anon_sym_errdefer] = ACTIONS(4912), - [anon_sym_if] = ACTIONS(4912), - [anon_sym_else] = ACTIONS(4912), - [anon_sym_while] = ACTIONS(4912), - [anon_sym_expand] = ACTIONS(4912), - [anon_sym_for] = ACTIONS(4912), - [anon_sym_match] = ACTIONS(4912), - [anon_sym_AMP] = ACTIONS(4910), - [anon_sym_TILDE] = ACTIONS(4910), - [anon_sym_try] = ACTIONS(4912), - [anon_sym_DOT] = ACTIONS(4910), - [anon_sym_true] = ACTIONS(4912), - [anon_sym_false] = ACTIONS(4912), - [anon_sym_null] = ACTIONS(4912), - [anon_sym_unreachable] = ACTIONS(4912), - [anon_sym_undefined] = ACTIONS(4912), - [sym_sink] = ACTIONS(4912), - [sym_integer] = ACTIONS(4912), - [sym_float] = ACTIONS(4910), - [anon_sym_DQUOTE] = ACTIONS(4910), - [sym_multiline_string] = ACTIONS(4910), - [sym_character] = ACTIONS(4910), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4910), - }, - [STATE(1980)] = { - [ts_builtin_sym_end] = ACTIONS(4914), - [sym_identifier] = ACTIONS(4916), - [anon_sym_import] = ACTIONS(4916), - [anon_sym_test] = ACTIONS(4916), - [anon_sym_hide] = ACTIONS(4916), - [anon_sym_func] = ACTIONS(4916), - [anon_sym_BANG] = ACTIONS(4914), - [anon_sym_struct] = ACTIONS(4916), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_LBRACE] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_DASH] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_void] = ACTIONS(4916), - [anon_sym_noreturn] = ACTIONS(4916), - [anon_sym_type] = ACTIONS(4916), - [anon_sym_anyopaque] = ACTIONS(4916), - [anon_sym_bool] = ACTIONS(4916), - [anon_sym_int] = ACTIONS(4916), - [anon_sym_uint] = ACTIONS(4916), - [anon_sym_float] = ACTIONS(4916), - [anon_sym_range] = ACTIONS(4916), - [anon_sym_i8] = ACTIONS(4916), - [anon_sym_i16] = ACTIONS(4916), - [anon_sym_i32] = ACTIONS(4916), - [anon_sym_i64] = ACTIONS(4916), - [anon_sym_u8] = ACTIONS(4916), - [anon_sym_u16] = ACTIONS(4916), - [anon_sym_u32] = ACTIONS(4916), - [anon_sym_u64] = ACTIONS(4916), - [anon_sym_isize] = ACTIONS(4916), - [anon_sym_usize] = ACTIONS(4916), - [anon_sym_f32] = ACTIONS(4916), - [anon_sym_f64] = ACTIONS(4916), - [anon_sym_c_char] = ACTIONS(4916), - [anon_sym_c_schar] = ACTIONS(4916), - [anon_sym_c_uchar] = ACTIONS(4916), - [anon_sym_c_short] = ACTIONS(4916), - [anon_sym_c_ushort] = ACTIONS(4916), - [anon_sym_c_int] = ACTIONS(4916), - [anon_sym_c_uint] = ACTIONS(4916), - [anon_sym_c_long] = ACTIONS(4916), - [anon_sym_c_ulong] = ACTIONS(4916), - [anon_sym_c_longlong] = ACTIONS(4916), - [anon_sym_c_ulonglong] = ACTIONS(4916), - [anon_sym_c_float] = ACTIONS(4916), - [anon_sym_c_double] = ACTIONS(4916), - [anon_sym_c_longdouble] = ACTIONS(4916), - [anon_sym_return] = ACTIONS(4916), - [anon_sym_yield] = ACTIONS(4916), - [anon_sym_break] = ACTIONS(4916), - [anon_sym_continue] = ACTIONS(4916), - [anon_sym_defer] = ACTIONS(4916), - [anon_sym_errdefer] = ACTIONS(4916), - [anon_sym_if] = ACTIONS(4916), - [anon_sym_else] = ACTIONS(4916), - [anon_sym_while] = ACTIONS(4916), - [anon_sym_expand] = ACTIONS(4916), - [anon_sym_for] = ACTIONS(4916), - [anon_sym_match] = ACTIONS(4916), - [anon_sym_AMP] = ACTIONS(4914), - [anon_sym_TILDE] = ACTIONS(4914), - [anon_sym_try] = ACTIONS(4916), - [anon_sym_DOT] = ACTIONS(4914), - [anon_sym_true] = ACTIONS(4916), - [anon_sym_false] = ACTIONS(4916), - [anon_sym_null] = ACTIONS(4916), - [anon_sym_unreachable] = ACTIONS(4916), - [anon_sym_undefined] = ACTIONS(4916), - [sym_sink] = ACTIONS(4916), - [sym_integer] = ACTIONS(4916), - [sym_float] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4914), - [sym_multiline_string] = ACTIONS(4914), - [sym_character] = ACTIONS(4914), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4914), - }, - [STATE(1981)] = { - [ts_builtin_sym_end] = ACTIONS(4918), - [sym_identifier] = ACTIONS(4920), - [anon_sym_import] = ACTIONS(4920), - [anon_sym_test] = ACTIONS(4920), - [anon_sym_hide] = ACTIONS(4920), - [anon_sym_func] = ACTIONS(4920), - [anon_sym_BANG] = ACTIONS(4918), - [anon_sym_struct] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_LBRACE] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4918), - [anon_sym_DOLLAR] = ACTIONS(4918), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_void] = ACTIONS(4920), - [anon_sym_noreturn] = ACTIONS(4920), - [anon_sym_type] = ACTIONS(4920), - [anon_sym_anyopaque] = ACTIONS(4920), - [anon_sym_bool] = ACTIONS(4920), - [anon_sym_int] = ACTIONS(4920), - [anon_sym_uint] = ACTIONS(4920), - [anon_sym_float] = ACTIONS(4920), - [anon_sym_range] = ACTIONS(4920), - [anon_sym_i8] = ACTIONS(4920), - [anon_sym_i16] = ACTIONS(4920), - [anon_sym_i32] = ACTIONS(4920), - [anon_sym_i64] = ACTIONS(4920), - [anon_sym_u8] = ACTIONS(4920), - [anon_sym_u16] = ACTIONS(4920), - [anon_sym_u32] = ACTIONS(4920), - [anon_sym_u64] = ACTIONS(4920), - [anon_sym_isize] = ACTIONS(4920), - [anon_sym_usize] = ACTIONS(4920), - [anon_sym_f32] = ACTIONS(4920), - [anon_sym_f64] = ACTIONS(4920), - [anon_sym_c_char] = ACTIONS(4920), - [anon_sym_c_schar] = ACTIONS(4920), - [anon_sym_c_uchar] = ACTIONS(4920), - [anon_sym_c_short] = ACTIONS(4920), - [anon_sym_c_ushort] = ACTIONS(4920), - [anon_sym_c_int] = ACTIONS(4920), - [anon_sym_c_uint] = ACTIONS(4920), - [anon_sym_c_long] = ACTIONS(4920), - [anon_sym_c_ulong] = ACTIONS(4920), - [anon_sym_c_longlong] = ACTIONS(4920), - [anon_sym_c_ulonglong] = ACTIONS(4920), - [anon_sym_c_float] = ACTIONS(4920), - [anon_sym_c_double] = ACTIONS(4920), - [anon_sym_c_longdouble] = ACTIONS(4920), - [anon_sym_return] = ACTIONS(4920), - [anon_sym_yield] = ACTIONS(4920), - [anon_sym_break] = ACTIONS(4920), - [anon_sym_continue] = ACTIONS(4920), - [anon_sym_defer] = ACTIONS(4920), - [anon_sym_errdefer] = ACTIONS(4920), - [anon_sym_if] = ACTIONS(4920), - [anon_sym_else] = ACTIONS(4920), - [anon_sym_while] = ACTIONS(4920), - [anon_sym_expand] = ACTIONS(4920), - [anon_sym_for] = ACTIONS(4920), - [anon_sym_match] = ACTIONS(4920), - [anon_sym_AMP] = ACTIONS(4918), - [anon_sym_TILDE] = ACTIONS(4918), - [anon_sym_try] = ACTIONS(4920), - [anon_sym_DOT] = ACTIONS(4918), - [anon_sym_true] = ACTIONS(4920), - [anon_sym_false] = ACTIONS(4920), - [anon_sym_null] = ACTIONS(4920), - [anon_sym_unreachable] = ACTIONS(4920), - [anon_sym_undefined] = ACTIONS(4920), - [sym_sink] = ACTIONS(4920), - [sym_integer] = ACTIONS(4920), - [sym_float] = ACTIONS(4918), - [anon_sym_DQUOTE] = ACTIONS(4918), - [sym_multiline_string] = ACTIONS(4918), - [sym_character] = ACTIONS(4918), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4918), - }, - [STATE(1982)] = { - [ts_builtin_sym_end] = ACTIONS(4922), - [sym_identifier] = ACTIONS(4924), - [anon_sym_import] = ACTIONS(4924), - [anon_sym_test] = ACTIONS(4924), - [anon_sym_hide] = ACTIONS(4924), - [anon_sym_func] = ACTIONS(4924), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_struct] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_RPAREN] = ACTIONS(4922), - [anon_sym_LBRACE] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_DOLLAR] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_void] = ACTIONS(4924), - [anon_sym_noreturn] = ACTIONS(4924), - [anon_sym_type] = ACTIONS(4924), - [anon_sym_anyopaque] = ACTIONS(4924), - [anon_sym_bool] = ACTIONS(4924), - [anon_sym_int] = ACTIONS(4924), - [anon_sym_uint] = ACTIONS(4924), - [anon_sym_float] = ACTIONS(4924), - [anon_sym_range] = ACTIONS(4924), - [anon_sym_i8] = ACTIONS(4924), - [anon_sym_i16] = ACTIONS(4924), - [anon_sym_i32] = ACTIONS(4924), - [anon_sym_i64] = ACTIONS(4924), - [anon_sym_u8] = ACTIONS(4924), - [anon_sym_u16] = ACTIONS(4924), - [anon_sym_u32] = ACTIONS(4924), - [anon_sym_u64] = ACTIONS(4924), - [anon_sym_isize] = ACTIONS(4924), - [anon_sym_usize] = ACTIONS(4924), - [anon_sym_f32] = ACTIONS(4924), - [anon_sym_f64] = ACTIONS(4924), - [anon_sym_c_char] = ACTIONS(4924), - [anon_sym_c_schar] = ACTIONS(4924), - [anon_sym_c_uchar] = ACTIONS(4924), - [anon_sym_c_short] = ACTIONS(4924), - [anon_sym_c_ushort] = ACTIONS(4924), - [anon_sym_c_int] = ACTIONS(4924), - [anon_sym_c_uint] = ACTIONS(4924), - [anon_sym_c_long] = ACTIONS(4924), - [anon_sym_c_ulong] = ACTIONS(4924), - [anon_sym_c_longlong] = ACTIONS(4924), - [anon_sym_c_ulonglong] = ACTIONS(4924), - [anon_sym_c_float] = ACTIONS(4924), - [anon_sym_c_double] = ACTIONS(4924), - [anon_sym_c_longdouble] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_yield] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_defer] = ACTIONS(4924), - [anon_sym_errdefer] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_expand] = ACTIONS(4924), - [anon_sym_for] = ACTIONS(4924), - [anon_sym_match] = ACTIONS(4924), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_TILDE] = ACTIONS(4922), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_DOT] = ACTIONS(4922), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_unreachable] = ACTIONS(4924), - [anon_sym_undefined] = ACTIONS(4924), - [sym_sink] = ACTIONS(4924), - [sym_integer] = ACTIONS(4924), - [sym_float] = ACTIONS(4922), - [anon_sym_DQUOTE] = ACTIONS(4922), - [sym_multiline_string] = ACTIONS(4922), - [sym_character] = ACTIONS(4922), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4922), - }, - [STATE(1983)] = { - [ts_builtin_sym_end] = ACTIONS(4926), - [sym_identifier] = ACTIONS(4928), - [anon_sym_import] = ACTIONS(4928), - [anon_sym_test] = ACTIONS(4928), - [anon_sym_hide] = ACTIONS(4928), - [anon_sym_func] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4926), - [anon_sym_struct] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [anon_sym_DOLLAR] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_void] = ACTIONS(4928), - [anon_sym_noreturn] = ACTIONS(4928), - [anon_sym_type] = ACTIONS(4928), - [anon_sym_anyopaque] = ACTIONS(4928), - [anon_sym_bool] = ACTIONS(4928), - [anon_sym_int] = ACTIONS(4928), - [anon_sym_uint] = ACTIONS(4928), - [anon_sym_float] = ACTIONS(4928), - [anon_sym_range] = ACTIONS(4928), - [anon_sym_i8] = ACTIONS(4928), - [anon_sym_i16] = ACTIONS(4928), - [anon_sym_i32] = ACTIONS(4928), - [anon_sym_i64] = ACTIONS(4928), - [anon_sym_u8] = ACTIONS(4928), - [anon_sym_u16] = ACTIONS(4928), - [anon_sym_u32] = ACTIONS(4928), - [anon_sym_u64] = ACTIONS(4928), - [anon_sym_isize] = ACTIONS(4928), - [anon_sym_usize] = ACTIONS(4928), - [anon_sym_f32] = ACTIONS(4928), - [anon_sym_f64] = ACTIONS(4928), - [anon_sym_c_char] = ACTIONS(4928), - [anon_sym_c_schar] = ACTIONS(4928), - [anon_sym_c_uchar] = ACTIONS(4928), - [anon_sym_c_short] = ACTIONS(4928), - [anon_sym_c_ushort] = ACTIONS(4928), - [anon_sym_c_int] = ACTIONS(4928), - [anon_sym_c_uint] = ACTIONS(4928), - [anon_sym_c_long] = ACTIONS(4928), - [anon_sym_c_ulong] = ACTIONS(4928), - [anon_sym_c_longlong] = ACTIONS(4928), - [anon_sym_c_ulonglong] = ACTIONS(4928), - [anon_sym_c_float] = ACTIONS(4928), - [anon_sym_c_double] = ACTIONS(4928), - [anon_sym_c_longdouble] = ACTIONS(4928), - [anon_sym_return] = ACTIONS(4928), - [anon_sym_yield] = ACTIONS(4928), - [anon_sym_break] = ACTIONS(4928), - [anon_sym_continue] = ACTIONS(4928), - [anon_sym_defer] = ACTIONS(4928), - [anon_sym_errdefer] = ACTIONS(4928), - [anon_sym_if] = ACTIONS(4928), - [anon_sym_else] = ACTIONS(4928), - [anon_sym_while] = ACTIONS(4928), - [anon_sym_expand] = ACTIONS(4928), - [anon_sym_for] = ACTIONS(4928), - [anon_sym_match] = ACTIONS(4928), - [anon_sym_AMP] = ACTIONS(4926), - [anon_sym_TILDE] = ACTIONS(4926), - [anon_sym_try] = ACTIONS(4928), - [anon_sym_DOT] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4928), - [anon_sym_false] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4928), - [anon_sym_unreachable] = ACTIONS(4928), - [anon_sym_undefined] = ACTIONS(4928), - [sym_sink] = ACTIONS(4928), - [sym_integer] = ACTIONS(4928), - [sym_float] = ACTIONS(4926), - [anon_sym_DQUOTE] = ACTIONS(4926), - [sym_multiline_string] = ACTIONS(4926), - [sym_character] = ACTIONS(4926), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4926), - }, - [STATE(1984)] = { - [ts_builtin_sym_end] = ACTIONS(4930), - [sym_identifier] = ACTIONS(4932), - [anon_sym_import] = ACTIONS(4932), - [anon_sym_test] = ACTIONS(4932), - [anon_sym_hide] = ACTIONS(4932), - [anon_sym_func] = ACTIONS(4932), - [anon_sym_BANG] = ACTIONS(4930), - [anon_sym_struct] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4930), - [anon_sym_RPAREN] = ACTIONS(4930), - [anon_sym_LBRACE] = ACTIONS(4930), - [anon_sym_RBRACE] = ACTIONS(4930), - [anon_sym_DASH] = ACTIONS(4930), - [anon_sym_DOLLAR] = ACTIONS(4930), - [anon_sym_LBRACK] = ACTIONS(4930), - [anon_sym_void] = ACTIONS(4932), - [anon_sym_noreturn] = ACTIONS(4932), - [anon_sym_type] = ACTIONS(4932), - [anon_sym_anyopaque] = ACTIONS(4932), - [anon_sym_bool] = ACTIONS(4932), - [anon_sym_int] = ACTIONS(4932), - [anon_sym_uint] = ACTIONS(4932), - [anon_sym_float] = ACTIONS(4932), - [anon_sym_range] = ACTIONS(4932), - [anon_sym_i8] = ACTIONS(4932), - [anon_sym_i16] = ACTIONS(4932), - [anon_sym_i32] = ACTIONS(4932), - [anon_sym_i64] = ACTIONS(4932), - [anon_sym_u8] = ACTIONS(4932), - [anon_sym_u16] = ACTIONS(4932), - [anon_sym_u32] = ACTIONS(4932), - [anon_sym_u64] = ACTIONS(4932), - [anon_sym_isize] = ACTIONS(4932), - [anon_sym_usize] = ACTIONS(4932), - [anon_sym_f32] = ACTIONS(4932), - [anon_sym_f64] = ACTIONS(4932), - [anon_sym_c_char] = ACTIONS(4932), - [anon_sym_c_schar] = ACTIONS(4932), - [anon_sym_c_uchar] = ACTIONS(4932), - [anon_sym_c_short] = ACTIONS(4932), - [anon_sym_c_ushort] = ACTIONS(4932), - [anon_sym_c_int] = ACTIONS(4932), - [anon_sym_c_uint] = ACTIONS(4932), - [anon_sym_c_long] = ACTIONS(4932), - [anon_sym_c_ulong] = ACTIONS(4932), - [anon_sym_c_longlong] = ACTIONS(4932), - [anon_sym_c_ulonglong] = ACTIONS(4932), - [anon_sym_c_float] = ACTIONS(4932), - [anon_sym_c_double] = ACTIONS(4932), - [anon_sym_c_longdouble] = ACTIONS(4932), - [anon_sym_return] = ACTIONS(4932), - [anon_sym_yield] = ACTIONS(4932), - [anon_sym_break] = ACTIONS(4932), - [anon_sym_continue] = ACTIONS(4932), - [anon_sym_defer] = ACTIONS(4932), - [anon_sym_errdefer] = ACTIONS(4932), - [anon_sym_if] = ACTIONS(4932), - [anon_sym_else] = ACTIONS(4932), - [anon_sym_while] = ACTIONS(4932), - [anon_sym_expand] = ACTIONS(4932), - [anon_sym_for] = ACTIONS(4932), - [anon_sym_match] = ACTIONS(4932), - [anon_sym_AMP] = ACTIONS(4930), - [anon_sym_TILDE] = ACTIONS(4930), - [anon_sym_try] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4930), - [anon_sym_true] = ACTIONS(4932), - [anon_sym_false] = ACTIONS(4932), - [anon_sym_null] = ACTIONS(4932), - [anon_sym_unreachable] = ACTIONS(4932), - [anon_sym_undefined] = ACTIONS(4932), - [sym_sink] = ACTIONS(4932), - [sym_integer] = ACTIONS(4932), - [sym_float] = ACTIONS(4930), - [anon_sym_DQUOTE] = ACTIONS(4930), - [sym_multiline_string] = ACTIONS(4930), - [sym_character] = ACTIONS(4930), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4930), - }, - [STATE(1985)] = { - [ts_builtin_sym_end] = ACTIONS(4934), - [sym_identifier] = ACTIONS(4936), - [anon_sym_import] = ACTIONS(4936), - [anon_sym_test] = ACTIONS(4936), - [anon_sym_hide] = ACTIONS(4936), - [anon_sym_func] = ACTIONS(4936), - [anon_sym_BANG] = ACTIONS(4934), - [anon_sym_struct] = ACTIONS(4936), - [anon_sym_LPAREN] = ACTIONS(4934), - [anon_sym_RPAREN] = ACTIONS(4934), - [anon_sym_LBRACE] = ACTIONS(4934), - [anon_sym_RBRACE] = ACTIONS(4934), - [anon_sym_DASH] = ACTIONS(4934), - [anon_sym_DOLLAR] = ACTIONS(4934), - [anon_sym_LBRACK] = ACTIONS(4934), - [anon_sym_void] = ACTIONS(4936), - [anon_sym_noreturn] = ACTIONS(4936), - [anon_sym_type] = ACTIONS(4936), - [anon_sym_anyopaque] = ACTIONS(4936), - [anon_sym_bool] = ACTIONS(4936), - [anon_sym_int] = ACTIONS(4936), - [anon_sym_uint] = ACTIONS(4936), - [anon_sym_float] = ACTIONS(4936), - [anon_sym_range] = ACTIONS(4936), - [anon_sym_i8] = ACTIONS(4936), - [anon_sym_i16] = ACTIONS(4936), - [anon_sym_i32] = ACTIONS(4936), - [anon_sym_i64] = ACTIONS(4936), - [anon_sym_u8] = ACTIONS(4936), - [anon_sym_u16] = ACTIONS(4936), - [anon_sym_u32] = ACTIONS(4936), - [anon_sym_u64] = ACTIONS(4936), - [anon_sym_isize] = ACTIONS(4936), - [anon_sym_usize] = ACTIONS(4936), - [anon_sym_f32] = ACTIONS(4936), - [anon_sym_f64] = ACTIONS(4936), - [anon_sym_c_char] = ACTIONS(4936), - [anon_sym_c_schar] = ACTIONS(4936), - [anon_sym_c_uchar] = ACTIONS(4936), - [anon_sym_c_short] = ACTIONS(4936), - [anon_sym_c_ushort] = ACTIONS(4936), - [anon_sym_c_int] = ACTIONS(4936), - [anon_sym_c_uint] = ACTIONS(4936), - [anon_sym_c_long] = ACTIONS(4936), - [anon_sym_c_ulong] = ACTIONS(4936), - [anon_sym_c_longlong] = ACTIONS(4936), - [anon_sym_c_ulonglong] = ACTIONS(4936), - [anon_sym_c_float] = ACTIONS(4936), - [anon_sym_c_double] = ACTIONS(4936), - [anon_sym_c_longdouble] = ACTIONS(4936), - [anon_sym_return] = ACTIONS(4936), - [anon_sym_yield] = ACTIONS(4936), - [anon_sym_break] = ACTIONS(4936), - [anon_sym_continue] = ACTIONS(4936), - [anon_sym_defer] = ACTIONS(4936), - [anon_sym_errdefer] = ACTIONS(4936), - [anon_sym_if] = ACTIONS(4936), - [anon_sym_else] = ACTIONS(4936), - [anon_sym_while] = ACTIONS(4936), - [anon_sym_expand] = ACTIONS(4936), - [anon_sym_for] = ACTIONS(4936), - [anon_sym_match] = ACTIONS(4936), - [anon_sym_AMP] = ACTIONS(4934), - [anon_sym_TILDE] = ACTIONS(4934), - [anon_sym_try] = ACTIONS(4936), - [anon_sym_DOT] = ACTIONS(4934), - [anon_sym_true] = ACTIONS(4936), - [anon_sym_false] = ACTIONS(4936), - [anon_sym_null] = ACTIONS(4936), - [anon_sym_unreachable] = ACTIONS(4936), - [anon_sym_undefined] = ACTIONS(4936), - [sym_sink] = ACTIONS(4936), - [sym_integer] = ACTIONS(4936), - [sym_float] = ACTIONS(4934), - [anon_sym_DQUOTE] = ACTIONS(4934), - [sym_multiline_string] = ACTIONS(4934), - [sym_character] = ACTIONS(4934), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4934), - }, - [STATE(1986)] = { - [ts_builtin_sym_end] = ACTIONS(4938), - [sym_identifier] = ACTIONS(4940), - [anon_sym_import] = ACTIONS(4940), - [anon_sym_test] = ACTIONS(4940), - [anon_sym_hide] = ACTIONS(4940), - [anon_sym_func] = ACTIONS(4940), - [anon_sym_BANG] = ACTIONS(4938), - [anon_sym_struct] = ACTIONS(4940), - [anon_sym_LPAREN] = ACTIONS(4938), - [anon_sym_RPAREN] = ACTIONS(4938), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_DASH] = ACTIONS(4938), - [anon_sym_DOLLAR] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_void] = ACTIONS(4940), - [anon_sym_noreturn] = ACTIONS(4940), - [anon_sym_type] = ACTIONS(4940), - [anon_sym_anyopaque] = ACTIONS(4940), - [anon_sym_bool] = ACTIONS(4940), - [anon_sym_int] = ACTIONS(4940), - [anon_sym_uint] = ACTIONS(4940), - [anon_sym_float] = ACTIONS(4940), - [anon_sym_range] = ACTIONS(4940), - [anon_sym_i8] = ACTIONS(4940), - [anon_sym_i16] = ACTIONS(4940), - [anon_sym_i32] = ACTIONS(4940), - [anon_sym_i64] = ACTIONS(4940), - [anon_sym_u8] = ACTIONS(4940), - [anon_sym_u16] = ACTIONS(4940), - [anon_sym_u32] = ACTIONS(4940), - [anon_sym_u64] = ACTIONS(4940), - [anon_sym_isize] = ACTIONS(4940), - [anon_sym_usize] = ACTIONS(4940), - [anon_sym_f32] = ACTIONS(4940), - [anon_sym_f64] = ACTIONS(4940), - [anon_sym_c_char] = ACTIONS(4940), - [anon_sym_c_schar] = ACTIONS(4940), - [anon_sym_c_uchar] = ACTIONS(4940), - [anon_sym_c_short] = ACTIONS(4940), - [anon_sym_c_ushort] = ACTIONS(4940), - [anon_sym_c_int] = ACTIONS(4940), - [anon_sym_c_uint] = ACTIONS(4940), - [anon_sym_c_long] = ACTIONS(4940), - [anon_sym_c_ulong] = ACTIONS(4940), - [anon_sym_c_longlong] = ACTIONS(4940), - [anon_sym_c_ulonglong] = ACTIONS(4940), - [anon_sym_c_float] = ACTIONS(4940), - [anon_sym_c_double] = ACTIONS(4940), - [anon_sym_c_longdouble] = ACTIONS(4940), - [anon_sym_return] = ACTIONS(4940), - [anon_sym_yield] = ACTIONS(4940), - [anon_sym_break] = ACTIONS(4940), - [anon_sym_continue] = ACTIONS(4940), - [anon_sym_defer] = ACTIONS(4940), - [anon_sym_errdefer] = ACTIONS(4940), - [anon_sym_if] = ACTIONS(4940), - [anon_sym_else] = ACTIONS(4940), - [anon_sym_while] = ACTIONS(4940), - [anon_sym_expand] = ACTIONS(4940), - [anon_sym_for] = ACTIONS(4940), - [anon_sym_match] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4938), - [anon_sym_TILDE] = ACTIONS(4938), - [anon_sym_try] = ACTIONS(4940), - [anon_sym_DOT] = ACTIONS(4938), - [anon_sym_true] = ACTIONS(4940), - [anon_sym_false] = ACTIONS(4940), - [anon_sym_null] = ACTIONS(4940), - [anon_sym_unreachable] = ACTIONS(4940), - [anon_sym_undefined] = ACTIONS(4940), - [sym_sink] = ACTIONS(4940), - [sym_integer] = ACTIONS(4940), - [sym_float] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(4938), - [sym_multiline_string] = ACTIONS(4938), - [sym_character] = ACTIONS(4938), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4938), - }, - [STATE(1987)] = { - [ts_builtin_sym_end] = ACTIONS(4942), - [sym_identifier] = ACTIONS(4944), - [anon_sym_import] = ACTIONS(4944), - [anon_sym_test] = ACTIONS(4944), - [anon_sym_hide] = ACTIONS(4944), - [anon_sym_func] = ACTIONS(4944), - [anon_sym_BANG] = ACTIONS(4942), - [anon_sym_struct] = ACTIONS(4944), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4942), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_DASH] = ACTIONS(4942), - [anon_sym_DOLLAR] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_void] = ACTIONS(4944), - [anon_sym_noreturn] = ACTIONS(4944), - [anon_sym_type] = ACTIONS(4944), - [anon_sym_anyopaque] = ACTIONS(4944), - [anon_sym_bool] = ACTIONS(4944), - [anon_sym_int] = ACTIONS(4944), - [anon_sym_uint] = ACTIONS(4944), - [anon_sym_float] = ACTIONS(4944), - [anon_sym_range] = ACTIONS(4944), - [anon_sym_i8] = ACTIONS(4944), - [anon_sym_i16] = ACTIONS(4944), - [anon_sym_i32] = ACTIONS(4944), - [anon_sym_i64] = ACTIONS(4944), - [anon_sym_u8] = ACTIONS(4944), - [anon_sym_u16] = ACTIONS(4944), - [anon_sym_u32] = ACTIONS(4944), - [anon_sym_u64] = ACTIONS(4944), - [anon_sym_isize] = ACTIONS(4944), - [anon_sym_usize] = ACTIONS(4944), - [anon_sym_f32] = ACTIONS(4944), - [anon_sym_f64] = ACTIONS(4944), - [anon_sym_c_char] = ACTIONS(4944), - [anon_sym_c_schar] = ACTIONS(4944), - [anon_sym_c_uchar] = ACTIONS(4944), - [anon_sym_c_short] = ACTIONS(4944), - [anon_sym_c_ushort] = ACTIONS(4944), - [anon_sym_c_int] = ACTIONS(4944), - [anon_sym_c_uint] = ACTIONS(4944), - [anon_sym_c_long] = ACTIONS(4944), - [anon_sym_c_ulong] = ACTIONS(4944), - [anon_sym_c_longlong] = ACTIONS(4944), - [anon_sym_c_ulonglong] = ACTIONS(4944), - [anon_sym_c_float] = ACTIONS(4944), - [anon_sym_c_double] = ACTIONS(4944), - [anon_sym_c_longdouble] = ACTIONS(4944), - [anon_sym_return] = ACTIONS(4944), - [anon_sym_yield] = ACTIONS(4944), - [anon_sym_break] = ACTIONS(4944), - [anon_sym_continue] = ACTIONS(4944), - [anon_sym_defer] = ACTIONS(4944), - [anon_sym_errdefer] = ACTIONS(4944), - [anon_sym_if] = ACTIONS(4944), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_while] = ACTIONS(4944), - [anon_sym_expand] = ACTIONS(4944), - [anon_sym_for] = ACTIONS(4944), - [anon_sym_match] = ACTIONS(4944), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_TILDE] = ACTIONS(4942), - [anon_sym_try] = ACTIONS(4944), - [anon_sym_DOT] = ACTIONS(4942), - [anon_sym_true] = ACTIONS(4944), - [anon_sym_false] = ACTIONS(4944), - [anon_sym_null] = ACTIONS(4944), - [anon_sym_unreachable] = ACTIONS(4944), - [anon_sym_undefined] = ACTIONS(4944), - [sym_sink] = ACTIONS(4944), - [sym_integer] = ACTIONS(4944), - [sym_float] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4942), - [sym_multiline_string] = ACTIONS(4942), - [sym_character] = ACTIONS(4942), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4942), - }, - [STATE(1988)] = { - [ts_builtin_sym_end] = ACTIONS(4946), - [sym_identifier] = ACTIONS(4948), - [anon_sym_import] = ACTIONS(4948), - [anon_sym_test] = ACTIONS(4948), - [anon_sym_hide] = ACTIONS(4948), - [anon_sym_func] = ACTIONS(4948), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_struct] = ACTIONS(4948), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_DASH] = ACTIONS(4946), - [anon_sym_DOLLAR] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_void] = ACTIONS(4948), - [anon_sym_noreturn] = ACTIONS(4948), - [anon_sym_type] = ACTIONS(4948), - [anon_sym_anyopaque] = ACTIONS(4948), - [anon_sym_bool] = ACTIONS(4948), - [anon_sym_int] = ACTIONS(4948), - [anon_sym_uint] = ACTIONS(4948), - [anon_sym_float] = ACTIONS(4948), - [anon_sym_range] = ACTIONS(4948), - [anon_sym_i8] = ACTIONS(4948), - [anon_sym_i16] = ACTIONS(4948), - [anon_sym_i32] = ACTIONS(4948), - [anon_sym_i64] = ACTIONS(4948), - [anon_sym_u8] = ACTIONS(4948), - [anon_sym_u16] = ACTIONS(4948), - [anon_sym_u32] = ACTIONS(4948), - [anon_sym_u64] = ACTIONS(4948), - [anon_sym_isize] = ACTIONS(4948), - [anon_sym_usize] = ACTIONS(4948), - [anon_sym_f32] = ACTIONS(4948), - [anon_sym_f64] = ACTIONS(4948), - [anon_sym_c_char] = ACTIONS(4948), - [anon_sym_c_schar] = ACTIONS(4948), - [anon_sym_c_uchar] = ACTIONS(4948), - [anon_sym_c_short] = ACTIONS(4948), - [anon_sym_c_ushort] = ACTIONS(4948), - [anon_sym_c_int] = ACTIONS(4948), - [anon_sym_c_uint] = ACTIONS(4948), - [anon_sym_c_long] = ACTIONS(4948), - [anon_sym_c_ulong] = ACTIONS(4948), - [anon_sym_c_longlong] = ACTIONS(4948), - [anon_sym_c_ulonglong] = ACTIONS(4948), - [anon_sym_c_float] = ACTIONS(4948), - [anon_sym_c_double] = ACTIONS(4948), - [anon_sym_c_longdouble] = ACTIONS(4948), - [anon_sym_return] = ACTIONS(4948), - [anon_sym_yield] = ACTIONS(4948), - [anon_sym_break] = ACTIONS(4948), - [anon_sym_continue] = ACTIONS(4948), - [anon_sym_defer] = ACTIONS(4948), - [anon_sym_errdefer] = ACTIONS(4948), - [anon_sym_if] = ACTIONS(4948), - [anon_sym_else] = ACTIONS(4948), - [anon_sym_while] = ACTIONS(4948), - [anon_sym_expand] = ACTIONS(4948), - [anon_sym_for] = ACTIONS(4948), - [anon_sym_match] = ACTIONS(4948), - [anon_sym_AMP] = ACTIONS(4946), - [anon_sym_TILDE] = ACTIONS(4946), - [anon_sym_try] = ACTIONS(4948), - [anon_sym_DOT] = ACTIONS(4946), - [anon_sym_true] = ACTIONS(4948), - [anon_sym_false] = ACTIONS(4948), - [anon_sym_null] = ACTIONS(4948), - [anon_sym_unreachable] = ACTIONS(4948), - [anon_sym_undefined] = ACTIONS(4948), - [sym_sink] = ACTIONS(4948), - [sym_integer] = ACTIONS(4948), - [sym_float] = ACTIONS(4946), - [anon_sym_DQUOTE] = ACTIONS(4946), - [sym_multiline_string] = ACTIONS(4946), - [sym_character] = ACTIONS(4946), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4946), - }, - [STATE(1989)] = { - [ts_builtin_sym_end] = ACTIONS(4950), - [sym_identifier] = ACTIONS(4952), - [anon_sym_import] = ACTIONS(4952), - [anon_sym_test] = ACTIONS(4952), - [anon_sym_hide] = ACTIONS(4952), - [anon_sym_func] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4950), - [anon_sym_struct] = ACTIONS(4952), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4950), - [anon_sym_LBRACE] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4950), - [anon_sym_DASH] = ACTIONS(4950), - [anon_sym_DOLLAR] = ACTIONS(4950), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_void] = ACTIONS(4952), - [anon_sym_noreturn] = ACTIONS(4952), - [anon_sym_type] = ACTIONS(4952), - [anon_sym_anyopaque] = ACTIONS(4952), - [anon_sym_bool] = ACTIONS(4952), - [anon_sym_int] = ACTIONS(4952), - [anon_sym_uint] = ACTIONS(4952), - [anon_sym_float] = ACTIONS(4952), - [anon_sym_range] = ACTIONS(4952), - [anon_sym_i8] = ACTIONS(4952), - [anon_sym_i16] = ACTIONS(4952), - [anon_sym_i32] = ACTIONS(4952), - [anon_sym_i64] = ACTIONS(4952), - [anon_sym_u8] = ACTIONS(4952), - [anon_sym_u16] = ACTIONS(4952), - [anon_sym_u32] = ACTIONS(4952), - [anon_sym_u64] = ACTIONS(4952), - [anon_sym_isize] = ACTIONS(4952), - [anon_sym_usize] = ACTIONS(4952), - [anon_sym_f32] = ACTIONS(4952), - [anon_sym_f64] = ACTIONS(4952), - [anon_sym_c_char] = ACTIONS(4952), - [anon_sym_c_schar] = ACTIONS(4952), - [anon_sym_c_uchar] = ACTIONS(4952), - [anon_sym_c_short] = ACTIONS(4952), - [anon_sym_c_ushort] = ACTIONS(4952), - [anon_sym_c_int] = ACTIONS(4952), - [anon_sym_c_uint] = ACTIONS(4952), - [anon_sym_c_long] = ACTIONS(4952), - [anon_sym_c_ulong] = ACTIONS(4952), - [anon_sym_c_longlong] = ACTIONS(4952), - [anon_sym_c_ulonglong] = ACTIONS(4952), - [anon_sym_c_float] = ACTIONS(4952), - [anon_sym_c_double] = ACTIONS(4952), - [anon_sym_c_longdouble] = ACTIONS(4952), - [anon_sym_return] = ACTIONS(4952), - [anon_sym_yield] = ACTIONS(4952), - [anon_sym_break] = ACTIONS(4952), - [anon_sym_continue] = ACTIONS(4952), - [anon_sym_defer] = ACTIONS(4952), - [anon_sym_errdefer] = ACTIONS(4952), - [anon_sym_if] = ACTIONS(4952), - [anon_sym_else] = ACTIONS(4952), - [anon_sym_while] = ACTIONS(4952), - [anon_sym_expand] = ACTIONS(4952), - [anon_sym_for] = ACTIONS(4952), - [anon_sym_match] = ACTIONS(4952), - [anon_sym_AMP] = ACTIONS(4950), - [anon_sym_TILDE] = ACTIONS(4950), - [anon_sym_try] = ACTIONS(4952), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_true] = ACTIONS(4952), - [anon_sym_false] = ACTIONS(4952), - [anon_sym_null] = ACTIONS(4952), - [anon_sym_unreachable] = ACTIONS(4952), - [anon_sym_undefined] = ACTIONS(4952), - [sym_sink] = ACTIONS(4952), - [sym_integer] = ACTIONS(4952), - [sym_float] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4950), - [sym_multiline_string] = ACTIONS(4950), - [sym_character] = ACTIONS(4950), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4950), - }, - [STATE(1990)] = { - [ts_builtin_sym_end] = ACTIONS(4954), - [sym_identifier] = ACTIONS(4956), - [anon_sym_import] = ACTIONS(4956), - [anon_sym_test] = ACTIONS(4956), - [anon_sym_hide] = ACTIONS(4956), - [anon_sym_func] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4954), - [anon_sym_struct] = ACTIONS(4956), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_RPAREN] = ACTIONS(4954), - [anon_sym_LBRACE] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_DASH] = ACTIONS(4954), - [anon_sym_DOLLAR] = ACTIONS(4954), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_void] = ACTIONS(4956), - [anon_sym_noreturn] = ACTIONS(4956), - [anon_sym_type] = ACTIONS(4956), - [anon_sym_anyopaque] = ACTIONS(4956), - [anon_sym_bool] = ACTIONS(4956), - [anon_sym_int] = ACTIONS(4956), - [anon_sym_uint] = ACTIONS(4956), - [anon_sym_float] = ACTIONS(4956), - [anon_sym_range] = ACTIONS(4956), - [anon_sym_i8] = ACTIONS(4956), - [anon_sym_i16] = ACTIONS(4956), - [anon_sym_i32] = ACTIONS(4956), - [anon_sym_i64] = ACTIONS(4956), - [anon_sym_u8] = ACTIONS(4956), - [anon_sym_u16] = ACTIONS(4956), - [anon_sym_u32] = ACTIONS(4956), - [anon_sym_u64] = ACTIONS(4956), - [anon_sym_isize] = ACTIONS(4956), - [anon_sym_usize] = ACTIONS(4956), - [anon_sym_f32] = ACTIONS(4956), - [anon_sym_f64] = ACTIONS(4956), - [anon_sym_c_char] = ACTIONS(4956), - [anon_sym_c_schar] = ACTIONS(4956), - [anon_sym_c_uchar] = ACTIONS(4956), - [anon_sym_c_short] = ACTIONS(4956), - [anon_sym_c_ushort] = ACTIONS(4956), - [anon_sym_c_int] = ACTIONS(4956), - [anon_sym_c_uint] = ACTIONS(4956), - [anon_sym_c_long] = ACTIONS(4956), - [anon_sym_c_ulong] = ACTIONS(4956), - [anon_sym_c_longlong] = ACTIONS(4956), - [anon_sym_c_ulonglong] = ACTIONS(4956), - [anon_sym_c_float] = ACTIONS(4956), - [anon_sym_c_double] = ACTIONS(4956), - [anon_sym_c_longdouble] = ACTIONS(4956), - [anon_sym_return] = ACTIONS(4956), - [anon_sym_yield] = ACTIONS(4956), - [anon_sym_break] = ACTIONS(4956), - [anon_sym_continue] = ACTIONS(4956), - [anon_sym_defer] = ACTIONS(4956), - [anon_sym_errdefer] = ACTIONS(4956), - [anon_sym_if] = ACTIONS(4956), - [anon_sym_else] = ACTIONS(4956), - [anon_sym_while] = ACTIONS(4956), - [anon_sym_expand] = ACTIONS(4956), - [anon_sym_for] = ACTIONS(4956), - [anon_sym_match] = ACTIONS(4956), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_TILDE] = ACTIONS(4954), - [anon_sym_try] = ACTIONS(4956), - [anon_sym_DOT] = ACTIONS(4954), - [anon_sym_true] = ACTIONS(4956), - [anon_sym_false] = ACTIONS(4956), - [anon_sym_null] = ACTIONS(4956), - [anon_sym_unreachable] = ACTIONS(4956), - [anon_sym_undefined] = ACTIONS(4956), - [sym_sink] = ACTIONS(4956), - [sym_integer] = ACTIONS(4956), - [sym_float] = ACTIONS(4954), - [anon_sym_DQUOTE] = ACTIONS(4954), - [sym_multiline_string] = ACTIONS(4954), - [sym_character] = ACTIONS(4954), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4954), - }, - [STATE(1991)] = { - [ts_builtin_sym_end] = ACTIONS(4958), - [sym_identifier] = ACTIONS(4960), - [anon_sym_import] = ACTIONS(4960), - [anon_sym_test] = ACTIONS(4960), - [anon_sym_hide] = ACTIONS(4960), - [anon_sym_func] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4958), - [anon_sym_struct] = ACTIONS(4960), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_RPAREN] = ACTIONS(4958), - [anon_sym_LBRACE] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_DASH] = ACTIONS(4958), - [anon_sym_DOLLAR] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_void] = ACTIONS(4960), - [anon_sym_noreturn] = ACTIONS(4960), - [anon_sym_type] = ACTIONS(4960), - [anon_sym_anyopaque] = ACTIONS(4960), - [anon_sym_bool] = ACTIONS(4960), - [anon_sym_int] = ACTIONS(4960), - [anon_sym_uint] = ACTIONS(4960), - [anon_sym_float] = ACTIONS(4960), - [anon_sym_range] = ACTIONS(4960), - [anon_sym_i8] = ACTIONS(4960), - [anon_sym_i16] = ACTIONS(4960), - [anon_sym_i32] = ACTIONS(4960), - [anon_sym_i64] = ACTIONS(4960), - [anon_sym_u8] = ACTIONS(4960), - [anon_sym_u16] = ACTIONS(4960), - [anon_sym_u32] = ACTIONS(4960), - [anon_sym_u64] = ACTIONS(4960), - [anon_sym_isize] = ACTIONS(4960), - [anon_sym_usize] = ACTIONS(4960), - [anon_sym_f32] = ACTIONS(4960), - [anon_sym_f64] = ACTIONS(4960), - [anon_sym_c_char] = ACTIONS(4960), - [anon_sym_c_schar] = ACTIONS(4960), - [anon_sym_c_uchar] = ACTIONS(4960), - [anon_sym_c_short] = ACTIONS(4960), - [anon_sym_c_ushort] = ACTIONS(4960), - [anon_sym_c_int] = ACTIONS(4960), - [anon_sym_c_uint] = ACTIONS(4960), - [anon_sym_c_long] = ACTIONS(4960), - [anon_sym_c_ulong] = ACTIONS(4960), - [anon_sym_c_longlong] = ACTIONS(4960), - [anon_sym_c_ulonglong] = ACTIONS(4960), - [anon_sym_c_float] = ACTIONS(4960), - [anon_sym_c_double] = ACTIONS(4960), - [anon_sym_c_longdouble] = ACTIONS(4960), - [anon_sym_return] = ACTIONS(4960), - [anon_sym_yield] = ACTIONS(4960), - [anon_sym_break] = ACTIONS(4960), - [anon_sym_continue] = ACTIONS(4960), - [anon_sym_defer] = ACTIONS(4960), - [anon_sym_errdefer] = ACTIONS(4960), - [anon_sym_if] = ACTIONS(4960), - [anon_sym_else] = ACTIONS(4960), - [anon_sym_while] = ACTIONS(4960), - [anon_sym_expand] = ACTIONS(4960), - [anon_sym_for] = ACTIONS(4960), - [anon_sym_match] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4958), - [anon_sym_TILDE] = ACTIONS(4958), - [anon_sym_try] = ACTIONS(4960), - [anon_sym_DOT] = ACTIONS(4958), - [anon_sym_true] = ACTIONS(4960), - [anon_sym_false] = ACTIONS(4960), - [anon_sym_null] = ACTIONS(4960), - [anon_sym_unreachable] = ACTIONS(4960), - [anon_sym_undefined] = ACTIONS(4960), - [sym_sink] = ACTIONS(4960), - [sym_integer] = ACTIONS(4960), - [sym_float] = ACTIONS(4958), - [anon_sym_DQUOTE] = ACTIONS(4958), - [sym_multiline_string] = ACTIONS(4958), - [sym_character] = ACTIONS(4958), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4958), - }, - [STATE(1992)] = { - [ts_builtin_sym_end] = ACTIONS(4962), - [sym_identifier] = ACTIONS(4964), - [anon_sym_import] = ACTIONS(4964), - [anon_sym_test] = ACTIONS(4964), - [anon_sym_hide] = ACTIONS(4964), - [anon_sym_func] = ACTIONS(4964), - [anon_sym_BANG] = ACTIONS(4962), - [anon_sym_struct] = ACTIONS(4964), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_DASH] = ACTIONS(4962), - [anon_sym_DOLLAR] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_void] = ACTIONS(4964), - [anon_sym_noreturn] = ACTIONS(4964), - [anon_sym_type] = ACTIONS(4964), - [anon_sym_anyopaque] = ACTIONS(4964), - [anon_sym_bool] = ACTIONS(4964), - [anon_sym_int] = ACTIONS(4964), - [anon_sym_uint] = ACTIONS(4964), - [anon_sym_float] = ACTIONS(4964), - [anon_sym_range] = ACTIONS(4964), - [anon_sym_i8] = ACTIONS(4964), - [anon_sym_i16] = ACTIONS(4964), - [anon_sym_i32] = ACTIONS(4964), - [anon_sym_i64] = ACTIONS(4964), - [anon_sym_u8] = ACTIONS(4964), - [anon_sym_u16] = ACTIONS(4964), - [anon_sym_u32] = ACTIONS(4964), - [anon_sym_u64] = ACTIONS(4964), - [anon_sym_isize] = ACTIONS(4964), - [anon_sym_usize] = ACTIONS(4964), - [anon_sym_f32] = ACTIONS(4964), - [anon_sym_f64] = ACTIONS(4964), - [anon_sym_c_char] = ACTIONS(4964), - [anon_sym_c_schar] = ACTIONS(4964), - [anon_sym_c_uchar] = ACTIONS(4964), - [anon_sym_c_short] = ACTIONS(4964), - [anon_sym_c_ushort] = ACTIONS(4964), - [anon_sym_c_int] = ACTIONS(4964), - [anon_sym_c_uint] = ACTIONS(4964), - [anon_sym_c_long] = ACTIONS(4964), - [anon_sym_c_ulong] = ACTIONS(4964), - [anon_sym_c_longlong] = ACTIONS(4964), - [anon_sym_c_ulonglong] = ACTIONS(4964), - [anon_sym_c_float] = ACTIONS(4964), - [anon_sym_c_double] = ACTIONS(4964), - [anon_sym_c_longdouble] = ACTIONS(4964), - [anon_sym_return] = ACTIONS(4964), - [anon_sym_yield] = ACTIONS(4964), - [anon_sym_break] = ACTIONS(4964), - [anon_sym_continue] = ACTIONS(4964), - [anon_sym_defer] = ACTIONS(4964), - [anon_sym_errdefer] = ACTIONS(4964), - [anon_sym_if] = ACTIONS(4964), - [anon_sym_else] = ACTIONS(4964), - [anon_sym_while] = ACTIONS(4964), - [anon_sym_expand] = ACTIONS(4964), - [anon_sym_for] = ACTIONS(4964), - [anon_sym_match] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_TILDE] = ACTIONS(4962), - [anon_sym_try] = ACTIONS(4964), - [anon_sym_DOT] = ACTIONS(4962), - [anon_sym_true] = ACTIONS(4964), - [anon_sym_false] = ACTIONS(4964), - [anon_sym_null] = ACTIONS(4964), - [anon_sym_unreachable] = ACTIONS(4964), - [anon_sym_undefined] = ACTIONS(4964), - [sym_sink] = ACTIONS(4964), - [sym_integer] = ACTIONS(4964), - [sym_float] = ACTIONS(4962), - [anon_sym_DQUOTE] = ACTIONS(4962), - [sym_multiline_string] = ACTIONS(4962), - [sym_character] = ACTIONS(4962), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4962), - }, - [STATE(1993)] = { - [ts_builtin_sym_end] = ACTIONS(4966), - [sym_identifier] = ACTIONS(4968), - [anon_sym_import] = ACTIONS(4968), - [anon_sym_test] = ACTIONS(4968), - [anon_sym_hide] = ACTIONS(4968), - [anon_sym_func] = ACTIONS(4968), - [anon_sym_BANG] = ACTIONS(4966), - [anon_sym_struct] = ACTIONS(4968), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4966), - [anon_sym_DOLLAR] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_void] = ACTIONS(4968), - [anon_sym_noreturn] = ACTIONS(4968), - [anon_sym_type] = ACTIONS(4968), - [anon_sym_anyopaque] = ACTIONS(4968), - [anon_sym_bool] = ACTIONS(4968), - [anon_sym_int] = ACTIONS(4968), - [anon_sym_uint] = ACTIONS(4968), - [anon_sym_float] = ACTIONS(4968), - [anon_sym_range] = ACTIONS(4968), - [anon_sym_i8] = ACTIONS(4968), - [anon_sym_i16] = ACTIONS(4968), - [anon_sym_i32] = ACTIONS(4968), - [anon_sym_i64] = ACTIONS(4968), - [anon_sym_u8] = ACTIONS(4968), - [anon_sym_u16] = ACTIONS(4968), - [anon_sym_u32] = ACTIONS(4968), - [anon_sym_u64] = ACTIONS(4968), - [anon_sym_isize] = ACTIONS(4968), - [anon_sym_usize] = ACTIONS(4968), - [anon_sym_f32] = ACTIONS(4968), - [anon_sym_f64] = ACTIONS(4968), - [anon_sym_c_char] = ACTIONS(4968), - [anon_sym_c_schar] = ACTIONS(4968), - [anon_sym_c_uchar] = ACTIONS(4968), - [anon_sym_c_short] = ACTIONS(4968), - [anon_sym_c_ushort] = ACTIONS(4968), - [anon_sym_c_int] = ACTIONS(4968), - [anon_sym_c_uint] = ACTIONS(4968), - [anon_sym_c_long] = ACTIONS(4968), - [anon_sym_c_ulong] = ACTIONS(4968), - [anon_sym_c_longlong] = ACTIONS(4968), - [anon_sym_c_ulonglong] = ACTIONS(4968), - [anon_sym_c_float] = ACTIONS(4968), - [anon_sym_c_double] = ACTIONS(4968), - [anon_sym_c_longdouble] = ACTIONS(4968), - [anon_sym_return] = ACTIONS(4968), - [anon_sym_yield] = ACTIONS(4968), - [anon_sym_break] = ACTIONS(4968), - [anon_sym_continue] = ACTIONS(4968), - [anon_sym_defer] = ACTIONS(4968), - [anon_sym_errdefer] = ACTIONS(4968), - [anon_sym_if] = ACTIONS(4968), - [anon_sym_else] = ACTIONS(4968), - [anon_sym_while] = ACTIONS(4968), - [anon_sym_expand] = ACTIONS(4968), - [anon_sym_for] = ACTIONS(4968), - [anon_sym_match] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4966), - [anon_sym_TILDE] = ACTIONS(4966), - [anon_sym_try] = ACTIONS(4968), - [anon_sym_DOT] = ACTIONS(4966), - [anon_sym_true] = ACTIONS(4968), - [anon_sym_false] = ACTIONS(4968), - [anon_sym_null] = ACTIONS(4968), - [anon_sym_unreachable] = ACTIONS(4968), - [anon_sym_undefined] = ACTIONS(4968), - [sym_sink] = ACTIONS(4968), - [sym_integer] = ACTIONS(4968), - [sym_float] = ACTIONS(4966), - [anon_sym_DQUOTE] = ACTIONS(4966), - [sym_multiline_string] = ACTIONS(4966), - [sym_character] = ACTIONS(4966), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4966), - }, - [STATE(1994)] = { - [ts_builtin_sym_end] = ACTIONS(4970), - [sym_identifier] = ACTIONS(4972), - [anon_sym_import] = ACTIONS(4972), - [anon_sym_test] = ACTIONS(4972), - [anon_sym_hide] = ACTIONS(4972), - [anon_sym_func] = ACTIONS(4972), - [anon_sym_BANG] = ACTIONS(4970), - [anon_sym_struct] = ACTIONS(4972), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4970), - [anon_sym_DOLLAR] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_void] = ACTIONS(4972), - [anon_sym_noreturn] = ACTIONS(4972), - [anon_sym_type] = ACTIONS(4972), - [anon_sym_anyopaque] = ACTIONS(4972), - [anon_sym_bool] = ACTIONS(4972), - [anon_sym_int] = ACTIONS(4972), - [anon_sym_uint] = ACTIONS(4972), - [anon_sym_float] = ACTIONS(4972), - [anon_sym_range] = ACTIONS(4972), - [anon_sym_i8] = ACTIONS(4972), - [anon_sym_i16] = ACTIONS(4972), - [anon_sym_i32] = ACTIONS(4972), - [anon_sym_i64] = ACTIONS(4972), - [anon_sym_u8] = ACTIONS(4972), - [anon_sym_u16] = ACTIONS(4972), - [anon_sym_u32] = ACTIONS(4972), - [anon_sym_u64] = ACTIONS(4972), - [anon_sym_isize] = ACTIONS(4972), - [anon_sym_usize] = ACTIONS(4972), - [anon_sym_f32] = ACTIONS(4972), - [anon_sym_f64] = ACTIONS(4972), - [anon_sym_c_char] = ACTIONS(4972), - [anon_sym_c_schar] = ACTIONS(4972), - [anon_sym_c_uchar] = ACTIONS(4972), - [anon_sym_c_short] = ACTIONS(4972), - [anon_sym_c_ushort] = ACTIONS(4972), - [anon_sym_c_int] = ACTIONS(4972), - [anon_sym_c_uint] = ACTIONS(4972), - [anon_sym_c_long] = ACTIONS(4972), - [anon_sym_c_ulong] = ACTIONS(4972), - [anon_sym_c_longlong] = ACTIONS(4972), - [anon_sym_c_ulonglong] = ACTIONS(4972), - [anon_sym_c_float] = ACTIONS(4972), - [anon_sym_c_double] = ACTIONS(4972), - [anon_sym_c_longdouble] = ACTIONS(4972), - [anon_sym_return] = ACTIONS(4972), - [anon_sym_yield] = ACTIONS(4972), - [anon_sym_break] = ACTIONS(4972), - [anon_sym_continue] = ACTIONS(4972), - [anon_sym_defer] = ACTIONS(4972), - [anon_sym_errdefer] = ACTIONS(4972), - [anon_sym_if] = ACTIONS(4972), - [anon_sym_else] = ACTIONS(4972), - [anon_sym_while] = ACTIONS(4972), - [anon_sym_expand] = ACTIONS(4972), - [anon_sym_for] = ACTIONS(4972), - [anon_sym_match] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4970), - [anon_sym_TILDE] = ACTIONS(4970), - [anon_sym_try] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4970), - [anon_sym_true] = ACTIONS(4972), - [anon_sym_false] = ACTIONS(4972), - [anon_sym_null] = ACTIONS(4972), - [anon_sym_unreachable] = ACTIONS(4972), - [anon_sym_undefined] = ACTIONS(4972), - [sym_sink] = ACTIONS(4972), - [sym_integer] = ACTIONS(4972), - [sym_float] = ACTIONS(4970), - [anon_sym_DQUOTE] = ACTIONS(4970), - [sym_multiline_string] = ACTIONS(4970), - [sym_character] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4970), - }, - [STATE(1995)] = { - [ts_builtin_sym_end] = ACTIONS(4974), - [sym_identifier] = ACTIONS(4976), - [anon_sym_import] = ACTIONS(4976), - [anon_sym_test] = ACTIONS(4976), - [anon_sym_hide] = ACTIONS(4976), - [anon_sym_func] = ACTIONS(4976), - [anon_sym_BANG] = ACTIONS(4974), - [anon_sym_struct] = ACTIONS(4976), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_RPAREN] = ACTIONS(4974), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_DASH] = ACTIONS(4974), - [anon_sym_DOLLAR] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_void] = ACTIONS(4976), - [anon_sym_noreturn] = ACTIONS(4976), - [anon_sym_type] = ACTIONS(4976), - [anon_sym_anyopaque] = ACTIONS(4976), - [anon_sym_bool] = ACTIONS(4976), - [anon_sym_int] = ACTIONS(4976), - [anon_sym_uint] = ACTIONS(4976), - [anon_sym_float] = ACTIONS(4976), - [anon_sym_range] = ACTIONS(4976), - [anon_sym_i8] = ACTIONS(4976), - [anon_sym_i16] = ACTIONS(4976), - [anon_sym_i32] = ACTIONS(4976), - [anon_sym_i64] = ACTIONS(4976), - [anon_sym_u8] = ACTIONS(4976), - [anon_sym_u16] = ACTIONS(4976), - [anon_sym_u32] = ACTIONS(4976), - [anon_sym_u64] = ACTIONS(4976), - [anon_sym_isize] = ACTIONS(4976), - [anon_sym_usize] = ACTIONS(4976), - [anon_sym_f32] = ACTIONS(4976), - [anon_sym_f64] = ACTIONS(4976), - [anon_sym_c_char] = ACTIONS(4976), - [anon_sym_c_schar] = ACTIONS(4976), - [anon_sym_c_uchar] = ACTIONS(4976), - [anon_sym_c_short] = ACTIONS(4976), - [anon_sym_c_ushort] = ACTIONS(4976), - [anon_sym_c_int] = ACTIONS(4976), - [anon_sym_c_uint] = ACTIONS(4976), - [anon_sym_c_long] = ACTIONS(4976), - [anon_sym_c_ulong] = ACTIONS(4976), - [anon_sym_c_longlong] = ACTIONS(4976), - [anon_sym_c_ulonglong] = ACTIONS(4976), - [anon_sym_c_float] = ACTIONS(4976), - [anon_sym_c_double] = ACTIONS(4976), - [anon_sym_c_longdouble] = ACTIONS(4976), - [anon_sym_return] = ACTIONS(4976), - [anon_sym_yield] = ACTIONS(4976), - [anon_sym_break] = ACTIONS(4976), - [anon_sym_continue] = ACTIONS(4976), - [anon_sym_defer] = ACTIONS(4976), - [anon_sym_errdefer] = ACTIONS(4976), - [anon_sym_if] = ACTIONS(4976), - [anon_sym_else] = ACTIONS(4976), - [anon_sym_while] = ACTIONS(4976), - [anon_sym_expand] = ACTIONS(4976), - [anon_sym_for] = ACTIONS(4976), - [anon_sym_match] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_TILDE] = ACTIONS(4974), - [anon_sym_try] = ACTIONS(4976), - [anon_sym_DOT] = ACTIONS(4974), - [anon_sym_true] = ACTIONS(4976), - [anon_sym_false] = ACTIONS(4976), - [anon_sym_null] = ACTIONS(4976), - [anon_sym_unreachable] = ACTIONS(4976), - [anon_sym_undefined] = ACTIONS(4976), - [sym_sink] = ACTIONS(4976), - [sym_integer] = ACTIONS(4976), - [sym_float] = ACTIONS(4974), - [anon_sym_DQUOTE] = ACTIONS(4974), - [sym_multiline_string] = ACTIONS(4974), - [sym_character] = ACTIONS(4974), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4974), - }, - [STATE(1996)] = { - [ts_builtin_sym_end] = ACTIONS(4978), - [sym_identifier] = ACTIONS(4980), - [anon_sym_import] = ACTIONS(4980), - [anon_sym_test] = ACTIONS(4980), - [anon_sym_hide] = ACTIONS(4980), - [anon_sym_func] = ACTIONS(4980), - [anon_sym_BANG] = ACTIONS(4978), - [anon_sym_struct] = ACTIONS(4980), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_RPAREN] = ACTIONS(4978), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), - [anon_sym_DOLLAR] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_void] = ACTIONS(4980), - [anon_sym_noreturn] = ACTIONS(4980), - [anon_sym_type] = ACTIONS(4980), - [anon_sym_anyopaque] = ACTIONS(4980), - [anon_sym_bool] = ACTIONS(4980), - [anon_sym_int] = ACTIONS(4980), - [anon_sym_uint] = ACTIONS(4980), - [anon_sym_float] = ACTIONS(4980), - [anon_sym_range] = ACTIONS(4980), - [anon_sym_i8] = ACTIONS(4980), - [anon_sym_i16] = ACTIONS(4980), - [anon_sym_i32] = ACTIONS(4980), - [anon_sym_i64] = ACTIONS(4980), - [anon_sym_u8] = ACTIONS(4980), - [anon_sym_u16] = ACTIONS(4980), - [anon_sym_u32] = ACTIONS(4980), - [anon_sym_u64] = ACTIONS(4980), - [anon_sym_isize] = ACTIONS(4980), - [anon_sym_usize] = ACTIONS(4980), - [anon_sym_f32] = ACTIONS(4980), - [anon_sym_f64] = ACTIONS(4980), - [anon_sym_c_char] = ACTIONS(4980), - [anon_sym_c_schar] = ACTIONS(4980), - [anon_sym_c_uchar] = ACTIONS(4980), - [anon_sym_c_short] = ACTIONS(4980), - [anon_sym_c_ushort] = ACTIONS(4980), - [anon_sym_c_int] = ACTIONS(4980), - [anon_sym_c_uint] = ACTIONS(4980), - [anon_sym_c_long] = ACTIONS(4980), - [anon_sym_c_ulong] = ACTIONS(4980), - [anon_sym_c_longlong] = ACTIONS(4980), - [anon_sym_c_ulonglong] = ACTIONS(4980), - [anon_sym_c_float] = ACTIONS(4980), - [anon_sym_c_double] = ACTIONS(4980), - [anon_sym_c_longdouble] = ACTIONS(4980), - [anon_sym_return] = ACTIONS(4980), - [anon_sym_yield] = ACTIONS(4980), - [anon_sym_break] = ACTIONS(4980), - [anon_sym_continue] = ACTIONS(4980), - [anon_sym_defer] = ACTIONS(4980), - [anon_sym_errdefer] = ACTIONS(4980), - [anon_sym_if] = ACTIONS(4980), - [anon_sym_else] = ACTIONS(4980), - [anon_sym_while] = ACTIONS(4980), - [anon_sym_expand] = ACTIONS(4980), - [anon_sym_for] = ACTIONS(4980), - [anon_sym_match] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4978), - [anon_sym_TILDE] = ACTIONS(4978), - [anon_sym_try] = ACTIONS(4980), - [anon_sym_DOT] = ACTIONS(4978), - [anon_sym_true] = ACTIONS(4980), - [anon_sym_false] = ACTIONS(4980), - [anon_sym_null] = ACTIONS(4980), - [anon_sym_unreachable] = ACTIONS(4980), - [anon_sym_undefined] = ACTIONS(4980), - [sym_sink] = ACTIONS(4980), - [sym_integer] = ACTIONS(4980), - [sym_float] = ACTIONS(4978), - [anon_sym_DQUOTE] = ACTIONS(4978), - [sym_multiline_string] = ACTIONS(4978), - [sym_character] = ACTIONS(4978), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4978), - }, - [STATE(1997)] = { - [ts_builtin_sym_end] = ACTIONS(4982), - [sym_identifier] = ACTIONS(4984), - [anon_sym_import] = ACTIONS(4984), - [anon_sym_test] = ACTIONS(4984), - [anon_sym_hide] = ACTIONS(4984), - [anon_sym_func] = ACTIONS(4984), - [anon_sym_BANG] = ACTIONS(4982), - [anon_sym_struct] = ACTIONS(4984), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_DASH] = ACTIONS(4982), - [anon_sym_DOLLAR] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_void] = ACTIONS(4984), - [anon_sym_noreturn] = ACTIONS(4984), - [anon_sym_type] = ACTIONS(4984), - [anon_sym_anyopaque] = ACTIONS(4984), - [anon_sym_bool] = ACTIONS(4984), - [anon_sym_int] = ACTIONS(4984), - [anon_sym_uint] = ACTIONS(4984), - [anon_sym_float] = ACTIONS(4984), - [anon_sym_range] = ACTIONS(4984), - [anon_sym_i8] = ACTIONS(4984), - [anon_sym_i16] = ACTIONS(4984), - [anon_sym_i32] = ACTIONS(4984), - [anon_sym_i64] = ACTIONS(4984), - [anon_sym_u8] = ACTIONS(4984), - [anon_sym_u16] = ACTIONS(4984), - [anon_sym_u32] = ACTIONS(4984), - [anon_sym_u64] = ACTIONS(4984), - [anon_sym_isize] = ACTIONS(4984), - [anon_sym_usize] = ACTIONS(4984), - [anon_sym_f32] = ACTIONS(4984), - [anon_sym_f64] = ACTIONS(4984), - [anon_sym_c_char] = ACTIONS(4984), - [anon_sym_c_schar] = ACTIONS(4984), - [anon_sym_c_uchar] = ACTIONS(4984), - [anon_sym_c_short] = ACTIONS(4984), - [anon_sym_c_ushort] = ACTIONS(4984), - [anon_sym_c_int] = ACTIONS(4984), - [anon_sym_c_uint] = ACTIONS(4984), - [anon_sym_c_long] = ACTIONS(4984), - [anon_sym_c_ulong] = ACTIONS(4984), - [anon_sym_c_longlong] = ACTIONS(4984), - [anon_sym_c_ulonglong] = ACTIONS(4984), - [anon_sym_c_float] = ACTIONS(4984), - [anon_sym_c_double] = ACTIONS(4984), - [anon_sym_c_longdouble] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(4984), - [anon_sym_yield] = ACTIONS(4984), - [anon_sym_break] = ACTIONS(4984), - [anon_sym_continue] = ACTIONS(4984), - [anon_sym_defer] = ACTIONS(4984), - [anon_sym_errdefer] = ACTIONS(4984), - [anon_sym_if] = ACTIONS(4984), - [anon_sym_else] = ACTIONS(4984), - [anon_sym_while] = ACTIONS(4984), - [anon_sym_expand] = ACTIONS(4984), - [anon_sym_for] = ACTIONS(4984), - [anon_sym_match] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4982), - [anon_sym_TILDE] = ACTIONS(4982), - [anon_sym_try] = ACTIONS(4984), - [anon_sym_DOT] = ACTIONS(4982), - [anon_sym_true] = ACTIONS(4984), - [anon_sym_false] = ACTIONS(4984), - [anon_sym_null] = ACTIONS(4984), - [anon_sym_unreachable] = ACTIONS(4984), - [anon_sym_undefined] = ACTIONS(4984), - [sym_sink] = ACTIONS(4984), - [sym_integer] = ACTIONS(4984), - [sym_float] = ACTIONS(4982), - [anon_sym_DQUOTE] = ACTIONS(4982), - [sym_multiline_string] = ACTIONS(4982), - [sym_character] = ACTIONS(4982), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4982), - }, - [STATE(1998)] = { - [ts_builtin_sym_end] = ACTIONS(4986), - [sym_identifier] = ACTIONS(4988), - [anon_sym_import] = ACTIONS(4988), - [anon_sym_test] = ACTIONS(4988), - [anon_sym_hide] = ACTIONS(4988), - [anon_sym_func] = ACTIONS(4988), - [anon_sym_BANG] = ACTIONS(4986), - [anon_sym_struct] = ACTIONS(4988), - [anon_sym_LPAREN] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4986), - [anon_sym_DOLLAR] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_void] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym_type] = ACTIONS(4988), - [anon_sym_anyopaque] = ACTIONS(4988), - [anon_sym_bool] = ACTIONS(4988), - [anon_sym_int] = ACTIONS(4988), - [anon_sym_uint] = ACTIONS(4988), - [anon_sym_float] = ACTIONS(4988), - [anon_sym_range] = ACTIONS(4988), - [anon_sym_i8] = ACTIONS(4988), - [anon_sym_i16] = ACTIONS(4988), - [anon_sym_i32] = ACTIONS(4988), - [anon_sym_i64] = ACTIONS(4988), - [anon_sym_u8] = ACTIONS(4988), - [anon_sym_u16] = ACTIONS(4988), - [anon_sym_u32] = ACTIONS(4988), - [anon_sym_u64] = ACTIONS(4988), - [anon_sym_isize] = ACTIONS(4988), - [anon_sym_usize] = ACTIONS(4988), - [anon_sym_f32] = ACTIONS(4988), - [anon_sym_f64] = ACTIONS(4988), - [anon_sym_c_char] = ACTIONS(4988), - [anon_sym_c_schar] = ACTIONS(4988), - [anon_sym_c_uchar] = ACTIONS(4988), - [anon_sym_c_short] = ACTIONS(4988), - [anon_sym_c_ushort] = ACTIONS(4988), - [anon_sym_c_int] = ACTIONS(4988), - [anon_sym_c_uint] = ACTIONS(4988), - [anon_sym_c_long] = ACTIONS(4988), - [anon_sym_c_ulong] = ACTIONS(4988), - [anon_sym_c_longlong] = ACTIONS(4988), - [anon_sym_c_ulonglong] = ACTIONS(4988), - [anon_sym_c_float] = ACTIONS(4988), - [anon_sym_c_double] = ACTIONS(4988), - [anon_sym_c_longdouble] = ACTIONS(4988), - [anon_sym_return] = ACTIONS(4988), - [anon_sym_yield] = ACTIONS(4988), - [anon_sym_break] = ACTIONS(4988), - [anon_sym_continue] = ACTIONS(4988), - [anon_sym_defer] = ACTIONS(4988), - [anon_sym_errdefer] = ACTIONS(4988), - [anon_sym_if] = ACTIONS(4988), - [anon_sym_else] = ACTIONS(4988), - [anon_sym_while] = ACTIONS(4988), - [anon_sym_expand] = ACTIONS(4988), - [anon_sym_for] = ACTIONS(4988), - [anon_sym_match] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4986), - [anon_sym_TILDE] = ACTIONS(4986), - [anon_sym_try] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4986), - [anon_sym_true] = ACTIONS(4988), - [anon_sym_false] = ACTIONS(4988), - [anon_sym_null] = ACTIONS(4988), - [anon_sym_unreachable] = ACTIONS(4988), - [anon_sym_undefined] = ACTIONS(4988), - [sym_sink] = ACTIONS(4988), - [sym_integer] = ACTIONS(4988), - [sym_float] = ACTIONS(4986), - [anon_sym_DQUOTE] = ACTIONS(4986), - [sym_multiline_string] = ACTIONS(4986), - [sym_character] = ACTIONS(4986), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4986), - }, - [STATE(1999)] = { - [ts_builtin_sym_end] = ACTIONS(4990), - [sym_identifier] = ACTIONS(4992), - [anon_sym_import] = ACTIONS(4992), - [anon_sym_test] = ACTIONS(4992), - [anon_sym_hide] = ACTIONS(4992), - [anon_sym_func] = ACTIONS(4992), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_struct] = ACTIONS(4992), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4990), - [anon_sym_DOLLAR] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_void] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym_type] = ACTIONS(4992), - [anon_sym_anyopaque] = ACTIONS(4992), - [anon_sym_bool] = ACTIONS(4992), - [anon_sym_int] = ACTIONS(4992), - [anon_sym_uint] = ACTIONS(4992), - [anon_sym_float] = ACTIONS(4992), - [anon_sym_range] = ACTIONS(4992), - [anon_sym_i8] = ACTIONS(4992), - [anon_sym_i16] = ACTIONS(4992), - [anon_sym_i32] = ACTIONS(4992), - [anon_sym_i64] = ACTIONS(4992), - [anon_sym_u8] = ACTIONS(4992), - [anon_sym_u16] = ACTIONS(4992), - [anon_sym_u32] = ACTIONS(4992), - [anon_sym_u64] = ACTIONS(4992), - [anon_sym_isize] = ACTIONS(4992), - [anon_sym_usize] = ACTIONS(4992), - [anon_sym_f32] = ACTIONS(4992), - [anon_sym_f64] = ACTIONS(4992), - [anon_sym_c_char] = ACTIONS(4992), - [anon_sym_c_schar] = ACTIONS(4992), - [anon_sym_c_uchar] = ACTIONS(4992), - [anon_sym_c_short] = ACTIONS(4992), - [anon_sym_c_ushort] = ACTIONS(4992), - [anon_sym_c_int] = ACTIONS(4992), - [anon_sym_c_uint] = ACTIONS(4992), - [anon_sym_c_long] = ACTIONS(4992), - [anon_sym_c_ulong] = ACTIONS(4992), - [anon_sym_c_longlong] = ACTIONS(4992), - [anon_sym_c_ulonglong] = ACTIONS(4992), - [anon_sym_c_float] = ACTIONS(4992), - [anon_sym_c_double] = ACTIONS(4992), - [anon_sym_c_longdouble] = ACTIONS(4992), - [anon_sym_return] = ACTIONS(4992), - [anon_sym_yield] = ACTIONS(4992), - [anon_sym_break] = ACTIONS(4992), - [anon_sym_continue] = ACTIONS(4992), - [anon_sym_defer] = ACTIONS(4992), - [anon_sym_errdefer] = ACTIONS(4992), - [anon_sym_if] = ACTIONS(4992), - [anon_sym_else] = ACTIONS(4992), - [anon_sym_while] = ACTIONS(4992), - [anon_sym_expand] = ACTIONS(4992), - [anon_sym_for] = ACTIONS(4992), - [anon_sym_match] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_try] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_true] = ACTIONS(4992), - [anon_sym_false] = ACTIONS(4992), - [anon_sym_null] = ACTIONS(4992), - [anon_sym_unreachable] = ACTIONS(4992), - [anon_sym_undefined] = ACTIONS(4992), - [sym_sink] = ACTIONS(4992), - [sym_integer] = ACTIONS(4992), - [sym_float] = ACTIONS(4990), - [anon_sym_DQUOTE] = ACTIONS(4990), - [sym_multiline_string] = ACTIONS(4990), - [sym_character] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4990), - }, - [STATE(2000)] = { - [ts_builtin_sym_end] = ACTIONS(4994), - [sym_identifier] = ACTIONS(4996), - [anon_sym_import] = ACTIONS(4996), - [anon_sym_test] = ACTIONS(4996), - [anon_sym_hide] = ACTIONS(4996), - [anon_sym_func] = ACTIONS(4996), - [anon_sym_BANG] = ACTIONS(4994), - [anon_sym_struct] = ACTIONS(4996), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4994), - [anon_sym_DOLLAR] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_void] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym_type] = ACTIONS(4996), - [anon_sym_anyopaque] = ACTIONS(4996), - [anon_sym_bool] = ACTIONS(4996), - [anon_sym_int] = ACTIONS(4996), - [anon_sym_uint] = ACTIONS(4996), - [anon_sym_float] = ACTIONS(4996), - [anon_sym_range] = ACTIONS(4996), - [anon_sym_i8] = ACTIONS(4996), - [anon_sym_i16] = ACTIONS(4996), - [anon_sym_i32] = ACTIONS(4996), - [anon_sym_i64] = ACTIONS(4996), - [anon_sym_u8] = ACTIONS(4996), - [anon_sym_u16] = ACTIONS(4996), - [anon_sym_u32] = ACTIONS(4996), - [anon_sym_u64] = ACTIONS(4996), - [anon_sym_isize] = ACTIONS(4996), - [anon_sym_usize] = ACTIONS(4996), - [anon_sym_f32] = ACTIONS(4996), - [anon_sym_f64] = ACTIONS(4996), - [anon_sym_c_char] = ACTIONS(4996), - [anon_sym_c_schar] = ACTIONS(4996), - [anon_sym_c_uchar] = ACTIONS(4996), - [anon_sym_c_short] = ACTIONS(4996), - [anon_sym_c_ushort] = ACTIONS(4996), - [anon_sym_c_int] = ACTIONS(4996), - [anon_sym_c_uint] = ACTIONS(4996), - [anon_sym_c_long] = ACTIONS(4996), - [anon_sym_c_ulong] = ACTIONS(4996), - [anon_sym_c_longlong] = ACTIONS(4996), - [anon_sym_c_ulonglong] = ACTIONS(4996), - [anon_sym_c_float] = ACTIONS(4996), - [anon_sym_c_double] = ACTIONS(4996), - [anon_sym_c_longdouble] = ACTIONS(4996), - [anon_sym_return] = ACTIONS(4996), - [anon_sym_yield] = ACTIONS(4996), - [anon_sym_break] = ACTIONS(4996), - [anon_sym_continue] = ACTIONS(4996), - [anon_sym_defer] = ACTIONS(4996), - [anon_sym_errdefer] = ACTIONS(4996), - [anon_sym_if] = ACTIONS(4996), - [anon_sym_else] = ACTIONS(4996), - [anon_sym_while] = ACTIONS(4996), - [anon_sym_expand] = ACTIONS(4996), - [anon_sym_for] = ACTIONS(4996), - [anon_sym_match] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_try] = ACTIONS(4996), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_true] = ACTIONS(4996), - [anon_sym_false] = ACTIONS(4996), - [anon_sym_null] = ACTIONS(4996), - [anon_sym_unreachable] = ACTIONS(4996), - [anon_sym_undefined] = ACTIONS(4996), - [sym_sink] = ACTIONS(4996), - [sym_integer] = ACTIONS(4996), - [sym_float] = ACTIONS(4994), - [anon_sym_DQUOTE] = ACTIONS(4994), - [sym_multiline_string] = ACTIONS(4994), - [sym_character] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4994), - }, - [STATE(2001)] = { - [ts_builtin_sym_end] = ACTIONS(4998), - [sym_identifier] = ACTIONS(5000), - [anon_sym_import] = ACTIONS(5000), - [anon_sym_test] = ACTIONS(5000), - [anon_sym_hide] = ACTIONS(5000), - [anon_sym_func] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(4998), - [anon_sym_struct] = ACTIONS(5000), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_void] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym_type] = ACTIONS(5000), - [anon_sym_anyopaque] = ACTIONS(5000), - [anon_sym_bool] = ACTIONS(5000), - [anon_sym_int] = ACTIONS(5000), - [anon_sym_uint] = ACTIONS(5000), - [anon_sym_float] = ACTIONS(5000), - [anon_sym_range] = ACTIONS(5000), - [anon_sym_i8] = ACTIONS(5000), - [anon_sym_i16] = ACTIONS(5000), - [anon_sym_i32] = ACTIONS(5000), - [anon_sym_i64] = ACTIONS(5000), - [anon_sym_u8] = ACTIONS(5000), - [anon_sym_u16] = ACTIONS(5000), - [anon_sym_u32] = ACTIONS(5000), - [anon_sym_u64] = ACTIONS(5000), - [anon_sym_isize] = ACTIONS(5000), - [anon_sym_usize] = ACTIONS(5000), - [anon_sym_f32] = ACTIONS(5000), - [anon_sym_f64] = ACTIONS(5000), - [anon_sym_c_char] = ACTIONS(5000), - [anon_sym_c_schar] = ACTIONS(5000), - [anon_sym_c_uchar] = ACTIONS(5000), - [anon_sym_c_short] = ACTIONS(5000), - [anon_sym_c_ushort] = ACTIONS(5000), - [anon_sym_c_int] = ACTIONS(5000), - [anon_sym_c_uint] = ACTIONS(5000), - [anon_sym_c_long] = ACTIONS(5000), - [anon_sym_c_ulong] = ACTIONS(5000), - [anon_sym_c_longlong] = ACTIONS(5000), - [anon_sym_c_ulonglong] = ACTIONS(5000), - [anon_sym_c_float] = ACTIONS(5000), - [anon_sym_c_double] = ACTIONS(5000), - [anon_sym_c_longdouble] = ACTIONS(5000), - [anon_sym_return] = ACTIONS(5000), - [anon_sym_yield] = ACTIONS(5000), - [anon_sym_break] = ACTIONS(5000), - [anon_sym_continue] = ACTIONS(5000), - [anon_sym_defer] = ACTIONS(5000), - [anon_sym_errdefer] = ACTIONS(5000), - [anon_sym_if] = ACTIONS(5000), - [anon_sym_else] = ACTIONS(5000), - [anon_sym_while] = ACTIONS(5000), - [anon_sym_expand] = ACTIONS(5000), - [anon_sym_for] = ACTIONS(5000), - [anon_sym_match] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_try] = ACTIONS(5000), - [anon_sym_DOT] = ACTIONS(4998), - [anon_sym_true] = ACTIONS(5000), - [anon_sym_false] = ACTIONS(5000), - [anon_sym_null] = ACTIONS(5000), - [anon_sym_unreachable] = ACTIONS(5000), - [anon_sym_undefined] = ACTIONS(5000), - [sym_sink] = ACTIONS(5000), - [sym_integer] = ACTIONS(5000), - [sym_float] = ACTIONS(4998), - [anon_sym_DQUOTE] = ACTIONS(4998), - [sym_multiline_string] = ACTIONS(4998), - [sym_character] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4998), - }, - [STATE(2002)] = { - [ts_builtin_sym_end] = ACTIONS(5002), - [sym_identifier] = ACTIONS(5004), - [anon_sym_import] = ACTIONS(5004), - [anon_sym_test] = ACTIONS(5004), - [anon_sym_hide] = ACTIONS(5004), - [anon_sym_func] = ACTIONS(5004), - [anon_sym_BANG] = ACTIONS(5002), - [anon_sym_struct] = ACTIONS(5004), - [anon_sym_LPAREN] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5002), - [anon_sym_DOLLAR] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_void] = ACTIONS(5004), - [anon_sym_noreturn] = ACTIONS(5004), - [anon_sym_type] = ACTIONS(5004), - [anon_sym_anyopaque] = ACTIONS(5004), - [anon_sym_bool] = ACTIONS(5004), - [anon_sym_int] = ACTIONS(5004), - [anon_sym_uint] = ACTIONS(5004), - [anon_sym_float] = ACTIONS(5004), - [anon_sym_range] = ACTIONS(5004), - [anon_sym_i8] = ACTIONS(5004), - [anon_sym_i16] = ACTIONS(5004), - [anon_sym_i32] = ACTIONS(5004), - [anon_sym_i64] = ACTIONS(5004), - [anon_sym_u8] = ACTIONS(5004), - [anon_sym_u16] = ACTIONS(5004), - [anon_sym_u32] = ACTIONS(5004), - [anon_sym_u64] = ACTIONS(5004), - [anon_sym_isize] = ACTIONS(5004), - [anon_sym_usize] = ACTIONS(5004), - [anon_sym_f32] = ACTIONS(5004), - [anon_sym_f64] = ACTIONS(5004), - [anon_sym_c_char] = ACTIONS(5004), - [anon_sym_c_schar] = ACTIONS(5004), - [anon_sym_c_uchar] = ACTIONS(5004), - [anon_sym_c_short] = ACTIONS(5004), - [anon_sym_c_ushort] = ACTIONS(5004), - [anon_sym_c_int] = ACTIONS(5004), - [anon_sym_c_uint] = ACTIONS(5004), - [anon_sym_c_long] = ACTIONS(5004), - [anon_sym_c_ulong] = ACTIONS(5004), - [anon_sym_c_longlong] = ACTIONS(5004), - [anon_sym_c_ulonglong] = ACTIONS(5004), - [anon_sym_c_float] = ACTIONS(5004), - [anon_sym_c_double] = ACTIONS(5004), - [anon_sym_c_longdouble] = ACTIONS(5004), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_yield] = ACTIONS(5004), - [anon_sym_break] = ACTIONS(5004), - [anon_sym_continue] = ACTIONS(5004), - [anon_sym_defer] = ACTIONS(5004), - [anon_sym_errdefer] = ACTIONS(5004), - [anon_sym_if] = ACTIONS(5004), - [anon_sym_else] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_expand] = ACTIONS(5004), - [anon_sym_for] = ACTIONS(5004), - [anon_sym_match] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5002), - [anon_sym_TILDE] = ACTIONS(5002), - [anon_sym_try] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_true] = ACTIONS(5004), - [anon_sym_false] = ACTIONS(5004), - [anon_sym_null] = ACTIONS(5004), - [anon_sym_unreachable] = ACTIONS(5004), - [anon_sym_undefined] = ACTIONS(5004), - [sym_sink] = ACTIONS(5004), - [sym_integer] = ACTIONS(5004), - [sym_float] = ACTIONS(5002), - [anon_sym_DQUOTE] = ACTIONS(5002), - [sym_multiline_string] = ACTIONS(5002), - [sym_character] = ACTIONS(5002), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5002), - }, - [STATE(2003)] = { - [ts_builtin_sym_end] = ACTIONS(5006), - [sym_identifier] = ACTIONS(5008), - [anon_sym_import] = ACTIONS(5008), - [anon_sym_test] = ACTIONS(5008), - [anon_sym_hide] = ACTIONS(5008), - [anon_sym_func] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5006), - [anon_sym_struct] = ACTIONS(5008), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5006), - [anon_sym_DOLLAR] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_void] = ACTIONS(5008), - [anon_sym_noreturn] = ACTIONS(5008), - [anon_sym_type] = ACTIONS(5008), - [anon_sym_anyopaque] = ACTIONS(5008), - [anon_sym_bool] = ACTIONS(5008), - [anon_sym_int] = ACTIONS(5008), - [anon_sym_uint] = ACTIONS(5008), - [anon_sym_float] = ACTIONS(5008), - [anon_sym_range] = ACTIONS(5008), - [anon_sym_i8] = ACTIONS(5008), - [anon_sym_i16] = ACTIONS(5008), - [anon_sym_i32] = ACTIONS(5008), - [anon_sym_i64] = ACTIONS(5008), - [anon_sym_u8] = ACTIONS(5008), - [anon_sym_u16] = ACTIONS(5008), - [anon_sym_u32] = ACTIONS(5008), - [anon_sym_u64] = ACTIONS(5008), - [anon_sym_isize] = ACTIONS(5008), - [anon_sym_usize] = ACTIONS(5008), - [anon_sym_f32] = ACTIONS(5008), - [anon_sym_f64] = ACTIONS(5008), - [anon_sym_c_char] = ACTIONS(5008), - [anon_sym_c_schar] = ACTIONS(5008), - [anon_sym_c_uchar] = ACTIONS(5008), - [anon_sym_c_short] = ACTIONS(5008), - [anon_sym_c_ushort] = ACTIONS(5008), - [anon_sym_c_int] = ACTIONS(5008), - [anon_sym_c_uint] = ACTIONS(5008), - [anon_sym_c_long] = ACTIONS(5008), - [anon_sym_c_ulong] = ACTIONS(5008), - [anon_sym_c_longlong] = ACTIONS(5008), - [anon_sym_c_ulonglong] = ACTIONS(5008), - [anon_sym_c_float] = ACTIONS(5008), - [anon_sym_c_double] = ACTIONS(5008), - [anon_sym_c_longdouble] = ACTIONS(5008), - [anon_sym_return] = ACTIONS(5008), - [anon_sym_yield] = ACTIONS(5008), - [anon_sym_break] = ACTIONS(5008), - [anon_sym_continue] = ACTIONS(5008), - [anon_sym_defer] = ACTIONS(5008), - [anon_sym_errdefer] = ACTIONS(5008), - [anon_sym_if] = ACTIONS(5008), - [anon_sym_else] = ACTIONS(5008), - [anon_sym_while] = ACTIONS(5008), - [anon_sym_expand] = ACTIONS(5008), - [anon_sym_for] = ACTIONS(5008), - [anon_sym_match] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_try] = ACTIONS(5008), - [anon_sym_DOT] = ACTIONS(5006), - [anon_sym_true] = ACTIONS(5008), - [anon_sym_false] = ACTIONS(5008), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_unreachable] = ACTIONS(5008), - [anon_sym_undefined] = ACTIONS(5008), - [sym_sink] = ACTIONS(5008), - [sym_integer] = ACTIONS(5008), - [sym_float] = ACTIONS(5006), - [anon_sym_DQUOTE] = ACTIONS(5006), - [sym_multiline_string] = ACTIONS(5006), - [sym_character] = ACTIONS(5006), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5006), - }, - [STATE(2004)] = { - [ts_builtin_sym_end] = ACTIONS(5010), - [sym_identifier] = ACTIONS(5012), - [anon_sym_import] = ACTIONS(5012), - [anon_sym_test] = ACTIONS(5012), - [anon_sym_hide] = ACTIONS(5012), - [anon_sym_func] = ACTIONS(5012), - [anon_sym_BANG] = ACTIONS(5010), - [anon_sym_struct] = ACTIONS(5012), - [anon_sym_LPAREN] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5010), - [anon_sym_DOLLAR] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_void] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_type] = ACTIONS(5012), - [anon_sym_anyopaque] = ACTIONS(5012), - [anon_sym_bool] = ACTIONS(5012), - [anon_sym_int] = ACTIONS(5012), - [anon_sym_uint] = ACTIONS(5012), - [anon_sym_float] = ACTIONS(5012), - [anon_sym_range] = ACTIONS(5012), - [anon_sym_i8] = ACTIONS(5012), - [anon_sym_i16] = ACTIONS(5012), - [anon_sym_i32] = ACTIONS(5012), - [anon_sym_i64] = ACTIONS(5012), - [anon_sym_u8] = ACTIONS(5012), - [anon_sym_u16] = ACTIONS(5012), - [anon_sym_u32] = ACTIONS(5012), - [anon_sym_u64] = ACTIONS(5012), - [anon_sym_isize] = ACTIONS(5012), - [anon_sym_usize] = ACTIONS(5012), - [anon_sym_f32] = ACTIONS(5012), - [anon_sym_f64] = ACTIONS(5012), - [anon_sym_c_char] = ACTIONS(5012), - [anon_sym_c_schar] = ACTIONS(5012), - [anon_sym_c_uchar] = ACTIONS(5012), - [anon_sym_c_short] = ACTIONS(5012), - [anon_sym_c_ushort] = ACTIONS(5012), - [anon_sym_c_int] = ACTIONS(5012), - [anon_sym_c_uint] = ACTIONS(5012), - [anon_sym_c_long] = ACTIONS(5012), - [anon_sym_c_ulong] = ACTIONS(5012), - [anon_sym_c_longlong] = ACTIONS(5012), - [anon_sym_c_ulonglong] = ACTIONS(5012), - [anon_sym_c_float] = ACTIONS(5012), - [anon_sym_c_double] = ACTIONS(5012), - [anon_sym_c_longdouble] = ACTIONS(5012), - [anon_sym_return] = ACTIONS(5012), - [anon_sym_yield] = ACTIONS(5012), - [anon_sym_break] = ACTIONS(5012), - [anon_sym_continue] = ACTIONS(5012), - [anon_sym_defer] = ACTIONS(5012), - [anon_sym_errdefer] = ACTIONS(5012), - [anon_sym_if] = ACTIONS(5012), - [anon_sym_else] = ACTIONS(5012), - [anon_sym_while] = ACTIONS(5012), - [anon_sym_expand] = ACTIONS(5012), - [anon_sym_for] = ACTIONS(5012), - [anon_sym_match] = ACTIONS(5012), - [anon_sym_AMP] = ACTIONS(5010), - [anon_sym_TILDE] = ACTIONS(5010), - [anon_sym_try] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5010), - [anon_sym_true] = ACTIONS(5012), - [anon_sym_false] = ACTIONS(5012), - [anon_sym_null] = ACTIONS(5012), - [anon_sym_unreachable] = ACTIONS(5012), - [anon_sym_undefined] = ACTIONS(5012), - [sym_sink] = ACTIONS(5012), - [sym_integer] = ACTIONS(5012), - [sym_float] = ACTIONS(5010), - [anon_sym_DQUOTE] = ACTIONS(5010), - [sym_multiline_string] = ACTIONS(5010), - [sym_character] = ACTIONS(5010), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5010), - }, - [STATE(2005)] = { - [ts_builtin_sym_end] = ACTIONS(5014), - [sym_identifier] = ACTIONS(5016), - [anon_sym_import] = ACTIONS(5016), - [anon_sym_test] = ACTIONS(5016), - [anon_sym_hide] = ACTIONS(5016), - [anon_sym_func] = ACTIONS(5016), - [anon_sym_BANG] = ACTIONS(5014), - [anon_sym_struct] = ACTIONS(5016), - [anon_sym_LPAREN] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5014), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5014), - [anon_sym_DOLLAR] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_void] = ACTIONS(5016), - [anon_sym_noreturn] = ACTIONS(5016), - [anon_sym_type] = ACTIONS(5016), - [anon_sym_anyopaque] = ACTIONS(5016), - [anon_sym_bool] = ACTIONS(5016), - [anon_sym_int] = ACTIONS(5016), - [anon_sym_uint] = ACTIONS(5016), - [anon_sym_float] = ACTIONS(5016), - [anon_sym_range] = ACTIONS(5016), - [anon_sym_i8] = ACTIONS(5016), - [anon_sym_i16] = ACTIONS(5016), - [anon_sym_i32] = ACTIONS(5016), - [anon_sym_i64] = ACTIONS(5016), - [anon_sym_u8] = ACTIONS(5016), - [anon_sym_u16] = ACTIONS(5016), - [anon_sym_u32] = ACTIONS(5016), - [anon_sym_u64] = ACTIONS(5016), - [anon_sym_isize] = ACTIONS(5016), - [anon_sym_usize] = ACTIONS(5016), - [anon_sym_f32] = ACTIONS(5016), - [anon_sym_f64] = ACTIONS(5016), - [anon_sym_c_char] = ACTIONS(5016), - [anon_sym_c_schar] = ACTIONS(5016), - [anon_sym_c_uchar] = ACTIONS(5016), - [anon_sym_c_short] = ACTIONS(5016), - [anon_sym_c_ushort] = ACTIONS(5016), - [anon_sym_c_int] = ACTIONS(5016), - [anon_sym_c_uint] = ACTIONS(5016), - [anon_sym_c_long] = ACTIONS(5016), - [anon_sym_c_ulong] = ACTIONS(5016), - [anon_sym_c_longlong] = ACTIONS(5016), - [anon_sym_c_ulonglong] = ACTIONS(5016), - [anon_sym_c_float] = ACTIONS(5016), - [anon_sym_c_double] = ACTIONS(5016), - [anon_sym_c_longdouble] = ACTIONS(5016), - [anon_sym_return] = ACTIONS(5016), - [anon_sym_yield] = ACTIONS(5016), - [anon_sym_break] = ACTIONS(5016), - [anon_sym_continue] = ACTIONS(5016), - [anon_sym_defer] = ACTIONS(5016), - [anon_sym_errdefer] = ACTIONS(5016), - [anon_sym_if] = ACTIONS(5016), - [anon_sym_else] = ACTIONS(5016), - [anon_sym_while] = ACTIONS(5016), - [anon_sym_expand] = ACTIONS(5016), - [anon_sym_for] = ACTIONS(5016), - [anon_sym_match] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5014), - [anon_sym_TILDE] = ACTIONS(5014), - [anon_sym_try] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5014), - [anon_sym_true] = ACTIONS(5016), - [anon_sym_false] = ACTIONS(5016), - [anon_sym_null] = ACTIONS(5016), - [anon_sym_unreachable] = ACTIONS(5016), - [anon_sym_undefined] = ACTIONS(5016), - [sym_sink] = ACTIONS(5016), - [sym_integer] = ACTIONS(5016), - [sym_float] = ACTIONS(5014), - [anon_sym_DQUOTE] = ACTIONS(5014), - [sym_multiline_string] = ACTIONS(5014), - [sym_character] = ACTIONS(5014), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5014), - }, - [STATE(2006)] = { + [STATE(6604)] = { + [ts_builtin_sym_end] = ACTIONS(4488), + [sym_identifier] = ACTIONS(4490), + [anon_sym_import] = ACTIONS(4490), + [anon_sym_test] = ACTIONS(4490), + [anon_sym_hide] = ACTIONS(4490), + [anon_sym_func] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4488), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_RPAREN] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_void] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym_type] = ACTIONS(4490), + [anon_sym_anyopaque] = ACTIONS(4490), + [anon_sym_bool] = ACTIONS(4490), + [anon_sym_int] = ACTIONS(4490), + [anon_sym_uint] = ACTIONS(4490), + [anon_sym_float] = ACTIONS(4490), + [anon_sym_range] = ACTIONS(4490), + [anon_sym_i8] = ACTIONS(4490), + [anon_sym_i16] = ACTIONS(4490), + [anon_sym_i32] = ACTIONS(4490), + [anon_sym_i64] = ACTIONS(4490), + [anon_sym_u8] = ACTIONS(4490), + [anon_sym_u16] = ACTIONS(4490), + [anon_sym_u32] = ACTIONS(4490), + [anon_sym_u64] = ACTIONS(4490), + [anon_sym_isize] = ACTIONS(4490), + [anon_sym_usize] = ACTIONS(4490), + [anon_sym_f32] = ACTIONS(4490), + [anon_sym_f64] = ACTIONS(4490), + [anon_sym_c_char] = ACTIONS(4490), + [anon_sym_c_schar] = ACTIONS(4490), + [anon_sym_c_uchar] = ACTIONS(4490), + [anon_sym_c_short] = ACTIONS(4490), + [anon_sym_c_ushort] = ACTIONS(4490), + [anon_sym_c_int] = ACTIONS(4490), + [anon_sym_c_uint] = ACTIONS(4490), + [anon_sym_c_long] = ACTIONS(4490), + [anon_sym_c_ulong] = ACTIONS(4490), + [anon_sym_c_longlong] = ACTIONS(4490), + [anon_sym_c_ulonglong] = ACTIONS(4490), + [anon_sym_c_float] = ACTIONS(4490), + [anon_sym_c_double] = ACTIONS(4490), + [anon_sym_c_longdouble] = ACTIONS(4490), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_yield] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(10809), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_defer] = ACTIONS(4490), + [anon_sym_errdefer] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_else] = ACTIONS(4490), + [anon_sym_while] = ACTIONS(4490), + [anon_sym_expand] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_TILDE] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4490), + [anon_sym_false] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4490), + [anon_sym_unreachable] = ACTIONS(4490), + [anon_sym_undefined] = ACTIONS(4490), + [sym_sink] = ACTIONS(4490), + [sym_integer] = ACTIONS(4490), + [sym_float] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4488), + [sym_multiline_string] = ACTIONS(4488), + [sym_character] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4488), + }, + [STATE(6605)] = { + [ts_builtin_sym_end] = ACTIONS(4884), + [sym_identifier] = ACTIONS(4886), + [anon_sym_import] = ACTIONS(4886), + [anon_sym_test] = ACTIONS(4886), + [anon_sym_hide] = ACTIONS(4886), + [anon_sym_func] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_struct] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_void] = ACTIONS(4886), + [anon_sym_noreturn] = ACTIONS(4886), + [anon_sym_type] = ACTIONS(4886), + [anon_sym_anyopaque] = ACTIONS(4886), + [anon_sym_bool] = ACTIONS(4886), + [anon_sym_int] = ACTIONS(4886), + [anon_sym_uint] = ACTIONS(4886), + [anon_sym_float] = ACTIONS(4886), + [anon_sym_range] = ACTIONS(4886), + [anon_sym_i8] = ACTIONS(4886), + [anon_sym_i16] = ACTIONS(4886), + [anon_sym_i32] = ACTIONS(4886), + [anon_sym_i64] = ACTIONS(4886), + [anon_sym_u8] = ACTIONS(4886), + [anon_sym_u16] = ACTIONS(4886), + [anon_sym_u32] = ACTIONS(4886), + [anon_sym_u64] = ACTIONS(4886), + [anon_sym_isize] = ACTIONS(4886), + [anon_sym_usize] = ACTIONS(4886), + [anon_sym_f32] = ACTIONS(4886), + [anon_sym_f64] = ACTIONS(4886), + [anon_sym_c_char] = ACTIONS(4886), + [anon_sym_c_schar] = ACTIONS(4886), + [anon_sym_c_uchar] = ACTIONS(4886), + [anon_sym_c_short] = ACTIONS(4886), + [anon_sym_c_ushort] = ACTIONS(4886), + [anon_sym_c_int] = ACTIONS(4886), + [anon_sym_c_uint] = ACTIONS(4886), + [anon_sym_c_long] = ACTIONS(4886), + [anon_sym_c_ulong] = ACTIONS(4886), + [anon_sym_c_longlong] = ACTIONS(4886), + [anon_sym_c_ulonglong] = ACTIONS(4886), + [anon_sym_c_float] = ACTIONS(4886), + [anon_sym_c_double] = ACTIONS(4886), + [anon_sym_c_longdouble] = ACTIONS(4886), + [anon_sym_return] = ACTIONS(4886), + [anon_sym_yield] = ACTIONS(4886), + [anon_sym_break] = ACTIONS(4886), + [anon_sym_continue] = ACTIONS(4886), + [anon_sym_defer] = ACTIONS(4886), + [anon_sym_errdefer] = ACTIONS(4886), + [anon_sym_if] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_while] = ACTIONS(4886), + [anon_sym_expand] = ACTIONS(4886), + [anon_sym_for] = ACTIONS(4886), + [anon_sym_match] = ACTIONS(4886), + [anon_sym_AMP] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_true] = ACTIONS(4886), + [anon_sym_false] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4886), + [anon_sym_unreachable] = ACTIONS(4886), + [anon_sym_undefined] = ACTIONS(4886), + [sym_sink] = ACTIONS(4886), + [sym_integer] = ACTIONS(4886), + [sym_float] = ACTIONS(4884), + [anon_sym_DQUOTE] = ACTIONS(4884), + [sym_multiline_string] = ACTIONS(4884), + [sym_character] = ACTIONS(4884), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4884), + }, + [STATE(6606)] = { [ts_builtin_sym_end] = ACTIONS(5018), [sym_identifier] = ACTIONS(5020), [anon_sym_import] = ACTIONS(5020), @@ -222105,7 +758777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5018), }, - [STATE(2007)] = { + [STATE(6607)] = { [ts_builtin_sym_end] = ACTIONS(5022), [sym_identifier] = ACTIONS(5024), [anon_sym_import] = ACTIONS(5024), @@ -222186,3571 +758858,898 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5022), }, - [STATE(2008)] = { - [ts_builtin_sym_end] = ACTIONS(5026), - [sym_identifier] = ACTIONS(5028), - [anon_sym_import] = ACTIONS(5028), - [anon_sym_test] = ACTIONS(5028), - [anon_sym_hide] = ACTIONS(5028), - [anon_sym_func] = ACTIONS(5028), - [anon_sym_BANG] = ACTIONS(5026), - [anon_sym_struct] = ACTIONS(5028), - [anon_sym_LPAREN] = ACTIONS(5026), - [anon_sym_RPAREN] = ACTIONS(5026), - [anon_sym_LBRACE] = ACTIONS(5026), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_DASH] = ACTIONS(5026), - [anon_sym_DOLLAR] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5026), - [anon_sym_void] = ACTIONS(5028), - [anon_sym_noreturn] = ACTIONS(5028), - [anon_sym_type] = ACTIONS(5028), - [anon_sym_anyopaque] = ACTIONS(5028), - [anon_sym_bool] = ACTIONS(5028), - [anon_sym_int] = ACTIONS(5028), - [anon_sym_uint] = ACTIONS(5028), - [anon_sym_float] = ACTIONS(5028), - [anon_sym_range] = ACTIONS(5028), - [anon_sym_i8] = ACTIONS(5028), - [anon_sym_i16] = ACTIONS(5028), - [anon_sym_i32] = ACTIONS(5028), - [anon_sym_i64] = ACTIONS(5028), - [anon_sym_u8] = ACTIONS(5028), - [anon_sym_u16] = ACTIONS(5028), - [anon_sym_u32] = ACTIONS(5028), - [anon_sym_u64] = ACTIONS(5028), - [anon_sym_isize] = ACTIONS(5028), - [anon_sym_usize] = ACTIONS(5028), - [anon_sym_f32] = ACTIONS(5028), - [anon_sym_f64] = ACTIONS(5028), - [anon_sym_c_char] = ACTIONS(5028), - [anon_sym_c_schar] = ACTIONS(5028), - [anon_sym_c_uchar] = ACTIONS(5028), - [anon_sym_c_short] = ACTIONS(5028), - [anon_sym_c_ushort] = ACTIONS(5028), - [anon_sym_c_int] = ACTIONS(5028), - [anon_sym_c_uint] = ACTIONS(5028), - [anon_sym_c_long] = ACTIONS(5028), - [anon_sym_c_ulong] = ACTIONS(5028), - [anon_sym_c_longlong] = ACTIONS(5028), - [anon_sym_c_ulonglong] = ACTIONS(5028), - [anon_sym_c_float] = ACTIONS(5028), - [anon_sym_c_double] = ACTIONS(5028), - [anon_sym_c_longdouble] = ACTIONS(5028), - [anon_sym_return] = ACTIONS(5028), - [anon_sym_yield] = ACTIONS(5028), - [anon_sym_break] = ACTIONS(5028), - [anon_sym_continue] = ACTIONS(5028), - [anon_sym_defer] = ACTIONS(5028), - [anon_sym_errdefer] = ACTIONS(5028), - [anon_sym_if] = ACTIONS(5028), - [anon_sym_else] = ACTIONS(5028), - [anon_sym_while] = ACTIONS(5028), - [anon_sym_expand] = ACTIONS(5028), - [anon_sym_for] = ACTIONS(5028), - [anon_sym_match] = ACTIONS(5028), - [anon_sym_AMP] = ACTIONS(5026), - [anon_sym_TILDE] = ACTIONS(5026), - [anon_sym_try] = ACTIONS(5028), - [anon_sym_DOT] = ACTIONS(5026), - [anon_sym_true] = ACTIONS(5028), - [anon_sym_false] = ACTIONS(5028), - [anon_sym_null] = ACTIONS(5028), - [anon_sym_unreachable] = ACTIONS(5028), - [anon_sym_undefined] = ACTIONS(5028), - [sym_sink] = ACTIONS(5028), - [sym_integer] = ACTIONS(5028), - [sym_float] = ACTIONS(5026), - [anon_sym_DQUOTE] = ACTIONS(5026), - [sym_multiline_string] = ACTIONS(5026), - [sym_character] = ACTIONS(5026), + [STATE(6608)] = { + [ts_builtin_sym_end] = ACTIONS(4646), + [sym_identifier] = ACTIONS(4648), + [anon_sym_import] = ACTIONS(4648), + [anon_sym_test] = ACTIONS(4648), + [anon_sym_hide] = ACTIONS(4648), + [anon_sym_func] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4646), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_void] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym_type] = ACTIONS(4648), + [anon_sym_anyopaque] = ACTIONS(4648), + [anon_sym_bool] = ACTIONS(4648), + [anon_sym_int] = ACTIONS(4648), + [anon_sym_uint] = ACTIONS(4648), + [anon_sym_float] = ACTIONS(4648), + [anon_sym_range] = ACTIONS(4648), + [anon_sym_i8] = ACTIONS(4648), + [anon_sym_i16] = ACTIONS(4648), + [anon_sym_i32] = ACTIONS(4648), + [anon_sym_i64] = ACTIONS(4648), + [anon_sym_u8] = ACTIONS(4648), + [anon_sym_u16] = ACTIONS(4648), + [anon_sym_u32] = ACTIONS(4648), + [anon_sym_u64] = ACTIONS(4648), + [anon_sym_isize] = ACTIONS(4648), + [anon_sym_usize] = ACTIONS(4648), + [anon_sym_f32] = ACTIONS(4648), + [anon_sym_f64] = ACTIONS(4648), + [anon_sym_c_char] = ACTIONS(4648), + [anon_sym_c_schar] = ACTIONS(4648), + [anon_sym_c_uchar] = ACTIONS(4648), + [anon_sym_c_short] = ACTIONS(4648), + [anon_sym_c_ushort] = ACTIONS(4648), + [anon_sym_c_int] = ACTIONS(4648), + [anon_sym_c_uint] = ACTIONS(4648), + [anon_sym_c_long] = ACTIONS(4648), + [anon_sym_c_ulong] = ACTIONS(4648), + [anon_sym_c_longlong] = ACTIONS(4648), + [anon_sym_c_ulonglong] = ACTIONS(4648), + [anon_sym_c_float] = ACTIONS(4648), + [anon_sym_c_double] = ACTIONS(4648), + [anon_sym_c_longdouble] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_yield] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_defer] = ACTIONS(4648), + [anon_sym_errdefer] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_expand] = ACTIONS(4648), + [anon_sym_for] = ACTIONS(4648), + [anon_sym_match] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4646), + [anon_sym_TILDE] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4648), + [anon_sym_false] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4648), + [anon_sym_unreachable] = ACTIONS(4648), + [anon_sym_undefined] = ACTIONS(4648), + [sym_sink] = ACTIONS(4648), + [sym_integer] = ACTIONS(4648), + [sym_float] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym_multiline_string] = ACTIONS(4646), + [sym_character] = ACTIONS(4646), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5026), + [sym__newline] = ACTIONS(4646), }, - [STATE(2009)] = { - [ts_builtin_sym_end] = ACTIONS(5030), - [sym_identifier] = ACTIONS(5032), - [anon_sym_import] = ACTIONS(5032), - [anon_sym_test] = ACTIONS(5032), - [anon_sym_hide] = ACTIONS(5032), - [anon_sym_func] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5030), - [anon_sym_struct] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5030), - [anon_sym_LBRACE] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_DASH] = ACTIONS(5030), - [anon_sym_DOLLAR] = ACTIONS(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_void] = ACTIONS(5032), - [anon_sym_noreturn] = ACTIONS(5032), - [anon_sym_type] = ACTIONS(5032), - [anon_sym_anyopaque] = ACTIONS(5032), - [anon_sym_bool] = ACTIONS(5032), - [anon_sym_int] = ACTIONS(5032), - [anon_sym_uint] = ACTIONS(5032), - [anon_sym_float] = ACTIONS(5032), - [anon_sym_range] = ACTIONS(5032), - [anon_sym_i8] = ACTIONS(5032), - [anon_sym_i16] = ACTIONS(5032), - [anon_sym_i32] = ACTIONS(5032), - [anon_sym_i64] = ACTIONS(5032), - [anon_sym_u8] = ACTIONS(5032), - [anon_sym_u16] = ACTIONS(5032), - [anon_sym_u32] = ACTIONS(5032), - [anon_sym_u64] = ACTIONS(5032), - [anon_sym_isize] = ACTIONS(5032), - [anon_sym_usize] = ACTIONS(5032), - [anon_sym_f32] = ACTIONS(5032), - [anon_sym_f64] = ACTIONS(5032), - [anon_sym_c_char] = ACTIONS(5032), - [anon_sym_c_schar] = ACTIONS(5032), - [anon_sym_c_uchar] = ACTIONS(5032), - [anon_sym_c_short] = ACTIONS(5032), - [anon_sym_c_ushort] = ACTIONS(5032), - [anon_sym_c_int] = ACTIONS(5032), - [anon_sym_c_uint] = ACTIONS(5032), - [anon_sym_c_long] = ACTIONS(5032), - [anon_sym_c_ulong] = ACTIONS(5032), - [anon_sym_c_longlong] = ACTIONS(5032), - [anon_sym_c_ulonglong] = ACTIONS(5032), - [anon_sym_c_float] = ACTIONS(5032), - [anon_sym_c_double] = ACTIONS(5032), - [anon_sym_c_longdouble] = ACTIONS(5032), - [anon_sym_return] = ACTIONS(5032), - [anon_sym_yield] = ACTIONS(5032), - [anon_sym_break] = ACTIONS(5032), - [anon_sym_continue] = ACTIONS(5032), - [anon_sym_defer] = ACTIONS(5032), - [anon_sym_errdefer] = ACTIONS(5032), - [anon_sym_if] = ACTIONS(5032), - [anon_sym_else] = ACTIONS(5032), - [anon_sym_while] = ACTIONS(5032), - [anon_sym_expand] = ACTIONS(5032), - [anon_sym_for] = ACTIONS(5032), - [anon_sym_match] = ACTIONS(5032), - [anon_sym_AMP] = ACTIONS(5030), - [anon_sym_TILDE] = ACTIONS(5030), - [anon_sym_try] = ACTIONS(5032), - [anon_sym_DOT] = ACTIONS(5030), - [anon_sym_true] = ACTIONS(5032), - [anon_sym_false] = ACTIONS(5032), - [anon_sym_null] = ACTIONS(5032), - [anon_sym_unreachable] = ACTIONS(5032), - [anon_sym_undefined] = ACTIONS(5032), - [sym_sink] = ACTIONS(5032), - [sym_integer] = ACTIONS(5032), - [sym_float] = ACTIONS(5030), - [anon_sym_DQUOTE] = ACTIONS(5030), - [sym_multiline_string] = ACTIONS(5030), - [sym_character] = ACTIONS(5030), + [STATE(6609)] = { + [ts_builtin_sym_end] = ACTIONS(5088), + [sym_identifier] = ACTIONS(5090), + [anon_sym_import] = ACTIONS(5090), + [anon_sym_test] = ACTIONS(5090), + [anon_sym_hide] = ACTIONS(5090), + [anon_sym_func] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5088), + [anon_sym_struct] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_DOLLAR] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_void] = ACTIONS(5090), + [anon_sym_noreturn] = ACTIONS(5090), + [anon_sym_type] = ACTIONS(5090), + [anon_sym_anyopaque] = ACTIONS(5090), + [anon_sym_bool] = ACTIONS(5090), + [anon_sym_int] = ACTIONS(5090), + [anon_sym_uint] = ACTIONS(5090), + [anon_sym_float] = ACTIONS(5090), + [anon_sym_range] = ACTIONS(5090), + [anon_sym_i8] = ACTIONS(5090), + [anon_sym_i16] = ACTIONS(5090), + [anon_sym_i32] = ACTIONS(5090), + [anon_sym_i64] = ACTIONS(5090), + [anon_sym_u8] = ACTIONS(5090), + [anon_sym_u16] = ACTIONS(5090), + [anon_sym_u32] = ACTIONS(5090), + [anon_sym_u64] = ACTIONS(5090), + [anon_sym_isize] = ACTIONS(5090), + [anon_sym_usize] = ACTIONS(5090), + [anon_sym_f32] = ACTIONS(5090), + [anon_sym_f64] = ACTIONS(5090), + [anon_sym_c_char] = ACTIONS(5090), + [anon_sym_c_schar] = ACTIONS(5090), + [anon_sym_c_uchar] = ACTIONS(5090), + [anon_sym_c_short] = ACTIONS(5090), + [anon_sym_c_ushort] = ACTIONS(5090), + [anon_sym_c_int] = ACTIONS(5090), + [anon_sym_c_uint] = ACTIONS(5090), + [anon_sym_c_long] = ACTIONS(5090), + [anon_sym_c_ulong] = ACTIONS(5090), + [anon_sym_c_longlong] = ACTIONS(5090), + [anon_sym_c_ulonglong] = ACTIONS(5090), + [anon_sym_c_float] = ACTIONS(5090), + [anon_sym_c_double] = ACTIONS(5090), + [anon_sym_c_longdouble] = ACTIONS(5090), + [anon_sym_return] = ACTIONS(5090), + [anon_sym_yield] = ACTIONS(5090), + [anon_sym_break] = ACTIONS(5090), + [anon_sym_continue] = ACTIONS(5090), + [anon_sym_defer] = ACTIONS(5090), + [anon_sym_errdefer] = ACTIONS(5090), + [anon_sym_if] = ACTIONS(5090), + [anon_sym_else] = ACTIONS(5090), + [anon_sym_while] = ACTIONS(5090), + [anon_sym_expand] = ACTIONS(5090), + [anon_sym_for] = ACTIONS(5090), + [anon_sym_match] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_TILDE] = ACTIONS(5088), + [anon_sym_try] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_true] = ACTIONS(5090), + [anon_sym_false] = ACTIONS(5090), + [anon_sym_null] = ACTIONS(5090), + [anon_sym_unreachable] = ACTIONS(5090), + [anon_sym_undefined] = ACTIONS(5090), + [sym_sink] = ACTIONS(5090), + [sym_integer] = ACTIONS(5090), + [sym_float] = ACTIONS(5088), + [anon_sym_DQUOTE] = ACTIONS(5088), + [sym_multiline_string] = ACTIONS(5088), + [sym_character] = ACTIONS(5088), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5030), + [sym__newline] = ACTIONS(5088), }, - [STATE(2010)] = { - [ts_builtin_sym_end] = ACTIONS(5034), - [sym_identifier] = ACTIONS(5036), - [anon_sym_import] = ACTIONS(5036), - [anon_sym_test] = ACTIONS(5036), - [anon_sym_hide] = ACTIONS(5036), - [anon_sym_func] = ACTIONS(5036), - [anon_sym_BANG] = ACTIONS(5034), - [anon_sym_struct] = ACTIONS(5036), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_RPAREN] = ACTIONS(5034), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_DASH] = ACTIONS(5034), - [anon_sym_DOLLAR] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_void] = ACTIONS(5036), - [anon_sym_noreturn] = ACTIONS(5036), - [anon_sym_type] = ACTIONS(5036), - [anon_sym_anyopaque] = ACTIONS(5036), - [anon_sym_bool] = ACTIONS(5036), - [anon_sym_int] = ACTIONS(5036), - [anon_sym_uint] = ACTIONS(5036), - [anon_sym_float] = ACTIONS(5036), - [anon_sym_range] = ACTIONS(5036), - [anon_sym_i8] = ACTIONS(5036), - [anon_sym_i16] = ACTIONS(5036), - [anon_sym_i32] = ACTIONS(5036), - [anon_sym_i64] = ACTIONS(5036), - [anon_sym_u8] = ACTIONS(5036), - [anon_sym_u16] = ACTIONS(5036), - [anon_sym_u32] = ACTIONS(5036), - [anon_sym_u64] = ACTIONS(5036), - [anon_sym_isize] = ACTIONS(5036), - [anon_sym_usize] = ACTIONS(5036), - [anon_sym_f32] = ACTIONS(5036), - [anon_sym_f64] = ACTIONS(5036), - [anon_sym_c_char] = ACTIONS(5036), - [anon_sym_c_schar] = ACTIONS(5036), - [anon_sym_c_uchar] = ACTIONS(5036), - [anon_sym_c_short] = ACTIONS(5036), - [anon_sym_c_ushort] = ACTIONS(5036), - [anon_sym_c_int] = ACTIONS(5036), - [anon_sym_c_uint] = ACTIONS(5036), - [anon_sym_c_long] = ACTIONS(5036), - [anon_sym_c_ulong] = ACTIONS(5036), - [anon_sym_c_longlong] = ACTIONS(5036), - [anon_sym_c_ulonglong] = ACTIONS(5036), - [anon_sym_c_float] = ACTIONS(5036), - [anon_sym_c_double] = ACTIONS(5036), - [anon_sym_c_longdouble] = ACTIONS(5036), - [anon_sym_return] = ACTIONS(5036), - [anon_sym_yield] = ACTIONS(5036), - [anon_sym_break] = ACTIONS(5036), - [anon_sym_continue] = ACTIONS(5036), - [anon_sym_defer] = ACTIONS(5036), - [anon_sym_errdefer] = ACTIONS(5036), - [anon_sym_if] = ACTIONS(5036), - [anon_sym_else] = ACTIONS(5036), - [anon_sym_while] = ACTIONS(5036), - [anon_sym_expand] = ACTIONS(5036), - [anon_sym_for] = ACTIONS(5036), - [anon_sym_match] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5034), - [anon_sym_TILDE] = ACTIONS(5034), - [anon_sym_try] = ACTIONS(5036), - [anon_sym_DOT] = ACTIONS(5034), - [anon_sym_true] = ACTIONS(5036), - [anon_sym_false] = ACTIONS(5036), - [anon_sym_null] = ACTIONS(5036), - [anon_sym_unreachable] = ACTIONS(5036), - [anon_sym_undefined] = ACTIONS(5036), - [sym_sink] = ACTIONS(5036), - [sym_integer] = ACTIONS(5036), - [sym_float] = ACTIONS(5034), - [anon_sym_DQUOTE] = ACTIONS(5034), - [sym_multiline_string] = ACTIONS(5034), - [sym_character] = ACTIONS(5034), + [STATE(6610)] = { + [ts_builtin_sym_end] = ACTIONS(5092), + [sym_identifier] = ACTIONS(5094), + [anon_sym_import] = ACTIONS(5094), + [anon_sym_test] = ACTIONS(5094), + [anon_sym_hide] = ACTIONS(5094), + [anon_sym_func] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5092), + [anon_sym_LBRACE] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_void] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_type] = ACTIONS(5094), + [anon_sym_anyopaque] = ACTIONS(5094), + [anon_sym_bool] = ACTIONS(5094), + [anon_sym_int] = ACTIONS(5094), + [anon_sym_uint] = ACTIONS(5094), + [anon_sym_float] = ACTIONS(5094), + [anon_sym_range] = ACTIONS(5094), + [anon_sym_i8] = ACTIONS(5094), + [anon_sym_i16] = ACTIONS(5094), + [anon_sym_i32] = ACTIONS(5094), + [anon_sym_i64] = ACTIONS(5094), + [anon_sym_u8] = ACTIONS(5094), + [anon_sym_u16] = ACTIONS(5094), + [anon_sym_u32] = ACTIONS(5094), + [anon_sym_u64] = ACTIONS(5094), + [anon_sym_isize] = ACTIONS(5094), + [anon_sym_usize] = ACTIONS(5094), + [anon_sym_f32] = ACTIONS(5094), + [anon_sym_f64] = ACTIONS(5094), + [anon_sym_c_char] = ACTIONS(5094), + [anon_sym_c_schar] = ACTIONS(5094), + [anon_sym_c_uchar] = ACTIONS(5094), + [anon_sym_c_short] = ACTIONS(5094), + [anon_sym_c_ushort] = ACTIONS(5094), + [anon_sym_c_int] = ACTIONS(5094), + [anon_sym_c_uint] = ACTIONS(5094), + [anon_sym_c_long] = ACTIONS(5094), + [anon_sym_c_ulong] = ACTIONS(5094), + [anon_sym_c_longlong] = ACTIONS(5094), + [anon_sym_c_ulonglong] = ACTIONS(5094), + [anon_sym_c_float] = ACTIONS(5094), + [anon_sym_c_double] = ACTIONS(5094), + [anon_sym_c_longdouble] = ACTIONS(5094), + [anon_sym_return] = ACTIONS(5094), + [anon_sym_yield] = ACTIONS(5094), + [anon_sym_break] = ACTIONS(5094), + [anon_sym_continue] = ACTIONS(5094), + [anon_sym_defer] = ACTIONS(5094), + [anon_sym_errdefer] = ACTIONS(5094), + [anon_sym_if] = ACTIONS(5094), + [anon_sym_else] = ACTIONS(5094), + [anon_sym_while] = ACTIONS(5094), + [anon_sym_expand] = ACTIONS(5094), + [anon_sym_for] = ACTIONS(5094), + [anon_sym_match] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5092), + [anon_sym_TILDE] = ACTIONS(5092), + [anon_sym_try] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5092), + [anon_sym_true] = ACTIONS(5094), + [anon_sym_false] = ACTIONS(5094), + [anon_sym_null] = ACTIONS(5094), + [anon_sym_unreachable] = ACTIONS(5094), + [anon_sym_undefined] = ACTIONS(5094), + [sym_sink] = ACTIONS(5094), + [sym_integer] = ACTIONS(5094), + [sym_float] = ACTIONS(5092), + [anon_sym_DQUOTE] = ACTIONS(5092), + [sym_multiline_string] = ACTIONS(5092), + [sym_character] = ACTIONS(5092), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5034), + [sym__newline] = ACTIONS(5092), }, - [STATE(2011)] = { - [ts_builtin_sym_end] = ACTIONS(5038), - [sym_identifier] = ACTIONS(5040), - [anon_sym_import] = ACTIONS(5040), - [anon_sym_test] = ACTIONS(5040), - [anon_sym_hide] = ACTIONS(5040), - [anon_sym_func] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5038), - [anon_sym_struct] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(5038), - [anon_sym_RPAREN] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5038), - [anon_sym_RBRACE] = ACTIONS(5038), - [anon_sym_DASH] = ACTIONS(5038), - [anon_sym_DOLLAR] = ACTIONS(5038), - [anon_sym_LBRACK] = ACTIONS(5038), - [anon_sym_void] = ACTIONS(5040), - [anon_sym_noreturn] = ACTIONS(5040), - [anon_sym_type] = ACTIONS(5040), - [anon_sym_anyopaque] = ACTIONS(5040), - [anon_sym_bool] = ACTIONS(5040), - [anon_sym_int] = ACTIONS(5040), - [anon_sym_uint] = ACTIONS(5040), - [anon_sym_float] = ACTIONS(5040), - [anon_sym_range] = ACTIONS(5040), - [anon_sym_i8] = ACTIONS(5040), - [anon_sym_i16] = ACTIONS(5040), - [anon_sym_i32] = ACTIONS(5040), - [anon_sym_i64] = ACTIONS(5040), - [anon_sym_u8] = ACTIONS(5040), - [anon_sym_u16] = ACTIONS(5040), - [anon_sym_u32] = ACTIONS(5040), - [anon_sym_u64] = ACTIONS(5040), - [anon_sym_isize] = ACTIONS(5040), - [anon_sym_usize] = ACTIONS(5040), - [anon_sym_f32] = ACTIONS(5040), - [anon_sym_f64] = ACTIONS(5040), - [anon_sym_c_char] = ACTIONS(5040), - [anon_sym_c_schar] = ACTIONS(5040), - [anon_sym_c_uchar] = ACTIONS(5040), - [anon_sym_c_short] = ACTIONS(5040), - [anon_sym_c_ushort] = ACTIONS(5040), - [anon_sym_c_int] = ACTIONS(5040), - [anon_sym_c_uint] = ACTIONS(5040), - [anon_sym_c_long] = ACTIONS(5040), - [anon_sym_c_ulong] = ACTIONS(5040), - [anon_sym_c_longlong] = ACTIONS(5040), - [anon_sym_c_ulonglong] = ACTIONS(5040), - [anon_sym_c_float] = ACTIONS(5040), - [anon_sym_c_double] = ACTIONS(5040), - [anon_sym_c_longdouble] = ACTIONS(5040), - [anon_sym_return] = ACTIONS(5040), - [anon_sym_yield] = ACTIONS(5040), - [anon_sym_break] = ACTIONS(5040), - [anon_sym_continue] = ACTIONS(5040), - [anon_sym_defer] = ACTIONS(5040), - [anon_sym_errdefer] = ACTIONS(5040), - [anon_sym_if] = ACTIONS(5040), - [anon_sym_else] = ACTIONS(5040), - [anon_sym_while] = ACTIONS(5040), - [anon_sym_expand] = ACTIONS(5040), - [anon_sym_for] = ACTIONS(5040), - [anon_sym_match] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5038), - [anon_sym_TILDE] = ACTIONS(5038), - [anon_sym_try] = ACTIONS(5040), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_true] = ACTIONS(5040), - [anon_sym_false] = ACTIONS(5040), - [anon_sym_null] = ACTIONS(5040), - [anon_sym_unreachable] = ACTIONS(5040), - [anon_sym_undefined] = ACTIONS(5040), - [sym_sink] = ACTIONS(5040), - [sym_integer] = ACTIONS(5040), - [sym_float] = ACTIONS(5038), - [anon_sym_DQUOTE] = ACTIONS(5038), - [sym_multiline_string] = ACTIONS(5038), - [sym_character] = ACTIONS(5038), + [STATE(6611)] = { + [ts_builtin_sym_end] = ACTIONS(5396), + [sym_identifier] = ACTIONS(5398), + [anon_sym_import] = ACTIONS(5398), + [anon_sym_test] = ACTIONS(5398), + [anon_sym_hide] = ACTIONS(5398), + [anon_sym_func] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5396), + [anon_sym_struct] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5396), + [anon_sym_DOLLAR] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_void] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_type] = ACTIONS(5398), + [anon_sym_anyopaque] = ACTIONS(5398), + [anon_sym_bool] = ACTIONS(5398), + [anon_sym_int] = ACTIONS(5398), + [anon_sym_uint] = ACTIONS(5398), + [anon_sym_float] = ACTIONS(5398), + [anon_sym_range] = ACTIONS(5398), + [anon_sym_i8] = ACTIONS(5398), + [anon_sym_i16] = ACTIONS(5398), + [anon_sym_i32] = ACTIONS(5398), + [anon_sym_i64] = ACTIONS(5398), + [anon_sym_u8] = ACTIONS(5398), + [anon_sym_u16] = ACTIONS(5398), + [anon_sym_u32] = ACTIONS(5398), + [anon_sym_u64] = ACTIONS(5398), + [anon_sym_isize] = ACTIONS(5398), + [anon_sym_usize] = ACTIONS(5398), + [anon_sym_f32] = ACTIONS(5398), + [anon_sym_f64] = ACTIONS(5398), + [anon_sym_c_char] = ACTIONS(5398), + [anon_sym_c_schar] = ACTIONS(5398), + [anon_sym_c_uchar] = ACTIONS(5398), + [anon_sym_c_short] = ACTIONS(5398), + [anon_sym_c_ushort] = ACTIONS(5398), + [anon_sym_c_int] = ACTIONS(5398), + [anon_sym_c_uint] = ACTIONS(5398), + [anon_sym_c_long] = ACTIONS(5398), + [anon_sym_c_ulong] = ACTIONS(5398), + [anon_sym_c_longlong] = ACTIONS(5398), + [anon_sym_c_ulonglong] = ACTIONS(5398), + [anon_sym_c_float] = ACTIONS(5398), + [anon_sym_c_double] = ACTIONS(5398), + [anon_sym_c_longdouble] = ACTIONS(5398), + [anon_sym_return] = ACTIONS(5398), + [anon_sym_yield] = ACTIONS(5398), + [anon_sym_break] = ACTIONS(5398), + [anon_sym_continue] = ACTIONS(5398), + [anon_sym_defer] = ACTIONS(5398), + [anon_sym_errdefer] = ACTIONS(5398), + [anon_sym_if] = ACTIONS(5398), + [anon_sym_else] = ACTIONS(5398), + [anon_sym_while] = ACTIONS(5398), + [anon_sym_expand] = ACTIONS(5398), + [anon_sym_for] = ACTIONS(5398), + [anon_sym_match] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5396), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_try] = ACTIONS(5398), + [anon_sym_DOT] = ACTIONS(5396), + [anon_sym_true] = ACTIONS(5398), + [anon_sym_false] = ACTIONS(5398), + [anon_sym_null] = ACTIONS(5398), + [anon_sym_unreachable] = ACTIONS(5398), + [anon_sym_undefined] = ACTIONS(5398), + [sym_sink] = ACTIONS(5398), + [sym_integer] = ACTIONS(5398), + [sym_float] = ACTIONS(5396), + [anon_sym_DQUOTE] = ACTIONS(5396), + [sym_multiline_string] = ACTIONS(5396), + [sym_character] = ACTIONS(5396), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5038), + [sym__newline] = ACTIONS(5396), }, - [STATE(2012)] = { - [ts_builtin_sym_end] = ACTIONS(5042), - [sym_identifier] = ACTIONS(5044), - [anon_sym_import] = ACTIONS(5044), - [anon_sym_test] = ACTIONS(5044), - [anon_sym_hide] = ACTIONS(5044), - [anon_sym_func] = ACTIONS(5044), - [anon_sym_BANG] = ACTIONS(5042), - [anon_sym_struct] = ACTIONS(5044), - [anon_sym_LPAREN] = ACTIONS(5042), - [anon_sym_RPAREN] = ACTIONS(5042), - [anon_sym_LBRACE] = ACTIONS(5042), - [anon_sym_RBRACE] = ACTIONS(5042), - [anon_sym_DASH] = ACTIONS(5042), - [anon_sym_DOLLAR] = ACTIONS(5042), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_void] = ACTIONS(5044), - [anon_sym_noreturn] = ACTIONS(5044), - [anon_sym_type] = ACTIONS(5044), - [anon_sym_anyopaque] = ACTIONS(5044), - [anon_sym_bool] = ACTIONS(5044), - [anon_sym_int] = ACTIONS(5044), - [anon_sym_uint] = ACTIONS(5044), - [anon_sym_float] = ACTIONS(5044), - [anon_sym_range] = ACTIONS(5044), - [anon_sym_i8] = ACTIONS(5044), - [anon_sym_i16] = ACTIONS(5044), - [anon_sym_i32] = ACTIONS(5044), - [anon_sym_i64] = ACTIONS(5044), - [anon_sym_u8] = ACTIONS(5044), - [anon_sym_u16] = ACTIONS(5044), - [anon_sym_u32] = ACTIONS(5044), - [anon_sym_u64] = ACTIONS(5044), - [anon_sym_isize] = ACTIONS(5044), - [anon_sym_usize] = ACTIONS(5044), - [anon_sym_f32] = ACTIONS(5044), - [anon_sym_f64] = ACTIONS(5044), - [anon_sym_c_char] = ACTIONS(5044), - [anon_sym_c_schar] = ACTIONS(5044), - [anon_sym_c_uchar] = ACTIONS(5044), - [anon_sym_c_short] = ACTIONS(5044), - [anon_sym_c_ushort] = ACTIONS(5044), - [anon_sym_c_int] = ACTIONS(5044), - [anon_sym_c_uint] = ACTIONS(5044), - [anon_sym_c_long] = ACTIONS(5044), - [anon_sym_c_ulong] = ACTIONS(5044), - [anon_sym_c_longlong] = ACTIONS(5044), - [anon_sym_c_ulonglong] = ACTIONS(5044), - [anon_sym_c_float] = ACTIONS(5044), - [anon_sym_c_double] = ACTIONS(5044), - [anon_sym_c_longdouble] = ACTIONS(5044), - [anon_sym_return] = ACTIONS(5044), - [anon_sym_yield] = ACTIONS(5044), - [anon_sym_break] = ACTIONS(5044), - [anon_sym_continue] = ACTIONS(5044), - [anon_sym_defer] = ACTIONS(5044), - [anon_sym_errdefer] = ACTIONS(5044), - [anon_sym_if] = ACTIONS(5044), - [anon_sym_else] = ACTIONS(5044), - [anon_sym_while] = ACTIONS(5044), - [anon_sym_expand] = ACTIONS(5044), - [anon_sym_for] = ACTIONS(5044), - [anon_sym_match] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5042), - [anon_sym_TILDE] = ACTIONS(5042), - [anon_sym_try] = ACTIONS(5044), - [anon_sym_DOT] = ACTIONS(5042), - [anon_sym_true] = ACTIONS(5044), - [anon_sym_false] = ACTIONS(5044), - [anon_sym_null] = ACTIONS(5044), - [anon_sym_unreachable] = ACTIONS(5044), - [anon_sym_undefined] = ACTIONS(5044), - [sym_sink] = ACTIONS(5044), - [sym_integer] = ACTIONS(5044), - [sym_float] = ACTIONS(5042), - [anon_sym_DQUOTE] = ACTIONS(5042), - [sym_multiline_string] = ACTIONS(5042), - [sym_character] = ACTIONS(5042), + [STATE(6612)] = { + [ts_builtin_sym_end] = ACTIONS(5400), + [sym_identifier] = ACTIONS(5402), + [anon_sym_import] = ACTIONS(5402), + [anon_sym_test] = ACTIONS(5402), + [anon_sym_hide] = ACTIONS(5402), + [anon_sym_func] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5400), + [anon_sym_struct] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_void] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_type] = ACTIONS(5402), + [anon_sym_anyopaque] = ACTIONS(5402), + [anon_sym_bool] = ACTIONS(5402), + [anon_sym_int] = ACTIONS(5402), + [anon_sym_uint] = ACTIONS(5402), + [anon_sym_float] = ACTIONS(5402), + [anon_sym_range] = ACTIONS(5402), + [anon_sym_i8] = ACTIONS(5402), + [anon_sym_i16] = ACTIONS(5402), + [anon_sym_i32] = ACTIONS(5402), + [anon_sym_i64] = ACTIONS(5402), + [anon_sym_u8] = ACTIONS(5402), + [anon_sym_u16] = ACTIONS(5402), + [anon_sym_u32] = ACTIONS(5402), + [anon_sym_u64] = ACTIONS(5402), + [anon_sym_isize] = ACTIONS(5402), + [anon_sym_usize] = ACTIONS(5402), + [anon_sym_f32] = ACTIONS(5402), + [anon_sym_f64] = ACTIONS(5402), + [anon_sym_c_char] = ACTIONS(5402), + [anon_sym_c_schar] = ACTIONS(5402), + [anon_sym_c_uchar] = ACTIONS(5402), + [anon_sym_c_short] = ACTIONS(5402), + [anon_sym_c_ushort] = ACTIONS(5402), + [anon_sym_c_int] = ACTIONS(5402), + [anon_sym_c_uint] = ACTIONS(5402), + [anon_sym_c_long] = ACTIONS(5402), + [anon_sym_c_ulong] = ACTIONS(5402), + [anon_sym_c_longlong] = ACTIONS(5402), + [anon_sym_c_ulonglong] = ACTIONS(5402), + [anon_sym_c_float] = ACTIONS(5402), + [anon_sym_c_double] = ACTIONS(5402), + [anon_sym_c_longdouble] = ACTIONS(5402), + [anon_sym_return] = ACTIONS(5402), + [anon_sym_yield] = ACTIONS(5402), + [anon_sym_break] = ACTIONS(5402), + [anon_sym_continue] = ACTIONS(5402), + [anon_sym_defer] = ACTIONS(5402), + [anon_sym_errdefer] = ACTIONS(5402), + [anon_sym_if] = ACTIONS(5402), + [anon_sym_else] = ACTIONS(5402), + [anon_sym_while] = ACTIONS(5402), + [anon_sym_expand] = ACTIONS(5402), + [anon_sym_for] = ACTIONS(5402), + [anon_sym_match] = ACTIONS(5402), + [anon_sym_AMP] = ACTIONS(5400), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_try] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5400), + [anon_sym_true] = ACTIONS(5402), + [anon_sym_false] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5402), + [anon_sym_unreachable] = ACTIONS(5402), + [anon_sym_undefined] = ACTIONS(5402), + [sym_sink] = ACTIONS(5402), + [sym_integer] = ACTIONS(5402), + [sym_float] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [sym_multiline_string] = ACTIONS(5400), + [sym_character] = ACTIONS(5400), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5042), + [sym__newline] = ACTIONS(5400), }, - [STATE(2013)] = { - [ts_builtin_sym_end] = ACTIONS(5046), - [sym_identifier] = ACTIONS(5048), - [anon_sym_import] = ACTIONS(5048), - [anon_sym_test] = ACTIONS(5048), - [anon_sym_hide] = ACTIONS(5048), - [anon_sym_func] = ACTIONS(5048), - [anon_sym_BANG] = ACTIONS(5046), - [anon_sym_struct] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(5046), - [anon_sym_RPAREN] = ACTIONS(5046), - [anon_sym_LBRACE] = ACTIONS(5046), - [anon_sym_RBRACE] = ACTIONS(5046), - [anon_sym_DASH] = ACTIONS(5046), - [anon_sym_DOLLAR] = ACTIONS(5046), - [anon_sym_LBRACK] = ACTIONS(5046), - [anon_sym_void] = ACTIONS(5048), - [anon_sym_noreturn] = ACTIONS(5048), - [anon_sym_type] = ACTIONS(5048), - [anon_sym_anyopaque] = ACTIONS(5048), - [anon_sym_bool] = ACTIONS(5048), - [anon_sym_int] = ACTIONS(5048), - [anon_sym_uint] = ACTIONS(5048), - [anon_sym_float] = ACTIONS(5048), - [anon_sym_range] = ACTIONS(5048), - [anon_sym_i8] = ACTIONS(5048), - [anon_sym_i16] = ACTIONS(5048), - [anon_sym_i32] = ACTIONS(5048), - [anon_sym_i64] = ACTIONS(5048), - [anon_sym_u8] = ACTIONS(5048), - [anon_sym_u16] = ACTIONS(5048), - [anon_sym_u32] = ACTIONS(5048), - [anon_sym_u64] = ACTIONS(5048), - [anon_sym_isize] = ACTIONS(5048), - [anon_sym_usize] = ACTIONS(5048), - [anon_sym_f32] = ACTIONS(5048), - [anon_sym_f64] = ACTIONS(5048), - [anon_sym_c_char] = ACTIONS(5048), - [anon_sym_c_schar] = ACTIONS(5048), - [anon_sym_c_uchar] = ACTIONS(5048), - [anon_sym_c_short] = ACTIONS(5048), - [anon_sym_c_ushort] = ACTIONS(5048), - [anon_sym_c_int] = ACTIONS(5048), - [anon_sym_c_uint] = ACTIONS(5048), - [anon_sym_c_long] = ACTIONS(5048), - [anon_sym_c_ulong] = ACTIONS(5048), - [anon_sym_c_longlong] = ACTIONS(5048), - [anon_sym_c_ulonglong] = ACTIONS(5048), - [anon_sym_c_float] = ACTIONS(5048), - [anon_sym_c_double] = ACTIONS(5048), - [anon_sym_c_longdouble] = ACTIONS(5048), - [anon_sym_return] = ACTIONS(5048), - [anon_sym_yield] = ACTIONS(5048), - [anon_sym_break] = ACTIONS(5048), - [anon_sym_continue] = ACTIONS(5048), - [anon_sym_defer] = ACTIONS(5048), - [anon_sym_errdefer] = ACTIONS(5048), - [anon_sym_if] = ACTIONS(5048), - [anon_sym_else] = ACTIONS(5048), - [anon_sym_while] = ACTIONS(5048), - [anon_sym_expand] = ACTIONS(5048), - [anon_sym_for] = ACTIONS(5048), - [anon_sym_match] = ACTIONS(5048), - [anon_sym_AMP] = ACTIONS(5046), - [anon_sym_TILDE] = ACTIONS(5046), - [anon_sym_try] = ACTIONS(5048), - [anon_sym_DOT] = ACTIONS(5046), - [anon_sym_true] = ACTIONS(5048), - [anon_sym_false] = ACTIONS(5048), - [anon_sym_null] = ACTIONS(5048), - [anon_sym_unreachable] = ACTIONS(5048), - [anon_sym_undefined] = ACTIONS(5048), - [sym_sink] = ACTIONS(5048), - [sym_integer] = ACTIONS(5048), - [sym_float] = ACTIONS(5046), - [anon_sym_DQUOTE] = ACTIONS(5046), - [sym_multiline_string] = ACTIONS(5046), - [sym_character] = ACTIONS(5046), + [STATE(6613)] = { + [ts_builtin_sym_end] = ACTIONS(5404), + [sym_identifier] = ACTIONS(5406), + [anon_sym_import] = ACTIONS(5406), + [anon_sym_test] = ACTIONS(5406), + [anon_sym_hide] = ACTIONS(5406), + [anon_sym_func] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5404), + [anon_sym_struct] = ACTIONS(5406), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_void] = ACTIONS(5406), + [anon_sym_noreturn] = ACTIONS(5406), + [anon_sym_type] = ACTIONS(5406), + [anon_sym_anyopaque] = ACTIONS(5406), + [anon_sym_bool] = ACTIONS(5406), + [anon_sym_int] = ACTIONS(5406), + [anon_sym_uint] = ACTIONS(5406), + [anon_sym_float] = ACTIONS(5406), + [anon_sym_range] = ACTIONS(5406), + [anon_sym_i8] = ACTIONS(5406), + [anon_sym_i16] = ACTIONS(5406), + [anon_sym_i32] = ACTIONS(5406), + [anon_sym_i64] = ACTIONS(5406), + [anon_sym_u8] = ACTIONS(5406), + [anon_sym_u16] = ACTIONS(5406), + [anon_sym_u32] = ACTIONS(5406), + [anon_sym_u64] = ACTIONS(5406), + [anon_sym_isize] = ACTIONS(5406), + [anon_sym_usize] = ACTIONS(5406), + [anon_sym_f32] = ACTIONS(5406), + [anon_sym_f64] = ACTIONS(5406), + [anon_sym_c_char] = ACTIONS(5406), + [anon_sym_c_schar] = ACTIONS(5406), + [anon_sym_c_uchar] = ACTIONS(5406), + [anon_sym_c_short] = ACTIONS(5406), + [anon_sym_c_ushort] = ACTIONS(5406), + [anon_sym_c_int] = ACTIONS(5406), + [anon_sym_c_uint] = ACTIONS(5406), + [anon_sym_c_long] = ACTIONS(5406), + [anon_sym_c_ulong] = ACTIONS(5406), + [anon_sym_c_longlong] = ACTIONS(5406), + [anon_sym_c_ulonglong] = ACTIONS(5406), + [anon_sym_c_float] = ACTIONS(5406), + [anon_sym_c_double] = ACTIONS(5406), + [anon_sym_c_longdouble] = ACTIONS(5406), + [anon_sym_return] = ACTIONS(5406), + [anon_sym_yield] = ACTIONS(5406), + [anon_sym_break] = ACTIONS(5406), + [anon_sym_continue] = ACTIONS(5406), + [anon_sym_defer] = ACTIONS(5406), + [anon_sym_errdefer] = ACTIONS(5406), + [anon_sym_if] = ACTIONS(5406), + [anon_sym_else] = ACTIONS(5406), + [anon_sym_while] = ACTIONS(5406), + [anon_sym_expand] = ACTIONS(5406), + [anon_sym_for] = ACTIONS(5406), + [anon_sym_match] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(5404), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_try] = ACTIONS(5406), + [anon_sym_DOT] = ACTIONS(5404), + [anon_sym_true] = ACTIONS(5406), + [anon_sym_false] = ACTIONS(5406), + [anon_sym_null] = ACTIONS(5406), + [anon_sym_unreachable] = ACTIONS(5406), + [anon_sym_undefined] = ACTIONS(5406), + [sym_sink] = ACTIONS(5406), + [sym_integer] = ACTIONS(5406), + [sym_float] = ACTIONS(5404), + [anon_sym_DQUOTE] = ACTIONS(5404), + [sym_multiline_string] = ACTIONS(5404), + [sym_character] = ACTIONS(5404), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5046), + [sym__newline] = ACTIONS(5404), }, - [STATE(2014)] = { - [ts_builtin_sym_end] = ACTIONS(5050), - [sym_identifier] = ACTIONS(5052), - [anon_sym_import] = ACTIONS(5052), - [anon_sym_test] = ACTIONS(5052), - [anon_sym_hide] = ACTIONS(5052), - [anon_sym_func] = ACTIONS(5052), - [anon_sym_BANG] = ACTIONS(5050), - [anon_sym_struct] = ACTIONS(5052), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_RPAREN] = ACTIONS(5050), - [anon_sym_LBRACE] = ACTIONS(5050), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_DASH] = ACTIONS(5050), - [anon_sym_DOLLAR] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_void] = ACTIONS(5052), - [anon_sym_noreturn] = ACTIONS(5052), - [anon_sym_type] = ACTIONS(5052), - [anon_sym_anyopaque] = ACTIONS(5052), - [anon_sym_bool] = ACTIONS(5052), - [anon_sym_int] = ACTIONS(5052), - [anon_sym_uint] = ACTIONS(5052), - [anon_sym_float] = ACTIONS(5052), - [anon_sym_range] = ACTIONS(5052), - [anon_sym_i8] = ACTIONS(5052), - [anon_sym_i16] = ACTIONS(5052), - [anon_sym_i32] = ACTIONS(5052), - [anon_sym_i64] = ACTIONS(5052), - [anon_sym_u8] = ACTIONS(5052), - [anon_sym_u16] = ACTIONS(5052), - [anon_sym_u32] = ACTIONS(5052), - [anon_sym_u64] = ACTIONS(5052), - [anon_sym_isize] = ACTIONS(5052), - [anon_sym_usize] = ACTIONS(5052), - [anon_sym_f32] = ACTIONS(5052), - [anon_sym_f64] = ACTIONS(5052), - [anon_sym_c_char] = ACTIONS(5052), - [anon_sym_c_schar] = ACTIONS(5052), - [anon_sym_c_uchar] = ACTIONS(5052), - [anon_sym_c_short] = ACTIONS(5052), - [anon_sym_c_ushort] = ACTIONS(5052), - [anon_sym_c_int] = ACTIONS(5052), - [anon_sym_c_uint] = ACTIONS(5052), - [anon_sym_c_long] = ACTIONS(5052), - [anon_sym_c_ulong] = ACTIONS(5052), - [anon_sym_c_longlong] = ACTIONS(5052), - [anon_sym_c_ulonglong] = ACTIONS(5052), - [anon_sym_c_float] = ACTIONS(5052), - [anon_sym_c_double] = ACTIONS(5052), - [anon_sym_c_longdouble] = ACTIONS(5052), - [anon_sym_return] = ACTIONS(5052), - [anon_sym_yield] = ACTIONS(5052), - [anon_sym_break] = ACTIONS(5052), - [anon_sym_continue] = ACTIONS(5052), - [anon_sym_defer] = ACTIONS(5052), - [anon_sym_errdefer] = ACTIONS(5052), - [anon_sym_if] = ACTIONS(5052), - [anon_sym_else] = ACTIONS(5052), - [anon_sym_while] = ACTIONS(5052), - [anon_sym_expand] = ACTIONS(5052), - [anon_sym_for] = ACTIONS(5052), - [anon_sym_match] = ACTIONS(5052), - [anon_sym_AMP] = ACTIONS(5050), - [anon_sym_TILDE] = ACTIONS(5050), - [anon_sym_try] = ACTIONS(5052), - [anon_sym_DOT] = ACTIONS(5050), - [anon_sym_true] = ACTIONS(5052), - [anon_sym_false] = ACTIONS(5052), - [anon_sym_null] = ACTIONS(5052), - [anon_sym_unreachable] = ACTIONS(5052), - [anon_sym_undefined] = ACTIONS(5052), - [sym_sink] = ACTIONS(5052), - [sym_integer] = ACTIONS(5052), - [sym_float] = ACTIONS(5050), - [anon_sym_DQUOTE] = ACTIONS(5050), - [sym_multiline_string] = ACTIONS(5050), - [sym_character] = ACTIONS(5050), + [STATE(6614)] = { + [ts_builtin_sym_end] = ACTIONS(5324), + [sym_identifier] = ACTIONS(5326), + [anon_sym_import] = ACTIONS(5326), + [anon_sym_test] = ACTIONS(5326), + [anon_sym_hide] = ACTIONS(5326), + [anon_sym_func] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_struct] = ACTIONS(5326), + [anon_sym_LPAREN] = ACTIONS(5324), + [anon_sym_RPAREN] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym_void] = ACTIONS(5326), + [anon_sym_noreturn] = ACTIONS(5326), + [anon_sym_type] = ACTIONS(5326), + [anon_sym_anyopaque] = ACTIONS(5326), + [anon_sym_bool] = ACTIONS(5326), + [anon_sym_int] = ACTIONS(5326), + [anon_sym_uint] = ACTIONS(5326), + [anon_sym_float] = ACTIONS(5326), + [anon_sym_range] = ACTIONS(5326), + [anon_sym_i8] = ACTIONS(5326), + [anon_sym_i16] = ACTIONS(5326), + [anon_sym_i32] = ACTIONS(5326), + [anon_sym_i64] = ACTIONS(5326), + [anon_sym_u8] = ACTIONS(5326), + [anon_sym_u16] = ACTIONS(5326), + [anon_sym_u32] = ACTIONS(5326), + [anon_sym_u64] = ACTIONS(5326), + [anon_sym_isize] = ACTIONS(5326), + [anon_sym_usize] = ACTIONS(5326), + [anon_sym_f32] = ACTIONS(5326), + [anon_sym_f64] = ACTIONS(5326), + [anon_sym_c_char] = ACTIONS(5326), + [anon_sym_c_schar] = ACTIONS(5326), + [anon_sym_c_uchar] = ACTIONS(5326), + [anon_sym_c_short] = ACTIONS(5326), + [anon_sym_c_ushort] = ACTIONS(5326), + [anon_sym_c_int] = ACTIONS(5326), + [anon_sym_c_uint] = ACTIONS(5326), + [anon_sym_c_long] = ACTIONS(5326), + [anon_sym_c_ulong] = ACTIONS(5326), + [anon_sym_c_longlong] = ACTIONS(5326), + [anon_sym_c_ulonglong] = ACTIONS(5326), + [anon_sym_c_float] = ACTIONS(5326), + [anon_sym_c_double] = ACTIONS(5326), + [anon_sym_c_longdouble] = ACTIONS(5326), + [anon_sym_return] = ACTIONS(5326), + [anon_sym_yield] = ACTIONS(5326), + [anon_sym_break] = ACTIONS(5326), + [anon_sym_continue] = ACTIONS(5326), + [anon_sym_defer] = ACTIONS(5326), + [anon_sym_errdefer] = ACTIONS(5326), + [anon_sym_if] = ACTIONS(5326), + [anon_sym_else] = ACTIONS(5326), + [anon_sym_while] = ACTIONS(5326), + [anon_sym_expand] = ACTIONS(5326), + [anon_sym_for] = ACTIONS(5326), + [anon_sym_match] = ACTIONS(5326), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_TILDE] = ACTIONS(5324), + [anon_sym_try] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_true] = ACTIONS(5326), + [anon_sym_false] = ACTIONS(5326), + [anon_sym_null] = ACTIONS(5326), + [anon_sym_unreachable] = ACTIONS(5326), + [anon_sym_undefined] = ACTIONS(5326), + [sym_sink] = ACTIONS(5326), + [sym_integer] = ACTIONS(5326), + [sym_float] = ACTIONS(5324), + [anon_sym_DQUOTE] = ACTIONS(5324), + [sym_multiline_string] = ACTIONS(5324), + [sym_character] = ACTIONS(5324), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5050), + [sym__newline] = ACTIONS(5324), }, - [STATE(2015)] = { - [ts_builtin_sym_end] = ACTIONS(5054), - [sym_identifier] = ACTIONS(5056), - [anon_sym_import] = ACTIONS(5056), - [anon_sym_test] = ACTIONS(5056), - [anon_sym_hide] = ACTIONS(5056), - [anon_sym_func] = ACTIONS(5056), - [anon_sym_BANG] = ACTIONS(5054), - [anon_sym_struct] = ACTIONS(5056), - [anon_sym_LPAREN] = ACTIONS(5054), - [anon_sym_RPAREN] = ACTIONS(5054), - [anon_sym_LBRACE] = ACTIONS(5054), - [anon_sym_RBRACE] = ACTIONS(5054), - [anon_sym_DASH] = ACTIONS(5054), - [anon_sym_DOLLAR] = ACTIONS(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_void] = ACTIONS(5056), - [anon_sym_noreturn] = ACTIONS(5056), - [anon_sym_type] = ACTIONS(5056), - [anon_sym_anyopaque] = ACTIONS(5056), - [anon_sym_bool] = ACTIONS(5056), - [anon_sym_int] = ACTIONS(5056), - [anon_sym_uint] = ACTIONS(5056), - [anon_sym_float] = ACTIONS(5056), - [anon_sym_range] = ACTIONS(5056), - [anon_sym_i8] = ACTIONS(5056), - [anon_sym_i16] = ACTIONS(5056), - [anon_sym_i32] = ACTIONS(5056), - [anon_sym_i64] = ACTIONS(5056), - [anon_sym_u8] = ACTIONS(5056), - [anon_sym_u16] = ACTIONS(5056), - [anon_sym_u32] = ACTIONS(5056), - [anon_sym_u64] = ACTIONS(5056), - [anon_sym_isize] = ACTIONS(5056), - [anon_sym_usize] = ACTIONS(5056), - [anon_sym_f32] = ACTIONS(5056), - [anon_sym_f64] = ACTIONS(5056), - [anon_sym_c_char] = ACTIONS(5056), - [anon_sym_c_schar] = ACTIONS(5056), - [anon_sym_c_uchar] = ACTIONS(5056), - [anon_sym_c_short] = ACTIONS(5056), - [anon_sym_c_ushort] = ACTIONS(5056), - [anon_sym_c_int] = ACTIONS(5056), - [anon_sym_c_uint] = ACTIONS(5056), - [anon_sym_c_long] = ACTIONS(5056), - [anon_sym_c_ulong] = ACTIONS(5056), - [anon_sym_c_longlong] = ACTIONS(5056), - [anon_sym_c_ulonglong] = ACTIONS(5056), - [anon_sym_c_float] = ACTIONS(5056), - [anon_sym_c_double] = ACTIONS(5056), - [anon_sym_c_longdouble] = ACTIONS(5056), - [anon_sym_return] = ACTIONS(5056), - [anon_sym_yield] = ACTIONS(5056), - [anon_sym_break] = ACTIONS(5056), - [anon_sym_continue] = ACTIONS(5056), - [anon_sym_defer] = ACTIONS(5056), - [anon_sym_errdefer] = ACTIONS(5056), - [anon_sym_if] = ACTIONS(5056), - [anon_sym_else] = ACTIONS(5056), - [anon_sym_while] = ACTIONS(5056), - [anon_sym_expand] = ACTIONS(5056), - [anon_sym_for] = ACTIONS(5056), - [anon_sym_match] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5054), - [anon_sym_TILDE] = ACTIONS(5054), - [anon_sym_try] = ACTIONS(5056), - [anon_sym_DOT] = ACTIONS(5054), - [anon_sym_true] = ACTIONS(5056), - [anon_sym_false] = ACTIONS(5056), - [anon_sym_null] = ACTIONS(5056), - [anon_sym_unreachable] = ACTIONS(5056), - [anon_sym_undefined] = ACTIONS(5056), - [sym_sink] = ACTIONS(5056), - [sym_integer] = ACTIONS(5056), - [sym_float] = ACTIONS(5054), - [anon_sym_DQUOTE] = ACTIONS(5054), - [sym_multiline_string] = ACTIONS(5054), - [sym_character] = ACTIONS(5054), + [STATE(6615)] = { + [ts_builtin_sym_end] = ACTIONS(4824), + [sym_identifier] = ACTIONS(4826), + [anon_sym_import] = ACTIONS(4826), + [anon_sym_test] = ACTIONS(4826), + [anon_sym_hide] = ACTIONS(4826), + [anon_sym_func] = ACTIONS(4826), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_struct] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_void] = ACTIONS(4826), + [anon_sym_noreturn] = ACTIONS(4826), + [anon_sym_type] = ACTIONS(4826), + [anon_sym_anyopaque] = ACTIONS(4826), + [anon_sym_bool] = ACTIONS(4826), + [anon_sym_int] = ACTIONS(4826), + [anon_sym_uint] = ACTIONS(4826), + [anon_sym_float] = ACTIONS(4826), + [anon_sym_range] = ACTIONS(4826), + [anon_sym_i8] = ACTIONS(4826), + [anon_sym_i16] = ACTIONS(4826), + [anon_sym_i32] = ACTIONS(4826), + [anon_sym_i64] = ACTIONS(4826), + [anon_sym_u8] = ACTIONS(4826), + [anon_sym_u16] = ACTIONS(4826), + [anon_sym_u32] = ACTIONS(4826), + [anon_sym_u64] = ACTIONS(4826), + [anon_sym_isize] = ACTIONS(4826), + [anon_sym_usize] = ACTIONS(4826), + [anon_sym_f32] = ACTIONS(4826), + [anon_sym_f64] = ACTIONS(4826), + [anon_sym_c_char] = ACTIONS(4826), + [anon_sym_c_schar] = ACTIONS(4826), + [anon_sym_c_uchar] = ACTIONS(4826), + [anon_sym_c_short] = ACTIONS(4826), + [anon_sym_c_ushort] = ACTIONS(4826), + [anon_sym_c_int] = ACTIONS(4826), + [anon_sym_c_uint] = ACTIONS(4826), + [anon_sym_c_long] = ACTIONS(4826), + [anon_sym_c_ulong] = ACTIONS(4826), + [anon_sym_c_longlong] = ACTIONS(4826), + [anon_sym_c_ulonglong] = ACTIONS(4826), + [anon_sym_c_float] = ACTIONS(4826), + [anon_sym_c_double] = ACTIONS(4826), + [anon_sym_c_longdouble] = ACTIONS(4826), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_yield] = ACTIONS(4826), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_defer] = ACTIONS(4826), + [anon_sym_errdefer] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_while] = ACTIONS(4826), + [anon_sym_expand] = ACTIONS(4826), + [anon_sym_for] = ACTIONS(4826), + [anon_sym_match] = ACTIONS(4826), + [anon_sym_AMP] = ACTIONS(4824), + [anon_sym_TILDE] = ACTIONS(4824), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_unreachable] = ACTIONS(4826), + [anon_sym_undefined] = ACTIONS(4826), + [sym_sink] = ACTIONS(4826), + [sym_integer] = ACTIONS(4826), + [sym_float] = ACTIONS(4824), + [anon_sym_DQUOTE] = ACTIONS(4824), + [sym_multiline_string] = ACTIONS(4824), + [sym_character] = ACTIONS(4824), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5054), + [sym__newline] = ACTIONS(4824), }, - [STATE(2016)] = { - [ts_builtin_sym_end] = ACTIONS(5058), - [sym_identifier] = ACTIONS(5060), - [anon_sym_import] = ACTIONS(5060), - [anon_sym_test] = ACTIONS(5060), - [anon_sym_hide] = ACTIONS(5060), - [anon_sym_func] = ACTIONS(5060), - [anon_sym_BANG] = ACTIONS(5058), - [anon_sym_struct] = ACTIONS(5060), - [anon_sym_LPAREN] = ACTIONS(5058), - [anon_sym_RPAREN] = ACTIONS(5058), - [anon_sym_LBRACE] = ACTIONS(5058), - [anon_sym_RBRACE] = ACTIONS(5058), - [anon_sym_DASH] = ACTIONS(5058), - [anon_sym_DOLLAR] = ACTIONS(5058), - [anon_sym_LBRACK] = ACTIONS(5058), - [anon_sym_void] = ACTIONS(5060), - [anon_sym_noreturn] = ACTIONS(5060), - [anon_sym_type] = ACTIONS(5060), - [anon_sym_anyopaque] = ACTIONS(5060), - [anon_sym_bool] = ACTIONS(5060), - [anon_sym_int] = ACTIONS(5060), - [anon_sym_uint] = ACTIONS(5060), - [anon_sym_float] = ACTIONS(5060), - [anon_sym_range] = ACTIONS(5060), - [anon_sym_i8] = ACTIONS(5060), - [anon_sym_i16] = ACTIONS(5060), - [anon_sym_i32] = ACTIONS(5060), - [anon_sym_i64] = ACTIONS(5060), - [anon_sym_u8] = ACTIONS(5060), - [anon_sym_u16] = ACTIONS(5060), - [anon_sym_u32] = ACTIONS(5060), - [anon_sym_u64] = ACTIONS(5060), - [anon_sym_isize] = ACTIONS(5060), - [anon_sym_usize] = ACTIONS(5060), - [anon_sym_f32] = ACTIONS(5060), - [anon_sym_f64] = ACTIONS(5060), - [anon_sym_c_char] = ACTIONS(5060), - [anon_sym_c_schar] = ACTIONS(5060), - [anon_sym_c_uchar] = ACTIONS(5060), - [anon_sym_c_short] = ACTIONS(5060), - [anon_sym_c_ushort] = ACTIONS(5060), - [anon_sym_c_int] = ACTIONS(5060), - [anon_sym_c_uint] = ACTIONS(5060), - [anon_sym_c_long] = ACTIONS(5060), - [anon_sym_c_ulong] = ACTIONS(5060), - [anon_sym_c_longlong] = ACTIONS(5060), - [anon_sym_c_ulonglong] = ACTIONS(5060), - [anon_sym_c_float] = ACTIONS(5060), - [anon_sym_c_double] = ACTIONS(5060), - [anon_sym_c_longdouble] = ACTIONS(5060), - [anon_sym_return] = ACTIONS(5060), - [anon_sym_yield] = ACTIONS(5060), - [anon_sym_break] = ACTIONS(5060), - [anon_sym_continue] = ACTIONS(5060), - [anon_sym_defer] = ACTIONS(5060), - [anon_sym_errdefer] = ACTIONS(5060), - [anon_sym_if] = ACTIONS(5060), - [anon_sym_else] = ACTIONS(5060), - [anon_sym_while] = ACTIONS(5060), - [anon_sym_expand] = ACTIONS(5060), - [anon_sym_for] = ACTIONS(5060), - [anon_sym_match] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5058), - [anon_sym_TILDE] = ACTIONS(5058), - [anon_sym_try] = ACTIONS(5060), - [anon_sym_DOT] = ACTIONS(5058), - [anon_sym_true] = ACTIONS(5060), - [anon_sym_false] = ACTIONS(5060), - [anon_sym_null] = ACTIONS(5060), - [anon_sym_unreachable] = ACTIONS(5060), - [anon_sym_undefined] = ACTIONS(5060), - [sym_sink] = ACTIONS(5060), - [sym_integer] = ACTIONS(5060), - [sym_float] = ACTIONS(5058), - [anon_sym_DQUOTE] = ACTIONS(5058), - [sym_multiline_string] = ACTIONS(5058), - [sym_character] = ACTIONS(5058), + [STATE(6616)] = { + [ts_builtin_sym_end] = ACTIONS(5250), + [sym_identifier] = ACTIONS(5252), + [anon_sym_import] = ACTIONS(5252), + [anon_sym_test] = ACTIONS(5252), + [anon_sym_hide] = ACTIONS(5252), + [anon_sym_func] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5250), + [anon_sym_struct] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_RPAREN] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5250), + [anon_sym_DOLLAR] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_void] = ACTIONS(5252), + [anon_sym_noreturn] = ACTIONS(5252), + [anon_sym_type] = ACTIONS(5252), + [anon_sym_anyopaque] = ACTIONS(5252), + [anon_sym_bool] = ACTIONS(5252), + [anon_sym_int] = ACTIONS(5252), + [anon_sym_uint] = ACTIONS(5252), + [anon_sym_float] = ACTIONS(5252), + [anon_sym_range] = ACTIONS(5252), + [anon_sym_i8] = ACTIONS(5252), + [anon_sym_i16] = ACTIONS(5252), + [anon_sym_i32] = ACTIONS(5252), + [anon_sym_i64] = ACTIONS(5252), + [anon_sym_u8] = ACTIONS(5252), + [anon_sym_u16] = ACTIONS(5252), + [anon_sym_u32] = ACTIONS(5252), + [anon_sym_u64] = ACTIONS(5252), + [anon_sym_isize] = ACTIONS(5252), + [anon_sym_usize] = ACTIONS(5252), + [anon_sym_f32] = ACTIONS(5252), + [anon_sym_f64] = ACTIONS(5252), + [anon_sym_c_char] = ACTIONS(5252), + [anon_sym_c_schar] = ACTIONS(5252), + [anon_sym_c_uchar] = ACTIONS(5252), + [anon_sym_c_short] = ACTIONS(5252), + [anon_sym_c_ushort] = ACTIONS(5252), + [anon_sym_c_int] = ACTIONS(5252), + [anon_sym_c_uint] = ACTIONS(5252), + [anon_sym_c_long] = ACTIONS(5252), + [anon_sym_c_ulong] = ACTIONS(5252), + [anon_sym_c_longlong] = ACTIONS(5252), + [anon_sym_c_ulonglong] = ACTIONS(5252), + [anon_sym_c_float] = ACTIONS(5252), + [anon_sym_c_double] = ACTIONS(5252), + [anon_sym_c_longdouble] = ACTIONS(5252), + [anon_sym_return] = ACTIONS(5252), + [anon_sym_yield] = ACTIONS(5252), + [anon_sym_break] = ACTIONS(5252), + [anon_sym_continue] = ACTIONS(5252), + [anon_sym_defer] = ACTIONS(5252), + [anon_sym_errdefer] = ACTIONS(5252), + [anon_sym_if] = ACTIONS(5252), + [anon_sym_else] = ACTIONS(5252), + [anon_sym_while] = ACTIONS(5252), + [anon_sym_expand] = ACTIONS(5252), + [anon_sym_for] = ACTIONS(5252), + [anon_sym_match] = ACTIONS(5252), + [anon_sym_AMP] = ACTIONS(5250), + [anon_sym_TILDE] = ACTIONS(5250), + [anon_sym_try] = ACTIONS(5252), + [anon_sym_DOT] = ACTIONS(5250), + [anon_sym_true] = ACTIONS(5252), + [anon_sym_false] = ACTIONS(5252), + [anon_sym_null] = ACTIONS(5252), + [anon_sym_unreachable] = ACTIONS(5252), + [anon_sym_undefined] = ACTIONS(5252), + [sym_sink] = ACTIONS(5252), + [sym_integer] = ACTIONS(5252), + [sym_float] = ACTIONS(5250), + [anon_sym_DQUOTE] = ACTIONS(5250), + [sym_multiline_string] = ACTIONS(5250), + [sym_character] = ACTIONS(5250), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5058), + [sym__newline] = ACTIONS(5250), }, - [STATE(2017)] = { - [ts_builtin_sym_end] = ACTIONS(5062), - [sym_identifier] = ACTIONS(5064), - [anon_sym_import] = ACTIONS(5064), - [anon_sym_test] = ACTIONS(5064), - [anon_sym_hide] = ACTIONS(5064), - [anon_sym_func] = ACTIONS(5064), - [anon_sym_BANG] = ACTIONS(5062), - [anon_sym_struct] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5062), - [anon_sym_RPAREN] = ACTIONS(5062), - [anon_sym_LBRACE] = ACTIONS(5062), - [anon_sym_RBRACE] = ACTIONS(5062), - [anon_sym_DASH] = ACTIONS(5062), - [anon_sym_DOLLAR] = ACTIONS(5062), - [anon_sym_LBRACK] = ACTIONS(5062), - [anon_sym_void] = ACTIONS(5064), - [anon_sym_noreturn] = ACTIONS(5064), - [anon_sym_type] = ACTIONS(5064), - [anon_sym_anyopaque] = ACTIONS(5064), - [anon_sym_bool] = ACTIONS(5064), - [anon_sym_int] = ACTIONS(5064), - [anon_sym_uint] = ACTIONS(5064), - [anon_sym_float] = ACTIONS(5064), - [anon_sym_range] = ACTIONS(5064), - [anon_sym_i8] = ACTIONS(5064), - [anon_sym_i16] = ACTIONS(5064), - [anon_sym_i32] = ACTIONS(5064), - [anon_sym_i64] = ACTIONS(5064), - [anon_sym_u8] = ACTIONS(5064), - [anon_sym_u16] = ACTIONS(5064), - [anon_sym_u32] = ACTIONS(5064), - [anon_sym_u64] = ACTIONS(5064), - [anon_sym_isize] = ACTIONS(5064), - [anon_sym_usize] = ACTIONS(5064), - [anon_sym_f32] = ACTIONS(5064), - [anon_sym_f64] = ACTIONS(5064), - [anon_sym_c_char] = ACTIONS(5064), - [anon_sym_c_schar] = ACTIONS(5064), - [anon_sym_c_uchar] = ACTIONS(5064), - [anon_sym_c_short] = ACTIONS(5064), - [anon_sym_c_ushort] = ACTIONS(5064), - [anon_sym_c_int] = ACTIONS(5064), - [anon_sym_c_uint] = ACTIONS(5064), - [anon_sym_c_long] = ACTIONS(5064), - [anon_sym_c_ulong] = ACTIONS(5064), - [anon_sym_c_longlong] = ACTIONS(5064), - [anon_sym_c_ulonglong] = ACTIONS(5064), - [anon_sym_c_float] = ACTIONS(5064), - [anon_sym_c_double] = ACTIONS(5064), - [anon_sym_c_longdouble] = ACTIONS(5064), - [anon_sym_return] = ACTIONS(5064), - [anon_sym_yield] = ACTIONS(5064), - [anon_sym_break] = ACTIONS(5064), - [anon_sym_continue] = ACTIONS(5064), - [anon_sym_defer] = ACTIONS(5064), - [anon_sym_errdefer] = ACTIONS(5064), - [anon_sym_if] = ACTIONS(5064), - [anon_sym_else] = ACTIONS(5064), - [anon_sym_while] = ACTIONS(5064), - [anon_sym_expand] = ACTIONS(5064), - [anon_sym_for] = ACTIONS(5064), - [anon_sym_match] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5062), - [anon_sym_TILDE] = ACTIONS(5062), - [anon_sym_try] = ACTIONS(5064), - [anon_sym_DOT] = ACTIONS(5062), - [anon_sym_true] = ACTIONS(5064), - [anon_sym_false] = ACTIONS(5064), - [anon_sym_null] = ACTIONS(5064), - [anon_sym_unreachable] = ACTIONS(5064), - [anon_sym_undefined] = ACTIONS(5064), - [sym_sink] = ACTIONS(5064), - [sym_integer] = ACTIONS(5064), - [sym_float] = ACTIONS(5062), - [anon_sym_DQUOTE] = ACTIONS(5062), - [sym_multiline_string] = ACTIONS(5062), - [sym_character] = ACTIONS(5062), + [STATE(6617)] = { + [ts_builtin_sym_end] = ACTIONS(4584), + [sym_identifier] = ACTIONS(4586), + [anon_sym_import] = ACTIONS(4586), + [anon_sym_test] = ACTIONS(4586), + [anon_sym_hide] = ACTIONS(4586), + [anon_sym_func] = ACTIONS(4586), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_struct] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_void] = ACTIONS(4586), + [anon_sym_noreturn] = ACTIONS(4586), + [anon_sym_type] = ACTIONS(4586), + [anon_sym_anyopaque] = ACTIONS(4586), + [anon_sym_bool] = ACTIONS(4586), + [anon_sym_int] = ACTIONS(4586), + [anon_sym_uint] = ACTIONS(4586), + [anon_sym_float] = ACTIONS(4586), + [anon_sym_range] = ACTIONS(4586), + [anon_sym_i8] = ACTIONS(4586), + [anon_sym_i16] = ACTIONS(4586), + [anon_sym_i32] = ACTIONS(4586), + [anon_sym_i64] = ACTIONS(4586), + [anon_sym_u8] = ACTIONS(4586), + [anon_sym_u16] = ACTIONS(4586), + [anon_sym_u32] = ACTIONS(4586), + [anon_sym_u64] = ACTIONS(4586), + [anon_sym_isize] = ACTIONS(4586), + [anon_sym_usize] = ACTIONS(4586), + [anon_sym_f32] = ACTIONS(4586), + [anon_sym_f64] = ACTIONS(4586), + [anon_sym_c_char] = ACTIONS(4586), + [anon_sym_c_schar] = ACTIONS(4586), + [anon_sym_c_uchar] = ACTIONS(4586), + [anon_sym_c_short] = ACTIONS(4586), + [anon_sym_c_ushort] = ACTIONS(4586), + [anon_sym_c_int] = ACTIONS(4586), + [anon_sym_c_uint] = ACTIONS(4586), + [anon_sym_c_long] = ACTIONS(4586), + [anon_sym_c_ulong] = ACTIONS(4586), + [anon_sym_c_longlong] = ACTIONS(4586), + [anon_sym_c_ulonglong] = ACTIONS(4586), + [anon_sym_c_float] = ACTIONS(4586), + [anon_sym_c_double] = ACTIONS(4586), + [anon_sym_c_longdouble] = ACTIONS(4586), + [anon_sym_return] = ACTIONS(4586), + [anon_sym_yield] = ACTIONS(4586), + [anon_sym_break] = ACTIONS(4586), + [anon_sym_continue] = ACTIONS(4586), + [anon_sym_defer] = ACTIONS(4586), + [anon_sym_errdefer] = ACTIONS(4586), + [anon_sym_if] = ACTIONS(4586), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_while] = ACTIONS(4586), + [anon_sym_expand] = ACTIONS(4586), + [anon_sym_for] = ACTIONS(4586), + [anon_sym_match] = ACTIONS(4586), + [anon_sym_AMP] = ACTIONS(4584), + [anon_sym_TILDE] = ACTIONS(4584), + [anon_sym_try] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4586), + [anon_sym_false] = ACTIONS(4586), + [anon_sym_null] = ACTIONS(4586), + [anon_sym_unreachable] = ACTIONS(4586), + [anon_sym_undefined] = ACTIONS(4586), + [sym_sink] = ACTIONS(4586), + [sym_integer] = ACTIONS(4586), + [sym_float] = ACTIONS(4584), + [anon_sym_DQUOTE] = ACTIONS(4584), + [sym_multiline_string] = ACTIONS(4584), + [sym_character] = ACTIONS(4584), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5062), + [sym__newline] = ACTIONS(4584), }, - [STATE(2018)] = { - [ts_builtin_sym_end] = ACTIONS(5066), - [sym_identifier] = ACTIONS(5068), - [anon_sym_import] = ACTIONS(5068), - [anon_sym_test] = ACTIONS(5068), - [anon_sym_hide] = ACTIONS(5068), - [anon_sym_func] = ACTIONS(5068), - [anon_sym_BANG] = ACTIONS(5066), - [anon_sym_struct] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_RPAREN] = ACTIONS(5066), - [anon_sym_LBRACE] = ACTIONS(5066), - [anon_sym_RBRACE] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_DOLLAR] = ACTIONS(5066), - [anon_sym_LBRACK] = ACTIONS(5066), - [anon_sym_void] = ACTIONS(5068), - [anon_sym_noreturn] = ACTIONS(5068), - [anon_sym_type] = ACTIONS(5068), - [anon_sym_anyopaque] = ACTIONS(5068), - [anon_sym_bool] = ACTIONS(5068), - [anon_sym_int] = ACTIONS(5068), - [anon_sym_uint] = ACTIONS(5068), - [anon_sym_float] = ACTIONS(5068), - [anon_sym_range] = ACTIONS(5068), - [anon_sym_i8] = ACTIONS(5068), - [anon_sym_i16] = ACTIONS(5068), - [anon_sym_i32] = ACTIONS(5068), - [anon_sym_i64] = ACTIONS(5068), - [anon_sym_u8] = ACTIONS(5068), - [anon_sym_u16] = ACTIONS(5068), - [anon_sym_u32] = ACTIONS(5068), - [anon_sym_u64] = ACTIONS(5068), - [anon_sym_isize] = ACTIONS(5068), - [anon_sym_usize] = ACTIONS(5068), - [anon_sym_f32] = ACTIONS(5068), - [anon_sym_f64] = ACTIONS(5068), - [anon_sym_c_char] = ACTIONS(5068), - [anon_sym_c_schar] = ACTIONS(5068), - [anon_sym_c_uchar] = ACTIONS(5068), - [anon_sym_c_short] = ACTIONS(5068), - [anon_sym_c_ushort] = ACTIONS(5068), - [anon_sym_c_int] = ACTIONS(5068), - [anon_sym_c_uint] = ACTIONS(5068), - [anon_sym_c_long] = ACTIONS(5068), - [anon_sym_c_ulong] = ACTIONS(5068), - [anon_sym_c_longlong] = ACTIONS(5068), - [anon_sym_c_ulonglong] = ACTIONS(5068), - [anon_sym_c_float] = ACTIONS(5068), - [anon_sym_c_double] = ACTIONS(5068), - [anon_sym_c_longdouble] = ACTIONS(5068), - [anon_sym_return] = ACTIONS(5068), - [anon_sym_yield] = ACTIONS(5068), - [anon_sym_break] = ACTIONS(5068), - [anon_sym_continue] = ACTIONS(5068), - [anon_sym_defer] = ACTIONS(5068), - [anon_sym_errdefer] = ACTIONS(5068), - [anon_sym_if] = ACTIONS(5068), - [anon_sym_else] = ACTIONS(5068), - [anon_sym_while] = ACTIONS(5068), - [anon_sym_expand] = ACTIONS(5068), - [anon_sym_for] = ACTIONS(5068), - [anon_sym_match] = ACTIONS(5068), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_TILDE] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5068), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_true] = ACTIONS(5068), - [anon_sym_false] = ACTIONS(5068), - [anon_sym_null] = ACTIONS(5068), - [anon_sym_unreachable] = ACTIONS(5068), - [anon_sym_undefined] = ACTIONS(5068), - [sym_sink] = ACTIONS(5068), - [sym_integer] = ACTIONS(5068), - [sym_float] = ACTIONS(5066), - [anon_sym_DQUOTE] = ACTIONS(5066), - [sym_multiline_string] = ACTIONS(5066), - [sym_character] = ACTIONS(5066), + [STATE(6618)] = { + [ts_builtin_sym_end] = ACTIONS(4798), + [sym_identifier] = ACTIONS(4800), + [anon_sym_import] = ACTIONS(4800), + [anon_sym_test] = ACTIONS(4800), + [anon_sym_hide] = ACTIONS(4800), + [anon_sym_func] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4798), + [anon_sym_struct] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_void] = ACTIONS(4800), + [anon_sym_noreturn] = ACTIONS(4800), + [anon_sym_type] = ACTIONS(4800), + [anon_sym_anyopaque] = ACTIONS(4800), + [anon_sym_bool] = ACTIONS(4800), + [anon_sym_int] = ACTIONS(4800), + [anon_sym_uint] = ACTIONS(4800), + [anon_sym_float] = ACTIONS(4800), + [anon_sym_range] = ACTIONS(4800), + [anon_sym_i8] = ACTIONS(4800), + [anon_sym_i16] = ACTIONS(4800), + [anon_sym_i32] = ACTIONS(4800), + [anon_sym_i64] = ACTIONS(4800), + [anon_sym_u8] = ACTIONS(4800), + [anon_sym_u16] = ACTIONS(4800), + [anon_sym_u32] = ACTIONS(4800), + [anon_sym_u64] = ACTIONS(4800), + [anon_sym_isize] = ACTIONS(4800), + [anon_sym_usize] = ACTIONS(4800), + [anon_sym_f32] = ACTIONS(4800), + [anon_sym_f64] = ACTIONS(4800), + [anon_sym_c_char] = ACTIONS(4800), + [anon_sym_c_schar] = ACTIONS(4800), + [anon_sym_c_uchar] = ACTIONS(4800), + [anon_sym_c_short] = ACTIONS(4800), + [anon_sym_c_ushort] = ACTIONS(4800), + [anon_sym_c_int] = ACTIONS(4800), + [anon_sym_c_uint] = ACTIONS(4800), + [anon_sym_c_long] = ACTIONS(4800), + [anon_sym_c_ulong] = ACTIONS(4800), + [anon_sym_c_longlong] = ACTIONS(4800), + [anon_sym_c_ulonglong] = ACTIONS(4800), + [anon_sym_c_float] = ACTIONS(4800), + [anon_sym_c_double] = ACTIONS(4800), + [anon_sym_c_longdouble] = ACTIONS(4800), + [anon_sym_return] = ACTIONS(4800), + [anon_sym_yield] = ACTIONS(4800), + [anon_sym_break] = ACTIONS(4800), + [anon_sym_continue] = ACTIONS(4800), + [anon_sym_defer] = ACTIONS(4800), + [anon_sym_errdefer] = ACTIONS(4800), + [anon_sym_if] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4800), + [anon_sym_while] = ACTIONS(4800), + [anon_sym_expand] = ACTIONS(4800), + [anon_sym_for] = ACTIONS(4800), + [anon_sym_match] = ACTIONS(4800), + [anon_sym_AMP] = ACTIONS(4798), + [anon_sym_TILDE] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4800), + [anon_sym_false] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4800), + [anon_sym_unreachable] = ACTIONS(4800), + [anon_sym_undefined] = ACTIONS(4800), + [sym_sink] = ACTIONS(4800), + [sym_integer] = ACTIONS(4800), + [sym_float] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(4798), + [sym_multiline_string] = ACTIONS(4798), + [sym_character] = ACTIONS(4798), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5066), + [sym__newline] = ACTIONS(4798), }, - [STATE(2019)] = { - [ts_builtin_sym_end] = ACTIONS(5070), - [sym_identifier] = ACTIONS(5072), - [anon_sym_import] = ACTIONS(5072), - [anon_sym_test] = ACTIONS(5072), - [anon_sym_hide] = ACTIONS(5072), - [anon_sym_func] = ACTIONS(5072), - [anon_sym_BANG] = ACTIONS(5070), - [anon_sym_struct] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5070), - [anon_sym_RPAREN] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5070), - [anon_sym_RBRACE] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_DOLLAR] = ACTIONS(5070), - [anon_sym_LBRACK] = ACTIONS(5070), - [anon_sym_void] = ACTIONS(5072), - [anon_sym_noreturn] = ACTIONS(5072), - [anon_sym_type] = ACTIONS(5072), - [anon_sym_anyopaque] = ACTIONS(5072), - [anon_sym_bool] = ACTIONS(5072), - [anon_sym_int] = ACTIONS(5072), - [anon_sym_uint] = ACTIONS(5072), - [anon_sym_float] = ACTIONS(5072), - [anon_sym_range] = ACTIONS(5072), - [anon_sym_i8] = ACTIONS(5072), - [anon_sym_i16] = ACTIONS(5072), - [anon_sym_i32] = ACTIONS(5072), - [anon_sym_i64] = ACTIONS(5072), - [anon_sym_u8] = ACTIONS(5072), - [anon_sym_u16] = ACTIONS(5072), - [anon_sym_u32] = ACTIONS(5072), - [anon_sym_u64] = ACTIONS(5072), - [anon_sym_isize] = ACTIONS(5072), - [anon_sym_usize] = ACTIONS(5072), - [anon_sym_f32] = ACTIONS(5072), - [anon_sym_f64] = ACTIONS(5072), - [anon_sym_c_char] = ACTIONS(5072), - [anon_sym_c_schar] = ACTIONS(5072), - [anon_sym_c_uchar] = ACTIONS(5072), - [anon_sym_c_short] = ACTIONS(5072), - [anon_sym_c_ushort] = ACTIONS(5072), - [anon_sym_c_int] = ACTIONS(5072), - [anon_sym_c_uint] = ACTIONS(5072), - [anon_sym_c_long] = ACTIONS(5072), - [anon_sym_c_ulong] = ACTIONS(5072), - [anon_sym_c_longlong] = ACTIONS(5072), - [anon_sym_c_ulonglong] = ACTIONS(5072), - [anon_sym_c_float] = ACTIONS(5072), - [anon_sym_c_double] = ACTIONS(5072), - [anon_sym_c_longdouble] = ACTIONS(5072), - [anon_sym_return] = ACTIONS(5072), - [anon_sym_yield] = ACTIONS(5072), - [anon_sym_break] = ACTIONS(5072), - [anon_sym_continue] = ACTIONS(5072), - [anon_sym_defer] = ACTIONS(5072), - [anon_sym_errdefer] = ACTIONS(5072), - [anon_sym_if] = ACTIONS(5072), - [anon_sym_else] = ACTIONS(5072), - [anon_sym_while] = ACTIONS(5072), - [anon_sym_expand] = ACTIONS(5072), - [anon_sym_for] = ACTIONS(5072), - [anon_sym_match] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_TILDE] = ACTIONS(5070), - [anon_sym_try] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_true] = ACTIONS(5072), - [anon_sym_false] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(5072), - [anon_sym_unreachable] = ACTIONS(5072), - [anon_sym_undefined] = ACTIONS(5072), - [sym_sink] = ACTIONS(5072), - [sym_integer] = ACTIONS(5072), - [sym_float] = ACTIONS(5070), - [anon_sym_DQUOTE] = ACTIONS(5070), - [sym_multiline_string] = ACTIONS(5070), - [sym_character] = ACTIONS(5070), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5070), - }, - [STATE(2020)] = { - [ts_builtin_sym_end] = ACTIONS(5074), - [sym_identifier] = ACTIONS(5076), - [anon_sym_import] = ACTIONS(5076), - [anon_sym_test] = ACTIONS(5076), - [anon_sym_hide] = ACTIONS(5076), - [anon_sym_func] = ACTIONS(5076), - [anon_sym_BANG] = ACTIONS(5074), - [anon_sym_struct] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_RPAREN] = ACTIONS(5074), - [anon_sym_LBRACE] = ACTIONS(5074), - [anon_sym_RBRACE] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_DOLLAR] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(5074), - [anon_sym_void] = ACTIONS(5076), - [anon_sym_noreturn] = ACTIONS(5076), - [anon_sym_type] = ACTIONS(5076), - [anon_sym_anyopaque] = ACTIONS(5076), - [anon_sym_bool] = ACTIONS(5076), - [anon_sym_int] = ACTIONS(5076), - [anon_sym_uint] = ACTIONS(5076), - [anon_sym_float] = ACTIONS(5076), - [anon_sym_range] = ACTIONS(5076), - [anon_sym_i8] = ACTIONS(5076), - [anon_sym_i16] = ACTIONS(5076), - [anon_sym_i32] = ACTIONS(5076), - [anon_sym_i64] = ACTIONS(5076), - [anon_sym_u8] = ACTIONS(5076), - [anon_sym_u16] = ACTIONS(5076), - [anon_sym_u32] = ACTIONS(5076), - [anon_sym_u64] = ACTIONS(5076), - [anon_sym_isize] = ACTIONS(5076), - [anon_sym_usize] = ACTIONS(5076), - [anon_sym_f32] = ACTIONS(5076), - [anon_sym_f64] = ACTIONS(5076), - [anon_sym_c_char] = ACTIONS(5076), - [anon_sym_c_schar] = ACTIONS(5076), - [anon_sym_c_uchar] = ACTIONS(5076), - [anon_sym_c_short] = ACTIONS(5076), - [anon_sym_c_ushort] = ACTIONS(5076), - [anon_sym_c_int] = ACTIONS(5076), - [anon_sym_c_uint] = ACTIONS(5076), - [anon_sym_c_long] = ACTIONS(5076), - [anon_sym_c_ulong] = ACTIONS(5076), - [anon_sym_c_longlong] = ACTIONS(5076), - [anon_sym_c_ulonglong] = ACTIONS(5076), - [anon_sym_c_float] = ACTIONS(5076), - [anon_sym_c_double] = ACTIONS(5076), - [anon_sym_c_longdouble] = ACTIONS(5076), - [anon_sym_return] = ACTIONS(5076), - [anon_sym_yield] = ACTIONS(5076), - [anon_sym_break] = ACTIONS(5076), - [anon_sym_continue] = ACTIONS(5076), - [anon_sym_defer] = ACTIONS(5076), - [anon_sym_errdefer] = ACTIONS(5076), - [anon_sym_if] = ACTIONS(5076), - [anon_sym_else] = ACTIONS(5076), - [anon_sym_while] = ACTIONS(5076), - [anon_sym_expand] = ACTIONS(5076), - [anon_sym_for] = ACTIONS(5076), - [anon_sym_match] = ACTIONS(5076), - [anon_sym_AMP] = ACTIONS(5074), - [anon_sym_TILDE] = ACTIONS(5074), - [anon_sym_try] = ACTIONS(5076), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_true] = ACTIONS(5076), - [anon_sym_false] = ACTIONS(5076), - [anon_sym_null] = ACTIONS(5076), - [anon_sym_unreachable] = ACTIONS(5076), - [anon_sym_undefined] = ACTIONS(5076), - [sym_sink] = ACTIONS(5076), - [sym_integer] = ACTIONS(5076), - [sym_float] = ACTIONS(5074), - [anon_sym_DQUOTE] = ACTIONS(5074), - [sym_multiline_string] = ACTIONS(5074), - [sym_character] = ACTIONS(5074), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5074), - }, - [STATE(2021)] = { - [ts_builtin_sym_end] = ACTIONS(5078), - [sym_identifier] = ACTIONS(5080), - [anon_sym_import] = ACTIONS(5080), - [anon_sym_test] = ACTIONS(5080), - [anon_sym_hide] = ACTIONS(5080), - [anon_sym_func] = ACTIONS(5080), - [anon_sym_BANG] = ACTIONS(5078), - [anon_sym_struct] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5078), - [anon_sym_RPAREN] = ACTIONS(5078), - [anon_sym_LBRACE] = ACTIONS(5078), - [anon_sym_RBRACE] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5078), - [anon_sym_DOLLAR] = ACTIONS(5078), - [anon_sym_LBRACK] = ACTIONS(5078), - [anon_sym_void] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym_type] = ACTIONS(5080), - [anon_sym_anyopaque] = ACTIONS(5080), - [anon_sym_bool] = ACTIONS(5080), - [anon_sym_int] = ACTIONS(5080), - [anon_sym_uint] = ACTIONS(5080), - [anon_sym_float] = ACTIONS(5080), - [anon_sym_range] = ACTIONS(5080), - [anon_sym_i8] = ACTIONS(5080), - [anon_sym_i16] = ACTIONS(5080), - [anon_sym_i32] = ACTIONS(5080), - [anon_sym_i64] = ACTIONS(5080), - [anon_sym_u8] = ACTIONS(5080), - [anon_sym_u16] = ACTIONS(5080), - [anon_sym_u32] = ACTIONS(5080), - [anon_sym_u64] = ACTIONS(5080), - [anon_sym_isize] = ACTIONS(5080), - [anon_sym_usize] = ACTIONS(5080), - [anon_sym_f32] = ACTIONS(5080), - [anon_sym_f64] = ACTIONS(5080), - [anon_sym_c_char] = ACTIONS(5080), - [anon_sym_c_schar] = ACTIONS(5080), - [anon_sym_c_uchar] = ACTIONS(5080), - [anon_sym_c_short] = ACTIONS(5080), - [anon_sym_c_ushort] = ACTIONS(5080), - [anon_sym_c_int] = ACTIONS(5080), - [anon_sym_c_uint] = ACTIONS(5080), - [anon_sym_c_long] = ACTIONS(5080), - [anon_sym_c_ulong] = ACTIONS(5080), - [anon_sym_c_longlong] = ACTIONS(5080), - [anon_sym_c_ulonglong] = ACTIONS(5080), - [anon_sym_c_float] = ACTIONS(5080), - [anon_sym_c_double] = ACTIONS(5080), - [anon_sym_c_longdouble] = ACTIONS(5080), - [anon_sym_return] = ACTIONS(5080), - [anon_sym_yield] = ACTIONS(5080), - [anon_sym_break] = ACTIONS(5080), - [anon_sym_continue] = ACTIONS(5080), - [anon_sym_defer] = ACTIONS(5080), - [anon_sym_errdefer] = ACTIONS(5080), - [anon_sym_if] = ACTIONS(5080), - [anon_sym_else] = ACTIONS(5080), - [anon_sym_while] = ACTIONS(5080), - [anon_sym_expand] = ACTIONS(5080), - [anon_sym_for] = ACTIONS(5080), - [anon_sym_match] = ACTIONS(5080), - [anon_sym_AMP] = ACTIONS(5078), - [anon_sym_TILDE] = ACTIONS(5078), - [anon_sym_try] = ACTIONS(5080), - [anon_sym_DOT] = ACTIONS(5078), - [anon_sym_true] = ACTIONS(5080), - [anon_sym_false] = ACTIONS(5080), - [anon_sym_null] = ACTIONS(5080), - [anon_sym_unreachable] = ACTIONS(5080), - [anon_sym_undefined] = ACTIONS(5080), - [sym_sink] = ACTIONS(5080), - [sym_integer] = ACTIONS(5080), - [sym_float] = ACTIONS(5078), - [anon_sym_DQUOTE] = ACTIONS(5078), - [sym_multiline_string] = ACTIONS(5078), - [sym_character] = ACTIONS(5078), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5078), - }, - [STATE(2022)] = { - [ts_builtin_sym_end] = ACTIONS(5082), - [sym_identifier] = ACTIONS(5084), - [anon_sym_import] = ACTIONS(5084), - [anon_sym_test] = ACTIONS(5084), - [anon_sym_hide] = ACTIONS(5084), - [anon_sym_func] = ACTIONS(5084), - [anon_sym_BANG] = ACTIONS(5082), - [anon_sym_struct] = ACTIONS(5084), - [anon_sym_LPAREN] = ACTIONS(5082), - [anon_sym_RPAREN] = ACTIONS(5082), - [anon_sym_LBRACE] = ACTIONS(5082), - [anon_sym_RBRACE] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_DOLLAR] = ACTIONS(5082), - [anon_sym_LBRACK] = ACTIONS(5082), - [anon_sym_void] = ACTIONS(5084), - [anon_sym_noreturn] = ACTIONS(5084), - [anon_sym_type] = ACTIONS(5084), - [anon_sym_anyopaque] = ACTIONS(5084), - [anon_sym_bool] = ACTIONS(5084), - [anon_sym_int] = ACTIONS(5084), - [anon_sym_uint] = ACTIONS(5084), - [anon_sym_float] = ACTIONS(5084), - [anon_sym_range] = ACTIONS(5084), - [anon_sym_i8] = ACTIONS(5084), - [anon_sym_i16] = ACTIONS(5084), - [anon_sym_i32] = ACTIONS(5084), - [anon_sym_i64] = ACTIONS(5084), - [anon_sym_u8] = ACTIONS(5084), - [anon_sym_u16] = ACTIONS(5084), - [anon_sym_u32] = ACTIONS(5084), - [anon_sym_u64] = ACTIONS(5084), - [anon_sym_isize] = ACTIONS(5084), - [anon_sym_usize] = ACTIONS(5084), - [anon_sym_f32] = ACTIONS(5084), - [anon_sym_f64] = ACTIONS(5084), - [anon_sym_c_char] = ACTIONS(5084), - [anon_sym_c_schar] = ACTIONS(5084), - [anon_sym_c_uchar] = ACTIONS(5084), - [anon_sym_c_short] = ACTIONS(5084), - [anon_sym_c_ushort] = ACTIONS(5084), - [anon_sym_c_int] = ACTIONS(5084), - [anon_sym_c_uint] = ACTIONS(5084), - [anon_sym_c_long] = ACTIONS(5084), - [anon_sym_c_ulong] = ACTIONS(5084), - [anon_sym_c_longlong] = ACTIONS(5084), - [anon_sym_c_ulonglong] = ACTIONS(5084), - [anon_sym_c_float] = ACTIONS(5084), - [anon_sym_c_double] = ACTIONS(5084), - [anon_sym_c_longdouble] = ACTIONS(5084), - [anon_sym_return] = ACTIONS(5084), - [anon_sym_yield] = ACTIONS(5084), - [anon_sym_break] = ACTIONS(5084), - [anon_sym_continue] = ACTIONS(5084), - [anon_sym_defer] = ACTIONS(5084), - [anon_sym_errdefer] = ACTIONS(5084), - [anon_sym_if] = ACTIONS(5084), - [anon_sym_else] = ACTIONS(5084), - [anon_sym_while] = ACTIONS(5084), - [anon_sym_expand] = ACTIONS(5084), - [anon_sym_for] = ACTIONS(5084), - [anon_sym_match] = ACTIONS(5084), - [anon_sym_AMP] = ACTIONS(5082), - [anon_sym_TILDE] = ACTIONS(5082), - [anon_sym_try] = ACTIONS(5084), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_true] = ACTIONS(5084), - [anon_sym_false] = ACTIONS(5084), - [anon_sym_null] = ACTIONS(5084), - [anon_sym_unreachable] = ACTIONS(5084), - [anon_sym_undefined] = ACTIONS(5084), - [sym_sink] = ACTIONS(5084), - [sym_integer] = ACTIONS(5084), - [sym_float] = ACTIONS(5082), - [anon_sym_DQUOTE] = ACTIONS(5082), - [sym_multiline_string] = ACTIONS(5082), - [sym_character] = ACTIONS(5082), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5082), - }, - [STATE(2023)] = { - [ts_builtin_sym_end] = ACTIONS(5086), - [sym_identifier] = ACTIONS(5088), - [anon_sym_import] = ACTIONS(5088), - [anon_sym_test] = ACTIONS(5088), - [anon_sym_hide] = ACTIONS(5088), - [anon_sym_func] = ACTIONS(5088), - [anon_sym_BANG] = ACTIONS(5086), - [anon_sym_struct] = ACTIONS(5088), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_DASH] = ACTIONS(5086), - [anon_sym_DOLLAR] = ACTIONS(5086), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_void] = ACTIONS(5088), - [anon_sym_noreturn] = ACTIONS(5088), - [anon_sym_type] = ACTIONS(5088), - [anon_sym_anyopaque] = ACTIONS(5088), - [anon_sym_bool] = ACTIONS(5088), - [anon_sym_int] = ACTIONS(5088), - [anon_sym_uint] = ACTIONS(5088), - [anon_sym_float] = ACTIONS(5088), - [anon_sym_range] = ACTIONS(5088), - [anon_sym_i8] = ACTIONS(5088), - [anon_sym_i16] = ACTIONS(5088), - [anon_sym_i32] = ACTIONS(5088), - [anon_sym_i64] = ACTIONS(5088), - [anon_sym_u8] = ACTIONS(5088), - [anon_sym_u16] = ACTIONS(5088), - [anon_sym_u32] = ACTIONS(5088), - [anon_sym_u64] = ACTIONS(5088), - [anon_sym_isize] = ACTIONS(5088), - [anon_sym_usize] = ACTIONS(5088), - [anon_sym_f32] = ACTIONS(5088), - [anon_sym_f64] = ACTIONS(5088), - [anon_sym_c_char] = ACTIONS(5088), - [anon_sym_c_schar] = ACTIONS(5088), - [anon_sym_c_uchar] = ACTIONS(5088), - [anon_sym_c_short] = ACTIONS(5088), - [anon_sym_c_ushort] = ACTIONS(5088), - [anon_sym_c_int] = ACTIONS(5088), - [anon_sym_c_uint] = ACTIONS(5088), - [anon_sym_c_long] = ACTIONS(5088), - [anon_sym_c_ulong] = ACTIONS(5088), - [anon_sym_c_longlong] = ACTIONS(5088), - [anon_sym_c_ulonglong] = ACTIONS(5088), - [anon_sym_c_float] = ACTIONS(5088), - [anon_sym_c_double] = ACTIONS(5088), - [anon_sym_c_longdouble] = ACTIONS(5088), - [anon_sym_return] = ACTIONS(5088), - [anon_sym_yield] = ACTIONS(5088), - [anon_sym_break] = ACTIONS(5088), - [anon_sym_continue] = ACTIONS(5088), - [anon_sym_defer] = ACTIONS(5088), - [anon_sym_errdefer] = ACTIONS(5088), - [anon_sym_if] = ACTIONS(5088), - [anon_sym_else] = ACTIONS(5088), - [anon_sym_while] = ACTIONS(5088), - [anon_sym_expand] = ACTIONS(5088), - [anon_sym_for] = ACTIONS(5088), - [anon_sym_match] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5086), - [anon_sym_TILDE] = ACTIONS(5086), - [anon_sym_try] = ACTIONS(5088), - [anon_sym_DOT] = ACTIONS(5086), - [anon_sym_true] = ACTIONS(5088), - [anon_sym_false] = ACTIONS(5088), - [anon_sym_null] = ACTIONS(5088), - [anon_sym_unreachable] = ACTIONS(5088), - [anon_sym_undefined] = ACTIONS(5088), - [sym_sink] = ACTIONS(5088), - [sym_integer] = ACTIONS(5088), - [sym_float] = ACTIONS(5086), - [anon_sym_DQUOTE] = ACTIONS(5086), - [sym_multiline_string] = ACTIONS(5086), - [sym_character] = ACTIONS(5086), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5086), - }, - [STATE(2024)] = { - [ts_builtin_sym_end] = ACTIONS(5090), - [sym_identifier] = ACTIONS(5092), - [anon_sym_import] = ACTIONS(5092), - [anon_sym_test] = ACTIONS(5092), - [anon_sym_hide] = ACTIONS(5092), - [anon_sym_func] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(5090), - [anon_sym_struct] = ACTIONS(5092), - [anon_sym_LPAREN] = ACTIONS(5090), - [anon_sym_RPAREN] = ACTIONS(5090), - [anon_sym_LBRACE] = ACTIONS(5090), - [anon_sym_RBRACE] = ACTIONS(5090), - [anon_sym_DASH] = ACTIONS(5090), - [anon_sym_DOLLAR] = ACTIONS(5090), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_void] = ACTIONS(5092), - [anon_sym_noreturn] = ACTIONS(5092), - [anon_sym_type] = ACTIONS(5092), - [anon_sym_anyopaque] = ACTIONS(5092), - [anon_sym_bool] = ACTIONS(5092), - [anon_sym_int] = ACTIONS(5092), - [anon_sym_uint] = ACTIONS(5092), - [anon_sym_float] = ACTIONS(5092), - [anon_sym_range] = ACTIONS(5092), - [anon_sym_i8] = ACTIONS(5092), - [anon_sym_i16] = ACTIONS(5092), - [anon_sym_i32] = ACTIONS(5092), - [anon_sym_i64] = ACTIONS(5092), - [anon_sym_u8] = ACTIONS(5092), - [anon_sym_u16] = ACTIONS(5092), - [anon_sym_u32] = ACTIONS(5092), - [anon_sym_u64] = ACTIONS(5092), - [anon_sym_isize] = ACTIONS(5092), - [anon_sym_usize] = ACTIONS(5092), - [anon_sym_f32] = ACTIONS(5092), - [anon_sym_f64] = ACTIONS(5092), - [anon_sym_c_char] = ACTIONS(5092), - [anon_sym_c_schar] = ACTIONS(5092), - [anon_sym_c_uchar] = ACTIONS(5092), - [anon_sym_c_short] = ACTIONS(5092), - [anon_sym_c_ushort] = ACTIONS(5092), - [anon_sym_c_int] = ACTIONS(5092), - [anon_sym_c_uint] = ACTIONS(5092), - [anon_sym_c_long] = ACTIONS(5092), - [anon_sym_c_ulong] = ACTIONS(5092), - [anon_sym_c_longlong] = ACTIONS(5092), - [anon_sym_c_ulonglong] = ACTIONS(5092), - [anon_sym_c_float] = ACTIONS(5092), - [anon_sym_c_double] = ACTIONS(5092), - [anon_sym_c_longdouble] = ACTIONS(5092), - [anon_sym_return] = ACTIONS(5092), - [anon_sym_yield] = ACTIONS(5092), - [anon_sym_break] = ACTIONS(5092), - [anon_sym_continue] = ACTIONS(5092), - [anon_sym_defer] = ACTIONS(5092), - [anon_sym_errdefer] = ACTIONS(5092), - [anon_sym_if] = ACTIONS(5092), - [anon_sym_else] = ACTIONS(5092), - [anon_sym_while] = ACTIONS(5092), - [anon_sym_expand] = ACTIONS(5092), - [anon_sym_for] = ACTIONS(5092), - [anon_sym_match] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5090), - [anon_sym_TILDE] = ACTIONS(5090), - [anon_sym_try] = ACTIONS(5092), - [anon_sym_DOT] = ACTIONS(5090), - [anon_sym_true] = ACTIONS(5092), - [anon_sym_false] = ACTIONS(5092), - [anon_sym_null] = ACTIONS(5092), - [anon_sym_unreachable] = ACTIONS(5092), - [anon_sym_undefined] = ACTIONS(5092), - [sym_sink] = ACTIONS(5092), - [sym_integer] = ACTIONS(5092), - [sym_float] = ACTIONS(5090), - [anon_sym_DQUOTE] = ACTIONS(5090), - [sym_multiline_string] = ACTIONS(5090), - [sym_character] = ACTIONS(5090), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5090), - }, - [STATE(2025)] = { - [ts_builtin_sym_end] = ACTIONS(5094), - [sym_identifier] = ACTIONS(5096), - [anon_sym_import] = ACTIONS(5096), - [anon_sym_test] = ACTIONS(5096), - [anon_sym_hide] = ACTIONS(5096), - [anon_sym_func] = ACTIONS(5096), - [anon_sym_BANG] = ACTIONS(5094), - [anon_sym_struct] = ACTIONS(5096), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_RPAREN] = ACTIONS(5094), - [anon_sym_LBRACE] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_DASH] = ACTIONS(5094), - [anon_sym_DOLLAR] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_void] = ACTIONS(5096), - [anon_sym_noreturn] = ACTIONS(5096), - [anon_sym_type] = ACTIONS(5096), - [anon_sym_anyopaque] = ACTIONS(5096), - [anon_sym_bool] = ACTIONS(5096), - [anon_sym_int] = ACTIONS(5096), - [anon_sym_uint] = ACTIONS(5096), - [anon_sym_float] = ACTIONS(5096), - [anon_sym_range] = ACTIONS(5096), - [anon_sym_i8] = ACTIONS(5096), - [anon_sym_i16] = ACTIONS(5096), - [anon_sym_i32] = ACTIONS(5096), - [anon_sym_i64] = ACTIONS(5096), - [anon_sym_u8] = ACTIONS(5096), - [anon_sym_u16] = ACTIONS(5096), - [anon_sym_u32] = ACTIONS(5096), - [anon_sym_u64] = ACTIONS(5096), - [anon_sym_isize] = ACTIONS(5096), - [anon_sym_usize] = ACTIONS(5096), - [anon_sym_f32] = ACTIONS(5096), - [anon_sym_f64] = ACTIONS(5096), - [anon_sym_c_char] = ACTIONS(5096), - [anon_sym_c_schar] = ACTIONS(5096), - [anon_sym_c_uchar] = ACTIONS(5096), - [anon_sym_c_short] = ACTIONS(5096), - [anon_sym_c_ushort] = ACTIONS(5096), - [anon_sym_c_int] = ACTIONS(5096), - [anon_sym_c_uint] = ACTIONS(5096), - [anon_sym_c_long] = ACTIONS(5096), - [anon_sym_c_ulong] = ACTIONS(5096), - [anon_sym_c_longlong] = ACTIONS(5096), - [anon_sym_c_ulonglong] = ACTIONS(5096), - [anon_sym_c_float] = ACTIONS(5096), - [anon_sym_c_double] = ACTIONS(5096), - [anon_sym_c_longdouble] = ACTIONS(5096), - [anon_sym_return] = ACTIONS(5096), - [anon_sym_yield] = ACTIONS(5096), - [anon_sym_break] = ACTIONS(5096), - [anon_sym_continue] = ACTIONS(5096), - [anon_sym_defer] = ACTIONS(5096), - [anon_sym_errdefer] = ACTIONS(5096), - [anon_sym_if] = ACTIONS(5096), - [anon_sym_else] = ACTIONS(5096), - [anon_sym_while] = ACTIONS(5096), - [anon_sym_expand] = ACTIONS(5096), - [anon_sym_for] = ACTIONS(5096), - [anon_sym_match] = ACTIONS(5096), - [anon_sym_AMP] = ACTIONS(5094), - [anon_sym_TILDE] = ACTIONS(5094), - [anon_sym_try] = ACTIONS(5096), - [anon_sym_DOT] = ACTIONS(5094), - [anon_sym_true] = ACTIONS(5096), - [anon_sym_false] = ACTIONS(5096), - [anon_sym_null] = ACTIONS(5096), - [anon_sym_unreachable] = ACTIONS(5096), - [anon_sym_undefined] = ACTIONS(5096), - [sym_sink] = ACTIONS(5096), - [sym_integer] = ACTIONS(5096), - [sym_float] = ACTIONS(5094), - [anon_sym_DQUOTE] = ACTIONS(5094), - [sym_multiline_string] = ACTIONS(5094), - [sym_character] = ACTIONS(5094), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5094), - }, - [STATE(2026)] = { - [ts_builtin_sym_end] = ACTIONS(5098), - [sym_identifier] = ACTIONS(5100), - [anon_sym_import] = ACTIONS(5100), - [anon_sym_test] = ACTIONS(5100), - [anon_sym_hide] = ACTIONS(5100), - [anon_sym_func] = ACTIONS(5100), - [anon_sym_BANG] = ACTIONS(5098), - [anon_sym_struct] = ACTIONS(5100), - [anon_sym_LPAREN] = ACTIONS(5098), - [anon_sym_RPAREN] = ACTIONS(5098), - [anon_sym_LBRACE] = ACTIONS(5098), - [anon_sym_RBRACE] = ACTIONS(5098), - [anon_sym_DASH] = ACTIONS(5098), - [anon_sym_DOLLAR] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5098), - [anon_sym_void] = ACTIONS(5100), - [anon_sym_noreturn] = ACTIONS(5100), - [anon_sym_type] = ACTIONS(5100), - [anon_sym_anyopaque] = ACTIONS(5100), - [anon_sym_bool] = ACTIONS(5100), - [anon_sym_int] = ACTIONS(5100), - [anon_sym_uint] = ACTIONS(5100), - [anon_sym_float] = ACTIONS(5100), - [anon_sym_range] = ACTIONS(5100), - [anon_sym_i8] = ACTIONS(5100), - [anon_sym_i16] = ACTIONS(5100), - [anon_sym_i32] = ACTIONS(5100), - [anon_sym_i64] = ACTIONS(5100), - [anon_sym_u8] = ACTIONS(5100), - [anon_sym_u16] = ACTIONS(5100), - [anon_sym_u32] = ACTIONS(5100), - [anon_sym_u64] = ACTIONS(5100), - [anon_sym_isize] = ACTIONS(5100), - [anon_sym_usize] = ACTIONS(5100), - [anon_sym_f32] = ACTIONS(5100), - [anon_sym_f64] = ACTIONS(5100), - [anon_sym_c_char] = ACTIONS(5100), - [anon_sym_c_schar] = ACTIONS(5100), - [anon_sym_c_uchar] = ACTIONS(5100), - [anon_sym_c_short] = ACTIONS(5100), - [anon_sym_c_ushort] = ACTIONS(5100), - [anon_sym_c_int] = ACTIONS(5100), - [anon_sym_c_uint] = ACTIONS(5100), - [anon_sym_c_long] = ACTIONS(5100), - [anon_sym_c_ulong] = ACTIONS(5100), - [anon_sym_c_longlong] = ACTIONS(5100), - [anon_sym_c_ulonglong] = ACTIONS(5100), - [anon_sym_c_float] = ACTIONS(5100), - [anon_sym_c_double] = ACTIONS(5100), - [anon_sym_c_longdouble] = ACTIONS(5100), - [anon_sym_return] = ACTIONS(5100), - [anon_sym_yield] = ACTIONS(5100), - [anon_sym_break] = ACTIONS(5100), - [anon_sym_continue] = ACTIONS(5100), - [anon_sym_defer] = ACTIONS(5100), - [anon_sym_errdefer] = ACTIONS(5100), - [anon_sym_if] = ACTIONS(5100), - [anon_sym_else] = ACTIONS(5100), - [anon_sym_while] = ACTIONS(5100), - [anon_sym_expand] = ACTIONS(5100), - [anon_sym_for] = ACTIONS(5100), - [anon_sym_match] = ACTIONS(5100), - [anon_sym_AMP] = ACTIONS(5098), - [anon_sym_TILDE] = ACTIONS(5098), - [anon_sym_try] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5098), - [anon_sym_true] = ACTIONS(5100), - [anon_sym_false] = ACTIONS(5100), - [anon_sym_null] = ACTIONS(5100), - [anon_sym_unreachable] = ACTIONS(5100), - [anon_sym_undefined] = ACTIONS(5100), - [sym_sink] = ACTIONS(5100), - [sym_integer] = ACTIONS(5100), - [sym_float] = ACTIONS(5098), - [anon_sym_DQUOTE] = ACTIONS(5098), - [sym_multiline_string] = ACTIONS(5098), - [sym_character] = ACTIONS(5098), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5098), - }, - [STATE(2027)] = { - [ts_builtin_sym_end] = ACTIONS(5102), - [sym_identifier] = ACTIONS(5104), - [anon_sym_import] = ACTIONS(5104), - [anon_sym_test] = ACTIONS(5104), - [anon_sym_hide] = ACTIONS(5104), - [anon_sym_func] = ACTIONS(5104), - [anon_sym_BANG] = ACTIONS(5102), - [anon_sym_struct] = ACTIONS(5104), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_RPAREN] = ACTIONS(5102), - [anon_sym_LBRACE] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_DOLLAR] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_void] = ACTIONS(5104), - [anon_sym_noreturn] = ACTIONS(5104), - [anon_sym_type] = ACTIONS(5104), - [anon_sym_anyopaque] = ACTIONS(5104), - [anon_sym_bool] = ACTIONS(5104), - [anon_sym_int] = ACTIONS(5104), - [anon_sym_uint] = ACTIONS(5104), - [anon_sym_float] = ACTIONS(5104), - [anon_sym_range] = ACTIONS(5104), - [anon_sym_i8] = ACTIONS(5104), - [anon_sym_i16] = ACTIONS(5104), - [anon_sym_i32] = ACTIONS(5104), - [anon_sym_i64] = ACTIONS(5104), - [anon_sym_u8] = ACTIONS(5104), - [anon_sym_u16] = ACTIONS(5104), - [anon_sym_u32] = ACTIONS(5104), - [anon_sym_u64] = ACTIONS(5104), - [anon_sym_isize] = ACTIONS(5104), - [anon_sym_usize] = ACTIONS(5104), - [anon_sym_f32] = ACTIONS(5104), - [anon_sym_f64] = ACTIONS(5104), - [anon_sym_c_char] = ACTIONS(5104), - [anon_sym_c_schar] = ACTIONS(5104), - [anon_sym_c_uchar] = ACTIONS(5104), - [anon_sym_c_short] = ACTIONS(5104), - [anon_sym_c_ushort] = ACTIONS(5104), - [anon_sym_c_int] = ACTIONS(5104), - [anon_sym_c_uint] = ACTIONS(5104), - [anon_sym_c_long] = ACTIONS(5104), - [anon_sym_c_ulong] = ACTIONS(5104), - [anon_sym_c_longlong] = ACTIONS(5104), - [anon_sym_c_ulonglong] = ACTIONS(5104), - [anon_sym_c_float] = ACTIONS(5104), - [anon_sym_c_double] = ACTIONS(5104), - [anon_sym_c_longdouble] = ACTIONS(5104), - [anon_sym_return] = ACTIONS(5104), - [anon_sym_yield] = ACTIONS(5104), - [anon_sym_break] = ACTIONS(5104), - [anon_sym_continue] = ACTIONS(5104), - [anon_sym_defer] = ACTIONS(5104), - [anon_sym_errdefer] = ACTIONS(5104), - [anon_sym_if] = ACTIONS(5104), - [anon_sym_else] = ACTIONS(5104), - [anon_sym_while] = ACTIONS(5104), - [anon_sym_expand] = ACTIONS(5104), - [anon_sym_for] = ACTIONS(5104), - [anon_sym_match] = ACTIONS(5104), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_TILDE] = ACTIONS(5102), - [anon_sym_try] = ACTIONS(5104), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_true] = ACTIONS(5104), - [anon_sym_false] = ACTIONS(5104), - [anon_sym_null] = ACTIONS(5104), - [anon_sym_unreachable] = ACTIONS(5104), - [anon_sym_undefined] = ACTIONS(5104), - [sym_sink] = ACTIONS(5104), - [sym_integer] = ACTIONS(5104), - [sym_float] = ACTIONS(5102), - [anon_sym_DQUOTE] = ACTIONS(5102), - [sym_multiline_string] = ACTIONS(5102), - [sym_character] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5102), - }, - [STATE(2028)] = { - [ts_builtin_sym_end] = ACTIONS(5106), - [sym_identifier] = ACTIONS(5108), - [anon_sym_import] = ACTIONS(5108), - [anon_sym_test] = ACTIONS(5108), - [anon_sym_hide] = ACTIONS(5108), - [anon_sym_func] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(5106), - [anon_sym_struct] = ACTIONS(5108), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_RPAREN] = ACTIONS(5106), - [anon_sym_LBRACE] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_DASH] = ACTIONS(5106), - [anon_sym_DOLLAR] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_void] = ACTIONS(5108), - [anon_sym_noreturn] = ACTIONS(5108), - [anon_sym_type] = ACTIONS(5108), - [anon_sym_anyopaque] = ACTIONS(5108), - [anon_sym_bool] = ACTIONS(5108), - [anon_sym_int] = ACTIONS(5108), - [anon_sym_uint] = ACTIONS(5108), - [anon_sym_float] = ACTIONS(5108), - [anon_sym_range] = ACTIONS(5108), - [anon_sym_i8] = ACTIONS(5108), - [anon_sym_i16] = ACTIONS(5108), - [anon_sym_i32] = ACTIONS(5108), - [anon_sym_i64] = ACTIONS(5108), - [anon_sym_u8] = ACTIONS(5108), - [anon_sym_u16] = ACTIONS(5108), - [anon_sym_u32] = ACTIONS(5108), - [anon_sym_u64] = ACTIONS(5108), - [anon_sym_isize] = ACTIONS(5108), - [anon_sym_usize] = ACTIONS(5108), - [anon_sym_f32] = ACTIONS(5108), - [anon_sym_f64] = ACTIONS(5108), - [anon_sym_c_char] = ACTIONS(5108), - [anon_sym_c_schar] = ACTIONS(5108), - [anon_sym_c_uchar] = ACTIONS(5108), - [anon_sym_c_short] = ACTIONS(5108), - [anon_sym_c_ushort] = ACTIONS(5108), - [anon_sym_c_int] = ACTIONS(5108), - [anon_sym_c_uint] = ACTIONS(5108), - [anon_sym_c_long] = ACTIONS(5108), - [anon_sym_c_ulong] = ACTIONS(5108), - [anon_sym_c_longlong] = ACTIONS(5108), - [anon_sym_c_ulonglong] = ACTIONS(5108), - [anon_sym_c_float] = ACTIONS(5108), - [anon_sym_c_double] = ACTIONS(5108), - [anon_sym_c_longdouble] = ACTIONS(5108), - [anon_sym_return] = ACTIONS(5108), - [anon_sym_yield] = ACTIONS(5108), - [anon_sym_break] = ACTIONS(5108), - [anon_sym_continue] = ACTIONS(5108), - [anon_sym_defer] = ACTIONS(5108), - [anon_sym_errdefer] = ACTIONS(5108), - [anon_sym_if] = ACTIONS(5108), - [anon_sym_else] = ACTIONS(5108), - [anon_sym_while] = ACTIONS(5108), - [anon_sym_expand] = ACTIONS(5108), - [anon_sym_for] = ACTIONS(5108), - [anon_sym_match] = ACTIONS(5108), - [anon_sym_AMP] = ACTIONS(5106), - [anon_sym_TILDE] = ACTIONS(5106), - [anon_sym_try] = ACTIONS(5108), - [anon_sym_DOT] = ACTIONS(5106), - [anon_sym_true] = ACTIONS(5108), - [anon_sym_false] = ACTIONS(5108), - [anon_sym_null] = ACTIONS(5108), - [anon_sym_unreachable] = ACTIONS(5108), - [anon_sym_undefined] = ACTIONS(5108), - [sym_sink] = ACTIONS(5108), - [sym_integer] = ACTIONS(5108), - [sym_float] = ACTIONS(5106), - [anon_sym_DQUOTE] = ACTIONS(5106), - [sym_multiline_string] = ACTIONS(5106), - [sym_character] = ACTIONS(5106), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5106), - }, - [STATE(2029)] = { - [ts_builtin_sym_end] = ACTIONS(5110), - [sym_identifier] = ACTIONS(5112), - [anon_sym_import] = ACTIONS(5112), - [anon_sym_test] = ACTIONS(5112), - [anon_sym_hide] = ACTIONS(5112), - [anon_sym_func] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(5110), - [anon_sym_struct] = ACTIONS(5112), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_RPAREN] = ACTIONS(5110), - [anon_sym_LBRACE] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_DASH] = ACTIONS(5110), - [anon_sym_DOLLAR] = ACTIONS(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_void] = ACTIONS(5112), - [anon_sym_noreturn] = ACTIONS(5112), - [anon_sym_type] = ACTIONS(5112), - [anon_sym_anyopaque] = ACTIONS(5112), - [anon_sym_bool] = ACTIONS(5112), - [anon_sym_int] = ACTIONS(5112), - [anon_sym_uint] = ACTIONS(5112), - [anon_sym_float] = ACTIONS(5112), - [anon_sym_range] = ACTIONS(5112), - [anon_sym_i8] = ACTIONS(5112), - [anon_sym_i16] = ACTIONS(5112), - [anon_sym_i32] = ACTIONS(5112), - [anon_sym_i64] = ACTIONS(5112), - [anon_sym_u8] = ACTIONS(5112), - [anon_sym_u16] = ACTIONS(5112), - [anon_sym_u32] = ACTIONS(5112), - [anon_sym_u64] = ACTIONS(5112), - [anon_sym_isize] = ACTIONS(5112), - [anon_sym_usize] = ACTIONS(5112), - [anon_sym_f32] = ACTIONS(5112), - [anon_sym_f64] = ACTIONS(5112), - [anon_sym_c_char] = ACTIONS(5112), - [anon_sym_c_schar] = ACTIONS(5112), - [anon_sym_c_uchar] = ACTIONS(5112), - [anon_sym_c_short] = ACTIONS(5112), - [anon_sym_c_ushort] = ACTIONS(5112), - [anon_sym_c_int] = ACTIONS(5112), - [anon_sym_c_uint] = ACTIONS(5112), - [anon_sym_c_long] = ACTIONS(5112), - [anon_sym_c_ulong] = ACTIONS(5112), - [anon_sym_c_longlong] = ACTIONS(5112), - [anon_sym_c_ulonglong] = ACTIONS(5112), - [anon_sym_c_float] = ACTIONS(5112), - [anon_sym_c_double] = ACTIONS(5112), - [anon_sym_c_longdouble] = ACTIONS(5112), - [anon_sym_return] = ACTIONS(5112), - [anon_sym_yield] = ACTIONS(5112), - [anon_sym_break] = ACTIONS(5112), - [anon_sym_continue] = ACTIONS(5112), - [anon_sym_defer] = ACTIONS(5112), - [anon_sym_errdefer] = ACTIONS(5112), - [anon_sym_if] = ACTIONS(5112), - [anon_sym_else] = ACTIONS(5112), - [anon_sym_while] = ACTIONS(5112), - [anon_sym_expand] = ACTIONS(5112), - [anon_sym_for] = ACTIONS(5112), - [anon_sym_match] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_TILDE] = ACTIONS(5110), - [anon_sym_try] = ACTIONS(5112), - [anon_sym_DOT] = ACTIONS(5110), - [anon_sym_true] = ACTIONS(5112), - [anon_sym_false] = ACTIONS(5112), - [anon_sym_null] = ACTIONS(5112), - [anon_sym_unreachable] = ACTIONS(5112), - [anon_sym_undefined] = ACTIONS(5112), - [sym_sink] = ACTIONS(5112), - [sym_integer] = ACTIONS(5112), - [sym_float] = ACTIONS(5110), - [anon_sym_DQUOTE] = ACTIONS(5110), - [sym_multiline_string] = ACTIONS(5110), - [sym_character] = ACTIONS(5110), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5110), - }, - [STATE(2030)] = { - [ts_builtin_sym_end] = ACTIONS(5114), - [sym_identifier] = ACTIONS(5116), - [anon_sym_import] = ACTIONS(5116), - [anon_sym_test] = ACTIONS(5116), - [anon_sym_hide] = ACTIONS(5116), - [anon_sym_func] = ACTIONS(5116), - [anon_sym_BANG] = ACTIONS(5114), - [anon_sym_struct] = ACTIONS(5116), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_RPAREN] = ACTIONS(5114), - [anon_sym_LBRACE] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_DASH] = ACTIONS(5114), - [anon_sym_DOLLAR] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_void] = ACTIONS(5116), - [anon_sym_noreturn] = ACTIONS(5116), - [anon_sym_type] = ACTIONS(5116), - [anon_sym_anyopaque] = ACTIONS(5116), - [anon_sym_bool] = ACTIONS(5116), - [anon_sym_int] = ACTIONS(5116), - [anon_sym_uint] = ACTIONS(5116), - [anon_sym_float] = ACTIONS(5116), - [anon_sym_range] = ACTIONS(5116), - [anon_sym_i8] = ACTIONS(5116), - [anon_sym_i16] = ACTIONS(5116), - [anon_sym_i32] = ACTIONS(5116), - [anon_sym_i64] = ACTIONS(5116), - [anon_sym_u8] = ACTIONS(5116), - [anon_sym_u16] = ACTIONS(5116), - [anon_sym_u32] = ACTIONS(5116), - [anon_sym_u64] = ACTIONS(5116), - [anon_sym_isize] = ACTIONS(5116), - [anon_sym_usize] = ACTIONS(5116), - [anon_sym_f32] = ACTIONS(5116), - [anon_sym_f64] = ACTIONS(5116), - [anon_sym_c_char] = ACTIONS(5116), - [anon_sym_c_schar] = ACTIONS(5116), - [anon_sym_c_uchar] = ACTIONS(5116), - [anon_sym_c_short] = ACTIONS(5116), - [anon_sym_c_ushort] = ACTIONS(5116), - [anon_sym_c_int] = ACTIONS(5116), - [anon_sym_c_uint] = ACTIONS(5116), - [anon_sym_c_long] = ACTIONS(5116), - [anon_sym_c_ulong] = ACTIONS(5116), - [anon_sym_c_longlong] = ACTIONS(5116), - [anon_sym_c_ulonglong] = ACTIONS(5116), - [anon_sym_c_float] = ACTIONS(5116), - [anon_sym_c_double] = ACTIONS(5116), - [anon_sym_c_longdouble] = ACTIONS(5116), - [anon_sym_return] = ACTIONS(5116), - [anon_sym_yield] = ACTIONS(5116), - [anon_sym_break] = ACTIONS(5116), - [anon_sym_continue] = ACTIONS(5116), - [anon_sym_defer] = ACTIONS(5116), - [anon_sym_errdefer] = ACTIONS(5116), - [anon_sym_if] = ACTIONS(5116), - [anon_sym_else] = ACTIONS(5116), - [anon_sym_while] = ACTIONS(5116), - [anon_sym_expand] = ACTIONS(5116), - [anon_sym_for] = ACTIONS(5116), - [anon_sym_match] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5114), - [anon_sym_TILDE] = ACTIONS(5114), - [anon_sym_try] = ACTIONS(5116), - [anon_sym_DOT] = ACTIONS(5114), - [anon_sym_true] = ACTIONS(5116), - [anon_sym_false] = ACTIONS(5116), - [anon_sym_null] = ACTIONS(5116), - [anon_sym_unreachable] = ACTIONS(5116), - [anon_sym_undefined] = ACTIONS(5116), - [sym_sink] = ACTIONS(5116), - [sym_integer] = ACTIONS(5116), - [sym_float] = ACTIONS(5114), - [anon_sym_DQUOTE] = ACTIONS(5114), - [sym_multiline_string] = ACTIONS(5114), - [sym_character] = ACTIONS(5114), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5114), - }, - [STATE(2031)] = { - [ts_builtin_sym_end] = ACTIONS(5118), - [sym_identifier] = ACTIONS(5120), - [anon_sym_import] = ACTIONS(5120), - [anon_sym_test] = ACTIONS(5120), - [anon_sym_hide] = ACTIONS(5120), - [anon_sym_func] = ACTIONS(5120), - [anon_sym_BANG] = ACTIONS(5118), - [anon_sym_struct] = ACTIONS(5120), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5118), - [anon_sym_DOLLAR] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_void] = ACTIONS(5120), - [anon_sym_noreturn] = ACTIONS(5120), - [anon_sym_type] = ACTIONS(5120), - [anon_sym_anyopaque] = ACTIONS(5120), - [anon_sym_bool] = ACTIONS(5120), - [anon_sym_int] = ACTIONS(5120), - [anon_sym_uint] = ACTIONS(5120), - [anon_sym_float] = ACTIONS(5120), - [anon_sym_range] = ACTIONS(5120), - [anon_sym_i8] = ACTIONS(5120), - [anon_sym_i16] = ACTIONS(5120), - [anon_sym_i32] = ACTIONS(5120), - [anon_sym_i64] = ACTIONS(5120), - [anon_sym_u8] = ACTIONS(5120), - [anon_sym_u16] = ACTIONS(5120), - [anon_sym_u32] = ACTIONS(5120), - [anon_sym_u64] = ACTIONS(5120), - [anon_sym_isize] = ACTIONS(5120), - [anon_sym_usize] = ACTIONS(5120), - [anon_sym_f32] = ACTIONS(5120), - [anon_sym_f64] = ACTIONS(5120), - [anon_sym_c_char] = ACTIONS(5120), - [anon_sym_c_schar] = ACTIONS(5120), - [anon_sym_c_uchar] = ACTIONS(5120), - [anon_sym_c_short] = ACTIONS(5120), - [anon_sym_c_ushort] = ACTIONS(5120), - [anon_sym_c_int] = ACTIONS(5120), - [anon_sym_c_uint] = ACTIONS(5120), - [anon_sym_c_long] = ACTIONS(5120), - [anon_sym_c_ulong] = ACTIONS(5120), - [anon_sym_c_longlong] = ACTIONS(5120), - [anon_sym_c_ulonglong] = ACTIONS(5120), - [anon_sym_c_float] = ACTIONS(5120), - [anon_sym_c_double] = ACTIONS(5120), - [anon_sym_c_longdouble] = ACTIONS(5120), - [anon_sym_return] = ACTIONS(5120), - [anon_sym_yield] = ACTIONS(5120), - [anon_sym_break] = ACTIONS(5120), - [anon_sym_continue] = ACTIONS(5120), - [anon_sym_defer] = ACTIONS(5120), - [anon_sym_errdefer] = ACTIONS(5120), - [anon_sym_if] = ACTIONS(5120), - [anon_sym_else] = ACTIONS(5120), - [anon_sym_while] = ACTIONS(5120), - [anon_sym_expand] = ACTIONS(5120), - [anon_sym_for] = ACTIONS(5120), - [anon_sym_match] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5118), - [anon_sym_TILDE] = ACTIONS(5118), - [anon_sym_try] = ACTIONS(5120), - [anon_sym_DOT] = ACTIONS(5118), - [anon_sym_true] = ACTIONS(5120), - [anon_sym_false] = ACTIONS(5120), - [anon_sym_null] = ACTIONS(5120), - [anon_sym_unreachable] = ACTIONS(5120), - [anon_sym_undefined] = ACTIONS(5120), - [sym_sink] = ACTIONS(5120), - [sym_integer] = ACTIONS(5120), - [sym_float] = ACTIONS(5118), - [anon_sym_DQUOTE] = ACTIONS(5118), - [sym_multiline_string] = ACTIONS(5118), - [sym_character] = ACTIONS(5118), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5118), - }, - [STATE(2032)] = { - [ts_builtin_sym_end] = ACTIONS(5122), - [sym_identifier] = ACTIONS(5124), - [anon_sym_import] = ACTIONS(5124), - [anon_sym_test] = ACTIONS(5124), - [anon_sym_hide] = ACTIONS(5124), - [anon_sym_func] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(5122), - [anon_sym_struct] = ACTIONS(5124), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5122), - [anon_sym_DOLLAR] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_void] = ACTIONS(5124), - [anon_sym_noreturn] = ACTIONS(5124), - [anon_sym_type] = ACTIONS(5124), - [anon_sym_anyopaque] = ACTIONS(5124), - [anon_sym_bool] = ACTIONS(5124), - [anon_sym_int] = ACTIONS(5124), - [anon_sym_uint] = ACTIONS(5124), - [anon_sym_float] = ACTIONS(5124), - [anon_sym_range] = ACTIONS(5124), - [anon_sym_i8] = ACTIONS(5124), - [anon_sym_i16] = ACTIONS(5124), - [anon_sym_i32] = ACTIONS(5124), - [anon_sym_i64] = ACTIONS(5124), - [anon_sym_u8] = ACTIONS(5124), - [anon_sym_u16] = ACTIONS(5124), - [anon_sym_u32] = ACTIONS(5124), - [anon_sym_u64] = ACTIONS(5124), - [anon_sym_isize] = ACTIONS(5124), - [anon_sym_usize] = ACTIONS(5124), - [anon_sym_f32] = ACTIONS(5124), - [anon_sym_f64] = ACTIONS(5124), - [anon_sym_c_char] = ACTIONS(5124), - [anon_sym_c_schar] = ACTIONS(5124), - [anon_sym_c_uchar] = ACTIONS(5124), - [anon_sym_c_short] = ACTIONS(5124), - [anon_sym_c_ushort] = ACTIONS(5124), - [anon_sym_c_int] = ACTIONS(5124), - [anon_sym_c_uint] = ACTIONS(5124), - [anon_sym_c_long] = ACTIONS(5124), - [anon_sym_c_ulong] = ACTIONS(5124), - [anon_sym_c_longlong] = ACTIONS(5124), - [anon_sym_c_ulonglong] = ACTIONS(5124), - [anon_sym_c_float] = ACTIONS(5124), - [anon_sym_c_double] = ACTIONS(5124), - [anon_sym_c_longdouble] = ACTIONS(5124), - [anon_sym_return] = ACTIONS(5124), - [anon_sym_yield] = ACTIONS(5124), - [anon_sym_break] = ACTIONS(5124), - [anon_sym_continue] = ACTIONS(5124), - [anon_sym_defer] = ACTIONS(5124), - [anon_sym_errdefer] = ACTIONS(5124), - [anon_sym_if] = ACTIONS(5124), - [anon_sym_else] = ACTIONS(5124), - [anon_sym_while] = ACTIONS(5124), - [anon_sym_expand] = ACTIONS(5124), - [anon_sym_for] = ACTIONS(5124), - [anon_sym_match] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5122), - [anon_sym_TILDE] = ACTIONS(5122), - [anon_sym_try] = ACTIONS(5124), - [anon_sym_DOT] = ACTIONS(5122), - [anon_sym_true] = ACTIONS(5124), - [anon_sym_false] = ACTIONS(5124), - [anon_sym_null] = ACTIONS(5124), - [anon_sym_unreachable] = ACTIONS(5124), - [anon_sym_undefined] = ACTIONS(5124), - [sym_sink] = ACTIONS(5124), - [sym_integer] = ACTIONS(5124), - [sym_float] = ACTIONS(5122), - [anon_sym_DQUOTE] = ACTIONS(5122), - [sym_multiline_string] = ACTIONS(5122), - [sym_character] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5122), - }, - [STATE(2033)] = { - [ts_builtin_sym_end] = ACTIONS(5126), - [sym_identifier] = ACTIONS(5128), - [anon_sym_import] = ACTIONS(5128), - [anon_sym_test] = ACTIONS(5128), - [anon_sym_hide] = ACTIONS(5128), - [anon_sym_func] = ACTIONS(5128), - [anon_sym_BANG] = ACTIONS(5126), - [anon_sym_struct] = ACTIONS(5128), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_RPAREN] = ACTIONS(5126), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_DASH] = ACTIONS(5126), - [anon_sym_DOLLAR] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_void] = ACTIONS(5128), - [anon_sym_noreturn] = ACTIONS(5128), - [anon_sym_type] = ACTIONS(5128), - [anon_sym_anyopaque] = ACTIONS(5128), - [anon_sym_bool] = ACTIONS(5128), - [anon_sym_int] = ACTIONS(5128), - [anon_sym_uint] = ACTIONS(5128), - [anon_sym_float] = ACTIONS(5128), - [anon_sym_range] = ACTIONS(5128), - [anon_sym_i8] = ACTIONS(5128), - [anon_sym_i16] = ACTIONS(5128), - [anon_sym_i32] = ACTIONS(5128), - [anon_sym_i64] = ACTIONS(5128), - [anon_sym_u8] = ACTIONS(5128), - [anon_sym_u16] = ACTIONS(5128), - [anon_sym_u32] = ACTIONS(5128), - [anon_sym_u64] = ACTIONS(5128), - [anon_sym_isize] = ACTIONS(5128), - [anon_sym_usize] = ACTIONS(5128), - [anon_sym_f32] = ACTIONS(5128), - [anon_sym_f64] = ACTIONS(5128), - [anon_sym_c_char] = ACTIONS(5128), - [anon_sym_c_schar] = ACTIONS(5128), - [anon_sym_c_uchar] = ACTIONS(5128), - [anon_sym_c_short] = ACTIONS(5128), - [anon_sym_c_ushort] = ACTIONS(5128), - [anon_sym_c_int] = ACTIONS(5128), - [anon_sym_c_uint] = ACTIONS(5128), - [anon_sym_c_long] = ACTIONS(5128), - [anon_sym_c_ulong] = ACTIONS(5128), - [anon_sym_c_longlong] = ACTIONS(5128), - [anon_sym_c_ulonglong] = ACTIONS(5128), - [anon_sym_c_float] = ACTIONS(5128), - [anon_sym_c_double] = ACTIONS(5128), - [anon_sym_c_longdouble] = ACTIONS(5128), - [anon_sym_return] = ACTIONS(5128), - [anon_sym_yield] = ACTIONS(5128), - [anon_sym_break] = ACTIONS(5128), - [anon_sym_continue] = ACTIONS(5128), - [anon_sym_defer] = ACTIONS(5128), - [anon_sym_errdefer] = ACTIONS(5128), - [anon_sym_if] = ACTIONS(5128), - [anon_sym_else] = ACTIONS(5128), - [anon_sym_while] = ACTIONS(5128), - [anon_sym_expand] = ACTIONS(5128), - [anon_sym_for] = ACTIONS(5128), - [anon_sym_match] = ACTIONS(5128), - [anon_sym_AMP] = ACTIONS(5126), - [anon_sym_TILDE] = ACTIONS(5126), - [anon_sym_try] = ACTIONS(5128), - [anon_sym_DOT] = ACTIONS(5126), - [anon_sym_true] = ACTIONS(5128), - [anon_sym_false] = ACTIONS(5128), - [anon_sym_null] = ACTIONS(5128), - [anon_sym_unreachable] = ACTIONS(5128), - [anon_sym_undefined] = ACTIONS(5128), - [sym_sink] = ACTIONS(5128), - [sym_integer] = ACTIONS(5128), - [sym_float] = ACTIONS(5126), - [anon_sym_DQUOTE] = ACTIONS(5126), - [sym_multiline_string] = ACTIONS(5126), - [sym_character] = ACTIONS(5126), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5126), - }, - [STATE(2034)] = { - [ts_builtin_sym_end] = ACTIONS(5130), - [sym_identifier] = ACTIONS(5132), - [anon_sym_import] = ACTIONS(5132), - [anon_sym_test] = ACTIONS(5132), - [anon_sym_hide] = ACTIONS(5132), - [anon_sym_func] = ACTIONS(5132), - [anon_sym_BANG] = ACTIONS(5130), - [anon_sym_struct] = ACTIONS(5132), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_RPAREN] = ACTIONS(5130), - [anon_sym_LBRACE] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_DASH] = ACTIONS(5130), - [anon_sym_DOLLAR] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_void] = ACTIONS(5132), - [anon_sym_noreturn] = ACTIONS(5132), - [anon_sym_type] = ACTIONS(5132), - [anon_sym_anyopaque] = ACTIONS(5132), - [anon_sym_bool] = ACTIONS(5132), - [anon_sym_int] = ACTIONS(5132), - [anon_sym_uint] = ACTIONS(5132), - [anon_sym_float] = ACTIONS(5132), - [anon_sym_range] = ACTIONS(5132), - [anon_sym_i8] = ACTIONS(5132), - [anon_sym_i16] = ACTIONS(5132), - [anon_sym_i32] = ACTIONS(5132), - [anon_sym_i64] = ACTIONS(5132), - [anon_sym_u8] = ACTIONS(5132), - [anon_sym_u16] = ACTIONS(5132), - [anon_sym_u32] = ACTIONS(5132), - [anon_sym_u64] = ACTIONS(5132), - [anon_sym_isize] = ACTIONS(5132), - [anon_sym_usize] = ACTIONS(5132), - [anon_sym_f32] = ACTIONS(5132), - [anon_sym_f64] = ACTIONS(5132), - [anon_sym_c_char] = ACTIONS(5132), - [anon_sym_c_schar] = ACTIONS(5132), - [anon_sym_c_uchar] = ACTIONS(5132), - [anon_sym_c_short] = ACTIONS(5132), - [anon_sym_c_ushort] = ACTIONS(5132), - [anon_sym_c_int] = ACTIONS(5132), - [anon_sym_c_uint] = ACTIONS(5132), - [anon_sym_c_long] = ACTIONS(5132), - [anon_sym_c_ulong] = ACTIONS(5132), - [anon_sym_c_longlong] = ACTIONS(5132), - [anon_sym_c_ulonglong] = ACTIONS(5132), - [anon_sym_c_float] = ACTIONS(5132), - [anon_sym_c_double] = ACTIONS(5132), - [anon_sym_c_longdouble] = ACTIONS(5132), - [anon_sym_return] = ACTIONS(5132), - [anon_sym_yield] = ACTIONS(5132), - [anon_sym_break] = ACTIONS(5132), - [anon_sym_continue] = ACTIONS(5132), - [anon_sym_defer] = ACTIONS(5132), - [anon_sym_errdefer] = ACTIONS(5132), - [anon_sym_if] = ACTIONS(5132), - [anon_sym_else] = ACTIONS(5132), - [anon_sym_while] = ACTIONS(5132), - [anon_sym_expand] = ACTIONS(5132), - [anon_sym_for] = ACTIONS(5132), - [anon_sym_match] = ACTIONS(5132), - [anon_sym_AMP] = ACTIONS(5130), - [anon_sym_TILDE] = ACTIONS(5130), - [anon_sym_try] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5130), - [anon_sym_true] = ACTIONS(5132), - [anon_sym_false] = ACTIONS(5132), - [anon_sym_null] = ACTIONS(5132), - [anon_sym_unreachable] = ACTIONS(5132), - [anon_sym_undefined] = ACTIONS(5132), - [sym_sink] = ACTIONS(5132), - [sym_integer] = ACTIONS(5132), - [sym_float] = ACTIONS(5130), - [anon_sym_DQUOTE] = ACTIONS(5130), - [sym_multiline_string] = ACTIONS(5130), - [sym_character] = ACTIONS(5130), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5130), - }, - [STATE(2035)] = { - [ts_builtin_sym_end] = ACTIONS(5134), - [sym_identifier] = ACTIONS(5136), - [anon_sym_import] = ACTIONS(5136), - [anon_sym_test] = ACTIONS(5136), - [anon_sym_hide] = ACTIONS(5136), - [anon_sym_func] = ACTIONS(5136), - [anon_sym_BANG] = ACTIONS(5134), - [anon_sym_struct] = ACTIONS(5136), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_RPAREN] = ACTIONS(5134), - [anon_sym_LBRACE] = ACTIONS(5134), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_DASH] = ACTIONS(5134), - [anon_sym_DOLLAR] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_void] = ACTIONS(5136), - [anon_sym_noreturn] = ACTIONS(5136), - [anon_sym_type] = ACTIONS(5136), - [anon_sym_anyopaque] = ACTIONS(5136), - [anon_sym_bool] = ACTIONS(5136), - [anon_sym_int] = ACTIONS(5136), - [anon_sym_uint] = ACTIONS(5136), - [anon_sym_float] = ACTIONS(5136), - [anon_sym_range] = ACTIONS(5136), - [anon_sym_i8] = ACTIONS(5136), - [anon_sym_i16] = ACTIONS(5136), - [anon_sym_i32] = ACTIONS(5136), - [anon_sym_i64] = ACTIONS(5136), - [anon_sym_u8] = ACTIONS(5136), - [anon_sym_u16] = ACTIONS(5136), - [anon_sym_u32] = ACTIONS(5136), - [anon_sym_u64] = ACTIONS(5136), - [anon_sym_isize] = ACTIONS(5136), - [anon_sym_usize] = ACTIONS(5136), - [anon_sym_f32] = ACTIONS(5136), - [anon_sym_f64] = ACTIONS(5136), - [anon_sym_c_char] = ACTIONS(5136), - [anon_sym_c_schar] = ACTIONS(5136), - [anon_sym_c_uchar] = ACTIONS(5136), - [anon_sym_c_short] = ACTIONS(5136), - [anon_sym_c_ushort] = ACTIONS(5136), - [anon_sym_c_int] = ACTIONS(5136), - [anon_sym_c_uint] = ACTIONS(5136), - [anon_sym_c_long] = ACTIONS(5136), - [anon_sym_c_ulong] = ACTIONS(5136), - [anon_sym_c_longlong] = ACTIONS(5136), - [anon_sym_c_ulonglong] = ACTIONS(5136), - [anon_sym_c_float] = ACTIONS(5136), - [anon_sym_c_double] = ACTIONS(5136), - [anon_sym_c_longdouble] = ACTIONS(5136), - [anon_sym_return] = ACTIONS(5136), - [anon_sym_yield] = ACTIONS(5136), - [anon_sym_break] = ACTIONS(5136), - [anon_sym_continue] = ACTIONS(5136), - [anon_sym_defer] = ACTIONS(5136), - [anon_sym_errdefer] = ACTIONS(5136), - [anon_sym_if] = ACTIONS(5136), - [anon_sym_else] = ACTIONS(5136), - [anon_sym_while] = ACTIONS(5136), - [anon_sym_expand] = ACTIONS(5136), - [anon_sym_for] = ACTIONS(5136), - [anon_sym_match] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5134), - [anon_sym_TILDE] = ACTIONS(5134), - [anon_sym_try] = ACTIONS(5136), - [anon_sym_DOT] = ACTIONS(5134), - [anon_sym_true] = ACTIONS(5136), - [anon_sym_false] = ACTIONS(5136), - [anon_sym_null] = ACTIONS(5136), - [anon_sym_unreachable] = ACTIONS(5136), - [anon_sym_undefined] = ACTIONS(5136), - [sym_sink] = ACTIONS(5136), - [sym_integer] = ACTIONS(5136), - [sym_float] = ACTIONS(5134), - [anon_sym_DQUOTE] = ACTIONS(5134), - [sym_multiline_string] = ACTIONS(5134), - [sym_character] = ACTIONS(5134), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5134), - }, - [STATE(2036)] = { - [ts_builtin_sym_end] = ACTIONS(5138), - [sym_identifier] = ACTIONS(5140), - [anon_sym_import] = ACTIONS(5140), - [anon_sym_test] = ACTIONS(5140), - [anon_sym_hide] = ACTIONS(5140), - [anon_sym_func] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5138), - [anon_sym_struct] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_LBRACE] = ACTIONS(5138), - [anon_sym_RBRACE] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_DOLLAR] = ACTIONS(5138), - [anon_sym_LBRACK] = ACTIONS(5138), - [anon_sym_void] = ACTIONS(5140), - [anon_sym_noreturn] = ACTIONS(5140), - [anon_sym_type] = ACTIONS(5140), - [anon_sym_anyopaque] = ACTIONS(5140), - [anon_sym_bool] = ACTIONS(5140), - [anon_sym_int] = ACTIONS(5140), - [anon_sym_uint] = ACTIONS(5140), - [anon_sym_float] = ACTIONS(5140), - [anon_sym_range] = ACTIONS(5140), - [anon_sym_i8] = ACTIONS(5140), - [anon_sym_i16] = ACTIONS(5140), - [anon_sym_i32] = ACTIONS(5140), - [anon_sym_i64] = ACTIONS(5140), - [anon_sym_u8] = ACTIONS(5140), - [anon_sym_u16] = ACTIONS(5140), - [anon_sym_u32] = ACTIONS(5140), - [anon_sym_u64] = ACTIONS(5140), - [anon_sym_isize] = ACTIONS(5140), - [anon_sym_usize] = ACTIONS(5140), - [anon_sym_f32] = ACTIONS(5140), - [anon_sym_f64] = ACTIONS(5140), - [anon_sym_c_char] = ACTIONS(5140), - [anon_sym_c_schar] = ACTIONS(5140), - [anon_sym_c_uchar] = ACTIONS(5140), - [anon_sym_c_short] = ACTIONS(5140), - [anon_sym_c_ushort] = ACTIONS(5140), - [anon_sym_c_int] = ACTIONS(5140), - [anon_sym_c_uint] = ACTIONS(5140), - [anon_sym_c_long] = ACTIONS(5140), - [anon_sym_c_ulong] = ACTIONS(5140), - [anon_sym_c_longlong] = ACTIONS(5140), - [anon_sym_c_ulonglong] = ACTIONS(5140), - [anon_sym_c_float] = ACTIONS(5140), - [anon_sym_c_double] = ACTIONS(5140), - [anon_sym_c_longdouble] = ACTIONS(5140), - [anon_sym_return] = ACTIONS(5140), - [anon_sym_yield] = ACTIONS(5140), - [anon_sym_break] = ACTIONS(5140), - [anon_sym_continue] = ACTIONS(5140), - [anon_sym_defer] = ACTIONS(5140), - [anon_sym_errdefer] = ACTIONS(5140), - [anon_sym_if] = ACTIONS(5140), - [anon_sym_else] = ACTIONS(5140), - [anon_sym_while] = ACTIONS(5140), - [anon_sym_expand] = ACTIONS(5140), - [anon_sym_for] = ACTIONS(5140), - [anon_sym_match] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5138), - [anon_sym_TILDE] = ACTIONS(5138), - [anon_sym_try] = ACTIONS(5140), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_true] = ACTIONS(5140), - [anon_sym_false] = ACTIONS(5140), - [anon_sym_null] = ACTIONS(5140), - [anon_sym_unreachable] = ACTIONS(5140), - [anon_sym_undefined] = ACTIONS(5140), - [sym_sink] = ACTIONS(5140), - [sym_integer] = ACTIONS(5140), - [sym_float] = ACTIONS(5138), - [anon_sym_DQUOTE] = ACTIONS(5138), - [sym_multiline_string] = ACTIONS(5138), - [sym_character] = ACTIONS(5138), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5138), - }, - [STATE(2037)] = { - [ts_builtin_sym_end] = ACTIONS(5142), - [sym_identifier] = ACTIONS(5144), - [anon_sym_import] = ACTIONS(5144), - [anon_sym_test] = ACTIONS(5144), - [anon_sym_hide] = ACTIONS(5144), - [anon_sym_func] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(5142), - [anon_sym_struct] = ACTIONS(5144), - [anon_sym_LPAREN] = ACTIONS(5142), - [anon_sym_RPAREN] = ACTIONS(5142), - [anon_sym_LBRACE] = ACTIONS(5142), - [anon_sym_RBRACE] = ACTIONS(5142), - [anon_sym_DASH] = ACTIONS(5142), - [anon_sym_DOLLAR] = ACTIONS(5142), - [anon_sym_LBRACK] = ACTIONS(5142), - [anon_sym_void] = ACTIONS(5144), - [anon_sym_noreturn] = ACTIONS(5144), - [anon_sym_type] = ACTIONS(5144), - [anon_sym_anyopaque] = ACTIONS(5144), - [anon_sym_bool] = ACTIONS(5144), - [anon_sym_int] = ACTIONS(5144), - [anon_sym_uint] = ACTIONS(5144), - [anon_sym_float] = ACTIONS(5144), - [anon_sym_range] = ACTIONS(5144), - [anon_sym_i8] = ACTIONS(5144), - [anon_sym_i16] = ACTIONS(5144), - [anon_sym_i32] = ACTIONS(5144), - [anon_sym_i64] = ACTIONS(5144), - [anon_sym_u8] = ACTIONS(5144), - [anon_sym_u16] = ACTIONS(5144), - [anon_sym_u32] = ACTIONS(5144), - [anon_sym_u64] = ACTIONS(5144), - [anon_sym_isize] = ACTIONS(5144), - [anon_sym_usize] = ACTIONS(5144), - [anon_sym_f32] = ACTIONS(5144), - [anon_sym_f64] = ACTIONS(5144), - [anon_sym_c_char] = ACTIONS(5144), - [anon_sym_c_schar] = ACTIONS(5144), - [anon_sym_c_uchar] = ACTIONS(5144), - [anon_sym_c_short] = ACTIONS(5144), - [anon_sym_c_ushort] = ACTIONS(5144), - [anon_sym_c_int] = ACTIONS(5144), - [anon_sym_c_uint] = ACTIONS(5144), - [anon_sym_c_long] = ACTIONS(5144), - [anon_sym_c_ulong] = ACTIONS(5144), - [anon_sym_c_longlong] = ACTIONS(5144), - [anon_sym_c_ulonglong] = ACTIONS(5144), - [anon_sym_c_float] = ACTIONS(5144), - [anon_sym_c_double] = ACTIONS(5144), - [anon_sym_c_longdouble] = ACTIONS(5144), - [anon_sym_return] = ACTIONS(5144), - [anon_sym_yield] = ACTIONS(5144), - [anon_sym_break] = ACTIONS(5144), - [anon_sym_continue] = ACTIONS(5144), - [anon_sym_defer] = ACTIONS(5144), - [anon_sym_errdefer] = ACTIONS(5144), - [anon_sym_if] = ACTIONS(5144), - [anon_sym_else] = ACTIONS(5144), - [anon_sym_while] = ACTIONS(5144), - [anon_sym_expand] = ACTIONS(5144), - [anon_sym_for] = ACTIONS(5144), - [anon_sym_match] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5142), - [anon_sym_TILDE] = ACTIONS(5142), - [anon_sym_try] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5142), - [anon_sym_true] = ACTIONS(5144), - [anon_sym_false] = ACTIONS(5144), - [anon_sym_null] = ACTIONS(5144), - [anon_sym_unreachable] = ACTIONS(5144), - [anon_sym_undefined] = ACTIONS(5144), - [sym_sink] = ACTIONS(5144), - [sym_integer] = ACTIONS(5144), - [sym_float] = ACTIONS(5142), - [anon_sym_DQUOTE] = ACTIONS(5142), - [sym_multiline_string] = ACTIONS(5142), - [sym_character] = ACTIONS(5142), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5142), - }, - [STATE(2038)] = { - [ts_builtin_sym_end] = ACTIONS(5146), - [sym_identifier] = ACTIONS(5148), - [anon_sym_import] = ACTIONS(5148), - [anon_sym_test] = ACTIONS(5148), - [anon_sym_hide] = ACTIONS(5148), - [anon_sym_func] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(5146), - [anon_sym_struct] = ACTIONS(5148), - [anon_sym_LPAREN] = ACTIONS(5146), - [anon_sym_RPAREN] = ACTIONS(5146), - [anon_sym_LBRACE] = ACTIONS(5146), - [anon_sym_RBRACE] = ACTIONS(5146), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_DOLLAR] = ACTIONS(5146), - [anon_sym_LBRACK] = ACTIONS(5146), - [anon_sym_void] = ACTIONS(5148), - [anon_sym_noreturn] = ACTIONS(5148), - [anon_sym_type] = ACTIONS(5148), - [anon_sym_anyopaque] = ACTIONS(5148), - [anon_sym_bool] = ACTIONS(5148), - [anon_sym_int] = ACTIONS(5148), - [anon_sym_uint] = ACTIONS(5148), - [anon_sym_float] = ACTIONS(5148), - [anon_sym_range] = ACTIONS(5148), - [anon_sym_i8] = ACTIONS(5148), - [anon_sym_i16] = ACTIONS(5148), - [anon_sym_i32] = ACTIONS(5148), - [anon_sym_i64] = ACTIONS(5148), - [anon_sym_u8] = ACTIONS(5148), - [anon_sym_u16] = ACTIONS(5148), - [anon_sym_u32] = ACTIONS(5148), - [anon_sym_u64] = ACTIONS(5148), - [anon_sym_isize] = ACTIONS(5148), - [anon_sym_usize] = ACTIONS(5148), - [anon_sym_f32] = ACTIONS(5148), - [anon_sym_f64] = ACTIONS(5148), - [anon_sym_c_char] = ACTIONS(5148), - [anon_sym_c_schar] = ACTIONS(5148), - [anon_sym_c_uchar] = ACTIONS(5148), - [anon_sym_c_short] = ACTIONS(5148), - [anon_sym_c_ushort] = ACTIONS(5148), - [anon_sym_c_int] = ACTIONS(5148), - [anon_sym_c_uint] = ACTIONS(5148), - [anon_sym_c_long] = ACTIONS(5148), - [anon_sym_c_ulong] = ACTIONS(5148), - [anon_sym_c_longlong] = ACTIONS(5148), - [anon_sym_c_ulonglong] = ACTIONS(5148), - [anon_sym_c_float] = ACTIONS(5148), - [anon_sym_c_double] = ACTIONS(5148), - [anon_sym_c_longdouble] = ACTIONS(5148), - [anon_sym_return] = ACTIONS(5148), - [anon_sym_yield] = ACTIONS(5148), - [anon_sym_break] = ACTIONS(5148), - [anon_sym_continue] = ACTIONS(5148), - [anon_sym_defer] = ACTIONS(5148), - [anon_sym_errdefer] = ACTIONS(5148), - [anon_sym_if] = ACTIONS(5148), - [anon_sym_else] = ACTIONS(5148), - [anon_sym_while] = ACTIONS(5148), - [anon_sym_expand] = ACTIONS(5148), - [anon_sym_for] = ACTIONS(5148), - [anon_sym_match] = ACTIONS(5148), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_TILDE] = ACTIONS(5146), - [anon_sym_try] = ACTIONS(5148), - [anon_sym_DOT] = ACTIONS(5146), - [anon_sym_true] = ACTIONS(5148), - [anon_sym_false] = ACTIONS(5148), - [anon_sym_null] = ACTIONS(5148), - [anon_sym_unreachable] = ACTIONS(5148), - [anon_sym_undefined] = ACTIONS(5148), - [sym_sink] = ACTIONS(5148), - [sym_integer] = ACTIONS(5148), - [sym_float] = ACTIONS(5146), - [anon_sym_DQUOTE] = ACTIONS(5146), - [sym_multiline_string] = ACTIONS(5146), - [sym_character] = ACTIONS(5146), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5146), - }, - [STATE(2039)] = { - [ts_builtin_sym_end] = ACTIONS(5150), - [sym_identifier] = ACTIONS(5152), - [anon_sym_import] = ACTIONS(5152), - [anon_sym_test] = ACTIONS(5152), - [anon_sym_hide] = ACTIONS(5152), - [anon_sym_func] = ACTIONS(5152), - [anon_sym_BANG] = ACTIONS(5150), - [anon_sym_struct] = ACTIONS(5152), - [anon_sym_LPAREN] = ACTIONS(5150), - [anon_sym_RPAREN] = ACTIONS(5150), - [anon_sym_LBRACE] = ACTIONS(5150), - [anon_sym_RBRACE] = ACTIONS(5150), - [anon_sym_DASH] = ACTIONS(5150), - [anon_sym_DOLLAR] = ACTIONS(5150), - [anon_sym_LBRACK] = ACTIONS(5150), - [anon_sym_void] = ACTIONS(5152), - [anon_sym_noreturn] = ACTIONS(5152), - [anon_sym_type] = ACTIONS(5152), - [anon_sym_anyopaque] = ACTIONS(5152), - [anon_sym_bool] = ACTIONS(5152), - [anon_sym_int] = ACTIONS(5152), - [anon_sym_uint] = ACTIONS(5152), - [anon_sym_float] = ACTIONS(5152), - [anon_sym_range] = ACTIONS(5152), - [anon_sym_i8] = ACTIONS(5152), - [anon_sym_i16] = ACTIONS(5152), - [anon_sym_i32] = ACTIONS(5152), - [anon_sym_i64] = ACTIONS(5152), - [anon_sym_u8] = ACTIONS(5152), - [anon_sym_u16] = ACTIONS(5152), - [anon_sym_u32] = ACTIONS(5152), - [anon_sym_u64] = ACTIONS(5152), - [anon_sym_isize] = ACTIONS(5152), - [anon_sym_usize] = ACTIONS(5152), - [anon_sym_f32] = ACTIONS(5152), - [anon_sym_f64] = ACTIONS(5152), - [anon_sym_c_char] = ACTIONS(5152), - [anon_sym_c_schar] = ACTIONS(5152), - [anon_sym_c_uchar] = ACTIONS(5152), - [anon_sym_c_short] = ACTIONS(5152), - [anon_sym_c_ushort] = ACTIONS(5152), - [anon_sym_c_int] = ACTIONS(5152), - [anon_sym_c_uint] = ACTIONS(5152), - [anon_sym_c_long] = ACTIONS(5152), - [anon_sym_c_ulong] = ACTIONS(5152), - [anon_sym_c_longlong] = ACTIONS(5152), - [anon_sym_c_ulonglong] = ACTIONS(5152), - [anon_sym_c_float] = ACTIONS(5152), - [anon_sym_c_double] = ACTIONS(5152), - [anon_sym_c_longdouble] = ACTIONS(5152), - [anon_sym_return] = ACTIONS(5152), - [anon_sym_yield] = ACTIONS(5152), - [anon_sym_break] = ACTIONS(5152), - [anon_sym_continue] = ACTIONS(5152), - [anon_sym_defer] = ACTIONS(5152), - [anon_sym_errdefer] = ACTIONS(5152), - [anon_sym_if] = ACTIONS(5152), - [anon_sym_else] = ACTIONS(5152), - [anon_sym_while] = ACTIONS(5152), - [anon_sym_expand] = ACTIONS(5152), - [anon_sym_for] = ACTIONS(5152), - [anon_sym_match] = ACTIONS(5152), - [anon_sym_AMP] = ACTIONS(5150), - [anon_sym_TILDE] = ACTIONS(5150), - [anon_sym_try] = ACTIONS(5152), - [anon_sym_DOT] = ACTIONS(5150), - [anon_sym_true] = ACTIONS(5152), - [anon_sym_false] = ACTIONS(5152), - [anon_sym_null] = ACTIONS(5152), - [anon_sym_unreachable] = ACTIONS(5152), - [anon_sym_undefined] = ACTIONS(5152), - [sym_sink] = ACTIONS(5152), - [sym_integer] = ACTIONS(5152), - [sym_float] = ACTIONS(5150), - [anon_sym_DQUOTE] = ACTIONS(5150), - [sym_multiline_string] = ACTIONS(5150), - [sym_character] = ACTIONS(5150), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5150), - }, - [STATE(2040)] = { - [ts_builtin_sym_end] = ACTIONS(5154), - [sym_identifier] = ACTIONS(5156), - [anon_sym_import] = ACTIONS(5156), - [anon_sym_test] = ACTIONS(5156), - [anon_sym_hide] = ACTIONS(5156), - [anon_sym_func] = ACTIONS(5156), - [anon_sym_BANG] = ACTIONS(5154), - [anon_sym_struct] = ACTIONS(5156), - [anon_sym_LPAREN] = ACTIONS(5154), - [anon_sym_RPAREN] = ACTIONS(5154), - [anon_sym_LBRACE] = ACTIONS(5154), - [anon_sym_RBRACE] = ACTIONS(5154), - [anon_sym_DASH] = ACTIONS(5154), - [anon_sym_DOLLAR] = ACTIONS(5154), - [anon_sym_LBRACK] = ACTIONS(5154), - [anon_sym_void] = ACTIONS(5156), - [anon_sym_noreturn] = ACTIONS(5156), - [anon_sym_type] = ACTIONS(5156), - [anon_sym_anyopaque] = ACTIONS(5156), - [anon_sym_bool] = ACTIONS(5156), - [anon_sym_int] = ACTIONS(5156), - [anon_sym_uint] = ACTIONS(5156), - [anon_sym_float] = ACTIONS(5156), - [anon_sym_range] = ACTIONS(5156), - [anon_sym_i8] = ACTIONS(5156), - [anon_sym_i16] = ACTIONS(5156), - [anon_sym_i32] = ACTIONS(5156), - [anon_sym_i64] = ACTIONS(5156), - [anon_sym_u8] = ACTIONS(5156), - [anon_sym_u16] = ACTIONS(5156), - [anon_sym_u32] = ACTIONS(5156), - [anon_sym_u64] = ACTIONS(5156), - [anon_sym_isize] = ACTIONS(5156), - [anon_sym_usize] = ACTIONS(5156), - [anon_sym_f32] = ACTIONS(5156), - [anon_sym_f64] = ACTIONS(5156), - [anon_sym_c_char] = ACTIONS(5156), - [anon_sym_c_schar] = ACTIONS(5156), - [anon_sym_c_uchar] = ACTIONS(5156), - [anon_sym_c_short] = ACTIONS(5156), - [anon_sym_c_ushort] = ACTIONS(5156), - [anon_sym_c_int] = ACTIONS(5156), - [anon_sym_c_uint] = ACTIONS(5156), - [anon_sym_c_long] = ACTIONS(5156), - [anon_sym_c_ulong] = ACTIONS(5156), - [anon_sym_c_longlong] = ACTIONS(5156), - [anon_sym_c_ulonglong] = ACTIONS(5156), - [anon_sym_c_float] = ACTIONS(5156), - [anon_sym_c_double] = ACTIONS(5156), - [anon_sym_c_longdouble] = ACTIONS(5156), - [anon_sym_return] = ACTIONS(5156), - [anon_sym_yield] = ACTIONS(5156), - [anon_sym_break] = ACTIONS(5156), - [anon_sym_continue] = ACTIONS(5156), - [anon_sym_defer] = ACTIONS(5156), - [anon_sym_errdefer] = ACTIONS(5156), - [anon_sym_if] = ACTIONS(5156), - [anon_sym_else] = ACTIONS(5156), - [anon_sym_while] = ACTIONS(5156), - [anon_sym_expand] = ACTIONS(5156), - [anon_sym_for] = ACTIONS(5156), - [anon_sym_match] = ACTIONS(5156), - [anon_sym_AMP] = ACTIONS(5154), - [anon_sym_TILDE] = ACTIONS(5154), - [anon_sym_try] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5154), - [anon_sym_true] = ACTIONS(5156), - [anon_sym_false] = ACTIONS(5156), - [anon_sym_null] = ACTIONS(5156), - [anon_sym_unreachable] = ACTIONS(5156), - [anon_sym_undefined] = ACTIONS(5156), - [sym_sink] = ACTIONS(5156), - [sym_integer] = ACTIONS(5156), - [sym_float] = ACTIONS(5154), - [anon_sym_DQUOTE] = ACTIONS(5154), - [sym_multiline_string] = ACTIONS(5154), - [sym_character] = ACTIONS(5154), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5154), - }, - [STATE(2041)] = { - [ts_builtin_sym_end] = ACTIONS(5158), - [sym_identifier] = ACTIONS(5160), - [anon_sym_import] = ACTIONS(5160), - [anon_sym_test] = ACTIONS(5160), - [anon_sym_hide] = ACTIONS(5160), - [anon_sym_func] = ACTIONS(5160), - [anon_sym_BANG] = ACTIONS(5158), - [anon_sym_struct] = ACTIONS(5160), - [anon_sym_LPAREN] = ACTIONS(5158), - [anon_sym_RPAREN] = ACTIONS(5158), - [anon_sym_LBRACE] = ACTIONS(5158), - [anon_sym_RBRACE] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5158), - [anon_sym_DOLLAR] = ACTIONS(5158), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_void] = ACTIONS(5160), - [anon_sym_noreturn] = ACTIONS(5160), - [anon_sym_type] = ACTIONS(5160), - [anon_sym_anyopaque] = ACTIONS(5160), - [anon_sym_bool] = ACTIONS(5160), - [anon_sym_int] = ACTIONS(5160), - [anon_sym_uint] = ACTIONS(5160), - [anon_sym_float] = ACTIONS(5160), - [anon_sym_range] = ACTIONS(5160), - [anon_sym_i8] = ACTIONS(5160), - [anon_sym_i16] = ACTIONS(5160), - [anon_sym_i32] = ACTIONS(5160), - [anon_sym_i64] = ACTIONS(5160), - [anon_sym_u8] = ACTIONS(5160), - [anon_sym_u16] = ACTIONS(5160), - [anon_sym_u32] = ACTIONS(5160), - [anon_sym_u64] = ACTIONS(5160), - [anon_sym_isize] = ACTIONS(5160), - [anon_sym_usize] = ACTIONS(5160), - [anon_sym_f32] = ACTIONS(5160), - [anon_sym_f64] = ACTIONS(5160), - [anon_sym_c_char] = ACTIONS(5160), - [anon_sym_c_schar] = ACTIONS(5160), - [anon_sym_c_uchar] = ACTIONS(5160), - [anon_sym_c_short] = ACTIONS(5160), - [anon_sym_c_ushort] = ACTIONS(5160), - [anon_sym_c_int] = ACTIONS(5160), - [anon_sym_c_uint] = ACTIONS(5160), - [anon_sym_c_long] = ACTIONS(5160), - [anon_sym_c_ulong] = ACTIONS(5160), - [anon_sym_c_longlong] = ACTIONS(5160), - [anon_sym_c_ulonglong] = ACTIONS(5160), - [anon_sym_c_float] = ACTIONS(5160), - [anon_sym_c_double] = ACTIONS(5160), - [anon_sym_c_longdouble] = ACTIONS(5160), - [anon_sym_return] = ACTIONS(5160), - [anon_sym_yield] = ACTIONS(5160), - [anon_sym_break] = ACTIONS(5160), - [anon_sym_continue] = ACTIONS(5160), - [anon_sym_defer] = ACTIONS(5160), - [anon_sym_errdefer] = ACTIONS(5160), - [anon_sym_if] = ACTIONS(5160), - [anon_sym_else] = ACTIONS(5160), - [anon_sym_while] = ACTIONS(5160), - [anon_sym_expand] = ACTIONS(5160), - [anon_sym_for] = ACTIONS(5160), - [anon_sym_match] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5158), - [anon_sym_TILDE] = ACTIONS(5158), - [anon_sym_try] = ACTIONS(5160), - [anon_sym_DOT] = ACTIONS(5158), - [anon_sym_true] = ACTIONS(5160), - [anon_sym_false] = ACTIONS(5160), - [anon_sym_null] = ACTIONS(5160), - [anon_sym_unreachable] = ACTIONS(5160), - [anon_sym_undefined] = ACTIONS(5160), - [sym_sink] = ACTIONS(5160), - [sym_integer] = ACTIONS(5160), - [sym_float] = ACTIONS(5158), - [anon_sym_DQUOTE] = ACTIONS(5158), - [sym_multiline_string] = ACTIONS(5158), - [sym_character] = ACTIONS(5158), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5158), - }, - [STATE(2042)] = { - [ts_builtin_sym_end] = ACTIONS(5162), - [sym_identifier] = ACTIONS(5164), - [anon_sym_import] = ACTIONS(5164), - [anon_sym_test] = ACTIONS(5164), - [anon_sym_hide] = ACTIONS(5164), - [anon_sym_func] = ACTIONS(5164), - [anon_sym_BANG] = ACTIONS(5162), - [anon_sym_struct] = ACTIONS(5164), - [anon_sym_LPAREN] = ACTIONS(5162), - [anon_sym_RPAREN] = ACTIONS(5162), - [anon_sym_LBRACE] = ACTIONS(5162), - [anon_sym_RBRACE] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_DOLLAR] = ACTIONS(5162), - [anon_sym_LBRACK] = ACTIONS(5162), - [anon_sym_void] = ACTIONS(5164), - [anon_sym_noreturn] = ACTIONS(5164), - [anon_sym_type] = ACTIONS(5164), - [anon_sym_anyopaque] = ACTIONS(5164), - [anon_sym_bool] = ACTIONS(5164), - [anon_sym_int] = ACTIONS(5164), - [anon_sym_uint] = ACTIONS(5164), - [anon_sym_float] = ACTIONS(5164), - [anon_sym_range] = ACTIONS(5164), - [anon_sym_i8] = ACTIONS(5164), - [anon_sym_i16] = ACTIONS(5164), - [anon_sym_i32] = ACTIONS(5164), - [anon_sym_i64] = ACTIONS(5164), - [anon_sym_u8] = ACTIONS(5164), - [anon_sym_u16] = ACTIONS(5164), - [anon_sym_u32] = ACTIONS(5164), - [anon_sym_u64] = ACTIONS(5164), - [anon_sym_isize] = ACTIONS(5164), - [anon_sym_usize] = ACTIONS(5164), - [anon_sym_f32] = ACTIONS(5164), - [anon_sym_f64] = ACTIONS(5164), - [anon_sym_c_char] = ACTIONS(5164), - [anon_sym_c_schar] = ACTIONS(5164), - [anon_sym_c_uchar] = ACTIONS(5164), - [anon_sym_c_short] = ACTIONS(5164), - [anon_sym_c_ushort] = ACTIONS(5164), - [anon_sym_c_int] = ACTIONS(5164), - [anon_sym_c_uint] = ACTIONS(5164), - [anon_sym_c_long] = ACTIONS(5164), - [anon_sym_c_ulong] = ACTIONS(5164), - [anon_sym_c_longlong] = ACTIONS(5164), - [anon_sym_c_ulonglong] = ACTIONS(5164), - [anon_sym_c_float] = ACTIONS(5164), - [anon_sym_c_double] = ACTIONS(5164), - [anon_sym_c_longdouble] = ACTIONS(5164), - [anon_sym_return] = ACTIONS(5164), - [anon_sym_yield] = ACTIONS(5164), - [anon_sym_break] = ACTIONS(5164), - [anon_sym_continue] = ACTIONS(5164), - [anon_sym_defer] = ACTIONS(5164), - [anon_sym_errdefer] = ACTIONS(5164), - [anon_sym_if] = ACTIONS(5164), - [anon_sym_else] = ACTIONS(5164), - [anon_sym_while] = ACTIONS(5164), - [anon_sym_expand] = ACTIONS(5164), - [anon_sym_for] = ACTIONS(5164), - [anon_sym_match] = ACTIONS(5164), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_TILDE] = ACTIONS(5162), - [anon_sym_try] = ACTIONS(5164), - [anon_sym_DOT] = ACTIONS(5162), - [anon_sym_true] = ACTIONS(5164), - [anon_sym_false] = ACTIONS(5164), - [anon_sym_null] = ACTIONS(5164), - [anon_sym_unreachable] = ACTIONS(5164), - [anon_sym_undefined] = ACTIONS(5164), - [sym_sink] = ACTIONS(5164), - [sym_integer] = ACTIONS(5164), - [sym_float] = ACTIONS(5162), - [anon_sym_DQUOTE] = ACTIONS(5162), - [sym_multiline_string] = ACTIONS(5162), - [sym_character] = ACTIONS(5162), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5162), - }, - [STATE(2043)] = { - [ts_builtin_sym_end] = ACTIONS(5166), - [sym_identifier] = ACTIONS(5168), - [anon_sym_import] = ACTIONS(5168), - [anon_sym_test] = ACTIONS(5168), - [anon_sym_hide] = ACTIONS(5168), - [anon_sym_func] = ACTIONS(5168), - [anon_sym_BANG] = ACTIONS(5166), - [anon_sym_struct] = ACTIONS(5168), - [anon_sym_LPAREN] = ACTIONS(5166), - [anon_sym_RPAREN] = ACTIONS(5166), - [anon_sym_LBRACE] = ACTIONS(5166), - [anon_sym_RBRACE] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_DOLLAR] = ACTIONS(5166), - [anon_sym_LBRACK] = ACTIONS(5166), - [anon_sym_void] = ACTIONS(5168), - [anon_sym_noreturn] = ACTIONS(5168), - [anon_sym_type] = ACTIONS(5168), - [anon_sym_anyopaque] = ACTIONS(5168), - [anon_sym_bool] = ACTIONS(5168), - [anon_sym_int] = ACTIONS(5168), - [anon_sym_uint] = ACTIONS(5168), - [anon_sym_float] = ACTIONS(5168), - [anon_sym_range] = ACTIONS(5168), - [anon_sym_i8] = ACTIONS(5168), - [anon_sym_i16] = ACTIONS(5168), - [anon_sym_i32] = ACTIONS(5168), - [anon_sym_i64] = ACTIONS(5168), - [anon_sym_u8] = ACTIONS(5168), - [anon_sym_u16] = ACTIONS(5168), - [anon_sym_u32] = ACTIONS(5168), - [anon_sym_u64] = ACTIONS(5168), - [anon_sym_isize] = ACTIONS(5168), - [anon_sym_usize] = ACTIONS(5168), - [anon_sym_f32] = ACTIONS(5168), - [anon_sym_f64] = ACTIONS(5168), - [anon_sym_c_char] = ACTIONS(5168), - [anon_sym_c_schar] = ACTIONS(5168), - [anon_sym_c_uchar] = ACTIONS(5168), - [anon_sym_c_short] = ACTIONS(5168), - [anon_sym_c_ushort] = ACTIONS(5168), - [anon_sym_c_int] = ACTIONS(5168), - [anon_sym_c_uint] = ACTIONS(5168), - [anon_sym_c_long] = ACTIONS(5168), - [anon_sym_c_ulong] = ACTIONS(5168), - [anon_sym_c_longlong] = ACTIONS(5168), - [anon_sym_c_ulonglong] = ACTIONS(5168), - [anon_sym_c_float] = ACTIONS(5168), - [anon_sym_c_double] = ACTIONS(5168), - [anon_sym_c_longdouble] = ACTIONS(5168), - [anon_sym_return] = ACTIONS(5168), - [anon_sym_yield] = ACTIONS(5168), - [anon_sym_break] = ACTIONS(5168), - [anon_sym_continue] = ACTIONS(5168), - [anon_sym_defer] = ACTIONS(5168), - [anon_sym_errdefer] = ACTIONS(5168), - [anon_sym_if] = ACTIONS(5168), - [anon_sym_else] = ACTIONS(5168), - [anon_sym_while] = ACTIONS(5168), - [anon_sym_expand] = ACTIONS(5168), - [anon_sym_for] = ACTIONS(5168), - [anon_sym_match] = ACTIONS(5168), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_TILDE] = ACTIONS(5166), - [anon_sym_try] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5166), - [anon_sym_true] = ACTIONS(5168), - [anon_sym_false] = ACTIONS(5168), - [anon_sym_null] = ACTIONS(5168), - [anon_sym_unreachable] = ACTIONS(5168), - [anon_sym_undefined] = ACTIONS(5168), - [sym_sink] = ACTIONS(5168), - [sym_integer] = ACTIONS(5168), - [sym_float] = ACTIONS(5166), - [anon_sym_DQUOTE] = ACTIONS(5166), - [sym_multiline_string] = ACTIONS(5166), - [sym_character] = ACTIONS(5166), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5166), - }, - [STATE(2044)] = { - [ts_builtin_sym_end] = ACTIONS(5170), - [sym_identifier] = ACTIONS(5172), - [anon_sym_import] = ACTIONS(5172), - [anon_sym_test] = ACTIONS(5172), - [anon_sym_hide] = ACTIONS(5172), - [anon_sym_func] = ACTIONS(5172), - [anon_sym_BANG] = ACTIONS(5170), - [anon_sym_struct] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5170), - [anon_sym_RPAREN] = ACTIONS(5170), - [anon_sym_LBRACE] = ACTIONS(5170), - [anon_sym_RBRACE] = ACTIONS(5170), - [anon_sym_DASH] = ACTIONS(5170), - [anon_sym_DOLLAR] = ACTIONS(5170), - [anon_sym_LBRACK] = ACTIONS(5170), - [anon_sym_void] = ACTIONS(5172), - [anon_sym_noreturn] = ACTIONS(5172), - [anon_sym_type] = ACTIONS(5172), - [anon_sym_anyopaque] = ACTIONS(5172), - [anon_sym_bool] = ACTIONS(5172), - [anon_sym_int] = ACTIONS(5172), - [anon_sym_uint] = ACTIONS(5172), - [anon_sym_float] = ACTIONS(5172), - [anon_sym_range] = ACTIONS(5172), - [anon_sym_i8] = ACTIONS(5172), - [anon_sym_i16] = ACTIONS(5172), - [anon_sym_i32] = ACTIONS(5172), - [anon_sym_i64] = ACTIONS(5172), - [anon_sym_u8] = ACTIONS(5172), - [anon_sym_u16] = ACTIONS(5172), - [anon_sym_u32] = ACTIONS(5172), - [anon_sym_u64] = ACTIONS(5172), - [anon_sym_isize] = ACTIONS(5172), - [anon_sym_usize] = ACTIONS(5172), - [anon_sym_f32] = ACTIONS(5172), - [anon_sym_f64] = ACTIONS(5172), - [anon_sym_c_char] = ACTIONS(5172), - [anon_sym_c_schar] = ACTIONS(5172), - [anon_sym_c_uchar] = ACTIONS(5172), - [anon_sym_c_short] = ACTIONS(5172), - [anon_sym_c_ushort] = ACTIONS(5172), - [anon_sym_c_int] = ACTIONS(5172), - [anon_sym_c_uint] = ACTIONS(5172), - [anon_sym_c_long] = ACTIONS(5172), - [anon_sym_c_ulong] = ACTIONS(5172), - [anon_sym_c_longlong] = ACTIONS(5172), - [anon_sym_c_ulonglong] = ACTIONS(5172), - [anon_sym_c_float] = ACTIONS(5172), - [anon_sym_c_double] = ACTIONS(5172), - [anon_sym_c_longdouble] = ACTIONS(5172), - [anon_sym_return] = ACTIONS(5172), - [anon_sym_yield] = ACTIONS(5172), - [anon_sym_break] = ACTIONS(5172), - [anon_sym_continue] = ACTIONS(5172), - [anon_sym_defer] = ACTIONS(5172), - [anon_sym_errdefer] = ACTIONS(5172), - [anon_sym_if] = ACTIONS(5172), - [anon_sym_else] = ACTIONS(5172), - [anon_sym_while] = ACTIONS(5172), - [anon_sym_expand] = ACTIONS(5172), - [anon_sym_for] = ACTIONS(5172), - [anon_sym_match] = ACTIONS(5172), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_TILDE] = ACTIONS(5170), - [anon_sym_try] = ACTIONS(5172), - [anon_sym_DOT] = ACTIONS(5170), - [anon_sym_true] = ACTIONS(5172), - [anon_sym_false] = ACTIONS(5172), - [anon_sym_null] = ACTIONS(5172), - [anon_sym_unreachable] = ACTIONS(5172), - [anon_sym_undefined] = ACTIONS(5172), - [sym_sink] = ACTIONS(5172), - [sym_integer] = ACTIONS(5172), - [sym_float] = ACTIONS(5170), - [anon_sym_DQUOTE] = ACTIONS(5170), - [sym_multiline_string] = ACTIONS(5170), - [sym_character] = ACTIONS(5170), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5170), - }, - [STATE(2045)] = { - [ts_builtin_sym_end] = ACTIONS(5174), - [sym_identifier] = ACTIONS(5176), - [anon_sym_import] = ACTIONS(5176), - [anon_sym_test] = ACTIONS(5176), - [anon_sym_hide] = ACTIONS(5176), - [anon_sym_func] = ACTIONS(5176), - [anon_sym_BANG] = ACTIONS(5174), - [anon_sym_struct] = ACTIONS(5176), - [anon_sym_LPAREN] = ACTIONS(5174), - [anon_sym_RPAREN] = ACTIONS(5174), - [anon_sym_LBRACE] = ACTIONS(5174), - [anon_sym_RBRACE] = ACTIONS(5174), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_DOLLAR] = ACTIONS(5174), - [anon_sym_LBRACK] = ACTIONS(5174), - [anon_sym_void] = ACTIONS(5176), - [anon_sym_noreturn] = ACTIONS(5176), - [anon_sym_type] = ACTIONS(5176), - [anon_sym_anyopaque] = ACTIONS(5176), - [anon_sym_bool] = ACTIONS(5176), - [anon_sym_int] = ACTIONS(5176), - [anon_sym_uint] = ACTIONS(5176), - [anon_sym_float] = ACTIONS(5176), - [anon_sym_range] = ACTIONS(5176), - [anon_sym_i8] = ACTIONS(5176), - [anon_sym_i16] = ACTIONS(5176), - [anon_sym_i32] = ACTIONS(5176), - [anon_sym_i64] = ACTIONS(5176), - [anon_sym_u8] = ACTIONS(5176), - [anon_sym_u16] = ACTIONS(5176), - [anon_sym_u32] = ACTIONS(5176), - [anon_sym_u64] = ACTIONS(5176), - [anon_sym_isize] = ACTIONS(5176), - [anon_sym_usize] = ACTIONS(5176), - [anon_sym_f32] = ACTIONS(5176), - [anon_sym_f64] = ACTIONS(5176), - [anon_sym_c_char] = ACTIONS(5176), - [anon_sym_c_schar] = ACTIONS(5176), - [anon_sym_c_uchar] = ACTIONS(5176), - [anon_sym_c_short] = ACTIONS(5176), - [anon_sym_c_ushort] = ACTIONS(5176), - [anon_sym_c_int] = ACTIONS(5176), - [anon_sym_c_uint] = ACTIONS(5176), - [anon_sym_c_long] = ACTIONS(5176), - [anon_sym_c_ulong] = ACTIONS(5176), - [anon_sym_c_longlong] = ACTIONS(5176), - [anon_sym_c_ulonglong] = ACTIONS(5176), - [anon_sym_c_float] = ACTIONS(5176), - [anon_sym_c_double] = ACTIONS(5176), - [anon_sym_c_longdouble] = ACTIONS(5176), - [anon_sym_return] = ACTIONS(5176), - [anon_sym_yield] = ACTIONS(5176), - [anon_sym_break] = ACTIONS(5176), - [anon_sym_continue] = ACTIONS(5176), - [anon_sym_defer] = ACTIONS(5176), - [anon_sym_errdefer] = ACTIONS(5176), - [anon_sym_if] = ACTIONS(5176), - [anon_sym_else] = ACTIONS(5176), - [anon_sym_while] = ACTIONS(5176), - [anon_sym_expand] = ACTIONS(5176), - [anon_sym_for] = ACTIONS(5176), - [anon_sym_match] = ACTIONS(5176), - [anon_sym_AMP] = ACTIONS(5174), - [anon_sym_TILDE] = ACTIONS(5174), - [anon_sym_try] = ACTIONS(5176), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_true] = ACTIONS(5176), - [anon_sym_false] = ACTIONS(5176), - [anon_sym_null] = ACTIONS(5176), - [anon_sym_unreachable] = ACTIONS(5176), - [anon_sym_undefined] = ACTIONS(5176), - [sym_sink] = ACTIONS(5176), - [sym_integer] = ACTIONS(5176), - [sym_float] = ACTIONS(5174), - [anon_sym_DQUOTE] = ACTIONS(5174), - [sym_multiline_string] = ACTIONS(5174), - [sym_character] = ACTIONS(5174), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5174), - }, - [STATE(2046)] = { - [ts_builtin_sym_end] = ACTIONS(5178), - [sym_identifier] = ACTIONS(5180), - [anon_sym_import] = ACTIONS(5180), - [anon_sym_test] = ACTIONS(5180), - [anon_sym_hide] = ACTIONS(5180), - [anon_sym_func] = ACTIONS(5180), - [anon_sym_BANG] = ACTIONS(5178), - [anon_sym_struct] = ACTIONS(5180), - [anon_sym_LPAREN] = ACTIONS(5178), - [anon_sym_RPAREN] = ACTIONS(5178), - [anon_sym_LBRACE] = ACTIONS(5178), - [anon_sym_RBRACE] = ACTIONS(5178), - [anon_sym_DASH] = ACTIONS(5178), - [anon_sym_DOLLAR] = ACTIONS(5178), - [anon_sym_LBRACK] = ACTIONS(5178), - [anon_sym_void] = ACTIONS(5180), - [anon_sym_noreturn] = ACTIONS(5180), - [anon_sym_type] = ACTIONS(5180), - [anon_sym_anyopaque] = ACTIONS(5180), - [anon_sym_bool] = ACTIONS(5180), - [anon_sym_int] = ACTIONS(5180), - [anon_sym_uint] = ACTIONS(5180), - [anon_sym_float] = ACTIONS(5180), - [anon_sym_range] = ACTIONS(5180), - [anon_sym_i8] = ACTIONS(5180), - [anon_sym_i16] = ACTIONS(5180), - [anon_sym_i32] = ACTIONS(5180), - [anon_sym_i64] = ACTIONS(5180), - [anon_sym_u8] = ACTIONS(5180), - [anon_sym_u16] = ACTIONS(5180), - [anon_sym_u32] = ACTIONS(5180), - [anon_sym_u64] = ACTIONS(5180), - [anon_sym_isize] = ACTIONS(5180), - [anon_sym_usize] = ACTIONS(5180), - [anon_sym_f32] = ACTIONS(5180), - [anon_sym_f64] = ACTIONS(5180), - [anon_sym_c_char] = ACTIONS(5180), - [anon_sym_c_schar] = ACTIONS(5180), - [anon_sym_c_uchar] = ACTIONS(5180), - [anon_sym_c_short] = ACTIONS(5180), - [anon_sym_c_ushort] = ACTIONS(5180), - [anon_sym_c_int] = ACTIONS(5180), - [anon_sym_c_uint] = ACTIONS(5180), - [anon_sym_c_long] = ACTIONS(5180), - [anon_sym_c_ulong] = ACTIONS(5180), - [anon_sym_c_longlong] = ACTIONS(5180), - [anon_sym_c_ulonglong] = ACTIONS(5180), - [anon_sym_c_float] = ACTIONS(5180), - [anon_sym_c_double] = ACTIONS(5180), - [anon_sym_c_longdouble] = ACTIONS(5180), - [anon_sym_return] = ACTIONS(5180), - [anon_sym_yield] = ACTIONS(5180), - [anon_sym_break] = ACTIONS(5180), - [anon_sym_continue] = ACTIONS(5180), - [anon_sym_defer] = ACTIONS(5180), - [anon_sym_errdefer] = ACTIONS(5180), - [anon_sym_if] = ACTIONS(5180), - [anon_sym_else] = ACTIONS(5180), - [anon_sym_while] = ACTIONS(5180), - [anon_sym_expand] = ACTIONS(5180), - [anon_sym_for] = ACTIONS(5180), - [anon_sym_match] = ACTIONS(5180), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_TILDE] = ACTIONS(5178), - [anon_sym_try] = ACTIONS(5180), - [anon_sym_DOT] = ACTIONS(5178), - [anon_sym_true] = ACTIONS(5180), - [anon_sym_false] = ACTIONS(5180), - [anon_sym_null] = ACTIONS(5180), - [anon_sym_unreachable] = ACTIONS(5180), - [anon_sym_undefined] = ACTIONS(5180), - [sym_sink] = ACTIONS(5180), - [sym_integer] = ACTIONS(5180), - [sym_float] = ACTIONS(5178), - [anon_sym_DQUOTE] = ACTIONS(5178), - [sym_multiline_string] = ACTIONS(5178), - [sym_character] = ACTIONS(5178), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5178), - }, - [STATE(2047)] = { - [ts_builtin_sym_end] = ACTIONS(5182), - [sym_identifier] = ACTIONS(5184), - [anon_sym_import] = ACTIONS(5184), - [anon_sym_test] = ACTIONS(5184), - [anon_sym_hide] = ACTIONS(5184), - [anon_sym_func] = ACTIONS(5184), - [anon_sym_BANG] = ACTIONS(5182), - [anon_sym_struct] = ACTIONS(5184), - [anon_sym_LPAREN] = ACTIONS(5182), - [anon_sym_RPAREN] = ACTIONS(5182), - [anon_sym_LBRACE] = ACTIONS(5182), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_DASH] = ACTIONS(5182), - [anon_sym_DOLLAR] = ACTIONS(5182), - [anon_sym_LBRACK] = ACTIONS(5182), - [anon_sym_void] = ACTIONS(5184), - [anon_sym_noreturn] = ACTIONS(5184), - [anon_sym_type] = ACTIONS(5184), - [anon_sym_anyopaque] = ACTIONS(5184), - [anon_sym_bool] = ACTIONS(5184), - [anon_sym_int] = ACTIONS(5184), - [anon_sym_uint] = ACTIONS(5184), - [anon_sym_float] = ACTIONS(5184), - [anon_sym_range] = ACTIONS(5184), - [anon_sym_i8] = ACTIONS(5184), - [anon_sym_i16] = ACTIONS(5184), - [anon_sym_i32] = ACTIONS(5184), - [anon_sym_i64] = ACTIONS(5184), - [anon_sym_u8] = ACTIONS(5184), - [anon_sym_u16] = ACTIONS(5184), - [anon_sym_u32] = ACTIONS(5184), - [anon_sym_u64] = ACTIONS(5184), - [anon_sym_isize] = ACTIONS(5184), - [anon_sym_usize] = ACTIONS(5184), - [anon_sym_f32] = ACTIONS(5184), - [anon_sym_f64] = ACTIONS(5184), - [anon_sym_c_char] = ACTIONS(5184), - [anon_sym_c_schar] = ACTIONS(5184), - [anon_sym_c_uchar] = ACTIONS(5184), - [anon_sym_c_short] = ACTIONS(5184), - [anon_sym_c_ushort] = ACTIONS(5184), - [anon_sym_c_int] = ACTIONS(5184), - [anon_sym_c_uint] = ACTIONS(5184), - [anon_sym_c_long] = ACTIONS(5184), - [anon_sym_c_ulong] = ACTIONS(5184), - [anon_sym_c_longlong] = ACTIONS(5184), - [anon_sym_c_ulonglong] = ACTIONS(5184), - [anon_sym_c_float] = ACTIONS(5184), - [anon_sym_c_double] = ACTIONS(5184), - [anon_sym_c_longdouble] = ACTIONS(5184), - [anon_sym_return] = ACTIONS(5184), - [anon_sym_yield] = ACTIONS(5184), - [anon_sym_break] = ACTIONS(5184), - [anon_sym_continue] = ACTIONS(5184), - [anon_sym_defer] = ACTIONS(5184), - [anon_sym_errdefer] = ACTIONS(5184), - [anon_sym_if] = ACTIONS(5184), - [anon_sym_else] = ACTIONS(5184), - [anon_sym_while] = ACTIONS(5184), - [anon_sym_expand] = ACTIONS(5184), - [anon_sym_for] = ACTIONS(5184), - [anon_sym_match] = ACTIONS(5184), - [anon_sym_AMP] = ACTIONS(5182), - [anon_sym_TILDE] = ACTIONS(5182), - [anon_sym_try] = ACTIONS(5184), - [anon_sym_DOT] = ACTIONS(5182), - [anon_sym_true] = ACTIONS(5184), - [anon_sym_false] = ACTIONS(5184), - [anon_sym_null] = ACTIONS(5184), - [anon_sym_unreachable] = ACTIONS(5184), - [anon_sym_undefined] = ACTIONS(5184), - [sym_sink] = ACTIONS(5184), - [sym_integer] = ACTIONS(5184), - [sym_float] = ACTIONS(5182), - [anon_sym_DQUOTE] = ACTIONS(5182), - [sym_multiline_string] = ACTIONS(5182), - [sym_character] = ACTIONS(5182), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5182), - }, - [STATE(2048)] = { - [ts_builtin_sym_end] = ACTIONS(5186), - [sym_identifier] = ACTIONS(5188), - [anon_sym_import] = ACTIONS(5188), - [anon_sym_test] = ACTIONS(5188), - [anon_sym_hide] = ACTIONS(5188), - [anon_sym_func] = ACTIONS(5188), - [anon_sym_BANG] = ACTIONS(5186), - [anon_sym_struct] = ACTIONS(5188), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5186), - [anon_sym_RBRACE] = ACTIONS(5186), - [anon_sym_DASH] = ACTIONS(5186), - [anon_sym_DOLLAR] = ACTIONS(5186), - [anon_sym_LBRACK] = ACTIONS(5186), - [anon_sym_void] = ACTIONS(5188), - [anon_sym_noreturn] = ACTIONS(5188), - [anon_sym_type] = ACTIONS(5188), - [anon_sym_anyopaque] = ACTIONS(5188), - [anon_sym_bool] = ACTIONS(5188), - [anon_sym_int] = ACTIONS(5188), - [anon_sym_uint] = ACTIONS(5188), - [anon_sym_float] = ACTIONS(5188), - [anon_sym_range] = ACTIONS(5188), - [anon_sym_i8] = ACTIONS(5188), - [anon_sym_i16] = ACTIONS(5188), - [anon_sym_i32] = ACTIONS(5188), - [anon_sym_i64] = ACTIONS(5188), - [anon_sym_u8] = ACTIONS(5188), - [anon_sym_u16] = ACTIONS(5188), - [anon_sym_u32] = ACTIONS(5188), - [anon_sym_u64] = ACTIONS(5188), - [anon_sym_isize] = ACTIONS(5188), - [anon_sym_usize] = ACTIONS(5188), - [anon_sym_f32] = ACTIONS(5188), - [anon_sym_f64] = ACTIONS(5188), - [anon_sym_c_char] = ACTIONS(5188), - [anon_sym_c_schar] = ACTIONS(5188), - [anon_sym_c_uchar] = ACTIONS(5188), - [anon_sym_c_short] = ACTIONS(5188), - [anon_sym_c_ushort] = ACTIONS(5188), - [anon_sym_c_int] = ACTIONS(5188), - [anon_sym_c_uint] = ACTIONS(5188), - [anon_sym_c_long] = ACTIONS(5188), - [anon_sym_c_ulong] = ACTIONS(5188), - [anon_sym_c_longlong] = ACTIONS(5188), - [anon_sym_c_ulonglong] = ACTIONS(5188), - [anon_sym_c_float] = ACTIONS(5188), - [anon_sym_c_double] = ACTIONS(5188), - [anon_sym_c_longdouble] = ACTIONS(5188), - [anon_sym_return] = ACTIONS(5188), - [anon_sym_yield] = ACTIONS(5188), - [anon_sym_break] = ACTIONS(5188), - [anon_sym_continue] = ACTIONS(5188), - [anon_sym_defer] = ACTIONS(5188), - [anon_sym_errdefer] = ACTIONS(5188), - [anon_sym_if] = ACTIONS(5188), - [anon_sym_else] = ACTIONS(5188), - [anon_sym_while] = ACTIONS(5188), - [anon_sym_expand] = ACTIONS(5188), - [anon_sym_for] = ACTIONS(5188), - [anon_sym_match] = ACTIONS(5188), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym_TILDE] = ACTIONS(5186), - [anon_sym_try] = ACTIONS(5188), - [anon_sym_DOT] = ACTIONS(5186), - [anon_sym_true] = ACTIONS(5188), - [anon_sym_false] = ACTIONS(5188), - [anon_sym_null] = ACTIONS(5188), - [anon_sym_unreachable] = ACTIONS(5188), - [anon_sym_undefined] = ACTIONS(5188), - [sym_sink] = ACTIONS(5188), - [sym_integer] = ACTIONS(5188), - [sym_float] = ACTIONS(5186), - [anon_sym_DQUOTE] = ACTIONS(5186), - [sym_multiline_string] = ACTIONS(5186), - [sym_character] = ACTIONS(5186), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5186), - }, - [STATE(2049)] = { - [ts_builtin_sym_end] = ACTIONS(5190), - [sym_identifier] = ACTIONS(5192), - [anon_sym_import] = ACTIONS(5192), - [anon_sym_test] = ACTIONS(5192), - [anon_sym_hide] = ACTIONS(5192), - [anon_sym_func] = ACTIONS(5192), - [anon_sym_BANG] = ACTIONS(5190), - [anon_sym_struct] = ACTIONS(5192), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(5190), - [anon_sym_LBRACE] = ACTIONS(5190), - [anon_sym_RBRACE] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_DOLLAR] = ACTIONS(5190), - [anon_sym_LBRACK] = ACTIONS(5190), - [anon_sym_void] = ACTIONS(5192), - [anon_sym_noreturn] = ACTIONS(5192), - [anon_sym_type] = ACTIONS(5192), - [anon_sym_anyopaque] = ACTIONS(5192), - [anon_sym_bool] = ACTIONS(5192), - [anon_sym_int] = ACTIONS(5192), - [anon_sym_uint] = ACTIONS(5192), - [anon_sym_float] = ACTIONS(5192), - [anon_sym_range] = ACTIONS(5192), - [anon_sym_i8] = ACTIONS(5192), - [anon_sym_i16] = ACTIONS(5192), - [anon_sym_i32] = ACTIONS(5192), - [anon_sym_i64] = ACTIONS(5192), - [anon_sym_u8] = ACTIONS(5192), - [anon_sym_u16] = ACTIONS(5192), - [anon_sym_u32] = ACTIONS(5192), - [anon_sym_u64] = ACTIONS(5192), - [anon_sym_isize] = ACTIONS(5192), - [anon_sym_usize] = ACTIONS(5192), - [anon_sym_f32] = ACTIONS(5192), - [anon_sym_f64] = ACTIONS(5192), - [anon_sym_c_char] = ACTIONS(5192), - [anon_sym_c_schar] = ACTIONS(5192), - [anon_sym_c_uchar] = ACTIONS(5192), - [anon_sym_c_short] = ACTIONS(5192), - [anon_sym_c_ushort] = ACTIONS(5192), - [anon_sym_c_int] = ACTIONS(5192), - [anon_sym_c_uint] = ACTIONS(5192), - [anon_sym_c_long] = ACTIONS(5192), - [anon_sym_c_ulong] = ACTIONS(5192), - [anon_sym_c_longlong] = ACTIONS(5192), - [anon_sym_c_ulonglong] = ACTIONS(5192), - [anon_sym_c_float] = ACTIONS(5192), - [anon_sym_c_double] = ACTIONS(5192), - [anon_sym_c_longdouble] = ACTIONS(5192), - [anon_sym_return] = ACTIONS(5192), - [anon_sym_yield] = ACTIONS(5192), - [anon_sym_break] = ACTIONS(5192), - [anon_sym_continue] = ACTIONS(5192), - [anon_sym_defer] = ACTIONS(5192), - [anon_sym_errdefer] = ACTIONS(5192), - [anon_sym_if] = ACTIONS(5192), - [anon_sym_else] = ACTIONS(5192), - [anon_sym_while] = ACTIONS(5192), - [anon_sym_expand] = ACTIONS(5192), - [anon_sym_for] = ACTIONS(5192), - [anon_sym_match] = ACTIONS(5192), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_TILDE] = ACTIONS(5190), - [anon_sym_try] = ACTIONS(5192), - [anon_sym_DOT] = ACTIONS(5190), - [anon_sym_true] = ACTIONS(5192), - [anon_sym_false] = ACTIONS(5192), - [anon_sym_null] = ACTIONS(5192), - [anon_sym_unreachable] = ACTIONS(5192), - [anon_sym_undefined] = ACTIONS(5192), - [sym_sink] = ACTIONS(5192), - [sym_integer] = ACTIONS(5192), - [sym_float] = ACTIONS(5190), - [anon_sym_DQUOTE] = ACTIONS(5190), - [sym_multiline_string] = ACTIONS(5190), - [sym_character] = ACTIONS(5190), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5190), - }, - [STATE(2050)] = { - [ts_builtin_sym_end] = ACTIONS(5194), - [sym_identifier] = ACTIONS(5196), - [anon_sym_import] = ACTIONS(5196), - [anon_sym_test] = ACTIONS(5196), - [anon_sym_hide] = ACTIONS(5196), - [anon_sym_func] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(5194), - [anon_sym_struct] = ACTIONS(5196), - [anon_sym_LPAREN] = ACTIONS(5194), - [anon_sym_RPAREN] = ACTIONS(5194), - [anon_sym_LBRACE] = ACTIONS(5194), - [anon_sym_RBRACE] = ACTIONS(5194), - [anon_sym_DASH] = ACTIONS(5194), - [anon_sym_DOLLAR] = ACTIONS(5194), - [anon_sym_LBRACK] = ACTIONS(5194), - [anon_sym_void] = ACTIONS(5196), - [anon_sym_noreturn] = ACTIONS(5196), - [anon_sym_type] = ACTIONS(5196), - [anon_sym_anyopaque] = ACTIONS(5196), - [anon_sym_bool] = ACTIONS(5196), - [anon_sym_int] = ACTIONS(5196), - [anon_sym_uint] = ACTIONS(5196), - [anon_sym_float] = ACTIONS(5196), - [anon_sym_range] = ACTIONS(5196), - [anon_sym_i8] = ACTIONS(5196), - [anon_sym_i16] = ACTIONS(5196), - [anon_sym_i32] = ACTIONS(5196), - [anon_sym_i64] = ACTIONS(5196), - [anon_sym_u8] = ACTIONS(5196), - [anon_sym_u16] = ACTIONS(5196), - [anon_sym_u32] = ACTIONS(5196), - [anon_sym_u64] = ACTIONS(5196), - [anon_sym_isize] = ACTIONS(5196), - [anon_sym_usize] = ACTIONS(5196), - [anon_sym_f32] = ACTIONS(5196), - [anon_sym_f64] = ACTIONS(5196), - [anon_sym_c_char] = ACTIONS(5196), - [anon_sym_c_schar] = ACTIONS(5196), - [anon_sym_c_uchar] = ACTIONS(5196), - [anon_sym_c_short] = ACTIONS(5196), - [anon_sym_c_ushort] = ACTIONS(5196), - [anon_sym_c_int] = ACTIONS(5196), - [anon_sym_c_uint] = ACTIONS(5196), - [anon_sym_c_long] = ACTIONS(5196), - [anon_sym_c_ulong] = ACTIONS(5196), - [anon_sym_c_longlong] = ACTIONS(5196), - [anon_sym_c_ulonglong] = ACTIONS(5196), - [anon_sym_c_float] = ACTIONS(5196), - [anon_sym_c_double] = ACTIONS(5196), - [anon_sym_c_longdouble] = ACTIONS(5196), - [anon_sym_return] = ACTIONS(5196), - [anon_sym_yield] = ACTIONS(5196), - [anon_sym_break] = ACTIONS(5196), - [anon_sym_continue] = ACTIONS(5196), - [anon_sym_defer] = ACTIONS(5196), - [anon_sym_errdefer] = ACTIONS(5196), - [anon_sym_if] = ACTIONS(5196), - [anon_sym_else] = ACTIONS(5196), - [anon_sym_while] = ACTIONS(5196), - [anon_sym_expand] = ACTIONS(5196), - [anon_sym_for] = ACTIONS(5196), - [anon_sym_match] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5194), - [anon_sym_TILDE] = ACTIONS(5194), - [anon_sym_try] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5194), - [anon_sym_true] = ACTIONS(5196), - [anon_sym_false] = ACTIONS(5196), - [anon_sym_null] = ACTIONS(5196), - [anon_sym_unreachable] = ACTIONS(5196), - [anon_sym_undefined] = ACTIONS(5196), - [sym_sink] = ACTIONS(5196), - [sym_integer] = ACTIONS(5196), - [sym_float] = ACTIONS(5194), - [anon_sym_DQUOTE] = ACTIONS(5194), - [sym_multiline_string] = ACTIONS(5194), - [sym_character] = ACTIONS(5194), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5194), - }, - [STATE(2051)] = { - [ts_builtin_sym_end] = ACTIONS(5198), - [sym_identifier] = ACTIONS(5200), - [anon_sym_import] = ACTIONS(5200), - [anon_sym_test] = ACTIONS(5200), - [anon_sym_hide] = ACTIONS(5200), - [anon_sym_func] = ACTIONS(5200), - [anon_sym_BANG] = ACTIONS(5198), - [anon_sym_struct] = ACTIONS(5200), - [anon_sym_LPAREN] = ACTIONS(5198), - [anon_sym_RPAREN] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5198), - [anon_sym_RBRACE] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5198), - [anon_sym_DOLLAR] = ACTIONS(5198), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_void] = ACTIONS(5200), - [anon_sym_noreturn] = ACTIONS(5200), - [anon_sym_type] = ACTIONS(5200), - [anon_sym_anyopaque] = ACTIONS(5200), - [anon_sym_bool] = ACTIONS(5200), - [anon_sym_int] = ACTIONS(5200), - [anon_sym_uint] = ACTIONS(5200), - [anon_sym_float] = ACTIONS(5200), - [anon_sym_range] = ACTIONS(5200), - [anon_sym_i8] = ACTIONS(5200), - [anon_sym_i16] = ACTIONS(5200), - [anon_sym_i32] = ACTIONS(5200), - [anon_sym_i64] = ACTIONS(5200), - [anon_sym_u8] = ACTIONS(5200), - [anon_sym_u16] = ACTIONS(5200), - [anon_sym_u32] = ACTIONS(5200), - [anon_sym_u64] = ACTIONS(5200), - [anon_sym_isize] = ACTIONS(5200), - [anon_sym_usize] = ACTIONS(5200), - [anon_sym_f32] = ACTIONS(5200), - [anon_sym_f64] = ACTIONS(5200), - [anon_sym_c_char] = ACTIONS(5200), - [anon_sym_c_schar] = ACTIONS(5200), - [anon_sym_c_uchar] = ACTIONS(5200), - [anon_sym_c_short] = ACTIONS(5200), - [anon_sym_c_ushort] = ACTIONS(5200), - [anon_sym_c_int] = ACTIONS(5200), - [anon_sym_c_uint] = ACTIONS(5200), - [anon_sym_c_long] = ACTIONS(5200), - [anon_sym_c_ulong] = ACTIONS(5200), - [anon_sym_c_longlong] = ACTIONS(5200), - [anon_sym_c_ulonglong] = ACTIONS(5200), - [anon_sym_c_float] = ACTIONS(5200), - [anon_sym_c_double] = ACTIONS(5200), - [anon_sym_c_longdouble] = ACTIONS(5200), - [anon_sym_return] = ACTIONS(5200), - [anon_sym_yield] = ACTIONS(5200), - [anon_sym_break] = ACTIONS(5200), - [anon_sym_continue] = ACTIONS(5200), - [anon_sym_defer] = ACTIONS(5200), - [anon_sym_errdefer] = ACTIONS(5200), - [anon_sym_if] = ACTIONS(5200), - [anon_sym_else] = ACTIONS(5200), - [anon_sym_while] = ACTIONS(5200), - [anon_sym_expand] = ACTIONS(5200), - [anon_sym_for] = ACTIONS(5200), - [anon_sym_match] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(5198), - [anon_sym_TILDE] = ACTIONS(5198), - [anon_sym_try] = ACTIONS(5200), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_true] = ACTIONS(5200), - [anon_sym_false] = ACTIONS(5200), - [anon_sym_null] = ACTIONS(5200), - [anon_sym_unreachable] = ACTIONS(5200), - [anon_sym_undefined] = ACTIONS(5200), - [sym_sink] = ACTIONS(5200), - [sym_integer] = ACTIONS(5200), - [sym_float] = ACTIONS(5198), - [anon_sym_DQUOTE] = ACTIONS(5198), - [sym_multiline_string] = ACTIONS(5198), - [sym_character] = ACTIONS(5198), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5198), - }, - [STATE(2052)] = { + [STATE(6619)] = { [ts_builtin_sym_end] = ACTIONS(5202), [sym_identifier] = ACTIONS(5204), [anon_sym_import] = ACTIONS(5204), @@ -225831,7 +759830,9160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5202), }, - [STATE(2053)] = { + [STATE(6620)] = { + [ts_builtin_sym_end] = ACTIONS(5278), + [sym_identifier] = ACTIONS(5280), + [anon_sym_import] = ACTIONS(5280), + [anon_sym_test] = ACTIONS(5280), + [anon_sym_hide] = ACTIONS(5280), + [anon_sym_func] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5278), + [anon_sym_struct] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [anon_sym_RBRACE] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_void] = ACTIONS(5280), + [anon_sym_noreturn] = ACTIONS(5280), + [anon_sym_type] = ACTIONS(5280), + [anon_sym_anyopaque] = ACTIONS(5280), + [anon_sym_bool] = ACTIONS(5280), + [anon_sym_int] = ACTIONS(5280), + [anon_sym_uint] = ACTIONS(5280), + [anon_sym_float] = ACTIONS(5280), + [anon_sym_range] = ACTIONS(5280), + [anon_sym_i8] = ACTIONS(5280), + [anon_sym_i16] = ACTIONS(5280), + [anon_sym_i32] = ACTIONS(5280), + [anon_sym_i64] = ACTIONS(5280), + [anon_sym_u8] = ACTIONS(5280), + [anon_sym_u16] = ACTIONS(5280), + [anon_sym_u32] = ACTIONS(5280), + [anon_sym_u64] = ACTIONS(5280), + [anon_sym_isize] = ACTIONS(5280), + [anon_sym_usize] = ACTIONS(5280), + [anon_sym_f32] = ACTIONS(5280), + [anon_sym_f64] = ACTIONS(5280), + [anon_sym_c_char] = ACTIONS(5280), + [anon_sym_c_schar] = ACTIONS(5280), + [anon_sym_c_uchar] = ACTIONS(5280), + [anon_sym_c_short] = ACTIONS(5280), + [anon_sym_c_ushort] = ACTIONS(5280), + [anon_sym_c_int] = ACTIONS(5280), + [anon_sym_c_uint] = ACTIONS(5280), + [anon_sym_c_long] = ACTIONS(5280), + [anon_sym_c_ulong] = ACTIONS(5280), + [anon_sym_c_longlong] = ACTIONS(5280), + [anon_sym_c_ulonglong] = ACTIONS(5280), + [anon_sym_c_float] = ACTIONS(5280), + [anon_sym_c_double] = ACTIONS(5280), + [anon_sym_c_longdouble] = ACTIONS(5280), + [anon_sym_return] = ACTIONS(5280), + [anon_sym_yield] = ACTIONS(5280), + [anon_sym_break] = ACTIONS(5280), + [anon_sym_continue] = ACTIONS(5280), + [anon_sym_defer] = ACTIONS(5280), + [anon_sym_errdefer] = ACTIONS(5280), + [anon_sym_if] = ACTIONS(5280), + [anon_sym_else] = ACTIONS(5280), + [anon_sym_while] = ACTIONS(5280), + [anon_sym_expand] = ACTIONS(5280), + [anon_sym_for] = ACTIONS(5280), + [anon_sym_match] = ACTIONS(5280), + [anon_sym_AMP] = ACTIONS(5278), + [anon_sym_TILDE] = ACTIONS(5278), + [anon_sym_try] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5278), + [anon_sym_true] = ACTIONS(5280), + [anon_sym_false] = ACTIONS(5280), + [anon_sym_null] = ACTIONS(5280), + [anon_sym_unreachable] = ACTIONS(5280), + [anon_sym_undefined] = ACTIONS(5280), + [sym_sink] = ACTIONS(5280), + [sym_integer] = ACTIONS(5280), + [sym_float] = ACTIONS(5278), + [anon_sym_DQUOTE] = ACTIONS(5278), + [sym_multiline_string] = ACTIONS(5278), + [sym_character] = ACTIONS(5278), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5278), + }, + [STATE(6621)] = { + [ts_builtin_sym_end] = ACTIONS(4588), + [sym_identifier] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4590), + [anon_sym_test] = ACTIONS(4590), + [anon_sym_hide] = ACTIONS(4590), + [anon_sym_func] = ACTIONS(4590), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_struct] = ACTIONS(4590), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_void] = ACTIONS(4590), + [anon_sym_noreturn] = ACTIONS(4590), + [anon_sym_type] = ACTIONS(4590), + [anon_sym_anyopaque] = ACTIONS(4590), + [anon_sym_bool] = ACTIONS(4590), + [anon_sym_int] = ACTIONS(4590), + [anon_sym_uint] = ACTIONS(4590), + [anon_sym_float] = ACTIONS(4590), + [anon_sym_range] = ACTIONS(4590), + [anon_sym_i8] = ACTIONS(4590), + [anon_sym_i16] = ACTIONS(4590), + [anon_sym_i32] = ACTIONS(4590), + [anon_sym_i64] = ACTIONS(4590), + [anon_sym_u8] = ACTIONS(4590), + [anon_sym_u16] = ACTIONS(4590), + [anon_sym_u32] = ACTIONS(4590), + [anon_sym_u64] = ACTIONS(4590), + [anon_sym_isize] = ACTIONS(4590), + [anon_sym_usize] = ACTIONS(4590), + [anon_sym_f32] = ACTIONS(4590), + [anon_sym_f64] = ACTIONS(4590), + [anon_sym_c_char] = ACTIONS(4590), + [anon_sym_c_schar] = ACTIONS(4590), + [anon_sym_c_uchar] = ACTIONS(4590), + [anon_sym_c_short] = ACTIONS(4590), + [anon_sym_c_ushort] = ACTIONS(4590), + [anon_sym_c_int] = ACTIONS(4590), + [anon_sym_c_uint] = ACTIONS(4590), + [anon_sym_c_long] = ACTIONS(4590), + [anon_sym_c_ulong] = ACTIONS(4590), + [anon_sym_c_longlong] = ACTIONS(4590), + [anon_sym_c_ulonglong] = ACTIONS(4590), + [anon_sym_c_float] = ACTIONS(4590), + [anon_sym_c_double] = ACTIONS(4590), + [anon_sym_c_longdouble] = ACTIONS(4590), + [anon_sym_return] = ACTIONS(4590), + [anon_sym_yield] = ACTIONS(4590), + [anon_sym_break] = ACTIONS(4590), + [anon_sym_continue] = ACTIONS(4590), + [anon_sym_defer] = ACTIONS(4590), + [anon_sym_errdefer] = ACTIONS(4590), + [anon_sym_if] = ACTIONS(4590), + [anon_sym_else] = ACTIONS(4590), + [anon_sym_while] = ACTIONS(4590), + [anon_sym_expand] = ACTIONS(4590), + [anon_sym_for] = ACTIONS(4590), + [anon_sym_match] = ACTIONS(4590), + [anon_sym_AMP] = ACTIONS(4588), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_try] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4588), + [anon_sym_true] = ACTIONS(4590), + [anon_sym_false] = ACTIONS(4590), + [anon_sym_null] = ACTIONS(4590), + [anon_sym_unreachable] = ACTIONS(4590), + [anon_sym_undefined] = ACTIONS(4590), + [sym_sink] = ACTIONS(4590), + [sym_integer] = ACTIONS(4590), + [sym_float] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym_multiline_string] = ACTIONS(4588), + [sym_character] = ACTIONS(4588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4588), + }, + [STATE(6622)] = { + [ts_builtin_sym_end] = ACTIONS(5076), + [sym_identifier] = ACTIONS(5078), + [anon_sym_import] = ACTIONS(5078), + [anon_sym_test] = ACTIONS(5078), + [anon_sym_hide] = ACTIONS(5078), + [anon_sym_func] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5076), + [anon_sym_struct] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_DASH] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_void] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym_type] = ACTIONS(5078), + [anon_sym_anyopaque] = ACTIONS(5078), + [anon_sym_bool] = ACTIONS(5078), + [anon_sym_int] = ACTIONS(5078), + [anon_sym_uint] = ACTIONS(5078), + [anon_sym_float] = ACTIONS(5078), + [anon_sym_range] = ACTIONS(5078), + [anon_sym_i8] = ACTIONS(5078), + [anon_sym_i16] = ACTIONS(5078), + [anon_sym_i32] = ACTIONS(5078), + [anon_sym_i64] = ACTIONS(5078), + [anon_sym_u8] = ACTIONS(5078), + [anon_sym_u16] = ACTIONS(5078), + [anon_sym_u32] = ACTIONS(5078), + [anon_sym_u64] = ACTIONS(5078), + [anon_sym_isize] = ACTIONS(5078), + [anon_sym_usize] = ACTIONS(5078), + [anon_sym_f32] = ACTIONS(5078), + [anon_sym_f64] = ACTIONS(5078), + [anon_sym_c_char] = ACTIONS(5078), + [anon_sym_c_schar] = ACTIONS(5078), + [anon_sym_c_uchar] = ACTIONS(5078), + [anon_sym_c_short] = ACTIONS(5078), + [anon_sym_c_ushort] = ACTIONS(5078), + [anon_sym_c_int] = ACTIONS(5078), + [anon_sym_c_uint] = ACTIONS(5078), + [anon_sym_c_long] = ACTIONS(5078), + [anon_sym_c_ulong] = ACTIONS(5078), + [anon_sym_c_longlong] = ACTIONS(5078), + [anon_sym_c_ulonglong] = ACTIONS(5078), + [anon_sym_c_float] = ACTIONS(5078), + [anon_sym_c_double] = ACTIONS(5078), + [anon_sym_c_longdouble] = ACTIONS(5078), + [anon_sym_return] = ACTIONS(5078), + [anon_sym_yield] = ACTIONS(5078), + [anon_sym_break] = ACTIONS(5078), + [anon_sym_continue] = ACTIONS(5078), + [anon_sym_defer] = ACTIONS(5078), + [anon_sym_errdefer] = ACTIONS(5078), + [anon_sym_if] = ACTIONS(5078), + [anon_sym_else] = ACTIONS(5078), + [anon_sym_while] = ACTIONS(5078), + [anon_sym_expand] = ACTIONS(5078), + [anon_sym_for] = ACTIONS(5078), + [anon_sym_match] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5076), + [anon_sym_TILDE] = ACTIONS(5076), + [anon_sym_try] = ACTIONS(5078), + [anon_sym_DOT] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5078), + [anon_sym_false] = ACTIONS(5078), + [anon_sym_null] = ACTIONS(5078), + [anon_sym_unreachable] = ACTIONS(5078), + [anon_sym_undefined] = ACTIONS(5078), + [sym_sink] = ACTIONS(5078), + [sym_integer] = ACTIONS(5078), + [sym_float] = ACTIONS(5076), + [anon_sym_DQUOTE] = ACTIONS(5076), + [sym_multiline_string] = ACTIONS(5076), + [sym_character] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5076), + }, + [STATE(6623)] = { + [ts_builtin_sym_end] = ACTIONS(4828), + [sym_identifier] = ACTIONS(4830), + [anon_sym_import] = ACTIONS(4830), + [anon_sym_test] = ACTIONS(4830), + [anon_sym_hide] = ACTIONS(4830), + [anon_sym_func] = ACTIONS(4830), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_struct] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_void] = ACTIONS(4830), + [anon_sym_noreturn] = ACTIONS(4830), + [anon_sym_type] = ACTIONS(4830), + [anon_sym_anyopaque] = ACTIONS(4830), + [anon_sym_bool] = ACTIONS(4830), + [anon_sym_int] = ACTIONS(4830), + [anon_sym_uint] = ACTIONS(4830), + [anon_sym_float] = ACTIONS(4830), + [anon_sym_range] = ACTIONS(4830), + [anon_sym_i8] = ACTIONS(4830), + [anon_sym_i16] = ACTIONS(4830), + [anon_sym_i32] = ACTIONS(4830), + [anon_sym_i64] = ACTIONS(4830), + [anon_sym_u8] = ACTIONS(4830), + [anon_sym_u16] = ACTIONS(4830), + [anon_sym_u32] = ACTIONS(4830), + [anon_sym_u64] = ACTIONS(4830), + [anon_sym_isize] = ACTIONS(4830), + [anon_sym_usize] = ACTIONS(4830), + [anon_sym_f32] = ACTIONS(4830), + [anon_sym_f64] = ACTIONS(4830), + [anon_sym_c_char] = ACTIONS(4830), + [anon_sym_c_schar] = ACTIONS(4830), + [anon_sym_c_uchar] = ACTIONS(4830), + [anon_sym_c_short] = ACTIONS(4830), + [anon_sym_c_ushort] = ACTIONS(4830), + [anon_sym_c_int] = ACTIONS(4830), + [anon_sym_c_uint] = ACTIONS(4830), + [anon_sym_c_long] = ACTIONS(4830), + [anon_sym_c_ulong] = ACTIONS(4830), + [anon_sym_c_longlong] = ACTIONS(4830), + [anon_sym_c_ulonglong] = ACTIONS(4830), + [anon_sym_c_float] = ACTIONS(4830), + [anon_sym_c_double] = ACTIONS(4830), + [anon_sym_c_longdouble] = ACTIONS(4830), + [anon_sym_return] = ACTIONS(4830), + [anon_sym_yield] = ACTIONS(4830), + [anon_sym_break] = ACTIONS(4830), + [anon_sym_continue] = ACTIONS(4830), + [anon_sym_defer] = ACTIONS(4830), + [anon_sym_errdefer] = ACTIONS(4830), + [anon_sym_if] = ACTIONS(4830), + [anon_sym_else] = ACTIONS(4830), + [anon_sym_while] = ACTIONS(4830), + [anon_sym_expand] = ACTIONS(4830), + [anon_sym_for] = ACTIONS(4830), + [anon_sym_match] = ACTIONS(4830), + [anon_sym_AMP] = ACTIONS(4828), + [anon_sym_TILDE] = ACTIONS(4828), + [anon_sym_try] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4830), + [anon_sym_false] = ACTIONS(4830), + [anon_sym_null] = ACTIONS(4830), + [anon_sym_unreachable] = ACTIONS(4830), + [anon_sym_undefined] = ACTIONS(4830), + [sym_sink] = ACTIONS(4830), + [sym_integer] = ACTIONS(4830), + [sym_float] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [sym_multiline_string] = ACTIONS(4828), + [sym_character] = ACTIONS(4828), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4828), + }, + [STATE(6624)] = { + [ts_builtin_sym_end] = ACTIONS(5328), + [sym_identifier] = ACTIONS(5330), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_test] = ACTIONS(5330), + [anon_sym_hide] = ACTIONS(5330), + [anon_sym_func] = ACTIONS(5330), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_struct] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_RPAREN] = ACTIONS(5328), + [anon_sym_LBRACE] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5328), + [anon_sym_void] = ACTIONS(5330), + [anon_sym_noreturn] = ACTIONS(5330), + [anon_sym_type] = ACTIONS(5330), + [anon_sym_anyopaque] = ACTIONS(5330), + [anon_sym_bool] = ACTIONS(5330), + [anon_sym_int] = ACTIONS(5330), + [anon_sym_uint] = ACTIONS(5330), + [anon_sym_float] = ACTIONS(5330), + [anon_sym_range] = ACTIONS(5330), + [anon_sym_i8] = ACTIONS(5330), + [anon_sym_i16] = ACTIONS(5330), + [anon_sym_i32] = ACTIONS(5330), + [anon_sym_i64] = ACTIONS(5330), + [anon_sym_u8] = ACTIONS(5330), + [anon_sym_u16] = ACTIONS(5330), + [anon_sym_u32] = ACTIONS(5330), + [anon_sym_u64] = ACTIONS(5330), + [anon_sym_isize] = ACTIONS(5330), + [anon_sym_usize] = ACTIONS(5330), + [anon_sym_f32] = ACTIONS(5330), + [anon_sym_f64] = ACTIONS(5330), + [anon_sym_c_char] = ACTIONS(5330), + [anon_sym_c_schar] = ACTIONS(5330), + [anon_sym_c_uchar] = ACTIONS(5330), + [anon_sym_c_short] = ACTIONS(5330), + [anon_sym_c_ushort] = ACTIONS(5330), + [anon_sym_c_int] = ACTIONS(5330), + [anon_sym_c_uint] = ACTIONS(5330), + [anon_sym_c_long] = ACTIONS(5330), + [anon_sym_c_ulong] = ACTIONS(5330), + [anon_sym_c_longlong] = ACTIONS(5330), + [anon_sym_c_ulonglong] = ACTIONS(5330), + [anon_sym_c_float] = ACTIONS(5330), + [anon_sym_c_double] = ACTIONS(5330), + [anon_sym_c_longdouble] = ACTIONS(5330), + [anon_sym_return] = ACTIONS(5330), + [anon_sym_yield] = ACTIONS(5330), + [anon_sym_break] = ACTIONS(5330), + [anon_sym_continue] = ACTIONS(5330), + [anon_sym_defer] = ACTIONS(5330), + [anon_sym_errdefer] = ACTIONS(5330), + [anon_sym_if] = ACTIONS(5330), + [anon_sym_else] = ACTIONS(5330), + [anon_sym_while] = ACTIONS(5330), + [anon_sym_expand] = ACTIONS(5330), + [anon_sym_for] = ACTIONS(5330), + [anon_sym_match] = ACTIONS(5330), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_TILDE] = ACTIONS(5328), + [anon_sym_try] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5328), + [anon_sym_true] = ACTIONS(5330), + [anon_sym_false] = ACTIONS(5330), + [anon_sym_null] = ACTIONS(5330), + [anon_sym_unreachable] = ACTIONS(5330), + [anon_sym_undefined] = ACTIONS(5330), + [sym_sink] = ACTIONS(5330), + [sym_integer] = ACTIONS(5330), + [sym_float] = ACTIONS(5328), + [anon_sym_DQUOTE] = ACTIONS(5328), + [sym_multiline_string] = ACTIONS(5328), + [sym_character] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5328), + }, + [STATE(6625)] = { + [ts_builtin_sym_end] = ACTIONS(5446), + [sym_identifier] = ACTIONS(5448), + [anon_sym_import] = ACTIONS(5448), + [anon_sym_test] = ACTIONS(5448), + [anon_sym_hide] = ACTIONS(5448), + [anon_sym_func] = ACTIONS(5448), + [anon_sym_BANG] = ACTIONS(5446), + [anon_sym_struct] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(5446), + [anon_sym_LBRACE] = ACTIONS(5446), + [anon_sym_RBRACE] = ACTIONS(5446), + [anon_sym_DASH] = ACTIONS(5446), + [anon_sym_DOLLAR] = ACTIONS(5446), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_void] = ACTIONS(5448), + [anon_sym_noreturn] = ACTIONS(5448), + [anon_sym_type] = ACTIONS(5448), + [anon_sym_anyopaque] = ACTIONS(5448), + [anon_sym_bool] = ACTIONS(5448), + [anon_sym_int] = ACTIONS(5448), + [anon_sym_uint] = ACTIONS(5448), + [anon_sym_float] = ACTIONS(5448), + [anon_sym_range] = ACTIONS(5448), + [anon_sym_i8] = ACTIONS(5448), + [anon_sym_i16] = ACTIONS(5448), + [anon_sym_i32] = ACTIONS(5448), + [anon_sym_i64] = ACTIONS(5448), + [anon_sym_u8] = ACTIONS(5448), + [anon_sym_u16] = ACTIONS(5448), + [anon_sym_u32] = ACTIONS(5448), + [anon_sym_u64] = ACTIONS(5448), + [anon_sym_isize] = ACTIONS(5448), + [anon_sym_usize] = ACTIONS(5448), + [anon_sym_f32] = ACTIONS(5448), + [anon_sym_f64] = ACTIONS(5448), + [anon_sym_c_char] = ACTIONS(5448), + [anon_sym_c_schar] = ACTIONS(5448), + [anon_sym_c_uchar] = ACTIONS(5448), + [anon_sym_c_short] = ACTIONS(5448), + [anon_sym_c_ushort] = ACTIONS(5448), + [anon_sym_c_int] = ACTIONS(5448), + [anon_sym_c_uint] = ACTIONS(5448), + [anon_sym_c_long] = ACTIONS(5448), + [anon_sym_c_ulong] = ACTIONS(5448), + [anon_sym_c_longlong] = ACTIONS(5448), + [anon_sym_c_ulonglong] = ACTIONS(5448), + [anon_sym_c_float] = ACTIONS(5448), + [anon_sym_c_double] = ACTIONS(5448), + [anon_sym_c_longdouble] = ACTIONS(5448), + [anon_sym_return] = ACTIONS(5448), + [anon_sym_yield] = ACTIONS(5448), + [anon_sym_break] = ACTIONS(5448), + [anon_sym_continue] = ACTIONS(5448), + [anon_sym_defer] = ACTIONS(5448), + [anon_sym_errdefer] = ACTIONS(5448), + [anon_sym_if] = ACTIONS(5448), + [anon_sym_else] = ACTIONS(5448), + [anon_sym_while] = ACTIONS(5448), + [anon_sym_expand] = ACTIONS(5448), + [anon_sym_for] = ACTIONS(5448), + [anon_sym_match] = ACTIONS(5448), + [anon_sym_AMP] = ACTIONS(5446), + [anon_sym_TILDE] = ACTIONS(5446), + [anon_sym_try] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5446), + [anon_sym_true] = ACTIONS(5448), + [anon_sym_false] = ACTIONS(5448), + [anon_sym_null] = ACTIONS(5448), + [anon_sym_unreachable] = ACTIONS(5448), + [anon_sym_undefined] = ACTIONS(5448), + [sym_sink] = ACTIONS(5448), + [sym_integer] = ACTIONS(5448), + [sym_float] = ACTIONS(5446), + [anon_sym_DQUOTE] = ACTIONS(5446), + [sym_multiline_string] = ACTIONS(5446), + [sym_character] = ACTIONS(5446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5446), + }, + [STATE(6626)] = { + [ts_builtin_sym_end] = ACTIONS(5096), + [sym_identifier] = ACTIONS(5098), + [anon_sym_import] = ACTIONS(5098), + [anon_sym_test] = ACTIONS(5098), + [anon_sym_hide] = ACTIONS(5098), + [anon_sym_func] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_struct] = ACTIONS(5098), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_void] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym_type] = ACTIONS(5098), + [anon_sym_anyopaque] = ACTIONS(5098), + [anon_sym_bool] = ACTIONS(5098), + [anon_sym_int] = ACTIONS(5098), + [anon_sym_uint] = ACTIONS(5098), + [anon_sym_float] = ACTIONS(5098), + [anon_sym_range] = ACTIONS(5098), + [anon_sym_i8] = ACTIONS(5098), + [anon_sym_i16] = ACTIONS(5098), + [anon_sym_i32] = ACTIONS(5098), + [anon_sym_i64] = ACTIONS(5098), + [anon_sym_u8] = ACTIONS(5098), + [anon_sym_u16] = ACTIONS(5098), + [anon_sym_u32] = ACTIONS(5098), + [anon_sym_u64] = ACTIONS(5098), + [anon_sym_isize] = ACTIONS(5098), + [anon_sym_usize] = ACTIONS(5098), + [anon_sym_f32] = ACTIONS(5098), + [anon_sym_f64] = ACTIONS(5098), + [anon_sym_c_char] = ACTIONS(5098), + [anon_sym_c_schar] = ACTIONS(5098), + [anon_sym_c_uchar] = ACTIONS(5098), + [anon_sym_c_short] = ACTIONS(5098), + [anon_sym_c_ushort] = ACTIONS(5098), + [anon_sym_c_int] = ACTIONS(5098), + [anon_sym_c_uint] = ACTIONS(5098), + [anon_sym_c_long] = ACTIONS(5098), + [anon_sym_c_ulong] = ACTIONS(5098), + [anon_sym_c_longlong] = ACTIONS(5098), + [anon_sym_c_ulonglong] = ACTIONS(5098), + [anon_sym_c_float] = ACTIONS(5098), + [anon_sym_c_double] = ACTIONS(5098), + [anon_sym_c_longdouble] = ACTIONS(5098), + [anon_sym_return] = ACTIONS(5098), + [anon_sym_yield] = ACTIONS(5098), + [anon_sym_break] = ACTIONS(5098), + [anon_sym_continue] = ACTIONS(5098), + [anon_sym_defer] = ACTIONS(5098), + [anon_sym_errdefer] = ACTIONS(5098), + [anon_sym_if] = ACTIONS(5098), + [anon_sym_else] = ACTIONS(5098), + [anon_sym_while] = ACTIONS(5098), + [anon_sym_expand] = ACTIONS(5098), + [anon_sym_for] = ACTIONS(5098), + [anon_sym_match] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_TILDE] = ACTIONS(5096), + [anon_sym_try] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_true] = ACTIONS(5098), + [anon_sym_false] = ACTIONS(5098), + [anon_sym_null] = ACTIONS(5098), + [anon_sym_unreachable] = ACTIONS(5098), + [anon_sym_undefined] = ACTIONS(5098), + [sym_sink] = ACTIONS(5098), + [sym_integer] = ACTIONS(5098), + [sym_float] = ACTIONS(5096), + [anon_sym_DQUOTE] = ACTIONS(5096), + [sym_multiline_string] = ACTIONS(5096), + [sym_character] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5096), + }, + [STATE(6627)] = { + [ts_builtin_sym_end] = ACTIONS(5100), + [sym_identifier] = ACTIONS(5102), + [anon_sym_import] = ACTIONS(5102), + [anon_sym_test] = ACTIONS(5102), + [anon_sym_hide] = ACTIONS(5102), + [anon_sym_func] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_struct] = ACTIONS(5102), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_RPAREN] = ACTIONS(5100), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_void] = ACTIONS(5102), + [anon_sym_noreturn] = ACTIONS(5102), + [anon_sym_type] = ACTIONS(5102), + [anon_sym_anyopaque] = ACTIONS(5102), + [anon_sym_bool] = ACTIONS(5102), + [anon_sym_int] = ACTIONS(5102), + [anon_sym_uint] = ACTIONS(5102), + [anon_sym_float] = ACTIONS(5102), + [anon_sym_range] = ACTIONS(5102), + [anon_sym_i8] = ACTIONS(5102), + [anon_sym_i16] = ACTIONS(5102), + [anon_sym_i32] = ACTIONS(5102), + [anon_sym_i64] = ACTIONS(5102), + [anon_sym_u8] = ACTIONS(5102), + [anon_sym_u16] = ACTIONS(5102), + [anon_sym_u32] = ACTIONS(5102), + [anon_sym_u64] = ACTIONS(5102), + [anon_sym_isize] = ACTIONS(5102), + [anon_sym_usize] = ACTIONS(5102), + [anon_sym_f32] = ACTIONS(5102), + [anon_sym_f64] = ACTIONS(5102), + [anon_sym_c_char] = ACTIONS(5102), + [anon_sym_c_schar] = ACTIONS(5102), + [anon_sym_c_uchar] = ACTIONS(5102), + [anon_sym_c_short] = ACTIONS(5102), + [anon_sym_c_ushort] = ACTIONS(5102), + [anon_sym_c_int] = ACTIONS(5102), + [anon_sym_c_uint] = ACTIONS(5102), + [anon_sym_c_long] = ACTIONS(5102), + [anon_sym_c_ulong] = ACTIONS(5102), + [anon_sym_c_longlong] = ACTIONS(5102), + [anon_sym_c_ulonglong] = ACTIONS(5102), + [anon_sym_c_float] = ACTIONS(5102), + [anon_sym_c_double] = ACTIONS(5102), + [anon_sym_c_longdouble] = ACTIONS(5102), + [anon_sym_return] = ACTIONS(5102), + [anon_sym_yield] = ACTIONS(5102), + [anon_sym_break] = ACTIONS(5102), + [anon_sym_continue] = ACTIONS(5102), + [anon_sym_defer] = ACTIONS(5102), + [anon_sym_errdefer] = ACTIONS(5102), + [anon_sym_if] = ACTIONS(5102), + [anon_sym_else] = ACTIONS(5102), + [anon_sym_while] = ACTIONS(5102), + [anon_sym_expand] = ACTIONS(5102), + [anon_sym_for] = ACTIONS(5102), + [anon_sym_match] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5100), + [anon_sym_TILDE] = ACTIONS(5100), + [anon_sym_try] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5100), + [anon_sym_true] = ACTIONS(5102), + [anon_sym_false] = ACTIONS(5102), + [anon_sym_null] = ACTIONS(5102), + [anon_sym_unreachable] = ACTIONS(5102), + [anon_sym_undefined] = ACTIONS(5102), + [sym_sink] = ACTIONS(5102), + [sym_integer] = ACTIONS(5102), + [sym_float] = ACTIONS(5100), + [anon_sym_DQUOTE] = ACTIONS(5100), + [sym_multiline_string] = ACTIONS(5100), + [sym_character] = ACTIONS(5100), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5100), + }, + [STATE(6628)] = { + [ts_builtin_sym_end] = ACTIONS(5104), + [sym_identifier] = ACTIONS(5106), + [anon_sym_import] = ACTIONS(5106), + [anon_sym_test] = ACTIONS(5106), + [anon_sym_hide] = ACTIONS(5106), + [anon_sym_func] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_struct] = ACTIONS(5106), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_RPAREN] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_void] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym_type] = ACTIONS(5106), + [anon_sym_anyopaque] = ACTIONS(5106), + [anon_sym_bool] = ACTIONS(5106), + [anon_sym_int] = ACTIONS(5106), + [anon_sym_uint] = ACTIONS(5106), + [anon_sym_float] = ACTIONS(5106), + [anon_sym_range] = ACTIONS(5106), + [anon_sym_i8] = ACTIONS(5106), + [anon_sym_i16] = ACTIONS(5106), + [anon_sym_i32] = ACTIONS(5106), + [anon_sym_i64] = ACTIONS(5106), + [anon_sym_u8] = ACTIONS(5106), + [anon_sym_u16] = ACTIONS(5106), + [anon_sym_u32] = ACTIONS(5106), + [anon_sym_u64] = ACTIONS(5106), + [anon_sym_isize] = ACTIONS(5106), + [anon_sym_usize] = ACTIONS(5106), + [anon_sym_f32] = ACTIONS(5106), + [anon_sym_f64] = ACTIONS(5106), + [anon_sym_c_char] = ACTIONS(5106), + [anon_sym_c_schar] = ACTIONS(5106), + [anon_sym_c_uchar] = ACTIONS(5106), + [anon_sym_c_short] = ACTIONS(5106), + [anon_sym_c_ushort] = ACTIONS(5106), + [anon_sym_c_int] = ACTIONS(5106), + [anon_sym_c_uint] = ACTIONS(5106), + [anon_sym_c_long] = ACTIONS(5106), + [anon_sym_c_ulong] = ACTIONS(5106), + [anon_sym_c_longlong] = ACTIONS(5106), + [anon_sym_c_ulonglong] = ACTIONS(5106), + [anon_sym_c_float] = ACTIONS(5106), + [anon_sym_c_double] = ACTIONS(5106), + [anon_sym_c_longdouble] = ACTIONS(5106), + [anon_sym_return] = ACTIONS(5106), + [anon_sym_yield] = ACTIONS(5106), + [anon_sym_break] = ACTIONS(5106), + [anon_sym_continue] = ACTIONS(5106), + [anon_sym_defer] = ACTIONS(5106), + [anon_sym_errdefer] = ACTIONS(5106), + [anon_sym_if] = ACTIONS(5106), + [anon_sym_else] = ACTIONS(5106), + [anon_sym_while] = ACTIONS(5106), + [anon_sym_expand] = ACTIONS(5106), + [anon_sym_for] = ACTIONS(5106), + [anon_sym_match] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_TILDE] = ACTIONS(5104), + [anon_sym_try] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_true] = ACTIONS(5106), + [anon_sym_false] = ACTIONS(5106), + [anon_sym_null] = ACTIONS(5106), + [anon_sym_unreachable] = ACTIONS(5106), + [anon_sym_undefined] = ACTIONS(5106), + [sym_sink] = ACTIONS(5106), + [sym_integer] = ACTIONS(5106), + [sym_float] = ACTIONS(5104), + [anon_sym_DQUOTE] = ACTIONS(5104), + [sym_multiline_string] = ACTIONS(5104), + [sym_character] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5104), + }, + [STATE(6629)] = { + [ts_builtin_sym_end] = ACTIONS(5108), + [sym_identifier] = ACTIONS(5110), + [anon_sym_import] = ACTIONS(5110), + [anon_sym_test] = ACTIONS(5110), + [anon_sym_hide] = ACTIONS(5110), + [anon_sym_func] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_struct] = ACTIONS(5110), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_RPAREN] = ACTIONS(5108), + [anon_sym_LBRACE] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_void] = ACTIONS(5110), + [anon_sym_noreturn] = ACTIONS(5110), + [anon_sym_type] = ACTIONS(5110), + [anon_sym_anyopaque] = ACTIONS(5110), + [anon_sym_bool] = ACTIONS(5110), + [anon_sym_int] = ACTIONS(5110), + [anon_sym_uint] = ACTIONS(5110), + [anon_sym_float] = ACTIONS(5110), + [anon_sym_range] = ACTIONS(5110), + [anon_sym_i8] = ACTIONS(5110), + [anon_sym_i16] = ACTIONS(5110), + [anon_sym_i32] = ACTIONS(5110), + [anon_sym_i64] = ACTIONS(5110), + [anon_sym_u8] = ACTIONS(5110), + [anon_sym_u16] = ACTIONS(5110), + [anon_sym_u32] = ACTIONS(5110), + [anon_sym_u64] = ACTIONS(5110), + [anon_sym_isize] = ACTIONS(5110), + [anon_sym_usize] = ACTIONS(5110), + [anon_sym_f32] = ACTIONS(5110), + [anon_sym_f64] = ACTIONS(5110), + [anon_sym_c_char] = ACTIONS(5110), + [anon_sym_c_schar] = ACTIONS(5110), + [anon_sym_c_uchar] = ACTIONS(5110), + [anon_sym_c_short] = ACTIONS(5110), + [anon_sym_c_ushort] = ACTIONS(5110), + [anon_sym_c_int] = ACTIONS(5110), + [anon_sym_c_uint] = ACTIONS(5110), + [anon_sym_c_long] = ACTIONS(5110), + [anon_sym_c_ulong] = ACTIONS(5110), + [anon_sym_c_longlong] = ACTIONS(5110), + [anon_sym_c_ulonglong] = ACTIONS(5110), + [anon_sym_c_float] = ACTIONS(5110), + [anon_sym_c_double] = ACTIONS(5110), + [anon_sym_c_longdouble] = ACTIONS(5110), + [anon_sym_return] = ACTIONS(5110), + [anon_sym_yield] = ACTIONS(5110), + [anon_sym_break] = ACTIONS(5110), + [anon_sym_continue] = ACTIONS(5110), + [anon_sym_defer] = ACTIONS(5110), + [anon_sym_errdefer] = ACTIONS(5110), + [anon_sym_if] = ACTIONS(5110), + [anon_sym_else] = ACTIONS(5110), + [anon_sym_while] = ACTIONS(5110), + [anon_sym_expand] = ACTIONS(5110), + [anon_sym_for] = ACTIONS(5110), + [anon_sym_match] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5108), + [anon_sym_TILDE] = ACTIONS(5108), + [anon_sym_try] = ACTIONS(5110), + [anon_sym_DOT] = ACTIONS(5108), + [anon_sym_true] = ACTIONS(5110), + [anon_sym_false] = ACTIONS(5110), + [anon_sym_null] = ACTIONS(5110), + [anon_sym_unreachable] = ACTIONS(5110), + [anon_sym_undefined] = ACTIONS(5110), + [sym_sink] = ACTIONS(5110), + [sym_integer] = ACTIONS(5110), + [sym_float] = ACTIONS(5108), + [anon_sym_DQUOTE] = ACTIONS(5108), + [sym_multiline_string] = ACTIONS(5108), + [sym_character] = ACTIONS(5108), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5108), + }, + [STATE(6630)] = { + [ts_builtin_sym_end] = ACTIONS(5332), + [sym_identifier] = ACTIONS(5334), + [anon_sym_import] = ACTIONS(5334), + [anon_sym_test] = ACTIONS(5334), + [anon_sym_hide] = ACTIONS(5334), + [anon_sym_func] = ACTIONS(5334), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5332), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_LBRACE] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5332), + [anon_sym_void] = ACTIONS(5334), + [anon_sym_noreturn] = ACTIONS(5334), + [anon_sym_type] = ACTIONS(5334), + [anon_sym_anyopaque] = ACTIONS(5334), + [anon_sym_bool] = ACTIONS(5334), + [anon_sym_int] = ACTIONS(5334), + [anon_sym_uint] = ACTIONS(5334), + [anon_sym_float] = ACTIONS(5334), + [anon_sym_range] = ACTIONS(5334), + [anon_sym_i8] = ACTIONS(5334), + [anon_sym_i16] = ACTIONS(5334), + [anon_sym_i32] = ACTIONS(5334), + [anon_sym_i64] = ACTIONS(5334), + [anon_sym_u8] = ACTIONS(5334), + [anon_sym_u16] = ACTIONS(5334), + [anon_sym_u32] = ACTIONS(5334), + [anon_sym_u64] = ACTIONS(5334), + [anon_sym_isize] = ACTIONS(5334), + [anon_sym_usize] = ACTIONS(5334), + [anon_sym_f32] = ACTIONS(5334), + [anon_sym_f64] = ACTIONS(5334), + [anon_sym_c_char] = ACTIONS(5334), + [anon_sym_c_schar] = ACTIONS(5334), + [anon_sym_c_uchar] = ACTIONS(5334), + [anon_sym_c_short] = ACTIONS(5334), + [anon_sym_c_ushort] = ACTIONS(5334), + [anon_sym_c_int] = ACTIONS(5334), + [anon_sym_c_uint] = ACTIONS(5334), + [anon_sym_c_long] = ACTIONS(5334), + [anon_sym_c_ulong] = ACTIONS(5334), + [anon_sym_c_longlong] = ACTIONS(5334), + [anon_sym_c_ulonglong] = ACTIONS(5334), + [anon_sym_c_float] = ACTIONS(5334), + [anon_sym_c_double] = ACTIONS(5334), + [anon_sym_c_longdouble] = ACTIONS(5334), + [anon_sym_return] = ACTIONS(5334), + [anon_sym_yield] = ACTIONS(5334), + [anon_sym_break] = ACTIONS(5334), + [anon_sym_continue] = ACTIONS(5334), + [anon_sym_defer] = ACTIONS(5334), + [anon_sym_errdefer] = ACTIONS(5334), + [anon_sym_if] = ACTIONS(5334), + [anon_sym_else] = ACTIONS(5334), + [anon_sym_while] = ACTIONS(5334), + [anon_sym_expand] = ACTIONS(5334), + [anon_sym_for] = ACTIONS(5334), + [anon_sym_match] = ACTIONS(5334), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_TILDE] = ACTIONS(5332), + [anon_sym_try] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(5332), + [anon_sym_true] = ACTIONS(5334), + [anon_sym_false] = ACTIONS(5334), + [anon_sym_null] = ACTIONS(5334), + [anon_sym_unreachable] = ACTIONS(5334), + [anon_sym_undefined] = ACTIONS(5334), + [sym_sink] = ACTIONS(5334), + [sym_integer] = ACTIONS(5334), + [sym_float] = ACTIONS(5332), + [anon_sym_DQUOTE] = ACTIONS(5332), + [sym_multiline_string] = ACTIONS(5332), + [sym_character] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5332), + }, + [STATE(6631)] = { + [ts_builtin_sym_end] = ACTIONS(4840), + [sym_identifier] = ACTIONS(4842), + [anon_sym_import] = ACTIONS(4842), + [anon_sym_test] = ACTIONS(4842), + [anon_sym_hide] = ACTIONS(4842), + [anon_sym_func] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_struct] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_void] = ACTIONS(4842), + [anon_sym_noreturn] = ACTIONS(4842), + [anon_sym_type] = ACTIONS(4842), + [anon_sym_anyopaque] = ACTIONS(4842), + [anon_sym_bool] = ACTIONS(4842), + [anon_sym_int] = ACTIONS(4842), + [anon_sym_uint] = ACTIONS(4842), + [anon_sym_float] = ACTIONS(4842), + [anon_sym_range] = ACTIONS(4842), + [anon_sym_i8] = ACTIONS(4842), + [anon_sym_i16] = ACTIONS(4842), + [anon_sym_i32] = ACTIONS(4842), + [anon_sym_i64] = ACTIONS(4842), + [anon_sym_u8] = ACTIONS(4842), + [anon_sym_u16] = ACTIONS(4842), + [anon_sym_u32] = ACTIONS(4842), + [anon_sym_u64] = ACTIONS(4842), + [anon_sym_isize] = ACTIONS(4842), + [anon_sym_usize] = ACTIONS(4842), + [anon_sym_f32] = ACTIONS(4842), + [anon_sym_f64] = ACTIONS(4842), + [anon_sym_c_char] = ACTIONS(4842), + [anon_sym_c_schar] = ACTIONS(4842), + [anon_sym_c_uchar] = ACTIONS(4842), + [anon_sym_c_short] = ACTIONS(4842), + [anon_sym_c_ushort] = ACTIONS(4842), + [anon_sym_c_int] = ACTIONS(4842), + [anon_sym_c_uint] = ACTIONS(4842), + [anon_sym_c_long] = ACTIONS(4842), + [anon_sym_c_ulong] = ACTIONS(4842), + [anon_sym_c_longlong] = ACTIONS(4842), + [anon_sym_c_ulonglong] = ACTIONS(4842), + [anon_sym_c_float] = ACTIONS(4842), + [anon_sym_c_double] = ACTIONS(4842), + [anon_sym_c_longdouble] = ACTIONS(4842), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_yield] = ACTIONS(4842), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_defer] = ACTIONS(4842), + [anon_sym_errdefer] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_while] = ACTIONS(4842), + [anon_sym_expand] = ACTIONS(4842), + [anon_sym_for] = ACTIONS(4842), + [anon_sym_match] = ACTIONS(4842), + [anon_sym_AMP] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_unreachable] = ACTIONS(4842), + [anon_sym_undefined] = ACTIONS(4842), + [sym_sink] = ACTIONS(4842), + [sym_integer] = ACTIONS(4842), + [sym_float] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [sym_multiline_string] = ACTIONS(4840), + [sym_character] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4840), + }, + [STATE(6632)] = { + [ts_builtin_sym_end] = ACTIONS(5286), + [sym_identifier] = ACTIONS(5288), + [anon_sym_import] = ACTIONS(5288), + [anon_sym_test] = ACTIONS(5288), + [anon_sym_hide] = ACTIONS(5288), + [anon_sym_func] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5286), + [anon_sym_struct] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_void] = ACTIONS(5288), + [anon_sym_noreturn] = ACTIONS(5288), + [anon_sym_type] = ACTIONS(5288), + [anon_sym_anyopaque] = ACTIONS(5288), + [anon_sym_bool] = ACTIONS(5288), + [anon_sym_int] = ACTIONS(5288), + [anon_sym_uint] = ACTIONS(5288), + [anon_sym_float] = ACTIONS(5288), + [anon_sym_range] = ACTIONS(5288), + [anon_sym_i8] = ACTIONS(5288), + [anon_sym_i16] = ACTIONS(5288), + [anon_sym_i32] = ACTIONS(5288), + [anon_sym_i64] = ACTIONS(5288), + [anon_sym_u8] = ACTIONS(5288), + [anon_sym_u16] = ACTIONS(5288), + [anon_sym_u32] = ACTIONS(5288), + [anon_sym_u64] = ACTIONS(5288), + [anon_sym_isize] = ACTIONS(5288), + [anon_sym_usize] = ACTIONS(5288), + [anon_sym_f32] = ACTIONS(5288), + [anon_sym_f64] = ACTIONS(5288), + [anon_sym_c_char] = ACTIONS(5288), + [anon_sym_c_schar] = ACTIONS(5288), + [anon_sym_c_uchar] = ACTIONS(5288), + [anon_sym_c_short] = ACTIONS(5288), + [anon_sym_c_ushort] = ACTIONS(5288), + [anon_sym_c_int] = ACTIONS(5288), + [anon_sym_c_uint] = ACTIONS(5288), + [anon_sym_c_long] = ACTIONS(5288), + [anon_sym_c_ulong] = ACTIONS(5288), + [anon_sym_c_longlong] = ACTIONS(5288), + [anon_sym_c_ulonglong] = ACTIONS(5288), + [anon_sym_c_float] = ACTIONS(5288), + [anon_sym_c_double] = ACTIONS(5288), + [anon_sym_c_longdouble] = ACTIONS(5288), + [anon_sym_return] = ACTIONS(5288), + [anon_sym_yield] = ACTIONS(5288), + [anon_sym_break] = ACTIONS(5288), + [anon_sym_continue] = ACTIONS(5288), + [anon_sym_defer] = ACTIONS(5288), + [anon_sym_errdefer] = ACTIONS(5288), + [anon_sym_if] = ACTIONS(5288), + [anon_sym_else] = ACTIONS(5288), + [anon_sym_while] = ACTIONS(5288), + [anon_sym_expand] = ACTIONS(5288), + [anon_sym_for] = ACTIONS(5288), + [anon_sym_match] = ACTIONS(5288), + [anon_sym_AMP] = ACTIONS(5286), + [anon_sym_TILDE] = ACTIONS(5286), + [anon_sym_try] = ACTIONS(5288), + [anon_sym_DOT] = ACTIONS(5286), + [anon_sym_true] = ACTIONS(5288), + [anon_sym_false] = ACTIONS(5288), + [anon_sym_null] = ACTIONS(5288), + [anon_sym_unreachable] = ACTIONS(5288), + [anon_sym_undefined] = ACTIONS(5288), + [sym_sink] = ACTIONS(5288), + [sym_integer] = ACTIONS(5288), + [sym_float] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5286), + [sym_multiline_string] = ACTIONS(5286), + [sym_character] = ACTIONS(5286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5286), + }, + [STATE(6633)] = { + [ts_builtin_sym_end] = ACTIONS(5450), + [sym_identifier] = ACTIONS(5452), + [anon_sym_import] = ACTIONS(5452), + [anon_sym_test] = ACTIONS(5452), + [anon_sym_hide] = ACTIONS(5452), + [anon_sym_func] = ACTIONS(5452), + [anon_sym_BANG] = ACTIONS(5450), + [anon_sym_struct] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(5450), + [anon_sym_RPAREN] = ACTIONS(5450), + [anon_sym_LBRACE] = ACTIONS(5450), + [anon_sym_RBRACE] = ACTIONS(5450), + [anon_sym_DASH] = ACTIONS(5450), + [anon_sym_DOLLAR] = ACTIONS(5450), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_void] = ACTIONS(5452), + [anon_sym_noreturn] = ACTIONS(5452), + [anon_sym_type] = ACTIONS(5452), + [anon_sym_anyopaque] = ACTIONS(5452), + [anon_sym_bool] = ACTIONS(5452), + [anon_sym_int] = ACTIONS(5452), + [anon_sym_uint] = ACTIONS(5452), + [anon_sym_float] = ACTIONS(5452), + [anon_sym_range] = ACTIONS(5452), + [anon_sym_i8] = ACTIONS(5452), + [anon_sym_i16] = ACTIONS(5452), + [anon_sym_i32] = ACTIONS(5452), + [anon_sym_i64] = ACTIONS(5452), + [anon_sym_u8] = ACTIONS(5452), + [anon_sym_u16] = ACTIONS(5452), + [anon_sym_u32] = ACTIONS(5452), + [anon_sym_u64] = ACTIONS(5452), + [anon_sym_isize] = ACTIONS(5452), + [anon_sym_usize] = ACTIONS(5452), + [anon_sym_f32] = ACTIONS(5452), + [anon_sym_f64] = ACTIONS(5452), + [anon_sym_c_char] = ACTIONS(5452), + [anon_sym_c_schar] = ACTIONS(5452), + [anon_sym_c_uchar] = ACTIONS(5452), + [anon_sym_c_short] = ACTIONS(5452), + [anon_sym_c_ushort] = ACTIONS(5452), + [anon_sym_c_int] = ACTIONS(5452), + [anon_sym_c_uint] = ACTIONS(5452), + [anon_sym_c_long] = ACTIONS(5452), + [anon_sym_c_ulong] = ACTIONS(5452), + [anon_sym_c_longlong] = ACTIONS(5452), + [anon_sym_c_ulonglong] = ACTIONS(5452), + [anon_sym_c_float] = ACTIONS(5452), + [anon_sym_c_double] = ACTIONS(5452), + [anon_sym_c_longdouble] = ACTIONS(5452), + [anon_sym_return] = ACTIONS(5452), + [anon_sym_yield] = ACTIONS(5452), + [anon_sym_break] = ACTIONS(5452), + [anon_sym_continue] = ACTIONS(5452), + [anon_sym_defer] = ACTIONS(5452), + [anon_sym_errdefer] = ACTIONS(5452), + [anon_sym_if] = ACTIONS(5452), + [anon_sym_else] = ACTIONS(5452), + [anon_sym_while] = ACTIONS(5452), + [anon_sym_expand] = ACTIONS(5452), + [anon_sym_for] = ACTIONS(5452), + [anon_sym_match] = ACTIONS(5452), + [anon_sym_AMP] = ACTIONS(5450), + [anon_sym_TILDE] = ACTIONS(5450), + [anon_sym_try] = ACTIONS(5452), + [anon_sym_DOT] = ACTIONS(5450), + [anon_sym_true] = ACTIONS(5452), + [anon_sym_false] = ACTIONS(5452), + [anon_sym_null] = ACTIONS(5452), + [anon_sym_unreachable] = ACTIONS(5452), + [anon_sym_undefined] = ACTIONS(5452), + [sym_sink] = ACTIONS(5452), + [sym_integer] = ACTIONS(5452), + [sym_float] = ACTIONS(5450), + [anon_sym_DQUOTE] = ACTIONS(5450), + [sym_multiline_string] = ACTIONS(5450), + [sym_character] = ACTIONS(5450), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5450), + }, + [STATE(6634)] = { + [ts_builtin_sym_end] = ACTIONS(5160), + [sym_identifier] = ACTIONS(5162), + [anon_sym_import] = ACTIONS(5162), + [anon_sym_test] = ACTIONS(5162), + [anon_sym_hide] = ACTIONS(5162), + [anon_sym_func] = ACTIONS(5162), + [anon_sym_BANG] = ACTIONS(5160), + [anon_sym_struct] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_RPAREN] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5160), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_void] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym_type] = ACTIONS(5162), + [anon_sym_anyopaque] = ACTIONS(5162), + [anon_sym_bool] = ACTIONS(5162), + [anon_sym_int] = ACTIONS(5162), + [anon_sym_uint] = ACTIONS(5162), + [anon_sym_float] = ACTIONS(5162), + [anon_sym_range] = ACTIONS(5162), + [anon_sym_i8] = ACTIONS(5162), + [anon_sym_i16] = ACTIONS(5162), + [anon_sym_i32] = ACTIONS(5162), + [anon_sym_i64] = ACTIONS(5162), + [anon_sym_u8] = ACTIONS(5162), + [anon_sym_u16] = ACTIONS(5162), + [anon_sym_u32] = ACTIONS(5162), + [anon_sym_u64] = ACTIONS(5162), + [anon_sym_isize] = ACTIONS(5162), + [anon_sym_usize] = ACTIONS(5162), + [anon_sym_f32] = ACTIONS(5162), + [anon_sym_f64] = ACTIONS(5162), + [anon_sym_c_char] = ACTIONS(5162), + [anon_sym_c_schar] = ACTIONS(5162), + [anon_sym_c_uchar] = ACTIONS(5162), + [anon_sym_c_short] = ACTIONS(5162), + [anon_sym_c_ushort] = ACTIONS(5162), + [anon_sym_c_int] = ACTIONS(5162), + [anon_sym_c_uint] = ACTIONS(5162), + [anon_sym_c_long] = ACTIONS(5162), + [anon_sym_c_ulong] = ACTIONS(5162), + [anon_sym_c_longlong] = ACTIONS(5162), + [anon_sym_c_ulonglong] = ACTIONS(5162), + [anon_sym_c_float] = ACTIONS(5162), + [anon_sym_c_double] = ACTIONS(5162), + [anon_sym_c_longdouble] = ACTIONS(5162), + [anon_sym_return] = ACTIONS(5162), + [anon_sym_yield] = ACTIONS(5162), + [anon_sym_break] = ACTIONS(5162), + [anon_sym_continue] = ACTIONS(5162), + [anon_sym_defer] = ACTIONS(5162), + [anon_sym_errdefer] = ACTIONS(5162), + [anon_sym_if] = ACTIONS(5162), + [anon_sym_else] = ACTIONS(5162), + [anon_sym_while] = ACTIONS(5162), + [anon_sym_expand] = ACTIONS(5162), + [anon_sym_for] = ACTIONS(5162), + [anon_sym_match] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_TILDE] = ACTIONS(5160), + [anon_sym_try] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5160), + [anon_sym_true] = ACTIONS(5162), + [anon_sym_false] = ACTIONS(5162), + [anon_sym_null] = ACTIONS(5162), + [anon_sym_unreachable] = ACTIONS(5162), + [anon_sym_undefined] = ACTIONS(5162), + [sym_sink] = ACTIONS(5162), + [sym_integer] = ACTIONS(5162), + [sym_float] = ACTIONS(5160), + [anon_sym_DQUOTE] = ACTIONS(5160), + [sym_multiline_string] = ACTIONS(5160), + [sym_character] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5160), + }, + [STATE(6635)] = { + [ts_builtin_sym_end] = ACTIONS(5454), + [sym_identifier] = ACTIONS(5456), + [anon_sym_import] = ACTIONS(5456), + [anon_sym_test] = ACTIONS(5456), + [anon_sym_hide] = ACTIONS(5456), + [anon_sym_func] = ACTIONS(5456), + [anon_sym_BANG] = ACTIONS(5454), + [anon_sym_struct] = ACTIONS(5456), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_RPAREN] = ACTIONS(5454), + [anon_sym_LBRACE] = ACTIONS(5454), + [anon_sym_RBRACE] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5454), + [anon_sym_DOLLAR] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_void] = ACTIONS(5456), + [anon_sym_noreturn] = ACTIONS(5456), + [anon_sym_type] = ACTIONS(5456), + [anon_sym_anyopaque] = ACTIONS(5456), + [anon_sym_bool] = ACTIONS(5456), + [anon_sym_int] = ACTIONS(5456), + [anon_sym_uint] = ACTIONS(5456), + [anon_sym_float] = ACTIONS(5456), + [anon_sym_range] = ACTIONS(5456), + [anon_sym_i8] = ACTIONS(5456), + [anon_sym_i16] = ACTIONS(5456), + [anon_sym_i32] = ACTIONS(5456), + [anon_sym_i64] = ACTIONS(5456), + [anon_sym_u8] = ACTIONS(5456), + [anon_sym_u16] = ACTIONS(5456), + [anon_sym_u32] = ACTIONS(5456), + [anon_sym_u64] = ACTIONS(5456), + [anon_sym_isize] = ACTIONS(5456), + [anon_sym_usize] = ACTIONS(5456), + [anon_sym_f32] = ACTIONS(5456), + [anon_sym_f64] = ACTIONS(5456), + [anon_sym_c_char] = ACTIONS(5456), + [anon_sym_c_schar] = ACTIONS(5456), + [anon_sym_c_uchar] = ACTIONS(5456), + [anon_sym_c_short] = ACTIONS(5456), + [anon_sym_c_ushort] = ACTIONS(5456), + [anon_sym_c_int] = ACTIONS(5456), + [anon_sym_c_uint] = ACTIONS(5456), + [anon_sym_c_long] = ACTIONS(5456), + [anon_sym_c_ulong] = ACTIONS(5456), + [anon_sym_c_longlong] = ACTIONS(5456), + [anon_sym_c_ulonglong] = ACTIONS(5456), + [anon_sym_c_float] = ACTIONS(5456), + [anon_sym_c_double] = ACTIONS(5456), + [anon_sym_c_longdouble] = ACTIONS(5456), + [anon_sym_return] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(5456), + [anon_sym_break] = ACTIONS(5456), + [anon_sym_continue] = ACTIONS(5456), + [anon_sym_defer] = ACTIONS(5456), + [anon_sym_errdefer] = ACTIONS(5456), + [anon_sym_if] = ACTIONS(5456), + [anon_sym_else] = ACTIONS(5456), + [anon_sym_while] = ACTIONS(5456), + [anon_sym_expand] = ACTIONS(5456), + [anon_sym_for] = ACTIONS(5456), + [anon_sym_match] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_TILDE] = ACTIONS(5454), + [anon_sym_try] = ACTIONS(5456), + [anon_sym_DOT] = ACTIONS(5454), + [anon_sym_true] = ACTIONS(5456), + [anon_sym_false] = ACTIONS(5456), + [anon_sym_null] = ACTIONS(5456), + [anon_sym_unreachable] = ACTIONS(5456), + [anon_sym_undefined] = ACTIONS(5456), + [sym_sink] = ACTIONS(5456), + [sym_integer] = ACTIONS(5456), + [sym_float] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5454), + [sym_multiline_string] = ACTIONS(5454), + [sym_character] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5454), + }, + [STATE(6636)] = { + [ts_builtin_sym_end] = ACTIONS(5190), + [sym_identifier] = ACTIONS(5192), + [anon_sym_import] = ACTIONS(5192), + [anon_sym_test] = ACTIONS(5192), + [anon_sym_hide] = ACTIONS(5192), + [anon_sym_func] = ACTIONS(5192), + [anon_sym_BANG] = ACTIONS(5190), + [anon_sym_struct] = ACTIONS(5192), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_RPAREN] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_DOLLAR] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_void] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym_type] = ACTIONS(5192), + [anon_sym_anyopaque] = ACTIONS(5192), + [anon_sym_bool] = ACTIONS(5192), + [anon_sym_int] = ACTIONS(5192), + [anon_sym_uint] = ACTIONS(5192), + [anon_sym_float] = ACTIONS(5192), + [anon_sym_range] = ACTIONS(5192), + [anon_sym_i8] = ACTIONS(5192), + [anon_sym_i16] = ACTIONS(5192), + [anon_sym_i32] = ACTIONS(5192), + [anon_sym_i64] = ACTIONS(5192), + [anon_sym_u8] = ACTIONS(5192), + [anon_sym_u16] = ACTIONS(5192), + [anon_sym_u32] = ACTIONS(5192), + [anon_sym_u64] = ACTIONS(5192), + [anon_sym_isize] = ACTIONS(5192), + [anon_sym_usize] = ACTIONS(5192), + [anon_sym_f32] = ACTIONS(5192), + [anon_sym_f64] = ACTIONS(5192), + [anon_sym_c_char] = ACTIONS(5192), + [anon_sym_c_schar] = ACTIONS(5192), + [anon_sym_c_uchar] = ACTIONS(5192), + [anon_sym_c_short] = ACTIONS(5192), + [anon_sym_c_ushort] = ACTIONS(5192), + [anon_sym_c_int] = ACTIONS(5192), + [anon_sym_c_uint] = ACTIONS(5192), + [anon_sym_c_long] = ACTIONS(5192), + [anon_sym_c_ulong] = ACTIONS(5192), + [anon_sym_c_longlong] = ACTIONS(5192), + [anon_sym_c_ulonglong] = ACTIONS(5192), + [anon_sym_c_float] = ACTIONS(5192), + [anon_sym_c_double] = ACTIONS(5192), + [anon_sym_c_longdouble] = ACTIONS(5192), + [anon_sym_return] = ACTIONS(5192), + [anon_sym_yield] = ACTIONS(5192), + [anon_sym_break] = ACTIONS(5192), + [anon_sym_continue] = ACTIONS(5192), + [anon_sym_defer] = ACTIONS(5192), + [anon_sym_errdefer] = ACTIONS(5192), + [anon_sym_if] = ACTIONS(5192), + [anon_sym_else] = ACTIONS(5192), + [anon_sym_while] = ACTIONS(5192), + [anon_sym_expand] = ACTIONS(5192), + [anon_sym_for] = ACTIONS(5192), + [anon_sym_match] = ACTIONS(5192), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_TILDE] = ACTIONS(5190), + [anon_sym_try] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5190), + [anon_sym_true] = ACTIONS(5192), + [anon_sym_false] = ACTIONS(5192), + [anon_sym_null] = ACTIONS(5192), + [anon_sym_unreachable] = ACTIONS(5192), + [anon_sym_undefined] = ACTIONS(5192), + [sym_sink] = ACTIONS(5192), + [sym_integer] = ACTIONS(5192), + [sym_float] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(5190), + [sym_multiline_string] = ACTIONS(5190), + [sym_character] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5190), + }, + [STATE(6637)] = { + [ts_builtin_sym_end] = ACTIONS(5194), + [sym_identifier] = ACTIONS(5196), + [anon_sym_import] = ACTIONS(5196), + [anon_sym_test] = ACTIONS(5196), + [anon_sym_hide] = ACTIONS(5196), + [anon_sym_func] = ACTIONS(5196), + [anon_sym_BANG] = ACTIONS(5194), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_RPAREN] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_void] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym_type] = ACTIONS(5196), + [anon_sym_anyopaque] = ACTIONS(5196), + [anon_sym_bool] = ACTIONS(5196), + [anon_sym_int] = ACTIONS(5196), + [anon_sym_uint] = ACTIONS(5196), + [anon_sym_float] = ACTIONS(5196), + [anon_sym_range] = ACTIONS(5196), + [anon_sym_i8] = ACTIONS(5196), + [anon_sym_i16] = ACTIONS(5196), + [anon_sym_i32] = ACTIONS(5196), + [anon_sym_i64] = ACTIONS(5196), + [anon_sym_u8] = ACTIONS(5196), + [anon_sym_u16] = ACTIONS(5196), + [anon_sym_u32] = ACTIONS(5196), + [anon_sym_u64] = ACTIONS(5196), + [anon_sym_isize] = ACTIONS(5196), + [anon_sym_usize] = ACTIONS(5196), + [anon_sym_f32] = ACTIONS(5196), + [anon_sym_f64] = ACTIONS(5196), + [anon_sym_c_char] = ACTIONS(5196), + [anon_sym_c_schar] = ACTIONS(5196), + [anon_sym_c_uchar] = ACTIONS(5196), + [anon_sym_c_short] = ACTIONS(5196), + [anon_sym_c_ushort] = ACTIONS(5196), + [anon_sym_c_int] = ACTIONS(5196), + [anon_sym_c_uint] = ACTIONS(5196), + [anon_sym_c_long] = ACTIONS(5196), + [anon_sym_c_ulong] = ACTIONS(5196), + [anon_sym_c_longlong] = ACTIONS(5196), + [anon_sym_c_ulonglong] = ACTIONS(5196), + [anon_sym_c_float] = ACTIONS(5196), + [anon_sym_c_double] = ACTIONS(5196), + [anon_sym_c_longdouble] = ACTIONS(5196), + [anon_sym_return] = ACTIONS(5196), + [anon_sym_yield] = ACTIONS(5196), + [anon_sym_break] = ACTIONS(5196), + [anon_sym_continue] = ACTIONS(5196), + [anon_sym_defer] = ACTIONS(5196), + [anon_sym_errdefer] = ACTIONS(5196), + [anon_sym_if] = ACTIONS(5196), + [anon_sym_else] = ACTIONS(5196), + [anon_sym_while] = ACTIONS(5196), + [anon_sym_expand] = ACTIONS(5196), + [anon_sym_for] = ACTIONS(5196), + [anon_sym_match] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_TILDE] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_true] = ACTIONS(5196), + [anon_sym_false] = ACTIONS(5196), + [anon_sym_null] = ACTIONS(5196), + [anon_sym_unreachable] = ACTIONS(5196), + [anon_sym_undefined] = ACTIONS(5196), + [sym_sink] = ACTIONS(5196), + [sym_integer] = ACTIONS(5196), + [sym_float] = ACTIONS(5194), + [anon_sym_DQUOTE] = ACTIONS(5194), + [sym_multiline_string] = ACTIONS(5194), + [sym_character] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5194), + }, + [STATE(6638)] = { + [ts_builtin_sym_end] = ACTIONS(5408), + [sym_identifier] = ACTIONS(5410), + [anon_sym_import] = ACTIONS(5410), + [anon_sym_test] = ACTIONS(5410), + [anon_sym_hide] = ACTIONS(5410), + [anon_sym_func] = ACTIONS(5410), + [anon_sym_BANG] = ACTIONS(5408), + [anon_sym_struct] = ACTIONS(5410), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_RPAREN] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5408), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_DASH] = ACTIONS(5408), + [anon_sym_DOLLAR] = ACTIONS(5408), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_void] = ACTIONS(5410), + [anon_sym_noreturn] = ACTIONS(5410), + [anon_sym_type] = ACTIONS(5410), + [anon_sym_anyopaque] = ACTIONS(5410), + [anon_sym_bool] = ACTIONS(5410), + [anon_sym_int] = ACTIONS(5410), + [anon_sym_uint] = ACTIONS(5410), + [anon_sym_float] = ACTIONS(5410), + [anon_sym_range] = ACTIONS(5410), + [anon_sym_i8] = ACTIONS(5410), + [anon_sym_i16] = ACTIONS(5410), + [anon_sym_i32] = ACTIONS(5410), + [anon_sym_i64] = ACTIONS(5410), + [anon_sym_u8] = ACTIONS(5410), + [anon_sym_u16] = ACTIONS(5410), + [anon_sym_u32] = ACTIONS(5410), + [anon_sym_u64] = ACTIONS(5410), + [anon_sym_isize] = ACTIONS(5410), + [anon_sym_usize] = ACTIONS(5410), + [anon_sym_f32] = ACTIONS(5410), + [anon_sym_f64] = ACTIONS(5410), + [anon_sym_c_char] = ACTIONS(5410), + [anon_sym_c_schar] = ACTIONS(5410), + [anon_sym_c_uchar] = ACTIONS(5410), + [anon_sym_c_short] = ACTIONS(5410), + [anon_sym_c_ushort] = ACTIONS(5410), + [anon_sym_c_int] = ACTIONS(5410), + [anon_sym_c_uint] = ACTIONS(5410), + [anon_sym_c_long] = ACTIONS(5410), + [anon_sym_c_ulong] = ACTIONS(5410), + [anon_sym_c_longlong] = ACTIONS(5410), + [anon_sym_c_ulonglong] = ACTIONS(5410), + [anon_sym_c_float] = ACTIONS(5410), + [anon_sym_c_double] = ACTIONS(5410), + [anon_sym_c_longdouble] = ACTIONS(5410), + [anon_sym_return] = ACTIONS(5410), + [anon_sym_yield] = ACTIONS(5410), + [anon_sym_break] = ACTIONS(5410), + [anon_sym_continue] = ACTIONS(5410), + [anon_sym_defer] = ACTIONS(5410), + [anon_sym_errdefer] = ACTIONS(5410), + [anon_sym_if] = ACTIONS(5410), + [anon_sym_else] = ACTIONS(5410), + [anon_sym_while] = ACTIONS(5410), + [anon_sym_expand] = ACTIONS(5410), + [anon_sym_for] = ACTIONS(5410), + [anon_sym_match] = ACTIONS(5410), + [anon_sym_AMP] = ACTIONS(5408), + [anon_sym_TILDE] = ACTIONS(5408), + [anon_sym_try] = ACTIONS(5410), + [anon_sym_DOT] = ACTIONS(5408), + [anon_sym_true] = ACTIONS(5410), + [anon_sym_false] = ACTIONS(5410), + [anon_sym_null] = ACTIONS(5410), + [anon_sym_unreachable] = ACTIONS(5410), + [anon_sym_undefined] = ACTIONS(5410), + [sym_sink] = ACTIONS(5410), + [sym_integer] = ACTIONS(5410), + [sym_float] = ACTIONS(5408), + [anon_sym_DQUOTE] = ACTIONS(5408), + [sym_multiline_string] = ACTIONS(5408), + [sym_character] = ACTIONS(5408), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5408), + }, + [STATE(6639)] = { + [ts_builtin_sym_end] = ACTIONS(5458), + [sym_identifier] = ACTIONS(5460), + [anon_sym_import] = ACTIONS(5460), + [anon_sym_test] = ACTIONS(5460), + [anon_sym_hide] = ACTIONS(5460), + [anon_sym_func] = ACTIONS(5460), + [anon_sym_BANG] = ACTIONS(5458), + [anon_sym_struct] = ACTIONS(5460), + [anon_sym_LPAREN] = ACTIONS(5458), + [anon_sym_RPAREN] = ACTIONS(5458), + [anon_sym_LBRACE] = ACTIONS(5458), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_DASH] = ACTIONS(5458), + [anon_sym_DOLLAR] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_void] = ACTIONS(5460), + [anon_sym_noreturn] = ACTIONS(5460), + [anon_sym_type] = ACTIONS(5460), + [anon_sym_anyopaque] = ACTIONS(5460), + [anon_sym_bool] = ACTIONS(5460), + [anon_sym_int] = ACTIONS(5460), + [anon_sym_uint] = ACTIONS(5460), + [anon_sym_float] = ACTIONS(5460), + [anon_sym_range] = ACTIONS(5460), + [anon_sym_i8] = ACTIONS(5460), + [anon_sym_i16] = ACTIONS(5460), + [anon_sym_i32] = ACTIONS(5460), + [anon_sym_i64] = ACTIONS(5460), + [anon_sym_u8] = ACTIONS(5460), + [anon_sym_u16] = ACTIONS(5460), + [anon_sym_u32] = ACTIONS(5460), + [anon_sym_u64] = ACTIONS(5460), + [anon_sym_isize] = ACTIONS(5460), + [anon_sym_usize] = ACTIONS(5460), + [anon_sym_f32] = ACTIONS(5460), + [anon_sym_f64] = ACTIONS(5460), + [anon_sym_c_char] = ACTIONS(5460), + [anon_sym_c_schar] = ACTIONS(5460), + [anon_sym_c_uchar] = ACTIONS(5460), + [anon_sym_c_short] = ACTIONS(5460), + [anon_sym_c_ushort] = ACTIONS(5460), + [anon_sym_c_int] = ACTIONS(5460), + [anon_sym_c_uint] = ACTIONS(5460), + [anon_sym_c_long] = ACTIONS(5460), + [anon_sym_c_ulong] = ACTIONS(5460), + [anon_sym_c_longlong] = ACTIONS(5460), + [anon_sym_c_ulonglong] = ACTIONS(5460), + [anon_sym_c_float] = ACTIONS(5460), + [anon_sym_c_double] = ACTIONS(5460), + [anon_sym_c_longdouble] = ACTIONS(5460), + [anon_sym_return] = ACTIONS(5460), + [anon_sym_yield] = ACTIONS(5460), + [anon_sym_break] = ACTIONS(5460), + [anon_sym_continue] = ACTIONS(5460), + [anon_sym_defer] = ACTIONS(5460), + [anon_sym_errdefer] = ACTIONS(5460), + [anon_sym_if] = ACTIONS(5460), + [anon_sym_else] = ACTIONS(5460), + [anon_sym_while] = ACTIONS(5460), + [anon_sym_expand] = ACTIONS(5460), + [anon_sym_for] = ACTIONS(5460), + [anon_sym_match] = ACTIONS(5460), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_TILDE] = ACTIONS(5458), + [anon_sym_try] = ACTIONS(5460), + [anon_sym_DOT] = ACTIONS(5458), + [anon_sym_true] = ACTIONS(5460), + [anon_sym_false] = ACTIONS(5460), + [anon_sym_null] = ACTIONS(5460), + [anon_sym_unreachable] = ACTIONS(5460), + [anon_sym_undefined] = ACTIONS(5460), + [sym_sink] = ACTIONS(5460), + [sym_integer] = ACTIONS(5460), + [sym_float] = ACTIONS(5458), + [anon_sym_DQUOTE] = ACTIONS(5458), + [sym_multiline_string] = ACTIONS(5458), + [sym_character] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5458), + }, + [STATE(6640)] = { + [ts_builtin_sym_end] = ACTIONS(5462), + [sym_identifier] = ACTIONS(5464), + [anon_sym_import] = ACTIONS(5464), + [anon_sym_test] = ACTIONS(5464), + [anon_sym_hide] = ACTIONS(5464), + [anon_sym_func] = ACTIONS(5464), + [anon_sym_BANG] = ACTIONS(5462), + [anon_sym_struct] = ACTIONS(5464), + [anon_sym_LPAREN] = ACTIONS(5462), + [anon_sym_RPAREN] = ACTIONS(5462), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_DASH] = ACTIONS(5462), + [anon_sym_DOLLAR] = ACTIONS(5462), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_void] = ACTIONS(5464), + [anon_sym_noreturn] = ACTIONS(5464), + [anon_sym_type] = ACTIONS(5464), + [anon_sym_anyopaque] = ACTIONS(5464), + [anon_sym_bool] = ACTIONS(5464), + [anon_sym_int] = ACTIONS(5464), + [anon_sym_uint] = ACTIONS(5464), + [anon_sym_float] = ACTIONS(5464), + [anon_sym_range] = ACTIONS(5464), + [anon_sym_i8] = ACTIONS(5464), + [anon_sym_i16] = ACTIONS(5464), + [anon_sym_i32] = ACTIONS(5464), + [anon_sym_i64] = ACTIONS(5464), + [anon_sym_u8] = ACTIONS(5464), + [anon_sym_u16] = ACTIONS(5464), + [anon_sym_u32] = ACTIONS(5464), + [anon_sym_u64] = ACTIONS(5464), + [anon_sym_isize] = ACTIONS(5464), + [anon_sym_usize] = ACTIONS(5464), + [anon_sym_f32] = ACTIONS(5464), + [anon_sym_f64] = ACTIONS(5464), + [anon_sym_c_char] = ACTIONS(5464), + [anon_sym_c_schar] = ACTIONS(5464), + [anon_sym_c_uchar] = ACTIONS(5464), + [anon_sym_c_short] = ACTIONS(5464), + [anon_sym_c_ushort] = ACTIONS(5464), + [anon_sym_c_int] = ACTIONS(5464), + [anon_sym_c_uint] = ACTIONS(5464), + [anon_sym_c_long] = ACTIONS(5464), + [anon_sym_c_ulong] = ACTIONS(5464), + [anon_sym_c_longlong] = ACTIONS(5464), + [anon_sym_c_ulonglong] = ACTIONS(5464), + [anon_sym_c_float] = ACTIONS(5464), + [anon_sym_c_double] = ACTIONS(5464), + [anon_sym_c_longdouble] = ACTIONS(5464), + [anon_sym_return] = ACTIONS(5464), + [anon_sym_yield] = ACTIONS(5464), + [anon_sym_break] = ACTIONS(5464), + [anon_sym_continue] = ACTIONS(5464), + [anon_sym_defer] = ACTIONS(5464), + [anon_sym_errdefer] = ACTIONS(5464), + [anon_sym_if] = ACTIONS(5464), + [anon_sym_else] = ACTIONS(5464), + [anon_sym_while] = ACTIONS(5464), + [anon_sym_expand] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(5464), + [anon_sym_match] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_TILDE] = ACTIONS(5462), + [anon_sym_try] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5462), + [anon_sym_true] = ACTIONS(5464), + [anon_sym_false] = ACTIONS(5464), + [anon_sym_null] = ACTIONS(5464), + [anon_sym_unreachable] = ACTIONS(5464), + [anon_sym_undefined] = ACTIONS(5464), + [sym_sink] = ACTIONS(5464), + [sym_integer] = ACTIONS(5464), + [sym_float] = ACTIONS(5462), + [anon_sym_DQUOTE] = ACTIONS(5462), + [sym_multiline_string] = ACTIONS(5462), + [sym_character] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5462), + }, + [STATE(6641)] = { + [ts_builtin_sym_end] = ACTIONS(5466), + [sym_identifier] = ACTIONS(5468), + [anon_sym_import] = ACTIONS(5468), + [anon_sym_test] = ACTIONS(5468), + [anon_sym_hide] = ACTIONS(5468), + [anon_sym_func] = ACTIONS(5468), + [anon_sym_BANG] = ACTIONS(5466), + [anon_sym_struct] = ACTIONS(5468), + [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_RPAREN] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5466), + [anon_sym_RBRACE] = ACTIONS(5466), + [anon_sym_DASH] = ACTIONS(5466), + [anon_sym_DOLLAR] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_void] = ACTIONS(5468), + [anon_sym_noreturn] = ACTIONS(5468), + [anon_sym_type] = ACTIONS(5468), + [anon_sym_anyopaque] = ACTIONS(5468), + [anon_sym_bool] = ACTIONS(5468), + [anon_sym_int] = ACTIONS(5468), + [anon_sym_uint] = ACTIONS(5468), + [anon_sym_float] = ACTIONS(5468), + [anon_sym_range] = ACTIONS(5468), + [anon_sym_i8] = ACTIONS(5468), + [anon_sym_i16] = ACTIONS(5468), + [anon_sym_i32] = ACTIONS(5468), + [anon_sym_i64] = ACTIONS(5468), + [anon_sym_u8] = ACTIONS(5468), + [anon_sym_u16] = ACTIONS(5468), + [anon_sym_u32] = ACTIONS(5468), + [anon_sym_u64] = ACTIONS(5468), + [anon_sym_isize] = ACTIONS(5468), + [anon_sym_usize] = ACTIONS(5468), + [anon_sym_f32] = ACTIONS(5468), + [anon_sym_f64] = ACTIONS(5468), + [anon_sym_c_char] = ACTIONS(5468), + [anon_sym_c_schar] = ACTIONS(5468), + [anon_sym_c_uchar] = ACTIONS(5468), + [anon_sym_c_short] = ACTIONS(5468), + [anon_sym_c_ushort] = ACTIONS(5468), + [anon_sym_c_int] = ACTIONS(5468), + [anon_sym_c_uint] = ACTIONS(5468), + [anon_sym_c_long] = ACTIONS(5468), + [anon_sym_c_ulong] = ACTIONS(5468), + [anon_sym_c_longlong] = ACTIONS(5468), + [anon_sym_c_ulonglong] = ACTIONS(5468), + [anon_sym_c_float] = ACTIONS(5468), + [anon_sym_c_double] = ACTIONS(5468), + [anon_sym_c_longdouble] = ACTIONS(5468), + [anon_sym_return] = ACTIONS(5468), + [anon_sym_yield] = ACTIONS(5468), + [anon_sym_break] = ACTIONS(5468), + [anon_sym_continue] = ACTIONS(5468), + [anon_sym_defer] = ACTIONS(5468), + [anon_sym_errdefer] = ACTIONS(5468), + [anon_sym_if] = ACTIONS(5468), + [anon_sym_else] = ACTIONS(5468), + [anon_sym_while] = ACTIONS(5468), + [anon_sym_expand] = ACTIONS(5468), + [anon_sym_for] = ACTIONS(5468), + [anon_sym_match] = ACTIONS(5468), + [anon_sym_AMP] = ACTIONS(5466), + [anon_sym_TILDE] = ACTIONS(5466), + [anon_sym_try] = ACTIONS(5468), + [anon_sym_DOT] = ACTIONS(5466), + [anon_sym_true] = ACTIONS(5468), + [anon_sym_false] = ACTIONS(5468), + [anon_sym_null] = ACTIONS(5468), + [anon_sym_unreachable] = ACTIONS(5468), + [anon_sym_undefined] = ACTIONS(5468), + [sym_sink] = ACTIONS(5468), + [sym_integer] = ACTIONS(5468), + [sym_float] = ACTIONS(5466), + [anon_sym_DQUOTE] = ACTIONS(5466), + [sym_multiline_string] = ACTIONS(5466), + [sym_character] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5466), + }, + [STATE(6642)] = { + [ts_builtin_sym_end] = ACTIONS(5470), + [sym_identifier] = ACTIONS(5472), + [anon_sym_import] = ACTIONS(5472), + [anon_sym_test] = ACTIONS(5472), + [anon_sym_hide] = ACTIONS(5472), + [anon_sym_func] = ACTIONS(5472), + [anon_sym_BANG] = ACTIONS(5470), + [anon_sym_struct] = ACTIONS(5472), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_DASH] = ACTIONS(5470), + [anon_sym_DOLLAR] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_void] = ACTIONS(5472), + [anon_sym_noreturn] = ACTIONS(5472), + [anon_sym_type] = ACTIONS(5472), + [anon_sym_anyopaque] = ACTIONS(5472), + [anon_sym_bool] = ACTIONS(5472), + [anon_sym_int] = ACTIONS(5472), + [anon_sym_uint] = ACTIONS(5472), + [anon_sym_float] = ACTIONS(5472), + [anon_sym_range] = ACTIONS(5472), + [anon_sym_i8] = ACTIONS(5472), + [anon_sym_i16] = ACTIONS(5472), + [anon_sym_i32] = ACTIONS(5472), + [anon_sym_i64] = ACTIONS(5472), + [anon_sym_u8] = ACTIONS(5472), + [anon_sym_u16] = ACTIONS(5472), + [anon_sym_u32] = ACTIONS(5472), + [anon_sym_u64] = ACTIONS(5472), + [anon_sym_isize] = ACTIONS(5472), + [anon_sym_usize] = ACTIONS(5472), + [anon_sym_f32] = ACTIONS(5472), + [anon_sym_f64] = ACTIONS(5472), + [anon_sym_c_char] = ACTIONS(5472), + [anon_sym_c_schar] = ACTIONS(5472), + [anon_sym_c_uchar] = ACTIONS(5472), + [anon_sym_c_short] = ACTIONS(5472), + [anon_sym_c_ushort] = ACTIONS(5472), + [anon_sym_c_int] = ACTIONS(5472), + [anon_sym_c_uint] = ACTIONS(5472), + [anon_sym_c_long] = ACTIONS(5472), + [anon_sym_c_ulong] = ACTIONS(5472), + [anon_sym_c_longlong] = ACTIONS(5472), + [anon_sym_c_ulonglong] = ACTIONS(5472), + [anon_sym_c_float] = ACTIONS(5472), + [anon_sym_c_double] = ACTIONS(5472), + [anon_sym_c_longdouble] = ACTIONS(5472), + [anon_sym_return] = ACTIONS(5472), + [anon_sym_yield] = ACTIONS(5472), + [anon_sym_break] = ACTIONS(5472), + [anon_sym_continue] = ACTIONS(5472), + [anon_sym_defer] = ACTIONS(5472), + [anon_sym_errdefer] = ACTIONS(5472), + [anon_sym_if] = ACTIONS(5472), + [anon_sym_else] = ACTIONS(5472), + [anon_sym_while] = ACTIONS(5472), + [anon_sym_expand] = ACTIONS(5472), + [anon_sym_for] = ACTIONS(5472), + [anon_sym_match] = ACTIONS(5472), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_TILDE] = ACTIONS(5470), + [anon_sym_try] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5470), + [anon_sym_true] = ACTIONS(5472), + [anon_sym_false] = ACTIONS(5472), + [anon_sym_null] = ACTIONS(5472), + [anon_sym_unreachable] = ACTIONS(5472), + [anon_sym_undefined] = ACTIONS(5472), + [sym_sink] = ACTIONS(5472), + [sym_integer] = ACTIONS(5472), + [sym_float] = ACTIONS(5470), + [anon_sym_DQUOTE] = ACTIONS(5470), + [sym_multiline_string] = ACTIONS(5470), + [sym_character] = ACTIONS(5470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5470), + }, + [STATE(6643)] = { + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_identifier] = ACTIONS(4550), + [anon_sym_import] = ACTIONS(4550), + [anon_sym_test] = ACTIONS(4550), + [anon_sym_hide] = ACTIONS(4550), + [anon_sym_func] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4548), + [anon_sym_struct] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_void] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_type] = ACTIONS(4550), + [anon_sym_anyopaque] = ACTIONS(4550), + [anon_sym_bool] = ACTIONS(4550), + [anon_sym_int] = ACTIONS(4550), + [anon_sym_uint] = ACTIONS(4550), + [anon_sym_float] = ACTIONS(4550), + [anon_sym_range] = ACTIONS(4550), + [anon_sym_i8] = ACTIONS(4550), + [anon_sym_i16] = ACTIONS(4550), + [anon_sym_i32] = ACTIONS(4550), + [anon_sym_i64] = ACTIONS(4550), + [anon_sym_u8] = ACTIONS(4550), + [anon_sym_u16] = ACTIONS(4550), + [anon_sym_u32] = ACTIONS(4550), + [anon_sym_u64] = ACTIONS(4550), + [anon_sym_isize] = ACTIONS(4550), + [anon_sym_usize] = ACTIONS(4550), + [anon_sym_f32] = ACTIONS(4550), + [anon_sym_f64] = ACTIONS(4550), + [anon_sym_c_char] = ACTIONS(4550), + [anon_sym_c_schar] = ACTIONS(4550), + [anon_sym_c_uchar] = ACTIONS(4550), + [anon_sym_c_short] = ACTIONS(4550), + [anon_sym_c_ushort] = ACTIONS(4550), + [anon_sym_c_int] = ACTIONS(4550), + [anon_sym_c_uint] = ACTIONS(4550), + [anon_sym_c_long] = ACTIONS(4550), + [anon_sym_c_ulong] = ACTIONS(4550), + [anon_sym_c_longlong] = ACTIONS(4550), + [anon_sym_c_ulonglong] = ACTIONS(4550), + [anon_sym_c_float] = ACTIONS(4550), + [anon_sym_c_double] = ACTIONS(4550), + [anon_sym_c_longdouble] = ACTIONS(4550), + [anon_sym_return] = ACTIONS(4550), + [anon_sym_yield] = ACTIONS(4550), + [anon_sym_break] = ACTIONS(4550), + [anon_sym_continue] = ACTIONS(4550), + [anon_sym_defer] = ACTIONS(4550), + [anon_sym_errdefer] = ACTIONS(4550), + [anon_sym_if] = ACTIONS(4550), + [anon_sym_else] = ACTIONS(4550), + [anon_sym_while] = ACTIONS(4550), + [anon_sym_expand] = ACTIONS(4550), + [anon_sym_for] = ACTIONS(4550), + [anon_sym_match] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_try] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_true] = ACTIONS(4550), + [anon_sym_false] = ACTIONS(4550), + [anon_sym_null] = ACTIONS(4550), + [anon_sym_unreachable] = ACTIONS(4550), + [anon_sym_undefined] = ACTIONS(4550), + [sym_sink] = ACTIONS(4550), + [sym_integer] = ACTIONS(4550), + [sym_float] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(4548), + [sym_multiline_string] = ACTIONS(4548), + [sym_character] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4548), + }, + [STATE(6644)] = { + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_identifier] = ACTIONS(4554), + [anon_sym_import] = ACTIONS(4554), + [anon_sym_test] = ACTIONS(4554), + [anon_sym_hide] = ACTIONS(4554), + [anon_sym_func] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4552), + [anon_sym_struct] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_void] = ACTIONS(4554), + [anon_sym_noreturn] = ACTIONS(4554), + [anon_sym_type] = ACTIONS(4554), + [anon_sym_anyopaque] = ACTIONS(4554), + [anon_sym_bool] = ACTIONS(4554), + [anon_sym_int] = ACTIONS(4554), + [anon_sym_uint] = ACTIONS(4554), + [anon_sym_float] = ACTIONS(4554), + [anon_sym_range] = ACTIONS(4554), + [anon_sym_i8] = ACTIONS(4554), + [anon_sym_i16] = ACTIONS(4554), + [anon_sym_i32] = ACTIONS(4554), + [anon_sym_i64] = ACTIONS(4554), + [anon_sym_u8] = ACTIONS(4554), + [anon_sym_u16] = ACTIONS(4554), + [anon_sym_u32] = ACTIONS(4554), + [anon_sym_u64] = ACTIONS(4554), + [anon_sym_isize] = ACTIONS(4554), + [anon_sym_usize] = ACTIONS(4554), + [anon_sym_f32] = ACTIONS(4554), + [anon_sym_f64] = ACTIONS(4554), + [anon_sym_c_char] = ACTIONS(4554), + [anon_sym_c_schar] = ACTIONS(4554), + [anon_sym_c_uchar] = ACTIONS(4554), + [anon_sym_c_short] = ACTIONS(4554), + [anon_sym_c_ushort] = ACTIONS(4554), + [anon_sym_c_int] = ACTIONS(4554), + [anon_sym_c_uint] = ACTIONS(4554), + [anon_sym_c_long] = ACTIONS(4554), + [anon_sym_c_ulong] = ACTIONS(4554), + [anon_sym_c_longlong] = ACTIONS(4554), + [anon_sym_c_ulonglong] = ACTIONS(4554), + [anon_sym_c_float] = ACTIONS(4554), + [anon_sym_c_double] = ACTIONS(4554), + [anon_sym_c_longdouble] = ACTIONS(4554), + [anon_sym_return] = ACTIONS(4554), + [anon_sym_yield] = ACTIONS(4554), + [anon_sym_break] = ACTIONS(4554), + [anon_sym_continue] = ACTIONS(4554), + [anon_sym_defer] = ACTIONS(4554), + [anon_sym_errdefer] = ACTIONS(4554), + [anon_sym_if] = ACTIONS(4554), + [anon_sym_else] = ACTIONS(4554), + [anon_sym_while] = ACTIONS(4554), + [anon_sym_expand] = ACTIONS(4554), + [anon_sym_for] = ACTIONS(4554), + [anon_sym_match] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4552), + [anon_sym_try] = ACTIONS(4554), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_true] = ACTIONS(4554), + [anon_sym_false] = ACTIONS(4554), + [anon_sym_null] = ACTIONS(4554), + [anon_sym_unreachable] = ACTIONS(4554), + [anon_sym_undefined] = ACTIONS(4554), + [sym_sink] = ACTIONS(4554), + [sym_integer] = ACTIONS(4554), + [sym_float] = ACTIONS(4552), + [anon_sym_DQUOTE] = ACTIONS(4552), + [sym_multiline_string] = ACTIONS(4552), + [sym_character] = ACTIONS(4552), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4552), + }, + [STATE(6645)] = { + [ts_builtin_sym_end] = ACTIONS(4556), + [sym_identifier] = ACTIONS(4558), + [anon_sym_import] = ACTIONS(4558), + [anon_sym_test] = ACTIONS(4558), + [anon_sym_hide] = ACTIONS(4558), + [anon_sym_func] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4556), + [anon_sym_struct] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_void] = ACTIONS(4558), + [anon_sym_noreturn] = ACTIONS(4558), + [anon_sym_type] = ACTIONS(4558), + [anon_sym_anyopaque] = ACTIONS(4558), + [anon_sym_bool] = ACTIONS(4558), + [anon_sym_int] = ACTIONS(4558), + [anon_sym_uint] = ACTIONS(4558), + [anon_sym_float] = ACTIONS(4558), + [anon_sym_range] = ACTIONS(4558), + [anon_sym_i8] = ACTIONS(4558), + [anon_sym_i16] = ACTIONS(4558), + [anon_sym_i32] = ACTIONS(4558), + [anon_sym_i64] = ACTIONS(4558), + [anon_sym_u8] = ACTIONS(4558), + [anon_sym_u16] = ACTIONS(4558), + [anon_sym_u32] = ACTIONS(4558), + [anon_sym_u64] = ACTIONS(4558), + [anon_sym_isize] = ACTIONS(4558), + [anon_sym_usize] = ACTIONS(4558), + [anon_sym_f32] = ACTIONS(4558), + [anon_sym_f64] = ACTIONS(4558), + [anon_sym_c_char] = ACTIONS(4558), + [anon_sym_c_schar] = ACTIONS(4558), + [anon_sym_c_uchar] = ACTIONS(4558), + [anon_sym_c_short] = ACTIONS(4558), + [anon_sym_c_ushort] = ACTIONS(4558), + [anon_sym_c_int] = ACTIONS(4558), + [anon_sym_c_uint] = ACTIONS(4558), + [anon_sym_c_long] = ACTIONS(4558), + [anon_sym_c_ulong] = ACTIONS(4558), + [anon_sym_c_longlong] = ACTIONS(4558), + [anon_sym_c_ulonglong] = ACTIONS(4558), + [anon_sym_c_float] = ACTIONS(4558), + [anon_sym_c_double] = ACTIONS(4558), + [anon_sym_c_longdouble] = ACTIONS(4558), + [anon_sym_return] = ACTIONS(4558), + [anon_sym_yield] = ACTIONS(4558), + [anon_sym_break] = ACTIONS(4558), + [anon_sym_continue] = ACTIONS(4558), + [anon_sym_defer] = ACTIONS(4558), + [anon_sym_errdefer] = ACTIONS(4558), + [anon_sym_if] = ACTIONS(4558), + [anon_sym_else] = ACTIONS(4558), + [anon_sym_while] = ACTIONS(4558), + [anon_sym_expand] = ACTIONS(4558), + [anon_sym_for] = ACTIONS(4558), + [anon_sym_match] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_TILDE] = ACTIONS(4556), + [anon_sym_try] = ACTIONS(4558), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_true] = ACTIONS(4558), + [anon_sym_false] = ACTIONS(4558), + [anon_sym_null] = ACTIONS(4558), + [anon_sym_unreachable] = ACTIONS(4558), + [anon_sym_undefined] = ACTIONS(4558), + [sym_sink] = ACTIONS(4558), + [sym_integer] = ACTIONS(4558), + [sym_float] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(4556), + [sym_multiline_string] = ACTIONS(4556), + [sym_character] = ACTIONS(4556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4556), + }, + [STATE(6646)] = { + [ts_builtin_sym_end] = ACTIONS(4560), + [sym_identifier] = ACTIONS(4562), + [anon_sym_import] = ACTIONS(4562), + [anon_sym_test] = ACTIONS(4562), + [anon_sym_hide] = ACTIONS(4562), + [anon_sym_func] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4560), + [anon_sym_struct] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_void] = ACTIONS(4562), + [anon_sym_noreturn] = ACTIONS(4562), + [anon_sym_type] = ACTIONS(4562), + [anon_sym_anyopaque] = ACTIONS(4562), + [anon_sym_bool] = ACTIONS(4562), + [anon_sym_int] = ACTIONS(4562), + [anon_sym_uint] = ACTIONS(4562), + [anon_sym_float] = ACTIONS(4562), + [anon_sym_range] = ACTIONS(4562), + [anon_sym_i8] = ACTIONS(4562), + [anon_sym_i16] = ACTIONS(4562), + [anon_sym_i32] = ACTIONS(4562), + [anon_sym_i64] = ACTIONS(4562), + [anon_sym_u8] = ACTIONS(4562), + [anon_sym_u16] = ACTIONS(4562), + [anon_sym_u32] = ACTIONS(4562), + [anon_sym_u64] = ACTIONS(4562), + [anon_sym_isize] = ACTIONS(4562), + [anon_sym_usize] = ACTIONS(4562), + [anon_sym_f32] = ACTIONS(4562), + [anon_sym_f64] = ACTIONS(4562), + [anon_sym_c_char] = ACTIONS(4562), + [anon_sym_c_schar] = ACTIONS(4562), + [anon_sym_c_uchar] = ACTIONS(4562), + [anon_sym_c_short] = ACTIONS(4562), + [anon_sym_c_ushort] = ACTIONS(4562), + [anon_sym_c_int] = ACTIONS(4562), + [anon_sym_c_uint] = ACTIONS(4562), + [anon_sym_c_long] = ACTIONS(4562), + [anon_sym_c_ulong] = ACTIONS(4562), + [anon_sym_c_longlong] = ACTIONS(4562), + [anon_sym_c_ulonglong] = ACTIONS(4562), + [anon_sym_c_float] = ACTIONS(4562), + [anon_sym_c_double] = ACTIONS(4562), + [anon_sym_c_longdouble] = ACTIONS(4562), + [anon_sym_return] = ACTIONS(4562), + [anon_sym_yield] = ACTIONS(4562), + [anon_sym_break] = ACTIONS(4562), + [anon_sym_continue] = ACTIONS(4562), + [anon_sym_defer] = ACTIONS(4562), + [anon_sym_errdefer] = ACTIONS(4562), + [anon_sym_if] = ACTIONS(4562), + [anon_sym_else] = ACTIONS(4562), + [anon_sym_while] = ACTIONS(4562), + [anon_sym_expand] = ACTIONS(4562), + [anon_sym_for] = ACTIONS(4562), + [anon_sym_match] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_TILDE] = ACTIONS(4560), + [anon_sym_try] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_true] = ACTIONS(4562), + [anon_sym_false] = ACTIONS(4562), + [anon_sym_null] = ACTIONS(4562), + [anon_sym_unreachable] = ACTIONS(4562), + [anon_sym_undefined] = ACTIONS(4562), + [sym_sink] = ACTIONS(4562), + [sym_integer] = ACTIONS(4562), + [sym_float] = ACTIONS(4560), + [anon_sym_DQUOTE] = ACTIONS(4560), + [sym_multiline_string] = ACTIONS(4560), + [sym_character] = ACTIONS(4560), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4560), + }, + [STATE(6647)] = { + [ts_builtin_sym_end] = ACTIONS(5474), + [sym_identifier] = ACTIONS(5476), + [anon_sym_import] = ACTIONS(5476), + [anon_sym_test] = ACTIONS(5476), + [anon_sym_hide] = ACTIONS(5476), + [anon_sym_func] = ACTIONS(5476), + [anon_sym_BANG] = ACTIONS(5474), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_LPAREN] = ACTIONS(5474), + [anon_sym_RPAREN] = ACTIONS(5474), + [anon_sym_LBRACE] = ACTIONS(5474), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5474), + [anon_sym_DOLLAR] = ACTIONS(5474), + [anon_sym_LBRACK] = ACTIONS(5474), + [anon_sym_void] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym_type] = ACTIONS(5476), + [anon_sym_anyopaque] = ACTIONS(5476), + [anon_sym_bool] = ACTIONS(5476), + [anon_sym_int] = ACTIONS(5476), + [anon_sym_uint] = ACTIONS(5476), + [anon_sym_float] = ACTIONS(5476), + [anon_sym_range] = ACTIONS(5476), + [anon_sym_i8] = ACTIONS(5476), + [anon_sym_i16] = ACTIONS(5476), + [anon_sym_i32] = ACTIONS(5476), + [anon_sym_i64] = ACTIONS(5476), + [anon_sym_u8] = ACTIONS(5476), + [anon_sym_u16] = ACTIONS(5476), + [anon_sym_u32] = ACTIONS(5476), + [anon_sym_u64] = ACTIONS(5476), + [anon_sym_isize] = ACTIONS(5476), + [anon_sym_usize] = ACTIONS(5476), + [anon_sym_f32] = ACTIONS(5476), + [anon_sym_f64] = ACTIONS(5476), + [anon_sym_c_char] = ACTIONS(5476), + [anon_sym_c_schar] = ACTIONS(5476), + [anon_sym_c_uchar] = ACTIONS(5476), + [anon_sym_c_short] = ACTIONS(5476), + [anon_sym_c_ushort] = ACTIONS(5476), + [anon_sym_c_int] = ACTIONS(5476), + [anon_sym_c_uint] = ACTIONS(5476), + [anon_sym_c_long] = ACTIONS(5476), + [anon_sym_c_ulong] = ACTIONS(5476), + [anon_sym_c_longlong] = ACTIONS(5476), + [anon_sym_c_ulonglong] = ACTIONS(5476), + [anon_sym_c_float] = ACTIONS(5476), + [anon_sym_c_double] = ACTIONS(5476), + [anon_sym_c_longdouble] = ACTIONS(5476), + [anon_sym_return] = ACTIONS(5476), + [anon_sym_yield] = ACTIONS(5476), + [anon_sym_break] = ACTIONS(5476), + [anon_sym_continue] = ACTIONS(5476), + [anon_sym_defer] = ACTIONS(5476), + [anon_sym_errdefer] = ACTIONS(5476), + [anon_sym_if] = ACTIONS(5476), + [anon_sym_else] = ACTIONS(5476), + [anon_sym_while] = ACTIONS(5476), + [anon_sym_expand] = ACTIONS(5476), + [anon_sym_for] = ACTIONS(5476), + [anon_sym_match] = ACTIONS(5476), + [anon_sym_AMP] = ACTIONS(5474), + [anon_sym_TILDE] = ACTIONS(5474), + [anon_sym_try] = ACTIONS(5476), + [anon_sym_DOT] = ACTIONS(5474), + [anon_sym_true] = ACTIONS(5476), + [anon_sym_false] = ACTIONS(5476), + [anon_sym_null] = ACTIONS(5476), + [anon_sym_unreachable] = ACTIONS(5476), + [anon_sym_undefined] = ACTIONS(5476), + [sym_sink] = ACTIONS(5476), + [sym_integer] = ACTIONS(5476), + [sym_float] = ACTIONS(5474), + [anon_sym_DQUOTE] = ACTIONS(5474), + [sym_multiline_string] = ACTIONS(5474), + [sym_character] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5474), + }, + [STATE(6648)] = { + [ts_builtin_sym_end] = ACTIONS(5230), + [sym_identifier] = ACTIONS(5232), + [anon_sym_import] = ACTIONS(5232), + [anon_sym_test] = ACTIONS(5232), + [anon_sym_hide] = ACTIONS(5232), + [anon_sym_func] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5230), + [anon_sym_struct] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_void] = ACTIONS(5232), + [anon_sym_noreturn] = ACTIONS(5232), + [anon_sym_type] = ACTIONS(5232), + [anon_sym_anyopaque] = ACTIONS(5232), + [anon_sym_bool] = ACTIONS(5232), + [anon_sym_int] = ACTIONS(5232), + [anon_sym_uint] = ACTIONS(5232), + [anon_sym_float] = ACTIONS(5232), + [anon_sym_range] = ACTIONS(5232), + [anon_sym_i8] = ACTIONS(5232), + [anon_sym_i16] = ACTIONS(5232), + [anon_sym_i32] = ACTIONS(5232), + [anon_sym_i64] = ACTIONS(5232), + [anon_sym_u8] = ACTIONS(5232), + [anon_sym_u16] = ACTIONS(5232), + [anon_sym_u32] = ACTIONS(5232), + [anon_sym_u64] = ACTIONS(5232), + [anon_sym_isize] = ACTIONS(5232), + [anon_sym_usize] = ACTIONS(5232), + [anon_sym_f32] = ACTIONS(5232), + [anon_sym_f64] = ACTIONS(5232), + [anon_sym_c_char] = ACTIONS(5232), + [anon_sym_c_schar] = ACTIONS(5232), + [anon_sym_c_uchar] = ACTIONS(5232), + [anon_sym_c_short] = ACTIONS(5232), + [anon_sym_c_ushort] = ACTIONS(5232), + [anon_sym_c_int] = ACTIONS(5232), + [anon_sym_c_uint] = ACTIONS(5232), + [anon_sym_c_long] = ACTIONS(5232), + [anon_sym_c_ulong] = ACTIONS(5232), + [anon_sym_c_longlong] = ACTIONS(5232), + [anon_sym_c_ulonglong] = ACTIONS(5232), + [anon_sym_c_float] = ACTIONS(5232), + [anon_sym_c_double] = ACTIONS(5232), + [anon_sym_c_longdouble] = ACTIONS(5232), + [anon_sym_return] = ACTIONS(5232), + [anon_sym_yield] = ACTIONS(5232), + [anon_sym_break] = ACTIONS(5232), + [anon_sym_continue] = ACTIONS(5232), + [anon_sym_defer] = ACTIONS(5232), + [anon_sym_errdefer] = ACTIONS(5232), + [anon_sym_if] = ACTIONS(5232), + [anon_sym_else] = ACTIONS(5232), + [anon_sym_while] = ACTIONS(5232), + [anon_sym_expand] = ACTIONS(5232), + [anon_sym_for] = ACTIONS(5232), + [anon_sym_match] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_TILDE] = ACTIONS(5230), + [anon_sym_try] = ACTIONS(5232), + [anon_sym_DOT] = ACTIONS(5230), + [anon_sym_true] = ACTIONS(5232), + [anon_sym_false] = ACTIONS(5232), + [anon_sym_null] = ACTIONS(5232), + [anon_sym_unreachable] = ACTIONS(5232), + [anon_sym_undefined] = ACTIONS(5232), + [sym_sink] = ACTIONS(5232), + [sym_integer] = ACTIONS(5232), + [sym_float] = ACTIONS(5230), + [anon_sym_DQUOTE] = ACTIONS(5230), + [sym_multiline_string] = ACTIONS(5230), + [sym_character] = ACTIONS(5230), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5230), + }, + [STATE(6649)] = { + [ts_builtin_sym_end] = ACTIONS(4986), + [sym_identifier] = ACTIONS(4988), + [anon_sym_import] = ACTIONS(4988), + [anon_sym_test] = ACTIONS(4988), + [anon_sym_hide] = ACTIONS(4988), + [anon_sym_func] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4986), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_void] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym_type] = ACTIONS(4988), + [anon_sym_anyopaque] = ACTIONS(4988), + [anon_sym_bool] = ACTIONS(4988), + [anon_sym_int] = ACTIONS(4988), + [anon_sym_uint] = ACTIONS(4988), + [anon_sym_float] = ACTIONS(4988), + [anon_sym_range] = ACTIONS(4988), + [anon_sym_i8] = ACTIONS(4988), + [anon_sym_i16] = ACTIONS(4988), + [anon_sym_i32] = ACTIONS(4988), + [anon_sym_i64] = ACTIONS(4988), + [anon_sym_u8] = ACTIONS(4988), + [anon_sym_u16] = ACTIONS(4988), + [anon_sym_u32] = ACTIONS(4988), + [anon_sym_u64] = ACTIONS(4988), + [anon_sym_isize] = ACTIONS(4988), + [anon_sym_usize] = ACTIONS(4988), + [anon_sym_f32] = ACTIONS(4988), + [anon_sym_f64] = ACTIONS(4988), + [anon_sym_c_char] = ACTIONS(4988), + [anon_sym_c_schar] = ACTIONS(4988), + [anon_sym_c_uchar] = ACTIONS(4988), + [anon_sym_c_short] = ACTIONS(4988), + [anon_sym_c_ushort] = ACTIONS(4988), + [anon_sym_c_int] = ACTIONS(4988), + [anon_sym_c_uint] = ACTIONS(4988), + [anon_sym_c_long] = ACTIONS(4988), + [anon_sym_c_ulong] = ACTIONS(4988), + [anon_sym_c_longlong] = ACTIONS(4988), + [anon_sym_c_ulonglong] = ACTIONS(4988), + [anon_sym_c_float] = ACTIONS(4988), + [anon_sym_c_double] = ACTIONS(4988), + [anon_sym_c_longdouble] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_defer] = ACTIONS(4988), + [anon_sym_errdefer] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_while] = ACTIONS(4988), + [anon_sym_expand] = ACTIONS(4988), + [anon_sym_for] = ACTIONS(4988), + [anon_sym_match] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_TILDE] = ACTIONS(4986), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_null] = ACTIONS(4988), + [anon_sym_unreachable] = ACTIONS(4988), + [anon_sym_undefined] = ACTIONS(4988), + [sym_sink] = ACTIONS(4988), + [sym_integer] = ACTIONS(4988), + [sym_float] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(4986), + [sym_multiline_string] = ACTIONS(4986), + [sym_character] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4986), + }, + [STATE(6650)] = { + [ts_builtin_sym_end] = ACTIONS(5336), + [sym_identifier] = ACTIONS(5338), + [anon_sym_import] = ACTIONS(5338), + [anon_sym_test] = ACTIONS(5338), + [anon_sym_hide] = ACTIONS(5338), + [anon_sym_func] = ACTIONS(5338), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_struct] = ACTIONS(5338), + [anon_sym_LPAREN] = ACTIONS(5336), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_LBRACE] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5336), + [anon_sym_void] = ACTIONS(5338), + [anon_sym_noreturn] = ACTIONS(5338), + [anon_sym_type] = ACTIONS(5338), + [anon_sym_anyopaque] = ACTIONS(5338), + [anon_sym_bool] = ACTIONS(5338), + [anon_sym_int] = ACTIONS(5338), + [anon_sym_uint] = ACTIONS(5338), + [anon_sym_float] = ACTIONS(5338), + [anon_sym_range] = ACTIONS(5338), + [anon_sym_i8] = ACTIONS(5338), + [anon_sym_i16] = ACTIONS(5338), + [anon_sym_i32] = ACTIONS(5338), + [anon_sym_i64] = ACTIONS(5338), + [anon_sym_u8] = ACTIONS(5338), + [anon_sym_u16] = ACTIONS(5338), + [anon_sym_u32] = ACTIONS(5338), + [anon_sym_u64] = ACTIONS(5338), + [anon_sym_isize] = ACTIONS(5338), + [anon_sym_usize] = ACTIONS(5338), + [anon_sym_f32] = ACTIONS(5338), + [anon_sym_f64] = ACTIONS(5338), + [anon_sym_c_char] = ACTIONS(5338), + [anon_sym_c_schar] = ACTIONS(5338), + [anon_sym_c_uchar] = ACTIONS(5338), + [anon_sym_c_short] = ACTIONS(5338), + [anon_sym_c_ushort] = ACTIONS(5338), + [anon_sym_c_int] = ACTIONS(5338), + [anon_sym_c_uint] = ACTIONS(5338), + [anon_sym_c_long] = ACTIONS(5338), + [anon_sym_c_ulong] = ACTIONS(5338), + [anon_sym_c_longlong] = ACTIONS(5338), + [anon_sym_c_ulonglong] = ACTIONS(5338), + [anon_sym_c_float] = ACTIONS(5338), + [anon_sym_c_double] = ACTIONS(5338), + [anon_sym_c_longdouble] = ACTIONS(5338), + [anon_sym_return] = ACTIONS(5338), + [anon_sym_yield] = ACTIONS(5338), + [anon_sym_break] = ACTIONS(5338), + [anon_sym_continue] = ACTIONS(5338), + [anon_sym_defer] = ACTIONS(5338), + [anon_sym_errdefer] = ACTIONS(5338), + [anon_sym_if] = ACTIONS(5338), + [anon_sym_else] = ACTIONS(5338), + [anon_sym_while] = ACTIONS(5338), + [anon_sym_expand] = ACTIONS(5338), + [anon_sym_for] = ACTIONS(5338), + [anon_sym_match] = ACTIONS(5338), + [anon_sym_AMP] = ACTIONS(5336), + [anon_sym_TILDE] = ACTIONS(5336), + [anon_sym_try] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5336), + [anon_sym_true] = ACTIONS(5338), + [anon_sym_false] = ACTIONS(5338), + [anon_sym_null] = ACTIONS(5338), + [anon_sym_unreachable] = ACTIONS(5338), + [anon_sym_undefined] = ACTIONS(5338), + [sym_sink] = ACTIONS(5338), + [sym_integer] = ACTIONS(5338), + [sym_float] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(5336), + [sym_multiline_string] = ACTIONS(5336), + [sym_character] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5336), + }, + [STATE(6651)] = { + [ts_builtin_sym_end] = ACTIONS(4844), + [sym_identifier] = ACTIONS(4846), + [anon_sym_import] = ACTIONS(4846), + [anon_sym_test] = ACTIONS(4846), + [anon_sym_hide] = ACTIONS(4846), + [anon_sym_func] = ACTIONS(4846), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_struct] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_void] = ACTIONS(4846), + [anon_sym_noreturn] = ACTIONS(4846), + [anon_sym_type] = ACTIONS(4846), + [anon_sym_anyopaque] = ACTIONS(4846), + [anon_sym_bool] = ACTIONS(4846), + [anon_sym_int] = ACTIONS(4846), + [anon_sym_uint] = ACTIONS(4846), + [anon_sym_float] = ACTIONS(4846), + [anon_sym_range] = ACTIONS(4846), + [anon_sym_i8] = ACTIONS(4846), + [anon_sym_i16] = ACTIONS(4846), + [anon_sym_i32] = ACTIONS(4846), + [anon_sym_i64] = ACTIONS(4846), + [anon_sym_u8] = ACTIONS(4846), + [anon_sym_u16] = ACTIONS(4846), + [anon_sym_u32] = ACTIONS(4846), + [anon_sym_u64] = ACTIONS(4846), + [anon_sym_isize] = ACTIONS(4846), + [anon_sym_usize] = ACTIONS(4846), + [anon_sym_f32] = ACTIONS(4846), + [anon_sym_f64] = ACTIONS(4846), + [anon_sym_c_char] = ACTIONS(4846), + [anon_sym_c_schar] = ACTIONS(4846), + [anon_sym_c_uchar] = ACTIONS(4846), + [anon_sym_c_short] = ACTIONS(4846), + [anon_sym_c_ushort] = ACTIONS(4846), + [anon_sym_c_int] = ACTIONS(4846), + [anon_sym_c_uint] = ACTIONS(4846), + [anon_sym_c_long] = ACTIONS(4846), + [anon_sym_c_ulong] = ACTIONS(4846), + [anon_sym_c_longlong] = ACTIONS(4846), + [anon_sym_c_ulonglong] = ACTIONS(4846), + [anon_sym_c_float] = ACTIONS(4846), + [anon_sym_c_double] = ACTIONS(4846), + [anon_sym_c_longdouble] = ACTIONS(4846), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_yield] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_defer] = ACTIONS(4846), + [anon_sym_errdefer] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_while] = ACTIONS(4846), + [anon_sym_expand] = ACTIONS(4846), + [anon_sym_for] = ACTIONS(4846), + [anon_sym_match] = ACTIONS(4846), + [anon_sym_AMP] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_unreachable] = ACTIONS(4846), + [anon_sym_undefined] = ACTIONS(4846), + [sym_sink] = ACTIONS(4846), + [sym_integer] = ACTIONS(4846), + [sym_float] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [sym_multiline_string] = ACTIONS(4844), + [sym_character] = ACTIONS(4844), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4844), + }, + [STATE(6652)] = { + [ts_builtin_sym_end] = ACTIONS(4848), + [sym_identifier] = ACTIONS(4850), + [anon_sym_import] = ACTIONS(4850), + [anon_sym_test] = ACTIONS(4850), + [anon_sym_hide] = ACTIONS(4850), + [anon_sym_func] = ACTIONS(4850), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_struct] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_void] = ACTIONS(4850), + [anon_sym_noreturn] = ACTIONS(4850), + [anon_sym_type] = ACTIONS(4850), + [anon_sym_anyopaque] = ACTIONS(4850), + [anon_sym_bool] = ACTIONS(4850), + [anon_sym_int] = ACTIONS(4850), + [anon_sym_uint] = ACTIONS(4850), + [anon_sym_float] = ACTIONS(4850), + [anon_sym_range] = ACTIONS(4850), + [anon_sym_i8] = ACTIONS(4850), + [anon_sym_i16] = ACTIONS(4850), + [anon_sym_i32] = ACTIONS(4850), + [anon_sym_i64] = ACTIONS(4850), + [anon_sym_u8] = ACTIONS(4850), + [anon_sym_u16] = ACTIONS(4850), + [anon_sym_u32] = ACTIONS(4850), + [anon_sym_u64] = ACTIONS(4850), + [anon_sym_isize] = ACTIONS(4850), + [anon_sym_usize] = ACTIONS(4850), + [anon_sym_f32] = ACTIONS(4850), + [anon_sym_f64] = ACTIONS(4850), + [anon_sym_c_char] = ACTIONS(4850), + [anon_sym_c_schar] = ACTIONS(4850), + [anon_sym_c_uchar] = ACTIONS(4850), + [anon_sym_c_short] = ACTIONS(4850), + [anon_sym_c_ushort] = ACTIONS(4850), + [anon_sym_c_int] = ACTIONS(4850), + [anon_sym_c_uint] = ACTIONS(4850), + [anon_sym_c_long] = ACTIONS(4850), + [anon_sym_c_ulong] = ACTIONS(4850), + [anon_sym_c_longlong] = ACTIONS(4850), + [anon_sym_c_ulonglong] = ACTIONS(4850), + [anon_sym_c_float] = ACTIONS(4850), + [anon_sym_c_double] = ACTIONS(4850), + [anon_sym_c_longdouble] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_yield] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_defer] = ACTIONS(4850), + [anon_sym_errdefer] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_expand] = ACTIONS(4850), + [anon_sym_for] = ACTIONS(4850), + [anon_sym_match] = ACTIONS(4850), + [anon_sym_AMP] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_unreachable] = ACTIONS(4850), + [anon_sym_undefined] = ACTIONS(4850), + [sym_sink] = ACTIONS(4850), + [sym_integer] = ACTIONS(4850), + [sym_float] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym_multiline_string] = ACTIONS(4848), + [sym_character] = ACTIONS(4848), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4848), + }, + [STATE(6653)] = { + [ts_builtin_sym_end] = ACTIONS(4852), + [sym_identifier] = ACTIONS(4854), + [anon_sym_import] = ACTIONS(4854), + [anon_sym_test] = ACTIONS(4854), + [anon_sym_hide] = ACTIONS(4854), + [anon_sym_func] = ACTIONS(4854), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_struct] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_void] = ACTIONS(4854), + [anon_sym_noreturn] = ACTIONS(4854), + [anon_sym_type] = ACTIONS(4854), + [anon_sym_anyopaque] = ACTIONS(4854), + [anon_sym_bool] = ACTIONS(4854), + [anon_sym_int] = ACTIONS(4854), + [anon_sym_uint] = ACTIONS(4854), + [anon_sym_float] = ACTIONS(4854), + [anon_sym_range] = ACTIONS(4854), + [anon_sym_i8] = ACTIONS(4854), + [anon_sym_i16] = ACTIONS(4854), + [anon_sym_i32] = ACTIONS(4854), + [anon_sym_i64] = ACTIONS(4854), + [anon_sym_u8] = ACTIONS(4854), + [anon_sym_u16] = ACTIONS(4854), + [anon_sym_u32] = ACTIONS(4854), + [anon_sym_u64] = ACTIONS(4854), + [anon_sym_isize] = ACTIONS(4854), + [anon_sym_usize] = ACTIONS(4854), + [anon_sym_f32] = ACTIONS(4854), + [anon_sym_f64] = ACTIONS(4854), + [anon_sym_c_char] = ACTIONS(4854), + [anon_sym_c_schar] = ACTIONS(4854), + [anon_sym_c_uchar] = ACTIONS(4854), + [anon_sym_c_short] = ACTIONS(4854), + [anon_sym_c_ushort] = ACTIONS(4854), + [anon_sym_c_int] = ACTIONS(4854), + [anon_sym_c_uint] = ACTIONS(4854), + [anon_sym_c_long] = ACTIONS(4854), + [anon_sym_c_ulong] = ACTIONS(4854), + [anon_sym_c_longlong] = ACTIONS(4854), + [anon_sym_c_ulonglong] = ACTIONS(4854), + [anon_sym_c_float] = ACTIONS(4854), + [anon_sym_c_double] = ACTIONS(4854), + [anon_sym_c_longdouble] = ACTIONS(4854), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_yield] = ACTIONS(4854), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_defer] = ACTIONS(4854), + [anon_sym_errdefer] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4854), + [anon_sym_expand] = ACTIONS(4854), + [anon_sym_for] = ACTIONS(4854), + [anon_sym_match] = ACTIONS(4854), + [anon_sym_AMP] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_unreachable] = ACTIONS(4854), + [anon_sym_undefined] = ACTIONS(4854), + [sym_sink] = ACTIONS(4854), + [sym_integer] = ACTIONS(4854), + [sym_float] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4852), + [sym_multiline_string] = ACTIONS(4852), + [sym_character] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4852), + }, + [STATE(6654)] = { + [ts_builtin_sym_end] = ACTIONS(5198), + [sym_identifier] = ACTIONS(5200), + [anon_sym_import] = ACTIONS(5200), + [anon_sym_test] = ACTIONS(5200), + [anon_sym_hide] = ACTIONS(5200), + [anon_sym_func] = ACTIONS(5200), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_struct] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_RPAREN] = ACTIONS(5198), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_void] = ACTIONS(5200), + [anon_sym_noreturn] = ACTIONS(5200), + [anon_sym_type] = ACTIONS(5200), + [anon_sym_anyopaque] = ACTIONS(5200), + [anon_sym_bool] = ACTIONS(5200), + [anon_sym_int] = ACTIONS(5200), + [anon_sym_uint] = ACTIONS(5200), + [anon_sym_float] = ACTIONS(5200), + [anon_sym_range] = ACTIONS(5200), + [anon_sym_i8] = ACTIONS(5200), + [anon_sym_i16] = ACTIONS(5200), + [anon_sym_i32] = ACTIONS(5200), + [anon_sym_i64] = ACTIONS(5200), + [anon_sym_u8] = ACTIONS(5200), + [anon_sym_u16] = ACTIONS(5200), + [anon_sym_u32] = ACTIONS(5200), + [anon_sym_u64] = ACTIONS(5200), + [anon_sym_isize] = ACTIONS(5200), + [anon_sym_usize] = ACTIONS(5200), + [anon_sym_f32] = ACTIONS(5200), + [anon_sym_f64] = ACTIONS(5200), + [anon_sym_c_char] = ACTIONS(5200), + [anon_sym_c_schar] = ACTIONS(5200), + [anon_sym_c_uchar] = ACTIONS(5200), + [anon_sym_c_short] = ACTIONS(5200), + [anon_sym_c_ushort] = ACTIONS(5200), + [anon_sym_c_int] = ACTIONS(5200), + [anon_sym_c_uint] = ACTIONS(5200), + [anon_sym_c_long] = ACTIONS(5200), + [anon_sym_c_ulong] = ACTIONS(5200), + [anon_sym_c_longlong] = ACTIONS(5200), + [anon_sym_c_ulonglong] = ACTIONS(5200), + [anon_sym_c_float] = ACTIONS(5200), + [anon_sym_c_double] = ACTIONS(5200), + [anon_sym_c_longdouble] = ACTIONS(5200), + [anon_sym_return] = ACTIONS(5200), + [anon_sym_yield] = ACTIONS(5200), + [anon_sym_break] = ACTIONS(5200), + [anon_sym_continue] = ACTIONS(5200), + [anon_sym_defer] = ACTIONS(5200), + [anon_sym_errdefer] = ACTIONS(5200), + [anon_sym_if] = ACTIONS(5200), + [anon_sym_else] = ACTIONS(5200), + [anon_sym_while] = ACTIONS(5200), + [anon_sym_expand] = ACTIONS(5200), + [anon_sym_for] = ACTIONS(5200), + [anon_sym_match] = ACTIONS(5200), + [anon_sym_AMP] = ACTIONS(5198), + [anon_sym_TILDE] = ACTIONS(5198), + [anon_sym_try] = ACTIONS(5200), + [anon_sym_DOT] = ACTIONS(5198), + [anon_sym_true] = ACTIONS(5200), + [anon_sym_false] = ACTIONS(5200), + [anon_sym_null] = ACTIONS(5200), + [anon_sym_unreachable] = ACTIONS(5200), + [anon_sym_undefined] = ACTIONS(5200), + [sym_sink] = ACTIONS(5200), + [sym_integer] = ACTIONS(5200), + [sym_float] = ACTIONS(5198), + [anon_sym_DQUOTE] = ACTIONS(5198), + [sym_multiline_string] = ACTIONS(5198), + [sym_character] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5198), + }, + [STATE(6655)] = { + [ts_builtin_sym_end] = ACTIONS(4540), + [sym_identifier] = ACTIONS(4542), + [anon_sym_import] = ACTIONS(4542), + [anon_sym_test] = ACTIONS(4542), + [anon_sym_hide] = ACTIONS(4542), + [anon_sym_func] = ACTIONS(4542), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_struct] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(4540), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4540), + [anon_sym_void] = ACTIONS(4542), + [anon_sym_noreturn] = ACTIONS(4542), + [anon_sym_type] = ACTIONS(4542), + [anon_sym_anyopaque] = ACTIONS(4542), + [anon_sym_bool] = ACTIONS(4542), + [anon_sym_int] = ACTIONS(4542), + [anon_sym_uint] = ACTIONS(4542), + [anon_sym_float] = ACTIONS(4542), + [anon_sym_range] = ACTIONS(4542), + [anon_sym_i8] = ACTIONS(4542), + [anon_sym_i16] = ACTIONS(4542), + [anon_sym_i32] = ACTIONS(4542), + [anon_sym_i64] = ACTIONS(4542), + [anon_sym_u8] = ACTIONS(4542), + [anon_sym_u16] = ACTIONS(4542), + [anon_sym_u32] = ACTIONS(4542), + [anon_sym_u64] = ACTIONS(4542), + [anon_sym_isize] = ACTIONS(4542), + [anon_sym_usize] = ACTIONS(4542), + [anon_sym_f32] = ACTIONS(4542), + [anon_sym_f64] = ACTIONS(4542), + [anon_sym_c_char] = ACTIONS(4542), + [anon_sym_c_schar] = ACTIONS(4542), + [anon_sym_c_uchar] = ACTIONS(4542), + [anon_sym_c_short] = ACTIONS(4542), + [anon_sym_c_ushort] = ACTIONS(4542), + [anon_sym_c_int] = ACTIONS(4542), + [anon_sym_c_uint] = ACTIONS(4542), + [anon_sym_c_long] = ACTIONS(4542), + [anon_sym_c_ulong] = ACTIONS(4542), + [anon_sym_c_longlong] = ACTIONS(4542), + [anon_sym_c_ulonglong] = ACTIONS(4542), + [anon_sym_c_float] = ACTIONS(4542), + [anon_sym_c_double] = ACTIONS(4542), + [anon_sym_c_longdouble] = ACTIONS(4542), + [anon_sym_return] = ACTIONS(4542), + [anon_sym_yield] = ACTIONS(4542), + [anon_sym_break] = ACTIONS(4542), + [anon_sym_continue] = ACTIONS(4542), + [anon_sym_defer] = ACTIONS(4542), + [anon_sym_errdefer] = ACTIONS(4542), + [anon_sym_if] = ACTIONS(4542), + [anon_sym_else] = ACTIONS(4542), + [anon_sym_while] = ACTIONS(4542), + [anon_sym_expand] = ACTIONS(4542), + [anon_sym_for] = ACTIONS(4542), + [anon_sym_match] = ACTIONS(4542), + [anon_sym_AMP] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_try] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_true] = ACTIONS(4542), + [anon_sym_false] = ACTIONS(4542), + [anon_sym_null] = ACTIONS(4542), + [anon_sym_unreachable] = ACTIONS(4542), + [anon_sym_undefined] = ACTIONS(4542), + [sym_sink] = ACTIONS(4542), + [sym_integer] = ACTIONS(4542), + [sym_float] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym_multiline_string] = ACTIONS(4540), + [sym_character] = ACTIONS(4540), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4540), + }, + [STATE(6656)] = { + [ts_builtin_sym_end] = ACTIONS(4856), + [sym_identifier] = ACTIONS(4858), + [anon_sym_import] = ACTIONS(4858), + [anon_sym_test] = ACTIONS(4858), + [anon_sym_hide] = ACTIONS(4858), + [anon_sym_func] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_struct] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_void] = ACTIONS(4858), + [anon_sym_noreturn] = ACTIONS(4858), + [anon_sym_type] = ACTIONS(4858), + [anon_sym_anyopaque] = ACTIONS(4858), + [anon_sym_bool] = ACTIONS(4858), + [anon_sym_int] = ACTIONS(4858), + [anon_sym_uint] = ACTIONS(4858), + [anon_sym_float] = ACTIONS(4858), + [anon_sym_range] = ACTIONS(4858), + [anon_sym_i8] = ACTIONS(4858), + [anon_sym_i16] = ACTIONS(4858), + [anon_sym_i32] = ACTIONS(4858), + [anon_sym_i64] = ACTIONS(4858), + [anon_sym_u8] = ACTIONS(4858), + [anon_sym_u16] = ACTIONS(4858), + [anon_sym_u32] = ACTIONS(4858), + [anon_sym_u64] = ACTIONS(4858), + [anon_sym_isize] = ACTIONS(4858), + [anon_sym_usize] = ACTIONS(4858), + [anon_sym_f32] = ACTIONS(4858), + [anon_sym_f64] = ACTIONS(4858), + [anon_sym_c_char] = ACTIONS(4858), + [anon_sym_c_schar] = ACTIONS(4858), + [anon_sym_c_uchar] = ACTIONS(4858), + [anon_sym_c_short] = ACTIONS(4858), + [anon_sym_c_ushort] = ACTIONS(4858), + [anon_sym_c_int] = ACTIONS(4858), + [anon_sym_c_uint] = ACTIONS(4858), + [anon_sym_c_long] = ACTIONS(4858), + [anon_sym_c_ulong] = ACTIONS(4858), + [anon_sym_c_longlong] = ACTIONS(4858), + [anon_sym_c_ulonglong] = ACTIONS(4858), + [anon_sym_c_float] = ACTIONS(4858), + [anon_sym_c_double] = ACTIONS(4858), + [anon_sym_c_longdouble] = ACTIONS(4858), + [anon_sym_return] = ACTIONS(4858), + [anon_sym_yield] = ACTIONS(4858), + [anon_sym_break] = ACTIONS(4858), + [anon_sym_continue] = ACTIONS(4858), + [anon_sym_defer] = ACTIONS(4858), + [anon_sym_errdefer] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_while] = ACTIONS(4858), + [anon_sym_expand] = ACTIONS(4858), + [anon_sym_for] = ACTIONS(4858), + [anon_sym_match] = ACTIONS(4858), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_TILDE] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_unreachable] = ACTIONS(4858), + [anon_sym_undefined] = ACTIONS(4858), + [sym_sink] = ACTIONS(4858), + [sym_integer] = ACTIONS(4858), + [sym_float] = ACTIONS(4856), + [anon_sym_DQUOTE] = ACTIONS(4856), + [sym_multiline_string] = ACTIONS(4856), + [sym_character] = ACTIONS(4856), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4856), + }, + [STATE(6657)] = { + [ts_builtin_sym_end] = ACTIONS(4536), + [sym_identifier] = ACTIONS(4538), + [anon_sym_import] = ACTIONS(4538), + [anon_sym_test] = ACTIONS(4538), + [anon_sym_hide] = ACTIONS(4538), + [anon_sym_func] = ACTIONS(4538), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4536), + [anon_sym_RPAREN] = ACTIONS(4536), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_RBRACE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_void] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym_type] = ACTIONS(4538), + [anon_sym_anyopaque] = ACTIONS(4538), + [anon_sym_bool] = ACTIONS(4538), + [anon_sym_int] = ACTIONS(4538), + [anon_sym_uint] = ACTIONS(4538), + [anon_sym_float] = ACTIONS(4538), + [anon_sym_range] = ACTIONS(4538), + [anon_sym_i8] = ACTIONS(4538), + [anon_sym_i16] = ACTIONS(4538), + [anon_sym_i32] = ACTIONS(4538), + [anon_sym_i64] = ACTIONS(4538), + [anon_sym_u8] = ACTIONS(4538), + [anon_sym_u16] = ACTIONS(4538), + [anon_sym_u32] = ACTIONS(4538), + [anon_sym_u64] = ACTIONS(4538), + [anon_sym_isize] = ACTIONS(4538), + [anon_sym_usize] = ACTIONS(4538), + [anon_sym_f32] = ACTIONS(4538), + [anon_sym_f64] = ACTIONS(4538), + [anon_sym_c_char] = ACTIONS(4538), + [anon_sym_c_schar] = ACTIONS(4538), + [anon_sym_c_uchar] = ACTIONS(4538), + [anon_sym_c_short] = ACTIONS(4538), + [anon_sym_c_ushort] = ACTIONS(4538), + [anon_sym_c_int] = ACTIONS(4538), + [anon_sym_c_uint] = ACTIONS(4538), + [anon_sym_c_long] = ACTIONS(4538), + [anon_sym_c_ulong] = ACTIONS(4538), + [anon_sym_c_longlong] = ACTIONS(4538), + [anon_sym_c_ulonglong] = ACTIONS(4538), + [anon_sym_c_float] = ACTIONS(4538), + [anon_sym_c_double] = ACTIONS(4538), + [anon_sym_c_longdouble] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_yield] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_defer] = ACTIONS(4538), + [anon_sym_errdefer] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_else] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_expand] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_match] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_TILDE] = ACTIONS(4536), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_true] = ACTIONS(4538), + [anon_sym_false] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4538), + [anon_sym_unreachable] = ACTIONS(4538), + [anon_sym_undefined] = ACTIONS(4538), + [sym_sink] = ACTIONS(4538), + [sym_integer] = ACTIONS(4538), + [sym_float] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [sym_multiline_string] = ACTIONS(4536), + [sym_character] = ACTIONS(4536), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4536), + }, + [STATE(6658)] = { + [ts_builtin_sym_end] = ACTIONS(4860), + [sym_identifier] = ACTIONS(4862), + [anon_sym_import] = ACTIONS(4862), + [anon_sym_test] = ACTIONS(4862), + [anon_sym_hide] = ACTIONS(4862), + [anon_sym_func] = ACTIONS(4862), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_struct] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_void] = ACTIONS(4862), + [anon_sym_noreturn] = ACTIONS(4862), + [anon_sym_type] = ACTIONS(4862), + [anon_sym_anyopaque] = ACTIONS(4862), + [anon_sym_bool] = ACTIONS(4862), + [anon_sym_int] = ACTIONS(4862), + [anon_sym_uint] = ACTIONS(4862), + [anon_sym_float] = ACTIONS(4862), + [anon_sym_range] = ACTIONS(4862), + [anon_sym_i8] = ACTIONS(4862), + [anon_sym_i16] = ACTIONS(4862), + [anon_sym_i32] = ACTIONS(4862), + [anon_sym_i64] = ACTIONS(4862), + [anon_sym_u8] = ACTIONS(4862), + [anon_sym_u16] = ACTIONS(4862), + [anon_sym_u32] = ACTIONS(4862), + [anon_sym_u64] = ACTIONS(4862), + [anon_sym_isize] = ACTIONS(4862), + [anon_sym_usize] = ACTIONS(4862), + [anon_sym_f32] = ACTIONS(4862), + [anon_sym_f64] = ACTIONS(4862), + [anon_sym_c_char] = ACTIONS(4862), + [anon_sym_c_schar] = ACTIONS(4862), + [anon_sym_c_uchar] = ACTIONS(4862), + [anon_sym_c_short] = ACTIONS(4862), + [anon_sym_c_ushort] = ACTIONS(4862), + [anon_sym_c_int] = ACTIONS(4862), + [anon_sym_c_uint] = ACTIONS(4862), + [anon_sym_c_long] = ACTIONS(4862), + [anon_sym_c_ulong] = ACTIONS(4862), + [anon_sym_c_longlong] = ACTIONS(4862), + [anon_sym_c_ulonglong] = ACTIONS(4862), + [anon_sym_c_float] = ACTIONS(4862), + [anon_sym_c_double] = ACTIONS(4862), + [anon_sym_c_longdouble] = ACTIONS(4862), + [anon_sym_return] = ACTIONS(4862), + [anon_sym_yield] = ACTIONS(4862), + [anon_sym_break] = ACTIONS(4862), + [anon_sym_continue] = ACTIONS(4862), + [anon_sym_defer] = ACTIONS(4862), + [anon_sym_errdefer] = ACTIONS(4862), + [anon_sym_if] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_while] = ACTIONS(4862), + [anon_sym_expand] = ACTIONS(4862), + [anon_sym_for] = ACTIONS(4862), + [anon_sym_match] = ACTIONS(4862), + [anon_sym_AMP] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [anon_sym_try] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4860), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_unreachable] = ACTIONS(4862), + [anon_sym_undefined] = ACTIONS(4862), + [sym_sink] = ACTIONS(4862), + [sym_integer] = ACTIONS(4862), + [sym_float] = ACTIONS(4860), + [anon_sym_DQUOTE] = ACTIONS(4860), + [sym_multiline_string] = ACTIONS(4860), + [sym_character] = ACTIONS(4860), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4860), + }, + [STATE(6659)] = { + [ts_builtin_sym_end] = ACTIONS(5478), + [sym_identifier] = ACTIONS(5480), + [anon_sym_import] = ACTIONS(5480), + [anon_sym_test] = ACTIONS(5480), + [anon_sym_hide] = ACTIONS(5480), + [anon_sym_func] = ACTIONS(5480), + [anon_sym_BANG] = ACTIONS(5478), + [anon_sym_struct] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5478), + [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_LBRACE] = ACTIONS(5478), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5478), + [anon_sym_DOLLAR] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5478), + [anon_sym_void] = ACTIONS(5480), + [anon_sym_noreturn] = ACTIONS(5480), + [anon_sym_type] = ACTIONS(5480), + [anon_sym_anyopaque] = ACTIONS(5480), + [anon_sym_bool] = ACTIONS(5480), + [anon_sym_int] = ACTIONS(5480), + [anon_sym_uint] = ACTIONS(5480), + [anon_sym_float] = ACTIONS(5480), + [anon_sym_range] = ACTIONS(5480), + [anon_sym_i8] = ACTIONS(5480), + [anon_sym_i16] = ACTIONS(5480), + [anon_sym_i32] = ACTIONS(5480), + [anon_sym_i64] = ACTIONS(5480), + [anon_sym_u8] = ACTIONS(5480), + [anon_sym_u16] = ACTIONS(5480), + [anon_sym_u32] = ACTIONS(5480), + [anon_sym_u64] = ACTIONS(5480), + [anon_sym_isize] = ACTIONS(5480), + [anon_sym_usize] = ACTIONS(5480), + [anon_sym_f32] = ACTIONS(5480), + [anon_sym_f64] = ACTIONS(5480), + [anon_sym_c_char] = ACTIONS(5480), + [anon_sym_c_schar] = ACTIONS(5480), + [anon_sym_c_uchar] = ACTIONS(5480), + [anon_sym_c_short] = ACTIONS(5480), + [anon_sym_c_ushort] = ACTIONS(5480), + [anon_sym_c_int] = ACTIONS(5480), + [anon_sym_c_uint] = ACTIONS(5480), + [anon_sym_c_long] = ACTIONS(5480), + [anon_sym_c_ulong] = ACTIONS(5480), + [anon_sym_c_longlong] = ACTIONS(5480), + [anon_sym_c_ulonglong] = ACTIONS(5480), + [anon_sym_c_float] = ACTIONS(5480), + [anon_sym_c_double] = ACTIONS(5480), + [anon_sym_c_longdouble] = ACTIONS(5480), + [anon_sym_return] = ACTIONS(5480), + [anon_sym_yield] = ACTIONS(5480), + [anon_sym_break] = ACTIONS(5480), + [anon_sym_continue] = ACTIONS(5480), + [anon_sym_defer] = ACTIONS(5480), + [anon_sym_errdefer] = ACTIONS(5480), + [anon_sym_if] = ACTIONS(5480), + [anon_sym_else] = ACTIONS(5480), + [anon_sym_while] = ACTIONS(5480), + [anon_sym_expand] = ACTIONS(5480), + [anon_sym_for] = ACTIONS(5480), + [anon_sym_match] = ACTIONS(5480), + [anon_sym_AMP] = ACTIONS(5478), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_try] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5478), + [anon_sym_true] = ACTIONS(5480), + [anon_sym_false] = ACTIONS(5480), + [anon_sym_null] = ACTIONS(5480), + [anon_sym_unreachable] = ACTIONS(5480), + [anon_sym_undefined] = ACTIONS(5480), + [sym_sink] = ACTIONS(5480), + [sym_integer] = ACTIONS(5480), + [sym_float] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(5478), + [sym_multiline_string] = ACTIONS(5478), + [sym_character] = ACTIONS(5478), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5478), + }, + [STATE(6660)] = { + [ts_builtin_sym_end] = ACTIONS(5136), + [sym_identifier] = ACTIONS(5138), + [anon_sym_import] = ACTIONS(5138), + [anon_sym_test] = ACTIONS(5138), + [anon_sym_hide] = ACTIONS(5138), + [anon_sym_func] = ACTIONS(5138), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_struct] = ACTIONS(5138), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_void] = ACTIONS(5138), + [anon_sym_noreturn] = ACTIONS(5138), + [anon_sym_type] = ACTIONS(5138), + [anon_sym_anyopaque] = ACTIONS(5138), + [anon_sym_bool] = ACTIONS(5138), + [anon_sym_int] = ACTIONS(5138), + [anon_sym_uint] = ACTIONS(5138), + [anon_sym_float] = ACTIONS(5138), + [anon_sym_range] = ACTIONS(5138), + [anon_sym_i8] = ACTIONS(5138), + [anon_sym_i16] = ACTIONS(5138), + [anon_sym_i32] = ACTIONS(5138), + [anon_sym_i64] = ACTIONS(5138), + [anon_sym_u8] = ACTIONS(5138), + [anon_sym_u16] = ACTIONS(5138), + [anon_sym_u32] = ACTIONS(5138), + [anon_sym_u64] = ACTIONS(5138), + [anon_sym_isize] = ACTIONS(5138), + [anon_sym_usize] = ACTIONS(5138), + [anon_sym_f32] = ACTIONS(5138), + [anon_sym_f64] = ACTIONS(5138), + [anon_sym_c_char] = ACTIONS(5138), + [anon_sym_c_schar] = ACTIONS(5138), + [anon_sym_c_uchar] = ACTIONS(5138), + [anon_sym_c_short] = ACTIONS(5138), + [anon_sym_c_ushort] = ACTIONS(5138), + [anon_sym_c_int] = ACTIONS(5138), + [anon_sym_c_uint] = ACTIONS(5138), + [anon_sym_c_long] = ACTIONS(5138), + [anon_sym_c_ulong] = ACTIONS(5138), + [anon_sym_c_longlong] = ACTIONS(5138), + [anon_sym_c_ulonglong] = ACTIONS(5138), + [anon_sym_c_float] = ACTIONS(5138), + [anon_sym_c_double] = ACTIONS(5138), + [anon_sym_c_longdouble] = ACTIONS(5138), + [anon_sym_return] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_break] = ACTIONS(5138), + [anon_sym_continue] = ACTIONS(5138), + [anon_sym_defer] = ACTIONS(5138), + [anon_sym_errdefer] = ACTIONS(5138), + [anon_sym_if] = ACTIONS(5138), + [anon_sym_else] = ACTIONS(5138), + [anon_sym_while] = ACTIONS(5138), + [anon_sym_expand] = ACTIONS(5138), + [anon_sym_for] = ACTIONS(5138), + [anon_sym_match] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_try] = ACTIONS(5138), + [anon_sym_DOT] = ACTIONS(5136), + [anon_sym_true] = ACTIONS(5138), + [anon_sym_false] = ACTIONS(5138), + [anon_sym_null] = ACTIONS(5138), + [anon_sym_unreachable] = ACTIONS(5138), + [anon_sym_undefined] = ACTIONS(5138), + [sym_sink] = ACTIONS(5138), + [sym_integer] = ACTIONS(5138), + [sym_float] = ACTIONS(5136), + [anon_sym_DQUOTE] = ACTIONS(5136), + [sym_multiline_string] = ACTIONS(5136), + [sym_character] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5136), + }, + [STATE(6661)] = { + [ts_builtin_sym_end] = ACTIONS(4484), + [sym_identifier] = ACTIONS(4486), + [anon_sym_import] = ACTIONS(4486), + [anon_sym_test] = ACTIONS(4486), + [anon_sym_hide] = ACTIONS(4486), + [anon_sym_func] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4484), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_void] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_type] = ACTIONS(4486), + [anon_sym_anyopaque] = ACTIONS(4486), + [anon_sym_bool] = ACTIONS(4486), + [anon_sym_int] = ACTIONS(4486), + [anon_sym_uint] = ACTIONS(4486), + [anon_sym_float] = ACTIONS(4486), + [anon_sym_range] = ACTIONS(4486), + [anon_sym_i8] = ACTIONS(4486), + [anon_sym_i16] = ACTIONS(4486), + [anon_sym_i32] = ACTIONS(4486), + [anon_sym_i64] = ACTIONS(4486), + [anon_sym_u8] = ACTIONS(4486), + [anon_sym_u16] = ACTIONS(4486), + [anon_sym_u32] = ACTIONS(4486), + [anon_sym_u64] = ACTIONS(4486), + [anon_sym_isize] = ACTIONS(4486), + [anon_sym_usize] = ACTIONS(4486), + [anon_sym_f32] = ACTIONS(4486), + [anon_sym_f64] = ACTIONS(4486), + [anon_sym_c_char] = ACTIONS(4486), + [anon_sym_c_schar] = ACTIONS(4486), + [anon_sym_c_uchar] = ACTIONS(4486), + [anon_sym_c_short] = ACTIONS(4486), + [anon_sym_c_ushort] = ACTIONS(4486), + [anon_sym_c_int] = ACTIONS(4486), + [anon_sym_c_uint] = ACTIONS(4486), + [anon_sym_c_long] = ACTIONS(4486), + [anon_sym_c_ulong] = ACTIONS(4486), + [anon_sym_c_longlong] = ACTIONS(4486), + [anon_sym_c_ulonglong] = ACTIONS(4486), + [anon_sym_c_float] = ACTIONS(4486), + [anon_sym_c_double] = ACTIONS(4486), + [anon_sym_c_longdouble] = ACTIONS(4486), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_yield] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_defer] = ACTIONS(4486), + [anon_sym_errdefer] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_while] = ACTIONS(4486), + [anon_sym_expand] = ACTIONS(4486), + [anon_sym_for] = ACTIONS(4486), + [anon_sym_match] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_TILDE] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_unreachable] = ACTIONS(4486), + [anon_sym_undefined] = ACTIONS(4486), + [sym_sink] = ACTIONS(4486), + [sym_integer] = ACTIONS(4486), + [sym_float] = ACTIONS(4484), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_multiline_string] = ACTIONS(4484), + [sym_character] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4484), + }, + [STATE(6662)] = { + [ts_builtin_sym_end] = ACTIONS(5340), + [sym_identifier] = ACTIONS(5342), + [anon_sym_import] = ACTIONS(5342), + [anon_sym_test] = ACTIONS(5342), + [anon_sym_hide] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5342), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_struct] = ACTIONS(5342), + [anon_sym_LPAREN] = ACTIONS(5340), + [anon_sym_RPAREN] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5340), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5340), + [anon_sym_void] = ACTIONS(5342), + [anon_sym_noreturn] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_anyopaque] = ACTIONS(5342), + [anon_sym_bool] = ACTIONS(5342), + [anon_sym_int] = ACTIONS(5342), + [anon_sym_uint] = ACTIONS(5342), + [anon_sym_float] = ACTIONS(5342), + [anon_sym_range] = ACTIONS(5342), + [anon_sym_i8] = ACTIONS(5342), + [anon_sym_i16] = ACTIONS(5342), + [anon_sym_i32] = ACTIONS(5342), + [anon_sym_i64] = ACTIONS(5342), + [anon_sym_u8] = ACTIONS(5342), + [anon_sym_u16] = ACTIONS(5342), + [anon_sym_u32] = ACTIONS(5342), + [anon_sym_u64] = ACTIONS(5342), + [anon_sym_isize] = ACTIONS(5342), + [anon_sym_usize] = ACTIONS(5342), + [anon_sym_f32] = ACTIONS(5342), + [anon_sym_f64] = ACTIONS(5342), + [anon_sym_c_char] = ACTIONS(5342), + [anon_sym_c_schar] = ACTIONS(5342), + [anon_sym_c_uchar] = ACTIONS(5342), + [anon_sym_c_short] = ACTIONS(5342), + [anon_sym_c_ushort] = ACTIONS(5342), + [anon_sym_c_int] = ACTIONS(5342), + [anon_sym_c_uint] = ACTIONS(5342), + [anon_sym_c_long] = ACTIONS(5342), + [anon_sym_c_ulong] = ACTIONS(5342), + [anon_sym_c_longlong] = ACTIONS(5342), + [anon_sym_c_ulonglong] = ACTIONS(5342), + [anon_sym_c_float] = ACTIONS(5342), + [anon_sym_c_double] = ACTIONS(5342), + [anon_sym_c_longdouble] = ACTIONS(5342), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_break] = ACTIONS(5342), + [anon_sym_continue] = ACTIONS(5342), + [anon_sym_defer] = ACTIONS(5342), + [anon_sym_errdefer] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_else] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_expand] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_TILDE] = ACTIONS(5340), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_DOT] = ACTIONS(5340), + [anon_sym_true] = ACTIONS(5342), + [anon_sym_false] = ACTIONS(5342), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_unreachable] = ACTIONS(5342), + [anon_sym_undefined] = ACTIONS(5342), + [sym_sink] = ACTIONS(5342), + [sym_integer] = ACTIONS(5342), + [sym_float] = ACTIONS(5340), + [anon_sym_DQUOTE] = ACTIONS(5340), + [sym_multiline_string] = ACTIONS(5340), + [sym_character] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5340), + }, + [STATE(6663)] = { + [ts_builtin_sym_end] = ACTIONS(4596), + [sym_identifier] = ACTIONS(4598), + [anon_sym_import] = ACTIONS(4598), + [anon_sym_test] = ACTIONS(4598), + [anon_sym_hide] = ACTIONS(4598), + [anon_sym_func] = ACTIONS(4598), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_RPAREN] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(4596), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_void] = ACTIONS(4598), + [anon_sym_noreturn] = ACTIONS(4598), + [anon_sym_type] = ACTIONS(4598), + [anon_sym_anyopaque] = ACTIONS(4598), + [anon_sym_bool] = ACTIONS(4598), + [anon_sym_int] = ACTIONS(4598), + [anon_sym_uint] = ACTIONS(4598), + [anon_sym_float] = ACTIONS(4598), + [anon_sym_range] = ACTIONS(4598), + [anon_sym_i8] = ACTIONS(4598), + [anon_sym_i16] = ACTIONS(4598), + [anon_sym_i32] = ACTIONS(4598), + [anon_sym_i64] = ACTIONS(4598), + [anon_sym_u8] = ACTIONS(4598), + [anon_sym_u16] = ACTIONS(4598), + [anon_sym_u32] = ACTIONS(4598), + [anon_sym_u64] = ACTIONS(4598), + [anon_sym_isize] = ACTIONS(4598), + [anon_sym_usize] = ACTIONS(4598), + [anon_sym_f32] = ACTIONS(4598), + [anon_sym_f64] = ACTIONS(4598), + [anon_sym_c_char] = ACTIONS(4598), + [anon_sym_c_schar] = ACTIONS(4598), + [anon_sym_c_uchar] = ACTIONS(4598), + [anon_sym_c_short] = ACTIONS(4598), + [anon_sym_c_ushort] = ACTIONS(4598), + [anon_sym_c_int] = ACTIONS(4598), + [anon_sym_c_uint] = ACTIONS(4598), + [anon_sym_c_long] = ACTIONS(4598), + [anon_sym_c_ulong] = ACTIONS(4598), + [anon_sym_c_longlong] = ACTIONS(4598), + [anon_sym_c_ulonglong] = ACTIONS(4598), + [anon_sym_c_float] = ACTIONS(4598), + [anon_sym_c_double] = ACTIONS(4598), + [anon_sym_c_longdouble] = ACTIONS(4598), + [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_else] = 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(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_try] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_true] = ACTIONS(4598), + [anon_sym_false] = ACTIONS(4598), + [anon_sym_null] = ACTIONS(4598), + [anon_sym_unreachable] = ACTIONS(4598), + [anon_sym_undefined] = ACTIONS(4598), + [sym_sink] = ACTIONS(4598), + [sym_integer] = ACTIONS(4598), + [sym_float] = ACTIONS(4596), + [anon_sym_DQUOTE] = ACTIONS(4596), + [sym_multiline_string] = ACTIONS(4596), + [sym_character] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4596), + }, + [STATE(6664)] = { + [ts_builtin_sym_end] = ACTIONS(4600), + [sym_identifier] = ACTIONS(4602), + [anon_sym_import] = ACTIONS(4602), + [anon_sym_test] = ACTIONS(4602), + [anon_sym_hide] = ACTIONS(4602), + [anon_sym_func] = ACTIONS(4602), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_struct] = ACTIONS(4602), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_RPAREN] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4600), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_void] = ACTIONS(4602), + [anon_sym_noreturn] = ACTIONS(4602), + [anon_sym_type] = ACTIONS(4602), + [anon_sym_anyopaque] = ACTIONS(4602), + [anon_sym_bool] = ACTIONS(4602), + [anon_sym_int] = ACTIONS(4602), + [anon_sym_uint] = ACTIONS(4602), + [anon_sym_float] = ACTIONS(4602), + [anon_sym_range] = ACTIONS(4602), + [anon_sym_i8] = ACTIONS(4602), + [anon_sym_i16] = ACTIONS(4602), + [anon_sym_i32] = ACTIONS(4602), + [anon_sym_i64] = ACTIONS(4602), + [anon_sym_u8] = ACTIONS(4602), + [anon_sym_u16] = ACTIONS(4602), + [anon_sym_u32] = ACTIONS(4602), + [anon_sym_u64] = ACTIONS(4602), + [anon_sym_isize] = ACTIONS(4602), + [anon_sym_usize] = ACTIONS(4602), + [anon_sym_f32] = ACTIONS(4602), + [anon_sym_f64] = ACTIONS(4602), + [anon_sym_c_char] = ACTIONS(4602), + [anon_sym_c_schar] = ACTIONS(4602), + [anon_sym_c_uchar] = ACTIONS(4602), + [anon_sym_c_short] = ACTIONS(4602), + [anon_sym_c_ushort] = ACTIONS(4602), + [anon_sym_c_int] = ACTIONS(4602), + [anon_sym_c_uint] = ACTIONS(4602), + [anon_sym_c_long] = ACTIONS(4602), + [anon_sym_c_ulong] = ACTIONS(4602), + [anon_sym_c_longlong] = ACTIONS(4602), + [anon_sym_c_ulonglong] = ACTIONS(4602), + [anon_sym_c_float] = ACTIONS(4602), + [anon_sym_c_double] = ACTIONS(4602), + [anon_sym_c_longdouble] = ACTIONS(4602), + [anon_sym_return] = ACTIONS(4602), + [anon_sym_yield] = ACTIONS(4602), + [anon_sym_break] = ACTIONS(4602), + [anon_sym_continue] = ACTIONS(4602), + [anon_sym_defer] = ACTIONS(4602), + [anon_sym_errdefer] = ACTIONS(4602), + [anon_sym_if] = ACTIONS(4602), + [anon_sym_else] = ACTIONS(4602), + [anon_sym_while] = ACTIONS(4602), + [anon_sym_expand] = ACTIONS(4602), + [anon_sym_for] = ACTIONS(4602), + [anon_sym_match] = ACTIONS(4602), + [anon_sym_AMP] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_try] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4600), + [anon_sym_true] = ACTIONS(4602), + [anon_sym_false] = ACTIONS(4602), + [anon_sym_null] = ACTIONS(4602), + [anon_sym_unreachable] = ACTIONS(4602), + [anon_sym_undefined] = ACTIONS(4602), + [sym_sink] = ACTIONS(4602), + [sym_integer] = ACTIONS(4602), + [sym_float] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [sym_multiline_string] = ACTIONS(4600), + [sym_character] = ACTIONS(4600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4600), + }, + [STATE(6665)] = { + [ts_builtin_sym_end] = ACTIONS(4604), + [sym_identifier] = ACTIONS(4606), + [anon_sym_import] = ACTIONS(4606), + [anon_sym_test] = ACTIONS(4606), + [anon_sym_hide] = ACTIONS(4606), + [anon_sym_func] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4604), + [anon_sym_struct] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4604), + [anon_sym_RPAREN] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_RBRACE] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4604), + [anon_sym_void] = ACTIONS(4606), + [anon_sym_noreturn] = ACTIONS(4606), + [anon_sym_type] = ACTIONS(4606), + [anon_sym_anyopaque] = ACTIONS(4606), + [anon_sym_bool] = ACTIONS(4606), + [anon_sym_int] = ACTIONS(4606), + [anon_sym_uint] = ACTIONS(4606), + [anon_sym_float] = ACTIONS(4606), + [anon_sym_range] = ACTIONS(4606), + [anon_sym_i8] = ACTIONS(4606), + [anon_sym_i16] = ACTIONS(4606), + [anon_sym_i32] = ACTIONS(4606), + [anon_sym_i64] = ACTIONS(4606), + [anon_sym_u8] = ACTIONS(4606), + [anon_sym_u16] = ACTIONS(4606), + [anon_sym_u32] = ACTIONS(4606), + [anon_sym_u64] = ACTIONS(4606), + [anon_sym_isize] = ACTIONS(4606), + [anon_sym_usize] = ACTIONS(4606), + [anon_sym_f32] = ACTIONS(4606), + [anon_sym_f64] = ACTIONS(4606), + [anon_sym_c_char] = ACTIONS(4606), + [anon_sym_c_schar] = ACTIONS(4606), + [anon_sym_c_uchar] = ACTIONS(4606), + [anon_sym_c_short] = ACTIONS(4606), + [anon_sym_c_ushort] = ACTIONS(4606), + [anon_sym_c_int] = ACTIONS(4606), + [anon_sym_c_uint] = ACTIONS(4606), + [anon_sym_c_long] = ACTIONS(4606), + [anon_sym_c_ulong] = ACTIONS(4606), + [anon_sym_c_longlong] = ACTIONS(4606), + [anon_sym_c_ulonglong] = ACTIONS(4606), + [anon_sym_c_float] = ACTIONS(4606), + [anon_sym_c_double] = ACTIONS(4606), + [anon_sym_c_longdouble] = ACTIONS(4606), + [anon_sym_return] = ACTIONS(4606), + [anon_sym_yield] = ACTIONS(4606), + [anon_sym_break] = ACTIONS(4606), + [anon_sym_continue] = ACTIONS(4606), + [anon_sym_defer] = ACTIONS(4606), + [anon_sym_errdefer] = ACTIONS(4606), + [anon_sym_if] = ACTIONS(4606), + [anon_sym_else] = ACTIONS(4606), + [anon_sym_while] = ACTIONS(4606), + [anon_sym_expand] = ACTIONS(4606), + [anon_sym_for] = ACTIONS(4606), + [anon_sym_match] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4604), + [anon_sym_TILDE] = ACTIONS(4604), + [anon_sym_try] = ACTIONS(4606), + [anon_sym_DOT] = ACTIONS(4604), + [anon_sym_true] = ACTIONS(4606), + [anon_sym_false] = ACTIONS(4606), + [anon_sym_null] = ACTIONS(4606), + [anon_sym_unreachable] = ACTIONS(4606), + [anon_sym_undefined] = ACTIONS(4606), + [sym_sink] = ACTIONS(4606), + [sym_integer] = ACTIONS(4606), + [sym_float] = ACTIONS(4604), + [anon_sym_DQUOTE] = ACTIONS(4604), + [sym_multiline_string] = ACTIONS(4604), + [sym_character] = ACTIONS(4604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4604), + }, + [STATE(6666)] = { + [ts_builtin_sym_end] = ACTIONS(5624), + [sym_identifier] = ACTIONS(5626), + [anon_sym_import] = ACTIONS(5626), + [anon_sym_test] = ACTIONS(5626), + [anon_sym_hide] = ACTIONS(5626), + [anon_sym_func] = ACTIONS(5626), + [anon_sym_BANG] = ACTIONS(5624), + [anon_sym_struct] = ACTIONS(5626), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LBRACE] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5624), + [anon_sym_DOLLAR] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_void] = ACTIONS(5626), + [anon_sym_noreturn] = ACTIONS(5626), + [anon_sym_type] = ACTIONS(5626), + [anon_sym_anyopaque] = ACTIONS(5626), + [anon_sym_bool] = ACTIONS(5626), + [anon_sym_int] = ACTIONS(5626), + [anon_sym_uint] = ACTIONS(5626), + [anon_sym_float] = ACTIONS(5626), + [anon_sym_range] = ACTIONS(5626), + [anon_sym_i8] = ACTIONS(5626), + [anon_sym_i16] = ACTIONS(5626), + [anon_sym_i32] = ACTIONS(5626), + [anon_sym_i64] = ACTIONS(5626), + [anon_sym_u8] = ACTIONS(5626), + [anon_sym_u16] = ACTIONS(5626), + [anon_sym_u32] = ACTIONS(5626), + [anon_sym_u64] = ACTIONS(5626), + [anon_sym_isize] = ACTIONS(5626), + [anon_sym_usize] = ACTIONS(5626), + [anon_sym_f32] = ACTIONS(5626), + [anon_sym_f64] = ACTIONS(5626), + [anon_sym_c_char] = ACTIONS(5626), + [anon_sym_c_schar] = ACTIONS(5626), + [anon_sym_c_uchar] = ACTIONS(5626), + [anon_sym_c_short] = ACTIONS(5626), + [anon_sym_c_ushort] = ACTIONS(5626), + [anon_sym_c_int] = ACTIONS(5626), + [anon_sym_c_uint] = ACTIONS(5626), + [anon_sym_c_long] = ACTIONS(5626), + [anon_sym_c_ulong] = ACTIONS(5626), + [anon_sym_c_longlong] = ACTIONS(5626), + [anon_sym_c_ulonglong] = ACTIONS(5626), + [anon_sym_c_float] = ACTIONS(5626), + [anon_sym_c_double] = ACTIONS(5626), + [anon_sym_c_longdouble] = ACTIONS(5626), + [anon_sym_return] = ACTIONS(5626), + [anon_sym_yield] = ACTIONS(5626), + [anon_sym_break] = ACTIONS(5626), + [anon_sym_continue] = ACTIONS(5626), + [anon_sym_defer] = ACTIONS(5626), + [anon_sym_errdefer] = ACTIONS(5626), + [anon_sym_if] = ACTIONS(5626), + [anon_sym_else] = ACTIONS(5626), + [anon_sym_while] = ACTIONS(5626), + [anon_sym_expand] = ACTIONS(5626), + [anon_sym_for] = ACTIONS(5626), + [anon_sym_match] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5624), + [anon_sym_try] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_true] = ACTIONS(5626), + [anon_sym_false] = ACTIONS(5626), + [anon_sym_null] = ACTIONS(5626), + [anon_sym_unreachable] = ACTIONS(5626), + [anon_sym_undefined] = ACTIONS(5626), + [sym_sink] = ACTIONS(5626), + [sym_integer] = ACTIONS(5626), + [sym_float] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5624), + [sym_multiline_string] = ACTIONS(5624), + [sym_character] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5624), + }, + [STATE(6667)] = { + [ts_builtin_sym_end] = ACTIONS(4982), + [sym_identifier] = ACTIONS(4984), + [anon_sym_import] = ACTIONS(4984), + [anon_sym_test] = ACTIONS(4984), + [anon_sym_hide] = ACTIONS(4984), + [anon_sym_func] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4982), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_void] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym_type] = ACTIONS(4984), + [anon_sym_anyopaque] = ACTIONS(4984), + [anon_sym_bool] = ACTIONS(4984), + [anon_sym_int] = ACTIONS(4984), + [anon_sym_uint] = ACTIONS(4984), + [anon_sym_float] = ACTIONS(4984), + [anon_sym_range] = ACTIONS(4984), + [anon_sym_i8] = ACTIONS(4984), + [anon_sym_i16] = ACTIONS(4984), + [anon_sym_i32] = ACTIONS(4984), + [anon_sym_i64] = ACTIONS(4984), + [anon_sym_u8] = ACTIONS(4984), + [anon_sym_u16] = ACTIONS(4984), + [anon_sym_u32] = ACTIONS(4984), + [anon_sym_u64] = ACTIONS(4984), + [anon_sym_isize] = ACTIONS(4984), + [anon_sym_usize] = ACTIONS(4984), + [anon_sym_f32] = ACTIONS(4984), + [anon_sym_f64] = ACTIONS(4984), + [anon_sym_c_char] = ACTIONS(4984), + [anon_sym_c_schar] = ACTIONS(4984), + [anon_sym_c_uchar] = ACTIONS(4984), + [anon_sym_c_short] = ACTIONS(4984), + [anon_sym_c_ushort] = ACTIONS(4984), + [anon_sym_c_int] = ACTIONS(4984), + [anon_sym_c_uint] = ACTIONS(4984), + [anon_sym_c_long] = ACTIONS(4984), + [anon_sym_c_ulong] = ACTIONS(4984), + [anon_sym_c_longlong] = ACTIONS(4984), + [anon_sym_c_ulonglong] = ACTIONS(4984), + [anon_sym_c_float] = ACTIONS(4984), + [anon_sym_c_double] = ACTIONS(4984), + [anon_sym_c_longdouble] = ACTIONS(4984), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_yield] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_defer] = ACTIONS(4984), + [anon_sym_errdefer] = ACTIONS(4984), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_expand] = ACTIONS(4984), + [anon_sym_for] = ACTIONS(4984), + [anon_sym_match] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_TILDE] = ACTIONS(4982), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_null] = ACTIONS(4984), + [anon_sym_unreachable] = ACTIONS(4984), + [anon_sym_undefined] = ACTIONS(4984), + [sym_sink] = ACTIONS(4984), + [sym_integer] = ACTIONS(4984), + [sym_float] = ACTIONS(4982), + [anon_sym_DQUOTE] = ACTIONS(4982), + [sym_multiline_string] = ACTIONS(4982), + [sym_character] = ACTIONS(4982), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4982), + }, + [STATE(6668)] = { + [ts_builtin_sym_end] = ACTIONS(4612), + [sym_identifier] = ACTIONS(4614), + [anon_sym_import] = ACTIONS(4614), + [anon_sym_test] = ACTIONS(4614), + [anon_sym_hide] = ACTIONS(4614), + [anon_sym_func] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4612), + [anon_sym_struct] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [anon_sym_RBRACE] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_void] = ACTIONS(4614), + [anon_sym_noreturn] = ACTIONS(4614), + [anon_sym_type] = ACTIONS(4614), + [anon_sym_anyopaque] = ACTIONS(4614), + [anon_sym_bool] = ACTIONS(4614), + [anon_sym_int] = ACTIONS(4614), + [anon_sym_uint] = ACTIONS(4614), + [anon_sym_float] = ACTIONS(4614), + [anon_sym_range] = ACTIONS(4614), + [anon_sym_i8] = ACTIONS(4614), + [anon_sym_i16] = ACTIONS(4614), + [anon_sym_i32] = ACTIONS(4614), + [anon_sym_i64] = ACTIONS(4614), + [anon_sym_u8] = ACTIONS(4614), + [anon_sym_u16] = ACTIONS(4614), + [anon_sym_u32] = ACTIONS(4614), + [anon_sym_u64] = ACTIONS(4614), + [anon_sym_isize] = ACTIONS(4614), + [anon_sym_usize] = ACTIONS(4614), + [anon_sym_f32] = ACTIONS(4614), + [anon_sym_f64] = ACTIONS(4614), + [anon_sym_c_char] = ACTIONS(4614), + [anon_sym_c_schar] = ACTIONS(4614), + [anon_sym_c_uchar] = ACTIONS(4614), + [anon_sym_c_short] = ACTIONS(4614), + [anon_sym_c_ushort] = ACTIONS(4614), + [anon_sym_c_int] = ACTIONS(4614), + [anon_sym_c_uint] = ACTIONS(4614), + [anon_sym_c_long] = ACTIONS(4614), + [anon_sym_c_ulong] = ACTIONS(4614), + [anon_sym_c_longlong] = ACTIONS(4614), + [anon_sym_c_ulonglong] = ACTIONS(4614), + [anon_sym_c_float] = ACTIONS(4614), + [anon_sym_c_double] = ACTIONS(4614), + [anon_sym_c_longdouble] = ACTIONS(4614), + [anon_sym_return] = ACTIONS(4614), + [anon_sym_yield] = ACTIONS(4614), + [anon_sym_break] = ACTIONS(4614), + [anon_sym_continue] = ACTIONS(4614), + [anon_sym_defer] = ACTIONS(4614), + [anon_sym_errdefer] = ACTIONS(4614), + [anon_sym_if] = ACTIONS(4614), + [anon_sym_else] = ACTIONS(4614), + [anon_sym_while] = ACTIONS(4614), + [anon_sym_expand] = ACTIONS(4614), + [anon_sym_for] = ACTIONS(4614), + [anon_sym_match] = ACTIONS(4614), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_TILDE] = ACTIONS(4612), + [anon_sym_try] = ACTIONS(4614), + [anon_sym_DOT] = ACTIONS(4612), + [anon_sym_true] = ACTIONS(4614), + [anon_sym_false] = ACTIONS(4614), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_unreachable] = ACTIONS(4614), + [anon_sym_undefined] = ACTIONS(4614), + [sym_sink] = ACTIONS(4614), + [sym_integer] = ACTIONS(4614), + [sym_float] = ACTIONS(4612), + [anon_sym_DQUOTE] = ACTIONS(4612), + [sym_multiline_string] = ACTIONS(4612), + [sym_character] = ACTIONS(4612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4612), + }, + [STATE(6669)] = { + [ts_builtin_sym_end] = ACTIONS(4832), + [sym_identifier] = ACTIONS(4834), + [anon_sym_import] = ACTIONS(4834), + [anon_sym_test] = ACTIONS(4834), + [anon_sym_hide] = ACTIONS(4834), + [anon_sym_func] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_struct] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_RBRACE] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4832), + [anon_sym_void] = ACTIONS(4834), + [anon_sym_noreturn] = ACTIONS(4834), + [anon_sym_type] = ACTIONS(4834), + [anon_sym_anyopaque] = ACTIONS(4834), + [anon_sym_bool] = ACTIONS(4834), + [anon_sym_int] = ACTIONS(4834), + [anon_sym_uint] = ACTIONS(4834), + [anon_sym_float] = ACTIONS(4834), + [anon_sym_range] = ACTIONS(4834), + [anon_sym_i8] = ACTIONS(4834), + [anon_sym_i16] = ACTIONS(4834), + [anon_sym_i32] = ACTIONS(4834), + [anon_sym_i64] = ACTIONS(4834), + [anon_sym_u8] = ACTIONS(4834), + [anon_sym_u16] = ACTIONS(4834), + [anon_sym_u32] = ACTIONS(4834), + [anon_sym_u64] = ACTIONS(4834), + [anon_sym_isize] = ACTIONS(4834), + [anon_sym_usize] = ACTIONS(4834), + [anon_sym_f32] = ACTIONS(4834), + [anon_sym_f64] = ACTIONS(4834), + [anon_sym_c_char] = ACTIONS(4834), + [anon_sym_c_schar] = ACTIONS(4834), + [anon_sym_c_uchar] = ACTIONS(4834), + [anon_sym_c_short] = ACTIONS(4834), + [anon_sym_c_ushort] = ACTIONS(4834), + [anon_sym_c_int] = ACTIONS(4834), + [anon_sym_c_uint] = ACTIONS(4834), + [anon_sym_c_long] = ACTIONS(4834), + [anon_sym_c_ulong] = ACTIONS(4834), + [anon_sym_c_longlong] = ACTIONS(4834), + [anon_sym_c_ulonglong] = ACTIONS(4834), + [anon_sym_c_float] = ACTIONS(4834), + [anon_sym_c_double] = ACTIONS(4834), + [anon_sym_c_longdouble] = ACTIONS(4834), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_yield] = ACTIONS(4834), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_defer] = ACTIONS(4834), + [anon_sym_errdefer] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_while] = ACTIONS(4834), + [anon_sym_expand] = ACTIONS(4834), + [anon_sym_for] = ACTIONS(4834), + [anon_sym_match] = ACTIONS(4834), + [anon_sym_AMP] = ACTIONS(4832), + [anon_sym_TILDE] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_unreachable] = ACTIONS(4834), + [anon_sym_undefined] = ACTIONS(4834), + [sym_sink] = ACTIONS(4834), + [sym_integer] = ACTIONS(4834), + [sym_float] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [sym_multiline_string] = ACTIONS(4832), + [sym_character] = ACTIONS(4832), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4832), + }, + [STATE(6670)] = { + [ts_builtin_sym_end] = ACTIONS(5116), + [sym_identifier] = ACTIONS(5118), + [anon_sym_import] = ACTIONS(5118), + [anon_sym_test] = ACTIONS(5118), + [anon_sym_hide] = ACTIONS(5118), + [anon_sym_func] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_struct] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_RPAREN] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_void] = ACTIONS(5118), + [anon_sym_noreturn] = ACTIONS(5118), + [anon_sym_type] = ACTIONS(5118), + [anon_sym_anyopaque] = ACTIONS(5118), + [anon_sym_bool] = ACTIONS(5118), + [anon_sym_int] = ACTIONS(5118), + [anon_sym_uint] = ACTIONS(5118), + [anon_sym_float] = ACTIONS(5118), + [anon_sym_range] = ACTIONS(5118), + [anon_sym_i8] = ACTIONS(5118), + [anon_sym_i16] = ACTIONS(5118), + [anon_sym_i32] = ACTIONS(5118), + [anon_sym_i64] = ACTIONS(5118), + [anon_sym_u8] = ACTIONS(5118), + [anon_sym_u16] = ACTIONS(5118), + [anon_sym_u32] = ACTIONS(5118), + [anon_sym_u64] = ACTIONS(5118), + [anon_sym_isize] = ACTIONS(5118), + [anon_sym_usize] = ACTIONS(5118), + [anon_sym_f32] = ACTIONS(5118), + [anon_sym_f64] = ACTIONS(5118), + [anon_sym_c_char] = ACTIONS(5118), + [anon_sym_c_schar] = ACTIONS(5118), + [anon_sym_c_uchar] = ACTIONS(5118), + [anon_sym_c_short] = ACTIONS(5118), + [anon_sym_c_ushort] = ACTIONS(5118), + [anon_sym_c_int] = ACTIONS(5118), + [anon_sym_c_uint] = ACTIONS(5118), + [anon_sym_c_long] = ACTIONS(5118), + [anon_sym_c_ulong] = ACTIONS(5118), + [anon_sym_c_longlong] = ACTIONS(5118), + [anon_sym_c_ulonglong] = ACTIONS(5118), + [anon_sym_c_float] = ACTIONS(5118), + [anon_sym_c_double] = ACTIONS(5118), + [anon_sym_c_longdouble] = ACTIONS(5118), + [anon_sym_return] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5118), + [anon_sym_break] = ACTIONS(5118), + [anon_sym_continue] = ACTIONS(5118), + [anon_sym_defer] = ACTIONS(5118), + [anon_sym_errdefer] = ACTIONS(5118), + [anon_sym_if] = ACTIONS(5118), + [anon_sym_else] = ACTIONS(5118), + [anon_sym_while] = ACTIONS(5118), + [anon_sym_expand] = ACTIONS(5118), + [anon_sym_for] = ACTIONS(5118), + [anon_sym_match] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_TILDE] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5116), + [anon_sym_true] = ACTIONS(5118), + [anon_sym_false] = ACTIONS(5118), + [anon_sym_null] = ACTIONS(5118), + [anon_sym_unreachable] = ACTIONS(5118), + [anon_sym_undefined] = ACTIONS(5118), + [sym_sink] = ACTIONS(5118), + [sym_integer] = ACTIONS(5118), + [sym_float] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [sym_multiline_string] = ACTIONS(5116), + [sym_character] = ACTIONS(5116), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5116), + }, + [STATE(6671)] = { + [ts_builtin_sym_end] = ACTIONS(4634), + [sym_identifier] = ACTIONS(4636), + [anon_sym_import] = ACTIONS(4636), + [anon_sym_test] = ACTIONS(4636), + [anon_sym_hide] = ACTIONS(4636), + [anon_sym_func] = ACTIONS(4636), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(4634), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_void] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym_type] = ACTIONS(4636), + [anon_sym_anyopaque] = ACTIONS(4636), + [anon_sym_bool] = ACTIONS(4636), + [anon_sym_int] = ACTIONS(4636), + [anon_sym_uint] = ACTIONS(4636), + [anon_sym_float] = ACTIONS(4636), + [anon_sym_range] = ACTIONS(4636), + [anon_sym_i8] = ACTIONS(4636), + [anon_sym_i16] = ACTIONS(4636), + [anon_sym_i32] = ACTIONS(4636), + [anon_sym_i64] = ACTIONS(4636), + [anon_sym_u8] = ACTIONS(4636), + [anon_sym_u16] = ACTIONS(4636), + [anon_sym_u32] = ACTIONS(4636), + [anon_sym_u64] = ACTIONS(4636), + [anon_sym_isize] = ACTIONS(4636), + [anon_sym_usize] = ACTIONS(4636), + [anon_sym_f32] = ACTIONS(4636), + [anon_sym_f64] = ACTIONS(4636), + [anon_sym_c_char] = ACTIONS(4636), + [anon_sym_c_schar] = ACTIONS(4636), + [anon_sym_c_uchar] = ACTIONS(4636), + [anon_sym_c_short] = ACTIONS(4636), + [anon_sym_c_ushort] = ACTIONS(4636), + [anon_sym_c_int] = ACTIONS(4636), + [anon_sym_c_uint] = ACTIONS(4636), + [anon_sym_c_long] = ACTIONS(4636), + [anon_sym_c_ulong] = ACTIONS(4636), + [anon_sym_c_longlong] = ACTIONS(4636), + [anon_sym_c_ulonglong] = ACTIONS(4636), + [anon_sym_c_float] = ACTIONS(4636), + [anon_sym_c_double] = ACTIONS(4636), + [anon_sym_c_longdouble] = ACTIONS(4636), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_yield] = ACTIONS(4636), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_defer] = ACTIONS(4636), + [anon_sym_errdefer] = ACTIONS(4636), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_expand] = ACTIONS(4636), + [anon_sym_for] = ACTIONS(4636), + [anon_sym_match] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4634), + [anon_sym_TILDE] = ACTIONS(4634), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4636), + [anon_sym_false] = ACTIONS(4636), + [anon_sym_null] = ACTIONS(4636), + [anon_sym_unreachable] = ACTIONS(4636), + [anon_sym_undefined] = ACTIONS(4636), + [sym_sink] = ACTIONS(4636), + [sym_integer] = ACTIONS(4636), + [sym_float] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4634), + [sym_multiline_string] = ACTIONS(4634), + [sym_character] = ACTIONS(4634), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4634), + }, + [STATE(6672)] = { + [ts_builtin_sym_end] = ACTIONS(4836), + [sym_identifier] = ACTIONS(4838), + [anon_sym_import] = ACTIONS(4838), + [anon_sym_test] = ACTIONS(4838), + [anon_sym_hide] = ACTIONS(4838), + [anon_sym_func] = ACTIONS(4838), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_struct] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4836), + [anon_sym_DOLLAR] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_void] = ACTIONS(4838), + [anon_sym_noreturn] = ACTIONS(4838), + [anon_sym_type] = ACTIONS(4838), + [anon_sym_anyopaque] = ACTIONS(4838), + [anon_sym_bool] = ACTIONS(4838), + [anon_sym_int] = ACTIONS(4838), + [anon_sym_uint] = ACTIONS(4838), + [anon_sym_float] = ACTIONS(4838), + [anon_sym_range] = ACTIONS(4838), + [anon_sym_i8] = ACTIONS(4838), + [anon_sym_i16] = ACTIONS(4838), + [anon_sym_i32] = ACTIONS(4838), + [anon_sym_i64] = ACTIONS(4838), + [anon_sym_u8] = ACTIONS(4838), + [anon_sym_u16] = ACTIONS(4838), + [anon_sym_u32] = ACTIONS(4838), + [anon_sym_u64] = ACTIONS(4838), + [anon_sym_isize] = ACTIONS(4838), + [anon_sym_usize] = ACTIONS(4838), + [anon_sym_f32] = ACTIONS(4838), + [anon_sym_f64] = ACTIONS(4838), + [anon_sym_c_char] = ACTIONS(4838), + [anon_sym_c_schar] = ACTIONS(4838), + [anon_sym_c_uchar] = ACTIONS(4838), + [anon_sym_c_short] = ACTIONS(4838), + [anon_sym_c_ushort] = ACTIONS(4838), + [anon_sym_c_int] = ACTIONS(4838), + [anon_sym_c_uint] = ACTIONS(4838), + [anon_sym_c_long] = ACTIONS(4838), + [anon_sym_c_ulong] = ACTIONS(4838), + [anon_sym_c_longlong] = ACTIONS(4838), + [anon_sym_c_ulonglong] = ACTIONS(4838), + [anon_sym_c_float] = ACTIONS(4838), + [anon_sym_c_double] = ACTIONS(4838), + [anon_sym_c_longdouble] = ACTIONS(4838), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_yield] = ACTIONS(4838), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_defer] = ACTIONS(4838), + [anon_sym_errdefer] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_expand] = ACTIONS(4838), + [anon_sym_for] = ACTIONS(4838), + [anon_sym_match] = ACTIONS(4838), + [anon_sym_AMP] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_unreachable] = ACTIONS(4838), + [anon_sym_undefined] = ACTIONS(4838), + [sym_sink] = ACTIONS(4838), + [sym_integer] = ACTIONS(4838), + [sym_float] = ACTIONS(4836), + [anon_sym_DQUOTE] = ACTIONS(4836), + [sym_multiline_string] = ACTIONS(4836), + [sym_character] = ACTIONS(4836), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4836), + }, + [STATE(6673)] = { + [ts_builtin_sym_end] = ACTIONS(4720), + [sym_identifier] = ACTIONS(4722), + [anon_sym_import] = ACTIONS(4722), + [anon_sym_test] = ACTIONS(4722), + [anon_sym_hide] = ACTIONS(4722), + [anon_sym_func] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4720), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOLLAR] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_void] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_type] = ACTIONS(4722), + [anon_sym_anyopaque] = ACTIONS(4722), + [anon_sym_bool] = ACTIONS(4722), + [anon_sym_int] = ACTIONS(4722), + [anon_sym_uint] = ACTIONS(4722), + [anon_sym_float] = ACTIONS(4722), + [anon_sym_range] = ACTIONS(4722), + [anon_sym_i8] = ACTIONS(4722), + [anon_sym_i16] = ACTIONS(4722), + [anon_sym_i32] = ACTIONS(4722), + [anon_sym_i64] = ACTIONS(4722), + [anon_sym_u8] = ACTIONS(4722), + [anon_sym_u16] = ACTIONS(4722), + [anon_sym_u32] = ACTIONS(4722), + [anon_sym_u64] = ACTIONS(4722), + [anon_sym_isize] = ACTIONS(4722), + [anon_sym_usize] = ACTIONS(4722), + [anon_sym_f32] = ACTIONS(4722), + [anon_sym_f64] = ACTIONS(4722), + [anon_sym_c_char] = ACTIONS(4722), + [anon_sym_c_schar] = ACTIONS(4722), + [anon_sym_c_uchar] = ACTIONS(4722), + [anon_sym_c_short] = ACTIONS(4722), + [anon_sym_c_ushort] = ACTIONS(4722), + [anon_sym_c_int] = ACTIONS(4722), + [anon_sym_c_uint] = ACTIONS(4722), + [anon_sym_c_long] = ACTIONS(4722), + [anon_sym_c_ulong] = ACTIONS(4722), + [anon_sym_c_longlong] = ACTIONS(4722), + [anon_sym_c_ulonglong] = ACTIONS(4722), + [anon_sym_c_float] = ACTIONS(4722), + [anon_sym_c_double] = ACTIONS(4722), + [anon_sym_c_longdouble] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_yield] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_defer] = ACTIONS(4722), + [anon_sym_errdefer] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_while] = ACTIONS(4722), + [anon_sym_expand] = ACTIONS(4722), + [anon_sym_for] = ACTIONS(4722), + [anon_sym_match] = ACTIONS(4722), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_TILDE] = ACTIONS(4720), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_unreachable] = ACTIONS(4722), + [anon_sym_undefined] = ACTIONS(4722), + [sym_sink] = ACTIONS(4722), + [sym_integer] = ACTIONS(4722), + [sym_float] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4720), + [sym_multiline_string] = ACTIONS(4720), + [sym_character] = ACTIONS(4720), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4720), + }, + [STATE(6674)] = { + [ts_builtin_sym_end] = ACTIONS(5172), + [sym_identifier] = ACTIONS(5174), + [anon_sym_import] = ACTIONS(5174), + [anon_sym_test] = ACTIONS(5174), + [anon_sym_hide] = ACTIONS(5174), + [anon_sym_func] = ACTIONS(5174), + [anon_sym_BANG] = ACTIONS(5172), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_RPAREN] = ACTIONS(5172), + [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_void] = ACTIONS(5174), + [anon_sym_noreturn] = ACTIONS(5174), + [anon_sym_type] = ACTIONS(5174), + [anon_sym_anyopaque] = ACTIONS(5174), + [anon_sym_bool] = ACTIONS(5174), + [anon_sym_int] = ACTIONS(5174), + [anon_sym_uint] = ACTIONS(5174), + [anon_sym_float] = ACTIONS(5174), + [anon_sym_range] = ACTIONS(5174), + [anon_sym_i8] = ACTIONS(5174), + [anon_sym_i16] = ACTIONS(5174), + [anon_sym_i32] = ACTIONS(5174), + [anon_sym_i64] = ACTIONS(5174), + [anon_sym_u8] = ACTIONS(5174), + [anon_sym_u16] = ACTIONS(5174), + [anon_sym_u32] = ACTIONS(5174), + [anon_sym_u64] = ACTIONS(5174), + [anon_sym_isize] = ACTIONS(5174), + [anon_sym_usize] = ACTIONS(5174), + [anon_sym_f32] = ACTIONS(5174), + [anon_sym_f64] = ACTIONS(5174), + [anon_sym_c_char] = ACTIONS(5174), + [anon_sym_c_schar] = ACTIONS(5174), + [anon_sym_c_uchar] = ACTIONS(5174), + [anon_sym_c_short] = ACTIONS(5174), + [anon_sym_c_ushort] = ACTIONS(5174), + [anon_sym_c_int] = ACTIONS(5174), + [anon_sym_c_uint] = ACTIONS(5174), + [anon_sym_c_long] = ACTIONS(5174), + [anon_sym_c_ulong] = ACTIONS(5174), + [anon_sym_c_longlong] = ACTIONS(5174), + [anon_sym_c_ulonglong] = ACTIONS(5174), + [anon_sym_c_float] = ACTIONS(5174), + [anon_sym_c_double] = ACTIONS(5174), + [anon_sym_c_longdouble] = ACTIONS(5174), + [anon_sym_return] = ACTIONS(5174), + [anon_sym_yield] = ACTIONS(5174), + [anon_sym_break] = ACTIONS(5174), + [anon_sym_continue] = ACTIONS(5174), + [anon_sym_defer] = ACTIONS(5174), + [anon_sym_errdefer] = ACTIONS(5174), + [anon_sym_if] = ACTIONS(5174), + [anon_sym_else] = ACTIONS(5174), + [anon_sym_while] = ACTIONS(5174), + [anon_sym_expand] = ACTIONS(5174), + [anon_sym_for] = ACTIONS(5174), + [anon_sym_match] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(5172), + [anon_sym_TILDE] = ACTIONS(5172), + [anon_sym_try] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5172), + [anon_sym_true] = ACTIONS(5174), + [anon_sym_false] = ACTIONS(5174), + [anon_sym_null] = ACTIONS(5174), + [anon_sym_unreachable] = ACTIONS(5174), + [anon_sym_undefined] = ACTIONS(5174), + [sym_sink] = ACTIONS(5174), + [sym_integer] = ACTIONS(5174), + [sym_float] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [sym_multiline_string] = ACTIONS(5172), + [sym_character] = ACTIONS(5172), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5172), + }, + [STATE(6675)] = { + [ts_builtin_sym_end] = ACTIONS(5628), + [sym_identifier] = ACTIONS(5630), + [anon_sym_import] = ACTIONS(5630), + [anon_sym_test] = ACTIONS(5630), + [anon_sym_hide] = ACTIONS(5630), + [anon_sym_func] = ACTIONS(5630), + [anon_sym_BANG] = ACTIONS(5628), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(5628), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_DOLLAR] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [anon_sym_void] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_type] = ACTIONS(5630), + [anon_sym_anyopaque] = ACTIONS(5630), + [anon_sym_bool] = ACTIONS(5630), + [anon_sym_int] = ACTIONS(5630), + [anon_sym_uint] = ACTIONS(5630), + [anon_sym_float] = ACTIONS(5630), + [anon_sym_range] = ACTIONS(5630), + [anon_sym_i8] = ACTIONS(5630), + [anon_sym_i16] = ACTIONS(5630), + [anon_sym_i32] = ACTIONS(5630), + [anon_sym_i64] = ACTIONS(5630), + [anon_sym_u8] = ACTIONS(5630), + [anon_sym_u16] = ACTIONS(5630), + [anon_sym_u32] = ACTIONS(5630), + [anon_sym_u64] = ACTIONS(5630), + [anon_sym_isize] = ACTIONS(5630), + [anon_sym_usize] = ACTIONS(5630), + [anon_sym_f32] = ACTIONS(5630), + [anon_sym_f64] = ACTIONS(5630), + [anon_sym_c_char] = ACTIONS(5630), + [anon_sym_c_schar] = ACTIONS(5630), + [anon_sym_c_uchar] = ACTIONS(5630), + [anon_sym_c_short] = ACTIONS(5630), + [anon_sym_c_ushort] = ACTIONS(5630), + [anon_sym_c_int] = ACTIONS(5630), + [anon_sym_c_uint] = ACTIONS(5630), + [anon_sym_c_long] = ACTIONS(5630), + [anon_sym_c_ulong] = ACTIONS(5630), + [anon_sym_c_longlong] = ACTIONS(5630), + [anon_sym_c_ulonglong] = ACTIONS(5630), + [anon_sym_c_float] = ACTIONS(5630), + [anon_sym_c_double] = ACTIONS(5630), + [anon_sym_c_longdouble] = ACTIONS(5630), + [anon_sym_return] = ACTIONS(5630), + [anon_sym_yield] = ACTIONS(5630), + [anon_sym_break] = ACTIONS(5630), + [anon_sym_continue] = ACTIONS(5630), + [anon_sym_defer] = ACTIONS(5630), + [anon_sym_errdefer] = ACTIONS(5630), + [anon_sym_if] = ACTIONS(5630), + [anon_sym_else] = ACTIONS(5630), + [anon_sym_while] = ACTIONS(5630), + [anon_sym_expand] = ACTIONS(5630), + [anon_sym_for] = ACTIONS(5630), + [anon_sym_match] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(5628), + [anon_sym_TILDE] = ACTIONS(5628), + [anon_sym_try] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5628), + [anon_sym_true] = ACTIONS(5630), + [anon_sym_false] = ACTIONS(5630), + [anon_sym_null] = ACTIONS(5630), + [anon_sym_unreachable] = ACTIONS(5630), + [anon_sym_undefined] = ACTIONS(5630), + [sym_sink] = ACTIONS(5630), + [sym_integer] = ACTIONS(5630), + [sym_float] = ACTIONS(5628), + [anon_sym_DQUOTE] = ACTIONS(5628), + [sym_multiline_string] = ACTIONS(5628), + [sym_character] = ACTIONS(5628), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5628), + }, + [STATE(6676)] = { + [ts_builtin_sym_end] = ACTIONS(5344), + [sym_identifier] = ACTIONS(5346), + [anon_sym_import] = ACTIONS(5346), + [anon_sym_test] = ACTIONS(5346), + [anon_sym_hide] = ACTIONS(5346), + [anon_sym_func] = ACTIONS(5346), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_LPAREN] = ACTIONS(5344), + [anon_sym_RPAREN] = ACTIONS(5344), + [anon_sym_LBRACE] = ACTIONS(5344), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_LBRACK] = ACTIONS(5344), + [anon_sym_void] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_type] = ACTIONS(5346), + [anon_sym_anyopaque] = ACTIONS(5346), + [anon_sym_bool] = ACTIONS(5346), + [anon_sym_int] = ACTIONS(5346), + [anon_sym_uint] = ACTIONS(5346), + [anon_sym_float] = ACTIONS(5346), + [anon_sym_range] = ACTIONS(5346), + [anon_sym_i8] = ACTIONS(5346), + [anon_sym_i16] = ACTIONS(5346), + [anon_sym_i32] = ACTIONS(5346), + [anon_sym_i64] = ACTIONS(5346), + [anon_sym_u8] = ACTIONS(5346), + [anon_sym_u16] = ACTIONS(5346), + [anon_sym_u32] = ACTIONS(5346), + [anon_sym_u64] = ACTIONS(5346), + [anon_sym_isize] = ACTIONS(5346), + [anon_sym_usize] = ACTIONS(5346), + [anon_sym_f32] = ACTIONS(5346), + [anon_sym_f64] = ACTIONS(5346), + [anon_sym_c_char] = ACTIONS(5346), + [anon_sym_c_schar] = ACTIONS(5346), + [anon_sym_c_uchar] = ACTIONS(5346), + [anon_sym_c_short] = ACTIONS(5346), + [anon_sym_c_ushort] = ACTIONS(5346), + [anon_sym_c_int] = ACTIONS(5346), + [anon_sym_c_uint] = ACTIONS(5346), + [anon_sym_c_long] = ACTIONS(5346), + [anon_sym_c_ulong] = ACTIONS(5346), + [anon_sym_c_longlong] = ACTIONS(5346), + [anon_sym_c_ulonglong] = ACTIONS(5346), + [anon_sym_c_float] = ACTIONS(5346), + [anon_sym_c_double] = ACTIONS(5346), + [anon_sym_c_longdouble] = ACTIONS(5346), + [anon_sym_return] = ACTIONS(5346), + [anon_sym_yield] = ACTIONS(5346), + [anon_sym_break] = ACTIONS(5346), + [anon_sym_continue] = ACTIONS(5346), + [anon_sym_defer] = ACTIONS(5346), + [anon_sym_errdefer] = ACTIONS(5346), + [anon_sym_if] = ACTIONS(5346), + [anon_sym_else] = ACTIONS(5346), + [anon_sym_while] = ACTIONS(5346), + [anon_sym_expand] = ACTIONS(5346), + [anon_sym_for] = ACTIONS(5346), + [anon_sym_match] = ACTIONS(5346), + [anon_sym_AMP] = ACTIONS(5344), + [anon_sym_TILDE] = ACTIONS(5344), + [anon_sym_try] = ACTIONS(5346), + [anon_sym_DOT] = ACTIONS(5344), + [anon_sym_true] = ACTIONS(5346), + [anon_sym_false] = ACTIONS(5346), + [anon_sym_null] = ACTIONS(5346), + [anon_sym_unreachable] = ACTIONS(5346), + [anon_sym_undefined] = ACTIONS(5346), + [sym_sink] = ACTIONS(5346), + [sym_integer] = ACTIONS(5346), + [sym_float] = ACTIONS(5344), + [anon_sym_DQUOTE] = ACTIONS(5344), + [sym_multiline_string] = ACTIONS(5344), + [sym_character] = ACTIONS(5344), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5344), + }, + [STATE(6677)] = { + [ts_builtin_sym_end] = ACTIONS(5002), + [sym_identifier] = ACTIONS(5004), + [anon_sym_import] = ACTIONS(5004), + [anon_sym_test] = ACTIONS(5004), + [anon_sym_hide] = ACTIONS(5004), + [anon_sym_func] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5002), + [anon_sym_struct] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_void] = ACTIONS(5004), + [anon_sym_noreturn] = ACTIONS(5004), + [anon_sym_type] = ACTIONS(5004), + [anon_sym_anyopaque] = ACTIONS(5004), + [anon_sym_bool] = ACTIONS(5004), + [anon_sym_int] = ACTIONS(5004), + [anon_sym_uint] = ACTIONS(5004), + [anon_sym_float] = ACTIONS(5004), + [anon_sym_range] = ACTIONS(5004), + [anon_sym_i8] = ACTIONS(5004), + [anon_sym_i16] = ACTIONS(5004), + [anon_sym_i32] = ACTIONS(5004), + [anon_sym_i64] = ACTIONS(5004), + [anon_sym_u8] = ACTIONS(5004), + [anon_sym_u16] = ACTIONS(5004), + [anon_sym_u32] = ACTIONS(5004), + [anon_sym_u64] = ACTIONS(5004), + [anon_sym_isize] = ACTIONS(5004), + [anon_sym_usize] = ACTIONS(5004), + [anon_sym_f32] = ACTIONS(5004), + [anon_sym_f64] = ACTIONS(5004), + [anon_sym_c_char] = ACTIONS(5004), + [anon_sym_c_schar] = ACTIONS(5004), + [anon_sym_c_uchar] = ACTIONS(5004), + [anon_sym_c_short] = ACTIONS(5004), + [anon_sym_c_ushort] = ACTIONS(5004), + [anon_sym_c_int] = ACTIONS(5004), + [anon_sym_c_uint] = ACTIONS(5004), + [anon_sym_c_long] = ACTIONS(5004), + [anon_sym_c_ulong] = ACTIONS(5004), + [anon_sym_c_longlong] = ACTIONS(5004), + [anon_sym_c_ulonglong] = ACTIONS(5004), + [anon_sym_c_float] = ACTIONS(5004), + [anon_sym_c_double] = ACTIONS(5004), + [anon_sym_c_longdouble] = ACTIONS(5004), + [anon_sym_return] = ACTIONS(5004), + [anon_sym_yield] = ACTIONS(5004), + [anon_sym_break] = ACTIONS(5004), + [anon_sym_continue] = ACTIONS(5004), + [anon_sym_defer] = ACTIONS(5004), + [anon_sym_errdefer] = ACTIONS(5004), + [anon_sym_if] = ACTIONS(5004), + [anon_sym_else] = ACTIONS(5004), + [anon_sym_while] = ACTIONS(5004), + [anon_sym_expand] = ACTIONS(5004), + [anon_sym_for] = ACTIONS(5004), + [anon_sym_match] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_TILDE] = ACTIONS(5002), + [anon_sym_try] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_true] = ACTIONS(5004), + [anon_sym_false] = ACTIONS(5004), + [anon_sym_null] = ACTIONS(5004), + [anon_sym_unreachable] = ACTIONS(5004), + [anon_sym_undefined] = ACTIONS(5004), + [sym_sink] = ACTIONS(5004), + [sym_integer] = ACTIONS(5004), + [sym_float] = ACTIONS(5002), + [anon_sym_DQUOTE] = ACTIONS(5002), + [sym_multiline_string] = ACTIONS(5002), + [sym_character] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5002), + }, + [STATE(6678)] = { + [ts_builtin_sym_end] = ACTIONS(5282), + [sym_identifier] = ACTIONS(5284), + [anon_sym_import] = ACTIONS(5284), + [anon_sym_test] = ACTIONS(5284), + [anon_sym_hide] = ACTIONS(5284), + [anon_sym_func] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5282), + [anon_sym_struct] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_void] = ACTIONS(5284), + [anon_sym_noreturn] = ACTIONS(5284), + [anon_sym_type] = ACTIONS(5284), + [anon_sym_anyopaque] = ACTIONS(5284), + [anon_sym_bool] = ACTIONS(5284), + [anon_sym_int] = ACTIONS(5284), + [anon_sym_uint] = ACTIONS(5284), + [anon_sym_float] = ACTIONS(5284), + [anon_sym_range] = ACTIONS(5284), + [anon_sym_i8] = ACTIONS(5284), + [anon_sym_i16] = ACTIONS(5284), + [anon_sym_i32] = ACTIONS(5284), + [anon_sym_i64] = ACTIONS(5284), + [anon_sym_u8] = ACTIONS(5284), + [anon_sym_u16] = ACTIONS(5284), + [anon_sym_u32] = ACTIONS(5284), + [anon_sym_u64] = ACTIONS(5284), + [anon_sym_isize] = ACTIONS(5284), + [anon_sym_usize] = ACTIONS(5284), + [anon_sym_f32] = ACTIONS(5284), + [anon_sym_f64] = ACTIONS(5284), + [anon_sym_c_char] = ACTIONS(5284), + [anon_sym_c_schar] = ACTIONS(5284), + [anon_sym_c_uchar] = ACTIONS(5284), + [anon_sym_c_short] = ACTIONS(5284), + [anon_sym_c_ushort] = ACTIONS(5284), + [anon_sym_c_int] = ACTIONS(5284), + [anon_sym_c_uint] = ACTIONS(5284), + [anon_sym_c_long] = ACTIONS(5284), + [anon_sym_c_ulong] = ACTIONS(5284), + [anon_sym_c_longlong] = ACTIONS(5284), + [anon_sym_c_ulonglong] = ACTIONS(5284), + [anon_sym_c_float] = ACTIONS(5284), + [anon_sym_c_double] = ACTIONS(5284), + [anon_sym_c_longdouble] = ACTIONS(5284), + [anon_sym_return] = ACTIONS(5284), + [anon_sym_yield] = ACTIONS(5284), + [anon_sym_break] = ACTIONS(5284), + [anon_sym_continue] = ACTIONS(5284), + [anon_sym_defer] = ACTIONS(5284), + [anon_sym_errdefer] = ACTIONS(5284), + [anon_sym_if] = ACTIONS(5284), + [anon_sym_else] = ACTIONS(5284), + [anon_sym_while] = ACTIONS(5284), + [anon_sym_expand] = ACTIONS(5284), + [anon_sym_for] = ACTIONS(5284), + [anon_sym_match] = ACTIONS(5284), + [anon_sym_AMP] = ACTIONS(5282), + [anon_sym_TILDE] = ACTIONS(5282), + [anon_sym_try] = ACTIONS(5284), + [anon_sym_DOT] = ACTIONS(5282), + [anon_sym_true] = ACTIONS(5284), + [anon_sym_false] = ACTIONS(5284), + [anon_sym_null] = ACTIONS(5284), + [anon_sym_unreachable] = ACTIONS(5284), + [anon_sym_undefined] = ACTIONS(5284), + [sym_sink] = ACTIONS(5284), + [sym_integer] = ACTIONS(5284), + [sym_float] = ACTIONS(5282), + [anon_sym_DQUOTE] = ACTIONS(5282), + [sym_multiline_string] = ACTIONS(5282), + [sym_character] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5282), + }, + [STATE(6679)] = { + [ts_builtin_sym_end] = ACTIONS(5290), + [sym_identifier] = ACTIONS(5292), + [anon_sym_import] = ACTIONS(5292), + [anon_sym_test] = ACTIONS(5292), + [anon_sym_hide] = ACTIONS(5292), + [anon_sym_func] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5290), + [anon_sym_struct] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [anon_sym_RBRACE] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_void] = ACTIONS(5292), + [anon_sym_noreturn] = ACTIONS(5292), + [anon_sym_type] = ACTIONS(5292), + [anon_sym_anyopaque] = ACTIONS(5292), + [anon_sym_bool] = ACTIONS(5292), + [anon_sym_int] = ACTIONS(5292), + [anon_sym_uint] = ACTIONS(5292), + [anon_sym_float] = ACTIONS(5292), + [anon_sym_range] = ACTIONS(5292), + [anon_sym_i8] = ACTIONS(5292), + [anon_sym_i16] = ACTIONS(5292), + [anon_sym_i32] = ACTIONS(5292), + [anon_sym_i64] = ACTIONS(5292), + [anon_sym_u8] = ACTIONS(5292), + [anon_sym_u16] = ACTIONS(5292), + [anon_sym_u32] = ACTIONS(5292), + [anon_sym_u64] = ACTIONS(5292), + [anon_sym_isize] = ACTIONS(5292), + [anon_sym_usize] = ACTIONS(5292), + [anon_sym_f32] = ACTIONS(5292), + [anon_sym_f64] = ACTIONS(5292), + [anon_sym_c_char] = ACTIONS(5292), + [anon_sym_c_schar] = ACTIONS(5292), + [anon_sym_c_uchar] = ACTIONS(5292), + [anon_sym_c_short] = ACTIONS(5292), + [anon_sym_c_ushort] = ACTIONS(5292), + [anon_sym_c_int] = ACTIONS(5292), + [anon_sym_c_uint] = ACTIONS(5292), + [anon_sym_c_long] = ACTIONS(5292), + [anon_sym_c_ulong] = ACTIONS(5292), + [anon_sym_c_longlong] = ACTIONS(5292), + [anon_sym_c_ulonglong] = ACTIONS(5292), + [anon_sym_c_float] = ACTIONS(5292), + [anon_sym_c_double] = ACTIONS(5292), + [anon_sym_c_longdouble] = ACTIONS(5292), + [anon_sym_return] = ACTIONS(5292), + [anon_sym_yield] = ACTIONS(5292), + [anon_sym_break] = ACTIONS(5292), + [anon_sym_continue] = ACTIONS(5292), + [anon_sym_defer] = ACTIONS(5292), + [anon_sym_errdefer] = ACTIONS(5292), + [anon_sym_if] = ACTIONS(5292), + [anon_sym_else] = ACTIONS(5292), + [anon_sym_while] = ACTIONS(5292), + [anon_sym_expand] = ACTIONS(5292), + [anon_sym_for] = ACTIONS(5292), + [anon_sym_match] = ACTIONS(5292), + [anon_sym_AMP] = ACTIONS(5290), + [anon_sym_TILDE] = ACTIONS(5290), + [anon_sym_try] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5290), + [anon_sym_true] = ACTIONS(5292), + [anon_sym_false] = ACTIONS(5292), + [anon_sym_null] = ACTIONS(5292), + [anon_sym_unreachable] = ACTIONS(5292), + [anon_sym_undefined] = ACTIONS(5292), + [sym_sink] = ACTIONS(5292), + [sym_integer] = ACTIONS(5292), + [sym_float] = ACTIONS(5290), + [anon_sym_DQUOTE] = ACTIONS(5290), + [sym_multiline_string] = ACTIONS(5290), + [sym_character] = ACTIONS(5290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5290), + }, + [STATE(6680)] = { + [ts_builtin_sym_end] = ACTIONS(4728), + [sym_identifier] = ACTIONS(4730), + [anon_sym_import] = ACTIONS(4730), + [anon_sym_test] = ACTIONS(4730), + [anon_sym_hide] = ACTIONS(4730), + [anon_sym_func] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_struct] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_void] = ACTIONS(4730), + [anon_sym_noreturn] = ACTIONS(4730), + [anon_sym_type] = ACTIONS(4730), + [anon_sym_anyopaque] = ACTIONS(4730), + [anon_sym_bool] = ACTIONS(4730), + [anon_sym_int] = ACTIONS(4730), + [anon_sym_uint] = ACTIONS(4730), + [anon_sym_float] = ACTIONS(4730), + [anon_sym_range] = ACTIONS(4730), + [anon_sym_i8] = ACTIONS(4730), + [anon_sym_i16] = ACTIONS(4730), + [anon_sym_i32] = ACTIONS(4730), + [anon_sym_i64] = ACTIONS(4730), + [anon_sym_u8] = ACTIONS(4730), + [anon_sym_u16] = ACTIONS(4730), + [anon_sym_u32] = ACTIONS(4730), + [anon_sym_u64] = ACTIONS(4730), + [anon_sym_isize] = ACTIONS(4730), + [anon_sym_usize] = ACTIONS(4730), + [anon_sym_f32] = ACTIONS(4730), + [anon_sym_f64] = ACTIONS(4730), + [anon_sym_c_char] = ACTIONS(4730), + [anon_sym_c_schar] = ACTIONS(4730), + [anon_sym_c_uchar] = ACTIONS(4730), + [anon_sym_c_short] = ACTIONS(4730), + [anon_sym_c_ushort] = ACTIONS(4730), + [anon_sym_c_int] = ACTIONS(4730), + [anon_sym_c_uint] = ACTIONS(4730), + [anon_sym_c_long] = ACTIONS(4730), + [anon_sym_c_ulong] = ACTIONS(4730), + [anon_sym_c_longlong] = ACTIONS(4730), + [anon_sym_c_ulonglong] = ACTIONS(4730), + [anon_sym_c_float] = ACTIONS(4730), + [anon_sym_c_double] = ACTIONS(4730), + [anon_sym_c_longdouble] = ACTIONS(4730), + [anon_sym_return] = ACTIONS(4730), + [anon_sym_yield] = ACTIONS(4730), + [anon_sym_break] = ACTIONS(4730), + [anon_sym_continue] = ACTIONS(4730), + [anon_sym_defer] = ACTIONS(4730), + [anon_sym_errdefer] = ACTIONS(4730), + [anon_sym_if] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_while] = ACTIONS(4730), + [anon_sym_expand] = ACTIONS(4730), + [anon_sym_for] = ACTIONS(4730), + [anon_sym_match] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4730), + [anon_sym_false] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4730), + [anon_sym_unreachable] = ACTIONS(4730), + [anon_sym_undefined] = ACTIONS(4730), + [sym_sink] = ACTIONS(4730), + [sym_integer] = ACTIONS(4730), + [sym_float] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [sym_multiline_string] = ACTIONS(4728), + [sym_character] = ACTIONS(4728), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4728), + }, + [STATE(6681)] = { + [ts_builtin_sym_end] = ACTIONS(5632), + [sym_identifier] = ACTIONS(5634), + [anon_sym_import] = ACTIONS(5634), + [anon_sym_test] = ACTIONS(5634), + [anon_sym_hide] = ACTIONS(5634), + [anon_sym_func] = ACTIONS(5634), + [anon_sym_BANG] = ACTIONS(5632), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_LPAREN] = ACTIONS(5632), + [anon_sym_RPAREN] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5632), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_DASH] = ACTIONS(5632), + [anon_sym_DOLLAR] = ACTIONS(5632), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_void] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_type] = ACTIONS(5634), + [anon_sym_anyopaque] = ACTIONS(5634), + [anon_sym_bool] = ACTIONS(5634), + [anon_sym_int] = ACTIONS(5634), + [anon_sym_uint] = ACTIONS(5634), + [anon_sym_float] = ACTIONS(5634), + [anon_sym_range] = ACTIONS(5634), + [anon_sym_i8] = ACTIONS(5634), + [anon_sym_i16] = ACTIONS(5634), + [anon_sym_i32] = ACTIONS(5634), + [anon_sym_i64] = ACTIONS(5634), + [anon_sym_u8] = ACTIONS(5634), + [anon_sym_u16] = ACTIONS(5634), + [anon_sym_u32] = ACTIONS(5634), + [anon_sym_u64] = ACTIONS(5634), + [anon_sym_isize] = ACTIONS(5634), + [anon_sym_usize] = ACTIONS(5634), + [anon_sym_f32] = ACTIONS(5634), + [anon_sym_f64] = ACTIONS(5634), + [anon_sym_c_char] = ACTIONS(5634), + [anon_sym_c_schar] = ACTIONS(5634), + [anon_sym_c_uchar] = ACTIONS(5634), + [anon_sym_c_short] = ACTIONS(5634), + [anon_sym_c_ushort] = ACTIONS(5634), + [anon_sym_c_int] = ACTIONS(5634), + [anon_sym_c_uint] = ACTIONS(5634), + [anon_sym_c_long] = ACTIONS(5634), + [anon_sym_c_ulong] = ACTIONS(5634), + [anon_sym_c_longlong] = ACTIONS(5634), + [anon_sym_c_ulonglong] = ACTIONS(5634), + [anon_sym_c_float] = ACTIONS(5634), + [anon_sym_c_double] = ACTIONS(5634), + [anon_sym_c_longdouble] = ACTIONS(5634), + [anon_sym_return] = ACTIONS(5634), + [anon_sym_yield] = ACTIONS(5634), + [anon_sym_break] = ACTIONS(5634), + [anon_sym_continue] = ACTIONS(5634), + [anon_sym_defer] = ACTIONS(5634), + [anon_sym_errdefer] = ACTIONS(5634), + [anon_sym_if] = ACTIONS(5634), + [anon_sym_else] = ACTIONS(5634), + [anon_sym_while] = ACTIONS(5634), + [anon_sym_expand] = ACTIONS(5634), + [anon_sym_for] = ACTIONS(5634), + [anon_sym_match] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(5632), + [anon_sym_TILDE] = ACTIONS(5632), + [anon_sym_try] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_true] = ACTIONS(5634), + [anon_sym_false] = ACTIONS(5634), + [anon_sym_null] = ACTIONS(5634), + [anon_sym_unreachable] = ACTIONS(5634), + [anon_sym_undefined] = ACTIONS(5634), + [sym_sink] = ACTIONS(5634), + [sym_integer] = ACTIONS(5634), + [sym_float] = ACTIONS(5632), + [anon_sym_DQUOTE] = ACTIONS(5632), + [sym_multiline_string] = ACTIONS(5632), + [sym_character] = ACTIONS(5632), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5632), + }, + [STATE(6682)] = { + [ts_builtin_sym_end] = ACTIONS(5384), + [sym_identifier] = ACTIONS(5386), + [anon_sym_import] = ACTIONS(5386), + [anon_sym_test] = ACTIONS(5386), + [anon_sym_hide] = ACTIONS(5386), + [anon_sym_func] = ACTIONS(5386), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_struct] = ACTIONS(5386), + [anon_sym_LPAREN] = ACTIONS(5384), + [anon_sym_RPAREN] = ACTIONS(5384), + [anon_sym_LBRACE] = ACTIONS(5384), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5384), + [anon_sym_void] = ACTIONS(5386), + [anon_sym_noreturn] = ACTIONS(5386), + [anon_sym_type] = ACTIONS(5386), + [anon_sym_anyopaque] = ACTIONS(5386), + [anon_sym_bool] = ACTIONS(5386), + [anon_sym_int] = ACTIONS(5386), + [anon_sym_uint] = ACTIONS(5386), + [anon_sym_float] = ACTIONS(5386), + [anon_sym_range] = ACTIONS(5386), + [anon_sym_i8] = ACTIONS(5386), + [anon_sym_i16] = ACTIONS(5386), + [anon_sym_i32] = ACTIONS(5386), + [anon_sym_i64] = ACTIONS(5386), + [anon_sym_u8] = ACTIONS(5386), + [anon_sym_u16] = ACTIONS(5386), + [anon_sym_u32] = ACTIONS(5386), + [anon_sym_u64] = ACTIONS(5386), + [anon_sym_isize] = ACTIONS(5386), + [anon_sym_usize] = ACTIONS(5386), + [anon_sym_f32] = ACTIONS(5386), + [anon_sym_f64] = ACTIONS(5386), + [anon_sym_c_char] = ACTIONS(5386), + [anon_sym_c_schar] = ACTIONS(5386), + [anon_sym_c_uchar] = ACTIONS(5386), + [anon_sym_c_short] = ACTIONS(5386), + [anon_sym_c_ushort] = ACTIONS(5386), + [anon_sym_c_int] = ACTIONS(5386), + [anon_sym_c_uint] = ACTIONS(5386), + [anon_sym_c_long] = ACTIONS(5386), + [anon_sym_c_ulong] = ACTIONS(5386), + [anon_sym_c_longlong] = ACTIONS(5386), + [anon_sym_c_ulonglong] = ACTIONS(5386), + [anon_sym_c_float] = ACTIONS(5386), + [anon_sym_c_double] = ACTIONS(5386), + [anon_sym_c_longdouble] = ACTIONS(5386), + [anon_sym_return] = ACTIONS(5386), + [anon_sym_yield] = ACTIONS(5386), + [anon_sym_break] = ACTIONS(5386), + [anon_sym_continue] = ACTIONS(5386), + [anon_sym_defer] = ACTIONS(5386), + [anon_sym_errdefer] = ACTIONS(5386), + [anon_sym_if] = ACTIONS(5386), + [anon_sym_else] = ACTIONS(5386), + [anon_sym_while] = ACTIONS(5386), + [anon_sym_expand] = ACTIONS(5386), + [anon_sym_for] = ACTIONS(5386), + [anon_sym_match] = ACTIONS(5386), + [anon_sym_AMP] = ACTIONS(5384), + [anon_sym_TILDE] = ACTIONS(5384), + [anon_sym_try] = ACTIONS(5386), + [anon_sym_DOT] = ACTIONS(5384), + [anon_sym_true] = ACTIONS(5386), + [anon_sym_false] = ACTIONS(5386), + [anon_sym_null] = ACTIONS(5386), + [anon_sym_unreachable] = ACTIONS(5386), + [anon_sym_undefined] = ACTIONS(5386), + [sym_sink] = ACTIONS(5386), + [sym_integer] = ACTIONS(5386), + [sym_float] = ACTIONS(5384), + [anon_sym_DQUOTE] = ACTIONS(5384), + [sym_multiline_string] = ACTIONS(5384), + [sym_character] = ACTIONS(5384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5384), + }, + [STATE(6683)] = { + [ts_builtin_sym_end] = ACTIONS(4742), + [sym_identifier] = ACTIONS(4744), + [anon_sym_import] = ACTIONS(4744), + [anon_sym_test] = ACTIONS(4744), + [anon_sym_hide] = ACTIONS(4744), + [anon_sym_func] = ACTIONS(4744), + [anon_sym_BANG] = ACTIONS(4742), + [anon_sym_struct] = ACTIONS(4744), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_void] = ACTIONS(4744), + [anon_sym_noreturn] = ACTIONS(4744), + [anon_sym_type] = ACTIONS(4744), + [anon_sym_anyopaque] = ACTIONS(4744), + [anon_sym_bool] = ACTIONS(4744), + [anon_sym_int] = ACTIONS(4744), + [anon_sym_uint] = ACTIONS(4744), + [anon_sym_float] = ACTIONS(4744), + [anon_sym_range] = ACTIONS(4744), + [anon_sym_i8] = ACTIONS(4744), + [anon_sym_i16] = ACTIONS(4744), + [anon_sym_i32] = ACTIONS(4744), + [anon_sym_i64] = ACTIONS(4744), + [anon_sym_u8] = ACTIONS(4744), + [anon_sym_u16] = ACTIONS(4744), + [anon_sym_u32] = ACTIONS(4744), + [anon_sym_u64] = ACTIONS(4744), + [anon_sym_isize] = ACTIONS(4744), + [anon_sym_usize] = ACTIONS(4744), + [anon_sym_f32] = ACTIONS(4744), + [anon_sym_f64] = ACTIONS(4744), + [anon_sym_c_char] = ACTIONS(4744), + [anon_sym_c_schar] = ACTIONS(4744), + [anon_sym_c_uchar] = ACTIONS(4744), + [anon_sym_c_short] = ACTIONS(4744), + [anon_sym_c_ushort] = ACTIONS(4744), + [anon_sym_c_int] = ACTIONS(4744), + [anon_sym_c_uint] = ACTIONS(4744), + [anon_sym_c_long] = ACTIONS(4744), + [anon_sym_c_ulong] = ACTIONS(4744), + [anon_sym_c_longlong] = ACTIONS(4744), + [anon_sym_c_ulonglong] = ACTIONS(4744), + [anon_sym_c_float] = ACTIONS(4744), + [anon_sym_c_double] = ACTIONS(4744), + [anon_sym_c_longdouble] = ACTIONS(4744), + [anon_sym_return] = ACTIONS(4744), + [anon_sym_yield] = ACTIONS(4744), + [anon_sym_break] = ACTIONS(4744), + [anon_sym_continue] = ACTIONS(4744), + [anon_sym_defer] = ACTIONS(4744), + [anon_sym_errdefer] = ACTIONS(4744), + [anon_sym_if] = ACTIONS(4744), + [anon_sym_else] = ACTIONS(4744), + [anon_sym_while] = ACTIONS(4744), + [anon_sym_expand] = ACTIONS(4744), + [anon_sym_for] = ACTIONS(4744), + [anon_sym_match] = ACTIONS(4744), + [anon_sym_AMP] = ACTIONS(4742), + [anon_sym_TILDE] = ACTIONS(4742), + [anon_sym_try] = ACTIONS(4744), + [anon_sym_DOT] = ACTIONS(4742), + [anon_sym_true] = ACTIONS(4744), + [anon_sym_false] = ACTIONS(4744), + [anon_sym_null] = ACTIONS(4744), + [anon_sym_unreachable] = ACTIONS(4744), + [anon_sym_undefined] = ACTIONS(4744), + [sym_sink] = ACTIONS(4744), + [sym_integer] = ACTIONS(4744), + [sym_float] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [sym_multiline_string] = ACTIONS(4742), + [sym_character] = ACTIONS(4742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4742), + }, + [STATE(6684)] = { + [ts_builtin_sym_end] = ACTIONS(5388), + [sym_identifier] = ACTIONS(5390), + [anon_sym_import] = ACTIONS(5390), + [anon_sym_test] = ACTIONS(5390), + [anon_sym_hide] = ACTIONS(5390), + [anon_sym_func] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_struct] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_RPAREN] = ACTIONS(5388), + [anon_sym_LBRACE] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_void] = ACTIONS(5390), + [anon_sym_noreturn] = ACTIONS(5390), + [anon_sym_type] = ACTIONS(5390), + [anon_sym_anyopaque] = ACTIONS(5390), + [anon_sym_bool] = ACTIONS(5390), + [anon_sym_int] = ACTIONS(5390), + [anon_sym_uint] = ACTIONS(5390), + [anon_sym_float] = ACTIONS(5390), + [anon_sym_range] = ACTIONS(5390), + [anon_sym_i8] = ACTIONS(5390), + [anon_sym_i16] = ACTIONS(5390), + [anon_sym_i32] = ACTIONS(5390), + [anon_sym_i64] = ACTIONS(5390), + [anon_sym_u8] = ACTIONS(5390), + [anon_sym_u16] = ACTIONS(5390), + [anon_sym_u32] = ACTIONS(5390), + [anon_sym_u64] = ACTIONS(5390), + [anon_sym_isize] = ACTIONS(5390), + [anon_sym_usize] = ACTIONS(5390), + [anon_sym_f32] = ACTIONS(5390), + [anon_sym_f64] = ACTIONS(5390), + [anon_sym_c_char] = ACTIONS(5390), + [anon_sym_c_schar] = ACTIONS(5390), + [anon_sym_c_uchar] = ACTIONS(5390), + [anon_sym_c_short] = ACTIONS(5390), + [anon_sym_c_ushort] = ACTIONS(5390), + [anon_sym_c_int] = ACTIONS(5390), + [anon_sym_c_uint] = ACTIONS(5390), + [anon_sym_c_long] = ACTIONS(5390), + [anon_sym_c_ulong] = ACTIONS(5390), + [anon_sym_c_longlong] = ACTIONS(5390), + [anon_sym_c_ulonglong] = ACTIONS(5390), + [anon_sym_c_float] = ACTIONS(5390), + [anon_sym_c_double] = ACTIONS(5390), + [anon_sym_c_longdouble] = ACTIONS(5390), + [anon_sym_return] = ACTIONS(5390), + [anon_sym_yield] = ACTIONS(5390), + [anon_sym_break] = ACTIONS(5390), + [anon_sym_continue] = ACTIONS(5390), + [anon_sym_defer] = ACTIONS(5390), + [anon_sym_errdefer] = ACTIONS(5390), + [anon_sym_if] = ACTIONS(5390), + [anon_sym_else] = ACTIONS(5390), + [anon_sym_while] = ACTIONS(5390), + [anon_sym_expand] = ACTIONS(5390), + [anon_sym_for] = ACTIONS(5390), + [anon_sym_match] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5388), + [anon_sym_TILDE] = ACTIONS(5388), + [anon_sym_try] = ACTIONS(5390), + [anon_sym_DOT] = ACTIONS(5388), + [anon_sym_true] = ACTIONS(5390), + [anon_sym_false] = ACTIONS(5390), + [anon_sym_null] = ACTIONS(5390), + [anon_sym_unreachable] = ACTIONS(5390), + [anon_sym_undefined] = ACTIONS(5390), + [sym_sink] = ACTIONS(5390), + [sym_integer] = ACTIONS(5390), + [sym_float] = ACTIONS(5388), + [anon_sym_DQUOTE] = ACTIONS(5388), + [sym_multiline_string] = ACTIONS(5388), + [sym_character] = ACTIONS(5388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5388), + }, + [STATE(6685)] = { + [ts_builtin_sym_end] = ACTIONS(4864), + [sym_identifier] = ACTIONS(4866), + [anon_sym_import] = ACTIONS(4866), + [anon_sym_test] = ACTIONS(4866), + [anon_sym_hide] = ACTIONS(4866), + [anon_sym_func] = ACTIONS(4866), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_struct] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_void] = ACTIONS(4866), + [anon_sym_noreturn] = ACTIONS(4866), + [anon_sym_type] = ACTIONS(4866), + [anon_sym_anyopaque] = ACTIONS(4866), + [anon_sym_bool] = ACTIONS(4866), + [anon_sym_int] = ACTIONS(4866), + [anon_sym_uint] = ACTIONS(4866), + [anon_sym_float] = ACTIONS(4866), + [anon_sym_range] = ACTIONS(4866), + [anon_sym_i8] = ACTIONS(4866), + [anon_sym_i16] = ACTIONS(4866), + [anon_sym_i32] = ACTIONS(4866), + [anon_sym_i64] = ACTIONS(4866), + [anon_sym_u8] = ACTIONS(4866), + [anon_sym_u16] = ACTIONS(4866), + [anon_sym_u32] = ACTIONS(4866), + [anon_sym_u64] = ACTIONS(4866), + [anon_sym_isize] = ACTIONS(4866), + [anon_sym_usize] = ACTIONS(4866), + [anon_sym_f32] = ACTIONS(4866), + [anon_sym_f64] = ACTIONS(4866), + [anon_sym_c_char] = ACTIONS(4866), + [anon_sym_c_schar] = ACTIONS(4866), + [anon_sym_c_uchar] = ACTIONS(4866), + [anon_sym_c_short] = ACTIONS(4866), + [anon_sym_c_ushort] = ACTIONS(4866), + [anon_sym_c_int] = ACTIONS(4866), + [anon_sym_c_uint] = ACTIONS(4866), + [anon_sym_c_long] = ACTIONS(4866), + [anon_sym_c_ulong] = ACTIONS(4866), + [anon_sym_c_longlong] = ACTIONS(4866), + [anon_sym_c_ulonglong] = ACTIONS(4866), + [anon_sym_c_float] = ACTIONS(4866), + [anon_sym_c_double] = ACTIONS(4866), + [anon_sym_c_longdouble] = ACTIONS(4866), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_yield] = ACTIONS(4866), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_defer] = ACTIONS(4866), + [anon_sym_errdefer] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_while] = ACTIONS(4866), + [anon_sym_expand] = ACTIONS(4866), + [anon_sym_for] = ACTIONS(4866), + [anon_sym_match] = ACTIONS(4866), + [anon_sym_AMP] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_unreachable] = ACTIONS(4866), + [anon_sym_undefined] = ACTIONS(4866), + [sym_sink] = ACTIONS(4866), + [sym_integer] = ACTIONS(4866), + [sym_float] = ACTIONS(4864), + [anon_sym_DQUOTE] = ACTIONS(4864), + [sym_multiline_string] = ACTIONS(4864), + [sym_character] = ACTIONS(4864), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4864), + }, + [STATE(6686)] = { + [ts_builtin_sym_end] = ACTIONS(5294), + [sym_identifier] = ACTIONS(5296), + [anon_sym_import] = ACTIONS(5296), + [anon_sym_test] = ACTIONS(5296), + [anon_sym_hide] = ACTIONS(5296), + [anon_sym_func] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5294), + [anon_sym_struct] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_RPAREN] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_DASH] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_void] = ACTIONS(5296), + [anon_sym_noreturn] = ACTIONS(5296), + [anon_sym_type] = ACTIONS(5296), + [anon_sym_anyopaque] = ACTIONS(5296), + [anon_sym_bool] = ACTIONS(5296), + [anon_sym_int] = ACTIONS(5296), + [anon_sym_uint] = ACTIONS(5296), + [anon_sym_float] = ACTIONS(5296), + [anon_sym_range] = ACTIONS(5296), + [anon_sym_i8] = ACTIONS(5296), + [anon_sym_i16] = ACTIONS(5296), + [anon_sym_i32] = ACTIONS(5296), + [anon_sym_i64] = ACTIONS(5296), + [anon_sym_u8] = ACTIONS(5296), + [anon_sym_u16] = ACTIONS(5296), + [anon_sym_u32] = ACTIONS(5296), + [anon_sym_u64] = ACTIONS(5296), + [anon_sym_isize] = ACTIONS(5296), + [anon_sym_usize] = ACTIONS(5296), + [anon_sym_f32] = ACTIONS(5296), + [anon_sym_f64] = ACTIONS(5296), + [anon_sym_c_char] = ACTIONS(5296), + [anon_sym_c_schar] = ACTIONS(5296), + [anon_sym_c_uchar] = ACTIONS(5296), + [anon_sym_c_short] = ACTIONS(5296), + [anon_sym_c_ushort] = ACTIONS(5296), + [anon_sym_c_int] = ACTIONS(5296), + [anon_sym_c_uint] = ACTIONS(5296), + [anon_sym_c_long] = ACTIONS(5296), + [anon_sym_c_ulong] = ACTIONS(5296), + [anon_sym_c_longlong] = ACTIONS(5296), + [anon_sym_c_ulonglong] = ACTIONS(5296), + [anon_sym_c_float] = ACTIONS(5296), + [anon_sym_c_double] = ACTIONS(5296), + [anon_sym_c_longdouble] = ACTIONS(5296), + [anon_sym_return] = ACTIONS(5296), + [anon_sym_yield] = ACTIONS(5296), + [anon_sym_break] = ACTIONS(5296), + [anon_sym_continue] = ACTIONS(5296), + [anon_sym_defer] = ACTIONS(5296), + [anon_sym_errdefer] = ACTIONS(5296), + [anon_sym_if] = ACTIONS(5296), + [anon_sym_else] = ACTIONS(5296), + [anon_sym_while] = ACTIONS(5296), + [anon_sym_expand] = ACTIONS(5296), + [anon_sym_for] = ACTIONS(5296), + [anon_sym_match] = ACTIONS(5296), + [anon_sym_AMP] = ACTIONS(5294), + [anon_sym_TILDE] = ACTIONS(5294), + [anon_sym_try] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5294), + [anon_sym_true] = ACTIONS(5296), + [anon_sym_false] = ACTIONS(5296), + [anon_sym_null] = ACTIONS(5296), + [anon_sym_unreachable] = ACTIONS(5296), + [anon_sym_undefined] = ACTIONS(5296), + [sym_sink] = ACTIONS(5296), + [sym_integer] = ACTIONS(5296), + [sym_float] = ACTIONS(5294), + [anon_sym_DQUOTE] = ACTIONS(5294), + [sym_multiline_string] = ACTIONS(5294), + [sym_character] = ACTIONS(5294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5294), + }, + [STATE(6687)] = { + [ts_builtin_sym_end] = ACTIONS(4746), + [sym_identifier] = ACTIONS(4748), + [anon_sym_import] = ACTIONS(4748), + [anon_sym_test] = ACTIONS(4748), + [anon_sym_hide] = ACTIONS(4748), + [anon_sym_func] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4746), + [anon_sym_struct] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_RPAREN] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_DOLLAR] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_void] = ACTIONS(4748), + [anon_sym_noreturn] = ACTIONS(4748), + [anon_sym_type] = ACTIONS(4748), + [anon_sym_anyopaque] = ACTIONS(4748), + [anon_sym_bool] = ACTIONS(4748), + [anon_sym_int] = ACTIONS(4748), + [anon_sym_uint] = ACTIONS(4748), + [anon_sym_float] = ACTIONS(4748), + [anon_sym_range] = ACTIONS(4748), + [anon_sym_i8] = ACTIONS(4748), + [anon_sym_i16] = ACTIONS(4748), + [anon_sym_i32] = ACTIONS(4748), + [anon_sym_i64] = ACTIONS(4748), + [anon_sym_u8] = ACTIONS(4748), + [anon_sym_u16] = ACTIONS(4748), + [anon_sym_u32] = ACTIONS(4748), + [anon_sym_u64] = ACTIONS(4748), + [anon_sym_isize] = ACTIONS(4748), + [anon_sym_usize] = ACTIONS(4748), + [anon_sym_f32] = ACTIONS(4748), + [anon_sym_f64] = ACTIONS(4748), + [anon_sym_c_char] = ACTIONS(4748), + [anon_sym_c_schar] = ACTIONS(4748), + [anon_sym_c_uchar] = ACTIONS(4748), + [anon_sym_c_short] = ACTIONS(4748), + [anon_sym_c_ushort] = ACTIONS(4748), + [anon_sym_c_int] = ACTIONS(4748), + [anon_sym_c_uint] = ACTIONS(4748), + [anon_sym_c_long] = ACTIONS(4748), + [anon_sym_c_ulong] = ACTIONS(4748), + [anon_sym_c_longlong] = ACTIONS(4748), + [anon_sym_c_ulonglong] = ACTIONS(4748), + [anon_sym_c_float] = ACTIONS(4748), + [anon_sym_c_double] = ACTIONS(4748), + [anon_sym_c_longdouble] = ACTIONS(4748), + [anon_sym_return] = ACTIONS(4748), + [anon_sym_yield] = ACTIONS(4748), + [anon_sym_break] = ACTIONS(4748), + [anon_sym_continue] = ACTIONS(4748), + [anon_sym_defer] = ACTIONS(4748), + [anon_sym_errdefer] = ACTIONS(4748), + [anon_sym_if] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_while] = ACTIONS(4748), + [anon_sym_expand] = ACTIONS(4748), + [anon_sym_for] = ACTIONS(4748), + [anon_sym_match] = ACTIONS(4748), + [anon_sym_AMP] = ACTIONS(4746), + [anon_sym_TILDE] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_true] = ACTIONS(4748), + [anon_sym_false] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4748), + [anon_sym_unreachable] = ACTIONS(4748), + [anon_sym_undefined] = ACTIONS(4748), + [sym_sink] = ACTIONS(4748), + [sym_integer] = ACTIONS(4748), + [sym_float] = ACTIONS(4746), + [anon_sym_DQUOTE] = ACTIONS(4746), + [sym_multiline_string] = ACTIONS(4746), + [sym_character] = ACTIONS(4746), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4746), + }, + [STATE(6688)] = { + [ts_builtin_sym_end] = ACTIONS(4868), + [sym_identifier] = ACTIONS(4870), + [anon_sym_import] = ACTIONS(4870), + [anon_sym_test] = ACTIONS(4870), + [anon_sym_hide] = ACTIONS(4870), + [anon_sym_func] = ACTIONS(4870), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_struct] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_void] = ACTIONS(4870), + [anon_sym_noreturn] = ACTIONS(4870), + [anon_sym_type] = ACTIONS(4870), + [anon_sym_anyopaque] = ACTIONS(4870), + [anon_sym_bool] = ACTIONS(4870), + [anon_sym_int] = ACTIONS(4870), + [anon_sym_uint] = ACTIONS(4870), + [anon_sym_float] = ACTIONS(4870), + [anon_sym_range] = ACTIONS(4870), + [anon_sym_i8] = ACTIONS(4870), + [anon_sym_i16] = ACTIONS(4870), + [anon_sym_i32] = ACTIONS(4870), + [anon_sym_i64] = ACTIONS(4870), + [anon_sym_u8] = ACTIONS(4870), + [anon_sym_u16] = ACTIONS(4870), + [anon_sym_u32] = ACTIONS(4870), + [anon_sym_u64] = ACTIONS(4870), + [anon_sym_isize] = ACTIONS(4870), + [anon_sym_usize] = ACTIONS(4870), + [anon_sym_f32] = ACTIONS(4870), + [anon_sym_f64] = ACTIONS(4870), + [anon_sym_c_char] = ACTIONS(4870), + [anon_sym_c_schar] = ACTIONS(4870), + [anon_sym_c_uchar] = ACTIONS(4870), + [anon_sym_c_short] = ACTIONS(4870), + [anon_sym_c_ushort] = ACTIONS(4870), + [anon_sym_c_int] = ACTIONS(4870), + [anon_sym_c_uint] = ACTIONS(4870), + [anon_sym_c_long] = ACTIONS(4870), + [anon_sym_c_ulong] = ACTIONS(4870), + [anon_sym_c_longlong] = ACTIONS(4870), + [anon_sym_c_ulonglong] = ACTIONS(4870), + [anon_sym_c_float] = ACTIONS(4870), + [anon_sym_c_double] = ACTIONS(4870), + [anon_sym_c_longdouble] = ACTIONS(4870), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_yield] = ACTIONS(4870), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_defer] = ACTIONS(4870), + [anon_sym_errdefer] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_while] = ACTIONS(4870), + [anon_sym_expand] = ACTIONS(4870), + [anon_sym_for] = ACTIONS(4870), + [anon_sym_match] = ACTIONS(4870), + [anon_sym_AMP] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_unreachable] = ACTIONS(4870), + [anon_sym_undefined] = ACTIONS(4870), + [sym_sink] = ACTIONS(4870), + [sym_integer] = ACTIONS(4870), + [sym_float] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(4868), + [sym_multiline_string] = ACTIONS(4868), + [sym_character] = ACTIONS(4868), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4868), + }, + [STATE(6689)] = { + [ts_builtin_sym_end] = ACTIONS(5392), + [sym_identifier] = ACTIONS(5394), + [anon_sym_import] = ACTIONS(5394), + [anon_sym_test] = ACTIONS(5394), + [anon_sym_hide] = ACTIONS(5394), + [anon_sym_func] = ACTIONS(5394), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_struct] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5392), + [anon_sym_RPAREN] = ACTIONS(5392), + [anon_sym_LBRACE] = ACTIONS(5392), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(5392), + [anon_sym_void] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_type] = ACTIONS(5394), + [anon_sym_anyopaque] = ACTIONS(5394), + [anon_sym_bool] = ACTIONS(5394), + [anon_sym_int] = ACTIONS(5394), + [anon_sym_uint] = ACTIONS(5394), + [anon_sym_float] = ACTIONS(5394), + [anon_sym_range] = ACTIONS(5394), + [anon_sym_i8] = ACTIONS(5394), + [anon_sym_i16] = ACTIONS(5394), + [anon_sym_i32] = ACTIONS(5394), + [anon_sym_i64] = ACTIONS(5394), + [anon_sym_u8] = ACTIONS(5394), + [anon_sym_u16] = ACTIONS(5394), + [anon_sym_u32] = ACTIONS(5394), + [anon_sym_u64] = ACTIONS(5394), + [anon_sym_isize] = ACTIONS(5394), + [anon_sym_usize] = ACTIONS(5394), + [anon_sym_f32] = ACTIONS(5394), + [anon_sym_f64] = ACTIONS(5394), + [anon_sym_c_char] = ACTIONS(5394), + [anon_sym_c_schar] = ACTIONS(5394), + [anon_sym_c_uchar] = ACTIONS(5394), + [anon_sym_c_short] = ACTIONS(5394), + [anon_sym_c_ushort] = ACTIONS(5394), + [anon_sym_c_int] = ACTIONS(5394), + [anon_sym_c_uint] = ACTIONS(5394), + [anon_sym_c_long] = ACTIONS(5394), + [anon_sym_c_ulong] = ACTIONS(5394), + [anon_sym_c_longlong] = ACTIONS(5394), + [anon_sym_c_ulonglong] = ACTIONS(5394), + [anon_sym_c_float] = ACTIONS(5394), + [anon_sym_c_double] = ACTIONS(5394), + [anon_sym_c_longdouble] = ACTIONS(5394), + [anon_sym_return] = ACTIONS(5394), + [anon_sym_yield] = ACTIONS(5394), + [anon_sym_break] = ACTIONS(5394), + [anon_sym_continue] = ACTIONS(5394), + [anon_sym_defer] = ACTIONS(5394), + [anon_sym_errdefer] = ACTIONS(5394), + [anon_sym_if] = ACTIONS(5394), + [anon_sym_else] = ACTIONS(5394), + [anon_sym_while] = ACTIONS(5394), + [anon_sym_expand] = ACTIONS(5394), + [anon_sym_for] = ACTIONS(5394), + [anon_sym_match] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(5392), + [anon_sym_TILDE] = ACTIONS(5392), + [anon_sym_try] = ACTIONS(5394), + [anon_sym_DOT] = ACTIONS(5392), + [anon_sym_true] = ACTIONS(5394), + [anon_sym_false] = ACTIONS(5394), + [anon_sym_null] = ACTIONS(5394), + [anon_sym_unreachable] = ACTIONS(5394), + [anon_sym_undefined] = ACTIONS(5394), + [sym_sink] = ACTIONS(5394), + [sym_integer] = ACTIONS(5394), + [sym_float] = ACTIONS(5392), + [anon_sym_DQUOTE] = ACTIONS(5392), + [sym_multiline_string] = ACTIONS(5392), + [sym_character] = ACTIONS(5392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5392), + }, + [STATE(6690)] = { + [ts_builtin_sym_end] = ACTIONS(5306), + [sym_identifier] = ACTIONS(5308), + [anon_sym_import] = ACTIONS(5308), + [anon_sym_test] = ACTIONS(5308), + [anon_sym_hide] = ACTIONS(5308), + [anon_sym_func] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5306), + [anon_sym_struct] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_RPAREN] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_DOLLAR] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_void] = ACTIONS(5308), + [anon_sym_noreturn] = ACTIONS(5308), + [anon_sym_type] = ACTIONS(5308), + [anon_sym_anyopaque] = ACTIONS(5308), + [anon_sym_bool] = ACTIONS(5308), + [anon_sym_int] = ACTIONS(5308), + [anon_sym_uint] = ACTIONS(5308), + [anon_sym_float] = ACTIONS(5308), + [anon_sym_range] = ACTIONS(5308), + [anon_sym_i8] = ACTIONS(5308), + [anon_sym_i16] = ACTIONS(5308), + [anon_sym_i32] = ACTIONS(5308), + [anon_sym_i64] = ACTIONS(5308), + [anon_sym_u8] = ACTIONS(5308), + [anon_sym_u16] = ACTIONS(5308), + [anon_sym_u32] = ACTIONS(5308), + [anon_sym_u64] = ACTIONS(5308), + [anon_sym_isize] = ACTIONS(5308), + [anon_sym_usize] = ACTIONS(5308), + [anon_sym_f32] = ACTIONS(5308), + [anon_sym_f64] = ACTIONS(5308), + [anon_sym_c_char] = ACTIONS(5308), + [anon_sym_c_schar] = ACTIONS(5308), + [anon_sym_c_uchar] = ACTIONS(5308), + [anon_sym_c_short] = ACTIONS(5308), + [anon_sym_c_ushort] = ACTIONS(5308), + [anon_sym_c_int] = ACTIONS(5308), + [anon_sym_c_uint] = ACTIONS(5308), + [anon_sym_c_long] = ACTIONS(5308), + [anon_sym_c_ulong] = ACTIONS(5308), + [anon_sym_c_longlong] = ACTIONS(5308), + [anon_sym_c_ulonglong] = ACTIONS(5308), + [anon_sym_c_float] = ACTIONS(5308), + [anon_sym_c_double] = ACTIONS(5308), + [anon_sym_c_longdouble] = ACTIONS(5308), + [anon_sym_return] = ACTIONS(5308), + [anon_sym_yield] = ACTIONS(5308), + [anon_sym_break] = ACTIONS(5308), + [anon_sym_continue] = ACTIONS(5308), + [anon_sym_defer] = ACTIONS(5308), + [anon_sym_errdefer] = ACTIONS(5308), + [anon_sym_if] = ACTIONS(5308), + [anon_sym_else] = ACTIONS(5308), + [anon_sym_while] = ACTIONS(5308), + [anon_sym_expand] = ACTIONS(5308), + [anon_sym_for] = ACTIONS(5308), + [anon_sym_match] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5306), + [anon_sym_TILDE] = ACTIONS(5306), + [anon_sym_try] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5306), + [anon_sym_true] = ACTIONS(5308), + [anon_sym_false] = ACTIONS(5308), + [anon_sym_null] = ACTIONS(5308), + [anon_sym_unreachable] = ACTIONS(5308), + [anon_sym_undefined] = ACTIONS(5308), + [sym_sink] = ACTIONS(5308), + [sym_integer] = ACTIONS(5308), + [sym_float] = ACTIONS(5306), + [anon_sym_DQUOTE] = ACTIONS(5306), + [sym_multiline_string] = ACTIONS(5306), + [sym_character] = ACTIONS(5306), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5306), + }, + [STATE(6691)] = { + [ts_builtin_sym_end] = ACTIONS(5120), + [sym_identifier] = ACTIONS(5122), + [anon_sym_import] = ACTIONS(5122), + [anon_sym_test] = ACTIONS(5122), + [anon_sym_hide] = ACTIONS(5122), + [anon_sym_func] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_struct] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_RPAREN] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_void] = ACTIONS(5122), + [anon_sym_noreturn] = ACTIONS(5122), + [anon_sym_type] = ACTIONS(5122), + [anon_sym_anyopaque] = ACTIONS(5122), + [anon_sym_bool] = ACTIONS(5122), + [anon_sym_int] = ACTIONS(5122), + [anon_sym_uint] = ACTIONS(5122), + [anon_sym_float] = ACTIONS(5122), + [anon_sym_range] = ACTIONS(5122), + [anon_sym_i8] = ACTIONS(5122), + [anon_sym_i16] = ACTIONS(5122), + [anon_sym_i32] = ACTIONS(5122), + [anon_sym_i64] = ACTIONS(5122), + [anon_sym_u8] = ACTIONS(5122), + [anon_sym_u16] = ACTIONS(5122), + [anon_sym_u32] = ACTIONS(5122), + [anon_sym_u64] = ACTIONS(5122), + [anon_sym_isize] = ACTIONS(5122), + [anon_sym_usize] = ACTIONS(5122), + [anon_sym_f32] = ACTIONS(5122), + [anon_sym_f64] = ACTIONS(5122), + [anon_sym_c_char] = ACTIONS(5122), + [anon_sym_c_schar] = ACTIONS(5122), + [anon_sym_c_uchar] = ACTIONS(5122), + [anon_sym_c_short] = ACTIONS(5122), + [anon_sym_c_ushort] = ACTIONS(5122), + [anon_sym_c_int] = ACTIONS(5122), + [anon_sym_c_uint] = ACTIONS(5122), + [anon_sym_c_long] = ACTIONS(5122), + [anon_sym_c_ulong] = ACTIONS(5122), + [anon_sym_c_longlong] = ACTIONS(5122), + [anon_sym_c_ulonglong] = ACTIONS(5122), + [anon_sym_c_float] = ACTIONS(5122), + [anon_sym_c_double] = ACTIONS(5122), + [anon_sym_c_longdouble] = ACTIONS(5122), + [anon_sym_return] = ACTIONS(5122), + [anon_sym_yield] = ACTIONS(5122), + [anon_sym_break] = ACTIONS(5122), + [anon_sym_continue] = ACTIONS(5122), + [anon_sym_defer] = ACTIONS(5122), + [anon_sym_errdefer] = ACTIONS(5122), + [anon_sym_if] = ACTIONS(5122), + [anon_sym_else] = ACTIONS(5122), + [anon_sym_while] = ACTIONS(5122), + [anon_sym_expand] = ACTIONS(5122), + [anon_sym_for] = ACTIONS(5122), + [anon_sym_match] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_TILDE] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5120), + [anon_sym_true] = ACTIONS(5122), + [anon_sym_false] = ACTIONS(5122), + [anon_sym_null] = ACTIONS(5122), + [anon_sym_unreachable] = ACTIONS(5122), + [anon_sym_undefined] = ACTIONS(5122), + [sym_sink] = ACTIONS(5122), + [sym_integer] = ACTIONS(5122), + [sym_float] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [sym_multiline_string] = ACTIONS(5120), + [sym_character] = ACTIONS(5120), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5120), + }, + [STATE(6692)] = { + [ts_builtin_sym_end] = ACTIONS(5058), + [sym_identifier] = ACTIONS(5060), + [anon_sym_import] = ACTIONS(5060), + [anon_sym_test] = ACTIONS(5060), + [anon_sym_hide] = ACTIONS(5060), + [anon_sym_func] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(5058), + [anon_sym_struct] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_RPAREN] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5058), + [anon_sym_RBRACE] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_DOLLAR] = ACTIONS(5058), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_void] = ACTIONS(5060), + [anon_sym_noreturn] = ACTIONS(5060), + [anon_sym_type] = ACTIONS(5060), + [anon_sym_anyopaque] = ACTIONS(5060), + [anon_sym_bool] = ACTIONS(5060), + [anon_sym_int] = ACTIONS(5060), + [anon_sym_uint] = ACTIONS(5060), + [anon_sym_float] = ACTIONS(5060), + [anon_sym_range] = ACTIONS(5060), + [anon_sym_i8] = ACTIONS(5060), + [anon_sym_i16] = ACTIONS(5060), + [anon_sym_i32] = ACTIONS(5060), + [anon_sym_i64] = ACTIONS(5060), + [anon_sym_u8] = ACTIONS(5060), + [anon_sym_u16] = ACTIONS(5060), + [anon_sym_u32] = ACTIONS(5060), + [anon_sym_u64] = ACTIONS(5060), + [anon_sym_isize] = ACTIONS(5060), + [anon_sym_usize] = ACTIONS(5060), + [anon_sym_f32] = ACTIONS(5060), + [anon_sym_f64] = ACTIONS(5060), + [anon_sym_c_char] = ACTIONS(5060), + [anon_sym_c_schar] = ACTIONS(5060), + [anon_sym_c_uchar] = ACTIONS(5060), + [anon_sym_c_short] = ACTIONS(5060), + [anon_sym_c_ushort] = ACTIONS(5060), + [anon_sym_c_int] = ACTIONS(5060), + [anon_sym_c_uint] = ACTIONS(5060), + [anon_sym_c_long] = ACTIONS(5060), + [anon_sym_c_ulong] = ACTIONS(5060), + [anon_sym_c_longlong] = ACTIONS(5060), + [anon_sym_c_ulonglong] = ACTIONS(5060), + [anon_sym_c_float] = ACTIONS(5060), + [anon_sym_c_double] = ACTIONS(5060), + [anon_sym_c_longdouble] = ACTIONS(5060), + [anon_sym_return] = ACTIONS(5060), + [anon_sym_yield] = ACTIONS(5060), + [anon_sym_break] = ACTIONS(5060), + [anon_sym_continue] = ACTIONS(5060), + [anon_sym_defer] = ACTIONS(5060), + [anon_sym_errdefer] = ACTIONS(5060), + [anon_sym_if] = ACTIONS(5060), + [anon_sym_else] = ACTIONS(5060), + [anon_sym_while] = ACTIONS(5060), + [anon_sym_expand] = ACTIONS(5060), + [anon_sym_for] = ACTIONS(5060), + [anon_sym_match] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_TILDE] = ACTIONS(5058), + [anon_sym_try] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_true] = ACTIONS(5060), + [anon_sym_false] = ACTIONS(5060), + [anon_sym_null] = ACTIONS(5060), + [anon_sym_unreachable] = ACTIONS(5060), + [anon_sym_undefined] = ACTIONS(5060), + [sym_sink] = ACTIONS(5060), + [sym_integer] = ACTIONS(5060), + [sym_float] = ACTIONS(5058), + [anon_sym_DQUOTE] = ACTIONS(5058), + [sym_multiline_string] = ACTIONS(5058), + [sym_character] = ACTIONS(5058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5058), + }, + [STATE(6693)] = { + [ts_builtin_sym_end] = ACTIONS(4872), + [sym_identifier] = ACTIONS(4874), + [anon_sym_import] = ACTIONS(4874), + [anon_sym_test] = ACTIONS(4874), + [anon_sym_hide] = ACTIONS(4874), + [anon_sym_func] = ACTIONS(4874), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_struct] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_void] = ACTIONS(4874), + [anon_sym_noreturn] = ACTIONS(4874), + [anon_sym_type] = ACTIONS(4874), + [anon_sym_anyopaque] = ACTIONS(4874), + [anon_sym_bool] = ACTIONS(4874), + [anon_sym_int] = ACTIONS(4874), + [anon_sym_uint] = ACTIONS(4874), + [anon_sym_float] = ACTIONS(4874), + [anon_sym_range] = ACTIONS(4874), + [anon_sym_i8] = ACTIONS(4874), + [anon_sym_i16] = ACTIONS(4874), + [anon_sym_i32] = ACTIONS(4874), + [anon_sym_i64] = ACTIONS(4874), + [anon_sym_u8] = ACTIONS(4874), + [anon_sym_u16] = ACTIONS(4874), + [anon_sym_u32] = ACTIONS(4874), + [anon_sym_u64] = ACTIONS(4874), + [anon_sym_isize] = ACTIONS(4874), + [anon_sym_usize] = ACTIONS(4874), + [anon_sym_f32] = ACTIONS(4874), + [anon_sym_f64] = ACTIONS(4874), + [anon_sym_c_char] = ACTIONS(4874), + [anon_sym_c_schar] = ACTIONS(4874), + [anon_sym_c_uchar] = ACTIONS(4874), + [anon_sym_c_short] = ACTIONS(4874), + [anon_sym_c_ushort] = ACTIONS(4874), + [anon_sym_c_int] = ACTIONS(4874), + [anon_sym_c_uint] = ACTIONS(4874), + [anon_sym_c_long] = ACTIONS(4874), + [anon_sym_c_ulong] = ACTIONS(4874), + [anon_sym_c_longlong] = ACTIONS(4874), + [anon_sym_c_ulonglong] = ACTIONS(4874), + [anon_sym_c_float] = ACTIONS(4874), + [anon_sym_c_double] = ACTIONS(4874), + [anon_sym_c_longdouble] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_yield] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_defer] = ACTIONS(4874), + [anon_sym_errdefer] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_expand] = ACTIONS(4874), + [anon_sym_for] = ACTIONS(4874), + [anon_sym_match] = ACTIONS(4874), + [anon_sym_AMP] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4872), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_unreachable] = ACTIONS(4874), + [anon_sym_undefined] = ACTIONS(4874), + [sym_sink] = ACTIONS(4874), + [sym_integer] = ACTIONS(4874), + [sym_float] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [sym_multiline_string] = ACTIONS(4872), + [sym_character] = ACTIONS(4872), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4872), + }, + [STATE(6694)] = { + [ts_builtin_sym_end] = ACTIONS(4642), + [sym_identifier] = ACTIONS(4644), + [anon_sym_import] = ACTIONS(4644), + [anon_sym_test] = ACTIONS(4644), + [anon_sym_hide] = ACTIONS(4644), + [anon_sym_func] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_void] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym_type] = ACTIONS(4644), + [anon_sym_anyopaque] = ACTIONS(4644), + [anon_sym_bool] = ACTIONS(4644), + [anon_sym_int] = ACTIONS(4644), + [anon_sym_uint] = ACTIONS(4644), + [anon_sym_float] = ACTIONS(4644), + [anon_sym_range] = ACTIONS(4644), + [anon_sym_i8] = ACTIONS(4644), + [anon_sym_i16] = ACTIONS(4644), + [anon_sym_i32] = ACTIONS(4644), + [anon_sym_i64] = ACTIONS(4644), + [anon_sym_u8] = ACTIONS(4644), + [anon_sym_u16] = ACTIONS(4644), + [anon_sym_u32] = ACTIONS(4644), + [anon_sym_u64] = ACTIONS(4644), + [anon_sym_isize] = ACTIONS(4644), + [anon_sym_usize] = ACTIONS(4644), + [anon_sym_f32] = ACTIONS(4644), + [anon_sym_f64] = ACTIONS(4644), + [anon_sym_c_char] = ACTIONS(4644), + [anon_sym_c_schar] = ACTIONS(4644), + [anon_sym_c_uchar] = ACTIONS(4644), + [anon_sym_c_short] = ACTIONS(4644), + [anon_sym_c_ushort] = ACTIONS(4644), + [anon_sym_c_int] = ACTIONS(4644), + [anon_sym_c_uint] = ACTIONS(4644), + [anon_sym_c_long] = ACTIONS(4644), + [anon_sym_c_ulong] = ACTIONS(4644), + [anon_sym_c_longlong] = ACTIONS(4644), + [anon_sym_c_ulonglong] = ACTIONS(4644), + [anon_sym_c_float] = ACTIONS(4644), + [anon_sym_c_double] = ACTIONS(4644), + [anon_sym_c_longdouble] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_yield] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_defer] = ACTIONS(4644), + [anon_sym_errdefer] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_expand] = ACTIONS(4644), + [anon_sym_for] = ACTIONS(4644), + [anon_sym_match] = ACTIONS(4644), + [anon_sym_AMP] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_unreachable] = ACTIONS(4644), + [anon_sym_undefined] = ACTIONS(4644), + [sym_sink] = ACTIONS(4644), + [sym_integer] = ACTIONS(4644), + [sym_float] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [sym_multiline_string] = ACTIONS(4642), + [sym_character] = ACTIONS(4642), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4642), + }, + [STATE(6695)] = { + [ts_builtin_sym_end] = ACTIONS(5310), + [sym_identifier] = ACTIONS(5312), + [anon_sym_import] = ACTIONS(5312), + [anon_sym_test] = ACTIONS(5312), + [anon_sym_hide] = ACTIONS(5312), + [anon_sym_func] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5310), + [anon_sym_struct] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_void] = ACTIONS(5312), + [anon_sym_noreturn] = ACTIONS(5312), + [anon_sym_type] = ACTIONS(5312), + [anon_sym_anyopaque] = ACTIONS(5312), + [anon_sym_bool] = ACTIONS(5312), + [anon_sym_int] = ACTIONS(5312), + [anon_sym_uint] = ACTIONS(5312), + [anon_sym_float] = ACTIONS(5312), + [anon_sym_range] = ACTIONS(5312), + [anon_sym_i8] = ACTIONS(5312), + [anon_sym_i16] = ACTIONS(5312), + [anon_sym_i32] = ACTIONS(5312), + [anon_sym_i64] = ACTIONS(5312), + [anon_sym_u8] = ACTIONS(5312), + [anon_sym_u16] = ACTIONS(5312), + [anon_sym_u32] = ACTIONS(5312), + [anon_sym_u64] = ACTIONS(5312), + [anon_sym_isize] = ACTIONS(5312), + [anon_sym_usize] = ACTIONS(5312), + [anon_sym_f32] = ACTIONS(5312), + [anon_sym_f64] = ACTIONS(5312), + [anon_sym_c_char] = ACTIONS(5312), + [anon_sym_c_schar] = ACTIONS(5312), + [anon_sym_c_uchar] = ACTIONS(5312), + [anon_sym_c_short] = ACTIONS(5312), + [anon_sym_c_ushort] = ACTIONS(5312), + [anon_sym_c_int] = ACTIONS(5312), + [anon_sym_c_uint] = ACTIONS(5312), + [anon_sym_c_long] = ACTIONS(5312), + [anon_sym_c_ulong] = ACTIONS(5312), + [anon_sym_c_longlong] = ACTIONS(5312), + [anon_sym_c_ulonglong] = ACTIONS(5312), + [anon_sym_c_float] = ACTIONS(5312), + [anon_sym_c_double] = ACTIONS(5312), + [anon_sym_c_longdouble] = ACTIONS(5312), + [anon_sym_return] = ACTIONS(5312), + [anon_sym_yield] = ACTIONS(5312), + [anon_sym_break] = ACTIONS(5312), + [anon_sym_continue] = ACTIONS(5312), + [anon_sym_defer] = ACTIONS(5312), + [anon_sym_errdefer] = ACTIONS(5312), + [anon_sym_if] = ACTIONS(5312), + [anon_sym_else] = ACTIONS(5312), + [anon_sym_while] = ACTIONS(5312), + [anon_sym_expand] = ACTIONS(5312), + [anon_sym_for] = ACTIONS(5312), + [anon_sym_match] = ACTIONS(5312), + [anon_sym_AMP] = ACTIONS(5310), + [anon_sym_TILDE] = ACTIONS(5310), + [anon_sym_try] = ACTIONS(5312), + [anon_sym_DOT] = ACTIONS(5310), + [anon_sym_true] = ACTIONS(5312), + [anon_sym_false] = ACTIONS(5312), + [anon_sym_null] = ACTIONS(5312), + [anon_sym_unreachable] = ACTIONS(5312), + [anon_sym_undefined] = ACTIONS(5312), + [sym_sink] = ACTIONS(5312), + [sym_integer] = ACTIONS(5312), + [sym_float] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(5310), + [sym_multiline_string] = ACTIONS(5310), + [sym_character] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5310), + }, + [STATE(6696)] = { + [ts_builtin_sym_end] = ACTIONS(4876), + [sym_identifier] = ACTIONS(4878), + [anon_sym_import] = ACTIONS(4878), + [anon_sym_test] = ACTIONS(4878), + [anon_sym_hide] = ACTIONS(4878), + [anon_sym_func] = ACTIONS(4878), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_struct] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_void] = ACTIONS(4878), + [anon_sym_noreturn] = ACTIONS(4878), + [anon_sym_type] = ACTIONS(4878), + [anon_sym_anyopaque] = ACTIONS(4878), + [anon_sym_bool] = ACTIONS(4878), + [anon_sym_int] = ACTIONS(4878), + [anon_sym_uint] = ACTIONS(4878), + [anon_sym_float] = ACTIONS(4878), + [anon_sym_range] = ACTIONS(4878), + [anon_sym_i8] = ACTIONS(4878), + [anon_sym_i16] = ACTIONS(4878), + [anon_sym_i32] = ACTIONS(4878), + [anon_sym_i64] = ACTIONS(4878), + [anon_sym_u8] = ACTIONS(4878), + [anon_sym_u16] = ACTIONS(4878), + [anon_sym_u32] = ACTIONS(4878), + [anon_sym_u64] = ACTIONS(4878), + [anon_sym_isize] = ACTIONS(4878), + [anon_sym_usize] = ACTIONS(4878), + [anon_sym_f32] = ACTIONS(4878), + [anon_sym_f64] = ACTIONS(4878), + [anon_sym_c_char] = ACTIONS(4878), + [anon_sym_c_schar] = ACTIONS(4878), + [anon_sym_c_uchar] = ACTIONS(4878), + [anon_sym_c_short] = ACTIONS(4878), + [anon_sym_c_ushort] = ACTIONS(4878), + [anon_sym_c_int] = ACTIONS(4878), + [anon_sym_c_uint] = ACTIONS(4878), + [anon_sym_c_long] = ACTIONS(4878), + [anon_sym_c_ulong] = ACTIONS(4878), + [anon_sym_c_longlong] = ACTIONS(4878), + [anon_sym_c_ulonglong] = ACTIONS(4878), + [anon_sym_c_float] = ACTIONS(4878), + [anon_sym_c_double] = ACTIONS(4878), + [anon_sym_c_longdouble] = ACTIONS(4878), + [anon_sym_return] = ACTIONS(4878), + [anon_sym_yield] = ACTIONS(4878), + [anon_sym_break] = ACTIONS(4878), + [anon_sym_continue] = ACTIONS(4878), + [anon_sym_defer] = ACTIONS(4878), + [anon_sym_errdefer] = ACTIONS(4878), + [anon_sym_if] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_while] = ACTIONS(4878), + [anon_sym_expand] = ACTIONS(4878), + [anon_sym_for] = ACTIONS(4878), + [anon_sym_match] = ACTIONS(4878), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [anon_sym_try] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4878), + [anon_sym_false] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4878), + [anon_sym_unreachable] = ACTIONS(4878), + [anon_sym_undefined] = ACTIONS(4878), + [sym_sink] = ACTIONS(4878), + [sym_integer] = ACTIONS(4878), + [sym_float] = ACTIONS(4876), + [anon_sym_DQUOTE] = ACTIONS(4876), + [sym_multiline_string] = ACTIONS(4876), + [sym_character] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4876), + }, + [STATE(6697)] = { + [ts_builtin_sym_end] = ACTIONS(5316), + [sym_identifier] = ACTIONS(5318), + [anon_sym_import] = ACTIONS(5318), + [anon_sym_test] = ACTIONS(5318), + [anon_sym_hide] = ACTIONS(5318), + [anon_sym_func] = ACTIONS(5318), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_struct] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(5316), + [anon_sym_LBRACE] = ACTIONS(5316), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5316), + [anon_sym_void] = ACTIONS(5318), + [anon_sym_noreturn] = ACTIONS(5318), + [anon_sym_type] = ACTIONS(5318), + [anon_sym_anyopaque] = ACTIONS(5318), + [anon_sym_bool] = ACTIONS(5318), + [anon_sym_int] = ACTIONS(5318), + [anon_sym_uint] = ACTIONS(5318), + [anon_sym_float] = ACTIONS(5318), + [anon_sym_range] = ACTIONS(5318), + [anon_sym_i8] = ACTIONS(5318), + [anon_sym_i16] = ACTIONS(5318), + [anon_sym_i32] = ACTIONS(5318), + [anon_sym_i64] = ACTIONS(5318), + [anon_sym_u8] = ACTIONS(5318), + [anon_sym_u16] = ACTIONS(5318), + [anon_sym_u32] = ACTIONS(5318), + [anon_sym_u64] = ACTIONS(5318), + [anon_sym_isize] = ACTIONS(5318), + [anon_sym_usize] = ACTIONS(5318), + [anon_sym_f32] = ACTIONS(5318), + [anon_sym_f64] = ACTIONS(5318), + [anon_sym_c_char] = ACTIONS(5318), + [anon_sym_c_schar] = ACTIONS(5318), + [anon_sym_c_uchar] = ACTIONS(5318), + [anon_sym_c_short] = ACTIONS(5318), + [anon_sym_c_ushort] = ACTIONS(5318), + [anon_sym_c_int] = ACTIONS(5318), + [anon_sym_c_uint] = ACTIONS(5318), + [anon_sym_c_long] = ACTIONS(5318), + [anon_sym_c_ulong] = ACTIONS(5318), + [anon_sym_c_longlong] = ACTIONS(5318), + [anon_sym_c_ulonglong] = ACTIONS(5318), + [anon_sym_c_float] = ACTIONS(5318), + [anon_sym_c_double] = ACTIONS(5318), + [anon_sym_c_longdouble] = ACTIONS(5318), + [anon_sym_return] = ACTIONS(5318), + [anon_sym_yield] = ACTIONS(5318), + [anon_sym_break] = ACTIONS(5318), + [anon_sym_continue] = ACTIONS(5318), + [anon_sym_defer] = ACTIONS(5318), + [anon_sym_errdefer] = ACTIONS(5318), + [anon_sym_if] = ACTIONS(5318), + [anon_sym_else] = ACTIONS(5318), + [anon_sym_while] = ACTIONS(5318), + [anon_sym_expand] = ACTIONS(5318), + [anon_sym_for] = ACTIONS(5318), + [anon_sym_match] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5316), + [anon_sym_TILDE] = ACTIONS(5316), + [anon_sym_try] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5316), + [anon_sym_true] = ACTIONS(5318), + [anon_sym_false] = ACTIONS(5318), + [anon_sym_null] = ACTIONS(5318), + [anon_sym_unreachable] = ACTIONS(5318), + [anon_sym_undefined] = ACTIONS(5318), + [sym_sink] = ACTIONS(5318), + [sym_integer] = ACTIONS(5318), + [sym_float] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [sym_multiline_string] = ACTIONS(5316), + [sym_character] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5316), + }, + [STATE(6698)] = { + [ts_builtin_sym_end] = ACTIONS(5140), + [sym_identifier] = ACTIONS(5142), + [anon_sym_import] = ACTIONS(5142), + [anon_sym_test] = ACTIONS(5142), + [anon_sym_hide] = ACTIONS(5142), + [anon_sym_func] = ACTIONS(5142), + [anon_sym_BANG] = ACTIONS(5140), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_RPAREN] = ACTIONS(5140), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_void] = ACTIONS(5142), + [anon_sym_noreturn] = ACTIONS(5142), + [anon_sym_type] = ACTIONS(5142), + [anon_sym_anyopaque] = ACTIONS(5142), + [anon_sym_bool] = ACTIONS(5142), + [anon_sym_int] = ACTIONS(5142), + [anon_sym_uint] = ACTIONS(5142), + [anon_sym_float] = ACTIONS(5142), + [anon_sym_range] = ACTIONS(5142), + [anon_sym_i8] = ACTIONS(5142), + [anon_sym_i16] = ACTIONS(5142), + [anon_sym_i32] = ACTIONS(5142), + [anon_sym_i64] = ACTIONS(5142), + [anon_sym_u8] = ACTIONS(5142), + [anon_sym_u16] = ACTIONS(5142), + [anon_sym_u32] = ACTIONS(5142), + [anon_sym_u64] = ACTIONS(5142), + [anon_sym_isize] = ACTIONS(5142), + [anon_sym_usize] = ACTIONS(5142), + [anon_sym_f32] = ACTIONS(5142), + [anon_sym_f64] = ACTIONS(5142), + [anon_sym_c_char] = ACTIONS(5142), + [anon_sym_c_schar] = ACTIONS(5142), + [anon_sym_c_uchar] = ACTIONS(5142), + [anon_sym_c_short] = ACTIONS(5142), + [anon_sym_c_ushort] = ACTIONS(5142), + [anon_sym_c_int] = ACTIONS(5142), + [anon_sym_c_uint] = ACTIONS(5142), + [anon_sym_c_long] = ACTIONS(5142), + [anon_sym_c_ulong] = ACTIONS(5142), + [anon_sym_c_longlong] = ACTIONS(5142), + [anon_sym_c_ulonglong] = ACTIONS(5142), + [anon_sym_c_float] = ACTIONS(5142), + [anon_sym_c_double] = ACTIONS(5142), + [anon_sym_c_longdouble] = ACTIONS(5142), + [anon_sym_return] = ACTIONS(5142), + [anon_sym_yield] = ACTIONS(5142), + [anon_sym_break] = ACTIONS(5142), + [anon_sym_continue] = ACTIONS(5142), + [anon_sym_defer] = ACTIONS(5142), + [anon_sym_errdefer] = ACTIONS(5142), + [anon_sym_if] = ACTIONS(5142), + [anon_sym_else] = ACTIONS(5142), + [anon_sym_while] = ACTIONS(5142), + [anon_sym_expand] = ACTIONS(5142), + [anon_sym_for] = ACTIONS(5142), + [anon_sym_match] = ACTIONS(5142), + [anon_sym_AMP] = ACTIONS(5140), + [anon_sym_TILDE] = ACTIONS(5140), + [anon_sym_try] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5140), + [anon_sym_true] = ACTIONS(5142), + [anon_sym_false] = ACTIONS(5142), + [anon_sym_null] = ACTIONS(5142), + [anon_sym_unreachable] = ACTIONS(5142), + [anon_sym_undefined] = ACTIONS(5142), + [sym_sink] = ACTIONS(5142), + [sym_integer] = ACTIONS(5142), + [sym_float] = ACTIONS(5140), + [anon_sym_DQUOTE] = ACTIONS(5140), + [sym_multiline_string] = ACTIONS(5140), + [sym_character] = ACTIONS(5140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5140), + }, + [STATE(6699)] = { + [ts_builtin_sym_end] = ACTIONS(5348), + [sym_identifier] = ACTIONS(5350), + [anon_sym_import] = ACTIONS(5350), + [anon_sym_test] = ACTIONS(5350), + [anon_sym_hide] = ACTIONS(5350), + [anon_sym_func] = ACTIONS(5350), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_struct] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5348), + [anon_sym_RPAREN] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5348), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_void] = ACTIONS(5350), + [anon_sym_noreturn] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_anyopaque] = ACTIONS(5350), + [anon_sym_bool] = ACTIONS(5350), + [anon_sym_int] = ACTIONS(5350), + [anon_sym_uint] = ACTIONS(5350), + [anon_sym_float] = ACTIONS(5350), + [anon_sym_range] = ACTIONS(5350), + [anon_sym_i8] = ACTIONS(5350), + [anon_sym_i16] = ACTIONS(5350), + [anon_sym_i32] = ACTIONS(5350), + [anon_sym_i64] = ACTIONS(5350), + [anon_sym_u8] = ACTIONS(5350), + [anon_sym_u16] = ACTIONS(5350), + [anon_sym_u32] = ACTIONS(5350), + [anon_sym_u64] = ACTIONS(5350), + [anon_sym_isize] = ACTIONS(5350), + [anon_sym_usize] = ACTIONS(5350), + [anon_sym_f32] = ACTIONS(5350), + [anon_sym_f64] = ACTIONS(5350), + [anon_sym_c_char] = ACTIONS(5350), + [anon_sym_c_schar] = ACTIONS(5350), + [anon_sym_c_uchar] = ACTIONS(5350), + [anon_sym_c_short] = ACTIONS(5350), + [anon_sym_c_ushort] = ACTIONS(5350), + [anon_sym_c_int] = ACTIONS(5350), + [anon_sym_c_uint] = ACTIONS(5350), + [anon_sym_c_long] = ACTIONS(5350), + [anon_sym_c_ulong] = ACTIONS(5350), + [anon_sym_c_longlong] = ACTIONS(5350), + [anon_sym_c_ulonglong] = ACTIONS(5350), + [anon_sym_c_float] = ACTIONS(5350), + [anon_sym_c_double] = ACTIONS(5350), + [anon_sym_c_longdouble] = ACTIONS(5350), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_break] = ACTIONS(5350), + [anon_sym_continue] = ACTIONS(5350), + [anon_sym_defer] = ACTIONS(5350), + [anon_sym_errdefer] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_else] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_expand] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5348), + [anon_sym_TILDE] = ACTIONS(5348), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_true] = ACTIONS(5350), + [anon_sym_false] = ACTIONS(5350), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_unreachable] = ACTIONS(5350), + [anon_sym_undefined] = ACTIONS(5350), + [sym_sink] = ACTIONS(5350), + [sym_integer] = ACTIONS(5350), + [sym_float] = ACTIONS(5348), + [anon_sym_DQUOTE] = ACTIONS(5348), + [sym_multiline_string] = ACTIONS(5348), + [sym_character] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5348), + }, + [STATE(6700)] = { + [ts_builtin_sym_end] = ACTIONS(5080), + [sym_identifier] = ACTIONS(5082), + [anon_sym_import] = ACTIONS(5082), + [anon_sym_test] = ACTIONS(5082), + [anon_sym_hide] = ACTIONS(5082), + [anon_sym_func] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5080), + [anon_sym_struct] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_void] = ACTIONS(5082), + [anon_sym_noreturn] = ACTIONS(5082), + [anon_sym_type] = ACTIONS(5082), + [anon_sym_anyopaque] = ACTIONS(5082), + [anon_sym_bool] = ACTIONS(5082), + [anon_sym_int] = ACTIONS(5082), + [anon_sym_uint] = ACTIONS(5082), + [anon_sym_float] = ACTIONS(5082), + [anon_sym_range] = ACTIONS(5082), + [anon_sym_i8] = ACTIONS(5082), + [anon_sym_i16] = ACTIONS(5082), + [anon_sym_i32] = ACTIONS(5082), + [anon_sym_i64] = ACTIONS(5082), + [anon_sym_u8] = ACTIONS(5082), + [anon_sym_u16] = ACTIONS(5082), + [anon_sym_u32] = ACTIONS(5082), + [anon_sym_u64] = ACTIONS(5082), + [anon_sym_isize] = ACTIONS(5082), + [anon_sym_usize] = ACTIONS(5082), + [anon_sym_f32] = ACTIONS(5082), + [anon_sym_f64] = ACTIONS(5082), + [anon_sym_c_char] = ACTIONS(5082), + [anon_sym_c_schar] = ACTIONS(5082), + [anon_sym_c_uchar] = ACTIONS(5082), + [anon_sym_c_short] = ACTIONS(5082), + [anon_sym_c_ushort] = ACTIONS(5082), + [anon_sym_c_int] = ACTIONS(5082), + [anon_sym_c_uint] = ACTIONS(5082), + [anon_sym_c_long] = ACTIONS(5082), + [anon_sym_c_ulong] = ACTIONS(5082), + [anon_sym_c_longlong] = ACTIONS(5082), + [anon_sym_c_ulonglong] = ACTIONS(5082), + [anon_sym_c_float] = ACTIONS(5082), + [anon_sym_c_double] = ACTIONS(5082), + [anon_sym_c_longdouble] = ACTIONS(5082), + [anon_sym_return] = ACTIONS(5082), + [anon_sym_yield] = ACTIONS(5082), + [anon_sym_break] = ACTIONS(5082), + [anon_sym_continue] = ACTIONS(5082), + [anon_sym_defer] = ACTIONS(5082), + [anon_sym_errdefer] = ACTIONS(5082), + [anon_sym_if] = ACTIONS(5082), + [anon_sym_else] = ACTIONS(5082), + [anon_sym_while] = ACTIONS(5082), + [anon_sym_expand] = ACTIONS(5082), + [anon_sym_for] = ACTIONS(5082), + [anon_sym_match] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5080), + [anon_sym_TILDE] = ACTIONS(5080), + [anon_sym_try] = ACTIONS(5082), + [anon_sym_DOT] = ACTIONS(5080), + [anon_sym_true] = ACTIONS(5082), + [anon_sym_false] = ACTIONS(5082), + [anon_sym_null] = ACTIONS(5082), + [anon_sym_unreachable] = ACTIONS(5082), + [anon_sym_undefined] = ACTIONS(5082), + [sym_sink] = ACTIONS(5082), + [sym_integer] = ACTIONS(5082), + [sym_float] = ACTIONS(5080), + [anon_sym_DQUOTE] = ACTIONS(5080), + [sym_multiline_string] = ACTIONS(5080), + [sym_character] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5080), + }, + [STATE(6701)] = { + [ts_builtin_sym_end] = ACTIONS(5482), + [sym_identifier] = ACTIONS(5484), + [anon_sym_import] = ACTIONS(5484), + [anon_sym_test] = ACTIONS(5484), + [anon_sym_hide] = ACTIONS(5484), + [anon_sym_func] = ACTIONS(5484), + [anon_sym_BANG] = ACTIONS(5482), + [anon_sym_struct] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5482), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5482), + [anon_sym_DOLLAR] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_void] = ACTIONS(5484), + [anon_sym_noreturn] = ACTIONS(5484), + [anon_sym_type] = ACTIONS(5484), + [anon_sym_anyopaque] = ACTIONS(5484), + [anon_sym_bool] = ACTIONS(5484), + [anon_sym_int] = ACTIONS(5484), + [anon_sym_uint] = ACTIONS(5484), + [anon_sym_float] = ACTIONS(5484), + [anon_sym_range] = ACTIONS(5484), + [anon_sym_i8] = ACTIONS(5484), + [anon_sym_i16] = ACTIONS(5484), + [anon_sym_i32] = ACTIONS(5484), + [anon_sym_i64] = ACTIONS(5484), + [anon_sym_u8] = ACTIONS(5484), + [anon_sym_u16] = ACTIONS(5484), + [anon_sym_u32] = ACTIONS(5484), + [anon_sym_u64] = ACTIONS(5484), + [anon_sym_isize] = ACTIONS(5484), + [anon_sym_usize] = ACTIONS(5484), + [anon_sym_f32] = ACTIONS(5484), + [anon_sym_f64] = ACTIONS(5484), + [anon_sym_c_char] = ACTIONS(5484), + [anon_sym_c_schar] = ACTIONS(5484), + [anon_sym_c_uchar] = ACTIONS(5484), + [anon_sym_c_short] = ACTIONS(5484), + [anon_sym_c_ushort] = ACTIONS(5484), + [anon_sym_c_int] = ACTIONS(5484), + [anon_sym_c_uint] = ACTIONS(5484), + [anon_sym_c_long] = ACTIONS(5484), + [anon_sym_c_ulong] = ACTIONS(5484), + [anon_sym_c_longlong] = ACTIONS(5484), + [anon_sym_c_ulonglong] = ACTIONS(5484), + [anon_sym_c_float] = ACTIONS(5484), + [anon_sym_c_double] = ACTIONS(5484), + [anon_sym_c_longdouble] = ACTIONS(5484), + [anon_sym_return] = ACTIONS(5484), + [anon_sym_yield] = ACTIONS(5484), + [anon_sym_break] = ACTIONS(5484), + [anon_sym_continue] = ACTIONS(5484), + [anon_sym_defer] = ACTIONS(5484), + [anon_sym_errdefer] = ACTIONS(5484), + [anon_sym_if] = ACTIONS(5484), + [anon_sym_else] = ACTIONS(5484), + [anon_sym_while] = ACTIONS(5484), + [anon_sym_expand] = ACTIONS(5484), + [anon_sym_for] = ACTIONS(5484), + [anon_sym_match] = ACTIONS(5484), + [anon_sym_AMP] = ACTIONS(5482), + [anon_sym_TILDE] = ACTIONS(5482), + [anon_sym_try] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5482), + [anon_sym_true] = ACTIONS(5484), + [anon_sym_false] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), + [anon_sym_unreachable] = ACTIONS(5484), + [anon_sym_undefined] = ACTIONS(5484), + [sym_sink] = ACTIONS(5484), + [sym_integer] = ACTIONS(5484), + [sym_float] = ACTIONS(5482), + [anon_sym_DQUOTE] = ACTIONS(5482), + [sym_multiline_string] = ACTIONS(5482), + [sym_character] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5482), + }, + [STATE(6702)] = { + [ts_builtin_sym_end] = ACTIONS(5486), + [sym_identifier] = ACTIONS(5488), + [anon_sym_import] = ACTIONS(5488), + [anon_sym_test] = ACTIONS(5488), + [anon_sym_hide] = ACTIONS(5488), + [anon_sym_func] = ACTIONS(5488), + [anon_sym_BANG] = ACTIONS(5486), + [anon_sym_struct] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5486), + [anon_sym_RPAREN] = ACTIONS(5486), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5486), + [anon_sym_DOLLAR] = ACTIONS(5486), + [anon_sym_LBRACK] = ACTIONS(5486), + [anon_sym_void] = ACTIONS(5488), + [anon_sym_noreturn] = ACTIONS(5488), + [anon_sym_type] = ACTIONS(5488), + [anon_sym_anyopaque] = ACTIONS(5488), + [anon_sym_bool] = ACTIONS(5488), + [anon_sym_int] = ACTIONS(5488), + [anon_sym_uint] = ACTIONS(5488), + [anon_sym_float] = ACTIONS(5488), + [anon_sym_range] = ACTIONS(5488), + [anon_sym_i8] = ACTIONS(5488), + [anon_sym_i16] = ACTIONS(5488), + [anon_sym_i32] = ACTIONS(5488), + [anon_sym_i64] = ACTIONS(5488), + [anon_sym_u8] = ACTIONS(5488), + [anon_sym_u16] = ACTIONS(5488), + [anon_sym_u32] = ACTIONS(5488), + [anon_sym_u64] = ACTIONS(5488), + [anon_sym_isize] = ACTIONS(5488), + [anon_sym_usize] = ACTIONS(5488), + [anon_sym_f32] = ACTIONS(5488), + [anon_sym_f64] = ACTIONS(5488), + [anon_sym_c_char] = ACTIONS(5488), + [anon_sym_c_schar] = ACTIONS(5488), + [anon_sym_c_uchar] = ACTIONS(5488), + [anon_sym_c_short] = ACTIONS(5488), + [anon_sym_c_ushort] = ACTIONS(5488), + [anon_sym_c_int] = ACTIONS(5488), + [anon_sym_c_uint] = ACTIONS(5488), + [anon_sym_c_long] = ACTIONS(5488), + [anon_sym_c_ulong] = ACTIONS(5488), + [anon_sym_c_longlong] = ACTIONS(5488), + [anon_sym_c_ulonglong] = ACTIONS(5488), + [anon_sym_c_float] = ACTIONS(5488), + [anon_sym_c_double] = ACTIONS(5488), + [anon_sym_c_longdouble] = ACTIONS(5488), + [anon_sym_return] = ACTIONS(5488), + [anon_sym_yield] = ACTIONS(5488), + [anon_sym_break] = ACTIONS(5488), + [anon_sym_continue] = ACTIONS(5488), + [anon_sym_defer] = ACTIONS(5488), + [anon_sym_errdefer] = ACTIONS(5488), + [anon_sym_if] = ACTIONS(5488), + [anon_sym_else] = ACTIONS(5488), + [anon_sym_while] = ACTIONS(5488), + [anon_sym_expand] = ACTIONS(5488), + [anon_sym_for] = ACTIONS(5488), + [anon_sym_match] = ACTIONS(5488), + [anon_sym_AMP] = ACTIONS(5486), + [anon_sym_TILDE] = ACTIONS(5486), + [anon_sym_try] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5486), + [anon_sym_true] = ACTIONS(5488), + [anon_sym_false] = ACTIONS(5488), + [anon_sym_null] = ACTIONS(5488), + [anon_sym_unreachable] = ACTIONS(5488), + [anon_sym_undefined] = ACTIONS(5488), + [sym_sink] = ACTIONS(5488), + [sym_integer] = ACTIONS(5488), + [sym_float] = ACTIONS(5486), + [anon_sym_DQUOTE] = ACTIONS(5486), + [sym_multiline_string] = ACTIONS(5486), + [sym_character] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5486), + }, + [STATE(6703)] = { + [ts_builtin_sym_end] = ACTIONS(5490), + [sym_identifier] = ACTIONS(5492), + [anon_sym_import] = ACTIONS(5492), + [anon_sym_test] = ACTIONS(5492), + [anon_sym_hide] = ACTIONS(5492), + [anon_sym_func] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(5490), + [anon_sym_struct] = ACTIONS(5492), + [anon_sym_LPAREN] = ACTIONS(5490), + [anon_sym_RPAREN] = ACTIONS(5490), + [anon_sym_LBRACE] = ACTIONS(5490), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5490), + [anon_sym_DOLLAR] = ACTIONS(5490), + [anon_sym_LBRACK] = ACTIONS(5490), + [anon_sym_void] = ACTIONS(5492), + [anon_sym_noreturn] = ACTIONS(5492), + [anon_sym_type] = ACTIONS(5492), + [anon_sym_anyopaque] = ACTIONS(5492), + [anon_sym_bool] = ACTIONS(5492), + [anon_sym_int] = ACTIONS(5492), + [anon_sym_uint] = ACTIONS(5492), + [anon_sym_float] = ACTIONS(5492), + [anon_sym_range] = ACTIONS(5492), + [anon_sym_i8] = ACTIONS(5492), + [anon_sym_i16] = ACTIONS(5492), + [anon_sym_i32] = ACTIONS(5492), + [anon_sym_i64] = ACTIONS(5492), + [anon_sym_u8] = ACTIONS(5492), + [anon_sym_u16] = ACTIONS(5492), + [anon_sym_u32] = ACTIONS(5492), + [anon_sym_u64] = ACTIONS(5492), + [anon_sym_isize] = ACTIONS(5492), + [anon_sym_usize] = ACTIONS(5492), + [anon_sym_f32] = ACTIONS(5492), + [anon_sym_f64] = ACTIONS(5492), + [anon_sym_c_char] = ACTIONS(5492), + [anon_sym_c_schar] = ACTIONS(5492), + [anon_sym_c_uchar] = ACTIONS(5492), + [anon_sym_c_short] = ACTIONS(5492), + [anon_sym_c_ushort] = ACTIONS(5492), + [anon_sym_c_int] = ACTIONS(5492), + [anon_sym_c_uint] = ACTIONS(5492), + [anon_sym_c_long] = ACTIONS(5492), + [anon_sym_c_ulong] = ACTIONS(5492), + [anon_sym_c_longlong] = ACTIONS(5492), + [anon_sym_c_ulonglong] = ACTIONS(5492), + [anon_sym_c_float] = ACTIONS(5492), + [anon_sym_c_double] = ACTIONS(5492), + [anon_sym_c_longdouble] = ACTIONS(5492), + [anon_sym_return] = ACTIONS(5492), + [anon_sym_yield] = ACTIONS(5492), + [anon_sym_break] = ACTIONS(5492), + [anon_sym_continue] = ACTIONS(5492), + [anon_sym_defer] = ACTIONS(5492), + [anon_sym_errdefer] = ACTIONS(5492), + [anon_sym_if] = ACTIONS(5492), + [anon_sym_else] = ACTIONS(5492), + [anon_sym_while] = ACTIONS(5492), + [anon_sym_expand] = ACTIONS(5492), + [anon_sym_for] = ACTIONS(5492), + [anon_sym_match] = ACTIONS(5492), + [anon_sym_AMP] = ACTIONS(5490), + [anon_sym_TILDE] = ACTIONS(5490), + [anon_sym_try] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(5490), + [anon_sym_true] = ACTIONS(5492), + [anon_sym_false] = ACTIONS(5492), + [anon_sym_null] = ACTIONS(5492), + [anon_sym_unreachable] = ACTIONS(5492), + [anon_sym_undefined] = ACTIONS(5492), + [sym_sink] = ACTIONS(5492), + [sym_integer] = ACTIONS(5492), + [sym_float] = ACTIONS(5490), + [anon_sym_DQUOTE] = ACTIONS(5490), + [sym_multiline_string] = ACTIONS(5490), + [sym_character] = ACTIONS(5490), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5490), + }, + [STATE(6704)] = { + [ts_builtin_sym_end] = ACTIONS(5494), + [sym_identifier] = ACTIONS(5496), + [anon_sym_import] = ACTIONS(5496), + [anon_sym_test] = ACTIONS(5496), + [anon_sym_hide] = ACTIONS(5496), + [anon_sym_func] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5494), + [anon_sym_struct] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_RPAREN] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5494), + [anon_sym_RBRACE] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_DOLLAR] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_void] = ACTIONS(5496), + [anon_sym_noreturn] = ACTIONS(5496), + [anon_sym_type] = ACTIONS(5496), + [anon_sym_anyopaque] = ACTIONS(5496), + [anon_sym_bool] = ACTIONS(5496), + [anon_sym_int] = ACTIONS(5496), + [anon_sym_uint] = ACTIONS(5496), + [anon_sym_float] = ACTIONS(5496), + [anon_sym_range] = ACTIONS(5496), + [anon_sym_i8] = ACTIONS(5496), + [anon_sym_i16] = ACTIONS(5496), + [anon_sym_i32] = ACTIONS(5496), + [anon_sym_i64] = ACTIONS(5496), + [anon_sym_u8] = ACTIONS(5496), + [anon_sym_u16] = ACTIONS(5496), + [anon_sym_u32] = ACTIONS(5496), + [anon_sym_u64] = ACTIONS(5496), + [anon_sym_isize] = ACTIONS(5496), + [anon_sym_usize] = ACTIONS(5496), + [anon_sym_f32] = ACTIONS(5496), + [anon_sym_f64] = ACTIONS(5496), + [anon_sym_c_char] = ACTIONS(5496), + [anon_sym_c_schar] = ACTIONS(5496), + [anon_sym_c_uchar] = ACTIONS(5496), + [anon_sym_c_short] = ACTIONS(5496), + [anon_sym_c_ushort] = ACTIONS(5496), + [anon_sym_c_int] = ACTIONS(5496), + [anon_sym_c_uint] = ACTIONS(5496), + [anon_sym_c_long] = ACTIONS(5496), + [anon_sym_c_ulong] = ACTIONS(5496), + [anon_sym_c_longlong] = ACTIONS(5496), + [anon_sym_c_ulonglong] = ACTIONS(5496), + [anon_sym_c_float] = ACTIONS(5496), + [anon_sym_c_double] = ACTIONS(5496), + [anon_sym_c_longdouble] = ACTIONS(5496), + [anon_sym_return] = ACTIONS(5496), + [anon_sym_yield] = ACTIONS(5496), + [anon_sym_break] = ACTIONS(5496), + [anon_sym_continue] = ACTIONS(5496), + [anon_sym_defer] = ACTIONS(5496), + [anon_sym_errdefer] = ACTIONS(5496), + [anon_sym_if] = ACTIONS(5496), + [anon_sym_else] = ACTIONS(5496), + [anon_sym_while] = ACTIONS(5496), + [anon_sym_expand] = ACTIONS(5496), + [anon_sym_for] = ACTIONS(5496), + [anon_sym_match] = ACTIONS(5496), + [anon_sym_AMP] = ACTIONS(5494), + [anon_sym_TILDE] = ACTIONS(5494), + [anon_sym_try] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5494), + [anon_sym_true] = ACTIONS(5496), + [anon_sym_false] = ACTIONS(5496), + [anon_sym_null] = ACTIONS(5496), + [anon_sym_unreachable] = ACTIONS(5496), + [anon_sym_undefined] = ACTIONS(5496), + [sym_sink] = ACTIONS(5496), + [sym_integer] = ACTIONS(5496), + [sym_float] = ACTIONS(5494), + [anon_sym_DQUOTE] = ACTIONS(5494), + [sym_multiline_string] = ACTIONS(5494), + [sym_character] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5494), + }, + [STATE(6705)] = { + [ts_builtin_sym_end] = ACTIONS(5498), + [sym_identifier] = ACTIONS(5500), + [anon_sym_import] = ACTIONS(5500), + [anon_sym_test] = ACTIONS(5500), + [anon_sym_hide] = ACTIONS(5500), + [anon_sym_func] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5498), + [anon_sym_struct] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(5498), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_DOLLAR] = ACTIONS(5498), + [anon_sym_LBRACK] = ACTIONS(5498), + [anon_sym_void] = ACTIONS(5500), + [anon_sym_noreturn] = ACTIONS(5500), + [anon_sym_type] = ACTIONS(5500), + [anon_sym_anyopaque] = ACTIONS(5500), + [anon_sym_bool] = ACTIONS(5500), + [anon_sym_int] = ACTIONS(5500), + [anon_sym_uint] = ACTIONS(5500), + [anon_sym_float] = ACTIONS(5500), + [anon_sym_range] = ACTIONS(5500), + [anon_sym_i8] = ACTIONS(5500), + [anon_sym_i16] = ACTIONS(5500), + [anon_sym_i32] = ACTIONS(5500), + [anon_sym_i64] = ACTIONS(5500), + [anon_sym_u8] = ACTIONS(5500), + [anon_sym_u16] = ACTIONS(5500), + [anon_sym_u32] = ACTIONS(5500), + [anon_sym_u64] = ACTIONS(5500), + [anon_sym_isize] = ACTIONS(5500), + [anon_sym_usize] = ACTIONS(5500), + [anon_sym_f32] = ACTIONS(5500), + [anon_sym_f64] = ACTIONS(5500), + [anon_sym_c_char] = ACTIONS(5500), + [anon_sym_c_schar] = ACTIONS(5500), + [anon_sym_c_uchar] = ACTIONS(5500), + [anon_sym_c_short] = ACTIONS(5500), + [anon_sym_c_ushort] = ACTIONS(5500), + [anon_sym_c_int] = ACTIONS(5500), + [anon_sym_c_uint] = ACTIONS(5500), + [anon_sym_c_long] = ACTIONS(5500), + [anon_sym_c_ulong] = ACTIONS(5500), + [anon_sym_c_longlong] = ACTIONS(5500), + [anon_sym_c_ulonglong] = ACTIONS(5500), + [anon_sym_c_float] = ACTIONS(5500), + [anon_sym_c_double] = ACTIONS(5500), + [anon_sym_c_longdouble] = ACTIONS(5500), + [anon_sym_return] = ACTIONS(5500), + [anon_sym_yield] = ACTIONS(5500), + [anon_sym_break] = ACTIONS(5500), + [anon_sym_continue] = ACTIONS(5500), + [anon_sym_defer] = ACTIONS(5500), + [anon_sym_errdefer] = ACTIONS(5500), + [anon_sym_if] = ACTIONS(5500), + [anon_sym_else] = ACTIONS(5500), + [anon_sym_while] = ACTIONS(5500), + [anon_sym_expand] = ACTIONS(5500), + [anon_sym_for] = ACTIONS(5500), + [anon_sym_match] = ACTIONS(5500), + [anon_sym_AMP] = ACTIONS(5498), + [anon_sym_TILDE] = ACTIONS(5498), + [anon_sym_try] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5498), + [anon_sym_true] = ACTIONS(5500), + [anon_sym_false] = ACTIONS(5500), + [anon_sym_null] = ACTIONS(5500), + [anon_sym_unreachable] = ACTIONS(5500), + [anon_sym_undefined] = ACTIONS(5500), + [sym_sink] = ACTIONS(5500), + [sym_integer] = ACTIONS(5500), + [sym_float] = ACTIONS(5498), + [anon_sym_DQUOTE] = ACTIONS(5498), + [sym_multiline_string] = ACTIONS(5498), + [sym_character] = ACTIONS(5498), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5498), + }, + [STATE(6706)] = { + [ts_builtin_sym_end] = ACTIONS(4994), + [sym_identifier] = ACTIONS(4996), + [anon_sym_import] = ACTIONS(4996), + [anon_sym_test] = ACTIONS(4996), + [anon_sym_hide] = ACTIONS(4996), + [anon_sym_func] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_struct] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_void] = ACTIONS(4996), + [anon_sym_noreturn] = ACTIONS(4996), + [anon_sym_type] = ACTIONS(4996), + [anon_sym_anyopaque] = ACTIONS(4996), + [anon_sym_bool] = ACTIONS(4996), + [anon_sym_int] = ACTIONS(4996), + [anon_sym_uint] = ACTIONS(4996), + [anon_sym_float] = ACTIONS(4996), + [anon_sym_range] = ACTIONS(4996), + [anon_sym_i8] = ACTIONS(4996), + [anon_sym_i16] = ACTIONS(4996), + [anon_sym_i32] = ACTIONS(4996), + [anon_sym_i64] = ACTIONS(4996), + [anon_sym_u8] = ACTIONS(4996), + [anon_sym_u16] = ACTIONS(4996), + [anon_sym_u32] = ACTIONS(4996), + [anon_sym_u64] = ACTIONS(4996), + [anon_sym_isize] = ACTIONS(4996), + [anon_sym_usize] = ACTIONS(4996), + [anon_sym_f32] = ACTIONS(4996), + [anon_sym_f64] = ACTIONS(4996), + [anon_sym_c_char] = ACTIONS(4996), + [anon_sym_c_schar] = ACTIONS(4996), + [anon_sym_c_uchar] = ACTIONS(4996), + [anon_sym_c_short] = ACTIONS(4996), + [anon_sym_c_ushort] = ACTIONS(4996), + [anon_sym_c_int] = ACTIONS(4996), + [anon_sym_c_uint] = ACTIONS(4996), + [anon_sym_c_long] = ACTIONS(4996), + [anon_sym_c_ulong] = ACTIONS(4996), + [anon_sym_c_longlong] = ACTIONS(4996), + [anon_sym_c_ulonglong] = ACTIONS(4996), + [anon_sym_c_float] = ACTIONS(4996), + [anon_sym_c_double] = ACTIONS(4996), + [anon_sym_c_longdouble] = ACTIONS(4996), + [anon_sym_return] = ACTIONS(4996), + [anon_sym_yield] = ACTIONS(4996), + [anon_sym_break] = ACTIONS(4996), + [anon_sym_continue] = ACTIONS(4996), + [anon_sym_defer] = ACTIONS(4996), + [anon_sym_errdefer] = ACTIONS(4996), + [anon_sym_if] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_while] = ACTIONS(4996), + [anon_sym_expand] = ACTIONS(4996), + [anon_sym_for] = ACTIONS(4996), + [anon_sym_match] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_TILDE] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4996), + [anon_sym_unreachable] = ACTIONS(4996), + [anon_sym_undefined] = ACTIONS(4996), + [sym_sink] = ACTIONS(4996), + [sym_integer] = ACTIONS(4996), + [sym_float] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(4994), + [sym_multiline_string] = ACTIONS(4994), + [sym_character] = ACTIONS(4994), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4994), + }, + [STATE(6707)] = { + [ts_builtin_sym_end] = ACTIONS(5014), + [sym_identifier] = ACTIONS(5016), + [anon_sym_import] = ACTIONS(5016), + [anon_sym_test] = ACTIONS(5016), + [anon_sym_hide] = ACTIONS(5016), + [anon_sym_func] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_RPAREN] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_void] = ACTIONS(5016), + [anon_sym_noreturn] = ACTIONS(5016), + [anon_sym_type] = ACTIONS(5016), + [anon_sym_anyopaque] = ACTIONS(5016), + [anon_sym_bool] = ACTIONS(5016), + [anon_sym_int] = ACTIONS(5016), + [anon_sym_uint] = ACTIONS(5016), + [anon_sym_float] = ACTIONS(5016), + [anon_sym_range] = ACTIONS(5016), + [anon_sym_i8] = ACTIONS(5016), + [anon_sym_i16] = ACTIONS(5016), + [anon_sym_i32] = ACTIONS(5016), + [anon_sym_i64] = ACTIONS(5016), + [anon_sym_u8] = ACTIONS(5016), + [anon_sym_u16] = ACTIONS(5016), + [anon_sym_u32] = ACTIONS(5016), + [anon_sym_u64] = ACTIONS(5016), + [anon_sym_isize] = ACTIONS(5016), + [anon_sym_usize] = ACTIONS(5016), + [anon_sym_f32] = ACTIONS(5016), + [anon_sym_f64] = ACTIONS(5016), + [anon_sym_c_char] = ACTIONS(5016), + [anon_sym_c_schar] = ACTIONS(5016), + [anon_sym_c_uchar] = ACTIONS(5016), + [anon_sym_c_short] = ACTIONS(5016), + [anon_sym_c_ushort] = ACTIONS(5016), + [anon_sym_c_int] = ACTIONS(5016), + [anon_sym_c_uint] = ACTIONS(5016), + [anon_sym_c_long] = ACTIONS(5016), + [anon_sym_c_ulong] = ACTIONS(5016), + [anon_sym_c_longlong] = ACTIONS(5016), + [anon_sym_c_ulonglong] = ACTIONS(5016), + [anon_sym_c_float] = ACTIONS(5016), + [anon_sym_c_double] = ACTIONS(5016), + [anon_sym_c_longdouble] = ACTIONS(5016), + [anon_sym_return] = ACTIONS(5016), + [anon_sym_yield] = ACTIONS(5016), + [anon_sym_break] = ACTIONS(5016), + [anon_sym_continue] = ACTIONS(5016), + [anon_sym_defer] = ACTIONS(5016), + [anon_sym_errdefer] = ACTIONS(5016), + [anon_sym_if] = ACTIONS(5016), + [anon_sym_else] = ACTIONS(5016), + [anon_sym_while] = ACTIONS(5016), + [anon_sym_expand] = ACTIONS(5016), + [anon_sym_for] = ACTIONS(5016), + [anon_sym_match] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_TILDE] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_true] = ACTIONS(5016), + [anon_sym_false] = ACTIONS(5016), + [anon_sym_null] = ACTIONS(5016), + [anon_sym_unreachable] = ACTIONS(5016), + [anon_sym_undefined] = ACTIONS(5016), + [sym_sink] = ACTIONS(5016), + [sym_integer] = ACTIONS(5016), + [sym_float] = ACTIONS(5014), + [anon_sym_DQUOTE] = ACTIONS(5014), + [sym_multiline_string] = ACTIONS(5014), + [sym_character] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5014), + }, + [STATE(6708)] = { + [ts_builtin_sym_end] = ACTIONS(5164), + [sym_identifier] = ACTIONS(5166), + [anon_sym_import] = ACTIONS(5166), + [anon_sym_test] = ACTIONS(5166), + [anon_sym_hide] = ACTIONS(5166), + [anon_sym_func] = ACTIONS(5166), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_struct] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_RPAREN] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5164), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_void] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym_type] = ACTIONS(5166), + [anon_sym_anyopaque] = ACTIONS(5166), + [anon_sym_bool] = ACTIONS(5166), + [anon_sym_int] = ACTIONS(5166), + [anon_sym_uint] = ACTIONS(5166), + [anon_sym_float] = ACTIONS(5166), + [anon_sym_range] = ACTIONS(5166), + [anon_sym_i8] = ACTIONS(5166), + [anon_sym_i16] = ACTIONS(5166), + [anon_sym_i32] = ACTIONS(5166), + [anon_sym_i64] = ACTIONS(5166), + [anon_sym_u8] = ACTIONS(5166), + [anon_sym_u16] = ACTIONS(5166), + [anon_sym_u32] = ACTIONS(5166), + [anon_sym_u64] = ACTIONS(5166), + [anon_sym_isize] = ACTIONS(5166), + [anon_sym_usize] = ACTIONS(5166), + [anon_sym_f32] = ACTIONS(5166), + [anon_sym_f64] = ACTIONS(5166), + [anon_sym_c_char] = ACTIONS(5166), + [anon_sym_c_schar] = ACTIONS(5166), + [anon_sym_c_uchar] = ACTIONS(5166), + [anon_sym_c_short] = ACTIONS(5166), + [anon_sym_c_ushort] = ACTIONS(5166), + [anon_sym_c_int] = ACTIONS(5166), + [anon_sym_c_uint] = ACTIONS(5166), + [anon_sym_c_long] = ACTIONS(5166), + [anon_sym_c_ulong] = ACTIONS(5166), + [anon_sym_c_longlong] = ACTIONS(5166), + [anon_sym_c_ulonglong] = ACTIONS(5166), + [anon_sym_c_float] = ACTIONS(5166), + [anon_sym_c_double] = ACTIONS(5166), + [anon_sym_c_longdouble] = ACTIONS(5166), + [anon_sym_return] = ACTIONS(5166), + [anon_sym_yield] = ACTIONS(5166), + [anon_sym_break] = ACTIONS(5166), + [anon_sym_continue] = ACTIONS(5166), + [anon_sym_defer] = ACTIONS(5166), + [anon_sym_errdefer] = ACTIONS(5166), + [anon_sym_if] = ACTIONS(5166), + [anon_sym_else] = ACTIONS(5166), + [anon_sym_while] = ACTIONS(5166), + [anon_sym_expand] = ACTIONS(5166), + [anon_sym_for] = ACTIONS(5166), + [anon_sym_match] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_TILDE] = ACTIONS(5164), + [anon_sym_try] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_true] = ACTIONS(5166), + [anon_sym_false] = ACTIONS(5166), + [anon_sym_null] = ACTIONS(5166), + [anon_sym_unreachable] = ACTIONS(5166), + [anon_sym_undefined] = ACTIONS(5166), + [sym_sink] = ACTIONS(5166), + [sym_integer] = ACTIONS(5166), + [sym_float] = ACTIONS(5164), + [anon_sym_DQUOTE] = ACTIONS(5164), + [sym_multiline_string] = ACTIONS(5164), + [sym_character] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5164), + }, + [STATE(6709)] = { + [ts_builtin_sym_end] = ACTIONS(5502), + [sym_identifier] = ACTIONS(5504), + [anon_sym_import] = ACTIONS(5504), + [anon_sym_test] = ACTIONS(5504), + [anon_sym_hide] = ACTIONS(5504), + [anon_sym_func] = ACTIONS(5504), + [anon_sym_BANG] = ACTIONS(5502), + [anon_sym_struct] = ACTIONS(5504), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5502), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_DOLLAR] = ACTIONS(5502), + [anon_sym_LBRACK] = ACTIONS(5502), + [anon_sym_void] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym_type] = ACTIONS(5504), + [anon_sym_anyopaque] = ACTIONS(5504), + [anon_sym_bool] = ACTIONS(5504), + [anon_sym_int] = ACTIONS(5504), + [anon_sym_uint] = ACTIONS(5504), + [anon_sym_float] = ACTIONS(5504), + [anon_sym_range] = ACTIONS(5504), + [anon_sym_i8] = ACTIONS(5504), + [anon_sym_i16] = ACTIONS(5504), + [anon_sym_i32] = ACTIONS(5504), + [anon_sym_i64] = ACTIONS(5504), + [anon_sym_u8] = ACTIONS(5504), + [anon_sym_u16] = ACTIONS(5504), + [anon_sym_u32] = ACTIONS(5504), + [anon_sym_u64] = ACTIONS(5504), + [anon_sym_isize] = ACTIONS(5504), + [anon_sym_usize] = ACTIONS(5504), + [anon_sym_f32] = ACTIONS(5504), + [anon_sym_f64] = ACTIONS(5504), + [anon_sym_c_char] = ACTIONS(5504), + [anon_sym_c_schar] = ACTIONS(5504), + [anon_sym_c_uchar] = ACTIONS(5504), + [anon_sym_c_short] = ACTIONS(5504), + [anon_sym_c_ushort] = ACTIONS(5504), + [anon_sym_c_int] = ACTIONS(5504), + [anon_sym_c_uint] = ACTIONS(5504), + [anon_sym_c_long] = ACTIONS(5504), + [anon_sym_c_ulong] = ACTIONS(5504), + [anon_sym_c_longlong] = ACTIONS(5504), + [anon_sym_c_ulonglong] = ACTIONS(5504), + [anon_sym_c_float] = ACTIONS(5504), + [anon_sym_c_double] = ACTIONS(5504), + [anon_sym_c_longdouble] = ACTIONS(5504), + [anon_sym_return] = ACTIONS(5504), + [anon_sym_yield] = ACTIONS(5504), + [anon_sym_break] = ACTIONS(5504), + [anon_sym_continue] = ACTIONS(5504), + [anon_sym_defer] = ACTIONS(5504), + [anon_sym_errdefer] = ACTIONS(5504), + [anon_sym_if] = ACTIONS(5504), + [anon_sym_else] = ACTIONS(5504), + [anon_sym_while] = ACTIONS(5504), + [anon_sym_expand] = ACTIONS(5504), + [anon_sym_for] = ACTIONS(5504), + [anon_sym_match] = ACTIONS(5504), + [anon_sym_AMP] = ACTIONS(5502), + [anon_sym_TILDE] = ACTIONS(5502), + [anon_sym_try] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5502), + [anon_sym_true] = ACTIONS(5504), + [anon_sym_false] = ACTIONS(5504), + [anon_sym_null] = ACTIONS(5504), + [anon_sym_unreachable] = ACTIONS(5504), + [anon_sym_undefined] = ACTIONS(5504), + [sym_sink] = ACTIONS(5504), + [sym_integer] = ACTIONS(5504), + [sym_float] = ACTIONS(5502), + [anon_sym_DQUOTE] = ACTIONS(5502), + [sym_multiline_string] = ACTIONS(5502), + [sym_character] = ACTIONS(5502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5502), + }, + [STATE(6710)] = { + [ts_builtin_sym_end] = ACTIONS(5506), + [sym_identifier] = ACTIONS(5508), + [anon_sym_import] = ACTIONS(5508), + [anon_sym_test] = ACTIONS(5508), + [anon_sym_hide] = ACTIONS(5508), + [anon_sym_func] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5506), + [anon_sym_struct] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_LBRACE] = ACTIONS(5506), + [anon_sym_RBRACE] = ACTIONS(5506), + [anon_sym_DASH] = ACTIONS(5506), + [anon_sym_DOLLAR] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_void] = ACTIONS(5508), + [anon_sym_noreturn] = ACTIONS(5508), + [anon_sym_type] = ACTIONS(5508), + [anon_sym_anyopaque] = ACTIONS(5508), + [anon_sym_bool] = ACTIONS(5508), + [anon_sym_int] = ACTIONS(5508), + [anon_sym_uint] = ACTIONS(5508), + [anon_sym_float] = ACTIONS(5508), + [anon_sym_range] = ACTIONS(5508), + [anon_sym_i8] = ACTIONS(5508), + [anon_sym_i16] = ACTIONS(5508), + [anon_sym_i32] = ACTIONS(5508), + [anon_sym_i64] = ACTIONS(5508), + [anon_sym_u8] = ACTIONS(5508), + [anon_sym_u16] = ACTIONS(5508), + [anon_sym_u32] = ACTIONS(5508), + [anon_sym_u64] = ACTIONS(5508), + [anon_sym_isize] = ACTIONS(5508), + [anon_sym_usize] = ACTIONS(5508), + [anon_sym_f32] = ACTIONS(5508), + [anon_sym_f64] = ACTIONS(5508), + [anon_sym_c_char] = ACTIONS(5508), + [anon_sym_c_schar] = ACTIONS(5508), + [anon_sym_c_uchar] = ACTIONS(5508), + [anon_sym_c_short] = ACTIONS(5508), + [anon_sym_c_ushort] = ACTIONS(5508), + [anon_sym_c_int] = ACTIONS(5508), + [anon_sym_c_uint] = ACTIONS(5508), + [anon_sym_c_long] = ACTIONS(5508), + [anon_sym_c_ulong] = ACTIONS(5508), + [anon_sym_c_longlong] = ACTIONS(5508), + [anon_sym_c_ulonglong] = ACTIONS(5508), + [anon_sym_c_float] = ACTIONS(5508), + [anon_sym_c_double] = ACTIONS(5508), + [anon_sym_c_longdouble] = ACTIONS(5508), + [anon_sym_return] = ACTIONS(5508), + [anon_sym_yield] = ACTIONS(5508), + [anon_sym_break] = ACTIONS(5508), + [anon_sym_continue] = ACTIONS(5508), + [anon_sym_defer] = ACTIONS(5508), + [anon_sym_errdefer] = ACTIONS(5508), + [anon_sym_if] = ACTIONS(5508), + [anon_sym_else] = ACTIONS(5508), + [anon_sym_while] = ACTIONS(5508), + [anon_sym_expand] = ACTIONS(5508), + [anon_sym_for] = ACTIONS(5508), + [anon_sym_match] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5506), + [anon_sym_TILDE] = ACTIONS(5506), + [anon_sym_try] = ACTIONS(5508), + [anon_sym_DOT] = ACTIONS(5506), + [anon_sym_true] = ACTIONS(5508), + [anon_sym_false] = ACTIONS(5508), + [anon_sym_null] = ACTIONS(5508), + [anon_sym_unreachable] = ACTIONS(5508), + [anon_sym_undefined] = ACTIONS(5508), + [sym_sink] = ACTIONS(5508), + [sym_integer] = ACTIONS(5508), + [sym_float] = ACTIONS(5506), + [anon_sym_DQUOTE] = ACTIONS(5506), + [sym_multiline_string] = ACTIONS(5506), + [sym_character] = ACTIONS(5506), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5506), + }, + [STATE(6711)] = { + [ts_builtin_sym_end] = ACTIONS(4570), + [sym_identifier] = ACTIONS(4572), + [anon_sym_import] = ACTIONS(4572), + [anon_sym_test] = ACTIONS(4572), + [anon_sym_hide] = ACTIONS(4572), + [anon_sym_func] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4570), + [anon_sym_struct] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_RPAREN] = ACTIONS(4570), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_void] = ACTIONS(4572), + [anon_sym_noreturn] = ACTIONS(4572), + [anon_sym_type] = ACTIONS(4572), + [anon_sym_anyopaque] = ACTIONS(4572), + [anon_sym_bool] = ACTIONS(4572), + [anon_sym_int] = ACTIONS(4572), + [anon_sym_uint] = ACTIONS(4572), + [anon_sym_float] = ACTIONS(4572), + [anon_sym_range] = ACTIONS(4572), + [anon_sym_i8] = ACTIONS(4572), + [anon_sym_i16] = ACTIONS(4572), + [anon_sym_i32] = ACTIONS(4572), + [anon_sym_i64] = ACTIONS(4572), + [anon_sym_u8] = ACTIONS(4572), + [anon_sym_u16] = ACTIONS(4572), + [anon_sym_u32] = ACTIONS(4572), + [anon_sym_u64] = ACTIONS(4572), + [anon_sym_isize] = ACTIONS(4572), + [anon_sym_usize] = ACTIONS(4572), + [anon_sym_f32] = ACTIONS(4572), + [anon_sym_f64] = ACTIONS(4572), + [anon_sym_c_char] = ACTIONS(4572), + [anon_sym_c_schar] = ACTIONS(4572), + [anon_sym_c_uchar] = ACTIONS(4572), + [anon_sym_c_short] = ACTIONS(4572), + [anon_sym_c_ushort] = ACTIONS(4572), + [anon_sym_c_int] = ACTIONS(4572), + [anon_sym_c_uint] = ACTIONS(4572), + [anon_sym_c_long] = ACTIONS(4572), + [anon_sym_c_ulong] = ACTIONS(4572), + [anon_sym_c_longlong] = ACTIONS(4572), + [anon_sym_c_ulonglong] = ACTIONS(4572), + [anon_sym_c_float] = ACTIONS(4572), + [anon_sym_c_double] = ACTIONS(4572), + [anon_sym_c_longdouble] = ACTIONS(4572), + [anon_sym_return] = ACTIONS(4572), + [anon_sym_yield] = ACTIONS(4572), + [anon_sym_break] = ACTIONS(4572), + [anon_sym_continue] = ACTIONS(4572), + [anon_sym_defer] = ACTIONS(4572), + [anon_sym_errdefer] = ACTIONS(4572), + [anon_sym_if] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_while] = ACTIONS(4572), + [anon_sym_expand] = ACTIONS(4572), + [anon_sym_for] = ACTIONS(4572), + [anon_sym_match] = ACTIONS(4572), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_try] = ACTIONS(4572), + [anon_sym_DOT] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_null] = ACTIONS(4572), + [anon_sym_unreachable] = ACTIONS(4572), + [anon_sym_undefined] = ACTIONS(4572), + [sym_sink] = ACTIONS(4572), + [sym_integer] = ACTIONS(4572), + [sym_float] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [sym_multiline_string] = ACTIONS(4570), + [sym_character] = ACTIONS(4570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4570), + }, + [STATE(6712)] = { + [ts_builtin_sym_end] = ACTIONS(4616), + [sym_identifier] = ACTIONS(4618), + [anon_sym_import] = ACTIONS(4618), + [anon_sym_test] = ACTIONS(4618), + [anon_sym_hide] = ACTIONS(4618), + [anon_sym_func] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4616), + [anon_sym_struct] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4616), + [anon_sym_RPAREN] = ACTIONS(4616), + [anon_sym_LBRACE] = ACTIONS(4616), + [anon_sym_RBRACE] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4616), + [anon_sym_DOLLAR] = ACTIONS(4616), + [anon_sym_LBRACK] = ACTIONS(4616), + [anon_sym_void] = ACTIONS(4618), + [anon_sym_noreturn] = ACTIONS(4618), + [anon_sym_type] = ACTIONS(4618), + [anon_sym_anyopaque] = ACTIONS(4618), + [anon_sym_bool] = ACTIONS(4618), + [anon_sym_int] = ACTIONS(4618), + [anon_sym_uint] = ACTIONS(4618), + [anon_sym_float] = ACTIONS(4618), + [anon_sym_range] = ACTIONS(4618), + [anon_sym_i8] = ACTIONS(4618), + [anon_sym_i16] = ACTIONS(4618), + [anon_sym_i32] = ACTIONS(4618), + [anon_sym_i64] = ACTIONS(4618), + [anon_sym_u8] = ACTIONS(4618), + [anon_sym_u16] = ACTIONS(4618), + [anon_sym_u32] = ACTIONS(4618), + [anon_sym_u64] = ACTIONS(4618), + [anon_sym_isize] = ACTIONS(4618), + [anon_sym_usize] = ACTIONS(4618), + [anon_sym_f32] = ACTIONS(4618), + [anon_sym_f64] = ACTIONS(4618), + [anon_sym_c_char] = ACTIONS(4618), + [anon_sym_c_schar] = ACTIONS(4618), + [anon_sym_c_uchar] = ACTIONS(4618), + [anon_sym_c_short] = ACTIONS(4618), + [anon_sym_c_ushort] = ACTIONS(4618), + [anon_sym_c_int] = ACTIONS(4618), + [anon_sym_c_uint] = ACTIONS(4618), + [anon_sym_c_long] = ACTIONS(4618), + [anon_sym_c_ulong] = ACTIONS(4618), + [anon_sym_c_longlong] = ACTIONS(4618), + [anon_sym_c_ulonglong] = ACTIONS(4618), + [anon_sym_c_float] = ACTIONS(4618), + [anon_sym_c_double] = ACTIONS(4618), + [anon_sym_c_longdouble] = ACTIONS(4618), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_yield] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_defer] = ACTIONS(4618), + [anon_sym_errdefer] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_while] = ACTIONS(4618), + [anon_sym_expand] = ACTIONS(4618), + [anon_sym_for] = ACTIONS(4618), + [anon_sym_match] = ACTIONS(4618), + [anon_sym_AMP] = ACTIONS(4616), + [anon_sym_TILDE] = ACTIONS(4616), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4616), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_unreachable] = ACTIONS(4618), + [anon_sym_undefined] = ACTIONS(4618), + [sym_sink] = ACTIONS(4618), + [sym_integer] = ACTIONS(4618), + [sym_float] = ACTIONS(4616), + [anon_sym_DQUOTE] = ACTIONS(4616), + [sym_multiline_string] = ACTIONS(4616), + [sym_character] = ACTIONS(4616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4616), + }, + [STATE(6713)] = { + [ts_builtin_sym_end] = ACTIONS(4622), + [sym_identifier] = ACTIONS(4624), + [anon_sym_import] = ACTIONS(4624), + [anon_sym_test] = ACTIONS(4624), + [anon_sym_hide] = ACTIONS(4624), + [anon_sym_func] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4622), + [anon_sym_struct] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [anon_sym_RBRACE] = ACTIONS(4622), + [anon_sym_DASH] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_void] = ACTIONS(4624), + [anon_sym_noreturn] = ACTIONS(4624), + [anon_sym_type] = ACTIONS(4624), + [anon_sym_anyopaque] = ACTIONS(4624), + [anon_sym_bool] = ACTIONS(4624), + [anon_sym_int] = ACTIONS(4624), + [anon_sym_uint] = ACTIONS(4624), + [anon_sym_float] = ACTIONS(4624), + [anon_sym_range] = ACTIONS(4624), + [anon_sym_i8] = ACTIONS(4624), + [anon_sym_i16] = ACTIONS(4624), + [anon_sym_i32] = ACTIONS(4624), + [anon_sym_i64] = ACTIONS(4624), + [anon_sym_u8] = ACTIONS(4624), + [anon_sym_u16] = ACTIONS(4624), + [anon_sym_u32] = ACTIONS(4624), + [anon_sym_u64] = ACTIONS(4624), + [anon_sym_isize] = ACTIONS(4624), + [anon_sym_usize] = ACTIONS(4624), + [anon_sym_f32] = ACTIONS(4624), + [anon_sym_f64] = ACTIONS(4624), + [anon_sym_c_char] = ACTIONS(4624), + [anon_sym_c_schar] = ACTIONS(4624), + [anon_sym_c_uchar] = ACTIONS(4624), + [anon_sym_c_short] = ACTIONS(4624), + [anon_sym_c_ushort] = ACTIONS(4624), + [anon_sym_c_int] = ACTIONS(4624), + [anon_sym_c_uint] = ACTIONS(4624), + [anon_sym_c_long] = ACTIONS(4624), + [anon_sym_c_ulong] = ACTIONS(4624), + [anon_sym_c_longlong] = ACTIONS(4624), + [anon_sym_c_ulonglong] = ACTIONS(4624), + [anon_sym_c_float] = ACTIONS(4624), + [anon_sym_c_double] = ACTIONS(4624), + [anon_sym_c_longdouble] = ACTIONS(4624), + [anon_sym_return] = ACTIONS(4624), + [anon_sym_yield] = ACTIONS(4624), + [anon_sym_break] = ACTIONS(4624), + [anon_sym_continue] = ACTIONS(4624), + [anon_sym_defer] = ACTIONS(4624), + [anon_sym_errdefer] = ACTIONS(4624), + [anon_sym_if] = ACTIONS(4624), + [anon_sym_else] = ACTIONS(4624), + [anon_sym_while] = ACTIONS(4624), + [anon_sym_expand] = ACTIONS(4624), + [anon_sym_for] = ACTIONS(4624), + [anon_sym_match] = ACTIONS(4624), + [anon_sym_AMP] = ACTIONS(4622), + [anon_sym_TILDE] = ACTIONS(4622), + [anon_sym_try] = ACTIONS(4624), + [anon_sym_DOT] = ACTIONS(4622), + [anon_sym_true] = ACTIONS(4624), + [anon_sym_false] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(4624), + [anon_sym_unreachable] = ACTIONS(4624), + [anon_sym_undefined] = ACTIONS(4624), + [sym_sink] = ACTIONS(4624), + [sym_integer] = ACTIONS(4624), + [sym_float] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(4622), + [sym_multiline_string] = ACTIONS(4622), + [sym_character] = ACTIONS(4622), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4622), + }, + [STATE(6714)] = { + [ts_builtin_sym_end] = ACTIONS(5510), + [sym_identifier] = ACTIONS(5512), + [anon_sym_import] = ACTIONS(5512), + [anon_sym_test] = ACTIONS(5512), + [anon_sym_hide] = ACTIONS(5512), + [anon_sym_func] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_struct] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5510), + [anon_sym_RPAREN] = ACTIONS(5510), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_DOLLAR] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [anon_sym_void] = ACTIONS(5512), + [anon_sym_noreturn] = ACTIONS(5512), + [anon_sym_type] = ACTIONS(5512), + [anon_sym_anyopaque] = ACTIONS(5512), + [anon_sym_bool] = ACTIONS(5512), + [anon_sym_int] = ACTIONS(5512), + [anon_sym_uint] = ACTIONS(5512), + [anon_sym_float] = ACTIONS(5512), + [anon_sym_range] = ACTIONS(5512), + [anon_sym_i8] = ACTIONS(5512), + [anon_sym_i16] = ACTIONS(5512), + [anon_sym_i32] = ACTIONS(5512), + [anon_sym_i64] = ACTIONS(5512), + [anon_sym_u8] = ACTIONS(5512), + [anon_sym_u16] = ACTIONS(5512), + [anon_sym_u32] = ACTIONS(5512), + [anon_sym_u64] = ACTIONS(5512), + [anon_sym_isize] = ACTIONS(5512), + [anon_sym_usize] = ACTIONS(5512), + [anon_sym_f32] = ACTIONS(5512), + [anon_sym_f64] = ACTIONS(5512), + [anon_sym_c_char] = ACTIONS(5512), + [anon_sym_c_schar] = ACTIONS(5512), + [anon_sym_c_uchar] = ACTIONS(5512), + [anon_sym_c_short] = ACTIONS(5512), + [anon_sym_c_ushort] = ACTIONS(5512), + [anon_sym_c_int] = ACTIONS(5512), + [anon_sym_c_uint] = ACTIONS(5512), + [anon_sym_c_long] = ACTIONS(5512), + [anon_sym_c_ulong] = ACTIONS(5512), + [anon_sym_c_longlong] = ACTIONS(5512), + [anon_sym_c_ulonglong] = ACTIONS(5512), + [anon_sym_c_float] = ACTIONS(5512), + [anon_sym_c_double] = ACTIONS(5512), + [anon_sym_c_longdouble] = ACTIONS(5512), + [anon_sym_return] = ACTIONS(5512), + [anon_sym_yield] = ACTIONS(5512), + [anon_sym_break] = ACTIONS(5512), + [anon_sym_continue] = ACTIONS(5512), + [anon_sym_defer] = ACTIONS(5512), + [anon_sym_errdefer] = ACTIONS(5512), + [anon_sym_if] = ACTIONS(5512), + [anon_sym_else] = ACTIONS(5512), + [anon_sym_while] = ACTIONS(5512), + [anon_sym_expand] = ACTIONS(5512), + [anon_sym_for] = ACTIONS(5512), + [anon_sym_match] = ACTIONS(5512), + [anon_sym_AMP] = ACTIONS(5510), + [anon_sym_TILDE] = ACTIONS(5510), + [anon_sym_try] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_true] = ACTIONS(5512), + [anon_sym_false] = ACTIONS(5512), + [anon_sym_null] = ACTIONS(5512), + [anon_sym_unreachable] = ACTIONS(5512), + [anon_sym_undefined] = ACTIONS(5512), + [sym_sink] = ACTIONS(5512), + [sym_integer] = ACTIONS(5512), + [sym_float] = ACTIONS(5510), + [anon_sym_DQUOTE] = ACTIONS(5510), + [sym_multiline_string] = ACTIONS(5510), + [sym_character] = ACTIONS(5510), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5510), + }, + [STATE(6715)] = { + [ts_builtin_sym_end] = ACTIONS(4576), + [sym_identifier] = ACTIONS(4578), + [anon_sym_import] = ACTIONS(4578), + [anon_sym_test] = ACTIONS(4578), + [anon_sym_hide] = ACTIONS(4578), + [anon_sym_func] = ACTIONS(4578), + [anon_sym_BANG] = ACTIONS(4576), + [anon_sym_struct] = ACTIONS(4578), + [anon_sym_LPAREN] = ACTIONS(4576), + [anon_sym_RPAREN] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4576), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_void] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_type] = ACTIONS(4578), + [anon_sym_anyopaque] = ACTIONS(4578), + [anon_sym_bool] = ACTIONS(4578), + [anon_sym_int] = ACTIONS(4578), + [anon_sym_uint] = ACTIONS(4578), + [anon_sym_float] = ACTIONS(4578), + [anon_sym_range] = ACTIONS(4578), + [anon_sym_i8] = ACTIONS(4578), + [anon_sym_i16] = ACTIONS(4578), + [anon_sym_i32] = ACTIONS(4578), + [anon_sym_i64] = ACTIONS(4578), + [anon_sym_u8] = ACTIONS(4578), + [anon_sym_u16] = ACTIONS(4578), + [anon_sym_u32] = ACTIONS(4578), + [anon_sym_u64] = ACTIONS(4578), + [anon_sym_isize] = ACTIONS(4578), + [anon_sym_usize] = ACTIONS(4578), + [anon_sym_f32] = ACTIONS(4578), + [anon_sym_f64] = ACTIONS(4578), + [anon_sym_c_char] = ACTIONS(4578), + [anon_sym_c_schar] = ACTIONS(4578), + [anon_sym_c_uchar] = ACTIONS(4578), + [anon_sym_c_short] = ACTIONS(4578), + [anon_sym_c_ushort] = ACTIONS(4578), + [anon_sym_c_int] = ACTIONS(4578), + [anon_sym_c_uint] = ACTIONS(4578), + [anon_sym_c_long] = ACTIONS(4578), + [anon_sym_c_ulong] = ACTIONS(4578), + [anon_sym_c_longlong] = ACTIONS(4578), + [anon_sym_c_ulonglong] = ACTIONS(4578), + [anon_sym_c_float] = ACTIONS(4578), + [anon_sym_c_double] = ACTIONS(4578), + [anon_sym_c_longdouble] = ACTIONS(4578), + [anon_sym_return] = ACTIONS(4578), + [anon_sym_yield] = ACTIONS(4578), + [anon_sym_break] = ACTIONS(4578), + [anon_sym_continue] = ACTIONS(4578), + [anon_sym_defer] = ACTIONS(4578), + [anon_sym_errdefer] = ACTIONS(4578), + [anon_sym_if] = ACTIONS(4578), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_while] = ACTIONS(4578), + [anon_sym_expand] = ACTIONS(4578), + [anon_sym_for] = ACTIONS(4578), + [anon_sym_match] = ACTIONS(4578), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_TILDE] = ACTIONS(4576), + [anon_sym_try] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_null] = ACTIONS(4578), + [anon_sym_unreachable] = ACTIONS(4578), + [anon_sym_undefined] = ACTIONS(4578), + [sym_sink] = ACTIONS(4578), + [sym_integer] = ACTIONS(4578), + [sym_float] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(4576), + [sym_multiline_string] = ACTIONS(4576), + [sym_character] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4576), + }, + [STATE(6716)] = { + [ts_builtin_sym_end] = ACTIONS(4880), + [sym_identifier] = ACTIONS(4882), + [anon_sym_import] = ACTIONS(4882), + [anon_sym_test] = ACTIONS(4882), + [anon_sym_hide] = ACTIONS(4882), + [anon_sym_func] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_struct] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_void] = ACTIONS(4882), + [anon_sym_noreturn] = ACTIONS(4882), + [anon_sym_type] = ACTIONS(4882), + [anon_sym_anyopaque] = ACTIONS(4882), + [anon_sym_bool] = ACTIONS(4882), + [anon_sym_int] = ACTIONS(4882), + [anon_sym_uint] = ACTIONS(4882), + [anon_sym_float] = ACTIONS(4882), + [anon_sym_range] = ACTIONS(4882), + [anon_sym_i8] = ACTIONS(4882), + [anon_sym_i16] = ACTIONS(4882), + [anon_sym_i32] = ACTIONS(4882), + [anon_sym_i64] = ACTIONS(4882), + [anon_sym_u8] = ACTIONS(4882), + [anon_sym_u16] = ACTIONS(4882), + [anon_sym_u32] = ACTIONS(4882), + [anon_sym_u64] = ACTIONS(4882), + [anon_sym_isize] = ACTIONS(4882), + [anon_sym_usize] = ACTIONS(4882), + [anon_sym_f32] = ACTIONS(4882), + [anon_sym_f64] = ACTIONS(4882), + [anon_sym_c_char] = ACTIONS(4882), + [anon_sym_c_schar] = ACTIONS(4882), + [anon_sym_c_uchar] = ACTIONS(4882), + [anon_sym_c_short] = ACTIONS(4882), + [anon_sym_c_ushort] = ACTIONS(4882), + [anon_sym_c_int] = ACTIONS(4882), + [anon_sym_c_uint] = ACTIONS(4882), + [anon_sym_c_long] = ACTIONS(4882), + [anon_sym_c_ulong] = ACTIONS(4882), + [anon_sym_c_longlong] = ACTIONS(4882), + [anon_sym_c_ulonglong] = ACTIONS(4882), + [anon_sym_c_float] = ACTIONS(4882), + [anon_sym_c_double] = ACTIONS(4882), + [anon_sym_c_longdouble] = ACTIONS(4882), + [anon_sym_return] = ACTIONS(4882), + [anon_sym_yield] = ACTIONS(4882), + [anon_sym_break] = ACTIONS(4882), + [anon_sym_continue] = ACTIONS(4882), + [anon_sym_defer] = ACTIONS(4882), + [anon_sym_errdefer] = ACTIONS(4882), + [anon_sym_if] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_while] = ACTIONS(4882), + [anon_sym_expand] = ACTIONS(4882), + [anon_sym_for] = ACTIONS(4882), + [anon_sym_match] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_unreachable] = ACTIONS(4882), + [anon_sym_undefined] = ACTIONS(4882), + [sym_sink] = ACTIONS(4882), + [sym_integer] = ACTIONS(4882), + [sym_float] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4880), + [sym_multiline_string] = ACTIONS(4880), + [sym_character] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4880), + }, + [STATE(6717)] = { + [ts_builtin_sym_end] = ACTIONS(5514), + [sym_identifier] = ACTIONS(5516), + [anon_sym_import] = ACTIONS(5516), + [anon_sym_test] = ACTIONS(5516), + [anon_sym_hide] = ACTIONS(5516), + [anon_sym_func] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5514), + [anon_sym_struct] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5514), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_DOLLAR] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_void] = ACTIONS(5516), + [anon_sym_noreturn] = ACTIONS(5516), + [anon_sym_type] = ACTIONS(5516), + [anon_sym_anyopaque] = ACTIONS(5516), + [anon_sym_bool] = ACTIONS(5516), + [anon_sym_int] = ACTIONS(5516), + [anon_sym_uint] = ACTIONS(5516), + [anon_sym_float] = ACTIONS(5516), + [anon_sym_range] = ACTIONS(5516), + [anon_sym_i8] = ACTIONS(5516), + [anon_sym_i16] = ACTIONS(5516), + [anon_sym_i32] = ACTIONS(5516), + [anon_sym_i64] = ACTIONS(5516), + [anon_sym_u8] = ACTIONS(5516), + [anon_sym_u16] = ACTIONS(5516), + [anon_sym_u32] = ACTIONS(5516), + [anon_sym_u64] = ACTIONS(5516), + [anon_sym_isize] = ACTIONS(5516), + [anon_sym_usize] = ACTIONS(5516), + [anon_sym_f32] = ACTIONS(5516), + [anon_sym_f64] = ACTIONS(5516), + [anon_sym_c_char] = ACTIONS(5516), + [anon_sym_c_schar] = ACTIONS(5516), + [anon_sym_c_uchar] = ACTIONS(5516), + [anon_sym_c_short] = ACTIONS(5516), + [anon_sym_c_ushort] = ACTIONS(5516), + [anon_sym_c_int] = ACTIONS(5516), + [anon_sym_c_uint] = ACTIONS(5516), + [anon_sym_c_long] = ACTIONS(5516), + [anon_sym_c_ulong] = ACTIONS(5516), + [anon_sym_c_longlong] = ACTIONS(5516), + [anon_sym_c_ulonglong] = ACTIONS(5516), + [anon_sym_c_float] = ACTIONS(5516), + [anon_sym_c_double] = ACTIONS(5516), + [anon_sym_c_longdouble] = ACTIONS(5516), + [anon_sym_return] = ACTIONS(5516), + [anon_sym_yield] = ACTIONS(5516), + [anon_sym_break] = ACTIONS(5516), + [anon_sym_continue] = ACTIONS(5516), + [anon_sym_defer] = ACTIONS(5516), + [anon_sym_errdefer] = ACTIONS(5516), + [anon_sym_if] = ACTIONS(5516), + [anon_sym_else] = ACTIONS(5516), + [anon_sym_while] = ACTIONS(5516), + [anon_sym_expand] = ACTIONS(5516), + [anon_sym_for] = ACTIONS(5516), + [anon_sym_match] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5514), + [anon_sym_TILDE] = ACTIONS(5514), + [anon_sym_try] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5514), + [anon_sym_true] = ACTIONS(5516), + [anon_sym_false] = ACTIONS(5516), + [anon_sym_null] = ACTIONS(5516), + [anon_sym_unreachable] = ACTIONS(5516), + [anon_sym_undefined] = ACTIONS(5516), + [sym_sink] = ACTIONS(5516), + [sym_integer] = ACTIONS(5516), + [sym_float] = ACTIONS(5514), + [anon_sym_DQUOTE] = ACTIONS(5514), + [sym_multiline_string] = ACTIONS(5514), + [sym_character] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5514), + }, + [STATE(6718)] = { + [ts_builtin_sym_end] = ACTIONS(5380), + [sym_identifier] = ACTIONS(5382), + [anon_sym_import] = ACTIONS(5382), + [anon_sym_test] = ACTIONS(5382), + [anon_sym_hide] = ACTIONS(5382), + [anon_sym_func] = ACTIONS(5382), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_struct] = ACTIONS(5382), + [anon_sym_LPAREN] = ACTIONS(5380), + [anon_sym_RPAREN] = ACTIONS(5380), + [anon_sym_LBRACE] = ACTIONS(5380), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_LBRACK] = ACTIONS(5380), + [anon_sym_void] = ACTIONS(5382), + [anon_sym_noreturn] = ACTIONS(5382), + [anon_sym_type] = ACTIONS(5382), + [anon_sym_anyopaque] = ACTIONS(5382), + [anon_sym_bool] = ACTIONS(5382), + [anon_sym_int] = ACTIONS(5382), + [anon_sym_uint] = ACTIONS(5382), + [anon_sym_float] = ACTIONS(5382), + [anon_sym_range] = ACTIONS(5382), + [anon_sym_i8] = ACTIONS(5382), + [anon_sym_i16] = ACTIONS(5382), + [anon_sym_i32] = ACTIONS(5382), + [anon_sym_i64] = ACTIONS(5382), + [anon_sym_u8] = ACTIONS(5382), + [anon_sym_u16] = ACTIONS(5382), + [anon_sym_u32] = ACTIONS(5382), + [anon_sym_u64] = ACTIONS(5382), + [anon_sym_isize] = ACTIONS(5382), + [anon_sym_usize] = ACTIONS(5382), + [anon_sym_f32] = ACTIONS(5382), + [anon_sym_f64] = ACTIONS(5382), + [anon_sym_c_char] = ACTIONS(5382), + [anon_sym_c_schar] = ACTIONS(5382), + [anon_sym_c_uchar] = ACTIONS(5382), + [anon_sym_c_short] = ACTIONS(5382), + [anon_sym_c_ushort] = ACTIONS(5382), + [anon_sym_c_int] = ACTIONS(5382), + [anon_sym_c_uint] = ACTIONS(5382), + [anon_sym_c_long] = ACTIONS(5382), + [anon_sym_c_ulong] = ACTIONS(5382), + [anon_sym_c_longlong] = ACTIONS(5382), + [anon_sym_c_ulonglong] = ACTIONS(5382), + [anon_sym_c_float] = ACTIONS(5382), + [anon_sym_c_double] = ACTIONS(5382), + [anon_sym_c_longdouble] = ACTIONS(5382), + [anon_sym_return] = ACTIONS(5382), + [anon_sym_yield] = ACTIONS(5382), + [anon_sym_break] = ACTIONS(5382), + [anon_sym_continue] = ACTIONS(5382), + [anon_sym_defer] = ACTIONS(5382), + [anon_sym_errdefer] = ACTIONS(5382), + [anon_sym_if] = ACTIONS(5382), + [anon_sym_else] = ACTIONS(5382), + [anon_sym_while] = ACTIONS(5382), + [anon_sym_expand] = ACTIONS(5382), + [anon_sym_for] = ACTIONS(5382), + [anon_sym_match] = ACTIONS(5382), + [anon_sym_AMP] = ACTIONS(5380), + [anon_sym_TILDE] = ACTIONS(5380), + [anon_sym_try] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5380), + [anon_sym_true] = ACTIONS(5382), + [anon_sym_false] = ACTIONS(5382), + [anon_sym_null] = ACTIONS(5382), + [anon_sym_unreachable] = ACTIONS(5382), + [anon_sym_undefined] = ACTIONS(5382), + [sym_sink] = ACTIONS(5382), + [sym_integer] = ACTIONS(5382), + [sym_float] = ACTIONS(5380), + [anon_sym_DQUOTE] = ACTIONS(5380), + [sym_multiline_string] = ACTIONS(5380), + [sym_character] = ACTIONS(5380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5380), + }, + [STATE(6719)] = { + [ts_builtin_sym_end] = ACTIONS(4888), + [sym_identifier] = ACTIONS(4890), + [anon_sym_import] = ACTIONS(4890), + [anon_sym_test] = ACTIONS(4890), + [anon_sym_hide] = ACTIONS(4890), + [anon_sym_func] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_struct] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_void] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym_type] = ACTIONS(4890), + [anon_sym_anyopaque] = ACTIONS(4890), + [anon_sym_bool] = ACTIONS(4890), + [anon_sym_int] = ACTIONS(4890), + [anon_sym_uint] = ACTIONS(4890), + [anon_sym_float] = ACTIONS(4890), + [anon_sym_range] = ACTIONS(4890), + [anon_sym_i8] = ACTIONS(4890), + [anon_sym_i16] = ACTIONS(4890), + [anon_sym_i32] = ACTIONS(4890), + [anon_sym_i64] = ACTIONS(4890), + [anon_sym_u8] = ACTIONS(4890), + [anon_sym_u16] = ACTIONS(4890), + [anon_sym_u32] = ACTIONS(4890), + [anon_sym_u64] = ACTIONS(4890), + [anon_sym_isize] = ACTIONS(4890), + [anon_sym_usize] = ACTIONS(4890), + [anon_sym_f32] = ACTIONS(4890), + [anon_sym_f64] = ACTIONS(4890), + [anon_sym_c_char] = ACTIONS(4890), + [anon_sym_c_schar] = ACTIONS(4890), + [anon_sym_c_uchar] = ACTIONS(4890), + [anon_sym_c_short] = ACTIONS(4890), + [anon_sym_c_ushort] = ACTIONS(4890), + [anon_sym_c_int] = ACTIONS(4890), + [anon_sym_c_uint] = ACTIONS(4890), + [anon_sym_c_long] = ACTIONS(4890), + [anon_sym_c_ulong] = ACTIONS(4890), + [anon_sym_c_longlong] = ACTIONS(4890), + [anon_sym_c_ulonglong] = ACTIONS(4890), + [anon_sym_c_float] = ACTIONS(4890), + [anon_sym_c_double] = ACTIONS(4890), + [anon_sym_c_longdouble] = ACTIONS(4890), + [anon_sym_return] = ACTIONS(4890), + [anon_sym_yield] = ACTIONS(4890), + [anon_sym_break] = ACTIONS(4890), + [anon_sym_continue] = ACTIONS(4890), + [anon_sym_defer] = ACTIONS(4890), + [anon_sym_errdefer] = ACTIONS(4890), + [anon_sym_if] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_while] = ACTIONS(4890), + [anon_sym_expand] = ACTIONS(4890), + [anon_sym_for] = ACTIONS(4890), + [anon_sym_match] = ACTIONS(4890), + [anon_sym_AMP] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_unreachable] = ACTIONS(4890), + [anon_sym_undefined] = ACTIONS(4890), + [sym_sink] = ACTIONS(4890), + [sym_integer] = ACTIONS(4890), + [sym_float] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(4888), + [sym_multiline_string] = ACTIONS(4888), + [sym_character] = ACTIONS(4888), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4888), + }, + [STATE(6720)] = { + [ts_builtin_sym_end] = ACTIONS(5084), + [sym_identifier] = ACTIONS(5086), + [anon_sym_import] = ACTIONS(5086), + [anon_sym_test] = ACTIONS(5086), + [anon_sym_hide] = ACTIONS(5086), + [anon_sym_func] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5084), + [anon_sym_struct] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_DASH] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_void] = ACTIONS(5086), + [anon_sym_noreturn] = ACTIONS(5086), + [anon_sym_type] = ACTIONS(5086), + [anon_sym_anyopaque] = ACTIONS(5086), + [anon_sym_bool] = ACTIONS(5086), + [anon_sym_int] = ACTIONS(5086), + [anon_sym_uint] = ACTIONS(5086), + [anon_sym_float] = ACTIONS(5086), + [anon_sym_range] = ACTIONS(5086), + [anon_sym_i8] = ACTIONS(5086), + [anon_sym_i16] = ACTIONS(5086), + [anon_sym_i32] = ACTIONS(5086), + [anon_sym_i64] = ACTIONS(5086), + [anon_sym_u8] = ACTIONS(5086), + [anon_sym_u16] = ACTIONS(5086), + [anon_sym_u32] = ACTIONS(5086), + [anon_sym_u64] = ACTIONS(5086), + [anon_sym_isize] = ACTIONS(5086), + [anon_sym_usize] = ACTIONS(5086), + [anon_sym_f32] = ACTIONS(5086), + [anon_sym_f64] = ACTIONS(5086), + [anon_sym_c_char] = ACTIONS(5086), + [anon_sym_c_schar] = ACTIONS(5086), + [anon_sym_c_uchar] = ACTIONS(5086), + [anon_sym_c_short] = ACTIONS(5086), + [anon_sym_c_ushort] = ACTIONS(5086), + [anon_sym_c_int] = ACTIONS(5086), + [anon_sym_c_uint] = ACTIONS(5086), + [anon_sym_c_long] = ACTIONS(5086), + [anon_sym_c_ulong] = ACTIONS(5086), + [anon_sym_c_longlong] = ACTIONS(5086), + [anon_sym_c_ulonglong] = ACTIONS(5086), + [anon_sym_c_float] = ACTIONS(5086), + [anon_sym_c_double] = ACTIONS(5086), + [anon_sym_c_longdouble] = ACTIONS(5086), + [anon_sym_return] = ACTIONS(5086), + [anon_sym_yield] = ACTIONS(5086), + [anon_sym_break] = ACTIONS(5086), + [anon_sym_continue] = ACTIONS(5086), + [anon_sym_defer] = ACTIONS(5086), + [anon_sym_errdefer] = ACTIONS(5086), + [anon_sym_if] = ACTIONS(5086), + [anon_sym_else] = ACTIONS(5086), + [anon_sym_while] = ACTIONS(5086), + [anon_sym_expand] = ACTIONS(5086), + [anon_sym_for] = ACTIONS(5086), + [anon_sym_match] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5084), + [anon_sym_TILDE] = ACTIONS(5084), + [anon_sym_try] = ACTIONS(5086), + [anon_sym_DOT] = ACTIONS(5084), + [anon_sym_true] = ACTIONS(5086), + [anon_sym_false] = ACTIONS(5086), + [anon_sym_null] = ACTIONS(5086), + [anon_sym_unreachable] = ACTIONS(5086), + [anon_sym_undefined] = ACTIONS(5086), + [sym_sink] = ACTIONS(5086), + [sym_integer] = ACTIONS(5086), + [sym_float] = ACTIONS(5084), + [anon_sym_DQUOTE] = ACTIONS(5084), + [sym_multiline_string] = ACTIONS(5084), + [sym_character] = ACTIONS(5084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5084), + }, + [STATE(6721)] = { + [ts_builtin_sym_end] = ACTIONS(5112), + [sym_identifier] = ACTIONS(5114), + [anon_sym_import] = ACTIONS(5114), + [anon_sym_test] = ACTIONS(5114), + [anon_sym_hide] = ACTIONS(5114), + [anon_sym_func] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_struct] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5112), + [anon_sym_LBRACE] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_void] = ACTIONS(5114), + [anon_sym_noreturn] = ACTIONS(5114), + [anon_sym_type] = ACTIONS(5114), + [anon_sym_anyopaque] = ACTIONS(5114), + [anon_sym_bool] = ACTIONS(5114), + [anon_sym_int] = ACTIONS(5114), + [anon_sym_uint] = ACTIONS(5114), + [anon_sym_float] = ACTIONS(5114), + [anon_sym_range] = ACTIONS(5114), + [anon_sym_i8] = ACTIONS(5114), + [anon_sym_i16] = ACTIONS(5114), + [anon_sym_i32] = ACTIONS(5114), + [anon_sym_i64] = ACTIONS(5114), + [anon_sym_u8] = ACTIONS(5114), + [anon_sym_u16] = ACTIONS(5114), + [anon_sym_u32] = ACTIONS(5114), + [anon_sym_u64] = ACTIONS(5114), + [anon_sym_isize] = ACTIONS(5114), + [anon_sym_usize] = ACTIONS(5114), + [anon_sym_f32] = ACTIONS(5114), + [anon_sym_f64] = ACTIONS(5114), + [anon_sym_c_char] = ACTIONS(5114), + [anon_sym_c_schar] = ACTIONS(5114), + [anon_sym_c_uchar] = ACTIONS(5114), + [anon_sym_c_short] = ACTIONS(5114), + [anon_sym_c_ushort] = ACTIONS(5114), + [anon_sym_c_int] = ACTIONS(5114), + [anon_sym_c_uint] = ACTIONS(5114), + [anon_sym_c_long] = ACTIONS(5114), + [anon_sym_c_ulong] = ACTIONS(5114), + [anon_sym_c_longlong] = ACTIONS(5114), + [anon_sym_c_ulonglong] = ACTIONS(5114), + [anon_sym_c_float] = ACTIONS(5114), + [anon_sym_c_double] = ACTIONS(5114), + [anon_sym_c_longdouble] = ACTIONS(5114), + [anon_sym_return] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5114), + [anon_sym_break] = ACTIONS(5114), + [anon_sym_continue] = ACTIONS(5114), + [anon_sym_defer] = ACTIONS(5114), + [anon_sym_errdefer] = ACTIONS(5114), + [anon_sym_if] = ACTIONS(5114), + [anon_sym_else] = ACTIONS(5114), + [anon_sym_while] = ACTIONS(5114), + [anon_sym_expand] = ACTIONS(5114), + [anon_sym_for] = ACTIONS(5114), + [anon_sym_match] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5112), + [anon_sym_TILDE] = ACTIONS(5112), + [anon_sym_try] = ACTIONS(5114), + [anon_sym_DOT] = ACTIONS(5112), + [anon_sym_true] = ACTIONS(5114), + [anon_sym_false] = ACTIONS(5114), + [anon_sym_null] = ACTIONS(5114), + [anon_sym_unreachable] = ACTIONS(5114), + [anon_sym_undefined] = ACTIONS(5114), + [sym_sink] = ACTIONS(5114), + [sym_integer] = ACTIONS(5114), + [sym_float] = ACTIONS(5112), + [anon_sym_DQUOTE] = ACTIONS(5112), + [sym_multiline_string] = ACTIONS(5112), + [sym_character] = ACTIONS(5112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5112), + }, + [STATE(6722)] = { + [ts_builtin_sym_end] = ACTIONS(4990), + [sym_identifier] = ACTIONS(4992), + [anon_sym_import] = ACTIONS(4992), + [anon_sym_test] = ACTIONS(4992), + [anon_sym_hide] = ACTIONS(4992), + [anon_sym_func] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4990), + [anon_sym_struct] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_void] = ACTIONS(4992), + [anon_sym_noreturn] = ACTIONS(4992), + [anon_sym_type] = ACTIONS(4992), + [anon_sym_anyopaque] = ACTIONS(4992), + [anon_sym_bool] = ACTIONS(4992), + [anon_sym_int] = ACTIONS(4992), + [anon_sym_uint] = ACTIONS(4992), + [anon_sym_float] = ACTIONS(4992), + [anon_sym_range] = ACTIONS(4992), + [anon_sym_i8] = ACTIONS(4992), + [anon_sym_i16] = ACTIONS(4992), + [anon_sym_i32] = ACTIONS(4992), + [anon_sym_i64] = ACTIONS(4992), + [anon_sym_u8] = ACTIONS(4992), + [anon_sym_u16] = ACTIONS(4992), + [anon_sym_u32] = ACTIONS(4992), + [anon_sym_u64] = ACTIONS(4992), + [anon_sym_isize] = ACTIONS(4992), + [anon_sym_usize] = ACTIONS(4992), + [anon_sym_f32] = ACTIONS(4992), + [anon_sym_f64] = ACTIONS(4992), + [anon_sym_c_char] = ACTIONS(4992), + [anon_sym_c_schar] = ACTIONS(4992), + [anon_sym_c_uchar] = ACTIONS(4992), + [anon_sym_c_short] = ACTIONS(4992), + [anon_sym_c_ushort] = ACTIONS(4992), + [anon_sym_c_int] = ACTIONS(4992), + [anon_sym_c_uint] = ACTIONS(4992), + [anon_sym_c_long] = ACTIONS(4992), + [anon_sym_c_ulong] = ACTIONS(4992), + [anon_sym_c_longlong] = ACTIONS(4992), + [anon_sym_c_ulonglong] = ACTIONS(4992), + [anon_sym_c_float] = ACTIONS(4992), + [anon_sym_c_double] = ACTIONS(4992), + [anon_sym_c_longdouble] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_yield] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_defer] = ACTIONS(4992), + [anon_sym_errdefer] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_while] = ACTIONS(4992), + [anon_sym_expand] = ACTIONS(4992), + [anon_sym_for] = ACTIONS(4992), + [anon_sym_match] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_TILDE] = ACTIONS(4990), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_unreachable] = ACTIONS(4992), + [anon_sym_undefined] = ACTIONS(4992), + [sym_sink] = ACTIONS(4992), + [sym_integer] = ACTIONS(4992), + [sym_float] = ACTIONS(4990), + [anon_sym_DQUOTE] = ACTIONS(4990), + [sym_multiline_string] = ACTIONS(4990), + [sym_character] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4990), + }, + [STATE(6723)] = { + [ts_builtin_sym_end] = ACTIONS(4892), + [sym_identifier] = ACTIONS(4894), + [anon_sym_import] = ACTIONS(4894), + [anon_sym_test] = ACTIONS(4894), + [anon_sym_hide] = ACTIONS(4894), + [anon_sym_func] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_struct] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_void] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym_type] = ACTIONS(4894), + [anon_sym_anyopaque] = ACTIONS(4894), + [anon_sym_bool] = ACTIONS(4894), + [anon_sym_int] = ACTIONS(4894), + [anon_sym_uint] = ACTIONS(4894), + [anon_sym_float] = ACTIONS(4894), + [anon_sym_range] = ACTIONS(4894), + [anon_sym_i8] = ACTIONS(4894), + [anon_sym_i16] = ACTIONS(4894), + [anon_sym_i32] = ACTIONS(4894), + [anon_sym_i64] = ACTIONS(4894), + [anon_sym_u8] = ACTIONS(4894), + [anon_sym_u16] = ACTIONS(4894), + [anon_sym_u32] = ACTIONS(4894), + [anon_sym_u64] = ACTIONS(4894), + [anon_sym_isize] = ACTIONS(4894), + [anon_sym_usize] = ACTIONS(4894), + [anon_sym_f32] = ACTIONS(4894), + [anon_sym_f64] = ACTIONS(4894), + [anon_sym_c_char] = ACTIONS(4894), + [anon_sym_c_schar] = ACTIONS(4894), + [anon_sym_c_uchar] = ACTIONS(4894), + [anon_sym_c_short] = ACTIONS(4894), + [anon_sym_c_ushort] = ACTIONS(4894), + [anon_sym_c_int] = ACTIONS(4894), + [anon_sym_c_uint] = ACTIONS(4894), + [anon_sym_c_long] = ACTIONS(4894), + [anon_sym_c_ulong] = ACTIONS(4894), + [anon_sym_c_longlong] = ACTIONS(4894), + [anon_sym_c_ulonglong] = ACTIONS(4894), + [anon_sym_c_float] = ACTIONS(4894), + [anon_sym_c_double] = ACTIONS(4894), + [anon_sym_c_longdouble] = ACTIONS(4894), + [anon_sym_return] = ACTIONS(4894), + [anon_sym_yield] = ACTIONS(4894), + [anon_sym_break] = ACTIONS(4894), + [anon_sym_continue] = ACTIONS(4894), + [anon_sym_defer] = ACTIONS(4894), + [anon_sym_errdefer] = ACTIONS(4894), + [anon_sym_if] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4894), + [anon_sym_while] = ACTIONS(4894), + [anon_sym_expand] = ACTIONS(4894), + [anon_sym_for] = ACTIONS(4894), + [anon_sym_match] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_true] = ACTIONS(4894), + [anon_sym_false] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4894), + [anon_sym_unreachable] = ACTIONS(4894), + [anon_sym_undefined] = ACTIONS(4894), + [sym_sink] = ACTIONS(4894), + [sym_integer] = ACTIONS(4894), + [sym_float] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(4892), + [sym_multiline_string] = ACTIONS(4892), + [sym_character] = ACTIONS(4892), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4892), + }, + [STATE(6724)] = { + [ts_builtin_sym_end] = ACTIONS(5518), + [sym_identifier] = ACTIONS(5520), + [anon_sym_import] = ACTIONS(5520), + [anon_sym_test] = ACTIONS(5520), + [anon_sym_hide] = ACTIONS(5520), + [anon_sym_func] = ACTIONS(5520), + [anon_sym_BANG] = ACTIONS(5518), + [anon_sym_struct] = ACTIONS(5520), + [anon_sym_LPAREN] = ACTIONS(5518), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_RBRACE] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [anon_sym_DOLLAR] = ACTIONS(5518), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_void] = ACTIONS(5520), + [anon_sym_noreturn] = ACTIONS(5520), + [anon_sym_type] = ACTIONS(5520), + [anon_sym_anyopaque] = ACTIONS(5520), + [anon_sym_bool] = ACTIONS(5520), + [anon_sym_int] = ACTIONS(5520), + [anon_sym_uint] = ACTIONS(5520), + [anon_sym_float] = ACTIONS(5520), + [anon_sym_range] = ACTIONS(5520), + [anon_sym_i8] = ACTIONS(5520), + [anon_sym_i16] = ACTIONS(5520), + [anon_sym_i32] = ACTIONS(5520), + [anon_sym_i64] = ACTIONS(5520), + [anon_sym_u8] = ACTIONS(5520), + [anon_sym_u16] = ACTIONS(5520), + [anon_sym_u32] = ACTIONS(5520), + [anon_sym_u64] = ACTIONS(5520), + [anon_sym_isize] = ACTIONS(5520), + [anon_sym_usize] = ACTIONS(5520), + [anon_sym_f32] = ACTIONS(5520), + [anon_sym_f64] = ACTIONS(5520), + [anon_sym_c_char] = ACTIONS(5520), + [anon_sym_c_schar] = ACTIONS(5520), + [anon_sym_c_uchar] = ACTIONS(5520), + [anon_sym_c_short] = ACTIONS(5520), + [anon_sym_c_ushort] = ACTIONS(5520), + [anon_sym_c_int] = ACTIONS(5520), + [anon_sym_c_uint] = ACTIONS(5520), + [anon_sym_c_long] = ACTIONS(5520), + [anon_sym_c_ulong] = ACTIONS(5520), + [anon_sym_c_longlong] = ACTIONS(5520), + [anon_sym_c_ulonglong] = ACTIONS(5520), + [anon_sym_c_float] = ACTIONS(5520), + [anon_sym_c_double] = ACTIONS(5520), + [anon_sym_c_longdouble] = ACTIONS(5520), + [anon_sym_return] = ACTIONS(5520), + [anon_sym_yield] = ACTIONS(5520), + [anon_sym_break] = ACTIONS(5520), + [anon_sym_continue] = ACTIONS(5520), + [anon_sym_defer] = ACTIONS(5520), + [anon_sym_errdefer] = ACTIONS(5520), + [anon_sym_if] = ACTIONS(5520), + [anon_sym_else] = ACTIONS(5520), + [anon_sym_while] = ACTIONS(5520), + [anon_sym_expand] = ACTIONS(5520), + [anon_sym_for] = ACTIONS(5520), + [anon_sym_match] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(5518), + [anon_sym_TILDE] = ACTIONS(5518), + [anon_sym_try] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_true] = ACTIONS(5520), + [anon_sym_false] = ACTIONS(5520), + [anon_sym_null] = ACTIONS(5520), + [anon_sym_unreachable] = ACTIONS(5520), + [anon_sym_undefined] = ACTIONS(5520), + [sym_sink] = ACTIONS(5520), + [sym_integer] = ACTIONS(5520), + [sym_float] = ACTIONS(5518), + [anon_sym_DQUOTE] = ACTIONS(5518), + [sym_multiline_string] = ACTIONS(5518), + [sym_character] = ACTIONS(5518), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5518), + }, + [STATE(6725)] = { + [ts_builtin_sym_end] = ACTIONS(5522), + [sym_identifier] = ACTIONS(5524), + [anon_sym_import] = ACTIONS(5524), + [anon_sym_test] = ACTIONS(5524), + [anon_sym_hide] = ACTIONS(5524), + [anon_sym_func] = ACTIONS(5524), + [anon_sym_BANG] = ACTIONS(5522), + [anon_sym_struct] = ACTIONS(5524), + [anon_sym_LPAREN] = ACTIONS(5522), + [anon_sym_RPAREN] = ACTIONS(5522), + [anon_sym_LBRACE] = ACTIONS(5522), + [anon_sym_RBRACE] = ACTIONS(5522), + [anon_sym_DASH] = ACTIONS(5522), + [anon_sym_DOLLAR] = ACTIONS(5522), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_void] = ACTIONS(5524), + [anon_sym_noreturn] = ACTIONS(5524), + [anon_sym_type] = ACTIONS(5524), + [anon_sym_anyopaque] = ACTIONS(5524), + [anon_sym_bool] = ACTIONS(5524), + [anon_sym_int] = ACTIONS(5524), + [anon_sym_uint] = ACTIONS(5524), + [anon_sym_float] = ACTIONS(5524), + [anon_sym_range] = ACTIONS(5524), + [anon_sym_i8] = ACTIONS(5524), + [anon_sym_i16] = ACTIONS(5524), + [anon_sym_i32] = ACTIONS(5524), + [anon_sym_i64] = ACTIONS(5524), + [anon_sym_u8] = ACTIONS(5524), + [anon_sym_u16] = ACTIONS(5524), + [anon_sym_u32] = ACTIONS(5524), + [anon_sym_u64] = ACTIONS(5524), + [anon_sym_isize] = ACTIONS(5524), + [anon_sym_usize] = ACTIONS(5524), + [anon_sym_f32] = ACTIONS(5524), + [anon_sym_f64] = ACTIONS(5524), + [anon_sym_c_char] = ACTIONS(5524), + [anon_sym_c_schar] = ACTIONS(5524), + [anon_sym_c_uchar] = ACTIONS(5524), + [anon_sym_c_short] = ACTIONS(5524), + [anon_sym_c_ushort] = ACTIONS(5524), + [anon_sym_c_int] = ACTIONS(5524), + [anon_sym_c_uint] = ACTIONS(5524), + [anon_sym_c_long] = ACTIONS(5524), + [anon_sym_c_ulong] = ACTIONS(5524), + [anon_sym_c_longlong] = ACTIONS(5524), + [anon_sym_c_ulonglong] = ACTIONS(5524), + [anon_sym_c_float] = ACTIONS(5524), + [anon_sym_c_double] = ACTIONS(5524), + [anon_sym_c_longdouble] = ACTIONS(5524), + [anon_sym_return] = ACTIONS(5524), + [anon_sym_yield] = ACTIONS(5524), + [anon_sym_break] = ACTIONS(5524), + [anon_sym_continue] = ACTIONS(5524), + [anon_sym_defer] = ACTIONS(5524), + [anon_sym_errdefer] = ACTIONS(5524), + [anon_sym_if] = ACTIONS(5524), + [anon_sym_else] = ACTIONS(5524), + [anon_sym_while] = ACTIONS(5524), + [anon_sym_expand] = ACTIONS(5524), + [anon_sym_for] = ACTIONS(5524), + [anon_sym_match] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5522), + [anon_sym_TILDE] = ACTIONS(5522), + [anon_sym_try] = ACTIONS(5524), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_true] = ACTIONS(5524), + [anon_sym_false] = ACTIONS(5524), + [anon_sym_null] = ACTIONS(5524), + [anon_sym_unreachable] = ACTIONS(5524), + [anon_sym_undefined] = ACTIONS(5524), + [sym_sink] = ACTIONS(5524), + [sym_integer] = ACTIONS(5524), + [sym_float] = ACTIONS(5522), + [anon_sym_DQUOTE] = ACTIONS(5522), + [sym_multiline_string] = ACTIONS(5522), + [sym_character] = ACTIONS(5522), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5522), + }, + [STATE(6726)] = { + [ts_builtin_sym_end] = ACTIONS(5234), + [sym_identifier] = ACTIONS(5236), + [anon_sym_import] = ACTIONS(5236), + [anon_sym_test] = ACTIONS(5236), + [anon_sym_hide] = ACTIONS(5236), + [anon_sym_func] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5234), + [anon_sym_struct] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_void] = ACTIONS(5236), + [anon_sym_noreturn] = ACTIONS(5236), + [anon_sym_type] = ACTIONS(5236), + [anon_sym_anyopaque] = ACTIONS(5236), + [anon_sym_bool] = ACTIONS(5236), + [anon_sym_int] = ACTIONS(5236), + [anon_sym_uint] = ACTIONS(5236), + [anon_sym_float] = ACTIONS(5236), + [anon_sym_range] = ACTIONS(5236), + [anon_sym_i8] = ACTIONS(5236), + [anon_sym_i16] = ACTIONS(5236), + [anon_sym_i32] = ACTIONS(5236), + [anon_sym_i64] = ACTIONS(5236), + [anon_sym_u8] = ACTIONS(5236), + [anon_sym_u16] = ACTIONS(5236), + [anon_sym_u32] = ACTIONS(5236), + [anon_sym_u64] = ACTIONS(5236), + [anon_sym_isize] = ACTIONS(5236), + [anon_sym_usize] = ACTIONS(5236), + [anon_sym_f32] = ACTIONS(5236), + [anon_sym_f64] = ACTIONS(5236), + [anon_sym_c_char] = ACTIONS(5236), + [anon_sym_c_schar] = ACTIONS(5236), + [anon_sym_c_uchar] = ACTIONS(5236), + [anon_sym_c_short] = ACTIONS(5236), + [anon_sym_c_ushort] = ACTIONS(5236), + [anon_sym_c_int] = ACTIONS(5236), + [anon_sym_c_uint] = ACTIONS(5236), + [anon_sym_c_long] = ACTIONS(5236), + [anon_sym_c_ulong] = ACTIONS(5236), + [anon_sym_c_longlong] = ACTIONS(5236), + [anon_sym_c_ulonglong] = ACTIONS(5236), + [anon_sym_c_float] = ACTIONS(5236), + [anon_sym_c_double] = ACTIONS(5236), + [anon_sym_c_longdouble] = ACTIONS(5236), + [anon_sym_return] = ACTIONS(5236), + [anon_sym_yield] = ACTIONS(5236), + [anon_sym_break] = ACTIONS(5236), + [anon_sym_continue] = ACTIONS(5236), + [anon_sym_defer] = ACTIONS(5236), + [anon_sym_errdefer] = ACTIONS(5236), + [anon_sym_if] = ACTIONS(5236), + [anon_sym_else] = ACTIONS(5236), + [anon_sym_while] = ACTIONS(5236), + [anon_sym_expand] = ACTIONS(5236), + [anon_sym_for] = ACTIONS(5236), + [anon_sym_match] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5234), + [anon_sym_TILDE] = ACTIONS(5234), + [anon_sym_try] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5234), + [anon_sym_true] = ACTIONS(5236), + [anon_sym_false] = ACTIONS(5236), + [anon_sym_null] = ACTIONS(5236), + [anon_sym_unreachable] = ACTIONS(5236), + [anon_sym_undefined] = ACTIONS(5236), + [sym_sink] = ACTIONS(5236), + [sym_integer] = ACTIONS(5236), + [sym_float] = ACTIONS(5234), + [anon_sym_DQUOTE] = ACTIONS(5234), + [sym_multiline_string] = ACTIONS(5234), + [sym_character] = ACTIONS(5234), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5234), + }, + [STATE(6727)] = { + [ts_builtin_sym_end] = ACTIONS(5144), + [sym_identifier] = ACTIONS(5146), + [anon_sym_import] = ACTIONS(5146), + [anon_sym_test] = ACTIONS(5146), + [anon_sym_hide] = ACTIONS(5146), + [anon_sym_func] = ACTIONS(5146), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_struct] = ACTIONS(5146), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_RPAREN] = ACTIONS(5144), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_void] = ACTIONS(5146), + [anon_sym_noreturn] = ACTIONS(5146), + [anon_sym_type] = ACTIONS(5146), + [anon_sym_anyopaque] = ACTIONS(5146), + [anon_sym_bool] = ACTIONS(5146), + [anon_sym_int] = ACTIONS(5146), + [anon_sym_uint] = ACTIONS(5146), + [anon_sym_float] = ACTIONS(5146), + [anon_sym_range] = ACTIONS(5146), + [anon_sym_i8] = ACTIONS(5146), + [anon_sym_i16] = ACTIONS(5146), + [anon_sym_i32] = ACTIONS(5146), + [anon_sym_i64] = ACTIONS(5146), + [anon_sym_u8] = ACTIONS(5146), + [anon_sym_u16] = ACTIONS(5146), + [anon_sym_u32] = ACTIONS(5146), + [anon_sym_u64] = ACTIONS(5146), + [anon_sym_isize] = ACTIONS(5146), + [anon_sym_usize] = ACTIONS(5146), + [anon_sym_f32] = ACTIONS(5146), + [anon_sym_f64] = ACTIONS(5146), + [anon_sym_c_char] = ACTIONS(5146), + [anon_sym_c_schar] = ACTIONS(5146), + [anon_sym_c_uchar] = ACTIONS(5146), + [anon_sym_c_short] = ACTIONS(5146), + [anon_sym_c_ushort] = ACTIONS(5146), + [anon_sym_c_int] = ACTIONS(5146), + [anon_sym_c_uint] = ACTIONS(5146), + [anon_sym_c_long] = ACTIONS(5146), + [anon_sym_c_ulong] = ACTIONS(5146), + [anon_sym_c_longlong] = ACTIONS(5146), + [anon_sym_c_ulonglong] = ACTIONS(5146), + [anon_sym_c_float] = ACTIONS(5146), + [anon_sym_c_double] = ACTIONS(5146), + [anon_sym_c_longdouble] = ACTIONS(5146), + [anon_sym_return] = ACTIONS(5146), + [anon_sym_yield] = ACTIONS(5146), + [anon_sym_break] = ACTIONS(5146), + [anon_sym_continue] = ACTIONS(5146), + [anon_sym_defer] = ACTIONS(5146), + [anon_sym_errdefer] = ACTIONS(5146), + [anon_sym_if] = ACTIONS(5146), + [anon_sym_else] = ACTIONS(5146), + [anon_sym_while] = ACTIONS(5146), + [anon_sym_expand] = ACTIONS(5146), + [anon_sym_for] = ACTIONS(5146), + [anon_sym_match] = ACTIONS(5146), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_TILDE] = ACTIONS(5144), + [anon_sym_try] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5144), + [anon_sym_true] = ACTIONS(5146), + [anon_sym_false] = ACTIONS(5146), + [anon_sym_null] = ACTIONS(5146), + [anon_sym_unreachable] = ACTIONS(5146), + [anon_sym_undefined] = ACTIONS(5146), + [sym_sink] = ACTIONS(5146), + [sym_integer] = ACTIONS(5146), + [sym_float] = ACTIONS(5144), + [anon_sym_DQUOTE] = ACTIONS(5144), + [sym_multiline_string] = ACTIONS(5144), + [sym_character] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5144), + }, + [STATE(6728)] = { + [ts_builtin_sym_end] = ACTIONS(5238), + [sym_identifier] = ACTIONS(5240), + [anon_sym_import] = ACTIONS(5240), + [anon_sym_test] = ACTIONS(5240), + [anon_sym_hide] = ACTIONS(5240), + [anon_sym_func] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_struct] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_void] = ACTIONS(5240), + [anon_sym_noreturn] = ACTIONS(5240), + [anon_sym_type] = ACTIONS(5240), + [anon_sym_anyopaque] = ACTIONS(5240), + [anon_sym_bool] = ACTIONS(5240), + [anon_sym_int] = ACTIONS(5240), + [anon_sym_uint] = ACTIONS(5240), + [anon_sym_float] = ACTIONS(5240), + [anon_sym_range] = ACTIONS(5240), + [anon_sym_i8] = ACTIONS(5240), + [anon_sym_i16] = ACTIONS(5240), + [anon_sym_i32] = ACTIONS(5240), + [anon_sym_i64] = ACTIONS(5240), + [anon_sym_u8] = ACTIONS(5240), + [anon_sym_u16] = ACTIONS(5240), + [anon_sym_u32] = ACTIONS(5240), + [anon_sym_u64] = ACTIONS(5240), + [anon_sym_isize] = ACTIONS(5240), + [anon_sym_usize] = ACTIONS(5240), + [anon_sym_f32] = ACTIONS(5240), + [anon_sym_f64] = ACTIONS(5240), + [anon_sym_c_char] = ACTIONS(5240), + [anon_sym_c_schar] = ACTIONS(5240), + [anon_sym_c_uchar] = ACTIONS(5240), + [anon_sym_c_short] = ACTIONS(5240), + [anon_sym_c_ushort] = ACTIONS(5240), + [anon_sym_c_int] = ACTIONS(5240), + [anon_sym_c_uint] = ACTIONS(5240), + [anon_sym_c_long] = ACTIONS(5240), + [anon_sym_c_ulong] = ACTIONS(5240), + [anon_sym_c_longlong] = ACTIONS(5240), + [anon_sym_c_ulonglong] = ACTIONS(5240), + [anon_sym_c_float] = ACTIONS(5240), + [anon_sym_c_double] = ACTIONS(5240), + [anon_sym_c_longdouble] = ACTIONS(5240), + [anon_sym_return] = ACTIONS(5240), + [anon_sym_yield] = ACTIONS(5240), + [anon_sym_break] = ACTIONS(5240), + [anon_sym_continue] = ACTIONS(5240), + [anon_sym_defer] = ACTIONS(5240), + [anon_sym_errdefer] = ACTIONS(5240), + [anon_sym_if] = ACTIONS(5240), + [anon_sym_else] = ACTIONS(5240), + [anon_sym_while] = ACTIONS(5240), + [anon_sym_expand] = ACTIONS(5240), + [anon_sym_for] = ACTIONS(5240), + [anon_sym_match] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_TILDE] = ACTIONS(5238), + [anon_sym_try] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5238), + [anon_sym_true] = ACTIONS(5240), + [anon_sym_false] = ACTIONS(5240), + [anon_sym_null] = ACTIONS(5240), + [anon_sym_unreachable] = ACTIONS(5240), + [anon_sym_undefined] = ACTIONS(5240), + [sym_sink] = ACTIONS(5240), + [sym_integer] = ACTIONS(5240), + [sym_float] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [sym_multiline_string] = ACTIONS(5238), + [sym_character] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5238), + }, + [STATE(6729)] = { + [ts_builtin_sym_end] = ACTIONS(5064), + [sym_identifier] = ACTIONS(5066), + [anon_sym_import] = ACTIONS(5066), + [anon_sym_test] = ACTIONS(5066), + [anon_sym_hide] = ACTIONS(5066), + [anon_sym_func] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5064), + [anon_sym_struct] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_void] = ACTIONS(5066), + [anon_sym_noreturn] = ACTIONS(5066), + [anon_sym_type] = ACTIONS(5066), + [anon_sym_anyopaque] = ACTIONS(5066), + [anon_sym_bool] = ACTIONS(5066), + [anon_sym_int] = ACTIONS(5066), + [anon_sym_uint] = ACTIONS(5066), + [anon_sym_float] = ACTIONS(5066), + [anon_sym_range] = ACTIONS(5066), + [anon_sym_i8] = ACTIONS(5066), + [anon_sym_i16] = ACTIONS(5066), + [anon_sym_i32] = ACTIONS(5066), + [anon_sym_i64] = ACTIONS(5066), + [anon_sym_u8] = ACTIONS(5066), + [anon_sym_u16] = ACTIONS(5066), + [anon_sym_u32] = ACTIONS(5066), + [anon_sym_u64] = ACTIONS(5066), + [anon_sym_isize] = ACTIONS(5066), + [anon_sym_usize] = ACTIONS(5066), + [anon_sym_f32] = ACTIONS(5066), + [anon_sym_f64] = ACTIONS(5066), + [anon_sym_c_char] = ACTIONS(5066), + [anon_sym_c_schar] = ACTIONS(5066), + [anon_sym_c_uchar] = ACTIONS(5066), + [anon_sym_c_short] = ACTIONS(5066), + [anon_sym_c_ushort] = ACTIONS(5066), + [anon_sym_c_int] = ACTIONS(5066), + [anon_sym_c_uint] = ACTIONS(5066), + [anon_sym_c_long] = ACTIONS(5066), + [anon_sym_c_ulong] = ACTIONS(5066), + [anon_sym_c_longlong] = ACTIONS(5066), + [anon_sym_c_ulonglong] = ACTIONS(5066), + [anon_sym_c_float] = ACTIONS(5066), + [anon_sym_c_double] = ACTIONS(5066), + [anon_sym_c_longdouble] = ACTIONS(5066), + [anon_sym_return] = ACTIONS(5066), + [anon_sym_yield] = ACTIONS(5066), + [anon_sym_break] = ACTIONS(5066), + [anon_sym_continue] = ACTIONS(5066), + [anon_sym_defer] = ACTIONS(5066), + [anon_sym_errdefer] = ACTIONS(5066), + [anon_sym_if] = ACTIONS(5066), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_while] = ACTIONS(5066), + [anon_sym_expand] = ACTIONS(5066), + [anon_sym_for] = ACTIONS(5066), + [anon_sym_match] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_try] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5064), + [anon_sym_true] = ACTIONS(5066), + [anon_sym_false] = ACTIONS(5066), + [anon_sym_null] = ACTIONS(5066), + [anon_sym_unreachable] = ACTIONS(5066), + [anon_sym_undefined] = ACTIONS(5066), + [sym_sink] = ACTIONS(5066), + [sym_integer] = ACTIONS(5066), + [sym_float] = ACTIONS(5064), + [anon_sym_DQUOTE] = ACTIONS(5064), + [sym_multiline_string] = ACTIONS(5064), + [sym_character] = ACTIONS(5064), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5064), + }, + [STATE(6730)] = { + [ts_builtin_sym_end] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5354), + [anon_sym_import] = ACTIONS(5354), + [anon_sym_test] = ACTIONS(5354), + [anon_sym_hide] = ACTIONS(5354), + [anon_sym_func] = ACTIONS(5354), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_struct] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5352), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_LBRACE] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_void] = ACTIONS(5354), + [anon_sym_noreturn] = ACTIONS(5354), + [anon_sym_type] = ACTIONS(5354), + [anon_sym_anyopaque] = ACTIONS(5354), + [anon_sym_bool] = ACTIONS(5354), + [anon_sym_int] = ACTIONS(5354), + [anon_sym_uint] = ACTIONS(5354), + [anon_sym_float] = ACTIONS(5354), + [anon_sym_range] = ACTIONS(5354), + [anon_sym_i8] = ACTIONS(5354), + [anon_sym_i16] = ACTIONS(5354), + [anon_sym_i32] = ACTIONS(5354), + [anon_sym_i64] = ACTIONS(5354), + [anon_sym_u8] = ACTIONS(5354), + [anon_sym_u16] = ACTIONS(5354), + [anon_sym_u32] = ACTIONS(5354), + [anon_sym_u64] = ACTIONS(5354), + [anon_sym_isize] = ACTIONS(5354), + [anon_sym_usize] = ACTIONS(5354), + [anon_sym_f32] = ACTIONS(5354), + [anon_sym_f64] = ACTIONS(5354), + [anon_sym_c_char] = ACTIONS(5354), + [anon_sym_c_schar] = ACTIONS(5354), + [anon_sym_c_uchar] = ACTIONS(5354), + [anon_sym_c_short] = ACTIONS(5354), + [anon_sym_c_ushort] = ACTIONS(5354), + [anon_sym_c_int] = ACTIONS(5354), + [anon_sym_c_uint] = ACTIONS(5354), + [anon_sym_c_long] = ACTIONS(5354), + [anon_sym_c_ulong] = ACTIONS(5354), + [anon_sym_c_longlong] = ACTIONS(5354), + [anon_sym_c_ulonglong] = ACTIONS(5354), + [anon_sym_c_float] = ACTIONS(5354), + [anon_sym_c_double] = ACTIONS(5354), + [anon_sym_c_longdouble] = ACTIONS(5354), + [anon_sym_return] = ACTIONS(5354), + [anon_sym_yield] = ACTIONS(5354), + [anon_sym_break] = ACTIONS(5354), + [anon_sym_continue] = ACTIONS(5354), + [anon_sym_defer] = ACTIONS(5354), + [anon_sym_errdefer] = ACTIONS(5354), + [anon_sym_if] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5354), + [anon_sym_expand] = ACTIONS(5354), + [anon_sym_for] = ACTIONS(5354), + [anon_sym_match] = ACTIONS(5354), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5352), + [anon_sym_true] = ACTIONS(5354), + [anon_sym_false] = ACTIONS(5354), + [anon_sym_null] = ACTIONS(5354), + [anon_sym_unreachable] = ACTIONS(5354), + [anon_sym_undefined] = ACTIONS(5354), + [sym_sink] = ACTIONS(5354), + [sym_integer] = ACTIONS(5354), + [sym_float] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5352), + [sym_multiline_string] = ACTIONS(5352), + [sym_character] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5352), + }, + [STATE(6731)] = { + [ts_builtin_sym_end] = ACTIONS(5412), + [sym_identifier] = ACTIONS(5414), + [anon_sym_import] = ACTIONS(5414), + [anon_sym_test] = ACTIONS(5414), + [anon_sym_hide] = ACTIONS(5414), + [anon_sym_func] = ACTIONS(5414), + [anon_sym_BANG] = ACTIONS(5412), + [anon_sym_struct] = ACTIONS(5414), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(5412), + [anon_sym_LBRACE] = ACTIONS(5412), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), + [anon_sym_DOLLAR] = ACTIONS(5412), + [anon_sym_LBRACK] = ACTIONS(5412), + [anon_sym_void] = ACTIONS(5414), + [anon_sym_noreturn] = ACTIONS(5414), + [anon_sym_type] = ACTIONS(5414), + [anon_sym_anyopaque] = ACTIONS(5414), + [anon_sym_bool] = ACTIONS(5414), + [anon_sym_int] = ACTIONS(5414), + [anon_sym_uint] = ACTIONS(5414), + [anon_sym_float] = ACTIONS(5414), + [anon_sym_range] = ACTIONS(5414), + [anon_sym_i8] = ACTIONS(5414), + [anon_sym_i16] = ACTIONS(5414), + [anon_sym_i32] = ACTIONS(5414), + [anon_sym_i64] = ACTIONS(5414), + [anon_sym_u8] = ACTIONS(5414), + [anon_sym_u16] = ACTIONS(5414), + [anon_sym_u32] = ACTIONS(5414), + [anon_sym_u64] = ACTIONS(5414), + [anon_sym_isize] = ACTIONS(5414), + [anon_sym_usize] = ACTIONS(5414), + [anon_sym_f32] = ACTIONS(5414), + [anon_sym_f64] = ACTIONS(5414), + [anon_sym_c_char] = ACTIONS(5414), + [anon_sym_c_schar] = ACTIONS(5414), + [anon_sym_c_uchar] = ACTIONS(5414), + [anon_sym_c_short] = ACTIONS(5414), + [anon_sym_c_ushort] = ACTIONS(5414), + [anon_sym_c_int] = ACTIONS(5414), + [anon_sym_c_uint] = ACTIONS(5414), + [anon_sym_c_long] = ACTIONS(5414), + [anon_sym_c_ulong] = ACTIONS(5414), + [anon_sym_c_longlong] = ACTIONS(5414), + [anon_sym_c_ulonglong] = ACTIONS(5414), + [anon_sym_c_float] = ACTIONS(5414), + [anon_sym_c_double] = ACTIONS(5414), + [anon_sym_c_longdouble] = ACTIONS(5414), + [anon_sym_return] = ACTIONS(5414), + [anon_sym_yield] = ACTIONS(5414), + [anon_sym_break] = ACTIONS(5414), + [anon_sym_continue] = ACTIONS(5414), + [anon_sym_defer] = ACTIONS(5414), + [anon_sym_errdefer] = ACTIONS(5414), + [anon_sym_if] = ACTIONS(5414), + [anon_sym_else] = ACTIONS(5414), + [anon_sym_while] = ACTIONS(5414), + [anon_sym_expand] = ACTIONS(5414), + [anon_sym_for] = ACTIONS(5414), + [anon_sym_match] = ACTIONS(5414), + [anon_sym_AMP] = ACTIONS(5412), + [anon_sym_TILDE] = ACTIONS(5412), + [anon_sym_try] = ACTIONS(5414), + [anon_sym_DOT] = ACTIONS(5412), + [anon_sym_true] = ACTIONS(5414), + [anon_sym_false] = ACTIONS(5414), + [anon_sym_null] = ACTIONS(5414), + [anon_sym_unreachable] = ACTIONS(5414), + [anon_sym_undefined] = ACTIONS(5414), + [sym_sink] = ACTIONS(5414), + [sym_integer] = ACTIONS(5414), + [sym_float] = ACTIONS(5412), + [anon_sym_DQUOTE] = ACTIONS(5412), + [sym_multiline_string] = ACTIONS(5412), + [sym_character] = ACTIONS(5412), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5412), + }, + [STATE(6732)] = { + [ts_builtin_sym_end] = ACTIONS(4654), + [sym_identifier] = ACTIONS(4656), + [anon_sym_import] = ACTIONS(4656), + [anon_sym_test] = ACTIONS(4656), + [anon_sym_hide] = ACTIONS(4656), + [anon_sym_func] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(4654), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4654), + [anon_sym_DOLLAR] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_void] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym_type] = ACTIONS(4656), + [anon_sym_anyopaque] = ACTIONS(4656), + [anon_sym_bool] = ACTIONS(4656), + [anon_sym_int] = ACTIONS(4656), + [anon_sym_uint] = ACTIONS(4656), + [anon_sym_float] = ACTIONS(4656), + [anon_sym_range] = ACTIONS(4656), + [anon_sym_i8] = ACTIONS(4656), + [anon_sym_i16] = ACTIONS(4656), + [anon_sym_i32] = ACTIONS(4656), + [anon_sym_i64] = ACTIONS(4656), + [anon_sym_u8] = ACTIONS(4656), + [anon_sym_u16] = ACTIONS(4656), + [anon_sym_u32] = ACTIONS(4656), + [anon_sym_u64] = ACTIONS(4656), + [anon_sym_isize] = ACTIONS(4656), + [anon_sym_usize] = ACTIONS(4656), + [anon_sym_f32] = ACTIONS(4656), + [anon_sym_f64] = ACTIONS(4656), + [anon_sym_c_char] = ACTIONS(4656), + [anon_sym_c_schar] = ACTIONS(4656), + [anon_sym_c_uchar] = ACTIONS(4656), + [anon_sym_c_short] = ACTIONS(4656), + [anon_sym_c_ushort] = ACTIONS(4656), + [anon_sym_c_int] = ACTIONS(4656), + [anon_sym_c_uint] = ACTIONS(4656), + [anon_sym_c_long] = ACTIONS(4656), + [anon_sym_c_ulong] = ACTIONS(4656), + [anon_sym_c_longlong] = ACTIONS(4656), + [anon_sym_c_ulonglong] = ACTIONS(4656), + [anon_sym_c_float] = ACTIONS(4656), + [anon_sym_c_double] = ACTIONS(4656), + [anon_sym_c_longdouble] = ACTIONS(4656), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_yield] = ACTIONS(4656), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_continue] = ACTIONS(4656), + [anon_sym_defer] = ACTIONS(4656), + [anon_sym_errdefer] = ACTIONS(4656), + [anon_sym_if] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_expand] = ACTIONS(4656), + [anon_sym_for] = ACTIONS(4656), + [anon_sym_match] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4654), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_try] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4656), + [anon_sym_false] = ACTIONS(4656), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_unreachable] = ACTIONS(4656), + [anon_sym_undefined] = ACTIONS(4656), + [sym_sink] = ACTIONS(4656), + [sym_integer] = ACTIONS(4656), + [sym_float] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym_multiline_string] = ACTIONS(4654), + [sym_character] = ACTIONS(4654), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4654), + }, + [STATE(6733)] = { [ts_builtin_sym_end] = ACTIONS(5206), [sym_identifier] = ACTIONS(5208), [anon_sym_import] = ACTIONS(5208), @@ -225912,7 +769064,655 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5206), }, - [STATE(2054)] = { + [STATE(6734)] = { + [ts_builtin_sym_end] = ACTIONS(4658), + [sym_identifier] = ACTIONS(4660), + [anon_sym_import] = ACTIONS(4660), + [anon_sym_test] = ACTIONS(4660), + [anon_sym_hide] = ACTIONS(4660), + [anon_sym_func] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4658), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4658), + [anon_sym_RPAREN] = ACTIONS(4658), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4658), + [anon_sym_DOLLAR] = ACTIONS(4658), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_void] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym_type] = ACTIONS(4660), + [anon_sym_anyopaque] = ACTIONS(4660), + [anon_sym_bool] = ACTIONS(4660), + [anon_sym_int] = ACTIONS(4660), + [anon_sym_uint] = ACTIONS(4660), + [anon_sym_float] = ACTIONS(4660), + [anon_sym_range] = ACTIONS(4660), + [anon_sym_i8] = ACTIONS(4660), + [anon_sym_i16] = ACTIONS(4660), + [anon_sym_i32] = ACTIONS(4660), + [anon_sym_i64] = ACTIONS(4660), + [anon_sym_u8] = ACTIONS(4660), + [anon_sym_u16] = ACTIONS(4660), + [anon_sym_u32] = ACTIONS(4660), + [anon_sym_u64] = ACTIONS(4660), + [anon_sym_isize] = ACTIONS(4660), + [anon_sym_usize] = ACTIONS(4660), + [anon_sym_f32] = ACTIONS(4660), + [anon_sym_f64] = ACTIONS(4660), + [anon_sym_c_char] = ACTIONS(4660), + [anon_sym_c_schar] = ACTIONS(4660), + [anon_sym_c_uchar] = ACTIONS(4660), + [anon_sym_c_short] = ACTIONS(4660), + [anon_sym_c_ushort] = ACTIONS(4660), + [anon_sym_c_int] = ACTIONS(4660), + [anon_sym_c_uint] = ACTIONS(4660), + [anon_sym_c_long] = ACTIONS(4660), + [anon_sym_c_ulong] = ACTIONS(4660), + [anon_sym_c_longlong] = ACTIONS(4660), + [anon_sym_c_ulonglong] = ACTIONS(4660), + [anon_sym_c_float] = ACTIONS(4660), + [anon_sym_c_double] = ACTIONS(4660), + [anon_sym_c_longdouble] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_defer] = ACTIONS(4660), + [anon_sym_errdefer] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_expand] = ACTIONS(4660), + [anon_sym_for] = ACTIONS(4660), + [anon_sym_match] = ACTIONS(4660), + [anon_sym_AMP] = ACTIONS(4658), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4658), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_unreachable] = ACTIONS(4660), + [anon_sym_undefined] = ACTIONS(4660), + [sym_sink] = ACTIONS(4660), + [sym_integer] = ACTIONS(4660), + [sym_float] = ACTIONS(4658), + [anon_sym_DQUOTE] = ACTIONS(4658), + [sym_multiline_string] = ACTIONS(4658), + [sym_character] = ACTIONS(4658), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4658), + }, + [STATE(6735)] = { + [ts_builtin_sym_end] = ACTIONS(4666), + [sym_identifier] = ACTIONS(4668), + [anon_sym_import] = ACTIONS(4668), + [anon_sym_test] = ACTIONS(4668), + [anon_sym_hide] = ACTIONS(4668), + [anon_sym_func] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(4666), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_LPAREN] = ACTIONS(4666), + [anon_sym_RPAREN] = ACTIONS(4666), + [anon_sym_LBRACE] = ACTIONS(4666), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4666), + [anon_sym_DOLLAR] = ACTIONS(4666), + [anon_sym_LBRACK] = ACTIONS(4666), + [anon_sym_void] = ACTIONS(4668), + [anon_sym_noreturn] = ACTIONS(4668), + [anon_sym_type] = ACTIONS(4668), + [anon_sym_anyopaque] = ACTIONS(4668), + [anon_sym_bool] = ACTIONS(4668), + [anon_sym_int] = ACTIONS(4668), + [anon_sym_uint] = ACTIONS(4668), + [anon_sym_float] = ACTIONS(4668), + [anon_sym_range] = ACTIONS(4668), + [anon_sym_i8] = ACTIONS(4668), + [anon_sym_i16] = ACTIONS(4668), + [anon_sym_i32] = ACTIONS(4668), + [anon_sym_i64] = ACTIONS(4668), + [anon_sym_u8] = ACTIONS(4668), + [anon_sym_u16] = ACTIONS(4668), + [anon_sym_u32] = ACTIONS(4668), + [anon_sym_u64] = ACTIONS(4668), + [anon_sym_isize] = ACTIONS(4668), + [anon_sym_usize] = ACTIONS(4668), + [anon_sym_f32] = ACTIONS(4668), + [anon_sym_f64] = ACTIONS(4668), + [anon_sym_c_char] = ACTIONS(4668), + [anon_sym_c_schar] = ACTIONS(4668), + [anon_sym_c_uchar] = ACTIONS(4668), + [anon_sym_c_short] = ACTIONS(4668), + [anon_sym_c_ushort] = ACTIONS(4668), + [anon_sym_c_int] = ACTIONS(4668), + [anon_sym_c_uint] = ACTIONS(4668), + [anon_sym_c_long] = ACTIONS(4668), + [anon_sym_c_ulong] = ACTIONS(4668), + [anon_sym_c_longlong] = ACTIONS(4668), + [anon_sym_c_ulonglong] = ACTIONS(4668), + [anon_sym_c_float] = ACTIONS(4668), + [anon_sym_c_double] = ACTIONS(4668), + [anon_sym_c_longdouble] = ACTIONS(4668), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_yield] = ACTIONS(4668), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_continue] = ACTIONS(4668), + [anon_sym_defer] = ACTIONS(4668), + [anon_sym_errdefer] = ACTIONS(4668), + [anon_sym_if] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_while] = ACTIONS(4668), + [anon_sym_expand] = ACTIONS(4668), + [anon_sym_for] = ACTIONS(4668), + [anon_sym_match] = ACTIONS(4668), + [anon_sym_AMP] = ACTIONS(4666), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_try] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4666), + [anon_sym_true] = ACTIONS(4668), + [anon_sym_false] = ACTIONS(4668), + [anon_sym_null] = ACTIONS(4668), + [anon_sym_unreachable] = ACTIONS(4668), + [anon_sym_undefined] = ACTIONS(4668), + [sym_sink] = ACTIONS(4668), + [sym_integer] = ACTIONS(4668), + [sym_float] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(4666), + [sym_multiline_string] = ACTIONS(4666), + [sym_character] = ACTIONS(4666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4666), + }, + [STATE(6736)] = { + [ts_builtin_sym_end] = ACTIONS(5168), + [sym_identifier] = ACTIONS(5170), + [anon_sym_import] = ACTIONS(5170), + [anon_sym_test] = ACTIONS(5170), + [anon_sym_hide] = ACTIONS(5170), + [anon_sym_func] = ACTIONS(5170), + [anon_sym_BANG] = ACTIONS(5168), + [anon_sym_struct] = ACTIONS(5170), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_void] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym_type] = ACTIONS(5170), + [anon_sym_anyopaque] = ACTIONS(5170), + [anon_sym_bool] = ACTIONS(5170), + [anon_sym_int] = ACTIONS(5170), + [anon_sym_uint] = ACTIONS(5170), + [anon_sym_float] = ACTIONS(5170), + [anon_sym_range] = ACTIONS(5170), + [anon_sym_i8] = ACTIONS(5170), + [anon_sym_i16] = ACTIONS(5170), + [anon_sym_i32] = ACTIONS(5170), + [anon_sym_i64] = ACTIONS(5170), + [anon_sym_u8] = ACTIONS(5170), + [anon_sym_u16] = ACTIONS(5170), + [anon_sym_u32] = ACTIONS(5170), + [anon_sym_u64] = ACTIONS(5170), + [anon_sym_isize] = ACTIONS(5170), + [anon_sym_usize] = ACTIONS(5170), + [anon_sym_f32] = ACTIONS(5170), + [anon_sym_f64] = ACTIONS(5170), + [anon_sym_c_char] = ACTIONS(5170), + [anon_sym_c_schar] = ACTIONS(5170), + [anon_sym_c_uchar] = ACTIONS(5170), + [anon_sym_c_short] = ACTIONS(5170), + [anon_sym_c_ushort] = ACTIONS(5170), + [anon_sym_c_int] = ACTIONS(5170), + [anon_sym_c_uint] = ACTIONS(5170), + [anon_sym_c_long] = ACTIONS(5170), + [anon_sym_c_ulong] = ACTIONS(5170), + [anon_sym_c_longlong] = ACTIONS(5170), + [anon_sym_c_ulonglong] = ACTIONS(5170), + [anon_sym_c_float] = ACTIONS(5170), + [anon_sym_c_double] = ACTIONS(5170), + [anon_sym_c_longdouble] = ACTIONS(5170), + [anon_sym_return] = ACTIONS(5170), + [anon_sym_yield] = ACTIONS(5170), + [anon_sym_break] = ACTIONS(5170), + [anon_sym_continue] = ACTIONS(5170), + [anon_sym_defer] = ACTIONS(5170), + [anon_sym_errdefer] = ACTIONS(5170), + [anon_sym_if] = ACTIONS(5170), + [anon_sym_else] = ACTIONS(5170), + [anon_sym_while] = ACTIONS(5170), + [anon_sym_expand] = ACTIONS(5170), + [anon_sym_for] = ACTIONS(5170), + [anon_sym_match] = ACTIONS(5170), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_TILDE] = ACTIONS(5168), + [anon_sym_try] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5168), + [anon_sym_true] = ACTIONS(5170), + [anon_sym_false] = ACTIONS(5170), + [anon_sym_null] = ACTIONS(5170), + [anon_sym_unreachable] = ACTIONS(5170), + [anon_sym_undefined] = ACTIONS(5170), + [sym_sink] = ACTIONS(5170), + [sym_integer] = ACTIONS(5170), + [sym_float] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [sym_multiline_string] = ACTIONS(5168), + [sym_character] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5168), + }, + [STATE(6737)] = { + [ts_builtin_sym_end] = ACTIONS(4470), + [sym_identifier] = ACTIONS(4472), + [anon_sym_import] = ACTIONS(4472), + [anon_sym_test] = ACTIONS(4472), + [anon_sym_hide] = ACTIONS(4472), + [anon_sym_func] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_void] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym_type] = ACTIONS(4472), + [anon_sym_anyopaque] = ACTIONS(4472), + [anon_sym_bool] = ACTIONS(4472), + [anon_sym_int] = ACTIONS(4472), + [anon_sym_uint] = ACTIONS(4472), + [anon_sym_float] = ACTIONS(4472), + [anon_sym_range] = ACTIONS(4472), + [anon_sym_i8] = ACTIONS(4472), + [anon_sym_i16] = ACTIONS(4472), + [anon_sym_i32] = ACTIONS(4472), + [anon_sym_i64] = ACTIONS(4472), + [anon_sym_u8] = ACTIONS(4472), + [anon_sym_u16] = ACTIONS(4472), + [anon_sym_u32] = ACTIONS(4472), + [anon_sym_u64] = ACTIONS(4472), + [anon_sym_isize] = ACTIONS(4472), + [anon_sym_usize] = ACTIONS(4472), + [anon_sym_f32] = ACTIONS(4472), + [anon_sym_f64] = ACTIONS(4472), + [anon_sym_c_char] = ACTIONS(4472), + [anon_sym_c_schar] = ACTIONS(4472), + [anon_sym_c_uchar] = ACTIONS(4472), + [anon_sym_c_short] = ACTIONS(4472), + [anon_sym_c_ushort] = ACTIONS(4472), + [anon_sym_c_int] = ACTIONS(4472), + [anon_sym_c_uint] = ACTIONS(4472), + [anon_sym_c_long] = ACTIONS(4472), + [anon_sym_c_ulong] = ACTIONS(4472), + [anon_sym_c_longlong] = ACTIONS(4472), + [anon_sym_c_ulonglong] = ACTIONS(4472), + [anon_sym_c_float] = ACTIONS(4472), + [anon_sym_c_double] = ACTIONS(4472), + [anon_sym_c_longdouble] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_defer] = ACTIONS(4472), + [anon_sym_errdefer] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_expand] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_match] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_DOT] = ACTIONS(4470), + [anon_sym_true] = ACTIONS(4472), + [anon_sym_false] = ACTIONS(4472), + [anon_sym_null] = ACTIONS(4472), + [anon_sym_unreachable] = ACTIONS(4472), + [anon_sym_undefined] = ACTIONS(4472), + [sym_sink] = ACTIONS(4472), + [sym_integer] = ACTIONS(4472), + [sym_float] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_multiline_string] = ACTIONS(4470), + [sym_character] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4470), + }, + [STATE(6738)] = { + [ts_builtin_sym_end] = ACTIONS(5526), + [sym_identifier] = ACTIONS(5528), + [anon_sym_import] = ACTIONS(5528), + [anon_sym_test] = ACTIONS(5528), + [anon_sym_hide] = ACTIONS(5528), + [anon_sym_func] = ACTIONS(5528), + [anon_sym_BANG] = ACTIONS(5526), + [anon_sym_struct] = ACTIONS(5528), + [anon_sym_LPAREN] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5526), + [anon_sym_RBRACE] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_DOLLAR] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [anon_sym_void] = ACTIONS(5528), + [anon_sym_noreturn] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_anyopaque] = ACTIONS(5528), + [anon_sym_bool] = ACTIONS(5528), + [anon_sym_int] = ACTIONS(5528), + [anon_sym_uint] = ACTIONS(5528), + [anon_sym_float] = ACTIONS(5528), + [anon_sym_range] = ACTIONS(5528), + [anon_sym_i8] = ACTIONS(5528), + [anon_sym_i16] = ACTIONS(5528), + [anon_sym_i32] = ACTIONS(5528), + [anon_sym_i64] = ACTIONS(5528), + [anon_sym_u8] = ACTIONS(5528), + [anon_sym_u16] = ACTIONS(5528), + [anon_sym_u32] = ACTIONS(5528), + [anon_sym_u64] = ACTIONS(5528), + [anon_sym_isize] = ACTIONS(5528), + [anon_sym_usize] = ACTIONS(5528), + [anon_sym_f32] = ACTIONS(5528), + [anon_sym_f64] = ACTIONS(5528), + [anon_sym_c_char] = ACTIONS(5528), + [anon_sym_c_schar] = ACTIONS(5528), + [anon_sym_c_uchar] = ACTIONS(5528), + [anon_sym_c_short] = ACTIONS(5528), + [anon_sym_c_ushort] = ACTIONS(5528), + [anon_sym_c_int] = ACTIONS(5528), + [anon_sym_c_uint] = ACTIONS(5528), + [anon_sym_c_long] = ACTIONS(5528), + [anon_sym_c_ulong] = ACTIONS(5528), + [anon_sym_c_longlong] = ACTIONS(5528), + [anon_sym_c_ulonglong] = ACTIONS(5528), + [anon_sym_c_float] = ACTIONS(5528), + [anon_sym_c_double] = ACTIONS(5528), + [anon_sym_c_longdouble] = ACTIONS(5528), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_break] = ACTIONS(5528), + [anon_sym_continue] = ACTIONS(5528), + [anon_sym_defer] = ACTIONS(5528), + [anon_sym_errdefer] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_else] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_expand] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5526), + [anon_sym_TILDE] = ACTIONS(5526), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_DOT] = ACTIONS(5526), + [anon_sym_true] = ACTIONS(5528), + [anon_sym_false] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_unreachable] = ACTIONS(5528), + [anon_sym_undefined] = ACTIONS(5528), + [sym_sink] = ACTIONS(5528), + [sym_integer] = ACTIONS(5528), + [sym_float] = ACTIONS(5526), + [anon_sym_DQUOTE] = ACTIONS(5526), + [sym_multiline_string] = ACTIONS(5526), + [sym_character] = ACTIONS(5526), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5526), + }, + [STATE(6739)] = { + [ts_builtin_sym_end] = ACTIONS(4896), + [sym_identifier] = ACTIONS(4898), + [anon_sym_import] = ACTIONS(4898), + [anon_sym_test] = ACTIONS(4898), + [anon_sym_hide] = ACTIONS(4898), + [anon_sym_func] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_struct] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_RBRACE] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_void] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym_type] = ACTIONS(4898), + [anon_sym_anyopaque] = ACTIONS(4898), + [anon_sym_bool] = ACTIONS(4898), + [anon_sym_int] = ACTIONS(4898), + [anon_sym_uint] = ACTIONS(4898), + [anon_sym_float] = ACTIONS(4898), + [anon_sym_range] = ACTIONS(4898), + [anon_sym_i8] = ACTIONS(4898), + [anon_sym_i16] = ACTIONS(4898), + [anon_sym_i32] = ACTIONS(4898), + [anon_sym_i64] = ACTIONS(4898), + [anon_sym_u8] = ACTIONS(4898), + [anon_sym_u16] = ACTIONS(4898), + [anon_sym_u32] = ACTIONS(4898), + [anon_sym_u64] = ACTIONS(4898), + [anon_sym_isize] = ACTIONS(4898), + [anon_sym_usize] = ACTIONS(4898), + [anon_sym_f32] = ACTIONS(4898), + [anon_sym_f64] = ACTIONS(4898), + [anon_sym_c_char] = ACTIONS(4898), + [anon_sym_c_schar] = ACTIONS(4898), + [anon_sym_c_uchar] = ACTIONS(4898), + [anon_sym_c_short] = ACTIONS(4898), + [anon_sym_c_ushort] = ACTIONS(4898), + [anon_sym_c_int] = ACTIONS(4898), + [anon_sym_c_uint] = ACTIONS(4898), + [anon_sym_c_long] = ACTIONS(4898), + [anon_sym_c_ulong] = ACTIONS(4898), + [anon_sym_c_longlong] = ACTIONS(4898), + [anon_sym_c_ulonglong] = ACTIONS(4898), + [anon_sym_c_float] = ACTIONS(4898), + [anon_sym_c_double] = ACTIONS(4898), + [anon_sym_c_longdouble] = ACTIONS(4898), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_yield] = ACTIONS(4898), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_continue] = ACTIONS(4898), + [anon_sym_defer] = ACTIONS(4898), + [anon_sym_errdefer] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_while] = ACTIONS(4898), + [anon_sym_expand] = ACTIONS(4898), + [anon_sym_for] = ACTIONS(4898), + [anon_sym_match] = ACTIONS(4898), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_unreachable] = ACTIONS(4898), + [anon_sym_undefined] = ACTIONS(4898), + [sym_sink] = ACTIONS(4898), + [sym_integer] = ACTIONS(4898), + [sym_float] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [sym_multiline_string] = ACTIONS(4896), + [sym_character] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4896), + }, + [STATE(6740)] = { + [ts_builtin_sym_end] = ACTIONS(5356), + [sym_identifier] = ACTIONS(5358), + [anon_sym_import] = ACTIONS(5358), + [anon_sym_test] = ACTIONS(5358), + [anon_sym_hide] = ACTIONS(5358), + [anon_sym_func] = ACTIONS(5358), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_struct] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5356), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_LBRACE] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_void] = ACTIONS(5358), + [anon_sym_noreturn] = ACTIONS(5358), + [anon_sym_type] = ACTIONS(5358), + [anon_sym_anyopaque] = ACTIONS(5358), + [anon_sym_bool] = ACTIONS(5358), + [anon_sym_int] = ACTIONS(5358), + [anon_sym_uint] = ACTIONS(5358), + [anon_sym_float] = ACTIONS(5358), + [anon_sym_range] = ACTIONS(5358), + [anon_sym_i8] = ACTIONS(5358), + [anon_sym_i16] = ACTIONS(5358), + [anon_sym_i32] = ACTIONS(5358), + [anon_sym_i64] = ACTIONS(5358), + [anon_sym_u8] = ACTIONS(5358), + [anon_sym_u16] = ACTIONS(5358), + [anon_sym_u32] = ACTIONS(5358), + [anon_sym_u64] = ACTIONS(5358), + [anon_sym_isize] = ACTIONS(5358), + [anon_sym_usize] = ACTIONS(5358), + [anon_sym_f32] = ACTIONS(5358), + [anon_sym_f64] = ACTIONS(5358), + [anon_sym_c_char] = ACTIONS(5358), + [anon_sym_c_schar] = ACTIONS(5358), + [anon_sym_c_uchar] = ACTIONS(5358), + [anon_sym_c_short] = ACTIONS(5358), + [anon_sym_c_ushort] = ACTIONS(5358), + [anon_sym_c_int] = ACTIONS(5358), + [anon_sym_c_uint] = ACTIONS(5358), + [anon_sym_c_long] = ACTIONS(5358), + [anon_sym_c_ulong] = ACTIONS(5358), + [anon_sym_c_longlong] = ACTIONS(5358), + [anon_sym_c_ulonglong] = ACTIONS(5358), + [anon_sym_c_float] = ACTIONS(5358), + [anon_sym_c_double] = ACTIONS(5358), + [anon_sym_c_longdouble] = ACTIONS(5358), + [anon_sym_return] = ACTIONS(5358), + [anon_sym_yield] = ACTIONS(5358), + [anon_sym_break] = ACTIONS(5358), + [anon_sym_continue] = ACTIONS(5358), + [anon_sym_defer] = ACTIONS(5358), + [anon_sym_errdefer] = ACTIONS(5358), + [anon_sym_if] = ACTIONS(5358), + [anon_sym_else] = ACTIONS(5358), + [anon_sym_while] = ACTIONS(5358), + [anon_sym_expand] = ACTIONS(5358), + [anon_sym_for] = ACTIONS(5358), + [anon_sym_match] = ACTIONS(5358), + [anon_sym_AMP] = ACTIONS(5356), + [anon_sym_TILDE] = ACTIONS(5356), + [anon_sym_try] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5356), + [anon_sym_true] = ACTIONS(5358), + [anon_sym_false] = ACTIONS(5358), + [anon_sym_null] = ACTIONS(5358), + [anon_sym_unreachable] = ACTIONS(5358), + [anon_sym_undefined] = ACTIONS(5358), + [sym_sink] = ACTIONS(5358), + [sym_integer] = ACTIONS(5358), + [sym_float] = ACTIONS(5356), + [anon_sym_DQUOTE] = ACTIONS(5356), + [sym_multiline_string] = ACTIONS(5356), + [sym_character] = ACTIONS(5356), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5356), + }, + [STATE(6741)] = { + [ts_builtin_sym_end] = ACTIONS(5254), + [sym_identifier] = ACTIONS(5256), + [anon_sym_import] = ACTIONS(5256), + [anon_sym_test] = ACTIONS(5256), + [anon_sym_hide] = ACTIONS(5256), + [anon_sym_func] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5254), + [anon_sym_struct] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_void] = ACTIONS(5256), + [anon_sym_noreturn] = ACTIONS(5256), + [anon_sym_type] = ACTIONS(5256), + [anon_sym_anyopaque] = ACTIONS(5256), + [anon_sym_bool] = ACTIONS(5256), + [anon_sym_int] = ACTIONS(5256), + [anon_sym_uint] = ACTIONS(5256), + [anon_sym_float] = ACTIONS(5256), + [anon_sym_range] = ACTIONS(5256), + [anon_sym_i8] = ACTIONS(5256), + [anon_sym_i16] = ACTIONS(5256), + [anon_sym_i32] = ACTIONS(5256), + [anon_sym_i64] = ACTIONS(5256), + [anon_sym_u8] = ACTIONS(5256), + [anon_sym_u16] = ACTIONS(5256), + [anon_sym_u32] = ACTIONS(5256), + [anon_sym_u64] = ACTIONS(5256), + [anon_sym_isize] = ACTIONS(5256), + [anon_sym_usize] = ACTIONS(5256), + [anon_sym_f32] = ACTIONS(5256), + [anon_sym_f64] = ACTIONS(5256), + [anon_sym_c_char] = ACTIONS(5256), + [anon_sym_c_schar] = ACTIONS(5256), + [anon_sym_c_uchar] = ACTIONS(5256), + [anon_sym_c_short] = ACTIONS(5256), + [anon_sym_c_ushort] = ACTIONS(5256), + [anon_sym_c_int] = ACTIONS(5256), + [anon_sym_c_uint] = ACTIONS(5256), + [anon_sym_c_long] = ACTIONS(5256), + [anon_sym_c_ulong] = ACTIONS(5256), + [anon_sym_c_longlong] = ACTIONS(5256), + [anon_sym_c_ulonglong] = ACTIONS(5256), + [anon_sym_c_float] = ACTIONS(5256), + [anon_sym_c_double] = ACTIONS(5256), + [anon_sym_c_longdouble] = ACTIONS(5256), + [anon_sym_return] = ACTIONS(5256), + [anon_sym_yield] = ACTIONS(5256), + [anon_sym_break] = ACTIONS(5256), + [anon_sym_continue] = ACTIONS(5256), + [anon_sym_defer] = ACTIONS(5256), + [anon_sym_errdefer] = ACTIONS(5256), + [anon_sym_if] = ACTIONS(5256), + [anon_sym_else] = ACTIONS(5256), + [anon_sym_while] = ACTIONS(5256), + [anon_sym_expand] = ACTIONS(5256), + [anon_sym_for] = ACTIONS(5256), + [anon_sym_match] = ACTIONS(5256), + [anon_sym_AMP] = ACTIONS(5254), + [anon_sym_TILDE] = ACTIONS(5254), + [anon_sym_try] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5254), + [anon_sym_true] = ACTIONS(5256), + [anon_sym_false] = ACTIONS(5256), + [anon_sym_null] = ACTIONS(5256), + [anon_sym_unreachable] = ACTIONS(5256), + [anon_sym_undefined] = ACTIONS(5256), + [sym_sink] = ACTIONS(5256), + [sym_integer] = ACTIONS(5256), + [sym_float] = ACTIONS(5254), + [anon_sym_DQUOTE] = ACTIONS(5254), + [sym_multiline_string] = ACTIONS(5254), + [sym_character] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5254), + }, + [STATE(6742)] = { [ts_builtin_sym_end] = ACTIONS(5210), [sym_identifier] = ACTIONS(5212), [anon_sym_import] = ACTIONS(5212), @@ -225993,7 +769793,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5210), }, - [STATE(2055)] = { + [STATE(6743)] = { + [ts_builtin_sym_end] = ACTIONS(4900), + [sym_identifier] = ACTIONS(4902), + [anon_sym_import] = ACTIONS(4902), + [anon_sym_test] = ACTIONS(4902), + [anon_sym_hide] = ACTIONS(4902), + [anon_sym_func] = ACTIONS(4902), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_struct] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_void] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym_type] = ACTIONS(4902), + [anon_sym_anyopaque] = ACTIONS(4902), + [anon_sym_bool] = ACTIONS(4902), + [anon_sym_int] = ACTIONS(4902), + [anon_sym_uint] = ACTIONS(4902), + [anon_sym_float] = ACTIONS(4902), + [anon_sym_range] = ACTIONS(4902), + [anon_sym_i8] = ACTIONS(4902), + [anon_sym_i16] = ACTIONS(4902), + [anon_sym_i32] = ACTIONS(4902), + [anon_sym_i64] = ACTIONS(4902), + [anon_sym_u8] = ACTIONS(4902), + [anon_sym_u16] = ACTIONS(4902), + [anon_sym_u32] = ACTIONS(4902), + [anon_sym_u64] = ACTIONS(4902), + [anon_sym_isize] = ACTIONS(4902), + [anon_sym_usize] = ACTIONS(4902), + [anon_sym_f32] = ACTIONS(4902), + [anon_sym_f64] = ACTIONS(4902), + [anon_sym_c_char] = ACTIONS(4902), + [anon_sym_c_schar] = ACTIONS(4902), + [anon_sym_c_uchar] = ACTIONS(4902), + [anon_sym_c_short] = ACTIONS(4902), + [anon_sym_c_ushort] = ACTIONS(4902), + [anon_sym_c_int] = ACTIONS(4902), + [anon_sym_c_uint] = ACTIONS(4902), + [anon_sym_c_long] = ACTIONS(4902), + [anon_sym_c_ulong] = ACTIONS(4902), + [anon_sym_c_longlong] = ACTIONS(4902), + [anon_sym_c_ulonglong] = ACTIONS(4902), + [anon_sym_c_float] = ACTIONS(4902), + [anon_sym_c_double] = ACTIONS(4902), + [anon_sym_c_longdouble] = ACTIONS(4902), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_yield] = ACTIONS(4902), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_continue] = ACTIONS(4902), + [anon_sym_defer] = ACTIONS(4902), + [anon_sym_errdefer] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_while] = ACTIONS(4902), + [anon_sym_expand] = ACTIONS(4902), + [anon_sym_for] = ACTIONS(4902), + [anon_sym_match] = ACTIONS(4902), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4902), + [anon_sym_false] = ACTIONS(4902), + [anon_sym_null] = ACTIONS(4902), + [anon_sym_unreachable] = ACTIONS(4902), + [anon_sym_undefined] = ACTIONS(4902), + [sym_sink] = ACTIONS(4902), + [sym_integer] = ACTIONS(4902), + [sym_float] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4900), + [sym_multiline_string] = ACTIONS(4900), + [sym_character] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4900), + }, + [STATE(6744)] = { + [ts_builtin_sym_end] = ACTIONS(4904), + [sym_identifier] = ACTIONS(4906), + [anon_sym_import] = ACTIONS(4906), + [anon_sym_test] = ACTIONS(4906), + [anon_sym_hide] = ACTIONS(4906), + [anon_sym_func] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_void] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym_type] = ACTIONS(4906), + [anon_sym_anyopaque] = ACTIONS(4906), + [anon_sym_bool] = ACTIONS(4906), + [anon_sym_int] = ACTIONS(4906), + [anon_sym_uint] = ACTIONS(4906), + [anon_sym_float] = ACTIONS(4906), + [anon_sym_range] = ACTIONS(4906), + [anon_sym_i8] = ACTIONS(4906), + [anon_sym_i16] = ACTIONS(4906), + [anon_sym_i32] = ACTIONS(4906), + [anon_sym_i64] = ACTIONS(4906), + [anon_sym_u8] = ACTIONS(4906), + [anon_sym_u16] = ACTIONS(4906), + [anon_sym_u32] = ACTIONS(4906), + [anon_sym_u64] = ACTIONS(4906), + [anon_sym_isize] = ACTIONS(4906), + [anon_sym_usize] = ACTIONS(4906), + [anon_sym_f32] = ACTIONS(4906), + [anon_sym_f64] = ACTIONS(4906), + [anon_sym_c_char] = ACTIONS(4906), + [anon_sym_c_schar] = ACTIONS(4906), + [anon_sym_c_uchar] = ACTIONS(4906), + [anon_sym_c_short] = ACTIONS(4906), + [anon_sym_c_ushort] = ACTIONS(4906), + [anon_sym_c_int] = ACTIONS(4906), + [anon_sym_c_uint] = ACTIONS(4906), + [anon_sym_c_long] = ACTIONS(4906), + [anon_sym_c_ulong] = ACTIONS(4906), + [anon_sym_c_longlong] = ACTIONS(4906), + [anon_sym_c_ulonglong] = ACTIONS(4906), + [anon_sym_c_float] = ACTIONS(4906), + [anon_sym_c_double] = ACTIONS(4906), + [anon_sym_c_longdouble] = ACTIONS(4906), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_yield] = ACTIONS(4906), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_continue] = ACTIONS(4906), + [anon_sym_defer] = ACTIONS(4906), + [anon_sym_errdefer] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_expand] = ACTIONS(4906), + [anon_sym_for] = ACTIONS(4906), + [anon_sym_match] = ACTIONS(4906), + [anon_sym_AMP] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_unreachable] = ACTIONS(4906), + [anon_sym_undefined] = ACTIONS(4906), + [sym_sink] = ACTIONS(4906), + [sym_integer] = ACTIONS(4906), + [sym_float] = ACTIONS(4904), + [anon_sym_DQUOTE] = ACTIONS(4904), + [sym_multiline_string] = ACTIONS(4904), + [sym_character] = ACTIONS(4904), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4904), + }, + [STATE(6745)] = { + [ts_builtin_sym_end] = ACTIONS(4908), + [sym_identifier] = ACTIONS(4910), + [anon_sym_import] = ACTIONS(4910), + [anon_sym_test] = ACTIONS(4910), + [anon_sym_hide] = ACTIONS(4910), + [anon_sym_func] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_struct] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_void] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym_type] = ACTIONS(4910), + [anon_sym_anyopaque] = ACTIONS(4910), + [anon_sym_bool] = ACTIONS(4910), + [anon_sym_int] = ACTIONS(4910), + [anon_sym_uint] = ACTIONS(4910), + [anon_sym_float] = ACTIONS(4910), + [anon_sym_range] = ACTIONS(4910), + [anon_sym_i8] = ACTIONS(4910), + [anon_sym_i16] = ACTIONS(4910), + [anon_sym_i32] = ACTIONS(4910), + [anon_sym_i64] = ACTIONS(4910), + [anon_sym_u8] = ACTIONS(4910), + [anon_sym_u16] = ACTIONS(4910), + [anon_sym_u32] = ACTIONS(4910), + [anon_sym_u64] = ACTIONS(4910), + [anon_sym_isize] = ACTIONS(4910), + [anon_sym_usize] = ACTIONS(4910), + [anon_sym_f32] = ACTIONS(4910), + [anon_sym_f64] = ACTIONS(4910), + [anon_sym_c_char] = ACTIONS(4910), + [anon_sym_c_schar] = ACTIONS(4910), + [anon_sym_c_uchar] = ACTIONS(4910), + [anon_sym_c_short] = ACTIONS(4910), + [anon_sym_c_ushort] = ACTIONS(4910), + [anon_sym_c_int] = ACTIONS(4910), + [anon_sym_c_uint] = ACTIONS(4910), + [anon_sym_c_long] = ACTIONS(4910), + [anon_sym_c_ulong] = ACTIONS(4910), + [anon_sym_c_longlong] = ACTIONS(4910), + [anon_sym_c_ulonglong] = ACTIONS(4910), + [anon_sym_c_float] = ACTIONS(4910), + [anon_sym_c_double] = ACTIONS(4910), + [anon_sym_c_longdouble] = ACTIONS(4910), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_yield] = ACTIONS(4910), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_defer] = ACTIONS(4910), + [anon_sym_errdefer] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_expand] = ACTIONS(4910), + [anon_sym_for] = ACTIONS(4910), + [anon_sym_match] = ACTIONS(4910), + [anon_sym_AMP] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_unreachable] = ACTIONS(4910), + [anon_sym_undefined] = ACTIONS(4910), + [sym_sink] = ACTIONS(4910), + [sym_integer] = ACTIONS(4910), + [sym_float] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(4908), + [sym_multiline_string] = ACTIONS(4908), + [sym_character] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4908), + }, + [STATE(6746)] = { [ts_builtin_sym_end] = ACTIONS(5214), [sym_identifier] = ACTIONS(5216), [anon_sym_import] = ACTIONS(5216), @@ -226074,7 +770117,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5214), }, - [STATE(2056)] = { + [STATE(6747)] = { + [ts_builtin_sym_end] = ACTIONS(4914), + [sym_identifier] = ACTIONS(4916), + [anon_sym_import] = ACTIONS(4916), + [anon_sym_test] = ACTIONS(4916), + [anon_sym_hide] = ACTIONS(4916), + [anon_sym_func] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4914), + [anon_sym_struct] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_void] = ACTIONS(4916), + [anon_sym_noreturn] = ACTIONS(4916), + [anon_sym_type] = ACTIONS(4916), + [anon_sym_anyopaque] = ACTIONS(4916), + [anon_sym_bool] = ACTIONS(4916), + [anon_sym_int] = ACTIONS(4916), + [anon_sym_uint] = ACTIONS(4916), + [anon_sym_float] = ACTIONS(4916), + [anon_sym_range] = ACTIONS(4916), + [anon_sym_i8] = ACTIONS(4916), + [anon_sym_i16] = ACTIONS(4916), + [anon_sym_i32] = ACTIONS(4916), + [anon_sym_i64] = ACTIONS(4916), + [anon_sym_u8] = ACTIONS(4916), + [anon_sym_u16] = ACTIONS(4916), + [anon_sym_u32] = ACTIONS(4916), + [anon_sym_u64] = ACTIONS(4916), + [anon_sym_isize] = ACTIONS(4916), + [anon_sym_usize] = ACTIONS(4916), + [anon_sym_f32] = ACTIONS(4916), + [anon_sym_f64] = ACTIONS(4916), + [anon_sym_c_char] = ACTIONS(4916), + [anon_sym_c_schar] = ACTIONS(4916), + [anon_sym_c_uchar] = ACTIONS(4916), + [anon_sym_c_short] = ACTIONS(4916), + [anon_sym_c_ushort] = ACTIONS(4916), + [anon_sym_c_int] = ACTIONS(4916), + [anon_sym_c_uint] = ACTIONS(4916), + [anon_sym_c_long] = ACTIONS(4916), + [anon_sym_c_ulong] = ACTIONS(4916), + [anon_sym_c_longlong] = ACTIONS(4916), + [anon_sym_c_ulonglong] = ACTIONS(4916), + [anon_sym_c_float] = ACTIONS(4916), + [anon_sym_c_double] = ACTIONS(4916), + [anon_sym_c_longdouble] = ACTIONS(4916), + [anon_sym_return] = ACTIONS(4916), + [anon_sym_yield] = ACTIONS(4916), + [anon_sym_break] = ACTIONS(4916), + [anon_sym_continue] = ACTIONS(4916), + [anon_sym_defer] = ACTIONS(4916), + [anon_sym_errdefer] = ACTIONS(4916), + [anon_sym_if] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_while] = ACTIONS(4916), + [anon_sym_expand] = ACTIONS(4916), + [anon_sym_for] = ACTIONS(4916), + [anon_sym_match] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_TILDE] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4916), + [anon_sym_false] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4916), + [anon_sym_unreachable] = ACTIONS(4916), + [anon_sym_undefined] = ACTIONS(4916), + [sym_sink] = ACTIONS(4916), + [sym_integer] = ACTIONS(4916), + [sym_float] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(4914), + [sym_multiline_string] = ACTIONS(4914), + [sym_character] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4914), + }, + [STATE(6748)] = { + [ts_builtin_sym_end] = ACTIONS(5180), + [sym_identifier] = ACTIONS(5182), + [anon_sym_import] = ACTIONS(5182), + [anon_sym_test] = ACTIONS(5182), + [anon_sym_hide] = ACTIONS(5182), + [anon_sym_func] = ACTIONS(5182), + [anon_sym_BANG] = ACTIONS(5180), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_LPAREN] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5180), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_void] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym_type] = ACTIONS(5182), + [anon_sym_anyopaque] = ACTIONS(5182), + [anon_sym_bool] = ACTIONS(5182), + [anon_sym_int] = ACTIONS(5182), + [anon_sym_uint] = ACTIONS(5182), + [anon_sym_float] = ACTIONS(5182), + [anon_sym_range] = ACTIONS(5182), + [anon_sym_i8] = ACTIONS(5182), + [anon_sym_i16] = ACTIONS(5182), + [anon_sym_i32] = ACTIONS(5182), + [anon_sym_i64] = ACTIONS(5182), + [anon_sym_u8] = ACTIONS(5182), + [anon_sym_u16] = ACTIONS(5182), + [anon_sym_u32] = ACTIONS(5182), + [anon_sym_u64] = ACTIONS(5182), + [anon_sym_isize] = ACTIONS(5182), + [anon_sym_usize] = ACTIONS(5182), + [anon_sym_f32] = ACTIONS(5182), + [anon_sym_f64] = ACTIONS(5182), + [anon_sym_c_char] = ACTIONS(5182), + [anon_sym_c_schar] = ACTIONS(5182), + [anon_sym_c_uchar] = ACTIONS(5182), + [anon_sym_c_short] = ACTIONS(5182), + [anon_sym_c_ushort] = ACTIONS(5182), + [anon_sym_c_int] = ACTIONS(5182), + [anon_sym_c_uint] = ACTIONS(5182), + [anon_sym_c_long] = ACTIONS(5182), + [anon_sym_c_ulong] = ACTIONS(5182), + [anon_sym_c_longlong] = ACTIONS(5182), + [anon_sym_c_ulonglong] = ACTIONS(5182), + [anon_sym_c_float] = ACTIONS(5182), + [anon_sym_c_double] = ACTIONS(5182), + [anon_sym_c_longdouble] = ACTIONS(5182), + [anon_sym_return] = ACTIONS(5182), + [anon_sym_yield] = ACTIONS(5182), + [anon_sym_break] = ACTIONS(5182), + [anon_sym_continue] = ACTIONS(5182), + [anon_sym_defer] = ACTIONS(5182), + [anon_sym_errdefer] = ACTIONS(5182), + [anon_sym_if] = ACTIONS(5182), + [anon_sym_else] = ACTIONS(5182), + [anon_sym_while] = ACTIONS(5182), + [anon_sym_expand] = ACTIONS(5182), + [anon_sym_for] = ACTIONS(5182), + [anon_sym_match] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_TILDE] = ACTIONS(5180), + [anon_sym_try] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_true] = ACTIONS(5182), + [anon_sym_false] = ACTIONS(5182), + [anon_sym_null] = ACTIONS(5182), + [anon_sym_unreachable] = ACTIONS(5182), + [anon_sym_undefined] = ACTIONS(5182), + [sym_sink] = ACTIONS(5182), + [sym_integer] = ACTIONS(5182), + [sym_float] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [sym_multiline_string] = ACTIONS(5180), + [sym_character] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5180), + }, + [STATE(6749)] = { + [ts_builtin_sym_end] = ACTIONS(5246), + [sym_identifier] = ACTIONS(5248), + [anon_sym_import] = ACTIONS(5248), + [anon_sym_test] = ACTIONS(5248), + [anon_sym_hide] = ACTIONS(5248), + [anon_sym_func] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_DASH] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_void] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym_type] = ACTIONS(5248), + [anon_sym_anyopaque] = ACTIONS(5248), + [anon_sym_bool] = ACTIONS(5248), + [anon_sym_int] = ACTIONS(5248), + [anon_sym_uint] = ACTIONS(5248), + [anon_sym_float] = ACTIONS(5248), + [anon_sym_range] = ACTIONS(5248), + [anon_sym_i8] = ACTIONS(5248), + [anon_sym_i16] = ACTIONS(5248), + [anon_sym_i32] = ACTIONS(5248), + [anon_sym_i64] = ACTIONS(5248), + [anon_sym_u8] = ACTIONS(5248), + [anon_sym_u16] = ACTIONS(5248), + [anon_sym_u32] = ACTIONS(5248), + [anon_sym_u64] = ACTIONS(5248), + [anon_sym_isize] = ACTIONS(5248), + [anon_sym_usize] = ACTIONS(5248), + [anon_sym_f32] = ACTIONS(5248), + [anon_sym_f64] = ACTIONS(5248), + [anon_sym_c_char] = ACTIONS(5248), + [anon_sym_c_schar] = ACTIONS(5248), + [anon_sym_c_uchar] = ACTIONS(5248), + [anon_sym_c_short] = ACTIONS(5248), + [anon_sym_c_ushort] = ACTIONS(5248), + [anon_sym_c_int] = ACTIONS(5248), + [anon_sym_c_uint] = ACTIONS(5248), + [anon_sym_c_long] = ACTIONS(5248), + [anon_sym_c_ulong] = ACTIONS(5248), + [anon_sym_c_longlong] = ACTIONS(5248), + [anon_sym_c_ulonglong] = ACTIONS(5248), + [anon_sym_c_float] = ACTIONS(5248), + [anon_sym_c_double] = ACTIONS(5248), + [anon_sym_c_longdouble] = ACTIONS(5248), + [anon_sym_return] = ACTIONS(5248), + [anon_sym_yield] = ACTIONS(5248), + [anon_sym_break] = ACTIONS(5248), + [anon_sym_continue] = ACTIONS(5248), + [anon_sym_defer] = ACTIONS(5248), + [anon_sym_errdefer] = ACTIONS(5248), + [anon_sym_if] = ACTIONS(5248), + [anon_sym_else] = ACTIONS(5248), + [anon_sym_while] = ACTIONS(5248), + [anon_sym_expand] = ACTIONS(5248), + [anon_sym_for] = ACTIONS(5248), + [anon_sym_match] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_TILDE] = ACTIONS(5246), + [anon_sym_try] = ACTIONS(5248), + [anon_sym_DOT] = ACTIONS(5246), + [anon_sym_true] = ACTIONS(5248), + [anon_sym_false] = ACTIONS(5248), + [anon_sym_null] = ACTIONS(5248), + [anon_sym_unreachable] = ACTIONS(5248), + [anon_sym_undefined] = ACTIONS(5248), + [sym_sink] = ACTIONS(5248), + [sym_integer] = ACTIONS(5248), + [sym_float] = ACTIONS(5246), + [anon_sym_DQUOTE] = ACTIONS(5246), + [sym_multiline_string] = ACTIONS(5246), + [sym_character] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5246), + }, + [STATE(6750)] = { + [ts_builtin_sym_end] = ACTIONS(5416), + [sym_identifier] = ACTIONS(5418), + [anon_sym_import] = ACTIONS(5418), + [anon_sym_test] = ACTIONS(5418), + [anon_sym_hide] = ACTIONS(5418), + [anon_sym_func] = ACTIONS(5418), + [anon_sym_BANG] = ACTIONS(5416), + [anon_sym_struct] = ACTIONS(5418), + [anon_sym_LPAREN] = ACTIONS(5416), + [anon_sym_RPAREN] = ACTIONS(5416), + [anon_sym_LBRACE] = ACTIONS(5416), + [anon_sym_RBRACE] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5416), + [anon_sym_DOLLAR] = ACTIONS(5416), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_void] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_type] = ACTIONS(5418), + [anon_sym_anyopaque] = ACTIONS(5418), + [anon_sym_bool] = ACTIONS(5418), + [anon_sym_int] = ACTIONS(5418), + [anon_sym_uint] = ACTIONS(5418), + [anon_sym_float] = ACTIONS(5418), + [anon_sym_range] = ACTIONS(5418), + [anon_sym_i8] = ACTIONS(5418), + [anon_sym_i16] = ACTIONS(5418), + [anon_sym_i32] = ACTIONS(5418), + [anon_sym_i64] = ACTIONS(5418), + [anon_sym_u8] = ACTIONS(5418), + [anon_sym_u16] = ACTIONS(5418), + [anon_sym_u32] = ACTIONS(5418), + [anon_sym_u64] = ACTIONS(5418), + [anon_sym_isize] = ACTIONS(5418), + [anon_sym_usize] = ACTIONS(5418), + [anon_sym_f32] = ACTIONS(5418), + [anon_sym_f64] = ACTIONS(5418), + [anon_sym_c_char] = ACTIONS(5418), + [anon_sym_c_schar] = ACTIONS(5418), + [anon_sym_c_uchar] = ACTIONS(5418), + [anon_sym_c_short] = ACTIONS(5418), + [anon_sym_c_ushort] = ACTIONS(5418), + [anon_sym_c_int] = ACTIONS(5418), + [anon_sym_c_uint] = ACTIONS(5418), + [anon_sym_c_long] = ACTIONS(5418), + [anon_sym_c_ulong] = ACTIONS(5418), + [anon_sym_c_longlong] = ACTIONS(5418), + [anon_sym_c_ulonglong] = ACTIONS(5418), + [anon_sym_c_float] = ACTIONS(5418), + [anon_sym_c_double] = ACTIONS(5418), + [anon_sym_c_longdouble] = ACTIONS(5418), + [anon_sym_return] = ACTIONS(5418), + [anon_sym_yield] = ACTIONS(5418), + [anon_sym_break] = ACTIONS(5418), + [anon_sym_continue] = ACTIONS(5418), + [anon_sym_defer] = ACTIONS(5418), + [anon_sym_errdefer] = ACTIONS(5418), + [anon_sym_if] = ACTIONS(5418), + [anon_sym_else] = ACTIONS(5418), + [anon_sym_while] = ACTIONS(5418), + [anon_sym_expand] = ACTIONS(5418), + [anon_sym_for] = ACTIONS(5418), + [anon_sym_match] = ACTIONS(5418), + [anon_sym_AMP] = ACTIONS(5416), + [anon_sym_TILDE] = ACTIONS(5416), + [anon_sym_try] = ACTIONS(5418), + [anon_sym_DOT] = ACTIONS(5416), + [anon_sym_true] = ACTIONS(5418), + [anon_sym_false] = ACTIONS(5418), + [anon_sym_null] = ACTIONS(5418), + [anon_sym_unreachable] = ACTIONS(5418), + [anon_sym_undefined] = ACTIONS(5418), + [sym_sink] = ACTIONS(5418), + [sym_integer] = ACTIONS(5418), + [sym_float] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5416), + [sym_multiline_string] = ACTIONS(5416), + [sym_character] = ACTIONS(5416), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5416), + }, + [STATE(6751)] = { [ts_builtin_sym_end] = ACTIONS(5218), [sym_identifier] = ACTIONS(5220), [anon_sym_import] = ACTIONS(5220), @@ -226155,12624 +770522,56336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5218), }, - [STATE(2057)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2058)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2059)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2060)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2095), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5230), - }, - [STATE(2061)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2062)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2063)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2069), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5234), - }, - [STATE(2064)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2070), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5236), - }, - [STATE(2065)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2073), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5238), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5240), - }, - [STATE(2066)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2098), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5242), - }, - [STATE(2067)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5244), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2068)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2069)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5248), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2070)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5248), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2071)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2082), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5248), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5250), - }, - [STATE(2072)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5252), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2073)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5254), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2074)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2083), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5254), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5256), - }, - [STATE(2075)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2084), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5254), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5258), - }, - [STATE(2076)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5260), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5262), - }, - [STATE(2077)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2102), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5264), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5266), - }, - [STATE(2078)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5244), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2079)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5252), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2080)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2126), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5252), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5268), - }, - [STATE(2081)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2087), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5244), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5270), - }, - [STATE(2082)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5272), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2083)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2084)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2085)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2088), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5276), - }, - [STATE(2086)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2089), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5278), - }, - [STATE(2087)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5280), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2088)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2089)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2090)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2092), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5284), - }, - [STATE(2091)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2105), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5244), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5286), - }, - [STATE(2092)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5288), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2093)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2094)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2095)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2096)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2109), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5296), - }, - [STATE(2097)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2127), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5252), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5298), - }, - [STATE(2098)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2099)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2108), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5300), - }, - [STATE(2100)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2101)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2122), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5302), - }, - [STATE(2102)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2103)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2110), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5306), - }, - [STATE(2104)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2111), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5308), - }, - [STATE(2105)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5280), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2106)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2199), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5280), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5310), - }, - [STATE(2107)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2145), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5312), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5314), - }, - [STATE(2108)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5316), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2109)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5318), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2110)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5320), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2111)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5320), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2112)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2114), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5320), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5322), - }, - [STATE(2113)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5320), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5324), - }, - [STATE(2114)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5326), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2115)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5326), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2116)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2117), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5326), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5328), - }, - [STATE(2117)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5330), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2118)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2058), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5318), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5332), - }, - [STATE(2119)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5334), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2120)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5336), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2121)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2123), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5338), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5340), - }, - [STATE(2122)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2123)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5342), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2124)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2139), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5342), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5344), - }, - [STATE(2125)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2140), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5342), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5346), - }, - [STATE(2126)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2127)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2128)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2131), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5350), - }, - [STATE(2129)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2132), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5352), - }, - [STATE(2130)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2079), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5336), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5354), - }, - [STATE(2131)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5356), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2132)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2133)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5358), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2134)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2156), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5358), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5360), - }, - [STATE(2135)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2157), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5358), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5362), - }, - [STATE(2136)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5364), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2137)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2067), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5334), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5366), - }, - [STATE(2138)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5364), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2139)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5368), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2140)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5368), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2141)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2149), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5368), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5370), - }, - [STATE(2142)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2150), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5368), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5372), - }, - [STATE(2143)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2136), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5374), - }, - [STATE(2144)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2152), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5376), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5378), - }, - [STATE(2145)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2146)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2194), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5382), - }, - [STATE(2147)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2059), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5384), - }, - [STATE(2148)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2078), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5334), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5386), - }, - [STATE(2149)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5388), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2150)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5388), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2151)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2162), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5388), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5390), - }, - [STATE(2152)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5392), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2153)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2163), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5392), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5394), - }, - [STATE(2154)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2164), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5392), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5396), - }, - [STATE(2155)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2159), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5364), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5398), - }, - [STATE(2156)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5400), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2157)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5400), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2158)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2138), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5402), - }, - [STATE(2159)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5404), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2160)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2179), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5400), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5406), - }, - [STATE(2161)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5400), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5408), - }, - [STATE(2162)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5410), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2163)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5412), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2164)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5412), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2165)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2120), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5414), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5416), - }, - [STATE(2166)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2171), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5412), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5418), - }, - [STATE(2167)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2172), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5412), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5420), - }, - [STATE(2168)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2176), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5422), - }, - [STATE(2169)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5424), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5426), - }, - [STATE(2170)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5428), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2171)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2172)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2173)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2175), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5432), - }, - [STATE(2174)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2170), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5434), - }, - [STATE(2175)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5436), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2176)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5318), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2177)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2185), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5438), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5440), - }, - [STATE(2178)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2189), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5442), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5444), - }, - [STATE(2179)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5446), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2180)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5446), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2181)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2188), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5446), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5448), - }, - [STATE(2182)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5450), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2183)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2191), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5450), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5452), - }, - [STATE(2184)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2195), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5450), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5454), - }, - [STATE(2185)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2186)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2119), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5460), - }, - [STATE(2187)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2068), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5462), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5464), - }, - [STATE(2188)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5466), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2189)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5468), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2190)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2093), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5470), - }, - [STATE(2191)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5472), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2192)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2061), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5468), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5474), - }, - [STATE(2193)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2062), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5468), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5476), - }, - [STATE(2194)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2195)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5472), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2196)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2100), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5472), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5478), - }, - [STATE(2197)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2094), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5480), - }, - [STATE(2198)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2057), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5472), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5482), - }, - [STATE(2199)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2200)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(5336), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5486), - }, - [STATE(2201)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2203), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5488), - }, - [STATE(2202)] = { - [sym_keyed_field_initializer] = STATE(4975), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2203)] = { - [sym_keyed_field_initializer] = STATE(4977), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(1121), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(570), - }, - [STATE(2204)] = { - [sym_keyed_field_initializer] = STATE(4772), - [sym__field_name] = STATE(5176), - [aux_sym_import_declaration_repeat1] = STATE(2202), - [sym_identifier] = ACTIONS(5222), - [anon_sym_import] = ACTIONS(267), - [anon_sym_test] = ACTIONS(267), - [anon_sym_hide] = ACTIONS(267), - [anon_sym_func] = ACTIONS(267), - [anon_sym_c_func] = ACTIONS(267), - [anon_sym_struct] = ACTIONS(267), - [anon_sym_c_struct] = ACTIONS(267), - [anon_sym_opaque] = ACTIONS(267), - [anon_sym_distinct] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(267), - [anon_sym_union] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(267), - [anon_sym_mut] = ACTIONS(267), - [anon_sym_void] = ACTIONS(267), - [anon_sym_noreturn] = ACTIONS(267), - [anon_sym_type] = ACTIONS(267), - [anon_sym_anyopaque] = ACTIONS(267), - [anon_sym_bool] = ACTIONS(267), - [anon_sym_int] = ACTIONS(267), - [anon_sym_uint] = ACTIONS(267), - [anon_sym_float] = ACTIONS(267), - [anon_sym_range] = ACTIONS(267), - [anon_sym_i8] = ACTIONS(267), - [anon_sym_i16] = ACTIONS(267), - [anon_sym_i32] = ACTIONS(267), - [anon_sym_i64] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(267), - [anon_sym_u16] = ACTIONS(267), - [anon_sym_u32] = ACTIONS(267), - [anon_sym_u64] = ACTIONS(267), - [anon_sym_isize] = ACTIONS(267), - [anon_sym_usize] = ACTIONS(267), - [anon_sym_f32] = ACTIONS(267), - [anon_sym_f64] = ACTIONS(267), - [anon_sym_c_char] = ACTIONS(267), - [anon_sym_c_schar] = ACTIONS(267), - [anon_sym_c_uchar] = ACTIONS(267), - [anon_sym_c_short] = ACTIONS(267), - [anon_sym_c_ushort] = ACTIONS(267), - [anon_sym_c_int] = ACTIONS(267), - [anon_sym_c_uint] = ACTIONS(267), - [anon_sym_c_long] = ACTIONS(267), - [anon_sym_c_ulong] = ACTIONS(267), - [anon_sym_c_longlong] = ACTIONS(267), - [anon_sym_c_ulonglong] = ACTIONS(267), - [anon_sym_c_float] = ACTIONS(267), - [anon_sym_c_double] = ACTIONS(267), - [anon_sym_c_longdouble] = ACTIONS(267), - [anon_sym_return] = ACTIONS(267), - [anon_sym_yield] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_continue] = ACTIONS(267), - [anon_sym_defer] = ACTIONS(267), - [anon_sym_errdefer] = ACTIONS(267), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), - [anon_sym_while] = ACTIONS(267), - [anon_sym_expand] = ACTIONS(267), - [anon_sym_for] = ACTIONS(267), - [anon_sym_match] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(267), - [anon_sym_catch] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_xor] = ACTIONS(267), - [anon_sym_try] = ACTIONS(267), - [anon_sym_true] = ACTIONS(267), - [anon_sym_false] = ACTIONS(267), - [anon_sym_null] = ACTIONS(267), - [anon_sym_unreachable] = ACTIONS(267), - [anon_sym_undefined] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5490), - }, - [STATE(2205)] = { - [sym_identifier] = ACTIONS(4170), - [anon_sym_func] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(4170), - [anon_sym_LPAREN] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4168), - [anon_sym_RBRACE] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_DOLLAR] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_void] = ACTIONS(4170), - [anon_sym_noreturn] = ACTIONS(4170), - [anon_sym_type] = ACTIONS(4170), - [anon_sym_anyopaque] = ACTIONS(4170), - [anon_sym_bool] = ACTIONS(4170), - [anon_sym_int] = ACTIONS(4170), - [anon_sym_uint] = ACTIONS(4170), - [anon_sym_float] = ACTIONS(4170), - [anon_sym_range] = ACTIONS(4170), - [anon_sym_i8] = ACTIONS(4170), - [anon_sym_i16] = ACTIONS(4170), - [anon_sym_i32] = ACTIONS(4170), - [anon_sym_i64] = ACTIONS(4170), - [anon_sym_u8] = ACTIONS(4170), - [anon_sym_u16] = ACTIONS(4170), - [anon_sym_u32] = ACTIONS(4170), - [anon_sym_u64] = ACTIONS(4170), - [anon_sym_isize] = ACTIONS(4170), - [anon_sym_usize] = ACTIONS(4170), - [anon_sym_f32] = ACTIONS(4170), - [anon_sym_f64] = ACTIONS(4170), - [anon_sym_c_char] = ACTIONS(4170), - [anon_sym_c_schar] = ACTIONS(4170), - [anon_sym_c_uchar] = ACTIONS(4170), - [anon_sym_c_short] = ACTIONS(4170), - [anon_sym_c_ushort] = ACTIONS(4170), - [anon_sym_c_int] = ACTIONS(4170), - [anon_sym_c_uint] = ACTIONS(4170), - [anon_sym_c_long] = ACTIONS(4170), - [anon_sym_c_ulong] = ACTIONS(4170), - [anon_sym_c_longlong] = ACTIONS(4170), - [anon_sym_c_ulonglong] = ACTIONS(4170), - [anon_sym_c_float] = ACTIONS(4170), - [anon_sym_c_double] = ACTIONS(4170), - [anon_sym_c_longdouble] = ACTIONS(4170), - [anon_sym_return] = ACTIONS(4170), - [anon_sym_yield] = ACTIONS(4170), - [anon_sym_COLON] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4170), - [anon_sym_continue] = ACTIONS(4170), - [anon_sym_defer] = ACTIONS(4170), - [anon_sym_errdefer] = ACTIONS(4170), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_while] = ACTIONS(4170), - [anon_sym_expand] = ACTIONS(4170), - [anon_sym_for] = ACTIONS(4170), - [anon_sym_match] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_TILDE] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4170), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_true] = ACTIONS(4170), - [anon_sym_false] = ACTIONS(4170), - [anon_sym_null] = ACTIONS(4170), - [anon_sym_unreachable] = ACTIONS(4170), - [anon_sym_undefined] = ACTIONS(4170), - [sym_sink] = ACTIONS(4170), - [sym_integer] = ACTIONS(4170), - [sym_float] = ACTIONS(4168), - [anon_sym_DQUOTE] = ACTIONS(4168), - [sym_multiline_string] = ACTIONS(4168), - [sym_character] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4168), - }, - [STATE(2206)] = { - [aux_sym_import_declaration_repeat1] = STATE(4850), - [sym_identifier] = ACTIONS(5492), - [anon_sym_func] = ACTIONS(5492), - [anon_sym_BANG] = ACTIONS(5494), - [anon_sym_struct] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_DOLLAR] = ACTIONS(5494), - [anon_sym_LBRACK] = ACTIONS(5494), - [anon_sym_void] = ACTIONS(5492), - [anon_sym_noreturn] = ACTIONS(5492), - [anon_sym_type] = ACTIONS(5492), - [anon_sym_anyopaque] = ACTIONS(5492), - [anon_sym_bool] = ACTIONS(5492), - [anon_sym_int] = ACTIONS(5492), - [anon_sym_uint] = ACTIONS(5492), - [anon_sym_float] = ACTIONS(5492), - [anon_sym_range] = ACTIONS(5492), - [anon_sym_i8] = ACTIONS(5492), - [anon_sym_i16] = ACTIONS(5492), - [anon_sym_i32] = ACTIONS(5492), - [anon_sym_i64] = ACTIONS(5492), - [anon_sym_u8] = ACTIONS(5492), - [anon_sym_u16] = ACTIONS(5492), - [anon_sym_u32] = ACTIONS(5492), - [anon_sym_u64] = ACTIONS(5492), - [anon_sym_isize] = ACTIONS(5492), - [anon_sym_usize] = ACTIONS(5492), - [anon_sym_f32] = ACTIONS(5492), - [anon_sym_f64] = ACTIONS(5492), - [anon_sym_c_char] = ACTIONS(5492), - [anon_sym_c_schar] = ACTIONS(5492), - [anon_sym_c_uchar] = ACTIONS(5492), - [anon_sym_c_short] = ACTIONS(5492), - [anon_sym_c_ushort] = ACTIONS(5492), - [anon_sym_c_int] = ACTIONS(5492), - [anon_sym_c_uint] = ACTIONS(5492), - [anon_sym_c_long] = ACTIONS(5492), - [anon_sym_c_ulong] = ACTIONS(5492), - [anon_sym_c_longlong] = ACTIONS(5492), - [anon_sym_c_ulonglong] = ACTIONS(5492), - [anon_sym_c_float] = ACTIONS(5492), - [anon_sym_c_double] = ACTIONS(5492), - [anon_sym_c_longdouble] = ACTIONS(5492), - [anon_sym_return] = ACTIONS(5492), - [anon_sym_yield] = ACTIONS(5492), - [anon_sym_break] = ACTIONS(5492), - [anon_sym_continue] = ACTIONS(5492), - [anon_sym_defer] = ACTIONS(5492), - [anon_sym_errdefer] = ACTIONS(5492), - [anon_sym_if] = ACTIONS(5492), - [anon_sym_else] = ACTIONS(5496), - [anon_sym_while] = ACTIONS(5492), - [anon_sym_expand] = ACTIONS(5492), - [anon_sym_for] = ACTIONS(5492), - [anon_sym_match] = ACTIONS(5492), - [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_TILDE] = ACTIONS(5494), - [anon_sym_try] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(5494), - [anon_sym_true] = ACTIONS(5492), - [anon_sym_false] = ACTIONS(5492), - [anon_sym_null] = ACTIONS(5492), - [anon_sym_unreachable] = ACTIONS(5492), - [anon_sym_undefined] = ACTIONS(5492), - [sym_sink] = ACTIONS(5492), - [sym_integer] = ACTIONS(5492), - [sym_float] = ACTIONS(5494), - [anon_sym_DQUOTE] = ACTIONS(5494), - [sym_multiline_string] = ACTIONS(5494), - [sym_character] = ACTIONS(5494), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5499), - }, - [STATE(2207)] = { - [aux_sym_import_declaration_repeat1] = STATE(4851), - [sym_identifier] = ACTIONS(5502), - [anon_sym_func] = ACTIONS(5502), - [anon_sym_BANG] = ACTIONS(5504), - [anon_sym_struct] = ACTIONS(5502), - [anon_sym_LPAREN] = ACTIONS(5504), - [anon_sym_LBRACE] = ACTIONS(5504), - [anon_sym_RBRACE] = ACTIONS(5504), - [anon_sym_DASH] = ACTIONS(5504), - [anon_sym_DOLLAR] = ACTIONS(5504), - [anon_sym_LBRACK] = ACTIONS(5504), - [anon_sym_void] = ACTIONS(5502), - [anon_sym_noreturn] = ACTIONS(5502), - [anon_sym_type] = ACTIONS(5502), - [anon_sym_anyopaque] = ACTIONS(5502), - [anon_sym_bool] = ACTIONS(5502), - [anon_sym_int] = ACTIONS(5502), - [anon_sym_uint] = ACTIONS(5502), - [anon_sym_float] = ACTIONS(5502), - [anon_sym_range] = ACTIONS(5502), - [anon_sym_i8] = ACTIONS(5502), - [anon_sym_i16] = ACTIONS(5502), - [anon_sym_i32] = ACTIONS(5502), - [anon_sym_i64] = ACTIONS(5502), - [anon_sym_u8] = ACTIONS(5502), - [anon_sym_u16] = ACTIONS(5502), - [anon_sym_u32] = ACTIONS(5502), - [anon_sym_u64] = ACTIONS(5502), - [anon_sym_isize] = ACTIONS(5502), - [anon_sym_usize] = ACTIONS(5502), - [anon_sym_f32] = ACTIONS(5502), - [anon_sym_f64] = ACTIONS(5502), - [anon_sym_c_char] = ACTIONS(5502), - [anon_sym_c_schar] = ACTIONS(5502), - [anon_sym_c_uchar] = ACTIONS(5502), - [anon_sym_c_short] = ACTIONS(5502), - [anon_sym_c_ushort] = ACTIONS(5502), - [anon_sym_c_int] = ACTIONS(5502), - [anon_sym_c_uint] = ACTIONS(5502), - [anon_sym_c_long] = ACTIONS(5502), - [anon_sym_c_ulong] = ACTIONS(5502), - [anon_sym_c_longlong] = ACTIONS(5502), - [anon_sym_c_ulonglong] = ACTIONS(5502), - [anon_sym_c_float] = ACTIONS(5502), - [anon_sym_c_double] = ACTIONS(5502), - [anon_sym_c_longdouble] = ACTIONS(5502), - [anon_sym_return] = ACTIONS(5502), - [anon_sym_yield] = ACTIONS(5502), - [anon_sym_break] = ACTIONS(5502), - [anon_sym_continue] = ACTIONS(5502), - [anon_sym_defer] = ACTIONS(5502), - [anon_sym_errdefer] = ACTIONS(5502), - [anon_sym_if] = ACTIONS(5502), - [anon_sym_else] = ACTIONS(5506), - [anon_sym_while] = ACTIONS(5502), - [anon_sym_expand] = ACTIONS(5502), - [anon_sym_for] = ACTIONS(5502), - [anon_sym_match] = ACTIONS(5502), - [anon_sym_AMP] = ACTIONS(5504), - [anon_sym_TILDE] = ACTIONS(5504), - [anon_sym_try] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5504), - [anon_sym_true] = ACTIONS(5502), - [anon_sym_false] = ACTIONS(5502), - [anon_sym_null] = ACTIONS(5502), - [anon_sym_unreachable] = ACTIONS(5502), - [anon_sym_undefined] = ACTIONS(5502), - [sym_sink] = ACTIONS(5502), - [sym_integer] = ACTIONS(5502), - [sym_float] = ACTIONS(5504), - [anon_sym_DQUOTE] = ACTIONS(5504), - [sym_multiline_string] = ACTIONS(5504), - [sym_character] = ACTIONS(5504), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5509), - }, - [STATE(2208)] = { - [aux_sym_import_declaration_repeat1] = STATE(4917), - [sym_identifier] = ACTIONS(5512), - [anon_sym_func] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_struct] = ACTIONS(5512), - [anon_sym_LPAREN] = ACTIONS(5514), - [anon_sym_LBRACE] = ACTIONS(5514), - [anon_sym_RBRACE] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_DOLLAR] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [anon_sym_void] = ACTIONS(5512), - [anon_sym_noreturn] = ACTIONS(5512), - [anon_sym_type] = ACTIONS(5512), - [anon_sym_anyopaque] = ACTIONS(5512), - [anon_sym_bool] = ACTIONS(5512), - [anon_sym_int] = ACTIONS(5512), - [anon_sym_uint] = ACTIONS(5512), - [anon_sym_float] = ACTIONS(5512), - [anon_sym_range] = ACTIONS(5512), - [anon_sym_i8] = ACTIONS(5512), - [anon_sym_i16] = ACTIONS(5512), - [anon_sym_i32] = ACTIONS(5512), - [anon_sym_i64] = ACTIONS(5512), - [anon_sym_u8] = ACTIONS(5512), - [anon_sym_u16] = ACTIONS(5512), - [anon_sym_u32] = ACTIONS(5512), - [anon_sym_u64] = ACTIONS(5512), - [anon_sym_isize] = ACTIONS(5512), - [anon_sym_usize] = ACTIONS(5512), - [anon_sym_f32] = ACTIONS(5512), - [anon_sym_f64] = ACTIONS(5512), - [anon_sym_c_char] = ACTIONS(5512), - [anon_sym_c_schar] = ACTIONS(5512), - [anon_sym_c_uchar] = ACTIONS(5512), - [anon_sym_c_short] = ACTIONS(5512), - [anon_sym_c_ushort] = ACTIONS(5512), - [anon_sym_c_int] = ACTIONS(5512), - [anon_sym_c_uint] = ACTIONS(5512), - [anon_sym_c_long] = ACTIONS(5512), - [anon_sym_c_ulong] = ACTIONS(5512), - [anon_sym_c_longlong] = ACTIONS(5512), - [anon_sym_c_ulonglong] = ACTIONS(5512), - [anon_sym_c_float] = ACTIONS(5512), - [anon_sym_c_double] = ACTIONS(5512), - [anon_sym_c_longdouble] = ACTIONS(5512), - [anon_sym_return] = ACTIONS(5512), - [anon_sym_yield] = ACTIONS(5512), - [anon_sym_break] = ACTIONS(5512), - [anon_sym_continue] = ACTIONS(5512), - [anon_sym_defer] = ACTIONS(5512), - [anon_sym_errdefer] = ACTIONS(5512), - [anon_sym_if] = ACTIONS(5512), - [anon_sym_else] = ACTIONS(5516), - [anon_sym_while] = ACTIONS(5512), - [anon_sym_expand] = ACTIONS(5512), - [anon_sym_for] = ACTIONS(5512), - [anon_sym_match] = ACTIONS(5512), - [anon_sym_AMP] = ACTIONS(5514), - [anon_sym_TILDE] = ACTIONS(5514), - [anon_sym_try] = ACTIONS(5512), - [anon_sym_DOT] = ACTIONS(5514), - [anon_sym_true] = ACTIONS(5512), - [anon_sym_false] = ACTIONS(5512), - [anon_sym_null] = ACTIONS(5512), - [anon_sym_unreachable] = ACTIONS(5512), - [anon_sym_undefined] = ACTIONS(5512), - [sym_sink] = ACTIONS(5512), - [sym_integer] = ACTIONS(5512), - [sym_float] = ACTIONS(5514), - [anon_sym_DQUOTE] = ACTIONS(5514), - [sym_multiline_string] = ACTIONS(5514), - [sym_character] = ACTIONS(5514), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5518), - }, - [STATE(2209)] = { - [aux_sym_import_declaration_repeat1] = STATE(4849), - [sym_identifier] = ACTIONS(5512), - [anon_sym_func] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_struct] = ACTIONS(5512), - [anon_sym_LPAREN] = ACTIONS(5514), - [anon_sym_LBRACE] = ACTIONS(5514), - [anon_sym_RBRACE] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_DOLLAR] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [anon_sym_void] = ACTIONS(5512), - [anon_sym_noreturn] = ACTIONS(5512), - [anon_sym_type] = ACTIONS(5512), - [anon_sym_anyopaque] = ACTIONS(5512), - [anon_sym_bool] = ACTIONS(5512), - [anon_sym_int] = ACTIONS(5512), - [anon_sym_uint] = ACTIONS(5512), - [anon_sym_float] = ACTIONS(5512), - [anon_sym_range] = ACTIONS(5512), - [anon_sym_i8] = ACTIONS(5512), - [anon_sym_i16] = ACTIONS(5512), - [anon_sym_i32] = ACTIONS(5512), - [anon_sym_i64] = ACTIONS(5512), - [anon_sym_u8] = ACTIONS(5512), - [anon_sym_u16] = ACTIONS(5512), - [anon_sym_u32] = ACTIONS(5512), - [anon_sym_u64] = ACTIONS(5512), - [anon_sym_isize] = ACTIONS(5512), - [anon_sym_usize] = ACTIONS(5512), - [anon_sym_f32] = ACTIONS(5512), - [anon_sym_f64] = ACTIONS(5512), - [anon_sym_c_char] = ACTIONS(5512), - [anon_sym_c_schar] = ACTIONS(5512), - [anon_sym_c_uchar] = ACTIONS(5512), - [anon_sym_c_short] = ACTIONS(5512), - [anon_sym_c_ushort] = ACTIONS(5512), - [anon_sym_c_int] = ACTIONS(5512), - [anon_sym_c_uint] = ACTIONS(5512), - [anon_sym_c_long] = ACTIONS(5512), - [anon_sym_c_ulong] = ACTIONS(5512), - [anon_sym_c_longlong] = ACTIONS(5512), - [anon_sym_c_ulonglong] = ACTIONS(5512), - [anon_sym_c_float] = ACTIONS(5512), - [anon_sym_c_double] = ACTIONS(5512), - [anon_sym_c_longdouble] = ACTIONS(5512), - [anon_sym_return] = ACTIONS(5512), - [anon_sym_yield] = ACTIONS(5512), - [anon_sym_break] = ACTIONS(5512), - [anon_sym_continue] = ACTIONS(5512), - [anon_sym_defer] = ACTIONS(5512), - [anon_sym_errdefer] = ACTIONS(5512), - [anon_sym_if] = ACTIONS(5512), - [anon_sym_else] = ACTIONS(5521), - [anon_sym_while] = ACTIONS(5512), - [anon_sym_expand] = ACTIONS(5512), - [anon_sym_for] = ACTIONS(5512), - [anon_sym_match] = ACTIONS(5512), - [anon_sym_AMP] = ACTIONS(5514), - [anon_sym_TILDE] = ACTIONS(5514), - [anon_sym_try] = ACTIONS(5512), - [anon_sym_DOT] = ACTIONS(5514), - [anon_sym_true] = ACTIONS(5512), - [anon_sym_false] = ACTIONS(5512), - [anon_sym_null] = ACTIONS(5512), - [anon_sym_unreachable] = ACTIONS(5512), - [anon_sym_undefined] = ACTIONS(5512), - [sym_sink] = ACTIONS(5512), - [sym_integer] = ACTIONS(5512), - [sym_float] = ACTIONS(5514), - [anon_sym_DQUOTE] = ACTIONS(5514), - [sym_multiline_string] = ACTIONS(5514), - [sym_character] = ACTIONS(5514), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5524), - }, - [STATE(2210)] = { - [aux_sym_import_declaration_repeat1] = STATE(4853), - [sym_identifier] = ACTIONS(5527), - [anon_sym_func] = ACTIONS(5527), - [anon_sym_BANG] = ACTIONS(5529), - [anon_sym_struct] = ACTIONS(5527), - [anon_sym_LPAREN] = ACTIONS(5529), - [anon_sym_LBRACE] = ACTIONS(5529), - [anon_sym_RBRACE] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(5529), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_void] = ACTIONS(5527), - [anon_sym_noreturn] = ACTIONS(5527), - [anon_sym_type] = ACTIONS(5527), - [anon_sym_anyopaque] = ACTIONS(5527), - [anon_sym_bool] = ACTIONS(5527), - [anon_sym_int] = ACTIONS(5527), - [anon_sym_uint] = ACTIONS(5527), - [anon_sym_float] = ACTIONS(5527), - [anon_sym_range] = ACTIONS(5527), - [anon_sym_i8] = ACTIONS(5527), - [anon_sym_i16] = ACTIONS(5527), - [anon_sym_i32] = ACTIONS(5527), - [anon_sym_i64] = ACTIONS(5527), - [anon_sym_u8] = ACTIONS(5527), - [anon_sym_u16] = ACTIONS(5527), - [anon_sym_u32] = ACTIONS(5527), - [anon_sym_u64] = ACTIONS(5527), - [anon_sym_isize] = ACTIONS(5527), - [anon_sym_usize] = ACTIONS(5527), - [anon_sym_f32] = ACTIONS(5527), - [anon_sym_f64] = ACTIONS(5527), - [anon_sym_c_char] = ACTIONS(5527), - [anon_sym_c_schar] = ACTIONS(5527), - [anon_sym_c_uchar] = ACTIONS(5527), - [anon_sym_c_short] = ACTIONS(5527), - [anon_sym_c_ushort] = ACTIONS(5527), - [anon_sym_c_int] = ACTIONS(5527), - [anon_sym_c_uint] = ACTIONS(5527), - [anon_sym_c_long] = ACTIONS(5527), - [anon_sym_c_ulong] = ACTIONS(5527), - [anon_sym_c_longlong] = ACTIONS(5527), - [anon_sym_c_ulonglong] = ACTIONS(5527), - [anon_sym_c_float] = ACTIONS(5527), - [anon_sym_c_double] = ACTIONS(5527), - [anon_sym_c_longdouble] = ACTIONS(5527), - [anon_sym_return] = ACTIONS(5527), - [anon_sym_yield] = ACTIONS(5527), - [anon_sym_break] = ACTIONS(5527), - [anon_sym_continue] = ACTIONS(5527), - [anon_sym_defer] = ACTIONS(5527), - [anon_sym_errdefer] = ACTIONS(5527), - [anon_sym_if] = ACTIONS(5527), - [anon_sym_else] = ACTIONS(5531), - [anon_sym_while] = ACTIONS(5527), - [anon_sym_expand] = ACTIONS(5527), - [anon_sym_for] = ACTIONS(5527), - [anon_sym_match] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_TILDE] = ACTIONS(5529), - [anon_sym_try] = ACTIONS(5527), - [anon_sym_DOT] = ACTIONS(5529), - [anon_sym_true] = ACTIONS(5527), - [anon_sym_false] = ACTIONS(5527), - [anon_sym_null] = ACTIONS(5527), - [anon_sym_unreachable] = ACTIONS(5527), - [anon_sym_undefined] = ACTIONS(5527), - [sym_sink] = ACTIONS(5527), - [sym_integer] = ACTIONS(5527), - [sym_float] = ACTIONS(5529), - [anon_sym_DQUOTE] = ACTIONS(5529), - [sym_multiline_string] = ACTIONS(5529), - [sym_character] = ACTIONS(5529), + [STATE(6752)] = { + [ts_builtin_sym_end] = ACTIONS(5148), + [sym_identifier] = ACTIONS(5150), + [anon_sym_import] = ACTIONS(5150), + [anon_sym_test] = ACTIONS(5150), + [anon_sym_hide] = ACTIONS(5150), + [anon_sym_func] = ACTIONS(5150), + [anon_sym_BANG] = ACTIONS(5148), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_RPAREN] = ACTIONS(5148), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_void] = ACTIONS(5150), + [anon_sym_noreturn] = ACTIONS(5150), + [anon_sym_type] = ACTIONS(5150), + [anon_sym_anyopaque] = ACTIONS(5150), + [anon_sym_bool] = ACTIONS(5150), + [anon_sym_int] = ACTIONS(5150), + [anon_sym_uint] = ACTIONS(5150), + [anon_sym_float] = ACTIONS(5150), + [anon_sym_range] = ACTIONS(5150), + [anon_sym_i8] = ACTIONS(5150), + [anon_sym_i16] = ACTIONS(5150), + [anon_sym_i32] = ACTIONS(5150), + [anon_sym_i64] = ACTIONS(5150), + [anon_sym_u8] = ACTIONS(5150), + [anon_sym_u16] = ACTIONS(5150), + [anon_sym_u32] = ACTIONS(5150), + [anon_sym_u64] = ACTIONS(5150), + [anon_sym_isize] = ACTIONS(5150), + [anon_sym_usize] = ACTIONS(5150), + [anon_sym_f32] = ACTIONS(5150), + [anon_sym_f64] = ACTIONS(5150), + [anon_sym_c_char] = ACTIONS(5150), + [anon_sym_c_schar] = ACTIONS(5150), + [anon_sym_c_uchar] = ACTIONS(5150), + [anon_sym_c_short] = ACTIONS(5150), + [anon_sym_c_ushort] = ACTIONS(5150), + [anon_sym_c_int] = ACTIONS(5150), + [anon_sym_c_uint] = ACTIONS(5150), + [anon_sym_c_long] = ACTIONS(5150), + [anon_sym_c_ulong] = ACTIONS(5150), + [anon_sym_c_longlong] = ACTIONS(5150), + [anon_sym_c_ulonglong] = ACTIONS(5150), + [anon_sym_c_float] = ACTIONS(5150), + [anon_sym_c_double] = ACTIONS(5150), + [anon_sym_c_longdouble] = ACTIONS(5150), + [anon_sym_return] = ACTIONS(5150), + [anon_sym_yield] = ACTIONS(5150), + [anon_sym_break] = ACTIONS(5150), + [anon_sym_continue] = ACTIONS(5150), + [anon_sym_defer] = ACTIONS(5150), + [anon_sym_errdefer] = ACTIONS(5150), + [anon_sym_if] = ACTIONS(5150), + [anon_sym_else] = ACTIONS(5150), + [anon_sym_while] = ACTIONS(5150), + [anon_sym_expand] = ACTIONS(5150), + [anon_sym_for] = ACTIONS(5150), + [anon_sym_match] = ACTIONS(5150), + [anon_sym_AMP] = ACTIONS(5148), + [anon_sym_TILDE] = ACTIONS(5148), + [anon_sym_try] = ACTIONS(5150), + [anon_sym_DOT] = ACTIONS(5148), + [anon_sym_true] = ACTIONS(5150), + [anon_sym_false] = ACTIONS(5150), + [anon_sym_null] = ACTIONS(5150), + [anon_sym_unreachable] = ACTIONS(5150), + [anon_sym_undefined] = ACTIONS(5150), + [sym_sink] = ACTIONS(5150), + [sym_integer] = ACTIONS(5150), + [sym_float] = ACTIONS(5148), + [anon_sym_DQUOTE] = ACTIONS(5148), + [sym_multiline_string] = ACTIONS(5148), + [sym_character] = ACTIONS(5148), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5148), + }, + [STATE(6753)] = { + [ts_builtin_sym_end] = ACTIONS(5184), + [sym_identifier] = ACTIONS(5186), + [anon_sym_import] = ACTIONS(5186), + [anon_sym_test] = ACTIONS(5186), + [anon_sym_hide] = ACTIONS(5186), + [anon_sym_func] = ACTIONS(5186), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_struct] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5184), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_void] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym_type] = ACTIONS(5186), + [anon_sym_anyopaque] = ACTIONS(5186), + [anon_sym_bool] = ACTIONS(5186), + [anon_sym_int] = ACTIONS(5186), + [anon_sym_uint] = ACTIONS(5186), + [anon_sym_float] = ACTIONS(5186), + [anon_sym_range] = ACTIONS(5186), + [anon_sym_i8] = ACTIONS(5186), + [anon_sym_i16] = ACTIONS(5186), + [anon_sym_i32] = ACTIONS(5186), + [anon_sym_i64] = ACTIONS(5186), + [anon_sym_u8] = ACTIONS(5186), + [anon_sym_u16] = ACTIONS(5186), + [anon_sym_u32] = ACTIONS(5186), + [anon_sym_u64] = ACTIONS(5186), + [anon_sym_isize] = ACTIONS(5186), + [anon_sym_usize] = ACTIONS(5186), + [anon_sym_f32] = ACTIONS(5186), + [anon_sym_f64] = ACTIONS(5186), + [anon_sym_c_char] = ACTIONS(5186), + [anon_sym_c_schar] = ACTIONS(5186), + [anon_sym_c_uchar] = ACTIONS(5186), + [anon_sym_c_short] = ACTIONS(5186), + [anon_sym_c_ushort] = ACTIONS(5186), + [anon_sym_c_int] = ACTIONS(5186), + [anon_sym_c_uint] = ACTIONS(5186), + [anon_sym_c_long] = ACTIONS(5186), + [anon_sym_c_ulong] = ACTIONS(5186), + [anon_sym_c_longlong] = ACTIONS(5186), + [anon_sym_c_ulonglong] = ACTIONS(5186), + [anon_sym_c_float] = ACTIONS(5186), + [anon_sym_c_double] = ACTIONS(5186), + [anon_sym_c_longdouble] = ACTIONS(5186), + [anon_sym_return] = ACTIONS(5186), + [anon_sym_yield] = ACTIONS(5186), + [anon_sym_break] = ACTIONS(5186), + [anon_sym_continue] = ACTIONS(5186), + [anon_sym_defer] = ACTIONS(5186), + [anon_sym_errdefer] = ACTIONS(5186), + [anon_sym_if] = ACTIONS(5186), + [anon_sym_else] = ACTIONS(5186), + [anon_sym_while] = ACTIONS(5186), + [anon_sym_expand] = ACTIONS(5186), + [anon_sym_for] = ACTIONS(5186), + [anon_sym_match] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_TILDE] = ACTIONS(5184), + [anon_sym_try] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5184), + [anon_sym_true] = ACTIONS(5186), + [anon_sym_false] = ACTIONS(5186), + [anon_sym_null] = ACTIONS(5186), + [anon_sym_unreachable] = ACTIONS(5186), + [anon_sym_undefined] = ACTIONS(5186), + [sym_sink] = ACTIONS(5186), + [sym_integer] = ACTIONS(5186), + [sym_float] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [sym_multiline_string] = ACTIONS(5184), + [sym_character] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5184), + }, + [STATE(6754)] = { + [ts_builtin_sym_end] = ACTIONS(5026), + [sym_identifier] = ACTIONS(5028), + [anon_sym_import] = ACTIONS(5028), + [anon_sym_test] = ACTIONS(5028), + [anon_sym_hide] = ACTIONS(5028), + [anon_sym_func] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_void] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_type] = ACTIONS(5028), + [anon_sym_anyopaque] = ACTIONS(5028), + [anon_sym_bool] = ACTIONS(5028), + [anon_sym_int] = ACTIONS(5028), + [anon_sym_uint] = ACTIONS(5028), + [anon_sym_float] = ACTIONS(5028), + [anon_sym_range] = ACTIONS(5028), + [anon_sym_i8] = ACTIONS(5028), + [anon_sym_i16] = ACTIONS(5028), + [anon_sym_i32] = ACTIONS(5028), + [anon_sym_i64] = ACTIONS(5028), + [anon_sym_u8] = ACTIONS(5028), + [anon_sym_u16] = ACTIONS(5028), + [anon_sym_u32] = ACTIONS(5028), + [anon_sym_u64] = ACTIONS(5028), + [anon_sym_isize] = ACTIONS(5028), + [anon_sym_usize] = ACTIONS(5028), + [anon_sym_f32] = ACTIONS(5028), + [anon_sym_f64] = ACTIONS(5028), + [anon_sym_c_char] = ACTIONS(5028), + [anon_sym_c_schar] = ACTIONS(5028), + [anon_sym_c_uchar] = ACTIONS(5028), + [anon_sym_c_short] = ACTIONS(5028), + [anon_sym_c_ushort] = ACTIONS(5028), + [anon_sym_c_int] = ACTIONS(5028), + [anon_sym_c_uint] = ACTIONS(5028), + [anon_sym_c_long] = ACTIONS(5028), + [anon_sym_c_ulong] = ACTIONS(5028), + [anon_sym_c_longlong] = ACTIONS(5028), + [anon_sym_c_ulonglong] = ACTIONS(5028), + [anon_sym_c_float] = ACTIONS(5028), + [anon_sym_c_double] = ACTIONS(5028), + [anon_sym_c_longdouble] = ACTIONS(5028), + [anon_sym_return] = ACTIONS(5028), + [anon_sym_yield] = ACTIONS(5028), + [anon_sym_break] = ACTIONS(5028), + [anon_sym_continue] = ACTIONS(5028), + [anon_sym_defer] = ACTIONS(5028), + [anon_sym_errdefer] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5028), + [anon_sym_while] = ACTIONS(5028), + [anon_sym_expand] = ACTIONS(5028), + [anon_sym_for] = ACTIONS(5028), + [anon_sym_match] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5028), + [anon_sym_false] = ACTIONS(5028), + [anon_sym_null] = ACTIONS(5028), + [anon_sym_unreachable] = ACTIONS(5028), + [anon_sym_undefined] = ACTIONS(5028), + [sym_sink] = ACTIONS(5028), + [sym_integer] = ACTIONS(5028), + [sym_float] = ACTIONS(5026), + [anon_sym_DQUOTE] = ACTIONS(5026), + [sym_multiline_string] = ACTIONS(5026), + [sym_character] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5026), + }, + [STATE(6755)] = { + [ts_builtin_sym_end] = ACTIONS(5010), + [sym_identifier] = ACTIONS(5012), + [anon_sym_import] = ACTIONS(5012), + [anon_sym_test] = ACTIONS(5012), + [anon_sym_hide] = ACTIONS(5012), + [anon_sym_func] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_struct] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_RPAREN] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5010), + [anon_sym_RBRACE] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOLLAR] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_void] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_type] = ACTIONS(5012), + [anon_sym_anyopaque] = ACTIONS(5012), + [anon_sym_bool] = ACTIONS(5012), + [anon_sym_int] = ACTIONS(5012), + [anon_sym_uint] = ACTIONS(5012), + [anon_sym_float] = ACTIONS(5012), + [anon_sym_range] = ACTIONS(5012), + [anon_sym_i8] = ACTIONS(5012), + [anon_sym_i16] = ACTIONS(5012), + [anon_sym_i32] = ACTIONS(5012), + [anon_sym_i64] = ACTIONS(5012), + [anon_sym_u8] = ACTIONS(5012), + [anon_sym_u16] = ACTIONS(5012), + [anon_sym_u32] = ACTIONS(5012), + [anon_sym_u64] = ACTIONS(5012), + [anon_sym_isize] = ACTIONS(5012), + [anon_sym_usize] = ACTIONS(5012), + [anon_sym_f32] = ACTIONS(5012), + [anon_sym_f64] = ACTIONS(5012), + [anon_sym_c_char] = ACTIONS(5012), + [anon_sym_c_schar] = ACTIONS(5012), + [anon_sym_c_uchar] = ACTIONS(5012), + [anon_sym_c_short] = ACTIONS(5012), + [anon_sym_c_ushort] = ACTIONS(5012), + [anon_sym_c_int] = ACTIONS(5012), + [anon_sym_c_uint] = ACTIONS(5012), + [anon_sym_c_long] = ACTIONS(5012), + [anon_sym_c_ulong] = ACTIONS(5012), + [anon_sym_c_longlong] = ACTIONS(5012), + [anon_sym_c_ulonglong] = ACTIONS(5012), + [anon_sym_c_float] = ACTIONS(5012), + [anon_sym_c_double] = ACTIONS(5012), + [anon_sym_c_longdouble] = ACTIONS(5012), + [anon_sym_return] = ACTIONS(5012), + [anon_sym_yield] = ACTIONS(5012), + [anon_sym_break] = ACTIONS(5012), + [anon_sym_continue] = ACTIONS(5012), + [anon_sym_defer] = ACTIONS(5012), + [anon_sym_errdefer] = ACTIONS(5012), + [anon_sym_if] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5012), + [anon_sym_while] = ACTIONS(5012), + [anon_sym_expand] = ACTIONS(5012), + [anon_sym_for] = ACTIONS(5012), + [anon_sym_match] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_TILDE] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_true] = ACTIONS(5012), + [anon_sym_false] = ACTIONS(5012), + [anon_sym_null] = ACTIONS(5012), + [anon_sym_unreachable] = ACTIONS(5012), + [anon_sym_undefined] = ACTIONS(5012), + [sym_sink] = ACTIONS(5012), + [sym_integer] = ACTIONS(5012), + [sym_float] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(5010), + [sym_multiline_string] = ACTIONS(5010), + [sym_character] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5010), + }, + [STATE(6756)] = { + [ts_builtin_sym_end] = ACTIONS(5068), + [sym_identifier] = ACTIONS(5070), + [anon_sym_import] = ACTIONS(5070), + [anon_sym_test] = ACTIONS(5070), + [anon_sym_hide] = ACTIONS(5070), + [anon_sym_func] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5068), + [anon_sym_struct] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_void] = ACTIONS(5070), + [anon_sym_noreturn] = ACTIONS(5070), + [anon_sym_type] = ACTIONS(5070), + [anon_sym_anyopaque] = ACTIONS(5070), + [anon_sym_bool] = ACTIONS(5070), + [anon_sym_int] = ACTIONS(5070), + [anon_sym_uint] = ACTIONS(5070), + [anon_sym_float] = ACTIONS(5070), + [anon_sym_range] = ACTIONS(5070), + [anon_sym_i8] = ACTIONS(5070), + [anon_sym_i16] = ACTIONS(5070), + [anon_sym_i32] = ACTIONS(5070), + [anon_sym_i64] = ACTIONS(5070), + [anon_sym_u8] = ACTIONS(5070), + [anon_sym_u16] = ACTIONS(5070), + [anon_sym_u32] = ACTIONS(5070), + [anon_sym_u64] = ACTIONS(5070), + [anon_sym_isize] = ACTIONS(5070), + [anon_sym_usize] = ACTIONS(5070), + [anon_sym_f32] = ACTIONS(5070), + [anon_sym_f64] = ACTIONS(5070), + [anon_sym_c_char] = ACTIONS(5070), + [anon_sym_c_schar] = ACTIONS(5070), + [anon_sym_c_uchar] = ACTIONS(5070), + [anon_sym_c_short] = ACTIONS(5070), + [anon_sym_c_ushort] = ACTIONS(5070), + [anon_sym_c_int] = ACTIONS(5070), + [anon_sym_c_uint] = ACTIONS(5070), + [anon_sym_c_long] = ACTIONS(5070), + [anon_sym_c_ulong] = ACTIONS(5070), + [anon_sym_c_longlong] = ACTIONS(5070), + [anon_sym_c_ulonglong] = ACTIONS(5070), + [anon_sym_c_float] = ACTIONS(5070), + [anon_sym_c_double] = ACTIONS(5070), + [anon_sym_c_longdouble] = ACTIONS(5070), + [anon_sym_return] = ACTIONS(5070), + [anon_sym_yield] = ACTIONS(5070), + [anon_sym_break] = ACTIONS(5070), + [anon_sym_continue] = ACTIONS(5070), + [anon_sym_defer] = ACTIONS(5070), + [anon_sym_errdefer] = ACTIONS(5070), + [anon_sym_if] = ACTIONS(5070), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_while] = ACTIONS(5070), + [anon_sym_expand] = ACTIONS(5070), + [anon_sym_for] = ACTIONS(5070), + [anon_sym_match] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5068), + [anon_sym_TILDE] = ACTIONS(5068), + [anon_sym_try] = ACTIONS(5070), + [anon_sym_DOT] = ACTIONS(5068), + [anon_sym_true] = ACTIONS(5070), + [anon_sym_false] = ACTIONS(5070), + [anon_sym_null] = ACTIONS(5070), + [anon_sym_unreachable] = ACTIONS(5070), + [anon_sym_undefined] = ACTIONS(5070), + [sym_sink] = ACTIONS(5070), + [sym_integer] = ACTIONS(5070), + [sym_float] = ACTIONS(5068), + [anon_sym_DQUOTE] = ACTIONS(5068), + [sym_multiline_string] = ACTIONS(5068), + [sym_character] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5068), + }, + [STATE(6757)] = { + [ts_builtin_sym_end] = ACTIONS(4920), + [sym_identifier] = ACTIONS(4922), + [anon_sym_import] = ACTIONS(4922), + [anon_sym_test] = ACTIONS(4922), + [anon_sym_hide] = ACTIONS(4922), + [anon_sym_func] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_struct] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_void] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym_type] = ACTIONS(4922), + [anon_sym_anyopaque] = ACTIONS(4922), + [anon_sym_bool] = ACTIONS(4922), + [anon_sym_int] = ACTIONS(4922), + [anon_sym_uint] = ACTIONS(4922), + [anon_sym_float] = ACTIONS(4922), + [anon_sym_range] = ACTIONS(4922), + [anon_sym_i8] = ACTIONS(4922), + [anon_sym_i16] = ACTIONS(4922), + [anon_sym_i32] = ACTIONS(4922), + [anon_sym_i64] = ACTIONS(4922), + [anon_sym_u8] = ACTIONS(4922), + [anon_sym_u16] = ACTIONS(4922), + [anon_sym_u32] = ACTIONS(4922), + [anon_sym_u64] = ACTIONS(4922), + [anon_sym_isize] = ACTIONS(4922), + [anon_sym_usize] = ACTIONS(4922), + [anon_sym_f32] = ACTIONS(4922), + [anon_sym_f64] = ACTIONS(4922), + [anon_sym_c_char] = ACTIONS(4922), + [anon_sym_c_schar] = ACTIONS(4922), + [anon_sym_c_uchar] = ACTIONS(4922), + [anon_sym_c_short] = ACTIONS(4922), + [anon_sym_c_ushort] = ACTIONS(4922), + [anon_sym_c_int] = ACTIONS(4922), + [anon_sym_c_uint] = ACTIONS(4922), + [anon_sym_c_long] = ACTIONS(4922), + [anon_sym_c_ulong] = ACTIONS(4922), + [anon_sym_c_longlong] = ACTIONS(4922), + [anon_sym_c_ulonglong] = ACTIONS(4922), + [anon_sym_c_float] = ACTIONS(4922), + [anon_sym_c_double] = ACTIONS(4922), + [anon_sym_c_longdouble] = ACTIONS(4922), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_yield] = ACTIONS(4922), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_continue] = ACTIONS(4922), + [anon_sym_defer] = ACTIONS(4922), + [anon_sym_errdefer] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_expand] = ACTIONS(4922), + [anon_sym_for] = ACTIONS(4922), + [anon_sym_match] = ACTIONS(4922), + [anon_sym_AMP] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_unreachable] = ACTIONS(4922), + [anon_sym_undefined] = ACTIONS(4922), + [sym_sink] = ACTIONS(4922), + [sym_integer] = ACTIONS(4922), + [sym_float] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [sym_multiline_string] = ACTIONS(4920), + [sym_character] = ACTIONS(4920), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4920), + }, + [STATE(6758)] = { + [ts_builtin_sym_end] = ACTIONS(5534), + [sym_identifier] = ACTIONS(5536), + [anon_sym_import] = ACTIONS(5536), + [anon_sym_test] = ACTIONS(5536), + [anon_sym_hide] = ACTIONS(5536), + [anon_sym_func] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5534), + [anon_sym_struct] = ACTIONS(5536), + [anon_sym_LPAREN] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_LBRACE] = ACTIONS(5534), + [anon_sym_RBRACE] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5534), + [anon_sym_DOLLAR] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5534), + [anon_sym_void] = ACTIONS(5536), + [anon_sym_noreturn] = ACTIONS(5536), + [anon_sym_type] = ACTIONS(5536), + [anon_sym_anyopaque] = ACTIONS(5536), + [anon_sym_bool] = ACTIONS(5536), + [anon_sym_int] = ACTIONS(5536), + [anon_sym_uint] = ACTIONS(5536), + [anon_sym_float] = ACTIONS(5536), + [anon_sym_range] = ACTIONS(5536), + [anon_sym_i8] = ACTIONS(5536), + [anon_sym_i16] = ACTIONS(5536), + [anon_sym_i32] = ACTIONS(5536), + [anon_sym_i64] = ACTIONS(5536), + [anon_sym_u8] = ACTIONS(5536), + [anon_sym_u16] = ACTIONS(5536), + [anon_sym_u32] = ACTIONS(5536), + [anon_sym_u64] = ACTIONS(5536), + [anon_sym_isize] = ACTIONS(5536), + [anon_sym_usize] = ACTIONS(5536), + [anon_sym_f32] = ACTIONS(5536), + [anon_sym_f64] = ACTIONS(5536), + [anon_sym_c_char] = ACTIONS(5536), + [anon_sym_c_schar] = ACTIONS(5536), + [anon_sym_c_uchar] = ACTIONS(5536), + [anon_sym_c_short] = ACTIONS(5536), + [anon_sym_c_ushort] = ACTIONS(5536), + [anon_sym_c_int] = ACTIONS(5536), + [anon_sym_c_uint] = ACTIONS(5536), + [anon_sym_c_long] = ACTIONS(5536), + [anon_sym_c_ulong] = ACTIONS(5536), + [anon_sym_c_longlong] = ACTIONS(5536), + [anon_sym_c_ulonglong] = ACTIONS(5536), + [anon_sym_c_float] = ACTIONS(5536), + [anon_sym_c_double] = ACTIONS(5536), + [anon_sym_c_longdouble] = ACTIONS(5536), + [anon_sym_return] = ACTIONS(5536), + [anon_sym_yield] = ACTIONS(5536), + [anon_sym_break] = ACTIONS(5536), + [anon_sym_continue] = ACTIONS(5536), + [anon_sym_defer] = ACTIONS(5536), + [anon_sym_errdefer] = ACTIONS(5536), + [anon_sym_if] = ACTIONS(5536), + [anon_sym_else] = ACTIONS(5536), + [anon_sym_while] = ACTIONS(5536), + [anon_sym_expand] = ACTIONS(5536), + [anon_sym_for] = ACTIONS(5536), + [anon_sym_match] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(5534), + [anon_sym_TILDE] = ACTIONS(5534), + [anon_sym_try] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(5534), + [anon_sym_true] = ACTIONS(5536), + [anon_sym_false] = ACTIONS(5536), + [anon_sym_null] = ACTIONS(5536), + [anon_sym_unreachable] = ACTIONS(5536), + [anon_sym_undefined] = ACTIONS(5536), + [sym_sink] = ACTIONS(5536), + [sym_integer] = ACTIONS(5536), + [sym_float] = ACTIONS(5534), + [anon_sym_DQUOTE] = ACTIONS(5534), + [sym_multiline_string] = ACTIONS(5534), + [sym_character] = ACTIONS(5534), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5534), }, - [STATE(2211)] = { - [aux_sym_import_declaration_repeat1] = STATE(4932), - [sym_identifier] = ACTIONS(5527), - [anon_sym_func] = ACTIONS(5527), - [anon_sym_BANG] = ACTIONS(5529), - [anon_sym_struct] = ACTIONS(5527), - [anon_sym_LPAREN] = ACTIONS(5529), - [anon_sym_LBRACE] = ACTIONS(5529), - [anon_sym_RBRACE] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(5529), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_void] = ACTIONS(5527), - [anon_sym_noreturn] = ACTIONS(5527), - [anon_sym_type] = ACTIONS(5527), - [anon_sym_anyopaque] = ACTIONS(5527), - [anon_sym_bool] = ACTIONS(5527), - [anon_sym_int] = ACTIONS(5527), - [anon_sym_uint] = ACTIONS(5527), - [anon_sym_float] = ACTIONS(5527), - [anon_sym_range] = ACTIONS(5527), - [anon_sym_i8] = ACTIONS(5527), - [anon_sym_i16] = ACTIONS(5527), - [anon_sym_i32] = ACTIONS(5527), - [anon_sym_i64] = ACTIONS(5527), - [anon_sym_u8] = ACTIONS(5527), - [anon_sym_u16] = ACTIONS(5527), - [anon_sym_u32] = ACTIONS(5527), - [anon_sym_u64] = ACTIONS(5527), - [anon_sym_isize] = ACTIONS(5527), - [anon_sym_usize] = ACTIONS(5527), - [anon_sym_f32] = ACTIONS(5527), - [anon_sym_f64] = ACTIONS(5527), - [anon_sym_c_char] = ACTIONS(5527), - [anon_sym_c_schar] = ACTIONS(5527), - [anon_sym_c_uchar] = ACTIONS(5527), - [anon_sym_c_short] = ACTIONS(5527), - [anon_sym_c_ushort] = ACTIONS(5527), - [anon_sym_c_int] = ACTIONS(5527), - [anon_sym_c_uint] = ACTIONS(5527), - [anon_sym_c_long] = ACTIONS(5527), - [anon_sym_c_ulong] = ACTIONS(5527), - [anon_sym_c_longlong] = ACTIONS(5527), - [anon_sym_c_ulonglong] = ACTIONS(5527), - [anon_sym_c_float] = ACTIONS(5527), - [anon_sym_c_double] = ACTIONS(5527), - [anon_sym_c_longdouble] = ACTIONS(5527), - [anon_sym_return] = ACTIONS(5527), - [anon_sym_yield] = ACTIONS(5527), - [anon_sym_break] = ACTIONS(5527), - [anon_sym_continue] = ACTIONS(5527), - [anon_sym_defer] = ACTIONS(5527), - [anon_sym_errdefer] = ACTIONS(5527), - [anon_sym_if] = ACTIONS(5527), - [anon_sym_else] = ACTIONS(5537), - [anon_sym_while] = ACTIONS(5527), - [anon_sym_expand] = ACTIONS(5527), - [anon_sym_for] = ACTIONS(5527), - [anon_sym_match] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_TILDE] = ACTIONS(5529), - [anon_sym_try] = ACTIONS(5527), - [anon_sym_DOT] = ACTIONS(5529), - [anon_sym_true] = ACTIONS(5527), - [anon_sym_false] = ACTIONS(5527), - [anon_sym_null] = ACTIONS(5527), - [anon_sym_unreachable] = ACTIONS(5527), - [anon_sym_undefined] = ACTIONS(5527), - [sym_sink] = ACTIONS(5527), - [sym_integer] = ACTIONS(5527), - [sym_float] = ACTIONS(5529), - [anon_sym_DQUOTE] = ACTIONS(5529), - [sym_multiline_string] = ACTIONS(5529), - [sym_character] = ACTIONS(5529), + [STATE(6759)] = { + [ts_builtin_sym_end] = ACTIONS(4924), + [sym_identifier] = ACTIONS(4926), + [anon_sym_import] = ACTIONS(4926), + [anon_sym_test] = ACTIONS(4926), + [anon_sym_hide] = ACTIONS(4926), + [anon_sym_func] = ACTIONS(4926), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_struct] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_void] = ACTIONS(4926), + [anon_sym_noreturn] = ACTIONS(4926), + [anon_sym_type] = ACTIONS(4926), + [anon_sym_anyopaque] = ACTIONS(4926), + [anon_sym_bool] = ACTIONS(4926), + [anon_sym_int] = ACTIONS(4926), + [anon_sym_uint] = ACTIONS(4926), + [anon_sym_float] = ACTIONS(4926), + [anon_sym_range] = ACTIONS(4926), + [anon_sym_i8] = ACTIONS(4926), + [anon_sym_i16] = ACTIONS(4926), + [anon_sym_i32] = ACTIONS(4926), + [anon_sym_i64] = ACTIONS(4926), + [anon_sym_u8] = ACTIONS(4926), + [anon_sym_u16] = ACTIONS(4926), + [anon_sym_u32] = ACTIONS(4926), + [anon_sym_u64] = ACTIONS(4926), + [anon_sym_isize] = ACTIONS(4926), + [anon_sym_usize] = ACTIONS(4926), + [anon_sym_f32] = ACTIONS(4926), + [anon_sym_f64] = ACTIONS(4926), + [anon_sym_c_char] = ACTIONS(4926), + [anon_sym_c_schar] = ACTIONS(4926), + [anon_sym_c_uchar] = ACTIONS(4926), + [anon_sym_c_short] = ACTIONS(4926), + [anon_sym_c_ushort] = ACTIONS(4926), + [anon_sym_c_int] = ACTIONS(4926), + [anon_sym_c_uint] = ACTIONS(4926), + [anon_sym_c_long] = ACTIONS(4926), + [anon_sym_c_ulong] = ACTIONS(4926), + [anon_sym_c_longlong] = ACTIONS(4926), + [anon_sym_c_ulonglong] = ACTIONS(4926), + [anon_sym_c_float] = ACTIONS(4926), + [anon_sym_c_double] = ACTIONS(4926), + [anon_sym_c_longdouble] = ACTIONS(4926), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_yield] = ACTIONS(4926), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_continue] = ACTIONS(4926), + [anon_sym_defer] = ACTIONS(4926), + [anon_sym_errdefer] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_while] = ACTIONS(4926), + [anon_sym_expand] = ACTIONS(4926), + [anon_sym_for] = ACTIONS(4926), + [anon_sym_match] = ACTIONS(4926), + [anon_sym_AMP] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_unreachable] = ACTIONS(4926), + [anon_sym_undefined] = ACTIONS(4926), + [sym_sink] = ACTIONS(4926), + [sym_integer] = ACTIONS(4926), + [sym_float] = ACTIONS(4924), + [anon_sym_DQUOTE] = ACTIONS(4924), + [sym_multiline_string] = ACTIONS(4924), + [sym_character] = ACTIONS(4924), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5539), + [sym__newline] = ACTIONS(4924), }, - [STATE(2212)] = { - [aux_sym_import_declaration_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(5502), - [anon_sym_func] = ACTIONS(5502), - [anon_sym_BANG] = ACTIONS(5504), - [anon_sym_struct] = ACTIONS(5502), - [anon_sym_LPAREN] = ACTIONS(5504), - [anon_sym_LBRACE] = ACTIONS(5504), - [anon_sym_RBRACE] = ACTIONS(5504), - [anon_sym_DASH] = ACTIONS(5504), - [anon_sym_DOLLAR] = ACTIONS(5504), - [anon_sym_LBRACK] = ACTIONS(5504), - [anon_sym_void] = ACTIONS(5502), - [anon_sym_noreturn] = ACTIONS(5502), - [anon_sym_type] = ACTIONS(5502), - [anon_sym_anyopaque] = ACTIONS(5502), - [anon_sym_bool] = ACTIONS(5502), - [anon_sym_int] = ACTIONS(5502), - [anon_sym_uint] = ACTIONS(5502), - [anon_sym_float] = ACTIONS(5502), - [anon_sym_range] = ACTIONS(5502), - [anon_sym_i8] = ACTIONS(5502), - [anon_sym_i16] = ACTIONS(5502), - [anon_sym_i32] = ACTIONS(5502), - [anon_sym_i64] = ACTIONS(5502), - [anon_sym_u8] = ACTIONS(5502), - [anon_sym_u16] = ACTIONS(5502), - [anon_sym_u32] = ACTIONS(5502), - [anon_sym_u64] = ACTIONS(5502), - [anon_sym_isize] = ACTIONS(5502), - [anon_sym_usize] = ACTIONS(5502), - [anon_sym_f32] = ACTIONS(5502), - [anon_sym_f64] = ACTIONS(5502), - [anon_sym_c_char] = ACTIONS(5502), - [anon_sym_c_schar] = ACTIONS(5502), - [anon_sym_c_uchar] = ACTIONS(5502), - [anon_sym_c_short] = ACTIONS(5502), - [anon_sym_c_ushort] = ACTIONS(5502), - [anon_sym_c_int] = ACTIONS(5502), - [anon_sym_c_uint] = ACTIONS(5502), - [anon_sym_c_long] = ACTIONS(5502), - [anon_sym_c_ulong] = ACTIONS(5502), - [anon_sym_c_longlong] = ACTIONS(5502), - [anon_sym_c_ulonglong] = ACTIONS(5502), - [anon_sym_c_float] = ACTIONS(5502), - [anon_sym_c_double] = ACTIONS(5502), - [anon_sym_c_longdouble] = ACTIONS(5502), - [anon_sym_return] = ACTIONS(5502), - [anon_sym_yield] = ACTIONS(5502), - [anon_sym_break] = ACTIONS(5502), - [anon_sym_continue] = ACTIONS(5502), - [anon_sym_defer] = ACTIONS(5502), - [anon_sym_errdefer] = ACTIONS(5502), - [anon_sym_if] = ACTIONS(5502), - [anon_sym_else] = ACTIONS(5542), - [anon_sym_while] = ACTIONS(5502), - [anon_sym_expand] = ACTIONS(5502), - [anon_sym_for] = ACTIONS(5502), - [anon_sym_match] = ACTIONS(5502), - [anon_sym_AMP] = ACTIONS(5504), - [anon_sym_TILDE] = ACTIONS(5504), - [anon_sym_try] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5504), - [anon_sym_true] = ACTIONS(5502), - [anon_sym_false] = ACTIONS(5502), - [anon_sym_null] = ACTIONS(5502), - [anon_sym_unreachable] = ACTIONS(5502), - [anon_sym_undefined] = ACTIONS(5502), - [sym_sink] = ACTIONS(5502), - [sym_integer] = ACTIONS(5502), - [sym_float] = ACTIONS(5504), - [anon_sym_DQUOTE] = ACTIONS(5504), - [sym_multiline_string] = ACTIONS(5504), - [sym_character] = ACTIONS(5504), + [STATE(6760)] = { + [ts_builtin_sym_end] = ACTIONS(5636), + [sym_identifier] = ACTIONS(5638), + [anon_sym_import] = ACTIONS(5638), + [anon_sym_test] = ACTIONS(5638), + [anon_sym_hide] = ACTIONS(5638), + [anon_sym_func] = ACTIONS(5638), + [anon_sym_BANG] = ACTIONS(5636), + [anon_sym_struct] = ACTIONS(5638), + [anon_sym_LPAREN] = ACTIONS(5636), + [anon_sym_RPAREN] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_DOLLAR] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_void] = ACTIONS(5638), + [anon_sym_noreturn] = ACTIONS(5638), + [anon_sym_type] = ACTIONS(5638), + [anon_sym_anyopaque] = ACTIONS(5638), + [anon_sym_bool] = ACTIONS(5638), + [anon_sym_int] = ACTIONS(5638), + [anon_sym_uint] = ACTIONS(5638), + [anon_sym_float] = ACTIONS(5638), + [anon_sym_range] = ACTIONS(5638), + [anon_sym_i8] = ACTIONS(5638), + [anon_sym_i16] = ACTIONS(5638), + [anon_sym_i32] = ACTIONS(5638), + [anon_sym_i64] = ACTIONS(5638), + [anon_sym_u8] = ACTIONS(5638), + [anon_sym_u16] = ACTIONS(5638), + [anon_sym_u32] = ACTIONS(5638), + [anon_sym_u64] = ACTIONS(5638), + [anon_sym_isize] = ACTIONS(5638), + [anon_sym_usize] = ACTIONS(5638), + [anon_sym_f32] = ACTIONS(5638), + [anon_sym_f64] = ACTIONS(5638), + [anon_sym_c_char] = ACTIONS(5638), + [anon_sym_c_schar] = ACTIONS(5638), + [anon_sym_c_uchar] = ACTIONS(5638), + [anon_sym_c_short] = ACTIONS(5638), + [anon_sym_c_ushort] = ACTIONS(5638), + [anon_sym_c_int] = ACTIONS(5638), + [anon_sym_c_uint] = ACTIONS(5638), + [anon_sym_c_long] = ACTIONS(5638), + [anon_sym_c_ulong] = ACTIONS(5638), + [anon_sym_c_longlong] = ACTIONS(5638), + [anon_sym_c_ulonglong] = ACTIONS(5638), + [anon_sym_c_float] = ACTIONS(5638), + [anon_sym_c_double] = ACTIONS(5638), + [anon_sym_c_longdouble] = ACTIONS(5638), + [anon_sym_return] = ACTIONS(5638), + [anon_sym_yield] = ACTIONS(5638), + [anon_sym_break] = ACTIONS(5638), + [anon_sym_continue] = ACTIONS(5638), + [anon_sym_defer] = ACTIONS(5638), + [anon_sym_errdefer] = ACTIONS(5638), + [anon_sym_if] = ACTIONS(5638), + [anon_sym_else] = ACTIONS(5638), + [anon_sym_while] = ACTIONS(5638), + [anon_sym_expand] = ACTIONS(5638), + [anon_sym_for] = ACTIONS(5638), + [anon_sym_match] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_TILDE] = ACTIONS(5636), + [anon_sym_try] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_true] = ACTIONS(5638), + [anon_sym_false] = ACTIONS(5638), + [anon_sym_null] = ACTIONS(5638), + [anon_sym_unreachable] = ACTIONS(5638), + [anon_sym_undefined] = ACTIONS(5638), + [sym_sink] = ACTIONS(5638), + [sym_integer] = ACTIONS(5638), + [sym_float] = ACTIONS(5636), + [anon_sym_DQUOTE] = ACTIONS(5636), + [sym_multiline_string] = ACTIONS(5636), + [sym_character] = ACTIONS(5636), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5544), + [sym__newline] = ACTIONS(5636), }, - [STATE(2213)] = { - [sym_identifier] = ACTIONS(4164), - [anon_sym_func] = ACTIONS(4164), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_LPAREN] = 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_noreturn] = 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_COLON] = ACTIONS(4166), - [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_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), - [anon_sym_null] = ACTIONS(4164), - [anon_sym_unreachable] = ACTIONS(4164), - [anon_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), + [STATE(6761)] = { + [ts_builtin_sym_end] = ACTIONS(4516), + [sym_identifier] = ACTIONS(4518), + [anon_sym_import] = ACTIONS(4518), + [anon_sym_test] = ACTIONS(4518), + [anon_sym_hide] = ACTIONS(4518), + [anon_sym_func] = ACTIONS(4518), + [anon_sym_BANG] = ACTIONS(4516), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym_RPAREN] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4516), + [anon_sym_DOLLAR] = ACTIONS(4516), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_void] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym_type] = ACTIONS(4518), + [anon_sym_anyopaque] = ACTIONS(4518), + [anon_sym_bool] = ACTIONS(4518), + [anon_sym_int] = ACTIONS(4518), + [anon_sym_uint] = ACTIONS(4518), + [anon_sym_float] = ACTIONS(4518), + [anon_sym_range] = ACTIONS(4518), + [anon_sym_i8] = ACTIONS(4518), + [anon_sym_i16] = ACTIONS(4518), + [anon_sym_i32] = ACTIONS(4518), + [anon_sym_i64] = ACTIONS(4518), + [anon_sym_u8] = ACTIONS(4518), + [anon_sym_u16] = ACTIONS(4518), + [anon_sym_u32] = ACTIONS(4518), + [anon_sym_u64] = ACTIONS(4518), + [anon_sym_isize] = ACTIONS(4518), + [anon_sym_usize] = ACTIONS(4518), + [anon_sym_f32] = ACTIONS(4518), + [anon_sym_f64] = ACTIONS(4518), + [anon_sym_c_char] = ACTIONS(4518), + [anon_sym_c_schar] = ACTIONS(4518), + [anon_sym_c_uchar] = ACTIONS(4518), + [anon_sym_c_short] = ACTIONS(4518), + [anon_sym_c_ushort] = ACTIONS(4518), + [anon_sym_c_int] = ACTIONS(4518), + [anon_sym_c_uint] = ACTIONS(4518), + [anon_sym_c_long] = ACTIONS(4518), + [anon_sym_c_ulong] = ACTIONS(4518), + [anon_sym_c_longlong] = ACTIONS(4518), + [anon_sym_c_ulonglong] = ACTIONS(4518), + [anon_sym_c_float] = ACTIONS(4518), + [anon_sym_c_double] = ACTIONS(4518), + [anon_sym_c_longdouble] = ACTIONS(4518), + [anon_sym_return] = ACTIONS(4518), + [anon_sym_yield] = ACTIONS(4518), + [anon_sym_break] = ACTIONS(4518), + [anon_sym_continue] = ACTIONS(4518), + [anon_sym_defer] = ACTIONS(4518), + [anon_sym_errdefer] = ACTIONS(4518), + [anon_sym_if] = ACTIONS(4518), + [anon_sym_else] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4518), + [anon_sym_expand] = ACTIONS(4518), + [anon_sym_for] = ACTIONS(4518), + [anon_sym_match] = ACTIONS(4518), + [anon_sym_AMP] = ACTIONS(4516), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_try] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4516), + [anon_sym_true] = ACTIONS(4518), + [anon_sym_false] = ACTIONS(4518), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_unreachable] = ACTIONS(4518), + [anon_sym_undefined] = ACTIONS(4518), + [sym_sink] = ACTIONS(4518), + [sym_integer] = ACTIONS(4518), + [sym_float] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym_multiline_string] = ACTIONS(4516), + [sym_character] = ACTIONS(4516), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4162), + [sym__newline] = ACTIONS(4516), }, - [STATE(2214)] = { - [aux_sym_import_declaration_repeat1] = STATE(4848), - [sym_identifier] = ACTIONS(5547), - [anon_sym_func] = ACTIONS(5547), - [anon_sym_BANG] = ACTIONS(5549), - [anon_sym_struct] = ACTIONS(5547), - [anon_sym_LPAREN] = ACTIONS(5549), - [anon_sym_LBRACE] = ACTIONS(5549), - [anon_sym_RBRACE] = ACTIONS(5549), - [anon_sym_DASH] = ACTIONS(5549), - [anon_sym_DOLLAR] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_void] = ACTIONS(5547), - [anon_sym_noreturn] = ACTIONS(5547), - [anon_sym_type] = ACTIONS(5547), - [anon_sym_anyopaque] = ACTIONS(5547), - [anon_sym_bool] = ACTIONS(5547), - [anon_sym_int] = ACTIONS(5547), - [anon_sym_uint] = ACTIONS(5547), - [anon_sym_float] = ACTIONS(5547), - [anon_sym_range] = ACTIONS(5547), - [anon_sym_i8] = ACTIONS(5547), - [anon_sym_i16] = ACTIONS(5547), - [anon_sym_i32] = ACTIONS(5547), - [anon_sym_i64] = ACTIONS(5547), - [anon_sym_u8] = ACTIONS(5547), - [anon_sym_u16] = ACTIONS(5547), - [anon_sym_u32] = ACTIONS(5547), - [anon_sym_u64] = ACTIONS(5547), - [anon_sym_isize] = ACTIONS(5547), - [anon_sym_usize] = ACTIONS(5547), - [anon_sym_f32] = ACTIONS(5547), - [anon_sym_f64] = ACTIONS(5547), - [anon_sym_c_char] = ACTIONS(5547), - [anon_sym_c_schar] = ACTIONS(5547), - [anon_sym_c_uchar] = ACTIONS(5547), - [anon_sym_c_short] = ACTIONS(5547), - [anon_sym_c_ushort] = ACTIONS(5547), - [anon_sym_c_int] = ACTIONS(5547), - [anon_sym_c_uint] = ACTIONS(5547), - [anon_sym_c_long] = ACTIONS(5547), - [anon_sym_c_ulong] = ACTIONS(5547), - [anon_sym_c_longlong] = ACTIONS(5547), - [anon_sym_c_ulonglong] = ACTIONS(5547), - [anon_sym_c_float] = ACTIONS(5547), - [anon_sym_c_double] = ACTIONS(5547), - [anon_sym_c_longdouble] = ACTIONS(5547), - [anon_sym_return] = ACTIONS(5547), - [anon_sym_yield] = ACTIONS(5547), - [anon_sym_break] = ACTIONS(5547), - [anon_sym_continue] = ACTIONS(5547), - [anon_sym_defer] = ACTIONS(5547), - [anon_sym_errdefer] = ACTIONS(5547), - [anon_sym_if] = ACTIONS(5547), - [anon_sym_else] = ACTIONS(5551), - [anon_sym_while] = ACTIONS(5547), - [anon_sym_expand] = ACTIONS(5547), - [anon_sym_for] = ACTIONS(5547), - [anon_sym_match] = ACTIONS(5547), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_TILDE] = ACTIONS(5549), - [anon_sym_try] = ACTIONS(5547), - [anon_sym_DOT] = ACTIONS(5549), - [anon_sym_true] = ACTIONS(5547), - [anon_sym_false] = ACTIONS(5547), - [anon_sym_null] = ACTIONS(5547), - [anon_sym_unreachable] = ACTIONS(5547), - [anon_sym_undefined] = ACTIONS(5547), - [sym_sink] = ACTIONS(5547), - [sym_integer] = ACTIONS(5547), - [sym_float] = ACTIONS(5549), - [anon_sym_DQUOTE] = ACTIONS(5549), - [sym_multiline_string] = ACTIONS(5549), - [sym_character] = ACTIONS(5549), + [STATE(6762)] = { + [ts_builtin_sym_end] = ACTIONS(4928), + [sym_identifier] = ACTIONS(4930), + [anon_sym_import] = ACTIONS(4930), + [anon_sym_test] = ACTIONS(4930), + [anon_sym_hide] = ACTIONS(4930), + [anon_sym_func] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_struct] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_void] = ACTIONS(4930), + [anon_sym_noreturn] = ACTIONS(4930), + [anon_sym_type] = ACTIONS(4930), + [anon_sym_anyopaque] = ACTIONS(4930), + [anon_sym_bool] = ACTIONS(4930), + [anon_sym_int] = ACTIONS(4930), + [anon_sym_uint] = ACTIONS(4930), + [anon_sym_float] = ACTIONS(4930), + [anon_sym_range] = ACTIONS(4930), + [anon_sym_i8] = ACTIONS(4930), + [anon_sym_i16] = ACTIONS(4930), + [anon_sym_i32] = ACTIONS(4930), + [anon_sym_i64] = ACTIONS(4930), + [anon_sym_u8] = ACTIONS(4930), + [anon_sym_u16] = ACTIONS(4930), + [anon_sym_u32] = ACTIONS(4930), + [anon_sym_u64] = ACTIONS(4930), + [anon_sym_isize] = ACTIONS(4930), + [anon_sym_usize] = ACTIONS(4930), + [anon_sym_f32] = ACTIONS(4930), + [anon_sym_f64] = ACTIONS(4930), + [anon_sym_c_char] = ACTIONS(4930), + [anon_sym_c_schar] = ACTIONS(4930), + [anon_sym_c_uchar] = ACTIONS(4930), + [anon_sym_c_short] = ACTIONS(4930), + [anon_sym_c_ushort] = ACTIONS(4930), + [anon_sym_c_int] = ACTIONS(4930), + [anon_sym_c_uint] = ACTIONS(4930), + [anon_sym_c_long] = ACTIONS(4930), + [anon_sym_c_ulong] = ACTIONS(4930), + [anon_sym_c_longlong] = ACTIONS(4930), + [anon_sym_c_ulonglong] = ACTIONS(4930), + [anon_sym_c_float] = ACTIONS(4930), + [anon_sym_c_double] = ACTIONS(4930), + [anon_sym_c_longdouble] = ACTIONS(4930), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_yield] = ACTIONS(4930), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_defer] = ACTIONS(4930), + [anon_sym_errdefer] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_expand] = ACTIONS(4930), + [anon_sym_for] = ACTIONS(4930), + [anon_sym_match] = ACTIONS(4930), + [anon_sym_AMP] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_unreachable] = ACTIONS(4930), + [anon_sym_undefined] = ACTIONS(4930), + [sym_sink] = ACTIONS(4930), + [sym_integer] = ACTIONS(4930), + [sym_float] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(4928), + [sym_multiline_string] = ACTIONS(4928), + [sym_character] = ACTIONS(4928), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5554), + [sym__newline] = ACTIONS(4928), }, - [STATE(2215)] = { - [aux_sym_import_declaration_repeat1] = STATE(4966), + [STATE(6763)] = { + [ts_builtin_sym_end] = ACTIONS(4932), + [sym_identifier] = ACTIONS(4934), + [anon_sym_import] = ACTIONS(4934), + [anon_sym_test] = ACTIONS(4934), + [anon_sym_hide] = ACTIONS(4934), + [anon_sym_func] = ACTIONS(4934), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_struct] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_void] = ACTIONS(4934), + [anon_sym_noreturn] = ACTIONS(4934), + [anon_sym_type] = ACTIONS(4934), + [anon_sym_anyopaque] = ACTIONS(4934), + [anon_sym_bool] = ACTIONS(4934), + [anon_sym_int] = ACTIONS(4934), + [anon_sym_uint] = ACTIONS(4934), + [anon_sym_float] = ACTIONS(4934), + [anon_sym_range] = ACTIONS(4934), + [anon_sym_i8] = ACTIONS(4934), + [anon_sym_i16] = ACTIONS(4934), + [anon_sym_i32] = ACTIONS(4934), + [anon_sym_i64] = ACTIONS(4934), + [anon_sym_u8] = ACTIONS(4934), + [anon_sym_u16] = ACTIONS(4934), + [anon_sym_u32] = ACTIONS(4934), + [anon_sym_u64] = ACTIONS(4934), + [anon_sym_isize] = ACTIONS(4934), + [anon_sym_usize] = ACTIONS(4934), + [anon_sym_f32] = ACTIONS(4934), + [anon_sym_f64] = ACTIONS(4934), + [anon_sym_c_char] = ACTIONS(4934), + [anon_sym_c_schar] = ACTIONS(4934), + [anon_sym_c_uchar] = ACTIONS(4934), + [anon_sym_c_short] = ACTIONS(4934), + [anon_sym_c_ushort] = ACTIONS(4934), + [anon_sym_c_int] = ACTIONS(4934), + [anon_sym_c_uint] = ACTIONS(4934), + [anon_sym_c_long] = ACTIONS(4934), + [anon_sym_c_ulong] = ACTIONS(4934), + [anon_sym_c_longlong] = ACTIONS(4934), + [anon_sym_c_ulonglong] = ACTIONS(4934), + [anon_sym_c_float] = ACTIONS(4934), + [anon_sym_c_double] = ACTIONS(4934), + [anon_sym_c_longdouble] = ACTIONS(4934), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_yield] = ACTIONS(4934), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_continue] = ACTIONS(4934), + [anon_sym_defer] = ACTIONS(4934), + [anon_sym_errdefer] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_while] = ACTIONS(4934), + [anon_sym_expand] = ACTIONS(4934), + [anon_sym_for] = ACTIONS(4934), + [anon_sym_match] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4934), + [anon_sym_false] = ACTIONS(4934), + [anon_sym_null] = ACTIONS(4934), + [anon_sym_unreachable] = ACTIONS(4934), + [anon_sym_undefined] = ACTIONS(4934), + [sym_sink] = ACTIONS(4934), + [sym_integer] = ACTIONS(4934), + [sym_float] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [sym_multiline_string] = ACTIONS(4932), + [sym_character] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4932), + }, + [STATE(6764)] = { + [ts_builtin_sym_end] = ACTIONS(4938), + [sym_identifier] = ACTIONS(4940), + [anon_sym_import] = ACTIONS(4940), + [anon_sym_test] = ACTIONS(4940), + [anon_sym_hide] = ACTIONS(4940), + [anon_sym_func] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4938), + [anon_sym_struct] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_void] = ACTIONS(4940), + [anon_sym_noreturn] = ACTIONS(4940), + [anon_sym_type] = ACTIONS(4940), + [anon_sym_anyopaque] = ACTIONS(4940), + [anon_sym_bool] = ACTIONS(4940), + [anon_sym_int] = ACTIONS(4940), + [anon_sym_uint] = ACTIONS(4940), + [anon_sym_float] = ACTIONS(4940), + [anon_sym_range] = ACTIONS(4940), + [anon_sym_i8] = ACTIONS(4940), + [anon_sym_i16] = ACTIONS(4940), + [anon_sym_i32] = ACTIONS(4940), + [anon_sym_i64] = ACTIONS(4940), + [anon_sym_u8] = ACTIONS(4940), + [anon_sym_u16] = ACTIONS(4940), + [anon_sym_u32] = ACTIONS(4940), + [anon_sym_u64] = ACTIONS(4940), + [anon_sym_isize] = ACTIONS(4940), + [anon_sym_usize] = ACTIONS(4940), + [anon_sym_f32] = ACTIONS(4940), + [anon_sym_f64] = ACTIONS(4940), + [anon_sym_c_char] = ACTIONS(4940), + [anon_sym_c_schar] = ACTIONS(4940), + [anon_sym_c_uchar] = ACTIONS(4940), + [anon_sym_c_short] = ACTIONS(4940), + [anon_sym_c_ushort] = ACTIONS(4940), + [anon_sym_c_int] = ACTIONS(4940), + [anon_sym_c_uint] = ACTIONS(4940), + [anon_sym_c_long] = ACTIONS(4940), + [anon_sym_c_ulong] = ACTIONS(4940), + [anon_sym_c_longlong] = ACTIONS(4940), + [anon_sym_c_ulonglong] = ACTIONS(4940), + [anon_sym_c_float] = ACTIONS(4940), + [anon_sym_c_double] = ACTIONS(4940), + [anon_sym_c_longdouble] = ACTIONS(4940), + [anon_sym_return] = ACTIONS(4940), + [anon_sym_yield] = ACTIONS(4940), + [anon_sym_break] = ACTIONS(4940), + [anon_sym_continue] = ACTIONS(4940), + [anon_sym_defer] = ACTIONS(4940), + [anon_sym_errdefer] = ACTIONS(4940), + [anon_sym_if] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_while] = ACTIONS(4940), + [anon_sym_expand] = ACTIONS(4940), + [anon_sym_for] = ACTIONS(4940), + [anon_sym_match] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_TILDE] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_unreachable] = ACTIONS(4940), + [anon_sym_undefined] = ACTIONS(4940), + [sym_sink] = ACTIONS(4940), + [sym_integer] = ACTIONS(4940), + [sym_float] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(4938), + [sym_multiline_string] = ACTIONS(4938), + [sym_character] = ACTIONS(4938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4938), + }, + [STATE(6765)] = { + [ts_builtin_sym_end] = ACTIONS(4942), + [sym_identifier] = ACTIONS(4944), + [anon_sym_import] = ACTIONS(4944), + [anon_sym_test] = ACTIONS(4944), + [anon_sym_hide] = ACTIONS(4944), + [anon_sym_func] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4942), + [anon_sym_struct] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_void] = ACTIONS(4944), + [anon_sym_noreturn] = ACTIONS(4944), + [anon_sym_type] = ACTIONS(4944), + [anon_sym_anyopaque] = ACTIONS(4944), + [anon_sym_bool] = ACTIONS(4944), + [anon_sym_int] = ACTIONS(4944), + [anon_sym_uint] = ACTIONS(4944), + [anon_sym_float] = ACTIONS(4944), + [anon_sym_range] = ACTIONS(4944), + [anon_sym_i8] = ACTIONS(4944), + [anon_sym_i16] = ACTIONS(4944), + [anon_sym_i32] = ACTIONS(4944), + [anon_sym_i64] = ACTIONS(4944), + [anon_sym_u8] = ACTIONS(4944), + [anon_sym_u16] = ACTIONS(4944), + [anon_sym_u32] = ACTIONS(4944), + [anon_sym_u64] = ACTIONS(4944), + [anon_sym_isize] = ACTIONS(4944), + [anon_sym_usize] = ACTIONS(4944), + [anon_sym_f32] = ACTIONS(4944), + [anon_sym_f64] = ACTIONS(4944), + [anon_sym_c_char] = ACTIONS(4944), + [anon_sym_c_schar] = ACTIONS(4944), + [anon_sym_c_uchar] = ACTIONS(4944), + [anon_sym_c_short] = ACTIONS(4944), + [anon_sym_c_ushort] = ACTIONS(4944), + [anon_sym_c_int] = ACTIONS(4944), + [anon_sym_c_uint] = ACTIONS(4944), + [anon_sym_c_long] = ACTIONS(4944), + [anon_sym_c_ulong] = ACTIONS(4944), + [anon_sym_c_longlong] = ACTIONS(4944), + [anon_sym_c_ulonglong] = ACTIONS(4944), + [anon_sym_c_float] = ACTIONS(4944), + [anon_sym_c_double] = ACTIONS(4944), + [anon_sym_c_longdouble] = ACTIONS(4944), + [anon_sym_return] = ACTIONS(4944), + [anon_sym_yield] = ACTIONS(4944), + [anon_sym_break] = ACTIONS(4944), + [anon_sym_continue] = ACTIONS(4944), + [anon_sym_defer] = ACTIONS(4944), + [anon_sym_errdefer] = ACTIONS(4944), + [anon_sym_if] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_while] = ACTIONS(4944), + [anon_sym_expand] = ACTIONS(4944), + [anon_sym_for] = ACTIONS(4944), + [anon_sym_match] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_TILDE] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_true] = ACTIONS(4944), + [anon_sym_false] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4944), + [anon_sym_unreachable] = ACTIONS(4944), + [anon_sym_undefined] = ACTIONS(4944), + [sym_sink] = ACTIONS(4944), + [sym_integer] = ACTIONS(4944), + [sym_float] = ACTIONS(4942), + [anon_sym_DQUOTE] = ACTIONS(4942), + [sym_multiline_string] = ACTIONS(4942), + [sym_character] = ACTIONS(4942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4942), + }, + [STATE(6766)] = { + [ts_builtin_sym_end] = ACTIONS(5030), + [sym_identifier] = ACTIONS(5032), + [anon_sym_import] = ACTIONS(5032), + [anon_sym_test] = ACTIONS(5032), + [anon_sym_hide] = ACTIONS(5032), + [anon_sym_func] = ACTIONS(5032), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_struct] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_void] = ACTIONS(5032), + [anon_sym_noreturn] = ACTIONS(5032), + [anon_sym_type] = ACTIONS(5032), + [anon_sym_anyopaque] = ACTIONS(5032), + [anon_sym_bool] = ACTIONS(5032), + [anon_sym_int] = ACTIONS(5032), + [anon_sym_uint] = ACTIONS(5032), + [anon_sym_float] = ACTIONS(5032), + [anon_sym_range] = ACTIONS(5032), + [anon_sym_i8] = ACTIONS(5032), + [anon_sym_i16] = ACTIONS(5032), + [anon_sym_i32] = ACTIONS(5032), + [anon_sym_i64] = ACTIONS(5032), + [anon_sym_u8] = ACTIONS(5032), + [anon_sym_u16] = ACTIONS(5032), + [anon_sym_u32] = ACTIONS(5032), + [anon_sym_u64] = ACTIONS(5032), + [anon_sym_isize] = ACTIONS(5032), + [anon_sym_usize] = ACTIONS(5032), + [anon_sym_f32] = ACTIONS(5032), + [anon_sym_f64] = ACTIONS(5032), + [anon_sym_c_char] = ACTIONS(5032), + [anon_sym_c_schar] = ACTIONS(5032), + [anon_sym_c_uchar] = ACTIONS(5032), + [anon_sym_c_short] = ACTIONS(5032), + [anon_sym_c_ushort] = ACTIONS(5032), + [anon_sym_c_int] = ACTIONS(5032), + [anon_sym_c_uint] = ACTIONS(5032), + [anon_sym_c_long] = ACTIONS(5032), + [anon_sym_c_ulong] = ACTIONS(5032), + [anon_sym_c_longlong] = ACTIONS(5032), + [anon_sym_c_ulonglong] = ACTIONS(5032), + [anon_sym_c_float] = ACTIONS(5032), + [anon_sym_c_double] = ACTIONS(5032), + [anon_sym_c_longdouble] = ACTIONS(5032), + [anon_sym_return] = ACTIONS(5032), + [anon_sym_yield] = ACTIONS(5032), + [anon_sym_break] = ACTIONS(5032), + [anon_sym_continue] = ACTIONS(5032), + [anon_sym_defer] = ACTIONS(5032), + [anon_sym_errdefer] = ACTIONS(5032), + [anon_sym_if] = ACTIONS(5032), + [anon_sym_else] = ACTIONS(5032), + [anon_sym_while] = ACTIONS(5032), + [anon_sym_expand] = ACTIONS(5032), + [anon_sym_for] = ACTIONS(5032), + [anon_sym_match] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_try] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_true] = ACTIONS(5032), + [anon_sym_false] = ACTIONS(5032), + [anon_sym_null] = ACTIONS(5032), + [anon_sym_unreachable] = ACTIONS(5032), + [anon_sym_undefined] = ACTIONS(5032), + [sym_sink] = ACTIONS(5032), + [sym_integer] = ACTIONS(5032), + [sym_float] = ACTIONS(5030), + [anon_sym_DQUOTE] = ACTIONS(5030), + [sym_multiline_string] = ACTIONS(5030), + [sym_character] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5030), + }, + [STATE(6767)] = { + [ts_builtin_sym_end] = ACTIONS(5420), + [sym_identifier] = ACTIONS(5422), + [anon_sym_import] = ACTIONS(5422), + [anon_sym_test] = ACTIONS(5422), + [anon_sym_hide] = ACTIONS(5422), + [anon_sym_func] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5420), + [anon_sym_struct] = ACTIONS(5422), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5420), + [anon_sym_DOLLAR] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_void] = ACTIONS(5422), + [anon_sym_noreturn] = ACTIONS(5422), + [anon_sym_type] = ACTIONS(5422), + [anon_sym_anyopaque] = ACTIONS(5422), + [anon_sym_bool] = ACTIONS(5422), + [anon_sym_int] = ACTIONS(5422), + [anon_sym_uint] = ACTIONS(5422), + [anon_sym_float] = ACTIONS(5422), + [anon_sym_range] = ACTIONS(5422), + [anon_sym_i8] = ACTIONS(5422), + [anon_sym_i16] = ACTIONS(5422), + [anon_sym_i32] = ACTIONS(5422), + [anon_sym_i64] = ACTIONS(5422), + [anon_sym_u8] = ACTIONS(5422), + [anon_sym_u16] = ACTIONS(5422), + [anon_sym_u32] = ACTIONS(5422), + [anon_sym_u64] = ACTIONS(5422), + [anon_sym_isize] = ACTIONS(5422), + [anon_sym_usize] = ACTIONS(5422), + [anon_sym_f32] = ACTIONS(5422), + [anon_sym_f64] = ACTIONS(5422), + [anon_sym_c_char] = ACTIONS(5422), + [anon_sym_c_schar] = ACTIONS(5422), + [anon_sym_c_uchar] = ACTIONS(5422), + [anon_sym_c_short] = ACTIONS(5422), + [anon_sym_c_ushort] = ACTIONS(5422), + [anon_sym_c_int] = ACTIONS(5422), + [anon_sym_c_uint] = ACTIONS(5422), + [anon_sym_c_long] = ACTIONS(5422), + [anon_sym_c_ulong] = ACTIONS(5422), + [anon_sym_c_longlong] = ACTIONS(5422), + [anon_sym_c_ulonglong] = ACTIONS(5422), + [anon_sym_c_float] = ACTIONS(5422), + [anon_sym_c_double] = ACTIONS(5422), + [anon_sym_c_longdouble] = ACTIONS(5422), + [anon_sym_return] = ACTIONS(5422), + [anon_sym_yield] = ACTIONS(5422), + [anon_sym_break] = ACTIONS(5422), + [anon_sym_continue] = ACTIONS(5422), + [anon_sym_defer] = ACTIONS(5422), + [anon_sym_errdefer] = ACTIONS(5422), + [anon_sym_if] = ACTIONS(5422), + [anon_sym_else] = ACTIONS(5422), + [anon_sym_while] = ACTIONS(5422), + [anon_sym_expand] = ACTIONS(5422), + [anon_sym_for] = ACTIONS(5422), + [anon_sym_match] = ACTIONS(5422), + [anon_sym_AMP] = ACTIONS(5420), + [anon_sym_TILDE] = ACTIONS(5420), + [anon_sym_try] = ACTIONS(5422), + [anon_sym_DOT] = ACTIONS(5420), + [anon_sym_true] = ACTIONS(5422), + [anon_sym_false] = ACTIONS(5422), + [anon_sym_null] = ACTIONS(5422), + [anon_sym_unreachable] = ACTIONS(5422), + [anon_sym_undefined] = ACTIONS(5422), + [sym_sink] = ACTIONS(5422), + [sym_integer] = ACTIONS(5422), + [sym_float] = ACTIONS(5420), + [anon_sym_DQUOTE] = ACTIONS(5420), + [sym_multiline_string] = ACTIONS(5420), + [sym_character] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5420), + }, + [STATE(6768)] = { + [ts_builtin_sym_end] = ACTIONS(4946), + [sym_identifier] = ACTIONS(4948), + [anon_sym_import] = ACTIONS(4948), + [anon_sym_test] = ACTIONS(4948), + [anon_sym_hide] = ACTIONS(4948), + [anon_sym_func] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4946), + [anon_sym_struct] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_RPAREN] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_DOLLAR] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_void] = ACTIONS(4948), + [anon_sym_noreturn] = ACTIONS(4948), + [anon_sym_type] = ACTIONS(4948), + [anon_sym_anyopaque] = ACTIONS(4948), + [anon_sym_bool] = ACTIONS(4948), + [anon_sym_int] = ACTIONS(4948), + [anon_sym_uint] = ACTIONS(4948), + [anon_sym_float] = ACTIONS(4948), + [anon_sym_range] = ACTIONS(4948), + [anon_sym_i8] = ACTIONS(4948), + [anon_sym_i16] = ACTIONS(4948), + [anon_sym_i32] = ACTIONS(4948), + [anon_sym_i64] = ACTIONS(4948), + [anon_sym_u8] = ACTIONS(4948), + [anon_sym_u16] = ACTIONS(4948), + [anon_sym_u32] = ACTIONS(4948), + [anon_sym_u64] = ACTIONS(4948), + [anon_sym_isize] = ACTIONS(4948), + [anon_sym_usize] = ACTIONS(4948), + [anon_sym_f32] = ACTIONS(4948), + [anon_sym_f64] = ACTIONS(4948), + [anon_sym_c_char] = ACTIONS(4948), + [anon_sym_c_schar] = ACTIONS(4948), + [anon_sym_c_uchar] = ACTIONS(4948), + [anon_sym_c_short] = ACTIONS(4948), + [anon_sym_c_ushort] = ACTIONS(4948), + [anon_sym_c_int] = ACTIONS(4948), + [anon_sym_c_uint] = ACTIONS(4948), + [anon_sym_c_long] = ACTIONS(4948), + [anon_sym_c_ulong] = ACTIONS(4948), + [anon_sym_c_longlong] = ACTIONS(4948), + [anon_sym_c_ulonglong] = ACTIONS(4948), + [anon_sym_c_float] = ACTIONS(4948), + [anon_sym_c_double] = ACTIONS(4948), + [anon_sym_c_longdouble] = ACTIONS(4948), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_yield] = ACTIONS(4948), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_defer] = ACTIONS(4948), + [anon_sym_errdefer] = ACTIONS(4948), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_while] = ACTIONS(4948), + [anon_sym_expand] = ACTIONS(4948), + [anon_sym_for] = ACTIONS(4948), + [anon_sym_match] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_TILDE] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4948), + [anon_sym_unreachable] = ACTIONS(4948), + [anon_sym_undefined] = ACTIONS(4948), + [sym_sink] = ACTIONS(4948), + [sym_integer] = ACTIONS(4948), + [sym_float] = ACTIONS(4946), + [anon_sym_DQUOTE] = ACTIONS(4946), + [sym_multiline_string] = ACTIONS(4946), + [sym_character] = ACTIONS(4946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4946), + }, + [STATE(6769)] = { + [ts_builtin_sym_end] = ACTIONS(4950), + [sym_identifier] = ACTIONS(4952), + [anon_sym_import] = ACTIONS(4952), + [anon_sym_test] = ACTIONS(4952), + [anon_sym_hide] = ACTIONS(4952), + [anon_sym_func] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4950), + [anon_sym_struct] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_RPAREN] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOLLAR] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_void] = ACTIONS(4952), + [anon_sym_noreturn] = ACTIONS(4952), + [anon_sym_type] = ACTIONS(4952), + [anon_sym_anyopaque] = ACTIONS(4952), + [anon_sym_bool] = ACTIONS(4952), + [anon_sym_int] = ACTIONS(4952), + [anon_sym_uint] = ACTIONS(4952), + [anon_sym_float] = ACTIONS(4952), + [anon_sym_range] = ACTIONS(4952), + [anon_sym_i8] = ACTIONS(4952), + [anon_sym_i16] = ACTIONS(4952), + [anon_sym_i32] = ACTIONS(4952), + [anon_sym_i64] = ACTIONS(4952), + [anon_sym_u8] = ACTIONS(4952), + [anon_sym_u16] = ACTIONS(4952), + [anon_sym_u32] = ACTIONS(4952), + [anon_sym_u64] = ACTIONS(4952), + [anon_sym_isize] = ACTIONS(4952), + [anon_sym_usize] = ACTIONS(4952), + [anon_sym_f32] = ACTIONS(4952), + [anon_sym_f64] = ACTIONS(4952), + [anon_sym_c_char] = ACTIONS(4952), + [anon_sym_c_schar] = ACTIONS(4952), + [anon_sym_c_uchar] = ACTIONS(4952), + [anon_sym_c_short] = ACTIONS(4952), + [anon_sym_c_ushort] = ACTIONS(4952), + [anon_sym_c_int] = ACTIONS(4952), + [anon_sym_c_uint] = ACTIONS(4952), + [anon_sym_c_long] = ACTIONS(4952), + [anon_sym_c_ulong] = ACTIONS(4952), + [anon_sym_c_longlong] = ACTIONS(4952), + [anon_sym_c_ulonglong] = ACTIONS(4952), + [anon_sym_c_float] = ACTIONS(4952), + [anon_sym_c_double] = ACTIONS(4952), + [anon_sym_c_longdouble] = ACTIONS(4952), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_yield] = ACTIONS(4952), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_defer] = ACTIONS(4952), + [anon_sym_errdefer] = ACTIONS(4952), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_while] = ACTIONS(4952), + [anon_sym_expand] = ACTIONS(4952), + [anon_sym_for] = ACTIONS(4952), + [anon_sym_match] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_TILDE] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_unreachable] = ACTIONS(4952), + [anon_sym_undefined] = ACTIONS(4952), + [sym_sink] = ACTIONS(4952), + [sym_integer] = ACTIONS(4952), + [sym_float] = ACTIONS(4950), + [anon_sym_DQUOTE] = ACTIONS(4950), + [sym_multiline_string] = ACTIONS(4950), + [sym_character] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4950), + }, + [STATE(6770)] = { + [ts_builtin_sym_end] = ACTIONS(5424), + [sym_identifier] = ACTIONS(5426), + [anon_sym_import] = ACTIONS(5426), + [anon_sym_test] = ACTIONS(5426), + [anon_sym_hide] = ACTIONS(5426), + [anon_sym_func] = ACTIONS(5426), + [anon_sym_BANG] = ACTIONS(5424), + [anon_sym_struct] = ACTIONS(5426), + [anon_sym_LPAREN] = ACTIONS(5424), + [anon_sym_RPAREN] = ACTIONS(5424), + [anon_sym_LBRACE] = ACTIONS(5424), + [anon_sym_RBRACE] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5424), + [anon_sym_DOLLAR] = ACTIONS(5424), + [anon_sym_LBRACK] = ACTIONS(5424), + [anon_sym_void] = ACTIONS(5426), + [anon_sym_noreturn] = ACTIONS(5426), + [anon_sym_type] = ACTIONS(5426), + [anon_sym_anyopaque] = ACTIONS(5426), + [anon_sym_bool] = ACTIONS(5426), + [anon_sym_int] = ACTIONS(5426), + [anon_sym_uint] = ACTIONS(5426), + [anon_sym_float] = ACTIONS(5426), + [anon_sym_range] = ACTIONS(5426), + [anon_sym_i8] = ACTIONS(5426), + [anon_sym_i16] = ACTIONS(5426), + [anon_sym_i32] = ACTIONS(5426), + [anon_sym_i64] = ACTIONS(5426), + [anon_sym_u8] = ACTIONS(5426), + [anon_sym_u16] = ACTIONS(5426), + [anon_sym_u32] = ACTIONS(5426), + [anon_sym_u64] = ACTIONS(5426), + [anon_sym_isize] = ACTIONS(5426), + [anon_sym_usize] = ACTIONS(5426), + [anon_sym_f32] = ACTIONS(5426), + [anon_sym_f64] = ACTIONS(5426), + [anon_sym_c_char] = ACTIONS(5426), + [anon_sym_c_schar] = ACTIONS(5426), + [anon_sym_c_uchar] = ACTIONS(5426), + [anon_sym_c_short] = ACTIONS(5426), + [anon_sym_c_ushort] = ACTIONS(5426), + [anon_sym_c_int] = ACTIONS(5426), + [anon_sym_c_uint] = ACTIONS(5426), + [anon_sym_c_long] = ACTIONS(5426), + [anon_sym_c_ulong] = ACTIONS(5426), + [anon_sym_c_longlong] = ACTIONS(5426), + [anon_sym_c_ulonglong] = ACTIONS(5426), + [anon_sym_c_float] = ACTIONS(5426), + [anon_sym_c_double] = ACTIONS(5426), + [anon_sym_c_longdouble] = ACTIONS(5426), + [anon_sym_return] = ACTIONS(5426), + [anon_sym_yield] = ACTIONS(5426), + [anon_sym_break] = ACTIONS(5426), + [anon_sym_continue] = ACTIONS(5426), + [anon_sym_defer] = ACTIONS(5426), + [anon_sym_errdefer] = ACTIONS(5426), + [anon_sym_if] = ACTIONS(5426), + [anon_sym_else] = ACTIONS(5426), + [anon_sym_while] = ACTIONS(5426), + [anon_sym_expand] = ACTIONS(5426), + [anon_sym_for] = ACTIONS(5426), + [anon_sym_match] = ACTIONS(5426), + [anon_sym_AMP] = ACTIONS(5424), + [anon_sym_TILDE] = ACTIONS(5424), + [anon_sym_try] = ACTIONS(5426), + [anon_sym_DOT] = ACTIONS(5424), + [anon_sym_true] = ACTIONS(5426), + [anon_sym_false] = ACTIONS(5426), + [anon_sym_null] = ACTIONS(5426), + [anon_sym_unreachable] = ACTIONS(5426), + [anon_sym_undefined] = ACTIONS(5426), + [sym_sink] = ACTIONS(5426), + [sym_integer] = ACTIONS(5426), + [sym_float] = ACTIONS(5424), + [anon_sym_DQUOTE] = ACTIONS(5424), + [sym_multiline_string] = ACTIONS(5424), + [sym_character] = ACTIONS(5424), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5424), + }, + [STATE(6771)] = { + [ts_builtin_sym_end] = ACTIONS(5226), + [sym_identifier] = ACTIONS(5228), + [anon_sym_import] = ACTIONS(5228), + [anon_sym_test] = ACTIONS(5228), + [anon_sym_hide] = ACTIONS(5228), + [anon_sym_func] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5226), + [anon_sym_struct] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_void] = ACTIONS(5228), + [anon_sym_noreturn] = ACTIONS(5228), + [anon_sym_type] = ACTIONS(5228), + [anon_sym_anyopaque] = ACTIONS(5228), + [anon_sym_bool] = ACTIONS(5228), + [anon_sym_int] = ACTIONS(5228), + [anon_sym_uint] = ACTIONS(5228), + [anon_sym_float] = ACTIONS(5228), + [anon_sym_range] = ACTIONS(5228), + [anon_sym_i8] = ACTIONS(5228), + [anon_sym_i16] = ACTIONS(5228), + [anon_sym_i32] = ACTIONS(5228), + [anon_sym_i64] = ACTIONS(5228), + [anon_sym_u8] = ACTIONS(5228), + [anon_sym_u16] = ACTIONS(5228), + [anon_sym_u32] = ACTIONS(5228), + [anon_sym_u64] = ACTIONS(5228), + [anon_sym_isize] = ACTIONS(5228), + [anon_sym_usize] = ACTIONS(5228), + [anon_sym_f32] = ACTIONS(5228), + [anon_sym_f64] = ACTIONS(5228), + [anon_sym_c_char] = ACTIONS(5228), + [anon_sym_c_schar] = ACTIONS(5228), + [anon_sym_c_uchar] = ACTIONS(5228), + [anon_sym_c_short] = ACTIONS(5228), + [anon_sym_c_ushort] = ACTIONS(5228), + [anon_sym_c_int] = ACTIONS(5228), + [anon_sym_c_uint] = ACTIONS(5228), + [anon_sym_c_long] = ACTIONS(5228), + [anon_sym_c_ulong] = ACTIONS(5228), + [anon_sym_c_longlong] = ACTIONS(5228), + [anon_sym_c_ulonglong] = ACTIONS(5228), + [anon_sym_c_float] = ACTIONS(5228), + [anon_sym_c_double] = ACTIONS(5228), + [anon_sym_c_longdouble] = ACTIONS(5228), + [anon_sym_return] = ACTIONS(5228), + [anon_sym_yield] = ACTIONS(5228), + [anon_sym_break] = ACTIONS(5228), + [anon_sym_continue] = ACTIONS(5228), + [anon_sym_defer] = ACTIONS(5228), + [anon_sym_errdefer] = ACTIONS(5228), + [anon_sym_if] = ACTIONS(5228), + [anon_sym_else] = ACTIONS(5228), + [anon_sym_while] = ACTIONS(5228), + [anon_sym_expand] = ACTIONS(5228), + [anon_sym_for] = ACTIONS(5228), + [anon_sym_match] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5226), + [anon_sym_TILDE] = ACTIONS(5226), + [anon_sym_try] = ACTIONS(5228), + [anon_sym_DOT] = ACTIONS(5226), + [anon_sym_true] = ACTIONS(5228), + [anon_sym_false] = ACTIONS(5228), + [anon_sym_null] = ACTIONS(5228), + [anon_sym_unreachable] = ACTIONS(5228), + [anon_sym_undefined] = ACTIONS(5228), + [sym_sink] = ACTIONS(5228), + [sym_integer] = ACTIONS(5228), + [sym_float] = ACTIONS(5226), + [anon_sym_DQUOTE] = ACTIONS(5226), + [sym_multiline_string] = ACTIONS(5226), + [sym_character] = ACTIONS(5226), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5226), + }, + [STATE(6772)] = { + [ts_builtin_sym_end] = ACTIONS(4670), + [sym_identifier] = ACTIONS(4672), + [anon_sym_import] = ACTIONS(4672), + [anon_sym_test] = ACTIONS(4672), + [anon_sym_hide] = ACTIONS(4672), + [anon_sym_func] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_struct] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_RPAREN] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_DOLLAR] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_void] = ACTIONS(4672), + [anon_sym_noreturn] = ACTIONS(4672), + [anon_sym_type] = ACTIONS(4672), + [anon_sym_anyopaque] = ACTIONS(4672), + [anon_sym_bool] = ACTIONS(4672), + [anon_sym_int] = ACTIONS(4672), + [anon_sym_uint] = ACTIONS(4672), + [anon_sym_float] = ACTIONS(4672), + [anon_sym_range] = ACTIONS(4672), + [anon_sym_i8] = ACTIONS(4672), + [anon_sym_i16] = ACTIONS(4672), + [anon_sym_i32] = ACTIONS(4672), + [anon_sym_i64] = ACTIONS(4672), + [anon_sym_u8] = ACTIONS(4672), + [anon_sym_u16] = ACTIONS(4672), + [anon_sym_u32] = ACTIONS(4672), + [anon_sym_u64] = ACTIONS(4672), + [anon_sym_isize] = ACTIONS(4672), + [anon_sym_usize] = ACTIONS(4672), + [anon_sym_f32] = ACTIONS(4672), + [anon_sym_f64] = ACTIONS(4672), + [anon_sym_c_char] = ACTIONS(4672), + [anon_sym_c_schar] = ACTIONS(4672), + [anon_sym_c_uchar] = ACTIONS(4672), + [anon_sym_c_short] = ACTIONS(4672), + [anon_sym_c_ushort] = ACTIONS(4672), + [anon_sym_c_int] = ACTIONS(4672), + [anon_sym_c_uint] = ACTIONS(4672), + [anon_sym_c_long] = ACTIONS(4672), + [anon_sym_c_ulong] = ACTIONS(4672), + [anon_sym_c_longlong] = ACTIONS(4672), + [anon_sym_c_ulonglong] = ACTIONS(4672), + [anon_sym_c_float] = ACTIONS(4672), + [anon_sym_c_double] = ACTIONS(4672), + [anon_sym_c_longdouble] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_yield] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_defer] = ACTIONS(4672), + [anon_sym_errdefer] = ACTIONS(4672), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_expand] = ACTIONS(4672), + [anon_sym_for] = ACTIONS(4672), + [anon_sym_match] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4670), + [anon_sym_TILDE] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4672), + [anon_sym_unreachable] = ACTIONS(4672), + [anon_sym_undefined] = ACTIONS(4672), + [sym_sink] = ACTIONS(4672), + [sym_integer] = ACTIONS(4672), + [sym_float] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(4670), + [sym_multiline_string] = ACTIONS(4670), + [sym_character] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4670), + }, + [STATE(6773)] = { + [ts_builtin_sym_end] = ACTIONS(5320), + [sym_identifier] = ACTIONS(5322), + [anon_sym_import] = ACTIONS(5322), + [anon_sym_test] = ACTIONS(5322), + [anon_sym_hide] = ACTIONS(5322), + [anon_sym_func] = ACTIONS(5322), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_LBRACE] = ACTIONS(5320), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_LBRACK] = ACTIONS(5320), + [anon_sym_void] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_type] = ACTIONS(5322), + [anon_sym_anyopaque] = ACTIONS(5322), + [anon_sym_bool] = ACTIONS(5322), + [anon_sym_int] = ACTIONS(5322), + [anon_sym_uint] = ACTIONS(5322), + [anon_sym_float] = ACTIONS(5322), + [anon_sym_range] = ACTIONS(5322), + [anon_sym_i8] = ACTIONS(5322), + [anon_sym_i16] = ACTIONS(5322), + [anon_sym_i32] = ACTIONS(5322), + [anon_sym_i64] = ACTIONS(5322), + [anon_sym_u8] = ACTIONS(5322), + [anon_sym_u16] = ACTIONS(5322), + [anon_sym_u32] = ACTIONS(5322), + [anon_sym_u64] = ACTIONS(5322), + [anon_sym_isize] = ACTIONS(5322), + [anon_sym_usize] = ACTIONS(5322), + [anon_sym_f32] = ACTIONS(5322), + [anon_sym_f64] = ACTIONS(5322), + [anon_sym_c_char] = ACTIONS(5322), + [anon_sym_c_schar] = ACTIONS(5322), + [anon_sym_c_uchar] = ACTIONS(5322), + [anon_sym_c_short] = ACTIONS(5322), + [anon_sym_c_ushort] = ACTIONS(5322), + [anon_sym_c_int] = ACTIONS(5322), + [anon_sym_c_uint] = ACTIONS(5322), + [anon_sym_c_long] = ACTIONS(5322), + [anon_sym_c_ulong] = ACTIONS(5322), + [anon_sym_c_longlong] = ACTIONS(5322), + [anon_sym_c_ulonglong] = ACTIONS(5322), + [anon_sym_c_float] = ACTIONS(5322), + [anon_sym_c_double] = ACTIONS(5322), + [anon_sym_c_longdouble] = ACTIONS(5322), + [anon_sym_return] = ACTIONS(5322), + [anon_sym_yield] = ACTIONS(5322), + [anon_sym_break] = ACTIONS(5322), + [anon_sym_continue] = ACTIONS(5322), + [anon_sym_defer] = ACTIONS(5322), + [anon_sym_errdefer] = ACTIONS(5322), + [anon_sym_if] = ACTIONS(5322), + [anon_sym_else] = ACTIONS(5322), + [anon_sym_while] = ACTIONS(5322), + [anon_sym_expand] = ACTIONS(5322), + [anon_sym_for] = ACTIONS(5322), + [anon_sym_match] = ACTIONS(5322), + [anon_sym_AMP] = ACTIONS(5320), + [anon_sym_TILDE] = ACTIONS(5320), + [anon_sym_try] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5320), + [anon_sym_true] = ACTIONS(5322), + [anon_sym_false] = ACTIONS(5322), + [anon_sym_null] = ACTIONS(5322), + [anon_sym_unreachable] = ACTIONS(5322), + [anon_sym_undefined] = ACTIONS(5322), + [sym_sink] = ACTIONS(5322), + [sym_integer] = ACTIONS(5322), + [sym_float] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [sym_multiline_string] = ACTIONS(5320), + [sym_character] = ACTIONS(5320), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5320), + }, + [STATE(6774)] = { + [ts_builtin_sym_end] = ACTIONS(4520), + [sym_identifier] = ACTIONS(4522), + [anon_sym_import] = ACTIONS(4522), + [anon_sym_test] = ACTIONS(4522), + [anon_sym_hide] = ACTIONS(4522), + [anon_sym_func] = ACTIONS(4522), + [anon_sym_BANG] = ACTIONS(4520), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym_RPAREN] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_DOLLAR] = ACTIONS(4520), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_void] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym_type] = ACTIONS(4522), + [anon_sym_anyopaque] = ACTIONS(4522), + [anon_sym_bool] = ACTIONS(4522), + [anon_sym_int] = ACTIONS(4522), + [anon_sym_uint] = ACTIONS(4522), + [anon_sym_float] = ACTIONS(4522), + [anon_sym_range] = ACTIONS(4522), + [anon_sym_i8] = ACTIONS(4522), + [anon_sym_i16] = ACTIONS(4522), + [anon_sym_i32] = ACTIONS(4522), + [anon_sym_i64] = ACTIONS(4522), + [anon_sym_u8] = ACTIONS(4522), + [anon_sym_u16] = ACTIONS(4522), + [anon_sym_u32] = ACTIONS(4522), + [anon_sym_u64] = ACTIONS(4522), + [anon_sym_isize] = ACTIONS(4522), + [anon_sym_usize] = ACTIONS(4522), + [anon_sym_f32] = ACTIONS(4522), + [anon_sym_f64] = ACTIONS(4522), + [anon_sym_c_char] = ACTIONS(4522), + [anon_sym_c_schar] = ACTIONS(4522), + [anon_sym_c_uchar] = ACTIONS(4522), + [anon_sym_c_short] = ACTIONS(4522), + [anon_sym_c_ushort] = ACTIONS(4522), + [anon_sym_c_int] = ACTIONS(4522), + [anon_sym_c_uint] = ACTIONS(4522), + [anon_sym_c_long] = ACTIONS(4522), + [anon_sym_c_ulong] = ACTIONS(4522), + [anon_sym_c_longlong] = ACTIONS(4522), + [anon_sym_c_ulonglong] = ACTIONS(4522), + [anon_sym_c_float] = ACTIONS(4522), + [anon_sym_c_double] = ACTIONS(4522), + [anon_sym_c_longdouble] = ACTIONS(4522), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_yield] = ACTIONS(4522), + [anon_sym_break] = ACTIONS(4522), + [anon_sym_continue] = ACTIONS(4522), + [anon_sym_defer] = ACTIONS(4522), + [anon_sym_errdefer] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_else] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_expand] = ACTIONS(4522), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_match] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_true] = ACTIONS(4522), + [anon_sym_false] = ACTIONS(4522), + [anon_sym_null] = ACTIONS(4522), + [anon_sym_unreachable] = ACTIONS(4522), + [anon_sym_undefined] = ACTIONS(4522), + [sym_sink] = ACTIONS(4522), + [sym_integer] = ACTIONS(4522), + [sym_float] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [sym_multiline_string] = ACTIONS(4520), + [sym_character] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4520), + }, + [STATE(6775)] = { + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_identifier] = ACTIONS(4526), + [anon_sym_import] = ACTIONS(4526), + [anon_sym_test] = ACTIONS(4526), + [anon_sym_hide] = ACTIONS(4526), + [anon_sym_func] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4524), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_void] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym_type] = ACTIONS(4526), + [anon_sym_anyopaque] = ACTIONS(4526), + [anon_sym_bool] = ACTIONS(4526), + [anon_sym_int] = ACTIONS(4526), + [anon_sym_uint] = ACTIONS(4526), + [anon_sym_float] = ACTIONS(4526), + [anon_sym_range] = ACTIONS(4526), + [anon_sym_i8] = ACTIONS(4526), + [anon_sym_i16] = ACTIONS(4526), + [anon_sym_i32] = ACTIONS(4526), + [anon_sym_i64] = ACTIONS(4526), + [anon_sym_u8] = ACTIONS(4526), + [anon_sym_u16] = ACTIONS(4526), + [anon_sym_u32] = ACTIONS(4526), + [anon_sym_u64] = ACTIONS(4526), + [anon_sym_isize] = ACTIONS(4526), + [anon_sym_usize] = ACTIONS(4526), + [anon_sym_f32] = ACTIONS(4526), + [anon_sym_f64] = ACTIONS(4526), + [anon_sym_c_char] = ACTIONS(4526), + [anon_sym_c_schar] = ACTIONS(4526), + [anon_sym_c_uchar] = ACTIONS(4526), + [anon_sym_c_short] = ACTIONS(4526), + [anon_sym_c_ushort] = ACTIONS(4526), + [anon_sym_c_int] = ACTIONS(4526), + [anon_sym_c_uint] = ACTIONS(4526), + [anon_sym_c_long] = ACTIONS(4526), + [anon_sym_c_ulong] = ACTIONS(4526), + [anon_sym_c_longlong] = ACTIONS(4526), + [anon_sym_c_ulonglong] = ACTIONS(4526), + [anon_sym_c_float] = ACTIONS(4526), + [anon_sym_c_double] = ACTIONS(4526), + [anon_sym_c_longdouble] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_yield] = ACTIONS(4526), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_defer] = ACTIONS(4526), + [anon_sym_errdefer] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_else] = ACTIONS(4526), + [anon_sym_while] = ACTIONS(4526), + [anon_sym_expand] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_match] = ACTIONS(4526), + [anon_sym_AMP] = ACTIONS(4524), + [anon_sym_TILDE] = ACTIONS(4524), + [anon_sym_try] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4524), + [anon_sym_true] = ACTIONS(4526), + [anon_sym_false] = ACTIONS(4526), + [anon_sym_null] = ACTIONS(4526), + [anon_sym_unreachable] = ACTIONS(4526), + [anon_sym_undefined] = ACTIONS(4526), + [sym_sink] = ACTIONS(4526), + [sym_integer] = ACTIONS(4526), + [sym_float] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4524), + [sym_multiline_string] = ACTIONS(4524), + [sym_character] = ACTIONS(4524), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4524), + }, + [STATE(6776)] = { + [ts_builtin_sym_end] = ACTIONS(4676), + [sym_identifier] = ACTIONS(4678), + [anon_sym_import] = ACTIONS(4678), + [anon_sym_test] = ACTIONS(4678), + [anon_sym_hide] = ACTIONS(4678), + [anon_sym_func] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4676), + [anon_sym_struct] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_DOLLAR] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_void] = ACTIONS(4678), + [anon_sym_noreturn] = ACTIONS(4678), + [anon_sym_type] = ACTIONS(4678), + [anon_sym_anyopaque] = ACTIONS(4678), + [anon_sym_bool] = ACTIONS(4678), + [anon_sym_int] = ACTIONS(4678), + [anon_sym_uint] = ACTIONS(4678), + [anon_sym_float] = ACTIONS(4678), + [anon_sym_range] = ACTIONS(4678), + [anon_sym_i8] = ACTIONS(4678), + [anon_sym_i16] = ACTIONS(4678), + [anon_sym_i32] = ACTIONS(4678), + [anon_sym_i64] = ACTIONS(4678), + [anon_sym_u8] = ACTIONS(4678), + [anon_sym_u16] = ACTIONS(4678), + [anon_sym_u32] = ACTIONS(4678), + [anon_sym_u64] = ACTIONS(4678), + [anon_sym_isize] = ACTIONS(4678), + [anon_sym_usize] = ACTIONS(4678), + [anon_sym_f32] = ACTIONS(4678), + [anon_sym_f64] = ACTIONS(4678), + [anon_sym_c_char] = ACTIONS(4678), + [anon_sym_c_schar] = ACTIONS(4678), + [anon_sym_c_uchar] = ACTIONS(4678), + [anon_sym_c_short] = ACTIONS(4678), + [anon_sym_c_ushort] = ACTIONS(4678), + [anon_sym_c_int] = ACTIONS(4678), + [anon_sym_c_uint] = ACTIONS(4678), + [anon_sym_c_long] = ACTIONS(4678), + [anon_sym_c_ulong] = ACTIONS(4678), + [anon_sym_c_longlong] = ACTIONS(4678), + [anon_sym_c_ulonglong] = ACTIONS(4678), + [anon_sym_c_float] = ACTIONS(4678), + [anon_sym_c_double] = ACTIONS(4678), + [anon_sym_c_longdouble] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_yield] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_defer] = ACTIONS(4678), + [anon_sym_errdefer] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_while] = ACTIONS(4678), + [anon_sym_expand] = ACTIONS(4678), + [anon_sym_for] = ACTIONS(4678), + [anon_sym_match] = ACTIONS(4678), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_TILDE] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_unreachable] = ACTIONS(4678), + [anon_sym_undefined] = ACTIONS(4678), + [sym_sink] = ACTIONS(4678), + [sym_integer] = ACTIONS(4678), + [sym_float] = ACTIONS(4676), + [anon_sym_DQUOTE] = ACTIONS(4676), + [sym_multiline_string] = ACTIONS(4676), + [sym_character] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4676), + }, + [STATE(6777)] = { + [ts_builtin_sym_end] = ACTIONS(5538), + [sym_identifier] = ACTIONS(5540), + [anon_sym_import] = ACTIONS(5540), + [anon_sym_test] = ACTIONS(5540), + [anon_sym_hide] = ACTIONS(5540), + [anon_sym_func] = ACTIONS(5540), + [anon_sym_BANG] = ACTIONS(5538), + [anon_sym_struct] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(5538), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5538), + [anon_sym_DOLLAR] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5538), + [anon_sym_void] = ACTIONS(5540), + [anon_sym_noreturn] = ACTIONS(5540), + [anon_sym_type] = ACTIONS(5540), + [anon_sym_anyopaque] = ACTIONS(5540), + [anon_sym_bool] = ACTIONS(5540), + [anon_sym_int] = ACTIONS(5540), + [anon_sym_uint] = ACTIONS(5540), + [anon_sym_float] = ACTIONS(5540), + [anon_sym_range] = ACTIONS(5540), + [anon_sym_i8] = ACTIONS(5540), + [anon_sym_i16] = ACTIONS(5540), + [anon_sym_i32] = ACTIONS(5540), + [anon_sym_i64] = ACTIONS(5540), + [anon_sym_u8] = ACTIONS(5540), + [anon_sym_u16] = ACTIONS(5540), + [anon_sym_u32] = ACTIONS(5540), + [anon_sym_u64] = ACTIONS(5540), + [anon_sym_isize] = ACTIONS(5540), + [anon_sym_usize] = ACTIONS(5540), + [anon_sym_f32] = ACTIONS(5540), + [anon_sym_f64] = ACTIONS(5540), + [anon_sym_c_char] = ACTIONS(5540), + [anon_sym_c_schar] = ACTIONS(5540), + [anon_sym_c_uchar] = ACTIONS(5540), + [anon_sym_c_short] = ACTIONS(5540), + [anon_sym_c_ushort] = ACTIONS(5540), + [anon_sym_c_int] = ACTIONS(5540), + [anon_sym_c_uint] = ACTIONS(5540), + [anon_sym_c_long] = ACTIONS(5540), + [anon_sym_c_ulong] = ACTIONS(5540), + [anon_sym_c_longlong] = ACTIONS(5540), + [anon_sym_c_ulonglong] = ACTIONS(5540), + [anon_sym_c_float] = ACTIONS(5540), + [anon_sym_c_double] = ACTIONS(5540), + [anon_sym_c_longdouble] = ACTIONS(5540), + [anon_sym_return] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5540), + [anon_sym_break] = ACTIONS(5540), + [anon_sym_continue] = ACTIONS(5540), + [anon_sym_defer] = ACTIONS(5540), + [anon_sym_errdefer] = ACTIONS(5540), + [anon_sym_if] = ACTIONS(5540), + [anon_sym_else] = ACTIONS(5540), + [anon_sym_while] = ACTIONS(5540), + [anon_sym_expand] = ACTIONS(5540), + [anon_sym_for] = ACTIONS(5540), + [anon_sym_match] = ACTIONS(5540), + [anon_sym_AMP] = ACTIONS(5538), + [anon_sym_TILDE] = ACTIONS(5538), + [anon_sym_try] = ACTIONS(5540), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_true] = ACTIONS(5540), + [anon_sym_false] = ACTIONS(5540), + [anon_sym_null] = ACTIONS(5540), + [anon_sym_unreachable] = ACTIONS(5540), + [anon_sym_undefined] = ACTIONS(5540), + [sym_sink] = ACTIONS(5540), + [sym_integer] = ACTIONS(5540), + [sym_float] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(5538), + [sym_multiline_string] = ACTIONS(5538), + [sym_character] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5538), + }, + [STATE(6778)] = { + [ts_builtin_sym_end] = ACTIONS(4954), + [sym_identifier] = ACTIONS(4956), + [anon_sym_import] = ACTIONS(4956), + [anon_sym_test] = ACTIONS(4956), + [anon_sym_hide] = ACTIONS(4956), + [anon_sym_func] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_struct] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_RPAREN] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOLLAR] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_void] = ACTIONS(4956), + [anon_sym_noreturn] = ACTIONS(4956), + [anon_sym_type] = ACTIONS(4956), + [anon_sym_anyopaque] = ACTIONS(4956), + [anon_sym_bool] = ACTIONS(4956), + [anon_sym_int] = ACTIONS(4956), + [anon_sym_uint] = ACTIONS(4956), + [anon_sym_float] = ACTIONS(4956), + [anon_sym_range] = ACTIONS(4956), + [anon_sym_i8] = ACTIONS(4956), + [anon_sym_i16] = ACTIONS(4956), + [anon_sym_i32] = ACTIONS(4956), + [anon_sym_i64] = ACTIONS(4956), + [anon_sym_u8] = ACTIONS(4956), + [anon_sym_u16] = ACTIONS(4956), + [anon_sym_u32] = ACTIONS(4956), + [anon_sym_u64] = ACTIONS(4956), + [anon_sym_isize] = ACTIONS(4956), + [anon_sym_usize] = ACTIONS(4956), + [anon_sym_f32] = ACTIONS(4956), + [anon_sym_f64] = ACTIONS(4956), + [anon_sym_c_char] = ACTIONS(4956), + [anon_sym_c_schar] = ACTIONS(4956), + [anon_sym_c_uchar] = ACTIONS(4956), + [anon_sym_c_short] = ACTIONS(4956), + [anon_sym_c_ushort] = ACTIONS(4956), + [anon_sym_c_int] = ACTIONS(4956), + [anon_sym_c_uint] = ACTIONS(4956), + [anon_sym_c_long] = ACTIONS(4956), + [anon_sym_c_ulong] = ACTIONS(4956), + [anon_sym_c_longlong] = ACTIONS(4956), + [anon_sym_c_ulonglong] = ACTIONS(4956), + [anon_sym_c_float] = ACTIONS(4956), + [anon_sym_c_double] = ACTIONS(4956), + [anon_sym_c_longdouble] = ACTIONS(4956), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_yield] = ACTIONS(4956), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_defer] = ACTIONS(4956), + [anon_sym_errdefer] = ACTIONS(4956), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_while] = ACTIONS(4956), + [anon_sym_expand] = ACTIONS(4956), + [anon_sym_for] = ACTIONS(4956), + [anon_sym_match] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_TILDE] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4956), + [anon_sym_unreachable] = ACTIONS(4956), + [anon_sym_undefined] = ACTIONS(4956), + [sym_sink] = ACTIONS(4956), + [sym_integer] = ACTIONS(4956), + [sym_float] = ACTIONS(4954), + [anon_sym_DQUOTE] = ACTIONS(4954), + [sym_multiline_string] = ACTIONS(4954), + [sym_character] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4954), + }, + [STATE(6779)] = { + [ts_builtin_sym_end] = ACTIONS(4958), + [sym_identifier] = ACTIONS(4960), + [anon_sym_import] = ACTIONS(4960), + [anon_sym_test] = ACTIONS(4960), + [anon_sym_hide] = ACTIONS(4960), + [anon_sym_func] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_struct] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_RPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_void] = ACTIONS(4960), + [anon_sym_noreturn] = ACTIONS(4960), + [anon_sym_type] = ACTIONS(4960), + [anon_sym_anyopaque] = ACTIONS(4960), + [anon_sym_bool] = ACTIONS(4960), + [anon_sym_int] = ACTIONS(4960), + [anon_sym_uint] = ACTIONS(4960), + [anon_sym_float] = ACTIONS(4960), + [anon_sym_range] = ACTIONS(4960), + [anon_sym_i8] = ACTIONS(4960), + [anon_sym_i16] = ACTIONS(4960), + [anon_sym_i32] = ACTIONS(4960), + [anon_sym_i64] = ACTIONS(4960), + [anon_sym_u8] = ACTIONS(4960), + [anon_sym_u16] = ACTIONS(4960), + [anon_sym_u32] = ACTIONS(4960), + [anon_sym_u64] = ACTIONS(4960), + [anon_sym_isize] = ACTIONS(4960), + [anon_sym_usize] = ACTIONS(4960), + [anon_sym_f32] = ACTIONS(4960), + [anon_sym_f64] = ACTIONS(4960), + [anon_sym_c_char] = ACTIONS(4960), + [anon_sym_c_schar] = ACTIONS(4960), + [anon_sym_c_uchar] = ACTIONS(4960), + [anon_sym_c_short] = ACTIONS(4960), + [anon_sym_c_ushort] = ACTIONS(4960), + [anon_sym_c_int] = ACTIONS(4960), + [anon_sym_c_uint] = ACTIONS(4960), + [anon_sym_c_long] = ACTIONS(4960), + [anon_sym_c_ulong] = ACTIONS(4960), + [anon_sym_c_longlong] = ACTIONS(4960), + [anon_sym_c_ulonglong] = ACTIONS(4960), + [anon_sym_c_float] = ACTIONS(4960), + [anon_sym_c_double] = ACTIONS(4960), + [anon_sym_c_longdouble] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_defer] = ACTIONS(4960), + [anon_sym_errdefer] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_expand] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_TILDE] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_unreachable] = ACTIONS(4960), + [anon_sym_undefined] = ACTIONS(4960), + [sym_sink] = ACTIONS(4960), + [sym_integer] = ACTIONS(4960), + [sym_float] = ACTIONS(4958), + [anon_sym_DQUOTE] = ACTIONS(4958), + [sym_multiline_string] = ACTIONS(4958), + [sym_character] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4958), + }, + [STATE(6780)] = { + [ts_builtin_sym_end] = ACTIONS(5542), + [sym_identifier] = ACTIONS(5544), + [anon_sym_import] = ACTIONS(5544), + [anon_sym_test] = ACTIONS(5544), + [anon_sym_hide] = ACTIONS(5544), + [anon_sym_func] = ACTIONS(5544), + [anon_sym_BANG] = ACTIONS(5542), + [anon_sym_struct] = ACTIONS(5544), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_RBRACE] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_DOLLAR] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_void] = ACTIONS(5544), + [anon_sym_noreturn] = ACTIONS(5544), + [anon_sym_type] = ACTIONS(5544), + [anon_sym_anyopaque] = ACTIONS(5544), + [anon_sym_bool] = ACTIONS(5544), + [anon_sym_int] = ACTIONS(5544), + [anon_sym_uint] = ACTIONS(5544), + [anon_sym_float] = ACTIONS(5544), + [anon_sym_range] = ACTIONS(5544), + [anon_sym_i8] = ACTIONS(5544), + [anon_sym_i16] = ACTIONS(5544), + [anon_sym_i32] = ACTIONS(5544), + [anon_sym_i64] = ACTIONS(5544), + [anon_sym_u8] = ACTIONS(5544), + [anon_sym_u16] = ACTIONS(5544), + [anon_sym_u32] = ACTIONS(5544), + [anon_sym_u64] = ACTIONS(5544), + [anon_sym_isize] = ACTIONS(5544), + [anon_sym_usize] = ACTIONS(5544), + [anon_sym_f32] = ACTIONS(5544), + [anon_sym_f64] = ACTIONS(5544), + [anon_sym_c_char] = ACTIONS(5544), + [anon_sym_c_schar] = ACTIONS(5544), + [anon_sym_c_uchar] = ACTIONS(5544), + [anon_sym_c_short] = ACTIONS(5544), + [anon_sym_c_ushort] = ACTIONS(5544), + [anon_sym_c_int] = ACTIONS(5544), + [anon_sym_c_uint] = ACTIONS(5544), + [anon_sym_c_long] = ACTIONS(5544), + [anon_sym_c_ulong] = ACTIONS(5544), + [anon_sym_c_longlong] = ACTIONS(5544), + [anon_sym_c_ulonglong] = ACTIONS(5544), + [anon_sym_c_float] = ACTIONS(5544), + [anon_sym_c_double] = ACTIONS(5544), + [anon_sym_c_longdouble] = ACTIONS(5544), + [anon_sym_return] = ACTIONS(5544), + [anon_sym_yield] = ACTIONS(5544), + [anon_sym_break] = ACTIONS(5544), + [anon_sym_continue] = ACTIONS(5544), + [anon_sym_defer] = ACTIONS(5544), + [anon_sym_errdefer] = ACTIONS(5544), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_else] = ACTIONS(5544), + [anon_sym_while] = ACTIONS(5544), + [anon_sym_expand] = ACTIONS(5544), + [anon_sym_for] = ACTIONS(5544), + [anon_sym_match] = ACTIONS(5544), + [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_TILDE] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5544), + [anon_sym_DOT] = ACTIONS(5542), + [anon_sym_true] = ACTIONS(5544), + [anon_sym_false] = ACTIONS(5544), + [anon_sym_null] = ACTIONS(5544), + [anon_sym_unreachable] = ACTIONS(5544), + [anon_sym_undefined] = ACTIONS(5544), + [sym_sink] = ACTIONS(5544), + [sym_integer] = ACTIONS(5544), + [sym_float] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [sym_multiline_string] = ACTIONS(5542), + [sym_character] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5542), + }, + [STATE(6781)] = { + [ts_builtin_sym_end] = ACTIONS(4962), + [sym_identifier] = ACTIONS(4964), + [anon_sym_import] = ACTIONS(4964), + [anon_sym_test] = ACTIONS(4964), + [anon_sym_hide] = ACTIONS(4964), + [anon_sym_func] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_struct] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_RPAREN] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_void] = ACTIONS(4964), + [anon_sym_noreturn] = ACTIONS(4964), + [anon_sym_type] = ACTIONS(4964), + [anon_sym_anyopaque] = ACTIONS(4964), + [anon_sym_bool] = ACTIONS(4964), + [anon_sym_int] = ACTIONS(4964), + [anon_sym_uint] = ACTIONS(4964), + [anon_sym_float] = ACTIONS(4964), + [anon_sym_range] = ACTIONS(4964), + [anon_sym_i8] = ACTIONS(4964), + [anon_sym_i16] = ACTIONS(4964), + [anon_sym_i32] = ACTIONS(4964), + [anon_sym_i64] = ACTIONS(4964), + [anon_sym_u8] = ACTIONS(4964), + [anon_sym_u16] = ACTIONS(4964), + [anon_sym_u32] = ACTIONS(4964), + [anon_sym_u64] = ACTIONS(4964), + [anon_sym_isize] = ACTIONS(4964), + [anon_sym_usize] = ACTIONS(4964), + [anon_sym_f32] = ACTIONS(4964), + [anon_sym_f64] = ACTIONS(4964), + [anon_sym_c_char] = ACTIONS(4964), + [anon_sym_c_schar] = ACTIONS(4964), + [anon_sym_c_uchar] = ACTIONS(4964), + [anon_sym_c_short] = ACTIONS(4964), + [anon_sym_c_ushort] = ACTIONS(4964), + [anon_sym_c_int] = ACTIONS(4964), + [anon_sym_c_uint] = ACTIONS(4964), + [anon_sym_c_long] = ACTIONS(4964), + [anon_sym_c_ulong] = ACTIONS(4964), + [anon_sym_c_longlong] = ACTIONS(4964), + [anon_sym_c_ulonglong] = ACTIONS(4964), + [anon_sym_c_float] = ACTIONS(4964), + [anon_sym_c_double] = ACTIONS(4964), + [anon_sym_c_longdouble] = ACTIONS(4964), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_yield] = ACTIONS(4964), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_defer] = ACTIONS(4964), + [anon_sym_errdefer] = ACTIONS(4964), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_while] = ACTIONS(4964), + [anon_sym_expand] = ACTIONS(4964), + [anon_sym_for] = ACTIONS(4964), + [anon_sym_match] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_TILDE] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4964), + [anon_sym_unreachable] = ACTIONS(4964), + [anon_sym_undefined] = ACTIONS(4964), + [sym_sink] = ACTIONS(4964), + [sym_integer] = ACTIONS(4964), + [sym_float] = ACTIONS(4962), + [anon_sym_DQUOTE] = ACTIONS(4962), + [sym_multiline_string] = ACTIONS(4962), + [sym_character] = ACTIONS(4962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4962), + }, + [STATE(6782)] = { + [ts_builtin_sym_end] = ACTIONS(5546), + [sym_identifier] = ACTIONS(5548), + [anon_sym_import] = ACTIONS(5548), + [anon_sym_test] = ACTIONS(5548), + [anon_sym_hide] = ACTIONS(5548), + [anon_sym_func] = ACTIONS(5548), + [anon_sym_BANG] = ACTIONS(5546), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_LPAREN] = ACTIONS(5546), + [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_LBRACE] = ACTIONS(5546), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5546), + [anon_sym_DOLLAR] = ACTIONS(5546), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_void] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_type] = ACTIONS(5548), + [anon_sym_anyopaque] = ACTIONS(5548), + [anon_sym_bool] = ACTIONS(5548), + [anon_sym_int] = ACTIONS(5548), + [anon_sym_uint] = ACTIONS(5548), + [anon_sym_float] = ACTIONS(5548), + [anon_sym_range] = ACTIONS(5548), + [anon_sym_i8] = ACTIONS(5548), + [anon_sym_i16] = ACTIONS(5548), + [anon_sym_i32] = ACTIONS(5548), + [anon_sym_i64] = ACTIONS(5548), + [anon_sym_u8] = ACTIONS(5548), + [anon_sym_u16] = ACTIONS(5548), + [anon_sym_u32] = ACTIONS(5548), + [anon_sym_u64] = ACTIONS(5548), + [anon_sym_isize] = ACTIONS(5548), + [anon_sym_usize] = ACTIONS(5548), + [anon_sym_f32] = ACTIONS(5548), + [anon_sym_f64] = ACTIONS(5548), + [anon_sym_c_char] = ACTIONS(5548), + [anon_sym_c_schar] = ACTIONS(5548), + [anon_sym_c_uchar] = ACTIONS(5548), + [anon_sym_c_short] = ACTIONS(5548), + [anon_sym_c_ushort] = ACTIONS(5548), + [anon_sym_c_int] = ACTIONS(5548), + [anon_sym_c_uint] = ACTIONS(5548), + [anon_sym_c_long] = ACTIONS(5548), + [anon_sym_c_ulong] = ACTIONS(5548), + [anon_sym_c_longlong] = ACTIONS(5548), + [anon_sym_c_ulonglong] = ACTIONS(5548), + [anon_sym_c_float] = ACTIONS(5548), + [anon_sym_c_double] = ACTIONS(5548), + [anon_sym_c_longdouble] = ACTIONS(5548), + [anon_sym_return] = ACTIONS(5548), + [anon_sym_yield] = ACTIONS(5548), + [anon_sym_break] = ACTIONS(5548), + [anon_sym_continue] = ACTIONS(5548), + [anon_sym_defer] = ACTIONS(5548), + [anon_sym_errdefer] = ACTIONS(5548), + [anon_sym_if] = ACTIONS(5548), + [anon_sym_else] = ACTIONS(5548), + [anon_sym_while] = ACTIONS(5548), + [anon_sym_expand] = ACTIONS(5548), + [anon_sym_for] = ACTIONS(5548), + [anon_sym_match] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(5546), + [anon_sym_TILDE] = ACTIONS(5546), + [anon_sym_try] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5546), + [anon_sym_true] = ACTIONS(5548), + [anon_sym_false] = ACTIONS(5548), + [anon_sym_null] = ACTIONS(5548), + [anon_sym_unreachable] = ACTIONS(5548), + [anon_sym_undefined] = ACTIONS(5548), + [sym_sink] = ACTIONS(5548), + [sym_integer] = ACTIONS(5548), + [sym_float] = ACTIONS(5546), + [anon_sym_DQUOTE] = ACTIONS(5546), + [sym_multiline_string] = ACTIONS(5546), + [sym_character] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5546), + }, + [STATE(6783)] = { + [ts_builtin_sym_end] = ACTIONS(4966), + [sym_identifier] = ACTIONS(4968), + [anon_sym_import] = ACTIONS(4968), + [anon_sym_test] = ACTIONS(4968), + [anon_sym_hide] = ACTIONS(4968), + [anon_sym_func] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_struct] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_RPAREN] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_void] = ACTIONS(4968), + [anon_sym_noreturn] = ACTIONS(4968), + [anon_sym_type] = ACTIONS(4968), + [anon_sym_anyopaque] = ACTIONS(4968), + [anon_sym_bool] = ACTIONS(4968), + [anon_sym_int] = ACTIONS(4968), + [anon_sym_uint] = ACTIONS(4968), + [anon_sym_float] = ACTIONS(4968), + [anon_sym_range] = ACTIONS(4968), + [anon_sym_i8] = ACTIONS(4968), + [anon_sym_i16] = ACTIONS(4968), + [anon_sym_i32] = ACTIONS(4968), + [anon_sym_i64] = ACTIONS(4968), + [anon_sym_u8] = ACTIONS(4968), + [anon_sym_u16] = ACTIONS(4968), + [anon_sym_u32] = ACTIONS(4968), + [anon_sym_u64] = ACTIONS(4968), + [anon_sym_isize] = ACTIONS(4968), + [anon_sym_usize] = ACTIONS(4968), + [anon_sym_f32] = ACTIONS(4968), + [anon_sym_f64] = ACTIONS(4968), + [anon_sym_c_char] = ACTIONS(4968), + [anon_sym_c_schar] = ACTIONS(4968), + [anon_sym_c_uchar] = ACTIONS(4968), + [anon_sym_c_short] = ACTIONS(4968), + [anon_sym_c_ushort] = ACTIONS(4968), + [anon_sym_c_int] = ACTIONS(4968), + [anon_sym_c_uint] = ACTIONS(4968), + [anon_sym_c_long] = ACTIONS(4968), + [anon_sym_c_ulong] = ACTIONS(4968), + [anon_sym_c_longlong] = ACTIONS(4968), + [anon_sym_c_ulonglong] = ACTIONS(4968), + [anon_sym_c_float] = ACTIONS(4968), + [anon_sym_c_double] = ACTIONS(4968), + [anon_sym_c_longdouble] = ACTIONS(4968), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_yield] = ACTIONS(4968), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_defer] = ACTIONS(4968), + [anon_sym_errdefer] = ACTIONS(4968), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_while] = ACTIONS(4968), + [anon_sym_expand] = ACTIONS(4968), + [anon_sym_for] = ACTIONS(4968), + [anon_sym_match] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_TILDE] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4968), + [anon_sym_unreachable] = ACTIONS(4968), + [anon_sym_undefined] = ACTIONS(4968), + [sym_sink] = ACTIONS(4968), + [sym_integer] = ACTIONS(4968), + [sym_float] = ACTIONS(4966), + [anon_sym_DQUOTE] = ACTIONS(4966), + [sym_multiline_string] = ACTIONS(4966), + [sym_character] = ACTIONS(4966), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4966), + }, + [STATE(6784)] = { + [ts_builtin_sym_end] = ACTIONS(5550), + [sym_identifier] = ACTIONS(5552), + [anon_sym_import] = ACTIONS(5552), + [anon_sym_test] = ACTIONS(5552), + [anon_sym_hide] = ACTIONS(5552), + [anon_sym_func] = ACTIONS(5552), + [anon_sym_BANG] = ACTIONS(5550), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_LPAREN] = ACTIONS(5550), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_LBRACE] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5550), + [anon_sym_DOLLAR] = ACTIONS(5550), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_void] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_type] = ACTIONS(5552), + [anon_sym_anyopaque] = ACTIONS(5552), + [anon_sym_bool] = ACTIONS(5552), + [anon_sym_int] = ACTIONS(5552), + [anon_sym_uint] = ACTIONS(5552), + [anon_sym_float] = ACTIONS(5552), + [anon_sym_range] = ACTIONS(5552), + [anon_sym_i8] = ACTIONS(5552), + [anon_sym_i16] = ACTIONS(5552), + [anon_sym_i32] = ACTIONS(5552), + [anon_sym_i64] = ACTIONS(5552), + [anon_sym_u8] = ACTIONS(5552), + [anon_sym_u16] = ACTIONS(5552), + [anon_sym_u32] = ACTIONS(5552), + [anon_sym_u64] = ACTIONS(5552), + [anon_sym_isize] = ACTIONS(5552), + [anon_sym_usize] = ACTIONS(5552), + [anon_sym_f32] = ACTIONS(5552), + [anon_sym_f64] = ACTIONS(5552), + [anon_sym_c_char] = ACTIONS(5552), + [anon_sym_c_schar] = ACTIONS(5552), + [anon_sym_c_uchar] = ACTIONS(5552), + [anon_sym_c_short] = ACTIONS(5552), + [anon_sym_c_ushort] = ACTIONS(5552), + [anon_sym_c_int] = ACTIONS(5552), + [anon_sym_c_uint] = ACTIONS(5552), + [anon_sym_c_long] = ACTIONS(5552), + [anon_sym_c_ulong] = ACTIONS(5552), + [anon_sym_c_longlong] = ACTIONS(5552), + [anon_sym_c_ulonglong] = ACTIONS(5552), + [anon_sym_c_float] = ACTIONS(5552), + [anon_sym_c_double] = ACTIONS(5552), + [anon_sym_c_longdouble] = ACTIONS(5552), + [anon_sym_return] = ACTIONS(5552), + [anon_sym_yield] = ACTIONS(5552), + [anon_sym_break] = ACTIONS(5552), + [anon_sym_continue] = ACTIONS(5552), + [anon_sym_defer] = ACTIONS(5552), + [anon_sym_errdefer] = ACTIONS(5552), + [anon_sym_if] = ACTIONS(5552), + [anon_sym_else] = ACTIONS(5552), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_expand] = ACTIONS(5552), + [anon_sym_for] = ACTIONS(5552), + [anon_sym_match] = ACTIONS(5552), + [anon_sym_AMP] = ACTIONS(5550), + [anon_sym_TILDE] = ACTIONS(5550), + [anon_sym_try] = ACTIONS(5552), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_true] = ACTIONS(5552), + [anon_sym_false] = ACTIONS(5552), + [anon_sym_null] = ACTIONS(5552), + [anon_sym_unreachable] = ACTIONS(5552), + [anon_sym_undefined] = ACTIONS(5552), + [sym_sink] = ACTIONS(5552), + [sym_integer] = ACTIONS(5552), + [sym_float] = ACTIONS(5550), + [anon_sym_DQUOTE] = ACTIONS(5550), + [sym_multiline_string] = ACTIONS(5550), + [sym_character] = ACTIONS(5550), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5550), + }, + [STATE(6785)] = { + [ts_builtin_sym_end] = ACTIONS(4970), + [sym_identifier] = ACTIONS(4972), + [anon_sym_import] = ACTIONS(4972), + [anon_sym_test] = ACTIONS(4972), + [anon_sym_hide] = ACTIONS(4972), + [anon_sym_func] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_struct] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_RPAREN] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_void] = ACTIONS(4972), + [anon_sym_noreturn] = ACTIONS(4972), + [anon_sym_type] = ACTIONS(4972), + [anon_sym_anyopaque] = ACTIONS(4972), + [anon_sym_bool] = ACTIONS(4972), + [anon_sym_int] = ACTIONS(4972), + [anon_sym_uint] = ACTIONS(4972), + [anon_sym_float] = ACTIONS(4972), + [anon_sym_range] = ACTIONS(4972), + [anon_sym_i8] = ACTIONS(4972), + [anon_sym_i16] = ACTIONS(4972), + [anon_sym_i32] = ACTIONS(4972), + [anon_sym_i64] = ACTIONS(4972), + [anon_sym_u8] = ACTIONS(4972), + [anon_sym_u16] = ACTIONS(4972), + [anon_sym_u32] = ACTIONS(4972), + [anon_sym_u64] = ACTIONS(4972), + [anon_sym_isize] = ACTIONS(4972), + [anon_sym_usize] = ACTIONS(4972), + [anon_sym_f32] = ACTIONS(4972), + [anon_sym_f64] = ACTIONS(4972), + [anon_sym_c_char] = ACTIONS(4972), + [anon_sym_c_schar] = ACTIONS(4972), + [anon_sym_c_uchar] = ACTIONS(4972), + [anon_sym_c_short] = ACTIONS(4972), + [anon_sym_c_ushort] = ACTIONS(4972), + [anon_sym_c_int] = ACTIONS(4972), + [anon_sym_c_uint] = ACTIONS(4972), + [anon_sym_c_long] = ACTIONS(4972), + [anon_sym_c_ulong] = ACTIONS(4972), + [anon_sym_c_longlong] = ACTIONS(4972), + [anon_sym_c_ulonglong] = ACTIONS(4972), + [anon_sym_c_float] = ACTIONS(4972), + [anon_sym_c_double] = ACTIONS(4972), + [anon_sym_c_longdouble] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_defer] = ACTIONS(4972), + [anon_sym_errdefer] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_expand] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_TILDE] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_unreachable] = ACTIONS(4972), + [anon_sym_undefined] = ACTIONS(4972), + [sym_sink] = ACTIONS(4972), + [sym_integer] = ACTIONS(4972), + [sym_float] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(4970), + [sym_multiline_string] = ACTIONS(4970), + [sym_character] = ACTIONS(4970), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4970), + }, + [STATE(6786)] = { + [ts_builtin_sym_end] = ACTIONS(5242), + [sym_identifier] = ACTIONS(5244), + [anon_sym_import] = ACTIONS(5244), + [anon_sym_test] = ACTIONS(5244), + [anon_sym_hide] = ACTIONS(5244), + [anon_sym_func] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5242), + [anon_sym_struct] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_DASH] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_void] = ACTIONS(5244), + [anon_sym_noreturn] = ACTIONS(5244), + [anon_sym_type] = ACTIONS(5244), + [anon_sym_anyopaque] = ACTIONS(5244), + [anon_sym_bool] = ACTIONS(5244), + [anon_sym_int] = ACTIONS(5244), + [anon_sym_uint] = ACTIONS(5244), + [anon_sym_float] = ACTIONS(5244), + [anon_sym_range] = ACTIONS(5244), + [anon_sym_i8] = ACTIONS(5244), + [anon_sym_i16] = ACTIONS(5244), + [anon_sym_i32] = ACTIONS(5244), + [anon_sym_i64] = ACTIONS(5244), + [anon_sym_u8] = ACTIONS(5244), + [anon_sym_u16] = ACTIONS(5244), + [anon_sym_u32] = ACTIONS(5244), + [anon_sym_u64] = ACTIONS(5244), + [anon_sym_isize] = ACTIONS(5244), + [anon_sym_usize] = ACTIONS(5244), + [anon_sym_f32] = ACTIONS(5244), + [anon_sym_f64] = ACTIONS(5244), + [anon_sym_c_char] = ACTIONS(5244), + [anon_sym_c_schar] = ACTIONS(5244), + [anon_sym_c_uchar] = ACTIONS(5244), + [anon_sym_c_short] = ACTIONS(5244), + [anon_sym_c_ushort] = ACTIONS(5244), + [anon_sym_c_int] = ACTIONS(5244), + [anon_sym_c_uint] = ACTIONS(5244), + [anon_sym_c_long] = ACTIONS(5244), + [anon_sym_c_ulong] = ACTIONS(5244), + [anon_sym_c_longlong] = ACTIONS(5244), + [anon_sym_c_ulonglong] = ACTIONS(5244), + [anon_sym_c_float] = ACTIONS(5244), + [anon_sym_c_double] = ACTIONS(5244), + [anon_sym_c_longdouble] = ACTIONS(5244), + [anon_sym_return] = ACTIONS(5244), + [anon_sym_yield] = ACTIONS(5244), + [anon_sym_break] = ACTIONS(5244), + [anon_sym_continue] = ACTIONS(5244), + [anon_sym_defer] = ACTIONS(5244), + [anon_sym_errdefer] = ACTIONS(5244), + [anon_sym_if] = ACTIONS(5244), + [anon_sym_else] = ACTIONS(5244), + [anon_sym_while] = ACTIONS(5244), + [anon_sym_expand] = ACTIONS(5244), + [anon_sym_for] = ACTIONS(5244), + [anon_sym_match] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5242), + [anon_sym_TILDE] = ACTIONS(5242), + [anon_sym_try] = ACTIONS(5244), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_true] = ACTIONS(5244), + [anon_sym_false] = ACTIONS(5244), + [anon_sym_null] = ACTIONS(5244), + [anon_sym_unreachable] = ACTIONS(5244), + [anon_sym_undefined] = ACTIONS(5244), + [sym_sink] = ACTIONS(5244), + [sym_integer] = ACTIONS(5244), + [sym_float] = ACTIONS(5242), + [anon_sym_DQUOTE] = ACTIONS(5242), + [sym_multiline_string] = ACTIONS(5242), + [sym_character] = ACTIONS(5242), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5242), + }, + [STATE(6787)] = { + [ts_builtin_sym_end] = ACTIONS(4974), + [sym_identifier] = ACTIONS(4976), + [anon_sym_import] = ACTIONS(4976), + [anon_sym_test] = ACTIONS(4976), + [anon_sym_hide] = ACTIONS(4976), + [anon_sym_func] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4974), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_void] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym_type] = ACTIONS(4976), + [anon_sym_anyopaque] = ACTIONS(4976), + [anon_sym_bool] = ACTIONS(4976), + [anon_sym_int] = ACTIONS(4976), + [anon_sym_uint] = ACTIONS(4976), + [anon_sym_float] = ACTIONS(4976), + [anon_sym_range] = ACTIONS(4976), + [anon_sym_i8] = ACTIONS(4976), + [anon_sym_i16] = ACTIONS(4976), + [anon_sym_i32] = ACTIONS(4976), + [anon_sym_i64] = ACTIONS(4976), + [anon_sym_u8] = ACTIONS(4976), + [anon_sym_u16] = ACTIONS(4976), + [anon_sym_u32] = ACTIONS(4976), + [anon_sym_u64] = ACTIONS(4976), + [anon_sym_isize] = ACTIONS(4976), + [anon_sym_usize] = ACTIONS(4976), + [anon_sym_f32] = ACTIONS(4976), + [anon_sym_f64] = ACTIONS(4976), + [anon_sym_c_char] = ACTIONS(4976), + [anon_sym_c_schar] = ACTIONS(4976), + [anon_sym_c_uchar] = ACTIONS(4976), + [anon_sym_c_short] = ACTIONS(4976), + [anon_sym_c_ushort] = ACTIONS(4976), + [anon_sym_c_int] = ACTIONS(4976), + [anon_sym_c_uint] = ACTIONS(4976), + [anon_sym_c_long] = ACTIONS(4976), + [anon_sym_c_ulong] = ACTIONS(4976), + [anon_sym_c_longlong] = ACTIONS(4976), + [anon_sym_c_ulonglong] = ACTIONS(4976), + [anon_sym_c_float] = ACTIONS(4976), + [anon_sym_c_double] = ACTIONS(4976), + [anon_sym_c_longdouble] = ACTIONS(4976), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_yield] = ACTIONS(4976), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_defer] = ACTIONS(4976), + [anon_sym_errdefer] = ACTIONS(4976), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_while] = ACTIONS(4976), + [anon_sym_expand] = ACTIONS(4976), + [anon_sym_for] = ACTIONS(4976), + [anon_sym_match] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_TILDE] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_unreachable] = ACTIONS(4976), + [anon_sym_undefined] = ACTIONS(4976), + [sym_sink] = ACTIONS(4976), + [sym_integer] = ACTIONS(4976), + [sym_float] = ACTIONS(4974), + [anon_sym_DQUOTE] = ACTIONS(4974), + [sym_multiline_string] = ACTIONS(4974), + [sym_character] = ACTIONS(4974), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4974), + }, + [STATE(6788)] = { + [ts_builtin_sym_end] = ACTIONS(5432), + [sym_identifier] = ACTIONS(5434), + [anon_sym_import] = ACTIONS(5434), + [anon_sym_test] = ACTIONS(5434), + [anon_sym_hide] = ACTIONS(5434), + [anon_sym_func] = ACTIONS(5434), + [anon_sym_BANG] = ACTIONS(5432), + [anon_sym_struct] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5432), + [anon_sym_RPAREN] = ACTIONS(5432), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), + [anon_sym_DOLLAR] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5432), + [anon_sym_void] = ACTIONS(5434), + [anon_sym_noreturn] = ACTIONS(5434), + [anon_sym_type] = ACTIONS(5434), + [anon_sym_anyopaque] = ACTIONS(5434), + [anon_sym_bool] = ACTIONS(5434), + [anon_sym_int] = ACTIONS(5434), + [anon_sym_uint] = ACTIONS(5434), + [anon_sym_float] = ACTIONS(5434), + [anon_sym_range] = ACTIONS(5434), + [anon_sym_i8] = ACTIONS(5434), + [anon_sym_i16] = ACTIONS(5434), + [anon_sym_i32] = ACTIONS(5434), + [anon_sym_i64] = ACTIONS(5434), + [anon_sym_u8] = ACTIONS(5434), + [anon_sym_u16] = ACTIONS(5434), + [anon_sym_u32] = ACTIONS(5434), + [anon_sym_u64] = ACTIONS(5434), + [anon_sym_isize] = ACTIONS(5434), + [anon_sym_usize] = ACTIONS(5434), + [anon_sym_f32] = ACTIONS(5434), + [anon_sym_f64] = ACTIONS(5434), + [anon_sym_c_char] = ACTIONS(5434), + [anon_sym_c_schar] = ACTIONS(5434), + [anon_sym_c_uchar] = ACTIONS(5434), + [anon_sym_c_short] = ACTIONS(5434), + [anon_sym_c_ushort] = ACTIONS(5434), + [anon_sym_c_int] = ACTIONS(5434), + [anon_sym_c_uint] = ACTIONS(5434), + [anon_sym_c_long] = ACTIONS(5434), + [anon_sym_c_ulong] = ACTIONS(5434), + [anon_sym_c_longlong] = ACTIONS(5434), + [anon_sym_c_ulonglong] = ACTIONS(5434), + [anon_sym_c_float] = ACTIONS(5434), + [anon_sym_c_double] = ACTIONS(5434), + [anon_sym_c_longdouble] = ACTIONS(5434), + [anon_sym_return] = ACTIONS(5434), + [anon_sym_yield] = ACTIONS(5434), + [anon_sym_break] = ACTIONS(5434), + [anon_sym_continue] = ACTIONS(5434), + [anon_sym_defer] = ACTIONS(5434), + [anon_sym_errdefer] = ACTIONS(5434), + [anon_sym_if] = ACTIONS(5434), + [anon_sym_else] = ACTIONS(5434), + [anon_sym_while] = ACTIONS(5434), + [anon_sym_expand] = ACTIONS(5434), + [anon_sym_for] = ACTIONS(5434), + [anon_sym_match] = ACTIONS(5434), + [anon_sym_AMP] = ACTIONS(5432), + [anon_sym_TILDE] = ACTIONS(5432), + [anon_sym_try] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5432), + [anon_sym_true] = ACTIONS(5434), + [anon_sym_false] = ACTIONS(5434), + [anon_sym_null] = ACTIONS(5434), + [anon_sym_unreachable] = ACTIONS(5434), + [anon_sym_undefined] = ACTIONS(5434), + [sym_sink] = ACTIONS(5434), + [sym_integer] = ACTIONS(5434), + [sym_float] = ACTIONS(5432), + [anon_sym_DQUOTE] = ACTIONS(5432), + [sym_multiline_string] = ACTIONS(5432), + [sym_character] = ACTIONS(5432), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5432), + }, + [STATE(6789)] = { + [ts_builtin_sym_end] = ACTIONS(4978), + [sym_identifier] = ACTIONS(4980), + [anon_sym_import] = ACTIONS(4980), + [anon_sym_test] = ACTIONS(4980), + [anon_sym_hide] = ACTIONS(4980), + [anon_sym_func] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4978), + [anon_sym_struct] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_void] = ACTIONS(4980), + [anon_sym_noreturn] = ACTIONS(4980), + [anon_sym_type] = ACTIONS(4980), + [anon_sym_anyopaque] = ACTIONS(4980), + [anon_sym_bool] = ACTIONS(4980), + [anon_sym_int] = ACTIONS(4980), + [anon_sym_uint] = ACTIONS(4980), + [anon_sym_float] = ACTIONS(4980), + [anon_sym_range] = ACTIONS(4980), + [anon_sym_i8] = ACTIONS(4980), + [anon_sym_i16] = ACTIONS(4980), + [anon_sym_i32] = ACTIONS(4980), + [anon_sym_i64] = ACTIONS(4980), + [anon_sym_u8] = ACTIONS(4980), + [anon_sym_u16] = ACTIONS(4980), + [anon_sym_u32] = ACTIONS(4980), + [anon_sym_u64] = ACTIONS(4980), + [anon_sym_isize] = ACTIONS(4980), + [anon_sym_usize] = ACTIONS(4980), + [anon_sym_f32] = ACTIONS(4980), + [anon_sym_f64] = ACTIONS(4980), + [anon_sym_c_char] = ACTIONS(4980), + [anon_sym_c_schar] = ACTIONS(4980), + [anon_sym_c_uchar] = ACTIONS(4980), + [anon_sym_c_short] = ACTIONS(4980), + [anon_sym_c_ushort] = ACTIONS(4980), + [anon_sym_c_int] = ACTIONS(4980), + [anon_sym_c_uint] = ACTIONS(4980), + [anon_sym_c_long] = ACTIONS(4980), + [anon_sym_c_ulong] = ACTIONS(4980), + [anon_sym_c_longlong] = ACTIONS(4980), + [anon_sym_c_ulonglong] = ACTIONS(4980), + [anon_sym_c_float] = ACTIONS(4980), + [anon_sym_c_double] = ACTIONS(4980), + [anon_sym_c_longdouble] = ACTIONS(4980), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_yield] = ACTIONS(4980), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_defer] = ACTIONS(4980), + [anon_sym_errdefer] = ACTIONS(4980), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_while] = ACTIONS(4980), + [anon_sym_expand] = ACTIONS(4980), + [anon_sym_for] = ACTIONS(4980), + [anon_sym_match] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_null] = ACTIONS(4980), + [anon_sym_unreachable] = ACTIONS(4980), + [anon_sym_undefined] = ACTIONS(4980), + [sym_sink] = ACTIONS(4980), + [sym_integer] = ACTIONS(4980), + [sym_float] = ACTIONS(4978), + [anon_sym_DQUOTE] = ACTIONS(4978), + [sym_multiline_string] = ACTIONS(4978), + [sym_character] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4978), + }, + [STATE(6790)] = { + [ts_builtin_sym_end] = ACTIONS(5640), + [sym_identifier] = ACTIONS(5642), + [anon_sym_import] = ACTIONS(5642), + [anon_sym_test] = ACTIONS(5642), + [anon_sym_hide] = ACTIONS(5642), + [anon_sym_func] = ACTIONS(5642), + [anon_sym_BANG] = ACTIONS(5640), + [anon_sym_struct] = ACTIONS(5642), + [anon_sym_LPAREN] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LBRACE] = ACTIONS(5640), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5640), + [anon_sym_DOLLAR] = ACTIONS(5640), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_void] = ACTIONS(5642), + [anon_sym_noreturn] = ACTIONS(5642), + [anon_sym_type] = ACTIONS(5642), + [anon_sym_anyopaque] = ACTIONS(5642), + [anon_sym_bool] = ACTIONS(5642), + [anon_sym_int] = ACTIONS(5642), + [anon_sym_uint] = ACTIONS(5642), + [anon_sym_float] = ACTIONS(5642), + [anon_sym_range] = ACTIONS(5642), + [anon_sym_i8] = ACTIONS(5642), + [anon_sym_i16] = ACTIONS(5642), + [anon_sym_i32] = ACTIONS(5642), + [anon_sym_i64] = ACTIONS(5642), + [anon_sym_u8] = ACTIONS(5642), + [anon_sym_u16] = ACTIONS(5642), + [anon_sym_u32] = ACTIONS(5642), + [anon_sym_u64] = ACTIONS(5642), + [anon_sym_isize] = ACTIONS(5642), + [anon_sym_usize] = ACTIONS(5642), + [anon_sym_f32] = ACTIONS(5642), + [anon_sym_f64] = ACTIONS(5642), + [anon_sym_c_char] = ACTIONS(5642), + [anon_sym_c_schar] = ACTIONS(5642), + [anon_sym_c_uchar] = ACTIONS(5642), + [anon_sym_c_short] = ACTIONS(5642), + [anon_sym_c_ushort] = ACTIONS(5642), + [anon_sym_c_int] = ACTIONS(5642), + [anon_sym_c_uint] = ACTIONS(5642), + [anon_sym_c_long] = ACTIONS(5642), + [anon_sym_c_ulong] = ACTIONS(5642), + [anon_sym_c_longlong] = ACTIONS(5642), + [anon_sym_c_ulonglong] = ACTIONS(5642), + [anon_sym_c_float] = ACTIONS(5642), + [anon_sym_c_double] = ACTIONS(5642), + [anon_sym_c_longdouble] = ACTIONS(5642), + [anon_sym_return] = ACTIONS(5642), + [anon_sym_yield] = ACTIONS(5642), + [anon_sym_break] = ACTIONS(5642), + [anon_sym_continue] = ACTIONS(5642), + [anon_sym_defer] = ACTIONS(5642), + [anon_sym_errdefer] = ACTIONS(5642), + [anon_sym_if] = ACTIONS(5642), + [anon_sym_else] = ACTIONS(5642), + [anon_sym_while] = ACTIONS(5642), + [anon_sym_expand] = ACTIONS(5642), + [anon_sym_for] = ACTIONS(5642), + [anon_sym_match] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5640), + [anon_sym_try] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_true] = ACTIONS(5642), + [anon_sym_false] = ACTIONS(5642), + [anon_sym_null] = ACTIONS(5642), + [anon_sym_unreachable] = ACTIONS(5642), + [anon_sym_undefined] = ACTIONS(5642), + [sym_sink] = ACTIONS(5642), + [sym_integer] = ACTIONS(5642), + [sym_float] = ACTIONS(5640), + [anon_sym_DQUOTE] = ACTIONS(5640), + [sym_multiline_string] = ACTIONS(5640), + [sym_character] = ACTIONS(5640), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5640), + }, + [STATE(6791)] = { + [ts_builtin_sym_end] = ACTIONS(5436), + [sym_identifier] = ACTIONS(5438), + [anon_sym_import] = ACTIONS(5438), + [anon_sym_test] = ACTIONS(5438), + [anon_sym_hide] = ACTIONS(5438), + [anon_sym_func] = ACTIONS(5438), + [anon_sym_BANG] = ACTIONS(5436), + [anon_sym_struct] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5436), + [anon_sym_RPAREN] = ACTIONS(5436), + [anon_sym_LBRACE] = ACTIONS(5436), + [anon_sym_RBRACE] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), + [anon_sym_DOLLAR] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(5436), + [anon_sym_void] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_type] = ACTIONS(5438), + [anon_sym_anyopaque] = ACTIONS(5438), + [anon_sym_bool] = ACTIONS(5438), + [anon_sym_int] = ACTIONS(5438), + [anon_sym_uint] = ACTIONS(5438), + [anon_sym_float] = ACTIONS(5438), + [anon_sym_range] = ACTIONS(5438), + [anon_sym_i8] = ACTIONS(5438), + [anon_sym_i16] = ACTIONS(5438), + [anon_sym_i32] = ACTIONS(5438), + [anon_sym_i64] = ACTIONS(5438), + [anon_sym_u8] = ACTIONS(5438), + [anon_sym_u16] = ACTIONS(5438), + [anon_sym_u32] = ACTIONS(5438), + [anon_sym_u64] = ACTIONS(5438), + [anon_sym_isize] = ACTIONS(5438), + [anon_sym_usize] = ACTIONS(5438), + [anon_sym_f32] = ACTIONS(5438), + [anon_sym_f64] = ACTIONS(5438), + [anon_sym_c_char] = ACTIONS(5438), + [anon_sym_c_schar] = ACTIONS(5438), + [anon_sym_c_uchar] = ACTIONS(5438), + [anon_sym_c_short] = ACTIONS(5438), + [anon_sym_c_ushort] = ACTIONS(5438), + [anon_sym_c_int] = ACTIONS(5438), + [anon_sym_c_uint] = ACTIONS(5438), + [anon_sym_c_long] = ACTIONS(5438), + [anon_sym_c_ulong] = ACTIONS(5438), + [anon_sym_c_longlong] = ACTIONS(5438), + [anon_sym_c_ulonglong] = ACTIONS(5438), + [anon_sym_c_float] = ACTIONS(5438), + [anon_sym_c_double] = ACTIONS(5438), + [anon_sym_c_longdouble] = ACTIONS(5438), + [anon_sym_return] = ACTIONS(5438), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_break] = ACTIONS(5438), + [anon_sym_continue] = ACTIONS(5438), + [anon_sym_defer] = ACTIONS(5438), + [anon_sym_errdefer] = ACTIONS(5438), + [anon_sym_if] = ACTIONS(5438), + [anon_sym_else] = ACTIONS(5438), + [anon_sym_while] = ACTIONS(5438), + [anon_sym_expand] = ACTIONS(5438), + [anon_sym_for] = ACTIONS(5438), + [anon_sym_match] = ACTIONS(5438), + [anon_sym_AMP] = ACTIONS(5436), + [anon_sym_TILDE] = ACTIONS(5436), + [anon_sym_try] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5436), + [anon_sym_true] = ACTIONS(5438), + [anon_sym_false] = ACTIONS(5438), + [anon_sym_null] = ACTIONS(5438), + [anon_sym_unreachable] = ACTIONS(5438), + [anon_sym_undefined] = ACTIONS(5438), + [sym_sink] = ACTIONS(5438), + [sym_integer] = ACTIONS(5438), + [sym_float] = ACTIONS(5436), + [anon_sym_DQUOTE] = ACTIONS(5436), + [sym_multiline_string] = ACTIONS(5436), + [sym_character] = ACTIONS(5436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5436), + }, + [STATE(6792)] = { + [ts_builtin_sym_end] = ACTIONS(4680), + [sym_identifier] = ACTIONS(4682), + [anon_sym_import] = ACTIONS(4682), + [anon_sym_test] = ACTIONS(4682), + [anon_sym_hide] = ACTIONS(4682), + [anon_sym_func] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4680), + [anon_sym_struct] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_RPAREN] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_DOLLAR] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_void] = ACTIONS(4682), + [anon_sym_noreturn] = ACTIONS(4682), + [anon_sym_type] = ACTIONS(4682), + [anon_sym_anyopaque] = ACTIONS(4682), + [anon_sym_bool] = ACTIONS(4682), + [anon_sym_int] = ACTIONS(4682), + [anon_sym_uint] = ACTIONS(4682), + [anon_sym_float] = ACTIONS(4682), + [anon_sym_range] = ACTIONS(4682), + [anon_sym_i8] = ACTIONS(4682), + [anon_sym_i16] = ACTIONS(4682), + [anon_sym_i32] = ACTIONS(4682), + [anon_sym_i64] = ACTIONS(4682), + [anon_sym_u8] = ACTIONS(4682), + [anon_sym_u16] = ACTIONS(4682), + [anon_sym_u32] = ACTIONS(4682), + [anon_sym_u64] = ACTIONS(4682), + [anon_sym_isize] = ACTIONS(4682), + [anon_sym_usize] = ACTIONS(4682), + [anon_sym_f32] = ACTIONS(4682), + [anon_sym_f64] = ACTIONS(4682), + [anon_sym_c_char] = ACTIONS(4682), + [anon_sym_c_schar] = ACTIONS(4682), + [anon_sym_c_uchar] = ACTIONS(4682), + [anon_sym_c_short] = ACTIONS(4682), + [anon_sym_c_ushort] = ACTIONS(4682), + [anon_sym_c_int] = ACTIONS(4682), + [anon_sym_c_uint] = ACTIONS(4682), + [anon_sym_c_long] = ACTIONS(4682), + [anon_sym_c_ulong] = ACTIONS(4682), + [anon_sym_c_longlong] = ACTIONS(4682), + [anon_sym_c_ulonglong] = ACTIONS(4682), + [anon_sym_c_float] = ACTIONS(4682), + [anon_sym_c_double] = ACTIONS(4682), + [anon_sym_c_longdouble] = ACTIONS(4682), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_yield] = ACTIONS(4682), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_defer] = ACTIONS(4682), + [anon_sym_errdefer] = ACTIONS(4682), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_while] = ACTIONS(4682), + [anon_sym_expand] = ACTIONS(4682), + [anon_sym_for] = ACTIONS(4682), + [anon_sym_match] = ACTIONS(4682), + [anon_sym_AMP] = ACTIONS(4680), + [anon_sym_TILDE] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(4682), + [anon_sym_unreachable] = ACTIONS(4682), + [anon_sym_undefined] = ACTIONS(4682), + [sym_sink] = ACTIONS(4682), + [sym_integer] = ACTIONS(4682), + [sym_float] = ACTIONS(4680), + [anon_sym_DQUOTE] = ACTIONS(4680), + [sym_multiline_string] = ACTIONS(4680), + [sym_character] = ACTIONS(4680), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4680), + }, + [STATE(6793)] = { + [ts_builtin_sym_end] = ACTIONS(5360), + [sym_identifier] = ACTIONS(5362), + [anon_sym_import] = ACTIONS(5362), + [anon_sym_test] = ACTIONS(5362), + [anon_sym_hide] = ACTIONS(5362), + [anon_sym_func] = ACTIONS(5362), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_struct] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5360), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_LBRACE] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(5360), + [anon_sym_void] = ACTIONS(5362), + [anon_sym_noreturn] = ACTIONS(5362), + [anon_sym_type] = ACTIONS(5362), + [anon_sym_anyopaque] = ACTIONS(5362), + [anon_sym_bool] = ACTIONS(5362), + [anon_sym_int] = ACTIONS(5362), + [anon_sym_uint] = ACTIONS(5362), + [anon_sym_float] = ACTIONS(5362), + [anon_sym_range] = ACTIONS(5362), + [anon_sym_i8] = ACTIONS(5362), + [anon_sym_i16] = ACTIONS(5362), + [anon_sym_i32] = ACTIONS(5362), + [anon_sym_i64] = ACTIONS(5362), + [anon_sym_u8] = ACTIONS(5362), + [anon_sym_u16] = ACTIONS(5362), + [anon_sym_u32] = ACTIONS(5362), + [anon_sym_u64] = ACTIONS(5362), + [anon_sym_isize] = ACTIONS(5362), + [anon_sym_usize] = ACTIONS(5362), + [anon_sym_f32] = ACTIONS(5362), + [anon_sym_f64] = ACTIONS(5362), + [anon_sym_c_char] = ACTIONS(5362), + [anon_sym_c_schar] = ACTIONS(5362), + [anon_sym_c_uchar] = ACTIONS(5362), + [anon_sym_c_short] = ACTIONS(5362), + [anon_sym_c_ushort] = ACTIONS(5362), + [anon_sym_c_int] = ACTIONS(5362), + [anon_sym_c_uint] = ACTIONS(5362), + [anon_sym_c_long] = ACTIONS(5362), + [anon_sym_c_ulong] = ACTIONS(5362), + [anon_sym_c_longlong] = ACTIONS(5362), + [anon_sym_c_ulonglong] = ACTIONS(5362), + [anon_sym_c_float] = ACTIONS(5362), + [anon_sym_c_double] = ACTIONS(5362), + [anon_sym_c_longdouble] = ACTIONS(5362), + [anon_sym_return] = ACTIONS(5362), + [anon_sym_yield] = ACTIONS(5362), + [anon_sym_break] = ACTIONS(5362), + [anon_sym_continue] = ACTIONS(5362), + [anon_sym_defer] = ACTIONS(5362), + [anon_sym_errdefer] = ACTIONS(5362), + [anon_sym_if] = ACTIONS(5362), + [anon_sym_else] = ACTIONS(5362), + [anon_sym_while] = ACTIONS(5362), + [anon_sym_expand] = ACTIONS(5362), + [anon_sym_for] = ACTIONS(5362), + [anon_sym_match] = ACTIONS(5362), + [anon_sym_AMP] = ACTIONS(5360), + [anon_sym_TILDE] = ACTIONS(5360), + [anon_sym_try] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5360), + [anon_sym_true] = ACTIONS(5362), + [anon_sym_false] = ACTIONS(5362), + [anon_sym_null] = ACTIONS(5362), + [anon_sym_unreachable] = ACTIONS(5362), + [anon_sym_undefined] = ACTIONS(5362), + [sym_sink] = ACTIONS(5362), + [sym_integer] = ACTIONS(5362), + [sym_float] = ACTIONS(5360), + [anon_sym_DQUOTE] = ACTIONS(5360), + [sym_multiline_string] = ACTIONS(5360), + [sym_character] = ACTIONS(5360), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5360), + }, + [STATE(6794)] = { + [ts_builtin_sym_end] = ACTIONS(4650), + [sym_identifier] = ACTIONS(4652), + [anon_sym_import] = ACTIONS(4652), + [anon_sym_test] = ACTIONS(4652), + [anon_sym_hide] = ACTIONS(4652), + [anon_sym_func] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(4650), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_RPAREN] = ACTIONS(4650), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOLLAR] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_void] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym_type] = ACTIONS(4652), + [anon_sym_anyopaque] = ACTIONS(4652), + [anon_sym_bool] = ACTIONS(4652), + [anon_sym_int] = ACTIONS(4652), + [anon_sym_uint] = ACTIONS(4652), + [anon_sym_float] = ACTIONS(4652), + [anon_sym_range] = ACTIONS(4652), + [anon_sym_i8] = ACTIONS(4652), + [anon_sym_i16] = ACTIONS(4652), + [anon_sym_i32] = ACTIONS(4652), + [anon_sym_i64] = ACTIONS(4652), + [anon_sym_u8] = ACTIONS(4652), + [anon_sym_u16] = ACTIONS(4652), + [anon_sym_u32] = ACTIONS(4652), + [anon_sym_u64] = ACTIONS(4652), + [anon_sym_isize] = ACTIONS(4652), + [anon_sym_usize] = ACTIONS(4652), + [anon_sym_f32] = ACTIONS(4652), + [anon_sym_f64] = ACTIONS(4652), + [anon_sym_c_char] = ACTIONS(4652), + [anon_sym_c_schar] = ACTIONS(4652), + [anon_sym_c_uchar] = ACTIONS(4652), + [anon_sym_c_short] = ACTIONS(4652), + [anon_sym_c_ushort] = ACTIONS(4652), + [anon_sym_c_int] = ACTIONS(4652), + [anon_sym_c_uint] = ACTIONS(4652), + [anon_sym_c_long] = ACTIONS(4652), + [anon_sym_c_ulong] = ACTIONS(4652), + [anon_sym_c_longlong] = ACTIONS(4652), + [anon_sym_c_ulonglong] = ACTIONS(4652), + [anon_sym_c_float] = ACTIONS(4652), + [anon_sym_c_double] = ACTIONS(4652), + [anon_sym_c_longdouble] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_yield] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_defer] = ACTIONS(4652), + [anon_sym_errdefer] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_expand] = ACTIONS(4652), + [anon_sym_for] = ACTIONS(4652), + [anon_sym_match] = ACTIONS(4652), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_unreachable] = ACTIONS(4652), + [anon_sym_undefined] = ACTIONS(4652), + [sym_sink] = ACTIONS(4652), + [sym_integer] = ACTIONS(4652), + [sym_float] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym_multiline_string] = ACTIONS(4650), + [sym_character] = ACTIONS(4650), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4650), + }, + [STATE(6795)] = { + [ts_builtin_sym_end] = ACTIONS(4684), + [sym_identifier] = ACTIONS(4686), + [anon_sym_import] = ACTIONS(4686), + [anon_sym_test] = ACTIONS(4686), + [anon_sym_hide] = ACTIONS(4686), + [anon_sym_func] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_struct] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_DOLLAR] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_void] = ACTIONS(4686), + [anon_sym_noreturn] = ACTIONS(4686), + [anon_sym_type] = ACTIONS(4686), + [anon_sym_anyopaque] = ACTIONS(4686), + [anon_sym_bool] = ACTIONS(4686), + [anon_sym_int] = ACTIONS(4686), + [anon_sym_uint] = ACTIONS(4686), + [anon_sym_float] = ACTIONS(4686), + [anon_sym_range] = ACTIONS(4686), + [anon_sym_i8] = ACTIONS(4686), + [anon_sym_i16] = ACTIONS(4686), + [anon_sym_i32] = ACTIONS(4686), + [anon_sym_i64] = ACTIONS(4686), + [anon_sym_u8] = ACTIONS(4686), + [anon_sym_u16] = ACTIONS(4686), + [anon_sym_u32] = ACTIONS(4686), + [anon_sym_u64] = ACTIONS(4686), + [anon_sym_isize] = ACTIONS(4686), + [anon_sym_usize] = ACTIONS(4686), + [anon_sym_f32] = ACTIONS(4686), + [anon_sym_f64] = ACTIONS(4686), + [anon_sym_c_char] = ACTIONS(4686), + [anon_sym_c_schar] = ACTIONS(4686), + [anon_sym_c_uchar] = ACTIONS(4686), + [anon_sym_c_short] = ACTIONS(4686), + [anon_sym_c_ushort] = ACTIONS(4686), + [anon_sym_c_int] = ACTIONS(4686), + [anon_sym_c_uint] = ACTIONS(4686), + [anon_sym_c_long] = ACTIONS(4686), + [anon_sym_c_ulong] = ACTIONS(4686), + [anon_sym_c_longlong] = ACTIONS(4686), + [anon_sym_c_ulonglong] = ACTIONS(4686), + [anon_sym_c_float] = ACTIONS(4686), + [anon_sym_c_double] = ACTIONS(4686), + [anon_sym_c_longdouble] = ACTIONS(4686), + [anon_sym_return] = ACTIONS(4686), + [anon_sym_yield] = ACTIONS(4686), + [anon_sym_break] = ACTIONS(4686), + [anon_sym_continue] = ACTIONS(4686), + [anon_sym_defer] = ACTIONS(4686), + [anon_sym_errdefer] = ACTIONS(4686), + [anon_sym_if] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_while] = ACTIONS(4686), + [anon_sym_expand] = ACTIONS(4686), + [anon_sym_for] = ACTIONS(4686), + [anon_sym_match] = ACTIONS(4686), + [anon_sym_AMP] = ACTIONS(4684), + [anon_sym_TILDE] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4686), + [anon_sym_false] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4686), + [anon_sym_unreachable] = ACTIONS(4686), + [anon_sym_undefined] = ACTIONS(4686), + [sym_sink] = ACTIONS(4686), + [sym_integer] = ACTIONS(4686), + [sym_float] = ACTIONS(4684), + [anon_sym_DQUOTE] = ACTIONS(4684), + [sym_multiline_string] = ACTIONS(4684), + [sym_character] = ACTIONS(4684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4684), + }, + [STATE(6796)] = { + [ts_builtin_sym_end] = ACTIONS(4630), + [sym_identifier] = ACTIONS(4632), + [anon_sym_import] = ACTIONS(4632), + [anon_sym_test] = ACTIONS(4632), + [anon_sym_hide] = ACTIONS(4632), + [anon_sym_func] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_RBRACE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_DOLLAR] = ACTIONS(4630), + [anon_sym_LBRACK] = ACTIONS(4630), + [anon_sym_void] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym_type] = ACTIONS(4632), + [anon_sym_anyopaque] = ACTIONS(4632), + [anon_sym_bool] = ACTIONS(4632), + [anon_sym_int] = ACTIONS(4632), + [anon_sym_uint] = ACTIONS(4632), + [anon_sym_float] = ACTIONS(4632), + [anon_sym_range] = ACTIONS(4632), + [anon_sym_i8] = ACTIONS(4632), + [anon_sym_i16] = ACTIONS(4632), + [anon_sym_i32] = ACTIONS(4632), + [anon_sym_i64] = ACTIONS(4632), + [anon_sym_u8] = ACTIONS(4632), + [anon_sym_u16] = ACTIONS(4632), + [anon_sym_u32] = ACTIONS(4632), + [anon_sym_u64] = ACTIONS(4632), + [anon_sym_isize] = ACTIONS(4632), + [anon_sym_usize] = ACTIONS(4632), + [anon_sym_f32] = ACTIONS(4632), + [anon_sym_f64] = ACTIONS(4632), + [anon_sym_c_char] = ACTIONS(4632), + [anon_sym_c_schar] = ACTIONS(4632), + [anon_sym_c_uchar] = ACTIONS(4632), + [anon_sym_c_short] = ACTIONS(4632), + [anon_sym_c_ushort] = ACTIONS(4632), + [anon_sym_c_int] = ACTIONS(4632), + [anon_sym_c_uint] = ACTIONS(4632), + [anon_sym_c_long] = ACTIONS(4632), + [anon_sym_c_ulong] = ACTIONS(4632), + [anon_sym_c_longlong] = ACTIONS(4632), + [anon_sym_c_ulonglong] = ACTIONS(4632), + [anon_sym_c_float] = ACTIONS(4632), + [anon_sym_c_double] = ACTIONS(4632), + [anon_sym_c_longdouble] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_yield] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_defer] = ACTIONS(4632), + [anon_sym_errdefer] = ACTIONS(4632), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_expand] = ACTIONS(4632), + [anon_sym_for] = ACTIONS(4632), + [anon_sym_match] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4630), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4632), + [anon_sym_unreachable] = ACTIONS(4632), + [anon_sym_undefined] = ACTIONS(4632), + [sym_sink] = ACTIONS(4632), + [sym_integer] = ACTIONS(4632), + [sym_float] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_multiline_string] = ACTIONS(4630), + [sym_character] = ACTIONS(4630), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4630), + }, + [STATE(6797)] = { + [ts_builtin_sym_end] = ACTIONS(4688), + [sym_identifier] = ACTIONS(4690), + [anon_sym_import] = ACTIONS(4690), + [anon_sym_test] = ACTIONS(4690), + [anon_sym_hide] = ACTIONS(4690), + [anon_sym_func] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4688), + [anon_sym_struct] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_RPAREN] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_DOLLAR] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_void] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym_type] = ACTIONS(4690), + [anon_sym_anyopaque] = ACTIONS(4690), + [anon_sym_bool] = ACTIONS(4690), + [anon_sym_int] = ACTIONS(4690), + [anon_sym_uint] = ACTIONS(4690), + [anon_sym_float] = ACTIONS(4690), + [anon_sym_range] = ACTIONS(4690), + [anon_sym_i8] = ACTIONS(4690), + [anon_sym_i16] = ACTIONS(4690), + [anon_sym_i32] = ACTIONS(4690), + [anon_sym_i64] = ACTIONS(4690), + [anon_sym_u8] = ACTIONS(4690), + [anon_sym_u16] = ACTIONS(4690), + [anon_sym_u32] = ACTIONS(4690), + [anon_sym_u64] = ACTIONS(4690), + [anon_sym_isize] = ACTIONS(4690), + [anon_sym_usize] = ACTIONS(4690), + [anon_sym_f32] = ACTIONS(4690), + [anon_sym_f64] = ACTIONS(4690), + [anon_sym_c_char] = ACTIONS(4690), + [anon_sym_c_schar] = ACTIONS(4690), + [anon_sym_c_uchar] = ACTIONS(4690), + [anon_sym_c_short] = ACTIONS(4690), + [anon_sym_c_ushort] = ACTIONS(4690), + [anon_sym_c_int] = ACTIONS(4690), + [anon_sym_c_uint] = ACTIONS(4690), + [anon_sym_c_long] = ACTIONS(4690), + [anon_sym_c_ulong] = ACTIONS(4690), + [anon_sym_c_longlong] = ACTIONS(4690), + [anon_sym_c_ulonglong] = ACTIONS(4690), + [anon_sym_c_float] = ACTIONS(4690), + [anon_sym_c_double] = ACTIONS(4690), + [anon_sym_c_longdouble] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_yield] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_defer] = ACTIONS(4690), + [anon_sym_errdefer] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_expand] = ACTIONS(4690), + [anon_sym_for] = ACTIONS(4690), + [anon_sym_match] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_TILDE] = ACTIONS(4688), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4688), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_unreachable] = ACTIONS(4690), + [anon_sym_undefined] = ACTIONS(4690), + [sym_sink] = ACTIONS(4690), + [sym_integer] = ACTIONS(4690), + [sym_float] = ACTIONS(4688), + [anon_sym_DQUOTE] = ACTIONS(4688), + [sym_multiline_string] = ACTIONS(4688), + [sym_character] = ACTIONS(4688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4688), + }, + [STATE(6798)] = { + [ts_builtin_sym_end] = ACTIONS(5644), + [sym_identifier] = ACTIONS(5646), + [anon_sym_import] = ACTIONS(5646), + [anon_sym_test] = ACTIONS(5646), + [anon_sym_hide] = ACTIONS(5646), + [anon_sym_func] = ACTIONS(5646), + [anon_sym_BANG] = ACTIONS(5644), + [anon_sym_struct] = ACTIONS(5646), + [anon_sym_LPAREN] = ACTIONS(5644), + [anon_sym_RPAREN] = ACTIONS(5644), + [anon_sym_LBRACE] = ACTIONS(5644), + [anon_sym_RBRACE] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5644), + [anon_sym_DOLLAR] = ACTIONS(5644), + [anon_sym_LBRACK] = ACTIONS(5644), + [anon_sym_void] = ACTIONS(5646), + [anon_sym_noreturn] = ACTIONS(5646), + [anon_sym_type] = ACTIONS(5646), + [anon_sym_anyopaque] = ACTIONS(5646), + [anon_sym_bool] = ACTIONS(5646), + [anon_sym_int] = ACTIONS(5646), + [anon_sym_uint] = ACTIONS(5646), + [anon_sym_float] = ACTIONS(5646), + [anon_sym_range] = ACTIONS(5646), + [anon_sym_i8] = ACTIONS(5646), + [anon_sym_i16] = ACTIONS(5646), + [anon_sym_i32] = ACTIONS(5646), + [anon_sym_i64] = ACTIONS(5646), + [anon_sym_u8] = ACTIONS(5646), + [anon_sym_u16] = ACTIONS(5646), + [anon_sym_u32] = ACTIONS(5646), + [anon_sym_u64] = ACTIONS(5646), + [anon_sym_isize] = ACTIONS(5646), + [anon_sym_usize] = ACTIONS(5646), + [anon_sym_f32] = ACTIONS(5646), + [anon_sym_f64] = ACTIONS(5646), + [anon_sym_c_char] = ACTIONS(5646), + [anon_sym_c_schar] = ACTIONS(5646), + [anon_sym_c_uchar] = ACTIONS(5646), + [anon_sym_c_short] = ACTIONS(5646), + [anon_sym_c_ushort] = ACTIONS(5646), + [anon_sym_c_int] = ACTIONS(5646), + [anon_sym_c_uint] = ACTIONS(5646), + [anon_sym_c_long] = ACTIONS(5646), + [anon_sym_c_ulong] = ACTIONS(5646), + [anon_sym_c_longlong] = ACTIONS(5646), + [anon_sym_c_ulonglong] = ACTIONS(5646), + [anon_sym_c_float] = ACTIONS(5646), + [anon_sym_c_double] = ACTIONS(5646), + [anon_sym_c_longdouble] = ACTIONS(5646), + [anon_sym_return] = ACTIONS(5646), + [anon_sym_yield] = ACTIONS(5646), + [anon_sym_break] = ACTIONS(5646), + [anon_sym_continue] = ACTIONS(5646), + [anon_sym_defer] = ACTIONS(5646), + [anon_sym_errdefer] = ACTIONS(5646), + [anon_sym_if] = ACTIONS(5646), + [anon_sym_else] = ACTIONS(5646), + [anon_sym_while] = ACTIONS(5646), + [anon_sym_expand] = ACTIONS(5646), + [anon_sym_for] = ACTIONS(5646), + [anon_sym_match] = ACTIONS(5646), + [anon_sym_AMP] = ACTIONS(5644), + [anon_sym_TILDE] = ACTIONS(5644), + [anon_sym_try] = ACTIONS(5646), + [anon_sym_DOT] = ACTIONS(5644), + [anon_sym_true] = ACTIONS(5646), + [anon_sym_false] = ACTIONS(5646), + [anon_sym_null] = ACTIONS(5646), + [anon_sym_unreachable] = ACTIONS(5646), + [anon_sym_undefined] = ACTIONS(5646), + [sym_sink] = ACTIONS(5646), + [sym_integer] = ACTIONS(5646), + [sym_float] = ACTIONS(5644), + [anon_sym_DQUOTE] = ACTIONS(5644), + [sym_multiline_string] = ACTIONS(5644), + [sym_character] = ACTIONS(5644), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5644), + }, + [STATE(6799)] = { + [ts_builtin_sym_end] = ACTIONS(4626), + [sym_identifier] = ACTIONS(4628), + [anon_sym_import] = ACTIONS(4628), + [anon_sym_test] = ACTIONS(4628), + [anon_sym_hide] = ACTIONS(4628), + [anon_sym_func] = ACTIONS(4628), + [anon_sym_BANG] = ACTIONS(4626), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_RPAREN] = ACTIONS(4626), + [anon_sym_LBRACE] = ACTIONS(4626), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_DASH] = ACTIONS(4626), + [anon_sym_DOLLAR] = ACTIONS(4626), + [anon_sym_LBRACK] = ACTIONS(4626), + [anon_sym_void] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym_type] = ACTIONS(4628), + [anon_sym_anyopaque] = ACTIONS(4628), + [anon_sym_bool] = ACTIONS(4628), + [anon_sym_int] = ACTIONS(4628), + [anon_sym_uint] = ACTIONS(4628), + [anon_sym_float] = ACTIONS(4628), + [anon_sym_range] = ACTIONS(4628), + [anon_sym_i8] = ACTIONS(4628), + [anon_sym_i16] = ACTIONS(4628), + [anon_sym_i32] = ACTIONS(4628), + [anon_sym_i64] = ACTIONS(4628), + [anon_sym_u8] = ACTIONS(4628), + [anon_sym_u16] = ACTIONS(4628), + [anon_sym_u32] = ACTIONS(4628), + [anon_sym_u64] = ACTIONS(4628), + [anon_sym_isize] = ACTIONS(4628), + [anon_sym_usize] = ACTIONS(4628), + [anon_sym_f32] = ACTIONS(4628), + [anon_sym_f64] = ACTIONS(4628), + [anon_sym_c_char] = ACTIONS(4628), + [anon_sym_c_schar] = ACTIONS(4628), + [anon_sym_c_uchar] = ACTIONS(4628), + [anon_sym_c_short] = ACTIONS(4628), + [anon_sym_c_ushort] = ACTIONS(4628), + [anon_sym_c_int] = ACTIONS(4628), + [anon_sym_c_uint] = ACTIONS(4628), + [anon_sym_c_long] = ACTIONS(4628), + [anon_sym_c_ulong] = ACTIONS(4628), + [anon_sym_c_longlong] = ACTIONS(4628), + [anon_sym_c_ulonglong] = ACTIONS(4628), + [anon_sym_c_float] = ACTIONS(4628), + [anon_sym_c_double] = ACTIONS(4628), + [anon_sym_c_longdouble] = ACTIONS(4628), + [anon_sym_return] = ACTIONS(4628), + [anon_sym_yield] = ACTIONS(4628), + [anon_sym_break] = ACTIONS(4628), + [anon_sym_continue] = ACTIONS(4628), + [anon_sym_defer] = ACTIONS(4628), + [anon_sym_errdefer] = ACTIONS(4628), + [anon_sym_if] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(4628), + [anon_sym_expand] = ACTIONS(4628), + [anon_sym_for] = ACTIONS(4628), + [anon_sym_match] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4626), + [anon_sym_TILDE] = ACTIONS(4626), + [anon_sym_try] = ACTIONS(4628), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_true] = ACTIONS(4628), + [anon_sym_false] = ACTIONS(4628), + [anon_sym_null] = ACTIONS(4628), + [anon_sym_unreachable] = ACTIONS(4628), + [anon_sym_undefined] = ACTIONS(4628), + [sym_sink] = ACTIONS(4628), + [sym_integer] = ACTIONS(4628), + [sym_float] = ACTIONS(4626), + [anon_sym_DQUOTE] = ACTIONS(4626), + [sym_multiline_string] = ACTIONS(4626), + [sym_character] = ACTIONS(4626), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4626), + }, + [STATE(6800)] = { + [ts_builtin_sym_end] = ACTIONS(4692), + [sym_identifier] = ACTIONS(4694), + [anon_sym_import] = ACTIONS(4694), + [anon_sym_test] = ACTIONS(4694), + [anon_sym_hide] = ACTIONS(4694), + [anon_sym_func] = ACTIONS(4694), + [anon_sym_BANG] = ACTIONS(4692), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_RPAREN] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_DOLLAR] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_void] = ACTIONS(4694), + [anon_sym_noreturn] = ACTIONS(4694), + [anon_sym_type] = ACTIONS(4694), + [anon_sym_anyopaque] = ACTIONS(4694), + [anon_sym_bool] = ACTIONS(4694), + [anon_sym_int] = ACTIONS(4694), + [anon_sym_uint] = ACTIONS(4694), + [anon_sym_float] = ACTIONS(4694), + [anon_sym_range] = ACTIONS(4694), + [anon_sym_i8] = ACTIONS(4694), + [anon_sym_i16] = ACTIONS(4694), + [anon_sym_i32] = ACTIONS(4694), + [anon_sym_i64] = ACTIONS(4694), + [anon_sym_u8] = ACTIONS(4694), + [anon_sym_u16] = ACTIONS(4694), + [anon_sym_u32] = ACTIONS(4694), + [anon_sym_u64] = ACTIONS(4694), + [anon_sym_isize] = ACTIONS(4694), + [anon_sym_usize] = ACTIONS(4694), + [anon_sym_f32] = ACTIONS(4694), + [anon_sym_f64] = ACTIONS(4694), + [anon_sym_c_char] = ACTIONS(4694), + [anon_sym_c_schar] = ACTIONS(4694), + [anon_sym_c_uchar] = ACTIONS(4694), + [anon_sym_c_short] = ACTIONS(4694), + [anon_sym_c_ushort] = ACTIONS(4694), + [anon_sym_c_int] = ACTIONS(4694), + [anon_sym_c_uint] = ACTIONS(4694), + [anon_sym_c_long] = ACTIONS(4694), + [anon_sym_c_ulong] = ACTIONS(4694), + [anon_sym_c_longlong] = ACTIONS(4694), + [anon_sym_c_ulonglong] = ACTIONS(4694), + [anon_sym_c_float] = ACTIONS(4694), + [anon_sym_c_double] = ACTIONS(4694), + [anon_sym_c_longdouble] = ACTIONS(4694), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_yield] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_defer] = ACTIONS(4694), + [anon_sym_errdefer] = ACTIONS(4694), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_while] = ACTIONS(4694), + [anon_sym_expand] = ACTIONS(4694), + [anon_sym_for] = ACTIONS(4694), + [anon_sym_match] = ACTIONS(4694), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_TILDE] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_null] = ACTIONS(4694), + [anon_sym_unreachable] = ACTIONS(4694), + [anon_sym_undefined] = ACTIONS(4694), + [sym_sink] = ACTIONS(4694), + [sym_integer] = ACTIONS(4694), + [sym_float] = ACTIONS(4692), + [anon_sym_DQUOTE] = ACTIONS(4692), + [sym_multiline_string] = ACTIONS(4692), + [sym_character] = ACTIONS(4692), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4692), + }, + [STATE(6801)] = { + [ts_builtin_sym_end] = ACTIONS(4696), + [sym_identifier] = ACTIONS(4698), + [anon_sym_import] = ACTIONS(4698), + [anon_sym_test] = ACTIONS(4698), + [anon_sym_hide] = ACTIONS(4698), + [anon_sym_func] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4696), + [anon_sym_struct] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_DOLLAR] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_void] = ACTIONS(4698), + [anon_sym_noreturn] = ACTIONS(4698), + [anon_sym_type] = ACTIONS(4698), + [anon_sym_anyopaque] = ACTIONS(4698), + [anon_sym_bool] = ACTIONS(4698), + [anon_sym_int] = ACTIONS(4698), + [anon_sym_uint] = ACTIONS(4698), + [anon_sym_float] = ACTIONS(4698), + [anon_sym_range] = ACTIONS(4698), + [anon_sym_i8] = ACTIONS(4698), + [anon_sym_i16] = ACTIONS(4698), + [anon_sym_i32] = ACTIONS(4698), + [anon_sym_i64] = ACTIONS(4698), + [anon_sym_u8] = ACTIONS(4698), + [anon_sym_u16] = ACTIONS(4698), + [anon_sym_u32] = ACTIONS(4698), + [anon_sym_u64] = ACTIONS(4698), + [anon_sym_isize] = ACTIONS(4698), + [anon_sym_usize] = ACTIONS(4698), + [anon_sym_f32] = ACTIONS(4698), + [anon_sym_f64] = ACTIONS(4698), + [anon_sym_c_char] = ACTIONS(4698), + [anon_sym_c_schar] = ACTIONS(4698), + [anon_sym_c_uchar] = ACTIONS(4698), + [anon_sym_c_short] = ACTIONS(4698), + [anon_sym_c_ushort] = ACTIONS(4698), + [anon_sym_c_int] = ACTIONS(4698), + [anon_sym_c_uint] = ACTIONS(4698), + [anon_sym_c_long] = ACTIONS(4698), + [anon_sym_c_ulong] = ACTIONS(4698), + [anon_sym_c_longlong] = ACTIONS(4698), + [anon_sym_c_ulonglong] = ACTIONS(4698), + [anon_sym_c_float] = ACTIONS(4698), + [anon_sym_c_double] = ACTIONS(4698), + [anon_sym_c_longdouble] = ACTIONS(4698), + [anon_sym_return] = ACTIONS(4698), + [anon_sym_yield] = ACTIONS(4698), + [anon_sym_break] = ACTIONS(4698), + [anon_sym_continue] = ACTIONS(4698), + [anon_sym_defer] = ACTIONS(4698), + [anon_sym_errdefer] = ACTIONS(4698), + [anon_sym_if] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_while] = ACTIONS(4698), + [anon_sym_expand] = ACTIONS(4698), + [anon_sym_for] = ACTIONS(4698), + [anon_sym_match] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4696), + [anon_sym_TILDE] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4698), + [anon_sym_false] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4698), + [anon_sym_unreachable] = ACTIONS(4698), + [anon_sym_undefined] = ACTIONS(4698), + [sym_sink] = ACTIONS(4698), + [sym_integer] = ACTIONS(4698), + [sym_float] = ACTIONS(4696), + [anon_sym_DQUOTE] = ACTIONS(4696), + [sym_multiline_string] = ACTIONS(4696), + [sym_character] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4696), + }, + [STATE(6802)] = { + [ts_builtin_sym_end] = ACTIONS(5558), + [sym_identifier] = ACTIONS(5560), + [anon_sym_import] = ACTIONS(5560), + [anon_sym_test] = ACTIONS(5560), + [anon_sym_hide] = ACTIONS(5560), + [anon_sym_func] = ACTIONS(5560), + [anon_sym_BANG] = ACTIONS(5558), + [anon_sym_struct] = ACTIONS(5560), + [anon_sym_LPAREN] = ACTIONS(5558), + [anon_sym_RPAREN] = ACTIONS(5558), + [anon_sym_LBRACE] = ACTIONS(5558), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_DOLLAR] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_void] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_type] = ACTIONS(5560), + [anon_sym_anyopaque] = ACTIONS(5560), + [anon_sym_bool] = ACTIONS(5560), + [anon_sym_int] = ACTIONS(5560), + [anon_sym_uint] = ACTIONS(5560), + [anon_sym_float] = ACTIONS(5560), + [anon_sym_range] = ACTIONS(5560), + [anon_sym_i8] = ACTIONS(5560), + [anon_sym_i16] = ACTIONS(5560), + [anon_sym_i32] = ACTIONS(5560), + [anon_sym_i64] = ACTIONS(5560), + [anon_sym_u8] = ACTIONS(5560), + [anon_sym_u16] = ACTIONS(5560), + [anon_sym_u32] = ACTIONS(5560), + [anon_sym_u64] = ACTIONS(5560), + [anon_sym_isize] = ACTIONS(5560), + [anon_sym_usize] = ACTIONS(5560), + [anon_sym_f32] = ACTIONS(5560), + [anon_sym_f64] = ACTIONS(5560), + [anon_sym_c_char] = ACTIONS(5560), + [anon_sym_c_schar] = ACTIONS(5560), + [anon_sym_c_uchar] = ACTIONS(5560), + [anon_sym_c_short] = ACTIONS(5560), + [anon_sym_c_ushort] = ACTIONS(5560), + [anon_sym_c_int] = ACTIONS(5560), + [anon_sym_c_uint] = ACTIONS(5560), + [anon_sym_c_long] = ACTIONS(5560), + [anon_sym_c_ulong] = ACTIONS(5560), + [anon_sym_c_longlong] = ACTIONS(5560), + [anon_sym_c_ulonglong] = ACTIONS(5560), + [anon_sym_c_float] = ACTIONS(5560), + [anon_sym_c_double] = ACTIONS(5560), + [anon_sym_c_longdouble] = ACTIONS(5560), + [anon_sym_return] = ACTIONS(5560), + [anon_sym_yield] = ACTIONS(5560), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5560), + [anon_sym_defer] = ACTIONS(5560), + [anon_sym_errdefer] = ACTIONS(5560), + [anon_sym_if] = ACTIONS(5560), + [anon_sym_else] = ACTIONS(5560), + [anon_sym_while] = ACTIONS(5560), + [anon_sym_expand] = ACTIONS(5560), + [anon_sym_for] = ACTIONS(5560), + [anon_sym_match] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5558), + [anon_sym_TILDE] = ACTIONS(5558), + [anon_sym_try] = ACTIONS(5560), + [anon_sym_DOT] = ACTIONS(5558), + [anon_sym_true] = ACTIONS(5560), + [anon_sym_false] = ACTIONS(5560), + [anon_sym_null] = ACTIONS(5560), + [anon_sym_unreachable] = ACTIONS(5560), + [anon_sym_undefined] = ACTIONS(5560), + [sym_sink] = ACTIONS(5560), + [sym_integer] = ACTIONS(5560), + [sym_float] = ACTIONS(5558), + [anon_sym_DQUOTE] = ACTIONS(5558), + [sym_multiline_string] = ACTIONS(5558), + [sym_character] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5558), + }, + [STATE(6803)] = { + [ts_builtin_sym_end] = ACTIONS(5034), + [sym_identifier] = ACTIONS(5036), + [anon_sym_import] = ACTIONS(5036), + [anon_sym_test] = ACTIONS(5036), + [anon_sym_hide] = ACTIONS(5036), + [anon_sym_func] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_struct] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_RPAREN] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_void] = ACTIONS(5036), + [anon_sym_noreturn] = ACTIONS(5036), + [anon_sym_type] = ACTIONS(5036), + [anon_sym_anyopaque] = ACTIONS(5036), + [anon_sym_bool] = ACTIONS(5036), + [anon_sym_int] = ACTIONS(5036), + [anon_sym_uint] = ACTIONS(5036), + [anon_sym_float] = ACTIONS(5036), + [anon_sym_range] = ACTIONS(5036), + [anon_sym_i8] = ACTIONS(5036), + [anon_sym_i16] = ACTIONS(5036), + [anon_sym_i32] = ACTIONS(5036), + [anon_sym_i64] = ACTIONS(5036), + [anon_sym_u8] = ACTIONS(5036), + [anon_sym_u16] = ACTIONS(5036), + [anon_sym_u32] = ACTIONS(5036), + [anon_sym_u64] = ACTIONS(5036), + [anon_sym_isize] = ACTIONS(5036), + [anon_sym_usize] = ACTIONS(5036), + [anon_sym_f32] = ACTIONS(5036), + [anon_sym_f64] = ACTIONS(5036), + [anon_sym_c_char] = ACTIONS(5036), + [anon_sym_c_schar] = ACTIONS(5036), + [anon_sym_c_uchar] = ACTIONS(5036), + [anon_sym_c_short] = ACTIONS(5036), + [anon_sym_c_ushort] = ACTIONS(5036), + [anon_sym_c_int] = ACTIONS(5036), + [anon_sym_c_uint] = ACTIONS(5036), + [anon_sym_c_long] = ACTIONS(5036), + [anon_sym_c_ulong] = ACTIONS(5036), + [anon_sym_c_longlong] = ACTIONS(5036), + [anon_sym_c_ulonglong] = ACTIONS(5036), + [anon_sym_c_float] = ACTIONS(5036), + [anon_sym_c_double] = ACTIONS(5036), + [anon_sym_c_longdouble] = ACTIONS(5036), + [anon_sym_return] = ACTIONS(5036), + [anon_sym_yield] = ACTIONS(5036), + [anon_sym_break] = ACTIONS(5036), + [anon_sym_continue] = ACTIONS(5036), + [anon_sym_defer] = ACTIONS(5036), + [anon_sym_errdefer] = ACTIONS(5036), + [anon_sym_if] = ACTIONS(5036), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_while] = ACTIONS(5036), + [anon_sym_expand] = ACTIONS(5036), + [anon_sym_for] = ACTIONS(5036), + [anon_sym_match] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_TILDE] = ACTIONS(5034), + [anon_sym_try] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_true] = ACTIONS(5036), + [anon_sym_false] = ACTIONS(5036), + [anon_sym_null] = ACTIONS(5036), + [anon_sym_unreachable] = ACTIONS(5036), + [anon_sym_undefined] = ACTIONS(5036), + [sym_sink] = ACTIONS(5036), + [sym_integer] = ACTIONS(5036), + [sym_float] = ACTIONS(5034), + [anon_sym_DQUOTE] = ACTIONS(5034), + [sym_multiline_string] = ACTIONS(5034), + [sym_character] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5034), + }, + [STATE(6804)] = { + [ts_builtin_sym_end] = ACTIONS(5562), + [sym_identifier] = ACTIONS(5564), + [anon_sym_import] = ACTIONS(5564), + [anon_sym_test] = ACTIONS(5564), + [anon_sym_hide] = ACTIONS(5564), + [anon_sym_func] = ACTIONS(5564), + [anon_sym_BANG] = ACTIONS(5562), + [anon_sym_struct] = ACTIONS(5564), + [anon_sym_LPAREN] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_DOLLAR] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_void] = ACTIONS(5564), + [anon_sym_noreturn] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_anyopaque] = ACTIONS(5564), + [anon_sym_bool] = ACTIONS(5564), + [anon_sym_int] = ACTIONS(5564), + [anon_sym_uint] = ACTIONS(5564), + [anon_sym_float] = ACTIONS(5564), + [anon_sym_range] = ACTIONS(5564), + [anon_sym_i8] = ACTIONS(5564), + [anon_sym_i16] = ACTIONS(5564), + [anon_sym_i32] = ACTIONS(5564), + [anon_sym_i64] = ACTIONS(5564), + [anon_sym_u8] = ACTIONS(5564), + [anon_sym_u16] = ACTIONS(5564), + [anon_sym_u32] = ACTIONS(5564), + [anon_sym_u64] = ACTIONS(5564), + [anon_sym_isize] = ACTIONS(5564), + [anon_sym_usize] = ACTIONS(5564), + [anon_sym_f32] = ACTIONS(5564), + [anon_sym_f64] = ACTIONS(5564), + [anon_sym_c_char] = ACTIONS(5564), + [anon_sym_c_schar] = ACTIONS(5564), + [anon_sym_c_uchar] = ACTIONS(5564), + [anon_sym_c_short] = ACTIONS(5564), + [anon_sym_c_ushort] = ACTIONS(5564), + [anon_sym_c_int] = ACTIONS(5564), + [anon_sym_c_uint] = ACTIONS(5564), + [anon_sym_c_long] = ACTIONS(5564), + [anon_sym_c_ulong] = ACTIONS(5564), + [anon_sym_c_longlong] = ACTIONS(5564), + [anon_sym_c_ulonglong] = ACTIONS(5564), + [anon_sym_c_float] = ACTIONS(5564), + [anon_sym_c_double] = ACTIONS(5564), + [anon_sym_c_longdouble] = ACTIONS(5564), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_break] = ACTIONS(5564), + [anon_sym_continue] = ACTIONS(5564), + [anon_sym_defer] = ACTIONS(5564), + [anon_sym_errdefer] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_else] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_expand] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(5562), + [anon_sym_TILDE] = ACTIONS(5562), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5562), + [anon_sym_true] = ACTIONS(5564), + [anon_sym_false] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_unreachable] = ACTIONS(5564), + [anon_sym_undefined] = ACTIONS(5564), + [sym_sink] = ACTIONS(5564), + [sym_integer] = ACTIONS(5564), + [sym_float] = ACTIONS(5562), + [anon_sym_DQUOTE] = ACTIONS(5562), + [sym_multiline_string] = ACTIONS(5562), + [sym_character] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5562), + }, + [STATE(6805)] = { + [ts_builtin_sym_end] = ACTIONS(4638), + [sym_identifier] = ACTIONS(4640), + [anon_sym_import] = ACTIONS(4640), + [anon_sym_test] = ACTIONS(4640), + [anon_sym_hide] = ACTIONS(4640), + [anon_sym_func] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(4638), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_RPAREN] = ACTIONS(4638), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4638), + [anon_sym_DOLLAR] = ACTIONS(4638), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_void] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym_type] = ACTIONS(4640), + [anon_sym_anyopaque] = ACTIONS(4640), + [anon_sym_bool] = ACTIONS(4640), + [anon_sym_int] = ACTIONS(4640), + [anon_sym_uint] = ACTIONS(4640), + [anon_sym_float] = ACTIONS(4640), + [anon_sym_range] = ACTIONS(4640), + [anon_sym_i8] = ACTIONS(4640), + [anon_sym_i16] = ACTIONS(4640), + [anon_sym_i32] = ACTIONS(4640), + [anon_sym_i64] = ACTIONS(4640), + [anon_sym_u8] = ACTIONS(4640), + [anon_sym_u16] = ACTIONS(4640), + [anon_sym_u32] = ACTIONS(4640), + [anon_sym_u64] = ACTIONS(4640), + [anon_sym_isize] = ACTIONS(4640), + [anon_sym_usize] = ACTIONS(4640), + [anon_sym_f32] = ACTIONS(4640), + [anon_sym_f64] = ACTIONS(4640), + [anon_sym_c_char] = ACTIONS(4640), + [anon_sym_c_schar] = ACTIONS(4640), + [anon_sym_c_uchar] = ACTIONS(4640), + [anon_sym_c_short] = ACTIONS(4640), + [anon_sym_c_ushort] = ACTIONS(4640), + [anon_sym_c_int] = ACTIONS(4640), + [anon_sym_c_uint] = ACTIONS(4640), + [anon_sym_c_long] = ACTIONS(4640), + [anon_sym_c_ulong] = ACTIONS(4640), + [anon_sym_c_longlong] = ACTIONS(4640), + [anon_sym_c_ulonglong] = ACTIONS(4640), + [anon_sym_c_float] = ACTIONS(4640), + [anon_sym_c_double] = ACTIONS(4640), + [anon_sym_c_longdouble] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_yield] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_defer] = ACTIONS(4640), + [anon_sym_errdefer] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_expand] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_match] = ACTIONS(4640), + [anon_sym_AMP] = ACTIONS(4638), + [anon_sym_TILDE] = ACTIONS(4638), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4638), + [anon_sym_true] = ACTIONS(4640), + [anon_sym_false] = ACTIONS(4640), + [anon_sym_null] = ACTIONS(4640), + [anon_sym_unreachable] = ACTIONS(4640), + [anon_sym_undefined] = ACTIONS(4640), + [sym_sink] = ACTIONS(4640), + [sym_integer] = ACTIONS(4640), + [sym_float] = ACTIONS(4638), + [anon_sym_DQUOTE] = ACTIONS(4638), + [sym_multiline_string] = ACTIONS(4638), + [sym_character] = ACTIONS(4638), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4638), + }, + [STATE(6806)] = { + [ts_builtin_sym_end] = ACTIONS(5124), + [sym_identifier] = ACTIONS(5126), + [anon_sym_import] = ACTIONS(5126), + [anon_sym_test] = ACTIONS(5126), + [anon_sym_hide] = ACTIONS(5126), + [anon_sym_func] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_struct] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_RPAREN] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_void] = ACTIONS(5126), + [anon_sym_noreturn] = ACTIONS(5126), + [anon_sym_type] = ACTIONS(5126), + [anon_sym_anyopaque] = ACTIONS(5126), + [anon_sym_bool] = ACTIONS(5126), + [anon_sym_int] = ACTIONS(5126), + [anon_sym_uint] = ACTIONS(5126), + [anon_sym_float] = ACTIONS(5126), + [anon_sym_range] = ACTIONS(5126), + [anon_sym_i8] = ACTIONS(5126), + [anon_sym_i16] = ACTIONS(5126), + [anon_sym_i32] = ACTIONS(5126), + [anon_sym_i64] = ACTIONS(5126), + [anon_sym_u8] = ACTIONS(5126), + [anon_sym_u16] = ACTIONS(5126), + [anon_sym_u32] = ACTIONS(5126), + [anon_sym_u64] = ACTIONS(5126), + [anon_sym_isize] = ACTIONS(5126), + [anon_sym_usize] = ACTIONS(5126), + [anon_sym_f32] = ACTIONS(5126), + [anon_sym_f64] = ACTIONS(5126), + [anon_sym_c_char] = ACTIONS(5126), + [anon_sym_c_schar] = ACTIONS(5126), + [anon_sym_c_uchar] = ACTIONS(5126), + [anon_sym_c_short] = ACTIONS(5126), + [anon_sym_c_ushort] = ACTIONS(5126), + [anon_sym_c_int] = ACTIONS(5126), + [anon_sym_c_uint] = ACTIONS(5126), + [anon_sym_c_long] = ACTIONS(5126), + [anon_sym_c_ulong] = ACTIONS(5126), + [anon_sym_c_longlong] = ACTIONS(5126), + [anon_sym_c_ulonglong] = ACTIONS(5126), + [anon_sym_c_float] = ACTIONS(5126), + [anon_sym_c_double] = ACTIONS(5126), + [anon_sym_c_longdouble] = ACTIONS(5126), + [anon_sym_return] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5126), + [anon_sym_break] = ACTIONS(5126), + [anon_sym_continue] = ACTIONS(5126), + [anon_sym_defer] = ACTIONS(5126), + [anon_sym_errdefer] = ACTIONS(5126), + [anon_sym_if] = ACTIONS(5126), + [anon_sym_else] = ACTIONS(5126), + [anon_sym_while] = ACTIONS(5126), + [anon_sym_expand] = ACTIONS(5126), + [anon_sym_for] = ACTIONS(5126), + [anon_sym_match] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_TILDE] = ACTIONS(5124), + [anon_sym_try] = ACTIONS(5126), + [anon_sym_DOT] = ACTIONS(5124), + [anon_sym_true] = ACTIONS(5126), + [anon_sym_false] = ACTIONS(5126), + [anon_sym_null] = ACTIONS(5126), + [anon_sym_unreachable] = ACTIONS(5126), + [anon_sym_undefined] = ACTIONS(5126), + [sym_sink] = ACTIONS(5126), + [sym_integer] = ACTIONS(5126), + [sym_float] = ACTIONS(5124), + [anon_sym_DQUOTE] = ACTIONS(5124), + [sym_multiline_string] = ACTIONS(5124), + [sym_character] = ACTIONS(5124), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5124), + }, + [STATE(6807)] = { + [ts_builtin_sym_end] = ACTIONS(5568), + [sym_identifier] = ACTIONS(5570), + [anon_sym_import] = ACTIONS(5570), + [anon_sym_test] = ACTIONS(5570), + [anon_sym_hide] = ACTIONS(5570), + [anon_sym_func] = ACTIONS(5570), + [anon_sym_BANG] = ACTIONS(5568), + [anon_sym_struct] = ACTIONS(5570), + [anon_sym_LPAREN] = ACTIONS(5568), + [anon_sym_RPAREN] = ACTIONS(5568), + [anon_sym_LBRACE] = ACTIONS(5568), + [anon_sym_RBRACE] = ACTIONS(5568), + [anon_sym_DASH] = ACTIONS(5568), + [anon_sym_DOLLAR] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_void] = ACTIONS(5570), + [anon_sym_noreturn] = ACTIONS(5570), + [anon_sym_type] = ACTIONS(5570), + [anon_sym_anyopaque] = ACTIONS(5570), + [anon_sym_bool] = ACTIONS(5570), + [anon_sym_int] = ACTIONS(5570), + [anon_sym_uint] = ACTIONS(5570), + [anon_sym_float] = ACTIONS(5570), + [anon_sym_range] = ACTIONS(5570), + [anon_sym_i8] = ACTIONS(5570), + [anon_sym_i16] = ACTIONS(5570), + [anon_sym_i32] = ACTIONS(5570), + [anon_sym_i64] = ACTIONS(5570), + [anon_sym_u8] = ACTIONS(5570), + [anon_sym_u16] = ACTIONS(5570), + [anon_sym_u32] = ACTIONS(5570), + [anon_sym_u64] = ACTIONS(5570), + [anon_sym_isize] = ACTIONS(5570), + [anon_sym_usize] = ACTIONS(5570), + [anon_sym_f32] = ACTIONS(5570), + [anon_sym_f64] = ACTIONS(5570), + [anon_sym_c_char] = ACTIONS(5570), + [anon_sym_c_schar] = ACTIONS(5570), + [anon_sym_c_uchar] = ACTIONS(5570), + [anon_sym_c_short] = ACTIONS(5570), + [anon_sym_c_ushort] = ACTIONS(5570), + [anon_sym_c_int] = ACTIONS(5570), + [anon_sym_c_uint] = ACTIONS(5570), + [anon_sym_c_long] = ACTIONS(5570), + [anon_sym_c_ulong] = ACTIONS(5570), + [anon_sym_c_longlong] = ACTIONS(5570), + [anon_sym_c_ulonglong] = ACTIONS(5570), + [anon_sym_c_float] = ACTIONS(5570), + [anon_sym_c_double] = ACTIONS(5570), + [anon_sym_c_longdouble] = ACTIONS(5570), + [anon_sym_return] = ACTIONS(5570), + [anon_sym_yield] = ACTIONS(5570), + [anon_sym_break] = ACTIONS(5570), + [anon_sym_continue] = ACTIONS(5570), + [anon_sym_defer] = ACTIONS(5570), + [anon_sym_errdefer] = ACTIONS(5570), + [anon_sym_if] = ACTIONS(5570), + [anon_sym_else] = ACTIONS(5570), + [anon_sym_while] = ACTIONS(5570), + [anon_sym_expand] = ACTIONS(5570), + [anon_sym_for] = ACTIONS(5570), + [anon_sym_match] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(5568), + [anon_sym_TILDE] = ACTIONS(5568), + [anon_sym_try] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5568), + [anon_sym_true] = ACTIONS(5570), + [anon_sym_false] = ACTIONS(5570), + [anon_sym_null] = ACTIONS(5570), + [anon_sym_unreachable] = ACTIONS(5570), + [anon_sym_undefined] = ACTIONS(5570), + [sym_sink] = ACTIONS(5570), + [sym_integer] = ACTIONS(5570), + [sym_float] = ACTIONS(5568), + [anon_sym_DQUOTE] = ACTIONS(5568), + [sym_multiline_string] = ACTIONS(5568), + [sym_character] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5568), + }, + [STATE(6808)] = { + [ts_builtin_sym_end] = ACTIONS(4700), + [sym_identifier] = ACTIONS(4702), + [anon_sym_import] = ACTIONS(4702), + [anon_sym_test] = ACTIONS(4702), + [anon_sym_hide] = ACTIONS(4702), + [anon_sym_func] = ACTIONS(4702), + [anon_sym_BANG] = ACTIONS(4700), + [anon_sym_struct] = ACTIONS(4702), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOLLAR] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_void] = ACTIONS(4702), + [anon_sym_noreturn] = ACTIONS(4702), + [anon_sym_type] = ACTIONS(4702), + [anon_sym_anyopaque] = ACTIONS(4702), + [anon_sym_bool] = ACTIONS(4702), + [anon_sym_int] = ACTIONS(4702), + [anon_sym_uint] = ACTIONS(4702), + [anon_sym_float] = ACTIONS(4702), + [anon_sym_range] = ACTIONS(4702), + [anon_sym_i8] = ACTIONS(4702), + [anon_sym_i16] = ACTIONS(4702), + [anon_sym_i32] = ACTIONS(4702), + [anon_sym_i64] = ACTIONS(4702), + [anon_sym_u8] = ACTIONS(4702), + [anon_sym_u16] = ACTIONS(4702), + [anon_sym_u32] = ACTIONS(4702), + [anon_sym_u64] = ACTIONS(4702), + [anon_sym_isize] = ACTIONS(4702), + [anon_sym_usize] = ACTIONS(4702), + [anon_sym_f32] = ACTIONS(4702), + [anon_sym_f64] = ACTIONS(4702), + [anon_sym_c_char] = ACTIONS(4702), + [anon_sym_c_schar] = ACTIONS(4702), + [anon_sym_c_uchar] = ACTIONS(4702), + [anon_sym_c_short] = ACTIONS(4702), + [anon_sym_c_ushort] = ACTIONS(4702), + [anon_sym_c_int] = ACTIONS(4702), + [anon_sym_c_uint] = ACTIONS(4702), + [anon_sym_c_long] = ACTIONS(4702), + [anon_sym_c_ulong] = ACTIONS(4702), + [anon_sym_c_longlong] = ACTIONS(4702), + [anon_sym_c_ulonglong] = ACTIONS(4702), + [anon_sym_c_float] = ACTIONS(4702), + [anon_sym_c_double] = ACTIONS(4702), + [anon_sym_c_longdouble] = ACTIONS(4702), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_yield] = ACTIONS(4702), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_defer] = ACTIONS(4702), + [anon_sym_errdefer] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_while] = ACTIONS(4702), + [anon_sym_expand] = ACTIONS(4702), + [anon_sym_for] = ACTIONS(4702), + [anon_sym_match] = ACTIONS(4702), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_TILDE] = ACTIONS(4700), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_unreachable] = ACTIONS(4702), + [anon_sym_undefined] = ACTIONS(4702), + [sym_sink] = ACTIONS(4702), + [sym_integer] = ACTIONS(4702), + [sym_float] = ACTIONS(4700), + [anon_sym_DQUOTE] = ACTIONS(4700), + [sym_multiline_string] = ACTIONS(4700), + [sym_character] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4700), + }, + [STATE(6809)] = { + [ts_builtin_sym_end] = ACTIONS(4750), + [sym_identifier] = ACTIONS(4752), + [anon_sym_import] = ACTIONS(4752), + [anon_sym_test] = ACTIONS(4752), + [anon_sym_hide] = ACTIONS(4752), + [anon_sym_func] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4750), + [anon_sym_struct] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4750), + [anon_sym_RPAREN] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4750), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_DOLLAR] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4750), + [anon_sym_void] = ACTIONS(4752), + [anon_sym_noreturn] = ACTIONS(4752), + [anon_sym_type] = ACTIONS(4752), + [anon_sym_anyopaque] = ACTIONS(4752), + [anon_sym_bool] = ACTIONS(4752), + [anon_sym_int] = ACTIONS(4752), + [anon_sym_uint] = ACTIONS(4752), + [anon_sym_float] = ACTIONS(4752), + [anon_sym_range] = ACTIONS(4752), + [anon_sym_i8] = ACTIONS(4752), + [anon_sym_i16] = ACTIONS(4752), + [anon_sym_i32] = ACTIONS(4752), + [anon_sym_i64] = ACTIONS(4752), + [anon_sym_u8] = ACTIONS(4752), + [anon_sym_u16] = ACTIONS(4752), + [anon_sym_u32] = ACTIONS(4752), + [anon_sym_u64] = ACTIONS(4752), + [anon_sym_isize] = ACTIONS(4752), + [anon_sym_usize] = ACTIONS(4752), + [anon_sym_f32] = ACTIONS(4752), + [anon_sym_f64] = ACTIONS(4752), + [anon_sym_c_char] = ACTIONS(4752), + [anon_sym_c_schar] = ACTIONS(4752), + [anon_sym_c_uchar] = ACTIONS(4752), + [anon_sym_c_short] = ACTIONS(4752), + [anon_sym_c_ushort] = ACTIONS(4752), + [anon_sym_c_int] = ACTIONS(4752), + [anon_sym_c_uint] = ACTIONS(4752), + [anon_sym_c_long] = ACTIONS(4752), + [anon_sym_c_ulong] = ACTIONS(4752), + [anon_sym_c_longlong] = ACTIONS(4752), + [anon_sym_c_ulonglong] = ACTIONS(4752), + [anon_sym_c_float] = ACTIONS(4752), + [anon_sym_c_double] = ACTIONS(4752), + [anon_sym_c_longdouble] = ACTIONS(4752), + [anon_sym_return] = ACTIONS(4752), + [anon_sym_yield] = ACTIONS(4752), + [anon_sym_break] = ACTIONS(4752), + [anon_sym_continue] = ACTIONS(4752), + [anon_sym_defer] = ACTIONS(4752), + [anon_sym_errdefer] = ACTIONS(4752), + [anon_sym_if] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4752), + [anon_sym_while] = ACTIONS(4752), + [anon_sym_expand] = ACTIONS(4752), + [anon_sym_for] = ACTIONS(4752), + [anon_sym_match] = ACTIONS(4752), + [anon_sym_AMP] = ACTIONS(4750), + [anon_sym_TILDE] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_true] = ACTIONS(4752), + [anon_sym_false] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4752), + [anon_sym_unreachable] = ACTIONS(4752), + [anon_sym_undefined] = ACTIONS(4752), + [sym_sink] = ACTIONS(4752), + [sym_integer] = ACTIONS(4752), + [sym_float] = ACTIONS(4750), + [anon_sym_DQUOTE] = ACTIONS(4750), + [sym_multiline_string] = ACTIONS(4750), + [sym_character] = ACTIONS(4750), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4750), + }, + [STATE(6810)] = { + [ts_builtin_sym_end] = ACTIONS(4704), + [sym_identifier] = ACTIONS(4706), + [anon_sym_import] = ACTIONS(4706), + [anon_sym_test] = ACTIONS(4706), + [anon_sym_hide] = ACTIONS(4706), + [anon_sym_func] = ACTIONS(4706), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_struct] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_void] = ACTIONS(4706), + [anon_sym_noreturn] = ACTIONS(4706), + [anon_sym_type] = ACTIONS(4706), + [anon_sym_anyopaque] = ACTIONS(4706), + [anon_sym_bool] = ACTIONS(4706), + [anon_sym_int] = ACTIONS(4706), + [anon_sym_uint] = ACTIONS(4706), + [anon_sym_float] = ACTIONS(4706), + [anon_sym_range] = ACTIONS(4706), + [anon_sym_i8] = ACTIONS(4706), + [anon_sym_i16] = ACTIONS(4706), + [anon_sym_i32] = ACTIONS(4706), + [anon_sym_i64] = ACTIONS(4706), + [anon_sym_u8] = ACTIONS(4706), + [anon_sym_u16] = ACTIONS(4706), + [anon_sym_u32] = ACTIONS(4706), + [anon_sym_u64] = ACTIONS(4706), + [anon_sym_isize] = ACTIONS(4706), + [anon_sym_usize] = ACTIONS(4706), + [anon_sym_f32] = ACTIONS(4706), + [anon_sym_f64] = ACTIONS(4706), + [anon_sym_c_char] = ACTIONS(4706), + [anon_sym_c_schar] = ACTIONS(4706), + [anon_sym_c_uchar] = ACTIONS(4706), + [anon_sym_c_short] = ACTIONS(4706), + [anon_sym_c_ushort] = ACTIONS(4706), + [anon_sym_c_int] = ACTIONS(4706), + [anon_sym_c_uint] = ACTIONS(4706), + [anon_sym_c_long] = ACTIONS(4706), + [anon_sym_c_ulong] = ACTIONS(4706), + [anon_sym_c_longlong] = ACTIONS(4706), + [anon_sym_c_ulonglong] = ACTIONS(4706), + [anon_sym_c_float] = ACTIONS(4706), + [anon_sym_c_double] = ACTIONS(4706), + [anon_sym_c_longdouble] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_yield] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_defer] = ACTIONS(4706), + [anon_sym_errdefer] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_expand] = ACTIONS(4706), + [anon_sym_for] = ACTIONS(4706), + [anon_sym_match] = ACTIONS(4706), + [anon_sym_AMP] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_unreachable] = ACTIONS(4706), + [anon_sym_undefined] = ACTIONS(4706), + [sym_sink] = ACTIONS(4706), + [sym_integer] = ACTIONS(4706), + [sym_float] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [sym_multiline_string] = ACTIONS(4704), + [sym_character] = ACTIONS(4704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4704), + }, + [STATE(6811)] = { + [ts_builtin_sym_end] = ACTIONS(5572), + [sym_identifier] = ACTIONS(5574), + [anon_sym_import] = ACTIONS(5574), + [anon_sym_test] = ACTIONS(5574), + [anon_sym_hide] = ACTIONS(5574), + [anon_sym_func] = ACTIONS(5574), + [anon_sym_BANG] = ACTIONS(5572), + [anon_sym_struct] = ACTIONS(5574), + [anon_sym_LPAREN] = ACTIONS(5572), + [anon_sym_RPAREN] = ACTIONS(5572), + [anon_sym_LBRACE] = ACTIONS(5572), + [anon_sym_RBRACE] = ACTIONS(5572), + [anon_sym_DASH] = ACTIONS(5572), + [anon_sym_DOLLAR] = ACTIONS(5572), + [anon_sym_LBRACK] = ACTIONS(5572), + [anon_sym_void] = ACTIONS(5574), + [anon_sym_noreturn] = ACTIONS(5574), + [anon_sym_type] = ACTIONS(5574), + [anon_sym_anyopaque] = ACTIONS(5574), + [anon_sym_bool] = ACTIONS(5574), + [anon_sym_int] = ACTIONS(5574), + [anon_sym_uint] = ACTIONS(5574), + [anon_sym_float] = ACTIONS(5574), + [anon_sym_range] = ACTIONS(5574), + [anon_sym_i8] = ACTIONS(5574), + [anon_sym_i16] = ACTIONS(5574), + [anon_sym_i32] = ACTIONS(5574), + [anon_sym_i64] = ACTIONS(5574), + [anon_sym_u8] = ACTIONS(5574), + [anon_sym_u16] = ACTIONS(5574), + [anon_sym_u32] = ACTIONS(5574), + [anon_sym_u64] = ACTIONS(5574), + [anon_sym_isize] = ACTIONS(5574), + [anon_sym_usize] = ACTIONS(5574), + [anon_sym_f32] = ACTIONS(5574), + [anon_sym_f64] = ACTIONS(5574), + [anon_sym_c_char] = ACTIONS(5574), + [anon_sym_c_schar] = ACTIONS(5574), + [anon_sym_c_uchar] = ACTIONS(5574), + [anon_sym_c_short] = ACTIONS(5574), + [anon_sym_c_ushort] = ACTIONS(5574), + [anon_sym_c_int] = ACTIONS(5574), + [anon_sym_c_uint] = ACTIONS(5574), + [anon_sym_c_long] = ACTIONS(5574), + [anon_sym_c_ulong] = ACTIONS(5574), + [anon_sym_c_longlong] = ACTIONS(5574), + [anon_sym_c_ulonglong] = ACTIONS(5574), + [anon_sym_c_float] = ACTIONS(5574), + [anon_sym_c_double] = ACTIONS(5574), + [anon_sym_c_longdouble] = ACTIONS(5574), + [anon_sym_return] = ACTIONS(5574), + [anon_sym_yield] = ACTIONS(5574), + [anon_sym_break] = ACTIONS(5574), + [anon_sym_continue] = ACTIONS(5574), + [anon_sym_defer] = ACTIONS(5574), + [anon_sym_errdefer] = ACTIONS(5574), + [anon_sym_if] = ACTIONS(5574), + [anon_sym_else] = ACTIONS(5574), + [anon_sym_while] = ACTIONS(5574), + [anon_sym_expand] = ACTIONS(5574), + [anon_sym_for] = ACTIONS(5574), + [anon_sym_match] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(5572), + [anon_sym_TILDE] = ACTIONS(5572), + [anon_sym_try] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(5572), + [anon_sym_true] = ACTIONS(5574), + [anon_sym_false] = ACTIONS(5574), + [anon_sym_null] = ACTIONS(5574), + [anon_sym_unreachable] = ACTIONS(5574), + [anon_sym_undefined] = ACTIONS(5574), + [sym_sink] = ACTIONS(5574), + [sym_integer] = ACTIONS(5574), + [sym_float] = ACTIONS(5572), + [anon_sym_DQUOTE] = ACTIONS(5572), + [sym_multiline_string] = ACTIONS(5572), + [sym_character] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5572), + }, + [STATE(6812)] = { + [ts_builtin_sym_end] = ACTIONS(5576), + [sym_identifier] = ACTIONS(5578), + [anon_sym_import] = ACTIONS(5578), + [anon_sym_test] = ACTIONS(5578), + [anon_sym_hide] = ACTIONS(5578), + [anon_sym_func] = ACTIONS(5578), + [anon_sym_BANG] = ACTIONS(5576), + [anon_sym_struct] = ACTIONS(5578), + [anon_sym_LPAREN] = ACTIONS(5576), + [anon_sym_RPAREN] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5576), + [anon_sym_RBRACE] = ACTIONS(5576), + [anon_sym_DASH] = ACTIONS(5576), + [anon_sym_DOLLAR] = ACTIONS(5576), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym_void] = ACTIONS(5578), + [anon_sym_noreturn] = ACTIONS(5578), + [anon_sym_type] = ACTIONS(5578), + [anon_sym_anyopaque] = ACTIONS(5578), + [anon_sym_bool] = ACTIONS(5578), + [anon_sym_int] = ACTIONS(5578), + [anon_sym_uint] = ACTIONS(5578), + [anon_sym_float] = ACTIONS(5578), + [anon_sym_range] = ACTIONS(5578), + [anon_sym_i8] = ACTIONS(5578), + [anon_sym_i16] = ACTIONS(5578), + [anon_sym_i32] = ACTIONS(5578), + [anon_sym_i64] = ACTIONS(5578), + [anon_sym_u8] = ACTIONS(5578), + [anon_sym_u16] = ACTIONS(5578), + [anon_sym_u32] = ACTIONS(5578), + [anon_sym_u64] = ACTIONS(5578), + [anon_sym_isize] = ACTIONS(5578), + [anon_sym_usize] = ACTIONS(5578), + [anon_sym_f32] = ACTIONS(5578), + [anon_sym_f64] = ACTIONS(5578), + [anon_sym_c_char] = ACTIONS(5578), + [anon_sym_c_schar] = ACTIONS(5578), + [anon_sym_c_uchar] = ACTIONS(5578), + [anon_sym_c_short] = ACTIONS(5578), + [anon_sym_c_ushort] = ACTIONS(5578), + [anon_sym_c_int] = ACTIONS(5578), + [anon_sym_c_uint] = ACTIONS(5578), + [anon_sym_c_long] = ACTIONS(5578), + [anon_sym_c_ulong] = ACTIONS(5578), + [anon_sym_c_longlong] = ACTIONS(5578), + [anon_sym_c_ulonglong] = ACTIONS(5578), + [anon_sym_c_float] = ACTIONS(5578), + [anon_sym_c_double] = ACTIONS(5578), + [anon_sym_c_longdouble] = ACTIONS(5578), + [anon_sym_return] = ACTIONS(5578), + [anon_sym_yield] = ACTIONS(5578), + [anon_sym_break] = ACTIONS(5578), + [anon_sym_continue] = ACTIONS(5578), + [anon_sym_defer] = ACTIONS(5578), + [anon_sym_errdefer] = ACTIONS(5578), + [anon_sym_if] = ACTIONS(5578), + [anon_sym_else] = ACTIONS(5578), + [anon_sym_while] = ACTIONS(5578), + [anon_sym_expand] = ACTIONS(5578), + [anon_sym_for] = ACTIONS(5578), + [anon_sym_match] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(5576), + [anon_sym_TILDE] = ACTIONS(5576), + [anon_sym_try] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(5576), + [anon_sym_true] = ACTIONS(5578), + [anon_sym_false] = ACTIONS(5578), + [anon_sym_null] = ACTIONS(5578), + [anon_sym_unreachable] = ACTIONS(5578), + [anon_sym_undefined] = ACTIONS(5578), + [sym_sink] = ACTIONS(5578), + [sym_integer] = ACTIONS(5578), + [sym_float] = ACTIONS(5576), + [anon_sym_DQUOTE] = ACTIONS(5576), + [sym_multiline_string] = ACTIONS(5576), + [sym_character] = ACTIONS(5576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5576), + }, + [STATE(6813)] = { + [ts_builtin_sym_end] = ACTIONS(5580), + [sym_identifier] = ACTIONS(5582), + [anon_sym_import] = ACTIONS(5582), + [anon_sym_test] = ACTIONS(5582), + [anon_sym_hide] = ACTIONS(5582), + [anon_sym_func] = ACTIONS(5582), + [anon_sym_BANG] = ACTIONS(5580), + [anon_sym_struct] = ACTIONS(5582), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(5580), + [anon_sym_LBRACE] = ACTIONS(5580), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_DOLLAR] = ACTIONS(5580), + [anon_sym_LBRACK] = ACTIONS(5580), + [anon_sym_void] = ACTIONS(5582), + [anon_sym_noreturn] = ACTIONS(5582), + [anon_sym_type] = ACTIONS(5582), + [anon_sym_anyopaque] = ACTIONS(5582), + [anon_sym_bool] = ACTIONS(5582), + [anon_sym_int] = ACTIONS(5582), + [anon_sym_uint] = ACTIONS(5582), + [anon_sym_float] = ACTIONS(5582), + [anon_sym_range] = ACTIONS(5582), + [anon_sym_i8] = ACTIONS(5582), + [anon_sym_i16] = ACTIONS(5582), + [anon_sym_i32] = ACTIONS(5582), + [anon_sym_i64] = ACTIONS(5582), + [anon_sym_u8] = ACTIONS(5582), + [anon_sym_u16] = ACTIONS(5582), + [anon_sym_u32] = ACTIONS(5582), + [anon_sym_u64] = ACTIONS(5582), + [anon_sym_isize] = ACTIONS(5582), + [anon_sym_usize] = ACTIONS(5582), + [anon_sym_f32] = ACTIONS(5582), + [anon_sym_f64] = ACTIONS(5582), + [anon_sym_c_char] = ACTIONS(5582), + [anon_sym_c_schar] = ACTIONS(5582), + [anon_sym_c_uchar] = ACTIONS(5582), + [anon_sym_c_short] = ACTIONS(5582), + [anon_sym_c_ushort] = ACTIONS(5582), + [anon_sym_c_int] = ACTIONS(5582), + [anon_sym_c_uint] = ACTIONS(5582), + [anon_sym_c_long] = ACTIONS(5582), + [anon_sym_c_ulong] = ACTIONS(5582), + [anon_sym_c_longlong] = ACTIONS(5582), + [anon_sym_c_ulonglong] = ACTIONS(5582), + [anon_sym_c_float] = ACTIONS(5582), + [anon_sym_c_double] = ACTIONS(5582), + [anon_sym_c_longdouble] = ACTIONS(5582), + [anon_sym_return] = ACTIONS(5582), + [anon_sym_yield] = ACTIONS(5582), + [anon_sym_break] = ACTIONS(5582), + [anon_sym_continue] = ACTIONS(5582), + [anon_sym_defer] = ACTIONS(5582), + [anon_sym_errdefer] = ACTIONS(5582), + [anon_sym_if] = ACTIONS(5582), + [anon_sym_else] = ACTIONS(5582), + [anon_sym_while] = ACTIONS(5582), + [anon_sym_expand] = ACTIONS(5582), + [anon_sym_for] = ACTIONS(5582), + [anon_sym_match] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5580), + [anon_sym_TILDE] = ACTIONS(5580), + [anon_sym_try] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(5580), + [anon_sym_true] = ACTIONS(5582), + [anon_sym_false] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(5582), + [anon_sym_unreachable] = ACTIONS(5582), + [anon_sym_undefined] = ACTIONS(5582), + [sym_sink] = ACTIONS(5582), + [sym_integer] = ACTIONS(5582), + [sym_float] = ACTIONS(5580), + [anon_sym_DQUOTE] = ACTIONS(5580), + [sym_multiline_string] = ACTIONS(5580), + [sym_character] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5580), + }, + [STATE(6814)] = { + [ts_builtin_sym_end] = ACTIONS(4754), + [sym_identifier] = ACTIONS(4756), + [anon_sym_import] = ACTIONS(4756), + [anon_sym_test] = ACTIONS(4756), + [anon_sym_hide] = ACTIONS(4756), + [anon_sym_func] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4754), + [anon_sym_struct] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4754), + [anon_sym_RPAREN] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4754), + [anon_sym_RBRACE] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4754), + [anon_sym_void] = ACTIONS(4756), + [anon_sym_noreturn] = ACTIONS(4756), + [anon_sym_type] = ACTIONS(4756), + [anon_sym_anyopaque] = ACTIONS(4756), + [anon_sym_bool] = ACTIONS(4756), + [anon_sym_int] = ACTIONS(4756), + [anon_sym_uint] = ACTIONS(4756), + [anon_sym_float] = ACTIONS(4756), + [anon_sym_range] = ACTIONS(4756), + [anon_sym_i8] = ACTIONS(4756), + [anon_sym_i16] = ACTIONS(4756), + [anon_sym_i32] = ACTIONS(4756), + [anon_sym_i64] = ACTIONS(4756), + [anon_sym_u8] = ACTIONS(4756), + [anon_sym_u16] = ACTIONS(4756), + [anon_sym_u32] = ACTIONS(4756), + [anon_sym_u64] = ACTIONS(4756), + [anon_sym_isize] = ACTIONS(4756), + [anon_sym_usize] = ACTIONS(4756), + [anon_sym_f32] = ACTIONS(4756), + [anon_sym_f64] = ACTIONS(4756), + [anon_sym_c_char] = ACTIONS(4756), + [anon_sym_c_schar] = ACTIONS(4756), + [anon_sym_c_uchar] = ACTIONS(4756), + [anon_sym_c_short] = ACTIONS(4756), + [anon_sym_c_ushort] = ACTIONS(4756), + [anon_sym_c_int] = ACTIONS(4756), + [anon_sym_c_uint] = ACTIONS(4756), + [anon_sym_c_long] = ACTIONS(4756), + [anon_sym_c_ulong] = ACTIONS(4756), + [anon_sym_c_longlong] = ACTIONS(4756), + [anon_sym_c_ulonglong] = ACTIONS(4756), + [anon_sym_c_float] = ACTIONS(4756), + [anon_sym_c_double] = ACTIONS(4756), + [anon_sym_c_longdouble] = ACTIONS(4756), + [anon_sym_return] = ACTIONS(4756), + [anon_sym_yield] = ACTIONS(4756), + [anon_sym_break] = ACTIONS(4756), + [anon_sym_continue] = ACTIONS(4756), + [anon_sym_defer] = ACTIONS(4756), + [anon_sym_errdefer] = ACTIONS(4756), + [anon_sym_if] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4756), + [anon_sym_while] = ACTIONS(4756), + [anon_sym_expand] = ACTIONS(4756), + [anon_sym_for] = ACTIONS(4756), + [anon_sym_match] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4754), + [anon_sym_TILDE] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_true] = ACTIONS(4756), + [anon_sym_false] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4756), + [anon_sym_unreachable] = ACTIONS(4756), + [anon_sym_undefined] = ACTIONS(4756), + [sym_sink] = ACTIONS(4756), + [sym_integer] = ACTIONS(4756), + [sym_float] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [sym_multiline_string] = ACTIONS(4754), + [sym_character] = ACTIONS(4754), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4754), + }, + [STATE(6815)] = { + [ts_builtin_sym_end] = ACTIONS(5364), + [sym_identifier] = ACTIONS(5366), + [anon_sym_import] = ACTIONS(5366), + [anon_sym_test] = ACTIONS(5366), + [anon_sym_hide] = ACTIONS(5366), + [anon_sym_func] = ACTIONS(5366), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_struct] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5364), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_LBRACE] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5364), + [anon_sym_void] = ACTIONS(5366), + [anon_sym_noreturn] = ACTIONS(5366), + [anon_sym_type] = ACTIONS(5366), + [anon_sym_anyopaque] = ACTIONS(5366), + [anon_sym_bool] = ACTIONS(5366), + [anon_sym_int] = ACTIONS(5366), + [anon_sym_uint] = ACTIONS(5366), + [anon_sym_float] = ACTIONS(5366), + [anon_sym_range] = ACTIONS(5366), + [anon_sym_i8] = ACTIONS(5366), + [anon_sym_i16] = ACTIONS(5366), + [anon_sym_i32] = ACTIONS(5366), + [anon_sym_i64] = ACTIONS(5366), + [anon_sym_u8] = ACTIONS(5366), + [anon_sym_u16] = ACTIONS(5366), + [anon_sym_u32] = ACTIONS(5366), + [anon_sym_u64] = ACTIONS(5366), + [anon_sym_isize] = ACTIONS(5366), + [anon_sym_usize] = ACTIONS(5366), + [anon_sym_f32] = ACTIONS(5366), + [anon_sym_f64] = ACTIONS(5366), + [anon_sym_c_char] = ACTIONS(5366), + [anon_sym_c_schar] = ACTIONS(5366), + [anon_sym_c_uchar] = ACTIONS(5366), + [anon_sym_c_short] = ACTIONS(5366), + [anon_sym_c_ushort] = ACTIONS(5366), + [anon_sym_c_int] = ACTIONS(5366), + [anon_sym_c_uint] = ACTIONS(5366), + [anon_sym_c_long] = ACTIONS(5366), + [anon_sym_c_ulong] = ACTIONS(5366), + [anon_sym_c_longlong] = ACTIONS(5366), + [anon_sym_c_ulonglong] = ACTIONS(5366), + [anon_sym_c_float] = ACTIONS(5366), + [anon_sym_c_double] = ACTIONS(5366), + [anon_sym_c_longdouble] = ACTIONS(5366), + [anon_sym_return] = ACTIONS(5366), + [anon_sym_yield] = ACTIONS(5366), + [anon_sym_break] = ACTIONS(5366), + [anon_sym_continue] = ACTIONS(5366), + [anon_sym_defer] = ACTIONS(5366), + [anon_sym_errdefer] = ACTIONS(5366), + [anon_sym_if] = ACTIONS(5366), + [anon_sym_else] = ACTIONS(5366), + [anon_sym_while] = ACTIONS(5366), + [anon_sym_expand] = ACTIONS(5366), + [anon_sym_for] = ACTIONS(5366), + [anon_sym_match] = ACTIONS(5366), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_TILDE] = ACTIONS(5364), + [anon_sym_try] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5364), + [anon_sym_true] = ACTIONS(5366), + [anon_sym_false] = ACTIONS(5366), + [anon_sym_null] = ACTIONS(5366), + [anon_sym_unreachable] = ACTIONS(5366), + [anon_sym_undefined] = ACTIONS(5366), + [sym_sink] = ACTIONS(5366), + [sym_integer] = ACTIONS(5366), + [sym_float] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(5364), + [sym_multiline_string] = ACTIONS(5364), + [sym_character] = ACTIONS(5364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5364), + }, + [STATE(6816)] = { + [ts_builtin_sym_end] = ACTIONS(4758), + [sym_identifier] = ACTIONS(4760), + [anon_sym_import] = ACTIONS(4760), + [anon_sym_test] = ACTIONS(4760), + [anon_sym_hide] = ACTIONS(4760), + [anon_sym_func] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4758), + [anon_sym_struct] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4758), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_void] = ACTIONS(4760), + [anon_sym_noreturn] = ACTIONS(4760), + [anon_sym_type] = ACTIONS(4760), + [anon_sym_anyopaque] = ACTIONS(4760), + [anon_sym_bool] = ACTIONS(4760), + [anon_sym_int] = ACTIONS(4760), + [anon_sym_uint] = ACTIONS(4760), + [anon_sym_float] = ACTIONS(4760), + [anon_sym_range] = ACTIONS(4760), + [anon_sym_i8] = ACTIONS(4760), + [anon_sym_i16] = ACTIONS(4760), + [anon_sym_i32] = ACTIONS(4760), + [anon_sym_i64] = ACTIONS(4760), + [anon_sym_u8] = ACTIONS(4760), + [anon_sym_u16] = ACTIONS(4760), + [anon_sym_u32] = ACTIONS(4760), + [anon_sym_u64] = ACTIONS(4760), + [anon_sym_isize] = ACTIONS(4760), + [anon_sym_usize] = ACTIONS(4760), + [anon_sym_f32] = ACTIONS(4760), + [anon_sym_f64] = ACTIONS(4760), + [anon_sym_c_char] = ACTIONS(4760), + [anon_sym_c_schar] = ACTIONS(4760), + [anon_sym_c_uchar] = ACTIONS(4760), + [anon_sym_c_short] = ACTIONS(4760), + [anon_sym_c_ushort] = ACTIONS(4760), + [anon_sym_c_int] = ACTIONS(4760), + [anon_sym_c_uint] = ACTIONS(4760), + [anon_sym_c_long] = ACTIONS(4760), + [anon_sym_c_ulong] = ACTIONS(4760), + [anon_sym_c_longlong] = ACTIONS(4760), + [anon_sym_c_ulonglong] = ACTIONS(4760), + [anon_sym_c_float] = ACTIONS(4760), + [anon_sym_c_double] = ACTIONS(4760), + [anon_sym_c_longdouble] = ACTIONS(4760), + [anon_sym_return] = ACTIONS(4760), + [anon_sym_yield] = ACTIONS(4760), + [anon_sym_break] = ACTIONS(4760), + [anon_sym_continue] = ACTIONS(4760), + [anon_sym_defer] = ACTIONS(4760), + [anon_sym_errdefer] = ACTIONS(4760), + [anon_sym_if] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4760), + [anon_sym_while] = ACTIONS(4760), + [anon_sym_expand] = ACTIONS(4760), + [anon_sym_for] = ACTIONS(4760), + [anon_sym_match] = ACTIONS(4760), + [anon_sym_AMP] = ACTIONS(4758), + [anon_sym_TILDE] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_true] = ACTIONS(4760), + [anon_sym_false] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4760), + [anon_sym_unreachable] = ACTIONS(4760), + [anon_sym_undefined] = ACTIONS(4760), + [sym_sink] = ACTIONS(4760), + [sym_integer] = ACTIONS(4760), + [sym_float] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [sym_multiline_string] = ACTIONS(4758), + [sym_character] = ACTIONS(4758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4758), + }, + [STATE(6817)] = { + [ts_builtin_sym_end] = ACTIONS(5038), + [sym_identifier] = ACTIONS(5040), + [anon_sym_import] = ACTIONS(5040), + [anon_sym_test] = ACTIONS(5040), + [anon_sym_hide] = ACTIONS(5040), + [anon_sym_func] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_struct] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_RPAREN] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_void] = ACTIONS(5040), + [anon_sym_noreturn] = ACTIONS(5040), + [anon_sym_type] = ACTIONS(5040), + [anon_sym_anyopaque] = ACTIONS(5040), + [anon_sym_bool] = ACTIONS(5040), + [anon_sym_int] = ACTIONS(5040), + [anon_sym_uint] = ACTIONS(5040), + [anon_sym_float] = ACTIONS(5040), + [anon_sym_range] = ACTIONS(5040), + [anon_sym_i8] = ACTIONS(5040), + [anon_sym_i16] = ACTIONS(5040), + [anon_sym_i32] = ACTIONS(5040), + [anon_sym_i64] = ACTIONS(5040), + [anon_sym_u8] = ACTIONS(5040), + [anon_sym_u16] = ACTIONS(5040), + [anon_sym_u32] = ACTIONS(5040), + [anon_sym_u64] = ACTIONS(5040), + [anon_sym_isize] = ACTIONS(5040), + [anon_sym_usize] = ACTIONS(5040), + [anon_sym_f32] = ACTIONS(5040), + [anon_sym_f64] = ACTIONS(5040), + [anon_sym_c_char] = ACTIONS(5040), + [anon_sym_c_schar] = ACTIONS(5040), + [anon_sym_c_uchar] = ACTIONS(5040), + [anon_sym_c_short] = ACTIONS(5040), + [anon_sym_c_ushort] = ACTIONS(5040), + [anon_sym_c_int] = ACTIONS(5040), + [anon_sym_c_uint] = ACTIONS(5040), + [anon_sym_c_long] = ACTIONS(5040), + [anon_sym_c_ulong] = ACTIONS(5040), + [anon_sym_c_longlong] = ACTIONS(5040), + [anon_sym_c_ulonglong] = ACTIONS(5040), + [anon_sym_c_float] = ACTIONS(5040), + [anon_sym_c_double] = ACTIONS(5040), + [anon_sym_c_longdouble] = ACTIONS(5040), + [anon_sym_return] = ACTIONS(5040), + [anon_sym_yield] = ACTIONS(5040), + [anon_sym_break] = ACTIONS(5040), + [anon_sym_continue] = ACTIONS(5040), + [anon_sym_defer] = ACTIONS(5040), + [anon_sym_errdefer] = ACTIONS(5040), + [anon_sym_if] = ACTIONS(5040), + [anon_sym_else] = ACTIONS(5040), + [anon_sym_while] = ACTIONS(5040), + [anon_sym_expand] = ACTIONS(5040), + [anon_sym_for] = ACTIONS(5040), + [anon_sym_match] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_TILDE] = ACTIONS(5038), + [anon_sym_try] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_true] = ACTIONS(5040), + [anon_sym_false] = ACTIONS(5040), + [anon_sym_null] = ACTIONS(5040), + [anon_sym_unreachable] = ACTIONS(5040), + [anon_sym_undefined] = ACTIONS(5040), + [sym_sink] = ACTIONS(5040), + [sym_integer] = ACTIONS(5040), + [sym_float] = ACTIONS(5038), + [anon_sym_DQUOTE] = ACTIONS(5038), + [sym_multiline_string] = ACTIONS(5038), + [sym_character] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5038), + }, + [STATE(6818)] = { + [ts_builtin_sym_end] = ACTIONS(5042), + [sym_identifier] = ACTIONS(5044), + [anon_sym_import] = ACTIONS(5044), + [anon_sym_test] = ACTIONS(5044), + [anon_sym_hide] = ACTIONS(5044), + [anon_sym_func] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_struct] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_RPAREN] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5042), + [anon_sym_RBRACE] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_void] = ACTIONS(5044), + [anon_sym_noreturn] = ACTIONS(5044), + [anon_sym_type] = ACTIONS(5044), + [anon_sym_anyopaque] = ACTIONS(5044), + [anon_sym_bool] = ACTIONS(5044), + [anon_sym_int] = ACTIONS(5044), + [anon_sym_uint] = ACTIONS(5044), + [anon_sym_float] = ACTIONS(5044), + [anon_sym_range] = ACTIONS(5044), + [anon_sym_i8] = ACTIONS(5044), + [anon_sym_i16] = ACTIONS(5044), + [anon_sym_i32] = ACTIONS(5044), + [anon_sym_i64] = ACTIONS(5044), + [anon_sym_u8] = ACTIONS(5044), + [anon_sym_u16] = ACTIONS(5044), + [anon_sym_u32] = ACTIONS(5044), + [anon_sym_u64] = ACTIONS(5044), + [anon_sym_isize] = ACTIONS(5044), + [anon_sym_usize] = ACTIONS(5044), + [anon_sym_f32] = ACTIONS(5044), + [anon_sym_f64] = ACTIONS(5044), + [anon_sym_c_char] = ACTIONS(5044), + [anon_sym_c_schar] = ACTIONS(5044), + [anon_sym_c_uchar] = ACTIONS(5044), + [anon_sym_c_short] = ACTIONS(5044), + [anon_sym_c_ushort] = ACTIONS(5044), + [anon_sym_c_int] = ACTIONS(5044), + [anon_sym_c_uint] = ACTIONS(5044), + [anon_sym_c_long] = ACTIONS(5044), + [anon_sym_c_ulong] = ACTIONS(5044), + [anon_sym_c_longlong] = ACTIONS(5044), + [anon_sym_c_ulonglong] = ACTIONS(5044), + [anon_sym_c_float] = ACTIONS(5044), + [anon_sym_c_double] = ACTIONS(5044), + [anon_sym_c_longdouble] = ACTIONS(5044), + [anon_sym_return] = ACTIONS(5044), + [anon_sym_yield] = ACTIONS(5044), + [anon_sym_break] = ACTIONS(5044), + [anon_sym_continue] = ACTIONS(5044), + [anon_sym_defer] = ACTIONS(5044), + [anon_sym_errdefer] = ACTIONS(5044), + [anon_sym_if] = ACTIONS(5044), + [anon_sym_else] = ACTIONS(5044), + [anon_sym_while] = ACTIONS(5044), + [anon_sym_expand] = ACTIONS(5044), + [anon_sym_for] = ACTIONS(5044), + [anon_sym_match] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_TILDE] = ACTIONS(5042), + [anon_sym_try] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_true] = ACTIONS(5044), + [anon_sym_false] = ACTIONS(5044), + [anon_sym_null] = ACTIONS(5044), + [anon_sym_unreachable] = ACTIONS(5044), + [anon_sym_undefined] = ACTIONS(5044), + [sym_sink] = ACTIONS(5044), + [sym_integer] = ACTIONS(5044), + [sym_float] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5042), + [sym_multiline_string] = ACTIONS(5042), + [sym_character] = ACTIONS(5042), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5042), + }, + [STATE(6819)] = { + [ts_builtin_sym_end] = ACTIONS(4762), + [sym_identifier] = ACTIONS(4764), + [anon_sym_import] = ACTIONS(4764), + [anon_sym_test] = ACTIONS(4764), + [anon_sym_hide] = ACTIONS(4764), + [anon_sym_func] = ACTIONS(4764), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_struct] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4762), + [anon_sym_RPAREN] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_DOLLAR] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4762), + [anon_sym_void] = ACTIONS(4764), + [anon_sym_noreturn] = ACTIONS(4764), + [anon_sym_type] = ACTIONS(4764), + [anon_sym_anyopaque] = ACTIONS(4764), + [anon_sym_bool] = ACTIONS(4764), + [anon_sym_int] = ACTIONS(4764), + [anon_sym_uint] = ACTIONS(4764), + [anon_sym_float] = ACTIONS(4764), + [anon_sym_range] = ACTIONS(4764), + [anon_sym_i8] = ACTIONS(4764), + [anon_sym_i16] = ACTIONS(4764), + [anon_sym_i32] = ACTIONS(4764), + [anon_sym_i64] = ACTIONS(4764), + [anon_sym_u8] = ACTIONS(4764), + [anon_sym_u16] = ACTIONS(4764), + [anon_sym_u32] = ACTIONS(4764), + [anon_sym_u64] = ACTIONS(4764), + [anon_sym_isize] = ACTIONS(4764), + [anon_sym_usize] = ACTIONS(4764), + [anon_sym_f32] = ACTIONS(4764), + [anon_sym_f64] = ACTIONS(4764), + [anon_sym_c_char] = ACTIONS(4764), + [anon_sym_c_schar] = ACTIONS(4764), + [anon_sym_c_uchar] = ACTIONS(4764), + [anon_sym_c_short] = ACTIONS(4764), + [anon_sym_c_ushort] = ACTIONS(4764), + [anon_sym_c_int] = ACTIONS(4764), + [anon_sym_c_uint] = ACTIONS(4764), + [anon_sym_c_long] = ACTIONS(4764), + [anon_sym_c_ulong] = ACTIONS(4764), + [anon_sym_c_longlong] = ACTIONS(4764), + [anon_sym_c_ulonglong] = ACTIONS(4764), + [anon_sym_c_float] = ACTIONS(4764), + [anon_sym_c_double] = ACTIONS(4764), + [anon_sym_c_longdouble] = ACTIONS(4764), + [anon_sym_return] = ACTIONS(4764), + [anon_sym_yield] = ACTIONS(4764), + [anon_sym_break] = ACTIONS(4764), + [anon_sym_continue] = ACTIONS(4764), + [anon_sym_defer] = ACTIONS(4764), + [anon_sym_errdefer] = ACTIONS(4764), + [anon_sym_if] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4764), + [anon_sym_while] = ACTIONS(4764), + [anon_sym_expand] = ACTIONS(4764), + [anon_sym_for] = ACTIONS(4764), + [anon_sym_match] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_TILDE] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_true] = ACTIONS(4764), + [anon_sym_false] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(4764), + [anon_sym_unreachable] = ACTIONS(4764), + [anon_sym_undefined] = ACTIONS(4764), + [sym_sink] = ACTIONS(4764), + [sym_integer] = ACTIONS(4764), + [sym_float] = ACTIONS(4762), + [anon_sym_DQUOTE] = ACTIONS(4762), + [sym_multiline_string] = ACTIONS(4762), + [sym_character] = ACTIONS(4762), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4762), + }, + [STATE(6820)] = { + [ts_builtin_sym_end] = ACTIONS(4766), + [sym_identifier] = ACTIONS(4768), + [anon_sym_import] = ACTIONS(4768), + [anon_sym_test] = ACTIONS(4768), + [anon_sym_hide] = ACTIONS(4768), + [anon_sym_func] = ACTIONS(4768), + [anon_sym_BANG] = ACTIONS(4766), + [anon_sym_struct] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4766), + [anon_sym_RPAREN] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4766), + [anon_sym_RBRACE] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_void] = ACTIONS(4768), + [anon_sym_noreturn] = ACTIONS(4768), + [anon_sym_type] = ACTIONS(4768), + [anon_sym_anyopaque] = ACTIONS(4768), + [anon_sym_bool] = ACTIONS(4768), + [anon_sym_int] = ACTIONS(4768), + [anon_sym_uint] = ACTIONS(4768), + [anon_sym_float] = ACTIONS(4768), + [anon_sym_range] = ACTIONS(4768), + [anon_sym_i8] = ACTIONS(4768), + [anon_sym_i16] = ACTIONS(4768), + [anon_sym_i32] = ACTIONS(4768), + [anon_sym_i64] = ACTIONS(4768), + [anon_sym_u8] = ACTIONS(4768), + [anon_sym_u16] = ACTIONS(4768), + [anon_sym_u32] = ACTIONS(4768), + [anon_sym_u64] = ACTIONS(4768), + [anon_sym_isize] = ACTIONS(4768), + [anon_sym_usize] = ACTIONS(4768), + [anon_sym_f32] = ACTIONS(4768), + [anon_sym_f64] = ACTIONS(4768), + [anon_sym_c_char] = ACTIONS(4768), + [anon_sym_c_schar] = ACTIONS(4768), + [anon_sym_c_uchar] = ACTIONS(4768), + [anon_sym_c_short] = ACTIONS(4768), + [anon_sym_c_ushort] = ACTIONS(4768), + [anon_sym_c_int] = ACTIONS(4768), + [anon_sym_c_uint] = ACTIONS(4768), + [anon_sym_c_long] = ACTIONS(4768), + [anon_sym_c_ulong] = ACTIONS(4768), + [anon_sym_c_longlong] = ACTIONS(4768), + [anon_sym_c_ulonglong] = ACTIONS(4768), + [anon_sym_c_float] = ACTIONS(4768), + [anon_sym_c_double] = ACTIONS(4768), + [anon_sym_c_longdouble] = ACTIONS(4768), + [anon_sym_return] = ACTIONS(4768), + [anon_sym_yield] = ACTIONS(4768), + [anon_sym_break] = ACTIONS(4768), + [anon_sym_continue] = ACTIONS(4768), + [anon_sym_defer] = ACTIONS(4768), + [anon_sym_errdefer] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_while] = ACTIONS(4768), + [anon_sym_expand] = ACTIONS(4768), + [anon_sym_for] = ACTIONS(4768), + [anon_sym_match] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4766), + [anon_sym_TILDE] = ACTIONS(4766), + [anon_sym_try] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_unreachable] = ACTIONS(4768), + [anon_sym_undefined] = ACTIONS(4768), + [sym_sink] = ACTIONS(4768), + [sym_integer] = ACTIONS(4768), + [sym_float] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [sym_multiline_string] = ACTIONS(4766), + [sym_character] = ACTIONS(4766), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4766), + }, + [STATE(6821)] = { + [ts_builtin_sym_end] = ACTIONS(5584), + [sym_identifier] = ACTIONS(5586), + [anon_sym_import] = ACTIONS(5586), + [anon_sym_test] = ACTIONS(5586), + [anon_sym_hide] = ACTIONS(5586), + [anon_sym_func] = ACTIONS(5586), + [anon_sym_BANG] = ACTIONS(5584), + [anon_sym_struct] = ACTIONS(5586), + [anon_sym_LPAREN] = ACTIONS(5584), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_LBRACE] = ACTIONS(5584), + [anon_sym_RBRACE] = ACTIONS(5584), + [anon_sym_DASH] = ACTIONS(5584), + [anon_sym_DOLLAR] = ACTIONS(5584), + [anon_sym_LBRACK] = ACTIONS(5584), + [anon_sym_void] = ACTIONS(5586), + [anon_sym_noreturn] = ACTIONS(5586), + [anon_sym_type] = ACTIONS(5586), + [anon_sym_anyopaque] = ACTIONS(5586), + [anon_sym_bool] = ACTIONS(5586), + [anon_sym_int] = ACTIONS(5586), + [anon_sym_uint] = ACTIONS(5586), + [anon_sym_float] = ACTIONS(5586), + [anon_sym_range] = ACTIONS(5586), + [anon_sym_i8] = ACTIONS(5586), + [anon_sym_i16] = ACTIONS(5586), + [anon_sym_i32] = ACTIONS(5586), + [anon_sym_i64] = ACTIONS(5586), + [anon_sym_u8] = ACTIONS(5586), + [anon_sym_u16] = ACTIONS(5586), + [anon_sym_u32] = ACTIONS(5586), + [anon_sym_u64] = ACTIONS(5586), + [anon_sym_isize] = ACTIONS(5586), + [anon_sym_usize] = ACTIONS(5586), + [anon_sym_f32] = ACTIONS(5586), + [anon_sym_f64] = ACTIONS(5586), + [anon_sym_c_char] = ACTIONS(5586), + [anon_sym_c_schar] = ACTIONS(5586), + [anon_sym_c_uchar] = ACTIONS(5586), + [anon_sym_c_short] = ACTIONS(5586), + [anon_sym_c_ushort] = ACTIONS(5586), + [anon_sym_c_int] = ACTIONS(5586), + [anon_sym_c_uint] = ACTIONS(5586), + [anon_sym_c_long] = ACTIONS(5586), + [anon_sym_c_ulong] = ACTIONS(5586), + [anon_sym_c_longlong] = ACTIONS(5586), + [anon_sym_c_ulonglong] = ACTIONS(5586), + [anon_sym_c_float] = ACTIONS(5586), + [anon_sym_c_double] = ACTIONS(5586), + [anon_sym_c_longdouble] = ACTIONS(5586), + [anon_sym_return] = ACTIONS(5586), + [anon_sym_yield] = ACTIONS(5586), + [anon_sym_break] = ACTIONS(5586), + [anon_sym_continue] = ACTIONS(5586), + [anon_sym_defer] = ACTIONS(5586), + [anon_sym_errdefer] = ACTIONS(5586), + [anon_sym_if] = ACTIONS(5586), + [anon_sym_else] = ACTIONS(5586), + [anon_sym_while] = ACTIONS(5586), + [anon_sym_expand] = ACTIONS(5586), + [anon_sym_for] = ACTIONS(5586), + [anon_sym_match] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(5584), + [anon_sym_TILDE] = ACTIONS(5584), + [anon_sym_try] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(5584), + [anon_sym_true] = ACTIONS(5586), + [anon_sym_false] = ACTIONS(5586), + [anon_sym_null] = ACTIONS(5586), + [anon_sym_unreachable] = ACTIONS(5586), + [anon_sym_undefined] = ACTIONS(5586), + [sym_sink] = ACTIONS(5586), + [sym_integer] = ACTIONS(5586), + [sym_float] = ACTIONS(5584), + [anon_sym_DQUOTE] = ACTIONS(5584), + [sym_multiline_string] = ACTIONS(5584), + [sym_character] = ACTIONS(5584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5584), + }, + [STATE(6822)] = { + [ts_builtin_sym_end] = ACTIONS(5072), + [sym_identifier] = ACTIONS(5074), + [anon_sym_import] = ACTIONS(5074), + [anon_sym_test] = ACTIONS(5074), + [anon_sym_hide] = ACTIONS(5074), + [anon_sym_func] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5072), + [anon_sym_struct] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_DASH] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_void] = ACTIONS(5074), + [anon_sym_noreturn] = ACTIONS(5074), + [anon_sym_type] = ACTIONS(5074), + [anon_sym_anyopaque] = ACTIONS(5074), + [anon_sym_bool] = ACTIONS(5074), + [anon_sym_int] = ACTIONS(5074), + [anon_sym_uint] = ACTIONS(5074), + [anon_sym_float] = ACTIONS(5074), + [anon_sym_range] = ACTIONS(5074), + [anon_sym_i8] = ACTIONS(5074), + [anon_sym_i16] = ACTIONS(5074), + [anon_sym_i32] = ACTIONS(5074), + [anon_sym_i64] = ACTIONS(5074), + [anon_sym_u8] = ACTIONS(5074), + [anon_sym_u16] = ACTIONS(5074), + [anon_sym_u32] = ACTIONS(5074), + [anon_sym_u64] = ACTIONS(5074), + [anon_sym_isize] = ACTIONS(5074), + [anon_sym_usize] = ACTIONS(5074), + [anon_sym_f32] = ACTIONS(5074), + [anon_sym_f64] = ACTIONS(5074), + [anon_sym_c_char] = ACTIONS(5074), + [anon_sym_c_schar] = ACTIONS(5074), + [anon_sym_c_uchar] = ACTIONS(5074), + [anon_sym_c_short] = ACTIONS(5074), + [anon_sym_c_ushort] = ACTIONS(5074), + [anon_sym_c_int] = ACTIONS(5074), + [anon_sym_c_uint] = ACTIONS(5074), + [anon_sym_c_long] = ACTIONS(5074), + [anon_sym_c_ulong] = ACTIONS(5074), + [anon_sym_c_longlong] = ACTIONS(5074), + [anon_sym_c_ulonglong] = ACTIONS(5074), + [anon_sym_c_float] = ACTIONS(5074), + [anon_sym_c_double] = ACTIONS(5074), + [anon_sym_c_longdouble] = ACTIONS(5074), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_yield] = ACTIONS(5074), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_defer] = ACTIONS(5074), + [anon_sym_errdefer] = ACTIONS(5074), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_while] = ACTIONS(5074), + [anon_sym_expand] = ACTIONS(5074), + [anon_sym_for] = ACTIONS(5074), + [anon_sym_match] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5072), + [anon_sym_TILDE] = ACTIONS(5072), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_DOT] = ACTIONS(5072), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_null] = ACTIONS(5074), + [anon_sym_unreachable] = ACTIONS(5074), + [anon_sym_undefined] = ACTIONS(5074), + [sym_sink] = ACTIONS(5074), + [sym_integer] = ACTIONS(5074), + [sym_float] = ACTIONS(5072), + [anon_sym_DQUOTE] = ACTIONS(5072), + [sym_multiline_string] = ACTIONS(5072), + [sym_character] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5072), + }, + [STATE(6823)] = { + [ts_builtin_sym_end] = ACTIONS(5368), + [sym_identifier] = ACTIONS(5370), + [anon_sym_import] = ACTIONS(5370), + [anon_sym_test] = ACTIONS(5370), + [anon_sym_hide] = ACTIONS(5370), + [anon_sym_func] = ACTIONS(5370), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_struct] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5368), + [anon_sym_RPAREN] = ACTIONS(5368), + [anon_sym_LBRACE] = ACTIONS(5368), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_LBRACK] = ACTIONS(5368), + [anon_sym_void] = ACTIONS(5370), + [anon_sym_noreturn] = ACTIONS(5370), + [anon_sym_type] = ACTIONS(5370), + [anon_sym_anyopaque] = ACTIONS(5370), + [anon_sym_bool] = ACTIONS(5370), + [anon_sym_int] = ACTIONS(5370), + [anon_sym_uint] = ACTIONS(5370), + [anon_sym_float] = ACTIONS(5370), + [anon_sym_range] = ACTIONS(5370), + [anon_sym_i8] = ACTIONS(5370), + [anon_sym_i16] = ACTIONS(5370), + [anon_sym_i32] = ACTIONS(5370), + [anon_sym_i64] = ACTIONS(5370), + [anon_sym_u8] = ACTIONS(5370), + [anon_sym_u16] = ACTIONS(5370), + [anon_sym_u32] = ACTIONS(5370), + [anon_sym_u64] = ACTIONS(5370), + [anon_sym_isize] = ACTIONS(5370), + [anon_sym_usize] = ACTIONS(5370), + [anon_sym_f32] = ACTIONS(5370), + [anon_sym_f64] = ACTIONS(5370), + [anon_sym_c_char] = ACTIONS(5370), + [anon_sym_c_schar] = ACTIONS(5370), + [anon_sym_c_uchar] = ACTIONS(5370), + [anon_sym_c_short] = ACTIONS(5370), + [anon_sym_c_ushort] = ACTIONS(5370), + [anon_sym_c_int] = ACTIONS(5370), + [anon_sym_c_uint] = ACTIONS(5370), + [anon_sym_c_long] = ACTIONS(5370), + [anon_sym_c_ulong] = ACTIONS(5370), + [anon_sym_c_longlong] = ACTIONS(5370), + [anon_sym_c_ulonglong] = ACTIONS(5370), + [anon_sym_c_float] = ACTIONS(5370), + [anon_sym_c_double] = ACTIONS(5370), + [anon_sym_c_longdouble] = ACTIONS(5370), + [anon_sym_return] = ACTIONS(5370), + [anon_sym_yield] = ACTIONS(5370), + [anon_sym_break] = ACTIONS(5370), + [anon_sym_continue] = ACTIONS(5370), + [anon_sym_defer] = ACTIONS(5370), + [anon_sym_errdefer] = ACTIONS(5370), + [anon_sym_if] = ACTIONS(5370), + [anon_sym_else] = ACTIONS(5370), + [anon_sym_while] = ACTIONS(5370), + [anon_sym_expand] = ACTIONS(5370), + [anon_sym_for] = ACTIONS(5370), + [anon_sym_match] = ACTIONS(5370), + [anon_sym_AMP] = ACTIONS(5368), + [anon_sym_TILDE] = ACTIONS(5368), + [anon_sym_try] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5368), + [anon_sym_true] = ACTIONS(5370), + [anon_sym_false] = ACTIONS(5370), + [anon_sym_null] = ACTIONS(5370), + [anon_sym_unreachable] = ACTIONS(5370), + [anon_sym_undefined] = ACTIONS(5370), + [sym_sink] = ACTIONS(5370), + [sym_integer] = ACTIONS(5370), + [sym_float] = ACTIONS(5368), + [anon_sym_DQUOTE] = ACTIONS(5368), + [sym_multiline_string] = ACTIONS(5368), + [sym_character] = ACTIONS(5368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5368), + }, + [STATE(6824)] = { + [ts_builtin_sym_end] = ACTIONS(5588), + [sym_identifier] = ACTIONS(5590), + [anon_sym_import] = ACTIONS(5590), + [anon_sym_test] = ACTIONS(5590), + [anon_sym_hide] = ACTIONS(5590), + [anon_sym_func] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5588), + [anon_sym_struct] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5588), + [anon_sym_RPAREN] = ACTIONS(5588), + [anon_sym_LBRACE] = ACTIONS(5588), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_DASH] = ACTIONS(5588), + [anon_sym_DOLLAR] = ACTIONS(5588), + [anon_sym_LBRACK] = ACTIONS(5588), + [anon_sym_void] = ACTIONS(5590), + [anon_sym_noreturn] = ACTIONS(5590), + [anon_sym_type] = ACTIONS(5590), + [anon_sym_anyopaque] = ACTIONS(5590), + [anon_sym_bool] = ACTIONS(5590), + [anon_sym_int] = ACTIONS(5590), + [anon_sym_uint] = ACTIONS(5590), + [anon_sym_float] = ACTIONS(5590), + [anon_sym_range] = ACTIONS(5590), + [anon_sym_i8] = ACTIONS(5590), + [anon_sym_i16] = ACTIONS(5590), + [anon_sym_i32] = ACTIONS(5590), + [anon_sym_i64] = ACTIONS(5590), + [anon_sym_u8] = ACTIONS(5590), + [anon_sym_u16] = ACTIONS(5590), + [anon_sym_u32] = ACTIONS(5590), + [anon_sym_u64] = ACTIONS(5590), + [anon_sym_isize] = ACTIONS(5590), + [anon_sym_usize] = ACTIONS(5590), + [anon_sym_f32] = ACTIONS(5590), + [anon_sym_f64] = ACTIONS(5590), + [anon_sym_c_char] = ACTIONS(5590), + [anon_sym_c_schar] = ACTIONS(5590), + [anon_sym_c_uchar] = ACTIONS(5590), + [anon_sym_c_short] = ACTIONS(5590), + [anon_sym_c_ushort] = ACTIONS(5590), + [anon_sym_c_int] = ACTIONS(5590), + [anon_sym_c_uint] = ACTIONS(5590), + [anon_sym_c_long] = ACTIONS(5590), + [anon_sym_c_ulong] = ACTIONS(5590), + [anon_sym_c_longlong] = ACTIONS(5590), + [anon_sym_c_ulonglong] = ACTIONS(5590), + [anon_sym_c_float] = ACTIONS(5590), + [anon_sym_c_double] = ACTIONS(5590), + [anon_sym_c_longdouble] = ACTIONS(5590), + [anon_sym_return] = ACTIONS(5590), + [anon_sym_yield] = ACTIONS(5590), + [anon_sym_break] = ACTIONS(5590), + [anon_sym_continue] = ACTIONS(5590), + [anon_sym_defer] = ACTIONS(5590), + [anon_sym_errdefer] = ACTIONS(5590), + [anon_sym_if] = ACTIONS(5590), + [anon_sym_else] = ACTIONS(5590), + [anon_sym_while] = ACTIONS(5590), + [anon_sym_expand] = ACTIONS(5590), + [anon_sym_for] = ACTIONS(5590), + [anon_sym_match] = ACTIONS(5590), + [anon_sym_AMP] = ACTIONS(5588), + [anon_sym_TILDE] = ACTIONS(5588), + [anon_sym_try] = ACTIONS(5590), + [anon_sym_DOT] = ACTIONS(5588), + [anon_sym_true] = ACTIONS(5590), + [anon_sym_false] = ACTIONS(5590), + [anon_sym_null] = ACTIONS(5590), + [anon_sym_unreachable] = ACTIONS(5590), + [anon_sym_undefined] = ACTIONS(5590), + [sym_sink] = ACTIONS(5590), + [sym_integer] = ACTIONS(5590), + [sym_float] = ACTIONS(5588), + [anon_sym_DQUOTE] = ACTIONS(5588), + [sym_multiline_string] = ACTIONS(5588), + [sym_character] = ACTIONS(5588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5588), + }, + [STATE(6825)] = { + [ts_builtin_sym_end] = ACTIONS(5592), + [sym_identifier] = ACTIONS(5594), + [anon_sym_import] = ACTIONS(5594), + [anon_sym_test] = ACTIONS(5594), + [anon_sym_hide] = ACTIONS(5594), + [anon_sym_func] = ACTIONS(5594), + [anon_sym_BANG] = ACTIONS(5592), + [anon_sym_struct] = ACTIONS(5594), + [anon_sym_LPAREN] = ACTIONS(5592), + [anon_sym_RPAREN] = ACTIONS(5592), + [anon_sym_LBRACE] = ACTIONS(5592), + [anon_sym_RBRACE] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5592), + [anon_sym_DOLLAR] = ACTIONS(5592), + [anon_sym_LBRACK] = ACTIONS(5592), + [anon_sym_void] = ACTIONS(5594), + [anon_sym_noreturn] = ACTIONS(5594), + [anon_sym_type] = ACTIONS(5594), + [anon_sym_anyopaque] = ACTIONS(5594), + [anon_sym_bool] = ACTIONS(5594), + [anon_sym_int] = ACTIONS(5594), + [anon_sym_uint] = ACTIONS(5594), + [anon_sym_float] = ACTIONS(5594), + [anon_sym_range] = ACTIONS(5594), + [anon_sym_i8] = ACTIONS(5594), + [anon_sym_i16] = ACTIONS(5594), + [anon_sym_i32] = ACTIONS(5594), + [anon_sym_i64] = ACTIONS(5594), + [anon_sym_u8] = ACTIONS(5594), + [anon_sym_u16] = ACTIONS(5594), + [anon_sym_u32] = ACTIONS(5594), + [anon_sym_u64] = ACTIONS(5594), + [anon_sym_isize] = ACTIONS(5594), + [anon_sym_usize] = ACTIONS(5594), + [anon_sym_f32] = ACTIONS(5594), + [anon_sym_f64] = ACTIONS(5594), + [anon_sym_c_char] = ACTIONS(5594), + [anon_sym_c_schar] = ACTIONS(5594), + [anon_sym_c_uchar] = ACTIONS(5594), + [anon_sym_c_short] = ACTIONS(5594), + [anon_sym_c_ushort] = ACTIONS(5594), + [anon_sym_c_int] = ACTIONS(5594), + [anon_sym_c_uint] = ACTIONS(5594), + [anon_sym_c_long] = ACTIONS(5594), + [anon_sym_c_ulong] = ACTIONS(5594), + [anon_sym_c_longlong] = ACTIONS(5594), + [anon_sym_c_ulonglong] = ACTIONS(5594), + [anon_sym_c_float] = ACTIONS(5594), + [anon_sym_c_double] = ACTIONS(5594), + [anon_sym_c_longdouble] = ACTIONS(5594), + [anon_sym_return] = ACTIONS(5594), + [anon_sym_yield] = ACTIONS(5594), + [anon_sym_break] = ACTIONS(5594), + [anon_sym_continue] = ACTIONS(5594), + [anon_sym_defer] = ACTIONS(5594), + [anon_sym_errdefer] = ACTIONS(5594), + [anon_sym_if] = ACTIONS(5594), + [anon_sym_else] = ACTIONS(5594), + [anon_sym_while] = ACTIONS(5594), + [anon_sym_expand] = ACTIONS(5594), + [anon_sym_for] = ACTIONS(5594), + [anon_sym_match] = ACTIONS(5594), + [anon_sym_AMP] = ACTIONS(5592), + [anon_sym_TILDE] = ACTIONS(5592), + [anon_sym_try] = ACTIONS(5594), + [anon_sym_DOT] = ACTIONS(5592), + [anon_sym_true] = ACTIONS(5594), + [anon_sym_false] = ACTIONS(5594), + [anon_sym_null] = ACTIONS(5594), + [anon_sym_unreachable] = ACTIONS(5594), + [anon_sym_undefined] = ACTIONS(5594), + [sym_sink] = ACTIONS(5594), + [sym_integer] = ACTIONS(5594), + [sym_float] = ACTIONS(5592), + [anon_sym_DQUOTE] = ACTIONS(5592), + [sym_multiline_string] = ACTIONS(5592), + [sym_character] = ACTIONS(5592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5592), + }, + [STATE(6826)] = { + [ts_builtin_sym_end] = ACTIONS(5046), + [sym_identifier] = ACTIONS(5048), + [anon_sym_import] = ACTIONS(5048), + [anon_sym_test] = ACTIONS(5048), + [anon_sym_hide] = ACTIONS(5048), + [anon_sym_func] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5046), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_void] = ACTIONS(5048), + [anon_sym_noreturn] = ACTIONS(5048), + [anon_sym_type] = ACTIONS(5048), + [anon_sym_anyopaque] = ACTIONS(5048), + [anon_sym_bool] = ACTIONS(5048), + [anon_sym_int] = ACTIONS(5048), + [anon_sym_uint] = ACTIONS(5048), + [anon_sym_float] = ACTIONS(5048), + [anon_sym_range] = ACTIONS(5048), + [anon_sym_i8] = ACTIONS(5048), + [anon_sym_i16] = ACTIONS(5048), + [anon_sym_i32] = ACTIONS(5048), + [anon_sym_i64] = ACTIONS(5048), + [anon_sym_u8] = ACTIONS(5048), + [anon_sym_u16] = ACTIONS(5048), + [anon_sym_u32] = ACTIONS(5048), + [anon_sym_u64] = ACTIONS(5048), + [anon_sym_isize] = ACTIONS(5048), + [anon_sym_usize] = ACTIONS(5048), + [anon_sym_f32] = ACTIONS(5048), + [anon_sym_f64] = ACTIONS(5048), + [anon_sym_c_char] = ACTIONS(5048), + [anon_sym_c_schar] = ACTIONS(5048), + [anon_sym_c_uchar] = ACTIONS(5048), + [anon_sym_c_short] = ACTIONS(5048), + [anon_sym_c_ushort] = ACTIONS(5048), + [anon_sym_c_int] = ACTIONS(5048), + [anon_sym_c_uint] = ACTIONS(5048), + [anon_sym_c_long] = ACTIONS(5048), + [anon_sym_c_ulong] = ACTIONS(5048), + [anon_sym_c_longlong] = ACTIONS(5048), + [anon_sym_c_ulonglong] = ACTIONS(5048), + [anon_sym_c_float] = ACTIONS(5048), + [anon_sym_c_double] = ACTIONS(5048), + [anon_sym_c_longdouble] = ACTIONS(5048), + [anon_sym_return] = ACTIONS(5048), + [anon_sym_yield] = ACTIONS(5048), + [anon_sym_break] = ACTIONS(5048), + [anon_sym_continue] = ACTIONS(5048), + [anon_sym_defer] = ACTIONS(5048), + [anon_sym_errdefer] = ACTIONS(5048), + [anon_sym_if] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5048), + [anon_sym_while] = ACTIONS(5048), + [anon_sym_expand] = ACTIONS(5048), + [anon_sym_for] = ACTIONS(5048), + [anon_sym_match] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_try] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_true] = ACTIONS(5048), + [anon_sym_false] = ACTIONS(5048), + [anon_sym_null] = ACTIONS(5048), + [anon_sym_unreachable] = ACTIONS(5048), + [anon_sym_undefined] = ACTIONS(5048), + [sym_sink] = ACTIONS(5048), + [sym_integer] = ACTIONS(5048), + [sym_float] = ACTIONS(5046), + [anon_sym_DQUOTE] = ACTIONS(5046), + [sym_multiline_string] = ACTIONS(5046), + [sym_character] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5046), + }, + [STATE(6827)] = { + [ts_builtin_sym_end] = ACTIONS(4802), + [sym_identifier] = ACTIONS(4804), + [anon_sym_import] = ACTIONS(4804), + [anon_sym_test] = ACTIONS(4804), + [anon_sym_hide] = ACTIONS(4804), + [anon_sym_func] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4802), + [anon_sym_struct] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4802), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(4802), + [anon_sym_LBRACK] = ACTIONS(4802), + [anon_sym_void] = ACTIONS(4804), + [anon_sym_noreturn] = ACTIONS(4804), + [anon_sym_type] = ACTIONS(4804), + [anon_sym_anyopaque] = ACTIONS(4804), + [anon_sym_bool] = ACTIONS(4804), + [anon_sym_int] = ACTIONS(4804), + [anon_sym_uint] = ACTIONS(4804), + [anon_sym_float] = ACTIONS(4804), + [anon_sym_range] = ACTIONS(4804), + [anon_sym_i8] = ACTIONS(4804), + [anon_sym_i16] = ACTIONS(4804), + [anon_sym_i32] = ACTIONS(4804), + [anon_sym_i64] = ACTIONS(4804), + [anon_sym_u8] = ACTIONS(4804), + [anon_sym_u16] = ACTIONS(4804), + [anon_sym_u32] = ACTIONS(4804), + [anon_sym_u64] = ACTIONS(4804), + [anon_sym_isize] = ACTIONS(4804), + [anon_sym_usize] = ACTIONS(4804), + [anon_sym_f32] = ACTIONS(4804), + [anon_sym_f64] = ACTIONS(4804), + [anon_sym_c_char] = ACTIONS(4804), + [anon_sym_c_schar] = ACTIONS(4804), + [anon_sym_c_uchar] = ACTIONS(4804), + [anon_sym_c_short] = ACTIONS(4804), + [anon_sym_c_ushort] = ACTIONS(4804), + [anon_sym_c_int] = ACTIONS(4804), + [anon_sym_c_uint] = ACTIONS(4804), + [anon_sym_c_long] = ACTIONS(4804), + [anon_sym_c_ulong] = ACTIONS(4804), + [anon_sym_c_longlong] = ACTIONS(4804), + [anon_sym_c_ulonglong] = ACTIONS(4804), + [anon_sym_c_float] = ACTIONS(4804), + [anon_sym_c_double] = ACTIONS(4804), + [anon_sym_c_longdouble] = ACTIONS(4804), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_yield] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_defer] = ACTIONS(4804), + [anon_sym_errdefer] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_expand] = ACTIONS(4804), + [anon_sym_for] = ACTIONS(4804), + [anon_sym_match] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4802), + [anon_sym_TILDE] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_unreachable] = ACTIONS(4804), + [anon_sym_undefined] = ACTIONS(4804), + [sym_sink] = ACTIONS(4804), + [sym_integer] = ACTIONS(4804), + [sym_float] = ACTIONS(4802), + [anon_sym_DQUOTE] = ACTIONS(4802), + [sym_multiline_string] = ACTIONS(4802), + [sym_character] = ACTIONS(4802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4802), + }, + [STATE(6828)] = { + [ts_builtin_sym_end] = ACTIONS(5596), + [sym_identifier] = ACTIONS(5598), + [anon_sym_import] = ACTIONS(5598), + [anon_sym_test] = ACTIONS(5598), + [anon_sym_hide] = ACTIONS(5598), + [anon_sym_func] = ACTIONS(5598), + [anon_sym_BANG] = ACTIONS(5596), + [anon_sym_struct] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5596), + [anon_sym_RPAREN] = ACTIONS(5596), + [anon_sym_LBRACE] = ACTIONS(5596), + [anon_sym_RBRACE] = ACTIONS(5596), + [anon_sym_DASH] = ACTIONS(5596), + [anon_sym_DOLLAR] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(5596), + [anon_sym_void] = ACTIONS(5598), + [anon_sym_noreturn] = ACTIONS(5598), + [anon_sym_type] = ACTIONS(5598), + [anon_sym_anyopaque] = ACTIONS(5598), + [anon_sym_bool] = ACTIONS(5598), + [anon_sym_int] = ACTIONS(5598), + [anon_sym_uint] = ACTIONS(5598), + [anon_sym_float] = ACTIONS(5598), + [anon_sym_range] = ACTIONS(5598), + [anon_sym_i8] = ACTIONS(5598), + [anon_sym_i16] = ACTIONS(5598), + [anon_sym_i32] = ACTIONS(5598), + [anon_sym_i64] = ACTIONS(5598), + [anon_sym_u8] = ACTIONS(5598), + [anon_sym_u16] = ACTIONS(5598), + [anon_sym_u32] = ACTIONS(5598), + [anon_sym_u64] = ACTIONS(5598), + [anon_sym_isize] = ACTIONS(5598), + [anon_sym_usize] = ACTIONS(5598), + [anon_sym_f32] = ACTIONS(5598), + [anon_sym_f64] = ACTIONS(5598), + [anon_sym_c_char] = ACTIONS(5598), + [anon_sym_c_schar] = ACTIONS(5598), + [anon_sym_c_uchar] = ACTIONS(5598), + [anon_sym_c_short] = ACTIONS(5598), + [anon_sym_c_ushort] = ACTIONS(5598), + [anon_sym_c_int] = ACTIONS(5598), + [anon_sym_c_uint] = ACTIONS(5598), + [anon_sym_c_long] = ACTIONS(5598), + [anon_sym_c_ulong] = ACTIONS(5598), + [anon_sym_c_longlong] = ACTIONS(5598), + [anon_sym_c_ulonglong] = ACTIONS(5598), + [anon_sym_c_float] = ACTIONS(5598), + [anon_sym_c_double] = ACTIONS(5598), + [anon_sym_c_longdouble] = ACTIONS(5598), + [anon_sym_return] = ACTIONS(5598), + [anon_sym_yield] = ACTIONS(5598), + [anon_sym_break] = ACTIONS(5598), + [anon_sym_continue] = ACTIONS(5598), + [anon_sym_defer] = ACTIONS(5598), + [anon_sym_errdefer] = ACTIONS(5598), + [anon_sym_if] = ACTIONS(5598), + [anon_sym_else] = ACTIONS(5598), + [anon_sym_while] = ACTIONS(5598), + [anon_sym_expand] = ACTIONS(5598), + [anon_sym_for] = ACTIONS(5598), + [anon_sym_match] = ACTIONS(5598), + [anon_sym_AMP] = ACTIONS(5596), + [anon_sym_TILDE] = ACTIONS(5596), + [anon_sym_try] = ACTIONS(5598), + [anon_sym_DOT] = ACTIONS(5596), + [anon_sym_true] = ACTIONS(5598), + [anon_sym_false] = ACTIONS(5598), + [anon_sym_null] = ACTIONS(5598), + [anon_sym_unreachable] = ACTIONS(5598), + [anon_sym_undefined] = ACTIONS(5598), + [sym_sink] = ACTIONS(5598), + [sym_integer] = ACTIONS(5598), + [sym_float] = ACTIONS(5596), + [anon_sym_DQUOTE] = ACTIONS(5596), + [sym_multiline_string] = ACTIONS(5596), + [sym_character] = ACTIONS(5596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5596), + }, + [STATE(6829)] = { + [ts_builtin_sym_end] = ACTIONS(4770), + [sym_identifier] = ACTIONS(4772), + [anon_sym_import] = ACTIONS(4772), + [anon_sym_test] = ACTIONS(4772), + [anon_sym_hide] = ACTIONS(4772), + [anon_sym_func] = ACTIONS(4772), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_struct] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_void] = ACTIONS(4772), + [anon_sym_noreturn] = ACTIONS(4772), + [anon_sym_type] = ACTIONS(4772), + [anon_sym_anyopaque] = ACTIONS(4772), + [anon_sym_bool] = ACTIONS(4772), + [anon_sym_int] = ACTIONS(4772), + [anon_sym_uint] = ACTIONS(4772), + [anon_sym_float] = ACTIONS(4772), + [anon_sym_range] = ACTIONS(4772), + [anon_sym_i8] = ACTIONS(4772), + [anon_sym_i16] = ACTIONS(4772), + [anon_sym_i32] = ACTIONS(4772), + [anon_sym_i64] = ACTIONS(4772), + [anon_sym_u8] = ACTIONS(4772), + [anon_sym_u16] = ACTIONS(4772), + [anon_sym_u32] = ACTIONS(4772), + [anon_sym_u64] = ACTIONS(4772), + [anon_sym_isize] = ACTIONS(4772), + [anon_sym_usize] = ACTIONS(4772), + [anon_sym_f32] = ACTIONS(4772), + [anon_sym_f64] = ACTIONS(4772), + [anon_sym_c_char] = ACTIONS(4772), + [anon_sym_c_schar] = ACTIONS(4772), + [anon_sym_c_uchar] = ACTIONS(4772), + [anon_sym_c_short] = ACTIONS(4772), + [anon_sym_c_ushort] = ACTIONS(4772), + [anon_sym_c_int] = ACTIONS(4772), + [anon_sym_c_uint] = ACTIONS(4772), + [anon_sym_c_long] = ACTIONS(4772), + [anon_sym_c_ulong] = ACTIONS(4772), + [anon_sym_c_longlong] = ACTIONS(4772), + [anon_sym_c_ulonglong] = ACTIONS(4772), + [anon_sym_c_float] = ACTIONS(4772), + [anon_sym_c_double] = ACTIONS(4772), + [anon_sym_c_longdouble] = ACTIONS(4772), + [anon_sym_return] = ACTIONS(4772), + [anon_sym_yield] = ACTIONS(4772), + [anon_sym_break] = ACTIONS(4772), + [anon_sym_continue] = ACTIONS(4772), + [anon_sym_defer] = ACTIONS(4772), + [anon_sym_errdefer] = ACTIONS(4772), + [anon_sym_if] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4772), + [anon_sym_while] = ACTIONS(4772), + [anon_sym_expand] = ACTIONS(4772), + [anon_sym_for] = ACTIONS(4772), + [anon_sym_match] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4770), + [anon_sym_TILDE] = ACTIONS(4770), + [anon_sym_try] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4770), + [anon_sym_true] = ACTIONS(4772), + [anon_sym_false] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(4772), + [anon_sym_unreachable] = ACTIONS(4772), + [anon_sym_undefined] = ACTIONS(4772), + [sym_sink] = ACTIONS(4772), + [sym_integer] = ACTIONS(4772), + [sym_float] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [sym_multiline_string] = ACTIONS(4770), + [sym_character] = ACTIONS(4770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4770), + }, + [STATE(6830)] = { + [ts_builtin_sym_end] = ACTIONS(4592), + [sym_identifier] = ACTIONS(4594), + [anon_sym_import] = ACTIONS(4594), + [anon_sym_test] = ACTIONS(4594), + [anon_sym_hide] = ACTIONS(4594), + [anon_sym_func] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [anon_sym_RBRACE] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_void] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_type] = ACTIONS(4594), + [anon_sym_anyopaque] = ACTIONS(4594), + [anon_sym_bool] = ACTIONS(4594), + [anon_sym_int] = ACTIONS(4594), + [anon_sym_uint] = ACTIONS(4594), + [anon_sym_float] = ACTIONS(4594), + [anon_sym_range] = ACTIONS(4594), + [anon_sym_i8] = ACTIONS(4594), + [anon_sym_i16] = ACTIONS(4594), + [anon_sym_i32] = ACTIONS(4594), + [anon_sym_i64] = ACTIONS(4594), + [anon_sym_u8] = ACTIONS(4594), + [anon_sym_u16] = ACTIONS(4594), + [anon_sym_u32] = ACTIONS(4594), + [anon_sym_u64] = ACTIONS(4594), + [anon_sym_isize] = ACTIONS(4594), + [anon_sym_usize] = ACTIONS(4594), + [anon_sym_f32] = ACTIONS(4594), + [anon_sym_f64] = ACTIONS(4594), + [anon_sym_c_char] = ACTIONS(4594), + [anon_sym_c_schar] = ACTIONS(4594), + [anon_sym_c_uchar] = ACTIONS(4594), + [anon_sym_c_short] = ACTIONS(4594), + [anon_sym_c_ushort] = ACTIONS(4594), + [anon_sym_c_int] = ACTIONS(4594), + [anon_sym_c_uint] = ACTIONS(4594), + [anon_sym_c_long] = ACTIONS(4594), + [anon_sym_c_ulong] = ACTIONS(4594), + [anon_sym_c_longlong] = ACTIONS(4594), + [anon_sym_c_ulonglong] = ACTIONS(4594), + [anon_sym_c_float] = ACTIONS(4594), + [anon_sym_c_double] = ACTIONS(4594), + [anon_sym_c_longdouble] = ACTIONS(4594), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_continue] = ACTIONS(4594), + [anon_sym_defer] = ACTIONS(4594), + [anon_sym_errdefer] = ACTIONS(4594), + [anon_sym_if] = ACTIONS(4594), + [anon_sym_else] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_expand] = ACTIONS(4594), + [anon_sym_for] = ACTIONS(4594), + [anon_sym_match] = ACTIONS(4594), + [anon_sym_AMP] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_try] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4592), + [anon_sym_true] = ACTIONS(4594), + [anon_sym_false] = ACTIONS(4594), + [anon_sym_null] = ACTIONS(4594), + [anon_sym_unreachable] = ACTIONS(4594), + [anon_sym_undefined] = ACTIONS(4594), + [sym_sink] = ACTIONS(4594), + [sym_integer] = ACTIONS(4594), + [sym_float] = ACTIONS(4592), + [anon_sym_DQUOTE] = ACTIONS(4592), + [sym_multiline_string] = ACTIONS(4592), + [sym_character] = ACTIONS(4592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4592), + }, + [STATE(6831)] = { + [ts_builtin_sym_end] = ACTIONS(4774), + [sym_identifier] = ACTIONS(4776), + [anon_sym_import] = ACTIONS(4776), + [anon_sym_test] = ACTIONS(4776), + [anon_sym_hide] = ACTIONS(4776), + [anon_sym_func] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_struct] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4774), + [anon_sym_RPAREN] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4774), + [anon_sym_RBRACE] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(4774), + [anon_sym_void] = ACTIONS(4776), + [anon_sym_noreturn] = ACTIONS(4776), + [anon_sym_type] = ACTIONS(4776), + [anon_sym_anyopaque] = ACTIONS(4776), + [anon_sym_bool] = ACTIONS(4776), + [anon_sym_int] = ACTIONS(4776), + [anon_sym_uint] = ACTIONS(4776), + [anon_sym_float] = ACTIONS(4776), + [anon_sym_range] = ACTIONS(4776), + [anon_sym_i8] = ACTIONS(4776), + [anon_sym_i16] = ACTIONS(4776), + [anon_sym_i32] = ACTIONS(4776), + [anon_sym_i64] = ACTIONS(4776), + [anon_sym_u8] = ACTIONS(4776), + [anon_sym_u16] = ACTIONS(4776), + [anon_sym_u32] = ACTIONS(4776), + [anon_sym_u64] = ACTIONS(4776), + [anon_sym_isize] = ACTIONS(4776), + [anon_sym_usize] = ACTIONS(4776), + [anon_sym_f32] = ACTIONS(4776), + [anon_sym_f64] = ACTIONS(4776), + [anon_sym_c_char] = ACTIONS(4776), + [anon_sym_c_schar] = ACTIONS(4776), + [anon_sym_c_uchar] = ACTIONS(4776), + [anon_sym_c_short] = ACTIONS(4776), + [anon_sym_c_ushort] = ACTIONS(4776), + [anon_sym_c_int] = ACTIONS(4776), + [anon_sym_c_uint] = ACTIONS(4776), + [anon_sym_c_long] = ACTIONS(4776), + [anon_sym_c_ulong] = ACTIONS(4776), + [anon_sym_c_longlong] = ACTIONS(4776), + [anon_sym_c_ulonglong] = ACTIONS(4776), + [anon_sym_c_float] = ACTIONS(4776), + [anon_sym_c_double] = ACTIONS(4776), + [anon_sym_c_longdouble] = ACTIONS(4776), + [anon_sym_return] = ACTIONS(4776), + [anon_sym_yield] = ACTIONS(4776), + [anon_sym_break] = ACTIONS(4776), + [anon_sym_continue] = ACTIONS(4776), + [anon_sym_defer] = ACTIONS(4776), + [anon_sym_errdefer] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_expand] = ACTIONS(4776), + [anon_sym_for] = ACTIONS(4776), + [anon_sym_match] = ACTIONS(4776), + [anon_sym_AMP] = ACTIONS(4774), + [anon_sym_TILDE] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_true] = ACTIONS(4776), + [anon_sym_false] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4776), + [anon_sym_unreachable] = ACTIONS(4776), + [anon_sym_undefined] = ACTIONS(4776), + [sym_sink] = ACTIONS(4776), + [sym_integer] = ACTIONS(4776), + [sym_float] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [sym_multiline_string] = ACTIONS(4774), + [sym_character] = ACTIONS(4774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4774), + }, + [STATE(6832)] = { + [ts_builtin_sym_end] = ACTIONS(4778), + [sym_identifier] = ACTIONS(4780), + [anon_sym_import] = ACTIONS(4780), + [anon_sym_test] = ACTIONS(4780), + [anon_sym_hide] = ACTIONS(4780), + [anon_sym_func] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_struct] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_RPAREN] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_DOLLAR] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_void] = ACTIONS(4780), + [anon_sym_noreturn] = ACTIONS(4780), + [anon_sym_type] = ACTIONS(4780), + [anon_sym_anyopaque] = ACTIONS(4780), + [anon_sym_bool] = ACTIONS(4780), + [anon_sym_int] = ACTIONS(4780), + [anon_sym_uint] = ACTIONS(4780), + [anon_sym_float] = ACTIONS(4780), + [anon_sym_range] = ACTIONS(4780), + [anon_sym_i8] = ACTIONS(4780), + [anon_sym_i16] = ACTIONS(4780), + [anon_sym_i32] = ACTIONS(4780), + [anon_sym_i64] = ACTIONS(4780), + [anon_sym_u8] = ACTIONS(4780), + [anon_sym_u16] = ACTIONS(4780), + [anon_sym_u32] = ACTIONS(4780), + [anon_sym_u64] = ACTIONS(4780), + [anon_sym_isize] = ACTIONS(4780), + [anon_sym_usize] = ACTIONS(4780), + [anon_sym_f32] = ACTIONS(4780), + [anon_sym_f64] = ACTIONS(4780), + [anon_sym_c_char] = ACTIONS(4780), + [anon_sym_c_schar] = ACTIONS(4780), + [anon_sym_c_uchar] = ACTIONS(4780), + [anon_sym_c_short] = ACTIONS(4780), + [anon_sym_c_ushort] = ACTIONS(4780), + [anon_sym_c_int] = ACTIONS(4780), + [anon_sym_c_uint] = ACTIONS(4780), + [anon_sym_c_long] = ACTIONS(4780), + [anon_sym_c_ulong] = ACTIONS(4780), + [anon_sym_c_longlong] = ACTIONS(4780), + [anon_sym_c_ulonglong] = ACTIONS(4780), + [anon_sym_c_float] = ACTIONS(4780), + [anon_sym_c_double] = ACTIONS(4780), + [anon_sym_c_longdouble] = ACTIONS(4780), + [anon_sym_return] = ACTIONS(4780), + [anon_sym_yield] = ACTIONS(4780), + [anon_sym_break] = ACTIONS(4780), + [anon_sym_continue] = ACTIONS(4780), + [anon_sym_defer] = ACTIONS(4780), + [anon_sym_errdefer] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_while] = ACTIONS(4780), + [anon_sym_expand] = ACTIONS(4780), + [anon_sym_for] = ACTIONS(4780), + [anon_sym_match] = ACTIONS(4780), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_true] = ACTIONS(4780), + [anon_sym_false] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4780), + [anon_sym_unreachable] = ACTIONS(4780), + [anon_sym_undefined] = ACTIONS(4780), + [sym_sink] = ACTIONS(4780), + [sym_integer] = ACTIONS(4780), + [sym_float] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(4778), + [sym_multiline_string] = ACTIONS(4778), + [sym_character] = ACTIONS(4778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4778), + }, + [STATE(6833)] = { + [ts_builtin_sym_end] = ACTIONS(4782), + [sym_identifier] = ACTIONS(4784), + [anon_sym_import] = ACTIONS(4784), + [anon_sym_test] = ACTIONS(4784), + [anon_sym_hide] = ACTIONS(4784), + [anon_sym_func] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4782), + [anon_sym_struct] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_RPAREN] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_DOLLAR] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_void] = ACTIONS(4784), + [anon_sym_noreturn] = ACTIONS(4784), + [anon_sym_type] = ACTIONS(4784), + [anon_sym_anyopaque] = ACTIONS(4784), + [anon_sym_bool] = ACTIONS(4784), + [anon_sym_int] = ACTIONS(4784), + [anon_sym_uint] = ACTIONS(4784), + [anon_sym_float] = ACTIONS(4784), + [anon_sym_range] = ACTIONS(4784), + [anon_sym_i8] = ACTIONS(4784), + [anon_sym_i16] = ACTIONS(4784), + [anon_sym_i32] = ACTIONS(4784), + [anon_sym_i64] = ACTIONS(4784), + [anon_sym_u8] = ACTIONS(4784), + [anon_sym_u16] = ACTIONS(4784), + [anon_sym_u32] = ACTIONS(4784), + [anon_sym_u64] = ACTIONS(4784), + [anon_sym_isize] = ACTIONS(4784), + [anon_sym_usize] = ACTIONS(4784), + [anon_sym_f32] = ACTIONS(4784), + [anon_sym_f64] = ACTIONS(4784), + [anon_sym_c_char] = ACTIONS(4784), + [anon_sym_c_schar] = ACTIONS(4784), + [anon_sym_c_uchar] = ACTIONS(4784), + [anon_sym_c_short] = ACTIONS(4784), + [anon_sym_c_ushort] = ACTIONS(4784), + [anon_sym_c_int] = ACTIONS(4784), + [anon_sym_c_uint] = ACTIONS(4784), + [anon_sym_c_long] = ACTIONS(4784), + [anon_sym_c_ulong] = ACTIONS(4784), + [anon_sym_c_longlong] = ACTIONS(4784), + [anon_sym_c_ulonglong] = ACTIONS(4784), + [anon_sym_c_float] = ACTIONS(4784), + [anon_sym_c_double] = ACTIONS(4784), + [anon_sym_c_longdouble] = ACTIONS(4784), + [anon_sym_return] = ACTIONS(4784), + [anon_sym_yield] = ACTIONS(4784), + [anon_sym_break] = ACTIONS(4784), + [anon_sym_continue] = ACTIONS(4784), + [anon_sym_defer] = ACTIONS(4784), + [anon_sym_errdefer] = ACTIONS(4784), + [anon_sym_if] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_while] = ACTIONS(4784), + [anon_sym_expand] = ACTIONS(4784), + [anon_sym_for] = ACTIONS(4784), + [anon_sym_match] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4782), + [anon_sym_TILDE] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_true] = ACTIONS(4784), + [anon_sym_false] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4784), + [anon_sym_unreachable] = ACTIONS(4784), + [anon_sym_undefined] = ACTIONS(4784), + [sym_sink] = ACTIONS(4784), + [sym_integer] = ACTIONS(4784), + [sym_float] = ACTIONS(4782), + [anon_sym_DQUOTE] = ACTIONS(4782), + [sym_multiline_string] = ACTIONS(4782), + [sym_character] = ACTIONS(4782), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4782), + }, + [STATE(6834)] = { + [ts_builtin_sym_end] = ACTIONS(4786), + [sym_identifier] = ACTIONS(4788), + [anon_sym_import] = ACTIONS(4788), + [anon_sym_test] = ACTIONS(4788), + [anon_sym_hide] = ACTIONS(4788), + [anon_sym_func] = ACTIONS(4788), + [anon_sym_BANG] = ACTIONS(4786), + [anon_sym_struct] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_void] = ACTIONS(4788), + [anon_sym_noreturn] = ACTIONS(4788), + [anon_sym_type] = ACTIONS(4788), + [anon_sym_anyopaque] = ACTIONS(4788), + [anon_sym_bool] = ACTIONS(4788), + [anon_sym_int] = ACTIONS(4788), + [anon_sym_uint] = ACTIONS(4788), + [anon_sym_float] = ACTIONS(4788), + [anon_sym_range] = ACTIONS(4788), + [anon_sym_i8] = ACTIONS(4788), + [anon_sym_i16] = ACTIONS(4788), + [anon_sym_i32] = ACTIONS(4788), + [anon_sym_i64] = ACTIONS(4788), + [anon_sym_u8] = ACTIONS(4788), + [anon_sym_u16] = ACTIONS(4788), + [anon_sym_u32] = ACTIONS(4788), + [anon_sym_u64] = ACTIONS(4788), + [anon_sym_isize] = ACTIONS(4788), + [anon_sym_usize] = ACTIONS(4788), + [anon_sym_f32] = ACTIONS(4788), + [anon_sym_f64] = ACTIONS(4788), + [anon_sym_c_char] = ACTIONS(4788), + [anon_sym_c_schar] = ACTIONS(4788), + [anon_sym_c_uchar] = ACTIONS(4788), + [anon_sym_c_short] = ACTIONS(4788), + [anon_sym_c_ushort] = ACTIONS(4788), + [anon_sym_c_int] = ACTIONS(4788), + [anon_sym_c_uint] = ACTIONS(4788), + [anon_sym_c_long] = ACTIONS(4788), + [anon_sym_c_ulong] = ACTIONS(4788), + [anon_sym_c_longlong] = ACTIONS(4788), + [anon_sym_c_ulonglong] = ACTIONS(4788), + [anon_sym_c_float] = ACTIONS(4788), + [anon_sym_c_double] = ACTIONS(4788), + [anon_sym_c_longdouble] = ACTIONS(4788), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_yield] = ACTIONS(4788), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_defer] = ACTIONS(4788), + [anon_sym_errdefer] = ACTIONS(4788), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_while] = ACTIONS(4788), + [anon_sym_expand] = ACTIONS(4788), + [anon_sym_for] = ACTIONS(4788), + [anon_sym_match] = ACTIONS(4788), + [anon_sym_AMP] = ACTIONS(4786), + [anon_sym_TILDE] = ACTIONS(4786), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4788), + [anon_sym_unreachable] = ACTIONS(4788), + [anon_sym_undefined] = ACTIONS(4788), + [sym_sink] = ACTIONS(4788), + [sym_integer] = ACTIONS(4788), + [sym_float] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [sym_multiline_string] = ACTIONS(4786), + [sym_character] = ACTIONS(4786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4786), + }, + [STATE(6835)] = { + [ts_builtin_sym_end] = ACTIONS(4708), + [sym_identifier] = ACTIONS(4710), + [anon_sym_import] = ACTIONS(4710), + [anon_sym_test] = ACTIONS(4710), + [anon_sym_hide] = ACTIONS(4710), + [anon_sym_func] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4708), + [anon_sym_struct] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_RPAREN] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4708), + [anon_sym_DOLLAR] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_void] = ACTIONS(4710), + [anon_sym_noreturn] = ACTIONS(4710), + [anon_sym_type] = ACTIONS(4710), + [anon_sym_anyopaque] = ACTIONS(4710), + [anon_sym_bool] = ACTIONS(4710), + [anon_sym_int] = ACTIONS(4710), + [anon_sym_uint] = ACTIONS(4710), + [anon_sym_float] = ACTIONS(4710), + [anon_sym_range] = ACTIONS(4710), + [anon_sym_i8] = ACTIONS(4710), + [anon_sym_i16] = ACTIONS(4710), + [anon_sym_i32] = ACTIONS(4710), + [anon_sym_i64] = ACTIONS(4710), + [anon_sym_u8] = ACTIONS(4710), + [anon_sym_u16] = ACTIONS(4710), + [anon_sym_u32] = ACTIONS(4710), + [anon_sym_u64] = ACTIONS(4710), + [anon_sym_isize] = ACTIONS(4710), + [anon_sym_usize] = ACTIONS(4710), + [anon_sym_f32] = ACTIONS(4710), + [anon_sym_f64] = ACTIONS(4710), + [anon_sym_c_char] = ACTIONS(4710), + [anon_sym_c_schar] = ACTIONS(4710), + [anon_sym_c_uchar] = ACTIONS(4710), + [anon_sym_c_short] = ACTIONS(4710), + [anon_sym_c_ushort] = ACTIONS(4710), + [anon_sym_c_int] = ACTIONS(4710), + [anon_sym_c_uint] = ACTIONS(4710), + [anon_sym_c_long] = ACTIONS(4710), + [anon_sym_c_ulong] = ACTIONS(4710), + [anon_sym_c_longlong] = ACTIONS(4710), + [anon_sym_c_ulonglong] = ACTIONS(4710), + [anon_sym_c_float] = ACTIONS(4710), + [anon_sym_c_double] = ACTIONS(4710), + [anon_sym_c_longdouble] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_yield] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_defer] = ACTIONS(4710), + [anon_sym_errdefer] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_expand] = ACTIONS(4710), + [anon_sym_for] = ACTIONS(4710), + [anon_sym_match] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4708), + [anon_sym_TILDE] = ACTIONS(4708), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_unreachable] = ACTIONS(4710), + [anon_sym_undefined] = ACTIONS(4710), + [sym_sink] = ACTIONS(4710), + [sym_integer] = ACTIONS(4710), + [sym_float] = ACTIONS(4708), + [anon_sym_DQUOTE] = ACTIONS(4708), + [sym_multiline_string] = ACTIONS(4708), + [sym_character] = ACTIONS(4708), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4708), + }, + [STATE(6836)] = { + [ts_builtin_sym_end] = ACTIONS(5258), + [sym_identifier] = ACTIONS(5260), + [anon_sym_import] = ACTIONS(5260), + [anon_sym_test] = ACTIONS(5260), + [anon_sym_hide] = ACTIONS(5260), + [anon_sym_func] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5258), + [anon_sym_struct] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_void] = ACTIONS(5260), + [anon_sym_noreturn] = ACTIONS(5260), + [anon_sym_type] = ACTIONS(5260), + [anon_sym_anyopaque] = ACTIONS(5260), + [anon_sym_bool] = ACTIONS(5260), + [anon_sym_int] = ACTIONS(5260), + [anon_sym_uint] = ACTIONS(5260), + [anon_sym_float] = ACTIONS(5260), + [anon_sym_range] = ACTIONS(5260), + [anon_sym_i8] = ACTIONS(5260), + [anon_sym_i16] = ACTIONS(5260), + [anon_sym_i32] = ACTIONS(5260), + [anon_sym_i64] = ACTIONS(5260), + [anon_sym_u8] = ACTIONS(5260), + [anon_sym_u16] = ACTIONS(5260), + [anon_sym_u32] = ACTIONS(5260), + [anon_sym_u64] = ACTIONS(5260), + [anon_sym_isize] = ACTIONS(5260), + [anon_sym_usize] = ACTIONS(5260), + [anon_sym_f32] = ACTIONS(5260), + [anon_sym_f64] = ACTIONS(5260), + [anon_sym_c_char] = ACTIONS(5260), + [anon_sym_c_schar] = ACTIONS(5260), + [anon_sym_c_uchar] = ACTIONS(5260), + [anon_sym_c_short] = ACTIONS(5260), + [anon_sym_c_ushort] = ACTIONS(5260), + [anon_sym_c_int] = ACTIONS(5260), + [anon_sym_c_uint] = ACTIONS(5260), + [anon_sym_c_long] = ACTIONS(5260), + [anon_sym_c_ulong] = ACTIONS(5260), + [anon_sym_c_longlong] = ACTIONS(5260), + [anon_sym_c_ulonglong] = ACTIONS(5260), + [anon_sym_c_float] = ACTIONS(5260), + [anon_sym_c_double] = ACTIONS(5260), + [anon_sym_c_longdouble] = ACTIONS(5260), + [anon_sym_return] = ACTIONS(5260), + [anon_sym_yield] = ACTIONS(5260), + [anon_sym_break] = ACTIONS(5260), + [anon_sym_continue] = ACTIONS(5260), + [anon_sym_defer] = ACTIONS(5260), + [anon_sym_errdefer] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(5260), + [anon_sym_else] = ACTIONS(5260), + [anon_sym_while] = ACTIONS(5260), + [anon_sym_expand] = ACTIONS(5260), + [anon_sym_for] = ACTIONS(5260), + [anon_sym_match] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5258), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_try] = ACTIONS(5260), + [anon_sym_DOT] = ACTIONS(5258), + [anon_sym_true] = ACTIONS(5260), + [anon_sym_false] = ACTIONS(5260), + [anon_sym_null] = ACTIONS(5260), + [anon_sym_unreachable] = ACTIONS(5260), + [anon_sym_undefined] = ACTIONS(5260), + [sym_sink] = ACTIONS(5260), + [sym_integer] = ACTIONS(5260), + [sym_float] = ACTIONS(5258), + [anon_sym_DQUOTE] = ACTIONS(5258), + [sym_multiline_string] = ACTIONS(5258), + [sym_character] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5258), + }, + [STATE(6837)] = { + [ts_builtin_sym_end] = ACTIONS(5152), + [sym_identifier] = ACTIONS(5154), + [anon_sym_import] = ACTIONS(5154), + [anon_sym_test] = ACTIONS(5154), + [anon_sym_hide] = ACTIONS(5154), + [anon_sym_func] = ACTIONS(5154), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_struct] = ACTIONS(5154), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_RPAREN] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5152), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_void] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym_type] = ACTIONS(5154), + [anon_sym_anyopaque] = ACTIONS(5154), + [anon_sym_bool] = ACTIONS(5154), + [anon_sym_int] = ACTIONS(5154), + [anon_sym_uint] = ACTIONS(5154), + [anon_sym_float] = ACTIONS(5154), + [anon_sym_range] = ACTIONS(5154), + [anon_sym_i8] = ACTIONS(5154), + [anon_sym_i16] = ACTIONS(5154), + [anon_sym_i32] = ACTIONS(5154), + [anon_sym_i64] = ACTIONS(5154), + [anon_sym_u8] = ACTIONS(5154), + [anon_sym_u16] = ACTIONS(5154), + [anon_sym_u32] = ACTIONS(5154), + [anon_sym_u64] = ACTIONS(5154), + [anon_sym_isize] = ACTIONS(5154), + [anon_sym_usize] = ACTIONS(5154), + [anon_sym_f32] = ACTIONS(5154), + [anon_sym_f64] = ACTIONS(5154), + [anon_sym_c_char] = ACTIONS(5154), + [anon_sym_c_schar] = ACTIONS(5154), + [anon_sym_c_uchar] = ACTIONS(5154), + [anon_sym_c_short] = ACTIONS(5154), + [anon_sym_c_ushort] = ACTIONS(5154), + [anon_sym_c_int] = ACTIONS(5154), + [anon_sym_c_uint] = ACTIONS(5154), + [anon_sym_c_long] = ACTIONS(5154), + [anon_sym_c_ulong] = ACTIONS(5154), + [anon_sym_c_longlong] = ACTIONS(5154), + [anon_sym_c_ulonglong] = ACTIONS(5154), + [anon_sym_c_float] = ACTIONS(5154), + [anon_sym_c_double] = ACTIONS(5154), + [anon_sym_c_longdouble] = ACTIONS(5154), + [anon_sym_return] = ACTIONS(5154), + [anon_sym_yield] = ACTIONS(5154), + [anon_sym_break] = ACTIONS(5154), + [anon_sym_continue] = ACTIONS(5154), + [anon_sym_defer] = ACTIONS(5154), + [anon_sym_errdefer] = ACTIONS(5154), + [anon_sym_if] = ACTIONS(5154), + [anon_sym_else] = ACTIONS(5154), + [anon_sym_while] = ACTIONS(5154), + [anon_sym_expand] = ACTIONS(5154), + [anon_sym_for] = ACTIONS(5154), + [anon_sym_match] = ACTIONS(5154), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_TILDE] = ACTIONS(5152), + [anon_sym_try] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5152), + [anon_sym_true] = ACTIONS(5154), + [anon_sym_false] = ACTIONS(5154), + [anon_sym_null] = ACTIONS(5154), + [anon_sym_unreachable] = ACTIONS(5154), + [anon_sym_undefined] = ACTIONS(5154), + [sym_sink] = ACTIONS(5154), + [sym_integer] = ACTIONS(5154), + [sym_float] = ACTIONS(5152), + [anon_sym_DQUOTE] = ACTIONS(5152), + [sym_multiline_string] = ACTIONS(5152), + [sym_character] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5152), + }, + [STATE(6838)] = { + [ts_builtin_sym_end] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4714), + [anon_sym_import] = ACTIONS(4714), + [anon_sym_test] = ACTIONS(4714), + [anon_sym_hide] = ACTIONS(4714), + [anon_sym_func] = ACTIONS(4714), + [anon_sym_BANG] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4714), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DOLLAR] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_void] = ACTIONS(4714), + [anon_sym_noreturn] = ACTIONS(4714), + [anon_sym_type] = ACTIONS(4714), + [anon_sym_anyopaque] = ACTIONS(4714), + [anon_sym_bool] = ACTIONS(4714), + [anon_sym_int] = ACTIONS(4714), + [anon_sym_uint] = ACTIONS(4714), + [anon_sym_float] = ACTIONS(4714), + [anon_sym_range] = ACTIONS(4714), + [anon_sym_i8] = ACTIONS(4714), + [anon_sym_i16] = ACTIONS(4714), + [anon_sym_i32] = ACTIONS(4714), + [anon_sym_i64] = ACTIONS(4714), + [anon_sym_u8] = ACTIONS(4714), + [anon_sym_u16] = ACTIONS(4714), + [anon_sym_u32] = ACTIONS(4714), + [anon_sym_u64] = ACTIONS(4714), + [anon_sym_isize] = ACTIONS(4714), + [anon_sym_usize] = ACTIONS(4714), + [anon_sym_f32] = ACTIONS(4714), + [anon_sym_f64] = ACTIONS(4714), + [anon_sym_c_char] = ACTIONS(4714), + [anon_sym_c_schar] = ACTIONS(4714), + [anon_sym_c_uchar] = ACTIONS(4714), + [anon_sym_c_short] = ACTIONS(4714), + [anon_sym_c_ushort] = ACTIONS(4714), + [anon_sym_c_int] = ACTIONS(4714), + [anon_sym_c_uint] = ACTIONS(4714), + [anon_sym_c_long] = ACTIONS(4714), + [anon_sym_c_ulong] = ACTIONS(4714), + [anon_sym_c_longlong] = ACTIONS(4714), + [anon_sym_c_ulonglong] = ACTIONS(4714), + [anon_sym_c_float] = ACTIONS(4714), + [anon_sym_c_double] = ACTIONS(4714), + [anon_sym_c_longdouble] = ACTIONS(4714), + [anon_sym_return] = ACTIONS(4714), + [anon_sym_yield] = ACTIONS(4714), + [anon_sym_break] = ACTIONS(4714), + [anon_sym_continue] = ACTIONS(4714), + [anon_sym_defer] = ACTIONS(4714), + [anon_sym_errdefer] = ACTIONS(4714), + [anon_sym_if] = ACTIONS(4714), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_while] = ACTIONS(4714), + [anon_sym_expand] = ACTIONS(4714), + [anon_sym_for] = ACTIONS(4714), + [anon_sym_match] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_TILDE] = ACTIONS(4712), + [anon_sym_try] = ACTIONS(4714), + [anon_sym_DOT] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4714), + [anon_sym_false] = ACTIONS(4714), + [anon_sym_null] = ACTIONS(4714), + [anon_sym_unreachable] = ACTIONS(4714), + [anon_sym_undefined] = ACTIONS(4714), + [sym_sink] = ACTIONS(4714), + [sym_integer] = ACTIONS(4714), + [sym_float] = ACTIONS(4712), + [anon_sym_DQUOTE] = ACTIONS(4712), + [sym_multiline_string] = ACTIONS(4712), + [sym_character] = ACTIONS(4712), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4712), + }, + [STATE(6839)] = { + [ts_builtin_sym_end] = ACTIONS(4716), + [sym_identifier] = ACTIONS(4718), + [anon_sym_import] = ACTIONS(4718), + [anon_sym_test] = ACTIONS(4718), + [anon_sym_hide] = ACTIONS(4718), + [anon_sym_func] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4716), + [anon_sym_struct] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_DOLLAR] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_void] = ACTIONS(4718), + [anon_sym_noreturn] = ACTIONS(4718), + [anon_sym_type] = ACTIONS(4718), + [anon_sym_anyopaque] = ACTIONS(4718), + [anon_sym_bool] = ACTIONS(4718), + [anon_sym_int] = ACTIONS(4718), + [anon_sym_uint] = ACTIONS(4718), + [anon_sym_float] = ACTIONS(4718), + [anon_sym_range] = ACTIONS(4718), + [anon_sym_i8] = ACTIONS(4718), + [anon_sym_i16] = ACTIONS(4718), + [anon_sym_i32] = ACTIONS(4718), + [anon_sym_i64] = ACTIONS(4718), + [anon_sym_u8] = ACTIONS(4718), + [anon_sym_u16] = ACTIONS(4718), + [anon_sym_u32] = ACTIONS(4718), + [anon_sym_u64] = ACTIONS(4718), + [anon_sym_isize] = ACTIONS(4718), + [anon_sym_usize] = ACTIONS(4718), + [anon_sym_f32] = ACTIONS(4718), + [anon_sym_f64] = ACTIONS(4718), + [anon_sym_c_char] = ACTIONS(4718), + [anon_sym_c_schar] = ACTIONS(4718), + [anon_sym_c_uchar] = ACTIONS(4718), + [anon_sym_c_short] = ACTIONS(4718), + [anon_sym_c_ushort] = ACTIONS(4718), + [anon_sym_c_int] = ACTIONS(4718), + [anon_sym_c_uint] = ACTIONS(4718), + [anon_sym_c_long] = ACTIONS(4718), + [anon_sym_c_ulong] = ACTIONS(4718), + [anon_sym_c_longlong] = ACTIONS(4718), + [anon_sym_c_ulonglong] = ACTIONS(4718), + [anon_sym_c_float] = ACTIONS(4718), + [anon_sym_c_double] = ACTIONS(4718), + [anon_sym_c_longdouble] = ACTIONS(4718), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_yield] = ACTIONS(4718), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_defer] = ACTIONS(4718), + [anon_sym_errdefer] = ACTIONS(4718), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_while] = ACTIONS(4718), + [anon_sym_expand] = ACTIONS(4718), + [anon_sym_for] = ACTIONS(4718), + [anon_sym_match] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4716), + [anon_sym_TILDE] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_DOT] = ACTIONS(4716), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(4718), + [anon_sym_unreachable] = ACTIONS(4718), + [anon_sym_undefined] = ACTIONS(4718), + [sym_sink] = ACTIONS(4718), + [sym_integer] = ACTIONS(4718), + [sym_float] = ACTIONS(4716), + [anon_sym_DQUOTE] = ACTIONS(4716), + [sym_multiline_string] = ACTIONS(4716), + [sym_character] = ACTIONS(4716), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4716), + }, + [STATE(6840)] = { + [ts_builtin_sym_end] = ACTIONS(4806), + [sym_identifier] = ACTIONS(4808), + [anon_sym_import] = ACTIONS(4808), + [anon_sym_test] = ACTIONS(4808), + [anon_sym_hide] = ACTIONS(4808), + [anon_sym_func] = ACTIONS(4808), + [anon_sym_BANG] = ACTIONS(4806), + [anon_sym_struct] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_RPAREN] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_DOLLAR] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_void] = ACTIONS(4808), + [anon_sym_noreturn] = ACTIONS(4808), + [anon_sym_type] = ACTIONS(4808), + [anon_sym_anyopaque] = ACTIONS(4808), + [anon_sym_bool] = ACTIONS(4808), + [anon_sym_int] = ACTIONS(4808), + [anon_sym_uint] = ACTIONS(4808), + [anon_sym_float] = ACTIONS(4808), + [anon_sym_range] = ACTIONS(4808), + [anon_sym_i8] = ACTIONS(4808), + [anon_sym_i16] = ACTIONS(4808), + [anon_sym_i32] = ACTIONS(4808), + [anon_sym_i64] = ACTIONS(4808), + [anon_sym_u8] = ACTIONS(4808), + [anon_sym_u16] = ACTIONS(4808), + [anon_sym_u32] = ACTIONS(4808), + [anon_sym_u64] = ACTIONS(4808), + [anon_sym_isize] = ACTIONS(4808), + [anon_sym_usize] = ACTIONS(4808), + [anon_sym_f32] = ACTIONS(4808), + [anon_sym_f64] = ACTIONS(4808), + [anon_sym_c_char] = ACTIONS(4808), + [anon_sym_c_schar] = ACTIONS(4808), + [anon_sym_c_uchar] = ACTIONS(4808), + [anon_sym_c_short] = ACTIONS(4808), + [anon_sym_c_ushort] = ACTIONS(4808), + [anon_sym_c_int] = ACTIONS(4808), + [anon_sym_c_uint] = ACTIONS(4808), + [anon_sym_c_long] = ACTIONS(4808), + [anon_sym_c_ulong] = ACTIONS(4808), + [anon_sym_c_longlong] = ACTIONS(4808), + [anon_sym_c_ulonglong] = ACTIONS(4808), + [anon_sym_c_float] = ACTIONS(4808), + [anon_sym_c_double] = ACTIONS(4808), + [anon_sym_c_longdouble] = ACTIONS(4808), + [anon_sym_return] = ACTIONS(4808), + [anon_sym_yield] = ACTIONS(4808), + [anon_sym_break] = ACTIONS(4808), + [anon_sym_continue] = ACTIONS(4808), + [anon_sym_defer] = ACTIONS(4808), + [anon_sym_errdefer] = ACTIONS(4808), + [anon_sym_if] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_while] = ACTIONS(4808), + [anon_sym_expand] = ACTIONS(4808), + [anon_sym_for] = ACTIONS(4808), + [anon_sym_match] = ACTIONS(4808), + [anon_sym_AMP] = ACTIONS(4806), + [anon_sym_TILDE] = ACTIONS(4806), + [anon_sym_try] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), + [anon_sym_unreachable] = ACTIONS(4808), + [anon_sym_undefined] = ACTIONS(4808), + [sym_sink] = ACTIONS(4808), + [sym_integer] = ACTIONS(4808), + [sym_float] = ACTIONS(4806), + [anon_sym_DQUOTE] = ACTIONS(4806), + [sym_multiline_string] = ACTIONS(4806), + [sym_character] = ACTIONS(4806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4806), + }, + [STATE(6841)] = { + [ts_builtin_sym_end] = ACTIONS(5372), + [sym_identifier] = ACTIONS(5374), + [anon_sym_import] = ACTIONS(5374), + [anon_sym_test] = ACTIONS(5374), + [anon_sym_hide] = ACTIONS(5374), + [anon_sym_func] = ACTIONS(5374), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_struct] = ACTIONS(5374), + [anon_sym_LPAREN] = ACTIONS(5372), + [anon_sym_RPAREN] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5372), + [anon_sym_RBRACE] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_LBRACK] = ACTIONS(5372), + [anon_sym_void] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_anyopaque] = ACTIONS(5374), + [anon_sym_bool] = ACTIONS(5374), + [anon_sym_int] = ACTIONS(5374), + [anon_sym_uint] = ACTIONS(5374), + [anon_sym_float] = ACTIONS(5374), + [anon_sym_range] = ACTIONS(5374), + [anon_sym_i8] = ACTIONS(5374), + [anon_sym_i16] = ACTIONS(5374), + [anon_sym_i32] = ACTIONS(5374), + [anon_sym_i64] = ACTIONS(5374), + [anon_sym_u8] = ACTIONS(5374), + [anon_sym_u16] = ACTIONS(5374), + [anon_sym_u32] = ACTIONS(5374), + [anon_sym_u64] = ACTIONS(5374), + [anon_sym_isize] = ACTIONS(5374), + [anon_sym_usize] = ACTIONS(5374), + [anon_sym_f32] = ACTIONS(5374), + [anon_sym_f64] = ACTIONS(5374), + [anon_sym_c_char] = ACTIONS(5374), + [anon_sym_c_schar] = ACTIONS(5374), + [anon_sym_c_uchar] = ACTIONS(5374), + [anon_sym_c_short] = ACTIONS(5374), + [anon_sym_c_ushort] = ACTIONS(5374), + [anon_sym_c_int] = ACTIONS(5374), + [anon_sym_c_uint] = ACTIONS(5374), + [anon_sym_c_long] = ACTIONS(5374), + [anon_sym_c_ulong] = ACTIONS(5374), + [anon_sym_c_longlong] = ACTIONS(5374), + [anon_sym_c_ulonglong] = ACTIONS(5374), + [anon_sym_c_float] = ACTIONS(5374), + [anon_sym_c_double] = ACTIONS(5374), + [anon_sym_c_longdouble] = ACTIONS(5374), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_break] = ACTIONS(5374), + [anon_sym_continue] = ACTIONS(5374), + [anon_sym_defer] = ACTIONS(5374), + [anon_sym_errdefer] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_else] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_expand] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(5372), + [anon_sym_TILDE] = ACTIONS(5372), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_DOT] = ACTIONS(5372), + [anon_sym_true] = ACTIONS(5374), + [anon_sym_false] = ACTIONS(5374), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_unreachable] = ACTIONS(5374), + [anon_sym_undefined] = ACTIONS(5374), + [sym_sink] = ACTIONS(5374), + [sym_integer] = ACTIONS(5374), + [sym_float] = ACTIONS(5372), + [anon_sym_DQUOTE] = ACTIONS(5372), + [sym_multiline_string] = ACTIONS(5372), + [sym_character] = ACTIONS(5372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5372), + }, + [STATE(6842)] = { + [ts_builtin_sym_end] = ACTIONS(4814), + [sym_identifier] = ACTIONS(4816), + [anon_sym_import] = ACTIONS(4816), + [anon_sym_test] = ACTIONS(4816), + [anon_sym_hide] = ACTIONS(4816), + [anon_sym_func] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4814), + [anon_sym_struct] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_RPAREN] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_DOLLAR] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_void] = ACTIONS(4816), + [anon_sym_noreturn] = ACTIONS(4816), + [anon_sym_type] = ACTIONS(4816), + [anon_sym_anyopaque] = ACTIONS(4816), + [anon_sym_bool] = ACTIONS(4816), + [anon_sym_int] = ACTIONS(4816), + [anon_sym_uint] = ACTIONS(4816), + [anon_sym_float] = ACTIONS(4816), + [anon_sym_range] = ACTIONS(4816), + [anon_sym_i8] = ACTIONS(4816), + [anon_sym_i16] = ACTIONS(4816), + [anon_sym_i32] = ACTIONS(4816), + [anon_sym_i64] = ACTIONS(4816), + [anon_sym_u8] = ACTIONS(4816), + [anon_sym_u16] = ACTIONS(4816), + [anon_sym_u32] = ACTIONS(4816), + [anon_sym_u64] = ACTIONS(4816), + [anon_sym_isize] = ACTIONS(4816), + [anon_sym_usize] = ACTIONS(4816), + [anon_sym_f32] = ACTIONS(4816), + [anon_sym_f64] = ACTIONS(4816), + [anon_sym_c_char] = ACTIONS(4816), + [anon_sym_c_schar] = ACTIONS(4816), + [anon_sym_c_uchar] = ACTIONS(4816), + [anon_sym_c_short] = ACTIONS(4816), + [anon_sym_c_ushort] = ACTIONS(4816), + [anon_sym_c_int] = ACTIONS(4816), + [anon_sym_c_uint] = ACTIONS(4816), + [anon_sym_c_long] = ACTIONS(4816), + [anon_sym_c_ulong] = ACTIONS(4816), + [anon_sym_c_longlong] = ACTIONS(4816), + [anon_sym_c_ulonglong] = ACTIONS(4816), + [anon_sym_c_float] = ACTIONS(4816), + [anon_sym_c_double] = ACTIONS(4816), + [anon_sym_c_longdouble] = ACTIONS(4816), + [anon_sym_return] = ACTIONS(4816), + [anon_sym_yield] = ACTIONS(4816), + [anon_sym_break] = ACTIONS(4816), + [anon_sym_continue] = ACTIONS(4816), + [anon_sym_defer] = ACTIONS(4816), + [anon_sym_errdefer] = ACTIONS(4816), + [anon_sym_if] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_while] = ACTIONS(4816), + [anon_sym_expand] = ACTIONS(4816), + [anon_sym_for] = ACTIONS(4816), + [anon_sym_match] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_TILDE] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4816), + [anon_sym_false] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4816), + [anon_sym_unreachable] = ACTIONS(4816), + [anon_sym_undefined] = ACTIONS(4816), + [sym_sink] = ACTIONS(4816), + [sym_integer] = ACTIONS(4816), + [sym_float] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(4814), + [sym_multiline_string] = ACTIONS(4814), + [sym_character] = ACTIONS(4814), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4814), + }, + [STATE(6843)] = { + [ts_builtin_sym_end] = ACTIONS(4998), + [sym_identifier] = ACTIONS(5000), + [anon_sym_import] = ACTIONS(5000), + [anon_sym_test] = ACTIONS(5000), + [anon_sym_hide] = ACTIONS(5000), + [anon_sym_func] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(4998), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_void] = ACTIONS(5000), + [anon_sym_noreturn] = ACTIONS(5000), + [anon_sym_type] = ACTIONS(5000), + [anon_sym_anyopaque] = ACTIONS(5000), + [anon_sym_bool] = ACTIONS(5000), + [anon_sym_int] = ACTIONS(5000), + [anon_sym_uint] = ACTIONS(5000), + [anon_sym_float] = ACTIONS(5000), + [anon_sym_range] = ACTIONS(5000), + [anon_sym_i8] = ACTIONS(5000), + [anon_sym_i16] = ACTIONS(5000), + [anon_sym_i32] = ACTIONS(5000), + [anon_sym_i64] = ACTIONS(5000), + [anon_sym_u8] = ACTIONS(5000), + [anon_sym_u16] = ACTIONS(5000), + [anon_sym_u32] = ACTIONS(5000), + [anon_sym_u64] = ACTIONS(5000), + [anon_sym_isize] = ACTIONS(5000), + [anon_sym_usize] = ACTIONS(5000), + [anon_sym_f32] = ACTIONS(5000), + [anon_sym_f64] = ACTIONS(5000), + [anon_sym_c_char] = ACTIONS(5000), + [anon_sym_c_schar] = ACTIONS(5000), + [anon_sym_c_uchar] = ACTIONS(5000), + [anon_sym_c_short] = ACTIONS(5000), + [anon_sym_c_ushort] = ACTIONS(5000), + [anon_sym_c_int] = ACTIONS(5000), + [anon_sym_c_uint] = ACTIONS(5000), + [anon_sym_c_long] = ACTIONS(5000), + [anon_sym_c_ulong] = ACTIONS(5000), + [anon_sym_c_longlong] = ACTIONS(5000), + [anon_sym_c_ulonglong] = ACTIONS(5000), + [anon_sym_c_float] = ACTIONS(5000), + [anon_sym_c_double] = ACTIONS(5000), + [anon_sym_c_longdouble] = ACTIONS(5000), + [anon_sym_return] = ACTIONS(5000), + [anon_sym_yield] = ACTIONS(5000), + [anon_sym_break] = ACTIONS(5000), + [anon_sym_continue] = ACTIONS(5000), + [anon_sym_defer] = ACTIONS(5000), + [anon_sym_errdefer] = ACTIONS(5000), + [anon_sym_if] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_while] = ACTIONS(5000), + [anon_sym_expand] = ACTIONS(5000), + [anon_sym_for] = ACTIONS(5000), + [anon_sym_match] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_try] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_true] = ACTIONS(5000), + [anon_sym_false] = ACTIONS(5000), + [anon_sym_null] = ACTIONS(5000), + [anon_sym_unreachable] = ACTIONS(5000), + [anon_sym_undefined] = ACTIONS(5000), + [sym_sink] = ACTIONS(5000), + [sym_integer] = ACTIONS(5000), + [sym_float] = ACTIONS(4998), + [anon_sym_DQUOTE] = ACTIONS(4998), + [sym_multiline_string] = ACTIONS(4998), + [sym_character] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4998), + }, + [STATE(6844)] = { + [ts_builtin_sym_end] = ACTIONS(5156), + [sym_identifier] = ACTIONS(5158), + [anon_sym_import] = ACTIONS(5158), + [anon_sym_test] = ACTIONS(5158), + [anon_sym_hide] = ACTIONS(5158), + [anon_sym_func] = ACTIONS(5158), + [anon_sym_BANG] = ACTIONS(5156), + [anon_sym_struct] = ACTIONS(5158), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_RPAREN] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_void] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym_type] = ACTIONS(5158), + [anon_sym_anyopaque] = ACTIONS(5158), + [anon_sym_bool] = ACTIONS(5158), + [anon_sym_int] = ACTIONS(5158), + [anon_sym_uint] = ACTIONS(5158), + [anon_sym_float] = ACTIONS(5158), + [anon_sym_range] = ACTIONS(5158), + [anon_sym_i8] = ACTIONS(5158), + [anon_sym_i16] = ACTIONS(5158), + [anon_sym_i32] = ACTIONS(5158), + [anon_sym_i64] = ACTIONS(5158), + [anon_sym_u8] = ACTIONS(5158), + [anon_sym_u16] = ACTIONS(5158), + [anon_sym_u32] = ACTIONS(5158), + [anon_sym_u64] = ACTIONS(5158), + [anon_sym_isize] = ACTIONS(5158), + [anon_sym_usize] = ACTIONS(5158), + [anon_sym_f32] = ACTIONS(5158), + [anon_sym_f64] = ACTIONS(5158), + [anon_sym_c_char] = ACTIONS(5158), + [anon_sym_c_schar] = ACTIONS(5158), + [anon_sym_c_uchar] = ACTIONS(5158), + [anon_sym_c_short] = ACTIONS(5158), + [anon_sym_c_ushort] = ACTIONS(5158), + [anon_sym_c_int] = ACTIONS(5158), + [anon_sym_c_uint] = ACTIONS(5158), + [anon_sym_c_long] = ACTIONS(5158), + [anon_sym_c_ulong] = ACTIONS(5158), + [anon_sym_c_longlong] = ACTIONS(5158), + [anon_sym_c_ulonglong] = ACTIONS(5158), + [anon_sym_c_float] = ACTIONS(5158), + [anon_sym_c_double] = ACTIONS(5158), + [anon_sym_c_longdouble] = ACTIONS(5158), + [anon_sym_return] = ACTIONS(5158), + [anon_sym_yield] = ACTIONS(5158), + [anon_sym_break] = ACTIONS(5158), + [anon_sym_continue] = ACTIONS(5158), + [anon_sym_defer] = ACTIONS(5158), + [anon_sym_errdefer] = ACTIONS(5158), + [anon_sym_if] = ACTIONS(5158), + [anon_sym_else] = ACTIONS(5158), + [anon_sym_while] = ACTIONS(5158), + [anon_sym_expand] = ACTIONS(5158), + [anon_sym_for] = ACTIONS(5158), + [anon_sym_match] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_TILDE] = ACTIONS(5156), + [anon_sym_try] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5156), + [anon_sym_true] = ACTIONS(5158), + [anon_sym_false] = ACTIONS(5158), + [anon_sym_null] = ACTIONS(5158), + [anon_sym_unreachable] = ACTIONS(5158), + [anon_sym_undefined] = ACTIONS(5158), + [sym_sink] = ACTIONS(5158), + [sym_integer] = ACTIONS(5158), + [sym_float] = ACTIONS(5156), + [anon_sym_DQUOTE] = ACTIONS(5156), + [sym_multiline_string] = ACTIONS(5156), + [sym_character] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5156), + }, + [STATE(6845)] = { + [ts_builtin_sym_end] = ACTIONS(4790), + [sym_identifier] = ACTIONS(4792), + [anon_sym_import] = ACTIONS(4792), + [anon_sym_test] = ACTIONS(4792), + [anon_sym_hide] = ACTIONS(4792), + [anon_sym_func] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4790), + [anon_sym_struct] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_void] = ACTIONS(4792), + [anon_sym_noreturn] = ACTIONS(4792), + [anon_sym_type] = ACTIONS(4792), + [anon_sym_anyopaque] = ACTIONS(4792), + [anon_sym_bool] = ACTIONS(4792), + [anon_sym_int] = ACTIONS(4792), + [anon_sym_uint] = ACTIONS(4792), + [anon_sym_float] = ACTIONS(4792), + [anon_sym_range] = ACTIONS(4792), + [anon_sym_i8] = ACTIONS(4792), + [anon_sym_i16] = ACTIONS(4792), + [anon_sym_i32] = ACTIONS(4792), + [anon_sym_i64] = ACTIONS(4792), + [anon_sym_u8] = ACTIONS(4792), + [anon_sym_u16] = ACTIONS(4792), + [anon_sym_u32] = ACTIONS(4792), + [anon_sym_u64] = ACTIONS(4792), + [anon_sym_isize] = ACTIONS(4792), + [anon_sym_usize] = ACTIONS(4792), + [anon_sym_f32] = ACTIONS(4792), + [anon_sym_f64] = ACTIONS(4792), + [anon_sym_c_char] = ACTIONS(4792), + [anon_sym_c_schar] = ACTIONS(4792), + [anon_sym_c_uchar] = ACTIONS(4792), + [anon_sym_c_short] = ACTIONS(4792), + [anon_sym_c_ushort] = ACTIONS(4792), + [anon_sym_c_int] = ACTIONS(4792), + [anon_sym_c_uint] = ACTIONS(4792), + [anon_sym_c_long] = ACTIONS(4792), + [anon_sym_c_ulong] = ACTIONS(4792), + [anon_sym_c_longlong] = ACTIONS(4792), + [anon_sym_c_ulonglong] = ACTIONS(4792), + [anon_sym_c_float] = ACTIONS(4792), + [anon_sym_c_double] = ACTIONS(4792), + [anon_sym_c_longdouble] = ACTIONS(4792), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_yield] = ACTIONS(4792), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_defer] = ACTIONS(4792), + [anon_sym_errdefer] = ACTIONS(4792), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_while] = ACTIONS(4792), + [anon_sym_expand] = ACTIONS(4792), + [anon_sym_for] = ACTIONS(4792), + [anon_sym_match] = ACTIONS(4792), + [anon_sym_AMP] = ACTIONS(4790), + [anon_sym_TILDE] = ACTIONS(4790), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4792), + [anon_sym_unreachable] = ACTIONS(4792), + [anon_sym_undefined] = ACTIONS(4792), + [sym_sink] = ACTIONS(4792), + [sym_integer] = ACTIONS(4792), + [sym_float] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4790), + [sym_multiline_string] = ACTIONS(4790), + [sym_character] = ACTIONS(4790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4790), + }, + [STATE(6846)] = { + [ts_builtin_sym_end] = ACTIONS(5376), + [sym_identifier] = ACTIONS(5378), + [anon_sym_import] = ACTIONS(5378), + [anon_sym_test] = ACTIONS(5378), + [anon_sym_hide] = ACTIONS(5378), + [anon_sym_func] = ACTIONS(5378), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_struct] = ACTIONS(5378), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_RPAREN] = ACTIONS(5376), + [anon_sym_LBRACE] = ACTIONS(5376), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_void] = ACTIONS(5378), + [anon_sym_noreturn] = ACTIONS(5378), + [anon_sym_type] = ACTIONS(5378), + [anon_sym_anyopaque] = ACTIONS(5378), + [anon_sym_bool] = ACTIONS(5378), + [anon_sym_int] = ACTIONS(5378), + [anon_sym_uint] = ACTIONS(5378), + [anon_sym_float] = ACTIONS(5378), + [anon_sym_range] = ACTIONS(5378), + [anon_sym_i8] = ACTIONS(5378), + [anon_sym_i16] = ACTIONS(5378), + [anon_sym_i32] = ACTIONS(5378), + [anon_sym_i64] = ACTIONS(5378), + [anon_sym_u8] = ACTIONS(5378), + [anon_sym_u16] = ACTIONS(5378), + [anon_sym_u32] = ACTIONS(5378), + [anon_sym_u64] = ACTIONS(5378), + [anon_sym_isize] = ACTIONS(5378), + [anon_sym_usize] = ACTIONS(5378), + [anon_sym_f32] = ACTIONS(5378), + [anon_sym_f64] = ACTIONS(5378), + [anon_sym_c_char] = ACTIONS(5378), + [anon_sym_c_schar] = ACTIONS(5378), + [anon_sym_c_uchar] = ACTIONS(5378), + [anon_sym_c_short] = ACTIONS(5378), + [anon_sym_c_ushort] = ACTIONS(5378), + [anon_sym_c_int] = ACTIONS(5378), + [anon_sym_c_uint] = ACTIONS(5378), + [anon_sym_c_long] = ACTIONS(5378), + [anon_sym_c_ulong] = ACTIONS(5378), + [anon_sym_c_longlong] = ACTIONS(5378), + [anon_sym_c_ulonglong] = ACTIONS(5378), + [anon_sym_c_float] = ACTIONS(5378), + [anon_sym_c_double] = ACTIONS(5378), + [anon_sym_c_longdouble] = ACTIONS(5378), + [anon_sym_return] = ACTIONS(5378), + [anon_sym_yield] = ACTIONS(5378), + [anon_sym_break] = ACTIONS(5378), + [anon_sym_continue] = ACTIONS(5378), + [anon_sym_defer] = ACTIONS(5378), + [anon_sym_errdefer] = ACTIONS(5378), + [anon_sym_if] = ACTIONS(5378), + [anon_sym_else] = ACTIONS(5378), + [anon_sym_while] = ACTIONS(5378), + [anon_sym_expand] = ACTIONS(5378), + [anon_sym_for] = ACTIONS(5378), + [anon_sym_match] = ACTIONS(5378), + [anon_sym_AMP] = ACTIONS(5376), + [anon_sym_TILDE] = ACTIONS(5376), + [anon_sym_try] = ACTIONS(5378), + [anon_sym_DOT] = ACTIONS(5376), + [anon_sym_true] = ACTIONS(5378), + [anon_sym_false] = ACTIONS(5378), + [anon_sym_null] = ACTIONS(5378), + [anon_sym_unreachable] = ACTIONS(5378), + [anon_sym_undefined] = ACTIONS(5378), + [sym_sink] = ACTIONS(5378), + [sym_integer] = ACTIONS(5378), + [sym_float] = ACTIONS(5376), + [anon_sym_DQUOTE] = ACTIONS(5376), + [sym_multiline_string] = ACTIONS(5376), + [sym_character] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5376), + }, + [STATE(6847)] = { + [ts_builtin_sym_end] = ACTIONS(5054), + [sym_identifier] = ACTIONS(5056), + [anon_sym_import] = ACTIONS(5056), + [anon_sym_test] = ACTIONS(5056), + [anon_sym_hide] = ACTIONS(5056), + [anon_sym_func] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5054), + [anon_sym_struct] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5054), + [anon_sym_RPAREN] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5054), + [anon_sym_RBRACE] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_DOLLAR] = ACTIONS(5054), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_void] = ACTIONS(5056), + [anon_sym_noreturn] = ACTIONS(5056), + [anon_sym_type] = ACTIONS(5056), + [anon_sym_anyopaque] = ACTIONS(5056), + [anon_sym_bool] = ACTIONS(5056), + [anon_sym_int] = ACTIONS(5056), + [anon_sym_uint] = ACTIONS(5056), + [anon_sym_float] = ACTIONS(5056), + [anon_sym_range] = ACTIONS(5056), + [anon_sym_i8] = ACTIONS(5056), + [anon_sym_i16] = ACTIONS(5056), + [anon_sym_i32] = ACTIONS(5056), + [anon_sym_i64] = ACTIONS(5056), + [anon_sym_u8] = ACTIONS(5056), + [anon_sym_u16] = ACTIONS(5056), + [anon_sym_u32] = ACTIONS(5056), + [anon_sym_u64] = ACTIONS(5056), + [anon_sym_isize] = ACTIONS(5056), + [anon_sym_usize] = ACTIONS(5056), + [anon_sym_f32] = ACTIONS(5056), + [anon_sym_f64] = ACTIONS(5056), + [anon_sym_c_char] = ACTIONS(5056), + [anon_sym_c_schar] = ACTIONS(5056), + [anon_sym_c_uchar] = ACTIONS(5056), + [anon_sym_c_short] = ACTIONS(5056), + [anon_sym_c_ushort] = ACTIONS(5056), + [anon_sym_c_int] = ACTIONS(5056), + [anon_sym_c_uint] = ACTIONS(5056), + [anon_sym_c_long] = ACTIONS(5056), + [anon_sym_c_ulong] = ACTIONS(5056), + [anon_sym_c_longlong] = ACTIONS(5056), + [anon_sym_c_ulonglong] = ACTIONS(5056), + [anon_sym_c_float] = ACTIONS(5056), + [anon_sym_c_double] = ACTIONS(5056), + [anon_sym_c_longdouble] = ACTIONS(5056), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_yield] = ACTIONS(5056), + [anon_sym_break] = ACTIONS(5056), + [anon_sym_continue] = ACTIONS(5056), + [anon_sym_defer] = ACTIONS(5056), + [anon_sym_errdefer] = ACTIONS(5056), + [anon_sym_if] = ACTIONS(5056), + [anon_sym_else] = ACTIONS(5056), + [anon_sym_while] = ACTIONS(5056), + [anon_sym_expand] = ACTIONS(5056), + [anon_sym_for] = ACTIONS(5056), + [anon_sym_match] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_TILDE] = ACTIONS(5054), + [anon_sym_try] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_true] = ACTIONS(5056), + [anon_sym_false] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_unreachable] = ACTIONS(5056), + [anon_sym_undefined] = ACTIONS(5056), + [sym_sink] = ACTIONS(5056), + [sym_integer] = ACTIONS(5056), + [sym_float] = ACTIONS(5054), + [anon_sym_DQUOTE] = ACTIONS(5054), + [sym_multiline_string] = ACTIONS(5054), + [sym_character] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5054), + }, + [STATE(6848)] = { + [ts_builtin_sym_end] = ACTIONS(4532), + [sym_identifier] = ACTIONS(4534), + [anon_sym_import] = ACTIONS(4534), + [anon_sym_test] = ACTIONS(4534), + [anon_sym_hide] = ACTIONS(4534), + [anon_sym_func] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_RPAREN] = ACTIONS(4532), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [anon_sym_DOLLAR] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_void] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym_type] = ACTIONS(4534), + [anon_sym_anyopaque] = ACTIONS(4534), + [anon_sym_bool] = ACTIONS(4534), + [anon_sym_int] = ACTIONS(4534), + [anon_sym_uint] = ACTIONS(4534), + [anon_sym_float] = ACTIONS(4534), + [anon_sym_range] = ACTIONS(4534), + [anon_sym_i8] = ACTIONS(4534), + [anon_sym_i16] = ACTIONS(4534), + [anon_sym_i32] = ACTIONS(4534), + [anon_sym_i64] = ACTIONS(4534), + [anon_sym_u8] = ACTIONS(4534), + [anon_sym_u16] = ACTIONS(4534), + [anon_sym_u32] = ACTIONS(4534), + [anon_sym_u64] = ACTIONS(4534), + [anon_sym_isize] = ACTIONS(4534), + [anon_sym_usize] = ACTIONS(4534), + [anon_sym_f32] = ACTIONS(4534), + [anon_sym_f64] = ACTIONS(4534), + [anon_sym_c_char] = ACTIONS(4534), + [anon_sym_c_schar] = ACTIONS(4534), + [anon_sym_c_uchar] = ACTIONS(4534), + [anon_sym_c_short] = ACTIONS(4534), + [anon_sym_c_ushort] = ACTIONS(4534), + [anon_sym_c_int] = ACTIONS(4534), + [anon_sym_c_uint] = ACTIONS(4534), + [anon_sym_c_long] = ACTIONS(4534), + [anon_sym_c_ulong] = ACTIONS(4534), + [anon_sym_c_longlong] = ACTIONS(4534), + [anon_sym_c_ulonglong] = ACTIONS(4534), + [anon_sym_c_float] = ACTIONS(4534), + [anon_sym_c_double] = ACTIONS(4534), + [anon_sym_c_longdouble] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_yield] = ACTIONS(4534), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_defer] = ACTIONS(4534), + [anon_sym_errdefer] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_else] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4534), + [anon_sym_expand] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_match] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4532), + [anon_sym_TILDE] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4534), + [anon_sym_DOT] = ACTIONS(4532), + [anon_sym_true] = ACTIONS(4534), + [anon_sym_false] = ACTIONS(4534), + [anon_sym_null] = ACTIONS(4534), + [anon_sym_unreachable] = ACTIONS(4534), + [anon_sym_undefined] = ACTIONS(4534), + [sym_sink] = ACTIONS(4534), + [sym_integer] = ACTIONS(4534), + [sym_float] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [sym_multiline_string] = ACTIONS(4532), + [sym_character] = ACTIONS(4532), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4532), + }, + [STATE(6849)] = { + [ts_builtin_sym_end] = ACTIONS(5600), + [sym_identifier] = ACTIONS(5602), + [anon_sym_import] = ACTIONS(5602), + [anon_sym_test] = ACTIONS(5602), + [anon_sym_hide] = ACTIONS(5602), + [anon_sym_func] = ACTIONS(5602), + [anon_sym_BANG] = ACTIONS(5600), + [anon_sym_struct] = ACTIONS(5602), + [anon_sym_LPAREN] = ACTIONS(5600), + [anon_sym_RPAREN] = ACTIONS(5600), + [anon_sym_LBRACE] = ACTIONS(5600), + [anon_sym_RBRACE] = ACTIONS(5600), + [anon_sym_DASH] = ACTIONS(5600), + [anon_sym_DOLLAR] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_void] = ACTIONS(5602), + [anon_sym_noreturn] = ACTIONS(5602), + [anon_sym_type] = ACTIONS(5602), + [anon_sym_anyopaque] = ACTIONS(5602), + [anon_sym_bool] = ACTIONS(5602), + [anon_sym_int] = ACTIONS(5602), + [anon_sym_uint] = ACTIONS(5602), + [anon_sym_float] = ACTIONS(5602), + [anon_sym_range] = ACTIONS(5602), + [anon_sym_i8] = ACTIONS(5602), + [anon_sym_i16] = ACTIONS(5602), + [anon_sym_i32] = ACTIONS(5602), + [anon_sym_i64] = ACTIONS(5602), + [anon_sym_u8] = ACTIONS(5602), + [anon_sym_u16] = ACTIONS(5602), + [anon_sym_u32] = ACTIONS(5602), + [anon_sym_u64] = ACTIONS(5602), + [anon_sym_isize] = ACTIONS(5602), + [anon_sym_usize] = ACTIONS(5602), + [anon_sym_f32] = ACTIONS(5602), + [anon_sym_f64] = ACTIONS(5602), + [anon_sym_c_char] = ACTIONS(5602), + [anon_sym_c_schar] = ACTIONS(5602), + [anon_sym_c_uchar] = ACTIONS(5602), + [anon_sym_c_short] = ACTIONS(5602), + [anon_sym_c_ushort] = ACTIONS(5602), + [anon_sym_c_int] = ACTIONS(5602), + [anon_sym_c_uint] = ACTIONS(5602), + [anon_sym_c_long] = ACTIONS(5602), + [anon_sym_c_ulong] = ACTIONS(5602), + [anon_sym_c_longlong] = ACTIONS(5602), + [anon_sym_c_ulonglong] = ACTIONS(5602), + [anon_sym_c_float] = ACTIONS(5602), + [anon_sym_c_double] = ACTIONS(5602), + [anon_sym_c_longdouble] = ACTIONS(5602), + [anon_sym_return] = ACTIONS(5602), + [anon_sym_yield] = ACTIONS(5602), + [anon_sym_break] = ACTIONS(5602), + [anon_sym_continue] = ACTIONS(5602), + [anon_sym_defer] = ACTIONS(5602), + [anon_sym_errdefer] = ACTIONS(5602), + [anon_sym_if] = ACTIONS(5602), + [anon_sym_else] = ACTIONS(5602), + [anon_sym_while] = ACTIONS(5602), + [anon_sym_expand] = ACTIONS(5602), + [anon_sym_for] = ACTIONS(5602), + [anon_sym_match] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(5600), + [anon_sym_TILDE] = ACTIONS(5600), + [anon_sym_try] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_true] = ACTIONS(5602), + [anon_sym_false] = ACTIONS(5602), + [anon_sym_null] = ACTIONS(5602), + [anon_sym_unreachable] = ACTIONS(5602), + [anon_sym_undefined] = ACTIONS(5602), + [sym_sink] = ACTIONS(5602), + [sym_integer] = ACTIONS(5602), + [sym_float] = ACTIONS(5600), + [anon_sym_DQUOTE] = ACTIONS(5600), + [sym_multiline_string] = ACTIONS(5600), + [sym_character] = ACTIONS(5600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5600), + }, + [STATE(6850)] = { + [ts_builtin_sym_end] = ACTIONS(4794), + [sym_identifier] = ACTIONS(4796), + [anon_sym_import] = ACTIONS(4796), + [anon_sym_test] = ACTIONS(4796), + [anon_sym_hide] = ACTIONS(4796), + [anon_sym_func] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4794), + [anon_sym_struct] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_RPAREN] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_DOLLAR] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_void] = ACTIONS(4796), + [anon_sym_noreturn] = ACTIONS(4796), + [anon_sym_type] = ACTIONS(4796), + [anon_sym_anyopaque] = ACTIONS(4796), + [anon_sym_bool] = ACTIONS(4796), + [anon_sym_int] = ACTIONS(4796), + [anon_sym_uint] = ACTIONS(4796), + [anon_sym_float] = ACTIONS(4796), + [anon_sym_range] = ACTIONS(4796), + [anon_sym_i8] = ACTIONS(4796), + [anon_sym_i16] = ACTIONS(4796), + [anon_sym_i32] = ACTIONS(4796), + [anon_sym_i64] = ACTIONS(4796), + [anon_sym_u8] = ACTIONS(4796), + [anon_sym_u16] = ACTIONS(4796), + [anon_sym_u32] = ACTIONS(4796), + [anon_sym_u64] = ACTIONS(4796), + [anon_sym_isize] = ACTIONS(4796), + [anon_sym_usize] = ACTIONS(4796), + [anon_sym_f32] = ACTIONS(4796), + [anon_sym_f64] = ACTIONS(4796), + [anon_sym_c_char] = ACTIONS(4796), + [anon_sym_c_schar] = ACTIONS(4796), + [anon_sym_c_uchar] = ACTIONS(4796), + [anon_sym_c_short] = ACTIONS(4796), + [anon_sym_c_ushort] = ACTIONS(4796), + [anon_sym_c_int] = ACTIONS(4796), + [anon_sym_c_uint] = ACTIONS(4796), + [anon_sym_c_long] = ACTIONS(4796), + [anon_sym_c_ulong] = ACTIONS(4796), + [anon_sym_c_longlong] = ACTIONS(4796), + [anon_sym_c_ulonglong] = ACTIONS(4796), + [anon_sym_c_float] = ACTIONS(4796), + [anon_sym_c_double] = ACTIONS(4796), + [anon_sym_c_longdouble] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_yield] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_defer] = ACTIONS(4796), + [anon_sym_errdefer] = ACTIONS(4796), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_expand] = ACTIONS(4796), + [anon_sym_for] = ACTIONS(4796), + [anon_sym_match] = ACTIONS(4796), + [anon_sym_AMP] = ACTIONS(4794), + [anon_sym_TILDE] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4796), + [anon_sym_unreachable] = ACTIONS(4796), + [anon_sym_undefined] = ACTIONS(4796), + [sym_sink] = ACTIONS(4796), + [sym_integer] = ACTIONS(4796), + [sym_float] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(4794), + [sym_multiline_string] = ACTIONS(4794), + [sym_character] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4794), + }, + [STATE(6851)] = { + [ts_builtin_sym_end] = ACTIONS(5604), + [sym_identifier] = ACTIONS(5606), + [anon_sym_import] = ACTIONS(5606), + [anon_sym_test] = ACTIONS(5606), + [anon_sym_hide] = ACTIONS(5606), + [anon_sym_func] = ACTIONS(5606), + [anon_sym_BANG] = ACTIONS(5604), + [anon_sym_struct] = ACTIONS(5606), + [anon_sym_LPAREN] = ACTIONS(5604), + [anon_sym_RPAREN] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(5604), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_DASH] = ACTIONS(5604), + [anon_sym_DOLLAR] = ACTIONS(5604), + [anon_sym_LBRACK] = ACTIONS(5604), + [anon_sym_void] = ACTIONS(5606), + [anon_sym_noreturn] = ACTIONS(5606), + [anon_sym_type] = ACTIONS(5606), + [anon_sym_anyopaque] = ACTIONS(5606), + [anon_sym_bool] = ACTIONS(5606), + [anon_sym_int] = ACTIONS(5606), + [anon_sym_uint] = ACTIONS(5606), + [anon_sym_float] = ACTIONS(5606), + [anon_sym_range] = ACTIONS(5606), + [anon_sym_i8] = ACTIONS(5606), + [anon_sym_i16] = ACTIONS(5606), + [anon_sym_i32] = ACTIONS(5606), + [anon_sym_i64] = ACTIONS(5606), + [anon_sym_u8] = ACTIONS(5606), + [anon_sym_u16] = ACTIONS(5606), + [anon_sym_u32] = ACTIONS(5606), + [anon_sym_u64] = ACTIONS(5606), + [anon_sym_isize] = ACTIONS(5606), + [anon_sym_usize] = ACTIONS(5606), + [anon_sym_f32] = ACTIONS(5606), + [anon_sym_f64] = ACTIONS(5606), + [anon_sym_c_char] = ACTIONS(5606), + [anon_sym_c_schar] = ACTIONS(5606), + [anon_sym_c_uchar] = ACTIONS(5606), + [anon_sym_c_short] = ACTIONS(5606), + [anon_sym_c_ushort] = ACTIONS(5606), + [anon_sym_c_int] = ACTIONS(5606), + [anon_sym_c_uint] = ACTIONS(5606), + [anon_sym_c_long] = ACTIONS(5606), + [anon_sym_c_ulong] = ACTIONS(5606), + [anon_sym_c_longlong] = ACTIONS(5606), + [anon_sym_c_ulonglong] = ACTIONS(5606), + [anon_sym_c_float] = ACTIONS(5606), + [anon_sym_c_double] = ACTIONS(5606), + [anon_sym_c_longdouble] = ACTIONS(5606), + [anon_sym_return] = ACTIONS(5606), + [anon_sym_yield] = ACTIONS(5606), + [anon_sym_break] = ACTIONS(5606), + [anon_sym_continue] = ACTIONS(5606), + [anon_sym_defer] = ACTIONS(5606), + [anon_sym_errdefer] = ACTIONS(5606), + [anon_sym_if] = ACTIONS(5606), + [anon_sym_else] = ACTIONS(5606), + [anon_sym_while] = ACTIONS(5606), + [anon_sym_expand] = ACTIONS(5606), + [anon_sym_for] = ACTIONS(5606), + [anon_sym_match] = ACTIONS(5606), + [anon_sym_AMP] = ACTIONS(5604), + [anon_sym_TILDE] = ACTIONS(5604), + [anon_sym_try] = ACTIONS(5606), + [anon_sym_DOT] = ACTIONS(5604), + [anon_sym_true] = ACTIONS(5606), + [anon_sym_false] = ACTIONS(5606), + [anon_sym_null] = ACTIONS(5606), + [anon_sym_unreachable] = ACTIONS(5606), + [anon_sym_undefined] = ACTIONS(5606), + [sym_sink] = ACTIONS(5606), + [sym_integer] = ACTIONS(5606), + [sym_float] = ACTIONS(5604), + [anon_sym_DQUOTE] = ACTIONS(5604), + [sym_multiline_string] = ACTIONS(5604), + [sym_character] = ACTIONS(5604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5604), + }, + [STATE(6852)] = { + [ts_builtin_sym_end] = ACTIONS(5608), + [sym_identifier] = ACTIONS(5610), + [anon_sym_import] = ACTIONS(5610), + [anon_sym_test] = ACTIONS(5610), + [anon_sym_hide] = ACTIONS(5610), + [anon_sym_func] = ACTIONS(5610), + [anon_sym_BANG] = ACTIONS(5608), + [anon_sym_struct] = ACTIONS(5610), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_RPAREN] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_DASH] = ACTIONS(5608), + [anon_sym_DOLLAR] = ACTIONS(5608), + [anon_sym_LBRACK] = ACTIONS(5608), + [anon_sym_void] = ACTIONS(5610), + [anon_sym_noreturn] = ACTIONS(5610), + [anon_sym_type] = ACTIONS(5610), + [anon_sym_anyopaque] = ACTIONS(5610), + [anon_sym_bool] = ACTIONS(5610), + [anon_sym_int] = ACTIONS(5610), + [anon_sym_uint] = ACTIONS(5610), + [anon_sym_float] = ACTIONS(5610), + [anon_sym_range] = ACTIONS(5610), + [anon_sym_i8] = ACTIONS(5610), + [anon_sym_i16] = ACTIONS(5610), + [anon_sym_i32] = ACTIONS(5610), + [anon_sym_i64] = ACTIONS(5610), + [anon_sym_u8] = ACTIONS(5610), + [anon_sym_u16] = ACTIONS(5610), + [anon_sym_u32] = ACTIONS(5610), + [anon_sym_u64] = ACTIONS(5610), + [anon_sym_isize] = ACTIONS(5610), + [anon_sym_usize] = ACTIONS(5610), + [anon_sym_f32] = ACTIONS(5610), + [anon_sym_f64] = ACTIONS(5610), + [anon_sym_c_char] = ACTIONS(5610), + [anon_sym_c_schar] = ACTIONS(5610), + [anon_sym_c_uchar] = ACTIONS(5610), + [anon_sym_c_short] = ACTIONS(5610), + [anon_sym_c_ushort] = ACTIONS(5610), + [anon_sym_c_int] = ACTIONS(5610), + [anon_sym_c_uint] = ACTIONS(5610), + [anon_sym_c_long] = ACTIONS(5610), + [anon_sym_c_ulong] = ACTIONS(5610), + [anon_sym_c_longlong] = ACTIONS(5610), + [anon_sym_c_ulonglong] = ACTIONS(5610), + [anon_sym_c_float] = ACTIONS(5610), + [anon_sym_c_double] = ACTIONS(5610), + [anon_sym_c_longdouble] = ACTIONS(5610), + [anon_sym_return] = ACTIONS(5610), + [anon_sym_yield] = ACTIONS(5610), + [anon_sym_break] = ACTIONS(5610), + [anon_sym_continue] = ACTIONS(5610), + [anon_sym_defer] = ACTIONS(5610), + [anon_sym_errdefer] = ACTIONS(5610), + [anon_sym_if] = ACTIONS(5610), + [anon_sym_else] = ACTIONS(5610), + [anon_sym_while] = ACTIONS(5610), + [anon_sym_expand] = ACTIONS(5610), + [anon_sym_for] = ACTIONS(5610), + [anon_sym_match] = ACTIONS(5610), + [anon_sym_AMP] = ACTIONS(5608), + [anon_sym_TILDE] = ACTIONS(5608), + [anon_sym_try] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5608), + [anon_sym_true] = ACTIONS(5610), + [anon_sym_false] = ACTIONS(5610), + [anon_sym_null] = ACTIONS(5610), + [anon_sym_unreachable] = ACTIONS(5610), + [anon_sym_undefined] = ACTIONS(5610), + [sym_sink] = ACTIONS(5610), + [sym_integer] = ACTIONS(5610), + [sym_float] = ACTIONS(5608), + [anon_sym_DQUOTE] = ACTIONS(5608), + [sym_multiline_string] = ACTIONS(5608), + [sym_character] = ACTIONS(5608), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5608), + }, + [STATE(6853)] = { + [ts_builtin_sym_end] = ACTIONS(5612), + [sym_identifier] = ACTIONS(5614), + [anon_sym_import] = ACTIONS(5614), + [anon_sym_test] = ACTIONS(5614), + [anon_sym_hide] = ACTIONS(5614), + [anon_sym_func] = ACTIONS(5614), + [anon_sym_BANG] = ACTIONS(5612), + [anon_sym_struct] = ACTIONS(5614), + [anon_sym_LPAREN] = ACTIONS(5612), + [anon_sym_RPAREN] = ACTIONS(5612), + [anon_sym_LBRACE] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5612), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_DOLLAR] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(5612), + [anon_sym_void] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_type] = ACTIONS(5614), + [anon_sym_anyopaque] = ACTIONS(5614), + [anon_sym_bool] = ACTIONS(5614), + [anon_sym_int] = ACTIONS(5614), + [anon_sym_uint] = ACTIONS(5614), + [anon_sym_float] = ACTIONS(5614), + [anon_sym_range] = ACTIONS(5614), + [anon_sym_i8] = ACTIONS(5614), + [anon_sym_i16] = ACTIONS(5614), + [anon_sym_i32] = ACTIONS(5614), + [anon_sym_i64] = ACTIONS(5614), + [anon_sym_u8] = ACTIONS(5614), + [anon_sym_u16] = ACTIONS(5614), + [anon_sym_u32] = ACTIONS(5614), + [anon_sym_u64] = ACTIONS(5614), + [anon_sym_isize] = ACTIONS(5614), + [anon_sym_usize] = ACTIONS(5614), + [anon_sym_f32] = ACTIONS(5614), + [anon_sym_f64] = ACTIONS(5614), + [anon_sym_c_char] = ACTIONS(5614), + [anon_sym_c_schar] = ACTIONS(5614), + [anon_sym_c_uchar] = ACTIONS(5614), + [anon_sym_c_short] = ACTIONS(5614), + [anon_sym_c_ushort] = ACTIONS(5614), + [anon_sym_c_int] = ACTIONS(5614), + [anon_sym_c_uint] = ACTIONS(5614), + [anon_sym_c_long] = ACTIONS(5614), + [anon_sym_c_ulong] = ACTIONS(5614), + [anon_sym_c_longlong] = ACTIONS(5614), + [anon_sym_c_ulonglong] = ACTIONS(5614), + [anon_sym_c_float] = ACTIONS(5614), + [anon_sym_c_double] = ACTIONS(5614), + [anon_sym_c_longdouble] = ACTIONS(5614), + [anon_sym_return] = ACTIONS(5614), + [anon_sym_yield] = ACTIONS(5614), + [anon_sym_break] = ACTIONS(5614), + [anon_sym_continue] = ACTIONS(5614), + [anon_sym_defer] = ACTIONS(5614), + [anon_sym_errdefer] = ACTIONS(5614), + [anon_sym_if] = ACTIONS(5614), + [anon_sym_else] = ACTIONS(5614), + [anon_sym_while] = ACTIONS(5614), + [anon_sym_expand] = ACTIONS(5614), + [anon_sym_for] = ACTIONS(5614), + [anon_sym_match] = ACTIONS(5614), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_TILDE] = ACTIONS(5612), + [anon_sym_try] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5612), + [anon_sym_true] = ACTIONS(5614), + [anon_sym_false] = ACTIONS(5614), + [anon_sym_null] = ACTIONS(5614), + [anon_sym_unreachable] = ACTIONS(5614), + [anon_sym_undefined] = ACTIONS(5614), + [sym_sink] = ACTIONS(5614), + [sym_integer] = ACTIONS(5614), + [sym_float] = ACTIONS(5612), + [anon_sym_DQUOTE] = ACTIONS(5612), + [sym_multiline_string] = ACTIONS(5612), + [sym_character] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5612), + }, + [STATE(6854)] = { + [ts_builtin_sym_end] = ACTIONS(5620), + [sym_identifier] = ACTIONS(5622), + [anon_sym_import] = ACTIONS(5622), + [anon_sym_test] = ACTIONS(5622), + [anon_sym_hide] = ACTIONS(5622), + [anon_sym_func] = ACTIONS(5622), + [anon_sym_BANG] = ACTIONS(5620), + [anon_sym_struct] = ACTIONS(5622), + [anon_sym_LPAREN] = ACTIONS(5620), + [anon_sym_RPAREN] = ACTIONS(5620), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(5620), + [anon_sym_DOLLAR] = ACTIONS(5620), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym_void] = ACTIONS(5622), + [anon_sym_noreturn] = ACTIONS(5622), + [anon_sym_type] = ACTIONS(5622), + [anon_sym_anyopaque] = ACTIONS(5622), + [anon_sym_bool] = ACTIONS(5622), + [anon_sym_int] = ACTIONS(5622), + [anon_sym_uint] = ACTIONS(5622), + [anon_sym_float] = ACTIONS(5622), + [anon_sym_range] = ACTIONS(5622), + [anon_sym_i8] = ACTIONS(5622), + [anon_sym_i16] = ACTIONS(5622), + [anon_sym_i32] = ACTIONS(5622), + [anon_sym_i64] = ACTIONS(5622), + [anon_sym_u8] = ACTIONS(5622), + [anon_sym_u16] = ACTIONS(5622), + [anon_sym_u32] = ACTIONS(5622), + [anon_sym_u64] = ACTIONS(5622), + [anon_sym_isize] = ACTIONS(5622), + [anon_sym_usize] = ACTIONS(5622), + [anon_sym_f32] = ACTIONS(5622), + [anon_sym_f64] = ACTIONS(5622), + [anon_sym_c_char] = ACTIONS(5622), + [anon_sym_c_schar] = ACTIONS(5622), + [anon_sym_c_uchar] = ACTIONS(5622), + [anon_sym_c_short] = ACTIONS(5622), + [anon_sym_c_ushort] = ACTIONS(5622), + [anon_sym_c_int] = ACTIONS(5622), + [anon_sym_c_uint] = ACTIONS(5622), + [anon_sym_c_long] = ACTIONS(5622), + [anon_sym_c_ulong] = ACTIONS(5622), + [anon_sym_c_longlong] = ACTIONS(5622), + [anon_sym_c_ulonglong] = ACTIONS(5622), + [anon_sym_c_float] = ACTIONS(5622), + [anon_sym_c_double] = ACTIONS(5622), + [anon_sym_c_longdouble] = ACTIONS(5622), + [anon_sym_return] = ACTIONS(5622), + [anon_sym_yield] = ACTIONS(5622), + [anon_sym_break] = ACTIONS(5622), + [anon_sym_continue] = ACTIONS(5622), + [anon_sym_defer] = ACTIONS(5622), + [anon_sym_errdefer] = ACTIONS(5622), + [anon_sym_if] = ACTIONS(5622), + [anon_sym_else] = ACTIONS(5622), + [anon_sym_while] = ACTIONS(5622), + [anon_sym_expand] = ACTIONS(5622), + [anon_sym_for] = ACTIONS(5622), + [anon_sym_match] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5620), + [anon_sym_TILDE] = ACTIONS(5620), + [anon_sym_try] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_true] = ACTIONS(5622), + [anon_sym_false] = ACTIONS(5622), + [anon_sym_null] = ACTIONS(5622), + [anon_sym_unreachable] = ACTIONS(5622), + [anon_sym_undefined] = ACTIONS(5622), + [sym_sink] = ACTIONS(5622), + [sym_integer] = ACTIONS(5622), + [sym_float] = ACTIONS(5620), + [anon_sym_DQUOTE] = ACTIONS(5620), + [sym_multiline_string] = ACTIONS(5620), + [sym_character] = ACTIONS(5620), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5620), + }, + [STATE(6855)] = { + [ts_builtin_sym_end] = ACTIONS(5616), + [sym_identifier] = ACTIONS(5618), + [anon_sym_import] = ACTIONS(5618), + [anon_sym_test] = ACTIONS(5618), + [anon_sym_hide] = ACTIONS(5618), + [anon_sym_func] = ACTIONS(5618), + [anon_sym_BANG] = ACTIONS(5616), + [anon_sym_struct] = ACTIONS(5618), + [anon_sym_LPAREN] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5616), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_DOLLAR] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_void] = ACTIONS(5618), + [anon_sym_noreturn] = ACTIONS(5618), + [anon_sym_type] = ACTIONS(5618), + [anon_sym_anyopaque] = ACTIONS(5618), + [anon_sym_bool] = ACTIONS(5618), + [anon_sym_int] = ACTIONS(5618), + [anon_sym_uint] = ACTIONS(5618), + [anon_sym_float] = ACTIONS(5618), + [anon_sym_range] = ACTIONS(5618), + [anon_sym_i8] = ACTIONS(5618), + [anon_sym_i16] = ACTIONS(5618), + [anon_sym_i32] = ACTIONS(5618), + [anon_sym_i64] = ACTIONS(5618), + [anon_sym_u8] = ACTIONS(5618), + [anon_sym_u16] = ACTIONS(5618), + [anon_sym_u32] = ACTIONS(5618), + [anon_sym_u64] = ACTIONS(5618), + [anon_sym_isize] = ACTIONS(5618), + [anon_sym_usize] = ACTIONS(5618), + [anon_sym_f32] = ACTIONS(5618), + [anon_sym_f64] = ACTIONS(5618), + [anon_sym_c_char] = ACTIONS(5618), + [anon_sym_c_schar] = ACTIONS(5618), + [anon_sym_c_uchar] = ACTIONS(5618), + [anon_sym_c_short] = ACTIONS(5618), + [anon_sym_c_ushort] = ACTIONS(5618), + [anon_sym_c_int] = ACTIONS(5618), + [anon_sym_c_uint] = ACTIONS(5618), + [anon_sym_c_long] = ACTIONS(5618), + [anon_sym_c_ulong] = ACTIONS(5618), + [anon_sym_c_longlong] = ACTIONS(5618), + [anon_sym_c_ulonglong] = ACTIONS(5618), + [anon_sym_c_float] = ACTIONS(5618), + [anon_sym_c_double] = ACTIONS(5618), + [anon_sym_c_longdouble] = ACTIONS(5618), + [anon_sym_return] = ACTIONS(5618), + [anon_sym_yield] = ACTIONS(5618), + [anon_sym_break] = ACTIONS(5618), + [anon_sym_continue] = ACTIONS(5618), + [anon_sym_defer] = ACTIONS(5618), + [anon_sym_errdefer] = ACTIONS(5618), + [anon_sym_if] = ACTIONS(5618), + [anon_sym_else] = ACTIONS(5618), + [anon_sym_while] = ACTIONS(5618), + [anon_sym_expand] = ACTIONS(5618), + [anon_sym_for] = ACTIONS(5618), + [anon_sym_match] = ACTIONS(5618), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_TILDE] = ACTIONS(5616), + [anon_sym_try] = ACTIONS(5618), + [anon_sym_DOT] = ACTIONS(5616), + [anon_sym_true] = ACTIONS(5618), + [anon_sym_false] = ACTIONS(5618), + [anon_sym_null] = ACTIONS(5618), + [anon_sym_unreachable] = ACTIONS(5618), + [anon_sym_undefined] = ACTIONS(5618), + [sym_sink] = ACTIONS(5618), + [sym_integer] = ACTIONS(5618), + [sym_float] = ACTIONS(5616), + [anon_sym_DQUOTE] = ACTIONS(5616), + [sym_multiline_string] = ACTIONS(5616), + [sym_character] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5616), + }, + [STATE(6856)] = { + [ts_builtin_sym_end] = ACTIONS(5222), + [sym_identifier] = ACTIONS(5224), + [anon_sym_import] = ACTIONS(5224), + [anon_sym_test] = ACTIONS(5224), + [anon_sym_hide] = ACTIONS(5224), + [anon_sym_func] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5222), + [anon_sym_struct] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_void] = ACTIONS(5224), + [anon_sym_noreturn] = ACTIONS(5224), + [anon_sym_type] = ACTIONS(5224), + [anon_sym_anyopaque] = ACTIONS(5224), + [anon_sym_bool] = ACTIONS(5224), + [anon_sym_int] = ACTIONS(5224), + [anon_sym_uint] = ACTIONS(5224), + [anon_sym_float] = ACTIONS(5224), + [anon_sym_range] = ACTIONS(5224), + [anon_sym_i8] = ACTIONS(5224), + [anon_sym_i16] = ACTIONS(5224), + [anon_sym_i32] = ACTIONS(5224), + [anon_sym_i64] = ACTIONS(5224), + [anon_sym_u8] = ACTIONS(5224), + [anon_sym_u16] = ACTIONS(5224), + [anon_sym_u32] = ACTIONS(5224), + [anon_sym_u64] = ACTIONS(5224), + [anon_sym_isize] = ACTIONS(5224), + [anon_sym_usize] = ACTIONS(5224), + [anon_sym_f32] = ACTIONS(5224), + [anon_sym_f64] = ACTIONS(5224), + [anon_sym_c_char] = ACTIONS(5224), + [anon_sym_c_schar] = ACTIONS(5224), + [anon_sym_c_uchar] = ACTIONS(5224), + [anon_sym_c_short] = ACTIONS(5224), + [anon_sym_c_ushort] = ACTIONS(5224), + [anon_sym_c_int] = ACTIONS(5224), + [anon_sym_c_uint] = ACTIONS(5224), + [anon_sym_c_long] = ACTIONS(5224), + [anon_sym_c_ulong] = ACTIONS(5224), + [anon_sym_c_longlong] = ACTIONS(5224), + [anon_sym_c_ulonglong] = ACTIONS(5224), + [anon_sym_c_float] = ACTIONS(5224), + [anon_sym_c_double] = ACTIONS(5224), + [anon_sym_c_longdouble] = ACTIONS(5224), + [anon_sym_return] = ACTIONS(5224), + [anon_sym_yield] = ACTIONS(5224), + [anon_sym_break] = ACTIONS(5224), + [anon_sym_continue] = ACTIONS(5224), + [anon_sym_defer] = ACTIONS(5224), + [anon_sym_errdefer] = ACTIONS(5224), + [anon_sym_if] = ACTIONS(5224), + [anon_sym_else] = ACTIONS(5224), + [anon_sym_while] = ACTIONS(5224), + [anon_sym_expand] = ACTIONS(5224), + [anon_sym_for] = ACTIONS(5224), + [anon_sym_match] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_TILDE] = ACTIONS(5222), + [anon_sym_try] = ACTIONS(5224), + [anon_sym_DOT] = ACTIONS(5222), + [anon_sym_true] = ACTIONS(5224), + [anon_sym_false] = ACTIONS(5224), + [anon_sym_null] = ACTIONS(5224), + [anon_sym_unreachable] = ACTIONS(5224), + [anon_sym_undefined] = ACTIONS(5224), + [sym_sink] = ACTIONS(5224), + [sym_integer] = ACTIONS(5224), + [sym_float] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(5222), + [sym_multiline_string] = ACTIONS(5222), + [sym_character] = ACTIONS(5222), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5222), + }, + [STATE(6857)] = { + [ts_builtin_sym_end] = ACTIONS(5128), + [sym_identifier] = ACTIONS(5130), + [anon_sym_import] = ACTIONS(5130), + [anon_sym_test] = ACTIONS(5130), + [anon_sym_hide] = ACTIONS(5130), + [anon_sym_func] = ACTIONS(5130), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_RPAREN] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_void] = ACTIONS(5130), + [anon_sym_noreturn] = ACTIONS(5130), + [anon_sym_type] = ACTIONS(5130), + [anon_sym_anyopaque] = ACTIONS(5130), + [anon_sym_bool] = ACTIONS(5130), + [anon_sym_int] = ACTIONS(5130), + [anon_sym_uint] = ACTIONS(5130), + [anon_sym_float] = ACTIONS(5130), + [anon_sym_range] = ACTIONS(5130), + [anon_sym_i8] = ACTIONS(5130), + [anon_sym_i16] = ACTIONS(5130), + [anon_sym_i32] = ACTIONS(5130), + [anon_sym_i64] = ACTIONS(5130), + [anon_sym_u8] = ACTIONS(5130), + [anon_sym_u16] = ACTIONS(5130), + [anon_sym_u32] = ACTIONS(5130), + [anon_sym_u64] = ACTIONS(5130), + [anon_sym_isize] = ACTIONS(5130), + [anon_sym_usize] = ACTIONS(5130), + [anon_sym_f32] = ACTIONS(5130), + [anon_sym_f64] = ACTIONS(5130), + [anon_sym_c_char] = ACTIONS(5130), + [anon_sym_c_schar] = ACTIONS(5130), + [anon_sym_c_uchar] = ACTIONS(5130), + [anon_sym_c_short] = ACTIONS(5130), + [anon_sym_c_ushort] = ACTIONS(5130), + [anon_sym_c_int] = ACTIONS(5130), + [anon_sym_c_uint] = ACTIONS(5130), + [anon_sym_c_long] = ACTIONS(5130), + [anon_sym_c_ulong] = ACTIONS(5130), + [anon_sym_c_longlong] = ACTIONS(5130), + [anon_sym_c_ulonglong] = ACTIONS(5130), + [anon_sym_c_float] = ACTIONS(5130), + [anon_sym_c_double] = ACTIONS(5130), + [anon_sym_c_longdouble] = ACTIONS(5130), + [anon_sym_return] = ACTIONS(5130), + [anon_sym_yield] = ACTIONS(5130), + [anon_sym_break] = ACTIONS(5130), + [anon_sym_continue] = ACTIONS(5130), + [anon_sym_defer] = ACTIONS(5130), + [anon_sym_errdefer] = ACTIONS(5130), + [anon_sym_if] = ACTIONS(5130), + [anon_sym_else] = ACTIONS(5130), + [anon_sym_while] = ACTIONS(5130), + [anon_sym_expand] = ACTIONS(5130), + [anon_sym_for] = ACTIONS(5130), + [anon_sym_match] = ACTIONS(5130), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_TILDE] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5130), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_true] = ACTIONS(5130), + [anon_sym_false] = ACTIONS(5130), + [anon_sym_null] = ACTIONS(5130), + [anon_sym_unreachable] = ACTIONS(5130), + [anon_sym_undefined] = ACTIONS(5130), + [sym_sink] = ACTIONS(5130), + [sym_integer] = ACTIONS(5130), + [sym_float] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [sym_multiline_string] = ACTIONS(5128), + [sym_character] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5128), + }, + [STATE(6858)] = { + [ts_builtin_sym_end] = ACTIONS(5266), + [sym_identifier] = ACTIONS(5268), + [anon_sym_import] = ACTIONS(5268), + [anon_sym_test] = ACTIONS(5268), + [anon_sym_hide] = ACTIONS(5268), + [anon_sym_func] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5266), + [anon_sym_struct] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_void] = ACTIONS(5268), + [anon_sym_noreturn] = ACTIONS(5268), + [anon_sym_type] = ACTIONS(5268), + [anon_sym_anyopaque] = ACTIONS(5268), + [anon_sym_bool] = ACTIONS(5268), + [anon_sym_int] = ACTIONS(5268), + [anon_sym_uint] = ACTIONS(5268), + [anon_sym_float] = ACTIONS(5268), + [anon_sym_range] = ACTIONS(5268), + [anon_sym_i8] = ACTIONS(5268), + [anon_sym_i16] = ACTIONS(5268), + [anon_sym_i32] = ACTIONS(5268), + [anon_sym_i64] = ACTIONS(5268), + [anon_sym_u8] = ACTIONS(5268), + [anon_sym_u16] = ACTIONS(5268), + [anon_sym_u32] = ACTIONS(5268), + [anon_sym_u64] = ACTIONS(5268), + [anon_sym_isize] = ACTIONS(5268), + [anon_sym_usize] = ACTIONS(5268), + [anon_sym_f32] = ACTIONS(5268), + [anon_sym_f64] = ACTIONS(5268), + [anon_sym_c_char] = ACTIONS(5268), + [anon_sym_c_schar] = ACTIONS(5268), + [anon_sym_c_uchar] = ACTIONS(5268), + [anon_sym_c_short] = ACTIONS(5268), + [anon_sym_c_ushort] = ACTIONS(5268), + [anon_sym_c_int] = ACTIONS(5268), + [anon_sym_c_uint] = ACTIONS(5268), + [anon_sym_c_long] = ACTIONS(5268), + [anon_sym_c_ulong] = ACTIONS(5268), + [anon_sym_c_longlong] = ACTIONS(5268), + [anon_sym_c_ulonglong] = ACTIONS(5268), + [anon_sym_c_float] = ACTIONS(5268), + [anon_sym_c_double] = ACTIONS(5268), + [anon_sym_c_longdouble] = ACTIONS(5268), + [anon_sym_return] = ACTIONS(5268), + [anon_sym_yield] = ACTIONS(5268), + [anon_sym_break] = ACTIONS(5268), + [anon_sym_continue] = ACTIONS(5268), + [anon_sym_defer] = ACTIONS(5268), + [anon_sym_errdefer] = ACTIONS(5268), + [anon_sym_if] = ACTIONS(5268), + [anon_sym_else] = ACTIONS(5268), + [anon_sym_while] = ACTIONS(5268), + [anon_sym_expand] = ACTIONS(5268), + [anon_sym_for] = ACTIONS(5268), + [anon_sym_match] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_TILDE] = ACTIONS(5266), + [anon_sym_try] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5266), + [anon_sym_true] = ACTIONS(5268), + [anon_sym_false] = ACTIONS(5268), + [anon_sym_null] = ACTIONS(5268), + [anon_sym_unreachable] = ACTIONS(5268), + [anon_sym_undefined] = ACTIONS(5268), + [sym_sink] = ACTIONS(5268), + [sym_integer] = ACTIONS(5268), + [sym_float] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5266), + [sym_multiline_string] = ACTIONS(5266), + [sym_character] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5266), + }, + [STATE(6859)] = { + [ts_builtin_sym_end] = ACTIONS(5006), + [sym_identifier] = ACTIONS(5008), + [anon_sym_import] = ACTIONS(5008), + [anon_sym_test] = ACTIONS(5008), + [anon_sym_hide] = ACTIONS(5008), + [anon_sym_func] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5006), + [anon_sym_struct] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_RBRACE] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_void] = ACTIONS(5008), + [anon_sym_noreturn] = ACTIONS(5008), + [anon_sym_type] = ACTIONS(5008), + [anon_sym_anyopaque] = ACTIONS(5008), + [anon_sym_bool] = ACTIONS(5008), + [anon_sym_int] = ACTIONS(5008), + [anon_sym_uint] = ACTIONS(5008), + [anon_sym_float] = ACTIONS(5008), + [anon_sym_range] = ACTIONS(5008), + [anon_sym_i8] = ACTIONS(5008), + [anon_sym_i16] = ACTIONS(5008), + [anon_sym_i32] = ACTIONS(5008), + [anon_sym_i64] = ACTIONS(5008), + [anon_sym_u8] = ACTIONS(5008), + [anon_sym_u16] = ACTIONS(5008), + [anon_sym_u32] = ACTIONS(5008), + [anon_sym_u64] = ACTIONS(5008), + [anon_sym_isize] = ACTIONS(5008), + [anon_sym_usize] = ACTIONS(5008), + [anon_sym_f32] = ACTIONS(5008), + [anon_sym_f64] = ACTIONS(5008), + [anon_sym_c_char] = ACTIONS(5008), + [anon_sym_c_schar] = ACTIONS(5008), + [anon_sym_c_uchar] = ACTIONS(5008), + [anon_sym_c_short] = ACTIONS(5008), + [anon_sym_c_ushort] = ACTIONS(5008), + [anon_sym_c_int] = ACTIONS(5008), + [anon_sym_c_uint] = ACTIONS(5008), + [anon_sym_c_long] = ACTIONS(5008), + [anon_sym_c_ulong] = ACTIONS(5008), + [anon_sym_c_longlong] = ACTIONS(5008), + [anon_sym_c_ulonglong] = ACTIONS(5008), + [anon_sym_c_float] = ACTIONS(5008), + [anon_sym_c_double] = ACTIONS(5008), + [anon_sym_c_longdouble] = ACTIONS(5008), + [anon_sym_return] = ACTIONS(5008), + [anon_sym_yield] = ACTIONS(5008), + [anon_sym_break] = ACTIONS(5008), + [anon_sym_continue] = ACTIONS(5008), + [anon_sym_defer] = ACTIONS(5008), + [anon_sym_errdefer] = ACTIONS(5008), + [anon_sym_if] = ACTIONS(5008), + [anon_sym_else] = ACTIONS(5008), + [anon_sym_while] = ACTIONS(5008), + [anon_sym_expand] = ACTIONS(5008), + [anon_sym_for] = ACTIONS(5008), + [anon_sym_match] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_TILDE] = ACTIONS(5006), + [anon_sym_try] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_true] = ACTIONS(5008), + [anon_sym_false] = ACTIONS(5008), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_unreachable] = ACTIONS(5008), + [anon_sym_undefined] = ACTIONS(5008), + [sym_sink] = ACTIONS(5008), + [sym_integer] = ACTIONS(5008), + [sym_float] = ACTIONS(5006), + [anon_sym_DQUOTE] = ACTIONS(5006), + [sym_multiline_string] = ACTIONS(5006), + [sym_character] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5006), + }, + [STATE(6860)] = { + [ts_builtin_sym_end] = ACTIONS(4580), + [sym_identifier] = ACTIONS(4582), + [anon_sym_import] = ACTIONS(4582), + [anon_sym_test] = ACTIONS(4582), + [anon_sym_hide] = ACTIONS(4582), + [anon_sym_func] = ACTIONS(4582), + [anon_sym_BANG] = ACTIONS(4580), + [anon_sym_struct] = ACTIONS(4582), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_RPAREN] = ACTIONS(4580), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_DASH] = ACTIONS(4580), + [anon_sym_DOLLAR] = ACTIONS(4580), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_void] = ACTIONS(4582), + [anon_sym_noreturn] = ACTIONS(4582), + [anon_sym_type] = ACTIONS(4582), + [anon_sym_anyopaque] = ACTIONS(4582), + [anon_sym_bool] = ACTIONS(4582), + [anon_sym_int] = ACTIONS(4582), + [anon_sym_uint] = ACTIONS(4582), + [anon_sym_float] = ACTIONS(4582), + [anon_sym_range] = ACTIONS(4582), + [anon_sym_i8] = ACTIONS(4582), + [anon_sym_i16] = ACTIONS(4582), + [anon_sym_i32] = ACTIONS(4582), + [anon_sym_i64] = ACTIONS(4582), + [anon_sym_u8] = ACTIONS(4582), + [anon_sym_u16] = ACTIONS(4582), + [anon_sym_u32] = ACTIONS(4582), + [anon_sym_u64] = ACTIONS(4582), + [anon_sym_isize] = ACTIONS(4582), + [anon_sym_usize] = ACTIONS(4582), + [anon_sym_f32] = ACTIONS(4582), + [anon_sym_f64] = ACTIONS(4582), + [anon_sym_c_char] = ACTIONS(4582), + [anon_sym_c_schar] = ACTIONS(4582), + [anon_sym_c_uchar] = ACTIONS(4582), + [anon_sym_c_short] = ACTIONS(4582), + [anon_sym_c_ushort] = ACTIONS(4582), + [anon_sym_c_int] = ACTIONS(4582), + [anon_sym_c_uint] = ACTIONS(4582), + [anon_sym_c_long] = ACTIONS(4582), + [anon_sym_c_ulong] = ACTIONS(4582), + [anon_sym_c_longlong] = ACTIONS(4582), + [anon_sym_c_ulonglong] = ACTIONS(4582), + [anon_sym_c_float] = ACTIONS(4582), + [anon_sym_c_double] = ACTIONS(4582), + [anon_sym_c_longdouble] = ACTIONS(4582), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_yield] = ACTIONS(4582), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_defer] = ACTIONS(4582), + [anon_sym_errdefer] = ACTIONS(4582), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_while] = ACTIONS(4582), + [anon_sym_expand] = ACTIONS(4582), + [anon_sym_for] = ACTIONS(4582), + [anon_sym_match] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4580), + [anon_sym_TILDE] = ACTIONS(4580), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_DOT] = ACTIONS(4580), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_null] = ACTIONS(4582), + [anon_sym_unreachable] = ACTIONS(4582), + [anon_sym_undefined] = ACTIONS(4582), + [sym_sink] = ACTIONS(4582), + [sym_integer] = ACTIONS(4582), + [sym_float] = ACTIONS(4580), + [anon_sym_DQUOTE] = ACTIONS(4580), + [sym_multiline_string] = ACTIONS(4580), + [sym_character] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4580), + }, + [STATE(6861)] = { + [ts_builtin_sym_end] = ACTIONS(5262), + [sym_identifier] = ACTIONS(5264), + [anon_sym_import] = ACTIONS(5264), + [anon_sym_test] = ACTIONS(5264), + [anon_sym_hide] = ACTIONS(5264), + [anon_sym_func] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5262), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_RBRACE] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_void] = ACTIONS(5264), + [anon_sym_noreturn] = ACTIONS(5264), + [anon_sym_type] = ACTIONS(5264), + [anon_sym_anyopaque] = ACTIONS(5264), + [anon_sym_bool] = ACTIONS(5264), + [anon_sym_int] = ACTIONS(5264), + [anon_sym_uint] = ACTIONS(5264), + [anon_sym_float] = ACTIONS(5264), + [anon_sym_range] = ACTIONS(5264), + [anon_sym_i8] = ACTIONS(5264), + [anon_sym_i16] = ACTIONS(5264), + [anon_sym_i32] = ACTIONS(5264), + [anon_sym_i64] = ACTIONS(5264), + [anon_sym_u8] = ACTIONS(5264), + [anon_sym_u16] = ACTIONS(5264), + [anon_sym_u32] = ACTIONS(5264), + [anon_sym_u64] = ACTIONS(5264), + [anon_sym_isize] = ACTIONS(5264), + [anon_sym_usize] = ACTIONS(5264), + [anon_sym_f32] = ACTIONS(5264), + [anon_sym_f64] = ACTIONS(5264), + [anon_sym_c_char] = ACTIONS(5264), + [anon_sym_c_schar] = ACTIONS(5264), + [anon_sym_c_uchar] = ACTIONS(5264), + [anon_sym_c_short] = ACTIONS(5264), + [anon_sym_c_ushort] = ACTIONS(5264), + [anon_sym_c_int] = ACTIONS(5264), + [anon_sym_c_uint] = ACTIONS(5264), + [anon_sym_c_long] = ACTIONS(5264), + [anon_sym_c_ulong] = ACTIONS(5264), + [anon_sym_c_longlong] = ACTIONS(5264), + [anon_sym_c_ulonglong] = ACTIONS(5264), + [anon_sym_c_float] = ACTIONS(5264), + [anon_sym_c_double] = ACTIONS(5264), + [anon_sym_c_longdouble] = ACTIONS(5264), + [anon_sym_return] = ACTIONS(5264), + [anon_sym_yield] = ACTIONS(5264), + [anon_sym_break] = ACTIONS(5264), + [anon_sym_continue] = ACTIONS(5264), + [anon_sym_defer] = ACTIONS(5264), + [anon_sym_errdefer] = ACTIONS(5264), + [anon_sym_if] = ACTIONS(5264), + [anon_sym_else] = ACTIONS(5264), + [anon_sym_while] = ACTIONS(5264), + [anon_sym_expand] = ACTIONS(5264), + [anon_sym_for] = ACTIONS(5264), + [anon_sym_match] = ACTIONS(5264), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_TILDE] = ACTIONS(5262), + [anon_sym_try] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_true] = ACTIONS(5264), + [anon_sym_false] = ACTIONS(5264), + [anon_sym_null] = ACTIONS(5264), + [anon_sym_unreachable] = ACTIONS(5264), + [anon_sym_undefined] = ACTIONS(5264), + [sym_sink] = ACTIONS(5264), + [sym_integer] = ACTIONS(5264), + [sym_float] = ACTIONS(5262), + [anon_sym_DQUOTE] = ACTIONS(5262), + [sym_multiline_string] = ACTIONS(5262), + [sym_character] = ACTIONS(5262), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5262), + }, + [STATE(6862)] = { + [ts_builtin_sym_end] = ACTIONS(5442), + [sym_identifier] = ACTIONS(5444), + [anon_sym_import] = ACTIONS(5444), + [anon_sym_test] = ACTIONS(5444), + [anon_sym_hide] = ACTIONS(5444), + [anon_sym_func] = ACTIONS(5444), + [anon_sym_BANG] = ACTIONS(5442), + [anon_sym_struct] = ACTIONS(5444), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_RPAREN] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5442), + [anon_sym_RBRACE] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5442), + [anon_sym_DOLLAR] = ACTIONS(5442), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_void] = ACTIONS(5444), + [anon_sym_noreturn] = ACTIONS(5444), + [anon_sym_type] = ACTIONS(5444), + [anon_sym_anyopaque] = ACTIONS(5444), + [anon_sym_bool] = ACTIONS(5444), + [anon_sym_int] = ACTIONS(5444), + [anon_sym_uint] = ACTIONS(5444), + [anon_sym_float] = ACTIONS(5444), + [anon_sym_range] = ACTIONS(5444), + [anon_sym_i8] = ACTIONS(5444), + [anon_sym_i16] = ACTIONS(5444), + [anon_sym_i32] = ACTIONS(5444), + [anon_sym_i64] = ACTIONS(5444), + [anon_sym_u8] = ACTIONS(5444), + [anon_sym_u16] = ACTIONS(5444), + [anon_sym_u32] = ACTIONS(5444), + [anon_sym_u64] = ACTIONS(5444), + [anon_sym_isize] = ACTIONS(5444), + [anon_sym_usize] = ACTIONS(5444), + [anon_sym_f32] = ACTIONS(5444), + [anon_sym_f64] = ACTIONS(5444), + [anon_sym_c_char] = ACTIONS(5444), + [anon_sym_c_schar] = ACTIONS(5444), + [anon_sym_c_uchar] = ACTIONS(5444), + [anon_sym_c_short] = ACTIONS(5444), + [anon_sym_c_ushort] = ACTIONS(5444), + [anon_sym_c_int] = ACTIONS(5444), + [anon_sym_c_uint] = ACTIONS(5444), + [anon_sym_c_long] = ACTIONS(5444), + [anon_sym_c_ulong] = ACTIONS(5444), + [anon_sym_c_longlong] = ACTIONS(5444), + [anon_sym_c_ulonglong] = ACTIONS(5444), + [anon_sym_c_float] = ACTIONS(5444), + [anon_sym_c_double] = ACTIONS(5444), + [anon_sym_c_longdouble] = ACTIONS(5444), + [anon_sym_return] = ACTIONS(5444), + [anon_sym_yield] = ACTIONS(5444), + [anon_sym_break] = ACTIONS(5444), + [anon_sym_continue] = ACTIONS(5444), + [anon_sym_defer] = ACTIONS(5444), + [anon_sym_errdefer] = ACTIONS(5444), + [anon_sym_if] = ACTIONS(5444), + [anon_sym_else] = ACTIONS(5444), + [anon_sym_while] = ACTIONS(5444), + [anon_sym_expand] = ACTIONS(5444), + [anon_sym_for] = ACTIONS(5444), + [anon_sym_match] = ACTIONS(5444), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_TILDE] = ACTIONS(5442), + [anon_sym_try] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5442), + [anon_sym_true] = ACTIONS(5444), + [anon_sym_false] = ACTIONS(5444), + [anon_sym_null] = ACTIONS(5444), + [anon_sym_unreachable] = ACTIONS(5444), + [anon_sym_undefined] = ACTIONS(5444), + [sym_sink] = ACTIONS(5444), + [sym_integer] = ACTIONS(5444), + [sym_float] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [sym_multiline_string] = ACTIONS(5442), + [sym_character] = ACTIONS(5442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5442), + }, + [STATE(6863)] = { + [ts_builtin_sym_end] = ACTIONS(5270), + [sym_identifier] = ACTIONS(5272), + [anon_sym_import] = ACTIONS(5272), + [anon_sym_test] = ACTIONS(5272), + [anon_sym_hide] = ACTIONS(5272), + [anon_sym_func] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5270), + [anon_sym_struct] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_DASH] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_void] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym_type] = ACTIONS(5272), + [anon_sym_anyopaque] = ACTIONS(5272), + [anon_sym_bool] = ACTIONS(5272), + [anon_sym_int] = ACTIONS(5272), + [anon_sym_uint] = ACTIONS(5272), + [anon_sym_float] = ACTIONS(5272), + [anon_sym_range] = ACTIONS(5272), + [anon_sym_i8] = ACTIONS(5272), + [anon_sym_i16] = ACTIONS(5272), + [anon_sym_i32] = ACTIONS(5272), + [anon_sym_i64] = ACTIONS(5272), + [anon_sym_u8] = ACTIONS(5272), + [anon_sym_u16] = ACTIONS(5272), + [anon_sym_u32] = ACTIONS(5272), + [anon_sym_u64] = ACTIONS(5272), + [anon_sym_isize] = ACTIONS(5272), + [anon_sym_usize] = ACTIONS(5272), + [anon_sym_f32] = ACTIONS(5272), + [anon_sym_f64] = ACTIONS(5272), + [anon_sym_c_char] = ACTIONS(5272), + [anon_sym_c_schar] = ACTIONS(5272), + [anon_sym_c_uchar] = ACTIONS(5272), + [anon_sym_c_short] = ACTIONS(5272), + [anon_sym_c_ushort] = ACTIONS(5272), + [anon_sym_c_int] = ACTIONS(5272), + [anon_sym_c_uint] = ACTIONS(5272), + [anon_sym_c_long] = ACTIONS(5272), + [anon_sym_c_ulong] = ACTIONS(5272), + [anon_sym_c_longlong] = ACTIONS(5272), + [anon_sym_c_ulonglong] = ACTIONS(5272), + [anon_sym_c_float] = ACTIONS(5272), + [anon_sym_c_double] = ACTIONS(5272), + [anon_sym_c_longdouble] = ACTIONS(5272), + [anon_sym_return] = ACTIONS(5272), + [anon_sym_yield] = ACTIONS(5272), + [anon_sym_break] = ACTIONS(5272), + [anon_sym_continue] = ACTIONS(5272), + [anon_sym_defer] = ACTIONS(5272), + [anon_sym_errdefer] = ACTIONS(5272), + [anon_sym_if] = ACTIONS(5272), + [anon_sym_else] = ACTIONS(5272), + [anon_sym_while] = ACTIONS(5272), + [anon_sym_expand] = ACTIONS(5272), + [anon_sym_for] = ACTIONS(5272), + [anon_sym_match] = ACTIONS(5272), + [anon_sym_AMP] = ACTIONS(5270), + [anon_sym_TILDE] = ACTIONS(5270), + [anon_sym_try] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5270), + [anon_sym_true] = ACTIONS(5272), + [anon_sym_false] = ACTIONS(5272), + [anon_sym_null] = ACTIONS(5272), + [anon_sym_unreachable] = ACTIONS(5272), + [anon_sym_undefined] = ACTIONS(5272), + [sym_sink] = ACTIONS(5272), + [sym_integer] = ACTIONS(5272), + [sym_float] = ACTIONS(5270), + [anon_sym_DQUOTE] = ACTIONS(5270), + [sym_multiline_string] = ACTIONS(5270), + [sym_character] = ACTIONS(5270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5270), + }, + [STATE(6864)] = { + [ts_builtin_sym_end] = ACTIONS(4820), + [sym_identifier] = ACTIONS(4822), + [anon_sym_import] = ACTIONS(4822), + [anon_sym_test] = ACTIONS(4822), + [anon_sym_hide] = ACTIONS(4822), + [anon_sym_func] = ACTIONS(4822), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_struct] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4820), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_void] = ACTIONS(4822), + [anon_sym_noreturn] = ACTIONS(4822), + [anon_sym_type] = ACTIONS(4822), + [anon_sym_anyopaque] = ACTIONS(4822), + [anon_sym_bool] = ACTIONS(4822), + [anon_sym_int] = ACTIONS(4822), + [anon_sym_uint] = ACTIONS(4822), + [anon_sym_float] = ACTIONS(4822), + [anon_sym_range] = ACTIONS(4822), + [anon_sym_i8] = ACTIONS(4822), + [anon_sym_i16] = ACTIONS(4822), + [anon_sym_i32] = ACTIONS(4822), + [anon_sym_i64] = ACTIONS(4822), + [anon_sym_u8] = ACTIONS(4822), + [anon_sym_u16] = ACTIONS(4822), + [anon_sym_u32] = ACTIONS(4822), + [anon_sym_u64] = ACTIONS(4822), + [anon_sym_isize] = ACTIONS(4822), + [anon_sym_usize] = ACTIONS(4822), + [anon_sym_f32] = ACTIONS(4822), + [anon_sym_f64] = ACTIONS(4822), + [anon_sym_c_char] = ACTIONS(4822), + [anon_sym_c_schar] = ACTIONS(4822), + [anon_sym_c_uchar] = ACTIONS(4822), + [anon_sym_c_short] = ACTIONS(4822), + [anon_sym_c_ushort] = ACTIONS(4822), + [anon_sym_c_int] = ACTIONS(4822), + [anon_sym_c_uint] = ACTIONS(4822), + [anon_sym_c_long] = ACTIONS(4822), + [anon_sym_c_ulong] = ACTIONS(4822), + [anon_sym_c_longlong] = ACTIONS(4822), + [anon_sym_c_ulonglong] = ACTIONS(4822), + [anon_sym_c_float] = ACTIONS(4822), + [anon_sym_c_double] = ACTIONS(4822), + [anon_sym_c_longdouble] = ACTIONS(4822), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_yield] = ACTIONS(4822), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_defer] = ACTIONS(4822), + [anon_sym_errdefer] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_while] = ACTIONS(4822), + [anon_sym_expand] = ACTIONS(4822), + [anon_sym_for] = ACTIONS(4822), + [anon_sym_match] = ACTIONS(4822), + [anon_sym_AMP] = ACTIONS(4820), + [anon_sym_TILDE] = ACTIONS(4820), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_unreachable] = ACTIONS(4822), + [anon_sym_undefined] = ACTIONS(4822), + [sym_sink] = ACTIONS(4822), + [sym_integer] = ACTIONS(4822), + [sym_float] = ACTIONS(4820), + [anon_sym_DQUOTE] = ACTIONS(4820), + [sym_multiline_string] = ACTIONS(4820), + [sym_character] = ACTIONS(4820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4820), + }, + [STATE(6865)] = { + [ts_builtin_sym_end] = ACTIONS(5274), + [sym_identifier] = ACTIONS(5276), + [anon_sym_import] = ACTIONS(5276), + [anon_sym_test] = ACTIONS(5276), + [anon_sym_hide] = ACTIONS(5276), + [anon_sym_func] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5274), + [anon_sym_struct] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_void] = ACTIONS(5276), + [anon_sym_noreturn] = ACTIONS(5276), + [anon_sym_type] = ACTIONS(5276), + [anon_sym_anyopaque] = ACTIONS(5276), + [anon_sym_bool] = ACTIONS(5276), + [anon_sym_int] = ACTIONS(5276), + [anon_sym_uint] = ACTIONS(5276), + [anon_sym_float] = ACTIONS(5276), + [anon_sym_range] = ACTIONS(5276), + [anon_sym_i8] = ACTIONS(5276), + [anon_sym_i16] = ACTIONS(5276), + [anon_sym_i32] = ACTIONS(5276), + [anon_sym_i64] = ACTIONS(5276), + [anon_sym_u8] = ACTIONS(5276), + [anon_sym_u16] = ACTIONS(5276), + [anon_sym_u32] = ACTIONS(5276), + [anon_sym_u64] = ACTIONS(5276), + [anon_sym_isize] = ACTIONS(5276), + [anon_sym_usize] = ACTIONS(5276), + [anon_sym_f32] = ACTIONS(5276), + [anon_sym_f64] = ACTIONS(5276), + [anon_sym_c_char] = ACTIONS(5276), + [anon_sym_c_schar] = ACTIONS(5276), + [anon_sym_c_uchar] = ACTIONS(5276), + [anon_sym_c_short] = ACTIONS(5276), + [anon_sym_c_ushort] = ACTIONS(5276), + [anon_sym_c_int] = ACTIONS(5276), + [anon_sym_c_uint] = ACTIONS(5276), + [anon_sym_c_long] = ACTIONS(5276), + [anon_sym_c_ulong] = ACTIONS(5276), + [anon_sym_c_longlong] = ACTIONS(5276), + [anon_sym_c_ulonglong] = ACTIONS(5276), + [anon_sym_c_float] = ACTIONS(5276), + [anon_sym_c_double] = ACTIONS(5276), + [anon_sym_c_longdouble] = ACTIONS(5276), + [anon_sym_return] = ACTIONS(5276), + [anon_sym_yield] = ACTIONS(5276), + [anon_sym_break] = ACTIONS(5276), + [anon_sym_continue] = ACTIONS(5276), + [anon_sym_defer] = ACTIONS(5276), + [anon_sym_errdefer] = ACTIONS(5276), + [anon_sym_if] = ACTIONS(5276), + [anon_sym_else] = ACTIONS(5276), + [anon_sym_while] = ACTIONS(5276), + [anon_sym_expand] = ACTIONS(5276), + [anon_sym_for] = ACTIONS(5276), + [anon_sym_match] = ACTIONS(5276), + [anon_sym_AMP] = ACTIONS(5274), + [anon_sym_TILDE] = ACTIONS(5274), + [anon_sym_try] = ACTIONS(5276), + [anon_sym_DOT] = ACTIONS(5274), + [anon_sym_true] = ACTIONS(5276), + [anon_sym_false] = ACTIONS(5276), + [anon_sym_null] = ACTIONS(5276), + [anon_sym_unreachable] = ACTIONS(5276), + [anon_sym_undefined] = ACTIONS(5276), + [sym_sink] = ACTIONS(5276), + [sym_integer] = ACTIONS(5276), + [sym_float] = ACTIONS(5274), + [anon_sym_DQUOTE] = ACTIONS(5274), + [sym_multiline_string] = ACTIONS(5274), + [sym_character] = ACTIONS(5274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5274), + }, + [STATE(6866)] = { + [ts_builtin_sym_end] = ACTIONS(5132), + [sym_identifier] = ACTIONS(5134), + [anon_sym_import] = ACTIONS(5134), + [anon_sym_test] = ACTIONS(5134), + [anon_sym_hide] = ACTIONS(5134), + [anon_sym_func] = ACTIONS(5134), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_struct] = ACTIONS(5134), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_RPAREN] = ACTIONS(5132), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_RBRACE] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_void] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym_type] = ACTIONS(5134), + [anon_sym_anyopaque] = ACTIONS(5134), + [anon_sym_bool] = ACTIONS(5134), + [anon_sym_int] = ACTIONS(5134), + [anon_sym_uint] = ACTIONS(5134), + [anon_sym_float] = ACTIONS(5134), + [anon_sym_range] = ACTIONS(5134), + [anon_sym_i8] = ACTIONS(5134), + [anon_sym_i16] = ACTIONS(5134), + [anon_sym_i32] = ACTIONS(5134), + [anon_sym_i64] = ACTIONS(5134), + [anon_sym_u8] = ACTIONS(5134), + [anon_sym_u16] = ACTIONS(5134), + [anon_sym_u32] = ACTIONS(5134), + [anon_sym_u64] = ACTIONS(5134), + [anon_sym_isize] = ACTIONS(5134), + [anon_sym_usize] = ACTIONS(5134), + [anon_sym_f32] = ACTIONS(5134), + [anon_sym_f64] = ACTIONS(5134), + [anon_sym_c_char] = ACTIONS(5134), + [anon_sym_c_schar] = ACTIONS(5134), + [anon_sym_c_uchar] = ACTIONS(5134), + [anon_sym_c_short] = ACTIONS(5134), + [anon_sym_c_ushort] = ACTIONS(5134), + [anon_sym_c_int] = ACTIONS(5134), + [anon_sym_c_uint] = ACTIONS(5134), + [anon_sym_c_long] = ACTIONS(5134), + [anon_sym_c_ulong] = ACTIONS(5134), + [anon_sym_c_longlong] = ACTIONS(5134), + [anon_sym_c_ulonglong] = ACTIONS(5134), + [anon_sym_c_float] = ACTIONS(5134), + [anon_sym_c_double] = ACTIONS(5134), + [anon_sym_c_longdouble] = ACTIONS(5134), + [anon_sym_return] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_break] = ACTIONS(5134), + [anon_sym_continue] = ACTIONS(5134), + [anon_sym_defer] = ACTIONS(5134), + [anon_sym_errdefer] = ACTIONS(5134), + [anon_sym_if] = ACTIONS(5134), + [anon_sym_else] = ACTIONS(5134), + [anon_sym_while] = ACTIONS(5134), + [anon_sym_expand] = ACTIONS(5134), + [anon_sym_for] = ACTIONS(5134), + [anon_sym_match] = ACTIONS(5134), + [anon_sym_AMP] = ACTIONS(5132), + [anon_sym_TILDE] = ACTIONS(5132), + [anon_sym_try] = ACTIONS(5134), + [anon_sym_DOT] = ACTIONS(5132), + [anon_sym_true] = ACTIONS(5134), + [anon_sym_false] = ACTIONS(5134), + [anon_sym_null] = ACTIONS(5134), + [anon_sym_unreachable] = ACTIONS(5134), + [anon_sym_undefined] = ACTIONS(5134), + [sym_sink] = ACTIONS(5134), + [sym_integer] = ACTIONS(5134), + [sym_float] = ACTIONS(5132), + [anon_sym_DQUOTE] = ACTIONS(5132), + [sym_multiline_string] = ACTIONS(5132), + [sym_character] = ACTIONS(5132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5132), + }, + [STATE(6867)] = { + [ts_builtin_sym_end] = ACTIONS(5298), + [sym_identifier] = ACTIONS(5300), + [anon_sym_import] = ACTIONS(5300), + [anon_sym_test] = ACTIONS(5300), + [anon_sym_hide] = ACTIONS(5300), + [anon_sym_func] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5298), + [anon_sym_struct] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [anon_sym_RBRACE] = ACTIONS(5298), + [anon_sym_DASH] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_void] = ACTIONS(5300), + [anon_sym_noreturn] = ACTIONS(5300), + [anon_sym_type] = ACTIONS(5300), + [anon_sym_anyopaque] = ACTIONS(5300), + [anon_sym_bool] = ACTIONS(5300), + [anon_sym_int] = ACTIONS(5300), + [anon_sym_uint] = ACTIONS(5300), + [anon_sym_float] = ACTIONS(5300), + [anon_sym_range] = ACTIONS(5300), + [anon_sym_i8] = ACTIONS(5300), + [anon_sym_i16] = ACTIONS(5300), + [anon_sym_i32] = ACTIONS(5300), + [anon_sym_i64] = ACTIONS(5300), + [anon_sym_u8] = ACTIONS(5300), + [anon_sym_u16] = ACTIONS(5300), + [anon_sym_u32] = ACTIONS(5300), + [anon_sym_u64] = ACTIONS(5300), + [anon_sym_isize] = ACTIONS(5300), + [anon_sym_usize] = ACTIONS(5300), + [anon_sym_f32] = ACTIONS(5300), + [anon_sym_f64] = ACTIONS(5300), + [anon_sym_c_char] = ACTIONS(5300), + [anon_sym_c_schar] = ACTIONS(5300), + [anon_sym_c_uchar] = ACTIONS(5300), + [anon_sym_c_short] = ACTIONS(5300), + [anon_sym_c_ushort] = ACTIONS(5300), + [anon_sym_c_int] = ACTIONS(5300), + [anon_sym_c_uint] = ACTIONS(5300), + [anon_sym_c_long] = ACTIONS(5300), + [anon_sym_c_ulong] = ACTIONS(5300), + [anon_sym_c_longlong] = ACTIONS(5300), + [anon_sym_c_ulonglong] = ACTIONS(5300), + [anon_sym_c_float] = ACTIONS(5300), + [anon_sym_c_double] = ACTIONS(5300), + [anon_sym_c_longdouble] = ACTIONS(5300), + [anon_sym_return] = ACTIONS(5300), + [anon_sym_yield] = ACTIONS(5300), + [anon_sym_break] = ACTIONS(5300), + [anon_sym_continue] = ACTIONS(5300), + [anon_sym_defer] = ACTIONS(5300), + [anon_sym_errdefer] = ACTIONS(5300), + [anon_sym_if] = ACTIONS(5300), + [anon_sym_else] = ACTIONS(5300), + [anon_sym_while] = ACTIONS(5300), + [anon_sym_expand] = ACTIONS(5300), + [anon_sym_for] = ACTIONS(5300), + [anon_sym_match] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5298), + [anon_sym_TILDE] = ACTIONS(5298), + [anon_sym_try] = ACTIONS(5300), + [anon_sym_DOT] = ACTIONS(5298), + [anon_sym_true] = ACTIONS(5300), + [anon_sym_false] = ACTIONS(5300), + [anon_sym_null] = ACTIONS(5300), + [anon_sym_unreachable] = ACTIONS(5300), + [anon_sym_undefined] = ACTIONS(5300), + [sym_sink] = ACTIONS(5300), + [sym_integer] = ACTIONS(5300), + [sym_float] = ACTIONS(5298), + [anon_sym_DQUOTE] = ACTIONS(5298), + [sym_multiline_string] = ACTIONS(5298), + [sym_character] = ACTIONS(5298), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5298), + }, + [STATE(6868)] = { + [ts_builtin_sym_end] = ACTIONS(5530), + [sym_identifier] = ACTIONS(5532), + [anon_sym_import] = ACTIONS(5532), + [anon_sym_test] = ACTIONS(5532), + [anon_sym_hide] = ACTIONS(5532), + [anon_sym_func] = ACTIONS(5532), + [anon_sym_BANG] = ACTIONS(5530), + [anon_sym_struct] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_LBRACE] = ACTIONS(5530), + [anon_sym_RBRACE] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5530), + [anon_sym_DOLLAR] = ACTIONS(5530), + [anon_sym_LBRACK] = ACTIONS(5530), + [anon_sym_void] = ACTIONS(5532), + [anon_sym_noreturn] = ACTIONS(5532), + [anon_sym_type] = ACTIONS(5532), + [anon_sym_anyopaque] = ACTIONS(5532), + [anon_sym_bool] = ACTIONS(5532), + [anon_sym_int] = ACTIONS(5532), + [anon_sym_uint] = ACTIONS(5532), + [anon_sym_float] = ACTIONS(5532), + [anon_sym_range] = ACTIONS(5532), + [anon_sym_i8] = ACTIONS(5532), + [anon_sym_i16] = ACTIONS(5532), + [anon_sym_i32] = ACTIONS(5532), + [anon_sym_i64] = ACTIONS(5532), + [anon_sym_u8] = ACTIONS(5532), + [anon_sym_u16] = ACTIONS(5532), + [anon_sym_u32] = ACTIONS(5532), + [anon_sym_u64] = ACTIONS(5532), + [anon_sym_isize] = ACTIONS(5532), + [anon_sym_usize] = ACTIONS(5532), + [anon_sym_f32] = ACTIONS(5532), + [anon_sym_f64] = ACTIONS(5532), + [anon_sym_c_char] = ACTIONS(5532), + [anon_sym_c_schar] = ACTIONS(5532), + [anon_sym_c_uchar] = ACTIONS(5532), + [anon_sym_c_short] = ACTIONS(5532), + [anon_sym_c_ushort] = ACTIONS(5532), + [anon_sym_c_int] = ACTIONS(5532), + [anon_sym_c_uint] = ACTIONS(5532), + [anon_sym_c_long] = ACTIONS(5532), + [anon_sym_c_ulong] = ACTIONS(5532), + [anon_sym_c_longlong] = ACTIONS(5532), + [anon_sym_c_ulonglong] = ACTIONS(5532), + [anon_sym_c_float] = ACTIONS(5532), + [anon_sym_c_double] = ACTIONS(5532), + [anon_sym_c_longdouble] = ACTIONS(5532), + [anon_sym_return] = ACTIONS(5532), + [anon_sym_yield] = ACTIONS(5532), + [anon_sym_break] = ACTIONS(5532), + [anon_sym_continue] = ACTIONS(5532), + [anon_sym_defer] = ACTIONS(5532), + [anon_sym_errdefer] = ACTIONS(5532), + [anon_sym_if] = ACTIONS(5532), + [anon_sym_else] = ACTIONS(5532), + [anon_sym_while] = ACTIONS(5532), + [anon_sym_expand] = ACTIONS(5532), + [anon_sym_for] = ACTIONS(5532), + [anon_sym_match] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5530), + [anon_sym_TILDE] = ACTIONS(5530), + [anon_sym_try] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5530), + [anon_sym_true] = ACTIONS(5532), + [anon_sym_false] = ACTIONS(5532), + [anon_sym_null] = ACTIONS(5532), + [anon_sym_unreachable] = ACTIONS(5532), + [anon_sym_undefined] = ACTIONS(5532), + [sym_sink] = ACTIONS(5532), + [sym_integer] = ACTIONS(5532), + [sym_float] = ACTIONS(5530), + [anon_sym_DQUOTE] = ACTIONS(5530), + [sym_multiline_string] = ACTIONS(5530), + [sym_character] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5530), + }, + [STATE(6869)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6990), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10813), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10815), + }, + [STATE(6870)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10817), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6871)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6873), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10817), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10819), + }, + [STATE(6872)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6874), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10817), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10821), + }, + [STATE(6873)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10823), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6874)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10823), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6875)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6876), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10823), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10825), + }, + [STATE(6876)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10827), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6877)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10829), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6878)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10829), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6879)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6918), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10829), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10831), + }, + [STATE(6880)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10817), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6881)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10833), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6882)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6870), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10835), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10837), + }, + [STATE(6883)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6885), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10839), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10841), + }, + [STATE(6884)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10843), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6885)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10845), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6886)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6889), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10845), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10847), + }, + [STATE(6887)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6890), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10845), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10849), + }, + [STATE(6888)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6877), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10833), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10851), + }, + [STATE(6889)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10853), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6890)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10853), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6891)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10853), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10855), + }, + [STATE(6892)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6896), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10853), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10857), + }, + [STATE(6893)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6898), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10859), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10861), + }, + [STATE(6894)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10863), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6895)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10865), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6896)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10865), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6897)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6903), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10865), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10867), + }, + [STATE(6898)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10869), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6899)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6904), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10869), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10871), + }, + [STATE(6900)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6905), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10869), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10873), + }, + [STATE(6901)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10863), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6902)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7062), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10863), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10875), + }, + [STATE(6903)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10877), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6904)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10879), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6905)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10879), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6906)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6908), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10879), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10881), + }, + [STATE(6907)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6909), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10879), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10883), + }, + [STATE(6908)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10885), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6909)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10885), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6910)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6911), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10885), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10887), + }, + [STATE(6911)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10889), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6912)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7063), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10863), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10891), + }, + [STATE(6913)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6878), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10833), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10893), + }, + [STATE(6914)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6915), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10895), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10897), + }, + [STATE(6915)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10899), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6916)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6919), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10899), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10901), + }, + [STATE(6917)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6920), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10899), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10903), + }, + [STATE(6918)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10905), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6919)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10907), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6920)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10907), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6921)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6924), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10907), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10909), + }, + [STATE(6922)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6925), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10907), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10911), + }, + [STATE(6923)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6927), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10913), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10915), + }, + [STATE(6924)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10917), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6925)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10917), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6926)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6930), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10917), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10919), + }, + [STATE(6927)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10921), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6928)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6931), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10921), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10923), + }, + [STATE(6929)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6932), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10921), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10925), + }, + [STATE(6930)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10927), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6931)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10929), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6932)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10929), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6933)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6935), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10929), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10931), + }, + [STATE(6934)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6936), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10929), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10933), + }, + [STATE(6935)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10935), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6936)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10935), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6937)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6938), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10935), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10937), + }, + [STATE(6938)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10939), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6939)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6940), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10941), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10943), + }, + [STATE(6940)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10945), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6941)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6943), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10945), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10947), + }, + [STATE(6942)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6944), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10945), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10949), + }, + [STATE(6943)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10951), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6944)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10951), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6945)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6948), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10951), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10953), + }, + [STATE(6946)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6949), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10951), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10955), + }, + [STATE(6947)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6951), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10957), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10959), + }, + [STATE(6948)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10961), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6949)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10961), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6950)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6954), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10961), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10963), + }, + [STATE(6951)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10965), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6952)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6955), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10965), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10967), + }, + [STATE(6953)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6956), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10965), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10969), + }, + [STATE(6954)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10971), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6955)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10973), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6956)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10973), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6957)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6959), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10973), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10975), + }, + [STATE(6958)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6960), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10973), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10977), + }, + [STATE(6959)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10979), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6960)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10979), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6961)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6962), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10979), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10981), + }, + [STATE(6962)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10983), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6963)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6964), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10985), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10987), + }, + [STATE(6964)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10989), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6965)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6967), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10989), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10991), + }, + [STATE(6966)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6968), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10989), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10993), + }, + [STATE(6967)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10995), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6968)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10995), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6969)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6972), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10995), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10997), + }, + [STATE(6970)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6973), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10995), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10999), + }, + [STATE(6971)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6975), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11001), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11003), + }, + [STATE(6972)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11005), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6973)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11005), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6974)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6978), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11005), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11007), + }, + [STATE(6975)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11009), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6976)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6979), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11009), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11011), + }, + [STATE(6977)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6980), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11009), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11013), + }, + [STATE(6978)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11015), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6979)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11017), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6980)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11017), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6981)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6983), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11017), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11019), + }, + [STATE(6982)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6984), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11017), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11021), + }, + [STATE(6983)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11023), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6984)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11023), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6985)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6986), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11023), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11025), + }, + [STATE(6986)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11027), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6987)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6988), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11029), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11031), + }, + [STATE(6988)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10813), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6989)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6991), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10813), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11033), + }, + [STATE(6990)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11035), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6991)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11035), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6992)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6998), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11035), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11037), + }, + [STATE(6993)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6999), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11035), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11039), + }, + [STATE(6994)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11041), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6995)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7001), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11043), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11045), + }, + [STATE(6996)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6894), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11041), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11047), + }, + [STATE(6997)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11041), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11049), + }, + [STATE(6998)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11051), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(6999)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11051), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7000)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7004), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11051), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11053), + }, + [STATE(7001)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11055), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7002)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7005), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11055), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11057), + }, + [STATE(7003)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7006), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11055), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11059), + }, + [STATE(7004)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11061), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7005)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11063), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7006)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11063), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7007)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7009), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11063), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11065), + }, + [STATE(7008)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7010), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11063), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11067), + }, + [STATE(7009)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11069), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7010)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11069), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7011)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7012), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11069), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11071), + }, + [STATE(7012)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11073), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7013)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11075), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11077), + }, + [STATE(7014)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11079), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7015)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7017), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11079), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11081), + }, + [STATE(7016)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7018), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11079), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11083), + }, + [STATE(7017)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11085), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7018)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11085), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7019)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7022), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11085), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11087), + }, + [STATE(7020)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7023), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11085), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11089), + }, + [STATE(7021)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7025), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11091), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11093), + }, + [STATE(7022)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11095), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7023)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11095), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7024)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7028), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11095), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11097), + }, + [STATE(7025)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11099), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7026)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7029), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11099), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11101), + }, + [STATE(7027)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7030), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11099), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11103), + }, + [STATE(7028)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11105), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7029)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11107), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7030)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11107), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7031)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7033), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11107), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11109), + }, + [STATE(7032)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7034), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11107), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11111), + }, + [STATE(7033)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11113), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7034)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11113), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7035)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7036), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11113), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11115), + }, + [STATE(7036)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11117), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7037)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7038), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11119), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11121), + }, + [STATE(7038)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11123), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7039)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7041), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11123), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11125), + }, + [STATE(7040)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7042), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11123), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11127), + }, + [STATE(7041)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11129), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7042)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11129), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7043)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7046), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11129), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11131), + }, + [STATE(7044)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7047), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11129), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11133), + }, + [STATE(7045)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7049), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11135), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11137), + }, + [STATE(7046)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11139), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7047)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11139), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7048)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7052), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11139), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11141), + }, + [STATE(7049)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11143), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7050)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7053), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11143), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11145), + }, + [STATE(7051)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7054), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11143), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11147), + }, + [STATE(7052)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11149), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7053)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11151), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7054)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11151), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7055)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7057), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11151), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11153), + }, + [STATE(7056)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7058), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11151), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11155), + }, + [STATE(7057)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11157), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7058)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11157), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7059)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7060), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11157), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11159), + }, + [STATE(7060)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11161), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7061)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7066), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11163), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11165), + }, + [STATE(7062)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11167), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7063)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11167), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7064)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7069), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11167), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11169), + }, + [STATE(7065)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6994), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11171), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11173), + }, + [STATE(7066)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11175), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7067)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7084), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11175), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11177), + }, + [STATE(7068)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6881), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11175), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11179), + }, + [STATE(7069)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11181), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7070)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7071), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11183), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11185), + }, + [STATE(7071)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11187), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7072)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7074), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11187), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11189), + }, + [STATE(7073)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7075), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11187), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11191), + }, + [STATE(7074)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11193), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7075)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11193), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7076)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7079), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11193), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11195), + }, + [STATE(7077)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7080), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11193), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11197), + }, + [STATE(7078)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7082), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11199), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11201), + }, + [STATE(7079)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11203), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7080)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11203), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7081)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6884), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(11203), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11205), + }, + [STATE(7082)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10835), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7083)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(6880), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10835), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11207), + }, + [STATE(7084)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(10833), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7085)] = { + [sym_keyed_field_initializer] = STATE(14830), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7086)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(5302), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(7087)] = { + [sym_keyed_field_initializer] = STATE(14750), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11209), + }, + [STATE(7088)] = { + [sym_keyed_field_initializer] = STATE(14224), + [sym__field_name] = STATE(15178), + [aux_sym_import_declaration_repeat1] = STATE(7085), + [sym_identifier] = ACTIONS(10811), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_c_func] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_c_struct] = ACTIONS(1067), + [anon_sym_opaque] = ACTIONS(1067), + [anon_sym_distinct] = ACTIONS(1067), + [anon_sym_alias] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_mut] = ACTIONS(1067), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_noreturn] = ACTIONS(1067), + [anon_sym_type] = 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_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_orelse] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [anon_sym_null] = ACTIONS(1067), + [anon_sym_unreachable] = ACTIONS(1067), + [anon_sym_undefined] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11211), + }, + [STATE(7089)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_c_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(11213), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_struct_type_BANG] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(11215), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(7090)] = { + [sym_identifier] = ACTIONS(4496), + [anon_sym_func] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_DOLLAR] = ACTIONS(4494), + [anon_sym_LBRACK] = ACTIONS(4494), + [anon_sym_void] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_anyopaque] = ACTIONS(4496), + [anon_sym_bool] = ACTIONS(4496), + [anon_sym_int] = ACTIONS(4496), + [anon_sym_uint] = ACTIONS(4496), + [anon_sym_float] = ACTIONS(4496), + [anon_sym_range] = ACTIONS(4496), + [anon_sym_i8] = ACTIONS(4496), + [anon_sym_i16] = ACTIONS(4496), + [anon_sym_i32] = ACTIONS(4496), + [anon_sym_i64] = ACTIONS(4496), + [anon_sym_u8] = ACTIONS(4496), + [anon_sym_u16] = ACTIONS(4496), + [anon_sym_u32] = ACTIONS(4496), + [anon_sym_u64] = ACTIONS(4496), + [anon_sym_isize] = ACTIONS(4496), + [anon_sym_usize] = ACTIONS(4496), + [anon_sym_f32] = ACTIONS(4496), + [anon_sym_f64] = ACTIONS(4496), + [anon_sym_c_char] = ACTIONS(4496), + [anon_sym_c_schar] = ACTIONS(4496), + [anon_sym_c_uchar] = ACTIONS(4496), + [anon_sym_c_short] = ACTIONS(4496), + [anon_sym_c_ushort] = ACTIONS(4496), + [anon_sym_c_int] = ACTIONS(4496), + [anon_sym_c_uint] = ACTIONS(4496), + [anon_sym_c_long] = ACTIONS(4496), + [anon_sym_c_ulong] = ACTIONS(4496), + [anon_sym_c_longlong] = ACTIONS(4496), + [anon_sym_c_ulonglong] = ACTIONS(4496), + [anon_sym_c_float] = ACTIONS(4496), + [anon_sym_c_double] = ACTIONS(4496), + [anon_sym_c_longdouble] = ACTIONS(4496), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_yield] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(10807), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_defer] = ACTIONS(4496), + [anon_sym_errdefer] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_expand] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_match] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_true] = ACTIONS(4496), + [anon_sym_false] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4496), + [anon_sym_unreachable] = ACTIONS(4496), + [anon_sym_undefined] = ACTIONS(4496), + [sym_sink] = ACTIONS(4496), + [sym_integer] = ACTIONS(4496), + [sym_float] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_multiline_string] = ACTIONS(4494), + [sym_character] = ACTIONS(4494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4494), + }, + [STATE(7091)] = { + [sym_identifier] = ACTIONS(4490), + [anon_sym_func] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4488), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_void] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym_type] = ACTIONS(4490), + [anon_sym_anyopaque] = ACTIONS(4490), + [anon_sym_bool] = ACTIONS(4490), + [anon_sym_int] = ACTIONS(4490), + [anon_sym_uint] = ACTIONS(4490), + [anon_sym_float] = ACTIONS(4490), + [anon_sym_range] = ACTIONS(4490), + [anon_sym_i8] = ACTIONS(4490), + [anon_sym_i16] = ACTIONS(4490), + [anon_sym_i32] = ACTIONS(4490), + [anon_sym_i64] = ACTIONS(4490), + [anon_sym_u8] = ACTIONS(4490), + [anon_sym_u16] = ACTIONS(4490), + [anon_sym_u32] = ACTIONS(4490), + [anon_sym_u64] = ACTIONS(4490), + [anon_sym_isize] = ACTIONS(4490), + [anon_sym_usize] = ACTIONS(4490), + [anon_sym_f32] = ACTIONS(4490), + [anon_sym_f64] = ACTIONS(4490), + [anon_sym_c_char] = ACTIONS(4490), + [anon_sym_c_schar] = ACTIONS(4490), + [anon_sym_c_uchar] = ACTIONS(4490), + [anon_sym_c_short] = ACTIONS(4490), + [anon_sym_c_ushort] = ACTIONS(4490), + [anon_sym_c_int] = ACTIONS(4490), + [anon_sym_c_uint] = ACTIONS(4490), + [anon_sym_c_long] = ACTIONS(4490), + [anon_sym_c_ulong] = ACTIONS(4490), + [anon_sym_c_longlong] = ACTIONS(4490), + [anon_sym_c_ulonglong] = ACTIONS(4490), + [anon_sym_c_float] = ACTIONS(4490), + [anon_sym_c_double] = ACTIONS(4490), + [anon_sym_c_longdouble] = ACTIONS(4490), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_yield] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(10809), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_defer] = ACTIONS(4490), + [anon_sym_errdefer] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_while] = ACTIONS(4490), + [anon_sym_expand] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_TILDE] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4490), + [anon_sym_false] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4490), + [anon_sym_unreachable] = ACTIONS(4490), + [anon_sym_undefined] = ACTIONS(4490), + [sym_sink] = ACTIONS(4490), + [sym_integer] = ACTIONS(4490), + [sym_float] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4488), + [sym_multiline_string] = ACTIONS(4488), + [sym_character] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4488), + }, + [STATE(7092)] = { + [aux_sym_import_declaration_repeat1] = STATE(14213), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4392), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(11217), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11220), + }, + [STATE(7093)] = { + [aux_sym_import_declaration_repeat1] = STATE(14219), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4404), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(11223), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11226), + }, + [STATE(7094)] = { + [aux_sym_import_declaration_repeat1] = STATE(14118), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4392), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_errdefer] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(11229), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11231), + }, + [STATE(7095)] = { + [sym_argument_list] = STATE(7200), + [sym_identifier] = ACTIONS(2966), + [anon_sym_func] = ACTIONS(2966), + [anon_sym_c_func] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2964), + [anon_sym_struct_type_BANG] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_AT] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_noreturn] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_anyopaque] = ACTIONS(2966), + [anon_sym_bool] = ACTIONS(2966), + [anon_sym_int] = ACTIONS(2966), + [anon_sym_uint] = ACTIONS(2966), + [anon_sym_float] = ACTIONS(2966), + [anon_sym_range] = ACTIONS(2966), + [anon_sym_i8] = ACTIONS(2966), + [anon_sym_i16] = ACTIONS(2966), + [anon_sym_i32] = ACTIONS(2966), + [anon_sym_i64] = ACTIONS(2966), + [anon_sym_u8] = ACTIONS(2966), + [anon_sym_u16] = ACTIONS(2966), + [anon_sym_u32] = ACTIONS(2966), + [anon_sym_u64] = ACTIONS(2966), + [anon_sym_isize] = ACTIONS(2966), + [anon_sym_usize] = ACTIONS(2966), + [anon_sym_f32] = ACTIONS(2966), + [anon_sym_f64] = ACTIONS(2966), + [anon_sym_c_char] = ACTIONS(2966), + [anon_sym_c_schar] = ACTIONS(2966), + [anon_sym_c_uchar] = ACTIONS(2966), + [anon_sym_c_short] = ACTIONS(2966), + [anon_sym_c_ushort] = ACTIONS(2966), + [anon_sym_c_int] = ACTIONS(2966), + [anon_sym_c_uint] = ACTIONS(2966), + [anon_sym_c_long] = ACTIONS(2966), + [anon_sym_c_ulong] = ACTIONS(2966), + [anon_sym_c_longlong] = ACTIONS(2966), + [anon_sym_c_ulonglong] = ACTIONS(2966), + [anon_sym_c_float] = ACTIONS(2966), + [anon_sym_c_double] = ACTIONS(2966), + [anon_sym_c_longdouble] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2964), + [anon_sym_orelse] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_and] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_xor] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2964), + [anon_sym_LT_LT_PIPE] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_catch] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2964), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2964), + }, + [STATE(7096)] = { + [aux_sym_import_declaration_repeat1] = STATE(14220), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = 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_noreturn] = 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(11236), + [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), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(11239), + }, + [STATE(7097)] = { + [aux_sym_import_declaration_repeat1] = STATE(14221), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(11242), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11245), + }, + [STATE(7098)] = { + [aux_sym_import_declaration_repeat1] = STATE(14222), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(11248), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11251), + }, + [STATE(7099)] = { + [aux_sym_import_declaration_repeat1] = STATE(14179), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4404), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_errdefer] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(11254), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11256), + }, + [STATE(7100)] = { + [aux_sym_import_declaration_repeat1] = STATE(14188), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = 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_noreturn] = 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(11259), + [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), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(11261), + }, + [STATE(7101)] = { + [aux_sym_import_declaration_repeat1] = STATE(14330), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_errdefer] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(11264), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11266), + }, + [STATE(7102)] = { + [aux_sym_import_declaration_repeat1] = STATE(14333), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_errdefer] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(11269), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11271), + }, + [STATE(7103)] = { + [aux_sym_type_repeat1] = STATE(7109), + [sym_identifier] = ACTIONS(3058), + [anon_sym_func] = ACTIONS(3058), + [anon_sym_c_func] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_struct_type_BANG] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_AT] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_void] = ACTIONS(3058), + [anon_sym_noreturn] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_anyopaque] = ACTIONS(3058), + [anon_sym_bool] = ACTIONS(3058), + [anon_sym_int] = ACTIONS(3058), + [anon_sym_uint] = ACTIONS(3058), + [anon_sym_float] = ACTIONS(3058), + [anon_sym_range] = ACTIONS(3058), + [anon_sym_i8] = ACTIONS(3058), + [anon_sym_i16] = ACTIONS(3058), + [anon_sym_i32] = ACTIONS(3058), + [anon_sym_i64] = ACTIONS(3058), + [anon_sym_u8] = ACTIONS(3058), + [anon_sym_u16] = ACTIONS(3058), + [anon_sym_u32] = ACTIONS(3058), + [anon_sym_u64] = ACTIONS(3058), + [anon_sym_isize] = ACTIONS(3058), + [anon_sym_usize] = ACTIONS(3058), + [anon_sym_f32] = ACTIONS(3058), + [anon_sym_f64] = ACTIONS(3058), + [anon_sym_c_char] = ACTIONS(3058), + [anon_sym_c_schar] = ACTIONS(3058), + [anon_sym_c_uchar] = ACTIONS(3058), + [anon_sym_c_short] = ACTIONS(3058), + [anon_sym_c_ushort] = ACTIONS(3058), + [anon_sym_c_int] = ACTIONS(3058), + [anon_sym_c_uint] = ACTIONS(3058), + [anon_sym_c_long] = ACTIONS(3058), + [anon_sym_c_ulong] = ACTIONS(3058), + [anon_sym_c_longlong] = ACTIONS(3058), + [anon_sym_c_ulonglong] = ACTIONS(3058), + [anon_sym_c_float] = ACTIONS(3058), + [anon_sym_c_double] = ACTIONS(3058), + [anon_sym_c_longdouble] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3056), + [anon_sym_orelse] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_and] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_LT_LT_PIPE] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3056), + }, + [STATE(7104)] = { + [aux_sym_import_declaration_repeat1] = STATE(14223), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_yield] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_errdefer] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(11274), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11277), + }, + [STATE(7105)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_c_func] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(11213), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_struct_type_BANG] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(7106)] = { + [aux_sym_type_repeat1] = STATE(7103), + [sym_identifier] = ACTIONS(3026), + [anon_sym_func] = ACTIONS(3026), + [anon_sym_c_func] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_struct_type_BANG] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_void] = ACTIONS(3026), + [anon_sym_noreturn] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_anyopaque] = ACTIONS(3026), + [anon_sym_bool] = ACTIONS(3026), + [anon_sym_int] = ACTIONS(3026), + [anon_sym_uint] = ACTIONS(3026), + [anon_sym_float] = ACTIONS(3026), + [anon_sym_range] = ACTIONS(3026), + [anon_sym_i8] = ACTIONS(3026), + [anon_sym_i16] = ACTIONS(3026), + [anon_sym_i32] = ACTIONS(3026), + [anon_sym_i64] = ACTIONS(3026), + [anon_sym_u8] = ACTIONS(3026), + [anon_sym_u16] = ACTIONS(3026), + [anon_sym_u32] = ACTIONS(3026), + [anon_sym_u64] = ACTIONS(3026), + [anon_sym_isize] = ACTIONS(3026), + [anon_sym_usize] = ACTIONS(3026), + [anon_sym_f32] = ACTIONS(3026), + [anon_sym_f64] = ACTIONS(3026), + [anon_sym_c_char] = ACTIONS(3026), + [anon_sym_c_schar] = ACTIONS(3026), + [anon_sym_c_uchar] = ACTIONS(3026), + [anon_sym_c_short] = ACTIONS(3026), + [anon_sym_c_ushort] = ACTIONS(3026), + [anon_sym_c_int] = ACTIONS(3026), + [anon_sym_c_uint] = ACTIONS(3026), + [anon_sym_c_long] = ACTIONS(3026), + [anon_sym_c_ulong] = ACTIONS(3026), + [anon_sym_c_longlong] = ACTIONS(3026), + [anon_sym_c_ulonglong] = ACTIONS(3026), + [anon_sym_c_float] = ACTIONS(3026), + [anon_sym_c_double] = ACTIONS(3026), + [anon_sym_c_longdouble] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(3026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3024), + [anon_sym_orelse] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3026), + [anon_sym_and] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_xor] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_LT_LT_PIPE] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_catch] = ACTIONS(3026), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3024), + }, + [STATE(7107)] = { + [aux_sym_import_declaration_repeat1] = STATE(14399), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_yield] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_errdefer] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(11280), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11282), + }, + [STATE(7108)] = { + [sym_variant_payload] = STATE(7517), + [sym_identifier] = ACTIONS(2659), + [anon_sym_func] = ACTIONS(2659), + [anon_sym_c_func] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(11285), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_struct_type_BANG] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_anyopaque] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_int] = ACTIONS(2659), + [anon_sym_uint] = ACTIONS(2659), + [anon_sym_float] = ACTIONS(2659), + [anon_sym_range] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_c_char] = ACTIONS(2659), + [anon_sym_c_schar] = ACTIONS(2659), + [anon_sym_c_uchar] = ACTIONS(2659), + [anon_sym_c_short] = ACTIONS(2659), + [anon_sym_c_ushort] = ACTIONS(2659), + [anon_sym_c_int] = ACTIONS(2659), + [anon_sym_c_uint] = ACTIONS(2659), + [anon_sym_c_long] = ACTIONS(2659), + [anon_sym_c_ulong] = ACTIONS(2659), + [anon_sym_c_longlong] = ACTIONS(2659), + [anon_sym_c_ulonglong] = ACTIONS(2659), + [anon_sym_c_float] = ACTIONS(2659), + [anon_sym_c_double] = ACTIONS(2659), + [anon_sym_c_longdouble] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2657), + [anon_sym_orelse] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_xor] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_LT_LT_PIPE] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2657), + }, + [STATE(7109)] = { + [aux_sym_type_repeat1] = STATE(7109), + [sym_identifier] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_c_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(11287), + [anon_sym_struct_type_BANG] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(7110)] = { + [sym_identifier] = ACTIONS(5932), + [anon_sym_func] = ACTIONS(5932), + [anon_sym_c_func] = ACTIONS(5932), + [anon_sym_BANG] = ACTIONS(5932), + [anon_sym_struct] = ACTIONS(5932), + [anon_sym_LPAREN] = ACTIONS(5930), + [anon_sym_COMMA] = ACTIONS(5930), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_DASH] = ACTIONS(5930), + [anon_sym_PIPE] = ACTIONS(5930), + [anon_sym_struct_type_BANG] = ACTIONS(5930), + [anon_sym_QMARK] = ACTIONS(5930), + [anon_sym_AT] = ACTIONS(5930), + [anon_sym_STAR] = ACTIONS(5930), + [anon_sym_LBRACK] = ACTIONS(5930), + [anon_sym_void] = ACTIONS(5932), + [anon_sym_noreturn] = ACTIONS(5932), + [anon_sym_type] = ACTIONS(5932), + [anon_sym_anyopaque] = ACTIONS(5932), + [anon_sym_bool] = ACTIONS(5932), + [anon_sym_int] = ACTIONS(5932), + [anon_sym_uint] = ACTIONS(5932), + [anon_sym_float] = ACTIONS(5932), + [anon_sym_range] = ACTIONS(5932), + [anon_sym_i8] = ACTIONS(5932), + [anon_sym_i16] = ACTIONS(5932), + [anon_sym_i32] = ACTIONS(5932), + [anon_sym_i64] = ACTIONS(5932), + [anon_sym_u8] = ACTIONS(5932), + [anon_sym_u16] = ACTIONS(5932), + [anon_sym_u32] = ACTIONS(5932), + [anon_sym_u64] = ACTIONS(5932), + [anon_sym_isize] = ACTIONS(5932), + [anon_sym_usize] = ACTIONS(5932), + [anon_sym_f32] = ACTIONS(5932), + [anon_sym_f64] = ACTIONS(5932), + [anon_sym_c_char] = ACTIONS(5932), + [anon_sym_c_schar] = ACTIONS(5932), + [anon_sym_c_uchar] = ACTIONS(5932), + [anon_sym_c_short] = ACTIONS(5932), + [anon_sym_c_ushort] = ACTIONS(5932), + [anon_sym_c_int] = ACTIONS(5932), + [anon_sym_c_uint] = ACTIONS(5932), + [anon_sym_c_long] = ACTIONS(5932), + [anon_sym_c_ulong] = ACTIONS(5932), + [anon_sym_c_longlong] = ACTIONS(5932), + [anon_sym_c_ulonglong] = ACTIONS(5932), + [anon_sym_c_float] = ACTIONS(5932), + [anon_sym_c_double] = ACTIONS(5932), + [anon_sym_c_longdouble] = ACTIONS(5932), + [anon_sym_else] = ACTIONS(5932), + [anon_sym_DOT_DOT] = ACTIONS(5932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5930), + [anon_sym_orelse] = ACTIONS(5932), + [anon_sym_or] = ACTIONS(5932), + [anon_sym_and] = ACTIONS(5932), + [anon_sym_EQ_EQ] = ACTIONS(5930), + [anon_sym_BANG_EQ] = ACTIONS(5930), + [anon_sym_LT] = ACTIONS(5932), + [anon_sym_LT_EQ] = ACTIONS(5930), + [anon_sym_GT] = ACTIONS(5932), + [anon_sym_GT_EQ] = ACTIONS(5930), + [anon_sym_AMP] = ACTIONS(5930), + [anon_sym_xor] = ACTIONS(5932), + [anon_sym_LT_LT] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5930), + [anon_sym_LT_LT_PIPE] = ACTIONS(5930), + [anon_sym_PLUS] = ACTIONS(5930), + [anon_sym_SLASH] = ACTIONS(5930), + [anon_sym_catch] = ACTIONS(5932), + [anon_sym_DOT] = ACTIONS(5932), + [anon_sym_CARET] = ACTIONS(5930), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5930), + }, + [STATE(7111)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2666), + [anon_sym_func] = ACTIONS(2666), + [anon_sym_c_func] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_struct_type_BANG] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_noreturn] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_anyopaque] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_int] = ACTIONS(2666), + [anon_sym_uint] = ACTIONS(2666), + [anon_sym_float] = ACTIONS(2666), + [anon_sym_range] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_c_char] = ACTIONS(2666), + [anon_sym_c_schar] = ACTIONS(2666), + [anon_sym_c_uchar] = ACTIONS(2666), + [anon_sym_c_short] = ACTIONS(2666), + [anon_sym_c_ushort] = ACTIONS(2666), + [anon_sym_c_int] = ACTIONS(2666), + [anon_sym_c_uint] = ACTIONS(2666), + [anon_sym_c_long] = ACTIONS(2666), + [anon_sym_c_ulong] = ACTIONS(2666), + [anon_sym_c_longlong] = ACTIONS(2666), + [anon_sym_c_ulonglong] = ACTIONS(2666), + [anon_sym_c_float] = ACTIONS(2666), + [anon_sym_c_double] = ACTIONS(2666), + [anon_sym_c_longdouble] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2664), + [anon_sym_orelse] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2666), + [anon_sym_and] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_xor] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_PIPE] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2664), + }, + [STATE(7112)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2670), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(7113)] = { + [sym_identifier] = ACTIONS(6000), + [anon_sym_func] = ACTIONS(6000), + [anon_sym_c_func] = ACTIONS(6000), + [anon_sym_BANG] = ACTIONS(11296), + [anon_sym_struct] = ACTIONS(6000), + [anon_sym_LPAREN] = ACTIONS(5998), + [anon_sym_COMMA] = ACTIONS(5998), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_DASH] = ACTIONS(5998), + [anon_sym_PIPE] = ACTIONS(5998), + [anon_sym_struct_type_BANG] = ACTIONS(5998), + [anon_sym_QMARK] = ACTIONS(5998), + [anon_sym_AT] = ACTIONS(5998), + [anon_sym_STAR] = ACTIONS(5998), + [anon_sym_LBRACK] = ACTIONS(5998), + [anon_sym_void] = ACTIONS(6000), + [anon_sym_noreturn] = ACTIONS(6000), + [anon_sym_type] = ACTIONS(6000), + [anon_sym_anyopaque] = ACTIONS(6000), + [anon_sym_bool] = ACTIONS(6000), + [anon_sym_int] = ACTIONS(6000), + [anon_sym_uint] = ACTIONS(6000), + [anon_sym_float] = ACTIONS(6000), + [anon_sym_range] = ACTIONS(6000), + [anon_sym_i8] = ACTIONS(6000), + [anon_sym_i16] = ACTIONS(6000), + [anon_sym_i32] = ACTIONS(6000), + [anon_sym_i64] = ACTIONS(6000), + [anon_sym_u8] = ACTIONS(6000), + [anon_sym_u16] = ACTIONS(6000), + [anon_sym_u32] = ACTIONS(6000), + [anon_sym_u64] = ACTIONS(6000), + [anon_sym_isize] = ACTIONS(6000), + [anon_sym_usize] = ACTIONS(6000), + [anon_sym_f32] = ACTIONS(6000), + [anon_sym_f64] = ACTIONS(6000), + [anon_sym_c_char] = ACTIONS(6000), + [anon_sym_c_schar] = ACTIONS(6000), + [anon_sym_c_uchar] = ACTIONS(6000), + [anon_sym_c_short] = ACTIONS(6000), + [anon_sym_c_ushort] = ACTIONS(6000), + [anon_sym_c_int] = ACTIONS(6000), + [anon_sym_c_uint] = ACTIONS(6000), + [anon_sym_c_long] = ACTIONS(6000), + [anon_sym_c_ulong] = ACTIONS(6000), + [anon_sym_c_longlong] = ACTIONS(6000), + [anon_sym_c_ulonglong] = ACTIONS(6000), + [anon_sym_c_float] = ACTIONS(6000), + [anon_sym_c_double] = ACTIONS(6000), + [anon_sym_c_longdouble] = ACTIONS(6000), + [anon_sym_else] = ACTIONS(6000), + [anon_sym_DOT_DOT] = ACTIONS(6000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5998), + [anon_sym_orelse] = ACTIONS(6000), + [anon_sym_or] = ACTIONS(6000), + [anon_sym_and] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5998), + [anon_sym_BANG_EQ] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(6000), + [anon_sym_LT_EQ] = ACTIONS(5998), + [anon_sym_GT] = ACTIONS(6000), + [anon_sym_GT_EQ] = ACTIONS(5998), + [anon_sym_AMP] = ACTIONS(5998), + [anon_sym_xor] = ACTIONS(6000), + [anon_sym_LT_LT] = ACTIONS(6000), + [anon_sym_GT_GT] = ACTIONS(5998), + [anon_sym_LT_LT_PIPE] = ACTIONS(5998), + [anon_sym_PLUS] = ACTIONS(5998), + [anon_sym_SLASH] = ACTIONS(5998), + [anon_sym_catch] = ACTIONS(6000), + [anon_sym_DOT] = ACTIONS(6000), + [anon_sym_CARET] = ACTIONS(5998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5998), + }, + [STATE(7114)] = { + [sym_identifier] = ACTIONS(6064), + [anon_sym_func] = ACTIONS(6064), + [anon_sym_c_func] = ACTIONS(6064), + [anon_sym_BANG] = ACTIONS(6064), + [anon_sym_struct] = ACTIONS(6064), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_COMMA] = ACTIONS(6062), + [anon_sym_RBRACE] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6062), + [anon_sym_PIPE] = ACTIONS(6062), + [anon_sym_struct_type_BANG] = ACTIONS(6062), + [anon_sym_QMARK] = ACTIONS(6062), + [anon_sym_AT] = ACTIONS(6062), + [anon_sym_STAR] = ACTIONS(6062), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_void] = ACTIONS(6064), + [anon_sym_noreturn] = ACTIONS(6064), + [anon_sym_type] = ACTIONS(6064), + [anon_sym_anyopaque] = ACTIONS(6064), + [anon_sym_bool] = ACTIONS(6064), + [anon_sym_int] = ACTIONS(6064), + [anon_sym_uint] = ACTIONS(6064), + [anon_sym_float] = ACTIONS(6064), + [anon_sym_range] = ACTIONS(6064), + [anon_sym_i8] = ACTIONS(6064), + [anon_sym_i16] = ACTIONS(6064), + [anon_sym_i32] = ACTIONS(6064), + [anon_sym_i64] = ACTIONS(6064), + [anon_sym_u8] = ACTIONS(6064), + [anon_sym_u16] = ACTIONS(6064), + [anon_sym_u32] = ACTIONS(6064), + [anon_sym_u64] = ACTIONS(6064), + [anon_sym_isize] = ACTIONS(6064), + [anon_sym_usize] = ACTIONS(6064), + [anon_sym_f32] = ACTIONS(6064), + [anon_sym_f64] = ACTIONS(6064), + [anon_sym_c_char] = ACTIONS(6064), + [anon_sym_c_schar] = ACTIONS(6064), + [anon_sym_c_uchar] = ACTIONS(6064), + [anon_sym_c_short] = ACTIONS(6064), + [anon_sym_c_ushort] = ACTIONS(6064), + [anon_sym_c_int] = ACTIONS(6064), + [anon_sym_c_uint] = ACTIONS(6064), + [anon_sym_c_long] = ACTIONS(6064), + [anon_sym_c_ulong] = ACTIONS(6064), + [anon_sym_c_longlong] = ACTIONS(6064), + [anon_sym_c_ulonglong] = ACTIONS(6064), + [anon_sym_c_float] = ACTIONS(6064), + [anon_sym_c_double] = ACTIONS(6064), + [anon_sym_c_longdouble] = ACTIONS(6064), + [anon_sym_else] = ACTIONS(6064), + [anon_sym_DOT_DOT] = ACTIONS(6064), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_orelse] = ACTIONS(6064), + [anon_sym_or] = ACTIONS(6064), + [anon_sym_and] = ACTIONS(6064), + [anon_sym_EQ_EQ] = ACTIONS(6062), + [anon_sym_BANG_EQ] = ACTIONS(6062), + [anon_sym_LT] = ACTIONS(6064), + [anon_sym_LT_EQ] = ACTIONS(6062), + [anon_sym_GT] = ACTIONS(6064), + [anon_sym_GT_EQ] = ACTIONS(6062), + [anon_sym_AMP] = ACTIONS(6062), + [anon_sym_xor] = ACTIONS(6064), + [anon_sym_LT_LT] = ACTIONS(6064), + [anon_sym_GT_GT] = ACTIONS(6062), + [anon_sym_LT_LT_PIPE] = ACTIONS(6062), + [anon_sym_PLUS] = ACTIONS(6062), + [anon_sym_SLASH] = ACTIONS(6062), + [anon_sym_catch] = ACTIONS(6064), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_CARET] = ACTIONS(6062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6062), + }, + [STATE(7115)] = { + [sym_identifier] = ACTIONS(5888), + [anon_sym_func] = ACTIONS(5888), + [anon_sym_c_func] = ACTIONS(5888), + [anon_sym_BANG] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_LPAREN] = ACTIONS(5886), + [anon_sym_COMMA] = ACTIONS(5886), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_DASH] = ACTIONS(5886), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_struct_type_BANG] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(5886), + [anon_sym_AT] = ACTIONS(5886), + [anon_sym_STAR] = ACTIONS(5886), + [anon_sym_LBRACK] = ACTIONS(5886), + [anon_sym_void] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_type] = ACTIONS(5888), + [anon_sym_anyopaque] = ACTIONS(5888), + [anon_sym_bool] = ACTIONS(5888), + [anon_sym_int] = ACTIONS(5888), + [anon_sym_uint] = ACTIONS(5888), + [anon_sym_float] = ACTIONS(5888), + [anon_sym_range] = ACTIONS(5888), + [anon_sym_i8] = ACTIONS(5888), + [anon_sym_i16] = ACTIONS(5888), + [anon_sym_i32] = ACTIONS(5888), + [anon_sym_i64] = ACTIONS(5888), + [anon_sym_u8] = ACTIONS(5888), + [anon_sym_u16] = ACTIONS(5888), + [anon_sym_u32] = ACTIONS(5888), + [anon_sym_u64] = ACTIONS(5888), + [anon_sym_isize] = ACTIONS(5888), + [anon_sym_usize] = ACTIONS(5888), + [anon_sym_f32] = ACTIONS(5888), + [anon_sym_f64] = ACTIONS(5888), + [anon_sym_c_char] = ACTIONS(5888), + [anon_sym_c_schar] = ACTIONS(5888), + [anon_sym_c_uchar] = ACTIONS(5888), + [anon_sym_c_short] = ACTIONS(5888), + [anon_sym_c_ushort] = ACTIONS(5888), + [anon_sym_c_int] = ACTIONS(5888), + [anon_sym_c_uint] = ACTIONS(5888), + [anon_sym_c_long] = ACTIONS(5888), + [anon_sym_c_ulong] = ACTIONS(5888), + [anon_sym_c_longlong] = ACTIONS(5888), + [anon_sym_c_ulonglong] = ACTIONS(5888), + [anon_sym_c_float] = ACTIONS(5888), + [anon_sym_c_double] = ACTIONS(5888), + [anon_sym_c_longdouble] = ACTIONS(5888), + [anon_sym_else] = ACTIONS(5888), + [anon_sym_DOT_DOT] = ACTIONS(5888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5886), + [anon_sym_orelse] = ACTIONS(5888), + [anon_sym_or] = ACTIONS(5888), + [anon_sym_and] = ACTIONS(5888), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_BANG_EQ] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(5888), + [anon_sym_LT_EQ] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5888), + [anon_sym_GT_EQ] = ACTIONS(5886), + [anon_sym_AMP] = ACTIONS(5886), + [anon_sym_xor] = ACTIONS(5888), + [anon_sym_LT_LT] = ACTIONS(5888), + [anon_sym_GT_GT] = ACTIONS(5886), + [anon_sym_LT_LT_PIPE] = ACTIONS(5886), + [anon_sym_PLUS] = ACTIONS(5886), + [anon_sym_SLASH] = ACTIONS(5886), + [anon_sym_catch] = ACTIONS(5888), + [anon_sym_DOT] = ACTIONS(5888), + [anon_sym_CARET] = ACTIONS(5886), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5886), + }, + [STATE(7116)] = { + [sym_identifier] = ACTIONS(5892), + [anon_sym_func] = ACTIONS(5892), + [anon_sym_c_func] = ACTIONS(5892), + [anon_sym_BANG] = ACTIONS(5892), + [anon_sym_struct] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5890), + [anon_sym_COMMA] = ACTIONS(5890), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym_DASH] = ACTIONS(5890), + [anon_sym_PIPE] = ACTIONS(5890), + [anon_sym_struct_type_BANG] = ACTIONS(5890), + [anon_sym_QMARK] = ACTIONS(5890), + [anon_sym_AT] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5890), + [anon_sym_LBRACK] = ACTIONS(5890), + [anon_sym_void] = ACTIONS(5892), + [anon_sym_noreturn] = ACTIONS(5892), + [anon_sym_type] = ACTIONS(5892), + [anon_sym_anyopaque] = ACTIONS(5892), + [anon_sym_bool] = ACTIONS(5892), + [anon_sym_int] = ACTIONS(5892), + [anon_sym_uint] = ACTIONS(5892), + [anon_sym_float] = ACTIONS(5892), + [anon_sym_range] = ACTIONS(5892), + [anon_sym_i8] = ACTIONS(5892), + [anon_sym_i16] = ACTIONS(5892), + [anon_sym_i32] = ACTIONS(5892), + [anon_sym_i64] = ACTIONS(5892), + [anon_sym_u8] = ACTIONS(5892), + [anon_sym_u16] = ACTIONS(5892), + [anon_sym_u32] = ACTIONS(5892), + [anon_sym_u64] = ACTIONS(5892), + [anon_sym_isize] = ACTIONS(5892), + [anon_sym_usize] = ACTIONS(5892), + [anon_sym_f32] = ACTIONS(5892), + [anon_sym_f64] = ACTIONS(5892), + [anon_sym_c_char] = ACTIONS(5892), + [anon_sym_c_schar] = ACTIONS(5892), + [anon_sym_c_uchar] = ACTIONS(5892), + [anon_sym_c_short] = ACTIONS(5892), + [anon_sym_c_ushort] = ACTIONS(5892), + [anon_sym_c_int] = ACTIONS(5892), + [anon_sym_c_uint] = ACTIONS(5892), + [anon_sym_c_long] = ACTIONS(5892), + [anon_sym_c_ulong] = ACTIONS(5892), + [anon_sym_c_longlong] = ACTIONS(5892), + [anon_sym_c_ulonglong] = ACTIONS(5892), + [anon_sym_c_float] = ACTIONS(5892), + [anon_sym_c_double] = ACTIONS(5892), + [anon_sym_c_longdouble] = ACTIONS(5892), + [anon_sym_else] = ACTIONS(5892), + [anon_sym_DOT_DOT] = ACTIONS(5892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5890), + [anon_sym_orelse] = ACTIONS(5892), + [anon_sym_or] = ACTIONS(5892), + [anon_sym_and] = ACTIONS(5892), + [anon_sym_EQ_EQ] = ACTIONS(5890), + [anon_sym_BANG_EQ] = ACTIONS(5890), + [anon_sym_LT] = ACTIONS(5892), + [anon_sym_LT_EQ] = ACTIONS(5890), + [anon_sym_GT] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5890), + [anon_sym_xor] = ACTIONS(5892), + [anon_sym_LT_LT] = ACTIONS(5892), + [anon_sym_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT_PIPE] = ACTIONS(5890), + [anon_sym_PLUS] = ACTIONS(5890), + [anon_sym_SLASH] = ACTIONS(5890), + [anon_sym_catch] = ACTIONS(5892), + [anon_sym_DOT] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5890), + }, + [STATE(7117)] = { + [sym_identifier] = ACTIONS(5896), + [anon_sym_func] = ACTIONS(5896), + [anon_sym_c_func] = ACTIONS(5896), + [anon_sym_BANG] = ACTIONS(5896), + [anon_sym_struct] = ACTIONS(5896), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_COMMA] = ACTIONS(5894), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5894), + [anon_sym_struct_type_BANG] = ACTIONS(5894), + [anon_sym_QMARK] = ACTIONS(5894), + [anon_sym_AT] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5894), + [anon_sym_void] = ACTIONS(5896), + [anon_sym_noreturn] = ACTIONS(5896), + [anon_sym_type] = ACTIONS(5896), + [anon_sym_anyopaque] = ACTIONS(5896), + [anon_sym_bool] = ACTIONS(5896), + [anon_sym_int] = ACTIONS(5896), + [anon_sym_uint] = ACTIONS(5896), + [anon_sym_float] = ACTIONS(5896), + [anon_sym_range] = ACTIONS(5896), + [anon_sym_i8] = ACTIONS(5896), + [anon_sym_i16] = ACTIONS(5896), + [anon_sym_i32] = ACTIONS(5896), + [anon_sym_i64] = ACTIONS(5896), + [anon_sym_u8] = ACTIONS(5896), + [anon_sym_u16] = ACTIONS(5896), + [anon_sym_u32] = ACTIONS(5896), + [anon_sym_u64] = ACTIONS(5896), + [anon_sym_isize] = ACTIONS(5896), + [anon_sym_usize] = ACTIONS(5896), + [anon_sym_f32] = ACTIONS(5896), + [anon_sym_f64] = ACTIONS(5896), + [anon_sym_c_char] = ACTIONS(5896), + [anon_sym_c_schar] = ACTIONS(5896), + [anon_sym_c_uchar] = ACTIONS(5896), + [anon_sym_c_short] = ACTIONS(5896), + [anon_sym_c_ushort] = ACTIONS(5896), + [anon_sym_c_int] = ACTIONS(5896), + [anon_sym_c_uint] = ACTIONS(5896), + [anon_sym_c_long] = ACTIONS(5896), + [anon_sym_c_ulong] = ACTIONS(5896), + [anon_sym_c_longlong] = ACTIONS(5896), + [anon_sym_c_ulonglong] = ACTIONS(5896), + [anon_sym_c_float] = ACTIONS(5896), + [anon_sym_c_double] = ACTIONS(5896), + [anon_sym_c_longdouble] = ACTIONS(5896), + [anon_sym_else] = ACTIONS(5896), + [anon_sym_DOT_DOT] = ACTIONS(5896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5894), + [anon_sym_orelse] = ACTIONS(5896), + [anon_sym_or] = ACTIONS(5896), + [anon_sym_and] = ACTIONS(5896), + [anon_sym_EQ_EQ] = ACTIONS(5894), + [anon_sym_BANG_EQ] = ACTIONS(5894), + [anon_sym_LT] = ACTIONS(5896), + [anon_sym_LT_EQ] = ACTIONS(5894), + [anon_sym_GT] = ACTIONS(5896), + [anon_sym_GT_EQ] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(5894), + [anon_sym_xor] = ACTIONS(5896), + [anon_sym_LT_LT] = ACTIONS(5896), + [anon_sym_GT_GT] = ACTIONS(5894), + [anon_sym_LT_LT_PIPE] = ACTIONS(5894), + [anon_sym_PLUS] = ACTIONS(5894), + [anon_sym_SLASH] = ACTIONS(5894), + [anon_sym_catch] = ACTIONS(5896), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_CARET] = ACTIONS(5894), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5894), + }, + [STATE(7118)] = { + [sym_identifier] = ACTIONS(5900), + [anon_sym_func] = ACTIONS(5900), + [anon_sym_c_func] = ACTIONS(5900), + [anon_sym_BANG] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_LPAREN] = ACTIONS(5898), + [anon_sym_COMMA] = ACTIONS(5898), + [anon_sym_RBRACE] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_PIPE] = ACTIONS(5898), + [anon_sym_struct_type_BANG] = ACTIONS(5898), + [anon_sym_QMARK] = ACTIONS(5898), + [anon_sym_AT] = ACTIONS(5898), + [anon_sym_STAR] = ACTIONS(5898), + [anon_sym_LBRACK] = ACTIONS(5898), + [anon_sym_void] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_type] = ACTIONS(5900), + [anon_sym_anyopaque] = ACTIONS(5900), + [anon_sym_bool] = ACTIONS(5900), + [anon_sym_int] = ACTIONS(5900), + [anon_sym_uint] = ACTIONS(5900), + [anon_sym_float] = ACTIONS(5900), + [anon_sym_range] = ACTIONS(5900), + [anon_sym_i8] = ACTIONS(5900), + [anon_sym_i16] = ACTIONS(5900), + [anon_sym_i32] = ACTIONS(5900), + [anon_sym_i64] = ACTIONS(5900), + [anon_sym_u8] = ACTIONS(5900), + [anon_sym_u16] = ACTIONS(5900), + [anon_sym_u32] = ACTIONS(5900), + [anon_sym_u64] = ACTIONS(5900), + [anon_sym_isize] = ACTIONS(5900), + [anon_sym_usize] = ACTIONS(5900), + [anon_sym_f32] = ACTIONS(5900), + [anon_sym_f64] = ACTIONS(5900), + [anon_sym_c_char] = ACTIONS(5900), + [anon_sym_c_schar] = ACTIONS(5900), + [anon_sym_c_uchar] = ACTIONS(5900), + [anon_sym_c_short] = ACTIONS(5900), + [anon_sym_c_ushort] = ACTIONS(5900), + [anon_sym_c_int] = ACTIONS(5900), + [anon_sym_c_uint] = ACTIONS(5900), + [anon_sym_c_long] = ACTIONS(5900), + [anon_sym_c_ulong] = ACTIONS(5900), + [anon_sym_c_longlong] = ACTIONS(5900), + [anon_sym_c_ulonglong] = ACTIONS(5900), + [anon_sym_c_float] = ACTIONS(5900), + [anon_sym_c_double] = ACTIONS(5900), + [anon_sym_c_longdouble] = ACTIONS(5900), + [anon_sym_else] = ACTIONS(5900), + [anon_sym_DOT_DOT] = ACTIONS(5900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5898), + [anon_sym_orelse] = ACTIONS(5900), + [anon_sym_or] = ACTIONS(5900), + [anon_sym_and] = ACTIONS(5900), + [anon_sym_EQ_EQ] = ACTIONS(5898), + [anon_sym_BANG_EQ] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(5900), + [anon_sym_LT_EQ] = ACTIONS(5898), + [anon_sym_GT] = ACTIONS(5900), + [anon_sym_GT_EQ] = ACTIONS(5898), + [anon_sym_AMP] = ACTIONS(5898), + [anon_sym_xor] = ACTIONS(5900), + [anon_sym_LT_LT] = ACTIONS(5900), + [anon_sym_GT_GT] = ACTIONS(5898), + [anon_sym_LT_LT_PIPE] = ACTIONS(5898), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_catch] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5900), + [anon_sym_CARET] = ACTIONS(5898), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5898), + }, + [STATE(7119)] = { + [sym_identifier] = ACTIONS(5904), + [anon_sym_func] = ACTIONS(5904), + [anon_sym_c_func] = ACTIONS(5904), + [anon_sym_BANG] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_LPAREN] = ACTIONS(5902), + [anon_sym_COMMA] = ACTIONS(5902), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_DASH] = ACTIONS(5902), + [anon_sym_PIPE] = ACTIONS(5902), + [anon_sym_struct_type_BANG] = ACTIONS(5902), + [anon_sym_QMARK] = ACTIONS(5902), + [anon_sym_AT] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5902), + [anon_sym_LBRACK] = ACTIONS(5902), + [anon_sym_void] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_type] = ACTIONS(5904), + [anon_sym_anyopaque] = ACTIONS(5904), + [anon_sym_bool] = ACTIONS(5904), + [anon_sym_int] = ACTIONS(5904), + [anon_sym_uint] = ACTIONS(5904), + [anon_sym_float] = ACTIONS(5904), + [anon_sym_range] = ACTIONS(5904), + [anon_sym_i8] = ACTIONS(5904), + [anon_sym_i16] = ACTIONS(5904), + [anon_sym_i32] = ACTIONS(5904), + [anon_sym_i64] = ACTIONS(5904), + [anon_sym_u8] = ACTIONS(5904), + [anon_sym_u16] = ACTIONS(5904), + [anon_sym_u32] = ACTIONS(5904), + [anon_sym_u64] = ACTIONS(5904), + [anon_sym_isize] = ACTIONS(5904), + [anon_sym_usize] = ACTIONS(5904), + [anon_sym_f32] = ACTIONS(5904), + [anon_sym_f64] = ACTIONS(5904), + [anon_sym_c_char] = ACTIONS(5904), + [anon_sym_c_schar] = ACTIONS(5904), + [anon_sym_c_uchar] = ACTIONS(5904), + [anon_sym_c_short] = ACTIONS(5904), + [anon_sym_c_ushort] = ACTIONS(5904), + [anon_sym_c_int] = ACTIONS(5904), + [anon_sym_c_uint] = ACTIONS(5904), + [anon_sym_c_long] = ACTIONS(5904), + [anon_sym_c_ulong] = ACTIONS(5904), + [anon_sym_c_longlong] = ACTIONS(5904), + [anon_sym_c_ulonglong] = ACTIONS(5904), + [anon_sym_c_float] = ACTIONS(5904), + [anon_sym_c_double] = ACTIONS(5904), + [anon_sym_c_longdouble] = ACTIONS(5904), + [anon_sym_else] = ACTIONS(5904), + [anon_sym_DOT_DOT] = ACTIONS(5904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5902), + [anon_sym_orelse] = ACTIONS(5904), + [anon_sym_or] = ACTIONS(5904), + [anon_sym_and] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5902), + [anon_sym_BANG_EQ] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5904), + [anon_sym_LT_EQ] = ACTIONS(5902), + [anon_sym_GT] = ACTIONS(5904), + [anon_sym_GT_EQ] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5902), + [anon_sym_xor] = ACTIONS(5904), + [anon_sym_LT_LT] = ACTIONS(5904), + [anon_sym_GT_GT] = ACTIONS(5902), + [anon_sym_LT_LT_PIPE] = ACTIONS(5902), + [anon_sym_PLUS] = ACTIONS(5902), + [anon_sym_SLASH] = ACTIONS(5902), + [anon_sym_catch] = ACTIONS(5904), + [anon_sym_DOT] = ACTIONS(5904), + [anon_sym_CARET] = ACTIONS(5902), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5902), + }, + [STATE(7120)] = { + [sym_identifier] = ACTIONS(5908), + [anon_sym_func] = ACTIONS(5908), + [anon_sym_c_func] = ACTIONS(5908), + [anon_sym_BANG] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_LPAREN] = ACTIONS(5906), + [anon_sym_COMMA] = ACTIONS(5906), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(5906), + [anon_sym_PIPE] = ACTIONS(5906), + [anon_sym_struct_type_BANG] = ACTIONS(5906), + [anon_sym_QMARK] = ACTIONS(5906), + [anon_sym_AT] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5906), + [anon_sym_LBRACK] = ACTIONS(5906), + [anon_sym_void] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_type] = ACTIONS(5908), + [anon_sym_anyopaque] = ACTIONS(5908), + [anon_sym_bool] = ACTIONS(5908), + [anon_sym_int] = ACTIONS(5908), + [anon_sym_uint] = ACTIONS(5908), + [anon_sym_float] = ACTIONS(5908), + [anon_sym_range] = ACTIONS(5908), + [anon_sym_i8] = ACTIONS(5908), + [anon_sym_i16] = ACTIONS(5908), + [anon_sym_i32] = ACTIONS(5908), + [anon_sym_i64] = ACTIONS(5908), + [anon_sym_u8] = ACTIONS(5908), + [anon_sym_u16] = ACTIONS(5908), + [anon_sym_u32] = ACTIONS(5908), + [anon_sym_u64] = ACTIONS(5908), + [anon_sym_isize] = ACTIONS(5908), + [anon_sym_usize] = ACTIONS(5908), + [anon_sym_f32] = ACTIONS(5908), + [anon_sym_f64] = ACTIONS(5908), + [anon_sym_c_char] = ACTIONS(5908), + [anon_sym_c_schar] = ACTIONS(5908), + [anon_sym_c_uchar] = ACTIONS(5908), + [anon_sym_c_short] = ACTIONS(5908), + [anon_sym_c_ushort] = ACTIONS(5908), + [anon_sym_c_int] = ACTIONS(5908), + [anon_sym_c_uint] = ACTIONS(5908), + [anon_sym_c_long] = ACTIONS(5908), + [anon_sym_c_ulong] = ACTIONS(5908), + [anon_sym_c_longlong] = ACTIONS(5908), + [anon_sym_c_ulonglong] = ACTIONS(5908), + [anon_sym_c_float] = ACTIONS(5908), + [anon_sym_c_double] = ACTIONS(5908), + [anon_sym_c_longdouble] = ACTIONS(5908), + [anon_sym_else] = ACTIONS(5908), + [anon_sym_DOT_DOT] = ACTIONS(5908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5906), + [anon_sym_orelse] = ACTIONS(5908), + [anon_sym_or] = ACTIONS(5908), + [anon_sym_and] = ACTIONS(5908), + [anon_sym_EQ_EQ] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(5908), + [anon_sym_LT_EQ] = ACTIONS(5906), + [anon_sym_GT] = ACTIONS(5908), + [anon_sym_GT_EQ] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5906), + [anon_sym_xor] = ACTIONS(5908), + [anon_sym_LT_LT] = ACTIONS(5908), + [anon_sym_GT_GT] = ACTIONS(5906), + [anon_sym_LT_LT_PIPE] = ACTIONS(5906), + [anon_sym_PLUS] = ACTIONS(5906), + [anon_sym_SLASH] = ACTIONS(5906), + [anon_sym_catch] = ACTIONS(5908), + [anon_sym_DOT] = ACTIONS(5908), + [anon_sym_CARET] = ACTIONS(5906), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5906), + }, + [STATE(7121)] = { + [sym_identifier] = ACTIONS(5912), + [anon_sym_func] = ACTIONS(5912), + [anon_sym_c_func] = ACTIONS(5912), + [anon_sym_BANG] = ACTIONS(5912), + [anon_sym_struct] = ACTIONS(5912), + [anon_sym_LPAREN] = ACTIONS(5910), + [anon_sym_COMMA] = ACTIONS(5910), + [anon_sym_RBRACE] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_PIPE] = ACTIONS(5910), + [anon_sym_struct_type_BANG] = ACTIONS(5910), + [anon_sym_QMARK] = ACTIONS(5910), + [anon_sym_AT] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5910), + [anon_sym_void] = ACTIONS(5912), + [anon_sym_noreturn] = ACTIONS(5912), + [anon_sym_type] = ACTIONS(5912), + [anon_sym_anyopaque] = ACTIONS(5912), + [anon_sym_bool] = ACTIONS(5912), + [anon_sym_int] = ACTIONS(5912), + [anon_sym_uint] = ACTIONS(5912), + [anon_sym_float] = ACTIONS(5912), + [anon_sym_range] = ACTIONS(5912), + [anon_sym_i8] = ACTIONS(5912), + [anon_sym_i16] = ACTIONS(5912), + [anon_sym_i32] = ACTIONS(5912), + [anon_sym_i64] = ACTIONS(5912), + [anon_sym_u8] = ACTIONS(5912), + [anon_sym_u16] = ACTIONS(5912), + [anon_sym_u32] = ACTIONS(5912), + [anon_sym_u64] = ACTIONS(5912), + [anon_sym_isize] = ACTIONS(5912), + [anon_sym_usize] = ACTIONS(5912), + [anon_sym_f32] = ACTIONS(5912), + [anon_sym_f64] = ACTIONS(5912), + [anon_sym_c_char] = ACTIONS(5912), + [anon_sym_c_schar] = ACTIONS(5912), + [anon_sym_c_uchar] = ACTIONS(5912), + [anon_sym_c_short] = ACTIONS(5912), + [anon_sym_c_ushort] = ACTIONS(5912), + [anon_sym_c_int] = ACTIONS(5912), + [anon_sym_c_uint] = ACTIONS(5912), + [anon_sym_c_long] = ACTIONS(5912), + [anon_sym_c_ulong] = ACTIONS(5912), + [anon_sym_c_longlong] = ACTIONS(5912), + [anon_sym_c_ulonglong] = ACTIONS(5912), + [anon_sym_c_float] = ACTIONS(5912), + [anon_sym_c_double] = ACTIONS(5912), + [anon_sym_c_longdouble] = ACTIONS(5912), + [anon_sym_else] = ACTIONS(5912), + [anon_sym_DOT_DOT] = ACTIONS(5912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5910), + [anon_sym_orelse] = ACTIONS(5912), + [anon_sym_or] = ACTIONS(5912), + [anon_sym_and] = ACTIONS(5912), + [anon_sym_EQ_EQ] = ACTIONS(5910), + [anon_sym_BANG_EQ] = ACTIONS(5910), + [anon_sym_LT] = ACTIONS(5912), + [anon_sym_LT_EQ] = ACTIONS(5910), + [anon_sym_GT] = ACTIONS(5912), + [anon_sym_GT_EQ] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5910), + [anon_sym_xor] = ACTIONS(5912), + [anon_sym_LT_LT] = ACTIONS(5912), + [anon_sym_GT_GT] = ACTIONS(5910), + [anon_sym_LT_LT_PIPE] = ACTIONS(5910), + [anon_sym_PLUS] = ACTIONS(5910), + [anon_sym_SLASH] = ACTIONS(5910), + [anon_sym_catch] = ACTIONS(5912), + [anon_sym_DOT] = ACTIONS(5912), + [anon_sym_CARET] = ACTIONS(5910), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5910), + }, + [STATE(7122)] = { + [sym_identifier] = ACTIONS(6006), + [anon_sym_func] = ACTIONS(6006), + [anon_sym_c_func] = ACTIONS(6006), + [anon_sym_BANG] = ACTIONS(6006), + [anon_sym_struct] = ACTIONS(6006), + [anon_sym_LPAREN] = ACTIONS(6004), + [anon_sym_COMMA] = ACTIONS(6004), + [anon_sym_RBRACE] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(6004), + [anon_sym_PIPE] = ACTIONS(6004), + [anon_sym_struct_type_BANG] = ACTIONS(6004), + [anon_sym_QMARK] = ACTIONS(6004), + [anon_sym_AT] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(6004), + [anon_sym_LBRACK] = ACTIONS(6004), + [anon_sym_void] = ACTIONS(6006), + [anon_sym_noreturn] = ACTIONS(6006), + [anon_sym_type] = ACTIONS(6006), + [anon_sym_anyopaque] = ACTIONS(6006), + [anon_sym_bool] = ACTIONS(6006), + [anon_sym_int] = ACTIONS(6006), + [anon_sym_uint] = ACTIONS(6006), + [anon_sym_float] = ACTIONS(6006), + [anon_sym_range] = ACTIONS(6006), + [anon_sym_i8] = ACTIONS(6006), + [anon_sym_i16] = ACTIONS(6006), + [anon_sym_i32] = ACTIONS(6006), + [anon_sym_i64] = ACTIONS(6006), + [anon_sym_u8] = ACTIONS(6006), + [anon_sym_u16] = ACTIONS(6006), + [anon_sym_u32] = ACTIONS(6006), + [anon_sym_u64] = ACTIONS(6006), + [anon_sym_isize] = ACTIONS(6006), + [anon_sym_usize] = ACTIONS(6006), + [anon_sym_f32] = ACTIONS(6006), + [anon_sym_f64] = ACTIONS(6006), + [anon_sym_c_char] = ACTIONS(6006), + [anon_sym_c_schar] = ACTIONS(6006), + [anon_sym_c_uchar] = ACTIONS(6006), + [anon_sym_c_short] = ACTIONS(6006), + [anon_sym_c_ushort] = ACTIONS(6006), + [anon_sym_c_int] = ACTIONS(6006), + [anon_sym_c_uint] = ACTIONS(6006), + [anon_sym_c_long] = ACTIONS(6006), + [anon_sym_c_ulong] = ACTIONS(6006), + [anon_sym_c_longlong] = ACTIONS(6006), + [anon_sym_c_ulonglong] = ACTIONS(6006), + [anon_sym_c_float] = ACTIONS(6006), + [anon_sym_c_double] = ACTIONS(6006), + [anon_sym_c_longdouble] = ACTIONS(6006), + [anon_sym_else] = ACTIONS(6006), + [anon_sym_DOT_DOT] = ACTIONS(6006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6004), + [anon_sym_orelse] = ACTIONS(6006), + [anon_sym_or] = ACTIONS(6006), + [anon_sym_and] = ACTIONS(6006), + [anon_sym_EQ_EQ] = ACTIONS(6004), + [anon_sym_BANG_EQ] = ACTIONS(6004), + [anon_sym_LT] = ACTIONS(6006), + [anon_sym_LT_EQ] = ACTIONS(6004), + [anon_sym_GT] = ACTIONS(6006), + [anon_sym_GT_EQ] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6004), + [anon_sym_xor] = ACTIONS(6006), + [anon_sym_LT_LT] = ACTIONS(6006), + [anon_sym_GT_GT] = ACTIONS(6004), + [anon_sym_LT_LT_PIPE] = ACTIONS(6004), + [anon_sym_PLUS] = ACTIONS(6004), + [anon_sym_SLASH] = ACTIONS(6004), + [anon_sym_catch] = ACTIONS(6006), + [anon_sym_DOT] = ACTIONS(6006), + [anon_sym_CARET] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6004), + }, + [STATE(7123)] = { + [sym_identifier] = ACTIONS(4734), + [anon_sym_func] = ACTIONS(4734), + [anon_sym_c_func] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_PIPE] = ACTIONS(4738), + [anon_sym_struct_type_BANG] = ACTIONS(4738), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_void] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_type] = ACTIONS(4734), + [anon_sym_anyopaque] = ACTIONS(4734), + [anon_sym_bool] = ACTIONS(4734), + [anon_sym_int] = ACTIONS(4734), + [anon_sym_uint] = ACTIONS(4734), + [anon_sym_float] = ACTIONS(4734), + [anon_sym_range] = ACTIONS(4734), + [anon_sym_i8] = ACTIONS(4734), + [anon_sym_i16] = ACTIONS(4734), + [anon_sym_i32] = ACTIONS(4734), + [anon_sym_i64] = ACTIONS(4734), + [anon_sym_u8] = ACTIONS(4734), + [anon_sym_u16] = ACTIONS(4734), + [anon_sym_u32] = ACTIONS(4734), + [anon_sym_u64] = ACTIONS(4734), + [anon_sym_isize] = ACTIONS(4734), + [anon_sym_usize] = ACTIONS(4734), + [anon_sym_f32] = ACTIONS(4734), + [anon_sym_f64] = ACTIONS(4734), + [anon_sym_c_char] = ACTIONS(4734), + [anon_sym_c_schar] = ACTIONS(4734), + [anon_sym_c_uchar] = ACTIONS(4734), + [anon_sym_c_short] = ACTIONS(4734), + [anon_sym_c_ushort] = ACTIONS(4734), + [anon_sym_c_int] = ACTIONS(4734), + [anon_sym_c_uint] = ACTIONS(4734), + [anon_sym_c_long] = ACTIONS(4734), + [anon_sym_c_ulong] = ACTIONS(4734), + [anon_sym_c_longlong] = ACTIONS(4734), + [anon_sym_c_ulonglong] = ACTIONS(4734), + [anon_sym_c_float] = ACTIONS(4734), + [anon_sym_c_double] = ACTIONS(4734), + [anon_sym_c_longdouble] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4738), + [anon_sym_orelse] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4738), + [anon_sym_xor] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4738), + [anon_sym_LT_LT_PIPE] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_SLASH] = ACTIONS(4738), + [anon_sym_catch] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4738), + }, + [STATE(7124)] = { + [sym_identifier] = ACTIONS(5924), + [anon_sym_func] = ACTIONS(5924), + [anon_sym_c_func] = ACTIONS(5924), + [anon_sym_BANG] = ACTIONS(5924), + [anon_sym_struct] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5922), + [anon_sym_COMMA] = ACTIONS(5922), + [anon_sym_RBRACE] = ACTIONS(5922), + [anon_sym_DASH] = ACTIONS(5922), + [anon_sym_PIPE] = ACTIONS(5922), + [anon_sym_struct_type_BANG] = ACTIONS(5922), + [anon_sym_QMARK] = ACTIONS(5922), + [anon_sym_AT] = ACTIONS(5922), + [anon_sym_STAR] = ACTIONS(5922), + [anon_sym_LBRACK] = ACTIONS(5922), + [anon_sym_void] = ACTIONS(5924), + [anon_sym_noreturn] = ACTIONS(5924), + [anon_sym_type] = ACTIONS(5924), + [anon_sym_anyopaque] = ACTIONS(5924), + [anon_sym_bool] = ACTIONS(5924), + [anon_sym_int] = ACTIONS(5924), + [anon_sym_uint] = ACTIONS(5924), + [anon_sym_float] = ACTIONS(5924), + [anon_sym_range] = ACTIONS(5924), + [anon_sym_i8] = ACTIONS(5924), + [anon_sym_i16] = ACTIONS(5924), + [anon_sym_i32] = ACTIONS(5924), + [anon_sym_i64] = ACTIONS(5924), + [anon_sym_u8] = ACTIONS(5924), + [anon_sym_u16] = ACTIONS(5924), + [anon_sym_u32] = ACTIONS(5924), + [anon_sym_u64] = ACTIONS(5924), + [anon_sym_isize] = ACTIONS(5924), + [anon_sym_usize] = ACTIONS(5924), + [anon_sym_f32] = ACTIONS(5924), + [anon_sym_f64] = ACTIONS(5924), + [anon_sym_c_char] = ACTIONS(5924), + [anon_sym_c_schar] = ACTIONS(5924), + [anon_sym_c_uchar] = ACTIONS(5924), + [anon_sym_c_short] = ACTIONS(5924), + [anon_sym_c_ushort] = ACTIONS(5924), + [anon_sym_c_int] = ACTIONS(5924), + [anon_sym_c_uint] = ACTIONS(5924), + [anon_sym_c_long] = ACTIONS(5924), + [anon_sym_c_ulong] = ACTIONS(5924), + [anon_sym_c_longlong] = ACTIONS(5924), + [anon_sym_c_ulonglong] = ACTIONS(5924), + [anon_sym_c_float] = ACTIONS(5924), + [anon_sym_c_double] = ACTIONS(5924), + [anon_sym_c_longdouble] = ACTIONS(5924), + [anon_sym_else] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(5924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5922), + [anon_sym_orelse] = ACTIONS(5924), + [anon_sym_or] = ACTIONS(5924), + [anon_sym_and] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5922), + [anon_sym_BANG_EQ] = ACTIONS(5922), + [anon_sym_LT] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5922), + [anon_sym_GT] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5922), + [anon_sym_AMP] = ACTIONS(5922), + [anon_sym_xor] = ACTIONS(5924), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5922), + [anon_sym_LT_LT_PIPE] = ACTIONS(5922), + [anon_sym_PLUS] = ACTIONS(5922), + [anon_sym_SLASH] = ACTIONS(5922), + [anon_sym_catch] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5922), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5922), + }, + [STATE(7125)] = { + [sym_identifier] = ACTIONS(5928), + [anon_sym_func] = ACTIONS(5928), + [anon_sym_c_func] = ACTIONS(5928), + [anon_sym_BANG] = ACTIONS(5928), + [anon_sym_struct] = ACTIONS(5928), + [anon_sym_LPAREN] = ACTIONS(5926), + [anon_sym_COMMA] = ACTIONS(5926), + [anon_sym_RBRACE] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5926), + [anon_sym_PIPE] = ACTIONS(5926), + [anon_sym_struct_type_BANG] = ACTIONS(5926), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_AT] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5926), + [anon_sym_LBRACK] = ACTIONS(5926), + [anon_sym_void] = ACTIONS(5928), + [anon_sym_noreturn] = ACTIONS(5928), + [anon_sym_type] = ACTIONS(5928), + [anon_sym_anyopaque] = ACTIONS(5928), + [anon_sym_bool] = ACTIONS(5928), + [anon_sym_int] = ACTIONS(5928), + [anon_sym_uint] = ACTIONS(5928), + [anon_sym_float] = ACTIONS(5928), + [anon_sym_range] = ACTIONS(5928), + [anon_sym_i8] = ACTIONS(5928), + [anon_sym_i16] = ACTIONS(5928), + [anon_sym_i32] = ACTIONS(5928), + [anon_sym_i64] = ACTIONS(5928), + [anon_sym_u8] = ACTIONS(5928), + [anon_sym_u16] = ACTIONS(5928), + [anon_sym_u32] = ACTIONS(5928), + [anon_sym_u64] = ACTIONS(5928), + [anon_sym_isize] = ACTIONS(5928), + [anon_sym_usize] = ACTIONS(5928), + [anon_sym_f32] = ACTIONS(5928), + [anon_sym_f64] = ACTIONS(5928), + [anon_sym_c_char] = ACTIONS(5928), + [anon_sym_c_schar] = ACTIONS(5928), + [anon_sym_c_uchar] = ACTIONS(5928), + [anon_sym_c_short] = ACTIONS(5928), + [anon_sym_c_ushort] = ACTIONS(5928), + [anon_sym_c_int] = ACTIONS(5928), + [anon_sym_c_uint] = ACTIONS(5928), + [anon_sym_c_long] = ACTIONS(5928), + [anon_sym_c_ulong] = ACTIONS(5928), + [anon_sym_c_longlong] = ACTIONS(5928), + [anon_sym_c_ulonglong] = ACTIONS(5928), + [anon_sym_c_float] = ACTIONS(5928), + [anon_sym_c_double] = ACTIONS(5928), + [anon_sym_c_longdouble] = ACTIONS(5928), + [anon_sym_else] = ACTIONS(5928), + [anon_sym_DOT_DOT] = ACTIONS(5928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5926), + [anon_sym_orelse] = ACTIONS(5928), + [anon_sym_or] = ACTIONS(5928), + [anon_sym_and] = ACTIONS(5928), + [anon_sym_EQ_EQ] = ACTIONS(5926), + [anon_sym_BANG_EQ] = ACTIONS(5926), + [anon_sym_LT] = ACTIONS(5928), + [anon_sym_LT_EQ] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5928), + [anon_sym_GT_EQ] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5926), + [anon_sym_xor] = ACTIONS(5928), + [anon_sym_LT_LT] = ACTIONS(5928), + [anon_sym_GT_GT] = ACTIONS(5926), + [anon_sym_LT_LT_PIPE] = ACTIONS(5926), + [anon_sym_PLUS] = ACTIONS(5926), + [anon_sym_SLASH] = ACTIONS(5926), + [anon_sym_catch] = ACTIONS(5928), + [anon_sym_DOT] = ACTIONS(5928), + [anon_sym_CARET] = ACTIONS(5926), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5926), + }, + [STATE(7126)] = { + [sym_identifier] = ACTIONS(5828), + [anon_sym_func] = ACTIONS(5828), + [anon_sym_c_func] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5828), + [anon_sym_struct] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_COMMA] = ACTIONS(5826), + [anon_sym_RBRACE] = ACTIONS(5826), + [anon_sym_DASH] = ACTIONS(5826), + [anon_sym_PIPE] = ACTIONS(5826), + [anon_sym_struct_type_BANG] = ACTIONS(5826), + [anon_sym_QMARK] = ACTIONS(5826), + [anon_sym_AT] = ACTIONS(5826), + [anon_sym_STAR] = ACTIONS(5826), + [anon_sym_LBRACK] = ACTIONS(5826), + [anon_sym_void] = ACTIONS(5828), + [anon_sym_noreturn] = ACTIONS(5828), + [anon_sym_type] = ACTIONS(5828), + [anon_sym_anyopaque] = ACTIONS(5828), + [anon_sym_bool] = ACTIONS(5828), + [anon_sym_int] = ACTIONS(5828), + [anon_sym_uint] = ACTIONS(5828), + [anon_sym_float] = ACTIONS(5828), + [anon_sym_range] = ACTIONS(5828), + [anon_sym_i8] = ACTIONS(5828), + [anon_sym_i16] = ACTIONS(5828), + [anon_sym_i32] = ACTIONS(5828), + [anon_sym_i64] = ACTIONS(5828), + [anon_sym_u8] = ACTIONS(5828), + [anon_sym_u16] = ACTIONS(5828), + [anon_sym_u32] = ACTIONS(5828), + [anon_sym_u64] = ACTIONS(5828), + [anon_sym_isize] = ACTIONS(5828), + [anon_sym_usize] = ACTIONS(5828), + [anon_sym_f32] = ACTIONS(5828), + [anon_sym_f64] = ACTIONS(5828), + [anon_sym_c_char] = ACTIONS(5828), + [anon_sym_c_schar] = ACTIONS(5828), + [anon_sym_c_uchar] = ACTIONS(5828), + [anon_sym_c_short] = ACTIONS(5828), + [anon_sym_c_ushort] = ACTIONS(5828), + [anon_sym_c_int] = ACTIONS(5828), + [anon_sym_c_uint] = ACTIONS(5828), + [anon_sym_c_long] = ACTIONS(5828), + [anon_sym_c_ulong] = ACTIONS(5828), + [anon_sym_c_longlong] = ACTIONS(5828), + [anon_sym_c_ulonglong] = ACTIONS(5828), + [anon_sym_c_float] = ACTIONS(5828), + [anon_sym_c_double] = ACTIONS(5828), + [anon_sym_c_longdouble] = ACTIONS(5828), + [anon_sym_else] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5826), + [anon_sym_orelse] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_EQ_EQ] = ACTIONS(5826), + [anon_sym_BANG_EQ] = ACTIONS(5826), + [anon_sym_LT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5826), + [anon_sym_GT] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5826), + [anon_sym_xor] = ACTIONS(5828), + [anon_sym_LT_LT] = ACTIONS(5828), + [anon_sym_GT_GT] = ACTIONS(5826), + [anon_sym_LT_LT_PIPE] = ACTIONS(5826), + [anon_sym_PLUS] = ACTIONS(5826), + [anon_sym_SLASH] = ACTIONS(5826), + [anon_sym_catch] = ACTIONS(5828), + [anon_sym_DOT] = ACTIONS(5828), + [anon_sym_CARET] = ACTIONS(5826), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5826), + }, + [STATE(7127)] = { + [sym_identifier] = ACTIONS(5936), + [anon_sym_func] = ACTIONS(5936), + [anon_sym_c_func] = ACTIONS(5936), + [anon_sym_BANG] = ACTIONS(5936), + [anon_sym_struct] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5934), + [anon_sym_COMMA] = ACTIONS(5934), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_DASH] = ACTIONS(5934), + [anon_sym_PIPE] = ACTIONS(5934), + [anon_sym_struct_type_BANG] = ACTIONS(5934), + [anon_sym_QMARK] = ACTIONS(5934), + [anon_sym_AT] = ACTIONS(5934), + [anon_sym_STAR] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(5934), + [anon_sym_void] = ACTIONS(5936), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_type] = ACTIONS(5936), + [anon_sym_anyopaque] = ACTIONS(5936), + [anon_sym_bool] = ACTIONS(5936), + [anon_sym_int] = ACTIONS(5936), + [anon_sym_uint] = ACTIONS(5936), + [anon_sym_float] = ACTIONS(5936), + [anon_sym_range] = ACTIONS(5936), + [anon_sym_i8] = ACTIONS(5936), + [anon_sym_i16] = ACTIONS(5936), + [anon_sym_i32] = ACTIONS(5936), + [anon_sym_i64] = ACTIONS(5936), + [anon_sym_u8] = ACTIONS(5936), + [anon_sym_u16] = ACTIONS(5936), + [anon_sym_u32] = ACTIONS(5936), + [anon_sym_u64] = ACTIONS(5936), + [anon_sym_isize] = ACTIONS(5936), + [anon_sym_usize] = ACTIONS(5936), + [anon_sym_f32] = ACTIONS(5936), + [anon_sym_f64] = ACTIONS(5936), + [anon_sym_c_char] = ACTIONS(5936), + [anon_sym_c_schar] = ACTIONS(5936), + [anon_sym_c_uchar] = ACTIONS(5936), + [anon_sym_c_short] = ACTIONS(5936), + [anon_sym_c_ushort] = ACTIONS(5936), + [anon_sym_c_int] = ACTIONS(5936), + [anon_sym_c_uint] = ACTIONS(5936), + [anon_sym_c_long] = ACTIONS(5936), + [anon_sym_c_ulong] = ACTIONS(5936), + [anon_sym_c_longlong] = ACTIONS(5936), + [anon_sym_c_ulonglong] = ACTIONS(5936), + [anon_sym_c_float] = ACTIONS(5936), + [anon_sym_c_double] = ACTIONS(5936), + [anon_sym_c_longdouble] = ACTIONS(5936), + [anon_sym_else] = ACTIONS(5936), + [anon_sym_DOT_DOT] = ACTIONS(5936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5934), + [anon_sym_orelse] = ACTIONS(5936), + [anon_sym_or] = ACTIONS(5936), + [anon_sym_and] = ACTIONS(5936), + [anon_sym_EQ_EQ] = ACTIONS(5934), + [anon_sym_BANG_EQ] = ACTIONS(5934), + [anon_sym_LT] = ACTIONS(5936), + [anon_sym_LT_EQ] = ACTIONS(5934), + [anon_sym_GT] = ACTIONS(5936), + [anon_sym_GT_EQ] = ACTIONS(5934), + [anon_sym_AMP] = ACTIONS(5934), + [anon_sym_xor] = ACTIONS(5936), + [anon_sym_LT_LT] = ACTIONS(5936), + [anon_sym_GT_GT] = ACTIONS(5934), + [anon_sym_LT_LT_PIPE] = ACTIONS(5934), + [anon_sym_PLUS] = ACTIONS(5934), + [anon_sym_SLASH] = ACTIONS(5934), + [anon_sym_catch] = ACTIONS(5936), + [anon_sym_DOT] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5934), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5934), + }, + [STATE(7128)] = { + [sym_identifier] = ACTIONS(5940), + [anon_sym_func] = ACTIONS(5940), + [anon_sym_c_func] = ACTIONS(5940), + [anon_sym_BANG] = ACTIONS(5940), + [anon_sym_struct] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5938), + [anon_sym_COMMA] = ACTIONS(5938), + [anon_sym_RBRACE] = ACTIONS(5938), + [anon_sym_DASH] = ACTIONS(5938), + [anon_sym_PIPE] = ACTIONS(5938), + [anon_sym_struct_type_BANG] = ACTIONS(5938), + [anon_sym_QMARK] = ACTIONS(5938), + [anon_sym_AT] = ACTIONS(5938), + [anon_sym_STAR] = ACTIONS(5938), + [anon_sym_LBRACK] = ACTIONS(5938), + [anon_sym_void] = ACTIONS(5940), + [anon_sym_noreturn] = ACTIONS(5940), + [anon_sym_type] = ACTIONS(5940), + [anon_sym_anyopaque] = ACTIONS(5940), + [anon_sym_bool] = ACTIONS(5940), + [anon_sym_int] = ACTIONS(5940), + [anon_sym_uint] = ACTIONS(5940), + [anon_sym_float] = ACTIONS(5940), + [anon_sym_range] = ACTIONS(5940), + [anon_sym_i8] = ACTIONS(5940), + [anon_sym_i16] = ACTIONS(5940), + [anon_sym_i32] = ACTIONS(5940), + [anon_sym_i64] = ACTIONS(5940), + [anon_sym_u8] = ACTIONS(5940), + [anon_sym_u16] = ACTIONS(5940), + [anon_sym_u32] = ACTIONS(5940), + [anon_sym_u64] = ACTIONS(5940), + [anon_sym_isize] = ACTIONS(5940), + [anon_sym_usize] = ACTIONS(5940), + [anon_sym_f32] = ACTIONS(5940), + [anon_sym_f64] = ACTIONS(5940), + [anon_sym_c_char] = ACTIONS(5940), + [anon_sym_c_schar] = ACTIONS(5940), + [anon_sym_c_uchar] = ACTIONS(5940), + [anon_sym_c_short] = ACTIONS(5940), + [anon_sym_c_ushort] = ACTIONS(5940), + [anon_sym_c_int] = ACTIONS(5940), + [anon_sym_c_uint] = ACTIONS(5940), + [anon_sym_c_long] = ACTIONS(5940), + [anon_sym_c_ulong] = ACTIONS(5940), + [anon_sym_c_longlong] = ACTIONS(5940), + [anon_sym_c_ulonglong] = ACTIONS(5940), + [anon_sym_c_float] = ACTIONS(5940), + [anon_sym_c_double] = ACTIONS(5940), + [anon_sym_c_longdouble] = ACTIONS(5940), + [anon_sym_else] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5938), + [anon_sym_orelse] = ACTIONS(5940), + [anon_sym_or] = ACTIONS(5940), + [anon_sym_and] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5938), + [anon_sym_BANG_EQ] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(5940), + [anon_sym_LT_EQ] = ACTIONS(5938), + [anon_sym_GT] = ACTIONS(5940), + [anon_sym_GT_EQ] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5938), + [anon_sym_xor] = ACTIONS(5940), + [anon_sym_LT_LT] = ACTIONS(5940), + [anon_sym_GT_GT] = ACTIONS(5938), + [anon_sym_LT_LT_PIPE] = ACTIONS(5938), + [anon_sym_PLUS] = ACTIONS(5938), + [anon_sym_SLASH] = ACTIONS(5938), + [anon_sym_catch] = ACTIONS(5940), + [anon_sym_DOT] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5938), + }, + [STATE(7129)] = { + [sym_identifier] = ACTIONS(5832), + [anon_sym_func] = ACTIONS(5832), + [anon_sym_c_func] = ACTIONS(5832), + [anon_sym_BANG] = ACTIONS(5832), + [anon_sym_struct] = ACTIONS(5832), + [anon_sym_LPAREN] = ACTIONS(5830), + [anon_sym_COMMA] = ACTIONS(5830), + [anon_sym_RBRACE] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [anon_sym_PIPE] = ACTIONS(5830), + [anon_sym_struct_type_BANG] = ACTIONS(5830), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_AT] = ACTIONS(5830), + [anon_sym_STAR] = ACTIONS(5830), + [anon_sym_LBRACK] = ACTIONS(5830), + [anon_sym_void] = ACTIONS(5832), + [anon_sym_noreturn] = ACTIONS(5832), + [anon_sym_type] = ACTIONS(5832), + [anon_sym_anyopaque] = ACTIONS(5832), + [anon_sym_bool] = ACTIONS(5832), + [anon_sym_int] = ACTIONS(5832), + [anon_sym_uint] = ACTIONS(5832), + [anon_sym_float] = ACTIONS(5832), + [anon_sym_range] = ACTIONS(5832), + [anon_sym_i8] = ACTIONS(5832), + [anon_sym_i16] = ACTIONS(5832), + [anon_sym_i32] = ACTIONS(5832), + [anon_sym_i64] = ACTIONS(5832), + [anon_sym_u8] = ACTIONS(5832), + [anon_sym_u16] = ACTIONS(5832), + [anon_sym_u32] = ACTIONS(5832), + [anon_sym_u64] = ACTIONS(5832), + [anon_sym_isize] = ACTIONS(5832), + [anon_sym_usize] = ACTIONS(5832), + [anon_sym_f32] = ACTIONS(5832), + [anon_sym_f64] = ACTIONS(5832), + [anon_sym_c_char] = ACTIONS(5832), + [anon_sym_c_schar] = ACTIONS(5832), + [anon_sym_c_uchar] = ACTIONS(5832), + [anon_sym_c_short] = ACTIONS(5832), + [anon_sym_c_ushort] = ACTIONS(5832), + [anon_sym_c_int] = ACTIONS(5832), + [anon_sym_c_uint] = ACTIONS(5832), + [anon_sym_c_long] = ACTIONS(5832), + [anon_sym_c_ulong] = ACTIONS(5832), + [anon_sym_c_longlong] = ACTIONS(5832), + [anon_sym_c_ulonglong] = ACTIONS(5832), + [anon_sym_c_float] = ACTIONS(5832), + [anon_sym_c_double] = ACTIONS(5832), + [anon_sym_c_longdouble] = ACTIONS(5832), + [anon_sym_else] = ACTIONS(5832), + [anon_sym_DOT_DOT] = ACTIONS(5832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5830), + [anon_sym_orelse] = ACTIONS(5832), + [anon_sym_or] = ACTIONS(5832), + [anon_sym_and] = ACTIONS(5832), + [anon_sym_EQ_EQ] = ACTIONS(5830), + [anon_sym_BANG_EQ] = ACTIONS(5830), + [anon_sym_LT] = ACTIONS(5832), + [anon_sym_LT_EQ] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5830), + [anon_sym_xor] = ACTIONS(5832), + [anon_sym_LT_LT] = ACTIONS(5832), + [anon_sym_GT_GT] = ACTIONS(5830), + [anon_sym_LT_LT_PIPE] = ACTIONS(5830), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_SLASH] = ACTIONS(5830), + [anon_sym_catch] = ACTIONS(5832), + [anon_sym_DOT] = ACTIONS(5832), + [anon_sym_CARET] = ACTIONS(5830), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5830), + }, + [STATE(7130)] = { + [sym_identifier] = ACTIONS(6026), + [anon_sym_func] = ACTIONS(6026), + [anon_sym_c_func] = ACTIONS(6026), + [anon_sym_BANG] = ACTIONS(11298), + [anon_sym_struct] = ACTIONS(6026), + [anon_sym_LPAREN] = ACTIONS(6024), + [anon_sym_COMMA] = ACTIONS(6024), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_DASH] = ACTIONS(6024), + [anon_sym_PIPE] = ACTIONS(6024), + [anon_sym_struct_type_BANG] = ACTIONS(6024), + [anon_sym_QMARK] = ACTIONS(6024), + [anon_sym_AT] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(6024), + [anon_sym_LBRACK] = ACTIONS(6024), + [anon_sym_void] = ACTIONS(6026), + [anon_sym_noreturn] = ACTIONS(6026), + [anon_sym_type] = ACTIONS(6026), + [anon_sym_anyopaque] = ACTIONS(6026), + [anon_sym_bool] = ACTIONS(6026), + [anon_sym_int] = ACTIONS(6026), + [anon_sym_uint] = ACTIONS(6026), + [anon_sym_float] = ACTIONS(6026), + [anon_sym_range] = ACTIONS(6026), + [anon_sym_i8] = ACTIONS(6026), + [anon_sym_i16] = ACTIONS(6026), + [anon_sym_i32] = ACTIONS(6026), + [anon_sym_i64] = ACTIONS(6026), + [anon_sym_u8] = ACTIONS(6026), + [anon_sym_u16] = ACTIONS(6026), + [anon_sym_u32] = ACTIONS(6026), + [anon_sym_u64] = ACTIONS(6026), + [anon_sym_isize] = ACTIONS(6026), + [anon_sym_usize] = ACTIONS(6026), + [anon_sym_f32] = ACTIONS(6026), + [anon_sym_f64] = ACTIONS(6026), + [anon_sym_c_char] = ACTIONS(6026), + [anon_sym_c_schar] = ACTIONS(6026), + [anon_sym_c_uchar] = ACTIONS(6026), + [anon_sym_c_short] = ACTIONS(6026), + [anon_sym_c_ushort] = ACTIONS(6026), + [anon_sym_c_int] = ACTIONS(6026), + [anon_sym_c_uint] = ACTIONS(6026), + [anon_sym_c_long] = ACTIONS(6026), + [anon_sym_c_ulong] = ACTIONS(6026), + [anon_sym_c_longlong] = ACTIONS(6026), + [anon_sym_c_ulonglong] = ACTIONS(6026), + [anon_sym_c_float] = ACTIONS(6026), + [anon_sym_c_double] = ACTIONS(6026), + [anon_sym_c_longdouble] = ACTIONS(6026), + [anon_sym_else] = ACTIONS(6026), + [anon_sym_DOT_DOT] = ACTIONS(6026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6024), + [anon_sym_orelse] = ACTIONS(6026), + [anon_sym_or] = ACTIONS(6026), + [anon_sym_and] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(6024), + [anon_sym_BANG_EQ] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(6026), + [anon_sym_LT_EQ] = ACTIONS(6024), + [anon_sym_GT] = ACTIONS(6026), + [anon_sym_GT_EQ] = ACTIONS(6024), + [anon_sym_AMP] = ACTIONS(6024), + [anon_sym_xor] = ACTIONS(6026), + [anon_sym_LT_LT] = ACTIONS(6026), + [anon_sym_GT_GT] = ACTIONS(6024), + [anon_sym_LT_LT_PIPE] = ACTIONS(6024), + [anon_sym_PLUS] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6024), + [anon_sym_catch] = ACTIONS(6026), + [anon_sym_DOT] = ACTIONS(6026), + [anon_sym_CARET] = ACTIONS(6024), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6024), + }, + [STATE(7131)] = { + [sym_identifier] = ACTIONS(6032), + [anon_sym_func] = ACTIONS(6032), + [anon_sym_c_func] = ACTIONS(6032), + [anon_sym_BANG] = ACTIONS(6032), + [anon_sym_struct] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6030), + [anon_sym_COMMA] = ACTIONS(6030), + [anon_sym_RBRACE] = ACTIONS(6030), + [anon_sym_DASH] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(6030), + [anon_sym_struct_type_BANG] = ACTIONS(6030), + [anon_sym_QMARK] = ACTIONS(6030), + [anon_sym_AT] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(6030), + [anon_sym_LBRACK] = ACTIONS(6030), + [anon_sym_void] = ACTIONS(6032), + [anon_sym_noreturn] = ACTIONS(6032), + [anon_sym_type] = ACTIONS(6032), + [anon_sym_anyopaque] = ACTIONS(6032), + [anon_sym_bool] = ACTIONS(6032), + [anon_sym_int] = ACTIONS(6032), + [anon_sym_uint] = ACTIONS(6032), + [anon_sym_float] = ACTIONS(6032), + [anon_sym_range] = ACTIONS(6032), + [anon_sym_i8] = ACTIONS(6032), + [anon_sym_i16] = ACTIONS(6032), + [anon_sym_i32] = ACTIONS(6032), + [anon_sym_i64] = ACTIONS(6032), + [anon_sym_u8] = ACTIONS(6032), + [anon_sym_u16] = ACTIONS(6032), + [anon_sym_u32] = ACTIONS(6032), + [anon_sym_u64] = ACTIONS(6032), + [anon_sym_isize] = ACTIONS(6032), + [anon_sym_usize] = ACTIONS(6032), + [anon_sym_f32] = ACTIONS(6032), + [anon_sym_f64] = ACTIONS(6032), + [anon_sym_c_char] = ACTIONS(6032), + [anon_sym_c_schar] = ACTIONS(6032), + [anon_sym_c_uchar] = ACTIONS(6032), + [anon_sym_c_short] = ACTIONS(6032), + [anon_sym_c_ushort] = ACTIONS(6032), + [anon_sym_c_int] = ACTIONS(6032), + [anon_sym_c_uint] = ACTIONS(6032), + [anon_sym_c_long] = ACTIONS(6032), + [anon_sym_c_ulong] = ACTIONS(6032), + [anon_sym_c_longlong] = ACTIONS(6032), + [anon_sym_c_ulonglong] = ACTIONS(6032), + [anon_sym_c_float] = ACTIONS(6032), + [anon_sym_c_double] = ACTIONS(6032), + [anon_sym_c_longdouble] = ACTIONS(6032), + [anon_sym_else] = ACTIONS(6032), + [anon_sym_DOT_DOT] = ACTIONS(6032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6030), + [anon_sym_orelse] = ACTIONS(6032), + [anon_sym_or] = ACTIONS(6032), + [anon_sym_and] = ACTIONS(6032), + [anon_sym_EQ_EQ] = ACTIONS(6030), + [anon_sym_BANG_EQ] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(6032), + [anon_sym_LT_EQ] = ACTIONS(6030), + [anon_sym_GT] = ACTIONS(6032), + [anon_sym_GT_EQ] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6030), + [anon_sym_xor] = ACTIONS(6032), + [anon_sym_LT_LT] = ACTIONS(6032), + [anon_sym_GT_GT] = ACTIONS(6030), + [anon_sym_LT_LT_PIPE] = ACTIONS(6030), + [anon_sym_PLUS] = ACTIONS(6030), + [anon_sym_SLASH] = ACTIONS(6030), + [anon_sym_catch] = ACTIONS(6032), + [anon_sym_DOT] = ACTIONS(6032), + [anon_sym_CARET] = ACTIONS(6030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6030), + }, + [STATE(7132)] = { + [sym_identifier] = ACTIONS(5700), + [anon_sym_func] = ACTIONS(5700), + [anon_sym_c_func] = ACTIONS(5700), + [anon_sym_BANG] = ACTIONS(5700), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_LPAREN] = ACTIONS(5704), + [anon_sym_COMMA] = ACTIONS(5704), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_DASH] = ACTIONS(5704), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_struct_type_BANG] = ACTIONS(5704), + [anon_sym_QMARK] = ACTIONS(5704), + [anon_sym_AT] = ACTIONS(5704), + [anon_sym_STAR] = ACTIONS(5704), + [anon_sym_LBRACK] = ACTIONS(5704), + [anon_sym_void] = ACTIONS(5700), + [anon_sym_noreturn] = ACTIONS(5700), + [anon_sym_type] = ACTIONS(5700), + [anon_sym_anyopaque] = ACTIONS(5700), + [anon_sym_bool] = ACTIONS(5700), + [anon_sym_int] = ACTIONS(5700), + [anon_sym_uint] = ACTIONS(5700), + [anon_sym_float] = ACTIONS(5700), + [anon_sym_range] = ACTIONS(5700), + [anon_sym_i8] = ACTIONS(5700), + [anon_sym_i16] = ACTIONS(5700), + [anon_sym_i32] = ACTIONS(5700), + [anon_sym_i64] = ACTIONS(5700), + [anon_sym_u8] = ACTIONS(5700), + [anon_sym_u16] = ACTIONS(5700), + [anon_sym_u32] = ACTIONS(5700), + [anon_sym_u64] = ACTIONS(5700), + [anon_sym_isize] = ACTIONS(5700), + [anon_sym_usize] = ACTIONS(5700), + [anon_sym_f32] = ACTIONS(5700), + [anon_sym_f64] = ACTIONS(5700), + [anon_sym_c_char] = ACTIONS(5700), + [anon_sym_c_schar] = ACTIONS(5700), + [anon_sym_c_uchar] = ACTIONS(5700), + [anon_sym_c_short] = ACTIONS(5700), + [anon_sym_c_ushort] = ACTIONS(5700), + [anon_sym_c_int] = ACTIONS(5700), + [anon_sym_c_uint] = ACTIONS(5700), + [anon_sym_c_long] = ACTIONS(5700), + [anon_sym_c_ulong] = ACTIONS(5700), + [anon_sym_c_longlong] = ACTIONS(5700), + [anon_sym_c_ulonglong] = ACTIONS(5700), + [anon_sym_c_float] = ACTIONS(5700), + [anon_sym_c_double] = ACTIONS(5700), + [anon_sym_c_longdouble] = ACTIONS(5700), + [anon_sym_else] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5704), + [anon_sym_orelse] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5700), + [anon_sym_and] = ACTIONS(5700), + [anon_sym_EQ_EQ] = ACTIONS(5704), + [anon_sym_BANG_EQ] = ACTIONS(5704), + [anon_sym_LT] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5704), + [anon_sym_GT] = ACTIONS(5700), + [anon_sym_GT_EQ] = ACTIONS(5704), + [anon_sym_AMP] = ACTIONS(5704), + [anon_sym_xor] = ACTIONS(5700), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5704), + [anon_sym_LT_LT_PIPE] = ACTIONS(5704), + [anon_sym_PLUS] = ACTIONS(5704), + [anon_sym_SLASH] = ACTIONS(5704), + [anon_sym_catch] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5700), + [anon_sym_CARET] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5704), + }, + [STATE(7133)] = { + [sym_identifier] = ACTIONS(5840), + [anon_sym_func] = ACTIONS(5840), + [anon_sym_c_func] = ACTIONS(5840), + [anon_sym_BANG] = ACTIONS(5840), + [anon_sym_struct] = ACTIONS(5840), + [anon_sym_LPAREN] = ACTIONS(5838), + [anon_sym_COMMA] = ACTIONS(5838), + [anon_sym_RBRACE] = ACTIONS(5838), + [anon_sym_DASH] = ACTIONS(5838), + [anon_sym_PIPE] = ACTIONS(5838), + [anon_sym_struct_type_BANG] = ACTIONS(5838), + [anon_sym_QMARK] = ACTIONS(5838), + [anon_sym_AT] = ACTIONS(5838), + [anon_sym_STAR] = ACTIONS(5838), + [anon_sym_LBRACK] = ACTIONS(5838), + [anon_sym_void] = ACTIONS(5840), + [anon_sym_noreturn] = ACTIONS(5840), + [anon_sym_type] = ACTIONS(5840), + [anon_sym_anyopaque] = ACTIONS(5840), + [anon_sym_bool] = ACTIONS(5840), + [anon_sym_int] = ACTIONS(5840), + [anon_sym_uint] = ACTIONS(5840), + [anon_sym_float] = ACTIONS(5840), + [anon_sym_range] = ACTIONS(5840), + [anon_sym_i8] = ACTIONS(5840), + [anon_sym_i16] = ACTIONS(5840), + [anon_sym_i32] = ACTIONS(5840), + [anon_sym_i64] = ACTIONS(5840), + [anon_sym_u8] = ACTIONS(5840), + [anon_sym_u16] = ACTIONS(5840), + [anon_sym_u32] = ACTIONS(5840), + [anon_sym_u64] = ACTIONS(5840), + [anon_sym_isize] = ACTIONS(5840), + [anon_sym_usize] = ACTIONS(5840), + [anon_sym_f32] = ACTIONS(5840), + [anon_sym_f64] = ACTIONS(5840), + [anon_sym_c_char] = ACTIONS(5840), + [anon_sym_c_schar] = ACTIONS(5840), + [anon_sym_c_uchar] = ACTIONS(5840), + [anon_sym_c_short] = ACTIONS(5840), + [anon_sym_c_ushort] = ACTIONS(5840), + [anon_sym_c_int] = ACTIONS(5840), + [anon_sym_c_uint] = ACTIONS(5840), + [anon_sym_c_long] = ACTIONS(5840), + [anon_sym_c_ulong] = ACTIONS(5840), + [anon_sym_c_longlong] = ACTIONS(5840), + [anon_sym_c_ulonglong] = ACTIONS(5840), + [anon_sym_c_float] = ACTIONS(5840), + [anon_sym_c_double] = ACTIONS(5840), + [anon_sym_c_longdouble] = ACTIONS(5840), + [anon_sym_else] = ACTIONS(5840), + [anon_sym_DOT_DOT] = ACTIONS(5840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5838), + [anon_sym_orelse] = ACTIONS(5840), + [anon_sym_or] = ACTIONS(5840), + [anon_sym_and] = ACTIONS(5840), + [anon_sym_EQ_EQ] = ACTIONS(5838), + [anon_sym_BANG_EQ] = ACTIONS(5838), + [anon_sym_LT] = ACTIONS(5840), + [anon_sym_LT_EQ] = ACTIONS(5838), + [anon_sym_GT] = ACTIONS(5840), + [anon_sym_GT_EQ] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5838), + [anon_sym_xor] = ACTIONS(5840), + [anon_sym_LT_LT] = ACTIONS(5840), + [anon_sym_GT_GT] = ACTIONS(5838), + [anon_sym_LT_LT_PIPE] = ACTIONS(5838), + [anon_sym_PLUS] = ACTIONS(5838), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_catch] = ACTIONS(5840), + [anon_sym_DOT] = ACTIONS(5840), + [anon_sym_CARET] = ACTIONS(5838), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5838), + }, + [STATE(7134)] = { + [sym_identifier] = ACTIONS(5844), + [anon_sym_func] = ACTIONS(5844), + [anon_sym_c_func] = ACTIONS(5844), + [anon_sym_BANG] = ACTIONS(5844), + [anon_sym_struct] = ACTIONS(5844), + [anon_sym_LPAREN] = ACTIONS(5842), + [anon_sym_COMMA] = ACTIONS(5842), + [anon_sym_RBRACE] = ACTIONS(5842), + [anon_sym_DASH] = ACTIONS(5842), + [anon_sym_PIPE] = ACTIONS(5842), + [anon_sym_struct_type_BANG] = ACTIONS(5842), + [anon_sym_QMARK] = ACTIONS(5842), + [anon_sym_AT] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5842), + [anon_sym_LBRACK] = ACTIONS(5842), + [anon_sym_void] = ACTIONS(5844), + [anon_sym_noreturn] = ACTIONS(5844), + [anon_sym_type] = ACTIONS(5844), + [anon_sym_anyopaque] = ACTIONS(5844), + [anon_sym_bool] = ACTIONS(5844), + [anon_sym_int] = ACTIONS(5844), + [anon_sym_uint] = ACTIONS(5844), + [anon_sym_float] = ACTIONS(5844), + [anon_sym_range] = ACTIONS(5844), + [anon_sym_i8] = ACTIONS(5844), + [anon_sym_i16] = ACTIONS(5844), + [anon_sym_i32] = ACTIONS(5844), + [anon_sym_i64] = ACTIONS(5844), + [anon_sym_u8] = ACTIONS(5844), + [anon_sym_u16] = ACTIONS(5844), + [anon_sym_u32] = ACTIONS(5844), + [anon_sym_u64] = ACTIONS(5844), + [anon_sym_isize] = ACTIONS(5844), + [anon_sym_usize] = ACTIONS(5844), + [anon_sym_f32] = ACTIONS(5844), + [anon_sym_f64] = ACTIONS(5844), + [anon_sym_c_char] = ACTIONS(5844), + [anon_sym_c_schar] = ACTIONS(5844), + [anon_sym_c_uchar] = ACTIONS(5844), + [anon_sym_c_short] = ACTIONS(5844), + [anon_sym_c_ushort] = ACTIONS(5844), + [anon_sym_c_int] = ACTIONS(5844), + [anon_sym_c_uint] = ACTIONS(5844), + [anon_sym_c_long] = ACTIONS(5844), + [anon_sym_c_ulong] = ACTIONS(5844), + [anon_sym_c_longlong] = ACTIONS(5844), + [anon_sym_c_ulonglong] = ACTIONS(5844), + [anon_sym_c_float] = ACTIONS(5844), + [anon_sym_c_double] = ACTIONS(5844), + [anon_sym_c_longdouble] = ACTIONS(5844), + [anon_sym_else] = ACTIONS(5844), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5842), + [anon_sym_orelse] = ACTIONS(5844), + [anon_sym_or] = ACTIONS(5844), + [anon_sym_and] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5842), + [anon_sym_BANG_EQ] = ACTIONS(5842), + [anon_sym_LT] = ACTIONS(5844), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5842), + [anon_sym_xor] = ACTIONS(5844), + [anon_sym_LT_LT] = ACTIONS(5844), + [anon_sym_GT_GT] = ACTIONS(5842), + [anon_sym_LT_LT_PIPE] = ACTIONS(5842), + [anon_sym_PLUS] = ACTIONS(5842), + [anon_sym_SLASH] = ACTIONS(5842), + [anon_sym_catch] = ACTIONS(5844), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_CARET] = ACTIONS(5842), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5842), + }, + [STATE(7135)] = { + [sym_identifier] = ACTIONS(5848), + [anon_sym_func] = ACTIONS(5848), + [anon_sym_c_func] = ACTIONS(5848), + [anon_sym_BANG] = ACTIONS(5848), + [anon_sym_struct] = ACTIONS(5848), + [anon_sym_LPAREN] = ACTIONS(5846), + [anon_sym_COMMA] = ACTIONS(5846), + [anon_sym_RBRACE] = ACTIONS(5846), + [anon_sym_DASH] = ACTIONS(5846), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_struct_type_BANG] = ACTIONS(5846), + [anon_sym_QMARK] = ACTIONS(5846), + [anon_sym_AT] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5846), + [anon_sym_LBRACK] = ACTIONS(5846), + [anon_sym_void] = ACTIONS(5848), + [anon_sym_noreturn] = ACTIONS(5848), + [anon_sym_type] = ACTIONS(5848), + [anon_sym_anyopaque] = ACTIONS(5848), + [anon_sym_bool] = ACTIONS(5848), + [anon_sym_int] = ACTIONS(5848), + [anon_sym_uint] = ACTIONS(5848), + [anon_sym_float] = ACTIONS(5848), + [anon_sym_range] = ACTIONS(5848), + [anon_sym_i8] = ACTIONS(5848), + [anon_sym_i16] = ACTIONS(5848), + [anon_sym_i32] = ACTIONS(5848), + [anon_sym_i64] = ACTIONS(5848), + [anon_sym_u8] = ACTIONS(5848), + [anon_sym_u16] = ACTIONS(5848), + [anon_sym_u32] = ACTIONS(5848), + [anon_sym_u64] = ACTIONS(5848), + [anon_sym_isize] = ACTIONS(5848), + [anon_sym_usize] = ACTIONS(5848), + [anon_sym_f32] = ACTIONS(5848), + [anon_sym_f64] = ACTIONS(5848), + [anon_sym_c_char] = ACTIONS(5848), + [anon_sym_c_schar] = ACTIONS(5848), + [anon_sym_c_uchar] = ACTIONS(5848), + [anon_sym_c_short] = ACTIONS(5848), + [anon_sym_c_ushort] = ACTIONS(5848), + [anon_sym_c_int] = ACTIONS(5848), + [anon_sym_c_uint] = ACTIONS(5848), + [anon_sym_c_long] = ACTIONS(5848), + [anon_sym_c_ulong] = ACTIONS(5848), + [anon_sym_c_longlong] = ACTIONS(5848), + [anon_sym_c_ulonglong] = ACTIONS(5848), + [anon_sym_c_float] = ACTIONS(5848), + [anon_sym_c_double] = ACTIONS(5848), + [anon_sym_c_longdouble] = ACTIONS(5848), + [anon_sym_else] = ACTIONS(5848), + [anon_sym_DOT_DOT] = ACTIONS(5848), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5846), + [anon_sym_orelse] = ACTIONS(5848), + [anon_sym_or] = ACTIONS(5848), + [anon_sym_and] = ACTIONS(5848), + [anon_sym_EQ_EQ] = ACTIONS(5846), + [anon_sym_BANG_EQ] = ACTIONS(5846), + [anon_sym_LT] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_GT_EQ] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5846), + [anon_sym_xor] = ACTIONS(5848), + [anon_sym_LT_LT] = ACTIONS(5848), + [anon_sym_GT_GT] = ACTIONS(5846), + [anon_sym_LT_LT_PIPE] = ACTIONS(5846), + [anon_sym_PLUS] = ACTIONS(5846), + [anon_sym_SLASH] = ACTIONS(5846), + [anon_sym_catch] = ACTIONS(5848), + [anon_sym_DOT] = ACTIONS(5848), + [anon_sym_CARET] = ACTIONS(5846), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5846), + }, + [STATE(7136)] = { + [sym_identifier] = ACTIONS(5852), + [anon_sym_func] = ACTIONS(5852), + [anon_sym_c_func] = ACTIONS(5852), + [anon_sym_BANG] = ACTIONS(5852), + [anon_sym_struct] = ACTIONS(5852), + [anon_sym_LPAREN] = ACTIONS(5850), + [anon_sym_COMMA] = ACTIONS(5850), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5850), + [anon_sym_PIPE] = ACTIONS(5850), + [anon_sym_struct_type_BANG] = ACTIONS(5850), + [anon_sym_QMARK] = ACTIONS(5850), + [anon_sym_AT] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5850), + [anon_sym_LBRACK] = ACTIONS(5850), + [anon_sym_void] = ACTIONS(5852), + [anon_sym_noreturn] = ACTIONS(5852), + [anon_sym_type] = ACTIONS(5852), + [anon_sym_anyopaque] = ACTIONS(5852), + [anon_sym_bool] = ACTIONS(5852), + [anon_sym_int] = ACTIONS(5852), + [anon_sym_uint] = ACTIONS(5852), + [anon_sym_float] = ACTIONS(5852), + [anon_sym_range] = ACTIONS(5852), + [anon_sym_i8] = ACTIONS(5852), + [anon_sym_i16] = ACTIONS(5852), + [anon_sym_i32] = ACTIONS(5852), + [anon_sym_i64] = ACTIONS(5852), + [anon_sym_u8] = ACTIONS(5852), + [anon_sym_u16] = ACTIONS(5852), + [anon_sym_u32] = ACTIONS(5852), + [anon_sym_u64] = ACTIONS(5852), + [anon_sym_isize] = ACTIONS(5852), + [anon_sym_usize] = ACTIONS(5852), + [anon_sym_f32] = ACTIONS(5852), + [anon_sym_f64] = ACTIONS(5852), + [anon_sym_c_char] = ACTIONS(5852), + [anon_sym_c_schar] = ACTIONS(5852), + [anon_sym_c_uchar] = ACTIONS(5852), + [anon_sym_c_short] = ACTIONS(5852), + [anon_sym_c_ushort] = ACTIONS(5852), + [anon_sym_c_int] = ACTIONS(5852), + [anon_sym_c_uint] = ACTIONS(5852), + [anon_sym_c_long] = ACTIONS(5852), + [anon_sym_c_ulong] = ACTIONS(5852), + [anon_sym_c_longlong] = ACTIONS(5852), + [anon_sym_c_ulonglong] = ACTIONS(5852), + [anon_sym_c_float] = ACTIONS(5852), + [anon_sym_c_double] = ACTIONS(5852), + [anon_sym_c_longdouble] = ACTIONS(5852), + [anon_sym_else] = ACTIONS(5852), + [anon_sym_DOT_DOT] = ACTIONS(5852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5850), + [anon_sym_orelse] = ACTIONS(5852), + [anon_sym_or] = ACTIONS(5852), + [anon_sym_and] = ACTIONS(5852), + [anon_sym_EQ_EQ] = ACTIONS(5850), + [anon_sym_BANG_EQ] = ACTIONS(5850), + [anon_sym_LT] = ACTIONS(5852), + [anon_sym_LT_EQ] = ACTIONS(5850), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_GT_EQ] = ACTIONS(5850), + [anon_sym_AMP] = ACTIONS(5850), + [anon_sym_xor] = ACTIONS(5852), + [anon_sym_LT_LT] = ACTIONS(5852), + [anon_sym_GT_GT] = ACTIONS(5850), + [anon_sym_LT_LT_PIPE] = ACTIONS(5850), + [anon_sym_PLUS] = ACTIONS(5850), + [anon_sym_SLASH] = ACTIONS(5850), + [anon_sym_catch] = ACTIONS(5852), + [anon_sym_DOT] = ACTIONS(5852), + [anon_sym_CARET] = ACTIONS(5850), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5850), + }, + [STATE(7137)] = { + [sym_identifier] = ACTIONS(5944), + [anon_sym_func] = ACTIONS(5944), + [anon_sym_c_func] = ACTIONS(5944), + [anon_sym_BANG] = ACTIONS(5944), + [anon_sym_struct] = ACTIONS(5944), + [anon_sym_LPAREN] = ACTIONS(5942), + [anon_sym_COMMA] = ACTIONS(5942), + [anon_sym_RBRACE] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5942), + [anon_sym_PIPE] = ACTIONS(5942), + [anon_sym_struct_type_BANG] = ACTIONS(5942), + [anon_sym_QMARK] = ACTIONS(5942), + [anon_sym_AT] = ACTIONS(5942), + [anon_sym_STAR] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(5942), + [anon_sym_void] = ACTIONS(5944), + [anon_sym_noreturn] = ACTIONS(5944), + [anon_sym_type] = ACTIONS(5944), + [anon_sym_anyopaque] = ACTIONS(5944), + [anon_sym_bool] = ACTIONS(5944), + [anon_sym_int] = ACTIONS(5944), + [anon_sym_uint] = ACTIONS(5944), + [anon_sym_float] = ACTIONS(5944), + [anon_sym_range] = ACTIONS(5944), + [anon_sym_i8] = ACTIONS(5944), + [anon_sym_i16] = ACTIONS(5944), + [anon_sym_i32] = ACTIONS(5944), + [anon_sym_i64] = ACTIONS(5944), + [anon_sym_u8] = ACTIONS(5944), + [anon_sym_u16] = ACTIONS(5944), + [anon_sym_u32] = ACTIONS(5944), + [anon_sym_u64] = ACTIONS(5944), + [anon_sym_isize] = ACTIONS(5944), + [anon_sym_usize] = ACTIONS(5944), + [anon_sym_f32] = ACTIONS(5944), + [anon_sym_f64] = ACTIONS(5944), + [anon_sym_c_char] = ACTIONS(5944), + [anon_sym_c_schar] = ACTIONS(5944), + [anon_sym_c_uchar] = ACTIONS(5944), + [anon_sym_c_short] = ACTIONS(5944), + [anon_sym_c_ushort] = ACTIONS(5944), + [anon_sym_c_int] = ACTIONS(5944), + [anon_sym_c_uint] = ACTIONS(5944), + [anon_sym_c_long] = ACTIONS(5944), + [anon_sym_c_ulong] = ACTIONS(5944), + [anon_sym_c_longlong] = ACTIONS(5944), + [anon_sym_c_ulonglong] = ACTIONS(5944), + [anon_sym_c_float] = ACTIONS(5944), + [anon_sym_c_double] = ACTIONS(5944), + [anon_sym_c_longdouble] = ACTIONS(5944), + [anon_sym_else] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5942), + [anon_sym_orelse] = ACTIONS(5944), + [anon_sym_or] = ACTIONS(5944), + [anon_sym_and] = ACTIONS(5944), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_LT] = ACTIONS(5944), + [anon_sym_LT_EQ] = ACTIONS(5942), + [anon_sym_GT] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5942), + [anon_sym_AMP] = ACTIONS(5942), + [anon_sym_xor] = ACTIONS(5944), + [anon_sym_LT_LT] = ACTIONS(5944), + [anon_sym_GT_GT] = ACTIONS(5942), + [anon_sym_LT_LT_PIPE] = ACTIONS(5942), + [anon_sym_PLUS] = ACTIONS(5942), + [anon_sym_SLASH] = ACTIONS(5942), + [anon_sym_catch] = ACTIONS(5944), + [anon_sym_DOT] = ACTIONS(5944), + [anon_sym_CARET] = ACTIONS(5942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5942), + }, + [STATE(7138)] = { + [sym_identifier] = ACTIONS(5948), + [anon_sym_func] = ACTIONS(5948), + [anon_sym_c_func] = ACTIONS(5948), + [anon_sym_BANG] = ACTIONS(5948), + [anon_sym_struct] = ACTIONS(5948), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_COMMA] = ACTIONS(5946), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5946), + [anon_sym_PIPE] = ACTIONS(5946), + [anon_sym_struct_type_BANG] = ACTIONS(5946), + [anon_sym_QMARK] = ACTIONS(5946), + [anon_sym_AT] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_void] = ACTIONS(5948), + [anon_sym_noreturn] = ACTIONS(5948), + [anon_sym_type] = ACTIONS(5948), + [anon_sym_anyopaque] = ACTIONS(5948), + [anon_sym_bool] = ACTIONS(5948), + [anon_sym_int] = ACTIONS(5948), + [anon_sym_uint] = ACTIONS(5948), + [anon_sym_float] = ACTIONS(5948), + [anon_sym_range] = ACTIONS(5948), + [anon_sym_i8] = ACTIONS(5948), + [anon_sym_i16] = ACTIONS(5948), + [anon_sym_i32] = ACTIONS(5948), + [anon_sym_i64] = ACTIONS(5948), + [anon_sym_u8] = ACTIONS(5948), + [anon_sym_u16] = ACTIONS(5948), + [anon_sym_u32] = ACTIONS(5948), + [anon_sym_u64] = ACTIONS(5948), + [anon_sym_isize] = ACTIONS(5948), + [anon_sym_usize] = ACTIONS(5948), + [anon_sym_f32] = ACTIONS(5948), + [anon_sym_f64] = ACTIONS(5948), + [anon_sym_c_char] = ACTIONS(5948), + [anon_sym_c_schar] = ACTIONS(5948), + [anon_sym_c_uchar] = ACTIONS(5948), + [anon_sym_c_short] = ACTIONS(5948), + [anon_sym_c_ushort] = ACTIONS(5948), + [anon_sym_c_int] = ACTIONS(5948), + [anon_sym_c_uint] = ACTIONS(5948), + [anon_sym_c_long] = ACTIONS(5948), + [anon_sym_c_ulong] = ACTIONS(5948), + [anon_sym_c_longlong] = ACTIONS(5948), + [anon_sym_c_ulonglong] = ACTIONS(5948), + [anon_sym_c_float] = ACTIONS(5948), + [anon_sym_c_double] = ACTIONS(5948), + [anon_sym_c_longdouble] = ACTIONS(5948), + [anon_sym_else] = ACTIONS(5948), + [anon_sym_DOT_DOT] = ACTIONS(5948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_orelse] = ACTIONS(5948), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5946), + [anon_sym_BANG_EQ] = ACTIONS(5946), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_EQ] = ACTIONS(5946), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5946), + [anon_sym_AMP] = ACTIONS(5946), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_LT_LT_PIPE] = ACTIONS(5946), + [anon_sym_PLUS] = ACTIONS(5946), + [anon_sym_SLASH] = ACTIONS(5946), + [anon_sym_catch] = ACTIONS(5948), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5946), + }, + [STATE(7139)] = { + [sym_identifier] = ACTIONS(5952), + [anon_sym_func] = ACTIONS(5952), + [anon_sym_c_func] = ACTIONS(5952), + [anon_sym_BANG] = ACTIONS(5952), + [anon_sym_struct] = ACTIONS(5952), + [anon_sym_LPAREN] = ACTIONS(5950), + [anon_sym_COMMA] = ACTIONS(5950), + [anon_sym_RBRACE] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5950), + [anon_sym_struct_type_BANG] = ACTIONS(5950), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_AT] = ACTIONS(5950), + [anon_sym_STAR] = ACTIONS(5950), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_void] = ACTIONS(5952), + [anon_sym_noreturn] = ACTIONS(5952), + [anon_sym_type] = ACTIONS(5952), + [anon_sym_anyopaque] = ACTIONS(5952), + [anon_sym_bool] = ACTIONS(5952), + [anon_sym_int] = ACTIONS(5952), + [anon_sym_uint] = ACTIONS(5952), + [anon_sym_float] = ACTIONS(5952), + [anon_sym_range] = ACTIONS(5952), + [anon_sym_i8] = ACTIONS(5952), + [anon_sym_i16] = ACTIONS(5952), + [anon_sym_i32] = ACTIONS(5952), + [anon_sym_i64] = ACTIONS(5952), + [anon_sym_u8] = ACTIONS(5952), + [anon_sym_u16] = ACTIONS(5952), + [anon_sym_u32] = ACTIONS(5952), + [anon_sym_u64] = ACTIONS(5952), + [anon_sym_isize] = ACTIONS(5952), + [anon_sym_usize] = ACTIONS(5952), + [anon_sym_f32] = ACTIONS(5952), + [anon_sym_f64] = ACTIONS(5952), + [anon_sym_c_char] = ACTIONS(5952), + [anon_sym_c_schar] = ACTIONS(5952), + [anon_sym_c_uchar] = ACTIONS(5952), + [anon_sym_c_short] = ACTIONS(5952), + [anon_sym_c_ushort] = ACTIONS(5952), + [anon_sym_c_int] = ACTIONS(5952), + [anon_sym_c_uint] = ACTIONS(5952), + [anon_sym_c_long] = ACTIONS(5952), + [anon_sym_c_ulong] = ACTIONS(5952), + [anon_sym_c_longlong] = ACTIONS(5952), + [anon_sym_c_ulonglong] = ACTIONS(5952), + [anon_sym_c_float] = ACTIONS(5952), + [anon_sym_c_double] = ACTIONS(5952), + [anon_sym_c_longdouble] = ACTIONS(5952), + [anon_sym_else] = ACTIONS(5952), + [anon_sym_DOT_DOT] = ACTIONS(5952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5950), + [anon_sym_orelse] = ACTIONS(5952), + [anon_sym_or] = ACTIONS(5952), + [anon_sym_and] = ACTIONS(5952), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_LT] = ACTIONS(5952), + [anon_sym_LT_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5952), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_xor] = ACTIONS(5952), + [anon_sym_LT_LT] = ACTIONS(5952), + [anon_sym_GT_GT] = ACTIONS(5950), + [anon_sym_LT_LT_PIPE] = ACTIONS(5950), + [anon_sym_PLUS] = ACTIONS(5950), + [anon_sym_SLASH] = ACTIONS(5950), + [anon_sym_catch] = ACTIONS(5952), + [anon_sym_DOT] = ACTIONS(5952), + [anon_sym_CARET] = ACTIONS(5950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5950), + }, + [STATE(7140)] = { + [sym_identifier] = ACTIONS(4490), + [anon_sym_func] = ACTIONS(4490), + [anon_sym_c_func] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_PIPE] = ACTIONS(4488), + [anon_sym_struct_type_BANG] = ACTIONS(4488), + [anon_sym_QMARK] = ACTIONS(4488), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_void] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym_type] = ACTIONS(4490), + [anon_sym_anyopaque] = ACTIONS(4490), + [anon_sym_bool] = ACTIONS(4490), + [anon_sym_int] = ACTIONS(4490), + [anon_sym_uint] = ACTIONS(4490), + [anon_sym_float] = ACTIONS(4490), + [anon_sym_range] = ACTIONS(4490), + [anon_sym_i8] = ACTIONS(4490), + [anon_sym_i16] = ACTIONS(4490), + [anon_sym_i32] = ACTIONS(4490), + [anon_sym_i64] = ACTIONS(4490), + [anon_sym_u8] = ACTIONS(4490), + [anon_sym_u16] = ACTIONS(4490), + [anon_sym_u32] = ACTIONS(4490), + [anon_sym_u64] = ACTIONS(4490), + [anon_sym_isize] = ACTIONS(4490), + [anon_sym_usize] = ACTIONS(4490), + [anon_sym_f32] = ACTIONS(4490), + [anon_sym_f64] = ACTIONS(4490), + [anon_sym_c_char] = ACTIONS(4490), + [anon_sym_c_schar] = ACTIONS(4490), + [anon_sym_c_uchar] = ACTIONS(4490), + [anon_sym_c_short] = ACTIONS(4490), + [anon_sym_c_ushort] = ACTIONS(4490), + [anon_sym_c_int] = ACTIONS(4490), + [anon_sym_c_uint] = ACTIONS(4490), + [anon_sym_c_long] = ACTIONS(4490), + [anon_sym_c_ulong] = ACTIONS(4490), + [anon_sym_c_longlong] = ACTIONS(4490), + [anon_sym_c_ulonglong] = ACTIONS(4490), + [anon_sym_c_float] = ACTIONS(4490), + [anon_sym_c_double] = ACTIONS(4490), + [anon_sym_c_longdouble] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(11300), + [anon_sym_else] = ACTIONS(4490), + [anon_sym_DOT_DOT] = ACTIONS(4490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4488), + [anon_sym_orelse] = ACTIONS(4490), + [anon_sym_or] = ACTIONS(4490), + [anon_sym_and] = ACTIONS(4490), + [anon_sym_EQ_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4488), + [anon_sym_LT] = ACTIONS(4490), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT] = ACTIONS(4490), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_xor] = ACTIONS(4490), + [anon_sym_LT_LT] = ACTIONS(4490), + [anon_sym_GT_GT] = ACTIONS(4488), + [anon_sym_LT_LT_PIPE] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4488), + [anon_sym_SLASH] = ACTIONS(4488), + [anon_sym_catch] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4488), + }, + [STATE(7141)] = { + [sym_identifier] = ACTIONS(4496), + [anon_sym_func] = ACTIONS(4496), + [anon_sym_c_func] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4494), + [anon_sym_COMMA] = ACTIONS(4494), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_PIPE] = ACTIONS(4494), + [anon_sym_struct_type_BANG] = ACTIONS(4494), + [anon_sym_QMARK] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_LBRACK] = ACTIONS(4494), + [anon_sym_void] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_anyopaque] = ACTIONS(4496), + [anon_sym_bool] = ACTIONS(4496), + [anon_sym_int] = ACTIONS(4496), + [anon_sym_uint] = ACTIONS(4496), + [anon_sym_float] = ACTIONS(4496), + [anon_sym_range] = ACTIONS(4496), + [anon_sym_i8] = ACTIONS(4496), + [anon_sym_i16] = ACTIONS(4496), + [anon_sym_i32] = ACTIONS(4496), + [anon_sym_i64] = ACTIONS(4496), + [anon_sym_u8] = ACTIONS(4496), + [anon_sym_u16] = ACTIONS(4496), + [anon_sym_u32] = ACTIONS(4496), + [anon_sym_u64] = ACTIONS(4496), + [anon_sym_isize] = ACTIONS(4496), + [anon_sym_usize] = ACTIONS(4496), + [anon_sym_f32] = ACTIONS(4496), + [anon_sym_f64] = ACTIONS(4496), + [anon_sym_c_char] = ACTIONS(4496), + [anon_sym_c_schar] = ACTIONS(4496), + [anon_sym_c_uchar] = ACTIONS(4496), + [anon_sym_c_short] = ACTIONS(4496), + [anon_sym_c_ushort] = ACTIONS(4496), + [anon_sym_c_int] = ACTIONS(4496), + [anon_sym_c_uint] = ACTIONS(4496), + [anon_sym_c_long] = ACTIONS(4496), + [anon_sym_c_ulong] = ACTIONS(4496), + [anon_sym_c_longlong] = ACTIONS(4496), + [anon_sym_c_ulonglong] = ACTIONS(4496), + [anon_sym_c_float] = ACTIONS(4496), + [anon_sym_c_double] = ACTIONS(4496), + [anon_sym_c_longdouble] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(11302), + [anon_sym_else] = ACTIONS(4496), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4494), + [anon_sym_orelse] = ACTIONS(4496), + [anon_sym_or] = ACTIONS(4496), + [anon_sym_and] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_LT] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4494), + [anon_sym_xor] = ACTIONS(4496), + [anon_sym_LT_LT] = ACTIONS(4496), + [anon_sym_GT_GT] = ACTIONS(4494), + [anon_sym_LT_LT_PIPE] = ACTIONS(4494), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_catch] = ACTIONS(4496), + [anon_sym_DOT] = ACTIONS(4496), + [anon_sym_CARET] = ACTIONS(4494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4494), + }, + [STATE(7142)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(7143)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(7144)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(7145)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_c_func] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(7146)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2692), + [anon_sym_func] = ACTIONS(2692), + [anon_sym_c_func] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_noreturn] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_anyopaque] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_int] = ACTIONS(2692), + [anon_sym_uint] = ACTIONS(2692), + [anon_sym_float] = ACTIONS(2692), + [anon_sym_range] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_c_char] = ACTIONS(2692), + [anon_sym_c_schar] = ACTIONS(2692), + [anon_sym_c_uchar] = ACTIONS(2692), + [anon_sym_c_short] = ACTIONS(2692), + [anon_sym_c_ushort] = ACTIONS(2692), + [anon_sym_c_int] = ACTIONS(2692), + [anon_sym_c_uint] = ACTIONS(2692), + [anon_sym_c_long] = ACTIONS(2692), + [anon_sym_c_ulong] = ACTIONS(2692), + [anon_sym_c_longlong] = ACTIONS(2692), + [anon_sym_c_ulonglong] = ACTIONS(2692), + [anon_sym_c_float] = ACTIONS(2692), + [anon_sym_c_double] = ACTIONS(2692), + [anon_sym_c_longdouble] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2690), + [anon_sym_orelse] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [anon_sym_and] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2690), + }, + [STATE(7147)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(7148)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [anon_sym_and] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_xor] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2670), + [anon_sym_LT_LT_PIPE] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(7149)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_c_func] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(7150)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(7151)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(7152)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(7153)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_c_func] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2706), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(7154)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2708), + [anon_sym_func] = ACTIONS(2708), + [anon_sym_c_func] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2706), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_noreturn] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_anyopaque] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_int] = ACTIONS(2708), + [anon_sym_uint] = ACTIONS(2708), + [anon_sym_float] = ACTIONS(2708), + [anon_sym_range] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_c_char] = ACTIONS(2708), + [anon_sym_c_schar] = ACTIONS(2708), + [anon_sym_c_uchar] = ACTIONS(2708), + [anon_sym_c_short] = ACTIONS(2708), + [anon_sym_c_ushort] = ACTIONS(2708), + [anon_sym_c_int] = ACTIONS(2708), + [anon_sym_c_uint] = ACTIONS(2708), + [anon_sym_c_long] = ACTIONS(2708), + [anon_sym_c_ulong] = ACTIONS(2708), + [anon_sym_c_longlong] = ACTIONS(2708), + [anon_sym_c_ulonglong] = ACTIONS(2708), + [anon_sym_c_float] = ACTIONS(2708), + [anon_sym_c_double] = ACTIONS(2708), + [anon_sym_c_longdouble] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_orelse] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_and] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2706), + }, + [STATE(7155)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(7156)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(7157)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_c_func] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(7158)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_c_func] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(7159)] = { + [aux_sym_import_declaration_repeat1] = STATE(14334), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_c_func] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4392), + [anon_sym_struct_type_BANG] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(11324), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4392), + [anon_sym_SLASH] = ACTIONS(4392), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11326), + }, + [STATE(7160)] = { + [aux_sym_import_declaration_repeat1] = STATE(14335), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_c_func] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4404), + [anon_sym_struct_type_BANG] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(11329), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4404), + [anon_sym_SLASH] = ACTIONS(4404), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11331), + }, + [STATE(7161)] = { + [aux_sym_import_declaration_repeat1] = STATE(14336), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_c_func] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4426), + [anon_sym_struct_type_BANG] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_else] = ACTIONS(11334), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_SLASH] = ACTIONS(4426), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11336), + }, + [STATE(7162)] = { + [sym_identifier] = ACTIONS(2903), + [anon_sym_func] = ACTIONS(2903), + [anon_sym_c_func] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_struct_type_BANG] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_anyopaque] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), + [anon_sym_float] = ACTIONS(2903), + [anon_sym_range] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_c_char] = ACTIONS(2903), + [anon_sym_c_schar] = ACTIONS(2903), + [anon_sym_c_uchar] = ACTIONS(2903), + [anon_sym_c_short] = ACTIONS(2903), + [anon_sym_c_ushort] = ACTIONS(2903), + [anon_sym_c_int] = ACTIONS(2903), + [anon_sym_c_uint] = ACTIONS(2903), + [anon_sym_c_long] = ACTIONS(2903), + [anon_sym_c_ulong] = ACTIONS(2903), + [anon_sym_c_longlong] = ACTIONS(2903), + [anon_sym_c_ulonglong] = ACTIONS(2903), + [anon_sym_c_float] = ACTIONS(2903), + [anon_sym_c_double] = ACTIONS(2903), + [anon_sym_c_longdouble] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2901), + [anon_sym_orelse] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [anon_sym_and] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_xor] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_LT_LT_PIPE] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_catch] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2901), + }, + [STATE(7163)] = { + [aux_sym_import_declaration_repeat1] = STATE(14338), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_c_func] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_COMMA] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4456), + [anon_sym_struct_type_BANG] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_AT] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(11339), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_SLASH] = ACTIONS(4456), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11341), + }, + [STATE(7164)] = { + [aux_sym_import_declaration_repeat1] = STATE(14339), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_c_func] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_struct_type_BANG] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(11344), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_SLASH] = ACTIONS(4474), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11346), + }, + [STATE(7165)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_c_func] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(7166)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_c_func] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(5706), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(5706), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_else] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(11349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(11351), + [anon_sym_orelse] = ACTIONS(11353), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(11355), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(7167)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2647), + [anon_sym_func] = ACTIONS(2647), + [anon_sym_c_func] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_struct_type_BANG] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_anyopaque] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), + [anon_sym_float] = ACTIONS(2647), + [anon_sym_range] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_c_char] = ACTIONS(2647), + [anon_sym_c_schar] = ACTIONS(2647), + [anon_sym_c_uchar] = ACTIONS(2647), + [anon_sym_c_short] = ACTIONS(2647), + [anon_sym_c_ushort] = ACTIONS(2647), + [anon_sym_c_int] = ACTIONS(2647), + [anon_sym_c_uint] = ACTIONS(2647), + [anon_sym_c_long] = ACTIONS(2647), + [anon_sym_c_ulong] = ACTIONS(2647), + [anon_sym_c_longlong] = ACTIONS(2647), + [anon_sym_c_ulonglong] = ACTIONS(2647), + [anon_sym_c_float] = ACTIONS(2647), + [anon_sym_c_double] = ACTIONS(2647), + [anon_sym_c_longdouble] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2645), + [anon_sym_orelse] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_xor] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_PIPE] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2645), + }, + [STATE(7168)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(11353), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(11355), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(7169)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(11353), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(11355), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(7170)] = { + [sym_identifier] = ACTIONS(6052), + [anon_sym_func] = ACTIONS(6052), + [anon_sym_c_func] = ACTIONS(6052), + [anon_sym_BANG] = ACTIONS(6052), + [anon_sym_struct] = ACTIONS(6052), + [anon_sym_LPAREN] = ACTIONS(6050), + [anon_sym_COMMA] = ACTIONS(6050), + [anon_sym_RBRACE] = ACTIONS(6050), + [anon_sym_DASH] = ACTIONS(6050), + [anon_sym_PIPE] = ACTIONS(6050), + [anon_sym_struct_type_BANG] = ACTIONS(6050), + [anon_sym_QMARK] = ACTIONS(6050), + [anon_sym_AT] = ACTIONS(6050), + [anon_sym_STAR] = ACTIONS(6050), + [anon_sym_LBRACK] = ACTIONS(6050), + [anon_sym_void] = ACTIONS(6052), + [anon_sym_noreturn] = ACTIONS(6052), + [anon_sym_type] = ACTIONS(6052), + [anon_sym_anyopaque] = ACTIONS(6052), + [anon_sym_bool] = ACTIONS(6052), + [anon_sym_int] = ACTIONS(6052), + [anon_sym_uint] = ACTIONS(6052), + [anon_sym_float] = ACTIONS(6052), + [anon_sym_range] = ACTIONS(6052), + [anon_sym_i8] = ACTIONS(6052), + [anon_sym_i16] = ACTIONS(6052), + [anon_sym_i32] = ACTIONS(6052), + [anon_sym_i64] = ACTIONS(6052), + [anon_sym_u8] = ACTIONS(6052), + [anon_sym_u16] = ACTIONS(6052), + [anon_sym_u32] = ACTIONS(6052), + [anon_sym_u64] = ACTIONS(6052), + [anon_sym_isize] = ACTIONS(6052), + [anon_sym_usize] = ACTIONS(6052), + [anon_sym_f32] = ACTIONS(6052), + [anon_sym_f64] = ACTIONS(6052), + [anon_sym_c_char] = ACTIONS(6052), + [anon_sym_c_schar] = ACTIONS(6052), + [anon_sym_c_uchar] = ACTIONS(6052), + [anon_sym_c_short] = ACTIONS(6052), + [anon_sym_c_ushort] = ACTIONS(6052), + [anon_sym_c_int] = ACTIONS(6052), + [anon_sym_c_uint] = ACTIONS(6052), + [anon_sym_c_long] = ACTIONS(6052), + [anon_sym_c_ulong] = ACTIONS(6052), + [anon_sym_c_longlong] = ACTIONS(6052), + [anon_sym_c_ulonglong] = ACTIONS(6052), + [anon_sym_c_float] = ACTIONS(6052), + [anon_sym_c_double] = ACTIONS(6052), + [anon_sym_c_longdouble] = ACTIONS(6052), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_DOT_DOT] = ACTIONS(6052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6050), + [anon_sym_orelse] = ACTIONS(6052), + [anon_sym_or] = ACTIONS(6052), + [anon_sym_and] = ACTIONS(6052), + [anon_sym_EQ_EQ] = ACTIONS(6050), + [anon_sym_BANG_EQ] = ACTIONS(6050), + [anon_sym_LT] = ACTIONS(6052), + [anon_sym_LT_EQ] = ACTIONS(6050), + [anon_sym_GT] = ACTIONS(6052), + [anon_sym_GT_EQ] = ACTIONS(6050), + [anon_sym_AMP] = ACTIONS(6050), + [anon_sym_xor] = ACTIONS(6052), + [anon_sym_LT_LT] = ACTIONS(6052), + [anon_sym_GT_GT] = ACTIONS(6050), + [anon_sym_LT_LT_PIPE] = ACTIONS(6050), + [anon_sym_PLUS] = ACTIONS(6050), + [anon_sym_SLASH] = ACTIONS(6050), + [anon_sym_catch] = ACTIONS(6052), + [anon_sym_DOT] = ACTIONS(6052), + [anon_sym_CARET] = ACTIONS(6050), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6050), + }, + [STATE(7171)] = { + [sym_identifier] = ACTIONS(5780), + [anon_sym_func] = ACTIONS(5780), + [anon_sym_c_func] = ACTIONS(5780), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_struct] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_COMMA] = ACTIONS(5784), + [anon_sym_RBRACE] = ACTIONS(5784), + [anon_sym_DASH] = ACTIONS(5784), + [anon_sym_PIPE] = ACTIONS(5784), + [anon_sym_struct_type_BANG] = ACTIONS(5784), + [anon_sym_QMARK] = ACTIONS(5784), + [anon_sym_AT] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5784), + [anon_sym_LBRACK] = ACTIONS(5784), + [anon_sym_void] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym_type] = ACTIONS(5780), + [anon_sym_anyopaque] = ACTIONS(5780), + [anon_sym_bool] = ACTIONS(5780), + [anon_sym_int] = ACTIONS(5780), + [anon_sym_uint] = ACTIONS(5780), + [anon_sym_float] = ACTIONS(5780), + [anon_sym_range] = ACTIONS(5780), + [anon_sym_i8] = ACTIONS(5780), + [anon_sym_i16] = ACTIONS(5780), + [anon_sym_i32] = ACTIONS(5780), + [anon_sym_i64] = ACTIONS(5780), + [anon_sym_u8] = ACTIONS(5780), + [anon_sym_u16] = ACTIONS(5780), + [anon_sym_u32] = ACTIONS(5780), + [anon_sym_u64] = ACTIONS(5780), + [anon_sym_isize] = ACTIONS(5780), + [anon_sym_usize] = ACTIONS(5780), + [anon_sym_f32] = ACTIONS(5780), + [anon_sym_f64] = ACTIONS(5780), + [anon_sym_c_char] = ACTIONS(5780), + [anon_sym_c_schar] = ACTIONS(5780), + [anon_sym_c_uchar] = ACTIONS(5780), + [anon_sym_c_short] = ACTIONS(5780), + [anon_sym_c_ushort] = ACTIONS(5780), + [anon_sym_c_int] = ACTIONS(5780), + [anon_sym_c_uint] = ACTIONS(5780), + [anon_sym_c_long] = ACTIONS(5780), + [anon_sym_c_ulong] = ACTIONS(5780), + [anon_sym_c_longlong] = ACTIONS(5780), + [anon_sym_c_ulonglong] = ACTIONS(5780), + [anon_sym_c_float] = ACTIONS(5780), + [anon_sym_c_double] = ACTIONS(5780), + [anon_sym_c_longdouble] = ACTIONS(5780), + [anon_sym_else] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5784), + [anon_sym_orelse] = ACTIONS(5780), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5784), + [anon_sym_BANG_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5784), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5784), + [anon_sym_LT_LT_PIPE] = ACTIONS(5784), + [anon_sym_PLUS] = ACTIONS(5784), + [anon_sym_SLASH] = ACTIONS(5784), + [anon_sym_catch] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5784), + }, + [STATE(7172)] = { + [sym_identifier] = ACTIONS(5650), + [anon_sym_func] = ACTIONS(5650), + [anon_sym_c_func] = ACTIONS(5650), + [anon_sym_BANG] = ACTIONS(5650), + [anon_sym_struct] = ACTIONS(5650), + [anon_sym_LPAREN] = ACTIONS(5648), + [anon_sym_COMMA] = ACTIONS(5648), + [anon_sym_RBRACE] = ACTIONS(5648), + [anon_sym_DASH] = ACTIONS(5648), + [anon_sym_PIPE] = ACTIONS(5648), + [anon_sym_struct_type_BANG] = ACTIONS(5648), + [anon_sym_QMARK] = ACTIONS(5648), + [anon_sym_AT] = ACTIONS(5648), + [anon_sym_STAR] = ACTIONS(5648), + [anon_sym_LBRACK] = ACTIONS(5648), + [anon_sym_void] = ACTIONS(5650), + [anon_sym_noreturn] = ACTIONS(5650), + [anon_sym_type] = ACTIONS(5650), + [anon_sym_anyopaque] = ACTIONS(5650), + [anon_sym_bool] = ACTIONS(5650), + [anon_sym_int] = ACTIONS(5650), + [anon_sym_uint] = ACTIONS(5650), + [anon_sym_float] = ACTIONS(5650), + [anon_sym_range] = ACTIONS(5650), + [anon_sym_i8] = ACTIONS(5650), + [anon_sym_i16] = ACTIONS(5650), + [anon_sym_i32] = ACTIONS(5650), + [anon_sym_i64] = ACTIONS(5650), + [anon_sym_u8] = ACTIONS(5650), + [anon_sym_u16] = ACTIONS(5650), + [anon_sym_u32] = ACTIONS(5650), + [anon_sym_u64] = ACTIONS(5650), + [anon_sym_isize] = ACTIONS(5650), + [anon_sym_usize] = ACTIONS(5650), + [anon_sym_f32] = ACTIONS(5650), + [anon_sym_f64] = ACTIONS(5650), + [anon_sym_c_char] = ACTIONS(5650), + [anon_sym_c_schar] = ACTIONS(5650), + [anon_sym_c_uchar] = ACTIONS(5650), + [anon_sym_c_short] = ACTIONS(5650), + [anon_sym_c_ushort] = ACTIONS(5650), + [anon_sym_c_int] = ACTIONS(5650), + [anon_sym_c_uint] = ACTIONS(5650), + [anon_sym_c_long] = ACTIONS(5650), + [anon_sym_c_ulong] = ACTIONS(5650), + [anon_sym_c_longlong] = ACTIONS(5650), + [anon_sym_c_ulonglong] = ACTIONS(5650), + [anon_sym_c_float] = ACTIONS(5650), + [anon_sym_c_double] = ACTIONS(5650), + [anon_sym_c_longdouble] = ACTIONS(5650), + [anon_sym_else] = ACTIONS(5650), + [anon_sym_DOT_DOT] = ACTIONS(5650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5648), + [anon_sym_orelse] = ACTIONS(5650), + [anon_sym_or] = ACTIONS(5650), + [anon_sym_and] = ACTIONS(5650), + [anon_sym_EQ_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_EQ] = ACTIONS(5648), + [anon_sym_GT] = ACTIONS(5650), + [anon_sym_GT_EQ] = ACTIONS(5648), + [anon_sym_AMP] = ACTIONS(5648), + [anon_sym_xor] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5650), + [anon_sym_GT_GT] = ACTIONS(5648), + [anon_sym_LT_LT_PIPE] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5648), + [anon_sym_SLASH] = ACTIONS(5648), + [anon_sym_catch] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5650), + [anon_sym_CARET] = ACTIONS(5648), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5648), + }, + [STATE(7173)] = { + [sym_identifier] = ACTIONS(5654), + [anon_sym_func] = ACTIONS(5654), + [anon_sym_c_func] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5654), + [anon_sym_struct] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5652), + [anon_sym_COMMA] = ACTIONS(5652), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_PIPE] = ACTIONS(5652), + [anon_sym_struct_type_BANG] = ACTIONS(5652), + [anon_sym_QMARK] = ACTIONS(5652), + [anon_sym_AT] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5652), + [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_void] = ACTIONS(5654), + [anon_sym_noreturn] = ACTIONS(5654), + [anon_sym_type] = ACTIONS(5654), + [anon_sym_anyopaque] = ACTIONS(5654), + [anon_sym_bool] = ACTIONS(5654), + [anon_sym_int] = ACTIONS(5654), + [anon_sym_uint] = ACTIONS(5654), + [anon_sym_float] = ACTIONS(5654), + [anon_sym_range] = ACTIONS(5654), + [anon_sym_i8] = ACTIONS(5654), + [anon_sym_i16] = ACTIONS(5654), + [anon_sym_i32] = ACTIONS(5654), + [anon_sym_i64] = ACTIONS(5654), + [anon_sym_u8] = ACTIONS(5654), + [anon_sym_u16] = ACTIONS(5654), + [anon_sym_u32] = ACTIONS(5654), + [anon_sym_u64] = ACTIONS(5654), + [anon_sym_isize] = ACTIONS(5654), + [anon_sym_usize] = ACTIONS(5654), + [anon_sym_f32] = ACTIONS(5654), + [anon_sym_f64] = ACTIONS(5654), + [anon_sym_c_char] = ACTIONS(5654), + [anon_sym_c_schar] = ACTIONS(5654), + [anon_sym_c_uchar] = ACTIONS(5654), + [anon_sym_c_short] = ACTIONS(5654), + [anon_sym_c_ushort] = ACTIONS(5654), + [anon_sym_c_int] = ACTIONS(5654), + [anon_sym_c_uint] = ACTIONS(5654), + [anon_sym_c_long] = ACTIONS(5654), + [anon_sym_c_ulong] = ACTIONS(5654), + [anon_sym_c_longlong] = ACTIONS(5654), + [anon_sym_c_ulonglong] = ACTIONS(5654), + [anon_sym_c_float] = ACTIONS(5654), + [anon_sym_c_double] = ACTIONS(5654), + [anon_sym_c_longdouble] = ACTIONS(5654), + [anon_sym_else] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5652), + [anon_sym_orelse] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_EQ_EQ] = ACTIONS(5652), + [anon_sym_BANG_EQ] = ACTIONS(5652), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5652), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5652), + [anon_sym_AMP] = ACTIONS(5652), + [anon_sym_xor] = ACTIONS(5654), + [anon_sym_LT_LT] = ACTIONS(5654), + [anon_sym_GT_GT] = ACTIONS(5652), + [anon_sym_LT_LT_PIPE] = ACTIONS(5652), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_SLASH] = ACTIONS(5652), + [anon_sym_catch] = ACTIONS(5654), + [anon_sym_DOT] = ACTIONS(5654), + [anon_sym_CARET] = ACTIONS(5652), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5652), + }, + [STATE(7174)] = { + [sym_identifier] = ACTIONS(4514), + [anon_sym_func] = ACTIONS(4514), + [anon_sym_c_func] = ACTIONS(4514), + [anon_sym_BANG] = ACTIONS(4514), + [anon_sym_struct] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_COMMA] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4512), + [anon_sym_PIPE] = ACTIONS(4512), + [anon_sym_struct_type_BANG] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_AT] = ACTIONS(4512), + [anon_sym_STAR] = ACTIONS(4512), + [anon_sym_LBRACK] = ACTIONS(4512), + [anon_sym_void] = ACTIONS(4514), + [anon_sym_noreturn] = ACTIONS(4514), + [anon_sym_type] = ACTIONS(4514), + [anon_sym_anyopaque] = ACTIONS(4514), + [anon_sym_bool] = ACTIONS(4514), + [anon_sym_int] = ACTIONS(4514), + [anon_sym_uint] = ACTIONS(4514), + [anon_sym_float] = ACTIONS(4514), + [anon_sym_range] = ACTIONS(4514), + [anon_sym_i8] = ACTIONS(4514), + [anon_sym_i16] = ACTIONS(4514), + [anon_sym_i32] = ACTIONS(4514), + [anon_sym_i64] = ACTIONS(4514), + [anon_sym_u8] = ACTIONS(4514), + [anon_sym_u16] = ACTIONS(4514), + [anon_sym_u32] = ACTIONS(4514), + [anon_sym_u64] = ACTIONS(4514), + [anon_sym_isize] = ACTIONS(4514), + [anon_sym_usize] = ACTIONS(4514), + [anon_sym_f32] = ACTIONS(4514), + [anon_sym_f64] = ACTIONS(4514), + [anon_sym_c_char] = ACTIONS(4514), + [anon_sym_c_schar] = ACTIONS(4514), + [anon_sym_c_uchar] = ACTIONS(4514), + [anon_sym_c_short] = ACTIONS(4514), + [anon_sym_c_ushort] = ACTIONS(4514), + [anon_sym_c_int] = ACTIONS(4514), + [anon_sym_c_uint] = ACTIONS(4514), + [anon_sym_c_long] = ACTIONS(4514), + [anon_sym_c_ulong] = ACTIONS(4514), + [anon_sym_c_longlong] = ACTIONS(4514), + [anon_sym_c_ulonglong] = ACTIONS(4514), + [anon_sym_c_float] = ACTIONS(4514), + [anon_sym_c_double] = ACTIONS(4514), + [anon_sym_c_longdouble] = ACTIONS(4514), + [anon_sym_else] = ACTIONS(4514), + [anon_sym_DOT_DOT] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4512), + [anon_sym_orelse] = ACTIONS(4514), + [anon_sym_or] = ACTIONS(4514), + [anon_sym_and] = ACTIONS(4514), + [anon_sym_EQ_EQ] = ACTIONS(4512), + [anon_sym_BANG_EQ] = ACTIONS(4512), + [anon_sym_LT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4512), + [anon_sym_GT] = ACTIONS(4514), + [anon_sym_GT_EQ] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4512), + [anon_sym_xor] = ACTIONS(4514), + [anon_sym_LT_LT] = ACTIONS(4514), + [anon_sym_GT_GT] = ACTIONS(4512), + [anon_sym_LT_LT_PIPE] = ACTIONS(4512), + [anon_sym_PLUS] = ACTIONS(4512), + [anon_sym_SLASH] = ACTIONS(4512), + [anon_sym_catch] = ACTIONS(4514), + [anon_sym_DOT] = ACTIONS(4514), + [anon_sym_CARET] = ACTIONS(4512), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4512), + }, + [STATE(7175)] = { + [sym_identifier] = ACTIONS(5666), + [anon_sym_func] = ACTIONS(5666), + [anon_sym_c_func] = ACTIONS(5666), + [anon_sym_BANG] = ACTIONS(5666), + [anon_sym_struct] = ACTIONS(5666), + [anon_sym_LPAREN] = ACTIONS(5664), + [anon_sym_COMMA] = ACTIONS(5664), + [anon_sym_RBRACE] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5664), + [anon_sym_PIPE] = ACTIONS(5664), + [anon_sym_struct_type_BANG] = ACTIONS(5664), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_AT] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_LBRACK] = ACTIONS(5664), + [anon_sym_void] = ACTIONS(5666), + [anon_sym_noreturn] = ACTIONS(5666), + [anon_sym_type] = ACTIONS(5666), + [anon_sym_anyopaque] = ACTIONS(5666), + [anon_sym_bool] = ACTIONS(5666), + [anon_sym_int] = ACTIONS(5666), + [anon_sym_uint] = ACTIONS(5666), + [anon_sym_float] = ACTIONS(5666), + [anon_sym_range] = ACTIONS(5666), + [anon_sym_i8] = ACTIONS(5666), + [anon_sym_i16] = ACTIONS(5666), + [anon_sym_i32] = ACTIONS(5666), + [anon_sym_i64] = ACTIONS(5666), + [anon_sym_u8] = ACTIONS(5666), + [anon_sym_u16] = ACTIONS(5666), + [anon_sym_u32] = ACTIONS(5666), + [anon_sym_u64] = ACTIONS(5666), + [anon_sym_isize] = ACTIONS(5666), + [anon_sym_usize] = ACTIONS(5666), + [anon_sym_f32] = ACTIONS(5666), + [anon_sym_f64] = ACTIONS(5666), + [anon_sym_c_char] = ACTIONS(5666), + [anon_sym_c_schar] = ACTIONS(5666), + [anon_sym_c_uchar] = ACTIONS(5666), + [anon_sym_c_short] = ACTIONS(5666), + [anon_sym_c_ushort] = ACTIONS(5666), + [anon_sym_c_int] = ACTIONS(5666), + [anon_sym_c_uint] = ACTIONS(5666), + [anon_sym_c_long] = ACTIONS(5666), + [anon_sym_c_ulong] = ACTIONS(5666), + [anon_sym_c_longlong] = ACTIONS(5666), + [anon_sym_c_ulonglong] = ACTIONS(5666), + [anon_sym_c_float] = ACTIONS(5666), + [anon_sym_c_double] = ACTIONS(5666), + [anon_sym_c_longdouble] = ACTIONS(5666), + [anon_sym_else] = ACTIONS(5666), + [anon_sym_DOT_DOT] = ACTIONS(5666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5664), + [anon_sym_orelse] = ACTIONS(5666), + [anon_sym_or] = ACTIONS(5666), + [anon_sym_and] = ACTIONS(5666), + [anon_sym_EQ_EQ] = ACTIONS(5664), + [anon_sym_BANG_EQ] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(5666), + [anon_sym_LT_EQ] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5666), + [anon_sym_GT_EQ] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5664), + [anon_sym_xor] = ACTIONS(5666), + [anon_sym_LT_LT] = ACTIONS(5666), + [anon_sym_GT_GT] = ACTIONS(5664), + [anon_sym_LT_LT_PIPE] = ACTIONS(5664), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5664), + [anon_sym_catch] = ACTIONS(5666), + [anon_sym_DOT] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5664), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5664), + }, + [STATE(7176)] = { + [sym_identifier] = ACTIONS(5670), + [anon_sym_func] = ACTIONS(5670), + [anon_sym_c_func] = ACTIONS(5670), + [anon_sym_BANG] = ACTIONS(5670), + [anon_sym_struct] = ACTIONS(5670), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_COMMA] = ACTIONS(5668), + [anon_sym_RBRACE] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5668), + [anon_sym_struct_type_BANG] = ACTIONS(5668), + [anon_sym_QMARK] = ACTIONS(5668), + [anon_sym_AT] = ACTIONS(5668), + [anon_sym_STAR] = ACTIONS(5668), + [anon_sym_LBRACK] = ACTIONS(5668), + [anon_sym_void] = ACTIONS(5670), + [anon_sym_noreturn] = ACTIONS(5670), + [anon_sym_type] = ACTIONS(5670), + [anon_sym_anyopaque] = ACTIONS(5670), + [anon_sym_bool] = ACTIONS(5670), + [anon_sym_int] = ACTIONS(5670), + [anon_sym_uint] = ACTIONS(5670), + [anon_sym_float] = ACTIONS(5670), + [anon_sym_range] = ACTIONS(5670), + [anon_sym_i8] = ACTIONS(5670), + [anon_sym_i16] = ACTIONS(5670), + [anon_sym_i32] = ACTIONS(5670), + [anon_sym_i64] = ACTIONS(5670), + [anon_sym_u8] = ACTIONS(5670), + [anon_sym_u16] = ACTIONS(5670), + [anon_sym_u32] = ACTIONS(5670), + [anon_sym_u64] = ACTIONS(5670), + [anon_sym_isize] = ACTIONS(5670), + [anon_sym_usize] = ACTIONS(5670), + [anon_sym_f32] = ACTIONS(5670), + [anon_sym_f64] = ACTIONS(5670), + [anon_sym_c_char] = ACTIONS(5670), + [anon_sym_c_schar] = ACTIONS(5670), + [anon_sym_c_uchar] = ACTIONS(5670), + [anon_sym_c_short] = ACTIONS(5670), + [anon_sym_c_ushort] = ACTIONS(5670), + [anon_sym_c_int] = ACTIONS(5670), + [anon_sym_c_uint] = ACTIONS(5670), + [anon_sym_c_long] = ACTIONS(5670), + [anon_sym_c_ulong] = ACTIONS(5670), + [anon_sym_c_longlong] = ACTIONS(5670), + [anon_sym_c_ulonglong] = ACTIONS(5670), + [anon_sym_c_float] = ACTIONS(5670), + [anon_sym_c_double] = ACTIONS(5670), + [anon_sym_c_longdouble] = ACTIONS(5670), + [anon_sym_else] = ACTIONS(5670), + [anon_sym_DOT_DOT] = ACTIONS(5670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5668), + [anon_sym_orelse] = ACTIONS(5670), + [anon_sym_or] = ACTIONS(5670), + [anon_sym_and] = ACTIONS(5670), + [anon_sym_EQ_EQ] = ACTIONS(5668), + [anon_sym_BANG_EQ] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5670), + [anon_sym_LT_EQ] = ACTIONS(5668), + [anon_sym_GT] = ACTIONS(5670), + [anon_sym_GT_EQ] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5668), + [anon_sym_xor] = ACTIONS(5670), + [anon_sym_LT_LT] = ACTIONS(5670), + [anon_sym_GT_GT] = ACTIONS(5668), + [anon_sym_LT_LT_PIPE] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_SLASH] = ACTIONS(5668), + [anon_sym_catch] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5670), + [anon_sym_CARET] = ACTIONS(5668), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5668), + }, + [STATE(7177)] = { + [sym_identifier] = ACTIONS(5674), + [anon_sym_func] = ACTIONS(5674), + [anon_sym_c_func] = ACTIONS(5674), + [anon_sym_BANG] = ACTIONS(5674), + [anon_sym_struct] = ACTIONS(5674), + [anon_sym_LPAREN] = ACTIONS(5672), + [anon_sym_COMMA] = ACTIONS(5672), + [anon_sym_RBRACE] = ACTIONS(5672), + [anon_sym_DASH] = ACTIONS(5672), + [anon_sym_PIPE] = ACTIONS(5672), + [anon_sym_struct_type_BANG] = ACTIONS(5672), + [anon_sym_QMARK] = ACTIONS(5672), + [anon_sym_AT] = ACTIONS(5672), + [anon_sym_STAR] = ACTIONS(5672), + [anon_sym_LBRACK] = ACTIONS(5672), + [anon_sym_void] = ACTIONS(5674), + [anon_sym_noreturn] = ACTIONS(5674), + [anon_sym_type] = ACTIONS(5674), + [anon_sym_anyopaque] = ACTIONS(5674), + [anon_sym_bool] = ACTIONS(5674), + [anon_sym_int] = ACTIONS(5674), + [anon_sym_uint] = ACTIONS(5674), + [anon_sym_float] = ACTIONS(5674), + [anon_sym_range] = ACTIONS(5674), + [anon_sym_i8] = ACTIONS(5674), + [anon_sym_i16] = ACTIONS(5674), + [anon_sym_i32] = ACTIONS(5674), + [anon_sym_i64] = ACTIONS(5674), + [anon_sym_u8] = ACTIONS(5674), + [anon_sym_u16] = ACTIONS(5674), + [anon_sym_u32] = ACTIONS(5674), + [anon_sym_u64] = ACTIONS(5674), + [anon_sym_isize] = ACTIONS(5674), + [anon_sym_usize] = ACTIONS(5674), + [anon_sym_f32] = ACTIONS(5674), + [anon_sym_f64] = ACTIONS(5674), + [anon_sym_c_char] = ACTIONS(5674), + [anon_sym_c_schar] = ACTIONS(5674), + [anon_sym_c_uchar] = ACTIONS(5674), + [anon_sym_c_short] = ACTIONS(5674), + [anon_sym_c_ushort] = ACTIONS(5674), + [anon_sym_c_int] = ACTIONS(5674), + [anon_sym_c_uint] = ACTIONS(5674), + [anon_sym_c_long] = ACTIONS(5674), + [anon_sym_c_ulong] = ACTIONS(5674), + [anon_sym_c_longlong] = ACTIONS(5674), + [anon_sym_c_ulonglong] = ACTIONS(5674), + [anon_sym_c_float] = ACTIONS(5674), + [anon_sym_c_double] = ACTIONS(5674), + [anon_sym_c_longdouble] = ACTIONS(5674), + [anon_sym_else] = ACTIONS(5674), + [anon_sym_DOT_DOT] = ACTIONS(5674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5672), + [anon_sym_orelse] = ACTIONS(5674), + [anon_sym_or] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5672), + [anon_sym_BANG_EQ] = ACTIONS(5672), + [anon_sym_LT] = ACTIONS(5674), + [anon_sym_LT_EQ] = ACTIONS(5672), + [anon_sym_GT] = ACTIONS(5674), + [anon_sym_GT_EQ] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_xor] = ACTIONS(5674), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5672), + [anon_sym_LT_LT_PIPE] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5672), + [anon_sym_SLASH] = ACTIONS(5672), + [anon_sym_catch] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5674), + [anon_sym_CARET] = ACTIONS(5672), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5672), + }, + [STATE(7178)] = { + [sym_identifier] = ACTIONS(4546), + [anon_sym_func] = ACTIONS(4546), + [anon_sym_c_func] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_struct] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4544), + [anon_sym_COMMA] = ACTIONS(4544), + [anon_sym_RBRACE] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [anon_sym_PIPE] = ACTIONS(4544), + [anon_sym_struct_type_BANG] = ACTIONS(4544), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_AT] = ACTIONS(4544), + [anon_sym_STAR] = ACTIONS(4544), + [anon_sym_LBRACK] = ACTIONS(4544), + [anon_sym_void] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_type] = ACTIONS(4546), + [anon_sym_anyopaque] = ACTIONS(4546), + [anon_sym_bool] = ACTIONS(4546), + [anon_sym_int] = ACTIONS(4546), + [anon_sym_uint] = ACTIONS(4546), + [anon_sym_float] = ACTIONS(4546), + [anon_sym_range] = ACTIONS(4546), + [anon_sym_i8] = ACTIONS(4546), + [anon_sym_i16] = ACTIONS(4546), + [anon_sym_i32] = ACTIONS(4546), + [anon_sym_i64] = ACTIONS(4546), + [anon_sym_u8] = ACTIONS(4546), + [anon_sym_u16] = ACTIONS(4546), + [anon_sym_u32] = ACTIONS(4546), + [anon_sym_u64] = ACTIONS(4546), + [anon_sym_isize] = ACTIONS(4546), + [anon_sym_usize] = ACTIONS(4546), + [anon_sym_f32] = ACTIONS(4546), + [anon_sym_f64] = ACTIONS(4546), + [anon_sym_c_char] = ACTIONS(4546), + [anon_sym_c_schar] = ACTIONS(4546), + [anon_sym_c_uchar] = ACTIONS(4546), + [anon_sym_c_short] = ACTIONS(4546), + [anon_sym_c_ushort] = ACTIONS(4546), + [anon_sym_c_int] = ACTIONS(4546), + [anon_sym_c_uint] = ACTIONS(4546), + [anon_sym_c_long] = ACTIONS(4546), + [anon_sym_c_ulong] = ACTIONS(4546), + [anon_sym_c_longlong] = ACTIONS(4546), + [anon_sym_c_ulonglong] = ACTIONS(4546), + [anon_sym_c_float] = ACTIONS(4546), + [anon_sym_c_double] = ACTIONS(4546), + [anon_sym_c_longdouble] = ACTIONS(4546), + [anon_sym_else] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4544), + [anon_sym_orelse] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4544), + [anon_sym_BANG_EQ] = ACTIONS(4544), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4544), + [anon_sym_AMP] = ACTIONS(4544), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4544), + [anon_sym_LT_LT_PIPE] = ACTIONS(4544), + [anon_sym_PLUS] = ACTIONS(4544), + [anon_sym_SLASH] = ACTIONS(4544), + [anon_sym_catch] = ACTIONS(4546), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4544), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4544), + }, + [STATE(7179)] = { + [sym_identifier] = ACTIONS(5680), + [anon_sym_func] = ACTIONS(5680), + [anon_sym_c_func] = ACTIONS(5680), + [anon_sym_BANG] = ACTIONS(5680), + [anon_sym_struct] = ACTIONS(5680), + [anon_sym_LPAREN] = ACTIONS(5678), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5678), + [anon_sym_PIPE] = ACTIONS(5678), + [anon_sym_struct_type_BANG] = ACTIONS(5678), + [anon_sym_QMARK] = ACTIONS(5678), + [anon_sym_AT] = ACTIONS(5678), + [anon_sym_STAR] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_void] = ACTIONS(5680), + [anon_sym_noreturn] = ACTIONS(5680), + [anon_sym_type] = ACTIONS(5680), + [anon_sym_anyopaque] = ACTIONS(5680), + [anon_sym_bool] = ACTIONS(5680), + [anon_sym_int] = ACTIONS(5680), + [anon_sym_uint] = ACTIONS(5680), + [anon_sym_float] = ACTIONS(5680), + [anon_sym_range] = ACTIONS(5680), + [anon_sym_i8] = ACTIONS(5680), + [anon_sym_i16] = ACTIONS(5680), + [anon_sym_i32] = ACTIONS(5680), + [anon_sym_i64] = ACTIONS(5680), + [anon_sym_u8] = ACTIONS(5680), + [anon_sym_u16] = ACTIONS(5680), + [anon_sym_u32] = ACTIONS(5680), + [anon_sym_u64] = ACTIONS(5680), + [anon_sym_isize] = ACTIONS(5680), + [anon_sym_usize] = ACTIONS(5680), + [anon_sym_f32] = ACTIONS(5680), + [anon_sym_f64] = ACTIONS(5680), + [anon_sym_c_char] = ACTIONS(5680), + [anon_sym_c_schar] = ACTIONS(5680), + [anon_sym_c_uchar] = ACTIONS(5680), + [anon_sym_c_short] = ACTIONS(5680), + [anon_sym_c_ushort] = ACTIONS(5680), + [anon_sym_c_int] = ACTIONS(5680), + [anon_sym_c_uint] = ACTIONS(5680), + [anon_sym_c_long] = ACTIONS(5680), + [anon_sym_c_ulong] = ACTIONS(5680), + [anon_sym_c_longlong] = ACTIONS(5680), + [anon_sym_c_ulonglong] = ACTIONS(5680), + [anon_sym_c_float] = ACTIONS(5680), + [anon_sym_c_double] = ACTIONS(5680), + [anon_sym_c_longdouble] = ACTIONS(5680), + [anon_sym_else] = ACTIONS(5680), + [anon_sym_DOT_DOT] = ACTIONS(5680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5678), + [anon_sym_orelse] = ACTIONS(5680), + [anon_sym_or] = ACTIONS(5680), + [anon_sym_and] = ACTIONS(5680), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_LT] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5678), + [anon_sym_GT] = ACTIONS(5680), + [anon_sym_GT_EQ] = ACTIONS(5678), + [anon_sym_AMP] = ACTIONS(5678), + [anon_sym_xor] = ACTIONS(5680), + [anon_sym_LT_LT] = ACTIONS(5680), + [anon_sym_GT_GT] = ACTIONS(5678), + [anon_sym_LT_LT_PIPE] = ACTIONS(5678), + [anon_sym_PLUS] = ACTIONS(5678), + [anon_sym_SLASH] = ACTIONS(5678), + [anon_sym_catch] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_CARET] = ACTIONS(5678), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5678), + }, + [STATE(7180)] = { + [sym_identifier] = ACTIONS(5864), + [anon_sym_func] = ACTIONS(5864), + [anon_sym_c_func] = ACTIONS(5864), + [anon_sym_BANG] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_LPAREN] = ACTIONS(5862), + [anon_sym_COMMA] = ACTIONS(5862), + [anon_sym_RBRACE] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5862), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_struct_type_BANG] = ACTIONS(5862), + [anon_sym_QMARK] = ACTIONS(5862), + [anon_sym_AT] = ACTIONS(5862), + [anon_sym_STAR] = ACTIONS(5862), + [anon_sym_LBRACK] = ACTIONS(5862), + [anon_sym_void] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_type] = ACTIONS(5864), + [anon_sym_anyopaque] = ACTIONS(5864), + [anon_sym_bool] = ACTIONS(5864), + [anon_sym_int] = ACTIONS(5864), + [anon_sym_uint] = ACTIONS(5864), + [anon_sym_float] = ACTIONS(5864), + [anon_sym_range] = ACTIONS(5864), + [anon_sym_i8] = ACTIONS(5864), + [anon_sym_i16] = ACTIONS(5864), + [anon_sym_i32] = ACTIONS(5864), + [anon_sym_i64] = ACTIONS(5864), + [anon_sym_u8] = ACTIONS(5864), + [anon_sym_u16] = ACTIONS(5864), + [anon_sym_u32] = ACTIONS(5864), + [anon_sym_u64] = ACTIONS(5864), + [anon_sym_isize] = ACTIONS(5864), + [anon_sym_usize] = ACTIONS(5864), + [anon_sym_f32] = ACTIONS(5864), + [anon_sym_f64] = ACTIONS(5864), + [anon_sym_c_char] = ACTIONS(5864), + [anon_sym_c_schar] = ACTIONS(5864), + [anon_sym_c_uchar] = ACTIONS(5864), + [anon_sym_c_short] = ACTIONS(5864), + [anon_sym_c_ushort] = ACTIONS(5864), + [anon_sym_c_int] = ACTIONS(5864), + [anon_sym_c_uint] = ACTIONS(5864), + [anon_sym_c_long] = ACTIONS(5864), + [anon_sym_c_ulong] = ACTIONS(5864), + [anon_sym_c_longlong] = ACTIONS(5864), + [anon_sym_c_ulonglong] = ACTIONS(5864), + [anon_sym_c_float] = ACTIONS(5864), + [anon_sym_c_double] = ACTIONS(5864), + [anon_sym_c_longdouble] = ACTIONS(5864), + [anon_sym_else] = ACTIONS(5864), + [anon_sym_DOT_DOT] = ACTIONS(5864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5862), + [anon_sym_orelse] = ACTIONS(5864), + [anon_sym_or] = ACTIONS(5864), + [anon_sym_and] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_BANG_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_LT_EQ] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5864), + [anon_sym_GT_EQ] = ACTIONS(5862), + [anon_sym_AMP] = ACTIONS(5862), + [anon_sym_xor] = ACTIONS(5864), + [anon_sym_LT_LT] = ACTIONS(5864), + [anon_sym_GT_GT] = ACTIONS(5862), + [anon_sym_LT_LT_PIPE] = ACTIONS(5862), + [anon_sym_PLUS] = ACTIONS(5862), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_catch] = ACTIONS(5864), + [anon_sym_DOT] = ACTIONS(5864), + [anon_sym_CARET] = ACTIONS(5862), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5862), + }, + [STATE(7181)] = { + [sym_identifier] = ACTIONS(5686), + [anon_sym_func] = ACTIONS(5686), + [anon_sym_c_func] = ACTIONS(5686), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_struct] = ACTIONS(5686), + [anon_sym_LPAREN] = ACTIONS(5684), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_RBRACE] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_struct_type_BANG] = ACTIONS(5684), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_AT] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5684), + [anon_sym_void] = ACTIONS(5686), + [anon_sym_noreturn] = ACTIONS(5686), + [anon_sym_type] = ACTIONS(5686), + [anon_sym_anyopaque] = ACTIONS(5686), + [anon_sym_bool] = ACTIONS(5686), + [anon_sym_int] = ACTIONS(5686), + [anon_sym_uint] = ACTIONS(5686), + [anon_sym_float] = ACTIONS(5686), + [anon_sym_range] = ACTIONS(5686), + [anon_sym_i8] = ACTIONS(5686), + [anon_sym_i16] = ACTIONS(5686), + [anon_sym_i32] = ACTIONS(5686), + [anon_sym_i64] = ACTIONS(5686), + [anon_sym_u8] = ACTIONS(5686), + [anon_sym_u16] = ACTIONS(5686), + [anon_sym_u32] = ACTIONS(5686), + [anon_sym_u64] = ACTIONS(5686), + [anon_sym_isize] = ACTIONS(5686), + [anon_sym_usize] = ACTIONS(5686), + [anon_sym_f32] = ACTIONS(5686), + [anon_sym_f64] = ACTIONS(5686), + [anon_sym_c_char] = ACTIONS(5686), + [anon_sym_c_schar] = ACTIONS(5686), + [anon_sym_c_uchar] = ACTIONS(5686), + [anon_sym_c_short] = ACTIONS(5686), + [anon_sym_c_ushort] = ACTIONS(5686), + [anon_sym_c_int] = ACTIONS(5686), + [anon_sym_c_uint] = ACTIONS(5686), + [anon_sym_c_long] = ACTIONS(5686), + [anon_sym_c_ulong] = ACTIONS(5686), + [anon_sym_c_longlong] = ACTIONS(5686), + [anon_sym_c_ulonglong] = ACTIONS(5686), + [anon_sym_c_float] = ACTIONS(5686), + [anon_sym_c_double] = ACTIONS(5686), + [anon_sym_c_longdouble] = ACTIONS(5686), + [anon_sym_else] = ACTIONS(5686), + [anon_sym_DOT_DOT] = ACTIONS(5686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5684), + [anon_sym_orelse] = ACTIONS(5686), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_EQ_EQ] = ACTIONS(5684), + [anon_sym_BANG_EQ] = ACTIONS(5684), + [anon_sym_LT] = ACTIONS(5686), + [anon_sym_LT_EQ] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5686), + [anon_sym_GT_EQ] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_xor] = ACTIONS(5686), + [anon_sym_LT_LT] = ACTIONS(5686), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_LT_LT_PIPE] = ACTIONS(5684), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_SLASH] = ACTIONS(5684), + [anon_sym_catch] = ACTIONS(5686), + [anon_sym_DOT] = ACTIONS(5686), + [anon_sym_CARET] = ACTIONS(5684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5684), + }, + [STATE(7182)] = { + [sym_identifier] = ACTIONS(5690), + [anon_sym_func] = ACTIONS(5690), + [anon_sym_c_func] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(5690), + [anon_sym_struct] = ACTIONS(5690), + [anon_sym_LPAREN] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5688), + [anon_sym_PIPE] = ACTIONS(5688), + [anon_sym_struct_type_BANG] = ACTIONS(5688), + [anon_sym_QMARK] = ACTIONS(5688), + [anon_sym_AT] = ACTIONS(5688), + [anon_sym_STAR] = ACTIONS(5688), + [anon_sym_LBRACK] = ACTIONS(5688), + [anon_sym_void] = ACTIONS(5690), + [anon_sym_noreturn] = ACTIONS(5690), + [anon_sym_type] = ACTIONS(5690), + [anon_sym_anyopaque] = ACTIONS(5690), + [anon_sym_bool] = ACTIONS(5690), + [anon_sym_int] = ACTIONS(5690), + [anon_sym_uint] = ACTIONS(5690), + [anon_sym_float] = ACTIONS(5690), + [anon_sym_range] = ACTIONS(5690), + [anon_sym_i8] = ACTIONS(5690), + [anon_sym_i16] = ACTIONS(5690), + [anon_sym_i32] = ACTIONS(5690), + [anon_sym_i64] = ACTIONS(5690), + [anon_sym_u8] = ACTIONS(5690), + [anon_sym_u16] = ACTIONS(5690), + [anon_sym_u32] = ACTIONS(5690), + [anon_sym_u64] = ACTIONS(5690), + [anon_sym_isize] = ACTIONS(5690), + [anon_sym_usize] = ACTIONS(5690), + [anon_sym_f32] = ACTIONS(5690), + [anon_sym_f64] = ACTIONS(5690), + [anon_sym_c_char] = ACTIONS(5690), + [anon_sym_c_schar] = ACTIONS(5690), + [anon_sym_c_uchar] = ACTIONS(5690), + [anon_sym_c_short] = ACTIONS(5690), + [anon_sym_c_ushort] = ACTIONS(5690), + [anon_sym_c_int] = ACTIONS(5690), + [anon_sym_c_uint] = ACTIONS(5690), + [anon_sym_c_long] = ACTIONS(5690), + [anon_sym_c_ulong] = ACTIONS(5690), + [anon_sym_c_longlong] = ACTIONS(5690), + [anon_sym_c_ulonglong] = ACTIONS(5690), + [anon_sym_c_float] = ACTIONS(5690), + [anon_sym_c_double] = ACTIONS(5690), + [anon_sym_c_longdouble] = ACTIONS(5690), + [anon_sym_else] = ACTIONS(5690), + [anon_sym_DOT_DOT] = ACTIONS(5690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5688), + [anon_sym_orelse] = ACTIONS(5690), + [anon_sym_or] = ACTIONS(5690), + [anon_sym_and] = ACTIONS(5690), + [anon_sym_EQ_EQ] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5688), + [anon_sym_LT] = ACTIONS(5690), + [anon_sym_LT_EQ] = ACTIONS(5688), + [anon_sym_GT] = ACTIONS(5690), + [anon_sym_GT_EQ] = ACTIONS(5688), + [anon_sym_AMP] = ACTIONS(5688), + [anon_sym_xor] = ACTIONS(5690), + [anon_sym_LT_LT] = ACTIONS(5690), + [anon_sym_GT_GT] = ACTIONS(5688), + [anon_sym_LT_LT_PIPE] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5688), + [anon_sym_SLASH] = ACTIONS(5688), + [anon_sym_catch] = ACTIONS(5690), + [anon_sym_DOT] = ACTIONS(5690), + [anon_sym_CARET] = ACTIONS(5688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5688), + }, + [STATE(7183)] = { + [sym_identifier] = ACTIONS(5724), + [anon_sym_func] = ACTIONS(5724), + [anon_sym_c_func] = ACTIONS(5724), + [anon_sym_BANG] = ACTIONS(5724), + [anon_sym_struct] = ACTIONS(5724), + [anon_sym_LPAREN] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5722), + [anon_sym_struct_type_BANG] = ACTIONS(5722), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_AT] = ACTIONS(5722), + [anon_sym_STAR] = ACTIONS(5722), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_void] = ACTIONS(5724), + [anon_sym_noreturn] = ACTIONS(5724), + [anon_sym_type] = ACTIONS(5724), + [anon_sym_anyopaque] = ACTIONS(5724), + [anon_sym_bool] = ACTIONS(5724), + [anon_sym_int] = ACTIONS(5724), + [anon_sym_uint] = ACTIONS(5724), + [anon_sym_float] = ACTIONS(5724), + [anon_sym_range] = ACTIONS(5724), + [anon_sym_i8] = ACTIONS(5724), + [anon_sym_i16] = ACTIONS(5724), + [anon_sym_i32] = ACTIONS(5724), + [anon_sym_i64] = ACTIONS(5724), + [anon_sym_u8] = ACTIONS(5724), + [anon_sym_u16] = ACTIONS(5724), + [anon_sym_u32] = ACTIONS(5724), + [anon_sym_u64] = ACTIONS(5724), + [anon_sym_isize] = ACTIONS(5724), + [anon_sym_usize] = ACTIONS(5724), + [anon_sym_f32] = ACTIONS(5724), + [anon_sym_f64] = ACTIONS(5724), + [anon_sym_c_char] = ACTIONS(5724), + [anon_sym_c_schar] = ACTIONS(5724), + [anon_sym_c_uchar] = ACTIONS(5724), + [anon_sym_c_short] = ACTIONS(5724), + [anon_sym_c_ushort] = ACTIONS(5724), + [anon_sym_c_int] = ACTIONS(5724), + [anon_sym_c_uint] = ACTIONS(5724), + [anon_sym_c_long] = ACTIONS(5724), + [anon_sym_c_ulong] = ACTIONS(5724), + [anon_sym_c_longlong] = ACTIONS(5724), + [anon_sym_c_ulonglong] = ACTIONS(5724), + [anon_sym_c_float] = ACTIONS(5724), + [anon_sym_c_double] = ACTIONS(5724), + [anon_sym_c_longdouble] = ACTIONS(5724), + [anon_sym_else] = ACTIONS(5724), + [anon_sym_DOT_DOT] = ACTIONS(5724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5722), + [anon_sym_orelse] = ACTIONS(5724), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_AMP] = ACTIONS(5722), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5724), + [anon_sym_GT_GT] = ACTIONS(5722), + [anon_sym_LT_LT_PIPE] = ACTIONS(5722), + [anon_sym_PLUS] = ACTIONS(5722), + [anon_sym_SLASH] = ACTIONS(5722), + [anon_sym_catch] = ACTIONS(5724), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5722), + }, + [STATE(7184)] = { + [sym_identifier] = ACTIONS(5728), + [anon_sym_func] = ACTIONS(5728), + [anon_sym_c_func] = ACTIONS(5728), + [anon_sym_BANG] = ACTIONS(5728), + [anon_sym_struct] = ACTIONS(5728), + [anon_sym_LPAREN] = ACTIONS(5726), + [anon_sym_COMMA] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5726), + [anon_sym_struct_type_BANG] = ACTIONS(5726), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_AT] = ACTIONS(5726), + [anon_sym_STAR] = ACTIONS(5726), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_void] = ACTIONS(5728), + [anon_sym_noreturn] = ACTIONS(5728), + [anon_sym_type] = ACTIONS(5728), + [anon_sym_anyopaque] = ACTIONS(5728), + [anon_sym_bool] = ACTIONS(5728), + [anon_sym_int] = ACTIONS(5728), + [anon_sym_uint] = ACTIONS(5728), + [anon_sym_float] = ACTIONS(5728), + [anon_sym_range] = ACTIONS(5728), + [anon_sym_i8] = ACTIONS(5728), + [anon_sym_i16] = ACTIONS(5728), + [anon_sym_i32] = ACTIONS(5728), + [anon_sym_i64] = ACTIONS(5728), + [anon_sym_u8] = ACTIONS(5728), + [anon_sym_u16] = ACTIONS(5728), + [anon_sym_u32] = ACTIONS(5728), + [anon_sym_u64] = ACTIONS(5728), + [anon_sym_isize] = ACTIONS(5728), + [anon_sym_usize] = ACTIONS(5728), + [anon_sym_f32] = ACTIONS(5728), + [anon_sym_f64] = ACTIONS(5728), + [anon_sym_c_char] = ACTIONS(5728), + [anon_sym_c_schar] = ACTIONS(5728), + [anon_sym_c_uchar] = ACTIONS(5728), + [anon_sym_c_short] = ACTIONS(5728), + [anon_sym_c_ushort] = ACTIONS(5728), + [anon_sym_c_int] = ACTIONS(5728), + [anon_sym_c_uint] = ACTIONS(5728), + [anon_sym_c_long] = ACTIONS(5728), + [anon_sym_c_ulong] = ACTIONS(5728), + [anon_sym_c_longlong] = ACTIONS(5728), + [anon_sym_c_ulonglong] = ACTIONS(5728), + [anon_sym_c_float] = ACTIONS(5728), + [anon_sym_c_double] = ACTIONS(5728), + [anon_sym_c_longdouble] = ACTIONS(5728), + [anon_sym_else] = ACTIONS(5728), + [anon_sym_DOT_DOT] = ACTIONS(5728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5726), + [anon_sym_orelse] = ACTIONS(5728), + [anon_sym_or] = ACTIONS(5728), + [anon_sym_and] = ACTIONS(5728), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_LT] = ACTIONS(5728), + [anon_sym_LT_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5728), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(5726), + [anon_sym_xor] = ACTIONS(5728), + [anon_sym_LT_LT] = ACTIONS(5728), + [anon_sym_GT_GT] = ACTIONS(5726), + [anon_sym_LT_LT_PIPE] = ACTIONS(5726), + [anon_sym_PLUS] = ACTIONS(5726), + [anon_sym_SLASH] = ACTIONS(5726), + [anon_sym_catch] = ACTIONS(5728), + [anon_sym_DOT] = ACTIONS(5728), + [anon_sym_CARET] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5726), + }, + [STATE(7185)] = { + [aux_sym_import_declaration_repeat1] = STATE(14620), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_c_func] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(4392), + [anon_sym_struct_type_BANG] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(11357), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), + [anon_sym_orelse] = ACTIONS(4394), + [anon_sym_or] = ACTIONS(4394), + [anon_sym_and] = ACTIONS(4394), + [anon_sym_EQ_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_xor] = ACTIONS(4394), + [anon_sym_LT_LT] = ACTIONS(4394), + [anon_sym_GT_GT] = ACTIONS(4392), + [anon_sym_LT_LT_PIPE] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4392), + [anon_sym_SLASH] = ACTIONS(4392), + [anon_sym_catch] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11360), + }, + [STATE(7186)] = { + [aux_sym_import_declaration_repeat1] = STATE(14621), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_c_func] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4404), + [anon_sym_struct_type_BANG] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(11363), + [anon_sym_DOT_DOT] = ACTIONS(4406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_orelse] = ACTIONS(4406), + [anon_sym_or] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_EQ_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4406), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4406), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_xor] = ACTIONS(4406), + [anon_sym_LT_LT] = ACTIONS(4406), + [anon_sym_GT_GT] = ACTIONS(4404), + [anon_sym_LT_LT_PIPE] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4404), + [anon_sym_SLASH] = ACTIONS(4404), + [anon_sym_catch] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11366), + }, + [STATE(7187)] = { + [aux_sym_import_declaration_repeat1] = STATE(14622), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_c_func] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_PIPE] = ACTIONS(4426), + [anon_sym_struct_type_BANG] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_noreturn] = 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_else] = ACTIONS(11369), + [anon_sym_DOT_DOT] = ACTIONS(4428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_orelse] = ACTIONS(4428), + [anon_sym_or] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_EQ_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4426), + [anon_sym_LT] = ACTIONS(4428), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT] = ACTIONS(4428), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_xor] = ACTIONS(4428), + [anon_sym_LT_LT] = ACTIONS(4428), + [anon_sym_GT_GT] = ACTIONS(4426), + [anon_sym_LT_LT_PIPE] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_SLASH] = ACTIONS(4426), + [anon_sym_catch] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4428), + [anon_sym_CARET] = ACTIONS(4426), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11372), + }, + [STATE(7188)] = { + [aux_sym_import_declaration_repeat1] = STATE(14623), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_c_func] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_struct_type_BANG] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(11375), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11378), + }, + [STATE(7189)] = { + [aux_sym_import_declaration_repeat1] = STATE(14624), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_c_func] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_COMMA] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4456), + [anon_sym_struct_type_BANG] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_AT] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(11381), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), + [anon_sym_orelse] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4456), + [anon_sym_BANG_EQ] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_xor] = ACTIONS(4458), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4456), + [anon_sym_LT_LT_PIPE] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_SLASH] = ACTIONS(4456), + [anon_sym_catch] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11384), + }, + [STATE(7190)] = { + [aux_sym_import_declaration_repeat1] = STATE(14625), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_c_func] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_struct_type_BANG] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(11387), + [anon_sym_DOT_DOT] = ACTIONS(4476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4474), + [anon_sym_orelse] = ACTIONS(4476), + [anon_sym_or] = ACTIONS(4476), + [anon_sym_and] = ACTIONS(4476), + [anon_sym_EQ_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_xor] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(4476), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_LT_LT_PIPE] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_SLASH] = ACTIONS(4474), + [anon_sym_catch] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11390), + }, + [STATE(7191)] = { + [sym_identifier] = ACTIONS(5868), + [anon_sym_func] = ACTIONS(5868), + [anon_sym_c_func] = ACTIONS(5868), + [anon_sym_BANG] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5868), + [anon_sym_LPAREN] = ACTIONS(5866), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_struct_type_BANG] = ACTIONS(5866), + [anon_sym_QMARK] = ACTIONS(5866), + [anon_sym_AT] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_LBRACK] = ACTIONS(5866), + [anon_sym_void] = ACTIONS(5868), + [anon_sym_noreturn] = ACTIONS(5868), + [anon_sym_type] = ACTIONS(5868), + [anon_sym_anyopaque] = ACTIONS(5868), + [anon_sym_bool] = ACTIONS(5868), + [anon_sym_int] = ACTIONS(5868), + [anon_sym_uint] = ACTIONS(5868), + [anon_sym_float] = ACTIONS(5868), + [anon_sym_range] = ACTIONS(5868), + [anon_sym_i8] = ACTIONS(5868), + [anon_sym_i16] = ACTIONS(5868), + [anon_sym_i32] = ACTIONS(5868), + [anon_sym_i64] = ACTIONS(5868), + [anon_sym_u8] = ACTIONS(5868), + [anon_sym_u16] = ACTIONS(5868), + [anon_sym_u32] = ACTIONS(5868), + [anon_sym_u64] = ACTIONS(5868), + [anon_sym_isize] = ACTIONS(5868), + [anon_sym_usize] = ACTIONS(5868), + [anon_sym_f32] = ACTIONS(5868), + [anon_sym_f64] = ACTIONS(5868), + [anon_sym_c_char] = ACTIONS(5868), + [anon_sym_c_schar] = ACTIONS(5868), + [anon_sym_c_uchar] = ACTIONS(5868), + [anon_sym_c_short] = ACTIONS(5868), + [anon_sym_c_ushort] = ACTIONS(5868), + [anon_sym_c_int] = ACTIONS(5868), + [anon_sym_c_uint] = ACTIONS(5868), + [anon_sym_c_long] = ACTIONS(5868), + [anon_sym_c_ulong] = ACTIONS(5868), + [anon_sym_c_longlong] = ACTIONS(5868), + [anon_sym_c_ulonglong] = ACTIONS(5868), + [anon_sym_c_float] = ACTIONS(5868), + [anon_sym_c_double] = ACTIONS(5868), + [anon_sym_c_longdouble] = ACTIONS(5868), + [anon_sym_else] = ACTIONS(5868), + [anon_sym_DOT_DOT] = ACTIONS(5868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5866), + [anon_sym_orelse] = ACTIONS(5868), + [anon_sym_or] = ACTIONS(5868), + [anon_sym_and] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_EQ] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5866), + [anon_sym_xor] = ACTIONS(5868), + [anon_sym_LT_LT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5866), + [anon_sym_LT_LT_PIPE] = ACTIONS(5866), + [anon_sym_PLUS] = ACTIONS(5866), + [anon_sym_SLASH] = ACTIONS(5866), + [anon_sym_catch] = ACTIONS(5868), + [anon_sym_DOT] = ACTIONS(5868), + [anon_sym_CARET] = ACTIONS(5866), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5866), + }, + [STATE(7192)] = { + [sym_identifier] = ACTIONS(5812), + [anon_sym_func] = ACTIONS(5812), + [anon_sym_c_func] = ACTIONS(5812), + [anon_sym_BANG] = ACTIONS(5812), + [anon_sym_struct] = ACTIONS(5812), + [anon_sym_LPAREN] = ACTIONS(5810), + [anon_sym_COMMA] = ACTIONS(5810), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5810), + [anon_sym_PIPE] = ACTIONS(5810), + [anon_sym_struct_type_BANG] = ACTIONS(5810), + [anon_sym_QMARK] = ACTIONS(5810), + [anon_sym_AT] = ACTIONS(5810), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_LBRACK] = ACTIONS(5810), + [anon_sym_void] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym_type] = ACTIONS(5812), + [anon_sym_anyopaque] = ACTIONS(5812), + [anon_sym_bool] = ACTIONS(5812), + [anon_sym_int] = ACTIONS(5812), + [anon_sym_uint] = ACTIONS(5812), + [anon_sym_float] = ACTIONS(5812), + [anon_sym_range] = ACTIONS(5812), + [anon_sym_i8] = ACTIONS(5812), + [anon_sym_i16] = ACTIONS(5812), + [anon_sym_i32] = ACTIONS(5812), + [anon_sym_i64] = ACTIONS(5812), + [anon_sym_u8] = ACTIONS(5812), + [anon_sym_u16] = ACTIONS(5812), + [anon_sym_u32] = ACTIONS(5812), + [anon_sym_u64] = ACTIONS(5812), + [anon_sym_isize] = ACTIONS(5812), + [anon_sym_usize] = ACTIONS(5812), + [anon_sym_f32] = ACTIONS(5812), + [anon_sym_f64] = ACTIONS(5812), + [anon_sym_c_char] = ACTIONS(5812), + [anon_sym_c_schar] = ACTIONS(5812), + [anon_sym_c_uchar] = ACTIONS(5812), + [anon_sym_c_short] = ACTIONS(5812), + [anon_sym_c_ushort] = ACTIONS(5812), + [anon_sym_c_int] = ACTIONS(5812), + [anon_sym_c_uint] = ACTIONS(5812), + [anon_sym_c_long] = ACTIONS(5812), + [anon_sym_c_ulong] = ACTIONS(5812), + [anon_sym_c_longlong] = ACTIONS(5812), + [anon_sym_c_ulonglong] = ACTIONS(5812), + [anon_sym_c_float] = ACTIONS(5812), + [anon_sym_c_double] = ACTIONS(5812), + [anon_sym_c_longdouble] = ACTIONS(5812), + [anon_sym_else] = ACTIONS(5812), + [anon_sym_DOT_DOT] = ACTIONS(5812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5810), + [anon_sym_orelse] = ACTIONS(5812), + [anon_sym_or] = ACTIONS(5812), + [anon_sym_and] = ACTIONS(5812), + [anon_sym_EQ_EQ] = ACTIONS(5810), + [anon_sym_BANG_EQ] = ACTIONS(5810), + [anon_sym_LT] = ACTIONS(5812), + [anon_sym_LT_EQ] = ACTIONS(5810), + [anon_sym_GT] = ACTIONS(5812), + [anon_sym_GT_EQ] = ACTIONS(5810), + [anon_sym_AMP] = ACTIONS(5810), + [anon_sym_xor] = ACTIONS(5812), + [anon_sym_LT_LT] = ACTIONS(5812), + [anon_sym_GT_GT] = ACTIONS(5810), + [anon_sym_LT_LT_PIPE] = ACTIONS(5810), + [anon_sym_PLUS] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_catch] = ACTIONS(5812), + [anon_sym_DOT] = ACTIONS(5812), + [anon_sym_CARET] = ACTIONS(5810), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5810), + }, + [STATE(7193)] = { + [sym_identifier] = ACTIONS(5956), + [anon_sym_func] = ACTIONS(5956), + [anon_sym_c_func] = ACTIONS(5956), + [anon_sym_BANG] = ACTIONS(5956), + [anon_sym_struct] = ACTIONS(5956), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(5954), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5954), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_struct_type_BANG] = ACTIONS(5954), + [anon_sym_QMARK] = ACTIONS(5954), + [anon_sym_AT] = ACTIONS(5954), + [anon_sym_STAR] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_void] = ACTIONS(5956), + [anon_sym_noreturn] = ACTIONS(5956), + [anon_sym_type] = ACTIONS(5956), + [anon_sym_anyopaque] = ACTIONS(5956), + [anon_sym_bool] = ACTIONS(5956), + [anon_sym_int] = ACTIONS(5956), + [anon_sym_uint] = ACTIONS(5956), + [anon_sym_float] = ACTIONS(5956), + [anon_sym_range] = ACTIONS(5956), + [anon_sym_i8] = ACTIONS(5956), + [anon_sym_i16] = ACTIONS(5956), + [anon_sym_i32] = ACTIONS(5956), + [anon_sym_i64] = ACTIONS(5956), + [anon_sym_u8] = ACTIONS(5956), + [anon_sym_u16] = ACTIONS(5956), + [anon_sym_u32] = ACTIONS(5956), + [anon_sym_u64] = ACTIONS(5956), + [anon_sym_isize] = ACTIONS(5956), + [anon_sym_usize] = ACTIONS(5956), + [anon_sym_f32] = ACTIONS(5956), + [anon_sym_f64] = ACTIONS(5956), + [anon_sym_c_char] = ACTIONS(5956), + [anon_sym_c_schar] = ACTIONS(5956), + [anon_sym_c_uchar] = ACTIONS(5956), + [anon_sym_c_short] = ACTIONS(5956), + [anon_sym_c_ushort] = ACTIONS(5956), + [anon_sym_c_int] = ACTIONS(5956), + [anon_sym_c_uint] = ACTIONS(5956), + [anon_sym_c_long] = ACTIONS(5956), + [anon_sym_c_ulong] = ACTIONS(5956), + [anon_sym_c_longlong] = ACTIONS(5956), + [anon_sym_c_ulonglong] = ACTIONS(5956), + [anon_sym_c_float] = ACTIONS(5956), + [anon_sym_c_double] = ACTIONS(5956), + [anon_sym_c_longdouble] = ACTIONS(5956), + [anon_sym_else] = ACTIONS(5956), + [anon_sym_DOT_DOT] = ACTIONS(5956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_orelse] = ACTIONS(5956), + [anon_sym_or] = ACTIONS(5956), + [anon_sym_and] = ACTIONS(5956), + [anon_sym_EQ_EQ] = ACTIONS(5954), + [anon_sym_BANG_EQ] = ACTIONS(5954), + [anon_sym_LT] = ACTIONS(5956), + [anon_sym_LT_EQ] = ACTIONS(5954), + [anon_sym_GT] = ACTIONS(5956), + [anon_sym_GT_EQ] = ACTIONS(5954), + [anon_sym_AMP] = ACTIONS(5954), + [anon_sym_xor] = ACTIONS(5956), + [anon_sym_LT_LT] = ACTIONS(5956), + [anon_sym_GT_GT] = ACTIONS(5954), + [anon_sym_LT_LT_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_SLASH] = ACTIONS(5954), + [anon_sym_catch] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(11393), + [anon_sym_CARET] = ACTIONS(5954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5954), + }, + [STATE(7194)] = { + [sym_identifier] = ACTIONS(5872), + [anon_sym_func] = ACTIONS(5872), + [anon_sym_c_func] = ACTIONS(5872), + [anon_sym_BANG] = ACTIONS(5872), + [anon_sym_struct] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5870), + [anon_sym_COMMA] = ACTIONS(5870), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_struct_type_BANG] = ACTIONS(5870), + [anon_sym_QMARK] = ACTIONS(5870), + [anon_sym_AT] = ACTIONS(5870), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(5870), + [anon_sym_void] = ACTIONS(5872), + [anon_sym_noreturn] = ACTIONS(5872), + [anon_sym_type] = ACTIONS(5872), + [anon_sym_anyopaque] = ACTIONS(5872), + [anon_sym_bool] = ACTIONS(5872), + [anon_sym_int] = ACTIONS(5872), + [anon_sym_uint] = ACTIONS(5872), + [anon_sym_float] = ACTIONS(5872), + [anon_sym_range] = ACTIONS(5872), + [anon_sym_i8] = ACTIONS(5872), + [anon_sym_i16] = ACTIONS(5872), + [anon_sym_i32] = ACTIONS(5872), + [anon_sym_i64] = ACTIONS(5872), + [anon_sym_u8] = ACTIONS(5872), + [anon_sym_u16] = ACTIONS(5872), + [anon_sym_u32] = ACTIONS(5872), + [anon_sym_u64] = ACTIONS(5872), + [anon_sym_isize] = ACTIONS(5872), + [anon_sym_usize] = ACTIONS(5872), + [anon_sym_f32] = ACTIONS(5872), + [anon_sym_f64] = ACTIONS(5872), + [anon_sym_c_char] = ACTIONS(5872), + [anon_sym_c_schar] = ACTIONS(5872), + [anon_sym_c_uchar] = ACTIONS(5872), + [anon_sym_c_short] = ACTIONS(5872), + [anon_sym_c_ushort] = ACTIONS(5872), + [anon_sym_c_int] = ACTIONS(5872), + [anon_sym_c_uint] = ACTIONS(5872), + [anon_sym_c_long] = ACTIONS(5872), + [anon_sym_c_ulong] = ACTIONS(5872), + [anon_sym_c_longlong] = ACTIONS(5872), + [anon_sym_c_ulonglong] = ACTIONS(5872), + [anon_sym_c_float] = ACTIONS(5872), + [anon_sym_c_double] = ACTIONS(5872), + [anon_sym_c_longdouble] = ACTIONS(5872), + [anon_sym_else] = ACTIONS(5872), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5870), + [anon_sym_orelse] = ACTIONS(5872), + [anon_sym_or] = ACTIONS(5872), + [anon_sym_and] = ACTIONS(5872), + [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_BANG_EQ] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5872), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT] = ACTIONS(5872), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_AMP] = ACTIONS(5870), + [anon_sym_xor] = ACTIONS(5872), + [anon_sym_LT_LT] = ACTIONS(5872), + [anon_sym_GT_GT] = ACTIONS(5870), + [anon_sym_LT_LT_PIPE] = ACTIONS(5870), + [anon_sym_PLUS] = ACTIONS(5870), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_catch] = ACTIONS(5872), + [anon_sym_DOT] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5870), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5870), + }, + [STATE(7195)] = { + [sym_identifier] = ACTIONS(5964), + [anon_sym_func] = ACTIONS(5964), + [anon_sym_c_func] = ACTIONS(5964), + [anon_sym_BANG] = ACTIONS(5964), + [anon_sym_struct] = ACTIONS(5964), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_COMMA] = ACTIONS(5962), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_PIPE] = ACTIONS(5962), + [anon_sym_struct_type_BANG] = ACTIONS(5962), + [anon_sym_QMARK] = ACTIONS(5962), + [anon_sym_AT] = ACTIONS(5962), + [anon_sym_STAR] = ACTIONS(5962), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_void] = ACTIONS(5964), + [anon_sym_noreturn] = ACTIONS(5964), + [anon_sym_type] = ACTIONS(5964), + [anon_sym_anyopaque] = ACTIONS(5964), + [anon_sym_bool] = ACTIONS(5964), + [anon_sym_int] = ACTIONS(5964), + [anon_sym_uint] = ACTIONS(5964), + [anon_sym_float] = ACTIONS(5964), + [anon_sym_range] = ACTIONS(5964), + [anon_sym_i8] = ACTIONS(5964), + [anon_sym_i16] = ACTIONS(5964), + [anon_sym_i32] = ACTIONS(5964), + [anon_sym_i64] = ACTIONS(5964), + [anon_sym_u8] = ACTIONS(5964), + [anon_sym_u16] = ACTIONS(5964), + [anon_sym_u32] = ACTIONS(5964), + [anon_sym_u64] = ACTIONS(5964), + [anon_sym_isize] = ACTIONS(5964), + [anon_sym_usize] = ACTIONS(5964), + [anon_sym_f32] = ACTIONS(5964), + [anon_sym_f64] = ACTIONS(5964), + [anon_sym_c_char] = ACTIONS(5964), + [anon_sym_c_schar] = ACTIONS(5964), + [anon_sym_c_uchar] = ACTIONS(5964), + [anon_sym_c_short] = ACTIONS(5964), + [anon_sym_c_ushort] = ACTIONS(5964), + [anon_sym_c_int] = ACTIONS(5964), + [anon_sym_c_uint] = ACTIONS(5964), + [anon_sym_c_long] = ACTIONS(5964), + [anon_sym_c_ulong] = ACTIONS(5964), + [anon_sym_c_longlong] = ACTIONS(5964), + [anon_sym_c_ulonglong] = ACTIONS(5964), + [anon_sym_c_float] = ACTIONS(5964), + [anon_sym_c_double] = ACTIONS(5964), + [anon_sym_c_longdouble] = ACTIONS(5964), + [anon_sym_else] = ACTIONS(5964), + [anon_sym_DOT_DOT] = ACTIONS(5964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_orelse] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5964), + [anon_sym_and] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5962), + [anon_sym_BANG_EQ] = ACTIONS(5962), + [anon_sym_LT] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5962), + [anon_sym_GT] = ACTIONS(5964), + [anon_sym_GT_EQ] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5962), + [anon_sym_xor] = ACTIONS(5964), + [anon_sym_LT_LT] = ACTIONS(5964), + [anon_sym_GT_GT] = ACTIONS(5962), + [anon_sym_LT_LT_PIPE] = ACTIONS(5962), + [anon_sym_PLUS] = ACTIONS(5962), + [anon_sym_SLASH] = ACTIONS(5962), + [anon_sym_catch] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5962), + }, + [STATE(7196)] = { + [sym_identifier] = ACTIONS(5970), + [anon_sym_func] = ACTIONS(5970), + [anon_sym_c_func] = ACTIONS(5970), + [anon_sym_BANG] = ACTIONS(5970), + [anon_sym_struct] = ACTIONS(5970), + [anon_sym_LPAREN] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_DASH] = ACTIONS(5968), + [anon_sym_PIPE] = ACTIONS(5968), + [anon_sym_struct_type_BANG] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_AT] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(5968), + [anon_sym_void] = ACTIONS(5970), + [anon_sym_noreturn] = ACTIONS(5970), + [anon_sym_type] = ACTIONS(5970), + [anon_sym_anyopaque] = ACTIONS(5970), + [anon_sym_bool] = ACTIONS(5970), + [anon_sym_int] = ACTIONS(5970), + [anon_sym_uint] = ACTIONS(5970), + [anon_sym_float] = ACTIONS(5970), + [anon_sym_range] = ACTIONS(5970), + [anon_sym_i8] = ACTIONS(5970), + [anon_sym_i16] = ACTIONS(5970), + [anon_sym_i32] = ACTIONS(5970), + [anon_sym_i64] = ACTIONS(5970), + [anon_sym_u8] = ACTIONS(5970), + [anon_sym_u16] = ACTIONS(5970), + [anon_sym_u32] = ACTIONS(5970), + [anon_sym_u64] = ACTIONS(5970), + [anon_sym_isize] = ACTIONS(5970), + [anon_sym_usize] = ACTIONS(5970), + [anon_sym_f32] = ACTIONS(5970), + [anon_sym_f64] = ACTIONS(5970), + [anon_sym_c_char] = ACTIONS(5970), + [anon_sym_c_schar] = ACTIONS(5970), + [anon_sym_c_uchar] = ACTIONS(5970), + [anon_sym_c_short] = ACTIONS(5970), + [anon_sym_c_ushort] = ACTIONS(5970), + [anon_sym_c_int] = ACTIONS(5970), + [anon_sym_c_uint] = ACTIONS(5970), + [anon_sym_c_long] = ACTIONS(5970), + [anon_sym_c_ulong] = ACTIONS(5970), + [anon_sym_c_longlong] = ACTIONS(5970), + [anon_sym_c_ulonglong] = ACTIONS(5970), + [anon_sym_c_float] = ACTIONS(5970), + [anon_sym_c_double] = ACTIONS(5970), + [anon_sym_c_longdouble] = ACTIONS(5970), + [anon_sym_else] = ACTIONS(5970), + [anon_sym_DOT_DOT] = ACTIONS(5970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5968), + [anon_sym_orelse] = ACTIONS(5970), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(5968), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_LT_LT_PIPE] = ACTIONS(5968), + [anon_sym_PLUS] = ACTIONS(5968), + [anon_sym_SLASH] = ACTIONS(5968), + [anon_sym_catch] = ACTIONS(5970), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5968), + }, + [STATE(7197)] = { + [sym_identifier] = ACTIONS(5974), + [anon_sym_func] = ACTIONS(5974), + [anon_sym_c_func] = ACTIONS(5974), + [anon_sym_BANG] = ACTIONS(5974), + [anon_sym_struct] = ACTIONS(5974), + [anon_sym_LPAREN] = ACTIONS(5972), + [anon_sym_COMMA] = ACTIONS(5972), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5972), + [anon_sym_struct_type_BANG] = ACTIONS(5972), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_AT] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(5972), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_void] = ACTIONS(5974), + [anon_sym_noreturn] = ACTIONS(5974), + [anon_sym_type] = ACTIONS(5974), + [anon_sym_anyopaque] = ACTIONS(5974), + [anon_sym_bool] = ACTIONS(5974), + [anon_sym_int] = ACTIONS(5974), + [anon_sym_uint] = ACTIONS(5974), + [anon_sym_float] = ACTIONS(5974), + [anon_sym_range] = ACTIONS(5974), + [anon_sym_i8] = ACTIONS(5974), + [anon_sym_i16] = ACTIONS(5974), + [anon_sym_i32] = ACTIONS(5974), + [anon_sym_i64] = ACTIONS(5974), + [anon_sym_u8] = ACTIONS(5974), + [anon_sym_u16] = ACTIONS(5974), + [anon_sym_u32] = ACTIONS(5974), + [anon_sym_u64] = ACTIONS(5974), + [anon_sym_isize] = ACTIONS(5974), + [anon_sym_usize] = ACTIONS(5974), + [anon_sym_f32] = ACTIONS(5974), + [anon_sym_f64] = ACTIONS(5974), + [anon_sym_c_char] = ACTIONS(5974), + [anon_sym_c_schar] = ACTIONS(5974), + [anon_sym_c_uchar] = ACTIONS(5974), + [anon_sym_c_short] = ACTIONS(5974), + [anon_sym_c_ushort] = ACTIONS(5974), + [anon_sym_c_int] = ACTIONS(5974), + [anon_sym_c_uint] = ACTIONS(5974), + [anon_sym_c_long] = ACTIONS(5974), + [anon_sym_c_ulong] = ACTIONS(5974), + [anon_sym_c_longlong] = ACTIONS(5974), + [anon_sym_c_ulonglong] = ACTIONS(5974), + [anon_sym_c_float] = ACTIONS(5974), + [anon_sym_c_double] = ACTIONS(5974), + [anon_sym_c_longdouble] = ACTIONS(5974), + [anon_sym_else] = ACTIONS(5974), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5972), + [anon_sym_orelse] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5974), + [anon_sym_and] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_AMP] = ACTIONS(5972), + [anon_sym_xor] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5972), + [anon_sym_LT_LT_PIPE] = ACTIONS(5972), + [anon_sym_PLUS] = ACTIONS(5972), + [anon_sym_SLASH] = ACTIONS(5972), + [anon_sym_catch] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5972), + }, + [STATE(7198)] = { + [sym_identifier] = ACTIONS(5876), + [anon_sym_func] = ACTIONS(5876), + [anon_sym_c_func] = ACTIONS(5876), + [anon_sym_BANG] = ACTIONS(5876), + [anon_sym_struct] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(5874), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_PIPE] = ACTIONS(5874), + [anon_sym_struct_type_BANG] = ACTIONS(5874), + [anon_sym_QMARK] = ACTIONS(5874), + [anon_sym_AT] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(5874), + [anon_sym_void] = ACTIONS(5876), + [anon_sym_noreturn] = ACTIONS(5876), + [anon_sym_type] = ACTIONS(5876), + [anon_sym_anyopaque] = ACTIONS(5876), + [anon_sym_bool] = ACTIONS(5876), + [anon_sym_int] = ACTIONS(5876), + [anon_sym_uint] = ACTIONS(5876), + [anon_sym_float] = ACTIONS(5876), + [anon_sym_range] = ACTIONS(5876), + [anon_sym_i8] = ACTIONS(5876), + [anon_sym_i16] = ACTIONS(5876), + [anon_sym_i32] = ACTIONS(5876), + [anon_sym_i64] = ACTIONS(5876), + [anon_sym_u8] = ACTIONS(5876), + [anon_sym_u16] = ACTIONS(5876), + [anon_sym_u32] = ACTIONS(5876), + [anon_sym_u64] = ACTIONS(5876), + [anon_sym_isize] = ACTIONS(5876), + [anon_sym_usize] = ACTIONS(5876), + [anon_sym_f32] = ACTIONS(5876), + [anon_sym_f64] = ACTIONS(5876), + [anon_sym_c_char] = ACTIONS(5876), + [anon_sym_c_schar] = ACTIONS(5876), + [anon_sym_c_uchar] = ACTIONS(5876), + [anon_sym_c_short] = ACTIONS(5876), + [anon_sym_c_ushort] = ACTIONS(5876), + [anon_sym_c_int] = ACTIONS(5876), + [anon_sym_c_uint] = ACTIONS(5876), + [anon_sym_c_long] = ACTIONS(5876), + [anon_sym_c_ulong] = ACTIONS(5876), + [anon_sym_c_longlong] = ACTIONS(5876), + [anon_sym_c_ulonglong] = ACTIONS(5876), + [anon_sym_c_float] = ACTIONS(5876), + [anon_sym_c_double] = ACTIONS(5876), + [anon_sym_c_longdouble] = ACTIONS(5876), + [anon_sym_else] = ACTIONS(5876), + [anon_sym_DOT_DOT] = ACTIONS(5876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5874), + [anon_sym_orelse] = ACTIONS(5876), + [anon_sym_or] = ACTIONS(5876), + [anon_sym_and] = ACTIONS(5876), + [anon_sym_EQ_EQ] = ACTIONS(5874), + [anon_sym_BANG_EQ] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(5876), + [anon_sym_LT_EQ] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5876), + [anon_sym_GT_EQ] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5874), + [anon_sym_xor] = ACTIONS(5876), + [anon_sym_LT_LT] = ACTIONS(5876), + [anon_sym_GT_GT] = ACTIONS(5874), + [anon_sym_LT_LT_PIPE] = ACTIONS(5874), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5874), + [anon_sym_catch] = ACTIONS(5876), + [anon_sym_DOT] = ACTIONS(5876), + [anon_sym_CARET] = ACTIONS(5874), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5874), + }, + [STATE(7199)] = { + [sym_identifier] = ACTIONS(5880), + [anon_sym_func] = ACTIONS(5880), + [anon_sym_c_func] = ACTIONS(5880), + [anon_sym_BANG] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_LPAREN] = ACTIONS(5878), + [anon_sym_COMMA] = ACTIONS(5878), + [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(5878), + [anon_sym_PIPE] = ACTIONS(5878), + [anon_sym_struct_type_BANG] = ACTIONS(5878), + [anon_sym_QMARK] = ACTIONS(5878), + [anon_sym_AT] = ACTIONS(5878), + [anon_sym_STAR] = ACTIONS(5878), + [anon_sym_LBRACK] = ACTIONS(5878), + [anon_sym_void] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_type] = ACTIONS(5880), + [anon_sym_anyopaque] = ACTIONS(5880), + [anon_sym_bool] = ACTIONS(5880), + [anon_sym_int] = ACTIONS(5880), + [anon_sym_uint] = ACTIONS(5880), + [anon_sym_float] = ACTIONS(5880), + [anon_sym_range] = ACTIONS(5880), + [anon_sym_i8] = ACTIONS(5880), + [anon_sym_i16] = ACTIONS(5880), + [anon_sym_i32] = ACTIONS(5880), + [anon_sym_i64] = ACTIONS(5880), + [anon_sym_u8] = ACTIONS(5880), + [anon_sym_u16] = ACTIONS(5880), + [anon_sym_u32] = ACTIONS(5880), + [anon_sym_u64] = ACTIONS(5880), + [anon_sym_isize] = ACTIONS(5880), + [anon_sym_usize] = ACTIONS(5880), + [anon_sym_f32] = ACTIONS(5880), + [anon_sym_f64] = ACTIONS(5880), + [anon_sym_c_char] = ACTIONS(5880), + [anon_sym_c_schar] = ACTIONS(5880), + [anon_sym_c_uchar] = ACTIONS(5880), + [anon_sym_c_short] = ACTIONS(5880), + [anon_sym_c_ushort] = ACTIONS(5880), + [anon_sym_c_int] = ACTIONS(5880), + [anon_sym_c_uint] = ACTIONS(5880), + [anon_sym_c_long] = ACTIONS(5880), + [anon_sym_c_ulong] = ACTIONS(5880), + [anon_sym_c_longlong] = ACTIONS(5880), + [anon_sym_c_ulonglong] = ACTIONS(5880), + [anon_sym_c_float] = ACTIONS(5880), + [anon_sym_c_double] = ACTIONS(5880), + [anon_sym_c_longdouble] = ACTIONS(5880), + [anon_sym_else] = ACTIONS(5880), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5878), + [anon_sym_orelse] = ACTIONS(5880), + [anon_sym_or] = ACTIONS(5880), + [anon_sym_and] = ACTIONS(5880), + [anon_sym_EQ_EQ] = ACTIONS(5878), + [anon_sym_BANG_EQ] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(5880), + [anon_sym_LT_EQ] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5880), + [anon_sym_GT_EQ] = ACTIONS(5878), + [anon_sym_AMP] = ACTIONS(5878), + [anon_sym_xor] = ACTIONS(5880), + [anon_sym_LT_LT] = ACTIONS(5880), + [anon_sym_GT_GT] = ACTIONS(5878), + [anon_sym_LT_LT_PIPE] = ACTIONS(5878), + [anon_sym_PLUS] = ACTIONS(5878), + [anon_sym_SLASH] = ACTIONS(5878), + [anon_sym_catch] = ACTIONS(5880), + [anon_sym_DOT] = ACTIONS(5880), + [anon_sym_CARET] = ACTIONS(5878), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5878), + }, + [STATE(7200)] = { + [sym_identifier] = ACTIONS(5980), + [anon_sym_func] = ACTIONS(5980), + [anon_sym_c_func] = ACTIONS(5980), + [anon_sym_BANG] = ACTIONS(5980), + [anon_sym_struct] = ACTIONS(5980), + [anon_sym_LPAREN] = ACTIONS(5978), + [anon_sym_COMMA] = ACTIONS(5978), + [anon_sym_RBRACE] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5978), + [anon_sym_struct_type_BANG] = ACTIONS(5978), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_AT] = ACTIONS(5978), + [anon_sym_STAR] = ACTIONS(5978), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_void] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym_type] = ACTIONS(5980), + [anon_sym_anyopaque] = ACTIONS(5980), + [anon_sym_bool] = ACTIONS(5980), + [anon_sym_int] = ACTIONS(5980), + [anon_sym_uint] = ACTIONS(5980), + [anon_sym_float] = ACTIONS(5980), + [anon_sym_range] = ACTIONS(5980), + [anon_sym_i8] = ACTIONS(5980), + [anon_sym_i16] = ACTIONS(5980), + [anon_sym_i32] = ACTIONS(5980), + [anon_sym_i64] = ACTIONS(5980), + [anon_sym_u8] = ACTIONS(5980), + [anon_sym_u16] = ACTIONS(5980), + [anon_sym_u32] = ACTIONS(5980), + [anon_sym_u64] = ACTIONS(5980), + [anon_sym_isize] = ACTIONS(5980), + [anon_sym_usize] = ACTIONS(5980), + [anon_sym_f32] = ACTIONS(5980), + [anon_sym_f64] = ACTIONS(5980), + [anon_sym_c_char] = ACTIONS(5980), + [anon_sym_c_schar] = ACTIONS(5980), + [anon_sym_c_uchar] = ACTIONS(5980), + [anon_sym_c_short] = ACTIONS(5980), + [anon_sym_c_ushort] = ACTIONS(5980), + [anon_sym_c_int] = ACTIONS(5980), + [anon_sym_c_uint] = ACTIONS(5980), + [anon_sym_c_long] = ACTIONS(5980), + [anon_sym_c_ulong] = ACTIONS(5980), + [anon_sym_c_longlong] = ACTIONS(5980), + [anon_sym_c_ulonglong] = ACTIONS(5980), + [anon_sym_c_float] = ACTIONS(5980), + [anon_sym_c_double] = ACTIONS(5980), + [anon_sym_c_longdouble] = ACTIONS(5980), + [anon_sym_else] = ACTIONS(5980), + [anon_sym_DOT_DOT] = ACTIONS(5980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5978), + [anon_sym_orelse] = ACTIONS(5980), + [anon_sym_or] = ACTIONS(5980), + [anon_sym_and] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_xor] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5978), + [anon_sym_LT_LT_PIPE] = ACTIONS(5978), + [anon_sym_PLUS] = ACTIONS(5978), + [anon_sym_SLASH] = ACTIONS(5978), + [anon_sym_catch] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5978), + }, + [STATE(7201)] = { + [sym_identifier] = ACTIONS(5884), + [anon_sym_func] = ACTIONS(5884), + [anon_sym_c_func] = ACTIONS(5884), + [anon_sym_BANG] = ACTIONS(5884), + [anon_sym_struct] = ACTIONS(5884), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(5882), + [anon_sym_RBRACE] = ACTIONS(5882), + [anon_sym_DASH] = ACTIONS(5882), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_struct_type_BANG] = ACTIONS(5882), + [anon_sym_QMARK] = ACTIONS(5882), + [anon_sym_AT] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5882), + [anon_sym_LBRACK] = ACTIONS(5882), + [anon_sym_void] = ACTIONS(5884), + [anon_sym_noreturn] = ACTIONS(5884), + [anon_sym_type] = ACTIONS(5884), + [anon_sym_anyopaque] = ACTIONS(5884), + [anon_sym_bool] = ACTIONS(5884), + [anon_sym_int] = ACTIONS(5884), + [anon_sym_uint] = ACTIONS(5884), + [anon_sym_float] = ACTIONS(5884), + [anon_sym_range] = ACTIONS(5884), + [anon_sym_i8] = ACTIONS(5884), + [anon_sym_i16] = ACTIONS(5884), + [anon_sym_i32] = ACTIONS(5884), + [anon_sym_i64] = ACTIONS(5884), + [anon_sym_u8] = ACTIONS(5884), + [anon_sym_u16] = ACTIONS(5884), + [anon_sym_u32] = ACTIONS(5884), + [anon_sym_u64] = ACTIONS(5884), + [anon_sym_isize] = ACTIONS(5884), + [anon_sym_usize] = ACTIONS(5884), + [anon_sym_f32] = ACTIONS(5884), + [anon_sym_f64] = ACTIONS(5884), + [anon_sym_c_char] = ACTIONS(5884), + [anon_sym_c_schar] = ACTIONS(5884), + [anon_sym_c_uchar] = ACTIONS(5884), + [anon_sym_c_short] = ACTIONS(5884), + [anon_sym_c_ushort] = ACTIONS(5884), + [anon_sym_c_int] = ACTIONS(5884), + [anon_sym_c_uint] = ACTIONS(5884), + [anon_sym_c_long] = ACTIONS(5884), + [anon_sym_c_ulong] = ACTIONS(5884), + [anon_sym_c_longlong] = ACTIONS(5884), + [anon_sym_c_ulonglong] = ACTIONS(5884), + [anon_sym_c_float] = ACTIONS(5884), + [anon_sym_c_double] = ACTIONS(5884), + [anon_sym_c_longdouble] = ACTIONS(5884), + [anon_sym_else] = ACTIONS(5884), + [anon_sym_DOT_DOT] = ACTIONS(5884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5882), + [anon_sym_orelse] = ACTIONS(5884), + [anon_sym_or] = ACTIONS(5884), + [anon_sym_and] = ACTIONS(5884), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_BANG_EQ] = ACTIONS(5882), + [anon_sym_LT] = ACTIONS(5884), + [anon_sym_LT_EQ] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5884), + [anon_sym_GT_EQ] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5882), + [anon_sym_xor] = ACTIONS(5884), + [anon_sym_LT_LT] = ACTIONS(5884), + [anon_sym_GT_GT] = ACTIONS(5882), + [anon_sym_LT_LT_PIPE] = ACTIONS(5882), + [anon_sym_PLUS] = ACTIONS(5882), + [anon_sym_SLASH] = ACTIONS(5882), + [anon_sym_catch] = ACTIONS(5884), + [anon_sym_DOT] = ACTIONS(5884), + [anon_sym_CARET] = ACTIONS(5882), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5882), + }, + [STATE(7202)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_and] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_xor] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2702), + [anon_sym_LT_LT_PIPE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(2702), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(7203)] = { + [sym_identifier] = ACTIONS(5986), + [anon_sym_func] = ACTIONS(5986), + [anon_sym_c_func] = ACTIONS(5986), + [anon_sym_BANG] = ACTIONS(5986), + [anon_sym_struct] = ACTIONS(5986), + [anon_sym_LPAREN] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5984), + [anon_sym_struct_type_BANG] = ACTIONS(5984), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_AT] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(5984), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_void] = ACTIONS(5986), + [anon_sym_noreturn] = ACTIONS(5986), + [anon_sym_type] = ACTIONS(5986), + [anon_sym_anyopaque] = ACTIONS(5986), + [anon_sym_bool] = ACTIONS(5986), + [anon_sym_int] = ACTIONS(5986), + [anon_sym_uint] = ACTIONS(5986), + [anon_sym_float] = ACTIONS(5986), + [anon_sym_range] = ACTIONS(5986), + [anon_sym_i8] = ACTIONS(5986), + [anon_sym_i16] = ACTIONS(5986), + [anon_sym_i32] = ACTIONS(5986), + [anon_sym_i64] = ACTIONS(5986), + [anon_sym_u8] = ACTIONS(5986), + [anon_sym_u16] = ACTIONS(5986), + [anon_sym_u32] = ACTIONS(5986), + [anon_sym_u64] = ACTIONS(5986), + [anon_sym_isize] = ACTIONS(5986), + [anon_sym_usize] = ACTIONS(5986), + [anon_sym_f32] = ACTIONS(5986), + [anon_sym_f64] = ACTIONS(5986), + [anon_sym_c_char] = ACTIONS(5986), + [anon_sym_c_schar] = ACTIONS(5986), + [anon_sym_c_uchar] = ACTIONS(5986), + [anon_sym_c_short] = ACTIONS(5986), + [anon_sym_c_ushort] = ACTIONS(5986), + [anon_sym_c_int] = ACTIONS(5986), + [anon_sym_c_uint] = ACTIONS(5986), + [anon_sym_c_long] = ACTIONS(5986), + [anon_sym_c_ulong] = ACTIONS(5986), + [anon_sym_c_longlong] = ACTIONS(5986), + [anon_sym_c_ulonglong] = ACTIONS(5986), + [anon_sym_c_float] = ACTIONS(5986), + [anon_sym_c_double] = ACTIONS(5986), + [anon_sym_c_longdouble] = ACTIONS(5986), + [anon_sym_else] = ACTIONS(5986), + [anon_sym_DOT_DOT] = ACTIONS(5986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5984), + [anon_sym_orelse] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5984), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_LT_LT_PIPE] = ACTIONS(5984), + [anon_sym_PLUS] = ACTIONS(5984), + [anon_sym_SLASH] = ACTIONS(5984), + [anon_sym_catch] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5984), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5984), + }, + [STATE(7204)] = { + [sym_identifier] = ACTIONS(5818), + [anon_sym_func] = ACTIONS(5818), + [anon_sym_c_func] = ACTIONS(5818), + [anon_sym_BANG] = ACTIONS(5818), + [anon_sym_struct] = ACTIONS(5818), + [anon_sym_LPAREN] = ACTIONS(5816), + [anon_sym_COMMA] = ACTIONS(5816), + [anon_sym_RBRACE] = ACTIONS(5816), + [anon_sym_DASH] = ACTIONS(5816), + [anon_sym_PIPE] = ACTIONS(5816), + [anon_sym_struct_type_BANG] = ACTIONS(5816), + [anon_sym_QMARK] = ACTIONS(5816), + [anon_sym_AT] = ACTIONS(5816), + [anon_sym_STAR] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(5816), + [anon_sym_void] = ACTIONS(5818), + [anon_sym_noreturn] = ACTIONS(5818), + [anon_sym_type] = ACTIONS(5818), + [anon_sym_anyopaque] = ACTIONS(5818), + [anon_sym_bool] = ACTIONS(5818), + [anon_sym_int] = ACTIONS(5818), + [anon_sym_uint] = ACTIONS(5818), + [anon_sym_float] = ACTIONS(5818), + [anon_sym_range] = ACTIONS(5818), + [anon_sym_i8] = ACTIONS(5818), + [anon_sym_i16] = ACTIONS(5818), + [anon_sym_i32] = ACTIONS(5818), + [anon_sym_i64] = ACTIONS(5818), + [anon_sym_u8] = ACTIONS(5818), + [anon_sym_u16] = ACTIONS(5818), + [anon_sym_u32] = ACTIONS(5818), + [anon_sym_u64] = ACTIONS(5818), + [anon_sym_isize] = ACTIONS(5818), + [anon_sym_usize] = ACTIONS(5818), + [anon_sym_f32] = ACTIONS(5818), + [anon_sym_f64] = ACTIONS(5818), + [anon_sym_c_char] = ACTIONS(5818), + [anon_sym_c_schar] = ACTIONS(5818), + [anon_sym_c_uchar] = ACTIONS(5818), + [anon_sym_c_short] = ACTIONS(5818), + [anon_sym_c_ushort] = ACTIONS(5818), + [anon_sym_c_int] = ACTIONS(5818), + [anon_sym_c_uint] = ACTIONS(5818), + [anon_sym_c_long] = ACTIONS(5818), + [anon_sym_c_ulong] = ACTIONS(5818), + [anon_sym_c_longlong] = ACTIONS(5818), + [anon_sym_c_ulonglong] = ACTIONS(5818), + [anon_sym_c_float] = ACTIONS(5818), + [anon_sym_c_double] = ACTIONS(5818), + [anon_sym_c_longdouble] = ACTIONS(5818), + [anon_sym_else] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5816), + [anon_sym_orelse] = ACTIONS(5818), + [anon_sym_or] = ACTIONS(5818), + [anon_sym_and] = ACTIONS(5818), + [anon_sym_EQ_EQ] = ACTIONS(5816), + [anon_sym_BANG_EQ] = ACTIONS(5816), + [anon_sym_LT] = ACTIONS(5818), + [anon_sym_LT_EQ] = ACTIONS(5816), + [anon_sym_GT] = ACTIONS(5818), + [anon_sym_GT_EQ] = ACTIONS(5816), + [anon_sym_AMP] = ACTIONS(5816), + [anon_sym_xor] = ACTIONS(5818), + [anon_sym_LT_LT] = ACTIONS(5818), + [anon_sym_GT_GT] = ACTIONS(5816), + [anon_sym_LT_LT_PIPE] = ACTIONS(5816), + [anon_sym_PLUS] = ACTIONS(5816), + [anon_sym_SLASH] = ACTIONS(5816), + [anon_sym_catch] = ACTIONS(5818), + [anon_sym_DOT] = ACTIONS(5818), + [anon_sym_CARET] = ACTIONS(5816), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5816), + }, + [STATE(7205)] = { + [sym_identifier] = ACTIONS(5990), + [anon_sym_func] = ACTIONS(5990), + [anon_sym_c_func] = ACTIONS(5990), + [anon_sym_BANG] = ACTIONS(5990), + [anon_sym_struct] = ACTIONS(5990), + [anon_sym_LPAREN] = ACTIONS(5988), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5988), + [anon_sym_PIPE] = ACTIONS(5988), + [anon_sym_struct_type_BANG] = ACTIONS(5988), + [anon_sym_QMARK] = ACTIONS(5988), + [anon_sym_AT] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5988), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_void] = ACTIONS(5990), + [anon_sym_noreturn] = ACTIONS(5990), + [anon_sym_type] = ACTIONS(5990), + [anon_sym_anyopaque] = ACTIONS(5990), + [anon_sym_bool] = ACTIONS(5990), + [anon_sym_int] = ACTIONS(5990), + [anon_sym_uint] = ACTIONS(5990), + [anon_sym_float] = ACTIONS(5990), + [anon_sym_range] = ACTIONS(5990), + [anon_sym_i8] = ACTIONS(5990), + [anon_sym_i16] = ACTIONS(5990), + [anon_sym_i32] = ACTIONS(5990), + [anon_sym_i64] = ACTIONS(5990), + [anon_sym_u8] = ACTIONS(5990), + [anon_sym_u16] = ACTIONS(5990), + [anon_sym_u32] = ACTIONS(5990), + [anon_sym_u64] = ACTIONS(5990), + [anon_sym_isize] = ACTIONS(5990), + [anon_sym_usize] = ACTIONS(5990), + [anon_sym_f32] = ACTIONS(5990), + [anon_sym_f64] = ACTIONS(5990), + [anon_sym_c_char] = ACTIONS(5990), + [anon_sym_c_schar] = ACTIONS(5990), + [anon_sym_c_uchar] = ACTIONS(5990), + [anon_sym_c_short] = ACTIONS(5990), + [anon_sym_c_ushort] = ACTIONS(5990), + [anon_sym_c_int] = ACTIONS(5990), + [anon_sym_c_uint] = ACTIONS(5990), + [anon_sym_c_long] = ACTIONS(5990), + [anon_sym_c_ulong] = ACTIONS(5990), + [anon_sym_c_longlong] = ACTIONS(5990), + [anon_sym_c_ulonglong] = ACTIONS(5990), + [anon_sym_c_float] = ACTIONS(5990), + [anon_sym_c_double] = ACTIONS(5990), + [anon_sym_c_longdouble] = ACTIONS(5990), + [anon_sym_else] = ACTIONS(5990), + [anon_sym_DOT_DOT] = ACTIONS(5990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5988), + [anon_sym_orelse] = ACTIONS(5990), + [anon_sym_or] = ACTIONS(5990), + [anon_sym_and] = ACTIONS(5990), + [anon_sym_EQ_EQ] = ACTIONS(5988), + [anon_sym_BANG_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5990), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_GT] = ACTIONS(5990), + [anon_sym_GT_EQ] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_xor] = ACTIONS(5990), + [anon_sym_LT_LT] = ACTIONS(5990), + [anon_sym_GT_GT] = ACTIONS(5988), + [anon_sym_LT_LT_PIPE] = ACTIONS(5988), + [anon_sym_PLUS] = ACTIONS(5988), + [anon_sym_SLASH] = ACTIONS(5988), + [anon_sym_catch] = ACTIONS(5990), + [anon_sym_DOT] = ACTIONS(5990), + [anon_sym_CARET] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5988), + }, + [STATE(7206)] = { + [sym_identifier] = ACTIONS(5822), + [anon_sym_func] = ACTIONS(5822), + [anon_sym_c_func] = ACTIONS(5822), + [anon_sym_BANG] = ACTIONS(5822), + [anon_sym_struct] = ACTIONS(5822), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(5820), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_PIPE] = ACTIONS(5820), + [anon_sym_struct_type_BANG] = ACTIONS(5820), + [anon_sym_QMARK] = ACTIONS(5820), + [anon_sym_AT] = ACTIONS(5820), + [anon_sym_STAR] = ACTIONS(5820), + [anon_sym_LBRACK] = ACTIONS(5820), + [anon_sym_void] = ACTIONS(5822), + [anon_sym_noreturn] = ACTIONS(5822), + [anon_sym_type] = ACTIONS(5822), + [anon_sym_anyopaque] = ACTIONS(5822), + [anon_sym_bool] = ACTIONS(5822), + [anon_sym_int] = ACTIONS(5822), + [anon_sym_uint] = ACTIONS(5822), + [anon_sym_float] = ACTIONS(5822), + [anon_sym_range] = ACTIONS(5822), + [anon_sym_i8] = ACTIONS(5822), + [anon_sym_i16] = ACTIONS(5822), + [anon_sym_i32] = ACTIONS(5822), + [anon_sym_i64] = ACTIONS(5822), + [anon_sym_u8] = ACTIONS(5822), + [anon_sym_u16] = ACTIONS(5822), + [anon_sym_u32] = ACTIONS(5822), + [anon_sym_u64] = ACTIONS(5822), + [anon_sym_isize] = ACTIONS(5822), + [anon_sym_usize] = ACTIONS(5822), + [anon_sym_f32] = ACTIONS(5822), + [anon_sym_f64] = ACTIONS(5822), + [anon_sym_c_char] = ACTIONS(5822), + [anon_sym_c_schar] = ACTIONS(5822), + [anon_sym_c_uchar] = ACTIONS(5822), + [anon_sym_c_short] = ACTIONS(5822), + [anon_sym_c_ushort] = ACTIONS(5822), + [anon_sym_c_int] = ACTIONS(5822), + [anon_sym_c_uint] = ACTIONS(5822), + [anon_sym_c_long] = ACTIONS(5822), + [anon_sym_c_ulong] = ACTIONS(5822), + [anon_sym_c_longlong] = ACTIONS(5822), + [anon_sym_c_ulonglong] = ACTIONS(5822), + [anon_sym_c_float] = ACTIONS(5822), + [anon_sym_c_double] = ACTIONS(5822), + [anon_sym_c_longdouble] = ACTIONS(5822), + [anon_sym_else] = ACTIONS(5822), + [anon_sym_DOT_DOT] = ACTIONS(5822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5820), + [anon_sym_orelse] = ACTIONS(5822), + [anon_sym_or] = ACTIONS(5822), + [anon_sym_and] = ACTIONS(5822), + [anon_sym_EQ_EQ] = ACTIONS(5820), + [anon_sym_BANG_EQ] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5822), + [anon_sym_LT_EQ] = ACTIONS(5820), + [anon_sym_GT] = ACTIONS(5822), + [anon_sym_GT_EQ] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5820), + [anon_sym_xor] = ACTIONS(5822), + [anon_sym_LT_LT] = ACTIONS(5822), + [anon_sym_GT_GT] = ACTIONS(5820), + [anon_sym_LT_LT_PIPE] = ACTIONS(5820), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_SLASH] = ACTIONS(5820), + [anon_sym_catch] = ACTIONS(5822), + [anon_sym_DOT] = ACTIONS(5822), + [anon_sym_CARET] = ACTIONS(5820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5820), + }, + [STATE(7207)] = { + [sym_identifier] = ACTIONS(5994), + [anon_sym_func] = ACTIONS(5994), + [anon_sym_c_func] = ACTIONS(5994), + [anon_sym_BANG] = ACTIONS(5994), + [anon_sym_struct] = ACTIONS(5994), + [anon_sym_LPAREN] = ACTIONS(5992), + [anon_sym_COMMA] = ACTIONS(5992), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_DASH] = ACTIONS(5992), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_struct_type_BANG] = ACTIONS(5992), + [anon_sym_QMARK] = ACTIONS(5992), + [anon_sym_AT] = ACTIONS(5992), + [anon_sym_STAR] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(5992), + [anon_sym_void] = ACTIONS(5994), + [anon_sym_noreturn] = ACTIONS(5994), + [anon_sym_type] = ACTIONS(5994), + [anon_sym_anyopaque] = ACTIONS(5994), + [anon_sym_bool] = ACTIONS(5994), + [anon_sym_int] = ACTIONS(5994), + [anon_sym_uint] = ACTIONS(5994), + [anon_sym_float] = ACTIONS(5994), + [anon_sym_range] = ACTIONS(5994), + [anon_sym_i8] = ACTIONS(5994), + [anon_sym_i16] = ACTIONS(5994), + [anon_sym_i32] = ACTIONS(5994), + [anon_sym_i64] = ACTIONS(5994), + [anon_sym_u8] = ACTIONS(5994), + [anon_sym_u16] = ACTIONS(5994), + [anon_sym_u32] = ACTIONS(5994), + [anon_sym_u64] = ACTIONS(5994), + [anon_sym_isize] = ACTIONS(5994), + [anon_sym_usize] = ACTIONS(5994), + [anon_sym_f32] = ACTIONS(5994), + [anon_sym_f64] = ACTIONS(5994), + [anon_sym_c_char] = ACTIONS(5994), + [anon_sym_c_schar] = ACTIONS(5994), + [anon_sym_c_uchar] = ACTIONS(5994), + [anon_sym_c_short] = ACTIONS(5994), + [anon_sym_c_ushort] = ACTIONS(5994), + [anon_sym_c_int] = ACTIONS(5994), + [anon_sym_c_uint] = ACTIONS(5994), + [anon_sym_c_long] = ACTIONS(5994), + [anon_sym_c_ulong] = ACTIONS(5994), + [anon_sym_c_longlong] = ACTIONS(5994), + [anon_sym_c_ulonglong] = ACTIONS(5994), + [anon_sym_c_float] = ACTIONS(5994), + [anon_sym_c_double] = ACTIONS(5994), + [anon_sym_c_longdouble] = ACTIONS(5994), + [anon_sym_else] = ACTIONS(5994), + [anon_sym_DOT_DOT] = ACTIONS(5994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5992), + [anon_sym_orelse] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5994), + [anon_sym_and] = ACTIONS(5994), + [anon_sym_EQ_EQ] = ACTIONS(5992), + [anon_sym_BANG_EQ] = ACTIONS(5992), + [anon_sym_LT] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5992), + [anon_sym_GT] = ACTIONS(5994), + [anon_sym_GT_EQ] = ACTIONS(5992), + [anon_sym_AMP] = ACTIONS(5992), + [anon_sym_xor] = ACTIONS(5994), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5992), + [anon_sym_LT_LT_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5992), + [anon_sym_SLASH] = ACTIONS(5992), + [anon_sym_catch] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_CARET] = ACTIONS(5992), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5992), + }, + [STATE(7208)] = { + [aux_sym_import_declaration_repeat1] = STATE(14337), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_c_func] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_struct_type_BANG] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(11395), + [anon_sym_DOT_DOT] = ACTIONS(4446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_orelse] = ACTIONS(4446), + [anon_sym_or] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4446), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_xor] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4444), + [anon_sym_LT_LT_PIPE] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_catch] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11397), + }, + [STATE(7209)] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_func] = ACTIONS(5028), + [anon_sym_c_func] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_struct_type_BANG] = ACTIONS(5026), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_void] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_type] = ACTIONS(5028), + [anon_sym_anyopaque] = ACTIONS(5028), + [anon_sym_bool] = ACTIONS(5028), + [anon_sym_int] = ACTIONS(5028), + [anon_sym_uint] = ACTIONS(5028), + [anon_sym_float] = ACTIONS(5028), + [anon_sym_range] = ACTIONS(5028), + [anon_sym_i8] = ACTIONS(5028), + [anon_sym_i16] = ACTIONS(5028), + [anon_sym_i32] = ACTIONS(5028), + [anon_sym_i64] = ACTIONS(5028), + [anon_sym_u8] = ACTIONS(5028), + [anon_sym_u16] = ACTIONS(5028), + [anon_sym_u32] = ACTIONS(5028), + [anon_sym_u64] = ACTIONS(5028), + [anon_sym_isize] = ACTIONS(5028), + [anon_sym_usize] = ACTIONS(5028), + [anon_sym_f32] = ACTIONS(5028), + [anon_sym_f64] = ACTIONS(5028), + [anon_sym_c_char] = ACTIONS(5028), + [anon_sym_c_schar] = ACTIONS(5028), + [anon_sym_c_uchar] = ACTIONS(5028), + [anon_sym_c_short] = ACTIONS(5028), + [anon_sym_c_ushort] = ACTIONS(5028), + [anon_sym_c_int] = ACTIONS(5028), + [anon_sym_c_uint] = ACTIONS(5028), + [anon_sym_c_long] = ACTIONS(5028), + [anon_sym_c_ulong] = ACTIONS(5028), + [anon_sym_c_longlong] = ACTIONS(5028), + [anon_sym_c_ulonglong] = ACTIONS(5028), + [anon_sym_c_float] = ACTIONS(5028), + [anon_sym_c_double] = ACTIONS(5028), + [anon_sym_c_longdouble] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5026), + [anon_sym_orelse] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_LT_LT_PIPE] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_catch] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5026), + }, + [STATE(7210)] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_func] = ACTIONS(5720), + [anon_sym_c_func] = ACTIONS(5720), + [anon_sym_struct] = ACTIONS(5720), + [anon_sym_LPAREN] = ACTIONS(5718), + [anon_sym_COMMA] = ACTIONS(5718), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5718), + [anon_sym_PIPE] = ACTIONS(5718), + [anon_sym_struct_type_BANG] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [anon_sym_AT] = ACTIONS(5718), + [anon_sym_STAR] = ACTIONS(5718), + [anon_sym_LBRACK] = ACTIONS(5718), + [anon_sym_void] = ACTIONS(5720), + [anon_sym_noreturn] = ACTIONS(5720), + [anon_sym_type] = ACTIONS(5720), + [anon_sym_anyopaque] = ACTIONS(5720), + [anon_sym_bool] = ACTIONS(5720), + [anon_sym_int] = ACTIONS(5720), + [anon_sym_uint] = ACTIONS(5720), + [anon_sym_float] = ACTIONS(5720), + [anon_sym_range] = ACTIONS(5720), + [anon_sym_i8] = ACTIONS(5720), + [anon_sym_i16] = ACTIONS(5720), + [anon_sym_i32] = ACTIONS(5720), + [anon_sym_i64] = ACTIONS(5720), + [anon_sym_u8] = ACTIONS(5720), + [anon_sym_u16] = ACTIONS(5720), + [anon_sym_u32] = ACTIONS(5720), + [anon_sym_u64] = ACTIONS(5720), + [anon_sym_isize] = ACTIONS(5720), + [anon_sym_usize] = ACTIONS(5720), + [anon_sym_f32] = ACTIONS(5720), + [anon_sym_f64] = ACTIONS(5720), + [anon_sym_c_char] = ACTIONS(5720), + [anon_sym_c_schar] = ACTIONS(5720), + [anon_sym_c_uchar] = ACTIONS(5720), + [anon_sym_c_short] = ACTIONS(5720), + [anon_sym_c_ushort] = ACTIONS(5720), + [anon_sym_c_int] = ACTIONS(5720), + [anon_sym_c_uint] = ACTIONS(5720), + [anon_sym_c_long] = ACTIONS(5720), + [anon_sym_c_ulong] = ACTIONS(5720), + [anon_sym_c_longlong] = ACTIONS(5720), + [anon_sym_c_ulonglong] = ACTIONS(5720), + [anon_sym_c_float] = ACTIONS(5720), + [anon_sym_c_double] = ACTIONS(5720), + [anon_sym_c_longdouble] = ACTIONS(5720), + [anon_sym_else] = ACTIONS(5720), + [anon_sym_DOT_DOT] = ACTIONS(5720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5718), + [anon_sym_orelse] = ACTIONS(5720), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5718), + [anon_sym_BANG_EQ] = ACTIONS(5718), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_EQ] = ACTIONS(5718), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5718), + [anon_sym_AMP] = ACTIONS(5718), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5720), + [anon_sym_GT_GT] = ACTIONS(5718), + [anon_sym_LT_LT_PIPE] = ACTIONS(5718), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_SLASH] = ACTIONS(5718), + [anon_sym_catch] = ACTIONS(5720), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5718), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5718), + }, + [STATE(7211)] = { + [sym_identifier] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_c_func] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(4502), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4502), + [anon_sym_struct_type_BANG] = ACTIONS(4502), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4502), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE] = ACTIONS(4502), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(7212)] = { + [sym_identifier] = ACTIONS(4472), + [anon_sym_func] = ACTIONS(4472), + [anon_sym_c_func] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_struct_type_BANG] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_void] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym_type] = ACTIONS(4472), + [anon_sym_anyopaque] = ACTIONS(4472), + [anon_sym_bool] = ACTIONS(4472), + [anon_sym_int] = ACTIONS(4472), + [anon_sym_uint] = ACTIONS(4472), + [anon_sym_float] = ACTIONS(4472), + [anon_sym_range] = ACTIONS(4472), + [anon_sym_i8] = ACTIONS(4472), + [anon_sym_i16] = ACTIONS(4472), + [anon_sym_i32] = ACTIONS(4472), + [anon_sym_i64] = ACTIONS(4472), + [anon_sym_u8] = ACTIONS(4472), + [anon_sym_u16] = ACTIONS(4472), + [anon_sym_u32] = ACTIONS(4472), + [anon_sym_u64] = ACTIONS(4472), + [anon_sym_isize] = ACTIONS(4472), + [anon_sym_usize] = ACTIONS(4472), + [anon_sym_f32] = ACTIONS(4472), + [anon_sym_f64] = ACTIONS(4472), + [anon_sym_c_char] = ACTIONS(4472), + [anon_sym_c_schar] = ACTIONS(4472), + [anon_sym_c_uchar] = ACTIONS(4472), + [anon_sym_c_short] = ACTIONS(4472), + [anon_sym_c_ushort] = ACTIONS(4472), + [anon_sym_c_int] = ACTIONS(4472), + [anon_sym_c_uint] = ACTIONS(4472), + [anon_sym_c_long] = ACTIONS(4472), + [anon_sym_c_ulong] = ACTIONS(4472), + [anon_sym_c_longlong] = ACTIONS(4472), + [anon_sym_c_ulonglong] = ACTIONS(4472), + [anon_sym_c_float] = ACTIONS(4472), + [anon_sym_c_double] = ACTIONS(4472), + [anon_sym_c_longdouble] = ACTIONS(4472), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4470), + [anon_sym_orelse] = ACTIONS(4472), + [anon_sym_or] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4472), + [anon_sym_EQ_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + [anon_sym_xor] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(4472), + [anon_sym_GT_GT] = ACTIONS(4470), + [anon_sym_LT_LT_PIPE] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_SLASH] = ACTIONS(4470), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_CARET] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4470), + }, + [STATE(7213)] = { + [sym_identifier] = ACTIONS(4486), + [anon_sym_func] = ACTIONS(4486), + [anon_sym_c_func] = ACTIONS(4486), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4484), + [anon_sym_struct_type_BANG] = ACTIONS(4484), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_void] = ACTIONS(4486), + [anon_sym_noreturn] = ACTIONS(4486), + [anon_sym_type] = ACTIONS(4486), + [anon_sym_anyopaque] = ACTIONS(4486), + [anon_sym_bool] = ACTIONS(4486), + [anon_sym_int] = ACTIONS(4486), + [anon_sym_uint] = ACTIONS(4486), + [anon_sym_float] = ACTIONS(4486), + [anon_sym_range] = ACTIONS(4486), + [anon_sym_i8] = ACTIONS(4486), + [anon_sym_i16] = ACTIONS(4486), + [anon_sym_i32] = ACTIONS(4486), + [anon_sym_i64] = ACTIONS(4486), + [anon_sym_u8] = ACTIONS(4486), + [anon_sym_u16] = ACTIONS(4486), + [anon_sym_u32] = ACTIONS(4486), + [anon_sym_u64] = ACTIONS(4486), + [anon_sym_isize] = ACTIONS(4486), + [anon_sym_usize] = ACTIONS(4486), + [anon_sym_f32] = ACTIONS(4486), + [anon_sym_f64] = ACTIONS(4486), + [anon_sym_c_char] = ACTIONS(4486), + [anon_sym_c_schar] = ACTIONS(4486), + [anon_sym_c_uchar] = ACTIONS(4486), + [anon_sym_c_short] = ACTIONS(4486), + [anon_sym_c_ushort] = ACTIONS(4486), + [anon_sym_c_int] = ACTIONS(4486), + [anon_sym_c_uint] = ACTIONS(4486), + [anon_sym_c_long] = ACTIONS(4486), + [anon_sym_c_ulong] = ACTIONS(4486), + [anon_sym_c_longlong] = ACTIONS(4486), + [anon_sym_c_ulonglong] = ACTIONS(4486), + [anon_sym_c_float] = ACTIONS(4486), + [anon_sym_c_double] = ACTIONS(4486), + [anon_sym_c_longdouble] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4484), + [anon_sym_orelse] = ACTIONS(4486), + [anon_sym_or] = ACTIONS(4486), + [anon_sym_and] = ACTIONS(4486), + [anon_sym_EQ_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_xor] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_LT_LT_PIPE] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4484), + [anon_sym_SLASH] = ACTIONS(4484), + [anon_sym_catch] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_CARET] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4484), + }, + [STATE(7214)] = { + [sym_identifier] = ACTIONS(6324), + [anon_sym_func] = ACTIONS(6324), + [anon_sym_c_func] = ACTIONS(6324), + [anon_sym_struct] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6322), + [anon_sym_COMMA] = ACTIONS(6322), + [anon_sym_RBRACE] = ACTIONS(6322), + [anon_sym_DASH] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(6322), + [anon_sym_struct_type_BANG] = ACTIONS(6322), + [anon_sym_QMARK] = ACTIONS(6322), + [anon_sym_AT] = ACTIONS(6322), + [anon_sym_STAR] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(6322), + [anon_sym_void] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym_type] = ACTIONS(6324), + [anon_sym_anyopaque] = ACTIONS(6324), + [anon_sym_bool] = ACTIONS(6324), + [anon_sym_int] = ACTIONS(6324), + [anon_sym_uint] = ACTIONS(6324), + [anon_sym_float] = ACTIONS(6324), + [anon_sym_range] = ACTIONS(6324), + [anon_sym_i8] = ACTIONS(6324), + [anon_sym_i16] = ACTIONS(6324), + [anon_sym_i32] = ACTIONS(6324), + [anon_sym_i64] = ACTIONS(6324), + [anon_sym_u8] = ACTIONS(6324), + [anon_sym_u16] = ACTIONS(6324), + [anon_sym_u32] = ACTIONS(6324), + [anon_sym_u64] = ACTIONS(6324), + [anon_sym_isize] = ACTIONS(6324), + [anon_sym_usize] = ACTIONS(6324), + [anon_sym_f32] = ACTIONS(6324), + [anon_sym_f64] = ACTIONS(6324), + [anon_sym_c_char] = ACTIONS(6324), + [anon_sym_c_schar] = ACTIONS(6324), + [anon_sym_c_uchar] = ACTIONS(6324), + [anon_sym_c_short] = ACTIONS(6324), + [anon_sym_c_ushort] = ACTIONS(6324), + [anon_sym_c_int] = ACTIONS(6324), + [anon_sym_c_uint] = ACTIONS(6324), + [anon_sym_c_long] = ACTIONS(6324), + [anon_sym_c_ulong] = ACTIONS(6324), + [anon_sym_c_longlong] = ACTIONS(6324), + [anon_sym_c_ulonglong] = ACTIONS(6324), + [anon_sym_c_float] = ACTIONS(6324), + [anon_sym_c_double] = ACTIONS(6324), + [anon_sym_c_longdouble] = ACTIONS(6324), + [anon_sym_else] = ACTIONS(6324), + [anon_sym_DOT_DOT] = ACTIONS(6324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6322), + [anon_sym_orelse] = ACTIONS(6324), + [anon_sym_or] = ACTIONS(6324), + [anon_sym_and] = ACTIONS(6324), + [anon_sym_EQ_EQ] = ACTIONS(6322), + [anon_sym_BANG_EQ] = ACTIONS(6322), + [anon_sym_LT] = ACTIONS(6324), + [anon_sym_LT_EQ] = ACTIONS(6322), + [anon_sym_GT] = ACTIONS(6324), + [anon_sym_GT_EQ] = ACTIONS(6322), + [anon_sym_AMP] = ACTIONS(6322), + [anon_sym_xor] = ACTIONS(6324), + [anon_sym_LT_LT] = ACTIONS(6324), + [anon_sym_GT_GT] = ACTIONS(6322), + [anon_sym_LT_LT_PIPE] = ACTIONS(6322), + [anon_sym_PLUS] = ACTIONS(6322), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_catch] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(6322), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6322), + }, + [STATE(7215)] = { + [sym_identifier] = ACTIONS(6328), + [anon_sym_func] = ACTIONS(6328), + [anon_sym_c_func] = ACTIONS(6328), + [anon_sym_struct] = ACTIONS(6328), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6326), + [anon_sym_RBRACE] = ACTIONS(6326), + [anon_sym_DASH] = ACTIONS(6326), + [anon_sym_PIPE] = ACTIONS(6326), + [anon_sym_struct_type_BANG] = ACTIONS(6326), + [anon_sym_QMARK] = ACTIONS(6326), + [anon_sym_AT] = ACTIONS(6326), + [anon_sym_STAR] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_void] = ACTIONS(6328), + [anon_sym_noreturn] = ACTIONS(6328), + [anon_sym_type] = ACTIONS(6328), + [anon_sym_anyopaque] = ACTIONS(6328), + [anon_sym_bool] = ACTIONS(6328), + [anon_sym_int] = ACTIONS(6328), + [anon_sym_uint] = ACTIONS(6328), + [anon_sym_float] = ACTIONS(6328), + [anon_sym_range] = ACTIONS(6328), + [anon_sym_i8] = ACTIONS(6328), + [anon_sym_i16] = ACTIONS(6328), + [anon_sym_i32] = ACTIONS(6328), + [anon_sym_i64] = ACTIONS(6328), + [anon_sym_u8] = ACTIONS(6328), + [anon_sym_u16] = ACTIONS(6328), + [anon_sym_u32] = ACTIONS(6328), + [anon_sym_u64] = ACTIONS(6328), + [anon_sym_isize] = ACTIONS(6328), + [anon_sym_usize] = ACTIONS(6328), + [anon_sym_f32] = ACTIONS(6328), + [anon_sym_f64] = ACTIONS(6328), + [anon_sym_c_char] = ACTIONS(6328), + [anon_sym_c_schar] = ACTIONS(6328), + [anon_sym_c_uchar] = ACTIONS(6328), + [anon_sym_c_short] = ACTIONS(6328), + [anon_sym_c_ushort] = ACTIONS(6328), + [anon_sym_c_int] = ACTIONS(6328), + [anon_sym_c_uint] = ACTIONS(6328), + [anon_sym_c_long] = ACTIONS(6328), + [anon_sym_c_ulong] = ACTIONS(6328), + [anon_sym_c_longlong] = ACTIONS(6328), + [anon_sym_c_ulonglong] = ACTIONS(6328), + [anon_sym_c_float] = ACTIONS(6328), + [anon_sym_c_double] = ACTIONS(6328), + [anon_sym_c_longdouble] = ACTIONS(6328), + [anon_sym_else] = ACTIONS(6328), + [anon_sym_DOT_DOT] = ACTIONS(6328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6326), + [anon_sym_orelse] = ACTIONS(6328), + [anon_sym_or] = ACTIONS(6328), + [anon_sym_and] = ACTIONS(6328), + [anon_sym_EQ_EQ] = ACTIONS(6326), + [anon_sym_BANG_EQ] = ACTIONS(6326), + [anon_sym_LT] = ACTIONS(6328), + [anon_sym_LT_EQ] = ACTIONS(6326), + [anon_sym_GT] = ACTIONS(6328), + [anon_sym_GT_EQ] = ACTIONS(6326), + [anon_sym_AMP] = ACTIONS(6326), + [anon_sym_xor] = ACTIONS(6328), + [anon_sym_LT_LT] = ACTIONS(6328), + [anon_sym_GT_GT] = ACTIONS(6326), + [anon_sym_LT_LT_PIPE] = ACTIONS(6326), + [anon_sym_PLUS] = ACTIONS(6326), + [anon_sym_SLASH] = ACTIONS(6326), + [anon_sym_catch] = ACTIONS(6328), + [anon_sym_DOT] = ACTIONS(6328), + [anon_sym_CARET] = ACTIONS(6326), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6326), + }, + [STATE(7216)] = { + [sym_identifier] = ACTIONS(6172), + [anon_sym_func] = ACTIONS(6172), + [anon_sym_c_func] = ACTIONS(6172), + [anon_sym_struct] = ACTIONS(6172), + [anon_sym_LPAREN] = ACTIONS(6170), + [anon_sym_COMMA] = ACTIONS(6170), + [anon_sym_RBRACE] = ACTIONS(6170), + [anon_sym_DASH] = ACTIONS(6170), + [anon_sym_PIPE] = ACTIONS(6170), + [anon_sym_struct_type_BANG] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6170), + [anon_sym_AT] = ACTIONS(6170), + [anon_sym_STAR] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(6170), + [anon_sym_void] = ACTIONS(6172), + [anon_sym_noreturn] = ACTIONS(6172), + [anon_sym_type] = ACTIONS(6172), + [anon_sym_anyopaque] = ACTIONS(6172), + [anon_sym_bool] = ACTIONS(6172), + [anon_sym_int] = ACTIONS(6172), + [anon_sym_uint] = ACTIONS(6172), + [anon_sym_float] = ACTIONS(6172), + [anon_sym_range] = ACTIONS(6172), + [anon_sym_i8] = ACTIONS(6172), + [anon_sym_i16] = ACTIONS(6172), + [anon_sym_i32] = ACTIONS(6172), + [anon_sym_i64] = ACTIONS(6172), + [anon_sym_u8] = ACTIONS(6172), + [anon_sym_u16] = ACTIONS(6172), + [anon_sym_u32] = ACTIONS(6172), + [anon_sym_u64] = ACTIONS(6172), + [anon_sym_isize] = ACTIONS(6172), + [anon_sym_usize] = ACTIONS(6172), + [anon_sym_f32] = ACTIONS(6172), + [anon_sym_f64] = ACTIONS(6172), + [anon_sym_c_char] = ACTIONS(6172), + [anon_sym_c_schar] = ACTIONS(6172), + [anon_sym_c_uchar] = ACTIONS(6172), + [anon_sym_c_short] = ACTIONS(6172), + [anon_sym_c_ushort] = ACTIONS(6172), + [anon_sym_c_int] = ACTIONS(6172), + [anon_sym_c_uint] = ACTIONS(6172), + [anon_sym_c_long] = ACTIONS(6172), + [anon_sym_c_ulong] = ACTIONS(6172), + [anon_sym_c_longlong] = ACTIONS(6172), + [anon_sym_c_ulonglong] = ACTIONS(6172), + [anon_sym_c_float] = ACTIONS(6172), + [anon_sym_c_double] = ACTIONS(6172), + [anon_sym_c_longdouble] = ACTIONS(6172), + [anon_sym_else] = ACTIONS(6172), + [anon_sym_DOT_DOT] = ACTIONS(6172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6170), + [anon_sym_orelse] = ACTIONS(6172), + [anon_sym_or] = ACTIONS(6172), + [anon_sym_and] = ACTIONS(6172), + [anon_sym_EQ_EQ] = ACTIONS(6170), + [anon_sym_BANG_EQ] = ACTIONS(6170), + [anon_sym_LT] = ACTIONS(6172), + [anon_sym_LT_EQ] = ACTIONS(6170), + [anon_sym_GT] = ACTIONS(6172), + [anon_sym_GT_EQ] = ACTIONS(6170), + [anon_sym_AMP] = ACTIONS(6170), + [anon_sym_xor] = ACTIONS(6172), + [anon_sym_LT_LT] = ACTIONS(6172), + [anon_sym_GT_GT] = ACTIONS(6170), + [anon_sym_LT_LT_PIPE] = ACTIONS(6170), + [anon_sym_PLUS] = ACTIONS(6170), + [anon_sym_SLASH] = ACTIONS(6170), + [anon_sym_catch] = ACTIONS(6172), + [anon_sym_DOT] = ACTIONS(6172), + [anon_sym_CARET] = ACTIONS(6170), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6170), + }, + [STATE(7217)] = { + [sym_identifier] = ACTIONS(5760), + [anon_sym_func] = ACTIONS(5760), + [anon_sym_c_func] = ACTIONS(5760), + [anon_sym_struct] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(5758), + [anon_sym_DASH] = ACTIONS(5758), + [anon_sym_PIPE] = ACTIONS(5758), + [anon_sym_struct_type_BANG] = ACTIONS(5758), + [anon_sym_QMARK] = ACTIONS(5758), + [anon_sym_AT] = ACTIONS(5758), + [anon_sym_STAR] = ACTIONS(5758), + [anon_sym_LBRACK] = ACTIONS(5758), + [anon_sym_void] = ACTIONS(5760), + [anon_sym_noreturn] = ACTIONS(5760), + [anon_sym_type] = ACTIONS(5760), + [anon_sym_anyopaque] = ACTIONS(5760), + [anon_sym_bool] = ACTIONS(5760), + [anon_sym_int] = ACTIONS(5760), + [anon_sym_uint] = ACTIONS(5760), + [anon_sym_float] = ACTIONS(5760), + [anon_sym_range] = ACTIONS(5760), + [anon_sym_i8] = ACTIONS(5760), + [anon_sym_i16] = ACTIONS(5760), + [anon_sym_i32] = ACTIONS(5760), + [anon_sym_i64] = ACTIONS(5760), + [anon_sym_u8] = ACTIONS(5760), + [anon_sym_u16] = ACTIONS(5760), + [anon_sym_u32] = ACTIONS(5760), + [anon_sym_u64] = ACTIONS(5760), + [anon_sym_isize] = ACTIONS(5760), + [anon_sym_usize] = ACTIONS(5760), + [anon_sym_f32] = ACTIONS(5760), + [anon_sym_f64] = ACTIONS(5760), + [anon_sym_c_char] = ACTIONS(5760), + [anon_sym_c_schar] = ACTIONS(5760), + [anon_sym_c_uchar] = ACTIONS(5760), + [anon_sym_c_short] = ACTIONS(5760), + [anon_sym_c_ushort] = ACTIONS(5760), + [anon_sym_c_int] = ACTIONS(5760), + [anon_sym_c_uint] = ACTIONS(5760), + [anon_sym_c_long] = ACTIONS(5760), + [anon_sym_c_ulong] = ACTIONS(5760), + [anon_sym_c_longlong] = ACTIONS(5760), + [anon_sym_c_ulonglong] = ACTIONS(5760), + [anon_sym_c_float] = ACTIONS(5760), + [anon_sym_c_double] = ACTIONS(5760), + [anon_sym_c_longdouble] = ACTIONS(5760), + [anon_sym_else] = ACTIONS(5760), + [anon_sym_DOT_DOT] = ACTIONS(5760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5758), + [anon_sym_orelse] = ACTIONS(5760), + [anon_sym_or] = ACTIONS(5760), + [anon_sym_and] = ACTIONS(5760), + [anon_sym_EQ_EQ] = ACTIONS(5758), + [anon_sym_BANG_EQ] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_LT_EQ] = ACTIONS(5758), + [anon_sym_GT] = ACTIONS(5760), + [anon_sym_GT_EQ] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(5758), + [anon_sym_xor] = ACTIONS(5760), + [anon_sym_LT_LT] = ACTIONS(5760), + [anon_sym_GT_GT] = ACTIONS(5758), + [anon_sym_LT_LT_PIPE] = ACTIONS(5758), + [anon_sym_PLUS] = ACTIONS(5758), + [anon_sym_SLASH] = ACTIONS(5758), + [anon_sym_catch] = ACTIONS(5760), + [anon_sym_DOT] = ACTIONS(5760), + [anon_sym_CARET] = ACTIONS(5758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5758), + }, + [STATE(7218)] = { + [sym_identifier] = ACTIONS(4518), + [anon_sym_func] = ACTIONS(4518), + [anon_sym_c_func] = ACTIONS(4518), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym_COMMA] = ACTIONS(4516), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4516), + [anon_sym_PIPE] = ACTIONS(4516), + [anon_sym_struct_type_BANG] = ACTIONS(4516), + [anon_sym_QMARK] = ACTIONS(4516), + [anon_sym_AT] = ACTIONS(4516), + [anon_sym_STAR] = ACTIONS(4516), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_void] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym_type] = ACTIONS(4518), + [anon_sym_anyopaque] = ACTIONS(4518), + [anon_sym_bool] = ACTIONS(4518), + [anon_sym_int] = ACTIONS(4518), + [anon_sym_uint] = ACTIONS(4518), + [anon_sym_float] = ACTIONS(4518), + [anon_sym_range] = ACTIONS(4518), + [anon_sym_i8] = ACTIONS(4518), + [anon_sym_i16] = ACTIONS(4518), + [anon_sym_i32] = ACTIONS(4518), + [anon_sym_i64] = ACTIONS(4518), + [anon_sym_u8] = ACTIONS(4518), + [anon_sym_u16] = ACTIONS(4518), + [anon_sym_u32] = ACTIONS(4518), + [anon_sym_u64] = ACTIONS(4518), + [anon_sym_isize] = ACTIONS(4518), + [anon_sym_usize] = ACTIONS(4518), + [anon_sym_f32] = ACTIONS(4518), + [anon_sym_f64] = ACTIONS(4518), + [anon_sym_c_char] = ACTIONS(4518), + [anon_sym_c_schar] = ACTIONS(4518), + [anon_sym_c_uchar] = ACTIONS(4518), + [anon_sym_c_short] = ACTIONS(4518), + [anon_sym_c_ushort] = ACTIONS(4518), + [anon_sym_c_int] = ACTIONS(4518), + [anon_sym_c_uint] = ACTIONS(4518), + [anon_sym_c_long] = ACTIONS(4518), + [anon_sym_c_ulong] = ACTIONS(4518), + [anon_sym_c_longlong] = ACTIONS(4518), + [anon_sym_c_ulonglong] = ACTIONS(4518), + [anon_sym_c_float] = ACTIONS(4518), + [anon_sym_c_double] = ACTIONS(4518), + [anon_sym_c_longdouble] = ACTIONS(4518), + [anon_sym_else] = ACTIONS(4518), + [anon_sym_DOT_DOT] = ACTIONS(4518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4516), + [anon_sym_orelse] = ACTIONS(4518), + [anon_sym_or] = ACTIONS(4518), + [anon_sym_and] = ACTIONS(4518), + [anon_sym_EQ_EQ] = ACTIONS(4516), + [anon_sym_BANG_EQ] = ACTIONS(4516), + [anon_sym_LT] = ACTIONS(4518), + [anon_sym_LT_EQ] = ACTIONS(4516), + [anon_sym_GT] = ACTIONS(4518), + [anon_sym_GT_EQ] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4516), + [anon_sym_xor] = ACTIONS(4518), + [anon_sym_LT_LT] = ACTIONS(4518), + [anon_sym_GT_GT] = ACTIONS(4516), + [anon_sym_LT_LT_PIPE] = ACTIONS(4516), + [anon_sym_PLUS] = ACTIONS(4516), + [anon_sym_SLASH] = ACTIONS(4516), + [anon_sym_catch] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4518), + [anon_sym_CARET] = ACTIONS(4516), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4516), + }, + [STATE(7219)] = { + [sym_identifier] = ACTIONS(4522), + [anon_sym_func] = ACTIONS(4522), + [anon_sym_c_func] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym_COMMA] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_struct_type_BANG] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4520), + [anon_sym_AT] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_void] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym_type] = ACTIONS(4522), + [anon_sym_anyopaque] = ACTIONS(4522), + [anon_sym_bool] = ACTIONS(4522), + [anon_sym_int] = ACTIONS(4522), + [anon_sym_uint] = ACTIONS(4522), + [anon_sym_float] = ACTIONS(4522), + [anon_sym_range] = ACTIONS(4522), + [anon_sym_i8] = ACTIONS(4522), + [anon_sym_i16] = ACTIONS(4522), + [anon_sym_i32] = ACTIONS(4522), + [anon_sym_i64] = ACTIONS(4522), + [anon_sym_u8] = ACTIONS(4522), + [anon_sym_u16] = ACTIONS(4522), + [anon_sym_u32] = ACTIONS(4522), + [anon_sym_u64] = ACTIONS(4522), + [anon_sym_isize] = ACTIONS(4522), + [anon_sym_usize] = ACTIONS(4522), + [anon_sym_f32] = ACTIONS(4522), + [anon_sym_f64] = ACTIONS(4522), + [anon_sym_c_char] = ACTIONS(4522), + [anon_sym_c_schar] = ACTIONS(4522), + [anon_sym_c_uchar] = ACTIONS(4522), + [anon_sym_c_short] = ACTIONS(4522), + [anon_sym_c_ushort] = ACTIONS(4522), + [anon_sym_c_int] = ACTIONS(4522), + [anon_sym_c_uint] = ACTIONS(4522), + [anon_sym_c_long] = ACTIONS(4522), + [anon_sym_c_ulong] = ACTIONS(4522), + [anon_sym_c_longlong] = ACTIONS(4522), + [anon_sym_c_ulonglong] = ACTIONS(4522), + [anon_sym_c_float] = ACTIONS(4522), + [anon_sym_c_double] = ACTIONS(4522), + [anon_sym_c_longdouble] = ACTIONS(4522), + [anon_sym_else] = ACTIONS(4522), + [anon_sym_DOT_DOT] = ACTIONS(4522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4520), + [anon_sym_orelse] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4522), + [anon_sym_and] = ACTIONS(4522), + [anon_sym_EQ_EQ] = ACTIONS(4520), + [anon_sym_BANG_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_GT] = ACTIONS(4522), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4522), + [anon_sym_LT_LT] = ACTIONS(4522), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym_LT_LT_PIPE] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_catch] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4522), + [anon_sym_CARET] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4520), + }, + [STATE(7220)] = { + [sym_identifier] = ACTIONS(4526), + [anon_sym_func] = ACTIONS(4526), + [anon_sym_c_func] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4524), + [anon_sym_PIPE] = ACTIONS(4524), + [anon_sym_struct_type_BANG] = ACTIONS(4524), + [anon_sym_QMARK] = ACTIONS(4524), + [anon_sym_AT] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_void] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym_type] = ACTIONS(4526), + [anon_sym_anyopaque] = ACTIONS(4526), + [anon_sym_bool] = ACTIONS(4526), + [anon_sym_int] = ACTIONS(4526), + [anon_sym_uint] = ACTIONS(4526), + [anon_sym_float] = ACTIONS(4526), + [anon_sym_range] = ACTIONS(4526), + [anon_sym_i8] = ACTIONS(4526), + [anon_sym_i16] = ACTIONS(4526), + [anon_sym_i32] = ACTIONS(4526), + [anon_sym_i64] = ACTIONS(4526), + [anon_sym_u8] = ACTIONS(4526), + [anon_sym_u16] = ACTIONS(4526), + [anon_sym_u32] = ACTIONS(4526), + [anon_sym_u64] = ACTIONS(4526), + [anon_sym_isize] = ACTIONS(4526), + [anon_sym_usize] = ACTIONS(4526), + [anon_sym_f32] = ACTIONS(4526), + [anon_sym_f64] = ACTIONS(4526), + [anon_sym_c_char] = ACTIONS(4526), + [anon_sym_c_schar] = ACTIONS(4526), + [anon_sym_c_uchar] = ACTIONS(4526), + [anon_sym_c_short] = ACTIONS(4526), + [anon_sym_c_ushort] = ACTIONS(4526), + [anon_sym_c_int] = ACTIONS(4526), + [anon_sym_c_uint] = ACTIONS(4526), + [anon_sym_c_long] = ACTIONS(4526), + [anon_sym_c_ulong] = ACTIONS(4526), + [anon_sym_c_longlong] = ACTIONS(4526), + [anon_sym_c_ulonglong] = ACTIONS(4526), + [anon_sym_c_float] = ACTIONS(4526), + [anon_sym_c_double] = ACTIONS(4526), + [anon_sym_c_longdouble] = ACTIONS(4526), + [anon_sym_else] = ACTIONS(4526), + [anon_sym_DOT_DOT] = ACTIONS(4526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4524), + [anon_sym_orelse] = ACTIONS(4526), + [anon_sym_or] = ACTIONS(4526), + [anon_sym_and] = ACTIONS(4526), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4524), + [anon_sym_xor] = ACTIONS(4526), + [anon_sym_LT_LT] = ACTIONS(4526), + [anon_sym_GT_GT] = ACTIONS(4524), + [anon_sym_LT_LT_PIPE] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4524), + [anon_sym_SLASH] = ACTIONS(4524), + [anon_sym_catch] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4524), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4524), + }, + [STATE(7221)] = { + [sym_identifier] = ACTIONS(4534), + [anon_sym_func] = ACTIONS(4534), + [anon_sym_c_func] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_COMMA] = ACTIONS(4532), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [anon_sym_PIPE] = ACTIONS(4532), + [anon_sym_struct_type_BANG] = ACTIONS(4532), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_AT] = ACTIONS(4532), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_void] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym_type] = ACTIONS(4534), + [anon_sym_anyopaque] = ACTIONS(4534), + [anon_sym_bool] = ACTIONS(4534), + [anon_sym_int] = ACTIONS(4534), + [anon_sym_uint] = ACTIONS(4534), + [anon_sym_float] = ACTIONS(4534), + [anon_sym_range] = ACTIONS(4534), + [anon_sym_i8] = ACTIONS(4534), + [anon_sym_i16] = ACTIONS(4534), + [anon_sym_i32] = ACTIONS(4534), + [anon_sym_i64] = ACTIONS(4534), + [anon_sym_u8] = ACTIONS(4534), + [anon_sym_u16] = ACTIONS(4534), + [anon_sym_u32] = ACTIONS(4534), + [anon_sym_u64] = ACTIONS(4534), + [anon_sym_isize] = ACTIONS(4534), + [anon_sym_usize] = ACTIONS(4534), + [anon_sym_f32] = ACTIONS(4534), + [anon_sym_f64] = ACTIONS(4534), + [anon_sym_c_char] = ACTIONS(4534), + [anon_sym_c_schar] = ACTIONS(4534), + [anon_sym_c_uchar] = ACTIONS(4534), + [anon_sym_c_short] = ACTIONS(4534), + [anon_sym_c_ushort] = ACTIONS(4534), + [anon_sym_c_int] = ACTIONS(4534), + [anon_sym_c_uint] = ACTIONS(4534), + [anon_sym_c_long] = ACTIONS(4534), + [anon_sym_c_ulong] = ACTIONS(4534), + [anon_sym_c_longlong] = ACTIONS(4534), + [anon_sym_c_ulonglong] = ACTIONS(4534), + [anon_sym_c_float] = ACTIONS(4534), + [anon_sym_c_double] = ACTIONS(4534), + [anon_sym_c_longdouble] = ACTIONS(4534), + [anon_sym_else] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4532), + [anon_sym_orelse] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_EQ_EQ] = ACTIONS(4532), + [anon_sym_BANG_EQ] = ACTIONS(4532), + [anon_sym_LT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4532), + [anon_sym_xor] = ACTIONS(4534), + [anon_sym_LT_LT] = ACTIONS(4534), + [anon_sym_GT_GT] = ACTIONS(4532), + [anon_sym_LT_LT_PIPE] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_SLASH] = ACTIONS(4532), + [anon_sym_catch] = ACTIONS(4534), + [anon_sym_DOT] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4532), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4532), + }, + [STATE(7222)] = { + [sym_identifier] = ACTIONS(4538), + [anon_sym_func] = ACTIONS(4538), + [anon_sym_c_func] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4536), + [anon_sym_COMMA] = ACTIONS(4536), + [anon_sym_RBRACE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_struct_type_BANG] = ACTIONS(4536), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_AT] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_void] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym_type] = ACTIONS(4538), + [anon_sym_anyopaque] = ACTIONS(4538), + [anon_sym_bool] = ACTIONS(4538), + [anon_sym_int] = ACTIONS(4538), + [anon_sym_uint] = ACTIONS(4538), + [anon_sym_float] = ACTIONS(4538), + [anon_sym_range] = ACTIONS(4538), + [anon_sym_i8] = ACTIONS(4538), + [anon_sym_i16] = ACTIONS(4538), + [anon_sym_i32] = ACTIONS(4538), + [anon_sym_i64] = ACTIONS(4538), + [anon_sym_u8] = ACTIONS(4538), + [anon_sym_u16] = ACTIONS(4538), + [anon_sym_u32] = ACTIONS(4538), + [anon_sym_u64] = ACTIONS(4538), + [anon_sym_isize] = ACTIONS(4538), + [anon_sym_usize] = ACTIONS(4538), + [anon_sym_f32] = ACTIONS(4538), + [anon_sym_f64] = ACTIONS(4538), + [anon_sym_c_char] = ACTIONS(4538), + [anon_sym_c_schar] = ACTIONS(4538), + [anon_sym_c_uchar] = ACTIONS(4538), + [anon_sym_c_short] = ACTIONS(4538), + [anon_sym_c_ushort] = ACTIONS(4538), + [anon_sym_c_int] = ACTIONS(4538), + [anon_sym_c_uint] = ACTIONS(4538), + [anon_sym_c_long] = ACTIONS(4538), + [anon_sym_c_ulong] = ACTIONS(4538), + [anon_sym_c_longlong] = ACTIONS(4538), + [anon_sym_c_ulonglong] = ACTIONS(4538), + [anon_sym_c_float] = ACTIONS(4538), + [anon_sym_c_double] = ACTIONS(4538), + [anon_sym_c_longdouble] = ACTIONS(4538), + [anon_sym_else] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4536), + [anon_sym_orelse] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4536), + [anon_sym_BANG_EQ] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_xor] = ACTIONS(4538), + [anon_sym_LT_LT] = ACTIONS(4538), + [anon_sym_GT_GT] = ACTIONS(4536), + [anon_sym_LT_LT_PIPE] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_catch] = ACTIONS(4538), + [anon_sym_DOT] = ACTIONS(4538), + [anon_sym_CARET] = ACTIONS(4536), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4536), + }, + [STATE(7223)] = { + [sym_identifier] = ACTIONS(4542), + [anon_sym_func] = ACTIONS(4542), + [anon_sym_c_func] = ACTIONS(4542), + [anon_sym_struct] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_COMMA] = ACTIONS(4540), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_struct_type_BANG] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_AT] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4540), + [anon_sym_void] = ACTIONS(4542), + [anon_sym_noreturn] = ACTIONS(4542), + [anon_sym_type] = ACTIONS(4542), + [anon_sym_anyopaque] = ACTIONS(4542), + [anon_sym_bool] = ACTIONS(4542), + [anon_sym_int] = ACTIONS(4542), + [anon_sym_uint] = ACTIONS(4542), + [anon_sym_float] = ACTIONS(4542), + [anon_sym_range] = ACTIONS(4542), + [anon_sym_i8] = ACTIONS(4542), + [anon_sym_i16] = ACTIONS(4542), + [anon_sym_i32] = ACTIONS(4542), + [anon_sym_i64] = ACTIONS(4542), + [anon_sym_u8] = ACTIONS(4542), + [anon_sym_u16] = ACTIONS(4542), + [anon_sym_u32] = ACTIONS(4542), + [anon_sym_u64] = ACTIONS(4542), + [anon_sym_isize] = ACTIONS(4542), + [anon_sym_usize] = ACTIONS(4542), + [anon_sym_f32] = ACTIONS(4542), + [anon_sym_f64] = ACTIONS(4542), + [anon_sym_c_char] = ACTIONS(4542), + [anon_sym_c_schar] = ACTIONS(4542), + [anon_sym_c_uchar] = ACTIONS(4542), + [anon_sym_c_short] = ACTIONS(4542), + [anon_sym_c_ushort] = ACTIONS(4542), + [anon_sym_c_int] = ACTIONS(4542), + [anon_sym_c_uint] = ACTIONS(4542), + [anon_sym_c_long] = ACTIONS(4542), + [anon_sym_c_ulong] = ACTIONS(4542), + [anon_sym_c_longlong] = ACTIONS(4542), + [anon_sym_c_ulonglong] = ACTIONS(4542), + [anon_sym_c_float] = ACTIONS(4542), + [anon_sym_c_double] = ACTIONS(4542), + [anon_sym_c_longdouble] = ACTIONS(4542), + [anon_sym_else] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4540), + [anon_sym_orelse] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4540), + [anon_sym_BANG_EQ] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4540), + [anon_sym_xor] = ACTIONS(4542), + [anon_sym_LT_LT] = ACTIONS(4542), + [anon_sym_GT_GT] = ACTIONS(4540), + [anon_sym_LT_LT_PIPE] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_catch] = ACTIONS(4542), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4540), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4540), + }, + [STATE(7224)] = { + [sym_identifier] = ACTIONS(1196), + [anon_sym_func] = ACTIONS(1196), + [anon_sym_c_func] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_struct_type_BANG] = 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(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_anyopaque] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_int] = ACTIONS(1196), + [anon_sym_uint] = ACTIONS(1196), + [anon_sym_float] = ACTIONS(1196), + [anon_sym_range] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_c_char] = ACTIONS(1196), + [anon_sym_c_schar] = ACTIONS(1196), + [anon_sym_c_uchar] = ACTIONS(1196), + [anon_sym_c_short] = ACTIONS(1196), + [anon_sym_c_ushort] = ACTIONS(1196), + [anon_sym_c_int] = ACTIONS(1196), + [anon_sym_c_uint] = ACTIONS(1196), + [anon_sym_c_long] = ACTIONS(1196), + [anon_sym_c_ulong] = ACTIONS(1196), + [anon_sym_c_longlong] = ACTIONS(1196), + [anon_sym_c_ulonglong] = ACTIONS(1196), + [anon_sym_c_float] = ACTIONS(1196), + [anon_sym_c_double] = ACTIONS(1196), + [anon_sym_c_longdouble] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_xor] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [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_catch] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(7225)] = { + [sym_identifier] = ACTIONS(4504), + [anon_sym_func] = ACTIONS(4504), + [anon_sym_c_func] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4502), + [anon_sym_COMMA] = ACTIONS(4502), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_PIPE] = ACTIONS(4502), + [anon_sym_struct_type_BANG] = ACTIONS(4502), + [anon_sym_QMARK] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_void] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_anyopaque] = ACTIONS(4504), + [anon_sym_bool] = ACTIONS(4504), + [anon_sym_int] = ACTIONS(4504), + [anon_sym_uint] = ACTIONS(4504), + [anon_sym_float] = ACTIONS(4504), + [anon_sym_range] = ACTIONS(4504), + [anon_sym_i8] = ACTIONS(4504), + [anon_sym_i16] = ACTIONS(4504), + [anon_sym_i32] = ACTIONS(4504), + [anon_sym_i64] = ACTIONS(4504), + [anon_sym_u8] = ACTIONS(4504), + [anon_sym_u16] = ACTIONS(4504), + [anon_sym_u32] = ACTIONS(4504), + [anon_sym_u64] = ACTIONS(4504), + [anon_sym_isize] = ACTIONS(4504), + [anon_sym_usize] = ACTIONS(4504), + [anon_sym_f32] = ACTIONS(4504), + [anon_sym_f64] = ACTIONS(4504), + [anon_sym_c_char] = ACTIONS(4504), + [anon_sym_c_schar] = ACTIONS(4504), + [anon_sym_c_uchar] = ACTIONS(4504), + [anon_sym_c_short] = ACTIONS(4504), + [anon_sym_c_ushort] = ACTIONS(4504), + [anon_sym_c_int] = ACTIONS(4504), + [anon_sym_c_uint] = ACTIONS(4504), + [anon_sym_c_long] = ACTIONS(4504), + [anon_sym_c_ulong] = ACTIONS(4504), + [anon_sym_c_longlong] = ACTIONS(4504), + [anon_sym_c_ulonglong] = ACTIONS(4504), + [anon_sym_c_float] = ACTIONS(4504), + [anon_sym_c_double] = ACTIONS(4504), + [anon_sym_c_longdouble] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4504), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4502), + [anon_sym_orelse] = ACTIONS(4504), + [anon_sym_or] = ACTIONS(4504), + [anon_sym_and] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4502), + [anon_sym_xor] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4504), + [anon_sym_GT_GT] = ACTIONS(4502), + [anon_sym_LT_LT_PIPE] = ACTIONS(4502), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_catch] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4502), + }, + [STATE(7226)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2672), + [anon_sym_func] = ACTIONS(2672), + [anon_sym_c_func] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2672), + [anon_sym_noreturn] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_anyopaque] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_int] = ACTIONS(2672), + [anon_sym_uint] = ACTIONS(2672), + [anon_sym_float] = ACTIONS(2672), + [anon_sym_range] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_c_char] = ACTIONS(2672), + [anon_sym_c_schar] = ACTIONS(2672), + [anon_sym_c_uchar] = ACTIONS(2672), + [anon_sym_c_short] = ACTIONS(2672), + [anon_sym_c_ushort] = ACTIONS(2672), + [anon_sym_c_int] = ACTIONS(2672), + [anon_sym_c_uint] = ACTIONS(2672), + [anon_sym_c_long] = ACTIONS(2672), + [anon_sym_c_ulong] = ACTIONS(2672), + [anon_sym_c_longlong] = ACTIONS(2672), + [anon_sym_c_ulonglong] = ACTIONS(2672), + [anon_sym_c_float] = ACTIONS(2672), + [anon_sym_c_double] = ACTIONS(2672), + [anon_sym_c_longdouble] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2670), + [anon_sym_orelse] = ACTIONS(11353), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(11400), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2670), + }, + [STATE(7227)] = { + [sym_identifier] = ACTIONS(5782), + [anon_sym_func] = ACTIONS(5782), + [anon_sym_c_func] = ACTIONS(5782), + [anon_sym_struct] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5778), + [anon_sym_struct_type_BANG] = ACTIONS(5778), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_AT] = ACTIONS(5778), + [anon_sym_STAR] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_void] = ACTIONS(5782), + [anon_sym_noreturn] = ACTIONS(5782), + [anon_sym_type] = ACTIONS(5782), + [anon_sym_anyopaque] = ACTIONS(5782), + [anon_sym_bool] = ACTIONS(5782), + [anon_sym_int] = ACTIONS(5782), + [anon_sym_uint] = ACTIONS(5782), + [anon_sym_float] = ACTIONS(5782), + [anon_sym_range] = ACTIONS(5782), + [anon_sym_i8] = ACTIONS(5782), + [anon_sym_i16] = ACTIONS(5782), + [anon_sym_i32] = ACTIONS(5782), + [anon_sym_i64] = ACTIONS(5782), + [anon_sym_u8] = ACTIONS(5782), + [anon_sym_u16] = ACTIONS(5782), + [anon_sym_u32] = ACTIONS(5782), + [anon_sym_u64] = ACTIONS(5782), + [anon_sym_isize] = ACTIONS(5782), + [anon_sym_usize] = ACTIONS(5782), + [anon_sym_f32] = ACTIONS(5782), + [anon_sym_f64] = ACTIONS(5782), + [anon_sym_c_char] = ACTIONS(5782), + [anon_sym_c_schar] = ACTIONS(5782), + [anon_sym_c_uchar] = ACTIONS(5782), + [anon_sym_c_short] = ACTIONS(5782), + [anon_sym_c_ushort] = ACTIONS(5782), + [anon_sym_c_int] = ACTIONS(5782), + [anon_sym_c_uint] = ACTIONS(5782), + [anon_sym_c_long] = ACTIONS(5782), + [anon_sym_c_ulong] = ACTIONS(5782), + [anon_sym_c_longlong] = ACTIONS(5782), + [anon_sym_c_ulonglong] = ACTIONS(5782), + [anon_sym_c_float] = ACTIONS(5782), + [anon_sym_c_double] = ACTIONS(5782), + [anon_sym_c_longdouble] = ACTIONS(5782), + [anon_sym_else] = ACTIONS(5782), + [anon_sym_DOT_DOT] = ACTIONS(5782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5778), + [anon_sym_orelse] = ACTIONS(5782), + [anon_sym_or] = ACTIONS(5782), + [anon_sym_and] = ACTIONS(5782), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_LT] = ACTIONS(5782), + [anon_sym_LT_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5782), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5778), + [anon_sym_xor] = ACTIONS(5782), + [anon_sym_LT_LT] = ACTIONS(5782), + [anon_sym_GT_GT] = ACTIONS(5778), + [anon_sym_LT_LT_PIPE] = ACTIONS(5778), + [anon_sym_PLUS] = ACTIONS(5778), + [anon_sym_SLASH] = ACTIONS(5778), + [anon_sym_catch] = ACTIONS(5782), + [anon_sym_DOT] = ACTIONS(5782), + [anon_sym_CARET] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5778), + }, + [STATE(7228)] = { + [sym_identifier] = ACTIONS(6332), + [anon_sym_func] = ACTIONS(6332), + [anon_sym_c_func] = ACTIONS(6332), + [anon_sym_struct] = ACTIONS(6332), + [anon_sym_LPAREN] = ACTIONS(6330), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_RBRACE] = ACTIONS(6330), + [anon_sym_DASH] = ACTIONS(6330), + [anon_sym_PIPE] = ACTIONS(6330), + [anon_sym_struct_type_BANG] = ACTIONS(6330), + [anon_sym_QMARK] = ACTIONS(6330), + [anon_sym_AT] = ACTIONS(6330), + [anon_sym_STAR] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(6330), + [anon_sym_void] = ACTIONS(6332), + [anon_sym_noreturn] = ACTIONS(6332), + [anon_sym_type] = ACTIONS(6332), + [anon_sym_anyopaque] = ACTIONS(6332), + [anon_sym_bool] = ACTIONS(6332), + [anon_sym_int] = ACTIONS(6332), + [anon_sym_uint] = ACTIONS(6332), + [anon_sym_float] = ACTIONS(6332), + [anon_sym_range] = ACTIONS(6332), + [anon_sym_i8] = ACTIONS(6332), + [anon_sym_i16] = ACTIONS(6332), + [anon_sym_i32] = ACTIONS(6332), + [anon_sym_i64] = ACTIONS(6332), + [anon_sym_u8] = ACTIONS(6332), + [anon_sym_u16] = ACTIONS(6332), + [anon_sym_u32] = ACTIONS(6332), + [anon_sym_u64] = ACTIONS(6332), + [anon_sym_isize] = ACTIONS(6332), + [anon_sym_usize] = ACTIONS(6332), + [anon_sym_f32] = ACTIONS(6332), + [anon_sym_f64] = ACTIONS(6332), + [anon_sym_c_char] = ACTIONS(6332), + [anon_sym_c_schar] = ACTIONS(6332), + [anon_sym_c_uchar] = ACTIONS(6332), + [anon_sym_c_short] = ACTIONS(6332), + [anon_sym_c_ushort] = ACTIONS(6332), + [anon_sym_c_int] = ACTIONS(6332), + [anon_sym_c_uint] = ACTIONS(6332), + [anon_sym_c_long] = ACTIONS(6332), + [anon_sym_c_ulong] = ACTIONS(6332), + [anon_sym_c_longlong] = ACTIONS(6332), + [anon_sym_c_ulonglong] = ACTIONS(6332), + [anon_sym_c_float] = ACTIONS(6332), + [anon_sym_c_double] = ACTIONS(6332), + [anon_sym_c_longdouble] = ACTIONS(6332), + [anon_sym_else] = ACTIONS(6332), + [anon_sym_DOT_DOT] = ACTIONS(6332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6330), + [anon_sym_orelse] = ACTIONS(6332), + [anon_sym_or] = ACTIONS(6332), + [anon_sym_and] = ACTIONS(6332), + [anon_sym_EQ_EQ] = ACTIONS(6330), + [anon_sym_BANG_EQ] = ACTIONS(6330), + [anon_sym_LT] = ACTIONS(6332), + [anon_sym_LT_EQ] = ACTIONS(6330), + [anon_sym_GT] = ACTIONS(6332), + [anon_sym_GT_EQ] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6330), + [anon_sym_xor] = ACTIONS(6332), + [anon_sym_LT_LT] = ACTIONS(6332), + [anon_sym_GT_GT] = ACTIONS(6330), + [anon_sym_LT_LT_PIPE] = ACTIONS(6330), + [anon_sym_PLUS] = ACTIONS(6330), + [anon_sym_SLASH] = ACTIONS(6330), + [anon_sym_catch] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6332), + [anon_sym_CARET] = ACTIONS(6330), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6330), + }, + [STATE(7229)] = { + [sym_identifier] = ACTIONS(4736), + [anon_sym_func] = ACTIONS(4736), + [anon_sym_c_func] = ACTIONS(4736), + [anon_sym_struct] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_PIPE] = ACTIONS(4732), + [anon_sym_struct_type_BANG] = ACTIONS(4732), + [anon_sym_QMARK] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_void] = ACTIONS(4736), + [anon_sym_noreturn] = ACTIONS(4736), + [anon_sym_type] = ACTIONS(4736), + [anon_sym_anyopaque] = ACTIONS(4736), + [anon_sym_bool] = ACTIONS(4736), + [anon_sym_int] = ACTIONS(4736), + [anon_sym_uint] = ACTIONS(4736), + [anon_sym_float] = ACTIONS(4736), + [anon_sym_range] = ACTIONS(4736), + [anon_sym_i8] = ACTIONS(4736), + [anon_sym_i16] = ACTIONS(4736), + [anon_sym_i32] = ACTIONS(4736), + [anon_sym_i64] = ACTIONS(4736), + [anon_sym_u8] = ACTIONS(4736), + [anon_sym_u16] = ACTIONS(4736), + [anon_sym_u32] = ACTIONS(4736), + [anon_sym_u64] = ACTIONS(4736), + [anon_sym_isize] = ACTIONS(4736), + [anon_sym_usize] = ACTIONS(4736), + [anon_sym_f32] = ACTIONS(4736), + [anon_sym_f64] = ACTIONS(4736), + [anon_sym_c_char] = ACTIONS(4736), + [anon_sym_c_schar] = ACTIONS(4736), + [anon_sym_c_uchar] = ACTIONS(4736), + [anon_sym_c_short] = ACTIONS(4736), + [anon_sym_c_ushort] = ACTIONS(4736), + [anon_sym_c_int] = ACTIONS(4736), + [anon_sym_c_uint] = ACTIONS(4736), + [anon_sym_c_long] = ACTIONS(4736), + [anon_sym_c_ulong] = ACTIONS(4736), + [anon_sym_c_longlong] = ACTIONS(4736), + [anon_sym_c_ulonglong] = ACTIONS(4736), + [anon_sym_c_float] = ACTIONS(4736), + [anon_sym_c_double] = ACTIONS(4736), + [anon_sym_c_longdouble] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4732), + [anon_sym_orelse] = ACTIONS(4736), + [anon_sym_or] = ACTIONS(4736), + [anon_sym_and] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4732), + [anon_sym_AMP] = ACTIONS(4732), + [anon_sym_xor] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4732), + [anon_sym_LT_LT_PIPE] = ACTIONS(4732), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_catch] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4732), + }, + [STATE(7230)] = { + [sym_identifier] = ACTIONS(6074), + [anon_sym_func] = ACTIONS(6074), + [anon_sym_c_func] = ACTIONS(6074), + [anon_sym_struct] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6072), + [anon_sym_COMMA] = ACTIONS(6072), + [anon_sym_RBRACE] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(6072), + [anon_sym_PIPE] = ACTIONS(6072), + [anon_sym_struct_type_BANG] = ACTIONS(6072), + [anon_sym_QMARK] = ACTIONS(6072), + [anon_sym_AT] = ACTIONS(6072), + [anon_sym_STAR] = ACTIONS(6072), + [anon_sym_LBRACK] = ACTIONS(6072), + [anon_sym_void] = ACTIONS(6074), + [anon_sym_noreturn] = ACTIONS(6074), + [anon_sym_type] = ACTIONS(6074), + [anon_sym_anyopaque] = ACTIONS(6074), + [anon_sym_bool] = ACTIONS(6074), + [anon_sym_int] = ACTIONS(6074), + [anon_sym_uint] = ACTIONS(6074), + [anon_sym_float] = ACTIONS(6074), + [anon_sym_range] = ACTIONS(6074), + [anon_sym_i8] = ACTIONS(6074), + [anon_sym_i16] = ACTIONS(6074), + [anon_sym_i32] = ACTIONS(6074), + [anon_sym_i64] = ACTIONS(6074), + [anon_sym_u8] = ACTIONS(6074), + [anon_sym_u16] = ACTIONS(6074), + [anon_sym_u32] = ACTIONS(6074), + [anon_sym_u64] = ACTIONS(6074), + [anon_sym_isize] = ACTIONS(6074), + [anon_sym_usize] = ACTIONS(6074), + [anon_sym_f32] = ACTIONS(6074), + [anon_sym_f64] = ACTIONS(6074), + [anon_sym_c_char] = ACTIONS(6074), + [anon_sym_c_schar] = ACTIONS(6074), + [anon_sym_c_uchar] = ACTIONS(6074), + [anon_sym_c_short] = ACTIONS(6074), + [anon_sym_c_ushort] = ACTIONS(6074), + [anon_sym_c_int] = ACTIONS(6074), + [anon_sym_c_uint] = ACTIONS(6074), + [anon_sym_c_long] = ACTIONS(6074), + [anon_sym_c_ulong] = ACTIONS(6074), + [anon_sym_c_longlong] = ACTIONS(6074), + [anon_sym_c_ulonglong] = ACTIONS(6074), + [anon_sym_c_float] = ACTIONS(6074), + [anon_sym_c_double] = ACTIONS(6074), + [anon_sym_c_longdouble] = ACTIONS(6074), + [anon_sym_else] = ACTIONS(6074), + [anon_sym_DOT_DOT] = ACTIONS(6074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6072), + [anon_sym_orelse] = ACTIONS(6074), + [anon_sym_or] = ACTIONS(6074), + [anon_sym_and] = ACTIONS(6074), + [anon_sym_EQ_EQ] = ACTIONS(6072), + [anon_sym_BANG_EQ] = ACTIONS(6072), + [anon_sym_LT] = ACTIONS(6074), + [anon_sym_LT_EQ] = ACTIONS(6072), + [anon_sym_GT] = ACTIONS(6074), + [anon_sym_GT_EQ] = ACTIONS(6072), + [anon_sym_AMP] = ACTIONS(6072), + [anon_sym_xor] = ACTIONS(6074), + [anon_sym_LT_LT] = ACTIONS(6074), + [anon_sym_GT_GT] = ACTIONS(6072), + [anon_sym_LT_LT_PIPE] = ACTIONS(6072), + [anon_sym_PLUS] = ACTIONS(6072), + [anon_sym_SLASH] = ACTIONS(6072), + [anon_sym_catch] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6074), + [anon_sym_CARET] = ACTIONS(6072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6072), + }, + [STATE(7231)] = { + [sym_identifier] = ACTIONS(6078), + [anon_sym_func] = ACTIONS(6078), + [anon_sym_c_func] = ACTIONS(6078), + [anon_sym_struct] = ACTIONS(6078), + [anon_sym_LPAREN] = ACTIONS(6076), + [anon_sym_COMMA] = ACTIONS(6076), + [anon_sym_RBRACE] = ACTIONS(6076), + [anon_sym_DASH] = ACTIONS(6076), + [anon_sym_PIPE] = ACTIONS(6076), + [anon_sym_struct_type_BANG] = ACTIONS(6076), + [anon_sym_QMARK] = ACTIONS(6076), + [anon_sym_AT] = ACTIONS(6076), + [anon_sym_STAR] = ACTIONS(6076), + [anon_sym_LBRACK] = ACTIONS(6076), + [anon_sym_void] = ACTIONS(6078), + [anon_sym_noreturn] = ACTIONS(6078), + [anon_sym_type] = ACTIONS(6078), + [anon_sym_anyopaque] = ACTIONS(6078), + [anon_sym_bool] = ACTIONS(6078), + [anon_sym_int] = ACTIONS(6078), + [anon_sym_uint] = ACTIONS(6078), + [anon_sym_float] = ACTIONS(6078), + [anon_sym_range] = ACTIONS(6078), + [anon_sym_i8] = ACTIONS(6078), + [anon_sym_i16] = ACTIONS(6078), + [anon_sym_i32] = ACTIONS(6078), + [anon_sym_i64] = ACTIONS(6078), + [anon_sym_u8] = ACTIONS(6078), + [anon_sym_u16] = ACTIONS(6078), + [anon_sym_u32] = ACTIONS(6078), + [anon_sym_u64] = ACTIONS(6078), + [anon_sym_isize] = ACTIONS(6078), + [anon_sym_usize] = ACTIONS(6078), + [anon_sym_f32] = ACTIONS(6078), + [anon_sym_f64] = ACTIONS(6078), + [anon_sym_c_char] = ACTIONS(6078), + [anon_sym_c_schar] = ACTIONS(6078), + [anon_sym_c_uchar] = ACTIONS(6078), + [anon_sym_c_short] = ACTIONS(6078), + [anon_sym_c_ushort] = ACTIONS(6078), + [anon_sym_c_int] = ACTIONS(6078), + [anon_sym_c_uint] = ACTIONS(6078), + [anon_sym_c_long] = ACTIONS(6078), + [anon_sym_c_ulong] = ACTIONS(6078), + [anon_sym_c_longlong] = ACTIONS(6078), + [anon_sym_c_ulonglong] = ACTIONS(6078), + [anon_sym_c_float] = ACTIONS(6078), + [anon_sym_c_double] = ACTIONS(6078), + [anon_sym_c_longdouble] = ACTIONS(6078), + [anon_sym_else] = ACTIONS(6078), + [anon_sym_DOT_DOT] = ACTIONS(6078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6076), + [anon_sym_orelse] = ACTIONS(6078), + [anon_sym_or] = ACTIONS(6078), + [anon_sym_and] = ACTIONS(6078), + [anon_sym_EQ_EQ] = ACTIONS(6076), + [anon_sym_BANG_EQ] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(6078), + [anon_sym_LT_EQ] = ACTIONS(6076), + [anon_sym_GT] = ACTIONS(6078), + [anon_sym_GT_EQ] = ACTIONS(6076), + [anon_sym_AMP] = ACTIONS(6076), + [anon_sym_xor] = ACTIONS(6078), + [anon_sym_LT_LT] = ACTIONS(6078), + [anon_sym_GT_GT] = ACTIONS(6076), + [anon_sym_LT_LT_PIPE] = ACTIONS(6076), + [anon_sym_PLUS] = ACTIONS(6076), + [anon_sym_SLASH] = ACTIONS(6076), + [anon_sym_catch] = ACTIONS(6078), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_CARET] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6076), + }, + [STATE(7232)] = { + [sym_identifier] = ACTIONS(6082), + [anon_sym_func] = ACTIONS(6082), + [anon_sym_c_func] = ACTIONS(6082), + [anon_sym_struct] = ACTIONS(6082), + [anon_sym_LPAREN] = ACTIONS(6080), + [anon_sym_COMMA] = ACTIONS(6080), + [anon_sym_RBRACE] = ACTIONS(6080), + [anon_sym_DASH] = ACTIONS(6080), + [anon_sym_PIPE] = ACTIONS(6080), + [anon_sym_struct_type_BANG] = ACTIONS(6080), + [anon_sym_QMARK] = ACTIONS(6080), + [anon_sym_AT] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(6080), + [anon_sym_LBRACK] = ACTIONS(6080), + [anon_sym_void] = ACTIONS(6082), + [anon_sym_noreturn] = ACTIONS(6082), + [anon_sym_type] = ACTIONS(6082), + [anon_sym_anyopaque] = ACTIONS(6082), + [anon_sym_bool] = ACTIONS(6082), + [anon_sym_int] = ACTIONS(6082), + [anon_sym_uint] = ACTIONS(6082), + [anon_sym_float] = ACTIONS(6082), + [anon_sym_range] = ACTIONS(6082), + [anon_sym_i8] = ACTIONS(6082), + [anon_sym_i16] = ACTIONS(6082), + [anon_sym_i32] = ACTIONS(6082), + [anon_sym_i64] = ACTIONS(6082), + [anon_sym_u8] = ACTIONS(6082), + [anon_sym_u16] = ACTIONS(6082), + [anon_sym_u32] = ACTIONS(6082), + [anon_sym_u64] = ACTIONS(6082), + [anon_sym_isize] = ACTIONS(6082), + [anon_sym_usize] = ACTIONS(6082), + [anon_sym_f32] = ACTIONS(6082), + [anon_sym_f64] = ACTIONS(6082), + [anon_sym_c_char] = ACTIONS(6082), + [anon_sym_c_schar] = ACTIONS(6082), + [anon_sym_c_uchar] = ACTIONS(6082), + [anon_sym_c_short] = ACTIONS(6082), + [anon_sym_c_ushort] = ACTIONS(6082), + [anon_sym_c_int] = ACTIONS(6082), + [anon_sym_c_uint] = ACTIONS(6082), + [anon_sym_c_long] = ACTIONS(6082), + [anon_sym_c_ulong] = ACTIONS(6082), + [anon_sym_c_longlong] = ACTIONS(6082), + [anon_sym_c_ulonglong] = ACTIONS(6082), + [anon_sym_c_float] = ACTIONS(6082), + [anon_sym_c_double] = ACTIONS(6082), + [anon_sym_c_longdouble] = ACTIONS(6082), + [anon_sym_else] = ACTIONS(6082), + [anon_sym_DOT_DOT] = ACTIONS(6082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6080), + [anon_sym_orelse] = ACTIONS(6082), + [anon_sym_or] = ACTIONS(6082), + [anon_sym_and] = ACTIONS(6082), + [anon_sym_EQ_EQ] = ACTIONS(6080), + [anon_sym_BANG_EQ] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(6082), + [anon_sym_LT_EQ] = ACTIONS(6080), + [anon_sym_GT] = ACTIONS(6082), + [anon_sym_GT_EQ] = ACTIONS(6080), + [anon_sym_AMP] = ACTIONS(6080), + [anon_sym_xor] = ACTIONS(6082), + [anon_sym_LT_LT] = ACTIONS(6082), + [anon_sym_GT_GT] = ACTIONS(6080), + [anon_sym_LT_LT_PIPE] = ACTIONS(6080), + [anon_sym_PLUS] = ACTIONS(6080), + [anon_sym_SLASH] = ACTIONS(6080), + [anon_sym_catch] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6082), + [anon_sym_CARET] = ACTIONS(6080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6080), + }, + [STATE(7233)] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_func] = ACTIONS(4550), + [anon_sym_c_func] = ACTIONS(4550), + [anon_sym_struct] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_struct_type_BANG] = ACTIONS(4548), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_AT] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_void] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_type] = ACTIONS(4550), + [anon_sym_anyopaque] = ACTIONS(4550), + [anon_sym_bool] = ACTIONS(4550), + [anon_sym_int] = ACTIONS(4550), + [anon_sym_uint] = ACTIONS(4550), + [anon_sym_float] = ACTIONS(4550), + [anon_sym_range] = ACTIONS(4550), + [anon_sym_i8] = ACTIONS(4550), + [anon_sym_i16] = ACTIONS(4550), + [anon_sym_i32] = ACTIONS(4550), + [anon_sym_i64] = ACTIONS(4550), + [anon_sym_u8] = ACTIONS(4550), + [anon_sym_u16] = ACTIONS(4550), + [anon_sym_u32] = ACTIONS(4550), + [anon_sym_u64] = ACTIONS(4550), + [anon_sym_isize] = ACTIONS(4550), + [anon_sym_usize] = ACTIONS(4550), + [anon_sym_f32] = ACTIONS(4550), + [anon_sym_f64] = ACTIONS(4550), + [anon_sym_c_char] = ACTIONS(4550), + [anon_sym_c_schar] = ACTIONS(4550), + [anon_sym_c_uchar] = ACTIONS(4550), + [anon_sym_c_short] = ACTIONS(4550), + [anon_sym_c_ushort] = ACTIONS(4550), + [anon_sym_c_int] = ACTIONS(4550), + [anon_sym_c_uint] = ACTIONS(4550), + [anon_sym_c_long] = ACTIONS(4550), + [anon_sym_c_ulong] = ACTIONS(4550), + [anon_sym_c_longlong] = ACTIONS(4550), + [anon_sym_c_ulonglong] = ACTIONS(4550), + [anon_sym_c_float] = ACTIONS(4550), + [anon_sym_c_double] = ACTIONS(4550), + [anon_sym_c_longdouble] = ACTIONS(4550), + [anon_sym_else] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4548), + [anon_sym_orelse] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_xor] = ACTIONS(4550), + [anon_sym_LT_LT] = ACTIONS(4550), + [anon_sym_GT_GT] = ACTIONS(4548), + [anon_sym_LT_LT_PIPE] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_catch] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4548), + }, + [STATE(7234)] = { + [sym_identifier] = ACTIONS(4554), + [anon_sym_func] = ACTIONS(4554), + [anon_sym_c_func] = ACTIONS(4554), + [anon_sym_struct] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4552), + [anon_sym_struct_type_BANG] = ACTIONS(4552), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_AT] = ACTIONS(4552), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_void] = ACTIONS(4554), + [anon_sym_noreturn] = ACTIONS(4554), + [anon_sym_type] = ACTIONS(4554), + [anon_sym_anyopaque] = ACTIONS(4554), + [anon_sym_bool] = ACTIONS(4554), + [anon_sym_int] = ACTIONS(4554), + [anon_sym_uint] = ACTIONS(4554), + [anon_sym_float] = ACTIONS(4554), + [anon_sym_range] = ACTIONS(4554), + [anon_sym_i8] = ACTIONS(4554), + [anon_sym_i16] = ACTIONS(4554), + [anon_sym_i32] = ACTIONS(4554), + [anon_sym_i64] = ACTIONS(4554), + [anon_sym_u8] = ACTIONS(4554), + [anon_sym_u16] = ACTIONS(4554), + [anon_sym_u32] = ACTIONS(4554), + [anon_sym_u64] = ACTIONS(4554), + [anon_sym_isize] = ACTIONS(4554), + [anon_sym_usize] = ACTIONS(4554), + [anon_sym_f32] = ACTIONS(4554), + [anon_sym_f64] = ACTIONS(4554), + [anon_sym_c_char] = ACTIONS(4554), + [anon_sym_c_schar] = ACTIONS(4554), + [anon_sym_c_uchar] = ACTIONS(4554), + [anon_sym_c_short] = ACTIONS(4554), + [anon_sym_c_ushort] = ACTIONS(4554), + [anon_sym_c_int] = ACTIONS(4554), + [anon_sym_c_uint] = ACTIONS(4554), + [anon_sym_c_long] = ACTIONS(4554), + [anon_sym_c_ulong] = ACTIONS(4554), + [anon_sym_c_longlong] = ACTIONS(4554), + [anon_sym_c_ulonglong] = ACTIONS(4554), + [anon_sym_c_float] = ACTIONS(4554), + [anon_sym_c_double] = ACTIONS(4554), + [anon_sym_c_longdouble] = ACTIONS(4554), + [anon_sym_else] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4552), + [anon_sym_orelse] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4552), + [anon_sym_BANG_EQ] = ACTIONS(4552), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4552), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_xor] = ACTIONS(4554), + [anon_sym_LT_LT] = ACTIONS(4554), + [anon_sym_GT_GT] = ACTIONS(4552), + [anon_sym_LT_LT_PIPE] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4552), + [anon_sym_catch] = ACTIONS(4554), + [anon_sym_DOT] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4552), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4552), + }, + [STATE(7235)] = { + [sym_identifier] = ACTIONS(4558), + [anon_sym_func] = ACTIONS(4558), + [anon_sym_c_func] = ACTIONS(4558), + [anon_sym_struct] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_struct_type_BANG] = ACTIONS(4556), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_AT] = ACTIONS(4556), + [anon_sym_STAR] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_void] = ACTIONS(4558), + [anon_sym_noreturn] = ACTIONS(4558), + [anon_sym_type] = ACTIONS(4558), + [anon_sym_anyopaque] = ACTIONS(4558), + [anon_sym_bool] = ACTIONS(4558), + [anon_sym_int] = ACTIONS(4558), + [anon_sym_uint] = ACTIONS(4558), + [anon_sym_float] = ACTIONS(4558), + [anon_sym_range] = ACTIONS(4558), + [anon_sym_i8] = ACTIONS(4558), + [anon_sym_i16] = ACTIONS(4558), + [anon_sym_i32] = ACTIONS(4558), + [anon_sym_i64] = ACTIONS(4558), + [anon_sym_u8] = ACTIONS(4558), + [anon_sym_u16] = ACTIONS(4558), + [anon_sym_u32] = ACTIONS(4558), + [anon_sym_u64] = ACTIONS(4558), + [anon_sym_isize] = ACTIONS(4558), + [anon_sym_usize] = ACTIONS(4558), + [anon_sym_f32] = ACTIONS(4558), + [anon_sym_f64] = ACTIONS(4558), + [anon_sym_c_char] = ACTIONS(4558), + [anon_sym_c_schar] = ACTIONS(4558), + [anon_sym_c_uchar] = ACTIONS(4558), + [anon_sym_c_short] = ACTIONS(4558), + [anon_sym_c_ushort] = ACTIONS(4558), + [anon_sym_c_int] = ACTIONS(4558), + [anon_sym_c_uint] = ACTIONS(4558), + [anon_sym_c_long] = ACTIONS(4558), + [anon_sym_c_ulong] = ACTIONS(4558), + [anon_sym_c_longlong] = ACTIONS(4558), + [anon_sym_c_ulonglong] = ACTIONS(4558), + [anon_sym_c_float] = ACTIONS(4558), + [anon_sym_c_double] = ACTIONS(4558), + [anon_sym_c_longdouble] = ACTIONS(4558), + [anon_sym_else] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4556), + [anon_sym_orelse] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4556), + [anon_sym_BANG_EQ] = ACTIONS(4556), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4556), + [anon_sym_AMP] = ACTIONS(4556), + [anon_sym_xor] = ACTIONS(4558), + [anon_sym_LT_LT] = ACTIONS(4558), + [anon_sym_GT_GT] = ACTIONS(4556), + [anon_sym_LT_LT_PIPE] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4556), + [anon_sym_SLASH] = ACTIONS(4556), + [anon_sym_catch] = ACTIONS(4558), + [anon_sym_DOT] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4556), + }, + [STATE(7236)] = { + [sym_identifier] = ACTIONS(4562), + [anon_sym_func] = ACTIONS(4562), + [anon_sym_c_func] = ACTIONS(4562), + [anon_sym_struct] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [anon_sym_PIPE] = ACTIONS(4560), + [anon_sym_struct_type_BANG] = ACTIONS(4560), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_AT] = ACTIONS(4560), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_void] = ACTIONS(4562), + [anon_sym_noreturn] = ACTIONS(4562), + [anon_sym_type] = ACTIONS(4562), + [anon_sym_anyopaque] = ACTIONS(4562), + [anon_sym_bool] = ACTIONS(4562), + [anon_sym_int] = ACTIONS(4562), + [anon_sym_uint] = ACTIONS(4562), + [anon_sym_float] = ACTIONS(4562), + [anon_sym_range] = ACTIONS(4562), + [anon_sym_i8] = ACTIONS(4562), + [anon_sym_i16] = ACTIONS(4562), + [anon_sym_i32] = ACTIONS(4562), + [anon_sym_i64] = ACTIONS(4562), + [anon_sym_u8] = ACTIONS(4562), + [anon_sym_u16] = ACTIONS(4562), + [anon_sym_u32] = ACTIONS(4562), + [anon_sym_u64] = ACTIONS(4562), + [anon_sym_isize] = ACTIONS(4562), + [anon_sym_usize] = ACTIONS(4562), + [anon_sym_f32] = ACTIONS(4562), + [anon_sym_f64] = ACTIONS(4562), + [anon_sym_c_char] = ACTIONS(4562), + [anon_sym_c_schar] = ACTIONS(4562), + [anon_sym_c_uchar] = ACTIONS(4562), + [anon_sym_c_short] = ACTIONS(4562), + [anon_sym_c_ushort] = ACTIONS(4562), + [anon_sym_c_int] = ACTIONS(4562), + [anon_sym_c_uint] = ACTIONS(4562), + [anon_sym_c_long] = ACTIONS(4562), + [anon_sym_c_ulong] = ACTIONS(4562), + [anon_sym_c_longlong] = ACTIONS(4562), + [anon_sym_c_ulonglong] = ACTIONS(4562), + [anon_sym_c_float] = ACTIONS(4562), + [anon_sym_c_double] = ACTIONS(4562), + [anon_sym_c_longdouble] = ACTIONS(4562), + [anon_sym_else] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4560), + [anon_sym_orelse] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4560), + [anon_sym_BANG_EQ] = ACTIONS(4560), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_xor] = ACTIONS(4562), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(4560), + [anon_sym_LT_LT_PIPE] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4560), + [anon_sym_SLASH] = ACTIONS(4560), + [anon_sym_catch] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4560), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4560), + }, + [STATE(7237)] = { + [sym_identifier] = ACTIONS(4572), + [anon_sym_func] = ACTIONS(4572), + [anon_sym_c_func] = ACTIONS(4572), + [anon_sym_struct] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_struct_type_BANG] = ACTIONS(4570), + [anon_sym_QMARK] = ACTIONS(4570), + [anon_sym_AT] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_void] = ACTIONS(4572), + [anon_sym_noreturn] = ACTIONS(4572), + [anon_sym_type] = ACTIONS(4572), + [anon_sym_anyopaque] = ACTIONS(4572), + [anon_sym_bool] = ACTIONS(4572), + [anon_sym_int] = ACTIONS(4572), + [anon_sym_uint] = ACTIONS(4572), + [anon_sym_float] = ACTIONS(4572), + [anon_sym_range] = ACTIONS(4572), + [anon_sym_i8] = ACTIONS(4572), + [anon_sym_i16] = ACTIONS(4572), + [anon_sym_i32] = ACTIONS(4572), + [anon_sym_i64] = ACTIONS(4572), + [anon_sym_u8] = ACTIONS(4572), + [anon_sym_u16] = ACTIONS(4572), + [anon_sym_u32] = ACTIONS(4572), + [anon_sym_u64] = ACTIONS(4572), + [anon_sym_isize] = ACTIONS(4572), + [anon_sym_usize] = ACTIONS(4572), + [anon_sym_f32] = ACTIONS(4572), + [anon_sym_f64] = ACTIONS(4572), + [anon_sym_c_char] = ACTIONS(4572), + [anon_sym_c_schar] = ACTIONS(4572), + [anon_sym_c_uchar] = ACTIONS(4572), + [anon_sym_c_short] = ACTIONS(4572), + [anon_sym_c_ushort] = ACTIONS(4572), + [anon_sym_c_int] = ACTIONS(4572), + [anon_sym_c_uint] = ACTIONS(4572), + [anon_sym_c_long] = ACTIONS(4572), + [anon_sym_c_ulong] = ACTIONS(4572), + [anon_sym_c_longlong] = ACTIONS(4572), + [anon_sym_c_ulonglong] = ACTIONS(4572), + [anon_sym_c_float] = ACTIONS(4572), + [anon_sym_c_double] = ACTIONS(4572), + [anon_sym_c_longdouble] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4570), + [anon_sym_orelse] = ACTIONS(4572), + [anon_sym_or] = ACTIONS(4572), + [anon_sym_and] = ACTIONS(4572), + [anon_sym_EQ_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_xor] = ACTIONS(4572), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(4570), + [anon_sym_LT_LT_PIPE] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_catch] = ACTIONS(4572), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_CARET] = ACTIONS(4570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4570), + }, + [STATE(7238)] = { + [sym_identifier] = ACTIONS(4578), + [anon_sym_func] = ACTIONS(4578), + [anon_sym_c_func] = ACTIONS(4578), + [anon_sym_struct] = ACTIONS(4578), + [anon_sym_LPAREN] = ACTIONS(4576), + [anon_sym_COMMA] = ACTIONS(4576), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_struct_type_BANG] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_AT] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_void] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_type] = ACTIONS(4578), + [anon_sym_anyopaque] = ACTIONS(4578), + [anon_sym_bool] = ACTIONS(4578), + [anon_sym_int] = ACTIONS(4578), + [anon_sym_uint] = ACTIONS(4578), + [anon_sym_float] = ACTIONS(4578), + [anon_sym_range] = ACTIONS(4578), + [anon_sym_i8] = ACTIONS(4578), + [anon_sym_i16] = ACTIONS(4578), + [anon_sym_i32] = ACTIONS(4578), + [anon_sym_i64] = ACTIONS(4578), + [anon_sym_u8] = ACTIONS(4578), + [anon_sym_u16] = ACTIONS(4578), + [anon_sym_u32] = ACTIONS(4578), + [anon_sym_u64] = ACTIONS(4578), + [anon_sym_isize] = ACTIONS(4578), + [anon_sym_usize] = ACTIONS(4578), + [anon_sym_f32] = ACTIONS(4578), + [anon_sym_f64] = ACTIONS(4578), + [anon_sym_c_char] = ACTIONS(4578), + [anon_sym_c_schar] = ACTIONS(4578), + [anon_sym_c_uchar] = ACTIONS(4578), + [anon_sym_c_short] = ACTIONS(4578), + [anon_sym_c_ushort] = ACTIONS(4578), + [anon_sym_c_int] = ACTIONS(4578), + [anon_sym_c_uint] = ACTIONS(4578), + [anon_sym_c_long] = ACTIONS(4578), + [anon_sym_c_ulong] = ACTIONS(4578), + [anon_sym_c_longlong] = ACTIONS(4578), + [anon_sym_c_ulonglong] = ACTIONS(4578), + [anon_sym_c_float] = ACTIONS(4578), + [anon_sym_c_double] = ACTIONS(4578), + [anon_sym_c_longdouble] = ACTIONS(4578), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4576), + [anon_sym_orelse] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4578), + [anon_sym_EQ_EQ] = ACTIONS(4576), + [anon_sym_BANG_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_GT_EQ] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_xor] = ACTIONS(4578), + [anon_sym_LT_LT] = ACTIONS(4578), + [anon_sym_GT_GT] = ACTIONS(4576), + [anon_sym_LT_LT_PIPE] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_catch] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_CARET] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4576), + }, + [STATE(7239)] = { + [sym_identifier] = ACTIONS(4582), + [anon_sym_func] = ACTIONS(4582), + [anon_sym_c_func] = ACTIONS(4582), + [anon_sym_struct] = ACTIONS(4582), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_DASH] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(4580), + [anon_sym_struct_type_BANG] = ACTIONS(4580), + [anon_sym_QMARK] = ACTIONS(4580), + [anon_sym_AT] = ACTIONS(4580), + [anon_sym_STAR] = ACTIONS(4580), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_void] = ACTIONS(4582), + [anon_sym_noreturn] = ACTIONS(4582), + [anon_sym_type] = ACTIONS(4582), + [anon_sym_anyopaque] = ACTIONS(4582), + [anon_sym_bool] = ACTIONS(4582), + [anon_sym_int] = ACTIONS(4582), + [anon_sym_uint] = ACTIONS(4582), + [anon_sym_float] = ACTIONS(4582), + [anon_sym_range] = ACTIONS(4582), + [anon_sym_i8] = ACTIONS(4582), + [anon_sym_i16] = ACTIONS(4582), + [anon_sym_i32] = ACTIONS(4582), + [anon_sym_i64] = ACTIONS(4582), + [anon_sym_u8] = ACTIONS(4582), + [anon_sym_u16] = ACTIONS(4582), + [anon_sym_u32] = ACTIONS(4582), + [anon_sym_u64] = ACTIONS(4582), + [anon_sym_isize] = ACTIONS(4582), + [anon_sym_usize] = ACTIONS(4582), + [anon_sym_f32] = ACTIONS(4582), + [anon_sym_f64] = ACTIONS(4582), + [anon_sym_c_char] = ACTIONS(4582), + [anon_sym_c_schar] = ACTIONS(4582), + [anon_sym_c_uchar] = ACTIONS(4582), + [anon_sym_c_short] = ACTIONS(4582), + [anon_sym_c_ushort] = ACTIONS(4582), + [anon_sym_c_int] = ACTIONS(4582), + [anon_sym_c_uint] = ACTIONS(4582), + [anon_sym_c_long] = ACTIONS(4582), + [anon_sym_c_ulong] = ACTIONS(4582), + [anon_sym_c_longlong] = ACTIONS(4582), + [anon_sym_c_ulonglong] = ACTIONS(4582), + [anon_sym_c_float] = ACTIONS(4582), + [anon_sym_c_double] = ACTIONS(4582), + [anon_sym_c_longdouble] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4580), + [anon_sym_orelse] = ACTIONS(4582), + [anon_sym_or] = ACTIONS(4582), + [anon_sym_and] = ACTIONS(4582), + [anon_sym_EQ_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_AMP] = ACTIONS(4580), + [anon_sym_xor] = ACTIONS(4582), + [anon_sym_LT_LT] = ACTIONS(4582), + [anon_sym_GT_GT] = ACTIONS(4580), + [anon_sym_LT_LT_PIPE] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4580), + [anon_sym_SLASH] = ACTIONS(4580), + [anon_sym_catch] = ACTIONS(4582), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_CARET] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4580), + }, + [STATE(7240)] = { + [sym_identifier] = ACTIONS(4586), + [anon_sym_func] = ACTIONS(4586), + [anon_sym_c_func] = ACTIONS(4586), + [anon_sym_struct] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_struct_type_BANG] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4584), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_void] = ACTIONS(4586), + [anon_sym_noreturn] = ACTIONS(4586), + [anon_sym_type] = ACTIONS(4586), + [anon_sym_anyopaque] = ACTIONS(4586), + [anon_sym_bool] = ACTIONS(4586), + [anon_sym_int] = ACTIONS(4586), + [anon_sym_uint] = ACTIONS(4586), + [anon_sym_float] = ACTIONS(4586), + [anon_sym_range] = ACTIONS(4586), + [anon_sym_i8] = ACTIONS(4586), + [anon_sym_i16] = ACTIONS(4586), + [anon_sym_i32] = ACTIONS(4586), + [anon_sym_i64] = ACTIONS(4586), + [anon_sym_u8] = ACTIONS(4586), + [anon_sym_u16] = ACTIONS(4586), + [anon_sym_u32] = ACTIONS(4586), + [anon_sym_u64] = ACTIONS(4586), + [anon_sym_isize] = ACTIONS(4586), + [anon_sym_usize] = ACTIONS(4586), + [anon_sym_f32] = ACTIONS(4586), + [anon_sym_f64] = ACTIONS(4586), + [anon_sym_c_char] = ACTIONS(4586), + [anon_sym_c_schar] = ACTIONS(4586), + [anon_sym_c_uchar] = ACTIONS(4586), + [anon_sym_c_short] = ACTIONS(4586), + [anon_sym_c_ushort] = ACTIONS(4586), + [anon_sym_c_int] = ACTIONS(4586), + [anon_sym_c_uint] = ACTIONS(4586), + [anon_sym_c_long] = ACTIONS(4586), + [anon_sym_c_ulong] = ACTIONS(4586), + [anon_sym_c_longlong] = ACTIONS(4586), + [anon_sym_c_ulonglong] = ACTIONS(4586), + [anon_sym_c_float] = ACTIONS(4586), + [anon_sym_c_double] = ACTIONS(4586), + [anon_sym_c_longdouble] = ACTIONS(4586), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4584), + [anon_sym_orelse] = ACTIONS(4586), + [anon_sym_or] = ACTIONS(4586), + [anon_sym_and] = ACTIONS(4586), + [anon_sym_EQ_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4584), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4586), + [anon_sym_GT_GT] = ACTIONS(4584), + [anon_sym_LT_LT_PIPE] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_catch] = ACTIONS(4586), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4584), + }, + [STATE(7241)] = { + [sym_identifier] = ACTIONS(4590), + [anon_sym_func] = ACTIONS(4590), + [anon_sym_c_func] = ACTIONS(4590), + [anon_sym_struct] = ACTIONS(4590), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4588), + [anon_sym_PIPE] = ACTIONS(4588), + [anon_sym_struct_type_BANG] = ACTIONS(4588), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_AT] = ACTIONS(4588), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_void] = ACTIONS(4590), + [anon_sym_noreturn] = ACTIONS(4590), + [anon_sym_type] = ACTIONS(4590), + [anon_sym_anyopaque] = ACTIONS(4590), + [anon_sym_bool] = ACTIONS(4590), + [anon_sym_int] = ACTIONS(4590), + [anon_sym_uint] = ACTIONS(4590), + [anon_sym_float] = ACTIONS(4590), + [anon_sym_range] = ACTIONS(4590), + [anon_sym_i8] = ACTIONS(4590), + [anon_sym_i16] = ACTIONS(4590), + [anon_sym_i32] = ACTIONS(4590), + [anon_sym_i64] = ACTIONS(4590), + [anon_sym_u8] = ACTIONS(4590), + [anon_sym_u16] = ACTIONS(4590), + [anon_sym_u32] = ACTIONS(4590), + [anon_sym_u64] = ACTIONS(4590), + [anon_sym_isize] = ACTIONS(4590), + [anon_sym_usize] = ACTIONS(4590), + [anon_sym_f32] = ACTIONS(4590), + [anon_sym_f64] = ACTIONS(4590), + [anon_sym_c_char] = ACTIONS(4590), + [anon_sym_c_schar] = ACTIONS(4590), + [anon_sym_c_uchar] = ACTIONS(4590), + [anon_sym_c_short] = ACTIONS(4590), + [anon_sym_c_ushort] = ACTIONS(4590), + [anon_sym_c_int] = ACTIONS(4590), + [anon_sym_c_uint] = ACTIONS(4590), + [anon_sym_c_long] = ACTIONS(4590), + [anon_sym_c_ulong] = ACTIONS(4590), + [anon_sym_c_longlong] = ACTIONS(4590), + [anon_sym_c_ulonglong] = ACTIONS(4590), + [anon_sym_c_float] = ACTIONS(4590), + [anon_sym_c_double] = ACTIONS(4590), + [anon_sym_c_longdouble] = ACTIONS(4590), + [anon_sym_else] = ACTIONS(4590), + [anon_sym_DOT_DOT] = ACTIONS(4590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4588), + [anon_sym_orelse] = ACTIONS(4590), + [anon_sym_or] = ACTIONS(4590), + [anon_sym_and] = ACTIONS(4590), + [anon_sym_EQ_EQ] = ACTIONS(4588), + [anon_sym_BANG_EQ] = ACTIONS(4588), + [anon_sym_LT] = ACTIONS(4590), + [anon_sym_LT_EQ] = ACTIONS(4588), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_GT_EQ] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4588), + [anon_sym_xor] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4588), + [anon_sym_LT_LT_PIPE] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4588), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_catch] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4588), + }, + [STATE(7242)] = { + [sym_identifier] = ACTIONS(4594), + [anon_sym_func] = ACTIONS(4594), + [anon_sym_c_func] = ACTIONS(4594), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_RBRACE] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4592), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_struct_type_BANG] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_AT] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_void] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_type] = ACTIONS(4594), + [anon_sym_anyopaque] = ACTIONS(4594), + [anon_sym_bool] = ACTIONS(4594), + [anon_sym_int] = ACTIONS(4594), + [anon_sym_uint] = ACTIONS(4594), + [anon_sym_float] = ACTIONS(4594), + [anon_sym_range] = ACTIONS(4594), + [anon_sym_i8] = ACTIONS(4594), + [anon_sym_i16] = ACTIONS(4594), + [anon_sym_i32] = ACTIONS(4594), + [anon_sym_i64] = ACTIONS(4594), + [anon_sym_u8] = ACTIONS(4594), + [anon_sym_u16] = ACTIONS(4594), + [anon_sym_u32] = ACTIONS(4594), + [anon_sym_u64] = ACTIONS(4594), + [anon_sym_isize] = ACTIONS(4594), + [anon_sym_usize] = ACTIONS(4594), + [anon_sym_f32] = ACTIONS(4594), + [anon_sym_f64] = ACTIONS(4594), + [anon_sym_c_char] = ACTIONS(4594), + [anon_sym_c_schar] = ACTIONS(4594), + [anon_sym_c_uchar] = ACTIONS(4594), + [anon_sym_c_short] = ACTIONS(4594), + [anon_sym_c_ushort] = ACTIONS(4594), + [anon_sym_c_int] = ACTIONS(4594), + [anon_sym_c_uint] = ACTIONS(4594), + [anon_sym_c_long] = ACTIONS(4594), + [anon_sym_c_ulong] = ACTIONS(4594), + [anon_sym_c_longlong] = ACTIONS(4594), + [anon_sym_c_ulonglong] = ACTIONS(4594), + [anon_sym_c_float] = ACTIONS(4594), + [anon_sym_c_double] = ACTIONS(4594), + [anon_sym_c_longdouble] = ACTIONS(4594), + [anon_sym_else] = ACTIONS(4594), + [anon_sym_DOT_DOT] = ACTIONS(4594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4592), + [anon_sym_orelse] = ACTIONS(4594), + [anon_sym_or] = ACTIONS(4594), + [anon_sym_and] = ACTIONS(4594), + [anon_sym_EQ_EQ] = ACTIONS(4592), + [anon_sym_BANG_EQ] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_LT_EQ] = ACTIONS(4592), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4592), + [anon_sym_AMP] = ACTIONS(4592), + [anon_sym_xor] = ACTIONS(4594), + [anon_sym_LT_LT] = ACTIONS(4594), + [anon_sym_GT_GT] = ACTIONS(4592), + [anon_sym_LT_LT_PIPE] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_SLASH] = ACTIONS(4592), + [anon_sym_catch] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4592), + }, + [STATE(7243)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_func] = ACTIONS(3060), + [anon_sym_c_func] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_struct_type_BANG] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_anyopaque] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_int] = ACTIONS(3060), + [anon_sym_uint] = ACTIONS(3060), + [anon_sym_float] = ACTIONS(3060), + [anon_sym_range] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_c_char] = ACTIONS(3060), + [anon_sym_c_schar] = ACTIONS(3060), + [anon_sym_c_uchar] = ACTIONS(3060), + [anon_sym_c_short] = ACTIONS(3060), + [anon_sym_c_ushort] = ACTIONS(3060), + [anon_sym_c_int] = ACTIONS(3060), + [anon_sym_c_uint] = ACTIONS(3060), + [anon_sym_c_long] = ACTIONS(3060), + [anon_sym_c_ulong] = ACTIONS(3060), + [anon_sym_c_longlong] = ACTIONS(3060), + [anon_sym_c_ulonglong] = ACTIONS(3060), + [anon_sym_c_float] = ACTIONS(3060), + [anon_sym_c_double] = ACTIONS(3060), + [anon_sym_c_longdouble] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_orelse] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_xor] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_LT_LT_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3062), + }, + [STATE(7244)] = { + [sym_identifier] = ACTIONS(6336), + [anon_sym_func] = ACTIONS(6336), + [anon_sym_c_func] = ACTIONS(6336), + [anon_sym_struct] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6334), + [anon_sym_COMMA] = ACTIONS(6334), + [anon_sym_RBRACE] = ACTIONS(6334), + [anon_sym_DASH] = ACTIONS(6334), + [anon_sym_PIPE] = ACTIONS(6334), + [anon_sym_struct_type_BANG] = ACTIONS(6334), + [anon_sym_QMARK] = ACTIONS(6334), + [anon_sym_AT] = ACTIONS(6334), + [anon_sym_STAR] = ACTIONS(6334), + [anon_sym_LBRACK] = ACTIONS(6334), + [anon_sym_void] = ACTIONS(6336), + [anon_sym_noreturn] = ACTIONS(6336), + [anon_sym_type] = ACTIONS(6336), + [anon_sym_anyopaque] = ACTIONS(6336), + [anon_sym_bool] = ACTIONS(6336), + [anon_sym_int] = ACTIONS(6336), + [anon_sym_uint] = ACTIONS(6336), + [anon_sym_float] = ACTIONS(6336), + [anon_sym_range] = ACTIONS(6336), + [anon_sym_i8] = ACTIONS(6336), + [anon_sym_i16] = ACTIONS(6336), + [anon_sym_i32] = ACTIONS(6336), + [anon_sym_i64] = ACTIONS(6336), + [anon_sym_u8] = ACTIONS(6336), + [anon_sym_u16] = ACTIONS(6336), + [anon_sym_u32] = ACTIONS(6336), + [anon_sym_u64] = ACTIONS(6336), + [anon_sym_isize] = ACTIONS(6336), + [anon_sym_usize] = ACTIONS(6336), + [anon_sym_f32] = ACTIONS(6336), + [anon_sym_f64] = ACTIONS(6336), + [anon_sym_c_char] = ACTIONS(6336), + [anon_sym_c_schar] = ACTIONS(6336), + [anon_sym_c_uchar] = ACTIONS(6336), + [anon_sym_c_short] = ACTIONS(6336), + [anon_sym_c_ushort] = ACTIONS(6336), + [anon_sym_c_int] = ACTIONS(6336), + [anon_sym_c_uint] = ACTIONS(6336), + [anon_sym_c_long] = ACTIONS(6336), + [anon_sym_c_ulong] = ACTIONS(6336), + [anon_sym_c_longlong] = ACTIONS(6336), + [anon_sym_c_ulonglong] = ACTIONS(6336), + [anon_sym_c_float] = ACTIONS(6336), + [anon_sym_c_double] = ACTIONS(6336), + [anon_sym_c_longdouble] = ACTIONS(6336), + [anon_sym_else] = ACTIONS(6336), + [anon_sym_DOT_DOT] = ACTIONS(6336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6334), + [anon_sym_orelse] = ACTIONS(6336), + [anon_sym_or] = ACTIONS(6336), + [anon_sym_and] = ACTIONS(6336), + [anon_sym_EQ_EQ] = ACTIONS(6334), + [anon_sym_BANG_EQ] = ACTIONS(6334), + [anon_sym_LT] = ACTIONS(6336), + [anon_sym_LT_EQ] = ACTIONS(6334), + [anon_sym_GT] = ACTIONS(6336), + [anon_sym_GT_EQ] = ACTIONS(6334), + [anon_sym_AMP] = ACTIONS(6334), + [anon_sym_xor] = ACTIONS(6336), + [anon_sym_LT_LT] = ACTIONS(6336), + [anon_sym_GT_GT] = ACTIONS(6334), + [anon_sym_LT_LT_PIPE] = ACTIONS(6334), + [anon_sym_PLUS] = ACTIONS(6334), + [anon_sym_SLASH] = ACTIONS(6334), + [anon_sym_catch] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(6334), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6334), + }, + [STATE(7245)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(2704), + [anon_sym_func] = ACTIONS(2704), + [anon_sym_c_func] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_noreturn] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_anyopaque] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_int] = ACTIONS(2704), + [anon_sym_uint] = ACTIONS(2704), + [anon_sym_float] = ACTIONS(2704), + [anon_sym_range] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_c_char] = ACTIONS(2704), + [anon_sym_c_schar] = ACTIONS(2704), + [anon_sym_c_uchar] = ACTIONS(2704), + [anon_sym_c_short] = ACTIONS(2704), + [anon_sym_c_ushort] = ACTIONS(2704), + [anon_sym_c_int] = ACTIONS(2704), + [anon_sym_c_uint] = ACTIONS(2704), + [anon_sym_c_long] = ACTIONS(2704), + [anon_sym_c_ulong] = ACTIONS(2704), + [anon_sym_c_longlong] = ACTIONS(2704), + [anon_sym_c_ulonglong] = ACTIONS(2704), + [anon_sym_c_float] = ACTIONS(2704), + [anon_sym_c_double] = ACTIONS(2704), + [anon_sym_c_longdouble] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_orelse] = ACTIONS(11353), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(11400), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2702), + }, + [STATE(7246)] = { + [sym_identifier] = ACTIONS(6340), + [anon_sym_func] = ACTIONS(6340), + [anon_sym_c_func] = ACTIONS(6340), + [anon_sym_struct] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6338), + [anon_sym_COMMA] = ACTIONS(6338), + [anon_sym_RBRACE] = ACTIONS(6338), + [anon_sym_DASH] = ACTIONS(6338), + [anon_sym_PIPE] = ACTIONS(6338), + [anon_sym_struct_type_BANG] = ACTIONS(6338), + [anon_sym_QMARK] = ACTIONS(6338), + [anon_sym_AT] = ACTIONS(6338), + [anon_sym_STAR] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(6338), + [anon_sym_void] = ACTIONS(6340), + [anon_sym_noreturn] = ACTIONS(6340), + [anon_sym_type] = ACTIONS(6340), + [anon_sym_anyopaque] = ACTIONS(6340), + [anon_sym_bool] = ACTIONS(6340), + [anon_sym_int] = ACTIONS(6340), + [anon_sym_uint] = ACTIONS(6340), + [anon_sym_float] = ACTIONS(6340), + [anon_sym_range] = ACTIONS(6340), + [anon_sym_i8] = ACTIONS(6340), + [anon_sym_i16] = ACTIONS(6340), + [anon_sym_i32] = ACTIONS(6340), + [anon_sym_i64] = ACTIONS(6340), + [anon_sym_u8] = ACTIONS(6340), + [anon_sym_u16] = ACTIONS(6340), + [anon_sym_u32] = ACTIONS(6340), + [anon_sym_u64] = ACTIONS(6340), + [anon_sym_isize] = ACTIONS(6340), + [anon_sym_usize] = ACTIONS(6340), + [anon_sym_f32] = ACTIONS(6340), + [anon_sym_f64] = ACTIONS(6340), + [anon_sym_c_char] = ACTIONS(6340), + [anon_sym_c_schar] = ACTIONS(6340), + [anon_sym_c_uchar] = ACTIONS(6340), + [anon_sym_c_short] = ACTIONS(6340), + [anon_sym_c_ushort] = ACTIONS(6340), + [anon_sym_c_int] = ACTIONS(6340), + [anon_sym_c_uint] = ACTIONS(6340), + [anon_sym_c_long] = ACTIONS(6340), + [anon_sym_c_ulong] = ACTIONS(6340), + [anon_sym_c_longlong] = ACTIONS(6340), + [anon_sym_c_ulonglong] = ACTIONS(6340), + [anon_sym_c_float] = ACTIONS(6340), + [anon_sym_c_double] = ACTIONS(6340), + [anon_sym_c_longdouble] = ACTIONS(6340), + [anon_sym_else] = ACTIONS(6340), + [anon_sym_DOT_DOT] = ACTIONS(6340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6338), + [anon_sym_orelse] = ACTIONS(6340), + [anon_sym_or] = ACTIONS(6340), + [anon_sym_and] = ACTIONS(6340), + [anon_sym_EQ_EQ] = ACTIONS(6338), + [anon_sym_BANG_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6340), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_GT] = ACTIONS(6340), + [anon_sym_GT_EQ] = ACTIONS(6338), + [anon_sym_AMP] = ACTIONS(6338), + [anon_sym_xor] = ACTIONS(6340), + [anon_sym_LT_LT] = ACTIONS(6340), + [anon_sym_GT_GT] = ACTIONS(6338), + [anon_sym_LT_LT_PIPE] = ACTIONS(6338), + [anon_sym_PLUS] = ACTIONS(6338), + [anon_sym_SLASH] = ACTIONS(6338), + [anon_sym_catch] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6338), + }, + [STATE(7247)] = { + [sym_identifier] = ACTIONS(5800), + [anon_sym_func] = ACTIONS(5800), + [anon_sym_c_func] = ACTIONS(5800), + [anon_sym_struct] = ACTIONS(5800), + [anon_sym_LPAREN] = ACTIONS(5798), + [anon_sym_COMMA] = ACTIONS(5798), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5798), + [anon_sym_PIPE] = ACTIONS(5798), + [anon_sym_struct_type_BANG] = ACTIONS(5798), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_AT] = ACTIONS(5798), + [anon_sym_STAR] = ACTIONS(5798), + [anon_sym_LBRACK] = ACTIONS(5798), + [anon_sym_void] = ACTIONS(5800), + [anon_sym_noreturn] = ACTIONS(5800), + [anon_sym_type] = ACTIONS(5800), + [anon_sym_anyopaque] = ACTIONS(5800), + [anon_sym_bool] = ACTIONS(5800), + [anon_sym_int] = ACTIONS(5800), + [anon_sym_uint] = ACTIONS(5800), + [anon_sym_float] = ACTIONS(5800), + [anon_sym_range] = ACTIONS(5800), + [anon_sym_i8] = ACTIONS(5800), + [anon_sym_i16] = ACTIONS(5800), + [anon_sym_i32] = ACTIONS(5800), + [anon_sym_i64] = ACTIONS(5800), + [anon_sym_u8] = ACTIONS(5800), + [anon_sym_u16] = ACTIONS(5800), + [anon_sym_u32] = ACTIONS(5800), + [anon_sym_u64] = ACTIONS(5800), + [anon_sym_isize] = ACTIONS(5800), + [anon_sym_usize] = ACTIONS(5800), + [anon_sym_f32] = ACTIONS(5800), + [anon_sym_f64] = ACTIONS(5800), + [anon_sym_c_char] = ACTIONS(5800), + [anon_sym_c_schar] = ACTIONS(5800), + [anon_sym_c_uchar] = ACTIONS(5800), + [anon_sym_c_short] = ACTIONS(5800), + [anon_sym_c_ushort] = ACTIONS(5800), + [anon_sym_c_int] = ACTIONS(5800), + [anon_sym_c_uint] = ACTIONS(5800), + [anon_sym_c_long] = ACTIONS(5800), + [anon_sym_c_ulong] = ACTIONS(5800), + [anon_sym_c_longlong] = ACTIONS(5800), + [anon_sym_c_ulonglong] = ACTIONS(5800), + [anon_sym_c_float] = ACTIONS(5800), + [anon_sym_c_double] = ACTIONS(5800), + [anon_sym_c_longdouble] = ACTIONS(5800), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_DOT_DOT] = ACTIONS(5800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5798), + [anon_sym_orelse] = ACTIONS(5800), + [anon_sym_or] = ACTIONS(5800), + [anon_sym_and] = ACTIONS(5800), + [anon_sym_EQ_EQ] = ACTIONS(5798), + [anon_sym_BANG_EQ] = ACTIONS(5798), + [anon_sym_LT] = ACTIONS(5800), + [anon_sym_LT_EQ] = ACTIONS(5798), + [anon_sym_GT] = ACTIONS(5800), + [anon_sym_GT_EQ] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5798), + [anon_sym_xor] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5798), + [anon_sym_LT_LT_PIPE] = ACTIONS(5798), + [anon_sym_PLUS] = ACTIONS(5798), + [anon_sym_SLASH] = ACTIONS(5798), + [anon_sym_catch] = ACTIONS(5800), + [anon_sym_DOT] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5798), + }, + [STATE(7248)] = { + [sym_identifier] = ACTIONS(6086), + [anon_sym_func] = ACTIONS(6086), + [anon_sym_c_func] = ACTIONS(6086), + [anon_sym_struct] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6084), + [anon_sym_COMMA] = ACTIONS(6084), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_DASH] = ACTIONS(6084), + [anon_sym_PIPE] = ACTIONS(6084), + [anon_sym_struct_type_BANG] = ACTIONS(6084), + [anon_sym_QMARK] = ACTIONS(6084), + [anon_sym_AT] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(6084), + [anon_sym_LBRACK] = ACTIONS(6084), + [anon_sym_void] = ACTIONS(6086), + [anon_sym_noreturn] = ACTIONS(6086), + [anon_sym_type] = ACTIONS(6086), + [anon_sym_anyopaque] = ACTIONS(6086), + [anon_sym_bool] = ACTIONS(6086), + [anon_sym_int] = ACTIONS(6086), + [anon_sym_uint] = ACTIONS(6086), + [anon_sym_float] = ACTIONS(6086), + [anon_sym_range] = ACTIONS(6086), + [anon_sym_i8] = ACTIONS(6086), + [anon_sym_i16] = ACTIONS(6086), + [anon_sym_i32] = ACTIONS(6086), + [anon_sym_i64] = ACTIONS(6086), + [anon_sym_u8] = ACTIONS(6086), + [anon_sym_u16] = ACTIONS(6086), + [anon_sym_u32] = ACTIONS(6086), + [anon_sym_u64] = ACTIONS(6086), + [anon_sym_isize] = ACTIONS(6086), + [anon_sym_usize] = ACTIONS(6086), + [anon_sym_f32] = ACTIONS(6086), + [anon_sym_f64] = ACTIONS(6086), + [anon_sym_c_char] = ACTIONS(6086), + [anon_sym_c_schar] = ACTIONS(6086), + [anon_sym_c_uchar] = ACTIONS(6086), + [anon_sym_c_short] = ACTIONS(6086), + [anon_sym_c_ushort] = ACTIONS(6086), + [anon_sym_c_int] = ACTIONS(6086), + [anon_sym_c_uint] = ACTIONS(6086), + [anon_sym_c_long] = ACTIONS(6086), + [anon_sym_c_ulong] = ACTIONS(6086), + [anon_sym_c_longlong] = ACTIONS(6086), + [anon_sym_c_ulonglong] = ACTIONS(6086), + [anon_sym_c_float] = ACTIONS(6086), + [anon_sym_c_double] = ACTIONS(6086), + [anon_sym_c_longdouble] = ACTIONS(6086), + [anon_sym_else] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6084), + [anon_sym_orelse] = ACTIONS(6086), + [anon_sym_or] = ACTIONS(6086), + [anon_sym_and] = ACTIONS(6086), + [anon_sym_EQ_EQ] = ACTIONS(6084), + [anon_sym_BANG_EQ] = ACTIONS(6084), + [anon_sym_LT] = ACTIONS(6086), + [anon_sym_LT_EQ] = ACTIONS(6084), + [anon_sym_GT] = ACTIONS(6086), + [anon_sym_GT_EQ] = ACTIONS(6084), + [anon_sym_AMP] = ACTIONS(6084), + [anon_sym_xor] = ACTIONS(6086), + [anon_sym_LT_LT] = ACTIONS(6086), + [anon_sym_GT_GT] = ACTIONS(6084), + [anon_sym_LT_LT_PIPE] = ACTIONS(6084), + [anon_sym_PLUS] = ACTIONS(6084), + [anon_sym_SLASH] = ACTIONS(6084), + [anon_sym_catch] = ACTIONS(6086), + [anon_sym_DOT] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6084), + }, + [STATE(7249)] = { + [sym_identifier] = ACTIONS(1329), + [anon_sym_func] = ACTIONS(1329), + [anon_sym_c_func] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_COMMA] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_struct_type_BANG] = ACTIONS(1331), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_anyopaque] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_int] = ACTIONS(1329), + [anon_sym_uint] = ACTIONS(1329), + [anon_sym_float] = ACTIONS(1329), + [anon_sym_range] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_c_char] = ACTIONS(1329), + [anon_sym_c_schar] = ACTIONS(1329), + [anon_sym_c_uchar] = ACTIONS(1329), + [anon_sym_c_short] = ACTIONS(1329), + [anon_sym_c_ushort] = ACTIONS(1329), + [anon_sym_c_int] = ACTIONS(1329), + [anon_sym_c_uint] = ACTIONS(1329), + [anon_sym_c_long] = ACTIONS(1329), + [anon_sym_c_ulong] = ACTIONS(1329), + [anon_sym_c_longlong] = ACTIONS(1329), + [anon_sym_c_ulonglong] = ACTIONS(1329), + [anon_sym_c_float] = ACTIONS(1329), + [anon_sym_c_double] = ACTIONS(1329), + [anon_sym_c_longdouble] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_orelse] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_LT_LT_PIPE] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1331), + }, + [STATE(7250)] = { + [sym_identifier] = ACTIONS(1254), + [anon_sym_func] = ACTIONS(1254), + [anon_sym_c_func] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_COMMA] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_struct_type_BANG] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_noreturn] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_anyopaque] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), + [anon_sym_float] = ACTIONS(1254), + [anon_sym_range] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_c_char] = ACTIONS(1254), + [anon_sym_c_schar] = ACTIONS(1254), + [anon_sym_c_uchar] = ACTIONS(1254), + [anon_sym_c_short] = ACTIONS(1254), + [anon_sym_c_ushort] = ACTIONS(1254), + [anon_sym_c_int] = ACTIONS(1254), + [anon_sym_c_uint] = ACTIONS(1254), + [anon_sym_c_long] = ACTIONS(1254), + [anon_sym_c_ulong] = ACTIONS(1254), + [anon_sym_c_longlong] = ACTIONS(1254), + [anon_sym_c_ulonglong] = ACTIONS(1254), + [anon_sym_c_float] = ACTIONS(1254), + [anon_sym_c_double] = ACTIONS(1254), + [anon_sym_c_longdouble] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1258), + [anon_sym_orelse] = ACTIONS(1254), + [anon_sym_or] = ACTIONS(1254), + [anon_sym_and] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_xor] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_LT_LT_PIPE] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1258), + }, + [STATE(7251)] = { + [sym_identifier] = ACTIONS(4598), + [anon_sym_func] = ACTIONS(4598), + [anon_sym_c_func] = ACTIONS(4598), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_struct_type_BANG] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_AT] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_void] = ACTIONS(4598), + [anon_sym_noreturn] = ACTIONS(4598), + [anon_sym_type] = ACTIONS(4598), + [anon_sym_anyopaque] = ACTIONS(4598), + [anon_sym_bool] = ACTIONS(4598), + [anon_sym_int] = ACTIONS(4598), + [anon_sym_uint] = ACTIONS(4598), + [anon_sym_float] = ACTIONS(4598), + [anon_sym_range] = ACTIONS(4598), + [anon_sym_i8] = ACTIONS(4598), + [anon_sym_i16] = ACTIONS(4598), + [anon_sym_i32] = ACTIONS(4598), + [anon_sym_i64] = ACTIONS(4598), + [anon_sym_u8] = ACTIONS(4598), + [anon_sym_u16] = ACTIONS(4598), + [anon_sym_u32] = ACTIONS(4598), + [anon_sym_u64] = ACTIONS(4598), + [anon_sym_isize] = ACTIONS(4598), + [anon_sym_usize] = ACTIONS(4598), + [anon_sym_f32] = ACTIONS(4598), + [anon_sym_f64] = ACTIONS(4598), + [anon_sym_c_char] = ACTIONS(4598), + [anon_sym_c_schar] = ACTIONS(4598), + [anon_sym_c_uchar] = ACTIONS(4598), + [anon_sym_c_short] = ACTIONS(4598), + [anon_sym_c_ushort] = ACTIONS(4598), + [anon_sym_c_int] = ACTIONS(4598), + [anon_sym_c_uint] = ACTIONS(4598), + [anon_sym_c_long] = ACTIONS(4598), + [anon_sym_c_ulong] = ACTIONS(4598), + [anon_sym_c_longlong] = ACTIONS(4598), + [anon_sym_c_ulonglong] = ACTIONS(4598), + [anon_sym_c_float] = ACTIONS(4598), + [anon_sym_c_double] = ACTIONS(4598), + [anon_sym_c_longdouble] = ACTIONS(4598), + [anon_sym_else] = ACTIONS(4598), + [anon_sym_DOT_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4596), + [anon_sym_orelse] = ACTIONS(4598), + [anon_sym_or] = ACTIONS(4598), + [anon_sym_and] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_GT_EQ] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4598), + [anon_sym_LT_LT] = ACTIONS(4598), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym_LT_LT_PIPE] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_catch] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4596), + }, + [STATE(7252)] = { + [sym_identifier] = ACTIONS(4602), + [anon_sym_func] = ACTIONS(4602), + [anon_sym_c_func] = ACTIONS(4602), + [anon_sym_struct] = ACTIONS(4602), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_struct_type_BANG] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_AT] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_void] = ACTIONS(4602), + [anon_sym_noreturn] = ACTIONS(4602), + [anon_sym_type] = ACTIONS(4602), + [anon_sym_anyopaque] = ACTIONS(4602), + [anon_sym_bool] = ACTIONS(4602), + [anon_sym_int] = ACTIONS(4602), + [anon_sym_uint] = ACTIONS(4602), + [anon_sym_float] = ACTIONS(4602), + [anon_sym_range] = ACTIONS(4602), + [anon_sym_i8] = ACTIONS(4602), + [anon_sym_i16] = ACTIONS(4602), + [anon_sym_i32] = ACTIONS(4602), + [anon_sym_i64] = ACTIONS(4602), + [anon_sym_u8] = ACTIONS(4602), + [anon_sym_u16] = ACTIONS(4602), + [anon_sym_u32] = ACTIONS(4602), + [anon_sym_u64] = ACTIONS(4602), + [anon_sym_isize] = ACTIONS(4602), + [anon_sym_usize] = ACTIONS(4602), + [anon_sym_f32] = ACTIONS(4602), + [anon_sym_f64] = ACTIONS(4602), + [anon_sym_c_char] = ACTIONS(4602), + [anon_sym_c_schar] = ACTIONS(4602), + [anon_sym_c_uchar] = ACTIONS(4602), + [anon_sym_c_short] = ACTIONS(4602), + [anon_sym_c_ushort] = ACTIONS(4602), + [anon_sym_c_int] = ACTIONS(4602), + [anon_sym_c_uint] = ACTIONS(4602), + [anon_sym_c_long] = ACTIONS(4602), + [anon_sym_c_ulong] = ACTIONS(4602), + [anon_sym_c_longlong] = ACTIONS(4602), + [anon_sym_c_ulonglong] = ACTIONS(4602), + [anon_sym_c_float] = ACTIONS(4602), + [anon_sym_c_double] = ACTIONS(4602), + [anon_sym_c_longdouble] = ACTIONS(4602), + [anon_sym_else] = ACTIONS(4602), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4600), + [anon_sym_orelse] = ACTIONS(4602), + [anon_sym_or] = ACTIONS(4602), + [anon_sym_and] = ACTIONS(4602), + [anon_sym_EQ_EQ] = ACTIONS(4600), + [anon_sym_BANG_EQ] = ACTIONS(4600), + [anon_sym_LT] = ACTIONS(4602), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT] = ACTIONS(4602), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4600), + [anon_sym_xor] = ACTIONS(4602), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4600), + [anon_sym_LT_LT_PIPE] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_SLASH] = ACTIONS(4600), + [anon_sym_catch] = ACTIONS(4602), + [anon_sym_DOT] = ACTIONS(4602), + [anon_sym_CARET] = ACTIONS(4600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4600), + }, + [STATE(7253)] = { + [sym_identifier] = ACTIONS(4606), + [anon_sym_func] = ACTIONS(4606), + [anon_sym_c_func] = ACTIONS(4606), + [anon_sym_struct] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4604), + [anon_sym_COMMA] = ACTIONS(4604), + [anon_sym_RBRACE] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4604), + [anon_sym_struct_type_BANG] = ACTIONS(4604), + [anon_sym_QMARK] = ACTIONS(4604), + [anon_sym_AT] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4604), + [anon_sym_void] = ACTIONS(4606), + [anon_sym_noreturn] = ACTIONS(4606), + [anon_sym_type] = ACTIONS(4606), + [anon_sym_anyopaque] = ACTIONS(4606), + [anon_sym_bool] = ACTIONS(4606), + [anon_sym_int] = ACTIONS(4606), + [anon_sym_uint] = ACTIONS(4606), + [anon_sym_float] = ACTIONS(4606), + [anon_sym_range] = ACTIONS(4606), + [anon_sym_i8] = ACTIONS(4606), + [anon_sym_i16] = ACTIONS(4606), + [anon_sym_i32] = ACTIONS(4606), + [anon_sym_i64] = ACTIONS(4606), + [anon_sym_u8] = ACTIONS(4606), + [anon_sym_u16] = ACTIONS(4606), + [anon_sym_u32] = ACTIONS(4606), + [anon_sym_u64] = ACTIONS(4606), + [anon_sym_isize] = ACTIONS(4606), + [anon_sym_usize] = ACTIONS(4606), + [anon_sym_f32] = ACTIONS(4606), + [anon_sym_f64] = ACTIONS(4606), + [anon_sym_c_char] = ACTIONS(4606), + [anon_sym_c_schar] = ACTIONS(4606), + [anon_sym_c_uchar] = ACTIONS(4606), + [anon_sym_c_short] = ACTIONS(4606), + [anon_sym_c_ushort] = ACTIONS(4606), + [anon_sym_c_int] = ACTIONS(4606), + [anon_sym_c_uint] = ACTIONS(4606), + [anon_sym_c_long] = ACTIONS(4606), + [anon_sym_c_ulong] = ACTIONS(4606), + [anon_sym_c_longlong] = ACTIONS(4606), + [anon_sym_c_ulonglong] = ACTIONS(4606), + [anon_sym_c_float] = ACTIONS(4606), + [anon_sym_c_double] = ACTIONS(4606), + [anon_sym_c_longdouble] = ACTIONS(4606), + [anon_sym_else] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4604), + [anon_sym_orelse] = ACTIONS(4606), + [anon_sym_or] = ACTIONS(4606), + [anon_sym_and] = ACTIONS(4606), + [anon_sym_EQ_EQ] = ACTIONS(4604), + [anon_sym_BANG_EQ] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4606), + [anon_sym_LT_EQ] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_GT_EQ] = ACTIONS(4604), + [anon_sym_AMP] = ACTIONS(4604), + [anon_sym_xor] = ACTIONS(4606), + [anon_sym_LT_LT] = ACTIONS(4606), + [anon_sym_GT_GT] = ACTIONS(4604), + [anon_sym_LT_LT_PIPE] = ACTIONS(4604), + [anon_sym_PLUS] = ACTIONS(4604), + [anon_sym_SLASH] = ACTIONS(4604), + [anon_sym_catch] = ACTIONS(4606), + [anon_sym_DOT] = ACTIONS(4606), + [anon_sym_CARET] = ACTIONS(4604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4604), + }, + [STATE(7254)] = { + [sym_identifier] = ACTIONS(4614), + [anon_sym_func] = ACTIONS(4614), + [anon_sym_c_func] = ACTIONS(4614), + [anon_sym_struct] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_COMMA] = ACTIONS(4612), + [anon_sym_RBRACE] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_PIPE] = ACTIONS(4612), + [anon_sym_struct_type_BANG] = ACTIONS(4612), + [anon_sym_QMARK] = ACTIONS(4612), + [anon_sym_AT] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_void] = ACTIONS(4614), + [anon_sym_noreturn] = ACTIONS(4614), + [anon_sym_type] = ACTIONS(4614), + [anon_sym_anyopaque] = ACTIONS(4614), + [anon_sym_bool] = ACTIONS(4614), + [anon_sym_int] = ACTIONS(4614), + [anon_sym_uint] = ACTIONS(4614), + [anon_sym_float] = ACTIONS(4614), + [anon_sym_range] = ACTIONS(4614), + [anon_sym_i8] = ACTIONS(4614), + [anon_sym_i16] = ACTIONS(4614), + [anon_sym_i32] = ACTIONS(4614), + [anon_sym_i64] = ACTIONS(4614), + [anon_sym_u8] = ACTIONS(4614), + [anon_sym_u16] = ACTIONS(4614), + [anon_sym_u32] = ACTIONS(4614), + [anon_sym_u64] = ACTIONS(4614), + [anon_sym_isize] = ACTIONS(4614), + [anon_sym_usize] = ACTIONS(4614), + [anon_sym_f32] = ACTIONS(4614), + [anon_sym_f64] = ACTIONS(4614), + [anon_sym_c_char] = ACTIONS(4614), + [anon_sym_c_schar] = ACTIONS(4614), + [anon_sym_c_uchar] = ACTIONS(4614), + [anon_sym_c_short] = ACTIONS(4614), + [anon_sym_c_ushort] = ACTIONS(4614), + [anon_sym_c_int] = ACTIONS(4614), + [anon_sym_c_uint] = ACTIONS(4614), + [anon_sym_c_long] = ACTIONS(4614), + [anon_sym_c_ulong] = ACTIONS(4614), + [anon_sym_c_longlong] = ACTIONS(4614), + [anon_sym_c_ulonglong] = ACTIONS(4614), + [anon_sym_c_float] = ACTIONS(4614), + [anon_sym_c_double] = ACTIONS(4614), + [anon_sym_c_longdouble] = ACTIONS(4614), + [anon_sym_else] = ACTIONS(4614), + [anon_sym_DOT_DOT] = ACTIONS(4614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4612), + [anon_sym_orelse] = ACTIONS(4614), + [anon_sym_or] = ACTIONS(4614), + [anon_sym_and] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4612), + [anon_sym_BANG_EQ] = ACTIONS(4612), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_LT_EQ] = ACTIONS(4612), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4612), + [anon_sym_AMP] = ACTIONS(4612), + [anon_sym_xor] = ACTIONS(4614), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(4612), + [anon_sym_LT_LT_PIPE] = ACTIONS(4612), + [anon_sym_PLUS] = ACTIONS(4612), + [anon_sym_SLASH] = ACTIONS(4612), + [anon_sym_catch] = ACTIONS(4614), + [anon_sym_DOT] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4612), + }, + [STATE(7255)] = { + [sym_identifier] = ACTIONS(4618), + [anon_sym_func] = ACTIONS(4618), + [anon_sym_c_func] = ACTIONS(4618), + [anon_sym_struct] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4616), + [anon_sym_COMMA] = ACTIONS(4616), + [anon_sym_RBRACE] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4616), + [anon_sym_PIPE] = ACTIONS(4616), + [anon_sym_struct_type_BANG] = ACTIONS(4616), + [anon_sym_QMARK] = ACTIONS(4616), + [anon_sym_AT] = ACTIONS(4616), + [anon_sym_STAR] = ACTIONS(4616), + [anon_sym_LBRACK] = ACTIONS(4616), + [anon_sym_void] = ACTIONS(4618), + [anon_sym_noreturn] = ACTIONS(4618), + [anon_sym_type] = ACTIONS(4618), + [anon_sym_anyopaque] = ACTIONS(4618), + [anon_sym_bool] = ACTIONS(4618), + [anon_sym_int] = ACTIONS(4618), + [anon_sym_uint] = ACTIONS(4618), + [anon_sym_float] = ACTIONS(4618), + [anon_sym_range] = ACTIONS(4618), + [anon_sym_i8] = ACTIONS(4618), + [anon_sym_i16] = ACTIONS(4618), + [anon_sym_i32] = ACTIONS(4618), + [anon_sym_i64] = ACTIONS(4618), + [anon_sym_u8] = ACTIONS(4618), + [anon_sym_u16] = ACTIONS(4618), + [anon_sym_u32] = ACTIONS(4618), + [anon_sym_u64] = ACTIONS(4618), + [anon_sym_isize] = ACTIONS(4618), + [anon_sym_usize] = ACTIONS(4618), + [anon_sym_f32] = ACTIONS(4618), + [anon_sym_f64] = ACTIONS(4618), + [anon_sym_c_char] = ACTIONS(4618), + [anon_sym_c_schar] = ACTIONS(4618), + [anon_sym_c_uchar] = ACTIONS(4618), + [anon_sym_c_short] = ACTIONS(4618), + [anon_sym_c_ushort] = ACTIONS(4618), + [anon_sym_c_int] = ACTIONS(4618), + [anon_sym_c_uint] = ACTIONS(4618), + [anon_sym_c_long] = ACTIONS(4618), + [anon_sym_c_ulong] = ACTIONS(4618), + [anon_sym_c_longlong] = ACTIONS(4618), + [anon_sym_c_ulonglong] = ACTIONS(4618), + [anon_sym_c_float] = ACTIONS(4618), + [anon_sym_c_double] = ACTIONS(4618), + [anon_sym_c_longdouble] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4616), + [anon_sym_orelse] = ACTIONS(4618), + [anon_sym_or] = ACTIONS(4618), + [anon_sym_and] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4616), + [anon_sym_BANG_EQ] = ACTIONS(4616), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_LT_EQ] = ACTIONS(4616), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_GT_EQ] = ACTIONS(4616), + [anon_sym_AMP] = ACTIONS(4616), + [anon_sym_xor] = ACTIONS(4618), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(4616), + [anon_sym_LT_LT_PIPE] = ACTIONS(4616), + [anon_sym_PLUS] = ACTIONS(4616), + [anon_sym_SLASH] = ACTIONS(4616), + [anon_sym_catch] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_CARET] = ACTIONS(4616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4616), + }, + [STATE(7256)] = { + [sym_identifier] = ACTIONS(4624), + [anon_sym_func] = ACTIONS(4624), + [anon_sym_c_func] = ACTIONS(4624), + [anon_sym_struct] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_RBRACE] = ACTIONS(4622), + [anon_sym_DASH] = ACTIONS(4622), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_struct_type_BANG] = ACTIONS(4622), + [anon_sym_QMARK] = ACTIONS(4622), + [anon_sym_AT] = ACTIONS(4622), + [anon_sym_STAR] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_void] = ACTIONS(4624), + [anon_sym_noreturn] = ACTIONS(4624), + [anon_sym_type] = ACTIONS(4624), + [anon_sym_anyopaque] = ACTIONS(4624), + [anon_sym_bool] = ACTIONS(4624), + [anon_sym_int] = ACTIONS(4624), + [anon_sym_uint] = ACTIONS(4624), + [anon_sym_float] = ACTIONS(4624), + [anon_sym_range] = ACTIONS(4624), + [anon_sym_i8] = ACTIONS(4624), + [anon_sym_i16] = ACTIONS(4624), + [anon_sym_i32] = ACTIONS(4624), + [anon_sym_i64] = ACTIONS(4624), + [anon_sym_u8] = ACTIONS(4624), + [anon_sym_u16] = ACTIONS(4624), + [anon_sym_u32] = ACTIONS(4624), + [anon_sym_u64] = ACTIONS(4624), + [anon_sym_isize] = ACTIONS(4624), + [anon_sym_usize] = ACTIONS(4624), + [anon_sym_f32] = ACTIONS(4624), + [anon_sym_f64] = ACTIONS(4624), + [anon_sym_c_char] = ACTIONS(4624), + [anon_sym_c_schar] = ACTIONS(4624), + [anon_sym_c_uchar] = ACTIONS(4624), + [anon_sym_c_short] = ACTIONS(4624), + [anon_sym_c_ushort] = ACTIONS(4624), + [anon_sym_c_int] = ACTIONS(4624), + [anon_sym_c_uint] = ACTIONS(4624), + [anon_sym_c_long] = ACTIONS(4624), + [anon_sym_c_ulong] = ACTIONS(4624), + [anon_sym_c_longlong] = ACTIONS(4624), + [anon_sym_c_ulonglong] = ACTIONS(4624), + [anon_sym_c_float] = ACTIONS(4624), + [anon_sym_c_double] = ACTIONS(4624), + [anon_sym_c_longdouble] = ACTIONS(4624), + [anon_sym_else] = ACTIONS(4624), + [anon_sym_DOT_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4622), + [anon_sym_orelse] = ACTIONS(4624), + [anon_sym_or] = ACTIONS(4624), + [anon_sym_and] = ACTIONS(4624), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_BANG_EQ] = ACTIONS(4622), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_LT_EQ] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_EQ] = ACTIONS(4622), + [anon_sym_AMP] = ACTIONS(4622), + [anon_sym_xor] = ACTIONS(4624), + [anon_sym_LT_LT] = ACTIONS(4624), + [anon_sym_GT_GT] = ACTIONS(4622), + [anon_sym_LT_LT_PIPE] = ACTIONS(4622), + [anon_sym_PLUS] = ACTIONS(4622), + [anon_sym_SLASH] = ACTIONS(4622), + [anon_sym_catch] = ACTIONS(4624), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4622), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4622), + }, + [STATE(7257)] = { + [sym_identifier] = ACTIONS(4628), + [anon_sym_func] = ACTIONS(4628), + [anon_sym_c_func] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_COMMA] = ACTIONS(4626), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_DASH] = ACTIONS(4626), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_struct_type_BANG] = ACTIONS(4626), + [anon_sym_QMARK] = ACTIONS(4626), + [anon_sym_AT] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4626), + [anon_sym_LBRACK] = ACTIONS(4626), + [anon_sym_void] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym_type] = ACTIONS(4628), + [anon_sym_anyopaque] = ACTIONS(4628), + [anon_sym_bool] = ACTIONS(4628), + [anon_sym_int] = ACTIONS(4628), + [anon_sym_uint] = ACTIONS(4628), + [anon_sym_float] = ACTIONS(4628), + [anon_sym_range] = ACTIONS(4628), + [anon_sym_i8] = ACTIONS(4628), + [anon_sym_i16] = ACTIONS(4628), + [anon_sym_i32] = ACTIONS(4628), + [anon_sym_i64] = ACTIONS(4628), + [anon_sym_u8] = ACTIONS(4628), + [anon_sym_u16] = ACTIONS(4628), + [anon_sym_u32] = ACTIONS(4628), + [anon_sym_u64] = ACTIONS(4628), + [anon_sym_isize] = ACTIONS(4628), + [anon_sym_usize] = ACTIONS(4628), + [anon_sym_f32] = ACTIONS(4628), + [anon_sym_f64] = ACTIONS(4628), + [anon_sym_c_char] = ACTIONS(4628), + [anon_sym_c_schar] = ACTIONS(4628), + [anon_sym_c_uchar] = ACTIONS(4628), + [anon_sym_c_short] = ACTIONS(4628), + [anon_sym_c_ushort] = ACTIONS(4628), + [anon_sym_c_int] = ACTIONS(4628), + [anon_sym_c_uint] = ACTIONS(4628), + [anon_sym_c_long] = ACTIONS(4628), + [anon_sym_c_ulong] = ACTIONS(4628), + [anon_sym_c_longlong] = ACTIONS(4628), + [anon_sym_c_ulonglong] = ACTIONS(4628), + [anon_sym_c_float] = ACTIONS(4628), + [anon_sym_c_double] = ACTIONS(4628), + [anon_sym_c_longdouble] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4626), + [anon_sym_orelse] = ACTIONS(4628), + [anon_sym_or] = ACTIONS(4628), + [anon_sym_and] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4628), + [anon_sym_GT_EQ] = ACTIONS(4626), + [anon_sym_AMP] = ACTIONS(4626), + [anon_sym_xor] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4626), + [anon_sym_LT_LT_PIPE] = ACTIONS(4626), + [anon_sym_PLUS] = ACTIONS(4626), + [anon_sym_SLASH] = ACTIONS(4626), + [anon_sym_catch] = ACTIONS(4628), + [anon_sym_DOT] = ACTIONS(4628), + [anon_sym_CARET] = ACTIONS(4626), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4626), + }, + [STATE(7258)] = { + [sym_identifier] = ACTIONS(4438), + [anon_sym_func] = ACTIONS(4438), + [anon_sym_c_func] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_LPAREN] = ACTIONS(4436), + [anon_sym_COMMA] = ACTIONS(4436), + [anon_sym_RBRACE] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_PIPE] = ACTIONS(4436), + [anon_sym_struct_type_BANG] = ACTIONS(4436), + [anon_sym_QMARK] = ACTIONS(4436), + [anon_sym_AT] = ACTIONS(4436), + [anon_sym_STAR] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_void] = ACTIONS(4438), + [anon_sym_noreturn] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_anyopaque] = ACTIONS(4438), + [anon_sym_bool] = ACTIONS(4438), + [anon_sym_int] = ACTIONS(4438), + [anon_sym_uint] = ACTIONS(4438), + [anon_sym_float] = ACTIONS(4438), + [anon_sym_range] = ACTIONS(4438), + [anon_sym_i8] = ACTIONS(4438), + [anon_sym_i16] = ACTIONS(4438), + [anon_sym_i32] = ACTIONS(4438), + [anon_sym_i64] = ACTIONS(4438), + [anon_sym_u8] = ACTIONS(4438), + [anon_sym_u16] = ACTIONS(4438), + [anon_sym_u32] = ACTIONS(4438), + [anon_sym_u64] = ACTIONS(4438), + [anon_sym_isize] = ACTIONS(4438), + [anon_sym_usize] = ACTIONS(4438), + [anon_sym_f32] = ACTIONS(4438), + [anon_sym_f64] = ACTIONS(4438), + [anon_sym_c_char] = ACTIONS(4438), + [anon_sym_c_schar] = ACTIONS(4438), + [anon_sym_c_uchar] = ACTIONS(4438), + [anon_sym_c_short] = ACTIONS(4438), + [anon_sym_c_ushort] = ACTIONS(4438), + [anon_sym_c_int] = ACTIONS(4438), + [anon_sym_c_uint] = ACTIONS(4438), + [anon_sym_c_long] = ACTIONS(4438), + [anon_sym_c_ulong] = ACTIONS(4438), + [anon_sym_c_longlong] = ACTIONS(4438), + [anon_sym_c_ulonglong] = ACTIONS(4438), + [anon_sym_c_float] = ACTIONS(4438), + [anon_sym_c_double] = ACTIONS(4438), + [anon_sym_c_longdouble] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4436), + [anon_sym_orelse] = ACTIONS(4438), + [anon_sym_or] = ACTIONS(4438), + [anon_sym_and] = ACTIONS(4438), + [anon_sym_EQ_EQ] = ACTIONS(4436), + [anon_sym_BANG_EQ] = ACTIONS(4436), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_LT_EQ] = ACTIONS(4436), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_GT_EQ] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4436), + [anon_sym_xor] = ACTIONS(4438), + [anon_sym_LT_LT] = ACTIONS(4438), + [anon_sym_GT_GT] = ACTIONS(4436), + [anon_sym_LT_LT_PIPE] = ACTIONS(4436), + [anon_sym_PLUS] = ACTIONS(4436), + [anon_sym_SLASH] = ACTIONS(4436), + [anon_sym_catch] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4436), + }, + [STATE(7259)] = { + [sym_identifier] = ACTIONS(6176), + [anon_sym_func] = ACTIONS(6176), + [anon_sym_c_func] = ACTIONS(6176), + [anon_sym_struct] = ACTIONS(6176), + [anon_sym_LPAREN] = ACTIONS(6174), + [anon_sym_COMMA] = ACTIONS(6174), + [anon_sym_RBRACE] = ACTIONS(6174), + [anon_sym_DASH] = ACTIONS(6174), + [anon_sym_PIPE] = ACTIONS(6174), + [anon_sym_struct_type_BANG] = ACTIONS(6174), + [anon_sym_QMARK] = ACTIONS(6174), + [anon_sym_AT] = ACTIONS(6174), + [anon_sym_STAR] = ACTIONS(6174), + [anon_sym_LBRACK] = ACTIONS(6174), + [anon_sym_void] = ACTIONS(6176), + [anon_sym_noreturn] = ACTIONS(6176), + [anon_sym_type] = ACTIONS(6176), + [anon_sym_anyopaque] = ACTIONS(6176), + [anon_sym_bool] = ACTIONS(6176), + [anon_sym_int] = ACTIONS(6176), + [anon_sym_uint] = ACTIONS(6176), + [anon_sym_float] = ACTIONS(6176), + [anon_sym_range] = ACTIONS(6176), + [anon_sym_i8] = ACTIONS(6176), + [anon_sym_i16] = ACTIONS(6176), + [anon_sym_i32] = ACTIONS(6176), + [anon_sym_i64] = ACTIONS(6176), + [anon_sym_u8] = ACTIONS(6176), + [anon_sym_u16] = ACTIONS(6176), + [anon_sym_u32] = ACTIONS(6176), + [anon_sym_u64] = ACTIONS(6176), + [anon_sym_isize] = ACTIONS(6176), + [anon_sym_usize] = ACTIONS(6176), + [anon_sym_f32] = ACTIONS(6176), + [anon_sym_f64] = ACTIONS(6176), + [anon_sym_c_char] = ACTIONS(6176), + [anon_sym_c_schar] = ACTIONS(6176), + [anon_sym_c_uchar] = ACTIONS(6176), + [anon_sym_c_short] = ACTIONS(6176), + [anon_sym_c_ushort] = ACTIONS(6176), + [anon_sym_c_int] = ACTIONS(6176), + [anon_sym_c_uint] = ACTIONS(6176), + [anon_sym_c_long] = ACTIONS(6176), + [anon_sym_c_ulong] = ACTIONS(6176), + [anon_sym_c_longlong] = ACTIONS(6176), + [anon_sym_c_ulonglong] = ACTIONS(6176), + [anon_sym_c_float] = ACTIONS(6176), + [anon_sym_c_double] = ACTIONS(6176), + [anon_sym_c_longdouble] = ACTIONS(6176), + [anon_sym_else] = ACTIONS(6176), + [anon_sym_DOT_DOT] = ACTIONS(6176), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6174), + [anon_sym_orelse] = ACTIONS(6176), + [anon_sym_or] = ACTIONS(6176), + [anon_sym_and] = ACTIONS(6176), + [anon_sym_EQ_EQ] = ACTIONS(6174), + [anon_sym_BANG_EQ] = ACTIONS(6174), + [anon_sym_LT] = ACTIONS(6176), + [anon_sym_LT_EQ] = ACTIONS(6174), + [anon_sym_GT] = ACTIONS(6176), + [anon_sym_GT_EQ] = ACTIONS(6174), + [anon_sym_AMP] = ACTIONS(6174), + [anon_sym_xor] = ACTIONS(6176), + [anon_sym_LT_LT] = ACTIONS(6176), + [anon_sym_GT_GT] = ACTIONS(6174), + [anon_sym_LT_LT_PIPE] = ACTIONS(6174), + [anon_sym_PLUS] = ACTIONS(6174), + [anon_sym_SLASH] = ACTIONS(6174), + [anon_sym_catch] = ACTIONS(6176), + [anon_sym_DOT] = ACTIONS(6176), + [anon_sym_CARET] = ACTIONS(6174), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6174), + }, + [STATE(7260)] = { + [sym_identifier] = ACTIONS(2726), + [anon_sym_func] = ACTIONS(2726), + [anon_sym_c_func] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_struct_type_BANG] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_noreturn] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_anyopaque] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_int] = ACTIONS(2726), + [anon_sym_uint] = ACTIONS(2726), + [anon_sym_float] = ACTIONS(2726), + [anon_sym_range] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_c_char] = ACTIONS(2726), + [anon_sym_c_schar] = ACTIONS(2726), + [anon_sym_c_uchar] = ACTIONS(2726), + [anon_sym_c_short] = ACTIONS(2726), + [anon_sym_c_ushort] = ACTIONS(2726), + [anon_sym_c_int] = ACTIONS(2726), + [anon_sym_c_uint] = ACTIONS(2726), + [anon_sym_c_long] = ACTIONS(2726), + [anon_sym_c_ulong] = ACTIONS(2726), + [anon_sym_c_longlong] = ACTIONS(2726), + [anon_sym_c_ulonglong] = ACTIONS(2726), + [anon_sym_c_float] = ACTIONS(2726), + [anon_sym_c_double] = ACTIONS(2726), + [anon_sym_c_longdouble] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2724), + [anon_sym_orelse] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(2726), + [anon_sym_and] = ACTIONS(2726), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2726), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_xor] = ACTIONS(2726), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_LT_LT_PIPE] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2724), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2724), + }, + [STATE(7261)] = { + [sym_identifier] = ACTIONS(6344), + [anon_sym_func] = ACTIONS(6344), + [anon_sym_c_func] = ACTIONS(6344), + [anon_sym_struct] = ACTIONS(6344), + [anon_sym_LPAREN] = ACTIONS(6342), + [anon_sym_COMMA] = ACTIONS(6342), + [anon_sym_RBRACE] = ACTIONS(6342), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_PIPE] = ACTIONS(6342), + [anon_sym_struct_type_BANG] = ACTIONS(6342), + [anon_sym_QMARK] = ACTIONS(6342), + [anon_sym_AT] = ACTIONS(6342), + [anon_sym_STAR] = ACTIONS(6342), + [anon_sym_LBRACK] = ACTIONS(6342), + [anon_sym_void] = ACTIONS(6344), + [anon_sym_noreturn] = ACTIONS(6344), + [anon_sym_type] = ACTIONS(6344), + [anon_sym_anyopaque] = ACTIONS(6344), + [anon_sym_bool] = ACTIONS(6344), + [anon_sym_int] = ACTIONS(6344), + [anon_sym_uint] = ACTIONS(6344), + [anon_sym_float] = ACTIONS(6344), + [anon_sym_range] = ACTIONS(6344), + [anon_sym_i8] = ACTIONS(6344), + [anon_sym_i16] = ACTIONS(6344), + [anon_sym_i32] = ACTIONS(6344), + [anon_sym_i64] = ACTIONS(6344), + [anon_sym_u8] = ACTIONS(6344), + [anon_sym_u16] = ACTIONS(6344), + [anon_sym_u32] = ACTIONS(6344), + [anon_sym_u64] = ACTIONS(6344), + [anon_sym_isize] = ACTIONS(6344), + [anon_sym_usize] = ACTIONS(6344), + [anon_sym_f32] = ACTIONS(6344), + [anon_sym_f64] = ACTIONS(6344), + [anon_sym_c_char] = ACTIONS(6344), + [anon_sym_c_schar] = ACTIONS(6344), + [anon_sym_c_uchar] = ACTIONS(6344), + [anon_sym_c_short] = ACTIONS(6344), + [anon_sym_c_ushort] = ACTIONS(6344), + [anon_sym_c_int] = ACTIONS(6344), + [anon_sym_c_uint] = ACTIONS(6344), + [anon_sym_c_long] = ACTIONS(6344), + [anon_sym_c_ulong] = ACTIONS(6344), + [anon_sym_c_longlong] = ACTIONS(6344), + [anon_sym_c_ulonglong] = ACTIONS(6344), + [anon_sym_c_float] = ACTIONS(6344), + [anon_sym_c_double] = ACTIONS(6344), + [anon_sym_c_longdouble] = ACTIONS(6344), + [anon_sym_else] = ACTIONS(6344), + [anon_sym_DOT_DOT] = ACTIONS(6344), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6342), + [anon_sym_orelse] = ACTIONS(6344), + [anon_sym_or] = ACTIONS(6344), + [anon_sym_and] = ACTIONS(6344), + [anon_sym_EQ_EQ] = ACTIONS(6342), + [anon_sym_BANG_EQ] = ACTIONS(6342), + [anon_sym_LT] = ACTIONS(6344), + [anon_sym_LT_EQ] = ACTIONS(6342), + [anon_sym_GT] = ACTIONS(6344), + [anon_sym_GT_EQ] = ACTIONS(6342), + [anon_sym_AMP] = ACTIONS(6342), + [anon_sym_xor] = ACTIONS(6344), + [anon_sym_LT_LT] = ACTIONS(6344), + [anon_sym_GT_GT] = ACTIONS(6342), + [anon_sym_LT_LT_PIPE] = ACTIONS(6342), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_SLASH] = ACTIONS(6342), + [anon_sym_catch] = ACTIONS(6344), + [anon_sym_DOT] = ACTIONS(6344), + [anon_sym_CARET] = ACTIONS(6342), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6342), + }, + [STATE(7262)] = { + [sym_identifier] = ACTIONS(6348), + [anon_sym_func] = ACTIONS(6348), + [anon_sym_c_func] = ACTIONS(6348), + [anon_sym_struct] = ACTIONS(6348), + [anon_sym_LPAREN] = ACTIONS(6346), + [anon_sym_COMMA] = ACTIONS(6346), + [anon_sym_RBRACE] = ACTIONS(6346), + [anon_sym_DASH] = ACTIONS(6346), + [anon_sym_PIPE] = ACTIONS(6346), + [anon_sym_struct_type_BANG] = ACTIONS(6346), + [anon_sym_QMARK] = ACTIONS(6346), + [anon_sym_AT] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(6346), + [anon_sym_void] = ACTIONS(6348), + [anon_sym_noreturn] = ACTIONS(6348), + [anon_sym_type] = ACTIONS(6348), + [anon_sym_anyopaque] = ACTIONS(6348), + [anon_sym_bool] = ACTIONS(6348), + [anon_sym_int] = ACTIONS(6348), + [anon_sym_uint] = ACTIONS(6348), + [anon_sym_float] = ACTIONS(6348), + [anon_sym_range] = ACTIONS(6348), + [anon_sym_i8] = ACTIONS(6348), + [anon_sym_i16] = ACTIONS(6348), + [anon_sym_i32] = ACTIONS(6348), + [anon_sym_i64] = ACTIONS(6348), + [anon_sym_u8] = ACTIONS(6348), + [anon_sym_u16] = ACTIONS(6348), + [anon_sym_u32] = ACTIONS(6348), + [anon_sym_u64] = ACTIONS(6348), + [anon_sym_isize] = ACTIONS(6348), + [anon_sym_usize] = ACTIONS(6348), + [anon_sym_f32] = ACTIONS(6348), + [anon_sym_f64] = ACTIONS(6348), + [anon_sym_c_char] = ACTIONS(6348), + [anon_sym_c_schar] = ACTIONS(6348), + [anon_sym_c_uchar] = ACTIONS(6348), + [anon_sym_c_short] = ACTIONS(6348), + [anon_sym_c_ushort] = ACTIONS(6348), + [anon_sym_c_int] = ACTIONS(6348), + [anon_sym_c_uint] = ACTIONS(6348), + [anon_sym_c_long] = ACTIONS(6348), + [anon_sym_c_ulong] = ACTIONS(6348), + [anon_sym_c_longlong] = ACTIONS(6348), + [anon_sym_c_ulonglong] = ACTIONS(6348), + [anon_sym_c_float] = ACTIONS(6348), + [anon_sym_c_double] = ACTIONS(6348), + [anon_sym_c_longdouble] = ACTIONS(6348), + [anon_sym_else] = ACTIONS(6348), + [anon_sym_DOT_DOT] = ACTIONS(6348), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6346), + [anon_sym_orelse] = ACTIONS(6348), + [anon_sym_or] = ACTIONS(6348), + [anon_sym_and] = ACTIONS(6348), + [anon_sym_EQ_EQ] = ACTIONS(6346), + [anon_sym_BANG_EQ] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6348), + [anon_sym_LT_EQ] = ACTIONS(6346), + [anon_sym_GT] = ACTIONS(6348), + [anon_sym_GT_EQ] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6346), + [anon_sym_xor] = ACTIONS(6348), + [anon_sym_LT_LT] = ACTIONS(6348), + [anon_sym_GT_GT] = ACTIONS(6346), + [anon_sym_LT_LT_PIPE] = ACTIONS(6346), + [anon_sym_PLUS] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6346), + [anon_sym_catch] = ACTIONS(6348), + [anon_sym_DOT] = ACTIONS(6348), + [anon_sym_CARET] = ACTIONS(6346), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6346), + }, + [STATE(7263)] = { + [sym_identifier] = ACTIONS(6114), + [anon_sym_func] = ACTIONS(6114), + [anon_sym_c_func] = ACTIONS(6114), + [anon_sym_struct] = ACTIONS(6114), + [anon_sym_LPAREN] = ACTIONS(6112), + [anon_sym_COMMA] = ACTIONS(6112), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_DASH] = ACTIONS(6112), + [anon_sym_PIPE] = ACTIONS(6112), + [anon_sym_struct_type_BANG] = ACTIONS(6112), + [anon_sym_QMARK] = ACTIONS(6112), + [anon_sym_AT] = ACTIONS(6112), + [anon_sym_STAR] = ACTIONS(6112), + [anon_sym_LBRACK] = ACTIONS(6112), + [anon_sym_void] = ACTIONS(6114), + [anon_sym_noreturn] = ACTIONS(6114), + [anon_sym_type] = ACTIONS(6114), + [anon_sym_anyopaque] = ACTIONS(6114), + [anon_sym_bool] = ACTIONS(6114), + [anon_sym_int] = ACTIONS(6114), + [anon_sym_uint] = ACTIONS(6114), + [anon_sym_float] = ACTIONS(6114), + [anon_sym_range] = ACTIONS(6114), + [anon_sym_i8] = ACTIONS(6114), + [anon_sym_i16] = ACTIONS(6114), + [anon_sym_i32] = ACTIONS(6114), + [anon_sym_i64] = ACTIONS(6114), + [anon_sym_u8] = ACTIONS(6114), + [anon_sym_u16] = ACTIONS(6114), + [anon_sym_u32] = ACTIONS(6114), + [anon_sym_u64] = ACTIONS(6114), + [anon_sym_isize] = ACTIONS(6114), + [anon_sym_usize] = ACTIONS(6114), + [anon_sym_f32] = ACTIONS(6114), + [anon_sym_f64] = ACTIONS(6114), + [anon_sym_c_char] = ACTIONS(6114), + [anon_sym_c_schar] = ACTIONS(6114), + [anon_sym_c_uchar] = ACTIONS(6114), + [anon_sym_c_short] = ACTIONS(6114), + [anon_sym_c_ushort] = ACTIONS(6114), + [anon_sym_c_int] = ACTIONS(6114), + [anon_sym_c_uint] = ACTIONS(6114), + [anon_sym_c_long] = ACTIONS(6114), + [anon_sym_c_ulong] = ACTIONS(6114), + [anon_sym_c_longlong] = ACTIONS(6114), + [anon_sym_c_ulonglong] = ACTIONS(6114), + [anon_sym_c_float] = ACTIONS(6114), + [anon_sym_c_double] = ACTIONS(6114), + [anon_sym_c_longdouble] = ACTIONS(6114), + [anon_sym_else] = ACTIONS(6114), + [anon_sym_DOT_DOT] = ACTIONS(6114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6112), + [anon_sym_orelse] = ACTIONS(6114), + [anon_sym_or] = ACTIONS(6114), + [anon_sym_and] = ACTIONS(6114), + [anon_sym_EQ_EQ] = ACTIONS(6112), + [anon_sym_BANG_EQ] = ACTIONS(6112), + [anon_sym_LT] = ACTIONS(6114), + [anon_sym_LT_EQ] = ACTIONS(6112), + [anon_sym_GT] = ACTIONS(6114), + [anon_sym_GT_EQ] = ACTIONS(6112), + [anon_sym_AMP] = ACTIONS(6112), + [anon_sym_xor] = ACTIONS(6114), + [anon_sym_LT_LT] = ACTIONS(6114), + [anon_sym_GT_GT] = ACTIONS(6112), + [anon_sym_LT_LT_PIPE] = ACTIONS(6112), + [anon_sym_PLUS] = ACTIONS(6112), + [anon_sym_SLASH] = ACTIONS(6112), + [anon_sym_catch] = ACTIONS(6114), + [anon_sym_DOT] = ACTIONS(6114), + [anon_sym_CARET] = ACTIONS(6112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6112), + }, + [STATE(7264)] = { + [sym_identifier] = ACTIONS(6124), + [anon_sym_func] = ACTIONS(6124), + [anon_sym_c_func] = ACTIONS(6124), + [anon_sym_struct] = ACTIONS(6124), + [anon_sym_LPAREN] = ACTIONS(6122), + [anon_sym_COMMA] = ACTIONS(6122), + [anon_sym_RBRACE] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6122), + [anon_sym_PIPE] = ACTIONS(6122), + [anon_sym_struct_type_BANG] = ACTIONS(6122), + [anon_sym_QMARK] = ACTIONS(6122), + [anon_sym_AT] = ACTIONS(6122), + [anon_sym_STAR] = ACTIONS(6122), + [anon_sym_LBRACK] = ACTIONS(6122), + [anon_sym_void] = ACTIONS(6124), + [anon_sym_noreturn] = ACTIONS(6124), + [anon_sym_type] = ACTIONS(6124), + [anon_sym_anyopaque] = ACTIONS(6124), + [anon_sym_bool] = ACTIONS(6124), + [anon_sym_int] = ACTIONS(6124), + [anon_sym_uint] = ACTIONS(6124), + [anon_sym_float] = ACTIONS(6124), + [anon_sym_range] = ACTIONS(6124), + [anon_sym_i8] = ACTIONS(6124), + [anon_sym_i16] = ACTIONS(6124), + [anon_sym_i32] = ACTIONS(6124), + [anon_sym_i64] = ACTIONS(6124), + [anon_sym_u8] = ACTIONS(6124), + [anon_sym_u16] = ACTIONS(6124), + [anon_sym_u32] = ACTIONS(6124), + [anon_sym_u64] = ACTIONS(6124), + [anon_sym_isize] = ACTIONS(6124), + [anon_sym_usize] = ACTIONS(6124), + [anon_sym_f32] = ACTIONS(6124), + [anon_sym_f64] = ACTIONS(6124), + [anon_sym_c_char] = ACTIONS(6124), + [anon_sym_c_schar] = ACTIONS(6124), + [anon_sym_c_uchar] = ACTIONS(6124), + [anon_sym_c_short] = ACTIONS(6124), + [anon_sym_c_ushort] = ACTIONS(6124), + [anon_sym_c_int] = ACTIONS(6124), + [anon_sym_c_uint] = ACTIONS(6124), + [anon_sym_c_long] = ACTIONS(6124), + [anon_sym_c_ulong] = ACTIONS(6124), + [anon_sym_c_longlong] = ACTIONS(6124), + [anon_sym_c_ulonglong] = ACTIONS(6124), + [anon_sym_c_float] = ACTIONS(6124), + [anon_sym_c_double] = ACTIONS(6124), + [anon_sym_c_longdouble] = ACTIONS(6124), + [anon_sym_else] = ACTIONS(6124), + [anon_sym_DOT_DOT] = ACTIONS(6124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6122), + [anon_sym_orelse] = ACTIONS(6124), + [anon_sym_or] = ACTIONS(6124), + [anon_sym_and] = ACTIONS(6124), + [anon_sym_EQ_EQ] = ACTIONS(6122), + [anon_sym_BANG_EQ] = ACTIONS(6122), + [anon_sym_LT] = ACTIONS(6124), + [anon_sym_LT_EQ] = ACTIONS(6122), + [anon_sym_GT] = ACTIONS(6124), + [anon_sym_GT_EQ] = ACTIONS(6122), + [anon_sym_AMP] = ACTIONS(6122), + [anon_sym_xor] = ACTIONS(6124), + [anon_sym_LT_LT] = ACTIONS(6124), + [anon_sym_GT_GT] = ACTIONS(6122), + [anon_sym_LT_LT_PIPE] = ACTIONS(6122), + [anon_sym_PLUS] = ACTIONS(6122), + [anon_sym_SLASH] = ACTIONS(6122), + [anon_sym_catch] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6124), + [anon_sym_CARET] = ACTIONS(6122), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6122), + }, + [STATE(7265)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(11402), + [anon_sym_func] = ACTIONS(11402), + [anon_sym_c_func] = ACTIONS(11402), + [anon_sym_struct] = ACTIONS(11402), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(11404), + [anon_sym_RBRACE] = ACTIONS(11404), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(11404), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(11404), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(11402), + [anon_sym_noreturn] = ACTIONS(11402), + [anon_sym_type] = ACTIONS(11402), + [anon_sym_anyopaque] = ACTIONS(11402), + [anon_sym_bool] = ACTIONS(11402), + [anon_sym_int] = ACTIONS(11402), + [anon_sym_uint] = ACTIONS(11402), + [anon_sym_float] = ACTIONS(11402), + [anon_sym_range] = ACTIONS(11402), + [anon_sym_i8] = ACTIONS(11402), + [anon_sym_i16] = ACTIONS(11402), + [anon_sym_i32] = ACTIONS(11402), + [anon_sym_i64] = ACTIONS(11402), + [anon_sym_u8] = ACTIONS(11402), + [anon_sym_u16] = ACTIONS(11402), + [anon_sym_u32] = ACTIONS(11402), + [anon_sym_u64] = ACTIONS(11402), + [anon_sym_isize] = ACTIONS(11402), + [anon_sym_usize] = ACTIONS(11402), + [anon_sym_f32] = ACTIONS(11402), + [anon_sym_f64] = ACTIONS(11402), + [anon_sym_c_char] = ACTIONS(11402), + [anon_sym_c_schar] = ACTIONS(11402), + [anon_sym_c_uchar] = ACTIONS(11402), + [anon_sym_c_short] = ACTIONS(11402), + [anon_sym_c_ushort] = ACTIONS(11402), + [anon_sym_c_int] = ACTIONS(11402), + [anon_sym_c_uint] = ACTIONS(11402), + [anon_sym_c_long] = ACTIONS(11402), + [anon_sym_c_ulong] = ACTIONS(11402), + [anon_sym_c_longlong] = ACTIONS(11402), + [anon_sym_c_ulonglong] = ACTIONS(11402), + [anon_sym_c_float] = ACTIONS(11402), + [anon_sym_c_double] = ACTIONS(11402), + [anon_sym_c_longdouble] = ACTIONS(11402), + [anon_sym_DOT_DOT] = ACTIONS(11406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(11408), + [anon_sym_orelse] = ACTIONS(11353), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(11400), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11404), + }, + [STATE(7266)] = { + [sym_identifier] = ACTIONS(6186), + [anon_sym_func] = ACTIONS(6186), + [anon_sym_c_func] = ACTIONS(6186), + [anon_sym_struct] = ACTIONS(6186), + [anon_sym_LPAREN] = ACTIONS(6184), + [anon_sym_COMMA] = ACTIONS(6184), + [anon_sym_RBRACE] = ACTIONS(6184), + [anon_sym_DASH] = ACTIONS(6184), + [anon_sym_PIPE] = ACTIONS(6184), + [anon_sym_struct_type_BANG] = ACTIONS(6184), + [anon_sym_QMARK] = ACTIONS(6184), + [anon_sym_AT] = ACTIONS(6184), + [anon_sym_STAR] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(6184), + [anon_sym_void] = ACTIONS(6186), + [anon_sym_noreturn] = ACTIONS(6186), + [anon_sym_type] = ACTIONS(6186), + [anon_sym_anyopaque] = ACTIONS(6186), + [anon_sym_bool] = ACTIONS(6186), + [anon_sym_int] = ACTIONS(6186), + [anon_sym_uint] = ACTIONS(6186), + [anon_sym_float] = ACTIONS(6186), + [anon_sym_range] = ACTIONS(6186), + [anon_sym_i8] = ACTIONS(6186), + [anon_sym_i16] = ACTIONS(6186), + [anon_sym_i32] = ACTIONS(6186), + [anon_sym_i64] = ACTIONS(6186), + [anon_sym_u8] = ACTIONS(6186), + [anon_sym_u16] = ACTIONS(6186), + [anon_sym_u32] = ACTIONS(6186), + [anon_sym_u64] = ACTIONS(6186), + [anon_sym_isize] = ACTIONS(6186), + [anon_sym_usize] = ACTIONS(6186), + [anon_sym_f32] = ACTIONS(6186), + [anon_sym_f64] = ACTIONS(6186), + [anon_sym_c_char] = ACTIONS(6186), + [anon_sym_c_schar] = ACTIONS(6186), + [anon_sym_c_uchar] = ACTIONS(6186), + [anon_sym_c_short] = ACTIONS(6186), + [anon_sym_c_ushort] = ACTIONS(6186), + [anon_sym_c_int] = ACTIONS(6186), + [anon_sym_c_uint] = ACTIONS(6186), + [anon_sym_c_long] = ACTIONS(6186), + [anon_sym_c_ulong] = ACTIONS(6186), + [anon_sym_c_longlong] = ACTIONS(6186), + [anon_sym_c_ulonglong] = ACTIONS(6186), + [anon_sym_c_float] = ACTIONS(6186), + [anon_sym_c_double] = ACTIONS(6186), + [anon_sym_c_longdouble] = ACTIONS(6186), + [anon_sym_else] = ACTIONS(6186), + [anon_sym_DOT_DOT] = ACTIONS(6186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6184), + [anon_sym_orelse] = ACTIONS(6186), + [anon_sym_or] = ACTIONS(6186), + [anon_sym_and] = ACTIONS(6186), + [anon_sym_EQ_EQ] = ACTIONS(6184), + [anon_sym_BANG_EQ] = ACTIONS(6184), + [anon_sym_LT] = ACTIONS(6186), + [anon_sym_LT_EQ] = ACTIONS(6184), + [anon_sym_GT] = ACTIONS(6186), + [anon_sym_GT_EQ] = ACTIONS(6184), + [anon_sym_AMP] = ACTIONS(6184), + [anon_sym_xor] = ACTIONS(6186), + [anon_sym_LT_LT] = ACTIONS(6186), + [anon_sym_GT_GT] = ACTIONS(6184), + [anon_sym_LT_LT_PIPE] = ACTIONS(6184), + [anon_sym_PLUS] = ACTIONS(6184), + [anon_sym_SLASH] = ACTIONS(6184), + [anon_sym_catch] = ACTIONS(6186), + [anon_sym_DOT] = ACTIONS(6186), + [anon_sym_CARET] = ACTIONS(6184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6184), + }, + [STATE(7267)] = { + [sym_identifier] = ACTIONS(4632), + [anon_sym_func] = ACTIONS(4632), + [anon_sym_c_func] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4630), + [anon_sym_COMMA] = ACTIONS(4630), + [anon_sym_RBRACE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_struct_type_BANG] = ACTIONS(4630), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_LBRACK] = ACTIONS(4630), + [anon_sym_void] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym_type] = ACTIONS(4632), + [anon_sym_anyopaque] = ACTIONS(4632), + [anon_sym_bool] = ACTIONS(4632), + [anon_sym_int] = ACTIONS(4632), + [anon_sym_uint] = ACTIONS(4632), + [anon_sym_float] = ACTIONS(4632), + [anon_sym_range] = ACTIONS(4632), + [anon_sym_i8] = ACTIONS(4632), + [anon_sym_i16] = ACTIONS(4632), + [anon_sym_i32] = ACTIONS(4632), + [anon_sym_i64] = ACTIONS(4632), + [anon_sym_u8] = ACTIONS(4632), + [anon_sym_u16] = ACTIONS(4632), + [anon_sym_u32] = ACTIONS(4632), + [anon_sym_u64] = ACTIONS(4632), + [anon_sym_isize] = ACTIONS(4632), + [anon_sym_usize] = ACTIONS(4632), + [anon_sym_f32] = ACTIONS(4632), + [anon_sym_f64] = ACTIONS(4632), + [anon_sym_c_char] = ACTIONS(4632), + [anon_sym_c_schar] = ACTIONS(4632), + [anon_sym_c_uchar] = ACTIONS(4632), + [anon_sym_c_short] = ACTIONS(4632), + [anon_sym_c_ushort] = ACTIONS(4632), + [anon_sym_c_int] = ACTIONS(4632), + [anon_sym_c_uint] = ACTIONS(4632), + [anon_sym_c_long] = ACTIONS(4632), + [anon_sym_c_ulong] = ACTIONS(4632), + [anon_sym_c_longlong] = ACTIONS(4632), + [anon_sym_c_ulonglong] = ACTIONS(4632), + [anon_sym_c_float] = ACTIONS(4632), + [anon_sym_c_double] = ACTIONS(4632), + [anon_sym_c_longdouble] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4630), + [anon_sym_orelse] = ACTIONS(4632), + [anon_sym_or] = ACTIONS(4632), + [anon_sym_and] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [anon_sym_xor] = ACTIONS(4632), + [anon_sym_LT_LT] = ACTIONS(4632), + [anon_sym_GT_GT] = ACTIONS(4630), + [anon_sym_LT_LT_PIPE] = ACTIONS(4630), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_catch] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_CARET] = ACTIONS(4630), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4630), + }, + [STATE(7268)] = { + [sym_identifier] = ACTIONS(4442), + [anon_sym_func] = ACTIONS(4442), + [anon_sym_c_func] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4440), + [anon_sym_PIPE] = ACTIONS(4440), + [anon_sym_struct_type_BANG] = ACTIONS(4440), + [anon_sym_QMARK] = ACTIONS(4440), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_STAR] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_void] = ACTIONS(4442), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_anyopaque] = ACTIONS(4442), + [anon_sym_bool] = ACTIONS(4442), + [anon_sym_int] = ACTIONS(4442), + [anon_sym_uint] = ACTIONS(4442), + [anon_sym_float] = ACTIONS(4442), + [anon_sym_range] = ACTIONS(4442), + [anon_sym_i8] = ACTIONS(4442), + [anon_sym_i16] = ACTIONS(4442), + [anon_sym_i32] = ACTIONS(4442), + [anon_sym_i64] = ACTIONS(4442), + [anon_sym_u8] = ACTIONS(4442), + [anon_sym_u16] = ACTIONS(4442), + [anon_sym_u32] = ACTIONS(4442), + [anon_sym_u64] = ACTIONS(4442), + [anon_sym_isize] = ACTIONS(4442), + [anon_sym_usize] = ACTIONS(4442), + [anon_sym_f32] = ACTIONS(4442), + [anon_sym_f64] = ACTIONS(4442), + [anon_sym_c_char] = ACTIONS(4442), + [anon_sym_c_schar] = ACTIONS(4442), + [anon_sym_c_uchar] = ACTIONS(4442), + [anon_sym_c_short] = ACTIONS(4442), + [anon_sym_c_ushort] = ACTIONS(4442), + [anon_sym_c_int] = ACTIONS(4442), + [anon_sym_c_uint] = ACTIONS(4442), + [anon_sym_c_long] = ACTIONS(4442), + [anon_sym_c_ulong] = ACTIONS(4442), + [anon_sym_c_longlong] = ACTIONS(4442), + [anon_sym_c_ulonglong] = ACTIONS(4442), + [anon_sym_c_float] = ACTIONS(4442), + [anon_sym_c_double] = ACTIONS(4442), + [anon_sym_c_longdouble] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4440), + [anon_sym_orelse] = ACTIONS(4442), + [anon_sym_or] = ACTIONS(4442), + [anon_sym_and] = ACTIONS(4442), + [anon_sym_EQ_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_xor] = ACTIONS(4442), + [anon_sym_LT_LT] = ACTIONS(4442), + [anon_sym_GT_GT] = ACTIONS(4440), + [anon_sym_LT_LT_PIPE] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4440), + [anon_sym_SLASH] = ACTIONS(4440), + [anon_sym_catch] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4440), + }, + [STATE(7269)] = { + [sym_identifier] = ACTIONS(4636), + [anon_sym_func] = ACTIONS(4636), + [anon_sym_c_func] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_struct_type_BANG] = ACTIONS(4634), + [anon_sym_QMARK] = ACTIONS(4634), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_void] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym_type] = ACTIONS(4636), + [anon_sym_anyopaque] = ACTIONS(4636), + [anon_sym_bool] = ACTIONS(4636), + [anon_sym_int] = ACTIONS(4636), + [anon_sym_uint] = ACTIONS(4636), + [anon_sym_float] = ACTIONS(4636), + [anon_sym_range] = ACTIONS(4636), + [anon_sym_i8] = ACTIONS(4636), + [anon_sym_i16] = ACTIONS(4636), + [anon_sym_i32] = ACTIONS(4636), + [anon_sym_i64] = ACTIONS(4636), + [anon_sym_u8] = ACTIONS(4636), + [anon_sym_u16] = ACTIONS(4636), + [anon_sym_u32] = ACTIONS(4636), + [anon_sym_u64] = ACTIONS(4636), + [anon_sym_isize] = ACTIONS(4636), + [anon_sym_usize] = ACTIONS(4636), + [anon_sym_f32] = ACTIONS(4636), + [anon_sym_f64] = ACTIONS(4636), + [anon_sym_c_char] = ACTIONS(4636), + [anon_sym_c_schar] = ACTIONS(4636), + [anon_sym_c_uchar] = ACTIONS(4636), + [anon_sym_c_short] = ACTIONS(4636), + [anon_sym_c_ushort] = ACTIONS(4636), + [anon_sym_c_int] = ACTIONS(4636), + [anon_sym_c_uint] = ACTIONS(4636), + [anon_sym_c_long] = ACTIONS(4636), + [anon_sym_c_ulong] = ACTIONS(4636), + [anon_sym_c_longlong] = ACTIONS(4636), + [anon_sym_c_ulonglong] = ACTIONS(4636), + [anon_sym_c_float] = ACTIONS(4636), + [anon_sym_c_double] = ACTIONS(4636), + [anon_sym_c_longdouble] = ACTIONS(4636), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4634), + [anon_sym_orelse] = ACTIONS(4636), + [anon_sym_or] = ACTIONS(4636), + [anon_sym_and] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_AMP] = ACTIONS(4634), + [anon_sym_xor] = ACTIONS(4636), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(4634), + [anon_sym_LT_LT_PIPE] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4634), + [anon_sym_SLASH] = ACTIONS(4634), + [anon_sym_catch] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_CARET] = ACTIONS(4634), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4634), + }, + [STATE(7270)] = { + [sym_identifier] = ACTIONS(4640), + [anon_sym_func] = ACTIONS(4640), + [anon_sym_c_func] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_COMMA] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4638), + [anon_sym_PIPE] = ACTIONS(4638), + [anon_sym_struct_type_BANG] = ACTIONS(4638), + [anon_sym_QMARK] = ACTIONS(4638), + [anon_sym_AT] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4638), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_void] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym_type] = ACTIONS(4640), + [anon_sym_anyopaque] = ACTIONS(4640), + [anon_sym_bool] = ACTIONS(4640), + [anon_sym_int] = ACTIONS(4640), + [anon_sym_uint] = ACTIONS(4640), + [anon_sym_float] = ACTIONS(4640), + [anon_sym_range] = ACTIONS(4640), + [anon_sym_i8] = ACTIONS(4640), + [anon_sym_i16] = ACTIONS(4640), + [anon_sym_i32] = ACTIONS(4640), + [anon_sym_i64] = ACTIONS(4640), + [anon_sym_u8] = ACTIONS(4640), + [anon_sym_u16] = ACTIONS(4640), + [anon_sym_u32] = ACTIONS(4640), + [anon_sym_u64] = ACTIONS(4640), + [anon_sym_isize] = ACTIONS(4640), + [anon_sym_usize] = ACTIONS(4640), + [anon_sym_f32] = ACTIONS(4640), + [anon_sym_f64] = ACTIONS(4640), + [anon_sym_c_char] = ACTIONS(4640), + [anon_sym_c_schar] = ACTIONS(4640), + [anon_sym_c_uchar] = ACTIONS(4640), + [anon_sym_c_short] = ACTIONS(4640), + [anon_sym_c_ushort] = ACTIONS(4640), + [anon_sym_c_int] = ACTIONS(4640), + [anon_sym_c_uint] = ACTIONS(4640), + [anon_sym_c_long] = ACTIONS(4640), + [anon_sym_c_ulong] = ACTIONS(4640), + [anon_sym_c_longlong] = ACTIONS(4640), + [anon_sym_c_ulonglong] = ACTIONS(4640), + [anon_sym_c_float] = ACTIONS(4640), + [anon_sym_c_double] = ACTIONS(4640), + [anon_sym_c_longdouble] = ACTIONS(4640), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4638), + [anon_sym_orelse] = ACTIONS(4640), + [anon_sym_or] = ACTIONS(4640), + [anon_sym_and] = ACTIONS(4640), + [anon_sym_EQ_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4638), + [anon_sym_xor] = ACTIONS(4640), + [anon_sym_LT_LT] = ACTIONS(4640), + [anon_sym_GT_GT] = ACTIONS(4638), + [anon_sym_LT_LT_PIPE] = ACTIONS(4638), + [anon_sym_PLUS] = ACTIONS(4638), + [anon_sym_SLASH] = ACTIONS(4638), + [anon_sym_catch] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_CARET] = ACTIONS(4638), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4638), + }, + [STATE(7271)] = { + [sym_identifier] = ACTIONS(4644), + [anon_sym_func] = ACTIONS(4644), + [anon_sym_c_func] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_struct_type_BANG] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_void] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym_type] = ACTIONS(4644), + [anon_sym_anyopaque] = ACTIONS(4644), + [anon_sym_bool] = ACTIONS(4644), + [anon_sym_int] = ACTIONS(4644), + [anon_sym_uint] = ACTIONS(4644), + [anon_sym_float] = ACTIONS(4644), + [anon_sym_range] = ACTIONS(4644), + [anon_sym_i8] = ACTIONS(4644), + [anon_sym_i16] = ACTIONS(4644), + [anon_sym_i32] = ACTIONS(4644), + [anon_sym_i64] = ACTIONS(4644), + [anon_sym_u8] = ACTIONS(4644), + [anon_sym_u16] = ACTIONS(4644), + [anon_sym_u32] = ACTIONS(4644), + [anon_sym_u64] = ACTIONS(4644), + [anon_sym_isize] = ACTIONS(4644), + [anon_sym_usize] = ACTIONS(4644), + [anon_sym_f32] = ACTIONS(4644), + [anon_sym_f64] = ACTIONS(4644), + [anon_sym_c_char] = ACTIONS(4644), + [anon_sym_c_schar] = ACTIONS(4644), + [anon_sym_c_uchar] = ACTIONS(4644), + [anon_sym_c_short] = ACTIONS(4644), + [anon_sym_c_ushort] = ACTIONS(4644), + [anon_sym_c_int] = ACTIONS(4644), + [anon_sym_c_uint] = ACTIONS(4644), + [anon_sym_c_long] = ACTIONS(4644), + [anon_sym_c_ulong] = ACTIONS(4644), + [anon_sym_c_longlong] = ACTIONS(4644), + [anon_sym_c_ulonglong] = ACTIONS(4644), + [anon_sym_c_float] = ACTIONS(4644), + [anon_sym_c_double] = ACTIONS(4644), + [anon_sym_c_longdouble] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4642), + [anon_sym_orelse] = ACTIONS(4644), + [anon_sym_or] = ACTIONS(4644), + [anon_sym_and] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4642), + [anon_sym_xor] = ACTIONS(4644), + [anon_sym_LT_LT] = ACTIONS(4644), + [anon_sym_GT_GT] = ACTIONS(4642), + [anon_sym_LT_LT_PIPE] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_catch] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4642), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4642), + }, + [STATE(7272)] = { + [sym_identifier] = ACTIONS(4648), + [anon_sym_func] = ACTIONS(4648), + [anon_sym_c_func] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_struct_type_BANG] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_void] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym_type] = ACTIONS(4648), + [anon_sym_anyopaque] = ACTIONS(4648), + [anon_sym_bool] = ACTIONS(4648), + [anon_sym_int] = ACTIONS(4648), + [anon_sym_uint] = ACTIONS(4648), + [anon_sym_float] = ACTIONS(4648), + [anon_sym_range] = ACTIONS(4648), + [anon_sym_i8] = ACTIONS(4648), + [anon_sym_i16] = ACTIONS(4648), + [anon_sym_i32] = ACTIONS(4648), + [anon_sym_i64] = ACTIONS(4648), + [anon_sym_u8] = ACTIONS(4648), + [anon_sym_u16] = ACTIONS(4648), + [anon_sym_u32] = ACTIONS(4648), + [anon_sym_u64] = ACTIONS(4648), + [anon_sym_isize] = ACTIONS(4648), + [anon_sym_usize] = ACTIONS(4648), + [anon_sym_f32] = ACTIONS(4648), + [anon_sym_f64] = ACTIONS(4648), + [anon_sym_c_char] = ACTIONS(4648), + [anon_sym_c_schar] = ACTIONS(4648), + [anon_sym_c_uchar] = ACTIONS(4648), + [anon_sym_c_short] = ACTIONS(4648), + [anon_sym_c_ushort] = ACTIONS(4648), + [anon_sym_c_int] = ACTIONS(4648), + [anon_sym_c_uint] = ACTIONS(4648), + [anon_sym_c_long] = ACTIONS(4648), + [anon_sym_c_ulong] = ACTIONS(4648), + [anon_sym_c_longlong] = ACTIONS(4648), + [anon_sym_c_ulonglong] = ACTIONS(4648), + [anon_sym_c_float] = ACTIONS(4648), + [anon_sym_c_double] = ACTIONS(4648), + [anon_sym_c_longdouble] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4646), + [anon_sym_orelse] = ACTIONS(4648), + [anon_sym_or] = ACTIONS(4648), + [anon_sym_and] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_AMP] = ACTIONS(4646), + [anon_sym_xor] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4646), + [anon_sym_LT_LT_PIPE] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_catch] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4646), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4646), + }, + [STATE(7273)] = { + [sym_identifier] = ACTIONS(4652), + [anon_sym_func] = ACTIONS(4652), + [anon_sym_c_func] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_PIPE] = ACTIONS(4650), + [anon_sym_struct_type_BANG] = ACTIONS(4650), + [anon_sym_QMARK] = ACTIONS(4650), + [anon_sym_AT] = ACTIONS(4650), + [anon_sym_STAR] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_void] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym_type] = ACTIONS(4652), + [anon_sym_anyopaque] = ACTIONS(4652), + [anon_sym_bool] = ACTIONS(4652), + [anon_sym_int] = ACTIONS(4652), + [anon_sym_uint] = ACTIONS(4652), + [anon_sym_float] = ACTIONS(4652), + [anon_sym_range] = ACTIONS(4652), + [anon_sym_i8] = ACTIONS(4652), + [anon_sym_i16] = ACTIONS(4652), + [anon_sym_i32] = ACTIONS(4652), + [anon_sym_i64] = ACTIONS(4652), + [anon_sym_u8] = ACTIONS(4652), + [anon_sym_u16] = ACTIONS(4652), + [anon_sym_u32] = ACTIONS(4652), + [anon_sym_u64] = ACTIONS(4652), + [anon_sym_isize] = ACTIONS(4652), + [anon_sym_usize] = ACTIONS(4652), + [anon_sym_f32] = ACTIONS(4652), + [anon_sym_f64] = ACTIONS(4652), + [anon_sym_c_char] = ACTIONS(4652), + [anon_sym_c_schar] = ACTIONS(4652), + [anon_sym_c_uchar] = ACTIONS(4652), + [anon_sym_c_short] = ACTIONS(4652), + [anon_sym_c_ushort] = ACTIONS(4652), + [anon_sym_c_int] = ACTIONS(4652), + [anon_sym_c_uint] = ACTIONS(4652), + [anon_sym_c_long] = ACTIONS(4652), + [anon_sym_c_ulong] = ACTIONS(4652), + [anon_sym_c_longlong] = ACTIONS(4652), + [anon_sym_c_ulonglong] = ACTIONS(4652), + [anon_sym_c_float] = ACTIONS(4652), + [anon_sym_c_double] = ACTIONS(4652), + [anon_sym_c_longdouble] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4650), + [anon_sym_orelse] = ACTIONS(4652), + [anon_sym_or] = ACTIONS(4652), + [anon_sym_and] = ACTIONS(4652), + [anon_sym_EQ_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4650), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_AMP] = ACTIONS(4650), + [anon_sym_xor] = ACTIONS(4652), + [anon_sym_LT_LT] = ACTIONS(4652), + [anon_sym_GT_GT] = ACTIONS(4650), + [anon_sym_LT_LT_PIPE] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4650), + [anon_sym_SLASH] = ACTIONS(4650), + [anon_sym_catch] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_CARET] = ACTIONS(4650), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4650), + }, + [STATE(7274)] = { + [sym_identifier] = ACTIONS(6134), + [anon_sym_func] = ACTIONS(6134), + [anon_sym_c_func] = ACTIONS(6134), + [anon_sym_struct] = ACTIONS(6134), + [anon_sym_LPAREN] = ACTIONS(6132), + [anon_sym_COMMA] = ACTIONS(6132), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_DASH] = ACTIONS(6132), + [anon_sym_PIPE] = ACTIONS(6132), + [anon_sym_struct_type_BANG] = ACTIONS(6132), + [anon_sym_QMARK] = ACTIONS(6132), + [anon_sym_AT] = ACTIONS(6132), + [anon_sym_STAR] = ACTIONS(6132), + [anon_sym_LBRACK] = ACTIONS(6132), + [anon_sym_void] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym_type] = ACTIONS(6134), + [anon_sym_anyopaque] = ACTIONS(6134), + [anon_sym_bool] = ACTIONS(6134), + [anon_sym_int] = ACTIONS(6134), + [anon_sym_uint] = ACTIONS(6134), + [anon_sym_float] = ACTIONS(6134), + [anon_sym_range] = ACTIONS(6134), + [anon_sym_i8] = ACTIONS(6134), + [anon_sym_i16] = ACTIONS(6134), + [anon_sym_i32] = ACTIONS(6134), + [anon_sym_i64] = ACTIONS(6134), + [anon_sym_u8] = ACTIONS(6134), + [anon_sym_u16] = ACTIONS(6134), + [anon_sym_u32] = ACTIONS(6134), + [anon_sym_u64] = ACTIONS(6134), + [anon_sym_isize] = ACTIONS(6134), + [anon_sym_usize] = ACTIONS(6134), + [anon_sym_f32] = ACTIONS(6134), + [anon_sym_f64] = ACTIONS(6134), + [anon_sym_c_char] = ACTIONS(6134), + [anon_sym_c_schar] = ACTIONS(6134), + [anon_sym_c_uchar] = ACTIONS(6134), + [anon_sym_c_short] = ACTIONS(6134), + [anon_sym_c_ushort] = ACTIONS(6134), + [anon_sym_c_int] = ACTIONS(6134), + [anon_sym_c_uint] = ACTIONS(6134), + [anon_sym_c_long] = ACTIONS(6134), + [anon_sym_c_ulong] = ACTIONS(6134), + [anon_sym_c_longlong] = ACTIONS(6134), + [anon_sym_c_ulonglong] = ACTIONS(6134), + [anon_sym_c_float] = ACTIONS(6134), + [anon_sym_c_double] = ACTIONS(6134), + [anon_sym_c_longdouble] = ACTIONS(6134), + [anon_sym_else] = ACTIONS(6134), + [anon_sym_DOT_DOT] = ACTIONS(6134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6132), + [anon_sym_orelse] = ACTIONS(6134), + [anon_sym_or] = ACTIONS(6134), + [anon_sym_and] = ACTIONS(6134), + [anon_sym_EQ_EQ] = ACTIONS(6132), + [anon_sym_BANG_EQ] = ACTIONS(6132), + [anon_sym_LT] = ACTIONS(6134), + [anon_sym_LT_EQ] = ACTIONS(6132), + [anon_sym_GT] = ACTIONS(6134), + [anon_sym_GT_EQ] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6132), + [anon_sym_xor] = ACTIONS(6134), + [anon_sym_LT_LT] = ACTIONS(6134), + [anon_sym_GT_GT] = ACTIONS(6132), + [anon_sym_LT_LT_PIPE] = ACTIONS(6132), + [anon_sym_PLUS] = ACTIONS(6132), + [anon_sym_SLASH] = ACTIONS(6132), + [anon_sym_catch] = ACTIONS(6134), + [anon_sym_DOT] = ACTIONS(6134), + [anon_sym_CARET] = ACTIONS(6132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6132), + }, + [STATE(7275)] = { + [sym_identifier] = ACTIONS(1292), + [anon_sym_func] = ACTIONS(1292), + [anon_sym_c_func] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_struct_type_BANG] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_anyopaque] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_int] = ACTIONS(1292), + [anon_sym_uint] = ACTIONS(1292), + [anon_sym_float] = ACTIONS(1292), + [anon_sym_range] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_c_char] = ACTIONS(1292), + [anon_sym_c_schar] = ACTIONS(1292), + [anon_sym_c_uchar] = ACTIONS(1292), + [anon_sym_c_short] = ACTIONS(1292), + [anon_sym_c_ushort] = ACTIONS(1292), + [anon_sym_c_int] = ACTIONS(1292), + [anon_sym_c_uint] = ACTIONS(1292), + [anon_sym_c_long] = ACTIONS(1292), + [anon_sym_c_ulong] = ACTIONS(1292), + [anon_sym_c_longlong] = ACTIONS(1292), + [anon_sym_c_ulonglong] = ACTIONS(1292), + [anon_sym_c_float] = ACTIONS(1292), + [anon_sym_c_double] = ACTIONS(1292), + [anon_sym_c_longdouble] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1292), + [anon_sym_or] = ACTIONS(1292), + [anon_sym_and] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_LT_LT_PIPE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(7276)] = { + [sym_identifier] = ACTIONS(5804), + [anon_sym_func] = ACTIONS(5804), + [anon_sym_c_func] = ACTIONS(5804), + [anon_sym_struct] = ACTIONS(5804), + [anon_sym_LPAREN] = ACTIONS(5802), + [anon_sym_COMMA] = ACTIONS(5802), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5802), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_struct_type_BANG] = ACTIONS(5802), + [anon_sym_QMARK] = ACTIONS(5802), + [anon_sym_AT] = ACTIONS(5802), + [anon_sym_STAR] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_void] = ACTIONS(5804), + [anon_sym_noreturn] = ACTIONS(5804), + [anon_sym_type] = ACTIONS(5804), + [anon_sym_anyopaque] = ACTIONS(5804), + [anon_sym_bool] = ACTIONS(5804), + [anon_sym_int] = ACTIONS(5804), + [anon_sym_uint] = ACTIONS(5804), + [anon_sym_float] = ACTIONS(5804), + [anon_sym_range] = ACTIONS(5804), + [anon_sym_i8] = ACTIONS(5804), + [anon_sym_i16] = ACTIONS(5804), + [anon_sym_i32] = ACTIONS(5804), + [anon_sym_i64] = ACTIONS(5804), + [anon_sym_u8] = ACTIONS(5804), + [anon_sym_u16] = ACTIONS(5804), + [anon_sym_u32] = ACTIONS(5804), + [anon_sym_u64] = ACTIONS(5804), + [anon_sym_isize] = ACTIONS(5804), + [anon_sym_usize] = ACTIONS(5804), + [anon_sym_f32] = ACTIONS(5804), + [anon_sym_f64] = ACTIONS(5804), + [anon_sym_c_char] = ACTIONS(5804), + [anon_sym_c_schar] = ACTIONS(5804), + [anon_sym_c_uchar] = ACTIONS(5804), + [anon_sym_c_short] = ACTIONS(5804), + [anon_sym_c_ushort] = ACTIONS(5804), + [anon_sym_c_int] = ACTIONS(5804), + [anon_sym_c_uint] = ACTIONS(5804), + [anon_sym_c_long] = ACTIONS(5804), + [anon_sym_c_ulong] = ACTIONS(5804), + [anon_sym_c_longlong] = ACTIONS(5804), + [anon_sym_c_ulonglong] = ACTIONS(5804), + [anon_sym_c_float] = ACTIONS(5804), + [anon_sym_c_double] = ACTIONS(5804), + [anon_sym_c_longdouble] = ACTIONS(5804), + [anon_sym_else] = ACTIONS(5804), + [anon_sym_DOT_DOT] = ACTIONS(5804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5802), + [anon_sym_orelse] = ACTIONS(5804), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5802), + [anon_sym_BANG_EQ] = ACTIONS(5802), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5802), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5804), + [anon_sym_GT_GT] = ACTIONS(5802), + [anon_sym_LT_LT_PIPE] = ACTIONS(5802), + [anon_sym_PLUS] = ACTIONS(5802), + [anon_sym_SLASH] = ACTIONS(5802), + [anon_sym_catch] = ACTIONS(5804), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5802), + }, + [STATE(7277)] = { + [sym_identifier] = ACTIONS(6190), + [anon_sym_func] = ACTIONS(6190), + [anon_sym_c_func] = ACTIONS(6190), + [anon_sym_struct] = ACTIONS(6190), + [anon_sym_LPAREN] = ACTIONS(6188), + [anon_sym_COMMA] = ACTIONS(6188), + [anon_sym_RBRACE] = ACTIONS(6188), + [anon_sym_DASH] = ACTIONS(6188), + [anon_sym_PIPE] = ACTIONS(6188), + [anon_sym_struct_type_BANG] = ACTIONS(6188), + [anon_sym_QMARK] = ACTIONS(6188), + [anon_sym_AT] = ACTIONS(6188), + [anon_sym_STAR] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(6188), + [anon_sym_void] = ACTIONS(6190), + [anon_sym_noreturn] = ACTIONS(6190), + [anon_sym_type] = ACTIONS(6190), + [anon_sym_anyopaque] = ACTIONS(6190), + [anon_sym_bool] = ACTIONS(6190), + [anon_sym_int] = ACTIONS(6190), + [anon_sym_uint] = ACTIONS(6190), + [anon_sym_float] = ACTIONS(6190), + [anon_sym_range] = ACTIONS(6190), + [anon_sym_i8] = ACTIONS(6190), + [anon_sym_i16] = ACTIONS(6190), + [anon_sym_i32] = ACTIONS(6190), + [anon_sym_i64] = ACTIONS(6190), + [anon_sym_u8] = ACTIONS(6190), + [anon_sym_u16] = ACTIONS(6190), + [anon_sym_u32] = ACTIONS(6190), + [anon_sym_u64] = ACTIONS(6190), + [anon_sym_isize] = ACTIONS(6190), + [anon_sym_usize] = ACTIONS(6190), + [anon_sym_f32] = ACTIONS(6190), + [anon_sym_f64] = ACTIONS(6190), + [anon_sym_c_char] = ACTIONS(6190), + [anon_sym_c_schar] = ACTIONS(6190), + [anon_sym_c_uchar] = ACTIONS(6190), + [anon_sym_c_short] = ACTIONS(6190), + [anon_sym_c_ushort] = ACTIONS(6190), + [anon_sym_c_int] = ACTIONS(6190), + [anon_sym_c_uint] = ACTIONS(6190), + [anon_sym_c_long] = ACTIONS(6190), + [anon_sym_c_ulong] = ACTIONS(6190), + [anon_sym_c_longlong] = ACTIONS(6190), + [anon_sym_c_ulonglong] = ACTIONS(6190), + [anon_sym_c_float] = ACTIONS(6190), + [anon_sym_c_double] = ACTIONS(6190), + [anon_sym_c_longdouble] = ACTIONS(6190), + [anon_sym_else] = ACTIONS(6190), + [anon_sym_DOT_DOT] = ACTIONS(6190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6188), + [anon_sym_orelse] = ACTIONS(6190), + [anon_sym_or] = ACTIONS(6190), + [anon_sym_and] = ACTIONS(6190), + [anon_sym_EQ_EQ] = ACTIONS(6188), + [anon_sym_BANG_EQ] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(6190), + [anon_sym_LT_EQ] = ACTIONS(6188), + [anon_sym_GT] = ACTIONS(6190), + [anon_sym_GT_EQ] = ACTIONS(6188), + [anon_sym_AMP] = ACTIONS(6188), + [anon_sym_xor] = ACTIONS(6190), + [anon_sym_LT_LT] = ACTIONS(6190), + [anon_sym_GT_GT] = ACTIONS(6188), + [anon_sym_LT_LT_PIPE] = ACTIONS(6188), + [anon_sym_PLUS] = ACTIONS(6188), + [anon_sym_SLASH] = ACTIONS(6188), + [anon_sym_catch] = ACTIONS(6190), + [anon_sym_DOT] = ACTIONS(6190), + [anon_sym_CARET] = ACTIONS(6188), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6188), + }, + [STATE(7278)] = { + [sym_identifier] = ACTIONS(4656), + [anon_sym_func] = ACTIONS(4656), + [anon_sym_c_func] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_struct_type_BANG] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4654), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_void] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym_type] = ACTIONS(4656), + [anon_sym_anyopaque] = ACTIONS(4656), + [anon_sym_bool] = ACTIONS(4656), + [anon_sym_int] = ACTIONS(4656), + [anon_sym_uint] = ACTIONS(4656), + [anon_sym_float] = ACTIONS(4656), + [anon_sym_range] = ACTIONS(4656), + [anon_sym_i8] = ACTIONS(4656), + [anon_sym_i16] = ACTIONS(4656), + [anon_sym_i32] = ACTIONS(4656), + [anon_sym_i64] = ACTIONS(4656), + [anon_sym_u8] = ACTIONS(4656), + [anon_sym_u16] = ACTIONS(4656), + [anon_sym_u32] = ACTIONS(4656), + [anon_sym_u64] = ACTIONS(4656), + [anon_sym_isize] = ACTIONS(4656), + [anon_sym_usize] = ACTIONS(4656), + [anon_sym_f32] = ACTIONS(4656), + [anon_sym_f64] = ACTIONS(4656), + [anon_sym_c_char] = ACTIONS(4656), + [anon_sym_c_schar] = ACTIONS(4656), + [anon_sym_c_uchar] = ACTIONS(4656), + [anon_sym_c_short] = ACTIONS(4656), + [anon_sym_c_ushort] = ACTIONS(4656), + [anon_sym_c_int] = ACTIONS(4656), + [anon_sym_c_uint] = ACTIONS(4656), + [anon_sym_c_long] = ACTIONS(4656), + [anon_sym_c_ulong] = ACTIONS(4656), + [anon_sym_c_longlong] = ACTIONS(4656), + [anon_sym_c_ulonglong] = ACTIONS(4656), + [anon_sym_c_float] = ACTIONS(4656), + [anon_sym_c_double] = ACTIONS(4656), + [anon_sym_c_longdouble] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4656), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4654), + [anon_sym_orelse] = ACTIONS(4656), + [anon_sym_or] = ACTIONS(4656), + [anon_sym_and] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_AMP] = ACTIONS(4654), + [anon_sym_xor] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4654), + [anon_sym_LT_LT_PIPE] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4654), + [anon_sym_SLASH] = ACTIONS(4654), + [anon_sym_catch] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4654), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4654), + }, + [STATE(7279)] = { + [sym_identifier] = ACTIONS(4660), + [anon_sym_func] = ACTIONS(4660), + [anon_sym_c_func] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4658), + [anon_sym_COMMA] = ACTIONS(4658), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4658), + [anon_sym_PIPE] = ACTIONS(4658), + [anon_sym_struct_type_BANG] = ACTIONS(4658), + [anon_sym_QMARK] = ACTIONS(4658), + [anon_sym_AT] = ACTIONS(4658), + [anon_sym_STAR] = ACTIONS(4658), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_void] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym_type] = ACTIONS(4660), + [anon_sym_anyopaque] = ACTIONS(4660), + [anon_sym_bool] = ACTIONS(4660), + [anon_sym_int] = ACTIONS(4660), + [anon_sym_uint] = ACTIONS(4660), + [anon_sym_float] = ACTIONS(4660), + [anon_sym_range] = ACTIONS(4660), + [anon_sym_i8] = ACTIONS(4660), + [anon_sym_i16] = ACTIONS(4660), + [anon_sym_i32] = ACTIONS(4660), + [anon_sym_i64] = ACTIONS(4660), + [anon_sym_u8] = ACTIONS(4660), + [anon_sym_u16] = ACTIONS(4660), + [anon_sym_u32] = ACTIONS(4660), + [anon_sym_u64] = ACTIONS(4660), + [anon_sym_isize] = ACTIONS(4660), + [anon_sym_usize] = ACTIONS(4660), + [anon_sym_f32] = ACTIONS(4660), + [anon_sym_f64] = ACTIONS(4660), + [anon_sym_c_char] = ACTIONS(4660), + [anon_sym_c_schar] = ACTIONS(4660), + [anon_sym_c_uchar] = ACTIONS(4660), + [anon_sym_c_short] = ACTIONS(4660), + [anon_sym_c_ushort] = ACTIONS(4660), + [anon_sym_c_int] = ACTIONS(4660), + [anon_sym_c_uint] = ACTIONS(4660), + [anon_sym_c_long] = ACTIONS(4660), + [anon_sym_c_ulong] = ACTIONS(4660), + [anon_sym_c_longlong] = ACTIONS(4660), + [anon_sym_c_ulonglong] = ACTIONS(4660), + [anon_sym_c_float] = ACTIONS(4660), + [anon_sym_c_double] = ACTIONS(4660), + [anon_sym_c_longdouble] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4658), + [anon_sym_orelse] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_EQ_EQ] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(4658), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4658), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4658), + [anon_sym_AMP] = ACTIONS(4658), + [anon_sym_xor] = ACTIONS(4660), + [anon_sym_LT_LT] = ACTIONS(4660), + [anon_sym_GT_GT] = ACTIONS(4658), + [anon_sym_LT_LT_PIPE] = ACTIONS(4658), + [anon_sym_PLUS] = ACTIONS(4658), + [anon_sym_SLASH] = ACTIONS(4658), + [anon_sym_catch] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_CARET] = ACTIONS(4658), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4658), + }, + [STATE(7280)] = { + [sym_identifier] = ACTIONS(4668), + [anon_sym_func] = ACTIONS(4668), + [anon_sym_c_func] = ACTIONS(4668), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_LPAREN] = ACTIONS(4666), + [anon_sym_COMMA] = ACTIONS(4666), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4666), + [anon_sym_PIPE] = ACTIONS(4666), + [anon_sym_struct_type_BANG] = ACTIONS(4666), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4666), + [anon_sym_STAR] = ACTIONS(4666), + [anon_sym_LBRACK] = ACTIONS(4666), + [anon_sym_void] = ACTIONS(4668), + [anon_sym_noreturn] = ACTIONS(4668), + [anon_sym_type] = ACTIONS(4668), + [anon_sym_anyopaque] = ACTIONS(4668), + [anon_sym_bool] = ACTIONS(4668), + [anon_sym_int] = ACTIONS(4668), + [anon_sym_uint] = ACTIONS(4668), + [anon_sym_float] = ACTIONS(4668), + [anon_sym_range] = ACTIONS(4668), + [anon_sym_i8] = ACTIONS(4668), + [anon_sym_i16] = ACTIONS(4668), + [anon_sym_i32] = ACTIONS(4668), + [anon_sym_i64] = ACTIONS(4668), + [anon_sym_u8] = ACTIONS(4668), + [anon_sym_u16] = ACTIONS(4668), + [anon_sym_u32] = ACTIONS(4668), + [anon_sym_u64] = ACTIONS(4668), + [anon_sym_isize] = ACTIONS(4668), + [anon_sym_usize] = ACTIONS(4668), + [anon_sym_f32] = ACTIONS(4668), + [anon_sym_f64] = ACTIONS(4668), + [anon_sym_c_char] = ACTIONS(4668), + [anon_sym_c_schar] = ACTIONS(4668), + [anon_sym_c_uchar] = ACTIONS(4668), + [anon_sym_c_short] = ACTIONS(4668), + [anon_sym_c_ushort] = ACTIONS(4668), + [anon_sym_c_int] = ACTIONS(4668), + [anon_sym_c_uint] = ACTIONS(4668), + [anon_sym_c_long] = ACTIONS(4668), + [anon_sym_c_ulong] = ACTIONS(4668), + [anon_sym_c_longlong] = ACTIONS(4668), + [anon_sym_c_ulonglong] = ACTIONS(4668), + [anon_sym_c_float] = ACTIONS(4668), + [anon_sym_c_double] = ACTIONS(4668), + [anon_sym_c_longdouble] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_DOT_DOT] = ACTIONS(4668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4666), + [anon_sym_orelse] = ACTIONS(4668), + [anon_sym_or] = ACTIONS(4668), + [anon_sym_and] = ACTIONS(4668), + [anon_sym_EQ_EQ] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(4666), + [anon_sym_LT] = ACTIONS(4668), + [anon_sym_LT_EQ] = ACTIONS(4666), + [anon_sym_GT] = ACTIONS(4668), + [anon_sym_GT_EQ] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4666), + [anon_sym_xor] = ACTIONS(4668), + [anon_sym_LT_LT] = ACTIONS(4668), + [anon_sym_GT_GT] = ACTIONS(4666), + [anon_sym_LT_LT_PIPE] = ACTIONS(4666), + [anon_sym_PLUS] = ACTIONS(4666), + [anon_sym_SLASH] = ACTIONS(4666), + [anon_sym_catch] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_CARET] = ACTIONS(4666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4666), + }, + [STATE(7281)] = { + [sym_identifier] = ACTIONS(4672), + [anon_sym_func] = ACTIONS(4672), + [anon_sym_c_func] = ACTIONS(4672), + [anon_sym_struct] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_PIPE] = ACTIONS(4670), + [anon_sym_struct_type_BANG] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_void] = ACTIONS(4672), + [anon_sym_noreturn] = ACTIONS(4672), + [anon_sym_type] = ACTIONS(4672), + [anon_sym_anyopaque] = ACTIONS(4672), + [anon_sym_bool] = ACTIONS(4672), + [anon_sym_int] = ACTIONS(4672), + [anon_sym_uint] = ACTIONS(4672), + [anon_sym_float] = ACTIONS(4672), + [anon_sym_range] = ACTIONS(4672), + [anon_sym_i8] = ACTIONS(4672), + [anon_sym_i16] = ACTIONS(4672), + [anon_sym_i32] = ACTIONS(4672), + [anon_sym_i64] = ACTIONS(4672), + [anon_sym_u8] = ACTIONS(4672), + [anon_sym_u16] = ACTIONS(4672), + [anon_sym_u32] = ACTIONS(4672), + [anon_sym_u64] = ACTIONS(4672), + [anon_sym_isize] = ACTIONS(4672), + [anon_sym_usize] = ACTIONS(4672), + [anon_sym_f32] = ACTIONS(4672), + [anon_sym_f64] = ACTIONS(4672), + [anon_sym_c_char] = ACTIONS(4672), + [anon_sym_c_schar] = ACTIONS(4672), + [anon_sym_c_uchar] = ACTIONS(4672), + [anon_sym_c_short] = ACTIONS(4672), + [anon_sym_c_ushort] = ACTIONS(4672), + [anon_sym_c_int] = ACTIONS(4672), + [anon_sym_c_uint] = ACTIONS(4672), + [anon_sym_c_long] = ACTIONS(4672), + [anon_sym_c_ulong] = ACTIONS(4672), + [anon_sym_c_longlong] = ACTIONS(4672), + [anon_sym_c_ulonglong] = ACTIONS(4672), + [anon_sym_c_float] = ACTIONS(4672), + [anon_sym_c_double] = ACTIONS(4672), + [anon_sym_c_longdouble] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4670), + [anon_sym_orelse] = ACTIONS(4672), + [anon_sym_or] = ACTIONS(4672), + [anon_sym_and] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_AMP] = ACTIONS(4670), + [anon_sym_xor] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4670), + [anon_sym_LT_LT_PIPE] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_catch] = ACTIONS(4672), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4670), + }, + [STATE(7282)] = { + [sym_identifier] = ACTIONS(6194), + [anon_sym_func] = ACTIONS(6194), + [anon_sym_c_func] = ACTIONS(6194), + [anon_sym_struct] = ACTIONS(6194), + [anon_sym_LPAREN] = ACTIONS(6192), + [anon_sym_COMMA] = ACTIONS(6192), + [anon_sym_RBRACE] = ACTIONS(6192), + [anon_sym_DASH] = ACTIONS(6192), + [anon_sym_PIPE] = ACTIONS(6192), + [anon_sym_struct_type_BANG] = ACTIONS(6192), + [anon_sym_QMARK] = ACTIONS(6192), + [anon_sym_AT] = ACTIONS(6192), + [anon_sym_STAR] = ACTIONS(6192), + [anon_sym_LBRACK] = ACTIONS(6192), + [anon_sym_void] = ACTIONS(6194), + [anon_sym_noreturn] = ACTIONS(6194), + [anon_sym_type] = ACTIONS(6194), + [anon_sym_anyopaque] = ACTIONS(6194), + [anon_sym_bool] = ACTIONS(6194), + [anon_sym_int] = ACTIONS(6194), + [anon_sym_uint] = ACTIONS(6194), + [anon_sym_float] = ACTIONS(6194), + [anon_sym_range] = ACTIONS(6194), + [anon_sym_i8] = ACTIONS(6194), + [anon_sym_i16] = ACTIONS(6194), + [anon_sym_i32] = ACTIONS(6194), + [anon_sym_i64] = ACTIONS(6194), + [anon_sym_u8] = ACTIONS(6194), + [anon_sym_u16] = ACTIONS(6194), + [anon_sym_u32] = ACTIONS(6194), + [anon_sym_u64] = ACTIONS(6194), + [anon_sym_isize] = ACTIONS(6194), + [anon_sym_usize] = ACTIONS(6194), + [anon_sym_f32] = ACTIONS(6194), + [anon_sym_f64] = ACTIONS(6194), + [anon_sym_c_char] = ACTIONS(6194), + [anon_sym_c_schar] = ACTIONS(6194), + [anon_sym_c_uchar] = ACTIONS(6194), + [anon_sym_c_short] = ACTIONS(6194), + [anon_sym_c_ushort] = ACTIONS(6194), + [anon_sym_c_int] = ACTIONS(6194), + [anon_sym_c_uint] = ACTIONS(6194), + [anon_sym_c_long] = ACTIONS(6194), + [anon_sym_c_ulong] = ACTIONS(6194), + [anon_sym_c_longlong] = ACTIONS(6194), + [anon_sym_c_ulonglong] = ACTIONS(6194), + [anon_sym_c_float] = ACTIONS(6194), + [anon_sym_c_double] = ACTIONS(6194), + [anon_sym_c_longdouble] = ACTIONS(6194), + [anon_sym_else] = ACTIONS(6194), + [anon_sym_DOT_DOT] = ACTIONS(6194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6192), + [anon_sym_orelse] = ACTIONS(6194), + [anon_sym_or] = ACTIONS(6194), + [anon_sym_and] = ACTIONS(6194), + [anon_sym_EQ_EQ] = ACTIONS(6192), + [anon_sym_BANG_EQ] = ACTIONS(6192), + [anon_sym_LT] = ACTIONS(6194), + [anon_sym_LT_EQ] = ACTIONS(6192), + [anon_sym_GT] = ACTIONS(6194), + [anon_sym_GT_EQ] = ACTIONS(6192), + [anon_sym_AMP] = ACTIONS(6192), + [anon_sym_xor] = ACTIONS(6194), + [anon_sym_LT_LT] = ACTIONS(6194), + [anon_sym_GT_GT] = ACTIONS(6192), + [anon_sym_LT_LT_PIPE] = ACTIONS(6192), + [anon_sym_PLUS] = ACTIONS(6192), + [anon_sym_SLASH] = ACTIONS(6192), + [anon_sym_catch] = ACTIONS(6194), + [anon_sym_DOT] = ACTIONS(6194), + [anon_sym_CARET] = ACTIONS(6192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6192), + }, + [STATE(7283)] = { + [sym_identifier] = ACTIONS(4678), + [anon_sym_func] = ACTIONS(4678), + [anon_sym_c_func] = ACTIONS(4678), + [anon_sym_struct] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_struct_type_BANG] = ACTIONS(4676), + [anon_sym_QMARK] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_void] = ACTIONS(4678), + [anon_sym_noreturn] = ACTIONS(4678), + [anon_sym_type] = ACTIONS(4678), + [anon_sym_anyopaque] = ACTIONS(4678), + [anon_sym_bool] = ACTIONS(4678), + [anon_sym_int] = ACTIONS(4678), + [anon_sym_uint] = ACTIONS(4678), + [anon_sym_float] = ACTIONS(4678), + [anon_sym_range] = ACTIONS(4678), + [anon_sym_i8] = ACTIONS(4678), + [anon_sym_i16] = ACTIONS(4678), + [anon_sym_i32] = ACTIONS(4678), + [anon_sym_i64] = ACTIONS(4678), + [anon_sym_u8] = ACTIONS(4678), + [anon_sym_u16] = ACTIONS(4678), + [anon_sym_u32] = ACTIONS(4678), + [anon_sym_u64] = ACTIONS(4678), + [anon_sym_isize] = ACTIONS(4678), + [anon_sym_usize] = ACTIONS(4678), + [anon_sym_f32] = ACTIONS(4678), + [anon_sym_f64] = ACTIONS(4678), + [anon_sym_c_char] = ACTIONS(4678), + [anon_sym_c_schar] = ACTIONS(4678), + [anon_sym_c_uchar] = ACTIONS(4678), + [anon_sym_c_short] = ACTIONS(4678), + [anon_sym_c_ushort] = ACTIONS(4678), + [anon_sym_c_int] = ACTIONS(4678), + [anon_sym_c_uint] = ACTIONS(4678), + [anon_sym_c_long] = ACTIONS(4678), + [anon_sym_c_ulong] = ACTIONS(4678), + [anon_sym_c_longlong] = ACTIONS(4678), + [anon_sym_c_ulonglong] = ACTIONS(4678), + [anon_sym_c_float] = ACTIONS(4678), + [anon_sym_c_double] = ACTIONS(4678), + [anon_sym_c_longdouble] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4676), + [anon_sym_orelse] = ACTIONS(4678), + [anon_sym_or] = ACTIONS(4678), + [anon_sym_and] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym_LT_LT_PIPE] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_catch] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_CARET] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4676), + }, + [STATE(7284)] = { + [sym_identifier] = ACTIONS(5772), + [anon_sym_func] = ACTIONS(5772), + [anon_sym_c_func] = ACTIONS(5772), + [anon_sym_struct] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_COMMA] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5770), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_struct_type_BANG] = ACTIONS(5770), + [anon_sym_QMARK] = ACTIONS(5770), + [anon_sym_AT] = ACTIONS(5770), + [anon_sym_STAR] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_void] = ACTIONS(5772), + [anon_sym_noreturn] = ACTIONS(5772), + [anon_sym_type] = ACTIONS(5772), + [anon_sym_anyopaque] = ACTIONS(5772), + [anon_sym_bool] = ACTIONS(5772), + [anon_sym_int] = ACTIONS(5772), + [anon_sym_uint] = ACTIONS(5772), + [anon_sym_float] = ACTIONS(5772), + [anon_sym_range] = ACTIONS(5772), + [anon_sym_i8] = ACTIONS(5772), + [anon_sym_i16] = ACTIONS(5772), + [anon_sym_i32] = ACTIONS(5772), + [anon_sym_i64] = ACTIONS(5772), + [anon_sym_u8] = ACTIONS(5772), + [anon_sym_u16] = ACTIONS(5772), + [anon_sym_u32] = ACTIONS(5772), + [anon_sym_u64] = ACTIONS(5772), + [anon_sym_isize] = ACTIONS(5772), + [anon_sym_usize] = ACTIONS(5772), + [anon_sym_f32] = ACTIONS(5772), + [anon_sym_f64] = ACTIONS(5772), + [anon_sym_c_char] = ACTIONS(5772), + [anon_sym_c_schar] = ACTIONS(5772), + [anon_sym_c_uchar] = ACTIONS(5772), + [anon_sym_c_short] = ACTIONS(5772), + [anon_sym_c_ushort] = ACTIONS(5772), + [anon_sym_c_int] = ACTIONS(5772), + [anon_sym_c_uint] = ACTIONS(5772), + [anon_sym_c_long] = ACTIONS(5772), + [anon_sym_c_ulong] = ACTIONS(5772), + [anon_sym_c_longlong] = ACTIONS(5772), + [anon_sym_c_ulonglong] = ACTIONS(5772), + [anon_sym_c_float] = ACTIONS(5772), + [anon_sym_c_double] = ACTIONS(5772), + [anon_sym_c_longdouble] = ACTIONS(5772), + [anon_sym_else] = ACTIONS(5772), + [anon_sym_DOT_DOT] = ACTIONS(5772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5770), + [anon_sym_orelse] = ACTIONS(5772), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5770), + [anon_sym_BANG_EQ] = ACTIONS(5770), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_EQ] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5770), + [anon_sym_AMP] = ACTIONS(5770), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5772), + [anon_sym_GT_GT] = ACTIONS(5770), + [anon_sym_LT_LT_PIPE] = ACTIONS(5770), + [anon_sym_PLUS] = ACTIONS(5770), + [anon_sym_SLASH] = ACTIONS(5770), + [anon_sym_catch] = ACTIONS(5772), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5770), + }, + [STATE(7285)] = { + [sym_identifier] = ACTIONS(4682), + [anon_sym_func] = ACTIONS(4682), + [anon_sym_c_func] = ACTIONS(4682), + [anon_sym_struct] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_COMMA] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_PIPE] = ACTIONS(4680), + [anon_sym_struct_type_BANG] = ACTIONS(4680), + [anon_sym_QMARK] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_void] = ACTIONS(4682), + [anon_sym_noreturn] = ACTIONS(4682), + [anon_sym_type] = ACTIONS(4682), + [anon_sym_anyopaque] = ACTIONS(4682), + [anon_sym_bool] = ACTIONS(4682), + [anon_sym_int] = ACTIONS(4682), + [anon_sym_uint] = ACTIONS(4682), + [anon_sym_float] = ACTIONS(4682), + [anon_sym_range] = ACTIONS(4682), + [anon_sym_i8] = ACTIONS(4682), + [anon_sym_i16] = ACTIONS(4682), + [anon_sym_i32] = ACTIONS(4682), + [anon_sym_i64] = ACTIONS(4682), + [anon_sym_u8] = ACTIONS(4682), + [anon_sym_u16] = ACTIONS(4682), + [anon_sym_u32] = ACTIONS(4682), + [anon_sym_u64] = ACTIONS(4682), + [anon_sym_isize] = ACTIONS(4682), + [anon_sym_usize] = ACTIONS(4682), + [anon_sym_f32] = ACTIONS(4682), + [anon_sym_f64] = ACTIONS(4682), + [anon_sym_c_char] = ACTIONS(4682), + [anon_sym_c_schar] = ACTIONS(4682), + [anon_sym_c_uchar] = ACTIONS(4682), + [anon_sym_c_short] = ACTIONS(4682), + [anon_sym_c_ushort] = ACTIONS(4682), + [anon_sym_c_int] = ACTIONS(4682), + [anon_sym_c_uint] = ACTIONS(4682), + [anon_sym_c_long] = ACTIONS(4682), + [anon_sym_c_ulong] = ACTIONS(4682), + [anon_sym_c_longlong] = ACTIONS(4682), + [anon_sym_c_ulonglong] = ACTIONS(4682), + [anon_sym_c_float] = ACTIONS(4682), + [anon_sym_c_double] = ACTIONS(4682), + [anon_sym_c_longdouble] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4680), + [anon_sym_orelse] = ACTIONS(4682), + [anon_sym_or] = ACTIONS(4682), + [anon_sym_and] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4680), + [anon_sym_AMP] = ACTIONS(4680), + [anon_sym_xor] = ACTIONS(4682), + [anon_sym_LT_LT] = ACTIONS(4682), + [anon_sym_GT_GT] = ACTIONS(4680), + [anon_sym_LT_LT_PIPE] = ACTIONS(4680), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_catch] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_CARET] = ACTIONS(4680), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4680), + }, + [STATE(7286)] = { + [sym_identifier] = ACTIONS(4686), + [anon_sym_func] = ACTIONS(4686), + [anon_sym_c_func] = ACTIONS(4686), + [anon_sym_struct] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_PIPE] = ACTIONS(4684), + [anon_sym_struct_type_BANG] = ACTIONS(4684), + [anon_sym_QMARK] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_void] = ACTIONS(4686), + [anon_sym_noreturn] = ACTIONS(4686), + [anon_sym_type] = ACTIONS(4686), + [anon_sym_anyopaque] = ACTIONS(4686), + [anon_sym_bool] = ACTIONS(4686), + [anon_sym_int] = ACTIONS(4686), + [anon_sym_uint] = ACTIONS(4686), + [anon_sym_float] = ACTIONS(4686), + [anon_sym_range] = ACTIONS(4686), + [anon_sym_i8] = ACTIONS(4686), + [anon_sym_i16] = ACTIONS(4686), + [anon_sym_i32] = ACTIONS(4686), + [anon_sym_i64] = ACTIONS(4686), + [anon_sym_u8] = ACTIONS(4686), + [anon_sym_u16] = ACTIONS(4686), + [anon_sym_u32] = ACTIONS(4686), + [anon_sym_u64] = ACTIONS(4686), + [anon_sym_isize] = ACTIONS(4686), + [anon_sym_usize] = ACTIONS(4686), + [anon_sym_f32] = ACTIONS(4686), + [anon_sym_f64] = ACTIONS(4686), + [anon_sym_c_char] = ACTIONS(4686), + [anon_sym_c_schar] = ACTIONS(4686), + [anon_sym_c_uchar] = ACTIONS(4686), + [anon_sym_c_short] = ACTIONS(4686), + [anon_sym_c_ushort] = ACTIONS(4686), + [anon_sym_c_int] = ACTIONS(4686), + [anon_sym_c_uint] = ACTIONS(4686), + [anon_sym_c_long] = ACTIONS(4686), + [anon_sym_c_ulong] = ACTIONS(4686), + [anon_sym_c_longlong] = ACTIONS(4686), + [anon_sym_c_ulonglong] = ACTIONS(4686), + [anon_sym_c_float] = ACTIONS(4686), + [anon_sym_c_double] = ACTIONS(4686), + [anon_sym_c_longdouble] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4684), + [anon_sym_orelse] = ACTIONS(4686), + [anon_sym_or] = ACTIONS(4686), + [anon_sym_and] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_AMP] = ACTIONS(4684), + [anon_sym_xor] = ACTIONS(4686), + [anon_sym_LT_LT] = ACTIONS(4686), + [anon_sym_GT_GT] = ACTIONS(4684), + [anon_sym_LT_LT_PIPE] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_catch] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_CARET] = ACTIONS(4684), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4684), + }, + [STATE(7287)] = { + [sym_identifier] = ACTIONS(4690), + [anon_sym_func] = ACTIONS(4690), + [anon_sym_c_func] = ACTIONS(4690), + [anon_sym_struct] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_struct_type_BANG] = ACTIONS(4688), + [anon_sym_QMARK] = ACTIONS(4688), + [anon_sym_AT] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_void] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym_type] = ACTIONS(4690), + [anon_sym_anyopaque] = ACTIONS(4690), + [anon_sym_bool] = ACTIONS(4690), + [anon_sym_int] = ACTIONS(4690), + [anon_sym_uint] = ACTIONS(4690), + [anon_sym_float] = ACTIONS(4690), + [anon_sym_range] = ACTIONS(4690), + [anon_sym_i8] = ACTIONS(4690), + [anon_sym_i16] = ACTIONS(4690), + [anon_sym_i32] = ACTIONS(4690), + [anon_sym_i64] = ACTIONS(4690), + [anon_sym_u8] = ACTIONS(4690), + [anon_sym_u16] = ACTIONS(4690), + [anon_sym_u32] = ACTIONS(4690), + [anon_sym_u64] = ACTIONS(4690), + [anon_sym_isize] = ACTIONS(4690), + [anon_sym_usize] = ACTIONS(4690), + [anon_sym_f32] = ACTIONS(4690), + [anon_sym_f64] = ACTIONS(4690), + [anon_sym_c_char] = ACTIONS(4690), + [anon_sym_c_schar] = ACTIONS(4690), + [anon_sym_c_uchar] = ACTIONS(4690), + [anon_sym_c_short] = ACTIONS(4690), + [anon_sym_c_ushort] = ACTIONS(4690), + [anon_sym_c_int] = ACTIONS(4690), + [anon_sym_c_uint] = ACTIONS(4690), + [anon_sym_c_long] = ACTIONS(4690), + [anon_sym_c_ulong] = ACTIONS(4690), + [anon_sym_c_longlong] = ACTIONS(4690), + [anon_sym_c_ulonglong] = ACTIONS(4690), + [anon_sym_c_float] = ACTIONS(4690), + [anon_sym_c_double] = ACTIONS(4690), + [anon_sym_c_longdouble] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4688), + [anon_sym_orelse] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4690), + [anon_sym_and] = ACTIONS(4690), + [anon_sym_EQ_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_xor] = ACTIONS(4690), + [anon_sym_LT_LT] = ACTIONS(4690), + [anon_sym_GT_GT] = ACTIONS(4688), + [anon_sym_LT_LT_PIPE] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_SLASH] = ACTIONS(4688), + [anon_sym_catch] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_CARET] = ACTIONS(4688), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4688), + }, + [STATE(7288)] = { + [sym_identifier] = ACTIONS(4694), + [anon_sym_func] = ACTIONS(4694), + [anon_sym_c_func] = ACTIONS(4694), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_struct_type_BANG] = ACTIONS(4692), + [anon_sym_QMARK] = ACTIONS(4692), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_void] = ACTIONS(4694), + [anon_sym_noreturn] = ACTIONS(4694), + [anon_sym_type] = ACTIONS(4694), + [anon_sym_anyopaque] = ACTIONS(4694), + [anon_sym_bool] = ACTIONS(4694), + [anon_sym_int] = ACTIONS(4694), + [anon_sym_uint] = ACTIONS(4694), + [anon_sym_float] = ACTIONS(4694), + [anon_sym_range] = ACTIONS(4694), + [anon_sym_i8] = ACTIONS(4694), + [anon_sym_i16] = ACTIONS(4694), + [anon_sym_i32] = ACTIONS(4694), + [anon_sym_i64] = ACTIONS(4694), + [anon_sym_u8] = ACTIONS(4694), + [anon_sym_u16] = ACTIONS(4694), + [anon_sym_u32] = ACTIONS(4694), + [anon_sym_u64] = ACTIONS(4694), + [anon_sym_isize] = ACTIONS(4694), + [anon_sym_usize] = ACTIONS(4694), + [anon_sym_f32] = ACTIONS(4694), + [anon_sym_f64] = ACTIONS(4694), + [anon_sym_c_char] = ACTIONS(4694), + [anon_sym_c_schar] = ACTIONS(4694), + [anon_sym_c_uchar] = ACTIONS(4694), + [anon_sym_c_short] = ACTIONS(4694), + [anon_sym_c_ushort] = ACTIONS(4694), + [anon_sym_c_int] = ACTIONS(4694), + [anon_sym_c_uint] = ACTIONS(4694), + [anon_sym_c_long] = ACTIONS(4694), + [anon_sym_c_ulong] = ACTIONS(4694), + [anon_sym_c_longlong] = ACTIONS(4694), + [anon_sym_c_ulonglong] = ACTIONS(4694), + [anon_sym_c_float] = ACTIONS(4694), + [anon_sym_c_double] = ACTIONS(4694), + [anon_sym_c_longdouble] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4692), + [anon_sym_orelse] = ACTIONS(4694), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [anon_sym_EQ_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_xor] = ACTIONS(4694), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4692), + [anon_sym_LT_LT_PIPE] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_catch] = ACTIONS(4694), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_CARET] = ACTIONS(4692), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4692), + }, + [STATE(7289)] = { + [sym_identifier] = ACTIONS(4698), + [anon_sym_func] = ACTIONS(4698), + [anon_sym_c_func] = ACTIONS(4698), + [anon_sym_struct] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4696), + [anon_sym_struct_type_BANG] = ACTIONS(4696), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_void] = ACTIONS(4698), + [anon_sym_noreturn] = ACTIONS(4698), + [anon_sym_type] = ACTIONS(4698), + [anon_sym_anyopaque] = ACTIONS(4698), + [anon_sym_bool] = ACTIONS(4698), + [anon_sym_int] = ACTIONS(4698), + [anon_sym_uint] = ACTIONS(4698), + [anon_sym_float] = ACTIONS(4698), + [anon_sym_range] = ACTIONS(4698), + [anon_sym_i8] = ACTIONS(4698), + [anon_sym_i16] = ACTIONS(4698), + [anon_sym_i32] = ACTIONS(4698), + [anon_sym_i64] = ACTIONS(4698), + [anon_sym_u8] = ACTIONS(4698), + [anon_sym_u16] = ACTIONS(4698), + [anon_sym_u32] = ACTIONS(4698), + [anon_sym_u64] = ACTIONS(4698), + [anon_sym_isize] = ACTIONS(4698), + [anon_sym_usize] = ACTIONS(4698), + [anon_sym_f32] = ACTIONS(4698), + [anon_sym_f64] = ACTIONS(4698), + [anon_sym_c_char] = ACTIONS(4698), + [anon_sym_c_schar] = ACTIONS(4698), + [anon_sym_c_uchar] = ACTIONS(4698), + [anon_sym_c_short] = ACTIONS(4698), + [anon_sym_c_ushort] = ACTIONS(4698), + [anon_sym_c_int] = ACTIONS(4698), + [anon_sym_c_uint] = ACTIONS(4698), + [anon_sym_c_long] = ACTIONS(4698), + [anon_sym_c_ulong] = ACTIONS(4698), + [anon_sym_c_longlong] = ACTIONS(4698), + [anon_sym_c_ulonglong] = ACTIONS(4698), + [anon_sym_c_float] = ACTIONS(4698), + [anon_sym_c_double] = ACTIONS(4698), + [anon_sym_c_longdouble] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4696), + [anon_sym_orelse] = ACTIONS(4698), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4696), + [anon_sym_xor] = ACTIONS(4698), + [anon_sym_LT_LT] = ACTIONS(4698), + [anon_sym_GT_GT] = ACTIONS(4696), + [anon_sym_LT_LT_PIPE] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_catch] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4696), + }, + [STATE(7290)] = { + [sym_identifier] = ACTIONS(4702), + [anon_sym_func] = ACTIONS(4702), + [anon_sym_c_func] = ACTIONS(4702), + [anon_sym_struct] = ACTIONS(4702), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(4700), + [anon_sym_struct_type_BANG] = ACTIONS(4700), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_STAR] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_void] = ACTIONS(4702), + [anon_sym_noreturn] = ACTIONS(4702), + [anon_sym_type] = ACTIONS(4702), + [anon_sym_anyopaque] = ACTIONS(4702), + [anon_sym_bool] = ACTIONS(4702), + [anon_sym_int] = ACTIONS(4702), + [anon_sym_uint] = ACTIONS(4702), + [anon_sym_float] = ACTIONS(4702), + [anon_sym_range] = ACTIONS(4702), + [anon_sym_i8] = ACTIONS(4702), + [anon_sym_i16] = ACTIONS(4702), + [anon_sym_i32] = ACTIONS(4702), + [anon_sym_i64] = ACTIONS(4702), + [anon_sym_u8] = ACTIONS(4702), + [anon_sym_u16] = ACTIONS(4702), + [anon_sym_u32] = ACTIONS(4702), + [anon_sym_u64] = ACTIONS(4702), + [anon_sym_isize] = ACTIONS(4702), + [anon_sym_usize] = ACTIONS(4702), + [anon_sym_f32] = ACTIONS(4702), + [anon_sym_f64] = ACTIONS(4702), + [anon_sym_c_char] = ACTIONS(4702), + [anon_sym_c_schar] = ACTIONS(4702), + [anon_sym_c_uchar] = ACTIONS(4702), + [anon_sym_c_short] = ACTIONS(4702), + [anon_sym_c_ushort] = ACTIONS(4702), + [anon_sym_c_int] = ACTIONS(4702), + [anon_sym_c_uint] = ACTIONS(4702), + [anon_sym_c_long] = ACTIONS(4702), + [anon_sym_c_ulong] = ACTIONS(4702), + [anon_sym_c_longlong] = ACTIONS(4702), + [anon_sym_c_ulonglong] = ACTIONS(4702), + [anon_sym_c_float] = ACTIONS(4702), + [anon_sym_c_double] = ACTIONS(4702), + [anon_sym_c_longdouble] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4700), + [anon_sym_orelse] = ACTIONS(4702), + [anon_sym_or] = ACTIONS(4702), + [anon_sym_and] = ACTIONS(4702), + [anon_sym_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(4700), + [anon_sym_xor] = ACTIONS(4702), + [anon_sym_LT_LT] = ACTIONS(4702), + [anon_sym_GT_GT] = ACTIONS(4700), + [anon_sym_LT_LT_PIPE] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4700), + [anon_sym_SLASH] = ACTIONS(4700), + [anon_sym_catch] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_CARET] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4700), + }, + [STATE(7291)] = { + [sym_identifier] = ACTIONS(4706), + [anon_sym_func] = ACTIONS(4706), + [anon_sym_c_func] = ACTIONS(4706), + [anon_sym_struct] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_struct_type_BANG] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4704), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_void] = ACTIONS(4706), + [anon_sym_noreturn] = ACTIONS(4706), + [anon_sym_type] = ACTIONS(4706), + [anon_sym_anyopaque] = ACTIONS(4706), + [anon_sym_bool] = ACTIONS(4706), + [anon_sym_int] = ACTIONS(4706), + [anon_sym_uint] = ACTIONS(4706), + [anon_sym_float] = ACTIONS(4706), + [anon_sym_range] = ACTIONS(4706), + [anon_sym_i8] = ACTIONS(4706), + [anon_sym_i16] = ACTIONS(4706), + [anon_sym_i32] = ACTIONS(4706), + [anon_sym_i64] = ACTIONS(4706), + [anon_sym_u8] = ACTIONS(4706), + [anon_sym_u16] = ACTIONS(4706), + [anon_sym_u32] = ACTIONS(4706), + [anon_sym_u64] = ACTIONS(4706), + [anon_sym_isize] = ACTIONS(4706), + [anon_sym_usize] = ACTIONS(4706), + [anon_sym_f32] = ACTIONS(4706), + [anon_sym_f64] = ACTIONS(4706), + [anon_sym_c_char] = ACTIONS(4706), + [anon_sym_c_schar] = ACTIONS(4706), + [anon_sym_c_uchar] = ACTIONS(4706), + [anon_sym_c_short] = ACTIONS(4706), + [anon_sym_c_ushort] = ACTIONS(4706), + [anon_sym_c_int] = ACTIONS(4706), + [anon_sym_c_uint] = ACTIONS(4706), + [anon_sym_c_long] = ACTIONS(4706), + [anon_sym_c_ulong] = ACTIONS(4706), + [anon_sym_c_longlong] = ACTIONS(4706), + [anon_sym_c_ulonglong] = ACTIONS(4706), + [anon_sym_c_float] = ACTIONS(4706), + [anon_sym_c_double] = ACTIONS(4706), + [anon_sym_c_longdouble] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4704), + [anon_sym_orelse] = ACTIONS(4706), + [anon_sym_or] = ACTIONS(4706), + [anon_sym_and] = ACTIONS(4706), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4704), + [anon_sym_xor] = ACTIONS(4706), + [anon_sym_LT_LT] = ACTIONS(4706), + [anon_sym_GT_GT] = ACTIONS(4704), + [anon_sym_LT_LT_PIPE] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_catch] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_CARET] = ACTIONS(4704), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4704), + }, + [STATE(7292)] = { + [sym_identifier] = ACTIONS(4710), + [anon_sym_func] = ACTIONS(4710), + [anon_sym_c_func] = ACTIONS(4710), + [anon_sym_struct] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4708), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_struct_type_BANG] = ACTIONS(4708), + [anon_sym_QMARK] = ACTIONS(4708), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_void] = ACTIONS(4710), + [anon_sym_noreturn] = ACTIONS(4710), + [anon_sym_type] = ACTIONS(4710), + [anon_sym_anyopaque] = ACTIONS(4710), + [anon_sym_bool] = ACTIONS(4710), + [anon_sym_int] = ACTIONS(4710), + [anon_sym_uint] = ACTIONS(4710), + [anon_sym_float] = ACTIONS(4710), + [anon_sym_range] = ACTIONS(4710), + [anon_sym_i8] = ACTIONS(4710), + [anon_sym_i16] = ACTIONS(4710), + [anon_sym_i32] = ACTIONS(4710), + [anon_sym_i64] = ACTIONS(4710), + [anon_sym_u8] = ACTIONS(4710), + [anon_sym_u16] = ACTIONS(4710), + [anon_sym_u32] = ACTIONS(4710), + [anon_sym_u64] = ACTIONS(4710), + [anon_sym_isize] = ACTIONS(4710), + [anon_sym_usize] = ACTIONS(4710), + [anon_sym_f32] = ACTIONS(4710), + [anon_sym_f64] = ACTIONS(4710), + [anon_sym_c_char] = ACTIONS(4710), + [anon_sym_c_schar] = ACTIONS(4710), + [anon_sym_c_uchar] = ACTIONS(4710), + [anon_sym_c_short] = ACTIONS(4710), + [anon_sym_c_ushort] = ACTIONS(4710), + [anon_sym_c_int] = ACTIONS(4710), + [anon_sym_c_uint] = ACTIONS(4710), + [anon_sym_c_long] = ACTIONS(4710), + [anon_sym_c_ulong] = ACTIONS(4710), + [anon_sym_c_longlong] = ACTIONS(4710), + [anon_sym_c_ulonglong] = ACTIONS(4710), + [anon_sym_c_float] = ACTIONS(4710), + [anon_sym_c_double] = ACTIONS(4710), + [anon_sym_c_longdouble] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4708), + [anon_sym_orelse] = ACTIONS(4710), + [anon_sym_or] = ACTIONS(4710), + [anon_sym_and] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [anon_sym_xor] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4710), + [anon_sym_GT_GT] = ACTIONS(4708), + [anon_sym_LT_LT_PIPE] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4708), + [anon_sym_SLASH] = ACTIONS(4708), + [anon_sym_catch] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_CARET] = ACTIONS(4708), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4708), + }, + [STATE(7293)] = { + [sym_identifier] = ACTIONS(4714), + [anon_sym_func] = ACTIONS(4714), + [anon_sym_c_func] = ACTIONS(4714), + [anon_sym_struct] = ACTIONS(4714), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_struct_type_BANG] = ACTIONS(4712), + [anon_sym_QMARK] = ACTIONS(4712), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_STAR] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_void] = ACTIONS(4714), + [anon_sym_noreturn] = ACTIONS(4714), + [anon_sym_type] = ACTIONS(4714), + [anon_sym_anyopaque] = ACTIONS(4714), + [anon_sym_bool] = ACTIONS(4714), + [anon_sym_int] = ACTIONS(4714), + [anon_sym_uint] = ACTIONS(4714), + [anon_sym_float] = ACTIONS(4714), + [anon_sym_range] = ACTIONS(4714), + [anon_sym_i8] = ACTIONS(4714), + [anon_sym_i16] = ACTIONS(4714), + [anon_sym_i32] = ACTIONS(4714), + [anon_sym_i64] = ACTIONS(4714), + [anon_sym_u8] = ACTIONS(4714), + [anon_sym_u16] = ACTIONS(4714), + [anon_sym_u32] = ACTIONS(4714), + [anon_sym_u64] = ACTIONS(4714), + [anon_sym_isize] = ACTIONS(4714), + [anon_sym_usize] = ACTIONS(4714), + [anon_sym_f32] = ACTIONS(4714), + [anon_sym_f64] = ACTIONS(4714), + [anon_sym_c_char] = ACTIONS(4714), + [anon_sym_c_schar] = ACTIONS(4714), + [anon_sym_c_uchar] = ACTIONS(4714), + [anon_sym_c_short] = ACTIONS(4714), + [anon_sym_c_ushort] = ACTIONS(4714), + [anon_sym_c_int] = ACTIONS(4714), + [anon_sym_c_uint] = ACTIONS(4714), + [anon_sym_c_long] = ACTIONS(4714), + [anon_sym_c_ulong] = ACTIONS(4714), + [anon_sym_c_longlong] = ACTIONS(4714), + [anon_sym_c_ulonglong] = ACTIONS(4714), + [anon_sym_c_float] = ACTIONS(4714), + [anon_sym_c_double] = ACTIONS(4714), + [anon_sym_c_longdouble] = ACTIONS(4714), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4712), + [anon_sym_orelse] = ACTIONS(4714), + [anon_sym_or] = ACTIONS(4714), + [anon_sym_and] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_xor] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4714), + [anon_sym_GT_GT] = ACTIONS(4712), + [anon_sym_LT_LT_PIPE] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_SLASH] = ACTIONS(4712), + [anon_sym_catch] = ACTIONS(4714), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_CARET] = ACTIONS(4712), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4712), + }, + [STATE(7294)] = { + [sym_identifier] = ACTIONS(4718), + [anon_sym_func] = ACTIONS(4718), + [anon_sym_c_func] = ACTIONS(4718), + [anon_sym_struct] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_struct_type_BANG] = ACTIONS(4716), + [anon_sym_QMARK] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_void] = ACTIONS(4718), + [anon_sym_noreturn] = ACTIONS(4718), + [anon_sym_type] = ACTIONS(4718), + [anon_sym_anyopaque] = ACTIONS(4718), + [anon_sym_bool] = ACTIONS(4718), + [anon_sym_int] = ACTIONS(4718), + [anon_sym_uint] = ACTIONS(4718), + [anon_sym_float] = ACTIONS(4718), + [anon_sym_range] = ACTIONS(4718), + [anon_sym_i8] = ACTIONS(4718), + [anon_sym_i16] = ACTIONS(4718), + [anon_sym_i32] = ACTIONS(4718), + [anon_sym_i64] = ACTIONS(4718), + [anon_sym_u8] = ACTIONS(4718), + [anon_sym_u16] = ACTIONS(4718), + [anon_sym_u32] = ACTIONS(4718), + [anon_sym_u64] = ACTIONS(4718), + [anon_sym_isize] = ACTIONS(4718), + [anon_sym_usize] = ACTIONS(4718), + [anon_sym_f32] = ACTIONS(4718), + [anon_sym_f64] = ACTIONS(4718), + [anon_sym_c_char] = ACTIONS(4718), + [anon_sym_c_schar] = ACTIONS(4718), + [anon_sym_c_uchar] = ACTIONS(4718), + [anon_sym_c_short] = ACTIONS(4718), + [anon_sym_c_ushort] = ACTIONS(4718), + [anon_sym_c_int] = ACTIONS(4718), + [anon_sym_c_uint] = ACTIONS(4718), + [anon_sym_c_long] = ACTIONS(4718), + [anon_sym_c_ulong] = ACTIONS(4718), + [anon_sym_c_longlong] = ACTIONS(4718), + [anon_sym_c_ulonglong] = ACTIONS(4718), + [anon_sym_c_float] = ACTIONS(4718), + [anon_sym_c_double] = ACTIONS(4718), + [anon_sym_c_longdouble] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4716), + [anon_sym_orelse] = ACTIONS(4718), + [anon_sym_or] = ACTIONS(4718), + [anon_sym_and] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_AMP] = ACTIONS(4716), + [anon_sym_xor] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4718), + [anon_sym_GT_GT] = ACTIONS(4716), + [anon_sym_LT_LT_PIPE] = ACTIONS(4716), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_SLASH] = ACTIONS(4716), + [anon_sym_catch] = ACTIONS(4718), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_CARET] = ACTIONS(4716), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4716), + }, + [STATE(7295)] = { + [sym_identifier] = ACTIONS(4722), + [anon_sym_func] = ACTIONS(4722), + [anon_sym_c_func] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_struct_type_BANG] = ACTIONS(4720), + [anon_sym_QMARK] = ACTIONS(4720), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_void] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_type] = ACTIONS(4722), + [anon_sym_anyopaque] = ACTIONS(4722), + [anon_sym_bool] = ACTIONS(4722), + [anon_sym_int] = ACTIONS(4722), + [anon_sym_uint] = ACTIONS(4722), + [anon_sym_float] = ACTIONS(4722), + [anon_sym_range] = ACTIONS(4722), + [anon_sym_i8] = ACTIONS(4722), + [anon_sym_i16] = ACTIONS(4722), + [anon_sym_i32] = ACTIONS(4722), + [anon_sym_i64] = ACTIONS(4722), + [anon_sym_u8] = ACTIONS(4722), + [anon_sym_u16] = ACTIONS(4722), + [anon_sym_u32] = ACTIONS(4722), + [anon_sym_u64] = ACTIONS(4722), + [anon_sym_isize] = ACTIONS(4722), + [anon_sym_usize] = ACTIONS(4722), + [anon_sym_f32] = ACTIONS(4722), + [anon_sym_f64] = ACTIONS(4722), + [anon_sym_c_char] = ACTIONS(4722), + [anon_sym_c_schar] = ACTIONS(4722), + [anon_sym_c_uchar] = ACTIONS(4722), + [anon_sym_c_short] = ACTIONS(4722), + [anon_sym_c_ushort] = ACTIONS(4722), + [anon_sym_c_int] = ACTIONS(4722), + [anon_sym_c_uint] = ACTIONS(4722), + [anon_sym_c_long] = ACTIONS(4722), + [anon_sym_c_ulong] = ACTIONS(4722), + [anon_sym_c_longlong] = ACTIONS(4722), + [anon_sym_c_ulonglong] = ACTIONS(4722), + [anon_sym_c_float] = ACTIONS(4722), + [anon_sym_c_double] = ACTIONS(4722), + [anon_sym_c_longdouble] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4720), + [anon_sym_orelse] = ACTIONS(4722), + [anon_sym_or] = ACTIONS(4722), + [anon_sym_and] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_xor] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4720), + [anon_sym_LT_LT_PIPE] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4720), + [anon_sym_catch] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_CARET] = ACTIONS(4720), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4720), + }, + [STATE(7296)] = { + [sym_identifier] = ACTIONS(4730), + [anon_sym_func] = ACTIONS(4730), + [anon_sym_c_func] = ACTIONS(4730), + [anon_sym_struct] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_struct_type_BANG] = ACTIONS(4728), + [anon_sym_QMARK] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_void] = ACTIONS(4730), + [anon_sym_noreturn] = ACTIONS(4730), + [anon_sym_type] = ACTIONS(4730), + [anon_sym_anyopaque] = ACTIONS(4730), + [anon_sym_bool] = ACTIONS(4730), + [anon_sym_int] = ACTIONS(4730), + [anon_sym_uint] = ACTIONS(4730), + [anon_sym_float] = ACTIONS(4730), + [anon_sym_range] = ACTIONS(4730), + [anon_sym_i8] = ACTIONS(4730), + [anon_sym_i16] = ACTIONS(4730), + [anon_sym_i32] = ACTIONS(4730), + [anon_sym_i64] = ACTIONS(4730), + [anon_sym_u8] = ACTIONS(4730), + [anon_sym_u16] = ACTIONS(4730), + [anon_sym_u32] = ACTIONS(4730), + [anon_sym_u64] = ACTIONS(4730), + [anon_sym_isize] = ACTIONS(4730), + [anon_sym_usize] = ACTIONS(4730), + [anon_sym_f32] = ACTIONS(4730), + [anon_sym_f64] = ACTIONS(4730), + [anon_sym_c_char] = ACTIONS(4730), + [anon_sym_c_schar] = ACTIONS(4730), + [anon_sym_c_uchar] = ACTIONS(4730), + [anon_sym_c_short] = ACTIONS(4730), + [anon_sym_c_ushort] = ACTIONS(4730), + [anon_sym_c_int] = ACTIONS(4730), + [anon_sym_c_uint] = ACTIONS(4730), + [anon_sym_c_long] = ACTIONS(4730), + [anon_sym_c_ulong] = ACTIONS(4730), + [anon_sym_c_longlong] = ACTIONS(4730), + [anon_sym_c_ulonglong] = ACTIONS(4730), + [anon_sym_c_float] = ACTIONS(4730), + [anon_sym_c_double] = ACTIONS(4730), + [anon_sym_c_longdouble] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4728), + [anon_sym_orelse] = ACTIONS(4730), + [anon_sym_or] = ACTIONS(4730), + [anon_sym_and] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4728), + [anon_sym_xor] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_LT_LT_PIPE] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_catch] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_CARET] = ACTIONS(4728), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4728), + }, + [STATE(7297)] = { + [sym_identifier] = ACTIONS(4744), + [anon_sym_func] = ACTIONS(4744), + [anon_sym_c_func] = ACTIONS(4744), + [anon_sym_struct] = ACTIONS(4744), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_struct_type_BANG] = ACTIONS(4742), + [anon_sym_QMARK] = ACTIONS(4742), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_STAR] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_void] = ACTIONS(4744), + [anon_sym_noreturn] = ACTIONS(4744), + [anon_sym_type] = ACTIONS(4744), + [anon_sym_anyopaque] = ACTIONS(4744), + [anon_sym_bool] = ACTIONS(4744), + [anon_sym_int] = ACTIONS(4744), + [anon_sym_uint] = ACTIONS(4744), + [anon_sym_float] = ACTIONS(4744), + [anon_sym_range] = ACTIONS(4744), + [anon_sym_i8] = ACTIONS(4744), + [anon_sym_i16] = ACTIONS(4744), + [anon_sym_i32] = ACTIONS(4744), + [anon_sym_i64] = ACTIONS(4744), + [anon_sym_u8] = ACTIONS(4744), + [anon_sym_u16] = ACTIONS(4744), + [anon_sym_u32] = ACTIONS(4744), + [anon_sym_u64] = ACTIONS(4744), + [anon_sym_isize] = ACTIONS(4744), + [anon_sym_usize] = ACTIONS(4744), + [anon_sym_f32] = ACTIONS(4744), + [anon_sym_f64] = ACTIONS(4744), + [anon_sym_c_char] = ACTIONS(4744), + [anon_sym_c_schar] = ACTIONS(4744), + [anon_sym_c_uchar] = ACTIONS(4744), + [anon_sym_c_short] = ACTIONS(4744), + [anon_sym_c_ushort] = ACTIONS(4744), + [anon_sym_c_int] = ACTIONS(4744), + [anon_sym_c_uint] = ACTIONS(4744), + [anon_sym_c_long] = ACTIONS(4744), + [anon_sym_c_ulong] = ACTIONS(4744), + [anon_sym_c_longlong] = ACTIONS(4744), + [anon_sym_c_ulonglong] = ACTIONS(4744), + [anon_sym_c_float] = ACTIONS(4744), + [anon_sym_c_double] = ACTIONS(4744), + [anon_sym_c_longdouble] = ACTIONS(4744), + [anon_sym_else] = ACTIONS(4744), + [anon_sym_DOT_DOT] = ACTIONS(4744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4742), + [anon_sym_orelse] = ACTIONS(4744), + [anon_sym_or] = ACTIONS(4744), + [anon_sym_and] = ACTIONS(4744), + [anon_sym_EQ_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4744), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4744), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_AMP] = ACTIONS(4742), + [anon_sym_xor] = ACTIONS(4744), + [anon_sym_LT_LT] = ACTIONS(4744), + [anon_sym_GT_GT] = ACTIONS(4742), + [anon_sym_LT_LT_PIPE] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4742), + [anon_sym_SLASH] = ACTIONS(4742), + [anon_sym_catch] = ACTIONS(4744), + [anon_sym_DOT] = ACTIONS(4744), + [anon_sym_CARET] = ACTIONS(4742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4742), + }, + [STATE(7298)] = { + [sym_identifier] = ACTIONS(4748), + [anon_sym_func] = ACTIONS(4748), + [anon_sym_c_func] = ACTIONS(4748), + [anon_sym_struct] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_COMMA] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_PIPE] = ACTIONS(4746), + [anon_sym_struct_type_BANG] = ACTIONS(4746), + [anon_sym_QMARK] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_void] = ACTIONS(4748), + [anon_sym_noreturn] = ACTIONS(4748), + [anon_sym_type] = ACTIONS(4748), + [anon_sym_anyopaque] = ACTIONS(4748), + [anon_sym_bool] = ACTIONS(4748), + [anon_sym_int] = ACTIONS(4748), + [anon_sym_uint] = ACTIONS(4748), + [anon_sym_float] = ACTIONS(4748), + [anon_sym_range] = ACTIONS(4748), + [anon_sym_i8] = ACTIONS(4748), + [anon_sym_i16] = ACTIONS(4748), + [anon_sym_i32] = ACTIONS(4748), + [anon_sym_i64] = ACTIONS(4748), + [anon_sym_u8] = ACTIONS(4748), + [anon_sym_u16] = ACTIONS(4748), + [anon_sym_u32] = ACTIONS(4748), + [anon_sym_u64] = ACTIONS(4748), + [anon_sym_isize] = ACTIONS(4748), + [anon_sym_usize] = ACTIONS(4748), + [anon_sym_f32] = ACTIONS(4748), + [anon_sym_f64] = ACTIONS(4748), + [anon_sym_c_char] = ACTIONS(4748), + [anon_sym_c_schar] = ACTIONS(4748), + [anon_sym_c_uchar] = ACTIONS(4748), + [anon_sym_c_short] = ACTIONS(4748), + [anon_sym_c_ushort] = ACTIONS(4748), + [anon_sym_c_int] = ACTIONS(4748), + [anon_sym_c_uint] = ACTIONS(4748), + [anon_sym_c_long] = ACTIONS(4748), + [anon_sym_c_ulong] = ACTIONS(4748), + [anon_sym_c_longlong] = ACTIONS(4748), + [anon_sym_c_ulonglong] = ACTIONS(4748), + [anon_sym_c_float] = ACTIONS(4748), + [anon_sym_c_double] = ACTIONS(4748), + [anon_sym_c_longdouble] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4746), + [anon_sym_orelse] = ACTIONS(4748), + [anon_sym_or] = ACTIONS(4748), + [anon_sym_and] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_LT] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4746), + [anon_sym_AMP] = ACTIONS(4746), + [anon_sym_xor] = ACTIONS(4748), + [anon_sym_LT_LT] = ACTIONS(4748), + [anon_sym_GT_GT] = ACTIONS(4746), + [anon_sym_LT_LT_PIPE] = ACTIONS(4746), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_catch] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_CARET] = ACTIONS(4746), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4746), + }, + [STATE(7299)] = { + [sym_identifier] = ACTIONS(4752), + [anon_sym_func] = ACTIONS(4752), + [anon_sym_c_func] = ACTIONS(4752), + [anon_sym_struct] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4750), + [anon_sym_COMMA] = ACTIONS(4750), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_PIPE] = ACTIONS(4750), + [anon_sym_struct_type_BANG] = ACTIONS(4750), + [anon_sym_QMARK] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4750), + [anon_sym_void] = ACTIONS(4752), + [anon_sym_noreturn] = ACTIONS(4752), + [anon_sym_type] = ACTIONS(4752), + [anon_sym_anyopaque] = ACTIONS(4752), + [anon_sym_bool] = ACTIONS(4752), + [anon_sym_int] = ACTIONS(4752), + [anon_sym_uint] = ACTIONS(4752), + [anon_sym_float] = ACTIONS(4752), + [anon_sym_range] = ACTIONS(4752), + [anon_sym_i8] = ACTIONS(4752), + [anon_sym_i16] = ACTIONS(4752), + [anon_sym_i32] = ACTIONS(4752), + [anon_sym_i64] = ACTIONS(4752), + [anon_sym_u8] = ACTIONS(4752), + [anon_sym_u16] = ACTIONS(4752), + [anon_sym_u32] = ACTIONS(4752), + [anon_sym_u64] = ACTIONS(4752), + [anon_sym_isize] = ACTIONS(4752), + [anon_sym_usize] = ACTIONS(4752), + [anon_sym_f32] = ACTIONS(4752), + [anon_sym_f64] = ACTIONS(4752), + [anon_sym_c_char] = ACTIONS(4752), + [anon_sym_c_schar] = ACTIONS(4752), + [anon_sym_c_uchar] = ACTIONS(4752), + [anon_sym_c_short] = ACTIONS(4752), + [anon_sym_c_ushort] = ACTIONS(4752), + [anon_sym_c_int] = ACTIONS(4752), + [anon_sym_c_uint] = ACTIONS(4752), + [anon_sym_c_long] = ACTIONS(4752), + [anon_sym_c_ulong] = ACTIONS(4752), + [anon_sym_c_longlong] = ACTIONS(4752), + [anon_sym_c_ulonglong] = ACTIONS(4752), + [anon_sym_c_float] = ACTIONS(4752), + [anon_sym_c_double] = ACTIONS(4752), + [anon_sym_c_longdouble] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4752), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4750), + [anon_sym_orelse] = ACTIONS(4752), + [anon_sym_or] = ACTIONS(4752), + [anon_sym_and] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_LT] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4750), + [anon_sym_AMP] = ACTIONS(4750), + [anon_sym_xor] = ACTIONS(4752), + [anon_sym_LT_LT] = ACTIONS(4752), + [anon_sym_GT_GT] = ACTIONS(4750), + [anon_sym_LT_LT_PIPE] = ACTIONS(4750), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_catch] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4752), + [anon_sym_CARET] = ACTIONS(4750), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4750), + }, + [STATE(7300)] = { + [sym_identifier] = ACTIONS(4756), + [anon_sym_func] = ACTIONS(4756), + [anon_sym_c_func] = ACTIONS(4756), + [anon_sym_struct] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4754), + [anon_sym_COMMA] = ACTIONS(4754), + [anon_sym_RBRACE] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4754), + [anon_sym_struct_type_BANG] = ACTIONS(4754), + [anon_sym_QMARK] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4754), + [anon_sym_void] = ACTIONS(4756), + [anon_sym_noreturn] = ACTIONS(4756), + [anon_sym_type] = ACTIONS(4756), + [anon_sym_anyopaque] = ACTIONS(4756), + [anon_sym_bool] = ACTIONS(4756), + [anon_sym_int] = ACTIONS(4756), + [anon_sym_uint] = ACTIONS(4756), + [anon_sym_float] = ACTIONS(4756), + [anon_sym_range] = ACTIONS(4756), + [anon_sym_i8] = ACTIONS(4756), + [anon_sym_i16] = ACTIONS(4756), + [anon_sym_i32] = ACTIONS(4756), + [anon_sym_i64] = ACTIONS(4756), + [anon_sym_u8] = ACTIONS(4756), + [anon_sym_u16] = ACTIONS(4756), + [anon_sym_u32] = ACTIONS(4756), + [anon_sym_u64] = ACTIONS(4756), + [anon_sym_isize] = ACTIONS(4756), + [anon_sym_usize] = ACTIONS(4756), + [anon_sym_f32] = ACTIONS(4756), + [anon_sym_f64] = ACTIONS(4756), + [anon_sym_c_char] = ACTIONS(4756), + [anon_sym_c_schar] = ACTIONS(4756), + [anon_sym_c_uchar] = ACTIONS(4756), + [anon_sym_c_short] = ACTIONS(4756), + [anon_sym_c_ushort] = ACTIONS(4756), + [anon_sym_c_int] = ACTIONS(4756), + [anon_sym_c_uint] = ACTIONS(4756), + [anon_sym_c_long] = ACTIONS(4756), + [anon_sym_c_ulong] = ACTIONS(4756), + [anon_sym_c_longlong] = ACTIONS(4756), + [anon_sym_c_ulonglong] = ACTIONS(4756), + [anon_sym_c_float] = ACTIONS(4756), + [anon_sym_c_double] = ACTIONS(4756), + [anon_sym_c_longdouble] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4756), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4754), + [anon_sym_orelse] = ACTIONS(4756), + [anon_sym_or] = ACTIONS(4756), + [anon_sym_and] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4754), + [anon_sym_xor] = ACTIONS(4756), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_LT_LT_PIPE] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_catch] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4756), + [anon_sym_CARET] = ACTIONS(4754), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4754), + }, + [STATE(7301)] = { + [sym_identifier] = ACTIONS(4760), + [anon_sym_func] = ACTIONS(4760), + [anon_sym_c_func] = ACTIONS(4760), + [anon_sym_struct] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4758), + [anon_sym_COMMA] = ACTIONS(4758), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_struct_type_BANG] = ACTIONS(4758), + [anon_sym_QMARK] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_void] = ACTIONS(4760), + [anon_sym_noreturn] = ACTIONS(4760), + [anon_sym_type] = ACTIONS(4760), + [anon_sym_anyopaque] = ACTIONS(4760), + [anon_sym_bool] = ACTIONS(4760), + [anon_sym_int] = ACTIONS(4760), + [anon_sym_uint] = ACTIONS(4760), + [anon_sym_float] = ACTIONS(4760), + [anon_sym_range] = ACTIONS(4760), + [anon_sym_i8] = ACTIONS(4760), + [anon_sym_i16] = ACTIONS(4760), + [anon_sym_i32] = ACTIONS(4760), + [anon_sym_i64] = ACTIONS(4760), + [anon_sym_u8] = ACTIONS(4760), + [anon_sym_u16] = ACTIONS(4760), + [anon_sym_u32] = ACTIONS(4760), + [anon_sym_u64] = ACTIONS(4760), + [anon_sym_isize] = ACTIONS(4760), + [anon_sym_usize] = ACTIONS(4760), + [anon_sym_f32] = ACTIONS(4760), + [anon_sym_f64] = ACTIONS(4760), + [anon_sym_c_char] = ACTIONS(4760), + [anon_sym_c_schar] = ACTIONS(4760), + [anon_sym_c_uchar] = ACTIONS(4760), + [anon_sym_c_short] = ACTIONS(4760), + [anon_sym_c_ushort] = ACTIONS(4760), + [anon_sym_c_int] = ACTIONS(4760), + [anon_sym_c_uint] = ACTIONS(4760), + [anon_sym_c_long] = ACTIONS(4760), + [anon_sym_c_ulong] = ACTIONS(4760), + [anon_sym_c_longlong] = ACTIONS(4760), + [anon_sym_c_ulonglong] = ACTIONS(4760), + [anon_sym_c_float] = ACTIONS(4760), + [anon_sym_c_double] = ACTIONS(4760), + [anon_sym_c_longdouble] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4760), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4758), + [anon_sym_orelse] = ACTIONS(4760), + [anon_sym_or] = ACTIONS(4760), + [anon_sym_and] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4758), + [anon_sym_AMP] = ACTIONS(4758), + [anon_sym_xor] = ACTIONS(4760), + [anon_sym_LT_LT] = ACTIONS(4760), + [anon_sym_GT_GT] = ACTIONS(4758), + [anon_sym_LT_LT_PIPE] = ACTIONS(4758), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_catch] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4760), + [anon_sym_CARET] = ACTIONS(4758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4758), + }, + [STATE(7302)] = { + [sym_identifier] = ACTIONS(4764), + [anon_sym_func] = ACTIONS(4764), + [anon_sym_c_func] = ACTIONS(4764), + [anon_sym_struct] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4762), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_struct_type_BANG] = ACTIONS(4762), + [anon_sym_QMARK] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4762), + [anon_sym_void] = ACTIONS(4764), + [anon_sym_noreturn] = ACTIONS(4764), + [anon_sym_type] = ACTIONS(4764), + [anon_sym_anyopaque] = ACTIONS(4764), + [anon_sym_bool] = ACTIONS(4764), + [anon_sym_int] = ACTIONS(4764), + [anon_sym_uint] = ACTIONS(4764), + [anon_sym_float] = ACTIONS(4764), + [anon_sym_range] = ACTIONS(4764), + [anon_sym_i8] = ACTIONS(4764), + [anon_sym_i16] = ACTIONS(4764), + [anon_sym_i32] = ACTIONS(4764), + [anon_sym_i64] = ACTIONS(4764), + [anon_sym_u8] = ACTIONS(4764), + [anon_sym_u16] = ACTIONS(4764), + [anon_sym_u32] = ACTIONS(4764), + [anon_sym_u64] = ACTIONS(4764), + [anon_sym_isize] = ACTIONS(4764), + [anon_sym_usize] = ACTIONS(4764), + [anon_sym_f32] = ACTIONS(4764), + [anon_sym_f64] = ACTIONS(4764), + [anon_sym_c_char] = ACTIONS(4764), + [anon_sym_c_schar] = ACTIONS(4764), + [anon_sym_c_uchar] = ACTIONS(4764), + [anon_sym_c_short] = ACTIONS(4764), + [anon_sym_c_ushort] = ACTIONS(4764), + [anon_sym_c_int] = ACTIONS(4764), + [anon_sym_c_uint] = ACTIONS(4764), + [anon_sym_c_long] = ACTIONS(4764), + [anon_sym_c_ulong] = ACTIONS(4764), + [anon_sym_c_longlong] = ACTIONS(4764), + [anon_sym_c_ulonglong] = ACTIONS(4764), + [anon_sym_c_float] = ACTIONS(4764), + [anon_sym_c_double] = ACTIONS(4764), + [anon_sym_c_longdouble] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4764), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4762), + [anon_sym_orelse] = ACTIONS(4764), + [anon_sym_or] = ACTIONS(4764), + [anon_sym_and] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_xor] = ACTIONS(4764), + [anon_sym_LT_LT] = ACTIONS(4764), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_LT_LT_PIPE] = ACTIONS(4762), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_catch] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4764), + [anon_sym_CARET] = ACTIONS(4762), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4762), + }, + [STATE(7303)] = { + [sym_identifier] = ACTIONS(4768), + [anon_sym_func] = ACTIONS(4768), + [anon_sym_c_func] = ACTIONS(4768), + [anon_sym_struct] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4766), + [anon_sym_COMMA] = ACTIONS(4766), + [anon_sym_RBRACE] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_struct_type_BANG] = ACTIONS(4766), + [anon_sym_QMARK] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_void] = ACTIONS(4768), + [anon_sym_noreturn] = ACTIONS(4768), + [anon_sym_type] = ACTIONS(4768), + [anon_sym_anyopaque] = ACTIONS(4768), + [anon_sym_bool] = ACTIONS(4768), + [anon_sym_int] = ACTIONS(4768), + [anon_sym_uint] = ACTIONS(4768), + [anon_sym_float] = ACTIONS(4768), + [anon_sym_range] = ACTIONS(4768), + [anon_sym_i8] = ACTIONS(4768), + [anon_sym_i16] = ACTIONS(4768), + [anon_sym_i32] = ACTIONS(4768), + [anon_sym_i64] = ACTIONS(4768), + [anon_sym_u8] = ACTIONS(4768), + [anon_sym_u16] = ACTIONS(4768), + [anon_sym_u32] = ACTIONS(4768), + [anon_sym_u64] = ACTIONS(4768), + [anon_sym_isize] = ACTIONS(4768), + [anon_sym_usize] = ACTIONS(4768), + [anon_sym_f32] = ACTIONS(4768), + [anon_sym_f64] = ACTIONS(4768), + [anon_sym_c_char] = ACTIONS(4768), + [anon_sym_c_schar] = ACTIONS(4768), + [anon_sym_c_uchar] = ACTIONS(4768), + [anon_sym_c_short] = ACTIONS(4768), + [anon_sym_c_ushort] = ACTIONS(4768), + [anon_sym_c_int] = ACTIONS(4768), + [anon_sym_c_uint] = ACTIONS(4768), + [anon_sym_c_long] = ACTIONS(4768), + [anon_sym_c_ulong] = ACTIONS(4768), + [anon_sym_c_longlong] = ACTIONS(4768), + [anon_sym_c_ulonglong] = ACTIONS(4768), + [anon_sym_c_float] = ACTIONS(4768), + [anon_sym_c_double] = ACTIONS(4768), + [anon_sym_c_longdouble] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4766), + [anon_sym_orelse] = ACTIONS(4768), + [anon_sym_or] = ACTIONS(4768), + [anon_sym_and] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4766), + [anon_sym_AMP] = ACTIONS(4766), + [anon_sym_xor] = ACTIONS(4768), + [anon_sym_LT_LT] = ACTIONS(4768), + [anon_sym_GT_GT] = ACTIONS(4766), + [anon_sym_LT_LT_PIPE] = ACTIONS(4766), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_catch] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_CARET] = ACTIONS(4766), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4766), + }, + [STATE(7304)] = { + [sym_identifier] = ACTIONS(4772), + [anon_sym_func] = ACTIONS(4772), + [anon_sym_c_func] = ACTIONS(4772), + [anon_sym_struct] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_struct_type_BANG] = ACTIONS(4770), + [anon_sym_QMARK] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_void] = ACTIONS(4772), + [anon_sym_noreturn] = ACTIONS(4772), + [anon_sym_type] = ACTIONS(4772), + [anon_sym_anyopaque] = ACTIONS(4772), + [anon_sym_bool] = ACTIONS(4772), + [anon_sym_int] = ACTIONS(4772), + [anon_sym_uint] = ACTIONS(4772), + [anon_sym_float] = ACTIONS(4772), + [anon_sym_range] = ACTIONS(4772), + [anon_sym_i8] = ACTIONS(4772), + [anon_sym_i16] = ACTIONS(4772), + [anon_sym_i32] = ACTIONS(4772), + [anon_sym_i64] = ACTIONS(4772), + [anon_sym_u8] = ACTIONS(4772), + [anon_sym_u16] = ACTIONS(4772), + [anon_sym_u32] = ACTIONS(4772), + [anon_sym_u64] = ACTIONS(4772), + [anon_sym_isize] = ACTIONS(4772), + [anon_sym_usize] = ACTIONS(4772), + [anon_sym_f32] = ACTIONS(4772), + [anon_sym_f64] = ACTIONS(4772), + [anon_sym_c_char] = ACTIONS(4772), + [anon_sym_c_schar] = ACTIONS(4772), + [anon_sym_c_uchar] = ACTIONS(4772), + [anon_sym_c_short] = ACTIONS(4772), + [anon_sym_c_ushort] = ACTIONS(4772), + [anon_sym_c_int] = ACTIONS(4772), + [anon_sym_c_uint] = ACTIONS(4772), + [anon_sym_c_long] = ACTIONS(4772), + [anon_sym_c_ulong] = ACTIONS(4772), + [anon_sym_c_longlong] = ACTIONS(4772), + [anon_sym_c_ulonglong] = ACTIONS(4772), + [anon_sym_c_float] = ACTIONS(4772), + [anon_sym_c_double] = ACTIONS(4772), + [anon_sym_c_longdouble] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4772), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4770), + [anon_sym_orelse] = ACTIONS(4772), + [anon_sym_or] = ACTIONS(4772), + [anon_sym_and] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_AMP] = ACTIONS(4770), + [anon_sym_xor] = ACTIONS(4772), + [anon_sym_LT_LT] = ACTIONS(4772), + [anon_sym_GT_GT] = ACTIONS(4770), + [anon_sym_LT_LT_PIPE] = ACTIONS(4770), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_catch] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4772), + [anon_sym_CARET] = ACTIONS(4770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4770), + }, + [STATE(7305)] = { + [sym_identifier] = ACTIONS(4776), + [anon_sym_func] = ACTIONS(4776), + [anon_sym_c_func] = ACTIONS(4776), + [anon_sym_struct] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4774), + [anon_sym_COMMA] = ACTIONS(4774), + [anon_sym_RBRACE] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_struct_type_BANG] = ACTIONS(4774), + [anon_sym_QMARK] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(4774), + [anon_sym_void] = ACTIONS(4776), + [anon_sym_noreturn] = ACTIONS(4776), + [anon_sym_type] = ACTIONS(4776), + [anon_sym_anyopaque] = ACTIONS(4776), + [anon_sym_bool] = ACTIONS(4776), + [anon_sym_int] = ACTIONS(4776), + [anon_sym_uint] = ACTIONS(4776), + [anon_sym_float] = ACTIONS(4776), + [anon_sym_range] = ACTIONS(4776), + [anon_sym_i8] = ACTIONS(4776), + [anon_sym_i16] = ACTIONS(4776), + [anon_sym_i32] = ACTIONS(4776), + [anon_sym_i64] = ACTIONS(4776), + [anon_sym_u8] = ACTIONS(4776), + [anon_sym_u16] = ACTIONS(4776), + [anon_sym_u32] = ACTIONS(4776), + [anon_sym_u64] = ACTIONS(4776), + [anon_sym_isize] = ACTIONS(4776), + [anon_sym_usize] = ACTIONS(4776), + [anon_sym_f32] = ACTIONS(4776), + [anon_sym_f64] = ACTIONS(4776), + [anon_sym_c_char] = ACTIONS(4776), + [anon_sym_c_schar] = ACTIONS(4776), + [anon_sym_c_uchar] = ACTIONS(4776), + [anon_sym_c_short] = ACTIONS(4776), + [anon_sym_c_ushort] = ACTIONS(4776), + [anon_sym_c_int] = ACTIONS(4776), + [anon_sym_c_uint] = ACTIONS(4776), + [anon_sym_c_long] = ACTIONS(4776), + [anon_sym_c_ulong] = ACTIONS(4776), + [anon_sym_c_longlong] = ACTIONS(4776), + [anon_sym_c_ulonglong] = ACTIONS(4776), + [anon_sym_c_float] = ACTIONS(4776), + [anon_sym_c_double] = ACTIONS(4776), + [anon_sym_c_longdouble] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4774), + [anon_sym_orelse] = ACTIONS(4776), + [anon_sym_or] = ACTIONS(4776), + [anon_sym_and] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4774), + [anon_sym_AMP] = ACTIONS(4774), + [anon_sym_xor] = ACTIONS(4776), + [anon_sym_LT_LT] = ACTIONS(4776), + [anon_sym_GT_GT] = ACTIONS(4774), + [anon_sym_LT_LT_PIPE] = ACTIONS(4774), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_catch] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_CARET] = ACTIONS(4774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4774), + }, + [STATE(7306)] = { + [sym_identifier] = ACTIONS(4780), + [anon_sym_func] = ACTIONS(4780), + [anon_sym_c_func] = ACTIONS(4780), + [anon_sym_struct] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4778), + [anon_sym_struct_type_BANG] = ACTIONS(4778), + [anon_sym_QMARK] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_void] = ACTIONS(4780), + [anon_sym_noreturn] = ACTIONS(4780), + [anon_sym_type] = ACTIONS(4780), + [anon_sym_anyopaque] = ACTIONS(4780), + [anon_sym_bool] = ACTIONS(4780), + [anon_sym_int] = ACTIONS(4780), + [anon_sym_uint] = ACTIONS(4780), + [anon_sym_float] = ACTIONS(4780), + [anon_sym_range] = ACTIONS(4780), + [anon_sym_i8] = ACTIONS(4780), + [anon_sym_i16] = ACTIONS(4780), + [anon_sym_i32] = ACTIONS(4780), + [anon_sym_i64] = ACTIONS(4780), + [anon_sym_u8] = ACTIONS(4780), + [anon_sym_u16] = ACTIONS(4780), + [anon_sym_u32] = ACTIONS(4780), + [anon_sym_u64] = ACTIONS(4780), + [anon_sym_isize] = ACTIONS(4780), + [anon_sym_usize] = ACTIONS(4780), + [anon_sym_f32] = ACTIONS(4780), + [anon_sym_f64] = ACTIONS(4780), + [anon_sym_c_char] = ACTIONS(4780), + [anon_sym_c_schar] = ACTIONS(4780), + [anon_sym_c_uchar] = ACTIONS(4780), + [anon_sym_c_short] = ACTIONS(4780), + [anon_sym_c_ushort] = ACTIONS(4780), + [anon_sym_c_int] = ACTIONS(4780), + [anon_sym_c_uint] = ACTIONS(4780), + [anon_sym_c_long] = ACTIONS(4780), + [anon_sym_c_ulong] = ACTIONS(4780), + [anon_sym_c_longlong] = ACTIONS(4780), + [anon_sym_c_ulonglong] = ACTIONS(4780), + [anon_sym_c_float] = ACTIONS(4780), + [anon_sym_c_double] = ACTIONS(4780), + [anon_sym_c_longdouble] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4778), + [anon_sym_orelse] = ACTIONS(4780), + [anon_sym_or] = ACTIONS(4780), + [anon_sym_and] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_xor] = ACTIONS(4780), + [anon_sym_LT_LT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4778), + [anon_sym_LT_LT_PIPE] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_catch] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_CARET] = ACTIONS(4778), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4778), + }, + [STATE(7307)] = { + [sym_identifier] = ACTIONS(4784), + [anon_sym_func] = ACTIONS(4784), + [anon_sym_c_func] = ACTIONS(4784), + [anon_sym_struct] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_COMMA] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_PIPE] = ACTIONS(4782), + [anon_sym_struct_type_BANG] = ACTIONS(4782), + [anon_sym_QMARK] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_void] = ACTIONS(4784), + [anon_sym_noreturn] = ACTIONS(4784), + [anon_sym_type] = ACTIONS(4784), + [anon_sym_anyopaque] = ACTIONS(4784), + [anon_sym_bool] = ACTIONS(4784), + [anon_sym_int] = ACTIONS(4784), + [anon_sym_uint] = ACTIONS(4784), + [anon_sym_float] = ACTIONS(4784), + [anon_sym_range] = ACTIONS(4784), + [anon_sym_i8] = ACTIONS(4784), + [anon_sym_i16] = ACTIONS(4784), + [anon_sym_i32] = ACTIONS(4784), + [anon_sym_i64] = ACTIONS(4784), + [anon_sym_u8] = ACTIONS(4784), + [anon_sym_u16] = ACTIONS(4784), + [anon_sym_u32] = ACTIONS(4784), + [anon_sym_u64] = ACTIONS(4784), + [anon_sym_isize] = ACTIONS(4784), + [anon_sym_usize] = ACTIONS(4784), + [anon_sym_f32] = ACTIONS(4784), + [anon_sym_f64] = ACTIONS(4784), + [anon_sym_c_char] = ACTIONS(4784), + [anon_sym_c_schar] = ACTIONS(4784), + [anon_sym_c_uchar] = ACTIONS(4784), + [anon_sym_c_short] = ACTIONS(4784), + [anon_sym_c_ushort] = ACTIONS(4784), + [anon_sym_c_int] = ACTIONS(4784), + [anon_sym_c_uint] = ACTIONS(4784), + [anon_sym_c_long] = ACTIONS(4784), + [anon_sym_c_ulong] = ACTIONS(4784), + [anon_sym_c_longlong] = ACTIONS(4784), + [anon_sym_c_ulonglong] = ACTIONS(4784), + [anon_sym_c_float] = ACTIONS(4784), + [anon_sym_c_double] = ACTIONS(4784), + [anon_sym_c_longdouble] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4782), + [anon_sym_orelse] = ACTIONS(4784), + [anon_sym_or] = ACTIONS(4784), + [anon_sym_and] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4782), + [anon_sym_xor] = ACTIONS(4784), + [anon_sym_LT_LT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4782), + [anon_sym_LT_LT_PIPE] = ACTIONS(4782), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_catch] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_CARET] = ACTIONS(4782), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4782), + }, + [STATE(7308)] = { + [sym_identifier] = ACTIONS(4788), + [anon_sym_func] = ACTIONS(4788), + [anon_sym_c_func] = ACTIONS(4788), + [anon_sym_struct] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_COMMA] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_struct_type_BANG] = ACTIONS(4786), + [anon_sym_QMARK] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_void] = ACTIONS(4788), + [anon_sym_noreturn] = ACTIONS(4788), + [anon_sym_type] = ACTIONS(4788), + [anon_sym_anyopaque] = ACTIONS(4788), + [anon_sym_bool] = ACTIONS(4788), + [anon_sym_int] = ACTIONS(4788), + [anon_sym_uint] = ACTIONS(4788), + [anon_sym_float] = ACTIONS(4788), + [anon_sym_range] = ACTIONS(4788), + [anon_sym_i8] = ACTIONS(4788), + [anon_sym_i16] = ACTIONS(4788), + [anon_sym_i32] = ACTIONS(4788), + [anon_sym_i64] = ACTIONS(4788), + [anon_sym_u8] = ACTIONS(4788), + [anon_sym_u16] = ACTIONS(4788), + [anon_sym_u32] = ACTIONS(4788), + [anon_sym_u64] = ACTIONS(4788), + [anon_sym_isize] = ACTIONS(4788), + [anon_sym_usize] = ACTIONS(4788), + [anon_sym_f32] = ACTIONS(4788), + [anon_sym_f64] = ACTIONS(4788), + [anon_sym_c_char] = ACTIONS(4788), + [anon_sym_c_schar] = ACTIONS(4788), + [anon_sym_c_uchar] = ACTIONS(4788), + [anon_sym_c_short] = ACTIONS(4788), + [anon_sym_c_ushort] = ACTIONS(4788), + [anon_sym_c_int] = ACTIONS(4788), + [anon_sym_c_uint] = ACTIONS(4788), + [anon_sym_c_long] = ACTIONS(4788), + [anon_sym_c_ulong] = ACTIONS(4788), + [anon_sym_c_longlong] = ACTIONS(4788), + [anon_sym_c_ulonglong] = ACTIONS(4788), + [anon_sym_c_float] = ACTIONS(4788), + [anon_sym_c_double] = ACTIONS(4788), + [anon_sym_c_longdouble] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4786), + [anon_sym_orelse] = ACTIONS(4788), + [anon_sym_or] = ACTIONS(4788), + [anon_sym_and] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_AMP] = ACTIONS(4786), + [anon_sym_xor] = ACTIONS(4788), + [anon_sym_LT_LT] = ACTIONS(4788), + [anon_sym_GT_GT] = ACTIONS(4786), + [anon_sym_LT_LT_PIPE] = ACTIONS(4786), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_catch] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_CARET] = ACTIONS(4786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4786), + }, + [STATE(7309)] = { + [sym_identifier] = ACTIONS(4792), + [anon_sym_func] = ACTIONS(4792), + [anon_sym_c_func] = ACTIONS(4792), + [anon_sym_struct] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4790), + [anon_sym_struct_type_BANG] = ACTIONS(4790), + [anon_sym_QMARK] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_void] = ACTIONS(4792), + [anon_sym_noreturn] = ACTIONS(4792), + [anon_sym_type] = ACTIONS(4792), + [anon_sym_anyopaque] = ACTIONS(4792), + [anon_sym_bool] = ACTIONS(4792), + [anon_sym_int] = ACTIONS(4792), + [anon_sym_uint] = ACTIONS(4792), + [anon_sym_float] = ACTIONS(4792), + [anon_sym_range] = ACTIONS(4792), + [anon_sym_i8] = ACTIONS(4792), + [anon_sym_i16] = ACTIONS(4792), + [anon_sym_i32] = ACTIONS(4792), + [anon_sym_i64] = ACTIONS(4792), + [anon_sym_u8] = ACTIONS(4792), + [anon_sym_u16] = ACTIONS(4792), + [anon_sym_u32] = ACTIONS(4792), + [anon_sym_u64] = ACTIONS(4792), + [anon_sym_isize] = ACTIONS(4792), + [anon_sym_usize] = ACTIONS(4792), + [anon_sym_f32] = ACTIONS(4792), + [anon_sym_f64] = ACTIONS(4792), + [anon_sym_c_char] = ACTIONS(4792), + [anon_sym_c_schar] = ACTIONS(4792), + [anon_sym_c_uchar] = ACTIONS(4792), + [anon_sym_c_short] = ACTIONS(4792), + [anon_sym_c_ushort] = ACTIONS(4792), + [anon_sym_c_int] = ACTIONS(4792), + [anon_sym_c_uint] = ACTIONS(4792), + [anon_sym_c_long] = ACTIONS(4792), + [anon_sym_c_ulong] = ACTIONS(4792), + [anon_sym_c_longlong] = ACTIONS(4792), + [anon_sym_c_ulonglong] = ACTIONS(4792), + [anon_sym_c_float] = ACTIONS(4792), + [anon_sym_c_double] = ACTIONS(4792), + [anon_sym_c_longdouble] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4790), + [anon_sym_orelse] = ACTIONS(4792), + [anon_sym_or] = ACTIONS(4792), + [anon_sym_and] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4790), + [anon_sym_xor] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_LT_LT_PIPE] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_catch] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_CARET] = ACTIONS(4790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4790), + }, + [STATE(7310)] = { + [sym_identifier] = ACTIONS(4796), + [anon_sym_func] = ACTIONS(4796), + [anon_sym_c_func] = ACTIONS(4796), + [anon_sym_struct] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_PIPE] = ACTIONS(4794), + [anon_sym_struct_type_BANG] = ACTIONS(4794), + [anon_sym_QMARK] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_void] = ACTIONS(4796), + [anon_sym_noreturn] = ACTIONS(4796), + [anon_sym_type] = ACTIONS(4796), + [anon_sym_anyopaque] = ACTIONS(4796), + [anon_sym_bool] = ACTIONS(4796), + [anon_sym_int] = ACTIONS(4796), + [anon_sym_uint] = ACTIONS(4796), + [anon_sym_float] = ACTIONS(4796), + [anon_sym_range] = ACTIONS(4796), + [anon_sym_i8] = ACTIONS(4796), + [anon_sym_i16] = ACTIONS(4796), + [anon_sym_i32] = ACTIONS(4796), + [anon_sym_i64] = ACTIONS(4796), + [anon_sym_u8] = ACTIONS(4796), + [anon_sym_u16] = ACTIONS(4796), + [anon_sym_u32] = ACTIONS(4796), + [anon_sym_u64] = ACTIONS(4796), + [anon_sym_isize] = ACTIONS(4796), + [anon_sym_usize] = ACTIONS(4796), + [anon_sym_f32] = ACTIONS(4796), + [anon_sym_f64] = ACTIONS(4796), + [anon_sym_c_char] = ACTIONS(4796), + [anon_sym_c_schar] = ACTIONS(4796), + [anon_sym_c_uchar] = ACTIONS(4796), + [anon_sym_c_short] = ACTIONS(4796), + [anon_sym_c_ushort] = ACTIONS(4796), + [anon_sym_c_int] = ACTIONS(4796), + [anon_sym_c_uint] = ACTIONS(4796), + [anon_sym_c_long] = ACTIONS(4796), + [anon_sym_c_ulong] = ACTIONS(4796), + [anon_sym_c_longlong] = ACTIONS(4796), + [anon_sym_c_ulonglong] = ACTIONS(4796), + [anon_sym_c_float] = ACTIONS(4796), + [anon_sym_c_double] = ACTIONS(4796), + [anon_sym_c_longdouble] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4794), + [anon_sym_orelse] = ACTIONS(4796), + [anon_sym_or] = ACTIONS(4796), + [anon_sym_and] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4794), + [anon_sym_xor] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4794), + [anon_sym_LT_LT_PIPE] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_catch] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_CARET] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4794), + }, + [STATE(7311)] = { + [sym_identifier] = ACTIONS(4800), + [anon_sym_func] = ACTIONS(4800), + [anon_sym_c_func] = ACTIONS(4800), + [anon_sym_struct] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(4798), + [anon_sym_struct_type_BANG] = ACTIONS(4798), + [anon_sym_QMARK] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_void] = ACTIONS(4800), + [anon_sym_noreturn] = ACTIONS(4800), + [anon_sym_type] = ACTIONS(4800), + [anon_sym_anyopaque] = ACTIONS(4800), + [anon_sym_bool] = ACTIONS(4800), + [anon_sym_int] = ACTIONS(4800), + [anon_sym_uint] = ACTIONS(4800), + [anon_sym_float] = ACTIONS(4800), + [anon_sym_range] = ACTIONS(4800), + [anon_sym_i8] = ACTIONS(4800), + [anon_sym_i16] = ACTIONS(4800), + [anon_sym_i32] = ACTIONS(4800), + [anon_sym_i64] = ACTIONS(4800), + [anon_sym_u8] = ACTIONS(4800), + [anon_sym_u16] = ACTIONS(4800), + [anon_sym_u32] = ACTIONS(4800), + [anon_sym_u64] = ACTIONS(4800), + [anon_sym_isize] = ACTIONS(4800), + [anon_sym_usize] = ACTIONS(4800), + [anon_sym_f32] = ACTIONS(4800), + [anon_sym_f64] = ACTIONS(4800), + [anon_sym_c_char] = ACTIONS(4800), + [anon_sym_c_schar] = ACTIONS(4800), + [anon_sym_c_uchar] = ACTIONS(4800), + [anon_sym_c_short] = ACTIONS(4800), + [anon_sym_c_ushort] = ACTIONS(4800), + [anon_sym_c_int] = ACTIONS(4800), + [anon_sym_c_uint] = ACTIONS(4800), + [anon_sym_c_long] = ACTIONS(4800), + [anon_sym_c_ulong] = ACTIONS(4800), + [anon_sym_c_longlong] = ACTIONS(4800), + [anon_sym_c_ulonglong] = ACTIONS(4800), + [anon_sym_c_float] = ACTIONS(4800), + [anon_sym_c_double] = ACTIONS(4800), + [anon_sym_c_longdouble] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4800), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4798), + [anon_sym_orelse] = ACTIONS(4800), + [anon_sym_or] = ACTIONS(4800), + [anon_sym_and] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_AMP] = ACTIONS(4798), + [anon_sym_xor] = ACTIONS(4800), + [anon_sym_LT_LT] = ACTIONS(4800), + [anon_sym_GT_GT] = ACTIONS(4798), + [anon_sym_LT_LT_PIPE] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_catch] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4800), + [anon_sym_CARET] = ACTIONS(4798), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4798), + }, + [STATE(7312)] = { + [sym_identifier] = ACTIONS(6138), + [anon_sym_func] = ACTIONS(6138), + [anon_sym_c_func] = ACTIONS(6138), + [anon_sym_struct] = ACTIONS(6138), + [anon_sym_LPAREN] = ACTIONS(6136), + [anon_sym_COMMA] = ACTIONS(6136), + [anon_sym_RBRACE] = ACTIONS(6136), + [anon_sym_DASH] = ACTIONS(6136), + [anon_sym_PIPE] = ACTIONS(6136), + [anon_sym_struct_type_BANG] = ACTIONS(6136), + [anon_sym_QMARK] = ACTIONS(6136), + [anon_sym_AT] = ACTIONS(6136), + [anon_sym_STAR] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(6136), + [anon_sym_void] = ACTIONS(6138), + [anon_sym_noreturn] = ACTIONS(6138), + [anon_sym_type] = ACTIONS(6138), + [anon_sym_anyopaque] = ACTIONS(6138), + [anon_sym_bool] = ACTIONS(6138), + [anon_sym_int] = ACTIONS(6138), + [anon_sym_uint] = ACTIONS(6138), + [anon_sym_float] = ACTIONS(6138), + [anon_sym_range] = ACTIONS(6138), + [anon_sym_i8] = ACTIONS(6138), + [anon_sym_i16] = ACTIONS(6138), + [anon_sym_i32] = ACTIONS(6138), + [anon_sym_i64] = ACTIONS(6138), + [anon_sym_u8] = ACTIONS(6138), + [anon_sym_u16] = ACTIONS(6138), + [anon_sym_u32] = ACTIONS(6138), + [anon_sym_u64] = ACTIONS(6138), + [anon_sym_isize] = ACTIONS(6138), + [anon_sym_usize] = ACTIONS(6138), + [anon_sym_f32] = ACTIONS(6138), + [anon_sym_f64] = ACTIONS(6138), + [anon_sym_c_char] = ACTIONS(6138), + [anon_sym_c_schar] = ACTIONS(6138), + [anon_sym_c_uchar] = ACTIONS(6138), + [anon_sym_c_short] = ACTIONS(6138), + [anon_sym_c_ushort] = ACTIONS(6138), + [anon_sym_c_int] = ACTIONS(6138), + [anon_sym_c_uint] = ACTIONS(6138), + [anon_sym_c_long] = ACTIONS(6138), + [anon_sym_c_ulong] = ACTIONS(6138), + [anon_sym_c_longlong] = ACTIONS(6138), + [anon_sym_c_ulonglong] = ACTIONS(6138), + [anon_sym_c_float] = ACTIONS(6138), + [anon_sym_c_double] = ACTIONS(6138), + [anon_sym_c_longdouble] = ACTIONS(6138), + [anon_sym_else] = ACTIONS(6138), + [anon_sym_DOT_DOT] = ACTIONS(6138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6136), + [anon_sym_orelse] = ACTIONS(6138), + [anon_sym_or] = ACTIONS(6138), + [anon_sym_and] = ACTIONS(6138), + [anon_sym_EQ_EQ] = ACTIONS(6136), + [anon_sym_BANG_EQ] = ACTIONS(6136), + [anon_sym_LT] = ACTIONS(6138), + [anon_sym_LT_EQ] = ACTIONS(6136), + [anon_sym_GT] = ACTIONS(6138), + [anon_sym_GT_EQ] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6136), + [anon_sym_xor] = ACTIONS(6138), + [anon_sym_LT_LT] = ACTIONS(6138), + [anon_sym_GT_GT] = ACTIONS(6136), + [anon_sym_LT_LT_PIPE] = ACTIONS(6136), + [anon_sym_PLUS] = ACTIONS(6136), + [anon_sym_SLASH] = ACTIONS(6136), + [anon_sym_catch] = ACTIONS(6138), + [anon_sym_DOT] = ACTIONS(6138), + [anon_sym_CARET] = ACTIONS(6136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6136), + }, + [STATE(7313)] = { + [sym_identifier] = ACTIONS(5776), + [anon_sym_func] = ACTIONS(5776), + [anon_sym_c_func] = ACTIONS(5776), + [anon_sym_struct] = ACTIONS(5776), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_COMMA] = ACTIONS(5774), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_struct_type_BANG] = ACTIONS(5774), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_AT] = ACTIONS(5774), + [anon_sym_STAR] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_void] = ACTIONS(5776), + [anon_sym_noreturn] = ACTIONS(5776), + [anon_sym_type] = ACTIONS(5776), + [anon_sym_anyopaque] = ACTIONS(5776), + [anon_sym_bool] = ACTIONS(5776), + [anon_sym_int] = ACTIONS(5776), + [anon_sym_uint] = ACTIONS(5776), + [anon_sym_float] = ACTIONS(5776), + [anon_sym_range] = ACTIONS(5776), + [anon_sym_i8] = ACTIONS(5776), + [anon_sym_i16] = ACTIONS(5776), + [anon_sym_i32] = ACTIONS(5776), + [anon_sym_i64] = ACTIONS(5776), + [anon_sym_u8] = ACTIONS(5776), + [anon_sym_u16] = ACTIONS(5776), + [anon_sym_u32] = ACTIONS(5776), + [anon_sym_u64] = ACTIONS(5776), + [anon_sym_isize] = ACTIONS(5776), + [anon_sym_usize] = ACTIONS(5776), + [anon_sym_f32] = ACTIONS(5776), + [anon_sym_f64] = ACTIONS(5776), + [anon_sym_c_char] = ACTIONS(5776), + [anon_sym_c_schar] = ACTIONS(5776), + [anon_sym_c_uchar] = ACTIONS(5776), + [anon_sym_c_short] = ACTIONS(5776), + [anon_sym_c_ushort] = ACTIONS(5776), + [anon_sym_c_int] = ACTIONS(5776), + [anon_sym_c_uint] = ACTIONS(5776), + [anon_sym_c_long] = ACTIONS(5776), + [anon_sym_c_ulong] = ACTIONS(5776), + [anon_sym_c_longlong] = ACTIONS(5776), + [anon_sym_c_ulonglong] = ACTIONS(5776), + [anon_sym_c_float] = ACTIONS(5776), + [anon_sym_c_double] = ACTIONS(5776), + [anon_sym_c_longdouble] = ACTIONS(5776), + [anon_sym_else] = ACTIONS(5776), + [anon_sym_DOT_DOT] = ACTIONS(5776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5774), + [anon_sym_orelse] = ACTIONS(5776), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5774), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5774), + [anon_sym_LT_LT_PIPE] = ACTIONS(5774), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_SLASH] = ACTIONS(5774), + [anon_sym_catch] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5774), + }, + [STATE(7314)] = { + [sym_identifier] = ACTIONS(4804), + [anon_sym_func] = ACTIONS(4804), + [anon_sym_c_func] = ACTIONS(4804), + [anon_sym_struct] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4802), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4802), + [anon_sym_struct_type_BANG] = ACTIONS(4802), + [anon_sym_QMARK] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_LBRACK] = ACTIONS(4802), + [anon_sym_void] = ACTIONS(4804), + [anon_sym_noreturn] = ACTIONS(4804), + [anon_sym_type] = ACTIONS(4804), + [anon_sym_anyopaque] = ACTIONS(4804), + [anon_sym_bool] = ACTIONS(4804), + [anon_sym_int] = ACTIONS(4804), + [anon_sym_uint] = ACTIONS(4804), + [anon_sym_float] = ACTIONS(4804), + [anon_sym_range] = ACTIONS(4804), + [anon_sym_i8] = ACTIONS(4804), + [anon_sym_i16] = ACTIONS(4804), + [anon_sym_i32] = ACTIONS(4804), + [anon_sym_i64] = ACTIONS(4804), + [anon_sym_u8] = ACTIONS(4804), + [anon_sym_u16] = ACTIONS(4804), + [anon_sym_u32] = ACTIONS(4804), + [anon_sym_u64] = ACTIONS(4804), + [anon_sym_isize] = ACTIONS(4804), + [anon_sym_usize] = ACTIONS(4804), + [anon_sym_f32] = ACTIONS(4804), + [anon_sym_f64] = ACTIONS(4804), + [anon_sym_c_char] = ACTIONS(4804), + [anon_sym_c_schar] = ACTIONS(4804), + [anon_sym_c_uchar] = ACTIONS(4804), + [anon_sym_c_short] = ACTIONS(4804), + [anon_sym_c_ushort] = ACTIONS(4804), + [anon_sym_c_int] = ACTIONS(4804), + [anon_sym_c_uint] = ACTIONS(4804), + [anon_sym_c_long] = ACTIONS(4804), + [anon_sym_c_ulong] = ACTIONS(4804), + [anon_sym_c_longlong] = ACTIONS(4804), + [anon_sym_c_ulonglong] = ACTIONS(4804), + [anon_sym_c_float] = ACTIONS(4804), + [anon_sym_c_double] = ACTIONS(4804), + [anon_sym_c_longdouble] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4802), + [anon_sym_orelse] = ACTIONS(4804), + [anon_sym_or] = ACTIONS(4804), + [anon_sym_and] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_AMP] = ACTIONS(4802), + [anon_sym_xor] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_LT_LT_PIPE] = ACTIONS(4802), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_catch] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_CARET] = ACTIONS(4802), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4802), + }, + [STATE(7315)] = { + [sym_identifier] = ACTIONS(4808), + [anon_sym_func] = ACTIONS(4808), + [anon_sym_c_func] = ACTIONS(4808), + [anon_sym_struct] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_PIPE] = ACTIONS(4806), + [anon_sym_struct_type_BANG] = ACTIONS(4806), + [anon_sym_QMARK] = ACTIONS(4806), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_void] = ACTIONS(4808), + [anon_sym_noreturn] = ACTIONS(4808), + [anon_sym_type] = ACTIONS(4808), + [anon_sym_anyopaque] = ACTIONS(4808), + [anon_sym_bool] = ACTIONS(4808), + [anon_sym_int] = ACTIONS(4808), + [anon_sym_uint] = ACTIONS(4808), + [anon_sym_float] = ACTIONS(4808), + [anon_sym_range] = ACTIONS(4808), + [anon_sym_i8] = ACTIONS(4808), + [anon_sym_i16] = ACTIONS(4808), + [anon_sym_i32] = ACTIONS(4808), + [anon_sym_i64] = ACTIONS(4808), + [anon_sym_u8] = ACTIONS(4808), + [anon_sym_u16] = ACTIONS(4808), + [anon_sym_u32] = ACTIONS(4808), + [anon_sym_u64] = ACTIONS(4808), + [anon_sym_isize] = ACTIONS(4808), + [anon_sym_usize] = ACTIONS(4808), + [anon_sym_f32] = ACTIONS(4808), + [anon_sym_f64] = ACTIONS(4808), + [anon_sym_c_char] = ACTIONS(4808), + [anon_sym_c_schar] = ACTIONS(4808), + [anon_sym_c_uchar] = ACTIONS(4808), + [anon_sym_c_short] = ACTIONS(4808), + [anon_sym_c_ushort] = ACTIONS(4808), + [anon_sym_c_int] = ACTIONS(4808), + [anon_sym_c_uint] = ACTIONS(4808), + [anon_sym_c_long] = ACTIONS(4808), + [anon_sym_c_ulong] = ACTIONS(4808), + [anon_sym_c_longlong] = ACTIONS(4808), + [anon_sym_c_ulonglong] = ACTIONS(4808), + [anon_sym_c_float] = ACTIONS(4808), + [anon_sym_c_double] = ACTIONS(4808), + [anon_sym_c_longdouble] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4806), + [anon_sym_orelse] = ACTIONS(4808), + [anon_sym_or] = ACTIONS(4808), + [anon_sym_and] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_AMP] = ACTIONS(4806), + [anon_sym_xor] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(4808), + [anon_sym_GT_GT] = ACTIONS(4806), + [anon_sym_LT_LT_PIPE] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4806), + [anon_sym_SLASH] = ACTIONS(4806), + [anon_sym_catch] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_CARET] = ACTIONS(4806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4806), + }, + [STATE(7316)] = { + [sym_identifier] = ACTIONS(4816), + [anon_sym_func] = ACTIONS(4816), + [anon_sym_c_func] = ACTIONS(4816), + [anon_sym_struct] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_PIPE] = ACTIONS(4814), + [anon_sym_struct_type_BANG] = ACTIONS(4814), + [anon_sym_QMARK] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_void] = ACTIONS(4816), + [anon_sym_noreturn] = ACTIONS(4816), + [anon_sym_type] = ACTIONS(4816), + [anon_sym_anyopaque] = ACTIONS(4816), + [anon_sym_bool] = ACTIONS(4816), + [anon_sym_int] = ACTIONS(4816), + [anon_sym_uint] = ACTIONS(4816), + [anon_sym_float] = ACTIONS(4816), + [anon_sym_range] = ACTIONS(4816), + [anon_sym_i8] = ACTIONS(4816), + [anon_sym_i16] = ACTIONS(4816), + [anon_sym_i32] = ACTIONS(4816), + [anon_sym_i64] = ACTIONS(4816), + [anon_sym_u8] = ACTIONS(4816), + [anon_sym_u16] = ACTIONS(4816), + [anon_sym_u32] = ACTIONS(4816), + [anon_sym_u64] = ACTIONS(4816), + [anon_sym_isize] = ACTIONS(4816), + [anon_sym_usize] = ACTIONS(4816), + [anon_sym_f32] = ACTIONS(4816), + [anon_sym_f64] = ACTIONS(4816), + [anon_sym_c_char] = ACTIONS(4816), + [anon_sym_c_schar] = ACTIONS(4816), + [anon_sym_c_uchar] = ACTIONS(4816), + [anon_sym_c_short] = ACTIONS(4816), + [anon_sym_c_ushort] = ACTIONS(4816), + [anon_sym_c_int] = ACTIONS(4816), + [anon_sym_c_uint] = ACTIONS(4816), + [anon_sym_c_long] = ACTIONS(4816), + [anon_sym_c_ulong] = ACTIONS(4816), + [anon_sym_c_longlong] = ACTIONS(4816), + [anon_sym_c_ulonglong] = ACTIONS(4816), + [anon_sym_c_float] = ACTIONS(4816), + [anon_sym_c_double] = ACTIONS(4816), + [anon_sym_c_longdouble] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4814), + [anon_sym_orelse] = ACTIONS(4816), + [anon_sym_or] = ACTIONS(4816), + [anon_sym_and] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_xor] = ACTIONS(4816), + [anon_sym_LT_LT] = ACTIONS(4816), + [anon_sym_GT_GT] = ACTIONS(4814), + [anon_sym_LT_LT_PIPE] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_catch] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_CARET] = ACTIONS(4814), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4814), + }, + [STATE(7317)] = { + [sym_identifier] = ACTIONS(4822), + [anon_sym_func] = ACTIONS(4822), + [anon_sym_c_func] = ACTIONS(4822), + [anon_sym_struct] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(4820), + [anon_sym_struct_type_BANG] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_void] = ACTIONS(4822), + [anon_sym_noreturn] = ACTIONS(4822), + [anon_sym_type] = ACTIONS(4822), + [anon_sym_anyopaque] = ACTIONS(4822), + [anon_sym_bool] = ACTIONS(4822), + [anon_sym_int] = ACTIONS(4822), + [anon_sym_uint] = ACTIONS(4822), + [anon_sym_float] = ACTIONS(4822), + [anon_sym_range] = ACTIONS(4822), + [anon_sym_i8] = ACTIONS(4822), + [anon_sym_i16] = ACTIONS(4822), + [anon_sym_i32] = ACTIONS(4822), + [anon_sym_i64] = ACTIONS(4822), + [anon_sym_u8] = ACTIONS(4822), + [anon_sym_u16] = ACTIONS(4822), + [anon_sym_u32] = ACTIONS(4822), + [anon_sym_u64] = ACTIONS(4822), + [anon_sym_isize] = ACTIONS(4822), + [anon_sym_usize] = ACTIONS(4822), + [anon_sym_f32] = ACTIONS(4822), + [anon_sym_f64] = ACTIONS(4822), + [anon_sym_c_char] = ACTIONS(4822), + [anon_sym_c_schar] = ACTIONS(4822), + [anon_sym_c_uchar] = ACTIONS(4822), + [anon_sym_c_short] = ACTIONS(4822), + [anon_sym_c_ushort] = ACTIONS(4822), + [anon_sym_c_int] = ACTIONS(4822), + [anon_sym_c_uint] = ACTIONS(4822), + [anon_sym_c_long] = ACTIONS(4822), + [anon_sym_c_ulong] = ACTIONS(4822), + [anon_sym_c_longlong] = ACTIONS(4822), + [anon_sym_c_ulonglong] = ACTIONS(4822), + [anon_sym_c_float] = ACTIONS(4822), + [anon_sym_c_double] = ACTIONS(4822), + [anon_sym_c_longdouble] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4820), + [anon_sym_orelse] = ACTIONS(4822), + [anon_sym_or] = ACTIONS(4822), + [anon_sym_and] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_AMP] = ACTIONS(4820), + [anon_sym_xor] = ACTIONS(4822), + [anon_sym_LT_LT] = ACTIONS(4822), + [anon_sym_GT_GT] = ACTIONS(4820), + [anon_sym_LT_LT_PIPE] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_catch] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_CARET] = ACTIONS(4820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4820), + }, + [STATE(7318)] = { + [sym_identifier] = ACTIONS(4826), + [anon_sym_func] = ACTIONS(4826), + [anon_sym_c_func] = ACTIONS(4826), + [anon_sym_struct] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_PIPE] = ACTIONS(4824), + [anon_sym_struct_type_BANG] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4824), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_void] = ACTIONS(4826), + [anon_sym_noreturn] = ACTIONS(4826), + [anon_sym_type] = ACTIONS(4826), + [anon_sym_anyopaque] = ACTIONS(4826), + [anon_sym_bool] = ACTIONS(4826), + [anon_sym_int] = ACTIONS(4826), + [anon_sym_uint] = ACTIONS(4826), + [anon_sym_float] = ACTIONS(4826), + [anon_sym_range] = ACTIONS(4826), + [anon_sym_i8] = ACTIONS(4826), + [anon_sym_i16] = ACTIONS(4826), + [anon_sym_i32] = ACTIONS(4826), + [anon_sym_i64] = ACTIONS(4826), + [anon_sym_u8] = ACTIONS(4826), + [anon_sym_u16] = ACTIONS(4826), + [anon_sym_u32] = ACTIONS(4826), + [anon_sym_u64] = ACTIONS(4826), + [anon_sym_isize] = ACTIONS(4826), + [anon_sym_usize] = ACTIONS(4826), + [anon_sym_f32] = ACTIONS(4826), + [anon_sym_f64] = ACTIONS(4826), + [anon_sym_c_char] = ACTIONS(4826), + [anon_sym_c_schar] = ACTIONS(4826), + [anon_sym_c_uchar] = ACTIONS(4826), + [anon_sym_c_short] = ACTIONS(4826), + [anon_sym_c_ushort] = ACTIONS(4826), + [anon_sym_c_int] = ACTIONS(4826), + [anon_sym_c_uint] = ACTIONS(4826), + [anon_sym_c_long] = ACTIONS(4826), + [anon_sym_c_ulong] = ACTIONS(4826), + [anon_sym_c_longlong] = ACTIONS(4826), + [anon_sym_c_ulonglong] = ACTIONS(4826), + [anon_sym_c_float] = ACTIONS(4826), + [anon_sym_c_double] = ACTIONS(4826), + [anon_sym_c_longdouble] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4824), + [anon_sym_orelse] = ACTIONS(4826), + [anon_sym_or] = ACTIONS(4826), + [anon_sym_and] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_AMP] = ACTIONS(4824), + [anon_sym_xor] = ACTIONS(4826), + [anon_sym_LT_LT] = ACTIONS(4826), + [anon_sym_GT_GT] = ACTIONS(4824), + [anon_sym_LT_LT_PIPE] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_catch] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_CARET] = ACTIONS(4824), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4824), + }, + [STATE(7319)] = { + [sym_identifier] = ACTIONS(4830), + [anon_sym_func] = ACTIONS(4830), + [anon_sym_c_func] = ACTIONS(4830), + [anon_sym_struct] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_struct_type_BANG] = ACTIONS(4828), + [anon_sym_QMARK] = ACTIONS(4828), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_void] = ACTIONS(4830), + [anon_sym_noreturn] = ACTIONS(4830), + [anon_sym_type] = ACTIONS(4830), + [anon_sym_anyopaque] = ACTIONS(4830), + [anon_sym_bool] = ACTIONS(4830), + [anon_sym_int] = ACTIONS(4830), + [anon_sym_uint] = ACTIONS(4830), + [anon_sym_float] = ACTIONS(4830), + [anon_sym_range] = ACTIONS(4830), + [anon_sym_i8] = ACTIONS(4830), + [anon_sym_i16] = ACTIONS(4830), + [anon_sym_i32] = ACTIONS(4830), + [anon_sym_i64] = ACTIONS(4830), + [anon_sym_u8] = ACTIONS(4830), + [anon_sym_u16] = ACTIONS(4830), + [anon_sym_u32] = ACTIONS(4830), + [anon_sym_u64] = ACTIONS(4830), + [anon_sym_isize] = ACTIONS(4830), + [anon_sym_usize] = ACTIONS(4830), + [anon_sym_f32] = ACTIONS(4830), + [anon_sym_f64] = ACTIONS(4830), + [anon_sym_c_char] = ACTIONS(4830), + [anon_sym_c_schar] = ACTIONS(4830), + [anon_sym_c_uchar] = ACTIONS(4830), + [anon_sym_c_short] = ACTIONS(4830), + [anon_sym_c_ushort] = ACTIONS(4830), + [anon_sym_c_int] = ACTIONS(4830), + [anon_sym_c_uint] = ACTIONS(4830), + [anon_sym_c_long] = ACTIONS(4830), + [anon_sym_c_ulong] = ACTIONS(4830), + [anon_sym_c_longlong] = ACTIONS(4830), + [anon_sym_c_ulonglong] = ACTIONS(4830), + [anon_sym_c_float] = ACTIONS(4830), + [anon_sym_c_double] = ACTIONS(4830), + [anon_sym_c_longdouble] = ACTIONS(4830), + [anon_sym_else] = ACTIONS(4830), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_orelse] = ACTIONS(4830), + [anon_sym_or] = ACTIONS(4830), + [anon_sym_and] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(4828), + [anon_sym_xor] = ACTIONS(4830), + [anon_sym_LT_LT] = ACTIONS(4830), + [anon_sym_GT_GT] = ACTIONS(4828), + [anon_sym_LT_LT_PIPE] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_catch] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4830), + [anon_sym_CARET] = ACTIONS(4828), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4828), + }, + [STATE(7320)] = { + [sym_identifier] = ACTIONS(4834), + [anon_sym_func] = ACTIONS(4834), + [anon_sym_c_func] = ACTIONS(4834), + [anon_sym_struct] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_COMMA] = ACTIONS(4832), + [anon_sym_RBRACE] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_struct_type_BANG] = ACTIONS(4832), + [anon_sym_QMARK] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4832), + [anon_sym_void] = ACTIONS(4834), + [anon_sym_noreturn] = ACTIONS(4834), + [anon_sym_type] = ACTIONS(4834), + [anon_sym_anyopaque] = ACTIONS(4834), + [anon_sym_bool] = ACTIONS(4834), + [anon_sym_int] = ACTIONS(4834), + [anon_sym_uint] = ACTIONS(4834), + [anon_sym_float] = ACTIONS(4834), + [anon_sym_range] = ACTIONS(4834), + [anon_sym_i8] = ACTIONS(4834), + [anon_sym_i16] = ACTIONS(4834), + [anon_sym_i32] = ACTIONS(4834), + [anon_sym_i64] = ACTIONS(4834), + [anon_sym_u8] = ACTIONS(4834), + [anon_sym_u16] = ACTIONS(4834), + [anon_sym_u32] = ACTIONS(4834), + [anon_sym_u64] = ACTIONS(4834), + [anon_sym_isize] = ACTIONS(4834), + [anon_sym_usize] = ACTIONS(4834), + [anon_sym_f32] = ACTIONS(4834), + [anon_sym_f64] = ACTIONS(4834), + [anon_sym_c_char] = ACTIONS(4834), + [anon_sym_c_schar] = ACTIONS(4834), + [anon_sym_c_uchar] = ACTIONS(4834), + [anon_sym_c_short] = ACTIONS(4834), + [anon_sym_c_ushort] = ACTIONS(4834), + [anon_sym_c_int] = ACTIONS(4834), + [anon_sym_c_uint] = ACTIONS(4834), + [anon_sym_c_long] = ACTIONS(4834), + [anon_sym_c_ulong] = ACTIONS(4834), + [anon_sym_c_longlong] = ACTIONS(4834), + [anon_sym_c_ulonglong] = ACTIONS(4834), + [anon_sym_c_float] = ACTIONS(4834), + [anon_sym_c_double] = ACTIONS(4834), + [anon_sym_c_longdouble] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4832), + [anon_sym_orelse] = ACTIONS(4834), + [anon_sym_or] = ACTIONS(4834), + [anon_sym_and] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4832), + [anon_sym_AMP] = ACTIONS(4832), + [anon_sym_xor] = ACTIONS(4834), + [anon_sym_LT_LT] = ACTIONS(4834), + [anon_sym_GT_GT] = ACTIONS(4832), + [anon_sym_LT_LT_PIPE] = ACTIONS(4832), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_catch] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_CARET] = ACTIONS(4832), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4832), + }, + [STATE(7321)] = { + [sym_identifier] = ACTIONS(4838), + [anon_sym_func] = ACTIONS(4838), + [anon_sym_c_func] = ACTIONS(4838), + [anon_sym_struct] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4836), + [anon_sym_PIPE] = ACTIONS(4836), + [anon_sym_struct_type_BANG] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4836), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_void] = ACTIONS(4838), + [anon_sym_noreturn] = ACTIONS(4838), + [anon_sym_type] = ACTIONS(4838), + [anon_sym_anyopaque] = ACTIONS(4838), + [anon_sym_bool] = ACTIONS(4838), + [anon_sym_int] = ACTIONS(4838), + [anon_sym_uint] = ACTIONS(4838), + [anon_sym_float] = ACTIONS(4838), + [anon_sym_range] = ACTIONS(4838), + [anon_sym_i8] = ACTIONS(4838), + [anon_sym_i16] = ACTIONS(4838), + [anon_sym_i32] = ACTIONS(4838), + [anon_sym_i64] = ACTIONS(4838), + [anon_sym_u8] = ACTIONS(4838), + [anon_sym_u16] = ACTIONS(4838), + [anon_sym_u32] = ACTIONS(4838), + [anon_sym_u64] = ACTIONS(4838), + [anon_sym_isize] = ACTIONS(4838), + [anon_sym_usize] = ACTIONS(4838), + [anon_sym_f32] = ACTIONS(4838), + [anon_sym_f64] = ACTIONS(4838), + [anon_sym_c_char] = ACTIONS(4838), + [anon_sym_c_schar] = ACTIONS(4838), + [anon_sym_c_uchar] = ACTIONS(4838), + [anon_sym_c_short] = ACTIONS(4838), + [anon_sym_c_ushort] = ACTIONS(4838), + [anon_sym_c_int] = ACTIONS(4838), + [anon_sym_c_uint] = ACTIONS(4838), + [anon_sym_c_long] = ACTIONS(4838), + [anon_sym_c_ulong] = ACTIONS(4838), + [anon_sym_c_longlong] = ACTIONS(4838), + [anon_sym_c_ulonglong] = ACTIONS(4838), + [anon_sym_c_float] = ACTIONS(4838), + [anon_sym_c_double] = ACTIONS(4838), + [anon_sym_c_longdouble] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4836), + [anon_sym_orelse] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4836), + [anon_sym_xor] = ACTIONS(4838), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4836), + [anon_sym_LT_LT_PIPE] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_catch] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4836), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4836), + }, + [STATE(7322)] = { + [sym_identifier] = ACTIONS(4842), + [anon_sym_func] = ACTIONS(4842), + [anon_sym_c_func] = ACTIONS(4842), + [anon_sym_struct] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_struct_type_BANG] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_void] = ACTIONS(4842), + [anon_sym_noreturn] = ACTIONS(4842), + [anon_sym_type] = ACTIONS(4842), + [anon_sym_anyopaque] = ACTIONS(4842), + [anon_sym_bool] = ACTIONS(4842), + [anon_sym_int] = ACTIONS(4842), + [anon_sym_uint] = ACTIONS(4842), + [anon_sym_float] = ACTIONS(4842), + [anon_sym_range] = ACTIONS(4842), + [anon_sym_i8] = ACTIONS(4842), + [anon_sym_i16] = ACTIONS(4842), + [anon_sym_i32] = ACTIONS(4842), + [anon_sym_i64] = ACTIONS(4842), + [anon_sym_u8] = ACTIONS(4842), + [anon_sym_u16] = ACTIONS(4842), + [anon_sym_u32] = ACTIONS(4842), + [anon_sym_u64] = ACTIONS(4842), + [anon_sym_isize] = ACTIONS(4842), + [anon_sym_usize] = ACTIONS(4842), + [anon_sym_f32] = ACTIONS(4842), + [anon_sym_f64] = ACTIONS(4842), + [anon_sym_c_char] = ACTIONS(4842), + [anon_sym_c_schar] = ACTIONS(4842), + [anon_sym_c_uchar] = ACTIONS(4842), + [anon_sym_c_short] = ACTIONS(4842), + [anon_sym_c_ushort] = ACTIONS(4842), + [anon_sym_c_int] = ACTIONS(4842), + [anon_sym_c_uint] = ACTIONS(4842), + [anon_sym_c_long] = ACTIONS(4842), + [anon_sym_c_ulong] = ACTIONS(4842), + [anon_sym_c_longlong] = ACTIONS(4842), + [anon_sym_c_ulonglong] = ACTIONS(4842), + [anon_sym_c_float] = ACTIONS(4842), + [anon_sym_c_double] = ACTIONS(4842), + [anon_sym_c_longdouble] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4840), + [anon_sym_orelse] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4840), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4840), + [anon_sym_LT_LT_PIPE] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_catch] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4840), + }, + [STATE(7323)] = { + [sym_identifier] = ACTIONS(4846), + [anon_sym_func] = ACTIONS(4846), + [anon_sym_c_func] = ACTIONS(4846), + [anon_sym_struct] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_struct_type_BANG] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_void] = ACTIONS(4846), + [anon_sym_noreturn] = ACTIONS(4846), + [anon_sym_type] = ACTIONS(4846), + [anon_sym_anyopaque] = ACTIONS(4846), + [anon_sym_bool] = ACTIONS(4846), + [anon_sym_int] = ACTIONS(4846), + [anon_sym_uint] = ACTIONS(4846), + [anon_sym_float] = ACTIONS(4846), + [anon_sym_range] = ACTIONS(4846), + [anon_sym_i8] = ACTIONS(4846), + [anon_sym_i16] = ACTIONS(4846), + [anon_sym_i32] = ACTIONS(4846), + [anon_sym_i64] = ACTIONS(4846), + [anon_sym_u8] = ACTIONS(4846), + [anon_sym_u16] = ACTIONS(4846), + [anon_sym_u32] = ACTIONS(4846), + [anon_sym_u64] = ACTIONS(4846), + [anon_sym_isize] = ACTIONS(4846), + [anon_sym_usize] = ACTIONS(4846), + [anon_sym_f32] = ACTIONS(4846), + [anon_sym_f64] = ACTIONS(4846), + [anon_sym_c_char] = ACTIONS(4846), + [anon_sym_c_schar] = ACTIONS(4846), + [anon_sym_c_uchar] = ACTIONS(4846), + [anon_sym_c_short] = ACTIONS(4846), + [anon_sym_c_ushort] = ACTIONS(4846), + [anon_sym_c_int] = ACTIONS(4846), + [anon_sym_c_uint] = ACTIONS(4846), + [anon_sym_c_long] = ACTIONS(4846), + [anon_sym_c_ulong] = ACTIONS(4846), + [anon_sym_c_longlong] = ACTIONS(4846), + [anon_sym_c_ulonglong] = ACTIONS(4846), + [anon_sym_c_float] = ACTIONS(4846), + [anon_sym_c_double] = ACTIONS(4846), + [anon_sym_c_longdouble] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), + [anon_sym_orelse] = ACTIONS(4846), + [anon_sym_or] = ACTIONS(4846), + [anon_sym_and] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4844), + [anon_sym_xor] = ACTIONS(4846), + [anon_sym_LT_LT] = ACTIONS(4846), + [anon_sym_GT_GT] = ACTIONS(4844), + [anon_sym_LT_LT_PIPE] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_catch] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_CARET] = ACTIONS(4844), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4844), + }, + [STATE(7324)] = { + [sym_identifier] = ACTIONS(4850), + [anon_sym_func] = ACTIONS(4850), + [anon_sym_c_func] = ACTIONS(4850), + [anon_sym_struct] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_struct_type_BANG] = ACTIONS(4848), + [anon_sym_QMARK] = ACTIONS(4848), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_void] = ACTIONS(4850), + [anon_sym_noreturn] = ACTIONS(4850), + [anon_sym_type] = ACTIONS(4850), + [anon_sym_anyopaque] = ACTIONS(4850), + [anon_sym_bool] = ACTIONS(4850), + [anon_sym_int] = ACTIONS(4850), + [anon_sym_uint] = ACTIONS(4850), + [anon_sym_float] = ACTIONS(4850), + [anon_sym_range] = ACTIONS(4850), + [anon_sym_i8] = ACTIONS(4850), + [anon_sym_i16] = ACTIONS(4850), + [anon_sym_i32] = ACTIONS(4850), + [anon_sym_i64] = ACTIONS(4850), + [anon_sym_u8] = ACTIONS(4850), + [anon_sym_u16] = ACTIONS(4850), + [anon_sym_u32] = ACTIONS(4850), + [anon_sym_u64] = ACTIONS(4850), + [anon_sym_isize] = ACTIONS(4850), + [anon_sym_usize] = ACTIONS(4850), + [anon_sym_f32] = ACTIONS(4850), + [anon_sym_f64] = ACTIONS(4850), + [anon_sym_c_char] = ACTIONS(4850), + [anon_sym_c_schar] = ACTIONS(4850), + [anon_sym_c_uchar] = ACTIONS(4850), + [anon_sym_c_short] = ACTIONS(4850), + [anon_sym_c_ushort] = ACTIONS(4850), + [anon_sym_c_int] = ACTIONS(4850), + [anon_sym_c_uint] = ACTIONS(4850), + [anon_sym_c_long] = ACTIONS(4850), + [anon_sym_c_ulong] = ACTIONS(4850), + [anon_sym_c_longlong] = ACTIONS(4850), + [anon_sym_c_ulonglong] = ACTIONS(4850), + [anon_sym_c_float] = ACTIONS(4850), + [anon_sym_c_double] = ACTIONS(4850), + [anon_sym_c_longdouble] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_orelse] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_AMP] = ACTIONS(4848), + [anon_sym_xor] = ACTIONS(4850), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4848), + [anon_sym_LT_LT_PIPE] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_catch] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4848), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4848), + }, + [STATE(7325)] = { + [sym_identifier] = ACTIONS(4854), + [anon_sym_func] = ACTIONS(4854), + [anon_sym_c_func] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(4852), + [anon_sym_struct_type_BANG] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4852), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_void] = ACTIONS(4854), + [anon_sym_noreturn] = ACTIONS(4854), + [anon_sym_type] = ACTIONS(4854), + [anon_sym_anyopaque] = ACTIONS(4854), + [anon_sym_bool] = ACTIONS(4854), + [anon_sym_int] = ACTIONS(4854), + [anon_sym_uint] = ACTIONS(4854), + [anon_sym_float] = ACTIONS(4854), + [anon_sym_range] = ACTIONS(4854), + [anon_sym_i8] = ACTIONS(4854), + [anon_sym_i16] = ACTIONS(4854), + [anon_sym_i32] = ACTIONS(4854), + [anon_sym_i64] = ACTIONS(4854), + [anon_sym_u8] = ACTIONS(4854), + [anon_sym_u16] = ACTIONS(4854), + [anon_sym_u32] = ACTIONS(4854), + [anon_sym_u64] = ACTIONS(4854), + [anon_sym_isize] = ACTIONS(4854), + [anon_sym_usize] = ACTIONS(4854), + [anon_sym_f32] = ACTIONS(4854), + [anon_sym_f64] = ACTIONS(4854), + [anon_sym_c_char] = ACTIONS(4854), + [anon_sym_c_schar] = ACTIONS(4854), + [anon_sym_c_uchar] = ACTIONS(4854), + [anon_sym_c_short] = ACTIONS(4854), + [anon_sym_c_ushort] = ACTIONS(4854), + [anon_sym_c_int] = ACTIONS(4854), + [anon_sym_c_uint] = ACTIONS(4854), + [anon_sym_c_long] = ACTIONS(4854), + [anon_sym_c_ulong] = ACTIONS(4854), + [anon_sym_c_longlong] = ACTIONS(4854), + [anon_sym_c_ulonglong] = ACTIONS(4854), + [anon_sym_c_float] = ACTIONS(4854), + [anon_sym_c_double] = ACTIONS(4854), + [anon_sym_c_longdouble] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4852), + [anon_sym_orelse] = ACTIONS(4854), + [anon_sym_or] = ACTIONS(4854), + [anon_sym_and] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4852), + [anon_sym_xor] = ACTIONS(4854), + [anon_sym_LT_LT] = ACTIONS(4854), + [anon_sym_GT_GT] = ACTIONS(4852), + [anon_sym_LT_LT_PIPE] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_catch] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_CARET] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4852), + }, + [STATE(7326)] = { + [sym_identifier] = ACTIONS(4858), + [anon_sym_func] = ACTIONS(4858), + [anon_sym_c_func] = ACTIONS(4858), + [anon_sym_struct] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_struct_type_BANG] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_void] = ACTIONS(4858), + [anon_sym_noreturn] = ACTIONS(4858), + [anon_sym_type] = ACTIONS(4858), + [anon_sym_anyopaque] = ACTIONS(4858), + [anon_sym_bool] = ACTIONS(4858), + [anon_sym_int] = ACTIONS(4858), + [anon_sym_uint] = ACTIONS(4858), + [anon_sym_float] = ACTIONS(4858), + [anon_sym_range] = ACTIONS(4858), + [anon_sym_i8] = ACTIONS(4858), + [anon_sym_i16] = ACTIONS(4858), + [anon_sym_i32] = ACTIONS(4858), + [anon_sym_i64] = ACTIONS(4858), + [anon_sym_u8] = ACTIONS(4858), + [anon_sym_u16] = ACTIONS(4858), + [anon_sym_u32] = ACTIONS(4858), + [anon_sym_u64] = ACTIONS(4858), + [anon_sym_isize] = ACTIONS(4858), + [anon_sym_usize] = ACTIONS(4858), + [anon_sym_f32] = ACTIONS(4858), + [anon_sym_f64] = ACTIONS(4858), + [anon_sym_c_char] = ACTIONS(4858), + [anon_sym_c_schar] = ACTIONS(4858), + [anon_sym_c_uchar] = ACTIONS(4858), + [anon_sym_c_short] = ACTIONS(4858), + [anon_sym_c_ushort] = ACTIONS(4858), + [anon_sym_c_int] = ACTIONS(4858), + [anon_sym_c_uint] = ACTIONS(4858), + [anon_sym_c_long] = ACTIONS(4858), + [anon_sym_c_ulong] = ACTIONS(4858), + [anon_sym_c_longlong] = ACTIONS(4858), + [anon_sym_c_ulonglong] = ACTIONS(4858), + [anon_sym_c_float] = ACTIONS(4858), + [anon_sym_c_double] = ACTIONS(4858), + [anon_sym_c_longdouble] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4856), + [anon_sym_orelse] = ACTIONS(4858), + [anon_sym_or] = ACTIONS(4858), + [anon_sym_and] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_xor] = ACTIONS(4858), + [anon_sym_LT_LT] = ACTIONS(4858), + [anon_sym_GT_GT] = ACTIONS(4856), + [anon_sym_LT_LT_PIPE] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_catch] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_CARET] = ACTIONS(4856), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4856), + }, + [STATE(7327)] = { + [sym_identifier] = ACTIONS(4862), + [anon_sym_func] = ACTIONS(4862), + [anon_sym_c_func] = ACTIONS(4862), + [anon_sym_struct] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4860), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_struct_type_BANG] = ACTIONS(4860), + [anon_sym_QMARK] = ACTIONS(4860), + [anon_sym_AT] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_void] = ACTIONS(4862), + [anon_sym_noreturn] = ACTIONS(4862), + [anon_sym_type] = ACTIONS(4862), + [anon_sym_anyopaque] = ACTIONS(4862), + [anon_sym_bool] = ACTIONS(4862), + [anon_sym_int] = ACTIONS(4862), + [anon_sym_uint] = ACTIONS(4862), + [anon_sym_float] = ACTIONS(4862), + [anon_sym_range] = ACTIONS(4862), + [anon_sym_i8] = ACTIONS(4862), + [anon_sym_i16] = ACTIONS(4862), + [anon_sym_i32] = ACTIONS(4862), + [anon_sym_i64] = ACTIONS(4862), + [anon_sym_u8] = ACTIONS(4862), + [anon_sym_u16] = ACTIONS(4862), + [anon_sym_u32] = ACTIONS(4862), + [anon_sym_u64] = ACTIONS(4862), + [anon_sym_isize] = ACTIONS(4862), + [anon_sym_usize] = ACTIONS(4862), + [anon_sym_f32] = ACTIONS(4862), + [anon_sym_f64] = ACTIONS(4862), + [anon_sym_c_char] = ACTIONS(4862), + [anon_sym_c_schar] = ACTIONS(4862), + [anon_sym_c_uchar] = ACTIONS(4862), + [anon_sym_c_short] = ACTIONS(4862), + [anon_sym_c_ushort] = ACTIONS(4862), + [anon_sym_c_int] = ACTIONS(4862), + [anon_sym_c_uint] = ACTIONS(4862), + [anon_sym_c_long] = ACTIONS(4862), + [anon_sym_c_ulong] = ACTIONS(4862), + [anon_sym_c_longlong] = ACTIONS(4862), + [anon_sym_c_ulonglong] = ACTIONS(4862), + [anon_sym_c_float] = ACTIONS(4862), + [anon_sym_c_double] = ACTIONS(4862), + [anon_sym_c_longdouble] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4860), + [anon_sym_orelse] = ACTIONS(4862), + [anon_sym_or] = ACTIONS(4862), + [anon_sym_and] = ACTIONS(4862), + [anon_sym_EQ_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_AMP] = ACTIONS(4860), + [anon_sym_xor] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4862), + [anon_sym_GT_GT] = ACTIONS(4860), + [anon_sym_LT_LT_PIPE] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4860), + [anon_sym_SLASH] = ACTIONS(4860), + [anon_sym_catch] = ACTIONS(4862), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_CARET] = ACTIONS(4860), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4860), + }, + [STATE(7328)] = { + [sym_identifier] = ACTIONS(4866), + [anon_sym_func] = ACTIONS(4866), + [anon_sym_c_func] = ACTIONS(4866), + [anon_sym_struct] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4864), + [anon_sym_PIPE] = ACTIONS(4864), + [anon_sym_struct_type_BANG] = ACTIONS(4864), + [anon_sym_QMARK] = ACTIONS(4864), + [anon_sym_AT] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_void] = ACTIONS(4866), + [anon_sym_noreturn] = ACTIONS(4866), + [anon_sym_type] = ACTIONS(4866), + [anon_sym_anyopaque] = ACTIONS(4866), + [anon_sym_bool] = ACTIONS(4866), + [anon_sym_int] = ACTIONS(4866), + [anon_sym_uint] = ACTIONS(4866), + [anon_sym_float] = ACTIONS(4866), + [anon_sym_range] = ACTIONS(4866), + [anon_sym_i8] = ACTIONS(4866), + [anon_sym_i16] = ACTIONS(4866), + [anon_sym_i32] = ACTIONS(4866), + [anon_sym_i64] = ACTIONS(4866), + [anon_sym_u8] = ACTIONS(4866), + [anon_sym_u16] = ACTIONS(4866), + [anon_sym_u32] = ACTIONS(4866), + [anon_sym_u64] = ACTIONS(4866), + [anon_sym_isize] = ACTIONS(4866), + [anon_sym_usize] = ACTIONS(4866), + [anon_sym_f32] = ACTIONS(4866), + [anon_sym_f64] = ACTIONS(4866), + [anon_sym_c_char] = ACTIONS(4866), + [anon_sym_c_schar] = ACTIONS(4866), + [anon_sym_c_uchar] = ACTIONS(4866), + [anon_sym_c_short] = ACTIONS(4866), + [anon_sym_c_ushort] = ACTIONS(4866), + [anon_sym_c_int] = ACTIONS(4866), + [anon_sym_c_uint] = ACTIONS(4866), + [anon_sym_c_long] = ACTIONS(4866), + [anon_sym_c_ulong] = ACTIONS(4866), + [anon_sym_c_longlong] = ACTIONS(4866), + [anon_sym_c_ulonglong] = ACTIONS(4866), + [anon_sym_c_float] = ACTIONS(4866), + [anon_sym_c_double] = ACTIONS(4866), + [anon_sym_c_longdouble] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4864), + [anon_sym_orelse] = ACTIONS(4866), + [anon_sym_or] = ACTIONS(4866), + [anon_sym_and] = ACTIONS(4866), + [anon_sym_EQ_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(4864), + [anon_sym_xor] = ACTIONS(4866), + [anon_sym_LT_LT] = ACTIONS(4866), + [anon_sym_GT_GT] = ACTIONS(4864), + [anon_sym_LT_LT_PIPE] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_catch] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_CARET] = ACTIONS(4864), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4864), + }, + [STATE(7329)] = { + [sym_identifier] = ACTIONS(4870), + [anon_sym_func] = ACTIONS(4870), + [anon_sym_c_func] = ACTIONS(4870), + [anon_sym_struct] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4868), + [anon_sym_PIPE] = ACTIONS(4868), + [anon_sym_struct_type_BANG] = ACTIONS(4868), + [anon_sym_QMARK] = ACTIONS(4868), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_void] = ACTIONS(4870), + [anon_sym_noreturn] = ACTIONS(4870), + [anon_sym_type] = ACTIONS(4870), + [anon_sym_anyopaque] = ACTIONS(4870), + [anon_sym_bool] = ACTIONS(4870), + [anon_sym_int] = ACTIONS(4870), + [anon_sym_uint] = ACTIONS(4870), + [anon_sym_float] = ACTIONS(4870), + [anon_sym_range] = ACTIONS(4870), + [anon_sym_i8] = ACTIONS(4870), + [anon_sym_i16] = ACTIONS(4870), + [anon_sym_i32] = ACTIONS(4870), + [anon_sym_i64] = ACTIONS(4870), + [anon_sym_u8] = ACTIONS(4870), + [anon_sym_u16] = ACTIONS(4870), + [anon_sym_u32] = ACTIONS(4870), + [anon_sym_u64] = ACTIONS(4870), + [anon_sym_isize] = ACTIONS(4870), + [anon_sym_usize] = ACTIONS(4870), + [anon_sym_f32] = ACTIONS(4870), + [anon_sym_f64] = ACTIONS(4870), + [anon_sym_c_char] = ACTIONS(4870), + [anon_sym_c_schar] = ACTIONS(4870), + [anon_sym_c_uchar] = ACTIONS(4870), + [anon_sym_c_short] = ACTIONS(4870), + [anon_sym_c_ushort] = ACTIONS(4870), + [anon_sym_c_int] = ACTIONS(4870), + [anon_sym_c_uint] = ACTIONS(4870), + [anon_sym_c_long] = ACTIONS(4870), + [anon_sym_c_ulong] = ACTIONS(4870), + [anon_sym_c_longlong] = ACTIONS(4870), + [anon_sym_c_ulonglong] = ACTIONS(4870), + [anon_sym_c_float] = ACTIONS(4870), + [anon_sym_c_double] = ACTIONS(4870), + [anon_sym_c_longdouble] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4868), + [anon_sym_orelse] = ACTIONS(4870), + [anon_sym_or] = ACTIONS(4870), + [anon_sym_and] = ACTIONS(4870), + [anon_sym_EQ_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_AMP] = ACTIONS(4868), + [anon_sym_xor] = ACTIONS(4870), + [anon_sym_LT_LT] = ACTIONS(4870), + [anon_sym_GT_GT] = ACTIONS(4868), + [anon_sym_LT_LT_PIPE] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_catch] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_CARET] = ACTIONS(4868), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4868), + }, + [STATE(7330)] = { + [sym_identifier] = ACTIONS(4874), + [anon_sym_func] = ACTIONS(4874), + [anon_sym_c_func] = ACTIONS(4874), + [anon_sym_struct] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_struct_type_BANG] = ACTIONS(4872), + [anon_sym_QMARK] = ACTIONS(4872), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_void] = ACTIONS(4874), + [anon_sym_noreturn] = ACTIONS(4874), + [anon_sym_type] = ACTIONS(4874), + [anon_sym_anyopaque] = ACTIONS(4874), + [anon_sym_bool] = ACTIONS(4874), + [anon_sym_int] = ACTIONS(4874), + [anon_sym_uint] = ACTIONS(4874), + [anon_sym_float] = ACTIONS(4874), + [anon_sym_range] = ACTIONS(4874), + [anon_sym_i8] = ACTIONS(4874), + [anon_sym_i16] = ACTIONS(4874), + [anon_sym_i32] = ACTIONS(4874), + [anon_sym_i64] = ACTIONS(4874), + [anon_sym_u8] = ACTIONS(4874), + [anon_sym_u16] = ACTIONS(4874), + [anon_sym_u32] = ACTIONS(4874), + [anon_sym_u64] = ACTIONS(4874), + [anon_sym_isize] = ACTIONS(4874), + [anon_sym_usize] = ACTIONS(4874), + [anon_sym_f32] = ACTIONS(4874), + [anon_sym_f64] = ACTIONS(4874), + [anon_sym_c_char] = ACTIONS(4874), + [anon_sym_c_schar] = ACTIONS(4874), + [anon_sym_c_uchar] = ACTIONS(4874), + [anon_sym_c_short] = ACTIONS(4874), + [anon_sym_c_ushort] = ACTIONS(4874), + [anon_sym_c_int] = ACTIONS(4874), + [anon_sym_c_uint] = ACTIONS(4874), + [anon_sym_c_long] = ACTIONS(4874), + [anon_sym_c_ulong] = ACTIONS(4874), + [anon_sym_c_longlong] = ACTIONS(4874), + [anon_sym_c_ulonglong] = ACTIONS(4874), + [anon_sym_c_float] = ACTIONS(4874), + [anon_sym_c_double] = ACTIONS(4874), + [anon_sym_c_longdouble] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4872), + [anon_sym_orelse] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_AMP] = ACTIONS(4872), + [anon_sym_xor] = ACTIONS(4874), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4872), + [anon_sym_LT_LT_PIPE] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_catch] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4872), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4872), + }, + [STATE(7331)] = { + [sym_identifier] = ACTIONS(4878), + [anon_sym_func] = ACTIONS(4878), + [anon_sym_c_func] = ACTIONS(4878), + [anon_sym_struct] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_struct_type_BANG] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_void] = ACTIONS(4878), + [anon_sym_noreturn] = ACTIONS(4878), + [anon_sym_type] = ACTIONS(4878), + [anon_sym_anyopaque] = ACTIONS(4878), + [anon_sym_bool] = ACTIONS(4878), + [anon_sym_int] = ACTIONS(4878), + [anon_sym_uint] = ACTIONS(4878), + [anon_sym_float] = ACTIONS(4878), + [anon_sym_range] = ACTIONS(4878), + [anon_sym_i8] = ACTIONS(4878), + [anon_sym_i16] = ACTIONS(4878), + [anon_sym_i32] = ACTIONS(4878), + [anon_sym_i64] = ACTIONS(4878), + [anon_sym_u8] = ACTIONS(4878), + [anon_sym_u16] = ACTIONS(4878), + [anon_sym_u32] = ACTIONS(4878), + [anon_sym_u64] = ACTIONS(4878), + [anon_sym_isize] = ACTIONS(4878), + [anon_sym_usize] = ACTIONS(4878), + [anon_sym_f32] = ACTIONS(4878), + [anon_sym_f64] = ACTIONS(4878), + [anon_sym_c_char] = ACTIONS(4878), + [anon_sym_c_schar] = ACTIONS(4878), + [anon_sym_c_uchar] = ACTIONS(4878), + [anon_sym_c_short] = ACTIONS(4878), + [anon_sym_c_ushort] = ACTIONS(4878), + [anon_sym_c_int] = ACTIONS(4878), + [anon_sym_c_uint] = ACTIONS(4878), + [anon_sym_c_long] = ACTIONS(4878), + [anon_sym_c_ulong] = ACTIONS(4878), + [anon_sym_c_longlong] = ACTIONS(4878), + [anon_sym_c_ulonglong] = ACTIONS(4878), + [anon_sym_c_float] = ACTIONS(4878), + [anon_sym_c_double] = ACTIONS(4878), + [anon_sym_c_longdouble] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4876), + [anon_sym_orelse] = ACTIONS(4878), + [anon_sym_or] = ACTIONS(4878), + [anon_sym_and] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_xor] = ACTIONS(4878), + [anon_sym_LT_LT] = ACTIONS(4878), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_LT_LT_PIPE] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_catch] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_CARET] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4876), + }, + [STATE(7332)] = { + [sym_identifier] = ACTIONS(4882), + [anon_sym_func] = ACTIONS(4882), + [anon_sym_c_func] = ACTIONS(4882), + [anon_sym_struct] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4880), + [anon_sym_struct_type_BANG] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_void] = ACTIONS(4882), + [anon_sym_noreturn] = ACTIONS(4882), + [anon_sym_type] = ACTIONS(4882), + [anon_sym_anyopaque] = ACTIONS(4882), + [anon_sym_bool] = ACTIONS(4882), + [anon_sym_int] = ACTIONS(4882), + [anon_sym_uint] = ACTIONS(4882), + [anon_sym_float] = ACTIONS(4882), + [anon_sym_range] = ACTIONS(4882), + [anon_sym_i8] = ACTIONS(4882), + [anon_sym_i16] = ACTIONS(4882), + [anon_sym_i32] = ACTIONS(4882), + [anon_sym_i64] = ACTIONS(4882), + [anon_sym_u8] = ACTIONS(4882), + [anon_sym_u16] = ACTIONS(4882), + [anon_sym_u32] = ACTIONS(4882), + [anon_sym_u64] = ACTIONS(4882), + [anon_sym_isize] = ACTIONS(4882), + [anon_sym_usize] = ACTIONS(4882), + [anon_sym_f32] = ACTIONS(4882), + [anon_sym_f64] = ACTIONS(4882), + [anon_sym_c_char] = ACTIONS(4882), + [anon_sym_c_schar] = ACTIONS(4882), + [anon_sym_c_uchar] = ACTIONS(4882), + [anon_sym_c_short] = ACTIONS(4882), + [anon_sym_c_ushort] = ACTIONS(4882), + [anon_sym_c_int] = ACTIONS(4882), + [anon_sym_c_uint] = ACTIONS(4882), + [anon_sym_c_long] = ACTIONS(4882), + [anon_sym_c_ulong] = ACTIONS(4882), + [anon_sym_c_longlong] = ACTIONS(4882), + [anon_sym_c_ulonglong] = ACTIONS(4882), + [anon_sym_c_float] = ACTIONS(4882), + [anon_sym_c_double] = ACTIONS(4882), + [anon_sym_c_longdouble] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4880), + [anon_sym_orelse] = ACTIONS(4882), + [anon_sym_or] = ACTIONS(4882), + [anon_sym_and] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4880), + [anon_sym_xor] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4882), + [anon_sym_GT_GT] = ACTIONS(4880), + [anon_sym_LT_LT_PIPE] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_catch] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_CARET] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4880), + }, + [STATE(7333)] = { + [sym_identifier] = ACTIONS(4886), + [anon_sym_func] = ACTIONS(4886), + [anon_sym_c_func] = ACTIONS(4886), + [anon_sym_struct] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(4884), + [anon_sym_struct_type_BANG] = ACTIONS(4884), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_void] = ACTIONS(4886), + [anon_sym_noreturn] = ACTIONS(4886), + [anon_sym_type] = ACTIONS(4886), + [anon_sym_anyopaque] = ACTIONS(4886), + [anon_sym_bool] = ACTIONS(4886), + [anon_sym_int] = ACTIONS(4886), + [anon_sym_uint] = ACTIONS(4886), + [anon_sym_float] = ACTIONS(4886), + [anon_sym_range] = ACTIONS(4886), + [anon_sym_i8] = ACTIONS(4886), + [anon_sym_i16] = ACTIONS(4886), + [anon_sym_i32] = ACTIONS(4886), + [anon_sym_i64] = ACTIONS(4886), + [anon_sym_u8] = ACTIONS(4886), + [anon_sym_u16] = ACTIONS(4886), + [anon_sym_u32] = ACTIONS(4886), + [anon_sym_u64] = ACTIONS(4886), + [anon_sym_isize] = ACTIONS(4886), + [anon_sym_usize] = ACTIONS(4886), + [anon_sym_f32] = ACTIONS(4886), + [anon_sym_f64] = ACTIONS(4886), + [anon_sym_c_char] = ACTIONS(4886), + [anon_sym_c_schar] = ACTIONS(4886), + [anon_sym_c_uchar] = ACTIONS(4886), + [anon_sym_c_short] = ACTIONS(4886), + [anon_sym_c_ushort] = ACTIONS(4886), + [anon_sym_c_int] = ACTIONS(4886), + [anon_sym_c_uint] = ACTIONS(4886), + [anon_sym_c_long] = ACTIONS(4886), + [anon_sym_c_ulong] = ACTIONS(4886), + [anon_sym_c_longlong] = ACTIONS(4886), + [anon_sym_c_ulonglong] = ACTIONS(4886), + [anon_sym_c_float] = ACTIONS(4886), + [anon_sym_c_double] = ACTIONS(4886), + [anon_sym_c_longdouble] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), + [anon_sym_orelse] = ACTIONS(4886), + [anon_sym_or] = ACTIONS(4886), + [anon_sym_and] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4884), + [anon_sym_xor] = ACTIONS(4886), + [anon_sym_LT_LT] = ACTIONS(4886), + [anon_sym_GT_GT] = ACTIONS(4884), + [anon_sym_LT_LT_PIPE] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_catch] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4884), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4884), + }, + [STATE(7334)] = { + [sym_identifier] = ACTIONS(4890), + [anon_sym_func] = ACTIONS(4890), + [anon_sym_c_func] = ACTIONS(4890), + [anon_sym_struct] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_struct_type_BANG] = ACTIONS(4888), + [anon_sym_QMARK] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_void] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym_type] = ACTIONS(4890), + [anon_sym_anyopaque] = ACTIONS(4890), + [anon_sym_bool] = ACTIONS(4890), + [anon_sym_int] = ACTIONS(4890), + [anon_sym_uint] = ACTIONS(4890), + [anon_sym_float] = ACTIONS(4890), + [anon_sym_range] = ACTIONS(4890), + [anon_sym_i8] = ACTIONS(4890), + [anon_sym_i16] = ACTIONS(4890), + [anon_sym_i32] = ACTIONS(4890), + [anon_sym_i64] = ACTIONS(4890), + [anon_sym_u8] = ACTIONS(4890), + [anon_sym_u16] = ACTIONS(4890), + [anon_sym_u32] = ACTIONS(4890), + [anon_sym_u64] = ACTIONS(4890), + [anon_sym_isize] = ACTIONS(4890), + [anon_sym_usize] = ACTIONS(4890), + [anon_sym_f32] = ACTIONS(4890), + [anon_sym_f64] = ACTIONS(4890), + [anon_sym_c_char] = ACTIONS(4890), + [anon_sym_c_schar] = ACTIONS(4890), + [anon_sym_c_uchar] = ACTIONS(4890), + [anon_sym_c_short] = ACTIONS(4890), + [anon_sym_c_ushort] = ACTIONS(4890), + [anon_sym_c_int] = ACTIONS(4890), + [anon_sym_c_uint] = ACTIONS(4890), + [anon_sym_c_long] = ACTIONS(4890), + [anon_sym_c_ulong] = ACTIONS(4890), + [anon_sym_c_longlong] = ACTIONS(4890), + [anon_sym_c_ulonglong] = ACTIONS(4890), + [anon_sym_c_float] = ACTIONS(4890), + [anon_sym_c_double] = ACTIONS(4890), + [anon_sym_c_longdouble] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), + [anon_sym_orelse] = ACTIONS(4890), + [anon_sym_or] = ACTIONS(4890), + [anon_sym_and] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_AMP] = ACTIONS(4888), + [anon_sym_xor] = ACTIONS(4890), + [anon_sym_LT_LT] = ACTIONS(4890), + [anon_sym_GT_GT] = ACTIONS(4888), + [anon_sym_LT_LT_PIPE] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_catch] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4888), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4888), + }, + [STATE(7335)] = { + [sym_identifier] = ACTIONS(4894), + [anon_sym_func] = ACTIONS(4894), + [anon_sym_c_func] = ACTIONS(4894), + [anon_sym_struct] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4892), + [anon_sym_struct_type_BANG] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_void] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym_type] = ACTIONS(4894), + [anon_sym_anyopaque] = ACTIONS(4894), + [anon_sym_bool] = ACTIONS(4894), + [anon_sym_int] = ACTIONS(4894), + [anon_sym_uint] = ACTIONS(4894), + [anon_sym_float] = ACTIONS(4894), + [anon_sym_range] = ACTIONS(4894), + [anon_sym_i8] = ACTIONS(4894), + [anon_sym_i16] = ACTIONS(4894), + [anon_sym_i32] = ACTIONS(4894), + [anon_sym_i64] = ACTIONS(4894), + [anon_sym_u8] = ACTIONS(4894), + [anon_sym_u16] = ACTIONS(4894), + [anon_sym_u32] = ACTIONS(4894), + [anon_sym_u64] = ACTIONS(4894), + [anon_sym_isize] = ACTIONS(4894), + [anon_sym_usize] = ACTIONS(4894), + [anon_sym_f32] = ACTIONS(4894), + [anon_sym_f64] = ACTIONS(4894), + [anon_sym_c_char] = ACTIONS(4894), + [anon_sym_c_schar] = ACTIONS(4894), + [anon_sym_c_uchar] = ACTIONS(4894), + [anon_sym_c_short] = ACTIONS(4894), + [anon_sym_c_ushort] = ACTIONS(4894), + [anon_sym_c_int] = ACTIONS(4894), + [anon_sym_c_uint] = ACTIONS(4894), + [anon_sym_c_long] = ACTIONS(4894), + [anon_sym_c_ulong] = ACTIONS(4894), + [anon_sym_c_longlong] = ACTIONS(4894), + [anon_sym_c_ulonglong] = ACTIONS(4894), + [anon_sym_c_float] = ACTIONS(4894), + [anon_sym_c_double] = ACTIONS(4894), + [anon_sym_c_longdouble] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4894), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4892), + [anon_sym_orelse] = ACTIONS(4894), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_and] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_xor] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4894), + [anon_sym_GT_GT] = ACTIONS(4892), + [anon_sym_LT_LT_PIPE] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_catch] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4892), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4892), + }, + [STATE(7336)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_func] = ACTIONS(4898), + [anon_sym_c_func] = ACTIONS(4898), + [anon_sym_struct] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_RBRACE] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_struct_type_BANG] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_void] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym_type] = ACTIONS(4898), + [anon_sym_anyopaque] = ACTIONS(4898), + [anon_sym_bool] = ACTIONS(4898), + [anon_sym_int] = ACTIONS(4898), + [anon_sym_uint] = ACTIONS(4898), + [anon_sym_float] = ACTIONS(4898), + [anon_sym_range] = ACTIONS(4898), + [anon_sym_i8] = ACTIONS(4898), + [anon_sym_i16] = ACTIONS(4898), + [anon_sym_i32] = ACTIONS(4898), + [anon_sym_i64] = ACTIONS(4898), + [anon_sym_u8] = ACTIONS(4898), + [anon_sym_u16] = ACTIONS(4898), + [anon_sym_u32] = ACTIONS(4898), + [anon_sym_u64] = ACTIONS(4898), + [anon_sym_isize] = ACTIONS(4898), + [anon_sym_usize] = ACTIONS(4898), + [anon_sym_f32] = ACTIONS(4898), + [anon_sym_f64] = ACTIONS(4898), + [anon_sym_c_char] = ACTIONS(4898), + [anon_sym_c_schar] = ACTIONS(4898), + [anon_sym_c_uchar] = ACTIONS(4898), + [anon_sym_c_short] = ACTIONS(4898), + [anon_sym_c_ushort] = ACTIONS(4898), + [anon_sym_c_int] = ACTIONS(4898), + [anon_sym_c_uint] = ACTIONS(4898), + [anon_sym_c_long] = ACTIONS(4898), + [anon_sym_c_ulong] = ACTIONS(4898), + [anon_sym_c_longlong] = ACTIONS(4898), + [anon_sym_c_ulonglong] = ACTIONS(4898), + [anon_sym_c_float] = ACTIONS(4898), + [anon_sym_c_double] = ACTIONS(4898), + [anon_sym_c_longdouble] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4896), + [anon_sym_orelse] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4896), + [anon_sym_LT_LT_PIPE] = ACTIONS(4896), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_catch] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4896), + }, + [STATE(7337)] = { + [sym_identifier] = ACTIONS(4902), + [anon_sym_func] = ACTIONS(4902), + [anon_sym_c_func] = ACTIONS(4902), + [anon_sym_struct] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_struct_type_BANG] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_void] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym_type] = ACTIONS(4902), + [anon_sym_anyopaque] = ACTIONS(4902), + [anon_sym_bool] = ACTIONS(4902), + [anon_sym_int] = ACTIONS(4902), + [anon_sym_uint] = ACTIONS(4902), + [anon_sym_float] = ACTIONS(4902), + [anon_sym_range] = ACTIONS(4902), + [anon_sym_i8] = ACTIONS(4902), + [anon_sym_i16] = ACTIONS(4902), + [anon_sym_i32] = ACTIONS(4902), + [anon_sym_i64] = ACTIONS(4902), + [anon_sym_u8] = ACTIONS(4902), + [anon_sym_u16] = ACTIONS(4902), + [anon_sym_u32] = ACTIONS(4902), + [anon_sym_u64] = ACTIONS(4902), + [anon_sym_isize] = ACTIONS(4902), + [anon_sym_usize] = ACTIONS(4902), + [anon_sym_f32] = ACTIONS(4902), + [anon_sym_f64] = ACTIONS(4902), + [anon_sym_c_char] = ACTIONS(4902), + [anon_sym_c_schar] = ACTIONS(4902), + [anon_sym_c_uchar] = ACTIONS(4902), + [anon_sym_c_short] = ACTIONS(4902), + [anon_sym_c_ushort] = ACTIONS(4902), + [anon_sym_c_int] = ACTIONS(4902), + [anon_sym_c_uint] = ACTIONS(4902), + [anon_sym_c_long] = ACTIONS(4902), + [anon_sym_c_ulong] = ACTIONS(4902), + [anon_sym_c_longlong] = ACTIONS(4902), + [anon_sym_c_ulonglong] = ACTIONS(4902), + [anon_sym_c_float] = ACTIONS(4902), + [anon_sym_c_double] = ACTIONS(4902), + [anon_sym_c_longdouble] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4900), + [anon_sym_orelse] = ACTIONS(4902), + [anon_sym_or] = ACTIONS(4902), + [anon_sym_and] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_xor] = ACTIONS(4902), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_LT_LT_PIPE] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_catch] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4900), + }, + [STATE(7338)] = { + [sym_identifier] = ACTIONS(4906), + [anon_sym_func] = ACTIONS(4906), + [anon_sym_c_func] = ACTIONS(4906), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_struct_type_BANG] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_void] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym_type] = ACTIONS(4906), + [anon_sym_anyopaque] = ACTIONS(4906), + [anon_sym_bool] = ACTIONS(4906), + [anon_sym_int] = ACTIONS(4906), + [anon_sym_uint] = ACTIONS(4906), + [anon_sym_float] = ACTIONS(4906), + [anon_sym_range] = ACTIONS(4906), + [anon_sym_i8] = ACTIONS(4906), + [anon_sym_i16] = ACTIONS(4906), + [anon_sym_i32] = ACTIONS(4906), + [anon_sym_i64] = ACTIONS(4906), + [anon_sym_u8] = ACTIONS(4906), + [anon_sym_u16] = ACTIONS(4906), + [anon_sym_u32] = ACTIONS(4906), + [anon_sym_u64] = ACTIONS(4906), + [anon_sym_isize] = ACTIONS(4906), + [anon_sym_usize] = ACTIONS(4906), + [anon_sym_f32] = ACTIONS(4906), + [anon_sym_f64] = ACTIONS(4906), + [anon_sym_c_char] = ACTIONS(4906), + [anon_sym_c_schar] = ACTIONS(4906), + [anon_sym_c_uchar] = ACTIONS(4906), + [anon_sym_c_short] = ACTIONS(4906), + [anon_sym_c_ushort] = ACTIONS(4906), + [anon_sym_c_int] = ACTIONS(4906), + [anon_sym_c_uint] = ACTIONS(4906), + [anon_sym_c_long] = ACTIONS(4906), + [anon_sym_c_ulong] = ACTIONS(4906), + [anon_sym_c_longlong] = ACTIONS(4906), + [anon_sym_c_ulonglong] = ACTIONS(4906), + [anon_sym_c_float] = ACTIONS(4906), + [anon_sym_c_double] = ACTIONS(4906), + [anon_sym_c_longdouble] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4904), + [anon_sym_orelse] = ACTIONS(4906), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_and] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4904), + [anon_sym_xor] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4906), + [anon_sym_GT_GT] = ACTIONS(4904), + [anon_sym_LT_LT_PIPE] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_catch] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4904), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4904), + }, + [STATE(7339)] = { + [sym_identifier] = ACTIONS(4910), + [anon_sym_func] = ACTIONS(4910), + [anon_sym_c_func] = ACTIONS(4910), + [anon_sym_struct] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_struct_type_BANG] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_void] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym_type] = ACTIONS(4910), + [anon_sym_anyopaque] = ACTIONS(4910), + [anon_sym_bool] = ACTIONS(4910), + [anon_sym_int] = ACTIONS(4910), + [anon_sym_uint] = ACTIONS(4910), + [anon_sym_float] = ACTIONS(4910), + [anon_sym_range] = ACTIONS(4910), + [anon_sym_i8] = ACTIONS(4910), + [anon_sym_i16] = ACTIONS(4910), + [anon_sym_i32] = ACTIONS(4910), + [anon_sym_i64] = ACTIONS(4910), + [anon_sym_u8] = ACTIONS(4910), + [anon_sym_u16] = ACTIONS(4910), + [anon_sym_u32] = ACTIONS(4910), + [anon_sym_u64] = ACTIONS(4910), + [anon_sym_isize] = ACTIONS(4910), + [anon_sym_usize] = ACTIONS(4910), + [anon_sym_f32] = ACTIONS(4910), + [anon_sym_f64] = ACTIONS(4910), + [anon_sym_c_char] = ACTIONS(4910), + [anon_sym_c_schar] = ACTIONS(4910), + [anon_sym_c_uchar] = ACTIONS(4910), + [anon_sym_c_short] = ACTIONS(4910), + [anon_sym_c_ushort] = ACTIONS(4910), + [anon_sym_c_int] = ACTIONS(4910), + [anon_sym_c_uint] = ACTIONS(4910), + [anon_sym_c_long] = ACTIONS(4910), + [anon_sym_c_ulong] = ACTIONS(4910), + [anon_sym_c_longlong] = ACTIONS(4910), + [anon_sym_c_ulonglong] = ACTIONS(4910), + [anon_sym_c_float] = ACTIONS(4910), + [anon_sym_c_double] = ACTIONS(4910), + [anon_sym_c_longdouble] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4908), + [anon_sym_orelse] = ACTIONS(4910), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_and] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4908), + [anon_sym_xor] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4910), + [anon_sym_GT_GT] = ACTIONS(4908), + [anon_sym_LT_LT_PIPE] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_catch] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4908), + }, + [STATE(7340)] = { + [sym_identifier] = ACTIONS(4916), + [anon_sym_func] = ACTIONS(4916), + [anon_sym_c_func] = ACTIONS(4916), + [anon_sym_struct] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_PIPE] = ACTIONS(4914), + [anon_sym_struct_type_BANG] = ACTIONS(4914), + [anon_sym_QMARK] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_void] = ACTIONS(4916), + [anon_sym_noreturn] = ACTIONS(4916), + [anon_sym_type] = ACTIONS(4916), + [anon_sym_anyopaque] = ACTIONS(4916), + [anon_sym_bool] = ACTIONS(4916), + [anon_sym_int] = ACTIONS(4916), + [anon_sym_uint] = ACTIONS(4916), + [anon_sym_float] = ACTIONS(4916), + [anon_sym_range] = ACTIONS(4916), + [anon_sym_i8] = ACTIONS(4916), + [anon_sym_i16] = ACTIONS(4916), + [anon_sym_i32] = ACTIONS(4916), + [anon_sym_i64] = ACTIONS(4916), + [anon_sym_u8] = ACTIONS(4916), + [anon_sym_u16] = ACTIONS(4916), + [anon_sym_u32] = ACTIONS(4916), + [anon_sym_u64] = ACTIONS(4916), + [anon_sym_isize] = ACTIONS(4916), + [anon_sym_usize] = ACTIONS(4916), + [anon_sym_f32] = ACTIONS(4916), + [anon_sym_f64] = ACTIONS(4916), + [anon_sym_c_char] = ACTIONS(4916), + [anon_sym_c_schar] = ACTIONS(4916), + [anon_sym_c_uchar] = ACTIONS(4916), + [anon_sym_c_short] = ACTIONS(4916), + [anon_sym_c_ushort] = ACTIONS(4916), + [anon_sym_c_int] = ACTIONS(4916), + [anon_sym_c_uint] = ACTIONS(4916), + [anon_sym_c_long] = ACTIONS(4916), + [anon_sym_c_ulong] = ACTIONS(4916), + [anon_sym_c_longlong] = ACTIONS(4916), + [anon_sym_c_ulonglong] = ACTIONS(4916), + [anon_sym_c_float] = ACTIONS(4916), + [anon_sym_c_double] = ACTIONS(4916), + [anon_sym_c_longdouble] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), + [anon_sym_orelse] = ACTIONS(4916), + [anon_sym_or] = ACTIONS(4916), + [anon_sym_and] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_xor] = ACTIONS(4916), + [anon_sym_LT_LT] = ACTIONS(4916), + [anon_sym_GT_GT] = ACTIONS(4914), + [anon_sym_LT_LT_PIPE] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_catch] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4914), + }, + [STATE(7341)] = { + [sym_identifier] = ACTIONS(4922), + [anon_sym_func] = ACTIONS(4922), + [anon_sym_c_func] = ACTIONS(4922), + [anon_sym_struct] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_struct_type_BANG] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_void] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym_type] = ACTIONS(4922), + [anon_sym_anyopaque] = ACTIONS(4922), + [anon_sym_bool] = ACTIONS(4922), + [anon_sym_int] = ACTIONS(4922), + [anon_sym_uint] = ACTIONS(4922), + [anon_sym_float] = ACTIONS(4922), + [anon_sym_range] = ACTIONS(4922), + [anon_sym_i8] = ACTIONS(4922), + [anon_sym_i16] = ACTIONS(4922), + [anon_sym_i32] = ACTIONS(4922), + [anon_sym_i64] = ACTIONS(4922), + [anon_sym_u8] = ACTIONS(4922), + [anon_sym_u16] = ACTIONS(4922), + [anon_sym_u32] = ACTIONS(4922), + [anon_sym_u64] = ACTIONS(4922), + [anon_sym_isize] = ACTIONS(4922), + [anon_sym_usize] = ACTIONS(4922), + [anon_sym_f32] = ACTIONS(4922), + [anon_sym_f64] = ACTIONS(4922), + [anon_sym_c_char] = ACTIONS(4922), + [anon_sym_c_schar] = ACTIONS(4922), + [anon_sym_c_uchar] = ACTIONS(4922), + [anon_sym_c_short] = ACTIONS(4922), + [anon_sym_c_ushort] = ACTIONS(4922), + [anon_sym_c_int] = ACTIONS(4922), + [anon_sym_c_uint] = ACTIONS(4922), + [anon_sym_c_long] = ACTIONS(4922), + [anon_sym_c_ulong] = ACTIONS(4922), + [anon_sym_c_longlong] = ACTIONS(4922), + [anon_sym_c_ulonglong] = ACTIONS(4922), + [anon_sym_c_float] = ACTIONS(4922), + [anon_sym_c_double] = ACTIONS(4922), + [anon_sym_c_longdouble] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), + [anon_sym_orelse] = ACTIONS(4922), + [anon_sym_or] = ACTIONS(4922), + [anon_sym_and] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4920), + [anon_sym_xor] = ACTIONS(4922), + [anon_sym_LT_LT] = ACTIONS(4922), + [anon_sym_GT_GT] = ACTIONS(4920), + [anon_sym_LT_LT_PIPE] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_catch] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4920), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4920), + }, + [STATE(7342)] = { + [sym_identifier] = ACTIONS(4926), + [anon_sym_func] = ACTIONS(4926), + [anon_sym_c_func] = ACTIONS(4926), + [anon_sym_struct] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_struct_type_BANG] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_void] = ACTIONS(4926), + [anon_sym_noreturn] = ACTIONS(4926), + [anon_sym_type] = ACTIONS(4926), + [anon_sym_anyopaque] = ACTIONS(4926), + [anon_sym_bool] = ACTIONS(4926), + [anon_sym_int] = ACTIONS(4926), + [anon_sym_uint] = ACTIONS(4926), + [anon_sym_float] = ACTIONS(4926), + [anon_sym_range] = ACTIONS(4926), + [anon_sym_i8] = ACTIONS(4926), + [anon_sym_i16] = ACTIONS(4926), + [anon_sym_i32] = ACTIONS(4926), + [anon_sym_i64] = ACTIONS(4926), + [anon_sym_u8] = ACTIONS(4926), + [anon_sym_u16] = ACTIONS(4926), + [anon_sym_u32] = ACTIONS(4926), + [anon_sym_u64] = ACTIONS(4926), + [anon_sym_isize] = ACTIONS(4926), + [anon_sym_usize] = ACTIONS(4926), + [anon_sym_f32] = ACTIONS(4926), + [anon_sym_f64] = ACTIONS(4926), + [anon_sym_c_char] = ACTIONS(4926), + [anon_sym_c_schar] = ACTIONS(4926), + [anon_sym_c_uchar] = ACTIONS(4926), + [anon_sym_c_short] = ACTIONS(4926), + [anon_sym_c_ushort] = ACTIONS(4926), + [anon_sym_c_int] = ACTIONS(4926), + [anon_sym_c_uint] = ACTIONS(4926), + [anon_sym_c_long] = ACTIONS(4926), + [anon_sym_c_ulong] = ACTIONS(4926), + [anon_sym_c_longlong] = ACTIONS(4926), + [anon_sym_c_ulonglong] = ACTIONS(4926), + [anon_sym_c_float] = ACTIONS(4926), + [anon_sym_c_double] = ACTIONS(4926), + [anon_sym_c_longdouble] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4924), + [anon_sym_orelse] = ACTIONS(4926), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_and] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4924), + [anon_sym_xor] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4926), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym_LT_LT_PIPE] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_catch] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4924), + }, + [STATE(7343)] = { + [sym_identifier] = ACTIONS(4930), + [anon_sym_func] = ACTIONS(4930), + [anon_sym_c_func] = ACTIONS(4930), + [anon_sym_struct] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_struct_type_BANG] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_void] = ACTIONS(4930), + [anon_sym_noreturn] = ACTIONS(4930), + [anon_sym_type] = ACTIONS(4930), + [anon_sym_anyopaque] = ACTIONS(4930), + [anon_sym_bool] = ACTIONS(4930), + [anon_sym_int] = ACTIONS(4930), + [anon_sym_uint] = ACTIONS(4930), + [anon_sym_float] = ACTIONS(4930), + [anon_sym_range] = ACTIONS(4930), + [anon_sym_i8] = ACTIONS(4930), + [anon_sym_i16] = ACTIONS(4930), + [anon_sym_i32] = ACTIONS(4930), + [anon_sym_i64] = ACTIONS(4930), + [anon_sym_u8] = ACTIONS(4930), + [anon_sym_u16] = ACTIONS(4930), + [anon_sym_u32] = ACTIONS(4930), + [anon_sym_u64] = ACTIONS(4930), + [anon_sym_isize] = ACTIONS(4930), + [anon_sym_usize] = ACTIONS(4930), + [anon_sym_f32] = ACTIONS(4930), + [anon_sym_f64] = ACTIONS(4930), + [anon_sym_c_char] = ACTIONS(4930), + [anon_sym_c_schar] = ACTIONS(4930), + [anon_sym_c_uchar] = ACTIONS(4930), + [anon_sym_c_short] = ACTIONS(4930), + [anon_sym_c_ushort] = ACTIONS(4930), + [anon_sym_c_int] = ACTIONS(4930), + [anon_sym_c_uint] = ACTIONS(4930), + [anon_sym_c_long] = ACTIONS(4930), + [anon_sym_c_ulong] = ACTIONS(4930), + [anon_sym_c_longlong] = ACTIONS(4930), + [anon_sym_c_ulonglong] = ACTIONS(4930), + [anon_sym_c_float] = ACTIONS(4930), + [anon_sym_c_double] = ACTIONS(4930), + [anon_sym_c_longdouble] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), + [anon_sym_orelse] = ACTIONS(4930), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_and] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4928), + [anon_sym_xor] = ACTIONS(4930), + [anon_sym_LT_LT] = ACTIONS(4930), + [anon_sym_GT_GT] = ACTIONS(4928), + [anon_sym_LT_LT_PIPE] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_catch] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4928), + }, + [STATE(7344)] = { + [sym_identifier] = ACTIONS(4934), + [anon_sym_func] = ACTIONS(4934), + [anon_sym_c_func] = ACTIONS(4934), + [anon_sym_struct] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_struct_type_BANG] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_void] = ACTIONS(4934), + [anon_sym_noreturn] = ACTIONS(4934), + [anon_sym_type] = ACTIONS(4934), + [anon_sym_anyopaque] = ACTIONS(4934), + [anon_sym_bool] = ACTIONS(4934), + [anon_sym_int] = ACTIONS(4934), + [anon_sym_uint] = ACTIONS(4934), + [anon_sym_float] = ACTIONS(4934), + [anon_sym_range] = ACTIONS(4934), + [anon_sym_i8] = ACTIONS(4934), + [anon_sym_i16] = ACTIONS(4934), + [anon_sym_i32] = ACTIONS(4934), + [anon_sym_i64] = ACTIONS(4934), + [anon_sym_u8] = ACTIONS(4934), + [anon_sym_u16] = ACTIONS(4934), + [anon_sym_u32] = ACTIONS(4934), + [anon_sym_u64] = ACTIONS(4934), + [anon_sym_isize] = ACTIONS(4934), + [anon_sym_usize] = ACTIONS(4934), + [anon_sym_f32] = ACTIONS(4934), + [anon_sym_f64] = ACTIONS(4934), + [anon_sym_c_char] = ACTIONS(4934), + [anon_sym_c_schar] = ACTIONS(4934), + [anon_sym_c_uchar] = ACTIONS(4934), + [anon_sym_c_short] = ACTIONS(4934), + [anon_sym_c_ushort] = ACTIONS(4934), + [anon_sym_c_int] = ACTIONS(4934), + [anon_sym_c_uint] = ACTIONS(4934), + [anon_sym_c_long] = ACTIONS(4934), + [anon_sym_c_ulong] = ACTIONS(4934), + [anon_sym_c_longlong] = ACTIONS(4934), + [anon_sym_c_ulonglong] = ACTIONS(4934), + [anon_sym_c_float] = ACTIONS(4934), + [anon_sym_c_double] = ACTIONS(4934), + [anon_sym_c_longdouble] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), + [anon_sym_orelse] = ACTIONS(4934), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4932), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4932), + [anon_sym_LT_LT_PIPE] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_catch] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4932), + }, + [STATE(7345)] = { + [sym_identifier] = ACTIONS(4940), + [anon_sym_func] = ACTIONS(4940), + [anon_sym_c_func] = ACTIONS(4940), + [anon_sym_struct] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_PIPE] = ACTIONS(4938), + [anon_sym_struct_type_BANG] = ACTIONS(4938), + [anon_sym_QMARK] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_void] = ACTIONS(4940), + [anon_sym_noreturn] = ACTIONS(4940), + [anon_sym_type] = ACTIONS(4940), + [anon_sym_anyopaque] = ACTIONS(4940), + [anon_sym_bool] = ACTIONS(4940), + [anon_sym_int] = ACTIONS(4940), + [anon_sym_uint] = ACTIONS(4940), + [anon_sym_float] = ACTIONS(4940), + [anon_sym_range] = ACTIONS(4940), + [anon_sym_i8] = ACTIONS(4940), + [anon_sym_i16] = ACTIONS(4940), + [anon_sym_i32] = ACTIONS(4940), + [anon_sym_i64] = ACTIONS(4940), + [anon_sym_u8] = ACTIONS(4940), + [anon_sym_u16] = ACTIONS(4940), + [anon_sym_u32] = ACTIONS(4940), + [anon_sym_u64] = ACTIONS(4940), + [anon_sym_isize] = ACTIONS(4940), + [anon_sym_usize] = ACTIONS(4940), + [anon_sym_f32] = ACTIONS(4940), + [anon_sym_f64] = ACTIONS(4940), + [anon_sym_c_char] = ACTIONS(4940), + [anon_sym_c_schar] = ACTIONS(4940), + [anon_sym_c_uchar] = ACTIONS(4940), + [anon_sym_c_short] = ACTIONS(4940), + [anon_sym_c_ushort] = ACTIONS(4940), + [anon_sym_c_int] = ACTIONS(4940), + [anon_sym_c_uint] = ACTIONS(4940), + [anon_sym_c_long] = ACTIONS(4940), + [anon_sym_c_ulong] = ACTIONS(4940), + [anon_sym_c_longlong] = ACTIONS(4940), + [anon_sym_c_ulonglong] = ACTIONS(4940), + [anon_sym_c_float] = ACTIONS(4940), + [anon_sym_c_double] = ACTIONS(4940), + [anon_sym_c_longdouble] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), + [anon_sym_orelse] = ACTIONS(4940), + [anon_sym_or] = ACTIONS(4940), + [anon_sym_and] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_xor] = ACTIONS(4940), + [anon_sym_LT_LT] = ACTIONS(4940), + [anon_sym_GT_GT] = ACTIONS(4938), + [anon_sym_LT_LT_PIPE] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_catch] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_CARET] = ACTIONS(4938), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4938), + }, + [STATE(7346)] = { + [sym_identifier] = ACTIONS(4944), + [anon_sym_func] = ACTIONS(4944), + [anon_sym_c_func] = ACTIONS(4944), + [anon_sym_struct] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_PIPE] = ACTIONS(4942), + [anon_sym_struct_type_BANG] = ACTIONS(4942), + [anon_sym_QMARK] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_void] = ACTIONS(4944), + [anon_sym_noreturn] = ACTIONS(4944), + [anon_sym_type] = ACTIONS(4944), + [anon_sym_anyopaque] = ACTIONS(4944), + [anon_sym_bool] = ACTIONS(4944), + [anon_sym_int] = ACTIONS(4944), + [anon_sym_uint] = ACTIONS(4944), + [anon_sym_float] = ACTIONS(4944), + [anon_sym_range] = ACTIONS(4944), + [anon_sym_i8] = ACTIONS(4944), + [anon_sym_i16] = ACTIONS(4944), + [anon_sym_i32] = ACTIONS(4944), + [anon_sym_i64] = ACTIONS(4944), + [anon_sym_u8] = ACTIONS(4944), + [anon_sym_u16] = ACTIONS(4944), + [anon_sym_u32] = ACTIONS(4944), + [anon_sym_u64] = ACTIONS(4944), + [anon_sym_isize] = ACTIONS(4944), + [anon_sym_usize] = ACTIONS(4944), + [anon_sym_f32] = ACTIONS(4944), + [anon_sym_f64] = ACTIONS(4944), + [anon_sym_c_char] = ACTIONS(4944), + [anon_sym_c_schar] = ACTIONS(4944), + [anon_sym_c_uchar] = ACTIONS(4944), + [anon_sym_c_short] = ACTIONS(4944), + [anon_sym_c_ushort] = ACTIONS(4944), + [anon_sym_c_int] = ACTIONS(4944), + [anon_sym_c_uint] = ACTIONS(4944), + [anon_sym_c_long] = ACTIONS(4944), + [anon_sym_c_ulong] = ACTIONS(4944), + [anon_sym_c_longlong] = ACTIONS(4944), + [anon_sym_c_ulonglong] = ACTIONS(4944), + [anon_sym_c_float] = ACTIONS(4944), + [anon_sym_c_double] = ACTIONS(4944), + [anon_sym_c_longdouble] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4942), + [anon_sym_orelse] = ACTIONS(4944), + [anon_sym_or] = ACTIONS(4944), + [anon_sym_and] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_xor] = ACTIONS(4944), + [anon_sym_LT_LT] = ACTIONS(4944), + [anon_sym_GT_GT] = ACTIONS(4942), + [anon_sym_LT_LT_PIPE] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_catch] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4942), + }, + [STATE(7347)] = { + [sym_identifier] = ACTIONS(4948), + [anon_sym_func] = ACTIONS(4948), + [anon_sym_c_func] = ACTIONS(4948), + [anon_sym_struct] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_PIPE] = ACTIONS(4946), + [anon_sym_struct_type_BANG] = ACTIONS(4946), + [anon_sym_QMARK] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_void] = ACTIONS(4948), + [anon_sym_noreturn] = ACTIONS(4948), + [anon_sym_type] = ACTIONS(4948), + [anon_sym_anyopaque] = ACTIONS(4948), + [anon_sym_bool] = ACTIONS(4948), + [anon_sym_int] = ACTIONS(4948), + [anon_sym_uint] = ACTIONS(4948), + [anon_sym_float] = ACTIONS(4948), + [anon_sym_range] = ACTIONS(4948), + [anon_sym_i8] = ACTIONS(4948), + [anon_sym_i16] = ACTIONS(4948), + [anon_sym_i32] = ACTIONS(4948), + [anon_sym_i64] = ACTIONS(4948), + [anon_sym_u8] = ACTIONS(4948), + [anon_sym_u16] = ACTIONS(4948), + [anon_sym_u32] = ACTIONS(4948), + [anon_sym_u64] = ACTIONS(4948), + [anon_sym_isize] = ACTIONS(4948), + [anon_sym_usize] = ACTIONS(4948), + [anon_sym_f32] = ACTIONS(4948), + [anon_sym_f64] = ACTIONS(4948), + [anon_sym_c_char] = ACTIONS(4948), + [anon_sym_c_schar] = ACTIONS(4948), + [anon_sym_c_uchar] = ACTIONS(4948), + [anon_sym_c_short] = ACTIONS(4948), + [anon_sym_c_ushort] = ACTIONS(4948), + [anon_sym_c_int] = ACTIONS(4948), + [anon_sym_c_uint] = ACTIONS(4948), + [anon_sym_c_long] = ACTIONS(4948), + [anon_sym_c_ulong] = ACTIONS(4948), + [anon_sym_c_longlong] = ACTIONS(4948), + [anon_sym_c_ulonglong] = ACTIONS(4948), + [anon_sym_c_float] = ACTIONS(4948), + [anon_sym_c_double] = ACTIONS(4948), + [anon_sym_c_longdouble] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4946), + [anon_sym_orelse] = ACTIONS(4948), + [anon_sym_or] = ACTIONS(4948), + [anon_sym_and] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_xor] = ACTIONS(4948), + [anon_sym_LT_LT] = ACTIONS(4948), + [anon_sym_GT_GT] = ACTIONS(4946), + [anon_sym_LT_LT_PIPE] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_catch] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_CARET] = ACTIONS(4946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4946), + }, + [STATE(7348)] = { + [sym_identifier] = ACTIONS(4952), + [anon_sym_func] = ACTIONS(4952), + [anon_sym_c_func] = ACTIONS(4952), + [anon_sym_struct] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_PIPE] = ACTIONS(4950), + [anon_sym_struct_type_BANG] = ACTIONS(4950), + [anon_sym_QMARK] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_void] = ACTIONS(4952), + [anon_sym_noreturn] = ACTIONS(4952), + [anon_sym_type] = ACTIONS(4952), + [anon_sym_anyopaque] = ACTIONS(4952), + [anon_sym_bool] = ACTIONS(4952), + [anon_sym_int] = ACTIONS(4952), + [anon_sym_uint] = ACTIONS(4952), + [anon_sym_float] = ACTIONS(4952), + [anon_sym_range] = ACTIONS(4952), + [anon_sym_i8] = ACTIONS(4952), + [anon_sym_i16] = ACTIONS(4952), + [anon_sym_i32] = ACTIONS(4952), + [anon_sym_i64] = ACTIONS(4952), + [anon_sym_u8] = ACTIONS(4952), + [anon_sym_u16] = ACTIONS(4952), + [anon_sym_u32] = ACTIONS(4952), + [anon_sym_u64] = ACTIONS(4952), + [anon_sym_isize] = ACTIONS(4952), + [anon_sym_usize] = ACTIONS(4952), + [anon_sym_f32] = ACTIONS(4952), + [anon_sym_f64] = ACTIONS(4952), + [anon_sym_c_char] = ACTIONS(4952), + [anon_sym_c_schar] = ACTIONS(4952), + [anon_sym_c_uchar] = ACTIONS(4952), + [anon_sym_c_short] = ACTIONS(4952), + [anon_sym_c_ushort] = ACTIONS(4952), + [anon_sym_c_int] = ACTIONS(4952), + [anon_sym_c_uint] = ACTIONS(4952), + [anon_sym_c_long] = ACTIONS(4952), + [anon_sym_c_ulong] = ACTIONS(4952), + [anon_sym_c_longlong] = ACTIONS(4952), + [anon_sym_c_ulonglong] = ACTIONS(4952), + [anon_sym_c_float] = ACTIONS(4952), + [anon_sym_c_double] = ACTIONS(4952), + [anon_sym_c_longdouble] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4950), + [anon_sym_orelse] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_xor] = ACTIONS(4952), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4950), + [anon_sym_LT_LT_PIPE] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_catch] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4950), + }, + [STATE(7349)] = { + [sym_identifier] = ACTIONS(4956), + [anon_sym_func] = ACTIONS(4956), + [anon_sym_c_func] = ACTIONS(4956), + [anon_sym_struct] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_PIPE] = ACTIONS(4954), + [anon_sym_struct_type_BANG] = ACTIONS(4954), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_void] = ACTIONS(4956), + [anon_sym_noreturn] = ACTIONS(4956), + [anon_sym_type] = ACTIONS(4956), + [anon_sym_anyopaque] = ACTIONS(4956), + [anon_sym_bool] = ACTIONS(4956), + [anon_sym_int] = ACTIONS(4956), + [anon_sym_uint] = ACTIONS(4956), + [anon_sym_float] = ACTIONS(4956), + [anon_sym_range] = ACTIONS(4956), + [anon_sym_i8] = ACTIONS(4956), + [anon_sym_i16] = ACTIONS(4956), + [anon_sym_i32] = ACTIONS(4956), + [anon_sym_i64] = ACTIONS(4956), + [anon_sym_u8] = ACTIONS(4956), + [anon_sym_u16] = ACTIONS(4956), + [anon_sym_u32] = ACTIONS(4956), + [anon_sym_u64] = ACTIONS(4956), + [anon_sym_isize] = ACTIONS(4956), + [anon_sym_usize] = ACTIONS(4956), + [anon_sym_f32] = ACTIONS(4956), + [anon_sym_f64] = ACTIONS(4956), + [anon_sym_c_char] = ACTIONS(4956), + [anon_sym_c_schar] = ACTIONS(4956), + [anon_sym_c_uchar] = ACTIONS(4956), + [anon_sym_c_short] = ACTIONS(4956), + [anon_sym_c_ushort] = ACTIONS(4956), + [anon_sym_c_int] = ACTIONS(4956), + [anon_sym_c_uint] = ACTIONS(4956), + [anon_sym_c_long] = ACTIONS(4956), + [anon_sym_c_ulong] = ACTIONS(4956), + [anon_sym_c_longlong] = ACTIONS(4956), + [anon_sym_c_ulonglong] = ACTIONS(4956), + [anon_sym_c_float] = ACTIONS(4956), + [anon_sym_c_double] = ACTIONS(4956), + [anon_sym_c_longdouble] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), + [anon_sym_orelse] = ACTIONS(4956), + [anon_sym_or] = ACTIONS(4956), + [anon_sym_and] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_xor] = ACTIONS(4956), + [anon_sym_LT_LT] = ACTIONS(4956), + [anon_sym_GT_GT] = ACTIONS(4954), + [anon_sym_LT_LT_PIPE] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_catch] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_CARET] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4954), + }, + [STATE(7350)] = { + [sym_identifier] = ACTIONS(4960), + [anon_sym_func] = ACTIONS(4960), + [anon_sym_c_func] = ACTIONS(4960), + [anon_sym_struct] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_struct_type_BANG] = ACTIONS(4958), + [anon_sym_QMARK] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_void] = ACTIONS(4960), + [anon_sym_noreturn] = ACTIONS(4960), + [anon_sym_type] = ACTIONS(4960), + [anon_sym_anyopaque] = ACTIONS(4960), + [anon_sym_bool] = ACTIONS(4960), + [anon_sym_int] = ACTIONS(4960), + [anon_sym_uint] = ACTIONS(4960), + [anon_sym_float] = ACTIONS(4960), + [anon_sym_range] = ACTIONS(4960), + [anon_sym_i8] = ACTIONS(4960), + [anon_sym_i16] = ACTIONS(4960), + [anon_sym_i32] = ACTIONS(4960), + [anon_sym_i64] = ACTIONS(4960), + [anon_sym_u8] = ACTIONS(4960), + [anon_sym_u16] = ACTIONS(4960), + [anon_sym_u32] = ACTIONS(4960), + [anon_sym_u64] = ACTIONS(4960), + [anon_sym_isize] = ACTIONS(4960), + [anon_sym_usize] = ACTIONS(4960), + [anon_sym_f32] = ACTIONS(4960), + [anon_sym_f64] = ACTIONS(4960), + [anon_sym_c_char] = ACTIONS(4960), + [anon_sym_c_schar] = ACTIONS(4960), + [anon_sym_c_uchar] = ACTIONS(4960), + [anon_sym_c_short] = ACTIONS(4960), + [anon_sym_c_ushort] = ACTIONS(4960), + [anon_sym_c_int] = ACTIONS(4960), + [anon_sym_c_uint] = ACTIONS(4960), + [anon_sym_c_long] = ACTIONS(4960), + [anon_sym_c_ulong] = ACTIONS(4960), + [anon_sym_c_longlong] = ACTIONS(4960), + [anon_sym_c_ulonglong] = ACTIONS(4960), + [anon_sym_c_float] = ACTIONS(4960), + [anon_sym_c_double] = ACTIONS(4960), + [anon_sym_c_longdouble] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4958), + [anon_sym_orelse] = ACTIONS(4960), + [anon_sym_or] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_xor] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4960), + [anon_sym_GT_GT] = ACTIONS(4958), + [anon_sym_LT_LT_PIPE] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_catch] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_CARET] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4958), + }, + [STATE(7351)] = { + [sym_identifier] = ACTIONS(4964), + [anon_sym_func] = ACTIONS(4964), + [anon_sym_c_func] = ACTIONS(4964), + [anon_sym_struct] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_struct_type_BANG] = ACTIONS(4962), + [anon_sym_QMARK] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_void] = ACTIONS(4964), + [anon_sym_noreturn] = ACTIONS(4964), + [anon_sym_type] = ACTIONS(4964), + [anon_sym_anyopaque] = ACTIONS(4964), + [anon_sym_bool] = ACTIONS(4964), + [anon_sym_int] = ACTIONS(4964), + [anon_sym_uint] = ACTIONS(4964), + [anon_sym_float] = ACTIONS(4964), + [anon_sym_range] = ACTIONS(4964), + [anon_sym_i8] = ACTIONS(4964), + [anon_sym_i16] = ACTIONS(4964), + [anon_sym_i32] = ACTIONS(4964), + [anon_sym_i64] = ACTIONS(4964), + [anon_sym_u8] = ACTIONS(4964), + [anon_sym_u16] = ACTIONS(4964), + [anon_sym_u32] = ACTIONS(4964), + [anon_sym_u64] = ACTIONS(4964), + [anon_sym_isize] = ACTIONS(4964), + [anon_sym_usize] = ACTIONS(4964), + [anon_sym_f32] = ACTIONS(4964), + [anon_sym_f64] = ACTIONS(4964), + [anon_sym_c_char] = ACTIONS(4964), + [anon_sym_c_schar] = ACTIONS(4964), + [anon_sym_c_uchar] = ACTIONS(4964), + [anon_sym_c_short] = ACTIONS(4964), + [anon_sym_c_ushort] = ACTIONS(4964), + [anon_sym_c_int] = ACTIONS(4964), + [anon_sym_c_uint] = ACTIONS(4964), + [anon_sym_c_long] = ACTIONS(4964), + [anon_sym_c_ulong] = ACTIONS(4964), + [anon_sym_c_longlong] = ACTIONS(4964), + [anon_sym_c_ulonglong] = ACTIONS(4964), + [anon_sym_c_float] = ACTIONS(4964), + [anon_sym_c_double] = ACTIONS(4964), + [anon_sym_c_longdouble] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), + [anon_sym_orelse] = ACTIONS(4964), + [anon_sym_or] = ACTIONS(4964), + [anon_sym_and] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_xor] = ACTIONS(4964), + [anon_sym_LT_LT] = ACTIONS(4964), + [anon_sym_GT_GT] = ACTIONS(4962), + [anon_sym_LT_LT_PIPE] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_catch] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_CARET] = ACTIONS(4962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4962), + }, + [STATE(7352)] = { + [sym_identifier] = ACTIONS(4968), + [anon_sym_func] = ACTIONS(4968), + [anon_sym_c_func] = ACTIONS(4968), + [anon_sym_struct] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_struct_type_BANG] = ACTIONS(4966), + [anon_sym_QMARK] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_void] = ACTIONS(4968), + [anon_sym_noreturn] = ACTIONS(4968), + [anon_sym_type] = ACTIONS(4968), + [anon_sym_anyopaque] = ACTIONS(4968), + [anon_sym_bool] = ACTIONS(4968), + [anon_sym_int] = ACTIONS(4968), + [anon_sym_uint] = ACTIONS(4968), + [anon_sym_float] = ACTIONS(4968), + [anon_sym_range] = ACTIONS(4968), + [anon_sym_i8] = ACTIONS(4968), + [anon_sym_i16] = ACTIONS(4968), + [anon_sym_i32] = ACTIONS(4968), + [anon_sym_i64] = ACTIONS(4968), + [anon_sym_u8] = ACTIONS(4968), + [anon_sym_u16] = ACTIONS(4968), + [anon_sym_u32] = ACTIONS(4968), + [anon_sym_u64] = ACTIONS(4968), + [anon_sym_isize] = ACTIONS(4968), + [anon_sym_usize] = ACTIONS(4968), + [anon_sym_f32] = ACTIONS(4968), + [anon_sym_f64] = ACTIONS(4968), + [anon_sym_c_char] = ACTIONS(4968), + [anon_sym_c_schar] = ACTIONS(4968), + [anon_sym_c_uchar] = ACTIONS(4968), + [anon_sym_c_short] = ACTIONS(4968), + [anon_sym_c_ushort] = ACTIONS(4968), + [anon_sym_c_int] = ACTIONS(4968), + [anon_sym_c_uint] = ACTIONS(4968), + [anon_sym_c_long] = ACTIONS(4968), + [anon_sym_c_ulong] = ACTIONS(4968), + [anon_sym_c_longlong] = ACTIONS(4968), + [anon_sym_c_ulonglong] = ACTIONS(4968), + [anon_sym_c_float] = ACTIONS(4968), + [anon_sym_c_double] = ACTIONS(4968), + [anon_sym_c_longdouble] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4966), + [anon_sym_orelse] = ACTIONS(4968), + [anon_sym_or] = ACTIONS(4968), + [anon_sym_and] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_xor] = ACTIONS(4968), + [anon_sym_LT_LT] = ACTIONS(4968), + [anon_sym_GT_GT] = ACTIONS(4966), + [anon_sym_LT_LT_PIPE] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_catch] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_CARET] = ACTIONS(4966), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4966), + }, + [STATE(7353)] = { + [sym_identifier] = ACTIONS(4972), + [anon_sym_func] = ACTIONS(4972), + [anon_sym_c_func] = ACTIONS(4972), + [anon_sym_struct] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_struct_type_BANG] = ACTIONS(4970), + [anon_sym_QMARK] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_void] = ACTIONS(4972), + [anon_sym_noreturn] = ACTIONS(4972), + [anon_sym_type] = ACTIONS(4972), + [anon_sym_anyopaque] = ACTIONS(4972), + [anon_sym_bool] = ACTIONS(4972), + [anon_sym_int] = ACTIONS(4972), + [anon_sym_uint] = ACTIONS(4972), + [anon_sym_float] = ACTIONS(4972), + [anon_sym_range] = ACTIONS(4972), + [anon_sym_i8] = ACTIONS(4972), + [anon_sym_i16] = ACTIONS(4972), + [anon_sym_i32] = ACTIONS(4972), + [anon_sym_i64] = ACTIONS(4972), + [anon_sym_u8] = ACTIONS(4972), + [anon_sym_u16] = ACTIONS(4972), + [anon_sym_u32] = ACTIONS(4972), + [anon_sym_u64] = ACTIONS(4972), + [anon_sym_isize] = ACTIONS(4972), + [anon_sym_usize] = ACTIONS(4972), + [anon_sym_f32] = ACTIONS(4972), + [anon_sym_f64] = ACTIONS(4972), + [anon_sym_c_char] = ACTIONS(4972), + [anon_sym_c_schar] = ACTIONS(4972), + [anon_sym_c_uchar] = ACTIONS(4972), + [anon_sym_c_short] = ACTIONS(4972), + [anon_sym_c_ushort] = ACTIONS(4972), + [anon_sym_c_int] = ACTIONS(4972), + [anon_sym_c_uint] = ACTIONS(4972), + [anon_sym_c_long] = ACTIONS(4972), + [anon_sym_c_ulong] = ACTIONS(4972), + [anon_sym_c_longlong] = ACTIONS(4972), + [anon_sym_c_ulonglong] = ACTIONS(4972), + [anon_sym_c_float] = ACTIONS(4972), + [anon_sym_c_double] = ACTIONS(4972), + [anon_sym_c_longdouble] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4970), + [anon_sym_orelse] = ACTIONS(4972), + [anon_sym_or] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_xor] = ACTIONS(4972), + [anon_sym_LT_LT] = ACTIONS(4972), + [anon_sym_GT_GT] = ACTIONS(4970), + [anon_sym_LT_LT_PIPE] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_catch] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_CARET] = ACTIONS(4970), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4970), + }, + [STATE(7354)] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_func] = ACTIONS(4976), + [anon_sym_c_func] = ACTIONS(4976), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_PIPE] = ACTIONS(4974), + [anon_sym_struct_type_BANG] = ACTIONS(4974), + [anon_sym_QMARK] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_void] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym_type] = ACTIONS(4976), + [anon_sym_anyopaque] = ACTIONS(4976), + [anon_sym_bool] = ACTIONS(4976), + [anon_sym_int] = ACTIONS(4976), + [anon_sym_uint] = ACTIONS(4976), + [anon_sym_float] = ACTIONS(4976), + [anon_sym_range] = ACTIONS(4976), + [anon_sym_i8] = ACTIONS(4976), + [anon_sym_i16] = ACTIONS(4976), + [anon_sym_i32] = ACTIONS(4976), + [anon_sym_i64] = ACTIONS(4976), + [anon_sym_u8] = ACTIONS(4976), + [anon_sym_u16] = ACTIONS(4976), + [anon_sym_u32] = ACTIONS(4976), + [anon_sym_u64] = ACTIONS(4976), + [anon_sym_isize] = ACTIONS(4976), + [anon_sym_usize] = ACTIONS(4976), + [anon_sym_f32] = ACTIONS(4976), + [anon_sym_f64] = ACTIONS(4976), + [anon_sym_c_char] = ACTIONS(4976), + [anon_sym_c_schar] = ACTIONS(4976), + [anon_sym_c_uchar] = ACTIONS(4976), + [anon_sym_c_short] = ACTIONS(4976), + [anon_sym_c_ushort] = ACTIONS(4976), + [anon_sym_c_int] = ACTIONS(4976), + [anon_sym_c_uint] = ACTIONS(4976), + [anon_sym_c_long] = ACTIONS(4976), + [anon_sym_c_ulong] = ACTIONS(4976), + [anon_sym_c_longlong] = ACTIONS(4976), + [anon_sym_c_ulonglong] = ACTIONS(4976), + [anon_sym_c_float] = ACTIONS(4976), + [anon_sym_c_double] = ACTIONS(4976), + [anon_sym_c_longdouble] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), + [anon_sym_orelse] = ACTIONS(4976), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4974), + [anon_sym_LT_LT_PIPE] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_catch] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4974), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4974), + }, + [STATE(7355)] = { + [sym_identifier] = ACTIONS(4980), + [anon_sym_func] = ACTIONS(4980), + [anon_sym_c_func] = ACTIONS(4980), + [anon_sym_struct] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4978), + [anon_sym_struct_type_BANG] = ACTIONS(4978), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_void] = ACTIONS(4980), + [anon_sym_noreturn] = ACTIONS(4980), + [anon_sym_type] = ACTIONS(4980), + [anon_sym_anyopaque] = ACTIONS(4980), + [anon_sym_bool] = ACTIONS(4980), + [anon_sym_int] = ACTIONS(4980), + [anon_sym_uint] = ACTIONS(4980), + [anon_sym_float] = ACTIONS(4980), + [anon_sym_range] = ACTIONS(4980), + [anon_sym_i8] = ACTIONS(4980), + [anon_sym_i16] = ACTIONS(4980), + [anon_sym_i32] = ACTIONS(4980), + [anon_sym_i64] = ACTIONS(4980), + [anon_sym_u8] = ACTIONS(4980), + [anon_sym_u16] = ACTIONS(4980), + [anon_sym_u32] = ACTIONS(4980), + [anon_sym_u64] = ACTIONS(4980), + [anon_sym_isize] = ACTIONS(4980), + [anon_sym_usize] = ACTIONS(4980), + [anon_sym_f32] = ACTIONS(4980), + [anon_sym_f64] = ACTIONS(4980), + [anon_sym_c_char] = ACTIONS(4980), + [anon_sym_c_schar] = ACTIONS(4980), + [anon_sym_c_uchar] = ACTIONS(4980), + [anon_sym_c_short] = ACTIONS(4980), + [anon_sym_c_ushort] = ACTIONS(4980), + [anon_sym_c_int] = ACTIONS(4980), + [anon_sym_c_uint] = ACTIONS(4980), + [anon_sym_c_long] = ACTIONS(4980), + [anon_sym_c_ulong] = ACTIONS(4980), + [anon_sym_c_longlong] = ACTIONS(4980), + [anon_sym_c_ulonglong] = ACTIONS(4980), + [anon_sym_c_float] = ACTIONS(4980), + [anon_sym_c_double] = ACTIONS(4980), + [anon_sym_c_longdouble] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4978), + [anon_sym_orelse] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_xor] = ACTIONS(4980), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4978), + [anon_sym_LT_LT_PIPE] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4978), + [anon_sym_catch] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4978), + }, + [STATE(7356)] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_func] = ACTIONS(4984), + [anon_sym_c_func] = ACTIONS(4984), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4982), + [anon_sym_struct_type_BANG] = ACTIONS(4982), + [anon_sym_QMARK] = ACTIONS(4982), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_void] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym_type] = ACTIONS(4984), + [anon_sym_anyopaque] = ACTIONS(4984), + [anon_sym_bool] = ACTIONS(4984), + [anon_sym_int] = ACTIONS(4984), + [anon_sym_uint] = ACTIONS(4984), + [anon_sym_float] = ACTIONS(4984), + [anon_sym_range] = ACTIONS(4984), + [anon_sym_i8] = ACTIONS(4984), + [anon_sym_i16] = ACTIONS(4984), + [anon_sym_i32] = ACTIONS(4984), + [anon_sym_i64] = ACTIONS(4984), + [anon_sym_u8] = ACTIONS(4984), + [anon_sym_u16] = ACTIONS(4984), + [anon_sym_u32] = ACTIONS(4984), + [anon_sym_u64] = ACTIONS(4984), + [anon_sym_isize] = ACTIONS(4984), + [anon_sym_usize] = ACTIONS(4984), + [anon_sym_f32] = ACTIONS(4984), + [anon_sym_f64] = ACTIONS(4984), + [anon_sym_c_char] = ACTIONS(4984), + [anon_sym_c_schar] = ACTIONS(4984), + [anon_sym_c_uchar] = ACTIONS(4984), + [anon_sym_c_short] = ACTIONS(4984), + [anon_sym_c_ushort] = ACTIONS(4984), + [anon_sym_c_int] = ACTIONS(4984), + [anon_sym_c_uint] = ACTIONS(4984), + [anon_sym_c_long] = ACTIONS(4984), + [anon_sym_c_ulong] = ACTIONS(4984), + [anon_sym_c_longlong] = ACTIONS(4984), + [anon_sym_c_ulonglong] = ACTIONS(4984), + [anon_sym_c_float] = ACTIONS(4984), + [anon_sym_c_double] = ACTIONS(4984), + [anon_sym_c_longdouble] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4982), + [anon_sym_orelse] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4984), + [anon_sym_and] = ACTIONS(4984), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_xor] = ACTIONS(4984), + [anon_sym_LT_LT] = ACTIONS(4984), + [anon_sym_GT_GT] = ACTIONS(4982), + [anon_sym_LT_LT_PIPE] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_catch] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4982), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4982), + }, + [STATE(7357)] = { + [sym_identifier] = ACTIONS(4988), + [anon_sym_func] = ACTIONS(4988), + [anon_sym_c_func] = ACTIONS(4988), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_struct_type_BANG] = ACTIONS(4986), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_void] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym_type] = ACTIONS(4988), + [anon_sym_anyopaque] = ACTIONS(4988), + [anon_sym_bool] = ACTIONS(4988), + [anon_sym_int] = ACTIONS(4988), + [anon_sym_uint] = ACTIONS(4988), + [anon_sym_float] = ACTIONS(4988), + [anon_sym_range] = ACTIONS(4988), + [anon_sym_i8] = ACTIONS(4988), + [anon_sym_i16] = ACTIONS(4988), + [anon_sym_i32] = ACTIONS(4988), + [anon_sym_i64] = ACTIONS(4988), + [anon_sym_u8] = ACTIONS(4988), + [anon_sym_u16] = ACTIONS(4988), + [anon_sym_u32] = ACTIONS(4988), + [anon_sym_u64] = ACTIONS(4988), + [anon_sym_isize] = ACTIONS(4988), + [anon_sym_usize] = ACTIONS(4988), + [anon_sym_f32] = ACTIONS(4988), + [anon_sym_f64] = ACTIONS(4988), + [anon_sym_c_char] = ACTIONS(4988), + [anon_sym_c_schar] = ACTIONS(4988), + [anon_sym_c_uchar] = ACTIONS(4988), + [anon_sym_c_short] = ACTIONS(4988), + [anon_sym_c_ushort] = ACTIONS(4988), + [anon_sym_c_int] = ACTIONS(4988), + [anon_sym_c_uint] = ACTIONS(4988), + [anon_sym_c_long] = ACTIONS(4988), + [anon_sym_c_ulong] = ACTIONS(4988), + [anon_sym_c_longlong] = ACTIONS(4988), + [anon_sym_c_ulonglong] = ACTIONS(4988), + [anon_sym_c_float] = ACTIONS(4988), + [anon_sym_c_double] = ACTIONS(4988), + [anon_sym_c_longdouble] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), + [anon_sym_orelse] = ACTIONS(4988), + [anon_sym_or] = ACTIONS(4988), + [anon_sym_and] = ACTIONS(4988), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_xor] = ACTIONS(4988), + [anon_sym_LT_LT] = ACTIONS(4988), + [anon_sym_GT_GT] = ACTIONS(4986), + [anon_sym_LT_LT_PIPE] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_catch] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4986), + }, + [STATE(7358)] = { + [sym_identifier] = ACTIONS(4992), + [anon_sym_func] = ACTIONS(4992), + [anon_sym_c_func] = ACTIONS(4992), + [anon_sym_struct] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_DASH] = ACTIONS(4990), + [anon_sym_PIPE] = ACTIONS(4990), + [anon_sym_struct_type_BANG] = ACTIONS(4990), + [anon_sym_QMARK] = ACTIONS(4990), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_STAR] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_void] = ACTIONS(4992), + [anon_sym_noreturn] = ACTIONS(4992), + [anon_sym_type] = ACTIONS(4992), + [anon_sym_anyopaque] = ACTIONS(4992), + [anon_sym_bool] = ACTIONS(4992), + [anon_sym_int] = ACTIONS(4992), + [anon_sym_uint] = ACTIONS(4992), + [anon_sym_float] = ACTIONS(4992), + [anon_sym_range] = ACTIONS(4992), + [anon_sym_i8] = ACTIONS(4992), + [anon_sym_i16] = ACTIONS(4992), + [anon_sym_i32] = ACTIONS(4992), + [anon_sym_i64] = ACTIONS(4992), + [anon_sym_u8] = ACTIONS(4992), + [anon_sym_u16] = ACTIONS(4992), + [anon_sym_u32] = ACTIONS(4992), + [anon_sym_u64] = ACTIONS(4992), + [anon_sym_isize] = ACTIONS(4992), + [anon_sym_usize] = ACTIONS(4992), + [anon_sym_f32] = ACTIONS(4992), + [anon_sym_f64] = ACTIONS(4992), + [anon_sym_c_char] = ACTIONS(4992), + [anon_sym_c_schar] = ACTIONS(4992), + [anon_sym_c_uchar] = ACTIONS(4992), + [anon_sym_c_short] = ACTIONS(4992), + [anon_sym_c_ushort] = ACTIONS(4992), + [anon_sym_c_int] = ACTIONS(4992), + [anon_sym_c_uint] = ACTIONS(4992), + [anon_sym_c_long] = ACTIONS(4992), + [anon_sym_c_ulong] = ACTIONS(4992), + [anon_sym_c_longlong] = ACTIONS(4992), + [anon_sym_c_ulonglong] = ACTIONS(4992), + [anon_sym_c_float] = ACTIONS(4992), + [anon_sym_c_double] = ACTIONS(4992), + [anon_sym_c_longdouble] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4990), + [anon_sym_orelse] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym_xor] = ACTIONS(4992), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4990), + [anon_sym_LT_LT_PIPE] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4990), + [anon_sym_SLASH] = ACTIONS(4990), + [anon_sym_catch] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4990), + }, + [STATE(7359)] = { + [sym_identifier] = ACTIONS(4996), + [anon_sym_func] = ACTIONS(4996), + [anon_sym_c_func] = ACTIONS(4996), + [anon_sym_struct] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_struct_type_BANG] = ACTIONS(4994), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_void] = ACTIONS(4996), + [anon_sym_noreturn] = ACTIONS(4996), + [anon_sym_type] = ACTIONS(4996), + [anon_sym_anyopaque] = ACTIONS(4996), + [anon_sym_bool] = ACTIONS(4996), + [anon_sym_int] = ACTIONS(4996), + [anon_sym_uint] = ACTIONS(4996), + [anon_sym_float] = ACTIONS(4996), + [anon_sym_range] = ACTIONS(4996), + [anon_sym_i8] = ACTIONS(4996), + [anon_sym_i16] = ACTIONS(4996), + [anon_sym_i32] = ACTIONS(4996), + [anon_sym_i64] = ACTIONS(4996), + [anon_sym_u8] = ACTIONS(4996), + [anon_sym_u16] = ACTIONS(4996), + [anon_sym_u32] = ACTIONS(4996), + [anon_sym_u64] = ACTIONS(4996), + [anon_sym_isize] = ACTIONS(4996), + [anon_sym_usize] = ACTIONS(4996), + [anon_sym_f32] = ACTIONS(4996), + [anon_sym_f64] = ACTIONS(4996), + [anon_sym_c_char] = ACTIONS(4996), + [anon_sym_c_schar] = ACTIONS(4996), + [anon_sym_c_uchar] = ACTIONS(4996), + [anon_sym_c_short] = ACTIONS(4996), + [anon_sym_c_ushort] = ACTIONS(4996), + [anon_sym_c_int] = ACTIONS(4996), + [anon_sym_c_uint] = ACTIONS(4996), + [anon_sym_c_long] = ACTIONS(4996), + [anon_sym_c_ulong] = ACTIONS(4996), + [anon_sym_c_longlong] = ACTIONS(4996), + [anon_sym_c_ulonglong] = ACTIONS(4996), + [anon_sym_c_float] = ACTIONS(4996), + [anon_sym_c_double] = ACTIONS(4996), + [anon_sym_c_longdouble] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4994), + [anon_sym_orelse] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_xor] = ACTIONS(4996), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4994), + [anon_sym_LT_LT_PIPE] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_catch] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4994), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4994), + }, + [STATE(7360)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_func] = ACTIONS(5000), + [anon_sym_c_func] = ACTIONS(5000), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_struct_type_BANG] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_AT] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_void] = ACTIONS(5000), + [anon_sym_noreturn] = ACTIONS(5000), + [anon_sym_type] = ACTIONS(5000), + [anon_sym_anyopaque] = ACTIONS(5000), + [anon_sym_bool] = ACTIONS(5000), + [anon_sym_int] = ACTIONS(5000), + [anon_sym_uint] = ACTIONS(5000), + [anon_sym_float] = ACTIONS(5000), + [anon_sym_range] = ACTIONS(5000), + [anon_sym_i8] = ACTIONS(5000), + [anon_sym_i16] = ACTIONS(5000), + [anon_sym_i32] = ACTIONS(5000), + [anon_sym_i64] = ACTIONS(5000), + [anon_sym_u8] = ACTIONS(5000), + [anon_sym_u16] = ACTIONS(5000), + [anon_sym_u32] = ACTIONS(5000), + [anon_sym_u64] = ACTIONS(5000), + [anon_sym_isize] = ACTIONS(5000), + [anon_sym_usize] = ACTIONS(5000), + [anon_sym_f32] = ACTIONS(5000), + [anon_sym_f64] = ACTIONS(5000), + [anon_sym_c_char] = ACTIONS(5000), + [anon_sym_c_schar] = ACTIONS(5000), + [anon_sym_c_uchar] = ACTIONS(5000), + [anon_sym_c_short] = ACTIONS(5000), + [anon_sym_c_ushort] = ACTIONS(5000), + [anon_sym_c_int] = ACTIONS(5000), + [anon_sym_c_uint] = ACTIONS(5000), + [anon_sym_c_long] = ACTIONS(5000), + [anon_sym_c_ulong] = ACTIONS(5000), + [anon_sym_c_longlong] = ACTIONS(5000), + [anon_sym_c_ulonglong] = ACTIONS(5000), + [anon_sym_c_float] = ACTIONS(5000), + [anon_sym_c_double] = ACTIONS(5000), + [anon_sym_c_longdouble] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4998), + [anon_sym_orelse] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(5000), + [anon_sym_and] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(5000), + [anon_sym_LT_LT] = ACTIONS(5000), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_LT_LT_PIPE] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_catch] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4998), + }, + [STATE(7361)] = { + [sym_identifier] = ACTIONS(5004), + [anon_sym_func] = ACTIONS(5004), + [anon_sym_c_func] = ACTIONS(5004), + [anon_sym_struct] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_struct_type_BANG] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_AT] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_void] = ACTIONS(5004), + [anon_sym_noreturn] = ACTIONS(5004), + [anon_sym_type] = ACTIONS(5004), + [anon_sym_anyopaque] = ACTIONS(5004), + [anon_sym_bool] = ACTIONS(5004), + [anon_sym_int] = ACTIONS(5004), + [anon_sym_uint] = ACTIONS(5004), + [anon_sym_float] = ACTIONS(5004), + [anon_sym_range] = ACTIONS(5004), + [anon_sym_i8] = ACTIONS(5004), + [anon_sym_i16] = ACTIONS(5004), + [anon_sym_i32] = ACTIONS(5004), + [anon_sym_i64] = ACTIONS(5004), + [anon_sym_u8] = ACTIONS(5004), + [anon_sym_u16] = ACTIONS(5004), + [anon_sym_u32] = ACTIONS(5004), + [anon_sym_u64] = ACTIONS(5004), + [anon_sym_isize] = ACTIONS(5004), + [anon_sym_usize] = ACTIONS(5004), + [anon_sym_f32] = ACTIONS(5004), + [anon_sym_f64] = ACTIONS(5004), + [anon_sym_c_char] = ACTIONS(5004), + [anon_sym_c_schar] = ACTIONS(5004), + [anon_sym_c_uchar] = ACTIONS(5004), + [anon_sym_c_short] = ACTIONS(5004), + [anon_sym_c_ushort] = ACTIONS(5004), + [anon_sym_c_int] = ACTIONS(5004), + [anon_sym_c_uint] = ACTIONS(5004), + [anon_sym_c_long] = ACTIONS(5004), + [anon_sym_c_ulong] = ACTIONS(5004), + [anon_sym_c_longlong] = ACTIONS(5004), + [anon_sym_c_ulonglong] = ACTIONS(5004), + [anon_sym_c_float] = ACTIONS(5004), + [anon_sym_c_double] = ACTIONS(5004), + [anon_sym_c_longdouble] = ACTIONS(5004), + [anon_sym_else] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), + [anon_sym_orelse] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym_LT_LT_PIPE] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_catch] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5002), + }, + [STATE(7362)] = { + [sym_identifier] = ACTIONS(5008), + [anon_sym_func] = ACTIONS(5008), + [anon_sym_c_func] = ACTIONS(5008), + [anon_sym_struct] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_RBRACE] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_struct_type_BANG] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_AT] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_void] = ACTIONS(5008), + [anon_sym_noreturn] = ACTIONS(5008), + [anon_sym_type] = ACTIONS(5008), + [anon_sym_anyopaque] = ACTIONS(5008), + [anon_sym_bool] = ACTIONS(5008), + [anon_sym_int] = ACTIONS(5008), + [anon_sym_uint] = ACTIONS(5008), + [anon_sym_float] = ACTIONS(5008), + [anon_sym_range] = ACTIONS(5008), + [anon_sym_i8] = ACTIONS(5008), + [anon_sym_i16] = ACTIONS(5008), + [anon_sym_i32] = ACTIONS(5008), + [anon_sym_i64] = ACTIONS(5008), + [anon_sym_u8] = ACTIONS(5008), + [anon_sym_u16] = ACTIONS(5008), + [anon_sym_u32] = ACTIONS(5008), + [anon_sym_u64] = ACTIONS(5008), + [anon_sym_isize] = ACTIONS(5008), + [anon_sym_usize] = ACTIONS(5008), + [anon_sym_f32] = ACTIONS(5008), + [anon_sym_f64] = ACTIONS(5008), + [anon_sym_c_char] = ACTIONS(5008), + [anon_sym_c_schar] = ACTIONS(5008), + [anon_sym_c_uchar] = ACTIONS(5008), + [anon_sym_c_short] = ACTIONS(5008), + [anon_sym_c_ushort] = ACTIONS(5008), + [anon_sym_c_int] = ACTIONS(5008), + [anon_sym_c_uint] = ACTIONS(5008), + [anon_sym_c_long] = ACTIONS(5008), + [anon_sym_c_ulong] = ACTIONS(5008), + [anon_sym_c_longlong] = ACTIONS(5008), + [anon_sym_c_ulonglong] = ACTIONS(5008), + [anon_sym_c_float] = ACTIONS(5008), + [anon_sym_c_double] = ACTIONS(5008), + [anon_sym_c_longdouble] = ACTIONS(5008), + [anon_sym_else] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_orelse] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5006), + [anon_sym_BANG_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5008), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_LT_LT_PIPE] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_catch] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5006), + }, + [STATE(7363)] = { + [sym_identifier] = ACTIONS(5012), + [anon_sym_func] = ACTIONS(5012), + [anon_sym_c_func] = ACTIONS(5012), + [anon_sym_struct] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_COMMA] = ACTIONS(5010), + [anon_sym_RBRACE] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_struct_type_BANG] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_AT] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_void] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_type] = ACTIONS(5012), + [anon_sym_anyopaque] = ACTIONS(5012), + [anon_sym_bool] = ACTIONS(5012), + [anon_sym_int] = ACTIONS(5012), + [anon_sym_uint] = ACTIONS(5012), + [anon_sym_float] = ACTIONS(5012), + [anon_sym_range] = ACTIONS(5012), + [anon_sym_i8] = ACTIONS(5012), + [anon_sym_i16] = ACTIONS(5012), + [anon_sym_i32] = ACTIONS(5012), + [anon_sym_i64] = ACTIONS(5012), + [anon_sym_u8] = ACTIONS(5012), + [anon_sym_u16] = ACTIONS(5012), + [anon_sym_u32] = ACTIONS(5012), + [anon_sym_u64] = ACTIONS(5012), + [anon_sym_isize] = ACTIONS(5012), + [anon_sym_usize] = ACTIONS(5012), + [anon_sym_f32] = ACTIONS(5012), + [anon_sym_f64] = ACTIONS(5012), + [anon_sym_c_char] = ACTIONS(5012), + [anon_sym_c_schar] = ACTIONS(5012), + [anon_sym_c_uchar] = ACTIONS(5012), + [anon_sym_c_short] = ACTIONS(5012), + [anon_sym_c_ushort] = ACTIONS(5012), + [anon_sym_c_int] = ACTIONS(5012), + [anon_sym_c_uint] = ACTIONS(5012), + [anon_sym_c_long] = ACTIONS(5012), + [anon_sym_c_ulong] = ACTIONS(5012), + [anon_sym_c_longlong] = ACTIONS(5012), + [anon_sym_c_ulonglong] = ACTIONS(5012), + [anon_sym_c_float] = ACTIONS(5012), + [anon_sym_c_double] = ACTIONS(5012), + [anon_sym_c_longdouble] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), + [anon_sym_orelse] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5012), + [anon_sym_and] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5012), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_LT_LT_PIPE] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_catch] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5010), + }, + [STATE(7364)] = { + [sym_identifier] = ACTIONS(5016), + [anon_sym_func] = ACTIONS(5016), + [anon_sym_c_func] = ACTIONS(5016), + [anon_sym_struct] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_struct_type_BANG] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_void] = ACTIONS(5016), + [anon_sym_noreturn] = ACTIONS(5016), + [anon_sym_type] = ACTIONS(5016), + [anon_sym_anyopaque] = ACTIONS(5016), + [anon_sym_bool] = ACTIONS(5016), + [anon_sym_int] = ACTIONS(5016), + [anon_sym_uint] = ACTIONS(5016), + [anon_sym_float] = ACTIONS(5016), + [anon_sym_range] = ACTIONS(5016), + [anon_sym_i8] = ACTIONS(5016), + [anon_sym_i16] = ACTIONS(5016), + [anon_sym_i32] = ACTIONS(5016), + [anon_sym_i64] = ACTIONS(5016), + [anon_sym_u8] = ACTIONS(5016), + [anon_sym_u16] = ACTIONS(5016), + [anon_sym_u32] = ACTIONS(5016), + [anon_sym_u64] = ACTIONS(5016), + [anon_sym_isize] = ACTIONS(5016), + [anon_sym_usize] = ACTIONS(5016), + [anon_sym_f32] = ACTIONS(5016), + [anon_sym_f64] = ACTIONS(5016), + [anon_sym_c_char] = ACTIONS(5016), + [anon_sym_c_schar] = ACTIONS(5016), + [anon_sym_c_uchar] = ACTIONS(5016), + [anon_sym_c_short] = ACTIONS(5016), + [anon_sym_c_ushort] = ACTIONS(5016), + [anon_sym_c_int] = ACTIONS(5016), + [anon_sym_c_uint] = ACTIONS(5016), + [anon_sym_c_long] = ACTIONS(5016), + [anon_sym_c_ulong] = ACTIONS(5016), + [anon_sym_c_longlong] = ACTIONS(5016), + [anon_sym_c_ulonglong] = ACTIONS(5016), + [anon_sym_c_float] = ACTIONS(5016), + [anon_sym_c_double] = ACTIONS(5016), + [anon_sym_c_longdouble] = ACTIONS(5016), + [anon_sym_else] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5014), + [anon_sym_orelse] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5016), + [anon_sym_and] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_LT_LT_PIPE] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_catch] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5014), + }, + [STATE(7365)] = { + [sym_identifier] = ACTIONS(5020), + [anon_sym_func] = ACTIONS(5020), + [anon_sym_c_func] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_COMMA] = ACTIONS(5018), + [anon_sym_RBRACE] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_struct_type_BANG] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_AT] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_void] = ACTIONS(5020), + [anon_sym_noreturn] = ACTIONS(5020), + [anon_sym_type] = ACTIONS(5020), + [anon_sym_anyopaque] = ACTIONS(5020), + [anon_sym_bool] = ACTIONS(5020), + [anon_sym_int] = ACTIONS(5020), + [anon_sym_uint] = ACTIONS(5020), + [anon_sym_float] = ACTIONS(5020), + [anon_sym_range] = ACTIONS(5020), + [anon_sym_i8] = ACTIONS(5020), + [anon_sym_i16] = ACTIONS(5020), + [anon_sym_i32] = ACTIONS(5020), + [anon_sym_i64] = ACTIONS(5020), + [anon_sym_u8] = ACTIONS(5020), + [anon_sym_u16] = ACTIONS(5020), + [anon_sym_u32] = ACTIONS(5020), + [anon_sym_u64] = ACTIONS(5020), + [anon_sym_isize] = ACTIONS(5020), + [anon_sym_usize] = ACTIONS(5020), + [anon_sym_f32] = ACTIONS(5020), + [anon_sym_f64] = ACTIONS(5020), + [anon_sym_c_char] = ACTIONS(5020), + [anon_sym_c_schar] = ACTIONS(5020), + [anon_sym_c_uchar] = ACTIONS(5020), + [anon_sym_c_short] = ACTIONS(5020), + [anon_sym_c_ushort] = ACTIONS(5020), + [anon_sym_c_int] = ACTIONS(5020), + [anon_sym_c_uint] = ACTIONS(5020), + [anon_sym_c_long] = ACTIONS(5020), + [anon_sym_c_ulong] = ACTIONS(5020), + [anon_sym_c_longlong] = ACTIONS(5020), + [anon_sym_c_ulonglong] = ACTIONS(5020), + [anon_sym_c_float] = ACTIONS(5020), + [anon_sym_c_double] = ACTIONS(5020), + [anon_sym_c_longdouble] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5018), + [anon_sym_orelse] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5020), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym_LT_LT_PIPE] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_catch] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5018), + }, + [STATE(7366)] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_func] = ACTIONS(5024), + [anon_sym_c_func] = ACTIONS(5024), + [anon_sym_struct] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_struct_type_BANG] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_AT] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_void] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_type] = ACTIONS(5024), + [anon_sym_anyopaque] = ACTIONS(5024), + [anon_sym_bool] = ACTIONS(5024), + [anon_sym_int] = ACTIONS(5024), + [anon_sym_uint] = ACTIONS(5024), + [anon_sym_float] = ACTIONS(5024), + [anon_sym_range] = ACTIONS(5024), + [anon_sym_i8] = ACTIONS(5024), + [anon_sym_i16] = ACTIONS(5024), + [anon_sym_i32] = ACTIONS(5024), + [anon_sym_i64] = ACTIONS(5024), + [anon_sym_u8] = ACTIONS(5024), + [anon_sym_u16] = ACTIONS(5024), + [anon_sym_u32] = ACTIONS(5024), + [anon_sym_u64] = ACTIONS(5024), + [anon_sym_isize] = ACTIONS(5024), + [anon_sym_usize] = ACTIONS(5024), + [anon_sym_f32] = ACTIONS(5024), + [anon_sym_f64] = ACTIONS(5024), + [anon_sym_c_char] = ACTIONS(5024), + [anon_sym_c_schar] = ACTIONS(5024), + [anon_sym_c_uchar] = ACTIONS(5024), + [anon_sym_c_short] = ACTIONS(5024), + [anon_sym_c_ushort] = ACTIONS(5024), + [anon_sym_c_int] = ACTIONS(5024), + [anon_sym_c_uint] = ACTIONS(5024), + [anon_sym_c_long] = ACTIONS(5024), + [anon_sym_c_ulong] = ACTIONS(5024), + [anon_sym_c_longlong] = ACTIONS(5024), + [anon_sym_c_ulonglong] = ACTIONS(5024), + [anon_sym_c_float] = ACTIONS(5024), + [anon_sym_c_double] = ACTIONS(5024), + [anon_sym_c_longdouble] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5022), + [anon_sym_orelse] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_LT_LT_PIPE] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_catch] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5022), + }, + [STATE(7367)] = { + [sym_identifier] = ACTIONS(6042), + [anon_sym_func] = ACTIONS(6042), + [anon_sym_c_func] = ACTIONS(6042), + [anon_sym_struct] = ACTIONS(6042), + [anon_sym_LPAREN] = ACTIONS(6040), + [anon_sym_COMMA] = ACTIONS(6040), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_DASH] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(6040), + [anon_sym_struct_type_BANG] = ACTIONS(6040), + [anon_sym_QMARK] = ACTIONS(6040), + [anon_sym_AT] = ACTIONS(6040), + [anon_sym_STAR] = ACTIONS(6040), + [anon_sym_LBRACK] = ACTIONS(6040), + [anon_sym_void] = ACTIONS(6042), + [anon_sym_noreturn] = ACTIONS(6042), + [anon_sym_type] = ACTIONS(6042), + [anon_sym_anyopaque] = ACTIONS(6042), + [anon_sym_bool] = ACTIONS(6042), + [anon_sym_int] = ACTIONS(6042), + [anon_sym_uint] = ACTIONS(6042), + [anon_sym_float] = ACTIONS(6042), + [anon_sym_range] = ACTIONS(6042), + [anon_sym_i8] = ACTIONS(6042), + [anon_sym_i16] = ACTIONS(6042), + [anon_sym_i32] = ACTIONS(6042), + [anon_sym_i64] = ACTIONS(6042), + [anon_sym_u8] = ACTIONS(6042), + [anon_sym_u16] = ACTIONS(6042), + [anon_sym_u32] = ACTIONS(6042), + [anon_sym_u64] = ACTIONS(6042), + [anon_sym_isize] = ACTIONS(6042), + [anon_sym_usize] = ACTIONS(6042), + [anon_sym_f32] = ACTIONS(6042), + [anon_sym_f64] = ACTIONS(6042), + [anon_sym_c_char] = ACTIONS(6042), + [anon_sym_c_schar] = ACTIONS(6042), + [anon_sym_c_uchar] = ACTIONS(6042), + [anon_sym_c_short] = ACTIONS(6042), + [anon_sym_c_ushort] = ACTIONS(6042), + [anon_sym_c_int] = ACTIONS(6042), + [anon_sym_c_uint] = ACTIONS(6042), + [anon_sym_c_long] = ACTIONS(6042), + [anon_sym_c_ulong] = ACTIONS(6042), + [anon_sym_c_longlong] = ACTIONS(6042), + [anon_sym_c_ulonglong] = ACTIONS(6042), + [anon_sym_c_float] = ACTIONS(6042), + [anon_sym_c_double] = ACTIONS(6042), + [anon_sym_c_longdouble] = ACTIONS(6042), + [anon_sym_else] = ACTIONS(6042), + [anon_sym_DOT_DOT] = ACTIONS(6042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6040), + [anon_sym_orelse] = ACTIONS(6042), + [anon_sym_or] = ACTIONS(6042), + [anon_sym_and] = ACTIONS(6042), + [anon_sym_EQ_EQ] = ACTIONS(6040), + [anon_sym_BANG_EQ] = ACTIONS(6040), + [anon_sym_LT] = ACTIONS(6042), + [anon_sym_LT_EQ] = ACTIONS(6040), + [anon_sym_GT] = ACTIONS(6042), + [anon_sym_GT_EQ] = ACTIONS(6040), + [anon_sym_AMP] = ACTIONS(6040), + [anon_sym_xor] = ACTIONS(6042), + [anon_sym_LT_LT] = ACTIONS(6042), + [anon_sym_GT_GT] = ACTIONS(6040), + [anon_sym_LT_LT_PIPE] = ACTIONS(6040), + [anon_sym_PLUS] = ACTIONS(6040), + [anon_sym_SLASH] = ACTIONS(6040), + [anon_sym_catch] = ACTIONS(6042), + [anon_sym_DOT] = ACTIONS(6042), + [anon_sym_CARET] = ACTIONS(6040), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6040), + }, + [STATE(7368)] = { + [sym_identifier] = ACTIONS(5032), + [anon_sym_func] = ACTIONS(5032), + [anon_sym_c_func] = ACTIONS(5032), + [anon_sym_struct] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_struct_type_BANG] = ACTIONS(5030), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_AT] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_void] = ACTIONS(5032), + [anon_sym_noreturn] = ACTIONS(5032), + [anon_sym_type] = ACTIONS(5032), + [anon_sym_anyopaque] = ACTIONS(5032), + [anon_sym_bool] = ACTIONS(5032), + [anon_sym_int] = ACTIONS(5032), + [anon_sym_uint] = ACTIONS(5032), + [anon_sym_float] = ACTIONS(5032), + [anon_sym_range] = ACTIONS(5032), + [anon_sym_i8] = ACTIONS(5032), + [anon_sym_i16] = ACTIONS(5032), + [anon_sym_i32] = ACTIONS(5032), + [anon_sym_i64] = ACTIONS(5032), + [anon_sym_u8] = ACTIONS(5032), + [anon_sym_u16] = ACTIONS(5032), + [anon_sym_u32] = ACTIONS(5032), + [anon_sym_u64] = ACTIONS(5032), + [anon_sym_isize] = ACTIONS(5032), + [anon_sym_usize] = ACTIONS(5032), + [anon_sym_f32] = ACTIONS(5032), + [anon_sym_f64] = ACTIONS(5032), + [anon_sym_c_char] = ACTIONS(5032), + [anon_sym_c_schar] = ACTIONS(5032), + [anon_sym_c_uchar] = ACTIONS(5032), + [anon_sym_c_short] = ACTIONS(5032), + [anon_sym_c_ushort] = ACTIONS(5032), + [anon_sym_c_int] = ACTIONS(5032), + [anon_sym_c_uint] = ACTIONS(5032), + [anon_sym_c_long] = ACTIONS(5032), + [anon_sym_c_ulong] = ACTIONS(5032), + [anon_sym_c_longlong] = ACTIONS(5032), + [anon_sym_c_ulonglong] = ACTIONS(5032), + [anon_sym_c_float] = ACTIONS(5032), + [anon_sym_c_double] = ACTIONS(5032), + [anon_sym_c_longdouble] = ACTIONS(5032), + [anon_sym_else] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5030), + [anon_sym_orelse] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_xor] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_LT_LT_PIPE] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_catch] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5030), + }, + [STATE(7369)] = { + [sym_identifier] = ACTIONS(5036), + [anon_sym_func] = ACTIONS(5036), + [anon_sym_c_func] = ACTIONS(5036), + [anon_sym_struct] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_struct_type_BANG] = ACTIONS(5034), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_AT] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_void] = ACTIONS(5036), + [anon_sym_noreturn] = ACTIONS(5036), + [anon_sym_type] = ACTIONS(5036), + [anon_sym_anyopaque] = ACTIONS(5036), + [anon_sym_bool] = ACTIONS(5036), + [anon_sym_int] = ACTIONS(5036), + [anon_sym_uint] = ACTIONS(5036), + [anon_sym_float] = ACTIONS(5036), + [anon_sym_range] = ACTIONS(5036), + [anon_sym_i8] = ACTIONS(5036), + [anon_sym_i16] = ACTIONS(5036), + [anon_sym_i32] = ACTIONS(5036), + [anon_sym_i64] = ACTIONS(5036), + [anon_sym_u8] = ACTIONS(5036), + [anon_sym_u16] = ACTIONS(5036), + [anon_sym_u32] = ACTIONS(5036), + [anon_sym_u64] = ACTIONS(5036), + [anon_sym_isize] = ACTIONS(5036), + [anon_sym_usize] = ACTIONS(5036), + [anon_sym_f32] = ACTIONS(5036), + [anon_sym_f64] = ACTIONS(5036), + [anon_sym_c_char] = ACTIONS(5036), + [anon_sym_c_schar] = ACTIONS(5036), + [anon_sym_c_uchar] = ACTIONS(5036), + [anon_sym_c_short] = ACTIONS(5036), + [anon_sym_c_ushort] = ACTIONS(5036), + [anon_sym_c_int] = ACTIONS(5036), + [anon_sym_c_uint] = ACTIONS(5036), + [anon_sym_c_long] = ACTIONS(5036), + [anon_sym_c_ulong] = ACTIONS(5036), + [anon_sym_c_longlong] = ACTIONS(5036), + [anon_sym_c_ulonglong] = ACTIONS(5036), + [anon_sym_c_float] = ACTIONS(5036), + [anon_sym_c_double] = ACTIONS(5036), + [anon_sym_c_longdouble] = ACTIONS(5036), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5034), + [anon_sym_orelse] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_xor] = ACTIONS(5036), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_LT_LT_PIPE] = ACTIONS(5034), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_catch] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5034), + }, + [STATE(7370)] = { + [sym_identifier] = ACTIONS(5040), + [anon_sym_func] = ACTIONS(5040), + [anon_sym_c_func] = ACTIONS(5040), + [anon_sym_struct] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_COMMA] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_struct_type_BANG] = ACTIONS(5038), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_AT] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_void] = ACTIONS(5040), + [anon_sym_noreturn] = ACTIONS(5040), + [anon_sym_type] = ACTIONS(5040), + [anon_sym_anyopaque] = ACTIONS(5040), + [anon_sym_bool] = ACTIONS(5040), + [anon_sym_int] = ACTIONS(5040), + [anon_sym_uint] = ACTIONS(5040), + [anon_sym_float] = ACTIONS(5040), + [anon_sym_range] = ACTIONS(5040), + [anon_sym_i8] = ACTIONS(5040), + [anon_sym_i16] = ACTIONS(5040), + [anon_sym_i32] = ACTIONS(5040), + [anon_sym_i64] = ACTIONS(5040), + [anon_sym_u8] = ACTIONS(5040), + [anon_sym_u16] = ACTIONS(5040), + [anon_sym_u32] = ACTIONS(5040), + [anon_sym_u64] = ACTIONS(5040), + [anon_sym_isize] = ACTIONS(5040), + [anon_sym_usize] = ACTIONS(5040), + [anon_sym_f32] = ACTIONS(5040), + [anon_sym_f64] = ACTIONS(5040), + [anon_sym_c_char] = ACTIONS(5040), + [anon_sym_c_schar] = ACTIONS(5040), + [anon_sym_c_uchar] = ACTIONS(5040), + [anon_sym_c_short] = ACTIONS(5040), + [anon_sym_c_ushort] = ACTIONS(5040), + [anon_sym_c_int] = ACTIONS(5040), + [anon_sym_c_uint] = ACTIONS(5040), + [anon_sym_c_long] = ACTIONS(5040), + [anon_sym_c_ulong] = ACTIONS(5040), + [anon_sym_c_longlong] = ACTIONS(5040), + [anon_sym_c_ulonglong] = ACTIONS(5040), + [anon_sym_c_float] = ACTIONS(5040), + [anon_sym_c_double] = ACTIONS(5040), + [anon_sym_c_longdouble] = ACTIONS(5040), + [anon_sym_else] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5038), + [anon_sym_orelse] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5040), + [anon_sym_and] = ACTIONS(5040), + [anon_sym_EQ_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5040), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_xor] = ACTIONS(5040), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_LT_LT_PIPE] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_catch] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5038), + }, + [STATE(7371)] = { + [sym_identifier] = ACTIONS(5044), + [anon_sym_func] = ACTIONS(5044), + [anon_sym_c_func] = ACTIONS(5044), + [anon_sym_struct] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_COMMA] = ACTIONS(5042), + [anon_sym_RBRACE] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_struct_type_BANG] = ACTIONS(5042), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_AT] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_void] = ACTIONS(5044), + [anon_sym_noreturn] = ACTIONS(5044), + [anon_sym_type] = ACTIONS(5044), + [anon_sym_anyopaque] = ACTIONS(5044), + [anon_sym_bool] = ACTIONS(5044), + [anon_sym_int] = ACTIONS(5044), + [anon_sym_uint] = ACTIONS(5044), + [anon_sym_float] = ACTIONS(5044), + [anon_sym_range] = ACTIONS(5044), + [anon_sym_i8] = ACTIONS(5044), + [anon_sym_i16] = ACTIONS(5044), + [anon_sym_i32] = ACTIONS(5044), + [anon_sym_i64] = ACTIONS(5044), + [anon_sym_u8] = ACTIONS(5044), + [anon_sym_u16] = ACTIONS(5044), + [anon_sym_u32] = ACTIONS(5044), + [anon_sym_u64] = ACTIONS(5044), + [anon_sym_isize] = ACTIONS(5044), + [anon_sym_usize] = ACTIONS(5044), + [anon_sym_f32] = ACTIONS(5044), + [anon_sym_f64] = ACTIONS(5044), + [anon_sym_c_char] = ACTIONS(5044), + [anon_sym_c_schar] = ACTIONS(5044), + [anon_sym_c_uchar] = ACTIONS(5044), + [anon_sym_c_short] = ACTIONS(5044), + [anon_sym_c_ushort] = ACTIONS(5044), + [anon_sym_c_int] = ACTIONS(5044), + [anon_sym_c_uint] = ACTIONS(5044), + [anon_sym_c_long] = ACTIONS(5044), + [anon_sym_c_ulong] = ACTIONS(5044), + [anon_sym_c_longlong] = ACTIONS(5044), + [anon_sym_c_ulonglong] = ACTIONS(5044), + [anon_sym_c_float] = ACTIONS(5044), + [anon_sym_c_double] = ACTIONS(5044), + [anon_sym_c_longdouble] = ACTIONS(5044), + [anon_sym_else] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5042), + [anon_sym_orelse] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5042), + [anon_sym_BANG_EQ] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_xor] = ACTIONS(5044), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5042), + [anon_sym_LT_LT_PIPE] = ACTIONS(5042), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_catch] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5042), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5042), + }, + [STATE(7372)] = { + [sym_identifier] = ACTIONS(5048), + [anon_sym_func] = ACTIONS(5048), + [anon_sym_c_func] = ACTIONS(5048), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_struct_type_BANG] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_AT] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_void] = ACTIONS(5048), + [anon_sym_noreturn] = ACTIONS(5048), + [anon_sym_type] = ACTIONS(5048), + [anon_sym_anyopaque] = ACTIONS(5048), + [anon_sym_bool] = ACTIONS(5048), + [anon_sym_int] = ACTIONS(5048), + [anon_sym_uint] = ACTIONS(5048), + [anon_sym_float] = ACTIONS(5048), + [anon_sym_range] = ACTIONS(5048), + [anon_sym_i8] = ACTIONS(5048), + [anon_sym_i16] = ACTIONS(5048), + [anon_sym_i32] = ACTIONS(5048), + [anon_sym_i64] = ACTIONS(5048), + [anon_sym_u8] = ACTIONS(5048), + [anon_sym_u16] = ACTIONS(5048), + [anon_sym_u32] = ACTIONS(5048), + [anon_sym_u64] = ACTIONS(5048), + [anon_sym_isize] = ACTIONS(5048), + [anon_sym_usize] = ACTIONS(5048), + [anon_sym_f32] = ACTIONS(5048), + [anon_sym_f64] = ACTIONS(5048), + [anon_sym_c_char] = ACTIONS(5048), + [anon_sym_c_schar] = ACTIONS(5048), + [anon_sym_c_uchar] = ACTIONS(5048), + [anon_sym_c_short] = ACTIONS(5048), + [anon_sym_c_ushort] = ACTIONS(5048), + [anon_sym_c_int] = ACTIONS(5048), + [anon_sym_c_uint] = ACTIONS(5048), + [anon_sym_c_long] = ACTIONS(5048), + [anon_sym_c_ulong] = ACTIONS(5048), + [anon_sym_c_longlong] = ACTIONS(5048), + [anon_sym_c_ulonglong] = ACTIONS(5048), + [anon_sym_c_float] = ACTIONS(5048), + [anon_sym_c_double] = ACTIONS(5048), + [anon_sym_c_longdouble] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5046), + [anon_sym_orelse] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_LT_LT_PIPE] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_catch] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5046), + }, + [STATE(7373)] = { + [sym_identifier] = ACTIONS(5056), + [anon_sym_func] = ACTIONS(5056), + [anon_sym_c_func] = ACTIONS(5056), + [anon_sym_struct] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5054), + [anon_sym_COMMA] = ACTIONS(5054), + [anon_sym_RBRACE] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_struct_type_BANG] = ACTIONS(5054), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_AT] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5054), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_void] = ACTIONS(5056), + [anon_sym_noreturn] = ACTIONS(5056), + [anon_sym_type] = ACTIONS(5056), + [anon_sym_anyopaque] = ACTIONS(5056), + [anon_sym_bool] = ACTIONS(5056), + [anon_sym_int] = ACTIONS(5056), + [anon_sym_uint] = ACTIONS(5056), + [anon_sym_float] = ACTIONS(5056), + [anon_sym_range] = ACTIONS(5056), + [anon_sym_i8] = ACTIONS(5056), + [anon_sym_i16] = ACTIONS(5056), + [anon_sym_i32] = ACTIONS(5056), + [anon_sym_i64] = ACTIONS(5056), + [anon_sym_u8] = ACTIONS(5056), + [anon_sym_u16] = ACTIONS(5056), + [anon_sym_u32] = ACTIONS(5056), + [anon_sym_u64] = ACTIONS(5056), + [anon_sym_isize] = ACTIONS(5056), + [anon_sym_usize] = ACTIONS(5056), + [anon_sym_f32] = ACTIONS(5056), + [anon_sym_f64] = ACTIONS(5056), + [anon_sym_c_char] = ACTIONS(5056), + [anon_sym_c_schar] = ACTIONS(5056), + [anon_sym_c_uchar] = ACTIONS(5056), + [anon_sym_c_short] = ACTIONS(5056), + [anon_sym_c_ushort] = ACTIONS(5056), + [anon_sym_c_int] = ACTIONS(5056), + [anon_sym_c_uint] = ACTIONS(5056), + [anon_sym_c_long] = ACTIONS(5056), + [anon_sym_c_ulong] = ACTIONS(5056), + [anon_sym_c_longlong] = ACTIONS(5056), + [anon_sym_c_ulonglong] = ACTIONS(5056), + [anon_sym_c_float] = ACTIONS(5056), + [anon_sym_c_double] = ACTIONS(5056), + [anon_sym_c_longdouble] = ACTIONS(5056), + [anon_sym_else] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5054), + [anon_sym_orelse] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_LT] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_xor] = ACTIONS(5056), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5054), + [anon_sym_LT_LT_PIPE] = ACTIONS(5054), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_catch] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5054), + }, + [STATE(7374)] = { + [sym_identifier] = ACTIONS(5060), + [anon_sym_func] = ACTIONS(5060), + [anon_sym_c_func] = ACTIONS(5060), + [anon_sym_struct] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_COMMA] = ACTIONS(5058), + [anon_sym_RBRACE] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_struct_type_BANG] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_AT] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5058), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_void] = ACTIONS(5060), + [anon_sym_noreturn] = ACTIONS(5060), + [anon_sym_type] = ACTIONS(5060), + [anon_sym_anyopaque] = ACTIONS(5060), + [anon_sym_bool] = ACTIONS(5060), + [anon_sym_int] = ACTIONS(5060), + [anon_sym_uint] = ACTIONS(5060), + [anon_sym_float] = ACTIONS(5060), + [anon_sym_range] = ACTIONS(5060), + [anon_sym_i8] = ACTIONS(5060), + [anon_sym_i16] = ACTIONS(5060), + [anon_sym_i32] = ACTIONS(5060), + [anon_sym_i64] = ACTIONS(5060), + [anon_sym_u8] = ACTIONS(5060), + [anon_sym_u16] = ACTIONS(5060), + [anon_sym_u32] = ACTIONS(5060), + [anon_sym_u64] = ACTIONS(5060), + [anon_sym_isize] = ACTIONS(5060), + [anon_sym_usize] = ACTIONS(5060), + [anon_sym_f32] = ACTIONS(5060), + [anon_sym_f64] = ACTIONS(5060), + [anon_sym_c_char] = ACTIONS(5060), + [anon_sym_c_schar] = ACTIONS(5060), + [anon_sym_c_uchar] = ACTIONS(5060), + [anon_sym_c_short] = ACTIONS(5060), + [anon_sym_c_ushort] = ACTIONS(5060), + [anon_sym_c_int] = ACTIONS(5060), + [anon_sym_c_uint] = ACTIONS(5060), + [anon_sym_c_long] = ACTIONS(5060), + [anon_sym_c_ulong] = ACTIONS(5060), + [anon_sym_c_longlong] = ACTIONS(5060), + [anon_sym_c_ulonglong] = ACTIONS(5060), + [anon_sym_c_float] = ACTIONS(5060), + [anon_sym_c_double] = ACTIONS(5060), + [anon_sym_c_longdouble] = ACTIONS(5060), + [anon_sym_else] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5058), + [anon_sym_orelse] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5058), + [anon_sym_BANG_EQ] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5058), + [anon_sym_LT_LT_PIPE] = ACTIONS(5058), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_catch] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5058), + }, + [STATE(7375)] = { + [sym_identifier] = ACTIONS(5066), + [anon_sym_func] = ACTIONS(5066), + [anon_sym_c_func] = ACTIONS(5066), + [anon_sym_struct] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5064), + [anon_sym_struct_type_BANG] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_AT] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_void] = ACTIONS(5066), + [anon_sym_noreturn] = ACTIONS(5066), + [anon_sym_type] = ACTIONS(5066), + [anon_sym_anyopaque] = ACTIONS(5066), + [anon_sym_bool] = ACTIONS(5066), + [anon_sym_int] = ACTIONS(5066), + [anon_sym_uint] = ACTIONS(5066), + [anon_sym_float] = ACTIONS(5066), + [anon_sym_range] = ACTIONS(5066), + [anon_sym_i8] = ACTIONS(5066), + [anon_sym_i16] = ACTIONS(5066), + [anon_sym_i32] = ACTIONS(5066), + [anon_sym_i64] = ACTIONS(5066), + [anon_sym_u8] = ACTIONS(5066), + [anon_sym_u16] = ACTIONS(5066), + [anon_sym_u32] = ACTIONS(5066), + [anon_sym_u64] = ACTIONS(5066), + [anon_sym_isize] = ACTIONS(5066), + [anon_sym_usize] = ACTIONS(5066), + [anon_sym_f32] = ACTIONS(5066), + [anon_sym_f64] = ACTIONS(5066), + [anon_sym_c_char] = ACTIONS(5066), + [anon_sym_c_schar] = ACTIONS(5066), + [anon_sym_c_uchar] = ACTIONS(5066), + [anon_sym_c_short] = ACTIONS(5066), + [anon_sym_c_ushort] = ACTIONS(5066), + [anon_sym_c_int] = ACTIONS(5066), + [anon_sym_c_uint] = ACTIONS(5066), + [anon_sym_c_long] = ACTIONS(5066), + [anon_sym_c_ulong] = ACTIONS(5066), + [anon_sym_c_longlong] = ACTIONS(5066), + [anon_sym_c_ulonglong] = ACTIONS(5066), + [anon_sym_c_float] = ACTIONS(5066), + [anon_sym_c_double] = ACTIONS(5066), + [anon_sym_c_longdouble] = ACTIONS(5066), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5064), + [anon_sym_orelse] = ACTIONS(5066), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_and] = ACTIONS(5066), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_xor] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5066), + [anon_sym_GT_GT] = ACTIONS(5064), + [anon_sym_LT_LT_PIPE] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_SLASH] = ACTIONS(5064), + [anon_sym_catch] = ACTIONS(5066), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5064), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5064), + }, + [STATE(7376)] = { + [sym_identifier] = ACTIONS(5070), + [anon_sym_func] = ACTIONS(5070), + [anon_sym_c_func] = ACTIONS(5070), + [anon_sym_struct] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5068), + [anon_sym_struct_type_BANG] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5068), + [anon_sym_AT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_void] = ACTIONS(5070), + [anon_sym_noreturn] = ACTIONS(5070), + [anon_sym_type] = ACTIONS(5070), + [anon_sym_anyopaque] = ACTIONS(5070), + [anon_sym_bool] = ACTIONS(5070), + [anon_sym_int] = ACTIONS(5070), + [anon_sym_uint] = ACTIONS(5070), + [anon_sym_float] = ACTIONS(5070), + [anon_sym_range] = ACTIONS(5070), + [anon_sym_i8] = ACTIONS(5070), + [anon_sym_i16] = ACTIONS(5070), + [anon_sym_i32] = ACTIONS(5070), + [anon_sym_i64] = ACTIONS(5070), + [anon_sym_u8] = ACTIONS(5070), + [anon_sym_u16] = ACTIONS(5070), + [anon_sym_u32] = ACTIONS(5070), + [anon_sym_u64] = ACTIONS(5070), + [anon_sym_isize] = ACTIONS(5070), + [anon_sym_usize] = ACTIONS(5070), + [anon_sym_f32] = ACTIONS(5070), + [anon_sym_f64] = ACTIONS(5070), + [anon_sym_c_char] = ACTIONS(5070), + [anon_sym_c_schar] = ACTIONS(5070), + [anon_sym_c_uchar] = ACTIONS(5070), + [anon_sym_c_short] = ACTIONS(5070), + [anon_sym_c_ushort] = ACTIONS(5070), + [anon_sym_c_int] = ACTIONS(5070), + [anon_sym_c_uint] = ACTIONS(5070), + [anon_sym_c_long] = ACTIONS(5070), + [anon_sym_c_ulong] = ACTIONS(5070), + [anon_sym_c_longlong] = ACTIONS(5070), + [anon_sym_c_ulonglong] = ACTIONS(5070), + [anon_sym_c_float] = ACTIONS(5070), + [anon_sym_c_double] = ACTIONS(5070), + [anon_sym_c_longdouble] = ACTIONS(5070), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5068), + [anon_sym_orelse] = ACTIONS(5070), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5070), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_AMP] = ACTIONS(5068), + [anon_sym_xor] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5070), + [anon_sym_GT_GT] = ACTIONS(5068), + [anon_sym_LT_LT_PIPE] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5068), + [anon_sym_SLASH] = ACTIONS(5068), + [anon_sym_catch] = ACTIONS(5070), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5068), + }, + [STATE(7377)] = { + [sym_identifier] = ACTIONS(5074), + [anon_sym_func] = ACTIONS(5074), + [anon_sym_c_func] = ACTIONS(5074), + [anon_sym_struct] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_DASH] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5072), + [anon_sym_struct_type_BANG] = ACTIONS(5072), + [anon_sym_QMARK] = ACTIONS(5072), + [anon_sym_AT] = ACTIONS(5072), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_void] = ACTIONS(5074), + [anon_sym_noreturn] = ACTIONS(5074), + [anon_sym_type] = ACTIONS(5074), + [anon_sym_anyopaque] = ACTIONS(5074), + [anon_sym_bool] = ACTIONS(5074), + [anon_sym_int] = ACTIONS(5074), + [anon_sym_uint] = ACTIONS(5074), + [anon_sym_float] = ACTIONS(5074), + [anon_sym_range] = ACTIONS(5074), + [anon_sym_i8] = ACTIONS(5074), + [anon_sym_i16] = ACTIONS(5074), + [anon_sym_i32] = ACTIONS(5074), + [anon_sym_i64] = ACTIONS(5074), + [anon_sym_u8] = ACTIONS(5074), + [anon_sym_u16] = ACTIONS(5074), + [anon_sym_u32] = ACTIONS(5074), + [anon_sym_u64] = ACTIONS(5074), + [anon_sym_isize] = ACTIONS(5074), + [anon_sym_usize] = ACTIONS(5074), + [anon_sym_f32] = ACTIONS(5074), + [anon_sym_f64] = ACTIONS(5074), + [anon_sym_c_char] = ACTIONS(5074), + [anon_sym_c_schar] = ACTIONS(5074), + [anon_sym_c_uchar] = ACTIONS(5074), + [anon_sym_c_short] = ACTIONS(5074), + [anon_sym_c_ushort] = ACTIONS(5074), + [anon_sym_c_int] = ACTIONS(5074), + [anon_sym_c_uint] = ACTIONS(5074), + [anon_sym_c_long] = ACTIONS(5074), + [anon_sym_c_ulong] = ACTIONS(5074), + [anon_sym_c_longlong] = ACTIONS(5074), + [anon_sym_c_ulonglong] = ACTIONS(5074), + [anon_sym_c_float] = ACTIONS(5074), + [anon_sym_c_double] = ACTIONS(5074), + [anon_sym_c_longdouble] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5072), + [anon_sym_orelse] = ACTIONS(5074), + [anon_sym_or] = ACTIONS(5074), + [anon_sym_and] = ACTIONS(5074), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_AMP] = ACTIONS(5072), + [anon_sym_xor] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5074), + [anon_sym_GT_GT] = ACTIONS(5072), + [anon_sym_LT_LT_PIPE] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5072), + [anon_sym_SLASH] = ACTIONS(5072), + [anon_sym_catch] = ACTIONS(5074), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5072), + }, + [STATE(7378)] = { + [sym_identifier] = ACTIONS(5078), + [anon_sym_func] = ACTIONS(5078), + [anon_sym_c_func] = ACTIONS(5078), + [anon_sym_struct] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_DASH] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5076), + [anon_sym_struct_type_BANG] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(5076), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_STAR] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_void] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym_type] = ACTIONS(5078), + [anon_sym_anyopaque] = ACTIONS(5078), + [anon_sym_bool] = ACTIONS(5078), + [anon_sym_int] = ACTIONS(5078), + [anon_sym_uint] = ACTIONS(5078), + [anon_sym_float] = ACTIONS(5078), + [anon_sym_range] = ACTIONS(5078), + [anon_sym_i8] = ACTIONS(5078), + [anon_sym_i16] = ACTIONS(5078), + [anon_sym_i32] = ACTIONS(5078), + [anon_sym_i64] = ACTIONS(5078), + [anon_sym_u8] = ACTIONS(5078), + [anon_sym_u16] = ACTIONS(5078), + [anon_sym_u32] = ACTIONS(5078), + [anon_sym_u64] = ACTIONS(5078), + [anon_sym_isize] = ACTIONS(5078), + [anon_sym_usize] = ACTIONS(5078), + [anon_sym_f32] = ACTIONS(5078), + [anon_sym_f64] = ACTIONS(5078), + [anon_sym_c_char] = ACTIONS(5078), + [anon_sym_c_schar] = ACTIONS(5078), + [anon_sym_c_uchar] = ACTIONS(5078), + [anon_sym_c_short] = ACTIONS(5078), + [anon_sym_c_ushort] = ACTIONS(5078), + [anon_sym_c_int] = ACTIONS(5078), + [anon_sym_c_uint] = ACTIONS(5078), + [anon_sym_c_long] = ACTIONS(5078), + [anon_sym_c_ulong] = ACTIONS(5078), + [anon_sym_c_longlong] = ACTIONS(5078), + [anon_sym_c_ulonglong] = ACTIONS(5078), + [anon_sym_c_float] = ACTIONS(5078), + [anon_sym_c_double] = ACTIONS(5078), + [anon_sym_c_longdouble] = ACTIONS(5078), + [anon_sym_else] = ACTIONS(5078), + [anon_sym_DOT_DOT] = ACTIONS(5078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5076), + [anon_sym_orelse] = ACTIONS(5078), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(5076), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5076), + [anon_sym_LT_LT_PIPE] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5076), + [anon_sym_SLASH] = ACTIONS(5076), + [anon_sym_catch] = ACTIONS(5078), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5076), + }, + [STATE(7379)] = { + [sym_identifier] = ACTIONS(5082), + [anon_sym_func] = ACTIONS(5082), + [anon_sym_c_func] = ACTIONS(5082), + [anon_sym_struct] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_struct_type_BANG] = ACTIONS(5080), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_AT] = ACTIONS(5080), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_void] = ACTIONS(5082), + [anon_sym_noreturn] = ACTIONS(5082), + [anon_sym_type] = ACTIONS(5082), + [anon_sym_anyopaque] = ACTIONS(5082), + [anon_sym_bool] = ACTIONS(5082), + [anon_sym_int] = ACTIONS(5082), + [anon_sym_uint] = ACTIONS(5082), + [anon_sym_float] = ACTIONS(5082), + [anon_sym_range] = ACTIONS(5082), + [anon_sym_i8] = ACTIONS(5082), + [anon_sym_i16] = ACTIONS(5082), + [anon_sym_i32] = ACTIONS(5082), + [anon_sym_i64] = ACTIONS(5082), + [anon_sym_u8] = ACTIONS(5082), + [anon_sym_u16] = ACTIONS(5082), + [anon_sym_u32] = ACTIONS(5082), + [anon_sym_u64] = ACTIONS(5082), + [anon_sym_isize] = ACTIONS(5082), + [anon_sym_usize] = ACTIONS(5082), + [anon_sym_f32] = ACTIONS(5082), + [anon_sym_f64] = ACTIONS(5082), + [anon_sym_c_char] = ACTIONS(5082), + [anon_sym_c_schar] = ACTIONS(5082), + [anon_sym_c_uchar] = ACTIONS(5082), + [anon_sym_c_short] = ACTIONS(5082), + [anon_sym_c_ushort] = ACTIONS(5082), + [anon_sym_c_int] = ACTIONS(5082), + [anon_sym_c_uint] = ACTIONS(5082), + [anon_sym_c_long] = ACTIONS(5082), + [anon_sym_c_ulong] = ACTIONS(5082), + [anon_sym_c_longlong] = ACTIONS(5082), + [anon_sym_c_ulonglong] = ACTIONS(5082), + [anon_sym_c_float] = ACTIONS(5082), + [anon_sym_c_double] = ACTIONS(5082), + [anon_sym_c_longdouble] = ACTIONS(5082), + [anon_sym_else] = ACTIONS(5082), + [anon_sym_DOT_DOT] = ACTIONS(5082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5080), + [anon_sym_orelse] = ACTIONS(5082), + [anon_sym_or] = ACTIONS(5082), + [anon_sym_and] = ACTIONS(5082), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5080), + [anon_sym_xor] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5080), + [anon_sym_LT_LT_PIPE] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5080), + [anon_sym_SLASH] = ACTIONS(5080), + [anon_sym_catch] = ACTIONS(5082), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5080), + }, + [STATE(7380)] = { + [sym_identifier] = ACTIONS(5086), + [anon_sym_func] = ACTIONS(5086), + [anon_sym_c_func] = ACTIONS(5086), + [anon_sym_struct] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_DASH] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5084), + [anon_sym_struct_type_BANG] = ACTIONS(5084), + [anon_sym_QMARK] = ACTIONS(5084), + [anon_sym_AT] = ACTIONS(5084), + [anon_sym_STAR] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_void] = ACTIONS(5086), + [anon_sym_noreturn] = ACTIONS(5086), + [anon_sym_type] = ACTIONS(5086), + [anon_sym_anyopaque] = ACTIONS(5086), + [anon_sym_bool] = ACTIONS(5086), + [anon_sym_int] = ACTIONS(5086), + [anon_sym_uint] = ACTIONS(5086), + [anon_sym_float] = ACTIONS(5086), + [anon_sym_range] = ACTIONS(5086), + [anon_sym_i8] = ACTIONS(5086), + [anon_sym_i16] = ACTIONS(5086), + [anon_sym_i32] = ACTIONS(5086), + [anon_sym_i64] = ACTIONS(5086), + [anon_sym_u8] = ACTIONS(5086), + [anon_sym_u16] = ACTIONS(5086), + [anon_sym_u32] = ACTIONS(5086), + [anon_sym_u64] = ACTIONS(5086), + [anon_sym_isize] = ACTIONS(5086), + [anon_sym_usize] = ACTIONS(5086), + [anon_sym_f32] = ACTIONS(5086), + [anon_sym_f64] = ACTIONS(5086), + [anon_sym_c_char] = ACTIONS(5086), + [anon_sym_c_schar] = ACTIONS(5086), + [anon_sym_c_uchar] = ACTIONS(5086), + [anon_sym_c_short] = ACTIONS(5086), + [anon_sym_c_ushort] = ACTIONS(5086), + [anon_sym_c_int] = ACTIONS(5086), + [anon_sym_c_uint] = ACTIONS(5086), + [anon_sym_c_long] = ACTIONS(5086), + [anon_sym_c_ulong] = ACTIONS(5086), + [anon_sym_c_longlong] = ACTIONS(5086), + [anon_sym_c_ulonglong] = ACTIONS(5086), + [anon_sym_c_float] = ACTIONS(5086), + [anon_sym_c_double] = ACTIONS(5086), + [anon_sym_c_longdouble] = ACTIONS(5086), + [anon_sym_else] = ACTIONS(5086), + [anon_sym_DOT_DOT] = ACTIONS(5086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5084), + [anon_sym_orelse] = ACTIONS(5086), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_and] = ACTIONS(5086), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_AMP] = ACTIONS(5084), + [anon_sym_xor] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5086), + [anon_sym_GT_GT] = ACTIONS(5084), + [anon_sym_LT_LT_PIPE] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5084), + [anon_sym_SLASH] = ACTIONS(5084), + [anon_sym_catch] = ACTIONS(5086), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5084), + }, + [STATE(7381)] = { + [sym_identifier] = ACTIONS(5090), + [anon_sym_func] = ACTIONS(5090), + [anon_sym_c_func] = ACTIONS(5090), + [anon_sym_struct] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_struct_type_BANG] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_AT] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_void] = ACTIONS(5090), + [anon_sym_noreturn] = ACTIONS(5090), + [anon_sym_type] = ACTIONS(5090), + [anon_sym_anyopaque] = ACTIONS(5090), + [anon_sym_bool] = ACTIONS(5090), + [anon_sym_int] = ACTIONS(5090), + [anon_sym_uint] = ACTIONS(5090), + [anon_sym_float] = ACTIONS(5090), + [anon_sym_range] = ACTIONS(5090), + [anon_sym_i8] = ACTIONS(5090), + [anon_sym_i16] = ACTIONS(5090), + [anon_sym_i32] = ACTIONS(5090), + [anon_sym_i64] = ACTIONS(5090), + [anon_sym_u8] = ACTIONS(5090), + [anon_sym_u16] = ACTIONS(5090), + [anon_sym_u32] = ACTIONS(5090), + [anon_sym_u64] = ACTIONS(5090), + [anon_sym_isize] = ACTIONS(5090), + [anon_sym_usize] = ACTIONS(5090), + [anon_sym_f32] = ACTIONS(5090), + [anon_sym_f64] = ACTIONS(5090), + [anon_sym_c_char] = ACTIONS(5090), + [anon_sym_c_schar] = ACTIONS(5090), + [anon_sym_c_uchar] = ACTIONS(5090), + [anon_sym_c_short] = ACTIONS(5090), + [anon_sym_c_ushort] = ACTIONS(5090), + [anon_sym_c_int] = ACTIONS(5090), + [anon_sym_c_uint] = ACTIONS(5090), + [anon_sym_c_long] = ACTIONS(5090), + [anon_sym_c_ulong] = ACTIONS(5090), + [anon_sym_c_longlong] = ACTIONS(5090), + [anon_sym_c_ulonglong] = ACTIONS(5090), + [anon_sym_c_float] = ACTIONS(5090), + [anon_sym_c_double] = ACTIONS(5090), + [anon_sym_c_longdouble] = ACTIONS(5090), + [anon_sym_else] = ACTIONS(5090), + [anon_sym_DOT_DOT] = ACTIONS(5090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5088), + [anon_sym_orelse] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_and] = ACTIONS(5090), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_xor] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym_LT_LT_PIPE] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5088), + [anon_sym_catch] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5088), + }, + [STATE(7382)] = { + [sym_identifier] = ACTIONS(5094), + [anon_sym_func] = ACTIONS(5094), + [anon_sym_c_func] = ACTIONS(5094), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_struct_type_BANG] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5092), + [anon_sym_AT] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_void] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_type] = ACTIONS(5094), + [anon_sym_anyopaque] = ACTIONS(5094), + [anon_sym_bool] = ACTIONS(5094), + [anon_sym_int] = ACTIONS(5094), + [anon_sym_uint] = ACTIONS(5094), + [anon_sym_float] = ACTIONS(5094), + [anon_sym_range] = ACTIONS(5094), + [anon_sym_i8] = ACTIONS(5094), + [anon_sym_i16] = ACTIONS(5094), + [anon_sym_i32] = ACTIONS(5094), + [anon_sym_i64] = ACTIONS(5094), + [anon_sym_u8] = ACTIONS(5094), + [anon_sym_u16] = ACTIONS(5094), + [anon_sym_u32] = ACTIONS(5094), + [anon_sym_u64] = ACTIONS(5094), + [anon_sym_isize] = ACTIONS(5094), + [anon_sym_usize] = ACTIONS(5094), + [anon_sym_f32] = ACTIONS(5094), + [anon_sym_f64] = ACTIONS(5094), + [anon_sym_c_char] = ACTIONS(5094), + [anon_sym_c_schar] = ACTIONS(5094), + [anon_sym_c_uchar] = ACTIONS(5094), + [anon_sym_c_short] = ACTIONS(5094), + [anon_sym_c_ushort] = ACTIONS(5094), + [anon_sym_c_int] = ACTIONS(5094), + [anon_sym_c_uint] = ACTIONS(5094), + [anon_sym_c_long] = ACTIONS(5094), + [anon_sym_c_ulong] = ACTIONS(5094), + [anon_sym_c_longlong] = ACTIONS(5094), + [anon_sym_c_ulonglong] = ACTIONS(5094), + [anon_sym_c_float] = ACTIONS(5094), + [anon_sym_c_double] = ACTIONS(5094), + [anon_sym_c_longdouble] = ACTIONS(5094), + [anon_sym_else] = ACTIONS(5094), + [anon_sym_DOT_DOT] = ACTIONS(5094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5092), + [anon_sym_orelse] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_and] = ACTIONS(5094), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5092), + [anon_sym_xor] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5094), + [anon_sym_GT_GT] = ACTIONS(5092), + [anon_sym_LT_LT_PIPE] = ACTIONS(5092), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_catch] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_CARET] = ACTIONS(5092), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5092), + }, + [STATE(7383)] = { + [sym_identifier] = ACTIONS(5098), + [anon_sym_func] = ACTIONS(5098), + [anon_sym_c_func] = ACTIONS(5098), + [anon_sym_struct] = ACTIONS(5098), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_struct_type_BANG] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5096), + [anon_sym_AT] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_void] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym_type] = ACTIONS(5098), + [anon_sym_anyopaque] = ACTIONS(5098), + [anon_sym_bool] = ACTIONS(5098), + [anon_sym_int] = ACTIONS(5098), + [anon_sym_uint] = ACTIONS(5098), + [anon_sym_float] = ACTIONS(5098), + [anon_sym_range] = ACTIONS(5098), + [anon_sym_i8] = ACTIONS(5098), + [anon_sym_i16] = ACTIONS(5098), + [anon_sym_i32] = ACTIONS(5098), + [anon_sym_i64] = ACTIONS(5098), + [anon_sym_u8] = ACTIONS(5098), + [anon_sym_u16] = ACTIONS(5098), + [anon_sym_u32] = ACTIONS(5098), + [anon_sym_u64] = ACTIONS(5098), + [anon_sym_isize] = ACTIONS(5098), + [anon_sym_usize] = ACTIONS(5098), + [anon_sym_f32] = ACTIONS(5098), + [anon_sym_f64] = ACTIONS(5098), + [anon_sym_c_char] = ACTIONS(5098), + [anon_sym_c_schar] = ACTIONS(5098), + [anon_sym_c_uchar] = ACTIONS(5098), + [anon_sym_c_short] = ACTIONS(5098), + [anon_sym_c_ushort] = ACTIONS(5098), + [anon_sym_c_int] = ACTIONS(5098), + [anon_sym_c_uint] = ACTIONS(5098), + [anon_sym_c_long] = ACTIONS(5098), + [anon_sym_c_ulong] = ACTIONS(5098), + [anon_sym_c_longlong] = ACTIONS(5098), + [anon_sym_c_ulonglong] = ACTIONS(5098), + [anon_sym_c_float] = ACTIONS(5098), + [anon_sym_c_double] = ACTIONS(5098), + [anon_sym_c_longdouble] = ACTIONS(5098), + [anon_sym_else] = ACTIONS(5098), + [anon_sym_DOT_DOT] = ACTIONS(5098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5096), + [anon_sym_orelse] = ACTIONS(5098), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_and] = ACTIONS(5098), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5098), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_LT_LT_PIPE] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_catch] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_CARET] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5096), + }, + [STATE(7384)] = { + [sym_identifier] = ACTIONS(5102), + [anon_sym_func] = ACTIONS(5102), + [anon_sym_c_func] = ACTIONS(5102), + [anon_sym_struct] = ACTIONS(5102), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_struct_type_BANG] = ACTIONS(5100), + [anon_sym_QMARK] = ACTIONS(5100), + [anon_sym_AT] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_void] = ACTIONS(5102), + [anon_sym_noreturn] = ACTIONS(5102), + [anon_sym_type] = ACTIONS(5102), + [anon_sym_anyopaque] = ACTIONS(5102), + [anon_sym_bool] = ACTIONS(5102), + [anon_sym_int] = ACTIONS(5102), + [anon_sym_uint] = ACTIONS(5102), + [anon_sym_float] = ACTIONS(5102), + [anon_sym_range] = ACTIONS(5102), + [anon_sym_i8] = ACTIONS(5102), + [anon_sym_i16] = ACTIONS(5102), + [anon_sym_i32] = ACTIONS(5102), + [anon_sym_i64] = ACTIONS(5102), + [anon_sym_u8] = ACTIONS(5102), + [anon_sym_u16] = ACTIONS(5102), + [anon_sym_u32] = ACTIONS(5102), + [anon_sym_u64] = ACTIONS(5102), + [anon_sym_isize] = ACTIONS(5102), + [anon_sym_usize] = ACTIONS(5102), + [anon_sym_f32] = ACTIONS(5102), + [anon_sym_f64] = ACTIONS(5102), + [anon_sym_c_char] = ACTIONS(5102), + [anon_sym_c_schar] = ACTIONS(5102), + [anon_sym_c_uchar] = ACTIONS(5102), + [anon_sym_c_short] = ACTIONS(5102), + [anon_sym_c_ushort] = ACTIONS(5102), + [anon_sym_c_int] = ACTIONS(5102), + [anon_sym_c_uint] = ACTIONS(5102), + [anon_sym_c_long] = ACTIONS(5102), + [anon_sym_c_ulong] = ACTIONS(5102), + [anon_sym_c_longlong] = ACTIONS(5102), + [anon_sym_c_ulonglong] = ACTIONS(5102), + [anon_sym_c_float] = ACTIONS(5102), + [anon_sym_c_double] = ACTIONS(5102), + [anon_sym_c_longdouble] = ACTIONS(5102), + [anon_sym_else] = ACTIONS(5102), + [anon_sym_DOT_DOT] = ACTIONS(5102), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5100), + [anon_sym_orelse] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5102), + [anon_sym_and] = ACTIONS(5102), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_AMP] = ACTIONS(5100), + [anon_sym_xor] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5102), + [anon_sym_GT_GT] = ACTIONS(5100), + [anon_sym_LT_LT_PIPE] = ACTIONS(5100), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_catch] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_CARET] = ACTIONS(5100), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5100), + }, + [STATE(7385)] = { + [sym_identifier] = ACTIONS(5106), + [anon_sym_func] = ACTIONS(5106), + [anon_sym_c_func] = ACTIONS(5106), + [anon_sym_struct] = ACTIONS(5106), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_COMMA] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_struct_type_BANG] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(5104), + [anon_sym_AT] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_void] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym_type] = ACTIONS(5106), + [anon_sym_anyopaque] = ACTIONS(5106), + [anon_sym_bool] = ACTIONS(5106), + [anon_sym_int] = ACTIONS(5106), + [anon_sym_uint] = ACTIONS(5106), + [anon_sym_float] = ACTIONS(5106), + [anon_sym_range] = ACTIONS(5106), + [anon_sym_i8] = ACTIONS(5106), + [anon_sym_i16] = ACTIONS(5106), + [anon_sym_i32] = ACTIONS(5106), + [anon_sym_i64] = ACTIONS(5106), + [anon_sym_u8] = ACTIONS(5106), + [anon_sym_u16] = ACTIONS(5106), + [anon_sym_u32] = ACTIONS(5106), + [anon_sym_u64] = ACTIONS(5106), + [anon_sym_isize] = ACTIONS(5106), + [anon_sym_usize] = ACTIONS(5106), + [anon_sym_f32] = ACTIONS(5106), + [anon_sym_f64] = ACTIONS(5106), + [anon_sym_c_char] = ACTIONS(5106), + [anon_sym_c_schar] = ACTIONS(5106), + [anon_sym_c_uchar] = ACTIONS(5106), + [anon_sym_c_short] = ACTIONS(5106), + [anon_sym_c_ushort] = ACTIONS(5106), + [anon_sym_c_int] = ACTIONS(5106), + [anon_sym_c_uint] = ACTIONS(5106), + [anon_sym_c_long] = ACTIONS(5106), + [anon_sym_c_ulong] = ACTIONS(5106), + [anon_sym_c_longlong] = ACTIONS(5106), + [anon_sym_c_ulonglong] = ACTIONS(5106), + [anon_sym_c_float] = ACTIONS(5106), + [anon_sym_c_double] = ACTIONS(5106), + [anon_sym_c_longdouble] = ACTIONS(5106), + [anon_sym_else] = ACTIONS(5106), + [anon_sym_DOT_DOT] = ACTIONS(5106), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5104), + [anon_sym_orelse] = ACTIONS(5106), + [anon_sym_or] = ACTIONS(5106), + [anon_sym_and] = ACTIONS(5106), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5106), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym_LT_LT_PIPE] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_catch] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_CARET] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5104), + }, + [STATE(7386)] = { + [sym_identifier] = ACTIONS(5110), + [anon_sym_func] = ACTIONS(5110), + [anon_sym_c_func] = ACTIONS(5110), + [anon_sym_struct] = ACTIONS(5110), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_struct_type_BANG] = ACTIONS(5108), + [anon_sym_QMARK] = ACTIONS(5108), + [anon_sym_AT] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_void] = ACTIONS(5110), + [anon_sym_noreturn] = ACTIONS(5110), + [anon_sym_type] = ACTIONS(5110), + [anon_sym_anyopaque] = ACTIONS(5110), + [anon_sym_bool] = ACTIONS(5110), + [anon_sym_int] = ACTIONS(5110), + [anon_sym_uint] = ACTIONS(5110), + [anon_sym_float] = ACTIONS(5110), + [anon_sym_range] = ACTIONS(5110), + [anon_sym_i8] = ACTIONS(5110), + [anon_sym_i16] = ACTIONS(5110), + [anon_sym_i32] = ACTIONS(5110), + [anon_sym_i64] = ACTIONS(5110), + [anon_sym_u8] = ACTIONS(5110), + [anon_sym_u16] = ACTIONS(5110), + [anon_sym_u32] = ACTIONS(5110), + [anon_sym_u64] = ACTIONS(5110), + [anon_sym_isize] = ACTIONS(5110), + [anon_sym_usize] = ACTIONS(5110), + [anon_sym_f32] = ACTIONS(5110), + [anon_sym_f64] = ACTIONS(5110), + [anon_sym_c_char] = ACTIONS(5110), + [anon_sym_c_schar] = ACTIONS(5110), + [anon_sym_c_uchar] = ACTIONS(5110), + [anon_sym_c_short] = ACTIONS(5110), + [anon_sym_c_ushort] = ACTIONS(5110), + [anon_sym_c_int] = ACTIONS(5110), + [anon_sym_c_uint] = ACTIONS(5110), + [anon_sym_c_long] = ACTIONS(5110), + [anon_sym_c_ulong] = ACTIONS(5110), + [anon_sym_c_longlong] = ACTIONS(5110), + [anon_sym_c_ulonglong] = ACTIONS(5110), + [anon_sym_c_float] = ACTIONS(5110), + [anon_sym_c_double] = ACTIONS(5110), + [anon_sym_c_longdouble] = ACTIONS(5110), + [anon_sym_else] = ACTIONS(5110), + [anon_sym_DOT_DOT] = ACTIONS(5110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5108), + [anon_sym_orelse] = ACTIONS(5110), + [anon_sym_or] = ACTIONS(5110), + [anon_sym_and] = ACTIONS(5110), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_AMP] = ACTIONS(5108), + [anon_sym_xor] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5108), + [anon_sym_LT_LT_PIPE] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_catch] = ACTIONS(5110), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_CARET] = ACTIONS(5108), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5108), + }, + [STATE(7387)] = { + [sym_identifier] = ACTIONS(5114), + [anon_sym_func] = ACTIONS(5114), + [anon_sym_c_func] = ACTIONS(5114), + [anon_sym_struct] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_struct_type_BANG] = ACTIONS(5112), + [anon_sym_QMARK] = ACTIONS(5112), + [anon_sym_AT] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_void] = ACTIONS(5114), + [anon_sym_noreturn] = ACTIONS(5114), + [anon_sym_type] = ACTIONS(5114), + [anon_sym_anyopaque] = ACTIONS(5114), + [anon_sym_bool] = ACTIONS(5114), + [anon_sym_int] = ACTIONS(5114), + [anon_sym_uint] = ACTIONS(5114), + [anon_sym_float] = ACTIONS(5114), + [anon_sym_range] = ACTIONS(5114), + [anon_sym_i8] = ACTIONS(5114), + [anon_sym_i16] = ACTIONS(5114), + [anon_sym_i32] = ACTIONS(5114), + [anon_sym_i64] = ACTIONS(5114), + [anon_sym_u8] = ACTIONS(5114), + [anon_sym_u16] = ACTIONS(5114), + [anon_sym_u32] = ACTIONS(5114), + [anon_sym_u64] = ACTIONS(5114), + [anon_sym_isize] = ACTIONS(5114), + [anon_sym_usize] = ACTIONS(5114), + [anon_sym_f32] = ACTIONS(5114), + [anon_sym_f64] = ACTIONS(5114), + [anon_sym_c_char] = ACTIONS(5114), + [anon_sym_c_schar] = ACTIONS(5114), + [anon_sym_c_uchar] = ACTIONS(5114), + [anon_sym_c_short] = ACTIONS(5114), + [anon_sym_c_ushort] = ACTIONS(5114), + [anon_sym_c_int] = ACTIONS(5114), + [anon_sym_c_uint] = ACTIONS(5114), + [anon_sym_c_long] = ACTIONS(5114), + [anon_sym_c_ulong] = ACTIONS(5114), + [anon_sym_c_longlong] = ACTIONS(5114), + [anon_sym_c_ulonglong] = ACTIONS(5114), + [anon_sym_c_float] = ACTIONS(5114), + [anon_sym_c_double] = ACTIONS(5114), + [anon_sym_c_longdouble] = ACTIONS(5114), + [anon_sym_else] = ACTIONS(5114), + [anon_sym_DOT_DOT] = ACTIONS(5114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5112), + [anon_sym_orelse] = ACTIONS(5114), + [anon_sym_or] = ACTIONS(5114), + [anon_sym_and] = ACTIONS(5114), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_AMP] = ACTIONS(5112), + [anon_sym_xor] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5112), + [anon_sym_LT_LT_PIPE] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_catch] = ACTIONS(5114), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_CARET] = ACTIONS(5112), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5112), + }, + [STATE(7388)] = { + [sym_identifier] = ACTIONS(5118), + [anon_sym_func] = ACTIONS(5118), + [anon_sym_c_func] = ACTIONS(5118), + [anon_sym_struct] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_struct_type_BANG] = ACTIONS(5116), + [anon_sym_QMARK] = ACTIONS(5116), + [anon_sym_AT] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_void] = ACTIONS(5118), + [anon_sym_noreturn] = ACTIONS(5118), + [anon_sym_type] = ACTIONS(5118), + [anon_sym_anyopaque] = ACTIONS(5118), + [anon_sym_bool] = ACTIONS(5118), + [anon_sym_int] = ACTIONS(5118), + [anon_sym_uint] = ACTIONS(5118), + [anon_sym_float] = ACTIONS(5118), + [anon_sym_range] = ACTIONS(5118), + [anon_sym_i8] = ACTIONS(5118), + [anon_sym_i16] = ACTIONS(5118), + [anon_sym_i32] = ACTIONS(5118), + [anon_sym_i64] = ACTIONS(5118), + [anon_sym_u8] = ACTIONS(5118), + [anon_sym_u16] = ACTIONS(5118), + [anon_sym_u32] = ACTIONS(5118), + [anon_sym_u64] = ACTIONS(5118), + [anon_sym_isize] = ACTIONS(5118), + [anon_sym_usize] = ACTIONS(5118), + [anon_sym_f32] = ACTIONS(5118), + [anon_sym_f64] = ACTIONS(5118), + [anon_sym_c_char] = ACTIONS(5118), + [anon_sym_c_schar] = ACTIONS(5118), + [anon_sym_c_uchar] = ACTIONS(5118), + [anon_sym_c_short] = ACTIONS(5118), + [anon_sym_c_ushort] = ACTIONS(5118), + [anon_sym_c_int] = ACTIONS(5118), + [anon_sym_c_uint] = ACTIONS(5118), + [anon_sym_c_long] = ACTIONS(5118), + [anon_sym_c_ulong] = ACTIONS(5118), + [anon_sym_c_longlong] = ACTIONS(5118), + [anon_sym_c_ulonglong] = ACTIONS(5118), + [anon_sym_c_float] = ACTIONS(5118), + [anon_sym_c_double] = ACTIONS(5118), + [anon_sym_c_longdouble] = ACTIONS(5118), + [anon_sym_else] = ACTIONS(5118), + [anon_sym_DOT_DOT] = ACTIONS(5118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5116), + [anon_sym_orelse] = ACTIONS(5118), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_and] = ACTIONS(5118), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_xor] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5116), + [anon_sym_LT_LT_PIPE] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_catch] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_CARET] = ACTIONS(5116), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5116), + }, + [STATE(7389)] = { + [sym_identifier] = ACTIONS(5122), + [anon_sym_func] = ACTIONS(5122), + [anon_sym_c_func] = ACTIONS(5122), + [anon_sym_struct] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_struct_type_BANG] = ACTIONS(5120), + [anon_sym_QMARK] = ACTIONS(5120), + [anon_sym_AT] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_void] = ACTIONS(5122), + [anon_sym_noreturn] = ACTIONS(5122), + [anon_sym_type] = ACTIONS(5122), + [anon_sym_anyopaque] = ACTIONS(5122), + [anon_sym_bool] = ACTIONS(5122), + [anon_sym_int] = ACTIONS(5122), + [anon_sym_uint] = ACTIONS(5122), + [anon_sym_float] = ACTIONS(5122), + [anon_sym_range] = ACTIONS(5122), + [anon_sym_i8] = ACTIONS(5122), + [anon_sym_i16] = ACTIONS(5122), + [anon_sym_i32] = ACTIONS(5122), + [anon_sym_i64] = ACTIONS(5122), + [anon_sym_u8] = ACTIONS(5122), + [anon_sym_u16] = ACTIONS(5122), + [anon_sym_u32] = ACTIONS(5122), + [anon_sym_u64] = ACTIONS(5122), + [anon_sym_isize] = ACTIONS(5122), + [anon_sym_usize] = ACTIONS(5122), + [anon_sym_f32] = ACTIONS(5122), + [anon_sym_f64] = ACTIONS(5122), + [anon_sym_c_char] = ACTIONS(5122), + [anon_sym_c_schar] = ACTIONS(5122), + [anon_sym_c_uchar] = ACTIONS(5122), + [anon_sym_c_short] = ACTIONS(5122), + [anon_sym_c_ushort] = ACTIONS(5122), + [anon_sym_c_int] = ACTIONS(5122), + [anon_sym_c_uint] = ACTIONS(5122), + [anon_sym_c_long] = ACTIONS(5122), + [anon_sym_c_ulong] = ACTIONS(5122), + [anon_sym_c_longlong] = ACTIONS(5122), + [anon_sym_c_ulonglong] = ACTIONS(5122), + [anon_sym_c_float] = ACTIONS(5122), + [anon_sym_c_double] = ACTIONS(5122), + [anon_sym_c_longdouble] = ACTIONS(5122), + [anon_sym_else] = ACTIONS(5122), + [anon_sym_DOT_DOT] = ACTIONS(5122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5120), + [anon_sym_orelse] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_and] = ACTIONS(5122), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_xor] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5120), + [anon_sym_LT_LT_PIPE] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_catch] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5120), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5120), + }, + [STATE(7390)] = { + [sym_identifier] = ACTIONS(5126), + [anon_sym_func] = ACTIONS(5126), + [anon_sym_c_func] = ACTIONS(5126), + [anon_sym_struct] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_struct_type_BANG] = ACTIONS(5124), + [anon_sym_QMARK] = ACTIONS(5124), + [anon_sym_AT] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_void] = ACTIONS(5126), + [anon_sym_noreturn] = ACTIONS(5126), + [anon_sym_type] = ACTIONS(5126), + [anon_sym_anyopaque] = ACTIONS(5126), + [anon_sym_bool] = ACTIONS(5126), + [anon_sym_int] = ACTIONS(5126), + [anon_sym_uint] = ACTIONS(5126), + [anon_sym_float] = ACTIONS(5126), + [anon_sym_range] = ACTIONS(5126), + [anon_sym_i8] = ACTIONS(5126), + [anon_sym_i16] = ACTIONS(5126), + [anon_sym_i32] = ACTIONS(5126), + [anon_sym_i64] = ACTIONS(5126), + [anon_sym_u8] = ACTIONS(5126), + [anon_sym_u16] = ACTIONS(5126), + [anon_sym_u32] = ACTIONS(5126), + [anon_sym_u64] = ACTIONS(5126), + [anon_sym_isize] = ACTIONS(5126), + [anon_sym_usize] = ACTIONS(5126), + [anon_sym_f32] = ACTIONS(5126), + [anon_sym_f64] = ACTIONS(5126), + [anon_sym_c_char] = ACTIONS(5126), + [anon_sym_c_schar] = ACTIONS(5126), + [anon_sym_c_uchar] = ACTIONS(5126), + [anon_sym_c_short] = ACTIONS(5126), + [anon_sym_c_ushort] = ACTIONS(5126), + [anon_sym_c_int] = ACTIONS(5126), + [anon_sym_c_uint] = ACTIONS(5126), + [anon_sym_c_long] = ACTIONS(5126), + [anon_sym_c_ulong] = ACTIONS(5126), + [anon_sym_c_longlong] = ACTIONS(5126), + [anon_sym_c_ulonglong] = ACTIONS(5126), + [anon_sym_c_float] = ACTIONS(5126), + [anon_sym_c_double] = ACTIONS(5126), + [anon_sym_c_longdouble] = ACTIONS(5126), + [anon_sym_else] = ACTIONS(5126), + [anon_sym_DOT_DOT] = ACTIONS(5126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5124), + [anon_sym_orelse] = ACTIONS(5126), + [anon_sym_or] = ACTIONS(5126), + [anon_sym_and] = ACTIONS(5126), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_xor] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5126), + [anon_sym_GT_GT] = ACTIONS(5124), + [anon_sym_LT_LT_PIPE] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_catch] = ACTIONS(5126), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_CARET] = ACTIONS(5124), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5124), + }, + [STATE(7391)] = { + [sym_identifier] = ACTIONS(5130), + [anon_sym_func] = ACTIONS(5130), + [anon_sym_c_func] = ACTIONS(5130), + [anon_sym_struct] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_COMMA] = ACTIONS(5128), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_struct_type_BANG] = ACTIONS(5128), + [anon_sym_QMARK] = ACTIONS(5128), + [anon_sym_AT] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_void] = ACTIONS(5130), + [anon_sym_noreturn] = ACTIONS(5130), + [anon_sym_type] = ACTIONS(5130), + [anon_sym_anyopaque] = ACTIONS(5130), + [anon_sym_bool] = ACTIONS(5130), + [anon_sym_int] = ACTIONS(5130), + [anon_sym_uint] = ACTIONS(5130), + [anon_sym_float] = ACTIONS(5130), + [anon_sym_range] = ACTIONS(5130), + [anon_sym_i8] = ACTIONS(5130), + [anon_sym_i16] = ACTIONS(5130), + [anon_sym_i32] = ACTIONS(5130), + [anon_sym_i64] = ACTIONS(5130), + [anon_sym_u8] = ACTIONS(5130), + [anon_sym_u16] = ACTIONS(5130), + [anon_sym_u32] = ACTIONS(5130), + [anon_sym_u64] = ACTIONS(5130), + [anon_sym_isize] = ACTIONS(5130), + [anon_sym_usize] = ACTIONS(5130), + [anon_sym_f32] = ACTIONS(5130), + [anon_sym_f64] = ACTIONS(5130), + [anon_sym_c_char] = ACTIONS(5130), + [anon_sym_c_schar] = ACTIONS(5130), + [anon_sym_c_uchar] = ACTIONS(5130), + [anon_sym_c_short] = ACTIONS(5130), + [anon_sym_c_ushort] = ACTIONS(5130), + [anon_sym_c_int] = ACTIONS(5130), + [anon_sym_c_uint] = ACTIONS(5130), + [anon_sym_c_long] = ACTIONS(5130), + [anon_sym_c_ulong] = ACTIONS(5130), + [anon_sym_c_longlong] = ACTIONS(5130), + [anon_sym_c_ulonglong] = ACTIONS(5130), + [anon_sym_c_float] = ACTIONS(5130), + [anon_sym_c_double] = ACTIONS(5130), + [anon_sym_c_longdouble] = ACTIONS(5130), + [anon_sym_else] = ACTIONS(5130), + [anon_sym_DOT_DOT] = ACTIONS(5130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5128), + [anon_sym_orelse] = ACTIONS(5130), + [anon_sym_or] = ACTIONS(5130), + [anon_sym_and] = ACTIONS(5130), + [anon_sym_EQ_EQ] = ACTIONS(5128), + [anon_sym_BANG_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5130), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5130), + [anon_sym_GT_EQ] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5130), + [anon_sym_LT_LT] = ACTIONS(5130), + [anon_sym_GT_GT] = ACTIONS(5128), + [anon_sym_LT_LT_PIPE] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_catch] = ACTIONS(5130), + [anon_sym_DOT] = ACTIONS(5130), + [anon_sym_CARET] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5128), + }, + [STATE(7392)] = { + [sym_identifier] = ACTIONS(5134), + [anon_sym_func] = ACTIONS(5134), + [anon_sym_c_func] = ACTIONS(5134), + [anon_sym_struct] = ACTIONS(5134), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_COMMA] = ACTIONS(5132), + [anon_sym_RBRACE] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_struct_type_BANG] = ACTIONS(5132), + [anon_sym_QMARK] = ACTIONS(5132), + [anon_sym_AT] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_void] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym_type] = ACTIONS(5134), + [anon_sym_anyopaque] = ACTIONS(5134), + [anon_sym_bool] = ACTIONS(5134), + [anon_sym_int] = ACTIONS(5134), + [anon_sym_uint] = ACTIONS(5134), + [anon_sym_float] = ACTIONS(5134), + [anon_sym_range] = ACTIONS(5134), + [anon_sym_i8] = ACTIONS(5134), + [anon_sym_i16] = ACTIONS(5134), + [anon_sym_i32] = ACTIONS(5134), + [anon_sym_i64] = ACTIONS(5134), + [anon_sym_u8] = ACTIONS(5134), + [anon_sym_u16] = ACTIONS(5134), + [anon_sym_u32] = ACTIONS(5134), + [anon_sym_u64] = ACTIONS(5134), + [anon_sym_isize] = ACTIONS(5134), + [anon_sym_usize] = ACTIONS(5134), + [anon_sym_f32] = ACTIONS(5134), + [anon_sym_f64] = ACTIONS(5134), + [anon_sym_c_char] = ACTIONS(5134), + [anon_sym_c_schar] = ACTIONS(5134), + [anon_sym_c_uchar] = ACTIONS(5134), + [anon_sym_c_short] = ACTIONS(5134), + [anon_sym_c_ushort] = ACTIONS(5134), + [anon_sym_c_int] = ACTIONS(5134), + [anon_sym_c_uint] = ACTIONS(5134), + [anon_sym_c_long] = ACTIONS(5134), + [anon_sym_c_ulong] = ACTIONS(5134), + [anon_sym_c_longlong] = ACTIONS(5134), + [anon_sym_c_ulonglong] = ACTIONS(5134), + [anon_sym_c_float] = ACTIONS(5134), + [anon_sym_c_double] = ACTIONS(5134), + [anon_sym_c_longdouble] = ACTIONS(5134), + [anon_sym_else] = ACTIONS(5134), + [anon_sym_DOT_DOT] = ACTIONS(5134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5132), + [anon_sym_orelse] = ACTIONS(5134), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5132), + [anon_sym_AMP] = ACTIONS(5132), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5132), + [anon_sym_LT_LT_PIPE] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_catch] = ACTIONS(5134), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5132), + }, + [STATE(7393)] = { + [sym_identifier] = ACTIONS(5138), + [anon_sym_func] = ACTIONS(5138), + [anon_sym_c_func] = ACTIONS(5138), + [anon_sym_struct] = ACTIONS(5138), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_struct_type_BANG] = ACTIONS(5136), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_AT] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_void] = ACTIONS(5138), + [anon_sym_noreturn] = ACTIONS(5138), + [anon_sym_type] = ACTIONS(5138), + [anon_sym_anyopaque] = ACTIONS(5138), + [anon_sym_bool] = ACTIONS(5138), + [anon_sym_int] = ACTIONS(5138), + [anon_sym_uint] = ACTIONS(5138), + [anon_sym_float] = ACTIONS(5138), + [anon_sym_range] = ACTIONS(5138), + [anon_sym_i8] = ACTIONS(5138), + [anon_sym_i16] = ACTIONS(5138), + [anon_sym_i32] = ACTIONS(5138), + [anon_sym_i64] = ACTIONS(5138), + [anon_sym_u8] = ACTIONS(5138), + [anon_sym_u16] = ACTIONS(5138), + [anon_sym_u32] = ACTIONS(5138), + [anon_sym_u64] = ACTIONS(5138), + [anon_sym_isize] = ACTIONS(5138), + [anon_sym_usize] = ACTIONS(5138), + [anon_sym_f32] = ACTIONS(5138), + [anon_sym_f64] = ACTIONS(5138), + [anon_sym_c_char] = ACTIONS(5138), + [anon_sym_c_schar] = ACTIONS(5138), + [anon_sym_c_uchar] = ACTIONS(5138), + [anon_sym_c_short] = ACTIONS(5138), + [anon_sym_c_ushort] = ACTIONS(5138), + [anon_sym_c_int] = ACTIONS(5138), + [anon_sym_c_uint] = ACTIONS(5138), + [anon_sym_c_long] = ACTIONS(5138), + [anon_sym_c_ulong] = ACTIONS(5138), + [anon_sym_c_longlong] = ACTIONS(5138), + [anon_sym_c_ulonglong] = ACTIONS(5138), + [anon_sym_c_float] = ACTIONS(5138), + [anon_sym_c_double] = ACTIONS(5138), + [anon_sym_c_longdouble] = ACTIONS(5138), + [anon_sym_else] = ACTIONS(5138), + [anon_sym_DOT_DOT] = ACTIONS(5138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5136), + [anon_sym_orelse] = ACTIONS(5138), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_EQ] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5136), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5136), + [anon_sym_LT_LT_PIPE] = ACTIONS(5136), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_catch] = ACTIONS(5138), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5136), + }, + [STATE(7394)] = { + [sym_identifier] = ACTIONS(5142), + [anon_sym_func] = ACTIONS(5142), + [anon_sym_c_func] = ACTIONS(5142), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_COMMA] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5140), + [anon_sym_struct_type_BANG] = ACTIONS(5140), + [anon_sym_QMARK] = ACTIONS(5140), + [anon_sym_AT] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5140), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_void] = ACTIONS(5142), + [anon_sym_noreturn] = ACTIONS(5142), + [anon_sym_type] = ACTIONS(5142), + [anon_sym_anyopaque] = ACTIONS(5142), + [anon_sym_bool] = ACTIONS(5142), + [anon_sym_int] = ACTIONS(5142), + [anon_sym_uint] = ACTIONS(5142), + [anon_sym_float] = ACTIONS(5142), + [anon_sym_range] = ACTIONS(5142), + [anon_sym_i8] = ACTIONS(5142), + [anon_sym_i16] = ACTIONS(5142), + [anon_sym_i32] = ACTIONS(5142), + [anon_sym_i64] = ACTIONS(5142), + [anon_sym_u8] = ACTIONS(5142), + [anon_sym_u16] = ACTIONS(5142), + [anon_sym_u32] = ACTIONS(5142), + [anon_sym_u64] = ACTIONS(5142), + [anon_sym_isize] = ACTIONS(5142), + [anon_sym_usize] = ACTIONS(5142), + [anon_sym_f32] = ACTIONS(5142), + [anon_sym_f64] = ACTIONS(5142), + [anon_sym_c_char] = ACTIONS(5142), + [anon_sym_c_schar] = ACTIONS(5142), + [anon_sym_c_uchar] = ACTIONS(5142), + [anon_sym_c_short] = ACTIONS(5142), + [anon_sym_c_ushort] = ACTIONS(5142), + [anon_sym_c_int] = ACTIONS(5142), + [anon_sym_c_uint] = ACTIONS(5142), + [anon_sym_c_long] = ACTIONS(5142), + [anon_sym_c_ulong] = ACTIONS(5142), + [anon_sym_c_longlong] = ACTIONS(5142), + [anon_sym_c_ulonglong] = ACTIONS(5142), + [anon_sym_c_float] = ACTIONS(5142), + [anon_sym_c_double] = ACTIONS(5142), + [anon_sym_c_longdouble] = ACTIONS(5142), + [anon_sym_else] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5140), + [anon_sym_orelse] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5140), + [anon_sym_BANG_EQ] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5140), + [anon_sym_AMP] = ACTIONS(5140), + [anon_sym_xor] = ACTIONS(5142), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5140), + [anon_sym_LT_LT_PIPE] = ACTIONS(5140), + [anon_sym_PLUS] = ACTIONS(5140), + [anon_sym_SLASH] = ACTIONS(5140), + [anon_sym_catch] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5140), + }, + [STATE(7395)] = { + [sym_identifier] = ACTIONS(5146), + [anon_sym_func] = ACTIONS(5146), + [anon_sym_c_func] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5146), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_COMMA] = ACTIONS(5144), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_struct_type_BANG] = ACTIONS(5144), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_AT] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_void] = ACTIONS(5146), + [anon_sym_noreturn] = ACTIONS(5146), + [anon_sym_type] = ACTIONS(5146), + [anon_sym_anyopaque] = ACTIONS(5146), + [anon_sym_bool] = ACTIONS(5146), + [anon_sym_int] = ACTIONS(5146), + [anon_sym_uint] = ACTIONS(5146), + [anon_sym_float] = ACTIONS(5146), + [anon_sym_range] = ACTIONS(5146), + [anon_sym_i8] = ACTIONS(5146), + [anon_sym_i16] = ACTIONS(5146), + [anon_sym_i32] = ACTIONS(5146), + [anon_sym_i64] = ACTIONS(5146), + [anon_sym_u8] = ACTIONS(5146), + [anon_sym_u16] = ACTIONS(5146), + [anon_sym_u32] = ACTIONS(5146), + [anon_sym_u64] = ACTIONS(5146), + [anon_sym_isize] = ACTIONS(5146), + [anon_sym_usize] = ACTIONS(5146), + [anon_sym_f32] = ACTIONS(5146), + [anon_sym_f64] = ACTIONS(5146), + [anon_sym_c_char] = ACTIONS(5146), + [anon_sym_c_schar] = ACTIONS(5146), + [anon_sym_c_uchar] = ACTIONS(5146), + [anon_sym_c_short] = ACTIONS(5146), + [anon_sym_c_ushort] = ACTIONS(5146), + [anon_sym_c_int] = ACTIONS(5146), + [anon_sym_c_uint] = ACTIONS(5146), + [anon_sym_c_long] = ACTIONS(5146), + [anon_sym_c_ulong] = ACTIONS(5146), + [anon_sym_c_longlong] = ACTIONS(5146), + [anon_sym_c_ulonglong] = ACTIONS(5146), + [anon_sym_c_float] = ACTIONS(5146), + [anon_sym_c_double] = ACTIONS(5146), + [anon_sym_c_longdouble] = ACTIONS(5146), + [anon_sym_else] = ACTIONS(5146), + [anon_sym_DOT_DOT] = ACTIONS(5146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5144), + [anon_sym_orelse] = ACTIONS(5146), + [anon_sym_or] = ACTIONS(5146), + [anon_sym_and] = ACTIONS(5146), + [anon_sym_EQ_EQ] = ACTIONS(5144), + [anon_sym_BANG_EQ] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5146), + [anon_sym_LT_EQ] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5146), + [anon_sym_GT_EQ] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_xor] = ACTIONS(5146), + [anon_sym_LT_LT] = ACTIONS(5146), + [anon_sym_GT_GT] = ACTIONS(5144), + [anon_sym_LT_LT_PIPE] = ACTIONS(5144), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_catch] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5146), + [anon_sym_CARET] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5144), + }, + [STATE(7396)] = { + [sym_identifier] = ACTIONS(5150), + [anon_sym_func] = ACTIONS(5150), + [anon_sym_c_func] = ACTIONS(5150), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_COMMA] = ACTIONS(5148), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5148), + [anon_sym_struct_type_BANG] = ACTIONS(5148), + [anon_sym_QMARK] = ACTIONS(5148), + [anon_sym_AT] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5148), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_void] = ACTIONS(5150), + [anon_sym_noreturn] = ACTIONS(5150), + [anon_sym_type] = ACTIONS(5150), + [anon_sym_anyopaque] = ACTIONS(5150), + [anon_sym_bool] = ACTIONS(5150), + [anon_sym_int] = ACTIONS(5150), + [anon_sym_uint] = ACTIONS(5150), + [anon_sym_float] = ACTIONS(5150), + [anon_sym_range] = ACTIONS(5150), + [anon_sym_i8] = ACTIONS(5150), + [anon_sym_i16] = ACTIONS(5150), + [anon_sym_i32] = ACTIONS(5150), + [anon_sym_i64] = ACTIONS(5150), + [anon_sym_u8] = ACTIONS(5150), + [anon_sym_u16] = ACTIONS(5150), + [anon_sym_u32] = ACTIONS(5150), + [anon_sym_u64] = ACTIONS(5150), + [anon_sym_isize] = ACTIONS(5150), + [anon_sym_usize] = ACTIONS(5150), + [anon_sym_f32] = ACTIONS(5150), + [anon_sym_f64] = ACTIONS(5150), + [anon_sym_c_char] = ACTIONS(5150), + [anon_sym_c_schar] = ACTIONS(5150), + [anon_sym_c_uchar] = ACTIONS(5150), + [anon_sym_c_short] = ACTIONS(5150), + [anon_sym_c_ushort] = ACTIONS(5150), + [anon_sym_c_int] = ACTIONS(5150), + [anon_sym_c_uint] = ACTIONS(5150), + [anon_sym_c_long] = ACTIONS(5150), + [anon_sym_c_ulong] = ACTIONS(5150), + [anon_sym_c_longlong] = ACTIONS(5150), + [anon_sym_c_ulonglong] = ACTIONS(5150), + [anon_sym_c_float] = ACTIONS(5150), + [anon_sym_c_double] = ACTIONS(5150), + [anon_sym_c_longdouble] = ACTIONS(5150), + [anon_sym_else] = ACTIONS(5150), + [anon_sym_DOT_DOT] = ACTIONS(5150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5148), + [anon_sym_orelse] = ACTIONS(5150), + [anon_sym_or] = ACTIONS(5150), + [anon_sym_and] = ACTIONS(5150), + [anon_sym_EQ_EQ] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5150), + [anon_sym_LT_EQ] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_GT_EQ] = ACTIONS(5148), + [anon_sym_AMP] = ACTIONS(5148), + [anon_sym_xor] = ACTIONS(5150), + [anon_sym_LT_LT] = ACTIONS(5150), + [anon_sym_GT_GT] = ACTIONS(5148), + [anon_sym_LT_LT_PIPE] = ACTIONS(5148), + [anon_sym_PLUS] = ACTIONS(5148), + [anon_sym_SLASH] = ACTIONS(5148), + [anon_sym_catch] = ACTIONS(5150), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5148), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5148), + }, + [STATE(7397)] = { + [sym_identifier] = ACTIONS(5154), + [anon_sym_func] = ACTIONS(5154), + [anon_sym_c_func] = ACTIONS(5154), + [anon_sym_struct] = ACTIONS(5154), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_COMMA] = ACTIONS(5152), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_struct_type_BANG] = ACTIONS(5152), + [anon_sym_QMARK] = ACTIONS(5152), + [anon_sym_AT] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_void] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym_type] = ACTIONS(5154), + [anon_sym_anyopaque] = ACTIONS(5154), + [anon_sym_bool] = ACTIONS(5154), + [anon_sym_int] = ACTIONS(5154), + [anon_sym_uint] = ACTIONS(5154), + [anon_sym_float] = ACTIONS(5154), + [anon_sym_range] = ACTIONS(5154), + [anon_sym_i8] = ACTIONS(5154), + [anon_sym_i16] = ACTIONS(5154), + [anon_sym_i32] = ACTIONS(5154), + [anon_sym_i64] = ACTIONS(5154), + [anon_sym_u8] = ACTIONS(5154), + [anon_sym_u16] = ACTIONS(5154), + [anon_sym_u32] = ACTIONS(5154), + [anon_sym_u64] = ACTIONS(5154), + [anon_sym_isize] = ACTIONS(5154), + [anon_sym_usize] = ACTIONS(5154), + [anon_sym_f32] = ACTIONS(5154), + [anon_sym_f64] = ACTIONS(5154), + [anon_sym_c_char] = ACTIONS(5154), + [anon_sym_c_schar] = ACTIONS(5154), + [anon_sym_c_uchar] = ACTIONS(5154), + [anon_sym_c_short] = ACTIONS(5154), + [anon_sym_c_ushort] = ACTIONS(5154), + [anon_sym_c_int] = ACTIONS(5154), + [anon_sym_c_uint] = ACTIONS(5154), + [anon_sym_c_long] = ACTIONS(5154), + [anon_sym_c_ulong] = ACTIONS(5154), + [anon_sym_c_longlong] = ACTIONS(5154), + [anon_sym_c_ulonglong] = ACTIONS(5154), + [anon_sym_c_float] = ACTIONS(5154), + [anon_sym_c_double] = ACTIONS(5154), + [anon_sym_c_longdouble] = ACTIONS(5154), + [anon_sym_else] = ACTIONS(5154), + [anon_sym_DOT_DOT] = ACTIONS(5154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5152), + [anon_sym_orelse] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5154), + [anon_sym_and] = ACTIONS(5154), + [anon_sym_EQ_EQ] = ACTIONS(5152), + [anon_sym_BANG_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5154), + [anon_sym_GT_EQ] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_xor] = ACTIONS(5154), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5152), + [anon_sym_LT_LT_PIPE] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_catch] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5154), + [anon_sym_CARET] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5152), + }, + [STATE(7398)] = { + [sym_identifier] = ACTIONS(5158), + [anon_sym_func] = ACTIONS(5158), + [anon_sym_c_func] = ACTIONS(5158), + [anon_sym_struct] = ACTIONS(5158), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_COMMA] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_struct_type_BANG] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(5156), + [anon_sym_AT] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_void] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym_type] = ACTIONS(5158), + [anon_sym_anyopaque] = ACTIONS(5158), + [anon_sym_bool] = ACTIONS(5158), + [anon_sym_int] = ACTIONS(5158), + [anon_sym_uint] = ACTIONS(5158), + [anon_sym_float] = ACTIONS(5158), + [anon_sym_range] = ACTIONS(5158), + [anon_sym_i8] = ACTIONS(5158), + [anon_sym_i16] = ACTIONS(5158), + [anon_sym_i32] = ACTIONS(5158), + [anon_sym_i64] = ACTIONS(5158), + [anon_sym_u8] = ACTIONS(5158), + [anon_sym_u16] = ACTIONS(5158), + [anon_sym_u32] = ACTIONS(5158), + [anon_sym_u64] = ACTIONS(5158), + [anon_sym_isize] = ACTIONS(5158), + [anon_sym_usize] = ACTIONS(5158), + [anon_sym_f32] = ACTIONS(5158), + [anon_sym_f64] = ACTIONS(5158), + [anon_sym_c_char] = ACTIONS(5158), + [anon_sym_c_schar] = ACTIONS(5158), + [anon_sym_c_uchar] = ACTIONS(5158), + [anon_sym_c_short] = ACTIONS(5158), + [anon_sym_c_ushort] = ACTIONS(5158), + [anon_sym_c_int] = ACTIONS(5158), + [anon_sym_c_uint] = ACTIONS(5158), + [anon_sym_c_long] = ACTIONS(5158), + [anon_sym_c_ulong] = ACTIONS(5158), + [anon_sym_c_longlong] = ACTIONS(5158), + [anon_sym_c_ulonglong] = ACTIONS(5158), + [anon_sym_c_float] = ACTIONS(5158), + [anon_sym_c_double] = ACTIONS(5158), + [anon_sym_c_longdouble] = ACTIONS(5158), + [anon_sym_else] = ACTIONS(5158), + [anon_sym_DOT_DOT] = ACTIONS(5158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5156), + [anon_sym_orelse] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_and] = ACTIONS(5158), + [anon_sym_EQ_EQ] = ACTIONS(5156), + [anon_sym_BANG_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5158), + [anon_sym_GT_EQ] = ACTIONS(5156), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_xor] = ACTIONS(5158), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5156), + [anon_sym_LT_LT_PIPE] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_catch] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5158), + [anon_sym_CARET] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5156), + }, + [STATE(7399)] = { + [sym_identifier] = ACTIONS(5162), + [anon_sym_func] = ACTIONS(5162), + [anon_sym_c_func] = ACTIONS(5162), + [anon_sym_struct] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_COMMA] = ACTIONS(5160), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_struct_type_BANG] = ACTIONS(5160), + [anon_sym_QMARK] = ACTIONS(5160), + [anon_sym_AT] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_void] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym_type] = ACTIONS(5162), + [anon_sym_anyopaque] = ACTIONS(5162), + [anon_sym_bool] = ACTIONS(5162), + [anon_sym_int] = ACTIONS(5162), + [anon_sym_uint] = ACTIONS(5162), + [anon_sym_float] = ACTIONS(5162), + [anon_sym_range] = ACTIONS(5162), + [anon_sym_i8] = ACTIONS(5162), + [anon_sym_i16] = ACTIONS(5162), + [anon_sym_i32] = ACTIONS(5162), + [anon_sym_i64] = ACTIONS(5162), + [anon_sym_u8] = ACTIONS(5162), + [anon_sym_u16] = ACTIONS(5162), + [anon_sym_u32] = ACTIONS(5162), + [anon_sym_u64] = ACTIONS(5162), + [anon_sym_isize] = ACTIONS(5162), + [anon_sym_usize] = ACTIONS(5162), + [anon_sym_f32] = ACTIONS(5162), + [anon_sym_f64] = ACTIONS(5162), + [anon_sym_c_char] = ACTIONS(5162), + [anon_sym_c_schar] = ACTIONS(5162), + [anon_sym_c_uchar] = ACTIONS(5162), + [anon_sym_c_short] = ACTIONS(5162), + [anon_sym_c_ushort] = ACTIONS(5162), + [anon_sym_c_int] = ACTIONS(5162), + [anon_sym_c_uint] = ACTIONS(5162), + [anon_sym_c_long] = ACTIONS(5162), + [anon_sym_c_ulong] = ACTIONS(5162), + [anon_sym_c_longlong] = ACTIONS(5162), + [anon_sym_c_ulonglong] = ACTIONS(5162), + [anon_sym_c_float] = ACTIONS(5162), + [anon_sym_c_double] = ACTIONS(5162), + [anon_sym_c_longdouble] = ACTIONS(5162), + [anon_sym_else] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5160), + [anon_sym_orelse] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5160), + [anon_sym_BANG_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_xor] = ACTIONS(5162), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5160), + [anon_sym_LT_LT_PIPE] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_catch] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5160), + }, + [STATE(7400)] = { + [sym_identifier] = ACTIONS(5166), + [anon_sym_func] = ACTIONS(5166), + [anon_sym_c_func] = ACTIONS(5166), + [anon_sym_struct] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_COMMA] = ACTIONS(5164), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_struct_type_BANG] = ACTIONS(5164), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_AT] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_void] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym_type] = ACTIONS(5166), + [anon_sym_anyopaque] = ACTIONS(5166), + [anon_sym_bool] = ACTIONS(5166), + [anon_sym_int] = ACTIONS(5166), + [anon_sym_uint] = ACTIONS(5166), + [anon_sym_float] = ACTIONS(5166), + [anon_sym_range] = ACTIONS(5166), + [anon_sym_i8] = ACTIONS(5166), + [anon_sym_i16] = ACTIONS(5166), + [anon_sym_i32] = ACTIONS(5166), + [anon_sym_i64] = ACTIONS(5166), + [anon_sym_u8] = ACTIONS(5166), + [anon_sym_u16] = ACTIONS(5166), + [anon_sym_u32] = ACTIONS(5166), + [anon_sym_u64] = ACTIONS(5166), + [anon_sym_isize] = ACTIONS(5166), + [anon_sym_usize] = ACTIONS(5166), + [anon_sym_f32] = ACTIONS(5166), + [anon_sym_f64] = ACTIONS(5166), + [anon_sym_c_char] = ACTIONS(5166), + [anon_sym_c_schar] = ACTIONS(5166), + [anon_sym_c_uchar] = ACTIONS(5166), + [anon_sym_c_short] = ACTIONS(5166), + [anon_sym_c_ushort] = ACTIONS(5166), + [anon_sym_c_int] = ACTIONS(5166), + [anon_sym_c_uint] = ACTIONS(5166), + [anon_sym_c_long] = ACTIONS(5166), + [anon_sym_c_ulong] = ACTIONS(5166), + [anon_sym_c_longlong] = ACTIONS(5166), + [anon_sym_c_ulonglong] = ACTIONS(5166), + [anon_sym_c_float] = ACTIONS(5166), + [anon_sym_c_double] = ACTIONS(5166), + [anon_sym_c_longdouble] = ACTIONS(5166), + [anon_sym_else] = ACTIONS(5166), + [anon_sym_DOT_DOT] = ACTIONS(5166), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5164), + [anon_sym_orelse] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5166), + [anon_sym_and] = ACTIONS(5166), + [anon_sym_EQ_EQ] = ACTIONS(5164), + [anon_sym_BANG_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5166), + [anon_sym_GT_EQ] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5166), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_LT_LT_PIPE] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_catch] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5166), + [anon_sym_CARET] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5164), + }, + [STATE(7401)] = { + [sym_identifier] = ACTIONS(5170), + [anon_sym_func] = ACTIONS(5170), + [anon_sym_c_func] = ACTIONS(5170), + [anon_sym_struct] = ACTIONS(5170), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_struct_type_BANG] = ACTIONS(5168), + [anon_sym_QMARK] = ACTIONS(5168), + [anon_sym_AT] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_void] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym_type] = ACTIONS(5170), + [anon_sym_anyopaque] = ACTIONS(5170), + [anon_sym_bool] = ACTIONS(5170), + [anon_sym_int] = ACTIONS(5170), + [anon_sym_uint] = ACTIONS(5170), + [anon_sym_float] = ACTIONS(5170), + [anon_sym_range] = ACTIONS(5170), + [anon_sym_i8] = ACTIONS(5170), + [anon_sym_i16] = ACTIONS(5170), + [anon_sym_i32] = ACTIONS(5170), + [anon_sym_i64] = ACTIONS(5170), + [anon_sym_u8] = ACTIONS(5170), + [anon_sym_u16] = ACTIONS(5170), + [anon_sym_u32] = ACTIONS(5170), + [anon_sym_u64] = ACTIONS(5170), + [anon_sym_isize] = ACTIONS(5170), + [anon_sym_usize] = ACTIONS(5170), + [anon_sym_f32] = ACTIONS(5170), + [anon_sym_f64] = ACTIONS(5170), + [anon_sym_c_char] = ACTIONS(5170), + [anon_sym_c_schar] = ACTIONS(5170), + [anon_sym_c_uchar] = ACTIONS(5170), + [anon_sym_c_short] = ACTIONS(5170), + [anon_sym_c_ushort] = ACTIONS(5170), + [anon_sym_c_int] = ACTIONS(5170), + [anon_sym_c_uint] = ACTIONS(5170), + [anon_sym_c_long] = ACTIONS(5170), + [anon_sym_c_ulong] = ACTIONS(5170), + [anon_sym_c_longlong] = ACTIONS(5170), + [anon_sym_c_ulonglong] = ACTIONS(5170), + [anon_sym_c_float] = ACTIONS(5170), + [anon_sym_c_double] = ACTIONS(5170), + [anon_sym_c_longdouble] = ACTIONS(5170), + [anon_sym_else] = ACTIONS(5170), + [anon_sym_DOT_DOT] = ACTIONS(5170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5168), + [anon_sym_orelse] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_xor] = ACTIONS(5170), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_LT_LT_PIPE] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_catch] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_CARET] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5168), + }, + [STATE(7402)] = { + [sym_identifier] = ACTIONS(5174), + [anon_sym_func] = ACTIONS(5174), + [anon_sym_c_func] = ACTIONS(5174), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_COMMA] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_struct_type_BANG] = ACTIONS(5172), + [anon_sym_QMARK] = ACTIONS(5172), + [anon_sym_AT] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_void] = ACTIONS(5174), + [anon_sym_noreturn] = ACTIONS(5174), + [anon_sym_type] = ACTIONS(5174), + [anon_sym_anyopaque] = ACTIONS(5174), + [anon_sym_bool] = ACTIONS(5174), + [anon_sym_int] = ACTIONS(5174), + [anon_sym_uint] = ACTIONS(5174), + [anon_sym_float] = ACTIONS(5174), + [anon_sym_range] = ACTIONS(5174), + [anon_sym_i8] = ACTIONS(5174), + [anon_sym_i16] = ACTIONS(5174), + [anon_sym_i32] = ACTIONS(5174), + [anon_sym_i64] = ACTIONS(5174), + [anon_sym_u8] = ACTIONS(5174), + [anon_sym_u16] = ACTIONS(5174), + [anon_sym_u32] = ACTIONS(5174), + [anon_sym_u64] = ACTIONS(5174), + [anon_sym_isize] = ACTIONS(5174), + [anon_sym_usize] = ACTIONS(5174), + [anon_sym_f32] = ACTIONS(5174), + [anon_sym_f64] = ACTIONS(5174), + [anon_sym_c_char] = ACTIONS(5174), + [anon_sym_c_schar] = ACTIONS(5174), + [anon_sym_c_uchar] = ACTIONS(5174), + [anon_sym_c_short] = ACTIONS(5174), + [anon_sym_c_ushort] = ACTIONS(5174), + [anon_sym_c_int] = ACTIONS(5174), + [anon_sym_c_uint] = ACTIONS(5174), + [anon_sym_c_long] = ACTIONS(5174), + [anon_sym_c_ulong] = ACTIONS(5174), + [anon_sym_c_longlong] = ACTIONS(5174), + [anon_sym_c_ulonglong] = ACTIONS(5174), + [anon_sym_c_float] = ACTIONS(5174), + [anon_sym_c_double] = ACTIONS(5174), + [anon_sym_c_longdouble] = ACTIONS(5174), + [anon_sym_else] = ACTIONS(5174), + [anon_sym_DOT_DOT] = ACTIONS(5174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5172), + [anon_sym_orelse] = ACTIONS(5174), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5172), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_LT_LT_PIPE] = ACTIONS(5172), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_SLASH] = ACTIONS(5172), + [anon_sym_catch] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5172), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5172), + }, + [STATE(7403)] = { + [sym_identifier] = ACTIONS(5182), + [anon_sym_func] = ACTIONS(5182), + [anon_sym_c_func] = ACTIONS(5182), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_LPAREN] = ACTIONS(5180), + [anon_sym_COMMA] = ACTIONS(5180), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_struct_type_BANG] = ACTIONS(5180), + [anon_sym_QMARK] = ACTIONS(5180), + [anon_sym_AT] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_void] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym_type] = ACTIONS(5182), + [anon_sym_anyopaque] = ACTIONS(5182), + [anon_sym_bool] = ACTIONS(5182), + [anon_sym_int] = ACTIONS(5182), + [anon_sym_uint] = ACTIONS(5182), + [anon_sym_float] = ACTIONS(5182), + [anon_sym_range] = ACTIONS(5182), + [anon_sym_i8] = ACTIONS(5182), + [anon_sym_i16] = ACTIONS(5182), + [anon_sym_i32] = ACTIONS(5182), + [anon_sym_i64] = ACTIONS(5182), + [anon_sym_u8] = ACTIONS(5182), + [anon_sym_u16] = ACTIONS(5182), + [anon_sym_u32] = ACTIONS(5182), + [anon_sym_u64] = ACTIONS(5182), + [anon_sym_isize] = ACTIONS(5182), + [anon_sym_usize] = ACTIONS(5182), + [anon_sym_f32] = ACTIONS(5182), + [anon_sym_f64] = ACTIONS(5182), + [anon_sym_c_char] = ACTIONS(5182), + [anon_sym_c_schar] = ACTIONS(5182), + [anon_sym_c_uchar] = ACTIONS(5182), + [anon_sym_c_short] = ACTIONS(5182), + [anon_sym_c_ushort] = ACTIONS(5182), + [anon_sym_c_int] = ACTIONS(5182), + [anon_sym_c_uint] = ACTIONS(5182), + [anon_sym_c_long] = ACTIONS(5182), + [anon_sym_c_ulong] = ACTIONS(5182), + [anon_sym_c_longlong] = ACTIONS(5182), + [anon_sym_c_ulonglong] = ACTIONS(5182), + [anon_sym_c_float] = ACTIONS(5182), + [anon_sym_c_double] = ACTIONS(5182), + [anon_sym_c_longdouble] = ACTIONS(5182), + [anon_sym_else] = ACTIONS(5182), + [anon_sym_DOT_DOT] = ACTIONS(5182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5180), + [anon_sym_orelse] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_BANG_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5182), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5182), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_LT_LT_PIPE] = ACTIONS(5180), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_catch] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5182), + [anon_sym_CARET] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5180), + }, + [STATE(7404)] = { + [sym_identifier] = ACTIONS(5186), + [anon_sym_func] = ACTIONS(5186), + [anon_sym_c_func] = ACTIONS(5186), + [anon_sym_struct] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_COMMA] = ACTIONS(5184), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_struct_type_BANG] = ACTIONS(5184), + [anon_sym_QMARK] = ACTIONS(5184), + [anon_sym_AT] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_void] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym_type] = ACTIONS(5186), + [anon_sym_anyopaque] = ACTIONS(5186), + [anon_sym_bool] = ACTIONS(5186), + [anon_sym_int] = ACTIONS(5186), + [anon_sym_uint] = ACTIONS(5186), + [anon_sym_float] = ACTIONS(5186), + [anon_sym_range] = ACTIONS(5186), + [anon_sym_i8] = ACTIONS(5186), + [anon_sym_i16] = ACTIONS(5186), + [anon_sym_i32] = ACTIONS(5186), + [anon_sym_i64] = ACTIONS(5186), + [anon_sym_u8] = ACTIONS(5186), + [anon_sym_u16] = ACTIONS(5186), + [anon_sym_u32] = ACTIONS(5186), + [anon_sym_u64] = ACTIONS(5186), + [anon_sym_isize] = ACTIONS(5186), + [anon_sym_usize] = ACTIONS(5186), + [anon_sym_f32] = ACTIONS(5186), + [anon_sym_f64] = ACTIONS(5186), + [anon_sym_c_char] = ACTIONS(5186), + [anon_sym_c_schar] = ACTIONS(5186), + [anon_sym_c_uchar] = ACTIONS(5186), + [anon_sym_c_short] = ACTIONS(5186), + [anon_sym_c_ushort] = ACTIONS(5186), + [anon_sym_c_int] = ACTIONS(5186), + [anon_sym_c_uint] = ACTIONS(5186), + [anon_sym_c_long] = ACTIONS(5186), + [anon_sym_c_ulong] = ACTIONS(5186), + [anon_sym_c_longlong] = ACTIONS(5186), + [anon_sym_c_ulonglong] = ACTIONS(5186), + [anon_sym_c_float] = ACTIONS(5186), + [anon_sym_c_double] = ACTIONS(5186), + [anon_sym_c_longdouble] = ACTIONS(5186), + [anon_sym_else] = ACTIONS(5186), + [anon_sym_DOT_DOT] = ACTIONS(5186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5184), + [anon_sym_orelse] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5186), + [anon_sym_and] = ACTIONS(5186), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5186), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_xor] = ACTIONS(5186), + [anon_sym_LT_LT] = ACTIONS(5186), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_LT_LT_PIPE] = ACTIONS(5184), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_catch] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5186), + [anon_sym_CARET] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5184), + }, + [STATE(7405)] = { + [sym_identifier] = ACTIONS(5192), + [anon_sym_func] = ACTIONS(5192), + [anon_sym_c_func] = ACTIONS(5192), + [anon_sym_struct] = ACTIONS(5192), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_COMMA] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_PIPE] = ACTIONS(5190), + [anon_sym_struct_type_BANG] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5190), + [anon_sym_AT] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_void] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym_type] = ACTIONS(5192), + [anon_sym_anyopaque] = ACTIONS(5192), + [anon_sym_bool] = ACTIONS(5192), + [anon_sym_int] = ACTIONS(5192), + [anon_sym_uint] = ACTIONS(5192), + [anon_sym_float] = ACTIONS(5192), + [anon_sym_range] = ACTIONS(5192), + [anon_sym_i8] = ACTIONS(5192), + [anon_sym_i16] = ACTIONS(5192), + [anon_sym_i32] = ACTIONS(5192), + [anon_sym_i64] = ACTIONS(5192), + [anon_sym_u8] = ACTIONS(5192), + [anon_sym_u16] = ACTIONS(5192), + [anon_sym_u32] = ACTIONS(5192), + [anon_sym_u64] = ACTIONS(5192), + [anon_sym_isize] = ACTIONS(5192), + [anon_sym_usize] = ACTIONS(5192), + [anon_sym_f32] = ACTIONS(5192), + [anon_sym_f64] = ACTIONS(5192), + [anon_sym_c_char] = ACTIONS(5192), + [anon_sym_c_schar] = ACTIONS(5192), + [anon_sym_c_uchar] = ACTIONS(5192), + [anon_sym_c_short] = ACTIONS(5192), + [anon_sym_c_ushort] = ACTIONS(5192), + [anon_sym_c_int] = ACTIONS(5192), + [anon_sym_c_uint] = ACTIONS(5192), + [anon_sym_c_long] = ACTIONS(5192), + [anon_sym_c_ulong] = ACTIONS(5192), + [anon_sym_c_longlong] = ACTIONS(5192), + [anon_sym_c_ulonglong] = ACTIONS(5192), + [anon_sym_c_float] = ACTIONS(5192), + [anon_sym_c_double] = ACTIONS(5192), + [anon_sym_c_longdouble] = ACTIONS(5192), + [anon_sym_else] = ACTIONS(5192), + [anon_sym_DOT_DOT] = ACTIONS(5192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5190), + [anon_sym_orelse] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_EQ_EQ] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_GT] = ACTIONS(5192), + [anon_sym_GT_EQ] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_xor] = ACTIONS(5192), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5190), + [anon_sym_LT_LT_PIPE] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_SLASH] = ACTIONS(5190), + [anon_sym_catch] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5192), + [anon_sym_CARET] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5190), + }, + [STATE(7406)] = { + [sym_identifier] = ACTIONS(5196), + [anon_sym_func] = ACTIONS(5196), + [anon_sym_c_func] = ACTIONS(5196), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_COMMA] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_struct_type_BANG] = ACTIONS(5194), + [anon_sym_QMARK] = ACTIONS(5194), + [anon_sym_AT] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_void] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym_type] = ACTIONS(5196), + [anon_sym_anyopaque] = ACTIONS(5196), + [anon_sym_bool] = ACTIONS(5196), + [anon_sym_int] = ACTIONS(5196), + [anon_sym_uint] = ACTIONS(5196), + [anon_sym_float] = ACTIONS(5196), + [anon_sym_range] = ACTIONS(5196), + [anon_sym_i8] = ACTIONS(5196), + [anon_sym_i16] = ACTIONS(5196), + [anon_sym_i32] = ACTIONS(5196), + [anon_sym_i64] = ACTIONS(5196), + [anon_sym_u8] = ACTIONS(5196), + [anon_sym_u16] = ACTIONS(5196), + [anon_sym_u32] = ACTIONS(5196), + [anon_sym_u64] = ACTIONS(5196), + [anon_sym_isize] = ACTIONS(5196), + [anon_sym_usize] = ACTIONS(5196), + [anon_sym_f32] = ACTIONS(5196), + [anon_sym_f64] = ACTIONS(5196), + [anon_sym_c_char] = ACTIONS(5196), + [anon_sym_c_schar] = ACTIONS(5196), + [anon_sym_c_uchar] = ACTIONS(5196), + [anon_sym_c_short] = ACTIONS(5196), + [anon_sym_c_ushort] = ACTIONS(5196), + [anon_sym_c_int] = ACTIONS(5196), + [anon_sym_c_uint] = ACTIONS(5196), + [anon_sym_c_long] = ACTIONS(5196), + [anon_sym_c_ulong] = ACTIONS(5196), + [anon_sym_c_longlong] = ACTIONS(5196), + [anon_sym_c_ulonglong] = ACTIONS(5196), + [anon_sym_c_float] = ACTIONS(5196), + [anon_sym_c_double] = ACTIONS(5196), + [anon_sym_c_longdouble] = ACTIONS(5196), + [anon_sym_else] = ACTIONS(5196), + [anon_sym_DOT_DOT] = ACTIONS(5196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5194), + [anon_sym_orelse] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_EQ_EQ] = ACTIONS(5194), + [anon_sym_BANG_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5196), + [anon_sym_GT_EQ] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_xor] = ACTIONS(5196), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5194), + [anon_sym_LT_LT_PIPE] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_catch] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5196), + [anon_sym_CARET] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5194), + }, + [STATE(7407)] = { + [sym_identifier] = ACTIONS(5200), + [anon_sym_func] = ACTIONS(5200), + [anon_sym_c_func] = ACTIONS(5200), + [anon_sym_struct] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_struct_type_BANG] = ACTIONS(5198), + [anon_sym_QMARK] = ACTIONS(5198), + [anon_sym_AT] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_void] = ACTIONS(5200), + [anon_sym_noreturn] = ACTIONS(5200), + [anon_sym_type] = ACTIONS(5200), + [anon_sym_anyopaque] = ACTIONS(5200), + [anon_sym_bool] = ACTIONS(5200), + [anon_sym_int] = ACTIONS(5200), + [anon_sym_uint] = ACTIONS(5200), + [anon_sym_float] = ACTIONS(5200), + [anon_sym_range] = ACTIONS(5200), + [anon_sym_i8] = ACTIONS(5200), + [anon_sym_i16] = ACTIONS(5200), + [anon_sym_i32] = ACTIONS(5200), + [anon_sym_i64] = ACTIONS(5200), + [anon_sym_u8] = ACTIONS(5200), + [anon_sym_u16] = ACTIONS(5200), + [anon_sym_u32] = ACTIONS(5200), + [anon_sym_u64] = ACTIONS(5200), + [anon_sym_isize] = ACTIONS(5200), + [anon_sym_usize] = ACTIONS(5200), + [anon_sym_f32] = ACTIONS(5200), + [anon_sym_f64] = ACTIONS(5200), + [anon_sym_c_char] = ACTIONS(5200), + [anon_sym_c_schar] = ACTIONS(5200), + [anon_sym_c_uchar] = ACTIONS(5200), + [anon_sym_c_short] = ACTIONS(5200), + [anon_sym_c_ushort] = ACTIONS(5200), + [anon_sym_c_int] = ACTIONS(5200), + [anon_sym_c_uint] = ACTIONS(5200), + [anon_sym_c_long] = ACTIONS(5200), + [anon_sym_c_ulong] = ACTIONS(5200), + [anon_sym_c_longlong] = ACTIONS(5200), + [anon_sym_c_ulonglong] = ACTIONS(5200), + [anon_sym_c_float] = ACTIONS(5200), + [anon_sym_c_double] = ACTIONS(5200), + [anon_sym_c_longdouble] = ACTIONS(5200), + [anon_sym_else] = ACTIONS(5200), + [anon_sym_DOT_DOT] = ACTIONS(5200), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5198), + [anon_sym_orelse] = ACTIONS(5200), + [anon_sym_or] = ACTIONS(5200), + [anon_sym_and] = ACTIONS(5200), + [anon_sym_EQ_EQ] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5198), + [anon_sym_xor] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_LT_LT_PIPE] = ACTIONS(5198), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_catch] = ACTIONS(5200), + [anon_sym_DOT] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5198), + }, + [STATE(7408)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_func] = ACTIONS(5204), + [anon_sym_c_func] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5202), + [anon_sym_COMMA] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_struct_type_BANG] = ACTIONS(5202), + [anon_sym_QMARK] = ACTIONS(5202), + [anon_sym_AT] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_void] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym_type] = ACTIONS(5204), + [anon_sym_anyopaque] = ACTIONS(5204), + [anon_sym_bool] = ACTIONS(5204), + [anon_sym_int] = ACTIONS(5204), + [anon_sym_uint] = ACTIONS(5204), + [anon_sym_float] = ACTIONS(5204), + [anon_sym_range] = ACTIONS(5204), + [anon_sym_i8] = ACTIONS(5204), + [anon_sym_i16] = ACTIONS(5204), + [anon_sym_i32] = ACTIONS(5204), + [anon_sym_i64] = ACTIONS(5204), + [anon_sym_u8] = ACTIONS(5204), + [anon_sym_u16] = ACTIONS(5204), + [anon_sym_u32] = ACTIONS(5204), + [anon_sym_u64] = ACTIONS(5204), + [anon_sym_isize] = ACTIONS(5204), + [anon_sym_usize] = ACTIONS(5204), + [anon_sym_f32] = ACTIONS(5204), + [anon_sym_f64] = ACTIONS(5204), + [anon_sym_c_char] = ACTIONS(5204), + [anon_sym_c_schar] = ACTIONS(5204), + [anon_sym_c_uchar] = ACTIONS(5204), + [anon_sym_c_short] = ACTIONS(5204), + [anon_sym_c_ushort] = ACTIONS(5204), + [anon_sym_c_int] = ACTIONS(5204), + [anon_sym_c_uint] = ACTIONS(5204), + [anon_sym_c_long] = ACTIONS(5204), + [anon_sym_c_ulong] = ACTIONS(5204), + [anon_sym_c_longlong] = ACTIONS(5204), + [anon_sym_c_ulonglong] = ACTIONS(5204), + [anon_sym_c_float] = ACTIONS(5204), + [anon_sym_c_double] = ACTIONS(5204), + [anon_sym_c_longdouble] = ACTIONS(5204), + [anon_sym_else] = ACTIONS(5204), + [anon_sym_DOT_DOT] = ACTIONS(5204), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5202), + [anon_sym_orelse] = ACTIONS(5204), + [anon_sym_or] = ACTIONS(5204), + [anon_sym_and] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5202), + [anon_sym_xor] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_LT_LT_PIPE] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_catch] = ACTIONS(5204), + [anon_sym_DOT] = ACTIONS(5204), + [anon_sym_CARET] = ACTIONS(5202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5202), + }, + [STATE(7409)] = { + [sym_identifier] = ACTIONS(5208), + [anon_sym_func] = ACTIONS(5208), + [anon_sym_c_func] = ACTIONS(5208), + [anon_sym_struct] = ACTIONS(5208), + [anon_sym_LPAREN] = ACTIONS(5206), + [anon_sym_COMMA] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5206), + [anon_sym_struct_type_BANG] = ACTIONS(5206), + [anon_sym_QMARK] = ACTIONS(5206), + [anon_sym_AT] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_LBRACK] = ACTIONS(5206), + [anon_sym_void] = ACTIONS(5208), + [anon_sym_noreturn] = ACTIONS(5208), + [anon_sym_type] = ACTIONS(5208), + [anon_sym_anyopaque] = ACTIONS(5208), + [anon_sym_bool] = ACTIONS(5208), + [anon_sym_int] = ACTIONS(5208), + [anon_sym_uint] = ACTIONS(5208), + [anon_sym_float] = ACTIONS(5208), + [anon_sym_range] = ACTIONS(5208), + [anon_sym_i8] = ACTIONS(5208), + [anon_sym_i16] = ACTIONS(5208), + [anon_sym_i32] = ACTIONS(5208), + [anon_sym_i64] = ACTIONS(5208), + [anon_sym_u8] = ACTIONS(5208), + [anon_sym_u16] = ACTIONS(5208), + [anon_sym_u32] = ACTIONS(5208), + [anon_sym_u64] = ACTIONS(5208), + [anon_sym_isize] = ACTIONS(5208), + [anon_sym_usize] = ACTIONS(5208), + [anon_sym_f32] = ACTIONS(5208), + [anon_sym_f64] = ACTIONS(5208), + [anon_sym_c_char] = ACTIONS(5208), + [anon_sym_c_schar] = ACTIONS(5208), + [anon_sym_c_uchar] = ACTIONS(5208), + [anon_sym_c_short] = ACTIONS(5208), + [anon_sym_c_ushort] = ACTIONS(5208), + [anon_sym_c_int] = ACTIONS(5208), + [anon_sym_c_uint] = ACTIONS(5208), + [anon_sym_c_long] = ACTIONS(5208), + [anon_sym_c_ulong] = ACTIONS(5208), + [anon_sym_c_longlong] = ACTIONS(5208), + [anon_sym_c_ulonglong] = ACTIONS(5208), + [anon_sym_c_float] = ACTIONS(5208), + [anon_sym_c_double] = ACTIONS(5208), + [anon_sym_c_longdouble] = ACTIONS(5208), + [anon_sym_else] = ACTIONS(5208), + [anon_sym_DOT_DOT] = ACTIONS(5208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5206), + [anon_sym_orelse] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5208), + [anon_sym_and] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5206), + [anon_sym_xor] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_LT_LT_PIPE] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(5206), + [anon_sym_SLASH] = ACTIONS(5206), + [anon_sym_catch] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_CARET] = ACTIONS(5206), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5206), + }, + [STATE(7410)] = { + [sym_identifier] = ACTIONS(5216), + [anon_sym_func] = ACTIONS(5216), + [anon_sym_c_func] = ACTIONS(5216), + [anon_sym_struct] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(5214), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_struct_type_BANG] = ACTIONS(5214), + [anon_sym_QMARK] = ACTIONS(5214), + [anon_sym_AT] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_void] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym_type] = ACTIONS(5216), + [anon_sym_anyopaque] = ACTIONS(5216), + [anon_sym_bool] = ACTIONS(5216), + [anon_sym_int] = ACTIONS(5216), + [anon_sym_uint] = ACTIONS(5216), + [anon_sym_float] = ACTIONS(5216), + [anon_sym_range] = ACTIONS(5216), + [anon_sym_i8] = ACTIONS(5216), + [anon_sym_i16] = ACTIONS(5216), + [anon_sym_i32] = ACTIONS(5216), + [anon_sym_i64] = ACTIONS(5216), + [anon_sym_u8] = ACTIONS(5216), + [anon_sym_u16] = ACTIONS(5216), + [anon_sym_u32] = ACTIONS(5216), + [anon_sym_u64] = ACTIONS(5216), + [anon_sym_isize] = ACTIONS(5216), + [anon_sym_usize] = ACTIONS(5216), + [anon_sym_f32] = ACTIONS(5216), + [anon_sym_f64] = ACTIONS(5216), + [anon_sym_c_char] = ACTIONS(5216), + [anon_sym_c_schar] = ACTIONS(5216), + [anon_sym_c_uchar] = ACTIONS(5216), + [anon_sym_c_short] = ACTIONS(5216), + [anon_sym_c_ushort] = ACTIONS(5216), + [anon_sym_c_int] = ACTIONS(5216), + [anon_sym_c_uint] = ACTIONS(5216), + [anon_sym_c_long] = ACTIONS(5216), + [anon_sym_c_ulong] = ACTIONS(5216), + [anon_sym_c_longlong] = ACTIONS(5216), + [anon_sym_c_ulonglong] = ACTIONS(5216), + [anon_sym_c_float] = ACTIONS(5216), + [anon_sym_c_double] = ACTIONS(5216), + [anon_sym_c_longdouble] = ACTIONS(5216), + [anon_sym_else] = ACTIONS(5216), + [anon_sym_DOT_DOT] = ACTIONS(5216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5214), + [anon_sym_orelse] = ACTIONS(5216), + [anon_sym_or] = ACTIONS(5216), + [anon_sym_and] = ACTIONS(5216), + [anon_sym_EQ_EQ] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_LT_EQ] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_GT_EQ] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(5214), + [anon_sym_xor] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5214), + [anon_sym_LT_LT_PIPE] = ACTIONS(5214), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_catch] = ACTIONS(5216), + [anon_sym_DOT] = ACTIONS(5216), + [anon_sym_CARET] = ACTIONS(5214), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5214), + }, + [STATE(7411)] = { + [sym_identifier] = ACTIONS(5220), + [anon_sym_func] = ACTIONS(5220), + [anon_sym_c_func] = ACTIONS(5220), + [anon_sym_struct] = ACTIONS(5220), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_struct_type_BANG] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5218), + [anon_sym_AT] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_void] = ACTIONS(5220), + [anon_sym_noreturn] = ACTIONS(5220), + [anon_sym_type] = ACTIONS(5220), + [anon_sym_anyopaque] = ACTIONS(5220), + [anon_sym_bool] = ACTIONS(5220), + [anon_sym_int] = ACTIONS(5220), + [anon_sym_uint] = ACTIONS(5220), + [anon_sym_float] = ACTIONS(5220), + [anon_sym_range] = ACTIONS(5220), + [anon_sym_i8] = ACTIONS(5220), + [anon_sym_i16] = ACTIONS(5220), + [anon_sym_i32] = ACTIONS(5220), + [anon_sym_i64] = ACTIONS(5220), + [anon_sym_u8] = ACTIONS(5220), + [anon_sym_u16] = ACTIONS(5220), + [anon_sym_u32] = ACTIONS(5220), + [anon_sym_u64] = ACTIONS(5220), + [anon_sym_isize] = ACTIONS(5220), + [anon_sym_usize] = ACTIONS(5220), + [anon_sym_f32] = ACTIONS(5220), + [anon_sym_f64] = ACTIONS(5220), + [anon_sym_c_char] = ACTIONS(5220), + [anon_sym_c_schar] = ACTIONS(5220), + [anon_sym_c_uchar] = ACTIONS(5220), + [anon_sym_c_short] = ACTIONS(5220), + [anon_sym_c_ushort] = ACTIONS(5220), + [anon_sym_c_int] = ACTIONS(5220), + [anon_sym_c_uint] = ACTIONS(5220), + [anon_sym_c_long] = ACTIONS(5220), + [anon_sym_c_ulong] = ACTIONS(5220), + [anon_sym_c_longlong] = ACTIONS(5220), + [anon_sym_c_ulonglong] = ACTIONS(5220), + [anon_sym_c_float] = ACTIONS(5220), + [anon_sym_c_double] = ACTIONS(5220), + [anon_sym_c_longdouble] = ACTIONS(5220), + [anon_sym_else] = ACTIONS(5220), + [anon_sym_DOT_DOT] = ACTIONS(5220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5218), + [anon_sym_orelse] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5220), + [anon_sym_and] = ACTIONS(5220), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_AMP] = ACTIONS(5218), + [anon_sym_xor] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5220), + [anon_sym_GT_GT] = ACTIONS(5218), + [anon_sym_LT_LT_PIPE] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_catch] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_CARET] = ACTIONS(5218), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5218), + }, + [STATE(7412)] = { + [sym_identifier] = ACTIONS(5224), + [anon_sym_func] = ACTIONS(5224), + [anon_sym_c_func] = ACTIONS(5224), + [anon_sym_struct] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_struct_type_BANG] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5222), + [anon_sym_AT] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_void] = ACTIONS(5224), + [anon_sym_noreturn] = ACTIONS(5224), + [anon_sym_type] = ACTIONS(5224), + [anon_sym_anyopaque] = ACTIONS(5224), + [anon_sym_bool] = ACTIONS(5224), + [anon_sym_int] = ACTIONS(5224), + [anon_sym_uint] = ACTIONS(5224), + [anon_sym_float] = ACTIONS(5224), + [anon_sym_range] = ACTIONS(5224), + [anon_sym_i8] = ACTIONS(5224), + [anon_sym_i16] = ACTIONS(5224), + [anon_sym_i32] = ACTIONS(5224), + [anon_sym_i64] = ACTIONS(5224), + [anon_sym_u8] = ACTIONS(5224), + [anon_sym_u16] = ACTIONS(5224), + [anon_sym_u32] = ACTIONS(5224), + [anon_sym_u64] = ACTIONS(5224), + [anon_sym_isize] = ACTIONS(5224), + [anon_sym_usize] = ACTIONS(5224), + [anon_sym_f32] = ACTIONS(5224), + [anon_sym_f64] = ACTIONS(5224), + [anon_sym_c_char] = ACTIONS(5224), + [anon_sym_c_schar] = ACTIONS(5224), + [anon_sym_c_uchar] = ACTIONS(5224), + [anon_sym_c_short] = ACTIONS(5224), + [anon_sym_c_ushort] = ACTIONS(5224), + [anon_sym_c_int] = ACTIONS(5224), + [anon_sym_c_uint] = ACTIONS(5224), + [anon_sym_c_long] = ACTIONS(5224), + [anon_sym_c_ulong] = ACTIONS(5224), + [anon_sym_c_longlong] = ACTIONS(5224), + [anon_sym_c_ulonglong] = ACTIONS(5224), + [anon_sym_c_float] = ACTIONS(5224), + [anon_sym_c_double] = ACTIONS(5224), + [anon_sym_c_longdouble] = ACTIONS(5224), + [anon_sym_else] = ACTIONS(5224), + [anon_sym_DOT_DOT] = ACTIONS(5224), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5222), + [anon_sym_orelse] = ACTIONS(5224), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_and] = ACTIONS(5224), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_xor] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5224), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_LT_LT_PIPE] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_catch] = ACTIONS(5224), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5222), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5222), + }, + [STATE(7413)] = { + [sym_identifier] = ACTIONS(5228), + [anon_sym_func] = ACTIONS(5228), + [anon_sym_c_func] = ACTIONS(5228), + [anon_sym_struct] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5226), + [anon_sym_struct_type_BANG] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5226), + [anon_sym_AT] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_void] = ACTIONS(5228), + [anon_sym_noreturn] = ACTIONS(5228), + [anon_sym_type] = ACTIONS(5228), + [anon_sym_anyopaque] = ACTIONS(5228), + [anon_sym_bool] = ACTIONS(5228), + [anon_sym_int] = ACTIONS(5228), + [anon_sym_uint] = ACTIONS(5228), + [anon_sym_float] = ACTIONS(5228), + [anon_sym_range] = ACTIONS(5228), + [anon_sym_i8] = ACTIONS(5228), + [anon_sym_i16] = ACTIONS(5228), + [anon_sym_i32] = ACTIONS(5228), + [anon_sym_i64] = ACTIONS(5228), + [anon_sym_u8] = ACTIONS(5228), + [anon_sym_u16] = ACTIONS(5228), + [anon_sym_u32] = ACTIONS(5228), + [anon_sym_u64] = ACTIONS(5228), + [anon_sym_isize] = ACTIONS(5228), + [anon_sym_usize] = ACTIONS(5228), + [anon_sym_f32] = ACTIONS(5228), + [anon_sym_f64] = ACTIONS(5228), + [anon_sym_c_char] = ACTIONS(5228), + [anon_sym_c_schar] = ACTIONS(5228), + [anon_sym_c_uchar] = ACTIONS(5228), + [anon_sym_c_short] = ACTIONS(5228), + [anon_sym_c_ushort] = ACTIONS(5228), + [anon_sym_c_int] = ACTIONS(5228), + [anon_sym_c_uint] = ACTIONS(5228), + [anon_sym_c_long] = ACTIONS(5228), + [anon_sym_c_ulong] = ACTIONS(5228), + [anon_sym_c_longlong] = ACTIONS(5228), + [anon_sym_c_ulonglong] = ACTIONS(5228), + [anon_sym_c_float] = ACTIONS(5228), + [anon_sym_c_double] = ACTIONS(5228), + [anon_sym_c_longdouble] = ACTIONS(5228), + [anon_sym_else] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5226), + [anon_sym_orelse] = ACTIONS(5228), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_and] = ACTIONS(5228), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5226), + [anon_sym_xor] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5226), + [anon_sym_LT_LT_PIPE] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_SLASH] = ACTIONS(5226), + [anon_sym_catch] = ACTIONS(5228), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5226), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5226), + }, + [STATE(7414)] = { + [sym_identifier] = ACTIONS(5732), + [anon_sym_func] = ACTIONS(5732), + [anon_sym_c_func] = ACTIONS(5732), + [anon_sym_struct] = ACTIONS(5732), + [anon_sym_LPAREN] = ACTIONS(5730), + [anon_sym_COMMA] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5730), + [anon_sym_DASH] = ACTIONS(5730), + [anon_sym_PIPE] = ACTIONS(5730), + [anon_sym_struct_type_BANG] = ACTIONS(5730), + [anon_sym_QMARK] = ACTIONS(5730), + [anon_sym_AT] = ACTIONS(5730), + [anon_sym_STAR] = ACTIONS(5730), + [anon_sym_LBRACK] = ACTIONS(5730), + [anon_sym_void] = ACTIONS(5732), + [anon_sym_noreturn] = ACTIONS(5732), + [anon_sym_type] = ACTIONS(5732), + [anon_sym_anyopaque] = ACTIONS(5732), + [anon_sym_bool] = ACTIONS(5732), + [anon_sym_int] = ACTIONS(5732), + [anon_sym_uint] = ACTIONS(5732), + [anon_sym_float] = ACTIONS(5732), + [anon_sym_range] = ACTIONS(5732), + [anon_sym_i8] = ACTIONS(5732), + [anon_sym_i16] = ACTIONS(5732), + [anon_sym_i32] = ACTIONS(5732), + [anon_sym_i64] = ACTIONS(5732), + [anon_sym_u8] = ACTIONS(5732), + [anon_sym_u16] = ACTIONS(5732), + [anon_sym_u32] = ACTIONS(5732), + [anon_sym_u64] = ACTIONS(5732), + [anon_sym_isize] = ACTIONS(5732), + [anon_sym_usize] = ACTIONS(5732), + [anon_sym_f32] = ACTIONS(5732), + [anon_sym_f64] = ACTIONS(5732), + [anon_sym_c_char] = ACTIONS(5732), + [anon_sym_c_schar] = ACTIONS(5732), + [anon_sym_c_uchar] = ACTIONS(5732), + [anon_sym_c_short] = ACTIONS(5732), + [anon_sym_c_ushort] = ACTIONS(5732), + [anon_sym_c_int] = ACTIONS(5732), + [anon_sym_c_uint] = ACTIONS(5732), + [anon_sym_c_long] = ACTIONS(5732), + [anon_sym_c_ulong] = ACTIONS(5732), + [anon_sym_c_longlong] = ACTIONS(5732), + [anon_sym_c_ulonglong] = ACTIONS(5732), + [anon_sym_c_float] = ACTIONS(5732), + [anon_sym_c_double] = ACTIONS(5732), + [anon_sym_c_longdouble] = ACTIONS(5732), + [anon_sym_else] = ACTIONS(5732), + [anon_sym_DOT_DOT] = ACTIONS(5732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5730), + [anon_sym_orelse] = ACTIONS(5732), + [anon_sym_or] = ACTIONS(5732), + [anon_sym_and] = ACTIONS(5732), + [anon_sym_EQ_EQ] = ACTIONS(5730), + [anon_sym_BANG_EQ] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(5732), + [anon_sym_LT_EQ] = ACTIONS(5730), + [anon_sym_GT] = ACTIONS(5732), + [anon_sym_GT_EQ] = ACTIONS(5730), + [anon_sym_AMP] = ACTIONS(5730), + [anon_sym_xor] = ACTIONS(5732), + [anon_sym_LT_LT] = ACTIONS(5732), + [anon_sym_GT_GT] = ACTIONS(5730), + [anon_sym_LT_LT_PIPE] = ACTIONS(5730), + [anon_sym_PLUS] = ACTIONS(5730), + [anon_sym_SLASH] = ACTIONS(5730), + [anon_sym_catch] = ACTIONS(5732), + [anon_sym_DOT] = ACTIONS(5732), + [anon_sym_CARET] = ACTIONS(5730), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5730), + }, + [STATE(7415)] = { + [sym_identifier] = ACTIONS(5232), + [anon_sym_func] = ACTIONS(5232), + [anon_sym_c_func] = ACTIONS(5232), + [anon_sym_struct] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_PIPE] = ACTIONS(5230), + [anon_sym_struct_type_BANG] = ACTIONS(5230), + [anon_sym_QMARK] = ACTIONS(5230), + [anon_sym_AT] = ACTIONS(5230), + [anon_sym_STAR] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_void] = ACTIONS(5232), + [anon_sym_noreturn] = ACTIONS(5232), + [anon_sym_type] = ACTIONS(5232), + [anon_sym_anyopaque] = ACTIONS(5232), + [anon_sym_bool] = ACTIONS(5232), + [anon_sym_int] = ACTIONS(5232), + [anon_sym_uint] = ACTIONS(5232), + [anon_sym_float] = ACTIONS(5232), + [anon_sym_range] = ACTIONS(5232), + [anon_sym_i8] = ACTIONS(5232), + [anon_sym_i16] = ACTIONS(5232), + [anon_sym_i32] = ACTIONS(5232), + [anon_sym_i64] = ACTIONS(5232), + [anon_sym_u8] = ACTIONS(5232), + [anon_sym_u16] = ACTIONS(5232), + [anon_sym_u32] = ACTIONS(5232), + [anon_sym_u64] = ACTIONS(5232), + [anon_sym_isize] = ACTIONS(5232), + [anon_sym_usize] = ACTIONS(5232), + [anon_sym_f32] = ACTIONS(5232), + [anon_sym_f64] = ACTIONS(5232), + [anon_sym_c_char] = ACTIONS(5232), + [anon_sym_c_schar] = ACTIONS(5232), + [anon_sym_c_uchar] = ACTIONS(5232), + [anon_sym_c_short] = ACTIONS(5232), + [anon_sym_c_ushort] = ACTIONS(5232), + [anon_sym_c_int] = ACTIONS(5232), + [anon_sym_c_uint] = ACTIONS(5232), + [anon_sym_c_long] = ACTIONS(5232), + [anon_sym_c_ulong] = ACTIONS(5232), + [anon_sym_c_longlong] = ACTIONS(5232), + [anon_sym_c_ulonglong] = ACTIONS(5232), + [anon_sym_c_float] = ACTIONS(5232), + [anon_sym_c_double] = ACTIONS(5232), + [anon_sym_c_longdouble] = ACTIONS(5232), + [anon_sym_else] = ACTIONS(5232), + [anon_sym_DOT_DOT] = ACTIONS(5232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5230), + [anon_sym_orelse] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5230), + [anon_sym_BANG_EQ] = ACTIONS(5230), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_LT_EQ] = ACTIONS(5230), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_GT_EQ] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_xor] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5232), + [anon_sym_GT_GT] = ACTIONS(5230), + [anon_sym_LT_LT_PIPE] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5230), + [anon_sym_SLASH] = ACTIONS(5230), + [anon_sym_catch] = ACTIONS(5232), + [anon_sym_DOT] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5230), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5230), + }, + [STATE(7416)] = { + [sym_identifier] = ACTIONS(5236), + [anon_sym_func] = ACTIONS(5236), + [anon_sym_c_func] = ACTIONS(5236), + [anon_sym_struct] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5234), + [anon_sym_struct_type_BANG] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_AT] = ACTIONS(5234), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_void] = ACTIONS(5236), + [anon_sym_noreturn] = ACTIONS(5236), + [anon_sym_type] = ACTIONS(5236), + [anon_sym_anyopaque] = ACTIONS(5236), + [anon_sym_bool] = ACTIONS(5236), + [anon_sym_int] = ACTIONS(5236), + [anon_sym_uint] = ACTIONS(5236), + [anon_sym_float] = ACTIONS(5236), + [anon_sym_range] = ACTIONS(5236), + [anon_sym_i8] = ACTIONS(5236), + [anon_sym_i16] = ACTIONS(5236), + [anon_sym_i32] = ACTIONS(5236), + [anon_sym_i64] = ACTIONS(5236), + [anon_sym_u8] = ACTIONS(5236), + [anon_sym_u16] = ACTIONS(5236), + [anon_sym_u32] = ACTIONS(5236), + [anon_sym_u64] = ACTIONS(5236), + [anon_sym_isize] = ACTIONS(5236), + [anon_sym_usize] = ACTIONS(5236), + [anon_sym_f32] = ACTIONS(5236), + [anon_sym_f64] = ACTIONS(5236), + [anon_sym_c_char] = ACTIONS(5236), + [anon_sym_c_schar] = ACTIONS(5236), + [anon_sym_c_uchar] = ACTIONS(5236), + [anon_sym_c_short] = ACTIONS(5236), + [anon_sym_c_ushort] = ACTIONS(5236), + [anon_sym_c_int] = ACTIONS(5236), + [anon_sym_c_uint] = ACTIONS(5236), + [anon_sym_c_long] = ACTIONS(5236), + [anon_sym_c_ulong] = ACTIONS(5236), + [anon_sym_c_longlong] = ACTIONS(5236), + [anon_sym_c_ulonglong] = ACTIONS(5236), + [anon_sym_c_float] = ACTIONS(5236), + [anon_sym_c_double] = ACTIONS(5236), + [anon_sym_c_longdouble] = ACTIONS(5236), + [anon_sym_else] = ACTIONS(5236), + [anon_sym_DOT_DOT] = ACTIONS(5236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5234), + [anon_sym_orelse] = ACTIONS(5236), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP] = ACTIONS(5234), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5234), + [anon_sym_LT_LT_PIPE] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5234), + [anon_sym_SLASH] = ACTIONS(5234), + [anon_sym_catch] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5234), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5234), + }, + [STATE(7417)] = { + [sym_identifier] = ACTIONS(5240), + [anon_sym_func] = ACTIONS(5240), + [anon_sym_c_func] = ACTIONS(5240), + [anon_sym_struct] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_struct_type_BANG] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5238), + [anon_sym_AT] = ACTIONS(5238), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_void] = ACTIONS(5240), + [anon_sym_noreturn] = ACTIONS(5240), + [anon_sym_type] = ACTIONS(5240), + [anon_sym_anyopaque] = ACTIONS(5240), + [anon_sym_bool] = ACTIONS(5240), + [anon_sym_int] = ACTIONS(5240), + [anon_sym_uint] = ACTIONS(5240), + [anon_sym_float] = ACTIONS(5240), + [anon_sym_range] = ACTIONS(5240), + [anon_sym_i8] = ACTIONS(5240), + [anon_sym_i16] = ACTIONS(5240), + [anon_sym_i32] = ACTIONS(5240), + [anon_sym_i64] = ACTIONS(5240), + [anon_sym_u8] = ACTIONS(5240), + [anon_sym_u16] = ACTIONS(5240), + [anon_sym_u32] = ACTIONS(5240), + [anon_sym_u64] = ACTIONS(5240), + [anon_sym_isize] = ACTIONS(5240), + [anon_sym_usize] = ACTIONS(5240), + [anon_sym_f32] = ACTIONS(5240), + [anon_sym_f64] = ACTIONS(5240), + [anon_sym_c_char] = ACTIONS(5240), + [anon_sym_c_schar] = ACTIONS(5240), + [anon_sym_c_uchar] = ACTIONS(5240), + [anon_sym_c_short] = ACTIONS(5240), + [anon_sym_c_ushort] = ACTIONS(5240), + [anon_sym_c_int] = ACTIONS(5240), + [anon_sym_c_uint] = ACTIONS(5240), + [anon_sym_c_long] = ACTIONS(5240), + [anon_sym_c_ulong] = ACTIONS(5240), + [anon_sym_c_longlong] = ACTIONS(5240), + [anon_sym_c_ulonglong] = ACTIONS(5240), + [anon_sym_c_float] = ACTIONS(5240), + [anon_sym_c_double] = ACTIONS(5240), + [anon_sym_c_longdouble] = ACTIONS(5240), + [anon_sym_else] = ACTIONS(5240), + [anon_sym_DOT_DOT] = ACTIONS(5240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5238), + [anon_sym_orelse] = ACTIONS(5240), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_and] = ACTIONS(5240), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_xor] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5240), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_LT_LT_PIPE] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5238), + [anon_sym_catch] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5238), + }, + [STATE(7418)] = { + [sym_identifier] = ACTIONS(5244), + [anon_sym_func] = ACTIONS(5244), + [anon_sym_c_func] = ACTIONS(5244), + [anon_sym_struct] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_DASH] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5242), + [anon_sym_struct_type_BANG] = ACTIONS(5242), + [anon_sym_QMARK] = ACTIONS(5242), + [anon_sym_AT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_void] = ACTIONS(5244), + [anon_sym_noreturn] = ACTIONS(5244), + [anon_sym_type] = ACTIONS(5244), + [anon_sym_anyopaque] = ACTIONS(5244), + [anon_sym_bool] = ACTIONS(5244), + [anon_sym_int] = ACTIONS(5244), + [anon_sym_uint] = ACTIONS(5244), + [anon_sym_float] = ACTIONS(5244), + [anon_sym_range] = ACTIONS(5244), + [anon_sym_i8] = ACTIONS(5244), + [anon_sym_i16] = ACTIONS(5244), + [anon_sym_i32] = ACTIONS(5244), + [anon_sym_i64] = ACTIONS(5244), + [anon_sym_u8] = ACTIONS(5244), + [anon_sym_u16] = ACTIONS(5244), + [anon_sym_u32] = ACTIONS(5244), + [anon_sym_u64] = ACTIONS(5244), + [anon_sym_isize] = ACTIONS(5244), + [anon_sym_usize] = ACTIONS(5244), + [anon_sym_f32] = ACTIONS(5244), + [anon_sym_f64] = ACTIONS(5244), + [anon_sym_c_char] = ACTIONS(5244), + [anon_sym_c_schar] = ACTIONS(5244), + [anon_sym_c_uchar] = ACTIONS(5244), + [anon_sym_c_short] = ACTIONS(5244), + [anon_sym_c_ushort] = ACTIONS(5244), + [anon_sym_c_int] = ACTIONS(5244), + [anon_sym_c_uint] = ACTIONS(5244), + [anon_sym_c_long] = ACTIONS(5244), + [anon_sym_c_ulong] = ACTIONS(5244), + [anon_sym_c_longlong] = ACTIONS(5244), + [anon_sym_c_ulonglong] = ACTIONS(5244), + [anon_sym_c_float] = ACTIONS(5244), + [anon_sym_c_double] = ACTIONS(5244), + [anon_sym_c_longdouble] = ACTIONS(5244), + [anon_sym_else] = ACTIONS(5244), + [anon_sym_DOT_DOT] = ACTIONS(5244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5242), + [anon_sym_orelse] = ACTIONS(5244), + [anon_sym_or] = ACTIONS(5244), + [anon_sym_and] = ACTIONS(5244), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_AMP] = ACTIONS(5242), + [anon_sym_xor] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5244), + [anon_sym_GT_GT] = ACTIONS(5242), + [anon_sym_LT_LT_PIPE] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5242), + [anon_sym_SLASH] = ACTIONS(5242), + [anon_sym_catch] = ACTIONS(5244), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5242), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5242), + }, + [STATE(7419)] = { + [sym_identifier] = ACTIONS(5248), + [anon_sym_func] = ACTIONS(5248), + [anon_sym_c_func] = ACTIONS(5248), + [anon_sym_struct] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_DASH] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5246), + [anon_sym_struct_type_BANG] = ACTIONS(5246), + [anon_sym_QMARK] = ACTIONS(5246), + [anon_sym_AT] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_void] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym_type] = ACTIONS(5248), + [anon_sym_anyopaque] = ACTIONS(5248), + [anon_sym_bool] = ACTIONS(5248), + [anon_sym_int] = ACTIONS(5248), + [anon_sym_uint] = ACTIONS(5248), + [anon_sym_float] = ACTIONS(5248), + [anon_sym_range] = ACTIONS(5248), + [anon_sym_i8] = ACTIONS(5248), + [anon_sym_i16] = ACTIONS(5248), + [anon_sym_i32] = ACTIONS(5248), + [anon_sym_i64] = ACTIONS(5248), + [anon_sym_u8] = ACTIONS(5248), + [anon_sym_u16] = ACTIONS(5248), + [anon_sym_u32] = ACTIONS(5248), + [anon_sym_u64] = ACTIONS(5248), + [anon_sym_isize] = ACTIONS(5248), + [anon_sym_usize] = ACTIONS(5248), + [anon_sym_f32] = ACTIONS(5248), + [anon_sym_f64] = ACTIONS(5248), + [anon_sym_c_char] = ACTIONS(5248), + [anon_sym_c_schar] = ACTIONS(5248), + [anon_sym_c_uchar] = ACTIONS(5248), + [anon_sym_c_short] = ACTIONS(5248), + [anon_sym_c_ushort] = ACTIONS(5248), + [anon_sym_c_int] = ACTIONS(5248), + [anon_sym_c_uint] = ACTIONS(5248), + [anon_sym_c_long] = ACTIONS(5248), + [anon_sym_c_ulong] = ACTIONS(5248), + [anon_sym_c_longlong] = ACTIONS(5248), + [anon_sym_c_ulonglong] = ACTIONS(5248), + [anon_sym_c_float] = ACTIONS(5248), + [anon_sym_c_double] = ACTIONS(5248), + [anon_sym_c_longdouble] = ACTIONS(5248), + [anon_sym_else] = ACTIONS(5248), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5246), + [anon_sym_orelse] = ACTIONS(5248), + [anon_sym_or] = ACTIONS(5248), + [anon_sym_and] = ACTIONS(5248), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_xor] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5248), + [anon_sym_GT_GT] = ACTIONS(5246), + [anon_sym_LT_LT_PIPE] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5246), + [anon_sym_catch] = ACTIONS(5248), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5246), + }, + [STATE(7420)] = { + [sym_identifier] = ACTIONS(5252), + [anon_sym_func] = ACTIONS(5252), + [anon_sym_c_func] = ACTIONS(5252), + [anon_sym_struct] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_COMMA] = ACTIONS(5250), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5250), + [anon_sym_struct_type_BANG] = ACTIONS(5250), + [anon_sym_QMARK] = ACTIONS(5250), + [anon_sym_AT] = ACTIONS(5250), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_void] = ACTIONS(5252), + [anon_sym_noreturn] = ACTIONS(5252), + [anon_sym_type] = ACTIONS(5252), + [anon_sym_anyopaque] = ACTIONS(5252), + [anon_sym_bool] = ACTIONS(5252), + [anon_sym_int] = ACTIONS(5252), + [anon_sym_uint] = ACTIONS(5252), + [anon_sym_float] = ACTIONS(5252), + [anon_sym_range] = ACTIONS(5252), + [anon_sym_i8] = ACTIONS(5252), + [anon_sym_i16] = ACTIONS(5252), + [anon_sym_i32] = ACTIONS(5252), + [anon_sym_i64] = ACTIONS(5252), + [anon_sym_u8] = ACTIONS(5252), + [anon_sym_u16] = ACTIONS(5252), + [anon_sym_u32] = ACTIONS(5252), + [anon_sym_u64] = ACTIONS(5252), + [anon_sym_isize] = ACTIONS(5252), + [anon_sym_usize] = ACTIONS(5252), + [anon_sym_f32] = ACTIONS(5252), + [anon_sym_f64] = ACTIONS(5252), + [anon_sym_c_char] = ACTIONS(5252), + [anon_sym_c_schar] = ACTIONS(5252), + [anon_sym_c_uchar] = ACTIONS(5252), + [anon_sym_c_short] = ACTIONS(5252), + [anon_sym_c_ushort] = ACTIONS(5252), + [anon_sym_c_int] = ACTIONS(5252), + [anon_sym_c_uint] = ACTIONS(5252), + [anon_sym_c_long] = ACTIONS(5252), + [anon_sym_c_ulong] = ACTIONS(5252), + [anon_sym_c_longlong] = ACTIONS(5252), + [anon_sym_c_ulonglong] = ACTIONS(5252), + [anon_sym_c_float] = ACTIONS(5252), + [anon_sym_c_double] = ACTIONS(5252), + [anon_sym_c_longdouble] = ACTIONS(5252), + [anon_sym_else] = ACTIONS(5252), + [anon_sym_DOT_DOT] = ACTIONS(5252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5250), + [anon_sym_orelse] = ACTIONS(5252), + [anon_sym_or] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5250), + [anon_sym_xor] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5252), + [anon_sym_GT_GT] = ACTIONS(5250), + [anon_sym_LT_LT_PIPE] = ACTIONS(5250), + [anon_sym_PLUS] = ACTIONS(5250), + [anon_sym_SLASH] = ACTIONS(5250), + [anon_sym_catch] = ACTIONS(5252), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_CARET] = ACTIONS(5250), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5250), + }, + [STATE(7421)] = { + [sym_identifier] = ACTIONS(5256), + [anon_sym_func] = ACTIONS(5256), + [anon_sym_c_func] = ACTIONS(5256), + [anon_sym_struct] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5254), + [anon_sym_struct_type_BANG] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(5254), + [anon_sym_AT] = ACTIONS(5254), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_void] = ACTIONS(5256), + [anon_sym_noreturn] = ACTIONS(5256), + [anon_sym_type] = ACTIONS(5256), + [anon_sym_anyopaque] = ACTIONS(5256), + [anon_sym_bool] = ACTIONS(5256), + [anon_sym_int] = ACTIONS(5256), + [anon_sym_uint] = ACTIONS(5256), + [anon_sym_float] = ACTIONS(5256), + [anon_sym_range] = ACTIONS(5256), + [anon_sym_i8] = ACTIONS(5256), + [anon_sym_i16] = ACTIONS(5256), + [anon_sym_i32] = ACTIONS(5256), + [anon_sym_i64] = ACTIONS(5256), + [anon_sym_u8] = ACTIONS(5256), + [anon_sym_u16] = ACTIONS(5256), + [anon_sym_u32] = ACTIONS(5256), + [anon_sym_u64] = ACTIONS(5256), + [anon_sym_isize] = ACTIONS(5256), + [anon_sym_usize] = ACTIONS(5256), + [anon_sym_f32] = ACTIONS(5256), + [anon_sym_f64] = ACTIONS(5256), + [anon_sym_c_char] = ACTIONS(5256), + [anon_sym_c_schar] = ACTIONS(5256), + [anon_sym_c_uchar] = ACTIONS(5256), + [anon_sym_c_short] = ACTIONS(5256), + [anon_sym_c_ushort] = ACTIONS(5256), + [anon_sym_c_int] = ACTIONS(5256), + [anon_sym_c_uint] = ACTIONS(5256), + [anon_sym_c_long] = ACTIONS(5256), + [anon_sym_c_ulong] = ACTIONS(5256), + [anon_sym_c_longlong] = ACTIONS(5256), + [anon_sym_c_ulonglong] = ACTIONS(5256), + [anon_sym_c_float] = ACTIONS(5256), + [anon_sym_c_double] = ACTIONS(5256), + [anon_sym_c_longdouble] = ACTIONS(5256), + [anon_sym_else] = ACTIONS(5256), + [anon_sym_DOT_DOT] = ACTIONS(5256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5254), + [anon_sym_orelse] = ACTIONS(5256), + [anon_sym_or] = ACTIONS(5256), + [anon_sym_and] = ACTIONS(5256), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(5254), + [anon_sym_xor] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5256), + [anon_sym_GT_GT] = ACTIONS(5254), + [anon_sym_LT_LT_PIPE] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5254), + [anon_sym_SLASH] = ACTIONS(5254), + [anon_sym_catch] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5254), + }, + [STATE(7422)] = { + [sym_identifier] = ACTIONS(5260), + [anon_sym_func] = ACTIONS(5260), + [anon_sym_c_func] = ACTIONS(5260), + [anon_sym_struct] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5258), + [anon_sym_struct_type_BANG] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_AT] = ACTIONS(5258), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_void] = ACTIONS(5260), + [anon_sym_noreturn] = ACTIONS(5260), + [anon_sym_type] = ACTIONS(5260), + [anon_sym_anyopaque] = ACTIONS(5260), + [anon_sym_bool] = ACTIONS(5260), + [anon_sym_int] = ACTIONS(5260), + [anon_sym_uint] = ACTIONS(5260), + [anon_sym_float] = ACTIONS(5260), + [anon_sym_range] = ACTIONS(5260), + [anon_sym_i8] = ACTIONS(5260), + [anon_sym_i16] = ACTIONS(5260), + [anon_sym_i32] = ACTIONS(5260), + [anon_sym_i64] = ACTIONS(5260), + [anon_sym_u8] = ACTIONS(5260), + [anon_sym_u16] = ACTIONS(5260), + [anon_sym_u32] = ACTIONS(5260), + [anon_sym_u64] = ACTIONS(5260), + [anon_sym_isize] = ACTIONS(5260), + [anon_sym_usize] = ACTIONS(5260), + [anon_sym_f32] = ACTIONS(5260), + [anon_sym_f64] = ACTIONS(5260), + [anon_sym_c_char] = ACTIONS(5260), + [anon_sym_c_schar] = ACTIONS(5260), + [anon_sym_c_uchar] = ACTIONS(5260), + [anon_sym_c_short] = ACTIONS(5260), + [anon_sym_c_ushort] = ACTIONS(5260), + [anon_sym_c_int] = ACTIONS(5260), + [anon_sym_c_uint] = ACTIONS(5260), + [anon_sym_c_long] = ACTIONS(5260), + [anon_sym_c_ulong] = ACTIONS(5260), + [anon_sym_c_longlong] = ACTIONS(5260), + [anon_sym_c_ulonglong] = ACTIONS(5260), + [anon_sym_c_float] = ACTIONS(5260), + [anon_sym_c_double] = ACTIONS(5260), + [anon_sym_c_longdouble] = ACTIONS(5260), + [anon_sym_else] = ACTIONS(5260), + [anon_sym_DOT_DOT] = ACTIONS(5260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5258), + [anon_sym_orelse] = ACTIONS(5260), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_LT_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5258), + [anon_sym_LT_LT_PIPE] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5258), + [anon_sym_SLASH] = ACTIONS(5258), + [anon_sym_catch] = ACTIONS(5260), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5258), + }, + [STATE(7423)] = { + [sym_identifier] = ACTIONS(5264), + [anon_sym_func] = ACTIONS(5264), + [anon_sym_c_func] = ACTIONS(5264), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_RBRACE] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_struct_type_BANG] = ACTIONS(5262), + [anon_sym_QMARK] = ACTIONS(5262), + [anon_sym_AT] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_void] = ACTIONS(5264), + [anon_sym_noreturn] = ACTIONS(5264), + [anon_sym_type] = ACTIONS(5264), + [anon_sym_anyopaque] = ACTIONS(5264), + [anon_sym_bool] = ACTIONS(5264), + [anon_sym_int] = ACTIONS(5264), + [anon_sym_uint] = ACTIONS(5264), + [anon_sym_float] = ACTIONS(5264), + [anon_sym_range] = ACTIONS(5264), + [anon_sym_i8] = ACTIONS(5264), + [anon_sym_i16] = ACTIONS(5264), + [anon_sym_i32] = ACTIONS(5264), + [anon_sym_i64] = ACTIONS(5264), + [anon_sym_u8] = ACTIONS(5264), + [anon_sym_u16] = ACTIONS(5264), + [anon_sym_u32] = ACTIONS(5264), + [anon_sym_u64] = ACTIONS(5264), + [anon_sym_isize] = ACTIONS(5264), + [anon_sym_usize] = ACTIONS(5264), + [anon_sym_f32] = ACTIONS(5264), + [anon_sym_f64] = ACTIONS(5264), + [anon_sym_c_char] = ACTIONS(5264), + [anon_sym_c_schar] = ACTIONS(5264), + [anon_sym_c_uchar] = ACTIONS(5264), + [anon_sym_c_short] = ACTIONS(5264), + [anon_sym_c_ushort] = ACTIONS(5264), + [anon_sym_c_int] = ACTIONS(5264), + [anon_sym_c_uint] = ACTIONS(5264), + [anon_sym_c_long] = ACTIONS(5264), + [anon_sym_c_ulong] = ACTIONS(5264), + [anon_sym_c_longlong] = ACTIONS(5264), + [anon_sym_c_ulonglong] = ACTIONS(5264), + [anon_sym_c_float] = ACTIONS(5264), + [anon_sym_c_double] = ACTIONS(5264), + [anon_sym_c_longdouble] = ACTIONS(5264), + [anon_sym_else] = ACTIONS(5264), + [anon_sym_DOT_DOT] = ACTIONS(5264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5262), + [anon_sym_orelse] = ACTIONS(5264), + [anon_sym_or] = ACTIONS(5264), + [anon_sym_and] = ACTIONS(5264), + [anon_sym_EQ_EQ] = ACTIONS(5262), + [anon_sym_BANG_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_xor] = ACTIONS(5264), + [anon_sym_LT_LT] = ACTIONS(5264), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_LT_LT_PIPE] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5262), + [anon_sym_catch] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5262), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5262), + }, + [STATE(7424)] = { + [sym_identifier] = ACTIONS(5268), + [anon_sym_func] = ACTIONS(5268), + [anon_sym_c_func] = ACTIONS(5268), + [anon_sym_struct] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_struct_type_BANG] = ACTIONS(5266), + [anon_sym_QMARK] = ACTIONS(5266), + [anon_sym_AT] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_void] = ACTIONS(5268), + [anon_sym_noreturn] = ACTIONS(5268), + [anon_sym_type] = ACTIONS(5268), + [anon_sym_anyopaque] = ACTIONS(5268), + [anon_sym_bool] = ACTIONS(5268), + [anon_sym_int] = ACTIONS(5268), + [anon_sym_uint] = ACTIONS(5268), + [anon_sym_float] = ACTIONS(5268), + [anon_sym_range] = ACTIONS(5268), + [anon_sym_i8] = ACTIONS(5268), + [anon_sym_i16] = ACTIONS(5268), + [anon_sym_i32] = ACTIONS(5268), + [anon_sym_i64] = ACTIONS(5268), + [anon_sym_u8] = ACTIONS(5268), + [anon_sym_u16] = ACTIONS(5268), + [anon_sym_u32] = ACTIONS(5268), + [anon_sym_u64] = ACTIONS(5268), + [anon_sym_isize] = ACTIONS(5268), + [anon_sym_usize] = ACTIONS(5268), + [anon_sym_f32] = ACTIONS(5268), + [anon_sym_f64] = ACTIONS(5268), + [anon_sym_c_char] = ACTIONS(5268), + [anon_sym_c_schar] = ACTIONS(5268), + [anon_sym_c_uchar] = ACTIONS(5268), + [anon_sym_c_short] = ACTIONS(5268), + [anon_sym_c_ushort] = ACTIONS(5268), + [anon_sym_c_int] = ACTIONS(5268), + [anon_sym_c_uint] = ACTIONS(5268), + [anon_sym_c_long] = ACTIONS(5268), + [anon_sym_c_ulong] = ACTIONS(5268), + [anon_sym_c_longlong] = ACTIONS(5268), + [anon_sym_c_ulonglong] = ACTIONS(5268), + [anon_sym_c_float] = ACTIONS(5268), + [anon_sym_c_double] = ACTIONS(5268), + [anon_sym_c_longdouble] = ACTIONS(5268), + [anon_sym_else] = ACTIONS(5268), + [anon_sym_DOT_DOT] = ACTIONS(5268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5266), + [anon_sym_orelse] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5268), + [anon_sym_and] = ACTIONS(5268), + [anon_sym_EQ_EQ] = ACTIONS(5266), + [anon_sym_BANG_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_GT_EQ] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_xor] = ACTIONS(5268), + [anon_sym_LT_LT] = ACTIONS(5268), + [anon_sym_GT_GT] = ACTIONS(5266), + [anon_sym_LT_LT_PIPE] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_catch] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5266), + }, + [STATE(7425)] = { + [sym_identifier] = ACTIONS(5272), + [anon_sym_func] = ACTIONS(5272), + [anon_sym_c_func] = ACTIONS(5272), + [anon_sym_struct] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_DASH] = ACTIONS(5270), + [anon_sym_PIPE] = ACTIONS(5270), + [anon_sym_struct_type_BANG] = ACTIONS(5270), + [anon_sym_QMARK] = ACTIONS(5270), + [anon_sym_AT] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_void] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym_type] = ACTIONS(5272), + [anon_sym_anyopaque] = ACTIONS(5272), + [anon_sym_bool] = ACTIONS(5272), + [anon_sym_int] = ACTIONS(5272), + [anon_sym_uint] = ACTIONS(5272), + [anon_sym_float] = ACTIONS(5272), + [anon_sym_range] = ACTIONS(5272), + [anon_sym_i8] = ACTIONS(5272), + [anon_sym_i16] = ACTIONS(5272), + [anon_sym_i32] = ACTIONS(5272), + [anon_sym_i64] = ACTIONS(5272), + [anon_sym_u8] = ACTIONS(5272), + [anon_sym_u16] = ACTIONS(5272), + [anon_sym_u32] = ACTIONS(5272), + [anon_sym_u64] = ACTIONS(5272), + [anon_sym_isize] = ACTIONS(5272), + [anon_sym_usize] = ACTIONS(5272), + [anon_sym_f32] = ACTIONS(5272), + [anon_sym_f64] = ACTIONS(5272), + [anon_sym_c_char] = ACTIONS(5272), + [anon_sym_c_schar] = ACTIONS(5272), + [anon_sym_c_uchar] = ACTIONS(5272), + [anon_sym_c_short] = ACTIONS(5272), + [anon_sym_c_ushort] = ACTIONS(5272), + [anon_sym_c_int] = ACTIONS(5272), + [anon_sym_c_uint] = ACTIONS(5272), + [anon_sym_c_long] = ACTIONS(5272), + [anon_sym_c_ulong] = ACTIONS(5272), + [anon_sym_c_longlong] = ACTIONS(5272), + [anon_sym_c_ulonglong] = ACTIONS(5272), + [anon_sym_c_float] = ACTIONS(5272), + [anon_sym_c_double] = ACTIONS(5272), + [anon_sym_c_longdouble] = ACTIONS(5272), + [anon_sym_else] = ACTIONS(5272), + [anon_sym_DOT_DOT] = ACTIONS(5272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5270), + [anon_sym_orelse] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5272), + [anon_sym_and] = ACTIONS(5272), + [anon_sym_EQ_EQ] = ACTIONS(5270), + [anon_sym_BANG_EQ] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_GT_EQ] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5270), + [anon_sym_xor] = ACTIONS(5272), + [anon_sym_LT_LT] = ACTIONS(5272), + [anon_sym_GT_GT] = ACTIONS(5270), + [anon_sym_LT_LT_PIPE] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5270), + [anon_sym_SLASH] = ACTIONS(5270), + [anon_sym_catch] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5270), + }, + [STATE(7426)] = { + [sym_identifier] = ACTIONS(5276), + [anon_sym_func] = ACTIONS(5276), + [anon_sym_c_func] = ACTIONS(5276), + [anon_sym_struct] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5274), + [anon_sym_PIPE] = ACTIONS(5274), + [anon_sym_struct_type_BANG] = ACTIONS(5274), + [anon_sym_QMARK] = ACTIONS(5274), + [anon_sym_AT] = ACTIONS(5274), + [anon_sym_STAR] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_void] = ACTIONS(5276), + [anon_sym_noreturn] = ACTIONS(5276), + [anon_sym_type] = ACTIONS(5276), + [anon_sym_anyopaque] = ACTIONS(5276), + [anon_sym_bool] = ACTIONS(5276), + [anon_sym_int] = ACTIONS(5276), + [anon_sym_uint] = ACTIONS(5276), + [anon_sym_float] = ACTIONS(5276), + [anon_sym_range] = ACTIONS(5276), + [anon_sym_i8] = ACTIONS(5276), + [anon_sym_i16] = ACTIONS(5276), + [anon_sym_i32] = ACTIONS(5276), + [anon_sym_i64] = ACTIONS(5276), + [anon_sym_u8] = ACTIONS(5276), + [anon_sym_u16] = ACTIONS(5276), + [anon_sym_u32] = ACTIONS(5276), + [anon_sym_u64] = ACTIONS(5276), + [anon_sym_isize] = ACTIONS(5276), + [anon_sym_usize] = ACTIONS(5276), + [anon_sym_f32] = ACTIONS(5276), + [anon_sym_f64] = ACTIONS(5276), + [anon_sym_c_char] = ACTIONS(5276), + [anon_sym_c_schar] = ACTIONS(5276), + [anon_sym_c_uchar] = ACTIONS(5276), + [anon_sym_c_short] = ACTIONS(5276), + [anon_sym_c_ushort] = ACTIONS(5276), + [anon_sym_c_int] = ACTIONS(5276), + [anon_sym_c_uint] = ACTIONS(5276), + [anon_sym_c_long] = ACTIONS(5276), + [anon_sym_c_ulong] = ACTIONS(5276), + [anon_sym_c_longlong] = ACTIONS(5276), + [anon_sym_c_ulonglong] = ACTIONS(5276), + [anon_sym_c_float] = ACTIONS(5276), + [anon_sym_c_double] = ACTIONS(5276), + [anon_sym_c_longdouble] = ACTIONS(5276), + [anon_sym_else] = ACTIONS(5276), + [anon_sym_DOT_DOT] = ACTIONS(5276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5274), + [anon_sym_orelse] = ACTIONS(5276), + [anon_sym_or] = ACTIONS(5276), + [anon_sym_and] = ACTIONS(5276), + [anon_sym_EQ_EQ] = ACTIONS(5274), + [anon_sym_BANG_EQ] = ACTIONS(5274), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_LT_EQ] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_GT_EQ] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(5274), + [anon_sym_xor] = ACTIONS(5276), + [anon_sym_LT_LT] = ACTIONS(5276), + [anon_sym_GT_GT] = ACTIONS(5274), + [anon_sym_LT_LT_PIPE] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_SLASH] = ACTIONS(5274), + [anon_sym_catch] = ACTIONS(5276), + [anon_sym_DOT] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5274), + }, + [STATE(7427)] = { + [sym_identifier] = ACTIONS(5280), + [anon_sym_func] = ACTIONS(5280), + [anon_sym_c_func] = ACTIONS(5280), + [anon_sym_struct] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_RBRACE] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5278), + [anon_sym_PIPE] = ACTIONS(5278), + [anon_sym_struct_type_BANG] = ACTIONS(5278), + [anon_sym_QMARK] = ACTIONS(5278), + [anon_sym_AT] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_void] = ACTIONS(5280), + [anon_sym_noreturn] = ACTIONS(5280), + [anon_sym_type] = ACTIONS(5280), + [anon_sym_anyopaque] = ACTIONS(5280), + [anon_sym_bool] = ACTIONS(5280), + [anon_sym_int] = ACTIONS(5280), + [anon_sym_uint] = ACTIONS(5280), + [anon_sym_float] = ACTIONS(5280), + [anon_sym_range] = ACTIONS(5280), + [anon_sym_i8] = ACTIONS(5280), + [anon_sym_i16] = ACTIONS(5280), + [anon_sym_i32] = ACTIONS(5280), + [anon_sym_i64] = ACTIONS(5280), + [anon_sym_u8] = ACTIONS(5280), + [anon_sym_u16] = ACTIONS(5280), + [anon_sym_u32] = ACTIONS(5280), + [anon_sym_u64] = ACTIONS(5280), + [anon_sym_isize] = ACTIONS(5280), + [anon_sym_usize] = ACTIONS(5280), + [anon_sym_f32] = ACTIONS(5280), + [anon_sym_f64] = ACTIONS(5280), + [anon_sym_c_char] = ACTIONS(5280), + [anon_sym_c_schar] = ACTIONS(5280), + [anon_sym_c_uchar] = ACTIONS(5280), + [anon_sym_c_short] = ACTIONS(5280), + [anon_sym_c_ushort] = ACTIONS(5280), + [anon_sym_c_int] = ACTIONS(5280), + [anon_sym_c_uint] = ACTIONS(5280), + [anon_sym_c_long] = ACTIONS(5280), + [anon_sym_c_ulong] = ACTIONS(5280), + [anon_sym_c_longlong] = ACTIONS(5280), + [anon_sym_c_ulonglong] = ACTIONS(5280), + [anon_sym_c_float] = ACTIONS(5280), + [anon_sym_c_double] = ACTIONS(5280), + [anon_sym_c_longdouble] = ACTIONS(5280), + [anon_sym_else] = ACTIONS(5280), + [anon_sym_DOT_DOT] = ACTIONS(5280), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5278), + [anon_sym_orelse] = ACTIONS(5280), + [anon_sym_or] = ACTIONS(5280), + [anon_sym_and] = ACTIONS(5280), + [anon_sym_EQ_EQ] = ACTIONS(5278), + [anon_sym_BANG_EQ] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5278), + [anon_sym_xor] = ACTIONS(5280), + [anon_sym_LT_LT] = ACTIONS(5280), + [anon_sym_GT_GT] = ACTIONS(5278), + [anon_sym_LT_LT_PIPE] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5278), + [anon_sym_SLASH] = ACTIONS(5278), + [anon_sym_catch] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5278), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5278), + }, + [STATE(7428)] = { + [sym_identifier] = ACTIONS(5284), + [anon_sym_func] = ACTIONS(5284), + [anon_sym_c_func] = ACTIONS(5284), + [anon_sym_struct] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5282), + [anon_sym_struct_type_BANG] = ACTIONS(5282), + [anon_sym_QMARK] = ACTIONS(5282), + [anon_sym_AT] = ACTIONS(5282), + [anon_sym_STAR] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_void] = ACTIONS(5284), + [anon_sym_noreturn] = ACTIONS(5284), + [anon_sym_type] = ACTIONS(5284), + [anon_sym_anyopaque] = ACTIONS(5284), + [anon_sym_bool] = ACTIONS(5284), + [anon_sym_int] = ACTIONS(5284), + [anon_sym_uint] = ACTIONS(5284), + [anon_sym_float] = ACTIONS(5284), + [anon_sym_range] = ACTIONS(5284), + [anon_sym_i8] = ACTIONS(5284), + [anon_sym_i16] = ACTIONS(5284), + [anon_sym_i32] = ACTIONS(5284), + [anon_sym_i64] = ACTIONS(5284), + [anon_sym_u8] = ACTIONS(5284), + [anon_sym_u16] = ACTIONS(5284), + [anon_sym_u32] = ACTIONS(5284), + [anon_sym_u64] = ACTIONS(5284), + [anon_sym_isize] = ACTIONS(5284), + [anon_sym_usize] = ACTIONS(5284), + [anon_sym_f32] = ACTIONS(5284), + [anon_sym_f64] = ACTIONS(5284), + [anon_sym_c_char] = ACTIONS(5284), + [anon_sym_c_schar] = ACTIONS(5284), + [anon_sym_c_uchar] = ACTIONS(5284), + [anon_sym_c_short] = ACTIONS(5284), + [anon_sym_c_ushort] = ACTIONS(5284), + [anon_sym_c_int] = ACTIONS(5284), + [anon_sym_c_uint] = ACTIONS(5284), + [anon_sym_c_long] = ACTIONS(5284), + [anon_sym_c_ulong] = ACTIONS(5284), + [anon_sym_c_longlong] = ACTIONS(5284), + [anon_sym_c_ulonglong] = ACTIONS(5284), + [anon_sym_c_float] = ACTIONS(5284), + [anon_sym_c_double] = ACTIONS(5284), + [anon_sym_c_longdouble] = ACTIONS(5284), + [anon_sym_else] = ACTIONS(5284), + [anon_sym_DOT_DOT] = ACTIONS(5284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5282), + [anon_sym_orelse] = ACTIONS(5284), + [anon_sym_or] = ACTIONS(5284), + [anon_sym_and] = ACTIONS(5284), + [anon_sym_EQ_EQ] = ACTIONS(5282), + [anon_sym_BANG_EQ] = ACTIONS(5282), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_LT_EQ] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_EQ] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5282), + [anon_sym_xor] = ACTIONS(5284), + [anon_sym_LT_LT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5282), + [anon_sym_LT_LT_PIPE] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5282), + [anon_sym_SLASH] = ACTIONS(5282), + [anon_sym_catch] = ACTIONS(5284), + [anon_sym_DOT] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5282), + }, + [STATE(7429)] = { + [sym_identifier] = ACTIONS(5288), + [anon_sym_func] = ACTIONS(5288), + [anon_sym_c_func] = ACTIONS(5288), + [anon_sym_struct] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5286), + [anon_sym_struct_type_BANG] = ACTIONS(5286), + [anon_sym_QMARK] = ACTIONS(5286), + [anon_sym_AT] = ACTIONS(5286), + [anon_sym_STAR] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_void] = ACTIONS(5288), + [anon_sym_noreturn] = ACTIONS(5288), + [anon_sym_type] = ACTIONS(5288), + [anon_sym_anyopaque] = ACTIONS(5288), + [anon_sym_bool] = ACTIONS(5288), + [anon_sym_int] = ACTIONS(5288), + [anon_sym_uint] = ACTIONS(5288), + [anon_sym_float] = ACTIONS(5288), + [anon_sym_range] = ACTIONS(5288), + [anon_sym_i8] = ACTIONS(5288), + [anon_sym_i16] = ACTIONS(5288), + [anon_sym_i32] = ACTIONS(5288), + [anon_sym_i64] = ACTIONS(5288), + [anon_sym_u8] = ACTIONS(5288), + [anon_sym_u16] = ACTIONS(5288), + [anon_sym_u32] = ACTIONS(5288), + [anon_sym_u64] = ACTIONS(5288), + [anon_sym_isize] = ACTIONS(5288), + [anon_sym_usize] = ACTIONS(5288), + [anon_sym_f32] = ACTIONS(5288), + [anon_sym_f64] = ACTIONS(5288), + [anon_sym_c_char] = ACTIONS(5288), + [anon_sym_c_schar] = ACTIONS(5288), + [anon_sym_c_uchar] = ACTIONS(5288), + [anon_sym_c_short] = ACTIONS(5288), + [anon_sym_c_ushort] = ACTIONS(5288), + [anon_sym_c_int] = ACTIONS(5288), + [anon_sym_c_uint] = ACTIONS(5288), + [anon_sym_c_long] = ACTIONS(5288), + [anon_sym_c_ulong] = ACTIONS(5288), + [anon_sym_c_longlong] = ACTIONS(5288), + [anon_sym_c_ulonglong] = ACTIONS(5288), + [anon_sym_c_float] = ACTIONS(5288), + [anon_sym_c_double] = ACTIONS(5288), + [anon_sym_c_longdouble] = ACTIONS(5288), + [anon_sym_else] = ACTIONS(5288), + [anon_sym_DOT_DOT] = ACTIONS(5288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5286), + [anon_sym_orelse] = ACTIONS(5288), + [anon_sym_or] = ACTIONS(5288), + [anon_sym_and] = ACTIONS(5288), + [anon_sym_EQ_EQ] = ACTIONS(5286), + [anon_sym_BANG_EQ] = ACTIONS(5286), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_LT_EQ] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_EQ] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5286), + [anon_sym_xor] = ACTIONS(5288), + [anon_sym_LT_LT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5286), + [anon_sym_LT_LT_PIPE] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5286), + [anon_sym_SLASH] = ACTIONS(5286), + [anon_sym_catch] = ACTIONS(5288), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5286), + }, + [STATE(7430)] = { + [sym_identifier] = ACTIONS(5292), + [anon_sym_func] = ACTIONS(5292), + [anon_sym_c_func] = ACTIONS(5292), + [anon_sym_struct] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_RBRACE] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5290), + [anon_sym_struct_type_BANG] = ACTIONS(5290), + [anon_sym_QMARK] = ACTIONS(5290), + [anon_sym_AT] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_void] = ACTIONS(5292), + [anon_sym_noreturn] = ACTIONS(5292), + [anon_sym_type] = ACTIONS(5292), + [anon_sym_anyopaque] = ACTIONS(5292), + [anon_sym_bool] = ACTIONS(5292), + [anon_sym_int] = ACTIONS(5292), + [anon_sym_uint] = ACTIONS(5292), + [anon_sym_float] = ACTIONS(5292), + [anon_sym_range] = ACTIONS(5292), + [anon_sym_i8] = ACTIONS(5292), + [anon_sym_i16] = ACTIONS(5292), + [anon_sym_i32] = ACTIONS(5292), + [anon_sym_i64] = ACTIONS(5292), + [anon_sym_u8] = ACTIONS(5292), + [anon_sym_u16] = ACTIONS(5292), + [anon_sym_u32] = ACTIONS(5292), + [anon_sym_u64] = ACTIONS(5292), + [anon_sym_isize] = ACTIONS(5292), + [anon_sym_usize] = ACTIONS(5292), + [anon_sym_f32] = ACTIONS(5292), + [anon_sym_f64] = ACTIONS(5292), + [anon_sym_c_char] = ACTIONS(5292), + [anon_sym_c_schar] = ACTIONS(5292), + [anon_sym_c_uchar] = ACTIONS(5292), + [anon_sym_c_short] = ACTIONS(5292), + [anon_sym_c_ushort] = ACTIONS(5292), + [anon_sym_c_int] = ACTIONS(5292), + [anon_sym_c_uint] = ACTIONS(5292), + [anon_sym_c_long] = ACTIONS(5292), + [anon_sym_c_ulong] = ACTIONS(5292), + [anon_sym_c_longlong] = ACTIONS(5292), + [anon_sym_c_ulonglong] = ACTIONS(5292), + [anon_sym_c_float] = ACTIONS(5292), + [anon_sym_c_double] = ACTIONS(5292), + [anon_sym_c_longdouble] = ACTIONS(5292), + [anon_sym_else] = ACTIONS(5292), + [anon_sym_DOT_DOT] = ACTIONS(5292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5290), + [anon_sym_orelse] = ACTIONS(5292), + [anon_sym_or] = ACTIONS(5292), + [anon_sym_and] = ACTIONS(5292), + [anon_sym_EQ_EQ] = ACTIONS(5290), + [anon_sym_BANG_EQ] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_LT_EQ] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_EQ] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5290), + [anon_sym_xor] = ACTIONS(5292), + [anon_sym_LT_LT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5290), + [anon_sym_LT_LT_PIPE] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5290), + [anon_sym_SLASH] = ACTIONS(5290), + [anon_sym_catch] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5290), + }, + [STATE(7431)] = { + [sym_identifier] = ACTIONS(5296), + [anon_sym_func] = ACTIONS(5296), + [anon_sym_c_func] = ACTIONS(5296), + [anon_sym_struct] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_DASH] = ACTIONS(5294), + [anon_sym_PIPE] = ACTIONS(5294), + [anon_sym_struct_type_BANG] = ACTIONS(5294), + [anon_sym_QMARK] = ACTIONS(5294), + [anon_sym_AT] = ACTIONS(5294), + [anon_sym_STAR] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_void] = ACTIONS(5296), + [anon_sym_noreturn] = ACTIONS(5296), + [anon_sym_type] = ACTIONS(5296), + [anon_sym_anyopaque] = ACTIONS(5296), + [anon_sym_bool] = ACTIONS(5296), + [anon_sym_int] = ACTIONS(5296), + [anon_sym_uint] = ACTIONS(5296), + [anon_sym_float] = ACTIONS(5296), + [anon_sym_range] = ACTIONS(5296), + [anon_sym_i8] = ACTIONS(5296), + [anon_sym_i16] = ACTIONS(5296), + [anon_sym_i32] = ACTIONS(5296), + [anon_sym_i64] = ACTIONS(5296), + [anon_sym_u8] = ACTIONS(5296), + [anon_sym_u16] = ACTIONS(5296), + [anon_sym_u32] = ACTIONS(5296), + [anon_sym_u64] = ACTIONS(5296), + [anon_sym_isize] = ACTIONS(5296), + [anon_sym_usize] = ACTIONS(5296), + [anon_sym_f32] = ACTIONS(5296), + [anon_sym_f64] = ACTIONS(5296), + [anon_sym_c_char] = ACTIONS(5296), + [anon_sym_c_schar] = ACTIONS(5296), + [anon_sym_c_uchar] = ACTIONS(5296), + [anon_sym_c_short] = ACTIONS(5296), + [anon_sym_c_ushort] = ACTIONS(5296), + [anon_sym_c_int] = ACTIONS(5296), + [anon_sym_c_uint] = ACTIONS(5296), + [anon_sym_c_long] = ACTIONS(5296), + [anon_sym_c_ulong] = ACTIONS(5296), + [anon_sym_c_longlong] = ACTIONS(5296), + [anon_sym_c_ulonglong] = ACTIONS(5296), + [anon_sym_c_float] = ACTIONS(5296), + [anon_sym_c_double] = ACTIONS(5296), + [anon_sym_c_longdouble] = ACTIONS(5296), + [anon_sym_else] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(5296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5294), + [anon_sym_orelse] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5294), + [anon_sym_BANG_EQ] = ACTIONS(5294), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_LT_EQ] = ACTIONS(5294), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_GT_EQ] = ACTIONS(5294), + [anon_sym_AMP] = ACTIONS(5294), + [anon_sym_xor] = ACTIONS(5296), + [anon_sym_LT_LT] = ACTIONS(5296), + [anon_sym_GT_GT] = ACTIONS(5294), + [anon_sym_LT_LT_PIPE] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(5294), + [anon_sym_SLASH] = ACTIONS(5294), + [anon_sym_catch] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5294), + }, + [STATE(7432)] = { + [sym_identifier] = ACTIONS(5300), + [anon_sym_func] = ACTIONS(5300), + [anon_sym_c_func] = ACTIONS(5300), + [anon_sym_struct] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_RBRACE] = ACTIONS(5298), + [anon_sym_DASH] = ACTIONS(5298), + [anon_sym_PIPE] = ACTIONS(5298), + [anon_sym_struct_type_BANG] = ACTIONS(5298), + [anon_sym_QMARK] = ACTIONS(5298), + [anon_sym_AT] = ACTIONS(5298), + [anon_sym_STAR] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_void] = ACTIONS(5300), + [anon_sym_noreturn] = ACTIONS(5300), + [anon_sym_type] = ACTIONS(5300), + [anon_sym_anyopaque] = ACTIONS(5300), + [anon_sym_bool] = ACTIONS(5300), + [anon_sym_int] = ACTIONS(5300), + [anon_sym_uint] = ACTIONS(5300), + [anon_sym_float] = ACTIONS(5300), + [anon_sym_range] = ACTIONS(5300), + [anon_sym_i8] = ACTIONS(5300), + [anon_sym_i16] = ACTIONS(5300), + [anon_sym_i32] = ACTIONS(5300), + [anon_sym_i64] = ACTIONS(5300), + [anon_sym_u8] = ACTIONS(5300), + [anon_sym_u16] = ACTIONS(5300), + [anon_sym_u32] = ACTIONS(5300), + [anon_sym_u64] = ACTIONS(5300), + [anon_sym_isize] = ACTIONS(5300), + [anon_sym_usize] = ACTIONS(5300), + [anon_sym_f32] = ACTIONS(5300), + [anon_sym_f64] = ACTIONS(5300), + [anon_sym_c_char] = ACTIONS(5300), + [anon_sym_c_schar] = ACTIONS(5300), + [anon_sym_c_uchar] = ACTIONS(5300), + [anon_sym_c_short] = ACTIONS(5300), + [anon_sym_c_ushort] = ACTIONS(5300), + [anon_sym_c_int] = ACTIONS(5300), + [anon_sym_c_uint] = ACTIONS(5300), + [anon_sym_c_long] = ACTIONS(5300), + [anon_sym_c_ulong] = ACTIONS(5300), + [anon_sym_c_longlong] = ACTIONS(5300), + [anon_sym_c_ulonglong] = ACTIONS(5300), + [anon_sym_c_float] = ACTIONS(5300), + [anon_sym_c_double] = ACTIONS(5300), + [anon_sym_c_longdouble] = ACTIONS(5300), + [anon_sym_else] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5298), + [anon_sym_orelse] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5298), + [anon_sym_BANG_EQ] = ACTIONS(5298), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_LT_EQ] = ACTIONS(5298), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5298), + [anon_sym_AMP] = ACTIONS(5298), + [anon_sym_xor] = ACTIONS(5300), + [anon_sym_LT_LT] = ACTIONS(5300), + [anon_sym_GT_GT] = ACTIONS(5298), + [anon_sym_LT_LT_PIPE] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5298), + [anon_sym_SLASH] = ACTIONS(5298), + [anon_sym_catch] = ACTIONS(5300), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5298), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5298), + }, + [STATE(7433)] = { + [sym_identifier] = ACTIONS(5308), + [anon_sym_func] = ACTIONS(5308), + [anon_sym_c_func] = ACTIONS(5308), + [anon_sym_struct] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_PIPE] = ACTIONS(5306), + [anon_sym_struct_type_BANG] = ACTIONS(5306), + [anon_sym_QMARK] = ACTIONS(5306), + [anon_sym_AT] = ACTIONS(5306), + [anon_sym_STAR] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_void] = ACTIONS(5308), + [anon_sym_noreturn] = ACTIONS(5308), + [anon_sym_type] = ACTIONS(5308), + [anon_sym_anyopaque] = ACTIONS(5308), + [anon_sym_bool] = ACTIONS(5308), + [anon_sym_int] = ACTIONS(5308), + [anon_sym_uint] = ACTIONS(5308), + [anon_sym_float] = ACTIONS(5308), + [anon_sym_range] = ACTIONS(5308), + [anon_sym_i8] = ACTIONS(5308), + [anon_sym_i16] = ACTIONS(5308), + [anon_sym_i32] = ACTIONS(5308), + [anon_sym_i64] = ACTIONS(5308), + [anon_sym_u8] = ACTIONS(5308), + [anon_sym_u16] = ACTIONS(5308), + [anon_sym_u32] = ACTIONS(5308), + [anon_sym_u64] = ACTIONS(5308), + [anon_sym_isize] = ACTIONS(5308), + [anon_sym_usize] = ACTIONS(5308), + [anon_sym_f32] = ACTIONS(5308), + [anon_sym_f64] = ACTIONS(5308), + [anon_sym_c_char] = ACTIONS(5308), + [anon_sym_c_schar] = ACTIONS(5308), + [anon_sym_c_uchar] = ACTIONS(5308), + [anon_sym_c_short] = ACTIONS(5308), + [anon_sym_c_ushort] = ACTIONS(5308), + [anon_sym_c_int] = ACTIONS(5308), + [anon_sym_c_uint] = ACTIONS(5308), + [anon_sym_c_long] = ACTIONS(5308), + [anon_sym_c_ulong] = ACTIONS(5308), + [anon_sym_c_longlong] = ACTIONS(5308), + [anon_sym_c_ulonglong] = ACTIONS(5308), + [anon_sym_c_float] = ACTIONS(5308), + [anon_sym_c_double] = ACTIONS(5308), + [anon_sym_c_longdouble] = ACTIONS(5308), + [anon_sym_else] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5306), + [anon_sym_orelse] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5306), + [anon_sym_BANG_EQ] = ACTIONS(5306), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5306), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5306), + [anon_sym_AMP] = ACTIONS(5306), + [anon_sym_xor] = ACTIONS(5308), + [anon_sym_LT_LT] = ACTIONS(5308), + [anon_sym_GT_GT] = ACTIONS(5306), + [anon_sym_LT_LT_PIPE] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5306), + [anon_sym_SLASH] = ACTIONS(5306), + [anon_sym_catch] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5306), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5306), + }, + [STATE(7434)] = { + [sym_identifier] = ACTIONS(5312), + [anon_sym_func] = ACTIONS(5312), + [anon_sym_c_func] = ACTIONS(5312), + [anon_sym_struct] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_struct_type_BANG] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_AT] = ACTIONS(5310), + [anon_sym_STAR] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_void] = ACTIONS(5312), + [anon_sym_noreturn] = ACTIONS(5312), + [anon_sym_type] = ACTIONS(5312), + [anon_sym_anyopaque] = ACTIONS(5312), + [anon_sym_bool] = ACTIONS(5312), + [anon_sym_int] = ACTIONS(5312), + [anon_sym_uint] = ACTIONS(5312), + [anon_sym_float] = ACTIONS(5312), + [anon_sym_range] = ACTIONS(5312), + [anon_sym_i8] = ACTIONS(5312), + [anon_sym_i16] = ACTIONS(5312), + [anon_sym_i32] = ACTIONS(5312), + [anon_sym_i64] = ACTIONS(5312), + [anon_sym_u8] = ACTIONS(5312), + [anon_sym_u16] = ACTIONS(5312), + [anon_sym_u32] = ACTIONS(5312), + [anon_sym_u64] = ACTIONS(5312), + [anon_sym_isize] = ACTIONS(5312), + [anon_sym_usize] = ACTIONS(5312), + [anon_sym_f32] = ACTIONS(5312), + [anon_sym_f64] = ACTIONS(5312), + [anon_sym_c_char] = ACTIONS(5312), + [anon_sym_c_schar] = ACTIONS(5312), + [anon_sym_c_uchar] = ACTIONS(5312), + [anon_sym_c_short] = ACTIONS(5312), + [anon_sym_c_ushort] = ACTIONS(5312), + [anon_sym_c_int] = ACTIONS(5312), + [anon_sym_c_uint] = ACTIONS(5312), + [anon_sym_c_long] = ACTIONS(5312), + [anon_sym_c_ulong] = ACTIONS(5312), + [anon_sym_c_longlong] = ACTIONS(5312), + [anon_sym_c_ulonglong] = ACTIONS(5312), + [anon_sym_c_float] = ACTIONS(5312), + [anon_sym_c_double] = ACTIONS(5312), + [anon_sym_c_longdouble] = ACTIONS(5312), + [anon_sym_else] = ACTIONS(5312), + [anon_sym_DOT_DOT] = ACTIONS(5312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5310), + [anon_sym_orelse] = ACTIONS(5312), + [anon_sym_or] = ACTIONS(5312), + [anon_sym_and] = ACTIONS(5312), + [anon_sym_EQ_EQ] = ACTIONS(5310), + [anon_sym_BANG_EQ] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_LT_EQ] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_EQ] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5310), + [anon_sym_xor] = ACTIONS(5312), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5310), + [anon_sym_LT_LT_PIPE] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_SLASH] = ACTIONS(5310), + [anon_sym_catch] = ACTIONS(5312), + [anon_sym_DOT] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5310), + }, + [STATE(7435)] = { + [sym_identifier] = ACTIONS(5318), + [anon_sym_func] = ACTIONS(5318), + [anon_sym_c_func] = ACTIONS(5318), + [anon_sym_struct] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_COMMA] = ACTIONS(5316), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_struct_type_BANG] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_AT] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_LBRACK] = ACTIONS(5316), + [anon_sym_void] = ACTIONS(5318), + [anon_sym_noreturn] = ACTIONS(5318), + [anon_sym_type] = ACTIONS(5318), + [anon_sym_anyopaque] = ACTIONS(5318), + [anon_sym_bool] = ACTIONS(5318), + [anon_sym_int] = ACTIONS(5318), + [anon_sym_uint] = ACTIONS(5318), + [anon_sym_float] = ACTIONS(5318), + [anon_sym_range] = ACTIONS(5318), + [anon_sym_i8] = ACTIONS(5318), + [anon_sym_i16] = ACTIONS(5318), + [anon_sym_i32] = ACTIONS(5318), + [anon_sym_i64] = ACTIONS(5318), + [anon_sym_u8] = ACTIONS(5318), + [anon_sym_u16] = ACTIONS(5318), + [anon_sym_u32] = ACTIONS(5318), + [anon_sym_u64] = ACTIONS(5318), + [anon_sym_isize] = ACTIONS(5318), + [anon_sym_usize] = ACTIONS(5318), + [anon_sym_f32] = ACTIONS(5318), + [anon_sym_f64] = ACTIONS(5318), + [anon_sym_c_char] = ACTIONS(5318), + [anon_sym_c_schar] = ACTIONS(5318), + [anon_sym_c_uchar] = ACTIONS(5318), + [anon_sym_c_short] = ACTIONS(5318), + [anon_sym_c_ushort] = ACTIONS(5318), + [anon_sym_c_int] = ACTIONS(5318), + [anon_sym_c_uint] = ACTIONS(5318), + [anon_sym_c_long] = ACTIONS(5318), + [anon_sym_c_ulong] = ACTIONS(5318), + [anon_sym_c_longlong] = ACTIONS(5318), + [anon_sym_c_ulonglong] = ACTIONS(5318), + [anon_sym_c_float] = ACTIONS(5318), + [anon_sym_c_double] = ACTIONS(5318), + [anon_sym_c_longdouble] = ACTIONS(5318), + [anon_sym_else] = ACTIONS(5318), + [anon_sym_DOT_DOT] = ACTIONS(5318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5316), + [anon_sym_orelse] = ACTIONS(5318), + [anon_sym_or] = ACTIONS(5318), + [anon_sym_and] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5316), + [anon_sym_BANG_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_LT_EQ] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_EQ] = ACTIONS(5316), + [anon_sym_AMP] = ACTIONS(5316), + [anon_sym_xor] = ACTIONS(5318), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(5316), + [anon_sym_LT_LT_PIPE] = ACTIONS(5316), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_catch] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_CARET] = ACTIONS(5316), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5316), + }, + [STATE(7436)] = { + [sym_identifier] = ACTIONS(5322), + [anon_sym_func] = ACTIONS(5322), + [anon_sym_c_func] = ACTIONS(5322), + [anon_sym_struct] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5320), + [anon_sym_COMMA] = ACTIONS(5320), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_struct_type_BANG] = ACTIONS(5320), + [anon_sym_QMARK] = ACTIONS(5320), + [anon_sym_AT] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_LBRACK] = ACTIONS(5320), + [anon_sym_void] = ACTIONS(5322), + [anon_sym_noreturn] = ACTIONS(5322), + [anon_sym_type] = ACTIONS(5322), + [anon_sym_anyopaque] = ACTIONS(5322), + [anon_sym_bool] = ACTIONS(5322), + [anon_sym_int] = ACTIONS(5322), + [anon_sym_uint] = ACTIONS(5322), + [anon_sym_float] = ACTIONS(5322), + [anon_sym_range] = ACTIONS(5322), + [anon_sym_i8] = ACTIONS(5322), + [anon_sym_i16] = ACTIONS(5322), + [anon_sym_i32] = ACTIONS(5322), + [anon_sym_i64] = ACTIONS(5322), + [anon_sym_u8] = ACTIONS(5322), + [anon_sym_u16] = ACTIONS(5322), + [anon_sym_u32] = ACTIONS(5322), + [anon_sym_u64] = ACTIONS(5322), + [anon_sym_isize] = ACTIONS(5322), + [anon_sym_usize] = ACTIONS(5322), + [anon_sym_f32] = ACTIONS(5322), + [anon_sym_f64] = ACTIONS(5322), + [anon_sym_c_char] = ACTIONS(5322), + [anon_sym_c_schar] = ACTIONS(5322), + [anon_sym_c_uchar] = ACTIONS(5322), + [anon_sym_c_short] = ACTIONS(5322), + [anon_sym_c_ushort] = ACTIONS(5322), + [anon_sym_c_int] = ACTIONS(5322), + [anon_sym_c_uint] = ACTIONS(5322), + [anon_sym_c_long] = ACTIONS(5322), + [anon_sym_c_ulong] = ACTIONS(5322), + [anon_sym_c_longlong] = ACTIONS(5322), + [anon_sym_c_ulonglong] = ACTIONS(5322), + [anon_sym_c_float] = ACTIONS(5322), + [anon_sym_c_double] = ACTIONS(5322), + [anon_sym_c_longdouble] = ACTIONS(5322), + [anon_sym_else] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5320), + [anon_sym_orelse] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5320), + [anon_sym_BANG_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(5320), + [anon_sym_xor] = ACTIONS(5322), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5320), + [anon_sym_LT_LT_PIPE] = ACTIONS(5320), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_catch] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5320), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5320), + }, + [STATE(7437)] = { + [sym_identifier] = ACTIONS(5326), + [anon_sym_func] = ACTIONS(5326), + [anon_sym_c_func] = ACTIONS(5326), + [anon_sym_struct] = ACTIONS(5326), + [anon_sym_LPAREN] = ACTIONS(5324), + [anon_sym_COMMA] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_struct_type_BANG] = ACTIONS(5324), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_AT] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym_void] = ACTIONS(5326), + [anon_sym_noreturn] = ACTIONS(5326), + [anon_sym_type] = ACTIONS(5326), + [anon_sym_anyopaque] = ACTIONS(5326), + [anon_sym_bool] = ACTIONS(5326), + [anon_sym_int] = ACTIONS(5326), + [anon_sym_uint] = ACTIONS(5326), + [anon_sym_float] = ACTIONS(5326), + [anon_sym_range] = ACTIONS(5326), + [anon_sym_i8] = ACTIONS(5326), + [anon_sym_i16] = ACTIONS(5326), + [anon_sym_i32] = ACTIONS(5326), + [anon_sym_i64] = ACTIONS(5326), + [anon_sym_u8] = ACTIONS(5326), + [anon_sym_u16] = ACTIONS(5326), + [anon_sym_u32] = ACTIONS(5326), + [anon_sym_u64] = ACTIONS(5326), + [anon_sym_isize] = ACTIONS(5326), + [anon_sym_usize] = ACTIONS(5326), + [anon_sym_f32] = ACTIONS(5326), + [anon_sym_f64] = ACTIONS(5326), + [anon_sym_c_char] = ACTIONS(5326), + [anon_sym_c_schar] = ACTIONS(5326), + [anon_sym_c_uchar] = ACTIONS(5326), + [anon_sym_c_short] = ACTIONS(5326), + [anon_sym_c_ushort] = ACTIONS(5326), + [anon_sym_c_int] = ACTIONS(5326), + [anon_sym_c_uint] = ACTIONS(5326), + [anon_sym_c_long] = ACTIONS(5326), + [anon_sym_c_ulong] = ACTIONS(5326), + [anon_sym_c_longlong] = ACTIONS(5326), + [anon_sym_c_ulonglong] = ACTIONS(5326), + [anon_sym_c_float] = ACTIONS(5326), + [anon_sym_c_double] = ACTIONS(5326), + [anon_sym_c_longdouble] = ACTIONS(5326), + [anon_sym_else] = ACTIONS(5326), + [anon_sym_DOT_DOT] = ACTIONS(5326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5324), + [anon_sym_orelse] = ACTIONS(5326), + [anon_sym_or] = ACTIONS(5326), + [anon_sym_and] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5324), + [anon_sym_BANG_EQ] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5326), + [anon_sym_GT_EQ] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_xor] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5326), + [anon_sym_GT_GT] = ACTIONS(5324), + [anon_sym_LT_LT_PIPE] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_catch] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5324), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5324), + }, + [STATE(7438)] = { + [sym_identifier] = ACTIONS(5330), + [anon_sym_func] = ACTIONS(5330), + [anon_sym_c_func] = ACTIONS(5330), + [anon_sym_struct] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_struct_type_BANG] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(5328), + [anon_sym_AT] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5328), + [anon_sym_void] = ACTIONS(5330), + [anon_sym_noreturn] = ACTIONS(5330), + [anon_sym_type] = ACTIONS(5330), + [anon_sym_anyopaque] = ACTIONS(5330), + [anon_sym_bool] = ACTIONS(5330), + [anon_sym_int] = ACTIONS(5330), + [anon_sym_uint] = ACTIONS(5330), + [anon_sym_float] = ACTIONS(5330), + [anon_sym_range] = ACTIONS(5330), + [anon_sym_i8] = ACTIONS(5330), + [anon_sym_i16] = ACTIONS(5330), + [anon_sym_i32] = ACTIONS(5330), + [anon_sym_i64] = ACTIONS(5330), + [anon_sym_u8] = ACTIONS(5330), + [anon_sym_u16] = ACTIONS(5330), + [anon_sym_u32] = ACTIONS(5330), + [anon_sym_u64] = ACTIONS(5330), + [anon_sym_isize] = ACTIONS(5330), + [anon_sym_usize] = ACTIONS(5330), + [anon_sym_f32] = ACTIONS(5330), + [anon_sym_f64] = ACTIONS(5330), + [anon_sym_c_char] = ACTIONS(5330), + [anon_sym_c_schar] = ACTIONS(5330), + [anon_sym_c_uchar] = ACTIONS(5330), + [anon_sym_c_short] = ACTIONS(5330), + [anon_sym_c_ushort] = ACTIONS(5330), + [anon_sym_c_int] = ACTIONS(5330), + [anon_sym_c_uint] = ACTIONS(5330), + [anon_sym_c_long] = ACTIONS(5330), + [anon_sym_c_ulong] = ACTIONS(5330), + [anon_sym_c_longlong] = ACTIONS(5330), + [anon_sym_c_ulonglong] = ACTIONS(5330), + [anon_sym_c_float] = ACTIONS(5330), + [anon_sym_c_double] = ACTIONS(5330), + [anon_sym_c_longdouble] = ACTIONS(5330), + [anon_sym_else] = ACTIONS(5330), + [anon_sym_DOT_DOT] = ACTIONS(5330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5328), + [anon_sym_orelse] = ACTIONS(5330), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_and] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_BANG_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_EQ] = ACTIONS(5328), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_xor] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5328), + [anon_sym_LT_LT_PIPE] = ACTIONS(5328), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_catch] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5328), + }, + [STATE(7439)] = { + [sym_identifier] = ACTIONS(5334), + [anon_sym_func] = ACTIONS(5334), + [anon_sym_c_func] = ACTIONS(5334), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_struct_type_BANG] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_AT] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5332), + [anon_sym_void] = ACTIONS(5334), + [anon_sym_noreturn] = ACTIONS(5334), + [anon_sym_type] = ACTIONS(5334), + [anon_sym_anyopaque] = ACTIONS(5334), + [anon_sym_bool] = ACTIONS(5334), + [anon_sym_int] = ACTIONS(5334), + [anon_sym_uint] = ACTIONS(5334), + [anon_sym_float] = ACTIONS(5334), + [anon_sym_range] = ACTIONS(5334), + [anon_sym_i8] = ACTIONS(5334), + [anon_sym_i16] = ACTIONS(5334), + [anon_sym_i32] = ACTIONS(5334), + [anon_sym_i64] = ACTIONS(5334), + [anon_sym_u8] = ACTIONS(5334), + [anon_sym_u16] = ACTIONS(5334), + [anon_sym_u32] = ACTIONS(5334), + [anon_sym_u64] = ACTIONS(5334), + [anon_sym_isize] = ACTIONS(5334), + [anon_sym_usize] = ACTIONS(5334), + [anon_sym_f32] = ACTIONS(5334), + [anon_sym_f64] = ACTIONS(5334), + [anon_sym_c_char] = ACTIONS(5334), + [anon_sym_c_schar] = ACTIONS(5334), + [anon_sym_c_uchar] = ACTIONS(5334), + [anon_sym_c_short] = ACTIONS(5334), + [anon_sym_c_ushort] = ACTIONS(5334), + [anon_sym_c_int] = ACTIONS(5334), + [anon_sym_c_uint] = ACTIONS(5334), + [anon_sym_c_long] = ACTIONS(5334), + [anon_sym_c_ulong] = ACTIONS(5334), + [anon_sym_c_longlong] = ACTIONS(5334), + [anon_sym_c_ulonglong] = ACTIONS(5334), + [anon_sym_c_float] = ACTIONS(5334), + [anon_sym_c_double] = ACTIONS(5334), + [anon_sym_c_longdouble] = ACTIONS(5334), + [anon_sym_else] = ACTIONS(5334), + [anon_sym_DOT_DOT] = ACTIONS(5334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5332), + [anon_sym_orelse] = ACTIONS(5334), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_and] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5332), + [anon_sym_BANG_EQ] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5334), + [anon_sym_LT_EQ] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5334), + [anon_sym_GT_EQ] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_xor] = ACTIONS(5334), + [anon_sym_LT_LT] = ACTIONS(5334), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_LT_LT_PIPE] = ACTIONS(5332), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_catch] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(5334), + [anon_sym_CARET] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5332), + }, + [STATE(7440)] = { + [sym_identifier] = ACTIONS(5338), + [anon_sym_func] = ACTIONS(5338), + [anon_sym_c_func] = ACTIONS(5338), + [anon_sym_struct] = ACTIONS(5338), + [anon_sym_LPAREN] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_struct_type_BANG] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5336), + [anon_sym_AT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5336), + [anon_sym_void] = ACTIONS(5338), + [anon_sym_noreturn] = ACTIONS(5338), + [anon_sym_type] = ACTIONS(5338), + [anon_sym_anyopaque] = ACTIONS(5338), + [anon_sym_bool] = ACTIONS(5338), + [anon_sym_int] = ACTIONS(5338), + [anon_sym_uint] = ACTIONS(5338), + [anon_sym_float] = ACTIONS(5338), + [anon_sym_range] = ACTIONS(5338), + [anon_sym_i8] = ACTIONS(5338), + [anon_sym_i16] = ACTIONS(5338), + [anon_sym_i32] = ACTIONS(5338), + [anon_sym_i64] = ACTIONS(5338), + [anon_sym_u8] = ACTIONS(5338), + [anon_sym_u16] = ACTIONS(5338), + [anon_sym_u32] = ACTIONS(5338), + [anon_sym_u64] = ACTIONS(5338), + [anon_sym_isize] = ACTIONS(5338), + [anon_sym_usize] = ACTIONS(5338), + [anon_sym_f32] = ACTIONS(5338), + [anon_sym_f64] = ACTIONS(5338), + [anon_sym_c_char] = ACTIONS(5338), + [anon_sym_c_schar] = ACTIONS(5338), + [anon_sym_c_uchar] = ACTIONS(5338), + [anon_sym_c_short] = ACTIONS(5338), + [anon_sym_c_ushort] = ACTIONS(5338), + [anon_sym_c_int] = ACTIONS(5338), + [anon_sym_c_uint] = ACTIONS(5338), + [anon_sym_c_long] = ACTIONS(5338), + [anon_sym_c_ulong] = ACTIONS(5338), + [anon_sym_c_longlong] = ACTIONS(5338), + [anon_sym_c_ulonglong] = ACTIONS(5338), + [anon_sym_c_float] = ACTIONS(5338), + [anon_sym_c_double] = ACTIONS(5338), + [anon_sym_c_longdouble] = ACTIONS(5338), + [anon_sym_else] = ACTIONS(5338), + [anon_sym_DOT_DOT] = ACTIONS(5338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5336), + [anon_sym_orelse] = ACTIONS(5338), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_and] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5338), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5336), + [anon_sym_xor] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5336), + [anon_sym_LT_LT_PIPE] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_catch] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5336), + }, + [STATE(7441)] = { + [sym_identifier] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5342), + [anon_sym_c_func] = ACTIONS(5342), + [anon_sym_struct] = ACTIONS(5342), + [anon_sym_LPAREN] = ACTIONS(5340), + [anon_sym_COMMA] = ACTIONS(5340), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_struct_type_BANG] = ACTIONS(5340), + [anon_sym_QMARK] = ACTIONS(5340), + [anon_sym_AT] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5340), + [anon_sym_void] = ACTIONS(5342), + [anon_sym_noreturn] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_anyopaque] = ACTIONS(5342), + [anon_sym_bool] = ACTIONS(5342), + [anon_sym_int] = ACTIONS(5342), + [anon_sym_uint] = ACTIONS(5342), + [anon_sym_float] = ACTIONS(5342), + [anon_sym_range] = ACTIONS(5342), + [anon_sym_i8] = ACTIONS(5342), + [anon_sym_i16] = ACTIONS(5342), + [anon_sym_i32] = ACTIONS(5342), + [anon_sym_i64] = ACTIONS(5342), + [anon_sym_u8] = ACTIONS(5342), + [anon_sym_u16] = ACTIONS(5342), + [anon_sym_u32] = ACTIONS(5342), + [anon_sym_u64] = ACTIONS(5342), + [anon_sym_isize] = ACTIONS(5342), + [anon_sym_usize] = ACTIONS(5342), + [anon_sym_f32] = ACTIONS(5342), + [anon_sym_f64] = ACTIONS(5342), + [anon_sym_c_char] = ACTIONS(5342), + [anon_sym_c_schar] = ACTIONS(5342), + [anon_sym_c_uchar] = ACTIONS(5342), + [anon_sym_c_short] = ACTIONS(5342), + [anon_sym_c_ushort] = ACTIONS(5342), + [anon_sym_c_int] = ACTIONS(5342), + [anon_sym_c_uint] = ACTIONS(5342), + [anon_sym_c_long] = ACTIONS(5342), + [anon_sym_c_ulong] = ACTIONS(5342), + [anon_sym_c_longlong] = ACTIONS(5342), + [anon_sym_c_ulonglong] = ACTIONS(5342), + [anon_sym_c_float] = ACTIONS(5342), + [anon_sym_c_double] = ACTIONS(5342), + [anon_sym_c_longdouble] = ACTIONS(5342), + [anon_sym_else] = ACTIONS(5342), + [anon_sym_DOT_DOT] = ACTIONS(5342), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5340), + [anon_sym_orelse] = ACTIONS(5342), + [anon_sym_or] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_EQ_EQ] = ACTIONS(5340), + [anon_sym_BANG_EQ] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5342), + [anon_sym_LT_EQ] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5342), + [anon_sym_GT_EQ] = ACTIONS(5340), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_xor] = ACTIONS(5342), + [anon_sym_LT_LT] = ACTIONS(5342), + [anon_sym_GT_GT] = ACTIONS(5340), + [anon_sym_LT_LT_PIPE] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_catch] = ACTIONS(5342), + [anon_sym_DOT] = ACTIONS(5342), + [anon_sym_CARET] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5340), + }, + [STATE(7442)] = { + [sym_identifier] = ACTIONS(5346), + [anon_sym_func] = ACTIONS(5346), + [anon_sym_c_func] = ACTIONS(5346), + [anon_sym_struct] = ACTIONS(5346), + [anon_sym_LPAREN] = ACTIONS(5344), + [anon_sym_COMMA] = ACTIONS(5344), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_struct_type_BANG] = ACTIONS(5344), + [anon_sym_QMARK] = ACTIONS(5344), + [anon_sym_AT] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_LBRACK] = ACTIONS(5344), + [anon_sym_void] = ACTIONS(5346), + [anon_sym_noreturn] = ACTIONS(5346), + [anon_sym_type] = ACTIONS(5346), + [anon_sym_anyopaque] = ACTIONS(5346), + [anon_sym_bool] = ACTIONS(5346), + [anon_sym_int] = ACTIONS(5346), + [anon_sym_uint] = ACTIONS(5346), + [anon_sym_float] = ACTIONS(5346), + [anon_sym_range] = ACTIONS(5346), + [anon_sym_i8] = ACTIONS(5346), + [anon_sym_i16] = ACTIONS(5346), + [anon_sym_i32] = ACTIONS(5346), + [anon_sym_i64] = ACTIONS(5346), + [anon_sym_u8] = ACTIONS(5346), + [anon_sym_u16] = ACTIONS(5346), + [anon_sym_u32] = ACTIONS(5346), + [anon_sym_u64] = ACTIONS(5346), + [anon_sym_isize] = ACTIONS(5346), + [anon_sym_usize] = ACTIONS(5346), + [anon_sym_f32] = ACTIONS(5346), + [anon_sym_f64] = ACTIONS(5346), + [anon_sym_c_char] = ACTIONS(5346), + [anon_sym_c_schar] = ACTIONS(5346), + [anon_sym_c_uchar] = ACTIONS(5346), + [anon_sym_c_short] = ACTIONS(5346), + [anon_sym_c_ushort] = ACTIONS(5346), + [anon_sym_c_int] = ACTIONS(5346), + [anon_sym_c_uint] = ACTIONS(5346), + [anon_sym_c_long] = ACTIONS(5346), + [anon_sym_c_ulong] = ACTIONS(5346), + [anon_sym_c_longlong] = ACTIONS(5346), + [anon_sym_c_ulonglong] = ACTIONS(5346), + [anon_sym_c_float] = ACTIONS(5346), + [anon_sym_c_double] = ACTIONS(5346), + [anon_sym_c_longdouble] = ACTIONS(5346), + [anon_sym_else] = ACTIONS(5346), + [anon_sym_DOT_DOT] = ACTIONS(5346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5344), + [anon_sym_orelse] = ACTIONS(5346), + [anon_sym_or] = ACTIONS(5346), + [anon_sym_and] = ACTIONS(5346), + [anon_sym_EQ_EQ] = ACTIONS(5344), + [anon_sym_BANG_EQ] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5346), + [anon_sym_LT_EQ] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5346), + [anon_sym_GT_EQ] = ACTIONS(5344), + [anon_sym_AMP] = ACTIONS(5344), + [anon_sym_xor] = ACTIONS(5346), + [anon_sym_LT_LT] = ACTIONS(5346), + [anon_sym_GT_GT] = ACTIONS(5344), + [anon_sym_LT_LT_PIPE] = ACTIONS(5344), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_catch] = ACTIONS(5346), + [anon_sym_DOT] = ACTIONS(5346), + [anon_sym_CARET] = ACTIONS(5344), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5344), + }, + [STATE(7443)] = { + [sym_identifier] = ACTIONS(5350), + [anon_sym_func] = ACTIONS(5350), + [anon_sym_c_func] = ACTIONS(5350), + [anon_sym_struct] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5348), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_struct_type_BANG] = ACTIONS(5348), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_AT] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_void] = ACTIONS(5350), + [anon_sym_noreturn] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_anyopaque] = ACTIONS(5350), + [anon_sym_bool] = ACTIONS(5350), + [anon_sym_int] = ACTIONS(5350), + [anon_sym_uint] = ACTIONS(5350), + [anon_sym_float] = ACTIONS(5350), + [anon_sym_range] = ACTIONS(5350), + [anon_sym_i8] = ACTIONS(5350), + [anon_sym_i16] = ACTIONS(5350), + [anon_sym_i32] = ACTIONS(5350), + [anon_sym_i64] = ACTIONS(5350), + [anon_sym_u8] = ACTIONS(5350), + [anon_sym_u16] = ACTIONS(5350), + [anon_sym_u32] = ACTIONS(5350), + [anon_sym_u64] = ACTIONS(5350), + [anon_sym_isize] = ACTIONS(5350), + [anon_sym_usize] = ACTIONS(5350), + [anon_sym_f32] = ACTIONS(5350), + [anon_sym_f64] = ACTIONS(5350), + [anon_sym_c_char] = ACTIONS(5350), + [anon_sym_c_schar] = ACTIONS(5350), + [anon_sym_c_uchar] = ACTIONS(5350), + [anon_sym_c_short] = ACTIONS(5350), + [anon_sym_c_ushort] = ACTIONS(5350), + [anon_sym_c_int] = ACTIONS(5350), + [anon_sym_c_uint] = ACTIONS(5350), + [anon_sym_c_long] = ACTIONS(5350), + [anon_sym_c_ulong] = ACTIONS(5350), + [anon_sym_c_longlong] = ACTIONS(5350), + [anon_sym_c_ulonglong] = ACTIONS(5350), + [anon_sym_c_float] = ACTIONS(5350), + [anon_sym_c_double] = ACTIONS(5350), + [anon_sym_c_longdouble] = ACTIONS(5350), + [anon_sym_else] = ACTIONS(5350), + [anon_sym_DOT_DOT] = ACTIONS(5350), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5348), + [anon_sym_orelse] = ACTIONS(5350), + [anon_sym_or] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5348), + [anon_sym_xor] = ACTIONS(5350), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5348), + [anon_sym_LT_LT_PIPE] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_catch] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5348), + }, + [STATE(7444)] = { + [sym_identifier] = ACTIONS(5354), + [anon_sym_func] = ACTIONS(5354), + [anon_sym_c_func] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_struct_type_BANG] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_AT] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_void] = ACTIONS(5354), + [anon_sym_noreturn] = ACTIONS(5354), + [anon_sym_type] = ACTIONS(5354), + [anon_sym_anyopaque] = ACTIONS(5354), + [anon_sym_bool] = ACTIONS(5354), + [anon_sym_int] = ACTIONS(5354), + [anon_sym_uint] = ACTIONS(5354), + [anon_sym_float] = ACTIONS(5354), + [anon_sym_range] = ACTIONS(5354), + [anon_sym_i8] = ACTIONS(5354), + [anon_sym_i16] = ACTIONS(5354), + [anon_sym_i32] = ACTIONS(5354), + [anon_sym_i64] = ACTIONS(5354), + [anon_sym_u8] = ACTIONS(5354), + [anon_sym_u16] = ACTIONS(5354), + [anon_sym_u32] = ACTIONS(5354), + [anon_sym_u64] = ACTIONS(5354), + [anon_sym_isize] = ACTIONS(5354), + [anon_sym_usize] = ACTIONS(5354), + [anon_sym_f32] = ACTIONS(5354), + [anon_sym_f64] = ACTIONS(5354), + [anon_sym_c_char] = ACTIONS(5354), + [anon_sym_c_schar] = ACTIONS(5354), + [anon_sym_c_uchar] = ACTIONS(5354), + [anon_sym_c_short] = ACTIONS(5354), + [anon_sym_c_ushort] = ACTIONS(5354), + [anon_sym_c_int] = ACTIONS(5354), + [anon_sym_c_uint] = ACTIONS(5354), + [anon_sym_c_long] = ACTIONS(5354), + [anon_sym_c_ulong] = ACTIONS(5354), + [anon_sym_c_longlong] = ACTIONS(5354), + [anon_sym_c_ulonglong] = ACTIONS(5354), + [anon_sym_c_float] = ACTIONS(5354), + [anon_sym_c_double] = ACTIONS(5354), + [anon_sym_c_longdouble] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5354), + [anon_sym_DOT_DOT] = ACTIONS(5354), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5352), + [anon_sym_orelse] = ACTIONS(5354), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_and] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_xor] = ACTIONS(5354), + [anon_sym_LT_LT] = ACTIONS(5354), + [anon_sym_GT_GT] = ACTIONS(5352), + [anon_sym_LT_LT_PIPE] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5352), + }, + [STATE(7445)] = { + [sym_identifier] = ACTIONS(5358), + [anon_sym_func] = ACTIONS(5358), + [anon_sym_c_func] = ACTIONS(5358), + [anon_sym_struct] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_struct_type_BANG] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_AT] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_void] = ACTIONS(5358), + [anon_sym_noreturn] = ACTIONS(5358), + [anon_sym_type] = ACTIONS(5358), + [anon_sym_anyopaque] = ACTIONS(5358), + [anon_sym_bool] = ACTIONS(5358), + [anon_sym_int] = ACTIONS(5358), + [anon_sym_uint] = ACTIONS(5358), + [anon_sym_float] = ACTIONS(5358), + [anon_sym_range] = ACTIONS(5358), + [anon_sym_i8] = ACTIONS(5358), + [anon_sym_i16] = ACTIONS(5358), + [anon_sym_i32] = ACTIONS(5358), + [anon_sym_i64] = ACTIONS(5358), + [anon_sym_u8] = ACTIONS(5358), + [anon_sym_u16] = ACTIONS(5358), + [anon_sym_u32] = ACTIONS(5358), + [anon_sym_u64] = ACTIONS(5358), + [anon_sym_isize] = ACTIONS(5358), + [anon_sym_usize] = ACTIONS(5358), + [anon_sym_f32] = ACTIONS(5358), + [anon_sym_f64] = ACTIONS(5358), + [anon_sym_c_char] = ACTIONS(5358), + [anon_sym_c_schar] = ACTIONS(5358), + [anon_sym_c_uchar] = ACTIONS(5358), + [anon_sym_c_short] = ACTIONS(5358), + [anon_sym_c_ushort] = ACTIONS(5358), + [anon_sym_c_int] = ACTIONS(5358), + [anon_sym_c_uint] = ACTIONS(5358), + [anon_sym_c_long] = ACTIONS(5358), + [anon_sym_c_ulong] = ACTIONS(5358), + [anon_sym_c_longlong] = ACTIONS(5358), + [anon_sym_c_ulonglong] = ACTIONS(5358), + [anon_sym_c_float] = ACTIONS(5358), + [anon_sym_c_double] = ACTIONS(5358), + [anon_sym_c_longdouble] = ACTIONS(5358), + [anon_sym_else] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5356), + [anon_sym_orelse] = ACTIONS(5358), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5356), + [anon_sym_BANG_EQ] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5356), + [anon_sym_xor] = ACTIONS(5358), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5356), + [anon_sym_LT_LT_PIPE] = ACTIONS(5356), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_catch] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5356), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5356), + }, + [STATE(7446)] = { + [sym_identifier] = ACTIONS(5362), + [anon_sym_func] = ACTIONS(5362), + [anon_sym_c_func] = ACTIONS(5362), + [anon_sym_struct] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_struct_type_BANG] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(5360), + [anon_sym_void] = ACTIONS(5362), + [anon_sym_noreturn] = ACTIONS(5362), + [anon_sym_type] = ACTIONS(5362), + [anon_sym_anyopaque] = ACTIONS(5362), + [anon_sym_bool] = ACTIONS(5362), + [anon_sym_int] = ACTIONS(5362), + [anon_sym_uint] = ACTIONS(5362), + [anon_sym_float] = ACTIONS(5362), + [anon_sym_range] = ACTIONS(5362), + [anon_sym_i8] = ACTIONS(5362), + [anon_sym_i16] = ACTIONS(5362), + [anon_sym_i32] = ACTIONS(5362), + [anon_sym_i64] = ACTIONS(5362), + [anon_sym_u8] = ACTIONS(5362), + [anon_sym_u16] = ACTIONS(5362), + [anon_sym_u32] = ACTIONS(5362), + [anon_sym_u64] = ACTIONS(5362), + [anon_sym_isize] = ACTIONS(5362), + [anon_sym_usize] = ACTIONS(5362), + [anon_sym_f32] = ACTIONS(5362), + [anon_sym_f64] = ACTIONS(5362), + [anon_sym_c_char] = ACTIONS(5362), + [anon_sym_c_schar] = ACTIONS(5362), + [anon_sym_c_uchar] = ACTIONS(5362), + [anon_sym_c_short] = ACTIONS(5362), + [anon_sym_c_ushort] = ACTIONS(5362), + [anon_sym_c_int] = ACTIONS(5362), + [anon_sym_c_uint] = ACTIONS(5362), + [anon_sym_c_long] = ACTIONS(5362), + [anon_sym_c_ulong] = ACTIONS(5362), + [anon_sym_c_longlong] = ACTIONS(5362), + [anon_sym_c_ulonglong] = ACTIONS(5362), + [anon_sym_c_float] = ACTIONS(5362), + [anon_sym_c_double] = ACTIONS(5362), + [anon_sym_c_longdouble] = ACTIONS(5362), + [anon_sym_else] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5360), + [anon_sym_orelse] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5360), + [anon_sym_xor] = ACTIONS(5362), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5360), + [anon_sym_LT_LT_PIPE] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_catch] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5360), + }, + [STATE(7447)] = { + [sym_identifier] = ACTIONS(5366), + [anon_sym_func] = ACTIONS(5366), + [anon_sym_c_func] = ACTIONS(5366), + [anon_sym_struct] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_struct_type_BANG] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_AT] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5364), + [anon_sym_void] = ACTIONS(5366), + [anon_sym_noreturn] = ACTIONS(5366), + [anon_sym_type] = ACTIONS(5366), + [anon_sym_anyopaque] = ACTIONS(5366), + [anon_sym_bool] = ACTIONS(5366), + [anon_sym_int] = ACTIONS(5366), + [anon_sym_uint] = ACTIONS(5366), + [anon_sym_float] = ACTIONS(5366), + [anon_sym_range] = ACTIONS(5366), + [anon_sym_i8] = ACTIONS(5366), + [anon_sym_i16] = ACTIONS(5366), + [anon_sym_i32] = ACTIONS(5366), + [anon_sym_i64] = ACTIONS(5366), + [anon_sym_u8] = ACTIONS(5366), + [anon_sym_u16] = ACTIONS(5366), + [anon_sym_u32] = ACTIONS(5366), + [anon_sym_u64] = ACTIONS(5366), + [anon_sym_isize] = ACTIONS(5366), + [anon_sym_usize] = ACTIONS(5366), + [anon_sym_f32] = ACTIONS(5366), + [anon_sym_f64] = ACTIONS(5366), + [anon_sym_c_char] = ACTIONS(5366), + [anon_sym_c_schar] = ACTIONS(5366), + [anon_sym_c_uchar] = ACTIONS(5366), + [anon_sym_c_short] = ACTIONS(5366), + [anon_sym_c_ushort] = ACTIONS(5366), + [anon_sym_c_int] = ACTIONS(5366), + [anon_sym_c_uint] = ACTIONS(5366), + [anon_sym_c_long] = ACTIONS(5366), + [anon_sym_c_ulong] = ACTIONS(5366), + [anon_sym_c_longlong] = ACTIONS(5366), + [anon_sym_c_ulonglong] = ACTIONS(5366), + [anon_sym_c_float] = ACTIONS(5366), + [anon_sym_c_double] = ACTIONS(5366), + [anon_sym_c_longdouble] = ACTIONS(5366), + [anon_sym_else] = ACTIONS(5366), + [anon_sym_DOT_DOT] = ACTIONS(5366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5364), + [anon_sym_orelse] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_and] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5364), + [anon_sym_BANG_EQ] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5366), + [anon_sym_GT_EQ] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_xor] = ACTIONS(5366), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_LT_LT_PIPE] = ACTIONS(5364), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_catch] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5366), + [anon_sym_CARET] = ACTIONS(5364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5364), + }, + [STATE(7448)] = { + [sym_identifier] = ACTIONS(5370), + [anon_sym_func] = ACTIONS(5370), + [anon_sym_c_func] = ACTIONS(5370), + [anon_sym_struct] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5368), + [anon_sym_COMMA] = ACTIONS(5368), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_struct_type_BANG] = ACTIONS(5368), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_AT] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_LBRACK] = ACTIONS(5368), + [anon_sym_void] = ACTIONS(5370), + [anon_sym_noreturn] = ACTIONS(5370), + [anon_sym_type] = ACTIONS(5370), + [anon_sym_anyopaque] = ACTIONS(5370), + [anon_sym_bool] = ACTIONS(5370), + [anon_sym_int] = ACTIONS(5370), + [anon_sym_uint] = ACTIONS(5370), + [anon_sym_float] = ACTIONS(5370), + [anon_sym_range] = ACTIONS(5370), + [anon_sym_i8] = ACTIONS(5370), + [anon_sym_i16] = ACTIONS(5370), + [anon_sym_i32] = ACTIONS(5370), + [anon_sym_i64] = ACTIONS(5370), + [anon_sym_u8] = ACTIONS(5370), + [anon_sym_u16] = ACTIONS(5370), + [anon_sym_u32] = ACTIONS(5370), + [anon_sym_u64] = ACTIONS(5370), + [anon_sym_isize] = ACTIONS(5370), + [anon_sym_usize] = ACTIONS(5370), + [anon_sym_f32] = ACTIONS(5370), + [anon_sym_f64] = ACTIONS(5370), + [anon_sym_c_char] = ACTIONS(5370), + [anon_sym_c_schar] = ACTIONS(5370), + [anon_sym_c_uchar] = ACTIONS(5370), + [anon_sym_c_short] = ACTIONS(5370), + [anon_sym_c_ushort] = ACTIONS(5370), + [anon_sym_c_int] = ACTIONS(5370), + [anon_sym_c_uint] = ACTIONS(5370), + [anon_sym_c_long] = ACTIONS(5370), + [anon_sym_c_ulong] = ACTIONS(5370), + [anon_sym_c_longlong] = ACTIONS(5370), + [anon_sym_c_ulonglong] = ACTIONS(5370), + [anon_sym_c_float] = ACTIONS(5370), + [anon_sym_c_double] = ACTIONS(5370), + [anon_sym_c_longdouble] = ACTIONS(5370), + [anon_sym_else] = ACTIONS(5370), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5368), + [anon_sym_orelse] = ACTIONS(5370), + [anon_sym_or] = ACTIONS(5370), + [anon_sym_and] = ACTIONS(5370), + [anon_sym_EQ_EQ] = ACTIONS(5368), + [anon_sym_BANG_EQ] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5368), + [anon_sym_xor] = ACTIONS(5370), + [anon_sym_LT_LT] = ACTIONS(5370), + [anon_sym_GT_GT] = ACTIONS(5368), + [anon_sym_LT_LT_PIPE] = ACTIONS(5368), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_catch] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5370), + [anon_sym_CARET] = ACTIONS(5368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5368), + }, + [STATE(7449)] = { + [sym_identifier] = ACTIONS(5374), + [anon_sym_func] = ACTIONS(5374), + [anon_sym_c_func] = ACTIONS(5374), + [anon_sym_struct] = ACTIONS(5374), + [anon_sym_LPAREN] = ACTIONS(5372), + [anon_sym_COMMA] = ACTIONS(5372), + [anon_sym_RBRACE] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_struct_type_BANG] = ACTIONS(5372), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_AT] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_LBRACK] = ACTIONS(5372), + [anon_sym_void] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_anyopaque] = ACTIONS(5374), + [anon_sym_bool] = ACTIONS(5374), + [anon_sym_int] = ACTIONS(5374), + [anon_sym_uint] = ACTIONS(5374), + [anon_sym_float] = ACTIONS(5374), + [anon_sym_range] = ACTIONS(5374), + [anon_sym_i8] = ACTIONS(5374), + [anon_sym_i16] = ACTIONS(5374), + [anon_sym_i32] = ACTIONS(5374), + [anon_sym_i64] = ACTIONS(5374), + [anon_sym_u8] = ACTIONS(5374), + [anon_sym_u16] = ACTIONS(5374), + [anon_sym_u32] = ACTIONS(5374), + [anon_sym_u64] = ACTIONS(5374), + [anon_sym_isize] = ACTIONS(5374), + [anon_sym_usize] = ACTIONS(5374), + [anon_sym_f32] = ACTIONS(5374), + [anon_sym_f64] = ACTIONS(5374), + [anon_sym_c_char] = ACTIONS(5374), + [anon_sym_c_schar] = ACTIONS(5374), + [anon_sym_c_uchar] = ACTIONS(5374), + [anon_sym_c_short] = ACTIONS(5374), + [anon_sym_c_ushort] = ACTIONS(5374), + [anon_sym_c_int] = ACTIONS(5374), + [anon_sym_c_uint] = ACTIONS(5374), + [anon_sym_c_long] = ACTIONS(5374), + [anon_sym_c_ulong] = ACTIONS(5374), + [anon_sym_c_longlong] = ACTIONS(5374), + [anon_sym_c_ulonglong] = ACTIONS(5374), + [anon_sym_c_float] = ACTIONS(5374), + [anon_sym_c_double] = ACTIONS(5374), + [anon_sym_c_longdouble] = ACTIONS(5374), + [anon_sym_else] = ACTIONS(5374), + [anon_sym_DOT_DOT] = ACTIONS(5374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5372), + [anon_sym_orelse] = ACTIONS(5374), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_EQ_EQ] = ACTIONS(5372), + [anon_sym_BANG_EQ] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5374), + [anon_sym_LT_EQ] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(5372), + [anon_sym_xor] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(5374), + [anon_sym_GT_GT] = ACTIONS(5372), + [anon_sym_LT_LT_PIPE] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_catch] = ACTIONS(5374), + [anon_sym_DOT] = ACTIONS(5374), + [anon_sym_CARET] = ACTIONS(5372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5372), + }, + [STATE(7450)] = { + [sym_identifier] = ACTIONS(5378), + [anon_sym_func] = ACTIONS(5378), + [anon_sym_c_func] = ACTIONS(5378), + [anon_sym_struct] = ACTIONS(5378), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_struct_type_BANG] = ACTIONS(5376), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_AT] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_void] = ACTIONS(5378), + [anon_sym_noreturn] = ACTIONS(5378), + [anon_sym_type] = ACTIONS(5378), + [anon_sym_anyopaque] = ACTIONS(5378), + [anon_sym_bool] = ACTIONS(5378), + [anon_sym_int] = ACTIONS(5378), + [anon_sym_uint] = ACTIONS(5378), + [anon_sym_float] = ACTIONS(5378), + [anon_sym_range] = ACTIONS(5378), + [anon_sym_i8] = ACTIONS(5378), + [anon_sym_i16] = ACTIONS(5378), + [anon_sym_i32] = ACTIONS(5378), + [anon_sym_i64] = ACTIONS(5378), + [anon_sym_u8] = ACTIONS(5378), + [anon_sym_u16] = ACTIONS(5378), + [anon_sym_u32] = ACTIONS(5378), + [anon_sym_u64] = ACTIONS(5378), + [anon_sym_isize] = ACTIONS(5378), + [anon_sym_usize] = ACTIONS(5378), + [anon_sym_f32] = ACTIONS(5378), + [anon_sym_f64] = ACTIONS(5378), + [anon_sym_c_char] = ACTIONS(5378), + [anon_sym_c_schar] = ACTIONS(5378), + [anon_sym_c_uchar] = ACTIONS(5378), + [anon_sym_c_short] = ACTIONS(5378), + [anon_sym_c_ushort] = ACTIONS(5378), + [anon_sym_c_int] = ACTIONS(5378), + [anon_sym_c_uint] = ACTIONS(5378), + [anon_sym_c_long] = ACTIONS(5378), + [anon_sym_c_ulong] = ACTIONS(5378), + [anon_sym_c_longlong] = ACTIONS(5378), + [anon_sym_c_ulonglong] = ACTIONS(5378), + [anon_sym_c_float] = ACTIONS(5378), + [anon_sym_c_double] = ACTIONS(5378), + [anon_sym_c_longdouble] = ACTIONS(5378), + [anon_sym_else] = ACTIONS(5378), + [anon_sym_DOT_DOT] = ACTIONS(5378), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5376), + [anon_sym_orelse] = ACTIONS(5378), + [anon_sym_or] = ACTIONS(5378), + [anon_sym_and] = ACTIONS(5378), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5378), + [anon_sym_LT_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5378), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP] = ACTIONS(5376), + [anon_sym_xor] = ACTIONS(5378), + [anon_sym_LT_LT] = ACTIONS(5378), + [anon_sym_GT_GT] = ACTIONS(5376), + [anon_sym_LT_LT_PIPE] = ACTIONS(5376), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_catch] = ACTIONS(5378), + [anon_sym_DOT] = ACTIONS(5378), + [anon_sym_CARET] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5376), + }, + [STATE(7451)] = { + [sym_identifier] = ACTIONS(5382), + [anon_sym_func] = ACTIONS(5382), + [anon_sym_c_func] = ACTIONS(5382), + [anon_sym_struct] = ACTIONS(5382), + [anon_sym_LPAREN] = ACTIONS(5380), + [anon_sym_COMMA] = ACTIONS(5380), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_struct_type_BANG] = ACTIONS(5380), + [anon_sym_QMARK] = ACTIONS(5380), + [anon_sym_AT] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_LBRACK] = ACTIONS(5380), + [anon_sym_void] = ACTIONS(5382), + [anon_sym_noreturn] = ACTIONS(5382), + [anon_sym_type] = ACTIONS(5382), + [anon_sym_anyopaque] = ACTIONS(5382), + [anon_sym_bool] = ACTIONS(5382), + [anon_sym_int] = ACTIONS(5382), + [anon_sym_uint] = ACTIONS(5382), + [anon_sym_float] = ACTIONS(5382), + [anon_sym_range] = ACTIONS(5382), + [anon_sym_i8] = ACTIONS(5382), + [anon_sym_i16] = ACTIONS(5382), + [anon_sym_i32] = ACTIONS(5382), + [anon_sym_i64] = ACTIONS(5382), + [anon_sym_u8] = ACTIONS(5382), + [anon_sym_u16] = ACTIONS(5382), + [anon_sym_u32] = ACTIONS(5382), + [anon_sym_u64] = ACTIONS(5382), + [anon_sym_isize] = ACTIONS(5382), + [anon_sym_usize] = ACTIONS(5382), + [anon_sym_f32] = ACTIONS(5382), + [anon_sym_f64] = ACTIONS(5382), + [anon_sym_c_char] = ACTIONS(5382), + [anon_sym_c_schar] = ACTIONS(5382), + [anon_sym_c_uchar] = ACTIONS(5382), + [anon_sym_c_short] = ACTIONS(5382), + [anon_sym_c_ushort] = ACTIONS(5382), + [anon_sym_c_int] = ACTIONS(5382), + [anon_sym_c_uint] = ACTIONS(5382), + [anon_sym_c_long] = ACTIONS(5382), + [anon_sym_c_ulong] = ACTIONS(5382), + [anon_sym_c_longlong] = ACTIONS(5382), + [anon_sym_c_ulonglong] = ACTIONS(5382), + [anon_sym_c_float] = ACTIONS(5382), + [anon_sym_c_double] = ACTIONS(5382), + [anon_sym_c_longdouble] = ACTIONS(5382), + [anon_sym_else] = ACTIONS(5382), + [anon_sym_DOT_DOT] = ACTIONS(5382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5380), + [anon_sym_orelse] = ACTIONS(5382), + [anon_sym_or] = ACTIONS(5382), + [anon_sym_and] = ACTIONS(5382), + [anon_sym_EQ_EQ] = ACTIONS(5380), + [anon_sym_BANG_EQ] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5382), + [anon_sym_LT_EQ] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5382), + [anon_sym_GT_EQ] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(5380), + [anon_sym_xor] = ACTIONS(5382), + [anon_sym_LT_LT] = ACTIONS(5382), + [anon_sym_GT_GT] = ACTIONS(5380), + [anon_sym_LT_LT_PIPE] = ACTIONS(5380), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_catch] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5382), + [anon_sym_CARET] = ACTIONS(5380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5380), + }, + [STATE(7452)] = { + [sym_identifier] = ACTIONS(5386), + [anon_sym_func] = ACTIONS(5386), + [anon_sym_c_func] = ACTIONS(5386), + [anon_sym_struct] = ACTIONS(5386), + [anon_sym_LPAREN] = ACTIONS(5384), + [anon_sym_COMMA] = ACTIONS(5384), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_struct_type_BANG] = ACTIONS(5384), + [anon_sym_QMARK] = ACTIONS(5384), + [anon_sym_AT] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5384), + [anon_sym_void] = ACTIONS(5386), + [anon_sym_noreturn] = ACTIONS(5386), + [anon_sym_type] = ACTIONS(5386), + [anon_sym_anyopaque] = ACTIONS(5386), + [anon_sym_bool] = ACTIONS(5386), + [anon_sym_int] = ACTIONS(5386), + [anon_sym_uint] = ACTIONS(5386), + [anon_sym_float] = ACTIONS(5386), + [anon_sym_range] = ACTIONS(5386), + [anon_sym_i8] = ACTIONS(5386), + [anon_sym_i16] = ACTIONS(5386), + [anon_sym_i32] = ACTIONS(5386), + [anon_sym_i64] = ACTIONS(5386), + [anon_sym_u8] = ACTIONS(5386), + [anon_sym_u16] = ACTIONS(5386), + [anon_sym_u32] = ACTIONS(5386), + [anon_sym_u64] = ACTIONS(5386), + [anon_sym_isize] = ACTIONS(5386), + [anon_sym_usize] = ACTIONS(5386), + [anon_sym_f32] = ACTIONS(5386), + [anon_sym_f64] = ACTIONS(5386), + [anon_sym_c_char] = ACTIONS(5386), + [anon_sym_c_schar] = ACTIONS(5386), + [anon_sym_c_uchar] = ACTIONS(5386), + [anon_sym_c_short] = ACTIONS(5386), + [anon_sym_c_ushort] = ACTIONS(5386), + [anon_sym_c_int] = ACTIONS(5386), + [anon_sym_c_uint] = ACTIONS(5386), + [anon_sym_c_long] = ACTIONS(5386), + [anon_sym_c_ulong] = ACTIONS(5386), + [anon_sym_c_longlong] = ACTIONS(5386), + [anon_sym_c_ulonglong] = ACTIONS(5386), + [anon_sym_c_float] = ACTIONS(5386), + [anon_sym_c_double] = ACTIONS(5386), + [anon_sym_c_longdouble] = ACTIONS(5386), + [anon_sym_else] = ACTIONS(5386), + [anon_sym_DOT_DOT] = ACTIONS(5386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5384), + [anon_sym_orelse] = ACTIONS(5386), + [anon_sym_or] = ACTIONS(5386), + [anon_sym_and] = ACTIONS(5386), + [anon_sym_EQ_EQ] = ACTIONS(5384), + [anon_sym_BANG_EQ] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_EQ] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5386), + [anon_sym_GT_EQ] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(5384), + [anon_sym_xor] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(5386), + [anon_sym_GT_GT] = ACTIONS(5384), + [anon_sym_LT_LT_PIPE] = ACTIONS(5384), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_catch] = ACTIONS(5386), + [anon_sym_DOT] = ACTIONS(5386), + [anon_sym_CARET] = ACTIONS(5384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5384), + }, + [STATE(7453)] = { + [sym_identifier] = ACTIONS(5390), + [anon_sym_func] = ACTIONS(5390), + [anon_sym_c_func] = ACTIONS(5390), + [anon_sym_struct] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_struct_type_BANG] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_AT] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_void] = ACTIONS(5390), + [anon_sym_noreturn] = ACTIONS(5390), + [anon_sym_type] = ACTIONS(5390), + [anon_sym_anyopaque] = ACTIONS(5390), + [anon_sym_bool] = ACTIONS(5390), + [anon_sym_int] = ACTIONS(5390), + [anon_sym_uint] = ACTIONS(5390), + [anon_sym_float] = ACTIONS(5390), + [anon_sym_range] = ACTIONS(5390), + [anon_sym_i8] = ACTIONS(5390), + [anon_sym_i16] = ACTIONS(5390), + [anon_sym_i32] = ACTIONS(5390), + [anon_sym_i64] = ACTIONS(5390), + [anon_sym_u8] = ACTIONS(5390), + [anon_sym_u16] = ACTIONS(5390), + [anon_sym_u32] = ACTIONS(5390), + [anon_sym_u64] = ACTIONS(5390), + [anon_sym_isize] = ACTIONS(5390), + [anon_sym_usize] = ACTIONS(5390), + [anon_sym_f32] = ACTIONS(5390), + [anon_sym_f64] = ACTIONS(5390), + [anon_sym_c_char] = ACTIONS(5390), + [anon_sym_c_schar] = ACTIONS(5390), + [anon_sym_c_uchar] = ACTIONS(5390), + [anon_sym_c_short] = ACTIONS(5390), + [anon_sym_c_ushort] = ACTIONS(5390), + [anon_sym_c_int] = ACTIONS(5390), + [anon_sym_c_uint] = ACTIONS(5390), + [anon_sym_c_long] = ACTIONS(5390), + [anon_sym_c_ulong] = ACTIONS(5390), + [anon_sym_c_longlong] = ACTIONS(5390), + [anon_sym_c_ulonglong] = ACTIONS(5390), + [anon_sym_c_float] = ACTIONS(5390), + [anon_sym_c_double] = ACTIONS(5390), + [anon_sym_c_longdouble] = ACTIONS(5390), + [anon_sym_else] = ACTIONS(5390), + [anon_sym_DOT_DOT] = ACTIONS(5390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5388), + [anon_sym_orelse] = ACTIONS(5390), + [anon_sym_or] = ACTIONS(5390), + [anon_sym_and] = ACTIONS(5390), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_AMP] = ACTIONS(5388), + [anon_sym_xor] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5390), + [anon_sym_GT_GT] = ACTIONS(5388), + [anon_sym_LT_LT_PIPE] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_catch] = ACTIONS(5390), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5388), + }, + [STATE(7454)] = { + [sym_identifier] = ACTIONS(5394), + [anon_sym_func] = ACTIONS(5394), + [anon_sym_c_func] = ACTIONS(5394), + [anon_sym_struct] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5392), + [anon_sym_COMMA] = ACTIONS(5392), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_struct_type_BANG] = ACTIONS(5392), + [anon_sym_QMARK] = ACTIONS(5392), + [anon_sym_AT] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(5392), + [anon_sym_void] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_type] = ACTIONS(5394), + [anon_sym_anyopaque] = ACTIONS(5394), + [anon_sym_bool] = ACTIONS(5394), + [anon_sym_int] = ACTIONS(5394), + [anon_sym_uint] = ACTIONS(5394), + [anon_sym_float] = ACTIONS(5394), + [anon_sym_range] = ACTIONS(5394), + [anon_sym_i8] = ACTIONS(5394), + [anon_sym_i16] = ACTIONS(5394), + [anon_sym_i32] = ACTIONS(5394), + [anon_sym_i64] = ACTIONS(5394), + [anon_sym_u8] = ACTIONS(5394), + [anon_sym_u16] = ACTIONS(5394), + [anon_sym_u32] = ACTIONS(5394), + [anon_sym_u64] = ACTIONS(5394), + [anon_sym_isize] = ACTIONS(5394), + [anon_sym_usize] = ACTIONS(5394), + [anon_sym_f32] = ACTIONS(5394), + [anon_sym_f64] = ACTIONS(5394), + [anon_sym_c_char] = ACTIONS(5394), + [anon_sym_c_schar] = ACTIONS(5394), + [anon_sym_c_uchar] = ACTIONS(5394), + [anon_sym_c_short] = ACTIONS(5394), + [anon_sym_c_ushort] = ACTIONS(5394), + [anon_sym_c_int] = ACTIONS(5394), + [anon_sym_c_uint] = ACTIONS(5394), + [anon_sym_c_long] = ACTIONS(5394), + [anon_sym_c_ulong] = ACTIONS(5394), + [anon_sym_c_longlong] = ACTIONS(5394), + [anon_sym_c_ulonglong] = ACTIONS(5394), + [anon_sym_c_float] = ACTIONS(5394), + [anon_sym_c_double] = ACTIONS(5394), + [anon_sym_c_longdouble] = ACTIONS(5394), + [anon_sym_else] = ACTIONS(5394), + [anon_sym_DOT_DOT] = ACTIONS(5394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5392), + [anon_sym_orelse] = ACTIONS(5394), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5392), + [anon_sym_BANG_EQ] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_EQ] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5392), + [anon_sym_AMP] = ACTIONS(5392), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5392), + [anon_sym_LT_LT_PIPE] = ACTIONS(5392), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_catch] = ACTIONS(5394), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5392), + }, + [STATE(7455)] = { + [sym_identifier] = ACTIONS(5398), + [anon_sym_func] = ACTIONS(5398), + [anon_sym_c_func] = ACTIONS(5398), + [anon_sym_struct] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5396), + [anon_sym_struct_type_BANG] = ACTIONS(5396), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_AT] = ACTIONS(5396), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_void] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_type] = ACTIONS(5398), + [anon_sym_anyopaque] = ACTIONS(5398), + [anon_sym_bool] = ACTIONS(5398), + [anon_sym_int] = ACTIONS(5398), + [anon_sym_uint] = ACTIONS(5398), + [anon_sym_float] = ACTIONS(5398), + [anon_sym_range] = ACTIONS(5398), + [anon_sym_i8] = ACTIONS(5398), + [anon_sym_i16] = ACTIONS(5398), + [anon_sym_i32] = ACTIONS(5398), + [anon_sym_i64] = ACTIONS(5398), + [anon_sym_u8] = ACTIONS(5398), + [anon_sym_u16] = ACTIONS(5398), + [anon_sym_u32] = ACTIONS(5398), + [anon_sym_u64] = ACTIONS(5398), + [anon_sym_isize] = ACTIONS(5398), + [anon_sym_usize] = ACTIONS(5398), + [anon_sym_f32] = ACTIONS(5398), + [anon_sym_f64] = ACTIONS(5398), + [anon_sym_c_char] = ACTIONS(5398), + [anon_sym_c_schar] = ACTIONS(5398), + [anon_sym_c_uchar] = ACTIONS(5398), + [anon_sym_c_short] = ACTIONS(5398), + [anon_sym_c_ushort] = ACTIONS(5398), + [anon_sym_c_int] = ACTIONS(5398), + [anon_sym_c_uint] = ACTIONS(5398), + [anon_sym_c_long] = ACTIONS(5398), + [anon_sym_c_ulong] = ACTIONS(5398), + [anon_sym_c_longlong] = ACTIONS(5398), + [anon_sym_c_ulonglong] = ACTIONS(5398), + [anon_sym_c_float] = ACTIONS(5398), + [anon_sym_c_double] = ACTIONS(5398), + [anon_sym_c_longdouble] = ACTIONS(5398), + [anon_sym_else] = ACTIONS(5398), + [anon_sym_DOT_DOT] = ACTIONS(5398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5396), + [anon_sym_orelse] = ACTIONS(5398), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5396), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5396), + [anon_sym_LT_LT_PIPE] = ACTIONS(5396), + [anon_sym_PLUS] = ACTIONS(5396), + [anon_sym_SLASH] = ACTIONS(5396), + [anon_sym_catch] = ACTIONS(5398), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5396), + }, + [STATE(7456)] = { + [sym_identifier] = ACTIONS(5402), + [anon_sym_func] = ACTIONS(5402), + [anon_sym_c_func] = ACTIONS(5402), + [anon_sym_struct] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5400), + [anon_sym_struct_type_BANG] = ACTIONS(5400), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_AT] = ACTIONS(5400), + [anon_sym_STAR] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_void] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_type] = ACTIONS(5402), + [anon_sym_anyopaque] = ACTIONS(5402), + [anon_sym_bool] = ACTIONS(5402), + [anon_sym_int] = ACTIONS(5402), + [anon_sym_uint] = ACTIONS(5402), + [anon_sym_float] = ACTIONS(5402), + [anon_sym_range] = ACTIONS(5402), + [anon_sym_i8] = ACTIONS(5402), + [anon_sym_i16] = ACTIONS(5402), + [anon_sym_i32] = ACTIONS(5402), + [anon_sym_i64] = ACTIONS(5402), + [anon_sym_u8] = ACTIONS(5402), + [anon_sym_u16] = ACTIONS(5402), + [anon_sym_u32] = ACTIONS(5402), + [anon_sym_u64] = ACTIONS(5402), + [anon_sym_isize] = ACTIONS(5402), + [anon_sym_usize] = ACTIONS(5402), + [anon_sym_f32] = ACTIONS(5402), + [anon_sym_f64] = ACTIONS(5402), + [anon_sym_c_char] = ACTIONS(5402), + [anon_sym_c_schar] = ACTIONS(5402), + [anon_sym_c_uchar] = ACTIONS(5402), + [anon_sym_c_short] = ACTIONS(5402), + [anon_sym_c_ushort] = ACTIONS(5402), + [anon_sym_c_int] = ACTIONS(5402), + [anon_sym_c_uint] = ACTIONS(5402), + [anon_sym_c_long] = ACTIONS(5402), + [anon_sym_c_ulong] = ACTIONS(5402), + [anon_sym_c_longlong] = ACTIONS(5402), + [anon_sym_c_ulonglong] = ACTIONS(5402), + [anon_sym_c_float] = ACTIONS(5402), + [anon_sym_c_double] = ACTIONS(5402), + [anon_sym_c_longdouble] = ACTIONS(5402), + [anon_sym_else] = ACTIONS(5402), + [anon_sym_DOT_DOT] = ACTIONS(5402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5400), + [anon_sym_orelse] = ACTIONS(5402), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5400), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5400), + [anon_sym_LT_LT_PIPE] = ACTIONS(5400), + [anon_sym_PLUS] = ACTIONS(5400), + [anon_sym_SLASH] = ACTIONS(5400), + [anon_sym_catch] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5400), + }, + [STATE(7457)] = { + [sym_identifier] = ACTIONS(5406), + [anon_sym_func] = ACTIONS(5406), + [anon_sym_c_func] = ACTIONS(5406), + [anon_sym_struct] = ACTIONS(5406), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5404), + [anon_sym_struct_type_BANG] = ACTIONS(5404), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_AT] = ACTIONS(5404), + [anon_sym_STAR] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_void] = ACTIONS(5406), + [anon_sym_noreturn] = ACTIONS(5406), + [anon_sym_type] = ACTIONS(5406), + [anon_sym_anyopaque] = ACTIONS(5406), + [anon_sym_bool] = ACTIONS(5406), + [anon_sym_int] = ACTIONS(5406), + [anon_sym_uint] = ACTIONS(5406), + [anon_sym_float] = ACTIONS(5406), + [anon_sym_range] = ACTIONS(5406), + [anon_sym_i8] = ACTIONS(5406), + [anon_sym_i16] = ACTIONS(5406), + [anon_sym_i32] = ACTIONS(5406), + [anon_sym_i64] = ACTIONS(5406), + [anon_sym_u8] = ACTIONS(5406), + [anon_sym_u16] = ACTIONS(5406), + [anon_sym_u32] = ACTIONS(5406), + [anon_sym_u64] = ACTIONS(5406), + [anon_sym_isize] = ACTIONS(5406), + [anon_sym_usize] = ACTIONS(5406), + [anon_sym_f32] = ACTIONS(5406), + [anon_sym_f64] = ACTIONS(5406), + [anon_sym_c_char] = ACTIONS(5406), + [anon_sym_c_schar] = ACTIONS(5406), + [anon_sym_c_uchar] = ACTIONS(5406), + [anon_sym_c_short] = ACTIONS(5406), + [anon_sym_c_ushort] = ACTIONS(5406), + [anon_sym_c_int] = ACTIONS(5406), + [anon_sym_c_uint] = ACTIONS(5406), + [anon_sym_c_long] = ACTIONS(5406), + [anon_sym_c_ulong] = ACTIONS(5406), + [anon_sym_c_longlong] = ACTIONS(5406), + [anon_sym_c_ulonglong] = ACTIONS(5406), + [anon_sym_c_float] = ACTIONS(5406), + [anon_sym_c_double] = ACTIONS(5406), + [anon_sym_c_longdouble] = ACTIONS(5406), + [anon_sym_else] = ACTIONS(5406), + [anon_sym_DOT_DOT] = ACTIONS(5406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5404), + [anon_sym_orelse] = ACTIONS(5406), + [anon_sym_or] = ACTIONS(5406), + [anon_sym_and] = ACTIONS(5406), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_LT_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5404), + [anon_sym_xor] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(5406), + [anon_sym_GT_GT] = ACTIONS(5404), + [anon_sym_LT_LT_PIPE] = ACTIONS(5404), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_SLASH] = ACTIONS(5404), + [anon_sym_catch] = ACTIONS(5406), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_CARET] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5404), + }, + [STATE(7458)] = { + [sym_identifier] = ACTIONS(5410), + [anon_sym_func] = ACTIONS(5410), + [anon_sym_c_func] = ACTIONS(5410), + [anon_sym_struct] = ACTIONS(5410), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_COMMA] = ACTIONS(5408), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_DASH] = ACTIONS(5408), + [anon_sym_PIPE] = ACTIONS(5408), + [anon_sym_struct_type_BANG] = ACTIONS(5408), + [anon_sym_QMARK] = ACTIONS(5408), + [anon_sym_AT] = ACTIONS(5408), + [anon_sym_STAR] = ACTIONS(5408), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_void] = ACTIONS(5410), + [anon_sym_noreturn] = ACTIONS(5410), + [anon_sym_type] = ACTIONS(5410), + [anon_sym_anyopaque] = ACTIONS(5410), + [anon_sym_bool] = ACTIONS(5410), + [anon_sym_int] = ACTIONS(5410), + [anon_sym_uint] = ACTIONS(5410), + [anon_sym_float] = ACTIONS(5410), + [anon_sym_range] = ACTIONS(5410), + [anon_sym_i8] = ACTIONS(5410), + [anon_sym_i16] = ACTIONS(5410), + [anon_sym_i32] = ACTIONS(5410), + [anon_sym_i64] = ACTIONS(5410), + [anon_sym_u8] = ACTIONS(5410), + [anon_sym_u16] = ACTIONS(5410), + [anon_sym_u32] = ACTIONS(5410), + [anon_sym_u64] = ACTIONS(5410), + [anon_sym_isize] = ACTIONS(5410), + [anon_sym_usize] = ACTIONS(5410), + [anon_sym_f32] = ACTIONS(5410), + [anon_sym_f64] = ACTIONS(5410), + [anon_sym_c_char] = ACTIONS(5410), + [anon_sym_c_schar] = ACTIONS(5410), + [anon_sym_c_uchar] = ACTIONS(5410), + [anon_sym_c_short] = ACTIONS(5410), + [anon_sym_c_ushort] = ACTIONS(5410), + [anon_sym_c_int] = ACTIONS(5410), + [anon_sym_c_uint] = ACTIONS(5410), + [anon_sym_c_long] = ACTIONS(5410), + [anon_sym_c_ulong] = ACTIONS(5410), + [anon_sym_c_longlong] = ACTIONS(5410), + [anon_sym_c_ulonglong] = ACTIONS(5410), + [anon_sym_c_float] = ACTIONS(5410), + [anon_sym_c_double] = ACTIONS(5410), + [anon_sym_c_longdouble] = ACTIONS(5410), + [anon_sym_else] = ACTIONS(5410), + [anon_sym_DOT_DOT] = ACTIONS(5410), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5408), + [anon_sym_orelse] = ACTIONS(5410), + [anon_sym_or] = ACTIONS(5410), + [anon_sym_and] = ACTIONS(5410), + [anon_sym_EQ_EQ] = ACTIONS(5408), + [anon_sym_BANG_EQ] = ACTIONS(5408), + [anon_sym_LT] = ACTIONS(5410), + [anon_sym_LT_EQ] = ACTIONS(5408), + [anon_sym_GT] = ACTIONS(5410), + [anon_sym_GT_EQ] = ACTIONS(5408), + [anon_sym_AMP] = ACTIONS(5408), + [anon_sym_xor] = ACTIONS(5410), + [anon_sym_LT_LT] = ACTIONS(5410), + [anon_sym_GT_GT] = ACTIONS(5408), + [anon_sym_LT_LT_PIPE] = ACTIONS(5408), + [anon_sym_PLUS] = ACTIONS(5408), + [anon_sym_SLASH] = ACTIONS(5408), + [anon_sym_catch] = ACTIONS(5410), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_CARET] = ACTIONS(5408), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5408), + }, + [STATE(7459)] = { + [sym_identifier] = ACTIONS(5414), + [anon_sym_func] = ACTIONS(5414), + [anon_sym_c_func] = ACTIONS(5414), + [anon_sym_struct] = ACTIONS(5414), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(5412), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), + [anon_sym_PIPE] = ACTIONS(5412), + [anon_sym_struct_type_BANG] = ACTIONS(5412), + [anon_sym_QMARK] = ACTIONS(5412), + [anon_sym_AT] = ACTIONS(5412), + [anon_sym_STAR] = ACTIONS(5412), + [anon_sym_LBRACK] = ACTIONS(5412), + [anon_sym_void] = ACTIONS(5414), + [anon_sym_noreturn] = ACTIONS(5414), + [anon_sym_type] = ACTIONS(5414), + [anon_sym_anyopaque] = ACTIONS(5414), + [anon_sym_bool] = ACTIONS(5414), + [anon_sym_int] = ACTIONS(5414), + [anon_sym_uint] = ACTIONS(5414), + [anon_sym_float] = ACTIONS(5414), + [anon_sym_range] = ACTIONS(5414), + [anon_sym_i8] = ACTIONS(5414), + [anon_sym_i16] = ACTIONS(5414), + [anon_sym_i32] = ACTIONS(5414), + [anon_sym_i64] = ACTIONS(5414), + [anon_sym_u8] = ACTIONS(5414), + [anon_sym_u16] = ACTIONS(5414), + [anon_sym_u32] = ACTIONS(5414), + [anon_sym_u64] = ACTIONS(5414), + [anon_sym_isize] = ACTIONS(5414), + [anon_sym_usize] = ACTIONS(5414), + [anon_sym_f32] = ACTIONS(5414), + [anon_sym_f64] = ACTIONS(5414), + [anon_sym_c_char] = ACTIONS(5414), + [anon_sym_c_schar] = ACTIONS(5414), + [anon_sym_c_uchar] = ACTIONS(5414), + [anon_sym_c_short] = ACTIONS(5414), + [anon_sym_c_ushort] = ACTIONS(5414), + [anon_sym_c_int] = ACTIONS(5414), + [anon_sym_c_uint] = ACTIONS(5414), + [anon_sym_c_long] = ACTIONS(5414), + [anon_sym_c_ulong] = ACTIONS(5414), + [anon_sym_c_longlong] = ACTIONS(5414), + [anon_sym_c_ulonglong] = ACTIONS(5414), + [anon_sym_c_float] = ACTIONS(5414), + [anon_sym_c_double] = ACTIONS(5414), + [anon_sym_c_longdouble] = ACTIONS(5414), + [anon_sym_else] = ACTIONS(5414), + [anon_sym_DOT_DOT] = ACTIONS(5414), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5412), + [anon_sym_orelse] = ACTIONS(5414), + [anon_sym_or] = ACTIONS(5414), + [anon_sym_and] = ACTIONS(5414), + [anon_sym_EQ_EQ] = ACTIONS(5412), + [anon_sym_BANG_EQ] = ACTIONS(5412), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_LT_EQ] = ACTIONS(5412), + [anon_sym_GT] = ACTIONS(5414), + [anon_sym_GT_EQ] = ACTIONS(5412), + [anon_sym_AMP] = ACTIONS(5412), + [anon_sym_xor] = ACTIONS(5414), + [anon_sym_LT_LT] = ACTIONS(5414), + [anon_sym_GT_GT] = ACTIONS(5412), + [anon_sym_LT_LT_PIPE] = ACTIONS(5412), + [anon_sym_PLUS] = ACTIONS(5412), + [anon_sym_SLASH] = ACTIONS(5412), + [anon_sym_catch] = ACTIONS(5414), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_CARET] = ACTIONS(5412), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5412), + }, + [STATE(7460)] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_func] = ACTIONS(5418), + [anon_sym_c_func] = ACTIONS(5418), + [anon_sym_struct] = ACTIONS(5418), + [anon_sym_LPAREN] = ACTIONS(5416), + [anon_sym_COMMA] = ACTIONS(5416), + [anon_sym_RBRACE] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5416), + [anon_sym_PIPE] = ACTIONS(5416), + [anon_sym_struct_type_BANG] = ACTIONS(5416), + [anon_sym_QMARK] = ACTIONS(5416), + [anon_sym_AT] = ACTIONS(5416), + [anon_sym_STAR] = ACTIONS(5416), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_void] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_type] = ACTIONS(5418), + [anon_sym_anyopaque] = ACTIONS(5418), + [anon_sym_bool] = ACTIONS(5418), + [anon_sym_int] = ACTIONS(5418), + [anon_sym_uint] = ACTIONS(5418), + [anon_sym_float] = ACTIONS(5418), + [anon_sym_range] = ACTIONS(5418), + [anon_sym_i8] = ACTIONS(5418), + [anon_sym_i16] = ACTIONS(5418), + [anon_sym_i32] = ACTIONS(5418), + [anon_sym_i64] = ACTIONS(5418), + [anon_sym_u8] = ACTIONS(5418), + [anon_sym_u16] = ACTIONS(5418), + [anon_sym_u32] = ACTIONS(5418), + [anon_sym_u64] = ACTIONS(5418), + [anon_sym_isize] = ACTIONS(5418), + [anon_sym_usize] = ACTIONS(5418), + [anon_sym_f32] = ACTIONS(5418), + [anon_sym_f64] = ACTIONS(5418), + [anon_sym_c_char] = ACTIONS(5418), + [anon_sym_c_schar] = ACTIONS(5418), + [anon_sym_c_uchar] = ACTIONS(5418), + [anon_sym_c_short] = ACTIONS(5418), + [anon_sym_c_ushort] = ACTIONS(5418), + [anon_sym_c_int] = ACTIONS(5418), + [anon_sym_c_uint] = ACTIONS(5418), + [anon_sym_c_long] = ACTIONS(5418), + [anon_sym_c_ulong] = ACTIONS(5418), + [anon_sym_c_longlong] = ACTIONS(5418), + [anon_sym_c_ulonglong] = ACTIONS(5418), + [anon_sym_c_float] = ACTIONS(5418), + [anon_sym_c_double] = ACTIONS(5418), + [anon_sym_c_longdouble] = ACTIONS(5418), + [anon_sym_else] = ACTIONS(5418), + [anon_sym_DOT_DOT] = ACTIONS(5418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5416), + [anon_sym_orelse] = ACTIONS(5418), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5416), + [anon_sym_BANG_EQ] = ACTIONS(5416), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_EQ] = ACTIONS(5416), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(5416), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5418), + [anon_sym_GT_GT] = ACTIONS(5416), + [anon_sym_LT_LT_PIPE] = ACTIONS(5416), + [anon_sym_PLUS] = ACTIONS(5416), + [anon_sym_SLASH] = ACTIONS(5416), + [anon_sym_catch] = ACTIONS(5418), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5416), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5416), + }, + [STATE(7461)] = { + [sym_identifier] = ACTIONS(5422), + [anon_sym_func] = ACTIONS(5422), + [anon_sym_c_func] = ACTIONS(5422), + [anon_sym_struct] = ACTIONS(5422), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5420), + [anon_sym_struct_type_BANG] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_AT] = ACTIONS(5420), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_void] = ACTIONS(5422), + [anon_sym_noreturn] = ACTIONS(5422), + [anon_sym_type] = ACTIONS(5422), + [anon_sym_anyopaque] = ACTIONS(5422), + [anon_sym_bool] = ACTIONS(5422), + [anon_sym_int] = ACTIONS(5422), + [anon_sym_uint] = ACTIONS(5422), + [anon_sym_float] = ACTIONS(5422), + [anon_sym_range] = ACTIONS(5422), + [anon_sym_i8] = ACTIONS(5422), + [anon_sym_i16] = ACTIONS(5422), + [anon_sym_i32] = ACTIONS(5422), + [anon_sym_i64] = ACTIONS(5422), + [anon_sym_u8] = ACTIONS(5422), + [anon_sym_u16] = ACTIONS(5422), + [anon_sym_u32] = ACTIONS(5422), + [anon_sym_u64] = ACTIONS(5422), + [anon_sym_isize] = ACTIONS(5422), + [anon_sym_usize] = ACTIONS(5422), + [anon_sym_f32] = ACTIONS(5422), + [anon_sym_f64] = ACTIONS(5422), + [anon_sym_c_char] = ACTIONS(5422), + [anon_sym_c_schar] = ACTIONS(5422), + [anon_sym_c_uchar] = ACTIONS(5422), + [anon_sym_c_short] = ACTIONS(5422), + [anon_sym_c_ushort] = ACTIONS(5422), + [anon_sym_c_int] = ACTIONS(5422), + [anon_sym_c_uint] = ACTIONS(5422), + [anon_sym_c_long] = ACTIONS(5422), + [anon_sym_c_ulong] = ACTIONS(5422), + [anon_sym_c_longlong] = ACTIONS(5422), + [anon_sym_c_ulonglong] = ACTIONS(5422), + [anon_sym_c_float] = ACTIONS(5422), + [anon_sym_c_double] = ACTIONS(5422), + [anon_sym_c_longdouble] = ACTIONS(5422), + [anon_sym_else] = ACTIONS(5422), + [anon_sym_DOT_DOT] = ACTIONS(5422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5420), + [anon_sym_orelse] = ACTIONS(5422), + [anon_sym_or] = ACTIONS(5422), + [anon_sym_and] = ACTIONS(5422), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_LT] = ACTIONS(5422), + [anon_sym_LT_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5422), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5420), + [anon_sym_xor] = ACTIONS(5422), + [anon_sym_LT_LT] = ACTIONS(5422), + [anon_sym_GT_GT] = ACTIONS(5420), + [anon_sym_LT_LT_PIPE] = ACTIONS(5420), + [anon_sym_PLUS] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5420), + [anon_sym_catch] = ACTIONS(5422), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_CARET] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5420), + }, + [STATE(7462)] = { + [sym_identifier] = ACTIONS(5426), + [anon_sym_func] = ACTIONS(5426), + [anon_sym_c_func] = ACTIONS(5426), + [anon_sym_struct] = ACTIONS(5426), + [anon_sym_LPAREN] = ACTIONS(5424), + [anon_sym_COMMA] = ACTIONS(5424), + [anon_sym_RBRACE] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5424), + [anon_sym_PIPE] = ACTIONS(5424), + [anon_sym_struct_type_BANG] = ACTIONS(5424), + [anon_sym_QMARK] = ACTIONS(5424), + [anon_sym_AT] = ACTIONS(5424), + [anon_sym_STAR] = ACTIONS(5424), + [anon_sym_LBRACK] = ACTIONS(5424), + [anon_sym_void] = ACTIONS(5426), + [anon_sym_noreturn] = ACTIONS(5426), + [anon_sym_type] = ACTIONS(5426), + [anon_sym_anyopaque] = ACTIONS(5426), + [anon_sym_bool] = ACTIONS(5426), + [anon_sym_int] = ACTIONS(5426), + [anon_sym_uint] = ACTIONS(5426), + [anon_sym_float] = ACTIONS(5426), + [anon_sym_range] = ACTIONS(5426), + [anon_sym_i8] = ACTIONS(5426), + [anon_sym_i16] = ACTIONS(5426), + [anon_sym_i32] = ACTIONS(5426), + [anon_sym_i64] = ACTIONS(5426), + [anon_sym_u8] = ACTIONS(5426), + [anon_sym_u16] = ACTIONS(5426), + [anon_sym_u32] = ACTIONS(5426), + [anon_sym_u64] = ACTIONS(5426), + [anon_sym_isize] = ACTIONS(5426), + [anon_sym_usize] = ACTIONS(5426), + [anon_sym_f32] = ACTIONS(5426), + [anon_sym_f64] = ACTIONS(5426), + [anon_sym_c_char] = ACTIONS(5426), + [anon_sym_c_schar] = ACTIONS(5426), + [anon_sym_c_uchar] = ACTIONS(5426), + [anon_sym_c_short] = ACTIONS(5426), + [anon_sym_c_ushort] = ACTIONS(5426), + [anon_sym_c_int] = ACTIONS(5426), + [anon_sym_c_uint] = ACTIONS(5426), + [anon_sym_c_long] = ACTIONS(5426), + [anon_sym_c_ulong] = ACTIONS(5426), + [anon_sym_c_longlong] = ACTIONS(5426), + [anon_sym_c_ulonglong] = ACTIONS(5426), + [anon_sym_c_float] = ACTIONS(5426), + [anon_sym_c_double] = ACTIONS(5426), + [anon_sym_c_longdouble] = ACTIONS(5426), + [anon_sym_else] = ACTIONS(5426), + [anon_sym_DOT_DOT] = ACTIONS(5426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5424), + [anon_sym_orelse] = ACTIONS(5426), + [anon_sym_or] = ACTIONS(5426), + [anon_sym_and] = ACTIONS(5426), + [anon_sym_EQ_EQ] = ACTIONS(5424), + [anon_sym_BANG_EQ] = ACTIONS(5424), + [anon_sym_LT] = ACTIONS(5426), + [anon_sym_LT_EQ] = ACTIONS(5424), + [anon_sym_GT] = ACTIONS(5426), + [anon_sym_GT_EQ] = ACTIONS(5424), + [anon_sym_AMP] = ACTIONS(5424), + [anon_sym_xor] = ACTIONS(5426), + [anon_sym_LT_LT] = ACTIONS(5426), + [anon_sym_GT_GT] = ACTIONS(5424), + [anon_sym_LT_LT_PIPE] = ACTIONS(5424), + [anon_sym_PLUS] = ACTIONS(5424), + [anon_sym_SLASH] = ACTIONS(5424), + [anon_sym_catch] = ACTIONS(5426), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_CARET] = ACTIONS(5424), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5424), + }, + [STATE(7463)] = { + [sym_identifier] = ACTIONS(5434), + [anon_sym_func] = ACTIONS(5434), + [anon_sym_c_func] = ACTIONS(5434), + [anon_sym_struct] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5432), + [anon_sym_COMMA] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), + [anon_sym_PIPE] = ACTIONS(5432), + [anon_sym_struct_type_BANG] = ACTIONS(5432), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_AT] = ACTIONS(5432), + [anon_sym_STAR] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5432), + [anon_sym_void] = ACTIONS(5434), + [anon_sym_noreturn] = ACTIONS(5434), + [anon_sym_type] = ACTIONS(5434), + [anon_sym_anyopaque] = ACTIONS(5434), + [anon_sym_bool] = ACTIONS(5434), + [anon_sym_int] = ACTIONS(5434), + [anon_sym_uint] = ACTIONS(5434), + [anon_sym_float] = ACTIONS(5434), + [anon_sym_range] = ACTIONS(5434), + [anon_sym_i8] = ACTIONS(5434), + [anon_sym_i16] = ACTIONS(5434), + [anon_sym_i32] = ACTIONS(5434), + [anon_sym_i64] = ACTIONS(5434), + [anon_sym_u8] = ACTIONS(5434), + [anon_sym_u16] = ACTIONS(5434), + [anon_sym_u32] = ACTIONS(5434), + [anon_sym_u64] = ACTIONS(5434), + [anon_sym_isize] = ACTIONS(5434), + [anon_sym_usize] = ACTIONS(5434), + [anon_sym_f32] = ACTIONS(5434), + [anon_sym_f64] = ACTIONS(5434), + [anon_sym_c_char] = ACTIONS(5434), + [anon_sym_c_schar] = ACTIONS(5434), + [anon_sym_c_uchar] = ACTIONS(5434), + [anon_sym_c_short] = ACTIONS(5434), + [anon_sym_c_ushort] = ACTIONS(5434), + [anon_sym_c_int] = ACTIONS(5434), + [anon_sym_c_uint] = ACTIONS(5434), + [anon_sym_c_long] = ACTIONS(5434), + [anon_sym_c_ulong] = ACTIONS(5434), + [anon_sym_c_longlong] = ACTIONS(5434), + [anon_sym_c_ulonglong] = ACTIONS(5434), + [anon_sym_c_float] = ACTIONS(5434), + [anon_sym_c_double] = ACTIONS(5434), + [anon_sym_c_longdouble] = ACTIONS(5434), + [anon_sym_else] = ACTIONS(5434), + [anon_sym_DOT_DOT] = ACTIONS(5434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5432), + [anon_sym_orelse] = ACTIONS(5434), + [anon_sym_or] = ACTIONS(5434), + [anon_sym_and] = ACTIONS(5434), + [anon_sym_EQ_EQ] = ACTIONS(5432), + [anon_sym_BANG_EQ] = ACTIONS(5432), + [anon_sym_LT] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5432), + [anon_sym_GT] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(5432), + [anon_sym_xor] = ACTIONS(5434), + [anon_sym_LT_LT] = ACTIONS(5434), + [anon_sym_GT_GT] = ACTIONS(5432), + [anon_sym_LT_LT_PIPE] = ACTIONS(5432), + [anon_sym_PLUS] = ACTIONS(5432), + [anon_sym_SLASH] = ACTIONS(5432), + [anon_sym_catch] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5434), + [anon_sym_CARET] = ACTIONS(5432), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5432), + }, + [STATE(7464)] = { + [sym_identifier] = ACTIONS(5438), + [anon_sym_func] = ACTIONS(5438), + [anon_sym_c_func] = ACTIONS(5438), + [anon_sym_struct] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5436), + [anon_sym_COMMA] = ACTIONS(5436), + [anon_sym_RBRACE] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), + [anon_sym_PIPE] = ACTIONS(5436), + [anon_sym_struct_type_BANG] = ACTIONS(5436), + [anon_sym_QMARK] = ACTIONS(5436), + [anon_sym_AT] = ACTIONS(5436), + [anon_sym_STAR] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(5436), + [anon_sym_void] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_type] = ACTIONS(5438), + [anon_sym_anyopaque] = ACTIONS(5438), + [anon_sym_bool] = ACTIONS(5438), + [anon_sym_int] = ACTIONS(5438), + [anon_sym_uint] = ACTIONS(5438), + [anon_sym_float] = ACTIONS(5438), + [anon_sym_range] = ACTIONS(5438), + [anon_sym_i8] = ACTIONS(5438), + [anon_sym_i16] = ACTIONS(5438), + [anon_sym_i32] = ACTIONS(5438), + [anon_sym_i64] = ACTIONS(5438), + [anon_sym_u8] = ACTIONS(5438), + [anon_sym_u16] = ACTIONS(5438), + [anon_sym_u32] = ACTIONS(5438), + [anon_sym_u64] = ACTIONS(5438), + [anon_sym_isize] = ACTIONS(5438), + [anon_sym_usize] = ACTIONS(5438), + [anon_sym_f32] = ACTIONS(5438), + [anon_sym_f64] = ACTIONS(5438), + [anon_sym_c_char] = ACTIONS(5438), + [anon_sym_c_schar] = ACTIONS(5438), + [anon_sym_c_uchar] = ACTIONS(5438), + [anon_sym_c_short] = ACTIONS(5438), + [anon_sym_c_ushort] = ACTIONS(5438), + [anon_sym_c_int] = ACTIONS(5438), + [anon_sym_c_uint] = ACTIONS(5438), + [anon_sym_c_long] = ACTIONS(5438), + [anon_sym_c_ulong] = ACTIONS(5438), + [anon_sym_c_longlong] = ACTIONS(5438), + [anon_sym_c_ulonglong] = ACTIONS(5438), + [anon_sym_c_float] = ACTIONS(5438), + [anon_sym_c_double] = ACTIONS(5438), + [anon_sym_c_longdouble] = ACTIONS(5438), + [anon_sym_else] = ACTIONS(5438), + [anon_sym_DOT_DOT] = ACTIONS(5438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5436), + [anon_sym_orelse] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_EQ_EQ] = ACTIONS(5436), + [anon_sym_BANG_EQ] = ACTIONS(5436), + [anon_sym_LT] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5436), + [anon_sym_GT] = ACTIONS(5438), + [anon_sym_GT_EQ] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5436), + [anon_sym_xor] = ACTIONS(5438), + [anon_sym_LT_LT] = ACTIONS(5438), + [anon_sym_GT_GT] = ACTIONS(5436), + [anon_sym_LT_LT_PIPE] = ACTIONS(5436), + [anon_sym_PLUS] = ACTIONS(5436), + [anon_sym_SLASH] = ACTIONS(5436), + [anon_sym_catch] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5438), + [anon_sym_CARET] = ACTIONS(5436), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5436), + }, + [STATE(7465)] = { + [sym_identifier] = ACTIONS(5444), + [anon_sym_func] = ACTIONS(5444), + [anon_sym_c_func] = ACTIONS(5444), + [anon_sym_struct] = ACTIONS(5444), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_COMMA] = ACTIONS(5442), + [anon_sym_RBRACE] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5442), + [anon_sym_PIPE] = ACTIONS(5442), + [anon_sym_struct_type_BANG] = ACTIONS(5442), + [anon_sym_QMARK] = ACTIONS(5442), + [anon_sym_AT] = ACTIONS(5442), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_void] = ACTIONS(5444), + [anon_sym_noreturn] = ACTIONS(5444), + [anon_sym_type] = ACTIONS(5444), + [anon_sym_anyopaque] = ACTIONS(5444), + [anon_sym_bool] = ACTIONS(5444), + [anon_sym_int] = ACTIONS(5444), + [anon_sym_uint] = ACTIONS(5444), + [anon_sym_float] = ACTIONS(5444), + [anon_sym_range] = ACTIONS(5444), + [anon_sym_i8] = ACTIONS(5444), + [anon_sym_i16] = ACTIONS(5444), + [anon_sym_i32] = ACTIONS(5444), + [anon_sym_i64] = ACTIONS(5444), + [anon_sym_u8] = ACTIONS(5444), + [anon_sym_u16] = ACTIONS(5444), + [anon_sym_u32] = ACTIONS(5444), + [anon_sym_u64] = ACTIONS(5444), + [anon_sym_isize] = ACTIONS(5444), + [anon_sym_usize] = ACTIONS(5444), + [anon_sym_f32] = ACTIONS(5444), + [anon_sym_f64] = ACTIONS(5444), + [anon_sym_c_char] = ACTIONS(5444), + [anon_sym_c_schar] = ACTIONS(5444), + [anon_sym_c_uchar] = ACTIONS(5444), + [anon_sym_c_short] = ACTIONS(5444), + [anon_sym_c_ushort] = ACTIONS(5444), + [anon_sym_c_int] = ACTIONS(5444), + [anon_sym_c_uint] = ACTIONS(5444), + [anon_sym_c_long] = ACTIONS(5444), + [anon_sym_c_ulong] = ACTIONS(5444), + [anon_sym_c_longlong] = ACTIONS(5444), + [anon_sym_c_ulonglong] = ACTIONS(5444), + [anon_sym_c_float] = ACTIONS(5444), + [anon_sym_c_double] = ACTIONS(5444), + [anon_sym_c_longdouble] = ACTIONS(5444), + [anon_sym_else] = ACTIONS(5444), + [anon_sym_DOT_DOT] = ACTIONS(5444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5442), + [anon_sym_orelse] = ACTIONS(5444), + [anon_sym_or] = ACTIONS(5444), + [anon_sym_and] = ACTIONS(5444), + [anon_sym_EQ_EQ] = ACTIONS(5442), + [anon_sym_BANG_EQ] = ACTIONS(5442), + [anon_sym_LT] = ACTIONS(5444), + [anon_sym_LT_EQ] = ACTIONS(5442), + [anon_sym_GT] = ACTIONS(5444), + [anon_sym_GT_EQ] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_xor] = ACTIONS(5444), + [anon_sym_LT_LT] = ACTIONS(5444), + [anon_sym_GT_GT] = ACTIONS(5442), + [anon_sym_LT_LT_PIPE] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5442), + [anon_sym_catch] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5444), + [anon_sym_CARET] = ACTIONS(5442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5442), + }, + [STATE(7466)] = { + [sym_identifier] = ACTIONS(5448), + [anon_sym_func] = ACTIONS(5448), + [anon_sym_c_func] = ACTIONS(5448), + [anon_sym_struct] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(5446), + [anon_sym_RBRACE] = ACTIONS(5446), + [anon_sym_DASH] = ACTIONS(5446), + [anon_sym_PIPE] = ACTIONS(5446), + [anon_sym_struct_type_BANG] = ACTIONS(5446), + [anon_sym_QMARK] = ACTIONS(5446), + [anon_sym_AT] = ACTIONS(5446), + [anon_sym_STAR] = ACTIONS(5446), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_void] = ACTIONS(5448), + [anon_sym_noreturn] = ACTIONS(5448), + [anon_sym_type] = ACTIONS(5448), + [anon_sym_anyopaque] = ACTIONS(5448), + [anon_sym_bool] = ACTIONS(5448), + [anon_sym_int] = ACTIONS(5448), + [anon_sym_uint] = ACTIONS(5448), + [anon_sym_float] = ACTIONS(5448), + [anon_sym_range] = ACTIONS(5448), + [anon_sym_i8] = ACTIONS(5448), + [anon_sym_i16] = ACTIONS(5448), + [anon_sym_i32] = ACTIONS(5448), + [anon_sym_i64] = ACTIONS(5448), + [anon_sym_u8] = ACTIONS(5448), + [anon_sym_u16] = ACTIONS(5448), + [anon_sym_u32] = ACTIONS(5448), + [anon_sym_u64] = ACTIONS(5448), + [anon_sym_isize] = ACTIONS(5448), + [anon_sym_usize] = ACTIONS(5448), + [anon_sym_f32] = ACTIONS(5448), + [anon_sym_f64] = ACTIONS(5448), + [anon_sym_c_char] = ACTIONS(5448), + [anon_sym_c_schar] = ACTIONS(5448), + [anon_sym_c_uchar] = ACTIONS(5448), + [anon_sym_c_short] = ACTIONS(5448), + [anon_sym_c_ushort] = ACTIONS(5448), + [anon_sym_c_int] = ACTIONS(5448), + [anon_sym_c_uint] = ACTIONS(5448), + [anon_sym_c_long] = ACTIONS(5448), + [anon_sym_c_ulong] = ACTIONS(5448), + [anon_sym_c_longlong] = ACTIONS(5448), + [anon_sym_c_ulonglong] = ACTIONS(5448), + [anon_sym_c_float] = ACTIONS(5448), + [anon_sym_c_double] = ACTIONS(5448), + [anon_sym_c_longdouble] = ACTIONS(5448), + [anon_sym_else] = ACTIONS(5448), + [anon_sym_DOT_DOT] = ACTIONS(5448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5446), + [anon_sym_orelse] = ACTIONS(5448), + [anon_sym_or] = ACTIONS(5448), + [anon_sym_and] = ACTIONS(5448), + [anon_sym_EQ_EQ] = ACTIONS(5446), + [anon_sym_BANG_EQ] = ACTIONS(5446), + [anon_sym_LT] = ACTIONS(5448), + [anon_sym_LT_EQ] = ACTIONS(5446), + [anon_sym_GT] = ACTIONS(5448), + [anon_sym_GT_EQ] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(5446), + [anon_sym_xor] = ACTIONS(5448), + [anon_sym_LT_LT] = ACTIONS(5448), + [anon_sym_GT_GT] = ACTIONS(5446), + [anon_sym_LT_LT_PIPE] = ACTIONS(5446), + [anon_sym_PLUS] = ACTIONS(5446), + [anon_sym_SLASH] = ACTIONS(5446), + [anon_sym_catch] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5448), + [anon_sym_CARET] = ACTIONS(5446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5446), + }, + [STATE(7467)] = { + [sym_identifier] = ACTIONS(5452), + [anon_sym_func] = ACTIONS(5452), + [anon_sym_c_func] = ACTIONS(5452), + [anon_sym_struct] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(5450), + [anon_sym_COMMA] = ACTIONS(5450), + [anon_sym_RBRACE] = ACTIONS(5450), + [anon_sym_DASH] = ACTIONS(5450), + [anon_sym_PIPE] = ACTIONS(5450), + [anon_sym_struct_type_BANG] = ACTIONS(5450), + [anon_sym_QMARK] = ACTIONS(5450), + [anon_sym_AT] = ACTIONS(5450), + [anon_sym_STAR] = ACTIONS(5450), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_void] = ACTIONS(5452), + [anon_sym_noreturn] = ACTIONS(5452), + [anon_sym_type] = ACTIONS(5452), + [anon_sym_anyopaque] = ACTIONS(5452), + [anon_sym_bool] = ACTIONS(5452), + [anon_sym_int] = ACTIONS(5452), + [anon_sym_uint] = ACTIONS(5452), + [anon_sym_float] = ACTIONS(5452), + [anon_sym_range] = ACTIONS(5452), + [anon_sym_i8] = ACTIONS(5452), + [anon_sym_i16] = ACTIONS(5452), + [anon_sym_i32] = ACTIONS(5452), + [anon_sym_i64] = ACTIONS(5452), + [anon_sym_u8] = ACTIONS(5452), + [anon_sym_u16] = ACTIONS(5452), + [anon_sym_u32] = ACTIONS(5452), + [anon_sym_u64] = ACTIONS(5452), + [anon_sym_isize] = ACTIONS(5452), + [anon_sym_usize] = ACTIONS(5452), + [anon_sym_f32] = ACTIONS(5452), + [anon_sym_f64] = ACTIONS(5452), + [anon_sym_c_char] = ACTIONS(5452), + [anon_sym_c_schar] = ACTIONS(5452), + [anon_sym_c_uchar] = ACTIONS(5452), + [anon_sym_c_short] = ACTIONS(5452), + [anon_sym_c_ushort] = ACTIONS(5452), + [anon_sym_c_int] = ACTIONS(5452), + [anon_sym_c_uint] = ACTIONS(5452), + [anon_sym_c_long] = ACTIONS(5452), + [anon_sym_c_ulong] = ACTIONS(5452), + [anon_sym_c_longlong] = ACTIONS(5452), + [anon_sym_c_ulonglong] = ACTIONS(5452), + [anon_sym_c_float] = ACTIONS(5452), + [anon_sym_c_double] = ACTIONS(5452), + [anon_sym_c_longdouble] = ACTIONS(5452), + [anon_sym_else] = ACTIONS(5452), + [anon_sym_DOT_DOT] = ACTIONS(5452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5450), + [anon_sym_orelse] = ACTIONS(5452), + [anon_sym_or] = ACTIONS(5452), + [anon_sym_and] = ACTIONS(5452), + [anon_sym_EQ_EQ] = ACTIONS(5450), + [anon_sym_BANG_EQ] = ACTIONS(5450), + [anon_sym_LT] = ACTIONS(5452), + [anon_sym_LT_EQ] = ACTIONS(5450), + [anon_sym_GT] = ACTIONS(5452), + [anon_sym_GT_EQ] = ACTIONS(5450), + [anon_sym_AMP] = ACTIONS(5450), + [anon_sym_xor] = ACTIONS(5452), + [anon_sym_LT_LT] = ACTIONS(5452), + [anon_sym_GT_GT] = ACTIONS(5450), + [anon_sym_LT_LT_PIPE] = ACTIONS(5450), + [anon_sym_PLUS] = ACTIONS(5450), + [anon_sym_SLASH] = ACTIONS(5450), + [anon_sym_catch] = ACTIONS(5452), + [anon_sym_DOT] = ACTIONS(5452), + [anon_sym_CARET] = ACTIONS(5450), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5450), + }, + [STATE(7468)] = { + [sym_identifier] = ACTIONS(5456), + [anon_sym_func] = ACTIONS(5456), + [anon_sym_c_func] = ACTIONS(5456), + [anon_sym_struct] = ACTIONS(5456), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_COMMA] = ACTIONS(5454), + [anon_sym_RBRACE] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5454), + [anon_sym_PIPE] = ACTIONS(5454), + [anon_sym_struct_type_BANG] = ACTIONS(5454), + [anon_sym_QMARK] = ACTIONS(5454), + [anon_sym_AT] = ACTIONS(5454), + [anon_sym_STAR] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_void] = ACTIONS(5456), + [anon_sym_noreturn] = ACTIONS(5456), + [anon_sym_type] = ACTIONS(5456), + [anon_sym_anyopaque] = ACTIONS(5456), + [anon_sym_bool] = ACTIONS(5456), + [anon_sym_int] = ACTIONS(5456), + [anon_sym_uint] = ACTIONS(5456), + [anon_sym_float] = ACTIONS(5456), + [anon_sym_range] = ACTIONS(5456), + [anon_sym_i8] = ACTIONS(5456), + [anon_sym_i16] = ACTIONS(5456), + [anon_sym_i32] = ACTIONS(5456), + [anon_sym_i64] = ACTIONS(5456), + [anon_sym_u8] = ACTIONS(5456), + [anon_sym_u16] = ACTIONS(5456), + [anon_sym_u32] = ACTIONS(5456), + [anon_sym_u64] = ACTIONS(5456), + [anon_sym_isize] = ACTIONS(5456), + [anon_sym_usize] = ACTIONS(5456), + [anon_sym_f32] = ACTIONS(5456), + [anon_sym_f64] = ACTIONS(5456), + [anon_sym_c_char] = ACTIONS(5456), + [anon_sym_c_schar] = ACTIONS(5456), + [anon_sym_c_uchar] = ACTIONS(5456), + [anon_sym_c_short] = ACTIONS(5456), + [anon_sym_c_ushort] = ACTIONS(5456), + [anon_sym_c_int] = ACTIONS(5456), + [anon_sym_c_uint] = ACTIONS(5456), + [anon_sym_c_long] = ACTIONS(5456), + [anon_sym_c_ulong] = ACTIONS(5456), + [anon_sym_c_longlong] = ACTIONS(5456), + [anon_sym_c_ulonglong] = ACTIONS(5456), + [anon_sym_c_float] = ACTIONS(5456), + [anon_sym_c_double] = ACTIONS(5456), + [anon_sym_c_longdouble] = ACTIONS(5456), + [anon_sym_else] = ACTIONS(5456), + [anon_sym_DOT_DOT] = ACTIONS(5456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5454), + [anon_sym_orelse] = ACTIONS(5456), + [anon_sym_or] = ACTIONS(5456), + [anon_sym_and] = ACTIONS(5456), + [anon_sym_EQ_EQ] = ACTIONS(5454), + [anon_sym_BANG_EQ] = ACTIONS(5454), + [anon_sym_LT] = ACTIONS(5456), + [anon_sym_LT_EQ] = ACTIONS(5454), + [anon_sym_GT] = ACTIONS(5456), + [anon_sym_GT_EQ] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_xor] = ACTIONS(5456), + [anon_sym_LT_LT] = ACTIONS(5456), + [anon_sym_GT_GT] = ACTIONS(5454), + [anon_sym_LT_LT_PIPE] = ACTIONS(5454), + [anon_sym_PLUS] = ACTIONS(5454), + [anon_sym_SLASH] = ACTIONS(5454), + [anon_sym_catch] = ACTIONS(5456), + [anon_sym_DOT] = ACTIONS(5456), + [anon_sym_CARET] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5454), + }, + [STATE(7469)] = { + [sym_identifier] = ACTIONS(5460), + [anon_sym_func] = ACTIONS(5460), + [anon_sym_c_func] = ACTIONS(5460), + [anon_sym_struct] = ACTIONS(5460), + [anon_sym_LPAREN] = ACTIONS(5458), + [anon_sym_COMMA] = ACTIONS(5458), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_DASH] = ACTIONS(5458), + [anon_sym_PIPE] = ACTIONS(5458), + [anon_sym_struct_type_BANG] = ACTIONS(5458), + [anon_sym_QMARK] = ACTIONS(5458), + [anon_sym_AT] = ACTIONS(5458), + [anon_sym_STAR] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_void] = ACTIONS(5460), + [anon_sym_noreturn] = ACTIONS(5460), + [anon_sym_type] = ACTIONS(5460), + [anon_sym_anyopaque] = ACTIONS(5460), + [anon_sym_bool] = ACTIONS(5460), + [anon_sym_int] = ACTIONS(5460), + [anon_sym_uint] = ACTIONS(5460), + [anon_sym_float] = ACTIONS(5460), + [anon_sym_range] = ACTIONS(5460), + [anon_sym_i8] = ACTIONS(5460), + [anon_sym_i16] = ACTIONS(5460), + [anon_sym_i32] = ACTIONS(5460), + [anon_sym_i64] = ACTIONS(5460), + [anon_sym_u8] = ACTIONS(5460), + [anon_sym_u16] = ACTIONS(5460), + [anon_sym_u32] = ACTIONS(5460), + [anon_sym_u64] = ACTIONS(5460), + [anon_sym_isize] = ACTIONS(5460), + [anon_sym_usize] = ACTIONS(5460), + [anon_sym_f32] = ACTIONS(5460), + [anon_sym_f64] = ACTIONS(5460), + [anon_sym_c_char] = ACTIONS(5460), + [anon_sym_c_schar] = ACTIONS(5460), + [anon_sym_c_uchar] = ACTIONS(5460), + [anon_sym_c_short] = ACTIONS(5460), + [anon_sym_c_ushort] = ACTIONS(5460), + [anon_sym_c_int] = ACTIONS(5460), + [anon_sym_c_uint] = ACTIONS(5460), + [anon_sym_c_long] = ACTIONS(5460), + [anon_sym_c_ulong] = ACTIONS(5460), + [anon_sym_c_longlong] = ACTIONS(5460), + [anon_sym_c_ulonglong] = ACTIONS(5460), + [anon_sym_c_float] = ACTIONS(5460), + [anon_sym_c_double] = ACTIONS(5460), + [anon_sym_c_longdouble] = ACTIONS(5460), + [anon_sym_else] = ACTIONS(5460), + [anon_sym_DOT_DOT] = ACTIONS(5460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5458), + [anon_sym_orelse] = ACTIONS(5460), + [anon_sym_or] = ACTIONS(5460), + [anon_sym_and] = ACTIONS(5460), + [anon_sym_EQ_EQ] = ACTIONS(5458), + [anon_sym_BANG_EQ] = ACTIONS(5458), + [anon_sym_LT] = ACTIONS(5460), + [anon_sym_LT_EQ] = ACTIONS(5458), + [anon_sym_GT] = ACTIONS(5460), + [anon_sym_GT_EQ] = ACTIONS(5458), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_xor] = ACTIONS(5460), + [anon_sym_LT_LT] = ACTIONS(5460), + [anon_sym_GT_GT] = ACTIONS(5458), + [anon_sym_LT_LT_PIPE] = ACTIONS(5458), + [anon_sym_PLUS] = ACTIONS(5458), + [anon_sym_SLASH] = ACTIONS(5458), + [anon_sym_catch] = ACTIONS(5460), + [anon_sym_DOT] = ACTIONS(5460), + [anon_sym_CARET] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5458), + }, + [STATE(7470)] = { + [sym_identifier] = ACTIONS(5464), + [anon_sym_func] = ACTIONS(5464), + [anon_sym_c_func] = ACTIONS(5464), + [anon_sym_struct] = ACTIONS(5464), + [anon_sym_LPAREN] = ACTIONS(5462), + [anon_sym_COMMA] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_DASH] = ACTIONS(5462), + [anon_sym_PIPE] = ACTIONS(5462), + [anon_sym_struct_type_BANG] = ACTIONS(5462), + [anon_sym_QMARK] = ACTIONS(5462), + [anon_sym_AT] = ACTIONS(5462), + [anon_sym_STAR] = ACTIONS(5462), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_void] = ACTIONS(5464), + [anon_sym_noreturn] = ACTIONS(5464), + [anon_sym_type] = ACTIONS(5464), + [anon_sym_anyopaque] = ACTIONS(5464), + [anon_sym_bool] = ACTIONS(5464), + [anon_sym_int] = ACTIONS(5464), + [anon_sym_uint] = ACTIONS(5464), + [anon_sym_float] = ACTIONS(5464), + [anon_sym_range] = ACTIONS(5464), + [anon_sym_i8] = ACTIONS(5464), + [anon_sym_i16] = ACTIONS(5464), + [anon_sym_i32] = ACTIONS(5464), + [anon_sym_i64] = ACTIONS(5464), + [anon_sym_u8] = ACTIONS(5464), + [anon_sym_u16] = ACTIONS(5464), + [anon_sym_u32] = ACTIONS(5464), + [anon_sym_u64] = ACTIONS(5464), + [anon_sym_isize] = ACTIONS(5464), + [anon_sym_usize] = ACTIONS(5464), + [anon_sym_f32] = ACTIONS(5464), + [anon_sym_f64] = ACTIONS(5464), + [anon_sym_c_char] = ACTIONS(5464), + [anon_sym_c_schar] = ACTIONS(5464), + [anon_sym_c_uchar] = ACTIONS(5464), + [anon_sym_c_short] = ACTIONS(5464), + [anon_sym_c_ushort] = ACTIONS(5464), + [anon_sym_c_int] = ACTIONS(5464), + [anon_sym_c_uint] = ACTIONS(5464), + [anon_sym_c_long] = ACTIONS(5464), + [anon_sym_c_ulong] = ACTIONS(5464), + [anon_sym_c_longlong] = ACTIONS(5464), + [anon_sym_c_ulonglong] = ACTIONS(5464), + [anon_sym_c_float] = ACTIONS(5464), + [anon_sym_c_double] = ACTIONS(5464), + [anon_sym_c_longdouble] = ACTIONS(5464), + [anon_sym_else] = ACTIONS(5464), + [anon_sym_DOT_DOT] = ACTIONS(5464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5462), + [anon_sym_orelse] = ACTIONS(5464), + [anon_sym_or] = ACTIONS(5464), + [anon_sym_and] = ACTIONS(5464), + [anon_sym_EQ_EQ] = ACTIONS(5462), + [anon_sym_BANG_EQ] = ACTIONS(5462), + [anon_sym_LT] = ACTIONS(5464), + [anon_sym_LT_EQ] = ACTIONS(5462), + [anon_sym_GT] = ACTIONS(5464), + [anon_sym_GT_EQ] = ACTIONS(5462), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_xor] = ACTIONS(5464), + [anon_sym_LT_LT] = ACTIONS(5464), + [anon_sym_GT_GT] = ACTIONS(5462), + [anon_sym_LT_LT_PIPE] = ACTIONS(5462), + [anon_sym_PLUS] = ACTIONS(5462), + [anon_sym_SLASH] = ACTIONS(5462), + [anon_sym_catch] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5464), + [anon_sym_CARET] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5462), + }, + [STATE(7471)] = { + [sym_identifier] = ACTIONS(5468), + [anon_sym_func] = ACTIONS(5468), + [anon_sym_c_func] = ACTIONS(5468), + [anon_sym_struct] = ACTIONS(5468), + [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_COMMA] = ACTIONS(5466), + [anon_sym_RBRACE] = ACTIONS(5466), + [anon_sym_DASH] = ACTIONS(5466), + [anon_sym_PIPE] = ACTIONS(5466), + [anon_sym_struct_type_BANG] = ACTIONS(5466), + [anon_sym_QMARK] = ACTIONS(5466), + [anon_sym_AT] = ACTIONS(5466), + [anon_sym_STAR] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_void] = ACTIONS(5468), + [anon_sym_noreturn] = ACTIONS(5468), + [anon_sym_type] = ACTIONS(5468), + [anon_sym_anyopaque] = ACTIONS(5468), + [anon_sym_bool] = ACTIONS(5468), + [anon_sym_int] = ACTIONS(5468), + [anon_sym_uint] = ACTIONS(5468), + [anon_sym_float] = ACTIONS(5468), + [anon_sym_range] = ACTIONS(5468), + [anon_sym_i8] = ACTIONS(5468), + [anon_sym_i16] = ACTIONS(5468), + [anon_sym_i32] = ACTIONS(5468), + [anon_sym_i64] = ACTIONS(5468), + [anon_sym_u8] = ACTIONS(5468), + [anon_sym_u16] = ACTIONS(5468), + [anon_sym_u32] = ACTIONS(5468), + [anon_sym_u64] = ACTIONS(5468), + [anon_sym_isize] = ACTIONS(5468), + [anon_sym_usize] = ACTIONS(5468), + [anon_sym_f32] = ACTIONS(5468), + [anon_sym_f64] = ACTIONS(5468), + [anon_sym_c_char] = ACTIONS(5468), + [anon_sym_c_schar] = ACTIONS(5468), + [anon_sym_c_uchar] = ACTIONS(5468), + [anon_sym_c_short] = ACTIONS(5468), + [anon_sym_c_ushort] = ACTIONS(5468), + [anon_sym_c_int] = ACTIONS(5468), + [anon_sym_c_uint] = ACTIONS(5468), + [anon_sym_c_long] = ACTIONS(5468), + [anon_sym_c_ulong] = ACTIONS(5468), + [anon_sym_c_longlong] = ACTIONS(5468), + [anon_sym_c_ulonglong] = ACTIONS(5468), + [anon_sym_c_float] = ACTIONS(5468), + [anon_sym_c_double] = ACTIONS(5468), + [anon_sym_c_longdouble] = ACTIONS(5468), + [anon_sym_else] = ACTIONS(5468), + [anon_sym_DOT_DOT] = ACTIONS(5468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5466), + [anon_sym_orelse] = ACTIONS(5468), + [anon_sym_or] = ACTIONS(5468), + [anon_sym_and] = ACTIONS(5468), + [anon_sym_EQ_EQ] = ACTIONS(5466), + [anon_sym_BANG_EQ] = ACTIONS(5466), + [anon_sym_LT] = ACTIONS(5468), + [anon_sym_LT_EQ] = ACTIONS(5466), + [anon_sym_GT] = ACTIONS(5468), + [anon_sym_GT_EQ] = ACTIONS(5466), + [anon_sym_AMP] = ACTIONS(5466), + [anon_sym_xor] = ACTIONS(5468), + [anon_sym_LT_LT] = ACTIONS(5468), + [anon_sym_GT_GT] = ACTIONS(5466), + [anon_sym_LT_LT_PIPE] = ACTIONS(5466), + [anon_sym_PLUS] = ACTIONS(5466), + [anon_sym_SLASH] = ACTIONS(5466), + [anon_sym_catch] = ACTIONS(5468), + [anon_sym_DOT] = ACTIONS(5468), + [anon_sym_CARET] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5466), + }, + [STATE(7472)] = { + [sym_identifier] = ACTIONS(5472), + [anon_sym_func] = ACTIONS(5472), + [anon_sym_c_func] = ACTIONS(5472), + [anon_sym_struct] = ACTIONS(5472), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_DASH] = ACTIONS(5470), + [anon_sym_PIPE] = ACTIONS(5470), + [anon_sym_struct_type_BANG] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5470), + [anon_sym_AT] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_void] = ACTIONS(5472), + [anon_sym_noreturn] = ACTIONS(5472), + [anon_sym_type] = ACTIONS(5472), + [anon_sym_anyopaque] = ACTIONS(5472), + [anon_sym_bool] = ACTIONS(5472), + [anon_sym_int] = ACTIONS(5472), + [anon_sym_uint] = ACTIONS(5472), + [anon_sym_float] = ACTIONS(5472), + [anon_sym_range] = ACTIONS(5472), + [anon_sym_i8] = ACTIONS(5472), + [anon_sym_i16] = ACTIONS(5472), + [anon_sym_i32] = ACTIONS(5472), + [anon_sym_i64] = ACTIONS(5472), + [anon_sym_u8] = ACTIONS(5472), + [anon_sym_u16] = ACTIONS(5472), + [anon_sym_u32] = ACTIONS(5472), + [anon_sym_u64] = ACTIONS(5472), + [anon_sym_isize] = ACTIONS(5472), + [anon_sym_usize] = ACTIONS(5472), + [anon_sym_f32] = ACTIONS(5472), + [anon_sym_f64] = ACTIONS(5472), + [anon_sym_c_char] = ACTIONS(5472), + [anon_sym_c_schar] = ACTIONS(5472), + [anon_sym_c_uchar] = ACTIONS(5472), + [anon_sym_c_short] = ACTIONS(5472), + [anon_sym_c_ushort] = ACTIONS(5472), + [anon_sym_c_int] = ACTIONS(5472), + [anon_sym_c_uint] = ACTIONS(5472), + [anon_sym_c_long] = ACTIONS(5472), + [anon_sym_c_ulong] = ACTIONS(5472), + [anon_sym_c_longlong] = ACTIONS(5472), + [anon_sym_c_ulonglong] = ACTIONS(5472), + [anon_sym_c_float] = ACTIONS(5472), + [anon_sym_c_double] = ACTIONS(5472), + [anon_sym_c_longdouble] = ACTIONS(5472), + [anon_sym_else] = ACTIONS(5472), + [anon_sym_DOT_DOT] = ACTIONS(5472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5470), + [anon_sym_orelse] = ACTIONS(5472), + [anon_sym_or] = ACTIONS(5472), + [anon_sym_and] = ACTIONS(5472), + [anon_sym_EQ_EQ] = ACTIONS(5470), + [anon_sym_BANG_EQ] = ACTIONS(5470), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_LT_EQ] = ACTIONS(5470), + [anon_sym_GT] = ACTIONS(5472), + [anon_sym_GT_EQ] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_xor] = ACTIONS(5472), + [anon_sym_LT_LT] = ACTIONS(5472), + [anon_sym_GT_GT] = ACTIONS(5470), + [anon_sym_LT_LT_PIPE] = ACTIONS(5470), + [anon_sym_PLUS] = ACTIONS(5470), + [anon_sym_SLASH] = ACTIONS(5470), + [anon_sym_catch] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5472), + [anon_sym_CARET] = ACTIONS(5470), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5470), + }, + [STATE(7473)] = { + [sym_identifier] = ACTIONS(5476), + [anon_sym_func] = ACTIONS(5476), + [anon_sym_c_func] = ACTIONS(5476), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_LPAREN] = ACTIONS(5474), + [anon_sym_COMMA] = ACTIONS(5474), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5474), + [anon_sym_PIPE] = ACTIONS(5474), + [anon_sym_struct_type_BANG] = ACTIONS(5474), + [anon_sym_QMARK] = ACTIONS(5474), + [anon_sym_AT] = ACTIONS(5474), + [anon_sym_STAR] = ACTIONS(5474), + [anon_sym_LBRACK] = ACTIONS(5474), + [anon_sym_void] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym_type] = ACTIONS(5476), + [anon_sym_anyopaque] = ACTIONS(5476), + [anon_sym_bool] = ACTIONS(5476), + [anon_sym_int] = ACTIONS(5476), + [anon_sym_uint] = ACTIONS(5476), + [anon_sym_float] = ACTIONS(5476), + [anon_sym_range] = ACTIONS(5476), + [anon_sym_i8] = ACTIONS(5476), + [anon_sym_i16] = ACTIONS(5476), + [anon_sym_i32] = ACTIONS(5476), + [anon_sym_i64] = ACTIONS(5476), + [anon_sym_u8] = ACTIONS(5476), + [anon_sym_u16] = ACTIONS(5476), + [anon_sym_u32] = ACTIONS(5476), + [anon_sym_u64] = ACTIONS(5476), + [anon_sym_isize] = ACTIONS(5476), + [anon_sym_usize] = ACTIONS(5476), + [anon_sym_f32] = ACTIONS(5476), + [anon_sym_f64] = ACTIONS(5476), + [anon_sym_c_char] = ACTIONS(5476), + [anon_sym_c_schar] = ACTIONS(5476), + [anon_sym_c_uchar] = ACTIONS(5476), + [anon_sym_c_short] = ACTIONS(5476), + [anon_sym_c_ushort] = ACTIONS(5476), + [anon_sym_c_int] = ACTIONS(5476), + [anon_sym_c_uint] = ACTIONS(5476), + [anon_sym_c_long] = ACTIONS(5476), + [anon_sym_c_ulong] = ACTIONS(5476), + [anon_sym_c_longlong] = ACTIONS(5476), + [anon_sym_c_ulonglong] = ACTIONS(5476), + [anon_sym_c_float] = ACTIONS(5476), + [anon_sym_c_double] = ACTIONS(5476), + [anon_sym_c_longdouble] = ACTIONS(5476), + [anon_sym_else] = ACTIONS(5476), + [anon_sym_DOT_DOT] = ACTIONS(5476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5474), + [anon_sym_orelse] = ACTIONS(5476), + [anon_sym_or] = ACTIONS(5476), + [anon_sym_and] = ACTIONS(5476), + [anon_sym_EQ_EQ] = ACTIONS(5474), + [anon_sym_BANG_EQ] = ACTIONS(5474), + [anon_sym_LT] = ACTIONS(5476), + [anon_sym_LT_EQ] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(5474), + [anon_sym_xor] = ACTIONS(5476), + [anon_sym_LT_LT] = ACTIONS(5476), + [anon_sym_GT_GT] = ACTIONS(5474), + [anon_sym_LT_LT_PIPE] = ACTIONS(5474), + [anon_sym_PLUS] = ACTIONS(5474), + [anon_sym_SLASH] = ACTIONS(5474), + [anon_sym_catch] = ACTIONS(5476), + [anon_sym_DOT] = ACTIONS(5476), + [anon_sym_CARET] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5474), + }, + [STATE(7474)] = { + [sym_identifier] = ACTIONS(5480), + [anon_sym_func] = ACTIONS(5480), + [anon_sym_c_func] = ACTIONS(5480), + [anon_sym_struct] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5478), + [anon_sym_COMMA] = ACTIONS(5478), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5478), + [anon_sym_PIPE] = ACTIONS(5478), + [anon_sym_struct_type_BANG] = ACTIONS(5478), + [anon_sym_QMARK] = ACTIONS(5478), + [anon_sym_AT] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5478), + [anon_sym_void] = ACTIONS(5480), + [anon_sym_noreturn] = ACTIONS(5480), + [anon_sym_type] = ACTIONS(5480), + [anon_sym_anyopaque] = ACTIONS(5480), + [anon_sym_bool] = ACTIONS(5480), + [anon_sym_int] = ACTIONS(5480), + [anon_sym_uint] = ACTIONS(5480), + [anon_sym_float] = ACTIONS(5480), + [anon_sym_range] = ACTIONS(5480), + [anon_sym_i8] = ACTIONS(5480), + [anon_sym_i16] = ACTIONS(5480), + [anon_sym_i32] = ACTIONS(5480), + [anon_sym_i64] = ACTIONS(5480), + [anon_sym_u8] = ACTIONS(5480), + [anon_sym_u16] = ACTIONS(5480), + [anon_sym_u32] = ACTIONS(5480), + [anon_sym_u64] = ACTIONS(5480), + [anon_sym_isize] = ACTIONS(5480), + [anon_sym_usize] = ACTIONS(5480), + [anon_sym_f32] = ACTIONS(5480), + [anon_sym_f64] = ACTIONS(5480), + [anon_sym_c_char] = ACTIONS(5480), + [anon_sym_c_schar] = ACTIONS(5480), + [anon_sym_c_uchar] = ACTIONS(5480), + [anon_sym_c_short] = ACTIONS(5480), + [anon_sym_c_ushort] = ACTIONS(5480), + [anon_sym_c_int] = ACTIONS(5480), + [anon_sym_c_uint] = ACTIONS(5480), + [anon_sym_c_long] = ACTIONS(5480), + [anon_sym_c_ulong] = ACTIONS(5480), + [anon_sym_c_longlong] = ACTIONS(5480), + [anon_sym_c_ulonglong] = ACTIONS(5480), + [anon_sym_c_float] = ACTIONS(5480), + [anon_sym_c_double] = ACTIONS(5480), + [anon_sym_c_longdouble] = ACTIONS(5480), + [anon_sym_else] = ACTIONS(5480), + [anon_sym_DOT_DOT] = ACTIONS(5480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5478), + [anon_sym_orelse] = ACTIONS(5480), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_BANG_EQ] = ACTIONS(5478), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5478), + [anon_sym_xor] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5478), + [anon_sym_LT_LT_PIPE] = ACTIONS(5478), + [anon_sym_PLUS] = ACTIONS(5478), + [anon_sym_SLASH] = ACTIONS(5478), + [anon_sym_catch] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5478), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5478), + }, + [STATE(7475)] = { + [sym_identifier] = ACTIONS(5484), + [anon_sym_func] = ACTIONS(5484), + [anon_sym_c_func] = ACTIONS(5484), + [anon_sym_struct] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5482), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5482), + [anon_sym_struct_type_BANG] = ACTIONS(5482), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_AT] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_void] = ACTIONS(5484), + [anon_sym_noreturn] = ACTIONS(5484), + [anon_sym_type] = ACTIONS(5484), + [anon_sym_anyopaque] = ACTIONS(5484), + [anon_sym_bool] = ACTIONS(5484), + [anon_sym_int] = ACTIONS(5484), + [anon_sym_uint] = ACTIONS(5484), + [anon_sym_float] = ACTIONS(5484), + [anon_sym_range] = ACTIONS(5484), + [anon_sym_i8] = ACTIONS(5484), + [anon_sym_i16] = ACTIONS(5484), + [anon_sym_i32] = ACTIONS(5484), + [anon_sym_i64] = ACTIONS(5484), + [anon_sym_u8] = ACTIONS(5484), + [anon_sym_u16] = ACTIONS(5484), + [anon_sym_u32] = ACTIONS(5484), + [anon_sym_u64] = ACTIONS(5484), + [anon_sym_isize] = ACTIONS(5484), + [anon_sym_usize] = ACTIONS(5484), + [anon_sym_f32] = ACTIONS(5484), + [anon_sym_f64] = ACTIONS(5484), + [anon_sym_c_char] = ACTIONS(5484), + [anon_sym_c_schar] = ACTIONS(5484), + [anon_sym_c_uchar] = ACTIONS(5484), + [anon_sym_c_short] = ACTIONS(5484), + [anon_sym_c_ushort] = ACTIONS(5484), + [anon_sym_c_int] = ACTIONS(5484), + [anon_sym_c_uint] = ACTIONS(5484), + [anon_sym_c_long] = ACTIONS(5484), + [anon_sym_c_ulong] = ACTIONS(5484), + [anon_sym_c_longlong] = ACTIONS(5484), + [anon_sym_c_ulonglong] = ACTIONS(5484), + [anon_sym_c_float] = ACTIONS(5484), + [anon_sym_c_double] = ACTIONS(5484), + [anon_sym_c_longdouble] = ACTIONS(5484), + [anon_sym_else] = ACTIONS(5484), + [anon_sym_DOT_DOT] = ACTIONS(5484), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5482), + [anon_sym_orelse] = ACTIONS(5484), + [anon_sym_or] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_LT] = ACTIONS(5484), + [anon_sym_LT_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5482), + [anon_sym_xor] = ACTIONS(5484), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5482), + [anon_sym_LT_LT_PIPE] = ACTIONS(5482), + [anon_sym_PLUS] = ACTIONS(5482), + [anon_sym_SLASH] = ACTIONS(5482), + [anon_sym_catch] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5482), + }, + [STATE(7476)] = { + [sym_identifier] = ACTIONS(5488), + [anon_sym_func] = ACTIONS(5488), + [anon_sym_c_func] = ACTIONS(5488), + [anon_sym_struct] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5486), + [anon_sym_COMMA] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5486), + [anon_sym_PIPE] = ACTIONS(5486), + [anon_sym_struct_type_BANG] = ACTIONS(5486), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_AT] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5486), + [anon_sym_LBRACK] = ACTIONS(5486), + [anon_sym_void] = ACTIONS(5488), + [anon_sym_noreturn] = ACTIONS(5488), + [anon_sym_type] = ACTIONS(5488), + [anon_sym_anyopaque] = ACTIONS(5488), + [anon_sym_bool] = ACTIONS(5488), + [anon_sym_int] = ACTIONS(5488), + [anon_sym_uint] = ACTIONS(5488), + [anon_sym_float] = ACTIONS(5488), + [anon_sym_range] = ACTIONS(5488), + [anon_sym_i8] = ACTIONS(5488), + [anon_sym_i16] = ACTIONS(5488), + [anon_sym_i32] = ACTIONS(5488), + [anon_sym_i64] = ACTIONS(5488), + [anon_sym_u8] = ACTIONS(5488), + [anon_sym_u16] = ACTIONS(5488), + [anon_sym_u32] = ACTIONS(5488), + [anon_sym_u64] = ACTIONS(5488), + [anon_sym_isize] = ACTIONS(5488), + [anon_sym_usize] = ACTIONS(5488), + [anon_sym_f32] = ACTIONS(5488), + [anon_sym_f64] = ACTIONS(5488), + [anon_sym_c_char] = ACTIONS(5488), + [anon_sym_c_schar] = ACTIONS(5488), + [anon_sym_c_uchar] = ACTIONS(5488), + [anon_sym_c_short] = ACTIONS(5488), + [anon_sym_c_ushort] = ACTIONS(5488), + [anon_sym_c_int] = ACTIONS(5488), + [anon_sym_c_uint] = ACTIONS(5488), + [anon_sym_c_long] = ACTIONS(5488), + [anon_sym_c_ulong] = ACTIONS(5488), + [anon_sym_c_longlong] = ACTIONS(5488), + [anon_sym_c_ulonglong] = ACTIONS(5488), + [anon_sym_c_float] = ACTIONS(5488), + [anon_sym_c_double] = ACTIONS(5488), + [anon_sym_c_longdouble] = ACTIONS(5488), + [anon_sym_else] = ACTIONS(5488), + [anon_sym_DOT_DOT] = ACTIONS(5488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5486), + [anon_sym_orelse] = ACTIONS(5488), + [anon_sym_or] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5486), + [anon_sym_BANG_EQ] = ACTIONS(5486), + [anon_sym_LT] = ACTIONS(5488), + [anon_sym_LT_EQ] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5486), + [anon_sym_xor] = ACTIONS(5488), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5486), + [anon_sym_LT_LT_PIPE] = ACTIONS(5486), + [anon_sym_PLUS] = ACTIONS(5486), + [anon_sym_SLASH] = ACTIONS(5486), + [anon_sym_catch] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5486), + }, + [STATE(7477)] = { [sym_identifier] = ACTIONS(5492), [anon_sym_func] = ACTIONS(5492), - [anon_sym_BANG] = ACTIONS(5494), + [anon_sym_c_func] = ACTIONS(5492), [anon_sym_struct] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_DOLLAR] = ACTIONS(5494), - [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_LPAREN] = ACTIONS(5490), + [anon_sym_COMMA] = ACTIONS(5490), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5490), + [anon_sym_PIPE] = ACTIONS(5490), + [anon_sym_struct_type_BANG] = ACTIONS(5490), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_AT] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5490), + [anon_sym_LBRACK] = ACTIONS(5490), [anon_sym_void] = ACTIONS(5492), [anon_sym_noreturn] = ACTIONS(5492), [anon_sym_type] = ACTIONS(5492), @@ -238808,14137 +826887,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(5492), [anon_sym_c_double] = ACTIONS(5492), [anon_sym_c_longdouble] = ACTIONS(5492), - [anon_sym_return] = ACTIONS(5492), - [anon_sym_yield] = ACTIONS(5492), - [anon_sym_break] = ACTIONS(5492), - [anon_sym_continue] = ACTIONS(5492), - [anon_sym_defer] = ACTIONS(5492), - [anon_sym_errdefer] = ACTIONS(5492), - [anon_sym_if] = ACTIONS(5492), - [anon_sym_else] = ACTIONS(5557), - [anon_sym_while] = ACTIONS(5492), - [anon_sym_expand] = ACTIONS(5492), - [anon_sym_for] = ACTIONS(5492), - [anon_sym_match] = ACTIONS(5492), + [anon_sym_else] = ACTIONS(5492), + [anon_sym_DOT_DOT] = ACTIONS(5492), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5490), + [anon_sym_orelse] = ACTIONS(5492), + [anon_sym_or] = ACTIONS(5492), + [anon_sym_and] = ACTIONS(5492), + [anon_sym_EQ_EQ] = ACTIONS(5490), + [anon_sym_BANG_EQ] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5492), + [anon_sym_LT_EQ] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5492), + [anon_sym_GT_EQ] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5490), + [anon_sym_xor] = ACTIONS(5492), + [anon_sym_LT_LT] = ACTIONS(5492), + [anon_sym_GT_GT] = ACTIONS(5490), + [anon_sym_LT_LT_PIPE] = ACTIONS(5490), + [anon_sym_PLUS] = ACTIONS(5490), + [anon_sym_SLASH] = ACTIONS(5490), + [anon_sym_catch] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(5492), + [anon_sym_CARET] = ACTIONS(5490), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5490), + }, + [STATE(7478)] = { + [sym_identifier] = ACTIONS(5496), + [anon_sym_func] = ACTIONS(5496), + [anon_sym_c_func] = ACTIONS(5496), + [anon_sym_struct] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_COMMA] = ACTIONS(5494), + [anon_sym_RBRACE] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_PIPE] = ACTIONS(5494), + [anon_sym_struct_type_BANG] = ACTIONS(5494), + [anon_sym_QMARK] = ACTIONS(5494), + [anon_sym_AT] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_void] = ACTIONS(5496), + [anon_sym_noreturn] = ACTIONS(5496), + [anon_sym_type] = ACTIONS(5496), + [anon_sym_anyopaque] = ACTIONS(5496), + [anon_sym_bool] = ACTIONS(5496), + [anon_sym_int] = ACTIONS(5496), + [anon_sym_uint] = ACTIONS(5496), + [anon_sym_float] = ACTIONS(5496), + [anon_sym_range] = ACTIONS(5496), + [anon_sym_i8] = ACTIONS(5496), + [anon_sym_i16] = ACTIONS(5496), + [anon_sym_i32] = ACTIONS(5496), + [anon_sym_i64] = ACTIONS(5496), + [anon_sym_u8] = ACTIONS(5496), + [anon_sym_u16] = ACTIONS(5496), + [anon_sym_u32] = ACTIONS(5496), + [anon_sym_u64] = ACTIONS(5496), + [anon_sym_isize] = ACTIONS(5496), + [anon_sym_usize] = ACTIONS(5496), + [anon_sym_f32] = ACTIONS(5496), + [anon_sym_f64] = ACTIONS(5496), + [anon_sym_c_char] = ACTIONS(5496), + [anon_sym_c_schar] = ACTIONS(5496), + [anon_sym_c_uchar] = ACTIONS(5496), + [anon_sym_c_short] = ACTIONS(5496), + [anon_sym_c_ushort] = ACTIONS(5496), + [anon_sym_c_int] = ACTIONS(5496), + [anon_sym_c_uint] = ACTIONS(5496), + [anon_sym_c_long] = ACTIONS(5496), + [anon_sym_c_ulong] = ACTIONS(5496), + [anon_sym_c_longlong] = ACTIONS(5496), + [anon_sym_c_ulonglong] = ACTIONS(5496), + [anon_sym_c_float] = ACTIONS(5496), + [anon_sym_c_double] = ACTIONS(5496), + [anon_sym_c_longdouble] = ACTIONS(5496), + [anon_sym_else] = ACTIONS(5496), + [anon_sym_DOT_DOT] = ACTIONS(5496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5494), + [anon_sym_orelse] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5496), + [anon_sym_and] = ACTIONS(5496), + [anon_sym_EQ_EQ] = ACTIONS(5494), + [anon_sym_BANG_EQ] = ACTIONS(5494), + [anon_sym_LT] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5494), + [anon_sym_GT] = ACTIONS(5496), + [anon_sym_GT_EQ] = ACTIONS(5494), [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_TILDE] = ACTIONS(5494), - [anon_sym_try] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(5494), - [anon_sym_true] = ACTIONS(5492), - [anon_sym_false] = ACTIONS(5492), - [anon_sym_null] = ACTIONS(5492), - [anon_sym_unreachable] = ACTIONS(5492), - [anon_sym_undefined] = ACTIONS(5492), - [sym_sink] = ACTIONS(5492), - [sym_integer] = ACTIONS(5492), - [sym_float] = ACTIONS(5494), - [anon_sym_DQUOTE] = ACTIONS(5494), - [sym_multiline_string] = ACTIONS(5494), - [sym_character] = ACTIONS(5494), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5559), - }, - [STATE(2216)] = { - [aux_sym_import_declaration_repeat1] = STATE(4859), - [sym_identifier] = ACTIONS(5562), - [anon_sym_func] = ACTIONS(5562), - [anon_sym_BANG] = ACTIONS(5564), - [anon_sym_struct] = ACTIONS(5562), - [anon_sym_LPAREN] = ACTIONS(5564), - [anon_sym_LBRACE] = ACTIONS(5564), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_DASH] = ACTIONS(5564), - [anon_sym_DOLLAR] = ACTIONS(5564), - [anon_sym_LBRACK] = ACTIONS(5564), - [anon_sym_void] = ACTIONS(5562), - [anon_sym_noreturn] = ACTIONS(5562), - [anon_sym_type] = ACTIONS(5562), - [anon_sym_anyopaque] = ACTIONS(5562), - [anon_sym_bool] = ACTIONS(5562), - [anon_sym_int] = ACTIONS(5562), - [anon_sym_uint] = ACTIONS(5562), - [anon_sym_float] = ACTIONS(5562), - [anon_sym_range] = ACTIONS(5562), - [anon_sym_i8] = ACTIONS(5562), - [anon_sym_i16] = ACTIONS(5562), - [anon_sym_i32] = ACTIONS(5562), - [anon_sym_i64] = ACTIONS(5562), - [anon_sym_u8] = ACTIONS(5562), - [anon_sym_u16] = ACTIONS(5562), - [anon_sym_u32] = ACTIONS(5562), - [anon_sym_u64] = ACTIONS(5562), - [anon_sym_isize] = ACTIONS(5562), - [anon_sym_usize] = ACTIONS(5562), - [anon_sym_f32] = ACTIONS(5562), - [anon_sym_f64] = ACTIONS(5562), - [anon_sym_c_char] = ACTIONS(5562), - [anon_sym_c_schar] = ACTIONS(5562), - [anon_sym_c_uchar] = ACTIONS(5562), - [anon_sym_c_short] = ACTIONS(5562), - [anon_sym_c_ushort] = ACTIONS(5562), - [anon_sym_c_int] = ACTIONS(5562), - [anon_sym_c_uint] = ACTIONS(5562), - [anon_sym_c_long] = ACTIONS(5562), - [anon_sym_c_ulong] = ACTIONS(5562), - [anon_sym_c_longlong] = ACTIONS(5562), - [anon_sym_c_ulonglong] = ACTIONS(5562), - [anon_sym_c_float] = ACTIONS(5562), - [anon_sym_c_double] = ACTIONS(5562), - [anon_sym_c_longdouble] = ACTIONS(5562), - [anon_sym_return] = ACTIONS(5562), - [anon_sym_yield] = ACTIONS(5562), - [anon_sym_break] = ACTIONS(5562), - [anon_sym_continue] = ACTIONS(5562), - [anon_sym_defer] = ACTIONS(5562), - [anon_sym_errdefer] = ACTIONS(5562), - [anon_sym_if] = ACTIONS(5562), - [anon_sym_else] = ACTIONS(5566), - [anon_sym_while] = ACTIONS(5562), - [anon_sym_expand] = ACTIONS(5562), - [anon_sym_for] = ACTIONS(5562), - [anon_sym_match] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(5564), - [anon_sym_TILDE] = ACTIONS(5564), - [anon_sym_try] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(5564), - [anon_sym_true] = ACTIONS(5562), - [anon_sym_false] = ACTIONS(5562), - [anon_sym_null] = ACTIONS(5562), - [anon_sym_unreachable] = ACTIONS(5562), - [anon_sym_undefined] = ACTIONS(5562), - [sym_sink] = ACTIONS(5562), - [sym_integer] = ACTIONS(5562), - [sym_float] = ACTIONS(5564), - [anon_sym_DQUOTE] = ACTIONS(5564), - [sym_multiline_string] = ACTIONS(5564), - [sym_character] = ACTIONS(5564), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5568), - }, - [STATE(2217)] = { - [aux_sym_import_declaration_repeat1] = STATE(4852), - [sym_identifier] = ACTIONS(5562), - [anon_sym_func] = ACTIONS(5562), - [anon_sym_BANG] = ACTIONS(5564), - [anon_sym_struct] = ACTIONS(5562), - [anon_sym_LPAREN] = ACTIONS(5564), - [anon_sym_LBRACE] = ACTIONS(5564), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_DASH] = ACTIONS(5564), - [anon_sym_DOLLAR] = ACTIONS(5564), - [anon_sym_LBRACK] = ACTIONS(5564), - [anon_sym_void] = ACTIONS(5562), - [anon_sym_noreturn] = ACTIONS(5562), - [anon_sym_type] = ACTIONS(5562), - [anon_sym_anyopaque] = ACTIONS(5562), - [anon_sym_bool] = ACTIONS(5562), - [anon_sym_int] = ACTIONS(5562), - [anon_sym_uint] = ACTIONS(5562), - [anon_sym_float] = ACTIONS(5562), - [anon_sym_range] = ACTIONS(5562), - [anon_sym_i8] = ACTIONS(5562), - [anon_sym_i16] = ACTIONS(5562), - [anon_sym_i32] = ACTIONS(5562), - [anon_sym_i64] = ACTIONS(5562), - [anon_sym_u8] = ACTIONS(5562), - [anon_sym_u16] = ACTIONS(5562), - [anon_sym_u32] = ACTIONS(5562), - [anon_sym_u64] = ACTIONS(5562), - [anon_sym_isize] = ACTIONS(5562), - [anon_sym_usize] = ACTIONS(5562), - [anon_sym_f32] = ACTIONS(5562), - [anon_sym_f64] = ACTIONS(5562), - [anon_sym_c_char] = ACTIONS(5562), - [anon_sym_c_schar] = ACTIONS(5562), - [anon_sym_c_uchar] = ACTIONS(5562), - [anon_sym_c_short] = ACTIONS(5562), - [anon_sym_c_ushort] = ACTIONS(5562), - [anon_sym_c_int] = ACTIONS(5562), - [anon_sym_c_uint] = ACTIONS(5562), - [anon_sym_c_long] = ACTIONS(5562), - [anon_sym_c_ulong] = ACTIONS(5562), - [anon_sym_c_longlong] = ACTIONS(5562), - [anon_sym_c_ulonglong] = ACTIONS(5562), - [anon_sym_c_float] = ACTIONS(5562), - [anon_sym_c_double] = ACTIONS(5562), - [anon_sym_c_longdouble] = ACTIONS(5562), - [anon_sym_return] = ACTIONS(5562), - [anon_sym_yield] = ACTIONS(5562), - [anon_sym_break] = ACTIONS(5562), - [anon_sym_continue] = ACTIONS(5562), - [anon_sym_defer] = ACTIONS(5562), - [anon_sym_errdefer] = ACTIONS(5562), - [anon_sym_if] = ACTIONS(5562), - [anon_sym_else] = ACTIONS(5571), - [anon_sym_while] = ACTIONS(5562), - [anon_sym_expand] = ACTIONS(5562), - [anon_sym_for] = ACTIONS(5562), - [anon_sym_match] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(5564), - [anon_sym_TILDE] = ACTIONS(5564), - [anon_sym_try] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(5564), - [anon_sym_true] = ACTIONS(5562), - [anon_sym_false] = ACTIONS(5562), - [anon_sym_null] = ACTIONS(5562), - [anon_sym_unreachable] = ACTIONS(5562), - [anon_sym_undefined] = ACTIONS(5562), - [sym_sink] = ACTIONS(5562), - [sym_integer] = ACTIONS(5562), - [sym_float] = ACTIONS(5564), - [anon_sym_DQUOTE] = ACTIONS(5564), - [sym_multiline_string] = ACTIONS(5564), - [sym_character] = ACTIONS(5564), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5574), - }, - [STATE(2218)] = { - [aux_sym_import_declaration_repeat1] = STATE(4779), - [sym_identifier] = ACTIONS(5547), - [anon_sym_func] = ACTIONS(5547), - [anon_sym_BANG] = ACTIONS(5549), - [anon_sym_struct] = ACTIONS(5547), - [anon_sym_LPAREN] = ACTIONS(5549), - [anon_sym_LBRACE] = ACTIONS(5549), - [anon_sym_RBRACE] = ACTIONS(5549), - [anon_sym_DASH] = ACTIONS(5549), - [anon_sym_DOLLAR] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_void] = ACTIONS(5547), - [anon_sym_noreturn] = ACTIONS(5547), - [anon_sym_type] = ACTIONS(5547), - [anon_sym_anyopaque] = ACTIONS(5547), - [anon_sym_bool] = ACTIONS(5547), - [anon_sym_int] = ACTIONS(5547), - [anon_sym_uint] = ACTIONS(5547), - [anon_sym_float] = ACTIONS(5547), - [anon_sym_range] = ACTIONS(5547), - [anon_sym_i8] = ACTIONS(5547), - [anon_sym_i16] = ACTIONS(5547), - [anon_sym_i32] = ACTIONS(5547), - [anon_sym_i64] = ACTIONS(5547), - [anon_sym_u8] = ACTIONS(5547), - [anon_sym_u16] = ACTIONS(5547), - [anon_sym_u32] = ACTIONS(5547), - [anon_sym_u64] = ACTIONS(5547), - [anon_sym_isize] = ACTIONS(5547), - [anon_sym_usize] = ACTIONS(5547), - [anon_sym_f32] = ACTIONS(5547), - [anon_sym_f64] = ACTIONS(5547), - [anon_sym_c_char] = ACTIONS(5547), - [anon_sym_c_schar] = ACTIONS(5547), - [anon_sym_c_uchar] = ACTIONS(5547), - [anon_sym_c_short] = ACTIONS(5547), - [anon_sym_c_ushort] = ACTIONS(5547), - [anon_sym_c_int] = ACTIONS(5547), - [anon_sym_c_uint] = ACTIONS(5547), - [anon_sym_c_long] = ACTIONS(5547), - [anon_sym_c_ulong] = ACTIONS(5547), - [anon_sym_c_longlong] = ACTIONS(5547), - [anon_sym_c_ulonglong] = ACTIONS(5547), - [anon_sym_c_float] = ACTIONS(5547), - [anon_sym_c_double] = ACTIONS(5547), - [anon_sym_c_longdouble] = ACTIONS(5547), - [anon_sym_return] = ACTIONS(5547), - [anon_sym_yield] = ACTIONS(5547), - [anon_sym_break] = ACTIONS(5547), - [anon_sym_continue] = ACTIONS(5547), - [anon_sym_defer] = ACTIONS(5547), - [anon_sym_errdefer] = ACTIONS(5547), - [anon_sym_if] = ACTIONS(5547), - [anon_sym_else] = ACTIONS(5577), - [anon_sym_while] = ACTIONS(5547), - [anon_sym_expand] = ACTIONS(5547), - [anon_sym_for] = ACTIONS(5547), - [anon_sym_match] = ACTIONS(5547), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_TILDE] = ACTIONS(5549), - [anon_sym_try] = ACTIONS(5547), - [anon_sym_DOT] = ACTIONS(5549), - [anon_sym_true] = ACTIONS(5547), - [anon_sym_false] = ACTIONS(5547), - [anon_sym_null] = ACTIONS(5547), - [anon_sym_unreachable] = ACTIONS(5547), - [anon_sym_undefined] = ACTIONS(5547), - [sym_sink] = ACTIONS(5547), - [sym_integer] = ACTIONS(5547), - [sym_float] = ACTIONS(5549), - [anon_sym_DQUOTE] = ACTIONS(5549), - [sym_multiline_string] = ACTIONS(5549), - [sym_character] = ACTIONS(5549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5579), - }, - [STATE(2219)] = { - [sym_argument_list] = STATE(2249), - [sym_identifier] = ACTIONS(1413), - [anon_sym_func] = ACTIONS(1413), - [anon_sym_c_func] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_struct_type_BANG] = ACTIONS(1411), - [anon_sym_QMARK] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_noreturn] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_anyopaque] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_int] = ACTIONS(1413), - [anon_sym_uint] = ACTIONS(1413), - [anon_sym_float] = ACTIONS(1413), - [anon_sym_range] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_c_char] = ACTIONS(1413), - [anon_sym_c_schar] = ACTIONS(1413), - [anon_sym_c_uchar] = ACTIONS(1413), - [anon_sym_c_short] = ACTIONS(1413), - [anon_sym_c_ushort] = ACTIONS(1413), - [anon_sym_c_int] = ACTIONS(1413), - [anon_sym_c_uint] = ACTIONS(1413), - [anon_sym_c_long] = ACTIONS(1413), - [anon_sym_c_ulong] = ACTIONS(1413), - [anon_sym_c_longlong] = ACTIONS(1413), - [anon_sym_c_ulonglong] = ACTIONS(1413), - [anon_sym_c_float] = ACTIONS(1413), - [anon_sym_c_double] = ACTIONS(1413), - [anon_sym_c_longdouble] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), - [anon_sym_orelse] = ACTIONS(1413), - [anon_sym_catch] = ACTIONS(1413), - [anon_sym_or] = ACTIONS(1413), - [anon_sym_and] = ACTIONS(1413), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT] = ACTIONS(1413), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_GT_GT] = ACTIONS(1411), - [anon_sym_LT_LT_PIPE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1411), - }, - [STATE(2220)] = { - [sym_identifier] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_c_func] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(5584), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_struct_type_BANG] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_LT_LT_PIPE] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), - }, - [STATE(2221)] = { - [aux_sym_type_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1474), - [anon_sym_func] = ACTIONS(1474), - [anon_sym_c_func] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_struct_type_BANG] = ACTIONS(1472), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_noreturn] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_anyopaque] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_int] = ACTIONS(1474), - [anon_sym_uint] = ACTIONS(1474), - [anon_sym_float] = ACTIONS(1474), - [anon_sym_range] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_c_char] = ACTIONS(1474), - [anon_sym_c_schar] = ACTIONS(1474), - [anon_sym_c_uchar] = ACTIONS(1474), - [anon_sym_c_short] = ACTIONS(1474), - [anon_sym_c_ushort] = ACTIONS(1474), - [anon_sym_c_int] = ACTIONS(1474), - [anon_sym_c_uint] = ACTIONS(1474), - [anon_sym_c_long] = ACTIONS(1474), - [anon_sym_c_ulong] = ACTIONS(1474), - [anon_sym_c_longlong] = ACTIONS(1474), - [anon_sym_c_ulonglong] = ACTIONS(1474), - [anon_sym_c_float] = ACTIONS(1474), - [anon_sym_c_double] = ACTIONS(1474), - [anon_sym_c_longdouble] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_orelse] = ACTIONS(1474), - [anon_sym_catch] = ACTIONS(1474), - [anon_sym_or] = ACTIONS(1474), - [anon_sym_and] = ACTIONS(1474), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_xor] = ACTIONS(1474), - [anon_sym_LT_LT] = ACTIONS(1474), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_LT_LT_PIPE] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1472), - }, - [STATE(2222)] = { - [aux_sym_type_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1467), - [anon_sym_func] = ACTIONS(1467), - [anon_sym_c_func] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(5586), - [anon_sym_struct_type_BANG] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_noreturn] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_anyopaque] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_range] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_c_char] = ACTIONS(1467), - [anon_sym_c_schar] = ACTIONS(1467), - [anon_sym_c_uchar] = ACTIONS(1467), - [anon_sym_c_short] = ACTIONS(1467), - [anon_sym_c_ushort] = ACTIONS(1467), - [anon_sym_c_int] = ACTIONS(1467), - [anon_sym_c_uint] = ACTIONS(1467), - [anon_sym_c_long] = ACTIONS(1467), - [anon_sym_c_ulong] = ACTIONS(1467), - [anon_sym_c_longlong] = ACTIONS(1467), - [anon_sym_c_ulonglong] = ACTIONS(1467), - [anon_sym_c_float] = ACTIONS(1467), - [anon_sym_c_double] = ACTIONS(1467), - [anon_sym_c_longdouble] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), - [anon_sym_orelse] = ACTIONS(1467), - [anon_sym_catch] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_xor] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_LT_LT_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1465), - }, - [STATE(2223)] = { - [sym_variant_payload] = STATE(2361), - [sym_identifier] = ACTIONS(1494), - [anon_sym_func] = ACTIONS(1494), - [anon_sym_c_func] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(5589), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_struct_type_BANG] = ACTIONS(1492), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_void] = ACTIONS(1494), - [anon_sym_noreturn] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_anyopaque] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_int] = ACTIONS(1494), - [anon_sym_uint] = ACTIONS(1494), - [anon_sym_float] = ACTIONS(1494), - [anon_sym_range] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_c_char] = ACTIONS(1494), - [anon_sym_c_schar] = ACTIONS(1494), - [anon_sym_c_uchar] = ACTIONS(1494), - [anon_sym_c_short] = ACTIONS(1494), - [anon_sym_c_ushort] = ACTIONS(1494), - [anon_sym_c_int] = ACTIONS(1494), - [anon_sym_c_uint] = ACTIONS(1494), - [anon_sym_c_long] = ACTIONS(1494), - [anon_sym_c_ulong] = ACTIONS(1494), - [anon_sym_c_longlong] = ACTIONS(1494), - [anon_sym_c_ulonglong] = ACTIONS(1494), - [anon_sym_c_float] = ACTIONS(1494), - [anon_sym_c_double] = ACTIONS(1494), - [anon_sym_c_longdouble] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_orelse] = ACTIONS(1494), - [anon_sym_catch] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1492), - [anon_sym_BANG_EQ] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_LT_EQ] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_GT_EQ] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1492), - [anon_sym_LT_LT_PIPE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1492), - }, - [STATE(2224)] = { - [aux_sym_type_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1478), - [anon_sym_func] = ACTIONS(1478), - [anon_sym_c_func] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_struct_type_BANG] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_void] = ACTIONS(1478), - [anon_sym_noreturn] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_anyopaque] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_int] = ACTIONS(1478), - [anon_sym_uint] = ACTIONS(1478), - [anon_sym_float] = ACTIONS(1478), - [anon_sym_range] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_c_char] = ACTIONS(1478), - [anon_sym_c_schar] = ACTIONS(1478), - [anon_sym_c_uchar] = ACTIONS(1478), - [anon_sym_c_short] = ACTIONS(1478), - [anon_sym_c_ushort] = ACTIONS(1478), - [anon_sym_c_int] = ACTIONS(1478), - [anon_sym_c_uint] = ACTIONS(1478), - [anon_sym_c_long] = ACTIONS(1478), - [anon_sym_c_ulong] = ACTIONS(1478), - [anon_sym_c_longlong] = ACTIONS(1478), - [anon_sym_c_ulonglong] = ACTIONS(1478), - [anon_sym_c_float] = ACTIONS(1478), - [anon_sym_c_double] = ACTIONS(1478), - [anon_sym_c_longdouble] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_orelse] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_or] = ACTIONS(1478), - [anon_sym_and] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_xor] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_LT_LT_PIPE] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1476), - }, - [STATE(2225)] = { - [sym_identifier] = ACTIONS(1507), - [anon_sym_func] = ACTIONS(1507), - [anon_sym_c_func] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_struct_type_BANG] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_AT] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_noreturn] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1507), - [anon_sym_anyopaque] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_range] = ACTIONS(1507), - [anon_sym_i8] = ACTIONS(1507), - [anon_sym_i16] = ACTIONS(1507), - [anon_sym_i32] = ACTIONS(1507), - [anon_sym_i64] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1507), - [anon_sym_u16] = ACTIONS(1507), - [anon_sym_u32] = ACTIONS(1507), - [anon_sym_u64] = ACTIONS(1507), - [anon_sym_isize] = ACTIONS(1507), - [anon_sym_usize] = ACTIONS(1507), - [anon_sym_f32] = ACTIONS(1507), - [anon_sym_f64] = ACTIONS(1507), - [anon_sym_c_char] = ACTIONS(1507), - [anon_sym_c_schar] = ACTIONS(1507), - [anon_sym_c_uchar] = ACTIONS(1507), - [anon_sym_c_short] = ACTIONS(1507), - [anon_sym_c_ushort] = ACTIONS(1507), - [anon_sym_c_int] = ACTIONS(1507), - [anon_sym_c_uint] = ACTIONS(1507), - [anon_sym_c_long] = ACTIONS(1507), - [anon_sym_c_ulong] = ACTIONS(1507), - [anon_sym_c_longlong] = ACTIONS(1507), - [anon_sym_c_ulonglong] = ACTIONS(1507), - [anon_sym_c_float] = ACTIONS(1507), - [anon_sym_c_double] = ACTIONS(1507), - [anon_sym_c_longdouble] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [anon_sym_orelse] = ACTIONS(1507), - [anon_sym_catch] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_LT_LT_PIPE] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1505), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1505), - }, - [STATE(2226)] = { - [sym_identifier] = ACTIONS(1641), - [anon_sym_func] = ACTIONS(1641), - [anon_sym_c_func] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_COMMA] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_struct_type_BANG] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1639), - [anon_sym_AT] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_void] = ACTIONS(1641), - [anon_sym_noreturn] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_anyopaque] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_int] = ACTIONS(1641), - [anon_sym_uint] = ACTIONS(1641), - [anon_sym_float] = ACTIONS(1641), - [anon_sym_range] = ACTIONS(1641), - [anon_sym_i8] = ACTIONS(1641), - [anon_sym_i16] = ACTIONS(1641), - [anon_sym_i32] = ACTIONS(1641), - [anon_sym_i64] = ACTIONS(1641), - [anon_sym_u8] = ACTIONS(1641), - [anon_sym_u16] = ACTIONS(1641), - [anon_sym_u32] = ACTIONS(1641), - [anon_sym_u64] = ACTIONS(1641), - [anon_sym_isize] = ACTIONS(1641), - [anon_sym_usize] = ACTIONS(1641), - [anon_sym_f32] = ACTIONS(1641), - [anon_sym_f64] = ACTIONS(1641), - [anon_sym_c_char] = ACTIONS(1641), - [anon_sym_c_schar] = ACTIONS(1641), - [anon_sym_c_uchar] = ACTIONS(1641), - [anon_sym_c_short] = ACTIONS(1641), - [anon_sym_c_ushort] = ACTIONS(1641), - [anon_sym_c_int] = ACTIONS(1641), - [anon_sym_c_uint] = ACTIONS(1641), - [anon_sym_c_long] = ACTIONS(1641), - [anon_sym_c_ulong] = ACTIONS(1641), - [anon_sym_c_longlong] = ACTIONS(1641), - [anon_sym_c_ulonglong] = ACTIONS(1641), - [anon_sym_c_float] = ACTIONS(1641), - [anon_sym_c_double] = ACTIONS(1641), - [anon_sym_c_longdouble] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), - [anon_sym_orelse] = ACTIONS(1641), - [anon_sym_catch] = ACTIONS(1641), - [anon_sym_or] = ACTIONS(1641), - [anon_sym_and] = ACTIONS(1641), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1641), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1641), - [anon_sym_GT_EQ] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1641), - [anon_sym_LT_LT] = ACTIONS(1641), - [anon_sym_GT_GT] = ACTIONS(1639), - [anon_sym_LT_LT_PIPE] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1639), - [anon_sym_SLASH] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1639), - }, - [STATE(2227)] = { - [sym_identifier] = ACTIONS(1645), - [anon_sym_func] = ACTIONS(1645), - [anon_sym_c_func] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_COMMA] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_struct_type_BANG] = ACTIONS(1643), - [anon_sym_QMARK] = ACTIONS(1643), - [anon_sym_AT] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(1645), - [anon_sym_noreturn] = ACTIONS(1645), - [anon_sym_type] = ACTIONS(1645), - [anon_sym_anyopaque] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_int] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_range] = ACTIONS(1645), - [anon_sym_i8] = ACTIONS(1645), - [anon_sym_i16] = ACTIONS(1645), - [anon_sym_i32] = ACTIONS(1645), - [anon_sym_i64] = ACTIONS(1645), - [anon_sym_u8] = ACTIONS(1645), - [anon_sym_u16] = ACTIONS(1645), - [anon_sym_u32] = ACTIONS(1645), - [anon_sym_u64] = ACTIONS(1645), - [anon_sym_isize] = ACTIONS(1645), - [anon_sym_usize] = ACTIONS(1645), - [anon_sym_f32] = ACTIONS(1645), - [anon_sym_f64] = ACTIONS(1645), - [anon_sym_c_char] = ACTIONS(1645), - [anon_sym_c_schar] = ACTIONS(1645), - [anon_sym_c_uchar] = ACTIONS(1645), - [anon_sym_c_short] = ACTIONS(1645), - [anon_sym_c_ushort] = ACTIONS(1645), - [anon_sym_c_int] = ACTIONS(1645), - [anon_sym_c_uint] = ACTIONS(1645), - [anon_sym_c_long] = ACTIONS(1645), - [anon_sym_c_ulong] = ACTIONS(1645), - [anon_sym_c_longlong] = ACTIONS(1645), - [anon_sym_c_ulonglong] = ACTIONS(1645), - [anon_sym_c_float] = ACTIONS(1645), - [anon_sym_c_double] = ACTIONS(1645), - [anon_sym_c_longdouble] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_orelse] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_or] = ACTIONS(1645), - [anon_sym_and] = ACTIONS(1645), - [anon_sym_EQ_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_xor] = ACTIONS(1645), - [anon_sym_LT_LT] = ACTIONS(1645), - [anon_sym_GT_GT] = ACTIONS(1643), - [anon_sym_LT_LT_PIPE] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_SLASH] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_CARET] = ACTIONS(1643), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1643), - }, - [STATE(2228)] = { - [sym_identifier] = ACTIONS(1649), - [anon_sym_func] = ACTIONS(1649), - [anon_sym_c_func] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_COMMA] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_struct_type_BANG] = ACTIONS(1647), - [anon_sym_QMARK] = ACTIONS(1647), - [anon_sym_AT] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_noreturn] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_anyopaque] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_range] = ACTIONS(1649), - [anon_sym_i8] = ACTIONS(1649), - [anon_sym_i16] = ACTIONS(1649), - [anon_sym_i32] = ACTIONS(1649), - [anon_sym_i64] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1649), - [anon_sym_u16] = ACTIONS(1649), - [anon_sym_u32] = ACTIONS(1649), - [anon_sym_u64] = ACTIONS(1649), - [anon_sym_isize] = ACTIONS(1649), - [anon_sym_usize] = ACTIONS(1649), - [anon_sym_f32] = ACTIONS(1649), - [anon_sym_f64] = ACTIONS(1649), - [anon_sym_c_char] = ACTIONS(1649), - [anon_sym_c_schar] = ACTIONS(1649), - [anon_sym_c_uchar] = ACTIONS(1649), - [anon_sym_c_short] = ACTIONS(1649), - [anon_sym_c_ushort] = ACTIONS(1649), - [anon_sym_c_int] = ACTIONS(1649), - [anon_sym_c_uint] = ACTIONS(1649), - [anon_sym_c_long] = ACTIONS(1649), - [anon_sym_c_ulong] = ACTIONS(1649), - [anon_sym_c_longlong] = ACTIONS(1649), - [anon_sym_c_ulonglong] = ACTIONS(1649), - [anon_sym_c_float] = ACTIONS(1649), - [anon_sym_c_double] = ACTIONS(1649), - [anon_sym_c_longdouble] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1647), - [anon_sym_orelse] = ACTIONS(1649), - [anon_sym_catch] = ACTIONS(1649), - [anon_sym_or] = ACTIONS(1649), - [anon_sym_and] = ACTIONS(1649), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1649), - [anon_sym_GT_EQ] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1649), - [anon_sym_LT_LT] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1647), - [anon_sym_LT_LT_PIPE] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(1649), - [anon_sym_CARET] = ACTIONS(1647), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1647), - }, - [STATE(2229)] = { - [sym_identifier] = ACTIONS(1805), - [anon_sym_func] = ACTIONS(1805), - [anon_sym_c_func] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_COMMA] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_struct_type_BANG] = ACTIONS(1803), - [anon_sym_QMARK] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_void] = ACTIONS(1805), - [anon_sym_noreturn] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_anyopaque] = ACTIONS(1805), - [anon_sym_bool] = ACTIONS(1805), - [anon_sym_int] = ACTIONS(1805), - [anon_sym_uint] = ACTIONS(1805), - [anon_sym_float] = ACTIONS(1805), - [anon_sym_range] = ACTIONS(1805), - [anon_sym_i8] = ACTIONS(1805), - [anon_sym_i16] = ACTIONS(1805), - [anon_sym_i32] = ACTIONS(1805), - [anon_sym_i64] = ACTIONS(1805), - [anon_sym_u8] = ACTIONS(1805), - [anon_sym_u16] = ACTIONS(1805), - [anon_sym_u32] = ACTIONS(1805), - [anon_sym_u64] = ACTIONS(1805), - [anon_sym_isize] = ACTIONS(1805), - [anon_sym_usize] = ACTIONS(1805), - [anon_sym_f32] = ACTIONS(1805), - [anon_sym_f64] = ACTIONS(1805), - [anon_sym_c_char] = ACTIONS(1805), - [anon_sym_c_schar] = ACTIONS(1805), - [anon_sym_c_uchar] = ACTIONS(1805), - [anon_sym_c_short] = ACTIONS(1805), - [anon_sym_c_ushort] = ACTIONS(1805), - [anon_sym_c_int] = ACTIONS(1805), - [anon_sym_c_uint] = ACTIONS(1805), - [anon_sym_c_long] = ACTIONS(1805), - [anon_sym_c_ulong] = ACTIONS(1805), - [anon_sym_c_longlong] = ACTIONS(1805), - [anon_sym_c_ulonglong] = ACTIONS(1805), - [anon_sym_c_float] = ACTIONS(1805), - [anon_sym_c_double] = ACTIONS(1805), - [anon_sym_c_longdouble] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1805), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), - [anon_sym_orelse] = ACTIONS(1805), - [anon_sym_catch] = ACTIONS(1805), - [anon_sym_or] = ACTIONS(1805), - [anon_sym_and] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_xor] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_LT_LT_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1803), - }, - [STATE(2230)] = { - [sym_identifier] = ACTIONS(1653), - [anon_sym_func] = ACTIONS(1653), - [anon_sym_c_func] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_struct_type_BANG] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_AT] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_noreturn] = ACTIONS(1653), - [anon_sym_type] = ACTIONS(1653), - [anon_sym_anyopaque] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_range] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_c_char] = ACTIONS(1653), - [anon_sym_c_schar] = ACTIONS(1653), - [anon_sym_c_uchar] = ACTIONS(1653), - [anon_sym_c_short] = ACTIONS(1653), - [anon_sym_c_ushort] = ACTIONS(1653), - [anon_sym_c_int] = ACTIONS(1653), - [anon_sym_c_uint] = ACTIONS(1653), - [anon_sym_c_long] = ACTIONS(1653), - [anon_sym_c_ulong] = ACTIONS(1653), - [anon_sym_c_longlong] = ACTIONS(1653), - [anon_sym_c_ulonglong] = ACTIONS(1653), - [anon_sym_c_float] = ACTIONS(1653), - [anon_sym_c_double] = ACTIONS(1653), - [anon_sym_c_longdouble] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1651), - [anon_sym_orelse] = ACTIONS(1653), - [anon_sym_catch] = ACTIONS(1653), - [anon_sym_or] = ACTIONS(1653), - [anon_sym_and] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_xor] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1651), - [anon_sym_LT_LT_PIPE] = ACTIONS(1651), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_SLASH] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_CARET] = ACTIONS(1651), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1651), - }, - [STATE(2231)] = { - [sym_identifier] = ACTIONS(1657), - [anon_sym_func] = ACTIONS(1657), - [anon_sym_c_func] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_struct_type_BANG] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_noreturn] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_anyopaque] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_range] = ACTIONS(1657), - [anon_sym_i8] = ACTIONS(1657), - [anon_sym_i16] = ACTIONS(1657), - [anon_sym_i32] = ACTIONS(1657), - [anon_sym_i64] = ACTIONS(1657), - [anon_sym_u8] = ACTIONS(1657), - [anon_sym_u16] = ACTIONS(1657), - [anon_sym_u32] = ACTIONS(1657), - [anon_sym_u64] = ACTIONS(1657), - [anon_sym_isize] = ACTIONS(1657), - [anon_sym_usize] = ACTIONS(1657), - [anon_sym_f32] = ACTIONS(1657), - [anon_sym_f64] = ACTIONS(1657), - [anon_sym_c_char] = ACTIONS(1657), - [anon_sym_c_schar] = ACTIONS(1657), - [anon_sym_c_uchar] = ACTIONS(1657), - [anon_sym_c_short] = ACTIONS(1657), - [anon_sym_c_ushort] = ACTIONS(1657), - [anon_sym_c_int] = ACTIONS(1657), - [anon_sym_c_uint] = ACTIONS(1657), - [anon_sym_c_long] = ACTIONS(1657), - [anon_sym_c_ulong] = ACTIONS(1657), - [anon_sym_c_longlong] = ACTIONS(1657), - [anon_sym_c_ulonglong] = ACTIONS(1657), - [anon_sym_c_float] = ACTIONS(1657), - [anon_sym_c_double] = ACTIONS(1657), - [anon_sym_c_longdouble] = ACTIONS(1657), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1655), - [anon_sym_orelse] = ACTIONS(1657), - [anon_sym_catch] = ACTIONS(1657), - [anon_sym_or] = ACTIONS(1657), - [anon_sym_and] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_xor] = ACTIONS(1657), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_LT_LT_PIPE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1655), - }, - [STATE(2232)] = { - [sym_identifier] = ACTIONS(1661), - [anon_sym_func] = ACTIONS(1661), - [anon_sym_c_func] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_struct_type_BANG] = ACTIONS(1659), - [anon_sym_QMARK] = ACTIONS(1659), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_noreturn] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_anyopaque] = ACTIONS(1661), - [anon_sym_bool] = ACTIONS(1661), - [anon_sym_int] = ACTIONS(1661), - [anon_sym_uint] = ACTIONS(1661), - [anon_sym_float] = ACTIONS(1661), - [anon_sym_range] = ACTIONS(1661), - [anon_sym_i8] = ACTIONS(1661), - [anon_sym_i16] = ACTIONS(1661), - [anon_sym_i32] = ACTIONS(1661), - [anon_sym_i64] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1661), - [anon_sym_u16] = ACTIONS(1661), - [anon_sym_u32] = ACTIONS(1661), - [anon_sym_u64] = ACTIONS(1661), - [anon_sym_isize] = ACTIONS(1661), - [anon_sym_usize] = ACTIONS(1661), - [anon_sym_f32] = ACTIONS(1661), - [anon_sym_f64] = ACTIONS(1661), - [anon_sym_c_char] = ACTIONS(1661), - [anon_sym_c_schar] = ACTIONS(1661), - [anon_sym_c_uchar] = ACTIONS(1661), - [anon_sym_c_short] = ACTIONS(1661), - [anon_sym_c_ushort] = ACTIONS(1661), - [anon_sym_c_int] = ACTIONS(1661), - [anon_sym_c_uint] = ACTIONS(1661), - [anon_sym_c_long] = ACTIONS(1661), - [anon_sym_c_ulong] = ACTIONS(1661), - [anon_sym_c_longlong] = ACTIONS(1661), - [anon_sym_c_ulonglong] = ACTIONS(1661), - [anon_sym_c_float] = ACTIONS(1661), - [anon_sym_c_double] = ACTIONS(1661), - [anon_sym_c_longdouble] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_orelse] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_or] = ACTIONS(1661), - [anon_sym_and] = ACTIONS(1661), - [anon_sym_EQ_EQ] = ACTIONS(1659), - [anon_sym_BANG_EQ] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_xor] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(1661), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_LT_LT_PIPE] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_SLASH] = ACTIONS(1659), - [anon_sym_DOT] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1659), - }, - [STATE(2233)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_c_func] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_struct_type_BANG] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(2234)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_c_func] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(5607), - [anon_sym_catch] = ACTIONS(5609), - [anon_sym_or] = ACTIONS(5611), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(2235)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(5621), - [anon_sym_func] = ACTIONS(5621), - [anon_sym_c_func] = ACTIONS(5621), - [anon_sym_struct] = ACTIONS(5621), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(5623), - [anon_sym_RBRACE] = ACTIONS(5623), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(5623), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(5623), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(5621), - [anon_sym_noreturn] = ACTIONS(5621), - [anon_sym_type] = ACTIONS(5621), - [anon_sym_anyopaque] = ACTIONS(5621), - [anon_sym_bool] = ACTIONS(5621), - [anon_sym_int] = ACTIONS(5621), - [anon_sym_uint] = ACTIONS(5621), - [anon_sym_float] = ACTIONS(5621), - [anon_sym_range] = ACTIONS(5621), - [anon_sym_i8] = ACTIONS(5621), - [anon_sym_i16] = ACTIONS(5621), - [anon_sym_i32] = ACTIONS(5621), - [anon_sym_i64] = ACTIONS(5621), - [anon_sym_u8] = ACTIONS(5621), - [anon_sym_u16] = ACTIONS(5621), - [anon_sym_u32] = ACTIONS(5621), - [anon_sym_u64] = ACTIONS(5621), - [anon_sym_isize] = ACTIONS(5621), - [anon_sym_usize] = ACTIONS(5621), - [anon_sym_f32] = ACTIONS(5621), - [anon_sym_f64] = ACTIONS(5621), - [anon_sym_c_char] = ACTIONS(5621), - [anon_sym_c_schar] = ACTIONS(5621), - [anon_sym_c_uchar] = ACTIONS(5621), - [anon_sym_c_short] = ACTIONS(5621), - [anon_sym_c_ushort] = ACTIONS(5621), - [anon_sym_c_int] = ACTIONS(5621), - [anon_sym_c_uint] = ACTIONS(5621), - [anon_sym_c_long] = ACTIONS(5621), - [anon_sym_c_ulong] = ACTIONS(5621), - [anon_sym_c_longlong] = ACTIONS(5621), - [anon_sym_c_ulonglong] = ACTIONS(5621), - [anon_sym_c_float] = ACTIONS(5621), - [anon_sym_c_double] = ACTIONS(5621), - [anon_sym_c_longdouble] = ACTIONS(5621), - [anon_sym_DOT_DOT] = ACTIONS(5625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5627), - [anon_sym_orelse] = ACTIONS(5607), - [anon_sym_catch] = ACTIONS(5609), - [anon_sym_or] = ACTIONS(5611), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5623), - }, - [STATE(2236)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_c_func] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(5611), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(2237)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1486), - [anon_sym_func] = ACTIONS(1486), - [anon_sym_c_func] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1484), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_anyopaque] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_int] = ACTIONS(1486), - [anon_sym_uint] = ACTIONS(1486), - [anon_sym_float] = ACTIONS(1486), - [anon_sym_range] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_c_char] = ACTIONS(1486), - [anon_sym_c_schar] = ACTIONS(1486), - [anon_sym_c_uchar] = ACTIONS(1486), - [anon_sym_c_short] = ACTIONS(1486), - [anon_sym_c_ushort] = ACTIONS(1486), - [anon_sym_c_int] = ACTIONS(1486), - [anon_sym_c_uint] = ACTIONS(1486), - [anon_sym_c_long] = ACTIONS(1486), - [anon_sym_c_ulong] = ACTIONS(1486), - [anon_sym_c_longlong] = ACTIONS(1486), - [anon_sym_c_ulonglong] = ACTIONS(1486), - [anon_sym_c_float] = ACTIONS(1486), - [anon_sym_c_double] = ACTIONS(1486), - [anon_sym_c_longdouble] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_orelse] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1484), - }, - [STATE(2238)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1486), - [anon_sym_func] = ACTIONS(1486), - [anon_sym_c_func] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1484), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_anyopaque] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_int] = ACTIONS(1486), - [anon_sym_uint] = ACTIONS(1486), - [anon_sym_float] = ACTIONS(1486), - [anon_sym_range] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_c_char] = ACTIONS(1486), - [anon_sym_c_schar] = ACTIONS(1486), - [anon_sym_c_uchar] = ACTIONS(1486), - [anon_sym_c_short] = ACTIONS(1486), - [anon_sym_c_ushort] = ACTIONS(1486), - [anon_sym_c_int] = ACTIONS(1486), - [anon_sym_c_uint] = ACTIONS(1486), - [anon_sym_c_long] = ACTIONS(1486), - [anon_sym_c_ulong] = ACTIONS(1486), - [anon_sym_c_longlong] = ACTIONS(1486), - [anon_sym_c_ulonglong] = ACTIONS(1486), - [anon_sym_c_float] = ACTIONS(1486), - [anon_sym_c_double] = ACTIONS(1486), - [anon_sym_c_longdouble] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_orelse] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1484), - }, - [STATE(2239)] = { - [sym_identifier] = ACTIONS(1665), - [anon_sym_func] = ACTIONS(1665), - [anon_sym_c_func] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_COMMA] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_struct_type_BANG] = ACTIONS(1663), - [anon_sym_QMARK] = ACTIONS(1663), - [anon_sym_AT] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1665), - [anon_sym_noreturn] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_anyopaque] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_int] = ACTIONS(1665), - [anon_sym_uint] = ACTIONS(1665), - [anon_sym_float] = ACTIONS(1665), - [anon_sym_range] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_c_char] = ACTIONS(1665), - [anon_sym_c_schar] = ACTIONS(1665), - [anon_sym_c_uchar] = ACTIONS(1665), - [anon_sym_c_short] = ACTIONS(1665), - [anon_sym_c_ushort] = ACTIONS(1665), - [anon_sym_c_int] = ACTIONS(1665), - [anon_sym_c_uint] = ACTIONS(1665), - [anon_sym_c_long] = ACTIONS(1665), - [anon_sym_c_ulong] = ACTIONS(1665), - [anon_sym_c_longlong] = ACTIONS(1665), - [anon_sym_c_ulonglong] = ACTIONS(1665), - [anon_sym_c_float] = ACTIONS(1665), - [anon_sym_c_double] = ACTIONS(1665), - [anon_sym_c_longdouble] = ACTIONS(1665), - [anon_sym_DOT_DOT] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1663), - [anon_sym_orelse] = ACTIONS(1665), - [anon_sym_catch] = ACTIONS(1665), - [anon_sym_or] = ACTIONS(1665), - [anon_sym_and] = ACTIONS(1665), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1665), - [anon_sym_GT_EQ] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1663), - [anon_sym_LT_LT_PIPE] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1663), - [anon_sym_DOT] = ACTIONS(1665), - [anon_sym_CARET] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1663), - }, - [STATE(2240)] = { - [sym_identifier] = ACTIONS(1669), - [anon_sym_func] = ACTIONS(1669), - [anon_sym_c_func] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_COMMA] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_struct_type_BANG] = ACTIONS(1667), - [anon_sym_QMARK] = ACTIONS(1667), - [anon_sym_AT] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_void] = ACTIONS(1669), - [anon_sym_noreturn] = ACTIONS(1669), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_anyopaque] = ACTIONS(1669), - [anon_sym_bool] = ACTIONS(1669), - [anon_sym_int] = ACTIONS(1669), - [anon_sym_uint] = ACTIONS(1669), - [anon_sym_float] = ACTIONS(1669), - [anon_sym_range] = ACTIONS(1669), - [anon_sym_i8] = ACTIONS(1669), - [anon_sym_i16] = ACTIONS(1669), - [anon_sym_i32] = ACTIONS(1669), - [anon_sym_i64] = ACTIONS(1669), - [anon_sym_u8] = ACTIONS(1669), - [anon_sym_u16] = ACTIONS(1669), - [anon_sym_u32] = ACTIONS(1669), - [anon_sym_u64] = ACTIONS(1669), - [anon_sym_isize] = ACTIONS(1669), - [anon_sym_usize] = ACTIONS(1669), - [anon_sym_f32] = ACTIONS(1669), - [anon_sym_f64] = ACTIONS(1669), - [anon_sym_c_char] = ACTIONS(1669), - [anon_sym_c_schar] = ACTIONS(1669), - [anon_sym_c_uchar] = ACTIONS(1669), - [anon_sym_c_short] = ACTIONS(1669), - [anon_sym_c_ushort] = ACTIONS(1669), - [anon_sym_c_int] = ACTIONS(1669), - [anon_sym_c_uint] = ACTIONS(1669), - [anon_sym_c_long] = ACTIONS(1669), - [anon_sym_c_ulong] = ACTIONS(1669), - [anon_sym_c_longlong] = ACTIONS(1669), - [anon_sym_c_ulonglong] = ACTIONS(1669), - [anon_sym_c_float] = ACTIONS(1669), - [anon_sym_c_double] = ACTIONS(1669), - [anon_sym_c_longdouble] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_orelse] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1669), - [anon_sym_GT_GT] = ACTIONS(1667), - [anon_sym_LT_LT_PIPE] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1667), - }, - [STATE(2241)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_c_func] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(2242)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_c_func] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_struct_type_BANG] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(2243)] = { - [sym_identifier] = ACTIONS(1673), - [anon_sym_func] = ACTIONS(1673), - [anon_sym_c_func] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_COMMA] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_struct_type_BANG] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1671), - [anon_sym_AT] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_void] = ACTIONS(1673), - [anon_sym_noreturn] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_anyopaque] = ACTIONS(1673), - [anon_sym_bool] = ACTIONS(1673), - [anon_sym_int] = ACTIONS(1673), - [anon_sym_uint] = ACTIONS(1673), - [anon_sym_float] = ACTIONS(1673), - [anon_sym_range] = ACTIONS(1673), - [anon_sym_i8] = ACTIONS(1673), - [anon_sym_i16] = ACTIONS(1673), - [anon_sym_i32] = ACTIONS(1673), - [anon_sym_i64] = ACTIONS(1673), - [anon_sym_u8] = ACTIONS(1673), - [anon_sym_u16] = ACTIONS(1673), - [anon_sym_u32] = ACTIONS(1673), - [anon_sym_u64] = ACTIONS(1673), - [anon_sym_isize] = ACTIONS(1673), - [anon_sym_usize] = ACTIONS(1673), - [anon_sym_f32] = ACTIONS(1673), - [anon_sym_f64] = ACTIONS(1673), - [anon_sym_c_char] = ACTIONS(1673), - [anon_sym_c_schar] = ACTIONS(1673), - [anon_sym_c_uchar] = ACTIONS(1673), - [anon_sym_c_short] = ACTIONS(1673), - [anon_sym_c_ushort] = ACTIONS(1673), - [anon_sym_c_int] = ACTIONS(1673), - [anon_sym_c_uint] = ACTIONS(1673), - [anon_sym_c_long] = ACTIONS(1673), - [anon_sym_c_ulong] = ACTIONS(1673), - [anon_sym_c_longlong] = ACTIONS(1673), - [anon_sym_c_ulonglong] = ACTIONS(1673), - [anon_sym_c_float] = ACTIONS(1673), - [anon_sym_c_double] = ACTIONS(1673), - [anon_sym_c_longdouble] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [anon_sym_orelse] = ACTIONS(1673), - [anon_sym_catch] = ACTIONS(1673), - [anon_sym_or] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1673), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1673), - [anon_sym_LT_LT] = ACTIONS(1673), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_LT_LT_PIPE] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(1671), - [anon_sym_DOT] = ACTIONS(1673), - [anon_sym_CARET] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1671), - }, - [STATE(2244)] = { - [sym_identifier] = ACTIONS(1975), - [anon_sym_func] = ACTIONS(1975), - [anon_sym_c_func] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_struct] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_struct_type_BANG] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1973), - [anon_sym_AT] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1975), - [anon_sym_noreturn] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_anyopaque] = ACTIONS(1975), - [anon_sym_bool] = ACTIONS(1975), - [anon_sym_int] = ACTIONS(1975), - [anon_sym_uint] = ACTIONS(1975), - [anon_sym_float] = ACTIONS(1975), - [anon_sym_range] = ACTIONS(1975), - [anon_sym_i8] = ACTIONS(1975), - [anon_sym_i16] = ACTIONS(1975), - [anon_sym_i32] = ACTIONS(1975), - [anon_sym_i64] = ACTIONS(1975), - [anon_sym_u8] = ACTIONS(1975), - [anon_sym_u16] = ACTIONS(1975), - [anon_sym_u32] = ACTIONS(1975), - [anon_sym_u64] = ACTIONS(1975), - [anon_sym_isize] = ACTIONS(1975), - [anon_sym_usize] = ACTIONS(1975), - [anon_sym_f32] = ACTIONS(1975), - [anon_sym_f64] = ACTIONS(1975), - [anon_sym_c_char] = ACTIONS(1975), - [anon_sym_c_schar] = ACTIONS(1975), - [anon_sym_c_uchar] = ACTIONS(1975), - [anon_sym_c_short] = ACTIONS(1975), - [anon_sym_c_ushort] = ACTIONS(1975), - [anon_sym_c_int] = ACTIONS(1975), - [anon_sym_c_uint] = ACTIONS(1975), - [anon_sym_c_long] = ACTIONS(1975), - [anon_sym_c_ulong] = ACTIONS(1975), - [anon_sym_c_longlong] = ACTIONS(1975), - [anon_sym_c_ulonglong] = ACTIONS(1975), - [anon_sym_c_float] = ACTIONS(1975), - [anon_sym_c_double] = ACTIONS(1975), - [anon_sym_c_longdouble] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), - [anon_sym_orelse] = ACTIONS(1975), - [anon_sym_catch] = ACTIONS(1975), - [anon_sym_or] = ACTIONS(1975), - [anon_sym_and] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1973), - [anon_sym_BANG_EQ] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_EQ] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - [anon_sym_xor] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1973), - [anon_sym_LT_LT_PIPE] = ACTIONS(1973), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1973), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1973), - }, - [STATE(2245)] = { - [sym_identifier] = ACTIONS(1501), - [anon_sym_func] = ACTIONS(1501), - [anon_sym_c_func] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_struct_type_BANG] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_AT] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1501), - [anon_sym_noreturn] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_anyopaque] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_int] = ACTIONS(1501), - [anon_sym_uint] = ACTIONS(1501), - [anon_sym_float] = ACTIONS(1501), - [anon_sym_range] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_c_char] = ACTIONS(1501), - [anon_sym_c_schar] = ACTIONS(1501), - [anon_sym_c_uchar] = ACTIONS(1501), - [anon_sym_c_short] = ACTIONS(1501), - [anon_sym_c_ushort] = ACTIONS(1501), - [anon_sym_c_int] = ACTIONS(1501), - [anon_sym_c_uint] = ACTIONS(1501), - [anon_sym_c_long] = ACTIONS(1501), - [anon_sym_c_ulong] = ACTIONS(1501), - [anon_sym_c_longlong] = ACTIONS(1501), - [anon_sym_c_ulonglong] = ACTIONS(1501), - [anon_sym_c_float] = ACTIONS(1501), - [anon_sym_c_double] = ACTIONS(1501), - [anon_sym_c_longdouble] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_orelse] = ACTIONS(1501), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1501), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_xor] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_LT_LT_PIPE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(5629), - [anon_sym_CARET] = ACTIONS(1499), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1499), - }, - [STATE(2246)] = { - [sym_identifier] = ACTIONS(1749), - [anon_sym_func] = ACTIONS(1749), - [anon_sym_c_func] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_COMMA] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_struct_type_BANG] = ACTIONS(1747), - [anon_sym_QMARK] = ACTIONS(1747), - [anon_sym_AT] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_void] = ACTIONS(1749), - [anon_sym_noreturn] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_anyopaque] = ACTIONS(1749), - [anon_sym_bool] = ACTIONS(1749), - [anon_sym_int] = ACTIONS(1749), - [anon_sym_uint] = ACTIONS(1749), - [anon_sym_float] = ACTIONS(1749), - [anon_sym_range] = ACTIONS(1749), - [anon_sym_i8] = ACTIONS(1749), - [anon_sym_i16] = ACTIONS(1749), - [anon_sym_i32] = ACTIONS(1749), - [anon_sym_i64] = ACTIONS(1749), - [anon_sym_u8] = ACTIONS(1749), - [anon_sym_u16] = ACTIONS(1749), - [anon_sym_u32] = ACTIONS(1749), - [anon_sym_u64] = ACTIONS(1749), - [anon_sym_isize] = ACTIONS(1749), - [anon_sym_usize] = ACTIONS(1749), - [anon_sym_f32] = ACTIONS(1749), - [anon_sym_f64] = ACTIONS(1749), - [anon_sym_c_char] = ACTIONS(1749), - [anon_sym_c_schar] = ACTIONS(1749), - [anon_sym_c_uchar] = ACTIONS(1749), - [anon_sym_c_short] = ACTIONS(1749), - [anon_sym_c_ushort] = ACTIONS(1749), - [anon_sym_c_int] = ACTIONS(1749), - [anon_sym_c_uint] = ACTIONS(1749), - [anon_sym_c_long] = ACTIONS(1749), - [anon_sym_c_ulong] = ACTIONS(1749), - [anon_sym_c_longlong] = ACTIONS(1749), - [anon_sym_c_ulonglong] = ACTIONS(1749), - [anon_sym_c_float] = ACTIONS(1749), - [anon_sym_c_double] = ACTIONS(1749), - [anon_sym_c_longdouble] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1747), - [anon_sym_orelse] = ACTIONS(1749), - [anon_sym_catch] = ACTIONS(1749), - [anon_sym_or] = ACTIONS(1749), - [anon_sym_and] = ACTIONS(1749), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1749), - [anon_sym_LT_LT] = ACTIONS(1749), - [anon_sym_GT_GT] = ACTIONS(1747), - [anon_sym_LT_LT_PIPE] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_SLASH] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(1749), - [anon_sym_CARET] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1747), - }, - [STATE(2247)] = { - [sym_identifier] = ACTIONS(1753), - [anon_sym_func] = ACTIONS(1753), - [anon_sym_c_func] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_struct_type_BANG] = ACTIONS(1751), - [anon_sym_QMARK] = ACTIONS(1751), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_noreturn] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_anyopaque] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_int] = ACTIONS(1753), - [anon_sym_uint] = ACTIONS(1753), - [anon_sym_float] = ACTIONS(1753), - [anon_sym_range] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_c_char] = ACTIONS(1753), - [anon_sym_c_schar] = ACTIONS(1753), - [anon_sym_c_uchar] = ACTIONS(1753), - [anon_sym_c_short] = ACTIONS(1753), - [anon_sym_c_ushort] = ACTIONS(1753), - [anon_sym_c_int] = ACTIONS(1753), - [anon_sym_c_uint] = ACTIONS(1753), - [anon_sym_c_long] = ACTIONS(1753), - [anon_sym_c_ulong] = ACTIONS(1753), - [anon_sym_c_longlong] = ACTIONS(1753), - [anon_sym_c_ulonglong] = ACTIONS(1753), - [anon_sym_c_float] = ACTIONS(1753), - [anon_sym_c_double] = ACTIONS(1753), - [anon_sym_c_longdouble] = ACTIONS(1753), - [anon_sym_DOT_DOT] = ACTIONS(1753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), - [anon_sym_orelse] = ACTIONS(1753), - [anon_sym_catch] = ACTIONS(1753), - [anon_sym_or] = ACTIONS(1753), - [anon_sym_and] = ACTIONS(1753), - [anon_sym_EQ_EQ] = ACTIONS(1751), - [anon_sym_BANG_EQ] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_xor] = ACTIONS(1753), - [anon_sym_LT_LT] = ACTIONS(1753), - [anon_sym_GT_GT] = ACTIONS(1751), - [anon_sym_LT_LT_PIPE] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_SLASH] = ACTIONS(1751), - [anon_sym_DOT] = ACTIONS(1753), - [anon_sym_CARET] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1751), - }, - [STATE(2248)] = { - [sym_identifier] = ACTIONS(1757), - [anon_sym_func] = ACTIONS(1757), - [anon_sym_c_func] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_struct_type_BANG] = ACTIONS(1755), - [anon_sym_QMARK] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_void] = ACTIONS(1757), - [anon_sym_noreturn] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_anyopaque] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_int] = ACTIONS(1757), - [anon_sym_uint] = ACTIONS(1757), - [anon_sym_float] = ACTIONS(1757), - [anon_sym_range] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_c_char] = ACTIONS(1757), - [anon_sym_c_schar] = ACTIONS(1757), - [anon_sym_c_uchar] = ACTIONS(1757), - [anon_sym_c_short] = ACTIONS(1757), - [anon_sym_c_ushort] = ACTIONS(1757), - [anon_sym_c_int] = ACTIONS(1757), - [anon_sym_c_uint] = ACTIONS(1757), - [anon_sym_c_long] = ACTIONS(1757), - [anon_sym_c_ulong] = ACTIONS(1757), - [anon_sym_c_longlong] = ACTIONS(1757), - [anon_sym_c_ulonglong] = ACTIONS(1757), - [anon_sym_c_float] = ACTIONS(1757), - [anon_sym_c_double] = ACTIONS(1757), - [anon_sym_c_longdouble] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_orelse] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_or] = ACTIONS(1757), - [anon_sym_and] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1755), - [anon_sym_BANG_EQ] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_EQ] = ACTIONS(1755), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_xor] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1755), - [anon_sym_LT_LT_PIPE] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1755), - }, - [STATE(2249)] = { - [sym_identifier] = ACTIONS(1761), - [anon_sym_func] = ACTIONS(1761), - [anon_sym_c_func] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_struct_type_BANG] = ACTIONS(1759), - [anon_sym_QMARK] = ACTIONS(1759), - [anon_sym_AT] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_void] = ACTIONS(1761), - [anon_sym_noreturn] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_anyopaque] = ACTIONS(1761), - [anon_sym_bool] = ACTIONS(1761), - [anon_sym_int] = ACTIONS(1761), - [anon_sym_uint] = ACTIONS(1761), - [anon_sym_float] = ACTIONS(1761), - [anon_sym_range] = ACTIONS(1761), - [anon_sym_i8] = ACTIONS(1761), - [anon_sym_i16] = ACTIONS(1761), - [anon_sym_i32] = ACTIONS(1761), - [anon_sym_i64] = ACTIONS(1761), - [anon_sym_u8] = ACTIONS(1761), - [anon_sym_u16] = ACTIONS(1761), - [anon_sym_u32] = ACTIONS(1761), - [anon_sym_u64] = ACTIONS(1761), - [anon_sym_isize] = ACTIONS(1761), - [anon_sym_usize] = ACTIONS(1761), - [anon_sym_f32] = ACTIONS(1761), - [anon_sym_f64] = ACTIONS(1761), - [anon_sym_c_char] = ACTIONS(1761), - [anon_sym_c_schar] = ACTIONS(1761), - [anon_sym_c_uchar] = ACTIONS(1761), - [anon_sym_c_short] = ACTIONS(1761), - [anon_sym_c_ushort] = ACTIONS(1761), - [anon_sym_c_int] = ACTIONS(1761), - [anon_sym_c_uint] = ACTIONS(1761), - [anon_sym_c_long] = ACTIONS(1761), - [anon_sym_c_ulong] = ACTIONS(1761), - [anon_sym_c_longlong] = ACTIONS(1761), - [anon_sym_c_ulonglong] = ACTIONS(1761), - [anon_sym_c_float] = ACTIONS(1761), - [anon_sym_c_double] = ACTIONS(1761), - [anon_sym_c_longdouble] = ACTIONS(1761), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_orelse] = ACTIONS(1761), - [anon_sym_catch] = ACTIONS(1761), - [anon_sym_or] = ACTIONS(1761), - [anon_sym_and] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1759), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_xor] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(1761), - [anon_sym_GT_GT] = ACTIONS(1759), - [anon_sym_LT_LT_PIPE] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_SLASH] = ACTIONS(1759), - [anon_sym_DOT] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1759), - }, - [STATE(2250)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1409), - [anon_sym_func] = ACTIONS(1409), - [anon_sym_c_func] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_anyopaque] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_range] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_c_char] = ACTIONS(1409), - [anon_sym_c_schar] = ACTIONS(1409), - [anon_sym_c_uchar] = ACTIONS(1409), - [anon_sym_c_short] = ACTIONS(1409), - [anon_sym_c_ushort] = ACTIONS(1409), - [anon_sym_c_int] = ACTIONS(1409), - [anon_sym_c_uint] = ACTIONS(1409), - [anon_sym_c_long] = ACTIONS(1409), - [anon_sym_c_ulong] = ACTIONS(1409), - [anon_sym_c_longlong] = ACTIONS(1409), - [anon_sym_c_ulonglong] = ACTIONS(1409), - [anon_sym_c_float] = ACTIONS(1409), - [anon_sym_c_double] = ACTIONS(1409), - [anon_sym_c_longdouble] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_orelse] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_or] = ACTIONS(1409), - [anon_sym_and] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1407), - }, - [STATE(2251)] = { - [sym_identifier] = ACTIONS(1979), - [anon_sym_func] = ACTIONS(1979), - [anon_sym_c_func] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_struct] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1977), - [anon_sym_struct_type_BANG] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1977), - [anon_sym_AT] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_void] = ACTIONS(1979), - [anon_sym_noreturn] = ACTIONS(1979), - [anon_sym_type] = ACTIONS(1979), - [anon_sym_anyopaque] = ACTIONS(1979), - [anon_sym_bool] = ACTIONS(1979), - [anon_sym_int] = ACTIONS(1979), - [anon_sym_uint] = ACTIONS(1979), - [anon_sym_float] = ACTIONS(1979), - [anon_sym_range] = ACTIONS(1979), - [anon_sym_i8] = ACTIONS(1979), - [anon_sym_i16] = ACTIONS(1979), - [anon_sym_i32] = ACTIONS(1979), - [anon_sym_i64] = ACTIONS(1979), - [anon_sym_u8] = ACTIONS(1979), - [anon_sym_u16] = ACTIONS(1979), - [anon_sym_u32] = ACTIONS(1979), - [anon_sym_u64] = ACTIONS(1979), - [anon_sym_isize] = ACTIONS(1979), - [anon_sym_usize] = ACTIONS(1979), - [anon_sym_f32] = ACTIONS(1979), - [anon_sym_f64] = ACTIONS(1979), - [anon_sym_c_char] = ACTIONS(1979), - [anon_sym_c_schar] = ACTIONS(1979), - [anon_sym_c_uchar] = ACTIONS(1979), - [anon_sym_c_short] = ACTIONS(1979), - [anon_sym_c_ushort] = ACTIONS(1979), - [anon_sym_c_int] = ACTIONS(1979), - [anon_sym_c_uint] = ACTIONS(1979), - [anon_sym_c_long] = ACTIONS(1979), - [anon_sym_c_ulong] = ACTIONS(1979), - [anon_sym_c_longlong] = ACTIONS(1979), - [anon_sym_c_ulonglong] = ACTIONS(1979), - [anon_sym_c_float] = ACTIONS(1979), - [anon_sym_c_double] = ACTIONS(1979), - [anon_sym_c_longdouble] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1977), - [anon_sym_orelse] = ACTIONS(1979), - [anon_sym_catch] = ACTIONS(1979), - [anon_sym_or] = ACTIONS(1979), - [anon_sym_and] = ACTIONS(1979), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_AMP] = ACTIONS(1977), - [anon_sym_xor] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1979), - [anon_sym_GT_GT] = ACTIONS(1977), - [anon_sym_LT_LT_PIPE] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1977), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1977), - }, - [STATE(2252)] = { - [sym_identifier] = ACTIONS(1677), - [anon_sym_func] = ACTIONS(1677), - [anon_sym_c_func] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_struct_type_BANG] = ACTIONS(1675), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_AT] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_void] = ACTIONS(1677), - [anon_sym_noreturn] = ACTIONS(1677), - [anon_sym_type] = ACTIONS(1677), - [anon_sym_anyopaque] = ACTIONS(1677), - [anon_sym_bool] = ACTIONS(1677), - [anon_sym_int] = ACTIONS(1677), - [anon_sym_uint] = ACTIONS(1677), - [anon_sym_float] = ACTIONS(1677), - [anon_sym_range] = ACTIONS(1677), - [anon_sym_i8] = ACTIONS(1677), - [anon_sym_i16] = ACTIONS(1677), - [anon_sym_i32] = ACTIONS(1677), - [anon_sym_i64] = ACTIONS(1677), - [anon_sym_u8] = ACTIONS(1677), - [anon_sym_u16] = ACTIONS(1677), - [anon_sym_u32] = ACTIONS(1677), - [anon_sym_u64] = ACTIONS(1677), - [anon_sym_isize] = ACTIONS(1677), - [anon_sym_usize] = ACTIONS(1677), - [anon_sym_f32] = ACTIONS(1677), - [anon_sym_f64] = ACTIONS(1677), - [anon_sym_c_char] = ACTIONS(1677), - [anon_sym_c_schar] = ACTIONS(1677), - [anon_sym_c_uchar] = ACTIONS(1677), - [anon_sym_c_short] = ACTIONS(1677), - [anon_sym_c_ushort] = ACTIONS(1677), - [anon_sym_c_int] = ACTIONS(1677), - [anon_sym_c_uint] = ACTIONS(1677), - [anon_sym_c_long] = ACTIONS(1677), - [anon_sym_c_ulong] = ACTIONS(1677), - [anon_sym_c_longlong] = ACTIONS(1677), - [anon_sym_c_ulonglong] = ACTIONS(1677), - [anon_sym_c_float] = ACTIONS(1677), - [anon_sym_c_double] = ACTIONS(1677), - [anon_sym_c_longdouble] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_orelse] = ACTIONS(1677), - [anon_sym_catch] = ACTIONS(1677), - [anon_sym_or] = ACTIONS(1677), - [anon_sym_and] = ACTIONS(1677), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1677), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1677), - [anon_sym_GT_EQ] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1677), - [anon_sym_LT_LT] = ACTIONS(1677), - [anon_sym_GT_GT] = ACTIONS(1675), - [anon_sym_LT_LT_PIPE] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_SLASH] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(1677), - [anon_sym_CARET] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1675), - }, - [STATE(2253)] = { - [sym_identifier] = ACTIONS(1681), - [anon_sym_func] = ACTIONS(1681), - [anon_sym_c_func] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_COMMA] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_struct_type_BANG] = ACTIONS(1679), - [anon_sym_QMARK] = ACTIONS(1679), - [anon_sym_AT] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_void] = ACTIONS(1681), - [anon_sym_noreturn] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_anyopaque] = ACTIONS(1681), - [anon_sym_bool] = ACTIONS(1681), - [anon_sym_int] = ACTIONS(1681), - [anon_sym_uint] = ACTIONS(1681), - [anon_sym_float] = ACTIONS(1681), - [anon_sym_range] = ACTIONS(1681), - [anon_sym_i8] = ACTIONS(1681), - [anon_sym_i16] = ACTIONS(1681), - [anon_sym_i32] = ACTIONS(1681), - [anon_sym_i64] = ACTIONS(1681), - [anon_sym_u8] = ACTIONS(1681), - [anon_sym_u16] = ACTIONS(1681), - [anon_sym_u32] = ACTIONS(1681), - [anon_sym_u64] = ACTIONS(1681), - [anon_sym_isize] = ACTIONS(1681), - [anon_sym_usize] = ACTIONS(1681), - [anon_sym_f32] = ACTIONS(1681), - [anon_sym_f64] = ACTIONS(1681), - [anon_sym_c_char] = ACTIONS(1681), - [anon_sym_c_schar] = ACTIONS(1681), - [anon_sym_c_uchar] = ACTIONS(1681), - [anon_sym_c_short] = ACTIONS(1681), - [anon_sym_c_ushort] = ACTIONS(1681), - [anon_sym_c_int] = ACTIONS(1681), - [anon_sym_c_uint] = ACTIONS(1681), - [anon_sym_c_long] = ACTIONS(1681), - [anon_sym_c_ulong] = ACTIONS(1681), - [anon_sym_c_longlong] = ACTIONS(1681), - [anon_sym_c_ulonglong] = ACTIONS(1681), - [anon_sym_c_float] = ACTIONS(1681), - [anon_sym_c_double] = ACTIONS(1681), - [anon_sym_c_longdouble] = ACTIONS(1681), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), - [anon_sym_orelse] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_or] = ACTIONS(1681), - [anon_sym_and] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1679), - [anon_sym_BANG_EQ] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1679), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_xor] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1679), - [anon_sym_LT_LT_PIPE] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_DOT] = ACTIONS(1681), - [anon_sym_CARET] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1679), - }, - [STATE(2254)] = { - [sym_identifier] = ACTIONS(1685), - [anon_sym_func] = ACTIONS(1685), - [anon_sym_c_func] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_struct_type_BANG] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1683), - [anon_sym_AT] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1685), - [anon_sym_noreturn] = ACTIONS(1685), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_anyopaque] = ACTIONS(1685), - [anon_sym_bool] = ACTIONS(1685), - [anon_sym_int] = ACTIONS(1685), - [anon_sym_uint] = ACTIONS(1685), - [anon_sym_float] = ACTIONS(1685), - [anon_sym_range] = ACTIONS(1685), - [anon_sym_i8] = ACTIONS(1685), - [anon_sym_i16] = ACTIONS(1685), - [anon_sym_i32] = ACTIONS(1685), - [anon_sym_i64] = ACTIONS(1685), - [anon_sym_u8] = ACTIONS(1685), - [anon_sym_u16] = ACTIONS(1685), - [anon_sym_u32] = ACTIONS(1685), - [anon_sym_u64] = ACTIONS(1685), - [anon_sym_isize] = ACTIONS(1685), - [anon_sym_usize] = ACTIONS(1685), - [anon_sym_f32] = ACTIONS(1685), - [anon_sym_f64] = ACTIONS(1685), - [anon_sym_c_char] = ACTIONS(1685), - [anon_sym_c_schar] = ACTIONS(1685), - [anon_sym_c_uchar] = ACTIONS(1685), - [anon_sym_c_short] = ACTIONS(1685), - [anon_sym_c_ushort] = ACTIONS(1685), - [anon_sym_c_int] = ACTIONS(1685), - [anon_sym_c_uint] = ACTIONS(1685), - [anon_sym_c_long] = ACTIONS(1685), - [anon_sym_c_ulong] = ACTIONS(1685), - [anon_sym_c_longlong] = ACTIONS(1685), - [anon_sym_c_ulonglong] = ACTIONS(1685), - [anon_sym_c_float] = ACTIONS(1685), - [anon_sym_c_double] = ACTIONS(1685), - [anon_sym_c_longdouble] = ACTIONS(1685), - [anon_sym_DOT_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), - [anon_sym_orelse] = ACTIONS(1685), - [anon_sym_catch] = ACTIONS(1685), - [anon_sym_or] = ACTIONS(1685), - [anon_sym_and] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1683), - [anon_sym_LT_LT_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_CARET] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1683), - }, - [STATE(2255)] = { - [sym_identifier] = ACTIONS(1983), - [anon_sym_func] = ACTIONS(1983), - [anon_sym_c_func] = ACTIONS(1983), - [anon_sym_BANG] = ACTIONS(1983), - [anon_sym_struct] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_struct_type_BANG] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1981), - [anon_sym_AT] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_void] = ACTIONS(1983), - [anon_sym_noreturn] = ACTIONS(1983), - [anon_sym_type] = ACTIONS(1983), - [anon_sym_anyopaque] = ACTIONS(1983), - [anon_sym_bool] = ACTIONS(1983), - [anon_sym_int] = ACTIONS(1983), - [anon_sym_uint] = ACTIONS(1983), - [anon_sym_float] = ACTIONS(1983), - [anon_sym_range] = ACTIONS(1983), - [anon_sym_i8] = ACTIONS(1983), - [anon_sym_i16] = ACTIONS(1983), - [anon_sym_i32] = ACTIONS(1983), - [anon_sym_i64] = ACTIONS(1983), - [anon_sym_u8] = ACTIONS(1983), - [anon_sym_u16] = ACTIONS(1983), - [anon_sym_u32] = ACTIONS(1983), - [anon_sym_u64] = ACTIONS(1983), - [anon_sym_isize] = ACTIONS(1983), - [anon_sym_usize] = ACTIONS(1983), - [anon_sym_f32] = ACTIONS(1983), - [anon_sym_f64] = ACTIONS(1983), - [anon_sym_c_char] = ACTIONS(1983), - [anon_sym_c_schar] = ACTIONS(1983), - [anon_sym_c_uchar] = ACTIONS(1983), - [anon_sym_c_short] = ACTIONS(1983), - [anon_sym_c_ushort] = ACTIONS(1983), - [anon_sym_c_int] = ACTIONS(1983), - [anon_sym_c_uint] = ACTIONS(1983), - [anon_sym_c_long] = ACTIONS(1983), - [anon_sym_c_ulong] = ACTIONS(1983), - [anon_sym_c_longlong] = ACTIONS(1983), - [anon_sym_c_ulonglong] = ACTIONS(1983), - [anon_sym_c_float] = ACTIONS(1983), - [anon_sym_c_double] = ACTIONS(1983), - [anon_sym_c_longdouble] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1981), - [anon_sym_orelse] = ACTIONS(1983), - [anon_sym_catch] = ACTIONS(1983), - [anon_sym_or] = ACTIONS(1983), - [anon_sym_and] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1983), - [anon_sym_LT_EQ] = ACTIONS(1981), - [anon_sym_GT] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_xor] = ACTIONS(1983), - [anon_sym_LT_LT] = ACTIONS(1983), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(1981), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1981), - }, - [STATE(2256)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_c_func] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_struct_type_BANG] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(2257)] = { - [sym_identifier] = ACTIONS(1765), - [anon_sym_func] = ACTIONS(1765), - [anon_sym_c_func] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_struct_type_BANG] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(1763), - [anon_sym_AT] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_void] = ACTIONS(1765), - [anon_sym_noreturn] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_anyopaque] = ACTIONS(1765), - [anon_sym_bool] = ACTIONS(1765), - [anon_sym_int] = ACTIONS(1765), - [anon_sym_uint] = ACTIONS(1765), - [anon_sym_float] = ACTIONS(1765), - [anon_sym_range] = ACTIONS(1765), - [anon_sym_i8] = ACTIONS(1765), - [anon_sym_i16] = ACTIONS(1765), - [anon_sym_i32] = ACTIONS(1765), - [anon_sym_i64] = ACTIONS(1765), - [anon_sym_u8] = ACTIONS(1765), - [anon_sym_u16] = ACTIONS(1765), - [anon_sym_u32] = ACTIONS(1765), - [anon_sym_u64] = ACTIONS(1765), - [anon_sym_isize] = ACTIONS(1765), - [anon_sym_usize] = ACTIONS(1765), - [anon_sym_f32] = ACTIONS(1765), - [anon_sym_f64] = ACTIONS(1765), - [anon_sym_c_char] = ACTIONS(1765), - [anon_sym_c_schar] = ACTIONS(1765), - [anon_sym_c_uchar] = ACTIONS(1765), - [anon_sym_c_short] = ACTIONS(1765), - [anon_sym_c_ushort] = ACTIONS(1765), - [anon_sym_c_int] = ACTIONS(1765), - [anon_sym_c_uint] = ACTIONS(1765), - [anon_sym_c_long] = ACTIONS(1765), - [anon_sym_c_ulong] = ACTIONS(1765), - [anon_sym_c_longlong] = ACTIONS(1765), - [anon_sym_c_ulonglong] = ACTIONS(1765), - [anon_sym_c_float] = ACTIONS(1765), - [anon_sym_c_double] = ACTIONS(1765), - [anon_sym_c_longdouble] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_orelse] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_LT_LT_PIPE] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1763), - }, - [STATE(2258)] = { - [sym_identifier] = ACTIONS(1689), - [anon_sym_func] = ACTIONS(1689), - [anon_sym_c_func] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_COMMA] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_struct_type_BANG] = ACTIONS(1687), - [anon_sym_QMARK] = ACTIONS(1687), - [anon_sym_AT] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_noreturn] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_anyopaque] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_int] = ACTIONS(1689), - [anon_sym_uint] = ACTIONS(1689), - [anon_sym_float] = ACTIONS(1689), - [anon_sym_range] = ACTIONS(1689), - [anon_sym_i8] = ACTIONS(1689), - [anon_sym_i16] = ACTIONS(1689), - [anon_sym_i32] = ACTIONS(1689), - [anon_sym_i64] = ACTIONS(1689), - [anon_sym_u8] = ACTIONS(1689), - [anon_sym_u16] = ACTIONS(1689), - [anon_sym_u32] = ACTIONS(1689), - [anon_sym_u64] = ACTIONS(1689), - [anon_sym_isize] = ACTIONS(1689), - [anon_sym_usize] = ACTIONS(1689), - [anon_sym_f32] = ACTIONS(1689), - [anon_sym_f64] = ACTIONS(1689), - [anon_sym_c_char] = ACTIONS(1689), - [anon_sym_c_schar] = ACTIONS(1689), - [anon_sym_c_uchar] = ACTIONS(1689), - [anon_sym_c_short] = ACTIONS(1689), - [anon_sym_c_ushort] = ACTIONS(1689), - [anon_sym_c_int] = ACTIONS(1689), - [anon_sym_c_uint] = ACTIONS(1689), - [anon_sym_c_long] = ACTIONS(1689), - [anon_sym_c_ulong] = ACTIONS(1689), - [anon_sym_c_longlong] = ACTIONS(1689), - [anon_sym_c_ulonglong] = ACTIONS(1689), - [anon_sym_c_float] = ACTIONS(1689), - [anon_sym_c_double] = ACTIONS(1689), - [anon_sym_c_longdouble] = ACTIONS(1689), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [anon_sym_orelse] = ACTIONS(1689), - [anon_sym_catch] = ACTIONS(1689), - [anon_sym_or] = ACTIONS(1689), - [anon_sym_and] = ACTIONS(1689), - [anon_sym_EQ_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_LT_EQ] = ACTIONS(1687), - [anon_sym_GT] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_xor] = ACTIONS(1689), - [anon_sym_LT_LT] = ACTIONS(1689), - [anon_sym_GT_GT] = ACTIONS(1687), - [anon_sym_LT_LT_PIPE] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1687), - }, - [STATE(2259)] = { - [sym_identifier] = ACTIONS(1693), - [anon_sym_func] = ACTIONS(1693), - [anon_sym_c_func] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_COMMA] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_struct_type_BANG] = ACTIONS(1691), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_AT] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_void] = ACTIONS(1693), - [anon_sym_noreturn] = ACTIONS(1693), - [anon_sym_type] = ACTIONS(1693), - [anon_sym_anyopaque] = ACTIONS(1693), - [anon_sym_bool] = ACTIONS(1693), - [anon_sym_int] = ACTIONS(1693), - [anon_sym_uint] = ACTIONS(1693), - [anon_sym_float] = ACTIONS(1693), - [anon_sym_range] = ACTIONS(1693), - [anon_sym_i8] = ACTIONS(1693), - [anon_sym_i16] = ACTIONS(1693), - [anon_sym_i32] = ACTIONS(1693), - [anon_sym_i64] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1693), - [anon_sym_u16] = ACTIONS(1693), - [anon_sym_u32] = ACTIONS(1693), - [anon_sym_u64] = ACTIONS(1693), - [anon_sym_isize] = ACTIONS(1693), - [anon_sym_usize] = ACTIONS(1693), - [anon_sym_f32] = ACTIONS(1693), - [anon_sym_f64] = ACTIONS(1693), - [anon_sym_c_char] = ACTIONS(1693), - [anon_sym_c_schar] = ACTIONS(1693), - [anon_sym_c_uchar] = ACTIONS(1693), - [anon_sym_c_short] = ACTIONS(1693), - [anon_sym_c_ushort] = ACTIONS(1693), - [anon_sym_c_int] = ACTIONS(1693), - [anon_sym_c_uint] = ACTIONS(1693), - [anon_sym_c_long] = ACTIONS(1693), - [anon_sym_c_ulong] = ACTIONS(1693), - [anon_sym_c_longlong] = ACTIONS(1693), - [anon_sym_c_ulonglong] = ACTIONS(1693), - [anon_sym_c_float] = ACTIONS(1693), - [anon_sym_c_double] = ACTIONS(1693), - [anon_sym_c_longdouble] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1693), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_orelse] = ACTIONS(1693), - [anon_sym_catch] = ACTIONS(1693), - [anon_sym_or] = ACTIONS(1693), - [anon_sym_and] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_xor] = ACTIONS(1693), - [anon_sym_LT_LT] = ACTIONS(1693), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_LT_LT_PIPE] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_SLASH] = ACTIONS(1691), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1691), - }, - [STATE(2260)] = { - [sym_identifier] = ACTIONS(1725), - [anon_sym_func] = ACTIONS(1725), - [anon_sym_c_func] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_struct_type_BANG] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1723), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_noreturn] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_anyopaque] = ACTIONS(1725), - [anon_sym_bool] = ACTIONS(1725), - [anon_sym_int] = ACTIONS(1725), - [anon_sym_uint] = ACTIONS(1725), - [anon_sym_float] = ACTIONS(1725), - [anon_sym_range] = ACTIONS(1725), - [anon_sym_i8] = ACTIONS(1725), - [anon_sym_i16] = ACTIONS(1725), - [anon_sym_i32] = ACTIONS(1725), - [anon_sym_i64] = ACTIONS(1725), - [anon_sym_u8] = ACTIONS(1725), - [anon_sym_u16] = ACTIONS(1725), - [anon_sym_u32] = ACTIONS(1725), - [anon_sym_u64] = ACTIONS(1725), - [anon_sym_isize] = ACTIONS(1725), - [anon_sym_usize] = ACTIONS(1725), - [anon_sym_f32] = ACTIONS(1725), - [anon_sym_f64] = ACTIONS(1725), - [anon_sym_c_char] = ACTIONS(1725), - [anon_sym_c_schar] = ACTIONS(1725), - [anon_sym_c_uchar] = ACTIONS(1725), - [anon_sym_c_short] = ACTIONS(1725), - [anon_sym_c_ushort] = ACTIONS(1725), - [anon_sym_c_int] = ACTIONS(1725), - [anon_sym_c_uint] = ACTIONS(1725), - [anon_sym_c_long] = ACTIONS(1725), - [anon_sym_c_ulong] = ACTIONS(1725), - [anon_sym_c_longlong] = ACTIONS(1725), - [anon_sym_c_ulonglong] = ACTIONS(1725), - [anon_sym_c_float] = ACTIONS(1725), - [anon_sym_c_double] = ACTIONS(1725), - [anon_sym_c_longdouble] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_orelse] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_or] = ACTIONS(1725), - [anon_sym_and] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_xor] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_LT_LT_PIPE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_DOT] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1723), - }, - [STATE(2261)] = { - [sym_identifier] = ACTIONS(1729), - [anon_sym_func] = ACTIONS(1729), - [anon_sym_c_func] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_COMMA] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_struct_type_BANG] = ACTIONS(1727), - [anon_sym_QMARK] = ACTIONS(1727), - [anon_sym_AT] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1729), - [anon_sym_noreturn] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_anyopaque] = ACTIONS(1729), - [anon_sym_bool] = ACTIONS(1729), - [anon_sym_int] = ACTIONS(1729), - [anon_sym_uint] = ACTIONS(1729), - [anon_sym_float] = ACTIONS(1729), - [anon_sym_range] = ACTIONS(1729), - [anon_sym_i8] = ACTIONS(1729), - [anon_sym_i16] = ACTIONS(1729), - [anon_sym_i32] = ACTIONS(1729), - [anon_sym_i64] = ACTIONS(1729), - [anon_sym_u8] = ACTIONS(1729), - [anon_sym_u16] = ACTIONS(1729), - [anon_sym_u32] = ACTIONS(1729), - [anon_sym_u64] = ACTIONS(1729), - [anon_sym_isize] = ACTIONS(1729), - [anon_sym_usize] = ACTIONS(1729), - [anon_sym_f32] = ACTIONS(1729), - [anon_sym_f64] = ACTIONS(1729), - [anon_sym_c_char] = ACTIONS(1729), - [anon_sym_c_schar] = ACTIONS(1729), - [anon_sym_c_uchar] = ACTIONS(1729), - [anon_sym_c_short] = ACTIONS(1729), - [anon_sym_c_ushort] = ACTIONS(1729), - [anon_sym_c_int] = ACTIONS(1729), - [anon_sym_c_uint] = ACTIONS(1729), - [anon_sym_c_long] = ACTIONS(1729), - [anon_sym_c_ulong] = ACTIONS(1729), - [anon_sym_c_longlong] = ACTIONS(1729), - [anon_sym_c_ulonglong] = ACTIONS(1729), - [anon_sym_c_float] = ACTIONS(1729), - [anon_sym_c_double] = ACTIONS(1729), - [anon_sym_c_longdouble] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_orelse] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_or] = ACTIONS(1729), - [anon_sym_and] = ACTIONS(1729), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_xor] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1727), - [anon_sym_LT_LT_PIPE] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1727), - }, - [STATE(2262)] = { - [sym_identifier] = ACTIONS(1733), - [anon_sym_func] = ACTIONS(1733), - [anon_sym_c_func] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_struct_type_BANG] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_AT] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_void] = ACTIONS(1733), - [anon_sym_noreturn] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_anyopaque] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_int] = ACTIONS(1733), - [anon_sym_uint] = ACTIONS(1733), - [anon_sym_float] = ACTIONS(1733), - [anon_sym_range] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_c_char] = ACTIONS(1733), - [anon_sym_c_schar] = ACTIONS(1733), - [anon_sym_c_uchar] = ACTIONS(1733), - [anon_sym_c_short] = ACTIONS(1733), - [anon_sym_c_ushort] = ACTIONS(1733), - [anon_sym_c_int] = ACTIONS(1733), - [anon_sym_c_uint] = ACTIONS(1733), - [anon_sym_c_long] = ACTIONS(1733), - [anon_sym_c_ulong] = ACTIONS(1733), - [anon_sym_c_longlong] = ACTIONS(1733), - [anon_sym_c_ulonglong] = ACTIONS(1733), - [anon_sym_c_float] = ACTIONS(1733), - [anon_sym_c_double] = ACTIONS(1733), - [anon_sym_c_longdouble] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), - [anon_sym_orelse] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_or] = ACTIONS(1733), - [anon_sym_and] = ACTIONS(1733), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_xor] = ACTIONS(1733), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_LT_LT_PIPE] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1731), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1731), - }, - [STATE(2263)] = { - [sym_identifier] = ACTIONS(1737), - [anon_sym_func] = ACTIONS(1737), - [anon_sym_c_func] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_struct_type_BANG] = ACTIONS(1735), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_noreturn] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_anyopaque] = ACTIONS(1737), - [anon_sym_bool] = ACTIONS(1737), - [anon_sym_int] = ACTIONS(1737), - [anon_sym_uint] = ACTIONS(1737), - [anon_sym_float] = ACTIONS(1737), - [anon_sym_range] = ACTIONS(1737), - [anon_sym_i8] = ACTIONS(1737), - [anon_sym_i16] = ACTIONS(1737), - [anon_sym_i32] = ACTIONS(1737), - [anon_sym_i64] = ACTIONS(1737), - [anon_sym_u8] = ACTIONS(1737), - [anon_sym_u16] = ACTIONS(1737), - [anon_sym_u32] = ACTIONS(1737), - [anon_sym_u64] = ACTIONS(1737), - [anon_sym_isize] = ACTIONS(1737), - [anon_sym_usize] = ACTIONS(1737), - [anon_sym_f32] = ACTIONS(1737), - [anon_sym_f64] = ACTIONS(1737), - [anon_sym_c_char] = ACTIONS(1737), - [anon_sym_c_schar] = ACTIONS(1737), - [anon_sym_c_uchar] = ACTIONS(1737), - [anon_sym_c_short] = ACTIONS(1737), - [anon_sym_c_ushort] = ACTIONS(1737), - [anon_sym_c_int] = ACTIONS(1737), - [anon_sym_c_uint] = ACTIONS(1737), - [anon_sym_c_long] = ACTIONS(1737), - [anon_sym_c_ulong] = ACTIONS(1737), - [anon_sym_c_longlong] = ACTIONS(1737), - [anon_sym_c_ulonglong] = ACTIONS(1737), - [anon_sym_c_float] = ACTIONS(1737), - [anon_sym_c_double] = ACTIONS(1737), - [anon_sym_c_longdouble] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_orelse] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_or] = ACTIONS(1737), - [anon_sym_and] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1737), - [anon_sym_GT_GT] = ACTIONS(1735), - [anon_sym_LT_LT_PIPE] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1735), - }, - [STATE(2264)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_c_func] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_struct_type_BANG] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(2265)] = { - [sym_identifier] = ACTIONS(1987), - [anon_sym_func] = ACTIONS(1987), - [anon_sym_c_func] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_struct_type_BANG] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1985), - [anon_sym_AT] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_void] = ACTIONS(1987), - [anon_sym_noreturn] = ACTIONS(1987), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_anyopaque] = ACTIONS(1987), - [anon_sym_bool] = ACTIONS(1987), - [anon_sym_int] = ACTIONS(1987), - [anon_sym_uint] = ACTIONS(1987), - [anon_sym_float] = ACTIONS(1987), - [anon_sym_range] = ACTIONS(1987), - [anon_sym_i8] = ACTIONS(1987), - [anon_sym_i16] = ACTIONS(1987), - [anon_sym_i32] = ACTIONS(1987), - [anon_sym_i64] = ACTIONS(1987), - [anon_sym_u8] = ACTIONS(1987), - [anon_sym_u16] = ACTIONS(1987), - [anon_sym_u32] = ACTIONS(1987), - [anon_sym_u64] = ACTIONS(1987), - [anon_sym_isize] = ACTIONS(1987), - [anon_sym_usize] = ACTIONS(1987), - [anon_sym_f32] = ACTIONS(1987), - [anon_sym_f64] = ACTIONS(1987), - [anon_sym_c_char] = ACTIONS(1987), - [anon_sym_c_schar] = ACTIONS(1987), - [anon_sym_c_uchar] = ACTIONS(1987), - [anon_sym_c_short] = ACTIONS(1987), - [anon_sym_c_ushort] = ACTIONS(1987), - [anon_sym_c_int] = ACTIONS(1987), - [anon_sym_c_uint] = ACTIONS(1987), - [anon_sym_c_long] = ACTIONS(1987), - [anon_sym_c_ulong] = ACTIONS(1987), - [anon_sym_c_longlong] = ACTIONS(1987), - [anon_sym_c_ulonglong] = ACTIONS(1987), - [anon_sym_c_float] = ACTIONS(1987), - [anon_sym_c_double] = ACTIONS(1987), - [anon_sym_c_longdouble] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1985), - [anon_sym_orelse] = ACTIONS(1987), - [anon_sym_catch] = ACTIONS(1987), - [anon_sym_or] = ACTIONS(1987), - [anon_sym_and] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1985), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_xor] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1985), - }, - [STATE(2266)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_c_func] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_struct_type_BANG] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(2267)] = { - [sym_identifier] = ACTIONS(1769), - [anon_sym_func] = ACTIONS(1769), - [anon_sym_c_func] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_struct_type_BANG] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(1767), - [anon_sym_AT] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_void] = ACTIONS(1769), - [anon_sym_noreturn] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_anyopaque] = ACTIONS(1769), - [anon_sym_bool] = ACTIONS(1769), - [anon_sym_int] = ACTIONS(1769), - [anon_sym_uint] = ACTIONS(1769), - [anon_sym_float] = ACTIONS(1769), - [anon_sym_range] = ACTIONS(1769), - [anon_sym_i8] = ACTIONS(1769), - [anon_sym_i16] = ACTIONS(1769), - [anon_sym_i32] = ACTIONS(1769), - [anon_sym_i64] = ACTIONS(1769), - [anon_sym_u8] = ACTIONS(1769), - [anon_sym_u16] = ACTIONS(1769), - [anon_sym_u32] = ACTIONS(1769), - [anon_sym_u64] = ACTIONS(1769), - [anon_sym_isize] = ACTIONS(1769), - [anon_sym_usize] = ACTIONS(1769), - [anon_sym_f32] = ACTIONS(1769), - [anon_sym_f64] = ACTIONS(1769), - [anon_sym_c_char] = ACTIONS(1769), - [anon_sym_c_schar] = ACTIONS(1769), - [anon_sym_c_uchar] = ACTIONS(1769), - [anon_sym_c_short] = ACTIONS(1769), - [anon_sym_c_ushort] = ACTIONS(1769), - [anon_sym_c_int] = ACTIONS(1769), - [anon_sym_c_uint] = ACTIONS(1769), - [anon_sym_c_long] = ACTIONS(1769), - [anon_sym_c_ulong] = ACTIONS(1769), - [anon_sym_c_longlong] = ACTIONS(1769), - [anon_sym_c_ulonglong] = ACTIONS(1769), - [anon_sym_c_float] = ACTIONS(1769), - [anon_sym_c_double] = ACTIONS(1769), - [anon_sym_c_longdouble] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_orelse] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1767), - [anon_sym_LT_LT_PIPE] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_DOT] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1767), - }, - [STATE(2268)] = { - [sym_identifier] = ACTIONS(1991), - [anon_sym_func] = ACTIONS(1991), - [anon_sym_c_func] = ACTIONS(1991), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_struct] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_DASH] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_struct_type_BANG] = ACTIONS(1989), - [anon_sym_QMARK] = ACTIONS(1989), - [anon_sym_AT] = ACTIONS(1989), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_void] = ACTIONS(1991), - [anon_sym_noreturn] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_anyopaque] = ACTIONS(1991), - [anon_sym_bool] = ACTIONS(1991), - [anon_sym_int] = ACTIONS(1991), - [anon_sym_uint] = ACTIONS(1991), - [anon_sym_float] = ACTIONS(1991), - [anon_sym_range] = ACTIONS(1991), - [anon_sym_i8] = ACTIONS(1991), - [anon_sym_i16] = ACTIONS(1991), - [anon_sym_i32] = ACTIONS(1991), - [anon_sym_i64] = ACTIONS(1991), - [anon_sym_u8] = ACTIONS(1991), - [anon_sym_u16] = ACTIONS(1991), - [anon_sym_u32] = ACTIONS(1991), - [anon_sym_u64] = ACTIONS(1991), - [anon_sym_isize] = ACTIONS(1991), - [anon_sym_usize] = ACTIONS(1991), - [anon_sym_f32] = ACTIONS(1991), - [anon_sym_f64] = ACTIONS(1991), - [anon_sym_c_char] = ACTIONS(1991), - [anon_sym_c_schar] = ACTIONS(1991), - [anon_sym_c_uchar] = ACTIONS(1991), - [anon_sym_c_short] = ACTIONS(1991), - [anon_sym_c_ushort] = ACTIONS(1991), - [anon_sym_c_int] = ACTIONS(1991), - [anon_sym_c_uint] = ACTIONS(1991), - [anon_sym_c_long] = ACTIONS(1991), - [anon_sym_c_ulong] = ACTIONS(1991), - [anon_sym_c_longlong] = ACTIONS(1991), - [anon_sym_c_ulonglong] = ACTIONS(1991), - [anon_sym_c_float] = ACTIONS(1991), - [anon_sym_c_double] = ACTIONS(1991), - [anon_sym_c_longdouble] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), - [anon_sym_orelse] = ACTIONS(1991), - [anon_sym_catch] = ACTIONS(1991), - [anon_sym_or] = ACTIONS(1991), - [anon_sym_and] = ACTIONS(1991), - [anon_sym_EQ_EQ] = ACTIONS(1989), - [anon_sym_BANG_EQ] = ACTIONS(1989), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1989), - [anon_sym_xor] = ACTIONS(1991), - [anon_sym_LT_LT] = ACTIONS(1991), - [anon_sym_GT_GT] = ACTIONS(1989), - [anon_sym_LT_LT_PIPE] = ACTIONS(1989), - [anon_sym_PLUS] = ACTIONS(1989), - [anon_sym_SLASH] = ACTIONS(1989), - [anon_sym_DOT] = ACTIONS(1991), - [anon_sym_CARET] = ACTIONS(1989), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1989), - }, - [STATE(2269)] = { - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(1773), - [anon_sym_c_func] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_COMMA] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_struct_type_BANG] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(1771), - [anon_sym_AT] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_void] = ACTIONS(1773), - [anon_sym_noreturn] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_anyopaque] = ACTIONS(1773), - [anon_sym_bool] = ACTIONS(1773), - [anon_sym_int] = ACTIONS(1773), - [anon_sym_uint] = ACTIONS(1773), - [anon_sym_float] = ACTIONS(1773), - [anon_sym_range] = ACTIONS(1773), - [anon_sym_i8] = ACTIONS(1773), - [anon_sym_i16] = ACTIONS(1773), - [anon_sym_i32] = ACTIONS(1773), - [anon_sym_i64] = ACTIONS(1773), - [anon_sym_u8] = ACTIONS(1773), - [anon_sym_u16] = ACTIONS(1773), - [anon_sym_u32] = ACTIONS(1773), - [anon_sym_u64] = ACTIONS(1773), - [anon_sym_isize] = ACTIONS(1773), - [anon_sym_usize] = ACTIONS(1773), - [anon_sym_f32] = ACTIONS(1773), - [anon_sym_f64] = ACTIONS(1773), - [anon_sym_c_char] = ACTIONS(1773), - [anon_sym_c_schar] = ACTIONS(1773), - [anon_sym_c_uchar] = ACTIONS(1773), - [anon_sym_c_short] = ACTIONS(1773), - [anon_sym_c_ushort] = ACTIONS(1773), - [anon_sym_c_int] = ACTIONS(1773), - [anon_sym_c_uint] = ACTIONS(1773), - [anon_sym_c_long] = ACTIONS(1773), - [anon_sym_c_ulong] = ACTIONS(1773), - [anon_sym_c_longlong] = ACTIONS(1773), - [anon_sym_c_ulonglong] = ACTIONS(1773), - [anon_sym_c_float] = ACTIONS(1773), - [anon_sym_c_double] = ACTIONS(1773), - [anon_sym_c_longdouble] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_orelse] = ACTIONS(1773), - [anon_sym_catch] = ACTIONS(1773), - [anon_sym_or] = ACTIONS(1773), - [anon_sym_and] = ACTIONS(1773), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_LT_EQ] = ACTIONS(1771), - [anon_sym_GT] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_xor] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_LT_LT_PIPE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1771), - }, - [STATE(2270)] = { - [sym_identifier] = ACTIONS(1467), - [anon_sym_func] = ACTIONS(1467), - [anon_sym_c_func] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_struct_type_BANG] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_noreturn] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_anyopaque] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_range] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_c_char] = ACTIONS(1467), - [anon_sym_c_schar] = ACTIONS(1467), - [anon_sym_c_uchar] = ACTIONS(1467), - [anon_sym_c_short] = ACTIONS(1467), - [anon_sym_c_ushort] = ACTIONS(1467), - [anon_sym_c_int] = ACTIONS(1467), - [anon_sym_c_uint] = ACTIONS(1467), - [anon_sym_c_long] = ACTIONS(1467), - [anon_sym_c_ulong] = ACTIONS(1467), - [anon_sym_c_longlong] = ACTIONS(1467), - [anon_sym_c_ulonglong] = ACTIONS(1467), - [anon_sym_c_float] = ACTIONS(1467), - [anon_sym_c_double] = ACTIONS(1467), - [anon_sym_c_longdouble] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), - [anon_sym_orelse] = ACTIONS(1467), - [anon_sym_catch] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_xor] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_LT_LT_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1465), - }, - [STATE(2271)] = { - [sym_identifier] = ACTIONS(1817), - [anon_sym_func] = ACTIONS(1817), - [anon_sym_c_func] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_struct_type_BANG] = ACTIONS(1815), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_void] = ACTIONS(1817), - [anon_sym_noreturn] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_anyopaque] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_int] = ACTIONS(1817), - [anon_sym_uint] = ACTIONS(1817), - [anon_sym_float] = ACTIONS(1817), - [anon_sym_range] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_c_char] = ACTIONS(1817), - [anon_sym_c_schar] = ACTIONS(1817), - [anon_sym_c_uchar] = ACTIONS(1817), - [anon_sym_c_short] = ACTIONS(1817), - [anon_sym_c_ushort] = ACTIONS(1817), - [anon_sym_c_int] = ACTIONS(1817), - [anon_sym_c_uint] = ACTIONS(1817), - [anon_sym_c_long] = ACTIONS(1817), - [anon_sym_c_ulong] = ACTIONS(1817), - [anon_sym_c_longlong] = ACTIONS(1817), - [anon_sym_c_ulonglong] = ACTIONS(1817), - [anon_sym_c_float] = ACTIONS(1817), - [anon_sym_c_double] = ACTIONS(1817), - [anon_sym_c_longdouble] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1815), - [anon_sym_orelse] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_xor] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1815), - [anon_sym_LT_LT_PIPE] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1815), - }, - [STATE(2272)] = { - [sym_identifier] = ACTIONS(2031), - [anon_sym_func] = ACTIONS(2031), - [anon_sym_c_func] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_struct_type_BANG] = ACTIONS(2029), - [anon_sym_QMARK] = ACTIONS(2029), - [anon_sym_AT] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_void] = ACTIONS(2031), - [anon_sym_noreturn] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_anyopaque] = ACTIONS(2031), - [anon_sym_bool] = ACTIONS(2031), - [anon_sym_int] = ACTIONS(2031), - [anon_sym_uint] = ACTIONS(2031), - [anon_sym_float] = ACTIONS(2031), - [anon_sym_range] = ACTIONS(2031), - [anon_sym_i8] = ACTIONS(2031), - [anon_sym_i16] = ACTIONS(2031), - [anon_sym_i32] = ACTIONS(2031), - [anon_sym_i64] = ACTIONS(2031), - [anon_sym_u8] = ACTIONS(2031), - [anon_sym_u16] = ACTIONS(2031), - [anon_sym_u32] = ACTIONS(2031), - [anon_sym_u64] = ACTIONS(2031), - [anon_sym_isize] = ACTIONS(2031), - [anon_sym_usize] = ACTIONS(2031), - [anon_sym_f32] = ACTIONS(2031), - [anon_sym_f64] = ACTIONS(2031), - [anon_sym_c_char] = ACTIONS(2031), - [anon_sym_c_schar] = ACTIONS(2031), - [anon_sym_c_uchar] = ACTIONS(2031), - [anon_sym_c_short] = ACTIONS(2031), - [anon_sym_c_ushort] = ACTIONS(2031), - [anon_sym_c_int] = ACTIONS(2031), - [anon_sym_c_uint] = ACTIONS(2031), - [anon_sym_c_long] = ACTIONS(2031), - [anon_sym_c_ulong] = ACTIONS(2031), - [anon_sym_c_longlong] = ACTIONS(2031), - [anon_sym_c_ulonglong] = ACTIONS(2031), - [anon_sym_c_float] = ACTIONS(2031), - [anon_sym_c_double] = ACTIONS(2031), - [anon_sym_c_longdouble] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), - [anon_sym_orelse] = ACTIONS(2031), - [anon_sym_catch] = ACTIONS(2031), - [anon_sym_or] = ACTIONS(2031), - [anon_sym_and] = ACTIONS(2031), - [anon_sym_EQ_EQ] = ACTIONS(2029), - [anon_sym_BANG_EQ] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_LT_EQ] = ACTIONS(2029), - [anon_sym_GT] = ACTIONS(2031), - [anon_sym_GT_EQ] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_xor] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_GT_GT] = ACTIONS(2029), - [anon_sym_LT_LT_PIPE] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_SLASH] = ACTIONS(2029), - [anon_sym_DOT] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2029), - }, - [STATE(2273)] = { - [sym_identifier] = ACTIONS(2035), - [anon_sym_func] = ACTIONS(2035), - [anon_sym_c_func] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2035), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_COMMA] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2033), - [anon_sym_struct_type_BANG] = ACTIONS(2033), - [anon_sym_QMARK] = ACTIONS(2033), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_void] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_anyopaque] = ACTIONS(2035), - [anon_sym_bool] = ACTIONS(2035), - [anon_sym_int] = ACTIONS(2035), - [anon_sym_uint] = ACTIONS(2035), - [anon_sym_float] = ACTIONS(2035), - [anon_sym_range] = ACTIONS(2035), - [anon_sym_i8] = ACTIONS(2035), - [anon_sym_i16] = ACTIONS(2035), - [anon_sym_i32] = ACTIONS(2035), - [anon_sym_i64] = ACTIONS(2035), - [anon_sym_u8] = ACTIONS(2035), - [anon_sym_u16] = ACTIONS(2035), - [anon_sym_u32] = ACTIONS(2035), - [anon_sym_u64] = ACTIONS(2035), - [anon_sym_isize] = ACTIONS(2035), - [anon_sym_usize] = ACTIONS(2035), - [anon_sym_f32] = ACTIONS(2035), - [anon_sym_f64] = ACTIONS(2035), - [anon_sym_c_char] = ACTIONS(2035), - [anon_sym_c_schar] = ACTIONS(2035), - [anon_sym_c_uchar] = ACTIONS(2035), - [anon_sym_c_short] = ACTIONS(2035), - [anon_sym_c_ushort] = ACTIONS(2035), - [anon_sym_c_int] = ACTIONS(2035), - [anon_sym_c_uint] = ACTIONS(2035), - [anon_sym_c_long] = ACTIONS(2035), - [anon_sym_c_ulong] = ACTIONS(2035), - [anon_sym_c_longlong] = ACTIONS(2035), - [anon_sym_c_ulonglong] = ACTIONS(2035), - [anon_sym_c_float] = ACTIONS(2035), - [anon_sym_c_double] = ACTIONS(2035), - [anon_sym_c_longdouble] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), - [anon_sym_orelse] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_or] = ACTIONS(2035), - [anon_sym_and] = ACTIONS(2035), - [anon_sym_EQ_EQ] = ACTIONS(2033), - [anon_sym_BANG_EQ] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_LT_EQ] = ACTIONS(2033), - [anon_sym_GT] = ACTIONS(2035), - [anon_sym_GT_EQ] = ACTIONS(2033), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym_xor] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_GT_GT] = ACTIONS(2033), - [anon_sym_LT_LT_PIPE] = ACTIONS(2033), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_SLASH] = ACTIONS(2033), - [anon_sym_DOT] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2033), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2033), - }, - [STATE(2274)] = { - [sym_identifier] = ACTIONS(2039), - [anon_sym_func] = ACTIONS(2039), - [anon_sym_c_func] = ACTIONS(2039), - [anon_sym_BANG] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_COMMA] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_DASH] = ACTIONS(2037), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_struct_type_BANG] = ACTIONS(2037), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_void] = ACTIONS(2039), - [anon_sym_noreturn] = ACTIONS(2039), - [anon_sym_type] = ACTIONS(2039), - [anon_sym_anyopaque] = ACTIONS(2039), - [anon_sym_bool] = ACTIONS(2039), - [anon_sym_int] = ACTIONS(2039), - [anon_sym_uint] = ACTIONS(2039), - [anon_sym_float] = ACTIONS(2039), - [anon_sym_range] = ACTIONS(2039), - [anon_sym_i8] = ACTIONS(2039), - [anon_sym_i16] = ACTIONS(2039), - [anon_sym_i32] = ACTIONS(2039), - [anon_sym_i64] = ACTIONS(2039), - [anon_sym_u8] = ACTIONS(2039), - [anon_sym_u16] = ACTIONS(2039), - [anon_sym_u32] = ACTIONS(2039), - [anon_sym_u64] = ACTIONS(2039), - [anon_sym_isize] = ACTIONS(2039), - [anon_sym_usize] = ACTIONS(2039), - [anon_sym_f32] = ACTIONS(2039), - [anon_sym_f64] = ACTIONS(2039), - [anon_sym_c_char] = ACTIONS(2039), - [anon_sym_c_schar] = ACTIONS(2039), - [anon_sym_c_uchar] = ACTIONS(2039), - [anon_sym_c_short] = ACTIONS(2039), - [anon_sym_c_ushort] = ACTIONS(2039), - [anon_sym_c_int] = ACTIONS(2039), - [anon_sym_c_uint] = ACTIONS(2039), - [anon_sym_c_long] = ACTIONS(2039), - [anon_sym_c_ulong] = ACTIONS(2039), - [anon_sym_c_longlong] = ACTIONS(2039), - [anon_sym_c_ulonglong] = ACTIONS(2039), - [anon_sym_c_float] = ACTIONS(2039), - [anon_sym_c_double] = ACTIONS(2039), - [anon_sym_c_longdouble] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2037), - [anon_sym_orelse] = ACTIONS(2039), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_or] = ACTIONS(2039), - [anon_sym_and] = ACTIONS(2039), - [anon_sym_EQ_EQ] = ACTIONS(2037), - [anon_sym_BANG_EQ] = ACTIONS(2037), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_LT_EQ] = ACTIONS(2037), - [anon_sym_GT] = ACTIONS(2039), - [anon_sym_GT_EQ] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_xor] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2039), - [anon_sym_GT_GT] = ACTIONS(2037), - [anon_sym_LT_LT_PIPE] = ACTIONS(2037), - [anon_sym_PLUS] = ACTIONS(2037), - [anon_sym_SLASH] = ACTIONS(2037), - [anon_sym_DOT] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2037), - }, - [STATE(2275)] = { - [sym_identifier] = ACTIONS(1625), - [anon_sym_func] = ACTIONS(1625), - [anon_sym_c_func] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_struct_type_BANG] = ACTIONS(1623), - [anon_sym_QMARK] = ACTIONS(1623), - [anon_sym_AT] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_noreturn] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_anyopaque] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_int] = ACTIONS(1625), - [anon_sym_uint] = ACTIONS(1625), - [anon_sym_float] = ACTIONS(1625), - [anon_sym_range] = ACTIONS(1625), - [anon_sym_i8] = ACTIONS(1625), - [anon_sym_i16] = ACTIONS(1625), - [anon_sym_i32] = ACTIONS(1625), - [anon_sym_i64] = ACTIONS(1625), - [anon_sym_u8] = ACTIONS(1625), - [anon_sym_u16] = ACTIONS(1625), - [anon_sym_u32] = ACTIONS(1625), - [anon_sym_u64] = ACTIONS(1625), - [anon_sym_isize] = ACTIONS(1625), - [anon_sym_usize] = ACTIONS(1625), - [anon_sym_f32] = ACTIONS(1625), - [anon_sym_f64] = ACTIONS(1625), - [anon_sym_c_char] = ACTIONS(1625), - [anon_sym_c_schar] = ACTIONS(1625), - [anon_sym_c_uchar] = ACTIONS(1625), - [anon_sym_c_short] = ACTIONS(1625), - [anon_sym_c_ushort] = ACTIONS(1625), - [anon_sym_c_int] = ACTIONS(1625), - [anon_sym_c_uint] = ACTIONS(1625), - [anon_sym_c_long] = ACTIONS(1625), - [anon_sym_c_ulong] = ACTIONS(1625), - [anon_sym_c_longlong] = ACTIONS(1625), - [anon_sym_c_ulonglong] = ACTIONS(1625), - [anon_sym_c_float] = ACTIONS(1625), - [anon_sym_c_double] = ACTIONS(1625), - [anon_sym_c_longdouble] = ACTIONS(1625), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), - [anon_sym_orelse] = ACTIONS(1625), - [anon_sym_catch] = ACTIONS(1625), - [anon_sym_or] = ACTIONS(1625), - [anon_sym_and] = ACTIONS(1625), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1625), - [anon_sym_GT_GT] = ACTIONS(1623), - [anon_sym_LT_LT_PIPE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_SLASH] = ACTIONS(1623), - [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1623), - }, - [STATE(2276)] = { - [sym_identifier] = ACTIONS(1629), - [anon_sym_func] = ACTIONS(1629), - [anon_sym_c_func] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE] = ACTIONS(1627), - [anon_sym_struct_type_BANG] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_AT] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1629), - [anon_sym_noreturn] = ACTIONS(1629), - [anon_sym_type] = ACTIONS(1629), - [anon_sym_anyopaque] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_int] = ACTIONS(1629), - [anon_sym_uint] = ACTIONS(1629), - [anon_sym_float] = ACTIONS(1629), - [anon_sym_range] = ACTIONS(1629), - [anon_sym_i8] = ACTIONS(1629), - [anon_sym_i16] = ACTIONS(1629), - [anon_sym_i32] = ACTIONS(1629), - [anon_sym_i64] = ACTIONS(1629), - [anon_sym_u8] = ACTIONS(1629), - [anon_sym_u16] = ACTIONS(1629), - [anon_sym_u32] = ACTIONS(1629), - [anon_sym_u64] = ACTIONS(1629), - [anon_sym_isize] = ACTIONS(1629), - [anon_sym_usize] = ACTIONS(1629), - [anon_sym_f32] = ACTIONS(1629), - [anon_sym_f64] = ACTIONS(1629), - [anon_sym_c_char] = ACTIONS(1629), - [anon_sym_c_schar] = ACTIONS(1629), - [anon_sym_c_uchar] = ACTIONS(1629), - [anon_sym_c_short] = ACTIONS(1629), - [anon_sym_c_ushort] = ACTIONS(1629), - [anon_sym_c_int] = ACTIONS(1629), - [anon_sym_c_uint] = ACTIONS(1629), - [anon_sym_c_long] = ACTIONS(1629), - [anon_sym_c_ulong] = ACTIONS(1629), - [anon_sym_c_longlong] = ACTIONS(1629), - [anon_sym_c_ulonglong] = ACTIONS(1629), - [anon_sym_c_float] = ACTIONS(1629), - [anon_sym_c_double] = ACTIONS(1629), - [anon_sym_c_longdouble] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1627), - [anon_sym_orelse] = ACTIONS(1629), - [anon_sym_catch] = ACTIONS(1629), - [anon_sym_or] = ACTIONS(1629), - [anon_sym_and] = ACTIONS(1629), - [anon_sym_EQ_EQ] = ACTIONS(1627), - [anon_sym_BANG_EQ] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1629), - [anon_sym_LT_EQ] = ACTIONS(1627), - [anon_sym_GT] = ACTIONS(1629), - [anon_sym_GT_EQ] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_xor] = ACTIONS(1629), - [anon_sym_LT_LT] = ACTIONS(1629), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_LT_LT_PIPE] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_SLASH] = ACTIONS(1627), - [anon_sym_DOT] = ACTIONS(1629), - [anon_sym_CARET] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1627), - }, - [STATE(2277)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_c_func] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(2278)] = { - [sym_identifier] = ACTIONS(1781), - [anon_sym_func] = ACTIONS(1781), - [anon_sym_c_func] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(5631), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_struct_type_BANG] = ACTIONS(1779), - [anon_sym_QMARK] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_void] = ACTIONS(1781), - [anon_sym_noreturn] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_anyopaque] = ACTIONS(1781), - [anon_sym_bool] = ACTIONS(1781), - [anon_sym_int] = ACTIONS(1781), - [anon_sym_uint] = ACTIONS(1781), - [anon_sym_float] = ACTIONS(1781), - [anon_sym_range] = ACTIONS(1781), - [anon_sym_i8] = ACTIONS(1781), - [anon_sym_i16] = ACTIONS(1781), - [anon_sym_i32] = ACTIONS(1781), - [anon_sym_i64] = ACTIONS(1781), - [anon_sym_u8] = ACTIONS(1781), - [anon_sym_u16] = ACTIONS(1781), - [anon_sym_u32] = ACTIONS(1781), - [anon_sym_u64] = ACTIONS(1781), - [anon_sym_isize] = ACTIONS(1781), - [anon_sym_usize] = ACTIONS(1781), - [anon_sym_f32] = ACTIONS(1781), - [anon_sym_f64] = ACTIONS(1781), - [anon_sym_c_char] = ACTIONS(1781), - [anon_sym_c_schar] = ACTIONS(1781), - [anon_sym_c_uchar] = ACTIONS(1781), - [anon_sym_c_short] = ACTIONS(1781), - [anon_sym_c_ushort] = ACTIONS(1781), - [anon_sym_c_int] = ACTIONS(1781), - [anon_sym_c_uint] = ACTIONS(1781), - [anon_sym_c_long] = ACTIONS(1781), - [anon_sym_c_ulong] = ACTIONS(1781), - [anon_sym_c_longlong] = ACTIONS(1781), - [anon_sym_c_ulonglong] = ACTIONS(1781), - [anon_sym_c_float] = ACTIONS(1781), - [anon_sym_c_double] = ACTIONS(1781), - [anon_sym_c_longdouble] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_orelse] = ACTIONS(1781), - [anon_sym_catch] = ACTIONS(1781), - [anon_sym_or] = ACTIONS(1781), - [anon_sym_and] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1779), - [anon_sym_BANG_EQ] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1779), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_xor] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(1781), - [anon_sym_GT_GT] = ACTIONS(1779), - [anon_sym_LT_LT_PIPE] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1779), - }, - [STATE(2279)] = { - [sym_identifier] = ACTIONS(1787), - [anon_sym_func] = ACTIONS(1787), - [anon_sym_c_func] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_struct_type_BANG] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1785), - [anon_sym_AT] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_void] = ACTIONS(1787), - [anon_sym_noreturn] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_anyopaque] = ACTIONS(1787), - [anon_sym_bool] = ACTIONS(1787), - [anon_sym_int] = ACTIONS(1787), - [anon_sym_uint] = ACTIONS(1787), - [anon_sym_float] = ACTIONS(1787), - [anon_sym_range] = ACTIONS(1787), - [anon_sym_i8] = ACTIONS(1787), - [anon_sym_i16] = ACTIONS(1787), - [anon_sym_i32] = ACTIONS(1787), - [anon_sym_i64] = ACTIONS(1787), - [anon_sym_u8] = ACTIONS(1787), - [anon_sym_u16] = ACTIONS(1787), - [anon_sym_u32] = ACTIONS(1787), - [anon_sym_u64] = ACTIONS(1787), - [anon_sym_isize] = ACTIONS(1787), - [anon_sym_usize] = ACTIONS(1787), - [anon_sym_f32] = ACTIONS(1787), - [anon_sym_f64] = ACTIONS(1787), - [anon_sym_c_char] = ACTIONS(1787), - [anon_sym_c_schar] = ACTIONS(1787), - [anon_sym_c_uchar] = ACTIONS(1787), - [anon_sym_c_short] = ACTIONS(1787), - [anon_sym_c_ushort] = ACTIONS(1787), - [anon_sym_c_int] = ACTIONS(1787), - [anon_sym_c_uint] = ACTIONS(1787), - [anon_sym_c_long] = ACTIONS(1787), - [anon_sym_c_ulong] = ACTIONS(1787), - [anon_sym_c_longlong] = ACTIONS(1787), - [anon_sym_c_ulonglong] = ACTIONS(1787), - [anon_sym_c_float] = ACTIONS(1787), - [anon_sym_c_double] = ACTIONS(1787), - [anon_sym_c_longdouble] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_orelse] = ACTIONS(1787), - [anon_sym_catch] = ACTIONS(1787), - [anon_sym_or] = ACTIONS(1787), - [anon_sym_and] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_xor] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1787), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_LT_LT_PIPE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1785), - }, - [STATE(2280)] = { - [sym_identifier] = ACTIONS(1621), - [anon_sym_func] = ACTIONS(1621), - [anon_sym_c_func] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_struct_type_BANG] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AT] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_noreturn] = ACTIONS(1621), - [anon_sym_type] = ACTIONS(1621), - [anon_sym_anyopaque] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_int] = ACTIONS(1621), - [anon_sym_uint] = ACTIONS(1621), - [anon_sym_float] = ACTIONS(1621), - [anon_sym_range] = ACTIONS(1621), - [anon_sym_i8] = ACTIONS(1621), - [anon_sym_i16] = ACTIONS(1621), - [anon_sym_i32] = ACTIONS(1621), - [anon_sym_i64] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1621), - [anon_sym_u16] = ACTIONS(1621), - [anon_sym_u32] = ACTIONS(1621), - [anon_sym_u64] = ACTIONS(1621), - [anon_sym_isize] = ACTIONS(1621), - [anon_sym_usize] = ACTIONS(1621), - [anon_sym_f32] = ACTIONS(1621), - [anon_sym_f64] = ACTIONS(1621), - [anon_sym_c_char] = ACTIONS(1621), - [anon_sym_c_schar] = ACTIONS(1621), - [anon_sym_c_uchar] = ACTIONS(1621), - [anon_sym_c_short] = ACTIONS(1621), - [anon_sym_c_ushort] = ACTIONS(1621), - [anon_sym_c_int] = ACTIONS(1621), - [anon_sym_c_uint] = ACTIONS(1621), - [anon_sym_c_long] = ACTIONS(1621), - [anon_sym_c_ulong] = ACTIONS(1621), - [anon_sym_c_longlong] = ACTIONS(1621), - [anon_sym_c_ulonglong] = ACTIONS(1621), - [anon_sym_c_float] = ACTIONS(1621), - [anon_sym_c_double] = ACTIONS(1621), - [anon_sym_c_longdouble] = ACTIONS(1621), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), - [anon_sym_orelse] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_or] = ACTIONS(1621), - [anon_sym_and] = ACTIONS(1621), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_xor] = ACTIONS(1621), - [anon_sym_LT_LT] = ACTIONS(1621), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1621), - [anon_sym_CARET] = ACTIONS(1619), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1619), - }, - [STATE(2281)] = { - [sym_identifier] = ACTIONS(1511), - [anon_sym_func] = ACTIONS(1511), - [anon_sym_c_func] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_struct_type_BANG] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_noreturn] = ACTIONS(1511), - [anon_sym_type] = ACTIONS(1511), - [anon_sym_anyopaque] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_range] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_c_char] = ACTIONS(1511), - [anon_sym_c_schar] = ACTIONS(1511), - [anon_sym_c_uchar] = ACTIONS(1511), - [anon_sym_c_short] = ACTIONS(1511), - [anon_sym_c_ushort] = ACTIONS(1511), - [anon_sym_c_int] = ACTIONS(1511), - [anon_sym_c_uint] = ACTIONS(1511), - [anon_sym_c_long] = ACTIONS(1511), - [anon_sym_c_ulong] = ACTIONS(1511), - [anon_sym_c_longlong] = ACTIONS(1511), - [anon_sym_c_ulonglong] = ACTIONS(1511), - [anon_sym_c_float] = ACTIONS(1511), - [anon_sym_c_double] = ACTIONS(1511), - [anon_sym_c_longdouble] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_orelse] = ACTIONS(1511), - [anon_sym_catch] = ACTIONS(1511), - [anon_sym_or] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_xor] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_LT_LT_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1509), - }, - [STATE(2282)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(5633), - [anon_sym_func] = ACTIONS(5633), - [anon_sym_c_func] = ACTIONS(5633), - [anon_sym_struct] = ACTIONS(5633), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(5635), - [anon_sym_RBRACE] = ACTIONS(5635), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(5635), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(5633), - [anon_sym_noreturn] = ACTIONS(5633), - [anon_sym_type] = ACTIONS(5633), - [anon_sym_anyopaque] = ACTIONS(5633), - [anon_sym_bool] = ACTIONS(5633), - [anon_sym_int] = ACTIONS(5633), - [anon_sym_uint] = ACTIONS(5633), - [anon_sym_float] = ACTIONS(5633), - [anon_sym_range] = ACTIONS(5633), - [anon_sym_i8] = ACTIONS(5633), - [anon_sym_i16] = ACTIONS(5633), - [anon_sym_i32] = ACTIONS(5633), - [anon_sym_i64] = ACTIONS(5633), - [anon_sym_u8] = ACTIONS(5633), - [anon_sym_u16] = ACTIONS(5633), - [anon_sym_u32] = ACTIONS(5633), - [anon_sym_u64] = ACTIONS(5633), - [anon_sym_isize] = ACTIONS(5633), - [anon_sym_usize] = ACTIONS(5633), - [anon_sym_f32] = ACTIONS(5633), - [anon_sym_f64] = ACTIONS(5633), - [anon_sym_c_char] = ACTIONS(5633), - [anon_sym_c_schar] = ACTIONS(5633), - [anon_sym_c_uchar] = ACTIONS(5633), - [anon_sym_c_short] = ACTIONS(5633), - [anon_sym_c_ushort] = ACTIONS(5633), - [anon_sym_c_int] = ACTIONS(5633), - [anon_sym_c_uint] = ACTIONS(5633), - [anon_sym_c_long] = ACTIONS(5633), - [anon_sym_c_ulong] = ACTIONS(5633), - [anon_sym_c_longlong] = ACTIONS(5633), - [anon_sym_c_ulonglong] = ACTIONS(5633), - [anon_sym_c_float] = ACTIONS(5633), - [anon_sym_c_double] = ACTIONS(5633), - [anon_sym_c_longdouble] = ACTIONS(5633), - [anon_sym_DOT_DOT] = ACTIONS(5625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5627), - [anon_sym_orelse] = ACTIONS(5607), - [anon_sym_catch] = ACTIONS(5609), - [anon_sym_or] = ACTIONS(5611), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5635), - }, - [STATE(2283)] = { - [sym_identifier] = ACTIONS(1879), - [anon_sym_func] = ACTIONS(1879), - [anon_sym_c_func] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_struct_type_BANG] = ACTIONS(1877), - [anon_sym_QMARK] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_void] = ACTIONS(1879), - [anon_sym_noreturn] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_anyopaque] = ACTIONS(1879), - [anon_sym_bool] = ACTIONS(1879), - [anon_sym_int] = ACTIONS(1879), - [anon_sym_uint] = ACTIONS(1879), - [anon_sym_float] = ACTIONS(1879), - [anon_sym_range] = ACTIONS(1879), - [anon_sym_i8] = ACTIONS(1879), - [anon_sym_i16] = ACTIONS(1879), - [anon_sym_i32] = ACTIONS(1879), - [anon_sym_i64] = ACTIONS(1879), - [anon_sym_u8] = ACTIONS(1879), - [anon_sym_u16] = ACTIONS(1879), - [anon_sym_u32] = ACTIONS(1879), - [anon_sym_u64] = ACTIONS(1879), - [anon_sym_isize] = ACTIONS(1879), - [anon_sym_usize] = ACTIONS(1879), - [anon_sym_f32] = ACTIONS(1879), - [anon_sym_f64] = ACTIONS(1879), - [anon_sym_c_char] = ACTIONS(1879), - [anon_sym_c_schar] = ACTIONS(1879), - [anon_sym_c_uchar] = ACTIONS(1879), - [anon_sym_c_short] = ACTIONS(1879), - [anon_sym_c_ushort] = ACTIONS(1879), - [anon_sym_c_int] = ACTIONS(1879), - [anon_sym_c_uint] = ACTIONS(1879), - [anon_sym_c_long] = ACTIONS(1879), - [anon_sym_c_ulong] = ACTIONS(1879), - [anon_sym_c_longlong] = ACTIONS(1879), - [anon_sym_c_ulonglong] = ACTIONS(1879), - [anon_sym_c_float] = ACTIONS(1879), - [anon_sym_c_double] = ACTIONS(1879), - [anon_sym_c_longdouble] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_orelse] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_or] = ACTIONS(1879), - [anon_sym_and] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1877), - [anon_sym_BANG_EQ] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1877), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_xor] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1877), - [anon_sym_LT_LT_PIPE] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1877), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), - }, - [STATE(2284)] = { - [sym_identifier] = ACTIONS(1515), - [anon_sym_func] = ACTIONS(1515), - [anon_sym_c_func] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_COMMA] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_struct_type_BANG] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1513), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_noreturn] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1515), - [anon_sym_anyopaque] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_range] = ACTIONS(1515), - [anon_sym_i8] = ACTIONS(1515), - [anon_sym_i16] = ACTIONS(1515), - [anon_sym_i32] = ACTIONS(1515), - [anon_sym_i64] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1515), - [anon_sym_u16] = ACTIONS(1515), - [anon_sym_u32] = ACTIONS(1515), - [anon_sym_u64] = ACTIONS(1515), - [anon_sym_isize] = ACTIONS(1515), - [anon_sym_usize] = ACTIONS(1515), - [anon_sym_f32] = ACTIONS(1515), - [anon_sym_f64] = ACTIONS(1515), - [anon_sym_c_char] = ACTIONS(1515), - [anon_sym_c_schar] = ACTIONS(1515), - [anon_sym_c_uchar] = ACTIONS(1515), - [anon_sym_c_short] = ACTIONS(1515), - [anon_sym_c_ushort] = ACTIONS(1515), - [anon_sym_c_int] = ACTIONS(1515), - [anon_sym_c_uint] = ACTIONS(1515), - [anon_sym_c_long] = ACTIONS(1515), - [anon_sym_c_ulong] = ACTIONS(1515), - [anon_sym_c_longlong] = ACTIONS(1515), - [anon_sym_c_ulonglong] = ACTIONS(1515), - [anon_sym_c_float] = ACTIONS(1515), - [anon_sym_c_double] = ACTIONS(1515), - [anon_sym_c_longdouble] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), - [anon_sym_orelse] = ACTIONS(1515), - [anon_sym_catch] = ACTIONS(1515), - [anon_sym_or] = ACTIONS(1515), - [anon_sym_and] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_xor] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1515), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_LT_LT_PIPE] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1513), - }, - [STATE(2285)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_c_func] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_struct_type_BANG] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(2286)] = { - [sym_identifier] = ACTIONS(1791), - [anon_sym_func] = ACTIONS(1791), - [anon_sym_c_func] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(5637), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1789), - [anon_sym_struct_type_BANG] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_noreturn] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_anyopaque] = ACTIONS(1791), - [anon_sym_bool] = ACTIONS(1791), - [anon_sym_int] = ACTIONS(1791), - [anon_sym_uint] = ACTIONS(1791), - [anon_sym_float] = ACTIONS(1791), - [anon_sym_range] = ACTIONS(1791), - [anon_sym_i8] = ACTIONS(1791), - [anon_sym_i16] = ACTIONS(1791), - [anon_sym_i32] = ACTIONS(1791), - [anon_sym_i64] = ACTIONS(1791), - [anon_sym_u8] = ACTIONS(1791), - [anon_sym_u16] = ACTIONS(1791), - [anon_sym_u32] = ACTIONS(1791), - [anon_sym_u64] = ACTIONS(1791), - [anon_sym_isize] = ACTIONS(1791), - [anon_sym_usize] = ACTIONS(1791), - [anon_sym_f32] = ACTIONS(1791), - [anon_sym_f64] = ACTIONS(1791), - [anon_sym_c_char] = ACTIONS(1791), - [anon_sym_c_schar] = ACTIONS(1791), - [anon_sym_c_uchar] = ACTIONS(1791), - [anon_sym_c_short] = ACTIONS(1791), - [anon_sym_c_ushort] = ACTIONS(1791), - [anon_sym_c_int] = ACTIONS(1791), - [anon_sym_c_uint] = ACTIONS(1791), - [anon_sym_c_long] = ACTIONS(1791), - [anon_sym_c_ulong] = ACTIONS(1791), - [anon_sym_c_longlong] = ACTIONS(1791), - [anon_sym_c_ulonglong] = ACTIONS(1791), - [anon_sym_c_float] = ACTIONS(1791), - [anon_sym_c_double] = ACTIONS(1791), - [anon_sym_c_longdouble] = ACTIONS(1791), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1789), - [anon_sym_orelse] = ACTIONS(1791), - [anon_sym_catch] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [anon_sym_and] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_xor] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1789), - [anon_sym_LT_LT_PIPE] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1789), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1789), - }, - [STATE(2287)] = { - [sym_identifier] = ACTIONS(1797), - [anon_sym_func] = ACTIONS(1797), - [anon_sym_c_func] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_struct_type_BANG] = ACTIONS(1795), - [anon_sym_QMARK] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_noreturn] = ACTIONS(1797), - [anon_sym_type] = 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_DOT_DOT] = ACTIONS(1797), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_orelse] = ACTIONS(1797), - [anon_sym_catch] = ACTIONS(1797), - [anon_sym_or] = ACTIONS(1797), - [anon_sym_and] = ACTIONS(1797), - [anon_sym_EQ_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_LT_EQ] = ACTIONS(1795), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_GT_EQ] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_xor] = ACTIONS(1797), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1795), - [anon_sym_LT_LT_PIPE] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(1795), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1795), - }, - [STATE(2288)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_c_func] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(5607), - [anon_sym_catch] = ACTIONS(5609), - [anon_sym_or] = ACTIONS(5611), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(2289)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_c_func] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_struct_type_BANG] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_LT_LT_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), - }, - [STATE(2290)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_c_func] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(5611), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(2291)] = { - [sym_identifier] = ACTIONS(1519), - [anon_sym_func] = ACTIONS(1519), - [anon_sym_c_func] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_struct] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_COMMA] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_struct_type_BANG] = ACTIONS(1517), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_noreturn] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_anyopaque] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_range] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_c_char] = ACTIONS(1519), - [anon_sym_c_schar] = ACTIONS(1519), - [anon_sym_c_uchar] = ACTIONS(1519), - [anon_sym_c_short] = ACTIONS(1519), - [anon_sym_c_ushort] = ACTIONS(1519), - [anon_sym_c_int] = ACTIONS(1519), - [anon_sym_c_uint] = ACTIONS(1519), - [anon_sym_c_long] = ACTIONS(1519), - [anon_sym_c_ulong] = ACTIONS(1519), - [anon_sym_c_longlong] = ACTIONS(1519), - [anon_sym_c_ulonglong] = ACTIONS(1519), - [anon_sym_c_float] = ACTIONS(1519), - [anon_sym_c_double] = ACTIONS(1519), - [anon_sym_c_longdouble] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_orelse] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_LT_LT_PIPE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1517), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1517), - }, - [STATE(2292)] = { - [sym_identifier] = ACTIONS(1555), - [anon_sym_func] = ACTIONS(1555), - [anon_sym_c_func] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_struct_type_BANG] = ACTIONS(1553), - [anon_sym_QMARK] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_noreturn] = ACTIONS(1555), - [anon_sym_type] = ACTIONS(1555), - [anon_sym_anyopaque] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_range] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_c_char] = ACTIONS(1555), - [anon_sym_c_schar] = ACTIONS(1555), - [anon_sym_c_uchar] = ACTIONS(1555), - [anon_sym_c_short] = ACTIONS(1555), - [anon_sym_c_ushort] = ACTIONS(1555), - [anon_sym_c_int] = ACTIONS(1555), - [anon_sym_c_uint] = ACTIONS(1555), - [anon_sym_c_long] = ACTIONS(1555), - [anon_sym_c_ulong] = ACTIONS(1555), - [anon_sym_c_longlong] = ACTIONS(1555), - [anon_sym_c_ulonglong] = ACTIONS(1555), - [anon_sym_c_float] = ACTIONS(1555), - [anon_sym_c_double] = ACTIONS(1555), - [anon_sym_c_longdouble] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_orelse] = ACTIONS(1555), - [anon_sym_catch] = ACTIONS(1555), - [anon_sym_or] = ACTIONS(1555), - [anon_sym_and] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1553), - [anon_sym_BANG_EQ] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(1553), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_GT_EQ] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_xor] = ACTIONS(1555), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1553), - [anon_sym_LT_LT_PIPE] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1553), - }, - [STATE(2293)] = { - [sym_identifier] = ACTIONS(1567), - [anon_sym_func] = ACTIONS(1567), - [anon_sym_c_func] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_struct] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_struct_type_BANG] = ACTIONS(1565), - [anon_sym_QMARK] = ACTIONS(1565), - [anon_sym_AT] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_noreturn] = ACTIONS(1567), - [anon_sym_type] = 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_DOT_DOT] = ACTIONS(1567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_orelse] = ACTIONS(1567), - [anon_sym_catch] = ACTIONS(1567), - [anon_sym_or] = ACTIONS(1567), - [anon_sym_and] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_BANG_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_LT_EQ] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_EQ] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_xor] = ACTIONS(1567), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_LT_LT_PIPE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1565), - }, - [STATE(2294)] = { - [sym_identifier] = ACTIONS(1571), - [anon_sym_func] = ACTIONS(1571), - [anon_sym_c_func] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_COMMA] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_struct_type_BANG] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(1569), - [anon_sym_AT] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_noreturn] = ACTIONS(1571), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_anyopaque] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_range] = ACTIONS(1571), - [anon_sym_i8] = ACTIONS(1571), - [anon_sym_i16] = ACTIONS(1571), - [anon_sym_i32] = ACTIONS(1571), - [anon_sym_i64] = ACTIONS(1571), - [anon_sym_u8] = ACTIONS(1571), - [anon_sym_u16] = ACTIONS(1571), - [anon_sym_u32] = ACTIONS(1571), - [anon_sym_u64] = ACTIONS(1571), - [anon_sym_isize] = ACTIONS(1571), - [anon_sym_usize] = ACTIONS(1571), - [anon_sym_f32] = ACTIONS(1571), - [anon_sym_f64] = ACTIONS(1571), - [anon_sym_c_char] = ACTIONS(1571), - [anon_sym_c_schar] = ACTIONS(1571), - [anon_sym_c_uchar] = ACTIONS(1571), - [anon_sym_c_short] = ACTIONS(1571), - [anon_sym_c_ushort] = ACTIONS(1571), - [anon_sym_c_int] = ACTIONS(1571), - [anon_sym_c_uint] = ACTIONS(1571), - [anon_sym_c_long] = ACTIONS(1571), - [anon_sym_c_ulong] = ACTIONS(1571), - [anon_sym_c_longlong] = ACTIONS(1571), - [anon_sym_c_ulonglong] = ACTIONS(1571), - [anon_sym_c_float] = ACTIONS(1571), - [anon_sym_c_double] = ACTIONS(1571), - [anon_sym_c_longdouble] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_orelse] = ACTIONS(1571), - [anon_sym_catch] = ACTIONS(1571), - [anon_sym_or] = ACTIONS(1571), - [anon_sym_and] = ACTIONS(1571), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_BANG_EQ] = ACTIONS(1569), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_LT_EQ] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_xor] = ACTIONS(1571), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(1569), - [anon_sym_LT_LT_PIPE] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_SLASH] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1569), - }, - [STATE(2295)] = { - [sym_identifier] = ACTIONS(1587), - [anon_sym_func] = ACTIONS(1587), - [anon_sym_c_func] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_struct_type_BANG] = ACTIONS(1585), - [anon_sym_QMARK] = ACTIONS(1585), - [anon_sym_AT] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_noreturn] = ACTIONS(1587), - [anon_sym_type] = ACTIONS(1587), - [anon_sym_anyopaque] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_range] = ACTIONS(1587), - [anon_sym_i8] = ACTIONS(1587), - [anon_sym_i16] = ACTIONS(1587), - [anon_sym_i32] = ACTIONS(1587), - [anon_sym_i64] = ACTIONS(1587), - [anon_sym_u8] = ACTIONS(1587), - [anon_sym_u16] = ACTIONS(1587), - [anon_sym_u32] = ACTIONS(1587), - [anon_sym_u64] = ACTIONS(1587), - [anon_sym_isize] = ACTIONS(1587), - [anon_sym_usize] = ACTIONS(1587), - [anon_sym_f32] = ACTIONS(1587), - [anon_sym_f64] = ACTIONS(1587), - [anon_sym_c_char] = ACTIONS(1587), - [anon_sym_c_schar] = ACTIONS(1587), - [anon_sym_c_uchar] = ACTIONS(1587), - [anon_sym_c_short] = ACTIONS(1587), - [anon_sym_c_ushort] = ACTIONS(1587), - [anon_sym_c_int] = ACTIONS(1587), - [anon_sym_c_uint] = ACTIONS(1587), - [anon_sym_c_long] = ACTIONS(1587), - [anon_sym_c_ulong] = ACTIONS(1587), - [anon_sym_c_longlong] = ACTIONS(1587), - [anon_sym_c_ulonglong] = ACTIONS(1587), - [anon_sym_c_float] = ACTIONS(1587), - [anon_sym_c_double] = ACTIONS(1587), - [anon_sym_c_longdouble] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_orelse] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1585), - [anon_sym_BANG_EQ] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_LT_LT] = ACTIONS(1587), - [anon_sym_GT_GT] = ACTIONS(1585), - [anon_sym_LT_LT_PIPE] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1587), - [anon_sym_CARET] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1585), - }, - [STATE(2296)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1405), - [anon_sym_c_func] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_struct_type_BANG] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_anyopaque] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_range] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_c_char] = ACTIONS(1405), - [anon_sym_c_schar] = ACTIONS(1405), - [anon_sym_c_uchar] = ACTIONS(1405), - [anon_sym_c_short] = ACTIONS(1405), - [anon_sym_c_ushort] = ACTIONS(1405), - [anon_sym_c_int] = ACTIONS(1405), - [anon_sym_c_uint] = ACTIONS(1405), - [anon_sym_c_long] = ACTIONS(1405), - [anon_sym_c_ulong] = ACTIONS(1405), - [anon_sym_c_longlong] = ACTIONS(1405), - [anon_sym_c_ulonglong] = ACTIONS(1405), - [anon_sym_c_float] = ACTIONS(1405), - [anon_sym_c_double] = ACTIONS(1405), - [anon_sym_c_longdouble] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(2297)] = { - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(1605), - [anon_sym_c_func] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_COMMA] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_struct_type_BANG] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1603), - [anon_sym_AT] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_noreturn] = ACTIONS(1605), - [anon_sym_type] = ACTIONS(1605), - [anon_sym_anyopaque] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_int] = ACTIONS(1605), - [anon_sym_uint] = ACTIONS(1605), - [anon_sym_float] = ACTIONS(1605), - [anon_sym_range] = ACTIONS(1605), - [anon_sym_i8] = ACTIONS(1605), - [anon_sym_i16] = ACTIONS(1605), - [anon_sym_i32] = ACTIONS(1605), - [anon_sym_i64] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1605), - [anon_sym_u16] = ACTIONS(1605), - [anon_sym_u32] = ACTIONS(1605), - [anon_sym_u64] = ACTIONS(1605), - [anon_sym_isize] = ACTIONS(1605), - [anon_sym_usize] = ACTIONS(1605), - [anon_sym_f32] = ACTIONS(1605), - [anon_sym_f64] = ACTIONS(1605), - [anon_sym_c_char] = ACTIONS(1605), - [anon_sym_c_schar] = ACTIONS(1605), - [anon_sym_c_uchar] = ACTIONS(1605), - [anon_sym_c_short] = ACTIONS(1605), - [anon_sym_c_ushort] = ACTIONS(1605), - [anon_sym_c_int] = ACTIONS(1605), - [anon_sym_c_uint] = ACTIONS(1605), - [anon_sym_c_long] = ACTIONS(1605), - [anon_sym_c_ulong] = ACTIONS(1605), - [anon_sym_c_longlong] = ACTIONS(1605), - [anon_sym_c_ulonglong] = ACTIONS(1605), - [anon_sym_c_float] = ACTIONS(1605), - [anon_sym_c_double] = ACTIONS(1605), - [anon_sym_c_longdouble] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_orelse] = ACTIONS(1605), - [anon_sym_catch] = ACTIONS(1605), - [anon_sym_or] = ACTIONS(1605), - [anon_sym_and] = ACTIONS(1605), - [anon_sym_EQ_EQ] = ACTIONS(1603), - [anon_sym_BANG_EQ] = ACTIONS(1603), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym_LT_EQ] = ACTIONS(1603), - [anon_sym_GT] = ACTIONS(1605), - [anon_sym_GT_EQ] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_xor] = ACTIONS(1605), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_GT_GT] = ACTIONS(1603), - [anon_sym_LT_LT_PIPE] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_DOT] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1603), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1603), - }, - [STATE(2298)] = { - [sym_identifier] = ACTIONS(1613), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_struct] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_COMMA] = ACTIONS(1611), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1611), - [anon_sym_struct_type_BANG] = ACTIONS(1611), - [anon_sym_QMARK] = ACTIONS(1611), - [anon_sym_AT] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_void] = ACTIONS(1613), - [anon_sym_noreturn] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1613), - [anon_sym_anyopaque] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_int] = ACTIONS(1613), - [anon_sym_uint] = ACTIONS(1613), - [anon_sym_float] = ACTIONS(1613), - [anon_sym_range] = ACTIONS(1613), - [anon_sym_i8] = ACTIONS(1613), - [anon_sym_i16] = ACTIONS(1613), - [anon_sym_i32] = ACTIONS(1613), - [anon_sym_i64] = ACTIONS(1613), - [anon_sym_u8] = ACTIONS(1613), - [anon_sym_u16] = ACTIONS(1613), - [anon_sym_u32] = ACTIONS(1613), - [anon_sym_u64] = ACTIONS(1613), - [anon_sym_isize] = ACTIONS(1613), - [anon_sym_usize] = ACTIONS(1613), - [anon_sym_f32] = ACTIONS(1613), - [anon_sym_f64] = ACTIONS(1613), - [anon_sym_c_char] = ACTIONS(1613), - [anon_sym_c_schar] = ACTIONS(1613), - [anon_sym_c_uchar] = ACTIONS(1613), - [anon_sym_c_short] = ACTIONS(1613), - [anon_sym_c_ushort] = ACTIONS(1613), - [anon_sym_c_int] = ACTIONS(1613), - [anon_sym_c_uint] = ACTIONS(1613), - [anon_sym_c_long] = ACTIONS(1613), - [anon_sym_c_ulong] = ACTIONS(1613), - [anon_sym_c_longlong] = ACTIONS(1613), - [anon_sym_c_ulonglong] = ACTIONS(1613), - [anon_sym_c_float] = ACTIONS(1613), - [anon_sym_c_double] = ACTIONS(1613), - [anon_sym_c_longdouble] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1611), - [anon_sym_orelse] = ACTIONS(1613), - [anon_sym_catch] = ACTIONS(1613), - [anon_sym_or] = ACTIONS(1613), - [anon_sym_and] = ACTIONS(1613), - [anon_sym_EQ_EQ] = ACTIONS(1611), - [anon_sym_BANG_EQ] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_LT_EQ] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1613), - [anon_sym_GT_EQ] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_xor] = ACTIONS(1613), - [anon_sym_LT_LT] = ACTIONS(1613), - [anon_sym_GT_GT] = ACTIONS(1611), - [anon_sym_LT_LT_PIPE] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1611), - [anon_sym_DOT] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1611), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1611), - }, - [STATE(2299)] = { - [sym_identifier] = ACTIONS(1633), - [anon_sym_func] = ACTIONS(1633), - [anon_sym_c_func] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_COMMA] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_struct_type_BANG] = ACTIONS(1631), - [anon_sym_QMARK] = ACTIONS(1631), - [anon_sym_AT] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_void] = ACTIONS(1633), - [anon_sym_noreturn] = 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_DOT_DOT] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_orelse] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_or] = ACTIONS(1633), - [anon_sym_and] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1631), - [anon_sym_BANG_EQ] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LT_EQ] = ACTIONS(1631), - [anon_sym_GT] = ACTIONS(1633), - [anon_sym_GT_EQ] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_xor] = ACTIONS(1633), - [anon_sym_LT_LT] = ACTIONS(1633), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_LT_LT_PIPE] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_DOT] = ACTIONS(1633), - [anon_sym_CARET] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1631), - }, - [STATE(2300)] = { - [sym_identifier] = ACTIONS(1801), - [anon_sym_func] = ACTIONS(1801), - [anon_sym_c_func] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_struct] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_struct_type_BANG] = ACTIONS(1799), - [anon_sym_QMARK] = ACTIONS(1799), - [anon_sym_AT] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_noreturn] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_anyopaque] = ACTIONS(1801), - [anon_sym_bool] = ACTIONS(1801), - [anon_sym_int] = ACTIONS(1801), - [anon_sym_uint] = ACTIONS(1801), - [anon_sym_float] = ACTIONS(1801), - [anon_sym_range] = ACTIONS(1801), - [anon_sym_i8] = ACTIONS(1801), - [anon_sym_i16] = ACTIONS(1801), - [anon_sym_i32] = ACTIONS(1801), - [anon_sym_i64] = ACTIONS(1801), - [anon_sym_u8] = ACTIONS(1801), - [anon_sym_u16] = ACTIONS(1801), - [anon_sym_u32] = ACTIONS(1801), - [anon_sym_u64] = ACTIONS(1801), - [anon_sym_isize] = ACTIONS(1801), - [anon_sym_usize] = ACTIONS(1801), - [anon_sym_f32] = ACTIONS(1801), - [anon_sym_f64] = ACTIONS(1801), - [anon_sym_c_char] = ACTIONS(1801), - [anon_sym_c_schar] = ACTIONS(1801), - [anon_sym_c_uchar] = ACTIONS(1801), - [anon_sym_c_short] = ACTIONS(1801), - [anon_sym_c_ushort] = ACTIONS(1801), - [anon_sym_c_int] = ACTIONS(1801), - [anon_sym_c_uint] = ACTIONS(1801), - [anon_sym_c_long] = ACTIONS(1801), - [anon_sym_c_ulong] = ACTIONS(1801), - [anon_sym_c_longlong] = ACTIONS(1801), - [anon_sym_c_ulonglong] = ACTIONS(1801), - [anon_sym_c_float] = ACTIONS(1801), - [anon_sym_c_double] = ACTIONS(1801), - [anon_sym_c_longdouble] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_orelse] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_or] = ACTIONS(1801), - [anon_sym_and] = ACTIONS(1801), - [anon_sym_EQ_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_LT_EQ] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_xor] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_LT_LT_PIPE] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_DOT] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1799), - }, - [STATE(2301)] = { - [sym_identifier] = ACTIONS(1617), - [anon_sym_func] = ACTIONS(1617), - [anon_sym_c_func] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_COMMA] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1615), - [anon_sym_struct_type_BANG] = ACTIONS(1615), - [anon_sym_QMARK] = ACTIONS(1615), - [anon_sym_AT] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_noreturn] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_anyopaque] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_range] = ACTIONS(1617), - [anon_sym_i8] = ACTIONS(1617), - [anon_sym_i16] = ACTIONS(1617), - [anon_sym_i32] = ACTIONS(1617), - [anon_sym_i64] = ACTIONS(1617), - [anon_sym_u8] = ACTIONS(1617), - [anon_sym_u16] = ACTIONS(1617), - [anon_sym_u32] = ACTIONS(1617), - [anon_sym_u64] = ACTIONS(1617), - [anon_sym_isize] = ACTIONS(1617), - [anon_sym_usize] = ACTIONS(1617), - [anon_sym_f32] = ACTIONS(1617), - [anon_sym_f64] = ACTIONS(1617), - [anon_sym_c_char] = ACTIONS(1617), - [anon_sym_c_schar] = ACTIONS(1617), - [anon_sym_c_uchar] = ACTIONS(1617), - [anon_sym_c_short] = ACTIONS(1617), - [anon_sym_c_ushort] = ACTIONS(1617), - [anon_sym_c_int] = ACTIONS(1617), - [anon_sym_c_uint] = ACTIONS(1617), - [anon_sym_c_long] = ACTIONS(1617), - [anon_sym_c_ulong] = ACTIONS(1617), - [anon_sym_c_longlong] = ACTIONS(1617), - [anon_sym_c_ulonglong] = ACTIONS(1617), - [anon_sym_c_float] = ACTIONS(1617), - [anon_sym_c_double] = ACTIONS(1617), - [anon_sym_c_longdouble] = ACTIONS(1617), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1615), - [anon_sym_orelse] = ACTIONS(1617), - [anon_sym_catch] = ACTIONS(1617), - [anon_sym_or] = ACTIONS(1617), - [anon_sym_and] = ACTIONS(1617), - [anon_sym_EQ_EQ] = ACTIONS(1615), - [anon_sym_BANG_EQ] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_LT_EQ] = ACTIONS(1615), - [anon_sym_GT] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_xor] = ACTIONS(1617), - [anon_sym_LT_LT] = ACTIONS(1617), - [anon_sym_GT_GT] = ACTIONS(1615), - [anon_sym_LT_LT_PIPE] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_SLASH] = ACTIONS(1615), - [anon_sym_DOT] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1615), - }, - [STATE(2302)] = { - [sym_identifier] = ACTIONS(1637), - [anon_sym_func] = ACTIONS(1637), - [anon_sym_c_func] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_COMMA] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1635), - [anon_sym_struct_type_BANG] = ACTIONS(1635), - [anon_sym_QMARK] = ACTIONS(1635), - [anon_sym_AT] = ACTIONS(1635), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_noreturn] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_anyopaque] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_int] = ACTIONS(1637), - [anon_sym_uint] = ACTIONS(1637), - [anon_sym_float] = ACTIONS(1637), - [anon_sym_range] = ACTIONS(1637), - [anon_sym_i8] = ACTIONS(1637), - [anon_sym_i16] = ACTIONS(1637), - [anon_sym_i32] = ACTIONS(1637), - [anon_sym_i64] = ACTIONS(1637), - [anon_sym_u8] = ACTIONS(1637), - [anon_sym_u16] = ACTIONS(1637), - [anon_sym_u32] = ACTIONS(1637), - [anon_sym_u64] = ACTIONS(1637), - [anon_sym_isize] = ACTIONS(1637), - [anon_sym_usize] = ACTIONS(1637), - [anon_sym_f32] = ACTIONS(1637), - [anon_sym_f64] = ACTIONS(1637), - [anon_sym_c_char] = ACTIONS(1637), - [anon_sym_c_schar] = ACTIONS(1637), - [anon_sym_c_uchar] = ACTIONS(1637), - [anon_sym_c_short] = ACTIONS(1637), - [anon_sym_c_ushort] = ACTIONS(1637), - [anon_sym_c_int] = ACTIONS(1637), - [anon_sym_c_uint] = ACTIONS(1637), - [anon_sym_c_long] = ACTIONS(1637), - [anon_sym_c_ulong] = ACTIONS(1637), - [anon_sym_c_longlong] = ACTIONS(1637), - [anon_sym_c_ulonglong] = ACTIONS(1637), - [anon_sym_c_float] = ACTIONS(1637), - [anon_sym_c_double] = ACTIONS(1637), - [anon_sym_c_longdouble] = ACTIONS(1637), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1635), - [anon_sym_orelse] = ACTIONS(1637), - [anon_sym_catch] = ACTIONS(1637), - [anon_sym_or] = ACTIONS(1637), - [anon_sym_and] = ACTIONS(1637), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1635), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1635), - [anon_sym_xor] = ACTIONS(1637), - [anon_sym_LT_LT] = ACTIONS(1637), - [anon_sym_GT_GT] = ACTIONS(1635), - [anon_sym_LT_LT_PIPE] = ACTIONS(1635), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(1635), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_CARET] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1635), - }, - [STATE(2303)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1490), - [anon_sym_func] = ACTIONS(1490), - [anon_sym_c_func] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_struct_type_BANG] = ACTIONS(1488), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_anyopaque] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_int] = ACTIONS(1490), - [anon_sym_uint] = ACTIONS(1490), - [anon_sym_float] = ACTIONS(1490), - [anon_sym_range] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_c_char] = ACTIONS(1490), - [anon_sym_c_schar] = ACTIONS(1490), - [anon_sym_c_uchar] = ACTIONS(1490), - [anon_sym_c_short] = ACTIONS(1490), - [anon_sym_c_ushort] = ACTIONS(1490), - [anon_sym_c_int] = ACTIONS(1490), - [anon_sym_c_uint] = ACTIONS(1490), - [anon_sym_c_long] = ACTIONS(1490), - [anon_sym_c_ulong] = ACTIONS(1490), - [anon_sym_c_longlong] = ACTIONS(1490), - [anon_sym_c_ulonglong] = ACTIONS(1490), - [anon_sym_c_float] = ACTIONS(1490), - [anon_sym_c_double] = ACTIONS(1490), - [anon_sym_c_longdouble] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_orelse] = ACTIONS(1490), - [anon_sym_catch] = ACTIONS(1490), - [anon_sym_or] = ACTIONS(1490), - [anon_sym_and] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_xor] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1488), - [anon_sym_LT_LT_PIPE] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_SLASH] = ACTIONS(1488), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(2304)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1409), - [anon_sym_func] = ACTIONS(1409), - [anon_sym_c_func] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_struct_type_BANG] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_anyopaque] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_range] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_c_char] = ACTIONS(1409), - [anon_sym_c_schar] = ACTIONS(1409), - [anon_sym_c_uchar] = ACTIONS(1409), - [anon_sym_c_short] = ACTIONS(1409), - [anon_sym_c_ushort] = ACTIONS(1409), - [anon_sym_c_int] = ACTIONS(1409), - [anon_sym_c_uint] = ACTIONS(1409), - [anon_sym_c_long] = ACTIONS(1409), - [anon_sym_c_ulong] = ACTIONS(1409), - [anon_sym_c_longlong] = ACTIONS(1409), - [anon_sym_c_ulonglong] = ACTIONS(1409), - [anon_sym_c_float] = ACTIONS(1409), - [anon_sym_c_double] = ACTIONS(1409), - [anon_sym_c_longdouble] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_orelse] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_or] = ACTIONS(1409), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5619), - [anon_sym_LT_LT] = ACTIONS(5599), - [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_LT_LT_PIPE] = ACTIONS(5601), - [anon_sym_PLUS] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1407), - }, - [STATE(2305)] = { - [sym_argument_list] = STATE(2323), - [sym_identifier] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_c_func] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(5582), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_struct_type_BANG] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(5593), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(5603), - [anon_sym_CARET] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(2306)] = { - [sym_identifier] = ACTIONS(2043), - [anon_sym_func] = ACTIONS(2043), - [anon_sym_c_func] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_struct_type_BANG] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_AT] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_void] = ACTIONS(2043), - [anon_sym_noreturn] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_anyopaque] = ACTIONS(2043), - [anon_sym_bool] = ACTIONS(2043), - [anon_sym_int] = ACTIONS(2043), - [anon_sym_uint] = ACTIONS(2043), - [anon_sym_float] = ACTIONS(2043), - [anon_sym_range] = ACTIONS(2043), - [anon_sym_i8] = ACTIONS(2043), - [anon_sym_i16] = ACTIONS(2043), - [anon_sym_i32] = ACTIONS(2043), - [anon_sym_i64] = ACTIONS(2043), - [anon_sym_u8] = ACTIONS(2043), - [anon_sym_u16] = ACTIONS(2043), - [anon_sym_u32] = ACTIONS(2043), - [anon_sym_u64] = ACTIONS(2043), - [anon_sym_isize] = ACTIONS(2043), - [anon_sym_usize] = ACTIONS(2043), - [anon_sym_f32] = ACTIONS(2043), - [anon_sym_f64] = ACTIONS(2043), - [anon_sym_c_char] = ACTIONS(2043), - [anon_sym_c_schar] = ACTIONS(2043), - [anon_sym_c_uchar] = ACTIONS(2043), - [anon_sym_c_short] = ACTIONS(2043), - [anon_sym_c_ushort] = ACTIONS(2043), - [anon_sym_c_int] = ACTIONS(2043), - [anon_sym_c_uint] = ACTIONS(2043), - [anon_sym_c_long] = ACTIONS(2043), - [anon_sym_c_ulong] = ACTIONS(2043), - [anon_sym_c_longlong] = ACTIONS(2043), - [anon_sym_c_ulonglong] = ACTIONS(2043), - [anon_sym_c_float] = ACTIONS(2043), - [anon_sym_c_double] = ACTIONS(2043), - [anon_sym_c_longdouble] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2041), - [anon_sym_orelse] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_or] = ACTIONS(2043), - [anon_sym_and] = ACTIONS(2043), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_xor] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2043), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_LT_LT_PIPE] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_DOT] = ACTIONS(2043), - [anon_sym_CARET] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2041), - }, - [STATE(2307)] = { - [sym_identifier] = ACTIONS(2007), - [anon_sym_func] = ACTIONS(2007), - [anon_sym_c_func] = ACTIONS(2007), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_struct_type_BANG] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_void] = ACTIONS(2007), - [anon_sym_noreturn] = ACTIONS(2007), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_anyopaque] = ACTIONS(2007), - [anon_sym_bool] = ACTIONS(2007), - [anon_sym_int] = ACTIONS(2007), - [anon_sym_uint] = ACTIONS(2007), - [anon_sym_float] = ACTIONS(2007), - [anon_sym_range] = ACTIONS(2007), - [anon_sym_i8] = ACTIONS(2007), - [anon_sym_i16] = ACTIONS(2007), - [anon_sym_i32] = ACTIONS(2007), - [anon_sym_i64] = ACTIONS(2007), - [anon_sym_u8] = ACTIONS(2007), - [anon_sym_u16] = ACTIONS(2007), - [anon_sym_u32] = ACTIONS(2007), - [anon_sym_u64] = ACTIONS(2007), - [anon_sym_isize] = ACTIONS(2007), - [anon_sym_usize] = ACTIONS(2007), - [anon_sym_f32] = ACTIONS(2007), - [anon_sym_f64] = ACTIONS(2007), - [anon_sym_c_char] = ACTIONS(2007), - [anon_sym_c_schar] = ACTIONS(2007), - [anon_sym_c_uchar] = ACTIONS(2007), - [anon_sym_c_short] = ACTIONS(2007), - [anon_sym_c_ushort] = ACTIONS(2007), - [anon_sym_c_int] = ACTIONS(2007), - [anon_sym_c_uint] = ACTIONS(2007), - [anon_sym_c_long] = ACTIONS(2007), - [anon_sym_c_ulong] = ACTIONS(2007), - [anon_sym_c_longlong] = ACTIONS(2007), - [anon_sym_c_ulonglong] = ACTIONS(2007), - [anon_sym_c_float] = ACTIONS(2007), - [anon_sym_c_double] = ACTIONS(2007), - [anon_sym_c_longdouble] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [anon_sym_orelse] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_or] = ACTIONS(2007), - [anon_sym_and] = ACTIONS(2007), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2007), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_xor] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2005), - [anon_sym_LT_LT_PIPE] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_SLASH] = ACTIONS(2005), - [anon_sym_DOT] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2005), - }, - [STATE(2308)] = { - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_c_func] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_struct_type_BANG] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_AT] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_void] = ACTIONS(451), - [anon_sym_noreturn] = ACTIONS(451), - [anon_sym_type] = 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_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [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(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_LT_LT_PIPE] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_CARET] = ACTIONS(453), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(453), - }, - [STATE(2309)] = { - [sym_identifier] = ACTIONS(1865), - [anon_sym_func] = ACTIONS(1865), - [anon_sym_c_func] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_struct_type_BANG] = ACTIONS(1863), - [anon_sym_QMARK] = ACTIONS(1863), - [anon_sym_AT] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_void] = ACTIONS(1865), - [anon_sym_noreturn] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_anyopaque] = ACTIONS(1865), - [anon_sym_bool] = ACTIONS(1865), - [anon_sym_int] = ACTIONS(1865), - [anon_sym_uint] = ACTIONS(1865), - [anon_sym_float] = ACTIONS(1865), - [anon_sym_range] = ACTIONS(1865), - [anon_sym_i8] = ACTIONS(1865), - [anon_sym_i16] = ACTIONS(1865), - [anon_sym_i32] = ACTIONS(1865), - [anon_sym_i64] = ACTIONS(1865), - [anon_sym_u8] = ACTIONS(1865), - [anon_sym_u16] = ACTIONS(1865), - [anon_sym_u32] = ACTIONS(1865), - [anon_sym_u64] = ACTIONS(1865), - [anon_sym_isize] = ACTIONS(1865), - [anon_sym_usize] = ACTIONS(1865), - [anon_sym_f32] = ACTIONS(1865), - [anon_sym_f64] = ACTIONS(1865), - [anon_sym_c_char] = ACTIONS(1865), - [anon_sym_c_schar] = ACTIONS(1865), - [anon_sym_c_uchar] = ACTIONS(1865), - [anon_sym_c_short] = ACTIONS(1865), - [anon_sym_c_ushort] = ACTIONS(1865), - [anon_sym_c_int] = ACTIONS(1865), - [anon_sym_c_uint] = ACTIONS(1865), - [anon_sym_c_long] = ACTIONS(1865), - [anon_sym_c_ulong] = ACTIONS(1865), - [anon_sym_c_longlong] = ACTIONS(1865), - [anon_sym_c_ulonglong] = ACTIONS(1865), - [anon_sym_c_float] = ACTIONS(1865), - [anon_sym_c_double] = ACTIONS(1865), - [anon_sym_c_longdouble] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [anon_sym_orelse] = ACTIONS(1865), - [anon_sym_catch] = ACTIONS(1865), - [anon_sym_or] = ACTIONS(1865), - [anon_sym_and] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1863), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_xor] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1865), - [anon_sym_GT_GT] = ACTIONS(1863), - [anon_sym_LT_LT_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1863), - }, - [STATE(2310)] = { - [sym_identifier] = ACTIONS(396), - [anon_sym_func] = ACTIONS(396), - [anon_sym_c_func] = ACTIONS(396), - [anon_sym_struct] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_struct_type_BANG] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_AT] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_void] = ACTIONS(396), - [anon_sym_noreturn] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_anyopaque] = ACTIONS(396), - [anon_sym_bool] = ACTIONS(396), - [anon_sym_int] = ACTIONS(396), - [anon_sym_uint] = ACTIONS(396), - [anon_sym_float] = ACTIONS(396), - [anon_sym_range] = ACTIONS(396), - [anon_sym_i8] = ACTIONS(396), - [anon_sym_i16] = ACTIONS(396), - [anon_sym_i32] = ACTIONS(396), - [anon_sym_i64] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(396), - [anon_sym_u16] = ACTIONS(396), - [anon_sym_u32] = ACTIONS(396), - [anon_sym_u64] = ACTIONS(396), - [anon_sym_isize] = ACTIONS(396), - [anon_sym_usize] = ACTIONS(396), - [anon_sym_f32] = ACTIONS(396), - [anon_sym_f64] = ACTIONS(396), - [anon_sym_c_char] = ACTIONS(396), - [anon_sym_c_schar] = ACTIONS(396), - [anon_sym_c_uchar] = ACTIONS(396), - [anon_sym_c_short] = ACTIONS(396), - [anon_sym_c_ushort] = ACTIONS(396), - [anon_sym_c_int] = ACTIONS(396), - [anon_sym_c_uint] = ACTIONS(396), - [anon_sym_c_long] = ACTIONS(396), - [anon_sym_c_ulong] = ACTIONS(396), - [anon_sym_c_longlong] = ACTIONS(396), - [anon_sym_c_ulonglong] = ACTIONS(396), - [anon_sym_c_float] = ACTIONS(396), - [anon_sym_c_double] = ACTIONS(396), - [anon_sym_c_longdouble] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_orelse] = ACTIONS(396), - [anon_sym_catch] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_and] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_xor] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT_LT_PIPE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), - }, - [STATE(2311)] = { - [sym_identifier] = ACTIONS(1999), - [anon_sym_func] = ACTIONS(1999), - [anon_sym_c_func] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_COMMA] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_struct_type_BANG] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_AT] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_void] = ACTIONS(1999), - [anon_sym_noreturn] = ACTIONS(1999), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_anyopaque] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_int] = ACTIONS(1999), - [anon_sym_uint] = ACTIONS(1999), - [anon_sym_float] = ACTIONS(1999), - [anon_sym_range] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_c_char] = ACTIONS(1999), - [anon_sym_c_schar] = ACTIONS(1999), - [anon_sym_c_uchar] = ACTIONS(1999), - [anon_sym_c_short] = ACTIONS(1999), - [anon_sym_c_ushort] = ACTIONS(1999), - [anon_sym_c_int] = ACTIONS(1999), - [anon_sym_c_uint] = ACTIONS(1999), - [anon_sym_c_long] = ACTIONS(1999), - [anon_sym_c_ulong] = ACTIONS(1999), - [anon_sym_c_longlong] = ACTIONS(1999), - [anon_sym_c_ulonglong] = ACTIONS(1999), - [anon_sym_c_float] = ACTIONS(1999), - [anon_sym_c_double] = ACTIONS(1999), - [anon_sym_c_longdouble] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), - [anon_sym_orelse] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_or] = ACTIONS(1999), - [anon_sym_and] = ACTIONS(1999), - [anon_sym_EQ_EQ] = ACTIONS(1997), - [anon_sym_BANG_EQ] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_LT_EQ] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1999), - [anon_sym_GT_EQ] = ACTIONS(1997), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_xor] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1997), - [anon_sym_LT_LT_PIPE] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_CARET] = ACTIONS(1997), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1997), - }, - [STATE(2312)] = { - [sym_identifier] = ACTIONS(1995), - [anon_sym_func] = ACTIONS(1995), - [anon_sym_c_func] = ACTIONS(1995), - [anon_sym_struct] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_COMMA] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_PIPE] = ACTIONS(1993), - [anon_sym_struct_type_BANG] = ACTIONS(1993), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_AT] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_void] = ACTIONS(1995), - [anon_sym_noreturn] = ACTIONS(1995), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_anyopaque] = ACTIONS(1995), - [anon_sym_bool] = ACTIONS(1995), - [anon_sym_int] = ACTIONS(1995), - [anon_sym_uint] = ACTIONS(1995), - [anon_sym_float] = ACTIONS(1995), - [anon_sym_range] = ACTIONS(1995), - [anon_sym_i8] = ACTIONS(1995), - [anon_sym_i16] = ACTIONS(1995), - [anon_sym_i32] = ACTIONS(1995), - [anon_sym_i64] = ACTIONS(1995), - [anon_sym_u8] = ACTIONS(1995), - [anon_sym_u16] = ACTIONS(1995), - [anon_sym_u32] = ACTIONS(1995), - [anon_sym_u64] = ACTIONS(1995), - [anon_sym_isize] = ACTIONS(1995), - [anon_sym_usize] = ACTIONS(1995), - [anon_sym_f32] = ACTIONS(1995), - [anon_sym_f64] = ACTIONS(1995), - [anon_sym_c_char] = ACTIONS(1995), - [anon_sym_c_schar] = ACTIONS(1995), - [anon_sym_c_uchar] = ACTIONS(1995), - [anon_sym_c_short] = ACTIONS(1995), - [anon_sym_c_ushort] = ACTIONS(1995), - [anon_sym_c_int] = ACTIONS(1995), - [anon_sym_c_uint] = ACTIONS(1995), - [anon_sym_c_long] = ACTIONS(1995), - [anon_sym_c_ulong] = ACTIONS(1995), - [anon_sym_c_longlong] = ACTIONS(1995), - [anon_sym_c_ulonglong] = ACTIONS(1995), - [anon_sym_c_float] = ACTIONS(1995), - [anon_sym_c_double] = ACTIONS(1995), - [anon_sym_c_longdouble] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_orelse] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_or] = ACTIONS(1995), - [anon_sym_and] = ACTIONS(1995), - [anon_sym_EQ_EQ] = ACTIONS(1993), - [anon_sym_BANG_EQ] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_LT_EQ] = ACTIONS(1993), - [anon_sym_GT] = ACTIONS(1995), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_xor] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_GT_GT] = ACTIONS(1993), - [anon_sym_LT_LT_PIPE] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_SLASH] = ACTIONS(1993), - [anon_sym_DOT] = ACTIONS(1995), - [anon_sym_CARET] = ACTIONS(1993), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1993), - }, - [STATE(2313)] = { - [sym_identifier] = ACTIONS(2011), - [anon_sym_func] = ACTIONS(2011), - [anon_sym_c_func] = ACTIONS(2011), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_struct_type_BANG] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_void] = ACTIONS(2011), - [anon_sym_noreturn] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_anyopaque] = ACTIONS(2011), - [anon_sym_bool] = ACTIONS(2011), - [anon_sym_int] = ACTIONS(2011), - [anon_sym_uint] = ACTIONS(2011), - [anon_sym_float] = ACTIONS(2011), - [anon_sym_range] = ACTIONS(2011), - [anon_sym_i8] = ACTIONS(2011), - [anon_sym_i16] = ACTIONS(2011), - [anon_sym_i32] = ACTIONS(2011), - [anon_sym_i64] = ACTIONS(2011), - [anon_sym_u8] = ACTIONS(2011), - [anon_sym_u16] = ACTIONS(2011), - [anon_sym_u32] = ACTIONS(2011), - [anon_sym_u64] = ACTIONS(2011), - [anon_sym_isize] = ACTIONS(2011), - [anon_sym_usize] = ACTIONS(2011), - [anon_sym_f32] = ACTIONS(2011), - [anon_sym_f64] = ACTIONS(2011), - [anon_sym_c_char] = ACTIONS(2011), - [anon_sym_c_schar] = ACTIONS(2011), - [anon_sym_c_uchar] = ACTIONS(2011), - [anon_sym_c_short] = ACTIONS(2011), - [anon_sym_c_ushort] = ACTIONS(2011), - [anon_sym_c_int] = ACTIONS(2011), - [anon_sym_c_uint] = ACTIONS(2011), - [anon_sym_c_long] = ACTIONS(2011), - [anon_sym_c_ulong] = ACTIONS(2011), - [anon_sym_c_longlong] = ACTIONS(2011), - [anon_sym_c_ulonglong] = ACTIONS(2011), - [anon_sym_c_float] = ACTIONS(2011), - [anon_sym_c_double] = ACTIONS(2011), - [anon_sym_c_longdouble] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), - [anon_sym_orelse] = ACTIONS(2011), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [anon_sym_and] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2009), - [anon_sym_xor] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2009), - [anon_sym_LT_LT_PIPE] = ACTIONS(2009), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_SLASH] = ACTIONS(2009), - [anon_sym_DOT] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2009), - }, - [STATE(2314)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_func] = ACTIONS(2015), - [anon_sym_c_func] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_struct_type_BANG] = ACTIONS(2013), - [anon_sym_QMARK] = ACTIONS(2013), - [anon_sym_AT] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_void] = ACTIONS(2015), - [anon_sym_noreturn] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2015), - [anon_sym_anyopaque] = ACTIONS(2015), - [anon_sym_bool] = ACTIONS(2015), - [anon_sym_int] = ACTIONS(2015), - [anon_sym_uint] = ACTIONS(2015), - [anon_sym_float] = ACTIONS(2015), - [anon_sym_range] = ACTIONS(2015), - [anon_sym_i8] = ACTIONS(2015), - [anon_sym_i16] = ACTIONS(2015), - [anon_sym_i32] = ACTIONS(2015), - [anon_sym_i64] = ACTIONS(2015), - [anon_sym_u8] = ACTIONS(2015), - [anon_sym_u16] = ACTIONS(2015), - [anon_sym_u32] = ACTIONS(2015), - [anon_sym_u64] = ACTIONS(2015), - [anon_sym_isize] = ACTIONS(2015), - [anon_sym_usize] = ACTIONS(2015), - [anon_sym_f32] = ACTIONS(2015), - [anon_sym_f64] = ACTIONS(2015), - [anon_sym_c_char] = ACTIONS(2015), - [anon_sym_c_schar] = ACTIONS(2015), - [anon_sym_c_uchar] = ACTIONS(2015), - [anon_sym_c_short] = ACTIONS(2015), - [anon_sym_c_ushort] = ACTIONS(2015), - [anon_sym_c_int] = ACTIONS(2015), - [anon_sym_c_uint] = ACTIONS(2015), - [anon_sym_c_long] = ACTIONS(2015), - [anon_sym_c_ulong] = ACTIONS(2015), - [anon_sym_c_longlong] = ACTIONS(2015), - [anon_sym_c_ulonglong] = ACTIONS(2015), - [anon_sym_c_float] = ACTIONS(2015), - [anon_sym_c_double] = ACTIONS(2015), - [anon_sym_c_longdouble] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), - [anon_sym_orelse] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_or] = ACTIONS(2015), - [anon_sym_and] = ACTIONS(2015), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_AMP] = ACTIONS(2013), - [anon_sym_xor] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2015), - [anon_sym_GT_GT] = ACTIONS(2013), - [anon_sym_LT_LT_PIPE] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_SLASH] = ACTIONS(2013), - [anon_sym_DOT] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2013), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2013), - }, - [STATE(2315)] = { - [sym_identifier] = ACTIONS(2019), - [anon_sym_func] = ACTIONS(2019), - [anon_sym_c_func] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_struct_type_BANG] = ACTIONS(2017), - [anon_sym_QMARK] = ACTIONS(2017), - [anon_sym_AT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_void] = ACTIONS(2019), - [anon_sym_noreturn] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_anyopaque] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_int] = ACTIONS(2019), - [anon_sym_uint] = ACTIONS(2019), - [anon_sym_float] = ACTIONS(2019), - [anon_sym_range] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_c_char] = ACTIONS(2019), - [anon_sym_c_schar] = ACTIONS(2019), - [anon_sym_c_uchar] = ACTIONS(2019), - [anon_sym_c_short] = ACTIONS(2019), - [anon_sym_c_ushort] = ACTIONS(2019), - [anon_sym_c_int] = ACTIONS(2019), - [anon_sym_c_uint] = ACTIONS(2019), - [anon_sym_c_long] = ACTIONS(2019), - [anon_sym_c_ulong] = ACTIONS(2019), - [anon_sym_c_longlong] = ACTIONS(2019), - [anon_sym_c_ulonglong] = ACTIONS(2019), - [anon_sym_c_float] = ACTIONS(2019), - [anon_sym_c_double] = ACTIONS(2019), - [anon_sym_c_longdouble] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2017), - [anon_sym_orelse] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_or] = ACTIONS(2019), - [anon_sym_and] = ACTIONS(2019), - [anon_sym_EQ_EQ] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2019), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_xor] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2019), - [anon_sym_GT_GT] = ACTIONS(2017), - [anon_sym_LT_LT_PIPE] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_SLASH] = ACTIONS(2017), - [anon_sym_DOT] = ACTIONS(2019), - [anon_sym_CARET] = ACTIONS(2017), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2017), - }, - [STATE(2316)] = { - [sym_identifier] = ACTIONS(2023), - [anon_sym_func] = ACTIONS(2023), - [anon_sym_c_func] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_COMMA] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_struct_type_BANG] = ACTIONS(2021), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_AT] = ACTIONS(2021), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_void] = ACTIONS(2023), - [anon_sym_noreturn] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2023), - [anon_sym_anyopaque] = ACTIONS(2023), - [anon_sym_bool] = ACTIONS(2023), - [anon_sym_int] = ACTIONS(2023), - [anon_sym_uint] = ACTIONS(2023), - [anon_sym_float] = ACTIONS(2023), - [anon_sym_range] = ACTIONS(2023), - [anon_sym_i8] = ACTIONS(2023), - [anon_sym_i16] = ACTIONS(2023), - [anon_sym_i32] = ACTIONS(2023), - [anon_sym_i64] = ACTIONS(2023), - [anon_sym_u8] = ACTIONS(2023), - [anon_sym_u16] = ACTIONS(2023), - [anon_sym_u32] = ACTIONS(2023), - [anon_sym_u64] = ACTIONS(2023), - [anon_sym_isize] = ACTIONS(2023), - [anon_sym_usize] = ACTIONS(2023), - [anon_sym_f32] = ACTIONS(2023), - [anon_sym_f64] = ACTIONS(2023), - [anon_sym_c_char] = ACTIONS(2023), - [anon_sym_c_schar] = ACTIONS(2023), - [anon_sym_c_uchar] = ACTIONS(2023), - [anon_sym_c_short] = ACTIONS(2023), - [anon_sym_c_ushort] = ACTIONS(2023), - [anon_sym_c_int] = ACTIONS(2023), - [anon_sym_c_uint] = ACTIONS(2023), - [anon_sym_c_long] = ACTIONS(2023), - [anon_sym_c_ulong] = ACTIONS(2023), - [anon_sym_c_longlong] = ACTIONS(2023), - [anon_sym_c_ulonglong] = ACTIONS(2023), - [anon_sym_c_float] = ACTIONS(2023), - [anon_sym_c_double] = ACTIONS(2023), - [anon_sym_c_longdouble] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2021), - [anon_sym_orelse] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_or] = ACTIONS(2023), - [anon_sym_and] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2021), - [anon_sym_BANG_EQ] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_LT_EQ] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_xor] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2021), - [anon_sym_LT_LT_PIPE] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2021), - [anon_sym_SLASH] = ACTIONS(2021), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_CARET] = ACTIONS(2021), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2021), - }, - [STATE(2317)] = { - [sym_identifier] = ACTIONS(455), - [anon_sym_func] = ACTIONS(455), - [anon_sym_c_func] = ACTIONS(455), - [anon_sym_struct] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_struct_type_BANG] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_AT] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_void] = ACTIONS(455), - [anon_sym_noreturn] = ACTIONS(455), - [anon_sym_type] = ACTIONS(455), - [anon_sym_anyopaque] = ACTIONS(455), - [anon_sym_bool] = ACTIONS(455), - [anon_sym_int] = ACTIONS(455), - [anon_sym_uint] = ACTIONS(455), - [anon_sym_float] = ACTIONS(455), - [anon_sym_range] = ACTIONS(455), - [anon_sym_i8] = ACTIONS(455), - [anon_sym_i16] = ACTIONS(455), - [anon_sym_i32] = ACTIONS(455), - [anon_sym_i64] = ACTIONS(455), - [anon_sym_u8] = ACTIONS(455), - [anon_sym_u16] = ACTIONS(455), - [anon_sym_u32] = ACTIONS(455), - [anon_sym_u64] = ACTIONS(455), - [anon_sym_isize] = ACTIONS(455), - [anon_sym_usize] = ACTIONS(455), - [anon_sym_f32] = ACTIONS(455), - [anon_sym_f64] = ACTIONS(455), - [anon_sym_c_char] = ACTIONS(455), - [anon_sym_c_schar] = ACTIONS(455), - [anon_sym_c_uchar] = ACTIONS(455), - [anon_sym_c_short] = ACTIONS(455), - [anon_sym_c_ushort] = ACTIONS(455), - [anon_sym_c_int] = ACTIONS(455), - [anon_sym_c_uint] = ACTIONS(455), - [anon_sym_c_long] = ACTIONS(455), - [anon_sym_c_ulong] = ACTIONS(455), - [anon_sym_c_longlong] = ACTIONS(455), - [anon_sym_c_ulonglong] = ACTIONS(455), - [anon_sym_c_float] = ACTIONS(455), - [anon_sym_c_double] = ACTIONS(455), - [anon_sym_c_longdouble] = ACTIONS(455), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(457), - [anon_sym_orelse] = ACTIONS(455), - [anon_sym_catch] = ACTIONS(455), - [anon_sym_or] = ACTIONS(455), - [anon_sym_and] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(455), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_LT_LT_PIPE] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(457), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(457), - }, - [STATE(2318)] = { - [sym_identifier] = ACTIONS(2027), - [anon_sym_func] = ACTIONS(2027), - [anon_sym_c_func] = ACTIONS(2027), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_COMMA] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_struct_type_BANG] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(2025), - [anon_sym_AT] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_void] = ACTIONS(2027), - [anon_sym_noreturn] = ACTIONS(2027), - [anon_sym_type] = ACTIONS(2027), - [anon_sym_anyopaque] = ACTIONS(2027), - [anon_sym_bool] = ACTIONS(2027), - [anon_sym_int] = ACTIONS(2027), - [anon_sym_uint] = ACTIONS(2027), - [anon_sym_float] = ACTIONS(2027), - [anon_sym_range] = ACTIONS(2027), - [anon_sym_i8] = ACTIONS(2027), - [anon_sym_i16] = ACTIONS(2027), - [anon_sym_i32] = ACTIONS(2027), - [anon_sym_i64] = ACTIONS(2027), - [anon_sym_u8] = ACTIONS(2027), - [anon_sym_u16] = ACTIONS(2027), - [anon_sym_u32] = ACTIONS(2027), - [anon_sym_u64] = ACTIONS(2027), - [anon_sym_isize] = ACTIONS(2027), - [anon_sym_usize] = ACTIONS(2027), - [anon_sym_f32] = ACTIONS(2027), - [anon_sym_f64] = ACTIONS(2027), - [anon_sym_c_char] = ACTIONS(2027), - [anon_sym_c_schar] = ACTIONS(2027), - [anon_sym_c_uchar] = ACTIONS(2027), - [anon_sym_c_short] = ACTIONS(2027), - [anon_sym_c_ushort] = ACTIONS(2027), - [anon_sym_c_int] = ACTIONS(2027), - [anon_sym_c_uint] = ACTIONS(2027), - [anon_sym_c_long] = ACTIONS(2027), - [anon_sym_c_ulong] = ACTIONS(2027), - [anon_sym_c_longlong] = ACTIONS(2027), - [anon_sym_c_ulonglong] = ACTIONS(2027), - [anon_sym_c_float] = ACTIONS(2027), - [anon_sym_c_double] = ACTIONS(2027), - [anon_sym_c_longdouble] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [anon_sym_orelse] = ACTIONS(2027), - [anon_sym_catch] = ACTIONS(2027), - [anon_sym_or] = ACTIONS(2027), - [anon_sym_and] = ACTIONS(2027), - [anon_sym_EQ_EQ] = ACTIONS(2025), - [anon_sym_BANG_EQ] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_LT_EQ] = ACTIONS(2025), - [anon_sym_GT] = ACTIONS(2027), - [anon_sym_GT_EQ] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2025), - [anon_sym_xor] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(2027), - [anon_sym_GT_GT] = ACTIONS(2025), - [anon_sym_LT_LT_PIPE] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2025), - [anon_sym_SLASH] = ACTIONS(2025), - [anon_sym_DOT] = ACTIONS(2027), - [anon_sym_CARET] = ACTIONS(2025), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2025), - }, - [STATE(2319)] = { - [sym_identifier] = ACTIONS(2047), - [anon_sym_func] = ACTIONS(2047), - [anon_sym_c_func] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_struct_type_BANG] = ACTIONS(2045), - [anon_sym_QMARK] = ACTIONS(2045), - [anon_sym_AT] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_void] = ACTIONS(2047), - [anon_sym_noreturn] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2047), - [anon_sym_anyopaque] = ACTIONS(2047), - [anon_sym_bool] = ACTIONS(2047), - [anon_sym_int] = ACTIONS(2047), - [anon_sym_uint] = ACTIONS(2047), - [anon_sym_float] = ACTIONS(2047), - [anon_sym_range] = ACTIONS(2047), - [anon_sym_i8] = ACTIONS(2047), - [anon_sym_i16] = ACTIONS(2047), - [anon_sym_i32] = ACTIONS(2047), - [anon_sym_i64] = ACTIONS(2047), - [anon_sym_u8] = ACTIONS(2047), - [anon_sym_u16] = ACTIONS(2047), - [anon_sym_u32] = ACTIONS(2047), - [anon_sym_u64] = ACTIONS(2047), - [anon_sym_isize] = ACTIONS(2047), - [anon_sym_usize] = ACTIONS(2047), - [anon_sym_f32] = ACTIONS(2047), - [anon_sym_f64] = ACTIONS(2047), - [anon_sym_c_char] = ACTIONS(2047), - [anon_sym_c_schar] = ACTIONS(2047), - [anon_sym_c_uchar] = ACTIONS(2047), - [anon_sym_c_short] = ACTIONS(2047), - [anon_sym_c_ushort] = ACTIONS(2047), - [anon_sym_c_int] = ACTIONS(2047), - [anon_sym_c_uint] = ACTIONS(2047), - [anon_sym_c_long] = ACTIONS(2047), - [anon_sym_c_ulong] = ACTIONS(2047), - [anon_sym_c_longlong] = ACTIONS(2047), - [anon_sym_c_ulonglong] = ACTIONS(2047), - [anon_sym_c_float] = ACTIONS(2047), - [anon_sym_c_double] = ACTIONS(2047), - [anon_sym_c_longdouble] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_orelse] = ACTIONS(2047), - [anon_sym_catch] = ACTIONS(2047), - [anon_sym_or] = ACTIONS(2047), - [anon_sym_and] = ACTIONS(2047), - [anon_sym_EQ_EQ] = ACTIONS(2045), - [anon_sym_BANG_EQ] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_LT_EQ] = ACTIONS(2045), - [anon_sym_GT] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_xor] = ACTIONS(2047), - [anon_sym_LT_LT] = ACTIONS(2047), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_LT_LT_PIPE] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_SLASH] = ACTIONS(2045), - [anon_sym_DOT] = ACTIONS(2047), - [anon_sym_CARET] = ACTIONS(2045), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2045), - }, - [STATE(2320)] = { - [sym_identifier] = ACTIONS(1845), - [anon_sym_func] = ACTIONS(1845), - [anon_sym_c_func] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_struct_type_BANG] = ACTIONS(1843), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_noreturn] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_anyopaque] = ACTIONS(1845), - [anon_sym_bool] = ACTIONS(1845), - [anon_sym_int] = ACTIONS(1845), - [anon_sym_uint] = ACTIONS(1845), - [anon_sym_float] = ACTIONS(1845), - [anon_sym_range] = ACTIONS(1845), - [anon_sym_i8] = ACTIONS(1845), - [anon_sym_i16] = ACTIONS(1845), - [anon_sym_i32] = ACTIONS(1845), - [anon_sym_i64] = ACTIONS(1845), - [anon_sym_u8] = ACTIONS(1845), - [anon_sym_u16] = ACTIONS(1845), - [anon_sym_u32] = ACTIONS(1845), - [anon_sym_u64] = ACTIONS(1845), - [anon_sym_isize] = ACTIONS(1845), - [anon_sym_usize] = ACTIONS(1845), - [anon_sym_f32] = ACTIONS(1845), - [anon_sym_f64] = ACTIONS(1845), - [anon_sym_c_char] = ACTIONS(1845), - [anon_sym_c_schar] = ACTIONS(1845), - [anon_sym_c_uchar] = ACTIONS(1845), - [anon_sym_c_short] = ACTIONS(1845), - [anon_sym_c_ushort] = ACTIONS(1845), - [anon_sym_c_int] = ACTIONS(1845), - [anon_sym_c_uint] = ACTIONS(1845), - [anon_sym_c_long] = ACTIONS(1845), - [anon_sym_c_ulong] = ACTIONS(1845), - [anon_sym_c_longlong] = ACTIONS(1845), - [anon_sym_c_ulonglong] = ACTIONS(1845), - [anon_sym_c_float] = ACTIONS(1845), - [anon_sym_c_double] = ACTIONS(1845), - [anon_sym_c_longdouble] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), - [anon_sym_orelse] = ACTIONS(1845), - [anon_sym_catch] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [anon_sym_and] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_xor] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1843), - [anon_sym_LT_LT_PIPE] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1843), - }, - [STATE(2321)] = { - [sym_identifier] = ACTIONS(1531), - [anon_sym_func] = ACTIONS(1531), - [anon_sym_c_func] = ACTIONS(1531), - [anon_sym_struct] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_struct_type_BANG] = ACTIONS(1529), - [anon_sym_QMARK] = ACTIONS(1529), - [anon_sym_AT] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_noreturn] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1531), - [anon_sym_anyopaque] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_range] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_c_char] = ACTIONS(1531), - [anon_sym_c_schar] = ACTIONS(1531), - [anon_sym_c_uchar] = ACTIONS(1531), - [anon_sym_c_short] = ACTIONS(1531), - [anon_sym_c_ushort] = ACTIONS(1531), - [anon_sym_c_int] = ACTIONS(1531), - [anon_sym_c_uint] = ACTIONS(1531), - [anon_sym_c_long] = ACTIONS(1531), - [anon_sym_c_ulong] = ACTIONS(1531), - [anon_sym_c_longlong] = ACTIONS(1531), - [anon_sym_c_ulonglong] = ACTIONS(1531), - [anon_sym_c_float] = ACTIONS(1531), - [anon_sym_c_double] = ACTIONS(1531), - [anon_sym_c_longdouble] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [anon_sym_orelse] = ACTIONS(1531), - [anon_sym_catch] = ACTIONS(1531), - [anon_sym_or] = ACTIONS(1531), - [anon_sym_and] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_xor] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_LT_LT_PIPE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1529), - }, - [STATE(2322)] = { - [sym_identifier] = ACTIONS(1777), - [anon_sym_func] = ACTIONS(1777), - [anon_sym_c_func] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_COMMA] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_struct_type_BANG] = ACTIONS(1775), - [anon_sym_QMARK] = ACTIONS(1775), - [anon_sym_AT] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_void] = ACTIONS(1777), - [anon_sym_noreturn] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_anyopaque] = ACTIONS(1777), - [anon_sym_bool] = ACTIONS(1777), - [anon_sym_int] = ACTIONS(1777), - [anon_sym_uint] = ACTIONS(1777), - [anon_sym_float] = ACTIONS(1777), - [anon_sym_range] = ACTIONS(1777), - [anon_sym_i8] = ACTIONS(1777), - [anon_sym_i16] = ACTIONS(1777), - [anon_sym_i32] = ACTIONS(1777), - [anon_sym_i64] = ACTIONS(1777), - [anon_sym_u8] = ACTIONS(1777), - [anon_sym_u16] = ACTIONS(1777), - [anon_sym_u32] = ACTIONS(1777), - [anon_sym_u64] = ACTIONS(1777), - [anon_sym_isize] = ACTIONS(1777), - [anon_sym_usize] = ACTIONS(1777), - [anon_sym_f32] = ACTIONS(1777), - [anon_sym_f64] = ACTIONS(1777), - [anon_sym_c_char] = ACTIONS(1777), - [anon_sym_c_schar] = ACTIONS(1777), - [anon_sym_c_uchar] = ACTIONS(1777), - [anon_sym_c_short] = ACTIONS(1777), - [anon_sym_c_ushort] = ACTIONS(1777), - [anon_sym_c_int] = ACTIONS(1777), - [anon_sym_c_uint] = ACTIONS(1777), - [anon_sym_c_long] = ACTIONS(1777), - [anon_sym_c_ulong] = ACTIONS(1777), - [anon_sym_c_longlong] = ACTIONS(1777), - [anon_sym_c_ulonglong] = ACTIONS(1777), - [anon_sym_c_float] = ACTIONS(1777), - [anon_sym_c_double] = ACTIONS(1777), - [anon_sym_c_longdouble] = ACTIONS(1777), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1775), - [anon_sym_orelse] = ACTIONS(1777), - [anon_sym_catch] = ACTIONS(1777), - [anon_sym_or] = ACTIONS(1777), - [anon_sym_and] = ACTIONS(1777), - [anon_sym_EQ_EQ] = ACTIONS(1775), - [anon_sym_BANG_EQ] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_LT_EQ] = ACTIONS(1775), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_GT_EQ] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_xor] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(1777), - [anon_sym_GT_GT] = ACTIONS(1775), - [anon_sym_LT_LT_PIPE] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1775), - [anon_sym_DOT] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1775), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1775), - }, - [STATE(2323)] = { - [sym_identifier] = ACTIONS(1543), - [anon_sym_func] = ACTIONS(1543), - [anon_sym_c_func] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_struct_type_BANG] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_AT] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_noreturn] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_anyopaque] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_range] = ACTIONS(1543), - [anon_sym_i8] = ACTIONS(1543), - [anon_sym_i16] = ACTIONS(1543), - [anon_sym_i32] = ACTIONS(1543), - [anon_sym_i64] = ACTIONS(1543), - [anon_sym_u8] = ACTIONS(1543), - [anon_sym_u16] = ACTIONS(1543), - [anon_sym_u32] = ACTIONS(1543), - [anon_sym_u64] = ACTIONS(1543), - [anon_sym_isize] = ACTIONS(1543), - [anon_sym_usize] = ACTIONS(1543), - [anon_sym_f32] = ACTIONS(1543), - [anon_sym_f64] = ACTIONS(1543), - [anon_sym_c_char] = ACTIONS(1543), - [anon_sym_c_schar] = ACTIONS(1543), - [anon_sym_c_uchar] = ACTIONS(1543), - [anon_sym_c_short] = ACTIONS(1543), - [anon_sym_c_ushort] = ACTIONS(1543), - [anon_sym_c_int] = ACTIONS(1543), - [anon_sym_c_uint] = ACTIONS(1543), - [anon_sym_c_long] = ACTIONS(1543), - [anon_sym_c_ulong] = ACTIONS(1543), - [anon_sym_c_longlong] = ACTIONS(1543), - [anon_sym_c_ulonglong] = ACTIONS(1543), - [anon_sym_c_float] = ACTIONS(1543), - [anon_sym_c_double] = ACTIONS(1543), - [anon_sym_c_longdouble] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1541), - [anon_sym_orelse] = ACTIONS(1543), - [anon_sym_catch] = ACTIONS(1543), - [anon_sym_or] = ACTIONS(1543), - [anon_sym_and] = ACTIONS(1543), - [anon_sym_EQ_EQ] = ACTIONS(1541), - [anon_sym_BANG_EQ] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_LT_EQ] = ACTIONS(1541), - [anon_sym_GT] = ACTIONS(1543), - [anon_sym_GT_EQ] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_xor] = ACTIONS(1543), - [anon_sym_LT_LT] = ACTIONS(1543), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_LT_LT_PIPE] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1543), - [anon_sym_CARET] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1541), - }, - [STATE(2324)] = { - [sym_identifier] = ACTIONS(1891), - [anon_sym_func] = ACTIONS(1891), - [anon_sym_c_func] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_struct_type_BANG] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_AT] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_void] = ACTIONS(1891), - [anon_sym_noreturn] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_anyopaque] = ACTIONS(1891), - [anon_sym_bool] = ACTIONS(1891), - [anon_sym_int] = ACTIONS(1891), - [anon_sym_uint] = ACTIONS(1891), - [anon_sym_float] = ACTIONS(1891), - [anon_sym_range] = ACTIONS(1891), - [anon_sym_i8] = ACTIONS(1891), - [anon_sym_i16] = ACTIONS(1891), - [anon_sym_i32] = ACTIONS(1891), - [anon_sym_i64] = ACTIONS(1891), - [anon_sym_u8] = ACTIONS(1891), - [anon_sym_u16] = ACTIONS(1891), - [anon_sym_u32] = ACTIONS(1891), - [anon_sym_u64] = ACTIONS(1891), - [anon_sym_isize] = ACTIONS(1891), - [anon_sym_usize] = ACTIONS(1891), - [anon_sym_f32] = ACTIONS(1891), - [anon_sym_f64] = ACTIONS(1891), - [anon_sym_c_char] = ACTIONS(1891), - [anon_sym_c_schar] = ACTIONS(1891), - [anon_sym_c_uchar] = ACTIONS(1891), - [anon_sym_c_short] = ACTIONS(1891), - [anon_sym_c_ushort] = ACTIONS(1891), - [anon_sym_c_int] = ACTIONS(1891), - [anon_sym_c_uint] = ACTIONS(1891), - [anon_sym_c_long] = ACTIONS(1891), - [anon_sym_c_ulong] = ACTIONS(1891), - [anon_sym_c_longlong] = ACTIONS(1891), - [anon_sym_c_ulonglong] = ACTIONS(1891), - [anon_sym_c_float] = ACTIONS(1891), - [anon_sym_c_double] = ACTIONS(1891), - [anon_sym_c_longdouble] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [anon_sym_orelse] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_or] = ACTIONS(1891), - [anon_sym_and] = ACTIONS(1891), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_xor] = ACTIONS(1891), - [anon_sym_LT_LT] = ACTIONS(1891), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_LT_LT_PIPE] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1889), - }, - [STATE(2325)] = { - [sym_identifier] = ACTIONS(1895), - [anon_sym_func] = ACTIONS(1895), - [anon_sym_c_func] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_COMMA] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_struct_type_BANG] = ACTIONS(1893), - [anon_sym_QMARK] = ACTIONS(1893), - [anon_sym_AT] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_void] = ACTIONS(1895), - [anon_sym_noreturn] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_anyopaque] = ACTIONS(1895), - [anon_sym_bool] = ACTIONS(1895), - [anon_sym_int] = ACTIONS(1895), - [anon_sym_uint] = ACTIONS(1895), - [anon_sym_float] = ACTIONS(1895), - [anon_sym_range] = ACTIONS(1895), - [anon_sym_i8] = ACTIONS(1895), - [anon_sym_i16] = ACTIONS(1895), - [anon_sym_i32] = ACTIONS(1895), - [anon_sym_i64] = ACTIONS(1895), - [anon_sym_u8] = ACTIONS(1895), - [anon_sym_u16] = ACTIONS(1895), - [anon_sym_u32] = ACTIONS(1895), - [anon_sym_u64] = ACTIONS(1895), - [anon_sym_isize] = ACTIONS(1895), - [anon_sym_usize] = ACTIONS(1895), - [anon_sym_f32] = ACTIONS(1895), - [anon_sym_f64] = ACTIONS(1895), - [anon_sym_c_char] = ACTIONS(1895), - [anon_sym_c_schar] = ACTIONS(1895), - [anon_sym_c_uchar] = ACTIONS(1895), - [anon_sym_c_short] = ACTIONS(1895), - [anon_sym_c_ushort] = ACTIONS(1895), - [anon_sym_c_int] = ACTIONS(1895), - [anon_sym_c_uint] = ACTIONS(1895), - [anon_sym_c_long] = ACTIONS(1895), - [anon_sym_c_ulong] = ACTIONS(1895), - [anon_sym_c_longlong] = ACTIONS(1895), - [anon_sym_c_ulonglong] = ACTIONS(1895), - [anon_sym_c_float] = ACTIONS(1895), - [anon_sym_c_double] = ACTIONS(1895), - [anon_sym_c_longdouble] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_orelse] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_or] = ACTIONS(1895), - [anon_sym_and] = ACTIONS(1895), - [anon_sym_EQ_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_LT_EQ] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_xor] = ACTIONS(1895), - [anon_sym_LT_LT] = ACTIONS(1895), - [anon_sym_GT_GT] = ACTIONS(1893), - [anon_sym_LT_LT_PIPE] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_CARET] = ACTIONS(1893), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1893), - }, - [STATE(2326)] = { - [sym_identifier] = ACTIONS(1911), - [anon_sym_func] = ACTIONS(1911), - [anon_sym_c_func] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_struct_type_BANG] = ACTIONS(1909), - [anon_sym_QMARK] = ACTIONS(1909), - [anon_sym_AT] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(1911), - [anon_sym_noreturn] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_anyopaque] = ACTIONS(1911), - [anon_sym_bool] = ACTIONS(1911), - [anon_sym_int] = ACTIONS(1911), - [anon_sym_uint] = ACTIONS(1911), - [anon_sym_float] = ACTIONS(1911), - [anon_sym_range] = ACTIONS(1911), - [anon_sym_i8] = ACTIONS(1911), - [anon_sym_i16] = ACTIONS(1911), - [anon_sym_i32] = ACTIONS(1911), - [anon_sym_i64] = ACTIONS(1911), - [anon_sym_u8] = ACTIONS(1911), - [anon_sym_u16] = ACTIONS(1911), - [anon_sym_u32] = ACTIONS(1911), - [anon_sym_u64] = ACTIONS(1911), - [anon_sym_isize] = ACTIONS(1911), - [anon_sym_usize] = ACTIONS(1911), - [anon_sym_f32] = ACTIONS(1911), - [anon_sym_f64] = ACTIONS(1911), - [anon_sym_c_char] = ACTIONS(1911), - [anon_sym_c_schar] = ACTIONS(1911), - [anon_sym_c_uchar] = ACTIONS(1911), - [anon_sym_c_short] = ACTIONS(1911), - [anon_sym_c_ushort] = ACTIONS(1911), - [anon_sym_c_int] = ACTIONS(1911), - [anon_sym_c_uint] = ACTIONS(1911), - [anon_sym_c_long] = ACTIONS(1911), - [anon_sym_c_ulong] = ACTIONS(1911), - [anon_sym_c_longlong] = ACTIONS(1911), - [anon_sym_c_ulonglong] = ACTIONS(1911), - [anon_sym_c_float] = ACTIONS(1911), - [anon_sym_c_double] = ACTIONS(1911), - [anon_sym_c_longdouble] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), - [anon_sym_orelse] = ACTIONS(1911), - [anon_sym_catch] = ACTIONS(1911), - [anon_sym_or] = ACTIONS(1911), - [anon_sym_and] = ACTIONS(1911), - [anon_sym_EQ_EQ] = ACTIONS(1909), - [anon_sym_BANG_EQ] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_LT_EQ] = ACTIONS(1909), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_GT_EQ] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_xor] = ACTIONS(1911), - [anon_sym_LT_LT] = ACTIONS(1911), - [anon_sym_GT_GT] = ACTIONS(1909), - [anon_sym_LT_LT_PIPE] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1909), - [anon_sym_SLASH] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1909), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1909), - }, - [STATE(2327)] = { - [sym_identifier] = ACTIONS(1547), - [anon_sym_func] = ACTIONS(1547), - [anon_sym_c_func] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_COMMA] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_struct_type_BANG] = ACTIONS(1545), - [anon_sym_QMARK] = ACTIONS(1545), - [anon_sym_AT] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_noreturn] = ACTIONS(1547), - [anon_sym_type] = ACTIONS(1547), - [anon_sym_anyopaque] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_range] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_c_char] = ACTIONS(1547), - [anon_sym_c_schar] = ACTIONS(1547), - [anon_sym_c_uchar] = ACTIONS(1547), - [anon_sym_c_short] = ACTIONS(1547), - [anon_sym_c_ushort] = ACTIONS(1547), - [anon_sym_c_int] = ACTIONS(1547), - [anon_sym_c_uint] = ACTIONS(1547), - [anon_sym_c_long] = ACTIONS(1547), - [anon_sym_c_ulong] = ACTIONS(1547), - [anon_sym_c_longlong] = ACTIONS(1547), - [anon_sym_c_ulonglong] = ACTIONS(1547), - [anon_sym_c_float] = ACTIONS(1547), - [anon_sym_c_double] = ACTIONS(1547), - [anon_sym_c_longdouble] = ACTIONS(1547), - [anon_sym_DOT_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [anon_sym_orelse] = ACTIONS(1547), - [anon_sym_catch] = ACTIONS(1547), - [anon_sym_or] = ACTIONS(1547), - [anon_sym_and] = ACTIONS(1547), - [anon_sym_EQ_EQ] = ACTIONS(1545), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1545), - [anon_sym_GT] = ACTIONS(1547), - [anon_sym_GT_EQ] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_xor] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1547), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_LT_LT_PIPE] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1547), - [anon_sym_CARET] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1545), - }, - [STATE(2328)] = { - [sym_identifier] = ACTIONS(5639), - [anon_sym_func] = ACTIONS(5639), - [anon_sym_BANG] = ACTIONS(5641), - [anon_sym_struct] = ACTIONS(5639), - [anon_sym_LPAREN] = ACTIONS(5641), - [anon_sym_LBRACE] = ACTIONS(5641), - [anon_sym_DASH] = ACTIONS(5641), - [anon_sym_DOLLAR] = ACTIONS(5641), - [anon_sym_LBRACK] = ACTIONS(5641), - [anon_sym_void] = ACTIONS(5639), - [anon_sym_noreturn] = ACTIONS(5639), - [anon_sym_type] = ACTIONS(5639), - [anon_sym_anyopaque] = ACTIONS(5639), - [anon_sym_bool] = ACTIONS(5639), - [anon_sym_int] = ACTIONS(5639), - [anon_sym_uint] = ACTIONS(5639), - [anon_sym_float] = ACTIONS(5639), - [anon_sym_range] = ACTIONS(5639), - [anon_sym_i8] = ACTIONS(5639), - [anon_sym_i16] = ACTIONS(5639), - [anon_sym_i32] = ACTIONS(5639), - [anon_sym_i64] = ACTIONS(5639), - [anon_sym_u8] = ACTIONS(5639), - [anon_sym_u16] = ACTIONS(5639), - [anon_sym_u32] = ACTIONS(5639), - [anon_sym_u64] = ACTIONS(5639), - [anon_sym_isize] = ACTIONS(5639), - [anon_sym_usize] = ACTIONS(5639), - [anon_sym_f32] = ACTIONS(5639), - [anon_sym_f64] = ACTIONS(5639), - [anon_sym_c_char] = ACTIONS(5639), - [anon_sym_c_schar] = ACTIONS(5639), - [anon_sym_c_uchar] = ACTIONS(5639), - [anon_sym_c_short] = ACTIONS(5639), - [anon_sym_c_ushort] = ACTIONS(5639), - [anon_sym_c_int] = ACTIONS(5639), - [anon_sym_c_uint] = ACTIONS(5639), - [anon_sym_c_long] = ACTIONS(5639), - [anon_sym_c_ulong] = ACTIONS(5639), - [anon_sym_c_longlong] = ACTIONS(5639), - [anon_sym_c_ulonglong] = ACTIONS(5639), - [anon_sym_c_float] = ACTIONS(5639), - [anon_sym_c_double] = ACTIONS(5639), - [anon_sym_c_longdouble] = ACTIONS(5639), - [anon_sym_return] = ACTIONS(5639), - [anon_sym_yield] = ACTIONS(5639), - [anon_sym_break] = ACTIONS(5639), - [anon_sym_continue] = ACTIONS(5639), - [anon_sym_defer] = ACTIONS(5639), - [anon_sym_errdefer] = ACTIONS(5639), - [anon_sym_if] = ACTIONS(5639), - [anon_sym_while] = ACTIONS(5639), - [anon_sym_expand] = ACTIONS(5639), - [anon_sym_for] = ACTIONS(5639), - [anon_sym_match] = ACTIONS(5639), - [anon_sym_AMP] = ACTIONS(5641), - [anon_sym_TILDE] = ACTIONS(5641), - [anon_sym_try] = ACTIONS(5639), - [anon_sym_DOT] = ACTIONS(5641), - [anon_sym_true] = ACTIONS(5639), - [anon_sym_false] = ACTIONS(5639), - [anon_sym_null] = ACTIONS(5639), - [anon_sym_unreachable] = ACTIONS(5639), - [anon_sym_undefined] = ACTIONS(5639), - [sym_sink] = ACTIONS(5639), - [sym_integer] = ACTIONS(5639), - [sym_float] = ACTIONS(5641), - [anon_sym_DQUOTE] = ACTIONS(5641), - [sym_multiline_string] = ACTIONS(5641), - [sym_character] = ACTIONS(5641), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5641), - }, - [STATE(2329)] = { - [sym_identifier] = ACTIONS(1609), - [anon_sym_func] = ACTIONS(1609), - [anon_sym_c_func] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_COMMA] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_struct_type_BANG] = ACTIONS(1607), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_AT] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_noreturn] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_anyopaque] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_range] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_c_char] = ACTIONS(1609), - [anon_sym_c_schar] = ACTIONS(1609), - [anon_sym_c_uchar] = ACTIONS(1609), - [anon_sym_c_short] = ACTIONS(1609), - [anon_sym_c_ushort] = ACTIONS(1609), - [anon_sym_c_int] = ACTIONS(1609), - [anon_sym_c_uint] = ACTIONS(1609), - [anon_sym_c_long] = ACTIONS(1609), - [anon_sym_c_ulong] = ACTIONS(1609), - [anon_sym_c_longlong] = ACTIONS(1609), - [anon_sym_c_ulonglong] = ACTIONS(1609), - [anon_sym_c_float] = ACTIONS(1609), - [anon_sym_c_double] = ACTIONS(1609), - [anon_sym_c_longdouble] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_orelse] = ACTIONS(1609), - [anon_sym_catch] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_LT_EQ] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1609), - [anon_sym_GT_EQ] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1609), - [anon_sym_GT_GT] = ACTIONS(1607), - [anon_sym_LT_LT_PIPE] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(1609), - [anon_sym_CARET] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1607), - }, - [STATE(2330)] = { - [sym_identifier] = ACTIONS(1915), - [anon_sym_func] = ACTIONS(1915), - [anon_sym_c_func] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_struct_type_BANG] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_void] = ACTIONS(1915), - [anon_sym_noreturn] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_anyopaque] = ACTIONS(1915), - [anon_sym_bool] = ACTIONS(1915), - [anon_sym_int] = ACTIONS(1915), - [anon_sym_uint] = ACTIONS(1915), - [anon_sym_float] = ACTIONS(1915), - [anon_sym_range] = ACTIONS(1915), - [anon_sym_i8] = ACTIONS(1915), - [anon_sym_i16] = ACTIONS(1915), - [anon_sym_i32] = ACTIONS(1915), - [anon_sym_i64] = ACTIONS(1915), - [anon_sym_u8] = ACTIONS(1915), - [anon_sym_u16] = ACTIONS(1915), - [anon_sym_u32] = ACTIONS(1915), - [anon_sym_u64] = ACTIONS(1915), - [anon_sym_isize] = ACTIONS(1915), - [anon_sym_usize] = ACTIONS(1915), - [anon_sym_f32] = ACTIONS(1915), - [anon_sym_f64] = ACTIONS(1915), - [anon_sym_c_char] = ACTIONS(1915), - [anon_sym_c_schar] = ACTIONS(1915), - [anon_sym_c_uchar] = ACTIONS(1915), - [anon_sym_c_short] = ACTIONS(1915), - [anon_sym_c_ushort] = ACTIONS(1915), - [anon_sym_c_int] = ACTIONS(1915), - [anon_sym_c_uint] = ACTIONS(1915), - [anon_sym_c_long] = ACTIONS(1915), - [anon_sym_c_ulong] = ACTIONS(1915), - [anon_sym_c_longlong] = ACTIONS(1915), - [anon_sym_c_ulonglong] = ACTIONS(1915), - [anon_sym_c_float] = ACTIONS(1915), - [anon_sym_c_double] = ACTIONS(1915), - [anon_sym_c_longdouble] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [anon_sym_orelse] = ACTIONS(1915), - [anon_sym_catch] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1915), - [anon_sym_and] = ACTIONS(1915), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_xor] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1915), - [anon_sym_GT_GT] = ACTIONS(1913), - [anon_sym_LT_LT_PIPE] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_DOT] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1913), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1913), - }, - [STATE(2331)] = { - [sym_identifier] = ACTIONS(1919), - [anon_sym_func] = ACTIONS(1919), - [anon_sym_c_func] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_struct_type_BANG] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_AT] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_void] = ACTIONS(1919), - [anon_sym_noreturn] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_anyopaque] = ACTIONS(1919), - [anon_sym_bool] = ACTIONS(1919), - [anon_sym_int] = ACTIONS(1919), - [anon_sym_uint] = ACTIONS(1919), - [anon_sym_float] = ACTIONS(1919), - [anon_sym_range] = ACTIONS(1919), - [anon_sym_i8] = ACTIONS(1919), - [anon_sym_i16] = ACTIONS(1919), - [anon_sym_i32] = ACTIONS(1919), - [anon_sym_i64] = ACTIONS(1919), - [anon_sym_u8] = ACTIONS(1919), - [anon_sym_u16] = ACTIONS(1919), - [anon_sym_u32] = ACTIONS(1919), - [anon_sym_u64] = ACTIONS(1919), - [anon_sym_isize] = ACTIONS(1919), - [anon_sym_usize] = ACTIONS(1919), - [anon_sym_f32] = ACTIONS(1919), - [anon_sym_f64] = ACTIONS(1919), - [anon_sym_c_char] = ACTIONS(1919), - [anon_sym_c_schar] = ACTIONS(1919), - [anon_sym_c_uchar] = ACTIONS(1919), - [anon_sym_c_short] = ACTIONS(1919), - [anon_sym_c_ushort] = ACTIONS(1919), - [anon_sym_c_int] = ACTIONS(1919), - [anon_sym_c_uint] = ACTIONS(1919), - [anon_sym_c_long] = ACTIONS(1919), - [anon_sym_c_ulong] = ACTIONS(1919), - [anon_sym_c_longlong] = ACTIONS(1919), - [anon_sym_c_ulonglong] = ACTIONS(1919), - [anon_sym_c_float] = ACTIONS(1919), - [anon_sym_c_double] = ACTIONS(1919), - [anon_sym_c_longdouble] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), - [anon_sym_orelse] = ACTIONS(1919), - [anon_sym_catch] = ACTIONS(1919), - [anon_sym_or] = ACTIONS(1919), - [anon_sym_and] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_xor] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1919), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_LT_LT_PIPE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1917), - }, - [STATE(2332)] = { - [sym_identifier] = ACTIONS(1923), - [anon_sym_func] = ACTIONS(1923), - [anon_sym_c_func] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_struct_type_BANG] = ACTIONS(1921), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_noreturn] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_anyopaque] = ACTIONS(1923), - [anon_sym_bool] = ACTIONS(1923), - [anon_sym_int] = ACTIONS(1923), - [anon_sym_uint] = ACTIONS(1923), - [anon_sym_float] = ACTIONS(1923), - [anon_sym_range] = ACTIONS(1923), - [anon_sym_i8] = ACTIONS(1923), - [anon_sym_i16] = ACTIONS(1923), - [anon_sym_i32] = ACTIONS(1923), - [anon_sym_i64] = ACTIONS(1923), - [anon_sym_u8] = ACTIONS(1923), - [anon_sym_u16] = ACTIONS(1923), - [anon_sym_u32] = ACTIONS(1923), - [anon_sym_u64] = ACTIONS(1923), - [anon_sym_isize] = ACTIONS(1923), - [anon_sym_usize] = ACTIONS(1923), - [anon_sym_f32] = ACTIONS(1923), - [anon_sym_f64] = ACTIONS(1923), - [anon_sym_c_char] = ACTIONS(1923), - [anon_sym_c_schar] = ACTIONS(1923), - [anon_sym_c_uchar] = ACTIONS(1923), - [anon_sym_c_short] = ACTIONS(1923), - [anon_sym_c_ushort] = ACTIONS(1923), - [anon_sym_c_int] = ACTIONS(1923), - [anon_sym_c_uint] = ACTIONS(1923), - [anon_sym_c_long] = ACTIONS(1923), - [anon_sym_c_ulong] = ACTIONS(1923), - [anon_sym_c_longlong] = ACTIONS(1923), - [anon_sym_c_ulonglong] = ACTIONS(1923), - [anon_sym_c_float] = ACTIONS(1923), - [anon_sym_c_double] = ACTIONS(1923), - [anon_sym_c_longdouble] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), - [anon_sym_orelse] = ACTIONS(1923), - [anon_sym_catch] = ACTIONS(1923), - [anon_sym_or] = ACTIONS(1923), - [anon_sym_and] = ACTIONS(1923), - [anon_sym_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_xor] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(1923), - [anon_sym_GT_GT] = ACTIONS(1921), - [anon_sym_LT_LT_PIPE] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1921), - }, - [STATE(2333)] = { - [sym_identifier] = ACTIONS(1809), - [anon_sym_func] = ACTIONS(1809), - [anon_sym_c_func] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_struct_type_BANG] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1807), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_noreturn] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_anyopaque] = ACTIONS(1809), - [anon_sym_bool] = ACTIONS(1809), - [anon_sym_int] = ACTIONS(1809), - [anon_sym_uint] = ACTIONS(1809), - [anon_sym_float] = ACTIONS(1809), - [anon_sym_range] = ACTIONS(1809), - [anon_sym_i8] = ACTIONS(1809), - [anon_sym_i16] = ACTIONS(1809), - [anon_sym_i32] = ACTIONS(1809), - [anon_sym_i64] = ACTIONS(1809), - [anon_sym_u8] = ACTIONS(1809), - [anon_sym_u16] = ACTIONS(1809), - [anon_sym_u32] = ACTIONS(1809), - [anon_sym_u64] = ACTIONS(1809), - [anon_sym_isize] = ACTIONS(1809), - [anon_sym_usize] = ACTIONS(1809), - [anon_sym_f32] = ACTIONS(1809), - [anon_sym_f64] = ACTIONS(1809), - [anon_sym_c_char] = ACTIONS(1809), - [anon_sym_c_schar] = ACTIONS(1809), - [anon_sym_c_uchar] = ACTIONS(1809), - [anon_sym_c_short] = ACTIONS(1809), - [anon_sym_c_ushort] = ACTIONS(1809), - [anon_sym_c_int] = ACTIONS(1809), - [anon_sym_c_uint] = ACTIONS(1809), - [anon_sym_c_long] = ACTIONS(1809), - [anon_sym_c_ulong] = ACTIONS(1809), - [anon_sym_c_longlong] = ACTIONS(1809), - [anon_sym_c_ulonglong] = ACTIONS(1809), - [anon_sym_c_float] = ACTIONS(1809), - [anon_sym_c_double] = ACTIONS(1809), - [anon_sym_c_longdouble] = ACTIONS(1809), - [anon_sym_DOT_DOT] = ACTIONS(1809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1807), - [anon_sym_orelse] = ACTIONS(1809), - [anon_sym_catch] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [anon_sym_and] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_xor] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_LT_LT_PIPE] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1807), - }, - [STATE(2334)] = { - [sym_identifier] = ACTIONS(1825), - [anon_sym_func] = ACTIONS(1825), - [anon_sym_c_func] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_struct_type_BANG] = ACTIONS(1823), - [anon_sym_QMARK] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_noreturn] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_anyopaque] = ACTIONS(1825), - [anon_sym_bool] = ACTIONS(1825), - [anon_sym_int] = ACTIONS(1825), - [anon_sym_uint] = ACTIONS(1825), - [anon_sym_float] = ACTIONS(1825), - [anon_sym_range] = ACTIONS(1825), - [anon_sym_i8] = ACTIONS(1825), - [anon_sym_i16] = ACTIONS(1825), - [anon_sym_i32] = ACTIONS(1825), - [anon_sym_i64] = ACTIONS(1825), - [anon_sym_u8] = ACTIONS(1825), - [anon_sym_u16] = ACTIONS(1825), - [anon_sym_u32] = ACTIONS(1825), - [anon_sym_u64] = ACTIONS(1825), - [anon_sym_isize] = ACTIONS(1825), - [anon_sym_usize] = ACTIONS(1825), - [anon_sym_f32] = ACTIONS(1825), - [anon_sym_f64] = ACTIONS(1825), - [anon_sym_c_char] = ACTIONS(1825), - [anon_sym_c_schar] = ACTIONS(1825), - [anon_sym_c_uchar] = ACTIONS(1825), - [anon_sym_c_short] = ACTIONS(1825), - [anon_sym_c_ushort] = ACTIONS(1825), - [anon_sym_c_int] = ACTIONS(1825), - [anon_sym_c_uint] = ACTIONS(1825), - [anon_sym_c_long] = ACTIONS(1825), - [anon_sym_c_ulong] = ACTIONS(1825), - [anon_sym_c_longlong] = ACTIONS(1825), - [anon_sym_c_ulonglong] = ACTIONS(1825), - [anon_sym_c_float] = ACTIONS(1825), - [anon_sym_c_double] = ACTIONS(1825), - [anon_sym_c_longdouble] = ACTIONS(1825), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1823), - [anon_sym_orelse] = ACTIONS(1825), - [anon_sym_catch] = ACTIONS(1825), - [anon_sym_or] = ACTIONS(1825), - [anon_sym_and] = ACTIONS(1825), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_xor] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1825), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_PIPE] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1825), - [anon_sym_CARET] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1823), - }, - [STATE(2335)] = { - [sym_identifier] = ACTIONS(1927), - [anon_sym_func] = ACTIONS(1927), - [anon_sym_c_func] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_struct_type_BANG] = ACTIONS(1925), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_noreturn] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_anyopaque] = ACTIONS(1927), - [anon_sym_bool] = ACTIONS(1927), - [anon_sym_int] = ACTIONS(1927), - [anon_sym_uint] = ACTIONS(1927), - [anon_sym_float] = ACTIONS(1927), - [anon_sym_range] = ACTIONS(1927), - [anon_sym_i8] = ACTIONS(1927), - [anon_sym_i16] = ACTIONS(1927), - [anon_sym_i32] = ACTIONS(1927), - [anon_sym_i64] = ACTIONS(1927), - [anon_sym_u8] = ACTIONS(1927), - [anon_sym_u16] = ACTIONS(1927), - [anon_sym_u32] = ACTIONS(1927), - [anon_sym_u64] = ACTIONS(1927), - [anon_sym_isize] = ACTIONS(1927), - [anon_sym_usize] = ACTIONS(1927), - [anon_sym_f32] = ACTIONS(1927), - [anon_sym_f64] = ACTIONS(1927), - [anon_sym_c_char] = ACTIONS(1927), - [anon_sym_c_schar] = ACTIONS(1927), - [anon_sym_c_uchar] = ACTIONS(1927), - [anon_sym_c_short] = ACTIONS(1927), - [anon_sym_c_ushort] = ACTIONS(1927), - [anon_sym_c_int] = ACTIONS(1927), - [anon_sym_c_uint] = ACTIONS(1927), - [anon_sym_c_long] = ACTIONS(1927), - [anon_sym_c_ulong] = ACTIONS(1927), - [anon_sym_c_longlong] = ACTIONS(1927), - [anon_sym_c_ulonglong] = ACTIONS(1927), - [anon_sym_c_float] = ACTIONS(1927), - [anon_sym_c_double] = ACTIONS(1927), - [anon_sym_c_longdouble] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1925), - [anon_sym_orelse] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_or] = ACTIONS(1927), - [anon_sym_and] = ACTIONS(1927), - [anon_sym_EQ_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_xor] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1927), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_LT_LT_PIPE] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1925), - }, - [STATE(2336)] = { - [sym_identifier] = ACTIONS(1899), - [anon_sym_func] = ACTIONS(1899), - [anon_sym_c_func] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_struct_type_BANG] = ACTIONS(1897), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_noreturn] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_anyopaque] = ACTIONS(1899), - [anon_sym_bool] = ACTIONS(1899), - [anon_sym_int] = ACTIONS(1899), - [anon_sym_uint] = ACTIONS(1899), - [anon_sym_float] = ACTIONS(1899), - [anon_sym_range] = ACTIONS(1899), - [anon_sym_i8] = ACTIONS(1899), - [anon_sym_i16] = ACTIONS(1899), - [anon_sym_i32] = ACTIONS(1899), - [anon_sym_i64] = ACTIONS(1899), - [anon_sym_u8] = ACTIONS(1899), - [anon_sym_u16] = ACTIONS(1899), - [anon_sym_u32] = ACTIONS(1899), - [anon_sym_u64] = ACTIONS(1899), - [anon_sym_isize] = ACTIONS(1899), - [anon_sym_usize] = ACTIONS(1899), - [anon_sym_f32] = ACTIONS(1899), - [anon_sym_f64] = ACTIONS(1899), - [anon_sym_c_char] = ACTIONS(1899), - [anon_sym_c_schar] = ACTIONS(1899), - [anon_sym_c_uchar] = ACTIONS(1899), - [anon_sym_c_short] = ACTIONS(1899), - [anon_sym_c_ushort] = ACTIONS(1899), - [anon_sym_c_int] = ACTIONS(1899), - [anon_sym_c_uint] = ACTIONS(1899), - [anon_sym_c_long] = ACTIONS(1899), - [anon_sym_c_ulong] = ACTIONS(1899), - [anon_sym_c_longlong] = ACTIONS(1899), - [anon_sym_c_ulonglong] = ACTIONS(1899), - [anon_sym_c_float] = ACTIONS(1899), - [anon_sym_c_double] = ACTIONS(1899), - [anon_sym_c_longdouble] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_orelse] = ACTIONS(1899), - [anon_sym_catch] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [anon_sym_and] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_xor] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1897), - [anon_sym_LT_LT_PIPE] = ACTIONS(1897), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1897), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1897), - }, - [STATE(2337)] = { - [sym_identifier] = ACTIONS(1883), - [anon_sym_func] = ACTIONS(1883), - [anon_sym_c_func] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_struct_type_BANG] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_void] = ACTIONS(1883), - [anon_sym_noreturn] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_anyopaque] = ACTIONS(1883), - [anon_sym_bool] = ACTIONS(1883), - [anon_sym_int] = ACTIONS(1883), - [anon_sym_uint] = ACTIONS(1883), - [anon_sym_float] = ACTIONS(1883), - [anon_sym_range] = ACTIONS(1883), - [anon_sym_i8] = ACTIONS(1883), - [anon_sym_i16] = ACTIONS(1883), - [anon_sym_i32] = ACTIONS(1883), - [anon_sym_i64] = ACTIONS(1883), - [anon_sym_u8] = ACTIONS(1883), - [anon_sym_u16] = ACTIONS(1883), - [anon_sym_u32] = ACTIONS(1883), - [anon_sym_u64] = ACTIONS(1883), - [anon_sym_isize] = ACTIONS(1883), - [anon_sym_usize] = ACTIONS(1883), - [anon_sym_f32] = ACTIONS(1883), - [anon_sym_f64] = ACTIONS(1883), - [anon_sym_c_char] = ACTIONS(1883), - [anon_sym_c_schar] = ACTIONS(1883), - [anon_sym_c_uchar] = ACTIONS(1883), - [anon_sym_c_short] = ACTIONS(1883), - [anon_sym_c_ushort] = ACTIONS(1883), - [anon_sym_c_int] = ACTIONS(1883), - [anon_sym_c_uint] = ACTIONS(1883), - [anon_sym_c_long] = ACTIONS(1883), - [anon_sym_c_ulong] = ACTIONS(1883), - [anon_sym_c_longlong] = ACTIONS(1883), - [anon_sym_c_ulonglong] = ACTIONS(1883), - [anon_sym_c_float] = ACTIONS(1883), - [anon_sym_c_double] = ACTIONS(1883), - [anon_sym_c_longdouble] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_orelse] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_or] = ACTIONS(1883), - [anon_sym_and] = ACTIONS(1883), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1883), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1883), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_xor] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1883), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_PIPE] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1881), - }, - [STATE(2338)] = { - [sym_identifier] = ACTIONS(1523), - [anon_sym_func] = ACTIONS(1523), - [anon_sym_c_func] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_struct_type_BANG] = ACTIONS(1521), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_AT] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_noreturn] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_anyopaque] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_range] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_c_char] = ACTIONS(1523), - [anon_sym_c_schar] = ACTIONS(1523), - [anon_sym_c_uchar] = ACTIONS(1523), - [anon_sym_c_short] = ACTIONS(1523), - [anon_sym_c_ushort] = ACTIONS(1523), - [anon_sym_c_int] = ACTIONS(1523), - [anon_sym_c_uint] = ACTIONS(1523), - [anon_sym_c_long] = ACTIONS(1523), - [anon_sym_c_ulong] = ACTIONS(1523), - [anon_sym_c_longlong] = ACTIONS(1523), - [anon_sym_c_ulonglong] = ACTIONS(1523), - [anon_sym_c_float] = ACTIONS(1523), - [anon_sym_c_double] = ACTIONS(1523), - [anon_sym_c_longdouble] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_orelse] = ACTIONS(1523), - [anon_sym_catch] = ACTIONS(1523), - [anon_sym_or] = ACTIONS(1523), - [anon_sym_and] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_xor] = ACTIONS(1523), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1521), - [anon_sym_LT_LT_PIPE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_SLASH] = ACTIONS(1521), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1521), - }, - [STATE(2339)] = { - [sym_identifier] = ACTIONS(1903), - [anon_sym_func] = ACTIONS(1903), - [anon_sym_c_func] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_struct_type_BANG] = ACTIONS(1901), - [anon_sym_QMARK] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_noreturn] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_anyopaque] = ACTIONS(1903), - [anon_sym_bool] = ACTIONS(1903), - [anon_sym_int] = ACTIONS(1903), - [anon_sym_uint] = ACTIONS(1903), - [anon_sym_float] = ACTIONS(1903), - [anon_sym_range] = ACTIONS(1903), - [anon_sym_i8] = ACTIONS(1903), - [anon_sym_i16] = ACTIONS(1903), - [anon_sym_i32] = ACTIONS(1903), - [anon_sym_i64] = ACTIONS(1903), - [anon_sym_u8] = ACTIONS(1903), - [anon_sym_u16] = ACTIONS(1903), - [anon_sym_u32] = ACTIONS(1903), - [anon_sym_u64] = ACTIONS(1903), - [anon_sym_isize] = ACTIONS(1903), - [anon_sym_usize] = ACTIONS(1903), - [anon_sym_f32] = ACTIONS(1903), - [anon_sym_f64] = ACTIONS(1903), - [anon_sym_c_char] = ACTIONS(1903), - [anon_sym_c_schar] = ACTIONS(1903), - [anon_sym_c_uchar] = ACTIONS(1903), - [anon_sym_c_short] = ACTIONS(1903), - [anon_sym_c_ushort] = ACTIONS(1903), - [anon_sym_c_int] = ACTIONS(1903), - [anon_sym_c_uint] = ACTIONS(1903), - [anon_sym_c_long] = ACTIONS(1903), - [anon_sym_c_ulong] = ACTIONS(1903), - [anon_sym_c_longlong] = ACTIONS(1903), - [anon_sym_c_ulonglong] = ACTIONS(1903), - [anon_sym_c_float] = ACTIONS(1903), - [anon_sym_c_double] = ACTIONS(1903), - [anon_sym_c_longdouble] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_orelse] = ACTIONS(1903), - [anon_sym_catch] = ACTIONS(1903), - [anon_sym_or] = ACTIONS(1903), - [anon_sym_and] = ACTIONS(1903), - [anon_sym_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_xor] = ACTIONS(1903), - [anon_sym_LT_LT] = ACTIONS(1903), - [anon_sym_GT_GT] = ACTIONS(1901), - [anon_sym_LT_LT_PIPE] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_CARET] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1901), - }, - [STATE(2340)] = { - [sym_identifier] = ACTIONS(1709), - [anon_sym_func] = ACTIONS(1709), - [anon_sym_c_func] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_COMMA] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_struct_type_BANG] = ACTIONS(1707), - [anon_sym_QMARK] = ACTIONS(1707), - [anon_sym_AT] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_void] = ACTIONS(1709), - [anon_sym_noreturn] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_anyopaque] = ACTIONS(1709), - [anon_sym_bool] = ACTIONS(1709), - [anon_sym_int] = ACTIONS(1709), - [anon_sym_uint] = ACTIONS(1709), - [anon_sym_float] = ACTIONS(1709), - [anon_sym_range] = ACTIONS(1709), - [anon_sym_i8] = ACTIONS(1709), - [anon_sym_i16] = ACTIONS(1709), - [anon_sym_i32] = ACTIONS(1709), - [anon_sym_i64] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1709), - [anon_sym_u16] = ACTIONS(1709), - [anon_sym_u32] = ACTIONS(1709), - [anon_sym_u64] = ACTIONS(1709), - [anon_sym_isize] = ACTIONS(1709), - [anon_sym_usize] = ACTIONS(1709), - [anon_sym_f32] = ACTIONS(1709), - [anon_sym_f64] = ACTIONS(1709), - [anon_sym_c_char] = ACTIONS(1709), - [anon_sym_c_schar] = ACTIONS(1709), - [anon_sym_c_uchar] = ACTIONS(1709), - [anon_sym_c_short] = ACTIONS(1709), - [anon_sym_c_ushort] = ACTIONS(1709), - [anon_sym_c_int] = ACTIONS(1709), - [anon_sym_c_uint] = ACTIONS(1709), - [anon_sym_c_long] = ACTIONS(1709), - [anon_sym_c_ulong] = ACTIONS(1709), - [anon_sym_c_longlong] = ACTIONS(1709), - [anon_sym_c_ulonglong] = ACTIONS(1709), - [anon_sym_c_float] = ACTIONS(1709), - [anon_sym_c_double] = ACTIONS(1709), - [anon_sym_c_longdouble] = ACTIONS(1709), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_orelse] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_or] = ACTIONS(1709), - [anon_sym_and] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1707), - [anon_sym_GT] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_xor] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_LT_LT_PIPE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), - }, - [STATE(2341)] = { - [sym_identifier] = ACTIONS(1713), - [anon_sym_func] = ACTIONS(1713), - [anon_sym_c_func] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_struct_type_BANG] = ACTIONS(1711), - [anon_sym_QMARK] = ACTIONS(1711), - [anon_sym_AT] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1713), - [anon_sym_noreturn] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_anyopaque] = ACTIONS(1713), - [anon_sym_bool] = ACTIONS(1713), - [anon_sym_int] = ACTIONS(1713), - [anon_sym_uint] = ACTIONS(1713), - [anon_sym_float] = ACTIONS(1713), - [anon_sym_range] = ACTIONS(1713), - [anon_sym_i8] = ACTIONS(1713), - [anon_sym_i16] = ACTIONS(1713), - [anon_sym_i32] = ACTIONS(1713), - [anon_sym_i64] = ACTIONS(1713), - [anon_sym_u8] = ACTIONS(1713), - [anon_sym_u16] = ACTIONS(1713), - [anon_sym_u32] = ACTIONS(1713), - [anon_sym_u64] = ACTIONS(1713), - [anon_sym_isize] = ACTIONS(1713), - [anon_sym_usize] = ACTIONS(1713), - [anon_sym_f32] = ACTIONS(1713), - [anon_sym_f64] = ACTIONS(1713), - [anon_sym_c_char] = ACTIONS(1713), - [anon_sym_c_schar] = ACTIONS(1713), - [anon_sym_c_uchar] = ACTIONS(1713), - [anon_sym_c_short] = ACTIONS(1713), - [anon_sym_c_ushort] = ACTIONS(1713), - [anon_sym_c_int] = ACTIONS(1713), - [anon_sym_c_uint] = ACTIONS(1713), - [anon_sym_c_long] = ACTIONS(1713), - [anon_sym_c_ulong] = ACTIONS(1713), - [anon_sym_c_longlong] = ACTIONS(1713), - [anon_sym_c_ulonglong] = ACTIONS(1713), - [anon_sym_c_float] = ACTIONS(1713), - [anon_sym_c_double] = ACTIONS(1713), - [anon_sym_c_longdouble] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_orelse] = ACTIONS(1713), - [anon_sym_catch] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1711), - [anon_sym_BANG_EQ] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_GT_EQ] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_LT_LT] = ACTIONS(1713), - [anon_sym_GT_GT] = ACTIONS(1711), - [anon_sym_LT_LT_PIPE] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1711), - }, - [STATE(2342)] = { - [sym_identifier] = ACTIONS(1971), - [anon_sym_func] = ACTIONS(1971), - [anon_sym_c_func] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_struct_type_BANG] = ACTIONS(1969), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_AT] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_void] = ACTIONS(1971), - [anon_sym_noreturn] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_anyopaque] = ACTIONS(1971), - [anon_sym_bool] = ACTIONS(1971), - [anon_sym_int] = ACTIONS(1971), - [anon_sym_uint] = ACTIONS(1971), - [anon_sym_float] = ACTIONS(1971), - [anon_sym_range] = ACTIONS(1971), - [anon_sym_i8] = ACTIONS(1971), - [anon_sym_i16] = ACTIONS(1971), - [anon_sym_i32] = ACTIONS(1971), - [anon_sym_i64] = ACTIONS(1971), - [anon_sym_u8] = ACTIONS(1971), - [anon_sym_u16] = ACTIONS(1971), - [anon_sym_u32] = ACTIONS(1971), - [anon_sym_u64] = ACTIONS(1971), - [anon_sym_isize] = ACTIONS(1971), - [anon_sym_usize] = ACTIONS(1971), - [anon_sym_f32] = ACTIONS(1971), - [anon_sym_f64] = ACTIONS(1971), - [anon_sym_c_char] = ACTIONS(1971), - [anon_sym_c_schar] = ACTIONS(1971), - [anon_sym_c_uchar] = ACTIONS(1971), - [anon_sym_c_short] = ACTIONS(1971), - [anon_sym_c_ushort] = ACTIONS(1971), - [anon_sym_c_int] = ACTIONS(1971), - [anon_sym_c_uint] = ACTIONS(1971), - [anon_sym_c_long] = ACTIONS(1971), - [anon_sym_c_ulong] = ACTIONS(1971), - [anon_sym_c_longlong] = ACTIONS(1971), - [anon_sym_c_ulonglong] = ACTIONS(1971), - [anon_sym_c_float] = ACTIONS(1971), - [anon_sym_c_double] = ACTIONS(1971), - [anon_sym_c_longdouble] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1969), - [anon_sym_orelse] = ACTIONS(1971), - [anon_sym_catch] = ACTIONS(1971), - [anon_sym_or] = ACTIONS(1971), - [anon_sym_and] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_xor] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_LT_LT_PIPE] = ACTIONS(1969), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1969), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1969), - }, - [STATE(2343)] = { - [sym_identifier] = ACTIONS(1869), - [anon_sym_func] = ACTIONS(1869), - [anon_sym_c_func] = ACTIONS(1869), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1867), - [anon_sym_struct_type_BANG] = ACTIONS(1867), - [anon_sym_QMARK] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1869), - [anon_sym_noreturn] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_anyopaque] = ACTIONS(1869), - [anon_sym_bool] = ACTIONS(1869), - [anon_sym_int] = ACTIONS(1869), - [anon_sym_uint] = ACTIONS(1869), - [anon_sym_float] = ACTIONS(1869), - [anon_sym_range] = ACTIONS(1869), - [anon_sym_i8] = ACTIONS(1869), - [anon_sym_i16] = ACTIONS(1869), - [anon_sym_i32] = ACTIONS(1869), - [anon_sym_i64] = ACTIONS(1869), - [anon_sym_u8] = ACTIONS(1869), - [anon_sym_u16] = ACTIONS(1869), - [anon_sym_u32] = ACTIONS(1869), - [anon_sym_u64] = ACTIONS(1869), - [anon_sym_isize] = ACTIONS(1869), - [anon_sym_usize] = ACTIONS(1869), - [anon_sym_f32] = ACTIONS(1869), - [anon_sym_f64] = ACTIONS(1869), - [anon_sym_c_char] = ACTIONS(1869), - [anon_sym_c_schar] = ACTIONS(1869), - [anon_sym_c_uchar] = ACTIONS(1869), - [anon_sym_c_short] = ACTIONS(1869), - [anon_sym_c_ushort] = ACTIONS(1869), - [anon_sym_c_int] = ACTIONS(1869), - [anon_sym_c_uint] = ACTIONS(1869), - [anon_sym_c_long] = ACTIONS(1869), - [anon_sym_c_ulong] = ACTIONS(1869), - [anon_sym_c_longlong] = ACTIONS(1869), - [anon_sym_c_ulonglong] = ACTIONS(1869), - [anon_sym_c_float] = ACTIONS(1869), - [anon_sym_c_double] = ACTIONS(1869), - [anon_sym_c_longdouble] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1867), - [anon_sym_orelse] = ACTIONS(1869), - [anon_sym_catch] = ACTIONS(1869), - [anon_sym_or] = ACTIONS(1869), - [anon_sym_and] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1867), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_xor] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1867), - [anon_sym_LT_LT_PIPE] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1867), - }, - [STATE(2344)] = { - [sym_identifier] = ACTIONS(1875), - [anon_sym_func] = ACTIONS(1875), - [anon_sym_c_func] = ACTIONS(1875), - [anon_sym_struct] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_struct_type_BANG] = ACTIONS(1873), - [anon_sym_QMARK] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_noreturn] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_anyopaque] = ACTIONS(1875), - [anon_sym_bool] = ACTIONS(1875), - [anon_sym_int] = ACTIONS(1875), - [anon_sym_uint] = ACTIONS(1875), - [anon_sym_float] = ACTIONS(1875), - [anon_sym_range] = ACTIONS(1875), - [anon_sym_i8] = ACTIONS(1875), - [anon_sym_i16] = ACTIONS(1875), - [anon_sym_i32] = ACTIONS(1875), - [anon_sym_i64] = ACTIONS(1875), - [anon_sym_u8] = ACTIONS(1875), - [anon_sym_u16] = ACTIONS(1875), - [anon_sym_u32] = ACTIONS(1875), - [anon_sym_u64] = ACTIONS(1875), - [anon_sym_isize] = ACTIONS(1875), - [anon_sym_usize] = ACTIONS(1875), - [anon_sym_f32] = ACTIONS(1875), - [anon_sym_f64] = ACTIONS(1875), - [anon_sym_c_char] = ACTIONS(1875), - [anon_sym_c_schar] = ACTIONS(1875), - [anon_sym_c_uchar] = ACTIONS(1875), - [anon_sym_c_short] = ACTIONS(1875), - [anon_sym_c_ushort] = ACTIONS(1875), - [anon_sym_c_int] = ACTIONS(1875), - [anon_sym_c_uint] = ACTIONS(1875), - [anon_sym_c_long] = ACTIONS(1875), - [anon_sym_c_ulong] = ACTIONS(1875), - [anon_sym_c_longlong] = ACTIONS(1875), - [anon_sym_c_ulonglong] = ACTIONS(1875), - [anon_sym_c_float] = ACTIONS(1875), - [anon_sym_c_double] = ACTIONS(1875), - [anon_sym_c_longdouble] = ACTIONS(1875), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_orelse] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_or] = ACTIONS(1875), - [anon_sym_and] = ACTIONS(1875), - [anon_sym_EQ_EQ] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_GT_EQ] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_xor] = ACTIONS(1875), - [anon_sym_LT_LT] = ACTIONS(1875), - [anon_sym_GT_GT] = ACTIONS(1873), - [anon_sym_LT_LT_PIPE] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(1875), - [anon_sym_CARET] = ACTIONS(1873), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1873), - }, - [STATE(2345)] = { - [sym_identifier] = ACTIONS(1931), - [anon_sym_func] = ACTIONS(1931), - [anon_sym_c_func] = ACTIONS(1931), - [anon_sym_struct] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_COMMA] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_struct_type_BANG] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_AT] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_void] = ACTIONS(1931), - [anon_sym_noreturn] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_anyopaque] = ACTIONS(1931), - [anon_sym_bool] = ACTIONS(1931), - [anon_sym_int] = ACTIONS(1931), - [anon_sym_uint] = ACTIONS(1931), - [anon_sym_float] = ACTIONS(1931), - [anon_sym_range] = ACTIONS(1931), - [anon_sym_i8] = ACTIONS(1931), - [anon_sym_i16] = ACTIONS(1931), - [anon_sym_i32] = ACTIONS(1931), - [anon_sym_i64] = ACTIONS(1931), - [anon_sym_u8] = ACTIONS(1931), - [anon_sym_u16] = ACTIONS(1931), - [anon_sym_u32] = ACTIONS(1931), - [anon_sym_u64] = ACTIONS(1931), - [anon_sym_isize] = ACTIONS(1931), - [anon_sym_usize] = ACTIONS(1931), - [anon_sym_f32] = ACTIONS(1931), - [anon_sym_f64] = ACTIONS(1931), - [anon_sym_c_char] = ACTIONS(1931), - [anon_sym_c_schar] = ACTIONS(1931), - [anon_sym_c_uchar] = ACTIONS(1931), - [anon_sym_c_short] = ACTIONS(1931), - [anon_sym_c_ushort] = ACTIONS(1931), - [anon_sym_c_int] = ACTIONS(1931), - [anon_sym_c_uint] = ACTIONS(1931), - [anon_sym_c_long] = ACTIONS(1931), - [anon_sym_c_ulong] = ACTIONS(1931), - [anon_sym_c_longlong] = ACTIONS(1931), - [anon_sym_c_ulonglong] = ACTIONS(1931), - [anon_sym_c_float] = ACTIONS(1931), - [anon_sym_c_double] = ACTIONS(1931), - [anon_sym_c_longdouble] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), - [anon_sym_orelse] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_or] = ACTIONS(1931), - [anon_sym_and] = ACTIONS(1931), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_BANG_EQ] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1931), - [anon_sym_LT_EQ] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1931), - [anon_sym_GT_EQ] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_xor] = ACTIONS(1931), - [anon_sym_LT_LT] = ACTIONS(1931), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_LT_LT_PIPE] = ACTIONS(1929), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_SLASH] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_CARET] = ACTIONS(1929), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1929), - }, - [STATE(2346)] = { - [sym_identifier] = ACTIONS(1853), - [anon_sym_func] = ACTIONS(1853), - [anon_sym_c_func] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_struct_type_BANG] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_void] = ACTIONS(1853), - [anon_sym_noreturn] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_anyopaque] = ACTIONS(1853), - [anon_sym_bool] = ACTIONS(1853), - [anon_sym_int] = ACTIONS(1853), - [anon_sym_uint] = ACTIONS(1853), - [anon_sym_float] = ACTIONS(1853), - [anon_sym_range] = ACTIONS(1853), - [anon_sym_i8] = ACTIONS(1853), - [anon_sym_i16] = ACTIONS(1853), - [anon_sym_i32] = ACTIONS(1853), - [anon_sym_i64] = ACTIONS(1853), - [anon_sym_u8] = ACTIONS(1853), - [anon_sym_u16] = ACTIONS(1853), - [anon_sym_u32] = ACTIONS(1853), - [anon_sym_u64] = ACTIONS(1853), - [anon_sym_isize] = ACTIONS(1853), - [anon_sym_usize] = ACTIONS(1853), - [anon_sym_f32] = ACTIONS(1853), - [anon_sym_f64] = ACTIONS(1853), - [anon_sym_c_char] = ACTIONS(1853), - [anon_sym_c_schar] = ACTIONS(1853), - [anon_sym_c_uchar] = ACTIONS(1853), - [anon_sym_c_short] = ACTIONS(1853), - [anon_sym_c_ushort] = ACTIONS(1853), - [anon_sym_c_int] = ACTIONS(1853), - [anon_sym_c_uint] = ACTIONS(1853), - [anon_sym_c_long] = ACTIONS(1853), - [anon_sym_c_ulong] = ACTIONS(1853), - [anon_sym_c_longlong] = ACTIONS(1853), - [anon_sym_c_ulonglong] = ACTIONS(1853), - [anon_sym_c_float] = ACTIONS(1853), - [anon_sym_c_double] = ACTIONS(1853), - [anon_sym_c_longdouble] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), - [anon_sym_orelse] = ACTIONS(1853), - [anon_sym_catch] = ACTIONS(1853), - [anon_sym_or] = ACTIONS(1853), - [anon_sym_and] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_xor] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1851), - [anon_sym_LT_LT_PIPE] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1851), - }, - [STATE(2347)] = { - [sym_identifier] = ACTIONS(1539), - [anon_sym_func] = ACTIONS(1539), - [anon_sym_c_func] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_COMMA] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_struct_type_BANG] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_noreturn] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_anyopaque] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_range] = ACTIONS(1539), - [anon_sym_i8] = ACTIONS(1539), - [anon_sym_i16] = ACTIONS(1539), - [anon_sym_i32] = ACTIONS(1539), - [anon_sym_i64] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1539), - [anon_sym_u16] = ACTIONS(1539), - [anon_sym_u32] = ACTIONS(1539), - [anon_sym_u64] = ACTIONS(1539), - [anon_sym_isize] = ACTIONS(1539), - [anon_sym_usize] = ACTIONS(1539), - [anon_sym_f32] = ACTIONS(1539), - [anon_sym_f64] = ACTIONS(1539), - [anon_sym_c_char] = ACTIONS(1539), - [anon_sym_c_schar] = ACTIONS(1539), - [anon_sym_c_uchar] = ACTIONS(1539), - [anon_sym_c_short] = ACTIONS(1539), - [anon_sym_c_ushort] = ACTIONS(1539), - [anon_sym_c_int] = ACTIONS(1539), - [anon_sym_c_uint] = ACTIONS(1539), - [anon_sym_c_long] = ACTIONS(1539), - [anon_sym_c_ulong] = ACTIONS(1539), - [anon_sym_c_longlong] = ACTIONS(1539), - [anon_sym_c_ulonglong] = ACTIONS(1539), - [anon_sym_c_float] = ACTIONS(1539), - [anon_sym_c_double] = ACTIONS(1539), - [anon_sym_c_longdouble] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_orelse] = ACTIONS(1539), - [anon_sym_catch] = ACTIONS(1539), - [anon_sym_or] = ACTIONS(1539), - [anon_sym_and] = ACTIONS(1539), - [anon_sym_EQ_EQ] = ACTIONS(1537), - [anon_sym_BANG_EQ] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1537), - [anon_sym_GT] = ACTIONS(1539), - [anon_sym_GT_EQ] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_xor] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1539), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_LT_LT_PIPE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1539), - [anon_sym_CARET] = ACTIONS(1537), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1537), - }, - [STATE(2348)] = { - [sym_identifier] = ACTIONS(5643), - [anon_sym_func] = ACTIONS(5643), - [anon_sym_BANG] = ACTIONS(5645), - [anon_sym_struct] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5645), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_DOLLAR] = ACTIONS(5645), - [anon_sym_LBRACK] = ACTIONS(5645), - [anon_sym_void] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym_type] = ACTIONS(5643), - [anon_sym_anyopaque] = ACTIONS(5643), - [anon_sym_bool] = ACTIONS(5643), - [anon_sym_int] = ACTIONS(5643), - [anon_sym_uint] = ACTIONS(5643), - [anon_sym_float] = ACTIONS(5643), - [anon_sym_range] = ACTIONS(5643), - [anon_sym_i8] = ACTIONS(5643), - [anon_sym_i16] = ACTIONS(5643), - [anon_sym_i32] = ACTIONS(5643), - [anon_sym_i64] = ACTIONS(5643), - [anon_sym_u8] = ACTIONS(5643), - [anon_sym_u16] = ACTIONS(5643), - [anon_sym_u32] = ACTIONS(5643), - [anon_sym_u64] = ACTIONS(5643), - [anon_sym_isize] = ACTIONS(5643), - [anon_sym_usize] = ACTIONS(5643), - [anon_sym_f32] = ACTIONS(5643), - [anon_sym_f64] = ACTIONS(5643), - [anon_sym_c_char] = ACTIONS(5643), - [anon_sym_c_schar] = ACTIONS(5643), - [anon_sym_c_uchar] = ACTIONS(5643), - [anon_sym_c_short] = ACTIONS(5643), - [anon_sym_c_ushort] = ACTIONS(5643), - [anon_sym_c_int] = ACTIONS(5643), - [anon_sym_c_uint] = ACTIONS(5643), - [anon_sym_c_long] = ACTIONS(5643), - [anon_sym_c_ulong] = ACTIONS(5643), - [anon_sym_c_longlong] = ACTIONS(5643), - [anon_sym_c_ulonglong] = ACTIONS(5643), - [anon_sym_c_float] = ACTIONS(5643), - [anon_sym_c_double] = ACTIONS(5643), - [anon_sym_c_longdouble] = ACTIONS(5643), - [anon_sym_return] = ACTIONS(5643), - [anon_sym_yield] = ACTIONS(5643), - [anon_sym_break] = ACTIONS(5643), - [anon_sym_continue] = ACTIONS(5643), - [anon_sym_defer] = ACTIONS(5643), - [anon_sym_errdefer] = ACTIONS(5643), - [anon_sym_if] = ACTIONS(5643), - [anon_sym_while] = ACTIONS(5643), - [anon_sym_expand] = ACTIONS(5643), - [anon_sym_for] = ACTIONS(5643), - [anon_sym_match] = ACTIONS(5643), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_TILDE] = ACTIONS(5645), - [anon_sym_try] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_true] = ACTIONS(5643), - [anon_sym_false] = ACTIONS(5643), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_unreachable] = ACTIONS(5643), - [anon_sym_undefined] = ACTIONS(5643), - [sym_sink] = ACTIONS(5643), - [sym_integer] = ACTIONS(5643), - [sym_float] = ACTIONS(5645), - [anon_sym_DQUOTE] = ACTIONS(5645), - [sym_multiline_string] = ACTIONS(5645), - [sym_character] = ACTIONS(5645), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5645), - }, - [STATE(2349)] = { - [sym_identifier] = ACTIONS(1717), - [anon_sym_func] = ACTIONS(1717), - [anon_sym_c_func] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_struct_type_BANG] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1715), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_noreturn] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_anyopaque] = ACTIONS(1717), - [anon_sym_bool] = ACTIONS(1717), - [anon_sym_int] = ACTIONS(1717), - [anon_sym_uint] = ACTIONS(1717), - [anon_sym_float] = ACTIONS(1717), - [anon_sym_range] = ACTIONS(1717), - [anon_sym_i8] = ACTIONS(1717), - [anon_sym_i16] = ACTIONS(1717), - [anon_sym_i32] = ACTIONS(1717), - [anon_sym_i64] = ACTIONS(1717), - [anon_sym_u8] = ACTIONS(1717), - [anon_sym_u16] = ACTIONS(1717), - [anon_sym_u32] = ACTIONS(1717), - [anon_sym_u64] = ACTIONS(1717), - [anon_sym_isize] = ACTIONS(1717), - [anon_sym_usize] = ACTIONS(1717), - [anon_sym_f32] = ACTIONS(1717), - [anon_sym_f64] = ACTIONS(1717), - [anon_sym_c_char] = ACTIONS(1717), - [anon_sym_c_schar] = ACTIONS(1717), - [anon_sym_c_uchar] = ACTIONS(1717), - [anon_sym_c_short] = ACTIONS(1717), - [anon_sym_c_ushort] = ACTIONS(1717), - [anon_sym_c_int] = ACTIONS(1717), - [anon_sym_c_uint] = ACTIONS(1717), - [anon_sym_c_long] = ACTIONS(1717), - [anon_sym_c_ulong] = ACTIONS(1717), - [anon_sym_c_longlong] = ACTIONS(1717), - [anon_sym_c_ulonglong] = ACTIONS(1717), - [anon_sym_c_float] = ACTIONS(1717), - [anon_sym_c_double] = ACTIONS(1717), - [anon_sym_c_longdouble] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_orelse] = ACTIONS(1717), - [anon_sym_catch] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1715), - [anon_sym_BANG_EQ] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1715), - [anon_sym_GT] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1715), - [anon_sym_LT_LT_PIPE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1715), - }, - [STATE(2350)] = { - [sym_identifier] = ACTIONS(1741), - [anon_sym_func] = ACTIONS(1741), - [anon_sym_c_func] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_struct_type_BANG] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1739), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_noreturn] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_anyopaque] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_int] = ACTIONS(1741), - [anon_sym_uint] = ACTIONS(1741), - [anon_sym_float] = ACTIONS(1741), - [anon_sym_range] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_c_char] = ACTIONS(1741), - [anon_sym_c_schar] = ACTIONS(1741), - [anon_sym_c_uchar] = ACTIONS(1741), - [anon_sym_c_short] = ACTIONS(1741), - [anon_sym_c_ushort] = ACTIONS(1741), - [anon_sym_c_int] = ACTIONS(1741), - [anon_sym_c_uint] = ACTIONS(1741), - [anon_sym_c_long] = ACTIONS(1741), - [anon_sym_c_ulong] = ACTIONS(1741), - [anon_sym_c_longlong] = ACTIONS(1741), - [anon_sym_c_ulonglong] = ACTIONS(1741), - [anon_sym_c_float] = ACTIONS(1741), - [anon_sym_c_double] = ACTIONS(1741), - [anon_sym_c_longdouble] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_orelse] = ACTIONS(1741), - [anon_sym_catch] = ACTIONS(1741), - [anon_sym_or] = ACTIONS(1741), - [anon_sym_and] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_xor] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_LT_LT_PIPE] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_DOT] = ACTIONS(1741), - [anon_sym_CARET] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1739), - }, - [STATE(2351)] = { - [sym_identifier] = ACTIONS(1837), - [anon_sym_func] = ACTIONS(1837), - [anon_sym_c_func] = ACTIONS(1837), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_struct_type_BANG] = ACTIONS(1835), - [anon_sym_QMARK] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_noreturn] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_anyopaque] = ACTIONS(1837), - [anon_sym_bool] = ACTIONS(1837), - [anon_sym_int] = ACTIONS(1837), - [anon_sym_uint] = ACTIONS(1837), - [anon_sym_float] = ACTIONS(1837), - [anon_sym_range] = ACTIONS(1837), - [anon_sym_i8] = ACTIONS(1837), - [anon_sym_i16] = ACTIONS(1837), - [anon_sym_i32] = ACTIONS(1837), - [anon_sym_i64] = ACTIONS(1837), - [anon_sym_u8] = ACTIONS(1837), - [anon_sym_u16] = ACTIONS(1837), - [anon_sym_u32] = ACTIONS(1837), - [anon_sym_u64] = ACTIONS(1837), - [anon_sym_isize] = ACTIONS(1837), - [anon_sym_usize] = ACTIONS(1837), - [anon_sym_f32] = ACTIONS(1837), - [anon_sym_f64] = ACTIONS(1837), - [anon_sym_c_char] = ACTIONS(1837), - [anon_sym_c_schar] = ACTIONS(1837), - [anon_sym_c_uchar] = ACTIONS(1837), - [anon_sym_c_short] = ACTIONS(1837), - [anon_sym_c_ushort] = ACTIONS(1837), - [anon_sym_c_int] = ACTIONS(1837), - [anon_sym_c_uint] = ACTIONS(1837), - [anon_sym_c_long] = ACTIONS(1837), - [anon_sym_c_ulong] = ACTIONS(1837), - [anon_sym_c_longlong] = ACTIONS(1837), - [anon_sym_c_ulonglong] = ACTIONS(1837), - [anon_sym_c_float] = ACTIONS(1837), - [anon_sym_c_double] = ACTIONS(1837), - [anon_sym_c_longdouble] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), - [anon_sym_orelse] = ACTIONS(1837), - [anon_sym_catch] = ACTIONS(1837), - [anon_sym_or] = ACTIONS(1837), - [anon_sym_and] = ACTIONS(1837), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_xor] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_PIPE] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1835), - }, - [STATE(2352)] = { - [sym_identifier] = ACTIONS(447), - [anon_sym_func] = ACTIONS(447), - [anon_sym_c_func] = ACTIONS(447), - [anon_sym_struct] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_struct_type_BANG] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_void] = ACTIONS(447), - [anon_sym_noreturn] = ACTIONS(447), - [anon_sym_type] = ACTIONS(447), - [anon_sym_anyopaque] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_int] = ACTIONS(447), - [anon_sym_uint] = ACTIONS(447), - [anon_sym_float] = ACTIONS(447), - [anon_sym_range] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_c_char] = ACTIONS(447), - [anon_sym_c_schar] = ACTIONS(447), - [anon_sym_c_uchar] = ACTIONS(447), - [anon_sym_c_short] = ACTIONS(447), - [anon_sym_c_ushort] = ACTIONS(447), - [anon_sym_c_int] = ACTIONS(447), - [anon_sym_c_uint] = ACTIONS(447), - [anon_sym_c_long] = ACTIONS(447), - [anon_sym_c_ulong] = ACTIONS(447), - [anon_sym_c_longlong] = ACTIONS(447), - [anon_sym_c_ulonglong] = ACTIONS(447), - [anon_sym_c_float] = ACTIONS(447), - [anon_sym_c_double] = ACTIONS(447), - [anon_sym_c_longdouble] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(447), - [anon_sym_catch] = ACTIONS(447), - [anon_sym_or] = ACTIONS(447), - [anon_sym_and] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_xor] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(447), - [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_DOT] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - }, - [STATE(2353)] = { - [sym_identifier] = ACTIONS(1951), - [anon_sym_func] = ACTIONS(1951), - [anon_sym_c_func] = ACTIONS(1951), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_COMMA] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_struct_type_BANG] = ACTIONS(1949), - [anon_sym_QMARK] = ACTIONS(1949), - [anon_sym_AT] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_void] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_type] = ACTIONS(1951), - [anon_sym_anyopaque] = ACTIONS(1951), - [anon_sym_bool] = ACTIONS(1951), - [anon_sym_int] = ACTIONS(1951), - [anon_sym_uint] = ACTIONS(1951), - [anon_sym_float] = ACTIONS(1951), - [anon_sym_range] = ACTIONS(1951), - [anon_sym_i8] = ACTIONS(1951), - [anon_sym_i16] = ACTIONS(1951), - [anon_sym_i32] = ACTIONS(1951), - [anon_sym_i64] = ACTIONS(1951), - [anon_sym_u8] = ACTIONS(1951), - [anon_sym_u16] = ACTIONS(1951), - [anon_sym_u32] = ACTIONS(1951), - [anon_sym_u64] = ACTIONS(1951), - [anon_sym_isize] = ACTIONS(1951), - [anon_sym_usize] = ACTIONS(1951), - [anon_sym_f32] = ACTIONS(1951), - [anon_sym_f64] = ACTIONS(1951), - [anon_sym_c_char] = ACTIONS(1951), - [anon_sym_c_schar] = ACTIONS(1951), - [anon_sym_c_uchar] = ACTIONS(1951), - [anon_sym_c_short] = ACTIONS(1951), - [anon_sym_c_ushort] = ACTIONS(1951), - [anon_sym_c_int] = ACTIONS(1951), - [anon_sym_c_uint] = ACTIONS(1951), - [anon_sym_c_long] = ACTIONS(1951), - [anon_sym_c_ulong] = ACTIONS(1951), - [anon_sym_c_longlong] = ACTIONS(1951), - [anon_sym_c_ulonglong] = ACTIONS(1951), - [anon_sym_c_float] = ACTIONS(1951), - [anon_sym_c_double] = ACTIONS(1951), - [anon_sym_c_longdouble] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1949), - [anon_sym_orelse] = ACTIONS(1951), - [anon_sym_catch] = ACTIONS(1951), - [anon_sym_or] = ACTIONS(1951), - [anon_sym_and] = ACTIONS(1951), - [anon_sym_EQ_EQ] = ACTIONS(1949), - [anon_sym_BANG_EQ] = ACTIONS(1949), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_LT_EQ] = ACTIONS(1949), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_GT_EQ] = ACTIONS(1949), - [anon_sym_AMP] = ACTIONS(1949), - [anon_sym_xor] = ACTIONS(1951), - [anon_sym_LT_LT] = ACTIONS(1951), - [anon_sym_GT_GT] = ACTIONS(1949), - [anon_sym_LT_LT_PIPE] = ACTIONS(1949), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_SLASH] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1949), - }, - [STATE(2354)] = { - [sym_identifier] = ACTIONS(1721), - [anon_sym_func] = ACTIONS(1721), - [anon_sym_c_func] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_struct_type_BANG] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_void] = ACTIONS(1721), - [anon_sym_noreturn] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_anyopaque] = ACTIONS(1721), - [anon_sym_bool] = ACTIONS(1721), - [anon_sym_int] = ACTIONS(1721), - [anon_sym_uint] = ACTIONS(1721), - [anon_sym_float] = ACTIONS(1721), - [anon_sym_range] = ACTIONS(1721), - [anon_sym_i8] = ACTIONS(1721), - [anon_sym_i16] = ACTIONS(1721), - [anon_sym_i32] = ACTIONS(1721), - [anon_sym_i64] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1721), - [anon_sym_u16] = ACTIONS(1721), - [anon_sym_u32] = ACTIONS(1721), - [anon_sym_u64] = ACTIONS(1721), - [anon_sym_isize] = ACTIONS(1721), - [anon_sym_usize] = ACTIONS(1721), - [anon_sym_f32] = ACTIONS(1721), - [anon_sym_f64] = ACTIONS(1721), - [anon_sym_c_char] = ACTIONS(1721), - [anon_sym_c_schar] = ACTIONS(1721), - [anon_sym_c_uchar] = ACTIONS(1721), - [anon_sym_c_short] = ACTIONS(1721), - [anon_sym_c_ushort] = ACTIONS(1721), - [anon_sym_c_int] = ACTIONS(1721), - [anon_sym_c_uint] = ACTIONS(1721), - [anon_sym_c_long] = ACTIONS(1721), - [anon_sym_c_ulong] = ACTIONS(1721), - [anon_sym_c_longlong] = ACTIONS(1721), - [anon_sym_c_ulonglong] = ACTIONS(1721), - [anon_sym_c_float] = ACTIONS(1721), - [anon_sym_c_double] = ACTIONS(1721), - [anon_sym_c_longdouble] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_orelse] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_or] = ACTIONS(1721), - [anon_sym_and] = ACTIONS(1721), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_LT_EQ] = ACTIONS(1719), - [anon_sym_GT] = ACTIONS(1721), - [anon_sym_GT_EQ] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_xor] = ACTIONS(1721), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_LT_LT_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_DOT] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1719), - }, - [STATE(2355)] = { - [sym_identifier] = ACTIONS(1745), - [anon_sym_func] = ACTIONS(1745), - [anon_sym_c_func] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_COMMA] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_struct_type_BANG] = ACTIONS(1743), - [anon_sym_QMARK] = ACTIONS(1743), - [anon_sym_AT] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_noreturn] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_anyopaque] = ACTIONS(1745), - [anon_sym_bool] = ACTIONS(1745), - [anon_sym_int] = ACTIONS(1745), - [anon_sym_uint] = ACTIONS(1745), - [anon_sym_float] = ACTIONS(1745), - [anon_sym_range] = ACTIONS(1745), - [anon_sym_i8] = ACTIONS(1745), - [anon_sym_i16] = ACTIONS(1745), - [anon_sym_i32] = ACTIONS(1745), - [anon_sym_i64] = ACTIONS(1745), - [anon_sym_u8] = ACTIONS(1745), - [anon_sym_u16] = ACTIONS(1745), - [anon_sym_u32] = ACTIONS(1745), - [anon_sym_u64] = ACTIONS(1745), - [anon_sym_isize] = ACTIONS(1745), - [anon_sym_usize] = ACTIONS(1745), - [anon_sym_f32] = ACTIONS(1745), - [anon_sym_f64] = ACTIONS(1745), - [anon_sym_c_char] = ACTIONS(1745), - [anon_sym_c_schar] = ACTIONS(1745), - [anon_sym_c_uchar] = ACTIONS(1745), - [anon_sym_c_short] = ACTIONS(1745), - [anon_sym_c_ushort] = ACTIONS(1745), - [anon_sym_c_int] = ACTIONS(1745), - [anon_sym_c_uint] = ACTIONS(1745), - [anon_sym_c_long] = ACTIONS(1745), - [anon_sym_c_ulong] = ACTIONS(1745), - [anon_sym_c_longlong] = ACTIONS(1745), - [anon_sym_c_ulonglong] = ACTIONS(1745), - [anon_sym_c_float] = ACTIONS(1745), - [anon_sym_c_double] = ACTIONS(1745), - [anon_sym_c_longdouble] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_orelse] = ACTIONS(1745), - [anon_sym_catch] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1743), - [anon_sym_BANG_EQ] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_LT_LT] = ACTIONS(1745), - [anon_sym_GT_GT] = ACTIONS(1743), - [anon_sym_LT_LT_PIPE] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_DOT] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1743), - }, - [STATE(2356)] = { - [sym_identifier] = ACTIONS(1829), - [anon_sym_func] = ACTIONS(1829), - [anon_sym_c_func] = ACTIONS(1829), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_struct_type_BANG] = ACTIONS(1827), - [anon_sym_QMARK] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_void] = ACTIONS(1829), - [anon_sym_noreturn] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_anyopaque] = ACTIONS(1829), - [anon_sym_bool] = ACTIONS(1829), - [anon_sym_int] = ACTIONS(1829), - [anon_sym_uint] = ACTIONS(1829), - [anon_sym_float] = ACTIONS(1829), - [anon_sym_range] = ACTIONS(1829), - [anon_sym_i8] = ACTIONS(1829), - [anon_sym_i16] = ACTIONS(1829), - [anon_sym_i32] = ACTIONS(1829), - [anon_sym_i64] = ACTIONS(1829), - [anon_sym_u8] = ACTIONS(1829), - [anon_sym_u16] = ACTIONS(1829), - [anon_sym_u32] = ACTIONS(1829), - [anon_sym_u64] = ACTIONS(1829), - [anon_sym_isize] = ACTIONS(1829), - [anon_sym_usize] = ACTIONS(1829), - [anon_sym_f32] = ACTIONS(1829), - [anon_sym_f64] = ACTIONS(1829), - [anon_sym_c_char] = ACTIONS(1829), - [anon_sym_c_schar] = ACTIONS(1829), - [anon_sym_c_uchar] = ACTIONS(1829), - [anon_sym_c_short] = ACTIONS(1829), - [anon_sym_c_ushort] = ACTIONS(1829), - [anon_sym_c_int] = ACTIONS(1829), - [anon_sym_c_uint] = ACTIONS(1829), - [anon_sym_c_long] = ACTIONS(1829), - [anon_sym_c_ulong] = ACTIONS(1829), - [anon_sym_c_longlong] = ACTIONS(1829), - [anon_sym_c_ulonglong] = ACTIONS(1829), - [anon_sym_c_float] = ACTIONS(1829), - [anon_sym_c_double] = ACTIONS(1829), - [anon_sym_c_longdouble] = ACTIONS(1829), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1827), - [anon_sym_orelse] = ACTIONS(1829), - [anon_sym_catch] = ACTIONS(1829), - [anon_sym_or] = ACTIONS(1829), - [anon_sym_and] = ACTIONS(1829), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_xor] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1829), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_PIPE] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1827), - }, - [STATE(2357)] = { - [sym_identifier] = ACTIONS(1609), - [anon_sym_func] = ACTIONS(1609), - [anon_sym_c_func] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_COMMA] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_struct_type_BANG] = ACTIONS(1607), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_AT] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_noreturn] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_anyopaque] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_range] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_c_char] = ACTIONS(1609), - [anon_sym_c_schar] = ACTIONS(1609), - [anon_sym_c_uchar] = ACTIONS(1609), - [anon_sym_c_short] = ACTIONS(1609), - [anon_sym_c_ushort] = ACTIONS(1609), - [anon_sym_c_int] = ACTIONS(1609), - [anon_sym_c_uint] = ACTIONS(1609), - [anon_sym_c_long] = ACTIONS(1609), - [anon_sym_c_ulong] = ACTIONS(1609), - [anon_sym_c_longlong] = ACTIONS(1609), - [anon_sym_c_ulonglong] = ACTIONS(1609), - [anon_sym_c_float] = ACTIONS(1609), - [anon_sym_c_double] = ACTIONS(1609), - [anon_sym_c_longdouble] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_orelse] = ACTIONS(1609), - [anon_sym_catch] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_LT_EQ] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1609), - [anon_sym_GT_EQ] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1609), - [anon_sym_GT_GT] = ACTIONS(1607), - [anon_sym_LT_LT_PIPE] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(1609), - [anon_sym_CARET] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1607), - }, - [STATE(2358)] = { - [sym_identifier] = ACTIONS(1833), - [anon_sym_func] = ACTIONS(1833), - [anon_sym_c_func] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_struct_type_BANG] = ACTIONS(1831), - [anon_sym_QMARK] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_noreturn] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_anyopaque] = ACTIONS(1833), - [anon_sym_bool] = ACTIONS(1833), - [anon_sym_int] = ACTIONS(1833), - [anon_sym_uint] = ACTIONS(1833), - [anon_sym_float] = ACTIONS(1833), - [anon_sym_range] = ACTIONS(1833), - [anon_sym_i8] = ACTIONS(1833), - [anon_sym_i16] = ACTIONS(1833), - [anon_sym_i32] = ACTIONS(1833), - [anon_sym_i64] = ACTIONS(1833), - [anon_sym_u8] = ACTIONS(1833), - [anon_sym_u16] = ACTIONS(1833), - [anon_sym_u32] = ACTIONS(1833), - [anon_sym_u64] = ACTIONS(1833), - [anon_sym_isize] = ACTIONS(1833), - [anon_sym_usize] = ACTIONS(1833), - [anon_sym_f32] = ACTIONS(1833), - [anon_sym_f64] = ACTIONS(1833), - [anon_sym_c_char] = ACTIONS(1833), - [anon_sym_c_schar] = ACTIONS(1833), - [anon_sym_c_uchar] = ACTIONS(1833), - [anon_sym_c_short] = ACTIONS(1833), - [anon_sym_c_ushort] = ACTIONS(1833), - [anon_sym_c_int] = ACTIONS(1833), - [anon_sym_c_uint] = ACTIONS(1833), - [anon_sym_c_long] = ACTIONS(1833), - [anon_sym_c_ulong] = ACTIONS(1833), - [anon_sym_c_longlong] = ACTIONS(1833), - [anon_sym_c_ulonglong] = ACTIONS(1833), - [anon_sym_c_float] = ACTIONS(1833), - [anon_sym_c_double] = ACTIONS(1833), - [anon_sym_c_longdouble] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), - [anon_sym_orelse] = ACTIONS(1833), - [anon_sym_catch] = ACTIONS(1833), - [anon_sym_or] = ACTIONS(1833), - [anon_sym_and] = ACTIONS(1833), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_xor] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(1833), - [anon_sym_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_PIPE] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1831), - }, - [STATE(2359)] = { - [sym_identifier] = ACTIONS(5647), - [anon_sym_func] = ACTIONS(5647), - [anon_sym_BANG] = ACTIONS(5649), - [anon_sym_struct] = ACTIONS(5647), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_LBRACE] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5649), - [anon_sym_DOLLAR] = ACTIONS(5649), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_void] = ACTIONS(5647), - [anon_sym_noreturn] = ACTIONS(5647), - [anon_sym_type] = ACTIONS(5647), - [anon_sym_anyopaque] = ACTIONS(5647), - [anon_sym_bool] = ACTIONS(5647), - [anon_sym_int] = ACTIONS(5647), - [anon_sym_uint] = ACTIONS(5647), - [anon_sym_float] = ACTIONS(5647), - [anon_sym_range] = ACTIONS(5647), - [anon_sym_i8] = ACTIONS(5647), - [anon_sym_i16] = ACTIONS(5647), - [anon_sym_i32] = ACTIONS(5647), - [anon_sym_i64] = ACTIONS(5647), - [anon_sym_u8] = ACTIONS(5647), - [anon_sym_u16] = ACTIONS(5647), - [anon_sym_u32] = ACTIONS(5647), - [anon_sym_u64] = ACTIONS(5647), - [anon_sym_isize] = ACTIONS(5647), - [anon_sym_usize] = ACTIONS(5647), - [anon_sym_f32] = ACTIONS(5647), - [anon_sym_f64] = ACTIONS(5647), - [anon_sym_c_char] = ACTIONS(5647), - [anon_sym_c_schar] = ACTIONS(5647), - [anon_sym_c_uchar] = ACTIONS(5647), - [anon_sym_c_short] = ACTIONS(5647), - [anon_sym_c_ushort] = ACTIONS(5647), - [anon_sym_c_int] = ACTIONS(5647), - [anon_sym_c_uint] = ACTIONS(5647), - [anon_sym_c_long] = ACTIONS(5647), - [anon_sym_c_ulong] = ACTIONS(5647), - [anon_sym_c_longlong] = ACTIONS(5647), - [anon_sym_c_ulonglong] = ACTIONS(5647), - [anon_sym_c_float] = ACTIONS(5647), - [anon_sym_c_double] = ACTIONS(5647), - [anon_sym_c_longdouble] = ACTIONS(5647), - [anon_sym_return] = ACTIONS(5647), - [anon_sym_yield] = ACTIONS(5647), - [anon_sym_break] = ACTIONS(5647), - [anon_sym_continue] = ACTIONS(5647), - [anon_sym_defer] = ACTIONS(5647), - [anon_sym_errdefer] = ACTIONS(5647), - [anon_sym_if] = ACTIONS(5647), - [anon_sym_while] = ACTIONS(5647), - [anon_sym_expand] = ACTIONS(5647), - [anon_sym_for] = ACTIONS(5647), - [anon_sym_match] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5649), - [anon_sym_TILDE] = ACTIONS(5649), - [anon_sym_try] = ACTIONS(5647), - [anon_sym_DOT] = ACTIONS(5649), - [anon_sym_true] = ACTIONS(5647), - [anon_sym_false] = ACTIONS(5647), - [anon_sym_null] = ACTIONS(5647), - [anon_sym_unreachable] = ACTIONS(5647), - [anon_sym_undefined] = ACTIONS(5647), - [sym_sink] = ACTIONS(5647), - [sym_integer] = ACTIONS(5647), - [sym_float] = ACTIONS(5649), - [anon_sym_DQUOTE] = ACTIONS(5649), - [sym_multiline_string] = ACTIONS(5649), - [sym_character] = ACTIONS(5649), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5649), - }, - [STATE(2360)] = { - [sym_identifier] = ACTIONS(1857), - [anon_sym_func] = ACTIONS(1857), - [anon_sym_c_func] = ACTIONS(1857), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_struct_type_BANG] = ACTIONS(1855), - [anon_sym_QMARK] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_void] = ACTIONS(1857), - [anon_sym_noreturn] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_anyopaque] = ACTIONS(1857), - [anon_sym_bool] = ACTIONS(1857), - [anon_sym_int] = ACTIONS(1857), - [anon_sym_uint] = ACTIONS(1857), - [anon_sym_float] = ACTIONS(1857), - [anon_sym_range] = ACTIONS(1857), - [anon_sym_i8] = ACTIONS(1857), - [anon_sym_i16] = ACTIONS(1857), - [anon_sym_i32] = ACTIONS(1857), - [anon_sym_i64] = ACTIONS(1857), - [anon_sym_u8] = ACTIONS(1857), - [anon_sym_u16] = ACTIONS(1857), - [anon_sym_u32] = ACTIONS(1857), - [anon_sym_u64] = ACTIONS(1857), - [anon_sym_isize] = ACTIONS(1857), - [anon_sym_usize] = ACTIONS(1857), - [anon_sym_f32] = ACTIONS(1857), - [anon_sym_f64] = ACTIONS(1857), - [anon_sym_c_char] = ACTIONS(1857), - [anon_sym_c_schar] = ACTIONS(1857), - [anon_sym_c_uchar] = ACTIONS(1857), - [anon_sym_c_short] = ACTIONS(1857), - [anon_sym_c_ushort] = ACTIONS(1857), - [anon_sym_c_int] = ACTIONS(1857), - [anon_sym_c_uint] = ACTIONS(1857), - [anon_sym_c_long] = ACTIONS(1857), - [anon_sym_c_ulong] = ACTIONS(1857), - [anon_sym_c_longlong] = ACTIONS(1857), - [anon_sym_c_ulonglong] = ACTIONS(1857), - [anon_sym_c_float] = ACTIONS(1857), - [anon_sym_c_double] = ACTIONS(1857), - [anon_sym_c_longdouble] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1855), - [anon_sym_orelse] = ACTIONS(1857), - [anon_sym_catch] = ACTIONS(1857), - [anon_sym_or] = ACTIONS(1857), - [anon_sym_and] = ACTIONS(1857), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1857), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_xor] = ACTIONS(1857), - [anon_sym_LT_LT] = ACTIONS(1857), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1857), - [anon_sym_CARET] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1855), - }, - [STATE(2361)] = { - [sym_identifier] = ACTIONS(1887), - [anon_sym_func] = ACTIONS(1887), - [anon_sym_c_func] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_struct_type_BANG] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_noreturn] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_anyopaque] = ACTIONS(1887), - [anon_sym_bool] = ACTIONS(1887), - [anon_sym_int] = ACTIONS(1887), - [anon_sym_uint] = ACTIONS(1887), - [anon_sym_float] = ACTIONS(1887), - [anon_sym_range] = ACTIONS(1887), - [anon_sym_i8] = ACTIONS(1887), - [anon_sym_i16] = ACTIONS(1887), - [anon_sym_i32] = ACTIONS(1887), - [anon_sym_i64] = ACTIONS(1887), - [anon_sym_u8] = ACTIONS(1887), - [anon_sym_u16] = ACTIONS(1887), - [anon_sym_u32] = ACTIONS(1887), - [anon_sym_u64] = ACTIONS(1887), - [anon_sym_isize] = ACTIONS(1887), - [anon_sym_usize] = ACTIONS(1887), - [anon_sym_f32] = ACTIONS(1887), - [anon_sym_f64] = ACTIONS(1887), - [anon_sym_c_char] = ACTIONS(1887), - [anon_sym_c_schar] = ACTIONS(1887), - [anon_sym_c_uchar] = ACTIONS(1887), - [anon_sym_c_short] = ACTIONS(1887), - [anon_sym_c_ushort] = ACTIONS(1887), - [anon_sym_c_int] = ACTIONS(1887), - [anon_sym_c_uint] = ACTIONS(1887), - [anon_sym_c_long] = ACTIONS(1887), - [anon_sym_c_ulong] = ACTIONS(1887), - [anon_sym_c_longlong] = ACTIONS(1887), - [anon_sym_c_ulonglong] = ACTIONS(1887), - [anon_sym_c_float] = ACTIONS(1887), - [anon_sym_c_double] = ACTIONS(1887), - [anon_sym_c_longdouble] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_orelse] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1887), - [anon_sym_and] = ACTIONS(1887), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_xor] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_PIPE] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1885), - }, - [STATE(2362)] = { - [sym_identifier] = ACTIONS(1535), - [anon_sym_func] = ACTIONS(1535), - [anon_sym_c_func] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_COMMA] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_struct_type_BANG] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_noreturn] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_anyopaque] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_range] = ACTIONS(1535), - [anon_sym_i8] = ACTIONS(1535), - [anon_sym_i16] = ACTIONS(1535), - [anon_sym_i32] = ACTIONS(1535), - [anon_sym_i64] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1535), - [anon_sym_u16] = ACTIONS(1535), - [anon_sym_u32] = ACTIONS(1535), - [anon_sym_u64] = ACTIONS(1535), - [anon_sym_isize] = ACTIONS(1535), - [anon_sym_usize] = ACTIONS(1535), - [anon_sym_f32] = ACTIONS(1535), - [anon_sym_f64] = ACTIONS(1535), - [anon_sym_c_char] = ACTIONS(1535), - [anon_sym_c_schar] = ACTIONS(1535), - [anon_sym_c_uchar] = ACTIONS(1535), - [anon_sym_c_short] = ACTIONS(1535), - [anon_sym_c_ushort] = ACTIONS(1535), - [anon_sym_c_int] = ACTIONS(1535), - [anon_sym_c_uint] = ACTIONS(1535), - [anon_sym_c_long] = ACTIONS(1535), - [anon_sym_c_ulong] = ACTIONS(1535), - [anon_sym_c_longlong] = ACTIONS(1535), - [anon_sym_c_ulonglong] = ACTIONS(1535), - [anon_sym_c_float] = ACTIONS(1535), - [anon_sym_c_double] = ACTIONS(1535), - [anon_sym_c_longdouble] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), - [anon_sym_orelse] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_or] = ACTIONS(1535), - [anon_sym_and] = ACTIONS(1535), - [anon_sym_EQ_EQ] = ACTIONS(1533), - [anon_sym_BANG_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_GT] = ACTIONS(1535), - [anon_sym_GT_EQ] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1535), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_LT_LT_PIPE] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1533), - }, - [STATE(2363)] = { - [sym_identifier] = ACTIONS(2051), - [anon_sym_func] = ACTIONS(2051), - [anon_sym_c_func] = ACTIONS(2051), - [anon_sym_struct] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_COMMA] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_struct_type_BANG] = ACTIONS(2049), - [anon_sym_QMARK] = ACTIONS(2049), - [anon_sym_AT] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_void] = ACTIONS(2051), - [anon_sym_noreturn] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2051), - [anon_sym_anyopaque] = ACTIONS(2051), - [anon_sym_bool] = ACTIONS(2051), - [anon_sym_int] = ACTIONS(2051), - [anon_sym_uint] = ACTIONS(2051), - [anon_sym_float] = ACTIONS(2051), - [anon_sym_range] = ACTIONS(2051), - [anon_sym_i8] = ACTIONS(2051), - [anon_sym_i16] = ACTIONS(2051), - [anon_sym_i32] = ACTIONS(2051), - [anon_sym_i64] = ACTIONS(2051), - [anon_sym_u8] = ACTIONS(2051), - [anon_sym_u16] = ACTIONS(2051), - [anon_sym_u32] = ACTIONS(2051), - [anon_sym_u64] = ACTIONS(2051), - [anon_sym_isize] = ACTIONS(2051), - [anon_sym_usize] = ACTIONS(2051), - [anon_sym_f32] = ACTIONS(2051), - [anon_sym_f64] = ACTIONS(2051), - [anon_sym_c_char] = ACTIONS(2051), - [anon_sym_c_schar] = ACTIONS(2051), - [anon_sym_c_uchar] = ACTIONS(2051), - [anon_sym_c_short] = ACTIONS(2051), - [anon_sym_c_ushort] = ACTIONS(2051), - [anon_sym_c_int] = ACTIONS(2051), - [anon_sym_c_uint] = ACTIONS(2051), - [anon_sym_c_long] = ACTIONS(2051), - [anon_sym_c_ulong] = ACTIONS(2051), - [anon_sym_c_longlong] = ACTIONS(2051), - [anon_sym_c_ulonglong] = ACTIONS(2051), - [anon_sym_c_float] = ACTIONS(2051), - [anon_sym_c_double] = ACTIONS(2051), - [anon_sym_c_longdouble] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2049), - [anon_sym_orelse] = ACTIONS(2051), - [anon_sym_catch] = ACTIONS(2051), - [anon_sym_or] = ACTIONS(2051), - [anon_sym_and] = ACTIONS(2051), - [anon_sym_EQ_EQ] = ACTIONS(2049), - [anon_sym_BANG_EQ] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_LT_EQ] = ACTIONS(2049), - [anon_sym_GT] = ACTIONS(2051), - [anon_sym_GT_EQ] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_xor] = ACTIONS(2051), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_GT_GT] = ACTIONS(2049), - [anon_sym_LT_LT_PIPE] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_CARET] = ACTIONS(2049), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2049), - }, - [STATE(2364)] = { - [sym_identifier] = ACTIONS(1551), - [anon_sym_func] = ACTIONS(1551), - [anon_sym_c_func] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_struct_type_BANG] = ACTIONS(1549), - [anon_sym_QMARK] = ACTIONS(1549), - [anon_sym_AT] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_noreturn] = ACTIONS(1551), - [anon_sym_type] = ACTIONS(1551), - [anon_sym_anyopaque] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_range] = ACTIONS(1551), - [anon_sym_i8] = ACTIONS(1551), - [anon_sym_i16] = ACTIONS(1551), - [anon_sym_i32] = ACTIONS(1551), - [anon_sym_i64] = ACTIONS(1551), - [anon_sym_u8] = ACTIONS(1551), - [anon_sym_u16] = ACTIONS(1551), - [anon_sym_u32] = ACTIONS(1551), - [anon_sym_u64] = ACTIONS(1551), - [anon_sym_isize] = ACTIONS(1551), - [anon_sym_usize] = ACTIONS(1551), - [anon_sym_f32] = ACTIONS(1551), - [anon_sym_f64] = ACTIONS(1551), - [anon_sym_c_char] = ACTIONS(1551), - [anon_sym_c_schar] = ACTIONS(1551), - [anon_sym_c_uchar] = ACTIONS(1551), - [anon_sym_c_short] = ACTIONS(1551), - [anon_sym_c_ushort] = ACTIONS(1551), - [anon_sym_c_int] = ACTIONS(1551), - [anon_sym_c_uint] = ACTIONS(1551), - [anon_sym_c_long] = ACTIONS(1551), - [anon_sym_c_ulong] = ACTIONS(1551), - [anon_sym_c_longlong] = ACTIONS(1551), - [anon_sym_c_ulonglong] = ACTIONS(1551), - [anon_sym_c_float] = ACTIONS(1551), - [anon_sym_c_double] = ACTIONS(1551), - [anon_sym_c_longdouble] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1549), - [anon_sym_orelse] = ACTIONS(1551), - [anon_sym_catch] = ACTIONS(1551), - [anon_sym_or] = ACTIONS(1551), - [anon_sym_and] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_xor] = ACTIONS(1551), - [anon_sym_LT_LT] = ACTIONS(1551), - [anon_sym_GT_GT] = ACTIONS(1549), - [anon_sym_LT_LT_PIPE] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1549), - }, - [STATE(2365)] = { - [sym_identifier] = ACTIONS(459), - [anon_sym_func] = ACTIONS(459), - [anon_sym_c_func] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_struct_type_BANG] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_void] = ACTIONS(459), - [anon_sym_noreturn] = ACTIONS(459), - [anon_sym_type] = ACTIONS(459), - [anon_sym_anyopaque] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_int] = ACTIONS(459), - [anon_sym_uint] = ACTIONS(459), - [anon_sym_float] = ACTIONS(459), - [anon_sym_range] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_c_char] = ACTIONS(459), - [anon_sym_c_schar] = ACTIONS(459), - [anon_sym_c_uchar] = ACTIONS(459), - [anon_sym_c_short] = ACTIONS(459), - [anon_sym_c_ushort] = ACTIONS(459), - [anon_sym_c_int] = ACTIONS(459), - [anon_sym_c_uint] = ACTIONS(459), - [anon_sym_c_long] = ACTIONS(459), - [anon_sym_c_ulong] = ACTIONS(459), - [anon_sym_c_longlong] = ACTIONS(459), - [anon_sym_c_ulonglong] = ACTIONS(459), - [anon_sym_c_float] = ACTIONS(459), - [anon_sym_c_double] = ACTIONS(459), - [anon_sym_c_longdouble] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(461), - [anon_sym_orelse] = ACTIONS(459), - [anon_sym_catch] = ACTIONS(459), - [anon_sym_or] = ACTIONS(459), - [anon_sym_and] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_xor] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_LT_LT_PIPE] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(461), - }, - [STATE(2366)] = { - [sym_identifier] = ACTIONS(1813), - [anon_sym_func] = ACTIONS(1813), - [anon_sym_c_func] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_struct_type_BANG] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_void] = ACTIONS(1813), - [anon_sym_noreturn] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_anyopaque] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_int] = ACTIONS(1813), - [anon_sym_uint] = ACTIONS(1813), - [anon_sym_float] = ACTIONS(1813), - [anon_sym_range] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_c_char] = ACTIONS(1813), - [anon_sym_c_schar] = ACTIONS(1813), - [anon_sym_c_uchar] = ACTIONS(1813), - [anon_sym_c_short] = ACTIONS(1813), - [anon_sym_c_ushort] = ACTIONS(1813), - [anon_sym_c_int] = ACTIONS(1813), - [anon_sym_c_uint] = ACTIONS(1813), - [anon_sym_c_long] = ACTIONS(1813), - [anon_sym_c_ulong] = ACTIONS(1813), - [anon_sym_c_longlong] = ACTIONS(1813), - [anon_sym_c_ulonglong] = ACTIONS(1813), - [anon_sym_c_float] = ACTIONS(1813), - [anon_sym_c_double] = ACTIONS(1813), - [anon_sym_c_longdouble] = ACTIONS(1813), - [anon_sym_DOT_DOT] = ACTIONS(1813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), - [anon_sym_orelse] = ACTIONS(1813), - [anon_sym_catch] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [anon_sym_and] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1811), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_xor] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1811), - [anon_sym_LT_LT_PIPE] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1811), - }, - [STATE(2367)] = { - [sym_identifier] = ACTIONS(1583), - [anon_sym_func] = ACTIONS(1583), - [anon_sym_c_func] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_struct_type_BANG] = ACTIONS(1581), - [anon_sym_QMARK] = ACTIONS(1581), - [anon_sym_AT] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_noreturn] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_anyopaque] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_range] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_c_char] = ACTIONS(1583), - [anon_sym_c_schar] = ACTIONS(1583), - [anon_sym_c_uchar] = ACTIONS(1583), - [anon_sym_c_short] = ACTIONS(1583), - [anon_sym_c_ushort] = ACTIONS(1583), - [anon_sym_c_int] = ACTIONS(1583), - [anon_sym_c_uint] = ACTIONS(1583), - [anon_sym_c_long] = ACTIONS(1583), - [anon_sym_c_ulong] = ACTIONS(1583), - [anon_sym_c_longlong] = ACTIONS(1583), - [anon_sym_c_ulonglong] = ACTIONS(1583), - [anon_sym_c_float] = ACTIONS(1583), - [anon_sym_c_double] = ACTIONS(1583), - [anon_sym_c_longdouble] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1581), - [anon_sym_orelse] = ACTIONS(1583), - [anon_sym_catch] = ACTIONS(1583), - [anon_sym_or] = ACTIONS(1583), - [anon_sym_and] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_xor] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1581), - [anon_sym_LT_LT_PIPE] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_SLASH] = ACTIONS(1581), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1581), - }, - [STATE(2368)] = { - [sym_identifier] = ACTIONS(1907), - [anon_sym_func] = ACTIONS(1907), - [anon_sym_c_func] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_struct_type_BANG] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_AT] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_void] = ACTIONS(1907), - [anon_sym_noreturn] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_anyopaque] = ACTIONS(1907), - [anon_sym_bool] = ACTIONS(1907), - [anon_sym_int] = ACTIONS(1907), - [anon_sym_uint] = ACTIONS(1907), - [anon_sym_float] = ACTIONS(1907), - [anon_sym_range] = ACTIONS(1907), - [anon_sym_i8] = ACTIONS(1907), - [anon_sym_i16] = ACTIONS(1907), - [anon_sym_i32] = ACTIONS(1907), - [anon_sym_i64] = ACTIONS(1907), - [anon_sym_u8] = ACTIONS(1907), - [anon_sym_u16] = ACTIONS(1907), - [anon_sym_u32] = ACTIONS(1907), - [anon_sym_u64] = ACTIONS(1907), - [anon_sym_isize] = ACTIONS(1907), - [anon_sym_usize] = ACTIONS(1907), - [anon_sym_f32] = ACTIONS(1907), - [anon_sym_f64] = ACTIONS(1907), - [anon_sym_c_char] = ACTIONS(1907), - [anon_sym_c_schar] = ACTIONS(1907), - [anon_sym_c_uchar] = ACTIONS(1907), - [anon_sym_c_short] = ACTIONS(1907), - [anon_sym_c_ushort] = ACTIONS(1907), - [anon_sym_c_int] = ACTIONS(1907), - [anon_sym_c_uint] = ACTIONS(1907), - [anon_sym_c_long] = ACTIONS(1907), - [anon_sym_c_ulong] = ACTIONS(1907), - [anon_sym_c_longlong] = ACTIONS(1907), - [anon_sym_c_ulonglong] = ACTIONS(1907), - [anon_sym_c_float] = ACTIONS(1907), - [anon_sym_c_double] = ACTIONS(1907), - [anon_sym_c_longdouble] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), - [anon_sym_orelse] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_or] = ACTIONS(1907), - [anon_sym_and] = ACTIONS(1907), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1907), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_xor] = ACTIONS(1907), - [anon_sym_LT_LT] = ACTIONS(1907), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_LT_LT_PIPE] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1907), - [anon_sym_CARET] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1905), - }, - [STATE(2369)] = { - [sym_identifier] = ACTIONS(1955), - [anon_sym_func] = ACTIONS(1955), - [anon_sym_c_func] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_struct_type_BANG] = ACTIONS(1953), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_AT] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_void] = ACTIONS(1955), - [anon_sym_noreturn] = ACTIONS(1955), - [anon_sym_type] = ACTIONS(1955), - [anon_sym_anyopaque] = ACTIONS(1955), - [anon_sym_bool] = ACTIONS(1955), - [anon_sym_int] = ACTIONS(1955), - [anon_sym_uint] = ACTIONS(1955), - [anon_sym_float] = ACTIONS(1955), - [anon_sym_range] = ACTIONS(1955), - [anon_sym_i8] = ACTIONS(1955), - [anon_sym_i16] = ACTIONS(1955), - [anon_sym_i32] = ACTIONS(1955), - [anon_sym_i64] = ACTIONS(1955), - [anon_sym_u8] = ACTIONS(1955), - [anon_sym_u16] = ACTIONS(1955), - [anon_sym_u32] = ACTIONS(1955), - [anon_sym_u64] = ACTIONS(1955), - [anon_sym_isize] = ACTIONS(1955), - [anon_sym_usize] = ACTIONS(1955), - [anon_sym_f32] = ACTIONS(1955), - [anon_sym_f64] = ACTIONS(1955), - [anon_sym_c_char] = ACTIONS(1955), - [anon_sym_c_schar] = ACTIONS(1955), - [anon_sym_c_uchar] = ACTIONS(1955), - [anon_sym_c_short] = ACTIONS(1955), - [anon_sym_c_ushort] = ACTIONS(1955), - [anon_sym_c_int] = ACTIONS(1955), - [anon_sym_c_uint] = ACTIONS(1955), - [anon_sym_c_long] = ACTIONS(1955), - [anon_sym_c_ulong] = ACTIONS(1955), - [anon_sym_c_longlong] = ACTIONS(1955), - [anon_sym_c_ulonglong] = ACTIONS(1955), - [anon_sym_c_float] = ACTIONS(1955), - [anon_sym_c_double] = ACTIONS(1955), - [anon_sym_c_longdouble] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_orelse] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_or] = ACTIONS(1955), - [anon_sym_and] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_xor] = ACTIONS(1955), - [anon_sym_LT_LT] = ACTIONS(1955), - [anon_sym_GT_GT] = ACTIONS(1953), - [anon_sym_LT_LT_PIPE] = ACTIONS(1953), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_SLASH] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1953), - }, - [STATE(2370)] = { - [sym_identifier] = ACTIONS(1597), - [anon_sym_func] = ACTIONS(1597), - [anon_sym_c_func] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_struct_type_BANG] = ACTIONS(1595), - [anon_sym_QMARK] = ACTIONS(1595), - [anon_sym_AT] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_noreturn] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_anyopaque] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_int] = ACTIONS(1597), - [anon_sym_uint] = ACTIONS(1597), - [anon_sym_float] = ACTIONS(1597), - [anon_sym_range] = ACTIONS(1597), - [anon_sym_i8] = ACTIONS(1597), - [anon_sym_i16] = ACTIONS(1597), - [anon_sym_i32] = ACTIONS(1597), - [anon_sym_i64] = ACTIONS(1597), - [anon_sym_u8] = ACTIONS(1597), - [anon_sym_u16] = ACTIONS(1597), - [anon_sym_u32] = ACTIONS(1597), - [anon_sym_u64] = ACTIONS(1597), - [anon_sym_isize] = ACTIONS(1597), - [anon_sym_usize] = ACTIONS(1597), - [anon_sym_f32] = ACTIONS(1597), - [anon_sym_f64] = ACTIONS(1597), - [anon_sym_c_char] = ACTIONS(1597), - [anon_sym_c_schar] = ACTIONS(1597), - [anon_sym_c_uchar] = ACTIONS(1597), - [anon_sym_c_short] = ACTIONS(1597), - [anon_sym_c_ushort] = ACTIONS(1597), - [anon_sym_c_int] = ACTIONS(1597), - [anon_sym_c_uint] = ACTIONS(1597), - [anon_sym_c_long] = ACTIONS(1597), - [anon_sym_c_ulong] = ACTIONS(1597), - [anon_sym_c_longlong] = ACTIONS(1597), - [anon_sym_c_ulonglong] = ACTIONS(1597), - [anon_sym_c_float] = ACTIONS(1597), - [anon_sym_c_double] = ACTIONS(1597), - [anon_sym_c_longdouble] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1597), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_orelse] = ACTIONS(1597), - [anon_sym_catch] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1595), - [anon_sym_BANG_EQ] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_LT_EQ] = ACTIONS(1595), - [anon_sym_GT] = ACTIONS(1597), - [anon_sym_GT_EQ] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_LT_LT] = ACTIONS(1597), - [anon_sym_GT_GT] = ACTIONS(1595), - [anon_sym_LT_LT_PIPE] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_DOT] = ACTIONS(1597), - [anon_sym_CARET] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1595), - }, - [STATE(2371)] = { - [sym_identifier] = ACTIONS(1601), - [anon_sym_func] = ACTIONS(1601), - [anon_sym_c_func] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_COMMA] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_struct_type_BANG] = ACTIONS(1599), - [anon_sym_QMARK] = ACTIONS(1599), - [anon_sym_AT] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1601), - [anon_sym_noreturn] = ACTIONS(1601), - [anon_sym_type] = ACTIONS(1601), - [anon_sym_anyopaque] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_int] = ACTIONS(1601), - [anon_sym_uint] = ACTIONS(1601), - [anon_sym_float] = ACTIONS(1601), - [anon_sym_range] = ACTIONS(1601), - [anon_sym_i8] = ACTIONS(1601), - [anon_sym_i16] = ACTIONS(1601), - [anon_sym_i32] = ACTIONS(1601), - [anon_sym_i64] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1601), - [anon_sym_u16] = ACTIONS(1601), - [anon_sym_u32] = ACTIONS(1601), - [anon_sym_u64] = ACTIONS(1601), - [anon_sym_isize] = ACTIONS(1601), - [anon_sym_usize] = ACTIONS(1601), - [anon_sym_f32] = ACTIONS(1601), - [anon_sym_f64] = ACTIONS(1601), - [anon_sym_c_char] = ACTIONS(1601), - [anon_sym_c_schar] = ACTIONS(1601), - [anon_sym_c_uchar] = ACTIONS(1601), - [anon_sym_c_short] = ACTIONS(1601), - [anon_sym_c_ushort] = ACTIONS(1601), - [anon_sym_c_int] = ACTIONS(1601), - [anon_sym_c_uint] = ACTIONS(1601), - [anon_sym_c_long] = ACTIONS(1601), - [anon_sym_c_ulong] = ACTIONS(1601), - [anon_sym_c_longlong] = ACTIONS(1601), - [anon_sym_c_ulonglong] = ACTIONS(1601), - [anon_sym_c_float] = ACTIONS(1601), - [anon_sym_c_double] = ACTIONS(1601), - [anon_sym_c_longdouble] = ACTIONS(1601), - [anon_sym_DOT_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), - [anon_sym_orelse] = ACTIONS(1601), - [anon_sym_catch] = ACTIONS(1601), - [anon_sym_or] = ACTIONS(1601), - [anon_sym_and] = ACTIONS(1601), - [anon_sym_EQ_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1599), - [anon_sym_GT] = ACTIONS(1601), - [anon_sym_GT_EQ] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_xor] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1601), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_LT_LT_PIPE] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1599), - }, - [STATE(2372)] = { - [sym_identifier] = ACTIONS(1697), - [anon_sym_func] = ACTIONS(1697), - [anon_sym_c_func] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_struct_type_BANG] = ACTIONS(1695), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_anyopaque] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_int] = ACTIONS(1697), - [anon_sym_uint] = ACTIONS(1697), - [anon_sym_float] = ACTIONS(1697), - [anon_sym_range] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_c_char] = ACTIONS(1697), - [anon_sym_c_schar] = ACTIONS(1697), - [anon_sym_c_uchar] = ACTIONS(1697), - [anon_sym_c_short] = ACTIONS(1697), - [anon_sym_c_ushort] = ACTIONS(1697), - [anon_sym_c_int] = ACTIONS(1697), - [anon_sym_c_uint] = ACTIONS(1697), - [anon_sym_c_long] = ACTIONS(1697), - [anon_sym_c_ulong] = ACTIONS(1697), - [anon_sym_c_longlong] = ACTIONS(1697), - [anon_sym_c_ulonglong] = ACTIONS(1697), - [anon_sym_c_float] = ACTIONS(1697), - [anon_sym_c_double] = ACTIONS(1697), - [anon_sym_c_longdouble] = ACTIONS(1697), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_orelse] = ACTIONS(1697), - [anon_sym_catch] = ACTIONS(1697), - [anon_sym_or] = ACTIONS(1697), - [anon_sym_and] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_xor] = ACTIONS(1697), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1695), - [anon_sym_LT_LT_PIPE] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_SLASH] = ACTIONS(1695), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1695), - }, - [STATE(2373)] = { - [sym_identifier] = ACTIONS(1559), - [anon_sym_func] = ACTIONS(1559), - [anon_sym_c_func] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_COMMA] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_struct_type_BANG] = ACTIONS(1557), - [anon_sym_QMARK] = ACTIONS(1557), - [anon_sym_AT] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_noreturn] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_anyopaque] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_range] = ACTIONS(1559), - [anon_sym_i8] = ACTIONS(1559), - [anon_sym_i16] = ACTIONS(1559), - [anon_sym_i32] = ACTIONS(1559), - [anon_sym_i64] = ACTIONS(1559), - [anon_sym_u8] = ACTIONS(1559), - [anon_sym_u16] = ACTIONS(1559), - [anon_sym_u32] = ACTIONS(1559), - [anon_sym_u64] = ACTIONS(1559), - [anon_sym_isize] = ACTIONS(1559), - [anon_sym_usize] = ACTIONS(1559), - [anon_sym_f32] = ACTIONS(1559), - [anon_sym_f64] = ACTIONS(1559), - [anon_sym_c_char] = ACTIONS(1559), - [anon_sym_c_schar] = ACTIONS(1559), - [anon_sym_c_uchar] = ACTIONS(1559), - [anon_sym_c_short] = ACTIONS(1559), - [anon_sym_c_ushort] = ACTIONS(1559), - [anon_sym_c_int] = ACTIONS(1559), - [anon_sym_c_uint] = ACTIONS(1559), - [anon_sym_c_long] = ACTIONS(1559), - [anon_sym_c_ulong] = ACTIONS(1559), - [anon_sym_c_longlong] = ACTIONS(1559), - [anon_sym_c_ulonglong] = ACTIONS(1559), - [anon_sym_c_float] = ACTIONS(1559), - [anon_sym_c_double] = ACTIONS(1559), - [anon_sym_c_longdouble] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_orelse] = ACTIONS(1559), - [anon_sym_catch] = ACTIONS(1559), - [anon_sym_or] = ACTIONS(1559), - [anon_sym_and] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_BANG_EQ] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_xor] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1557), - [anon_sym_LT_LT_PIPE] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(1557), - [anon_sym_DOT] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1557), - }, - [STATE(2374)] = { - [sym_identifier] = ACTIONS(477), - [anon_sym_func] = ACTIONS(477), - [anon_sym_c_func] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_struct_type_BANG] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_void] = ACTIONS(477), - [anon_sym_noreturn] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_anyopaque] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_int] = ACTIONS(477), - [anon_sym_uint] = ACTIONS(477), - [anon_sym_float] = ACTIONS(477), - [anon_sym_range] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_c_char] = ACTIONS(477), - [anon_sym_c_schar] = ACTIONS(477), - [anon_sym_c_uchar] = ACTIONS(477), - [anon_sym_c_short] = ACTIONS(477), - [anon_sym_c_ushort] = ACTIONS(477), - [anon_sym_c_int] = ACTIONS(477), - [anon_sym_c_uint] = ACTIONS(477), - [anon_sym_c_long] = ACTIONS(477), - [anon_sym_c_ulong] = ACTIONS(477), - [anon_sym_c_longlong] = ACTIONS(477), - [anon_sym_c_ulonglong] = ACTIONS(477), - [anon_sym_c_float] = ACTIONS(477), - [anon_sym_c_double] = ACTIONS(477), - [anon_sym_c_longdouble] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_orelse] = ACTIONS(477), - [anon_sym_catch] = ACTIONS(477), - [anon_sym_or] = ACTIONS(477), - [anon_sym_and] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_xor] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_LT_LT_PIPE] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(486), - }, - [STATE(2375)] = { - [sym_identifier] = ACTIONS(1935), - [anon_sym_func] = ACTIONS(1935), - [anon_sym_c_func] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_COMMA] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_struct_type_BANG] = ACTIONS(1933), - [anon_sym_QMARK] = ACTIONS(1933), - [anon_sym_AT] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_void] = ACTIONS(1935), - [anon_sym_noreturn] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_anyopaque] = ACTIONS(1935), - [anon_sym_bool] = ACTIONS(1935), - [anon_sym_int] = ACTIONS(1935), - [anon_sym_uint] = ACTIONS(1935), - [anon_sym_float] = ACTIONS(1935), - [anon_sym_range] = ACTIONS(1935), - [anon_sym_i8] = ACTIONS(1935), - [anon_sym_i16] = ACTIONS(1935), - [anon_sym_i32] = ACTIONS(1935), - [anon_sym_i64] = ACTIONS(1935), - [anon_sym_u8] = ACTIONS(1935), - [anon_sym_u16] = ACTIONS(1935), - [anon_sym_u32] = ACTIONS(1935), - [anon_sym_u64] = ACTIONS(1935), - [anon_sym_isize] = ACTIONS(1935), - [anon_sym_usize] = ACTIONS(1935), - [anon_sym_f32] = ACTIONS(1935), - [anon_sym_f64] = ACTIONS(1935), - [anon_sym_c_char] = ACTIONS(1935), - [anon_sym_c_schar] = ACTIONS(1935), - [anon_sym_c_uchar] = ACTIONS(1935), - [anon_sym_c_short] = ACTIONS(1935), - [anon_sym_c_ushort] = ACTIONS(1935), - [anon_sym_c_int] = ACTIONS(1935), - [anon_sym_c_uint] = ACTIONS(1935), - [anon_sym_c_long] = ACTIONS(1935), - [anon_sym_c_ulong] = ACTIONS(1935), - [anon_sym_c_longlong] = ACTIONS(1935), - [anon_sym_c_ulonglong] = ACTIONS(1935), - [anon_sym_c_float] = ACTIONS(1935), - [anon_sym_c_double] = ACTIONS(1935), - [anon_sym_c_longdouble] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_orelse] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_or] = ACTIONS(1935), - [anon_sym_and] = ACTIONS(1935), - [anon_sym_EQ_EQ] = ACTIONS(1933), - [anon_sym_BANG_EQ] = ACTIONS(1933), - [anon_sym_LT] = ACTIONS(1935), - [anon_sym_LT_EQ] = ACTIONS(1933), - [anon_sym_GT] = ACTIONS(1935), - [anon_sym_GT_EQ] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1933), - [anon_sym_xor] = ACTIONS(1935), - [anon_sym_LT_LT] = ACTIONS(1935), - [anon_sym_GT_GT] = ACTIONS(1933), - [anon_sym_LT_LT_PIPE] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_SLASH] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(1935), - [anon_sym_CARET] = ACTIONS(1933), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1933), - }, - [STATE(2376)] = { - [sym_identifier] = ACTIONS(1579), - [anon_sym_func] = ACTIONS(1579), - [anon_sym_c_func] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_struct_type_BANG] = ACTIONS(1577), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_noreturn] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_anyopaque] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_range] = ACTIONS(1579), - [anon_sym_i8] = ACTIONS(1579), - [anon_sym_i16] = ACTIONS(1579), - [anon_sym_i32] = ACTIONS(1579), - [anon_sym_i64] = ACTIONS(1579), - [anon_sym_u8] = ACTIONS(1579), - [anon_sym_u16] = ACTIONS(1579), - [anon_sym_u32] = ACTIONS(1579), - [anon_sym_u64] = ACTIONS(1579), - [anon_sym_isize] = ACTIONS(1579), - [anon_sym_usize] = ACTIONS(1579), - [anon_sym_f32] = ACTIONS(1579), - [anon_sym_f64] = ACTIONS(1579), - [anon_sym_c_char] = ACTIONS(1579), - [anon_sym_c_schar] = ACTIONS(1579), - [anon_sym_c_uchar] = ACTIONS(1579), - [anon_sym_c_short] = ACTIONS(1579), - [anon_sym_c_ushort] = ACTIONS(1579), - [anon_sym_c_int] = ACTIONS(1579), - [anon_sym_c_uint] = ACTIONS(1579), - [anon_sym_c_long] = ACTIONS(1579), - [anon_sym_c_ulong] = ACTIONS(1579), - [anon_sym_c_longlong] = ACTIONS(1579), - [anon_sym_c_ulonglong] = ACTIONS(1579), - [anon_sym_c_float] = ACTIONS(1579), - [anon_sym_c_double] = ACTIONS(1579), - [anon_sym_c_longdouble] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), - [anon_sym_orelse] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_or] = ACTIONS(1579), - [anon_sym_and] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_xor] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_LT_LT_PIPE] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1577), - }, - [STATE(2377)] = { - [sym_identifier] = ACTIONS(1705), - [anon_sym_func] = ACTIONS(1705), - [anon_sym_c_func] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_struct_type_BANG] = ACTIONS(1703), - [anon_sym_QMARK] = ACTIONS(1703), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1705), - [anon_sym_noreturn] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_anyopaque] = ACTIONS(1705), - [anon_sym_bool] = ACTIONS(1705), - [anon_sym_int] = ACTIONS(1705), - [anon_sym_uint] = ACTIONS(1705), - [anon_sym_float] = ACTIONS(1705), - [anon_sym_range] = ACTIONS(1705), - [anon_sym_i8] = ACTIONS(1705), - [anon_sym_i16] = ACTIONS(1705), - [anon_sym_i32] = ACTIONS(1705), - [anon_sym_i64] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1705), - [anon_sym_u16] = ACTIONS(1705), - [anon_sym_u32] = ACTIONS(1705), - [anon_sym_u64] = ACTIONS(1705), - [anon_sym_isize] = ACTIONS(1705), - [anon_sym_usize] = ACTIONS(1705), - [anon_sym_f32] = ACTIONS(1705), - [anon_sym_f64] = ACTIONS(1705), - [anon_sym_c_char] = ACTIONS(1705), - [anon_sym_c_schar] = ACTIONS(1705), - [anon_sym_c_uchar] = ACTIONS(1705), - [anon_sym_c_short] = ACTIONS(1705), - [anon_sym_c_ushort] = ACTIONS(1705), - [anon_sym_c_int] = ACTIONS(1705), - [anon_sym_c_uint] = ACTIONS(1705), - [anon_sym_c_long] = ACTIONS(1705), - [anon_sym_c_ulong] = ACTIONS(1705), - [anon_sym_c_longlong] = ACTIONS(1705), - [anon_sym_c_ulonglong] = ACTIONS(1705), - [anon_sym_c_float] = ACTIONS(1705), - [anon_sym_c_double] = ACTIONS(1705), - [anon_sym_c_longdouble] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_orelse] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_or] = ACTIONS(1705), - [anon_sym_and] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1703), - [anon_sym_BANG_EQ] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_xor] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_LT_LT_PIPE] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_DOT] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1703), - }, - [STATE(2378)] = { - [sym_identifier] = ACTIONS(1939), - [anon_sym_func] = ACTIONS(1939), - [anon_sym_c_func] = ACTIONS(1939), - [anon_sym_struct] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_struct_type_BANG] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_AT] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_void] = ACTIONS(1939), - [anon_sym_noreturn] = ACTIONS(1939), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_anyopaque] = ACTIONS(1939), - [anon_sym_bool] = ACTIONS(1939), - [anon_sym_int] = ACTIONS(1939), - [anon_sym_uint] = ACTIONS(1939), - [anon_sym_float] = ACTIONS(1939), - [anon_sym_range] = ACTIONS(1939), - [anon_sym_i8] = ACTIONS(1939), - [anon_sym_i16] = ACTIONS(1939), - [anon_sym_i32] = ACTIONS(1939), - [anon_sym_i64] = ACTIONS(1939), - [anon_sym_u8] = ACTIONS(1939), - [anon_sym_u16] = ACTIONS(1939), - [anon_sym_u32] = ACTIONS(1939), - [anon_sym_u64] = ACTIONS(1939), - [anon_sym_isize] = ACTIONS(1939), - [anon_sym_usize] = ACTIONS(1939), - [anon_sym_f32] = ACTIONS(1939), - [anon_sym_f64] = ACTIONS(1939), - [anon_sym_c_char] = ACTIONS(1939), - [anon_sym_c_schar] = ACTIONS(1939), - [anon_sym_c_uchar] = ACTIONS(1939), - [anon_sym_c_short] = ACTIONS(1939), - [anon_sym_c_ushort] = ACTIONS(1939), - [anon_sym_c_int] = ACTIONS(1939), - [anon_sym_c_uint] = ACTIONS(1939), - [anon_sym_c_long] = ACTIONS(1939), - [anon_sym_c_ulong] = ACTIONS(1939), - [anon_sym_c_longlong] = ACTIONS(1939), - [anon_sym_c_ulonglong] = ACTIONS(1939), - [anon_sym_c_float] = ACTIONS(1939), - [anon_sym_c_double] = ACTIONS(1939), - [anon_sym_c_longdouble] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1937), - [anon_sym_orelse] = ACTIONS(1939), - [anon_sym_catch] = ACTIONS(1939), - [anon_sym_or] = ACTIONS(1939), - [anon_sym_and] = ACTIONS(1939), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1939), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_xor] = ACTIONS(1939), - [anon_sym_LT_LT] = ACTIONS(1939), - [anon_sym_GT_GT] = ACTIONS(1937), - [anon_sym_LT_LT_PIPE] = ACTIONS(1937), - [anon_sym_PLUS] = ACTIONS(1937), - [anon_sym_SLASH] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(1939), - [anon_sym_CARET] = ACTIONS(1937), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1937), - }, - [STATE(2379)] = { - [sym_identifier] = ACTIONS(1821), - [anon_sym_func] = ACTIONS(1821), - [anon_sym_c_func] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_COMMA] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_struct_type_BANG] = ACTIONS(1819), - [anon_sym_QMARK] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1821), - [anon_sym_noreturn] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_anyopaque] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_int] = ACTIONS(1821), - [anon_sym_uint] = ACTIONS(1821), - [anon_sym_float] = ACTIONS(1821), - [anon_sym_range] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_c_char] = ACTIONS(1821), - [anon_sym_c_schar] = ACTIONS(1821), - [anon_sym_c_uchar] = ACTIONS(1821), - [anon_sym_c_short] = ACTIONS(1821), - [anon_sym_c_ushort] = ACTIONS(1821), - [anon_sym_c_int] = ACTIONS(1821), - [anon_sym_c_uint] = ACTIONS(1821), - [anon_sym_c_long] = ACTIONS(1821), - [anon_sym_c_ulong] = ACTIONS(1821), - [anon_sym_c_longlong] = ACTIONS(1821), - [anon_sym_c_ulonglong] = ACTIONS(1821), - [anon_sym_c_float] = ACTIONS(1821), - [anon_sym_c_double] = ACTIONS(1821), - [anon_sym_c_longdouble] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [anon_sym_orelse] = ACTIONS(1821), - [anon_sym_catch] = ACTIONS(1821), - [anon_sym_or] = ACTIONS(1821), - [anon_sym_and] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1819), - [anon_sym_BANG_EQ] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1821), - [anon_sym_LT_EQ] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_xor] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_LT_LT_PIPE] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1819), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1819), - }, - [STATE(2380)] = { - [sym_identifier] = ACTIONS(1527), - [anon_sym_func] = ACTIONS(1527), - [anon_sym_c_func] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_struct_type_BANG] = ACTIONS(1525), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_noreturn] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_anyopaque] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_range] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_c_char] = ACTIONS(1527), - [anon_sym_c_schar] = ACTIONS(1527), - [anon_sym_c_uchar] = ACTIONS(1527), - [anon_sym_c_short] = ACTIONS(1527), - [anon_sym_c_ushort] = ACTIONS(1527), - [anon_sym_c_int] = ACTIONS(1527), - [anon_sym_c_uint] = ACTIONS(1527), - [anon_sym_c_long] = ACTIONS(1527), - [anon_sym_c_ulong] = ACTIONS(1527), - [anon_sym_c_longlong] = ACTIONS(1527), - [anon_sym_c_ulonglong] = ACTIONS(1527), - [anon_sym_c_float] = ACTIONS(1527), - [anon_sym_c_double] = ACTIONS(1527), - [anon_sym_c_longdouble] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_orelse] = ACTIONS(1527), - [anon_sym_catch] = ACTIONS(1527), - [anon_sym_or] = ACTIONS(1527), - [anon_sym_and] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_xor] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1525), - [anon_sym_LT_LT_PIPE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1525), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1525), - }, - [STATE(2381)] = { - [sym_identifier] = ACTIONS(1861), - [anon_sym_func] = ACTIONS(1861), - [anon_sym_c_func] = ACTIONS(1861), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_PIPE] = ACTIONS(1859), - [anon_sym_struct_type_BANG] = ACTIONS(1859), - [anon_sym_QMARK] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_noreturn] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_anyopaque] = ACTIONS(1861), - [anon_sym_bool] = ACTIONS(1861), - [anon_sym_int] = ACTIONS(1861), - [anon_sym_uint] = ACTIONS(1861), - [anon_sym_float] = ACTIONS(1861), - [anon_sym_range] = ACTIONS(1861), - [anon_sym_i8] = ACTIONS(1861), - [anon_sym_i16] = ACTIONS(1861), - [anon_sym_i32] = ACTIONS(1861), - [anon_sym_i64] = ACTIONS(1861), - [anon_sym_u8] = ACTIONS(1861), - [anon_sym_u16] = ACTIONS(1861), - [anon_sym_u32] = ACTIONS(1861), - [anon_sym_u64] = ACTIONS(1861), - [anon_sym_isize] = ACTIONS(1861), - [anon_sym_usize] = ACTIONS(1861), - [anon_sym_f32] = ACTIONS(1861), - [anon_sym_f64] = ACTIONS(1861), - [anon_sym_c_char] = ACTIONS(1861), - [anon_sym_c_schar] = ACTIONS(1861), - [anon_sym_c_uchar] = ACTIONS(1861), - [anon_sym_c_short] = ACTIONS(1861), - [anon_sym_c_ushort] = ACTIONS(1861), - [anon_sym_c_int] = ACTIONS(1861), - [anon_sym_c_uint] = ACTIONS(1861), - [anon_sym_c_long] = ACTIONS(1861), - [anon_sym_c_ulong] = ACTIONS(1861), - [anon_sym_c_longlong] = ACTIONS(1861), - [anon_sym_c_ulonglong] = ACTIONS(1861), - [anon_sym_c_float] = ACTIONS(1861), - [anon_sym_c_double] = ACTIONS(1861), - [anon_sym_c_longdouble] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1859), - [anon_sym_orelse] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1859), - [anon_sym_BANG_EQ] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1859), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_xor] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT] = ACTIONS(1859), - [anon_sym_LT_LT_PIPE] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_SLASH] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1859), - }, - [STATE(2382)] = { - [sym_identifier] = ACTIONS(1959), - [anon_sym_func] = ACTIONS(1959), - [anon_sym_c_func] = ACTIONS(1959), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_struct_type_BANG] = ACTIONS(1957), - [anon_sym_QMARK] = ACTIONS(1957), - [anon_sym_AT] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_void] = ACTIONS(1959), - [anon_sym_noreturn] = ACTIONS(1959), - [anon_sym_type] = ACTIONS(1959), - [anon_sym_anyopaque] = ACTIONS(1959), - [anon_sym_bool] = ACTIONS(1959), - [anon_sym_int] = ACTIONS(1959), - [anon_sym_uint] = ACTIONS(1959), - [anon_sym_float] = ACTIONS(1959), - [anon_sym_range] = ACTIONS(1959), - [anon_sym_i8] = ACTIONS(1959), - [anon_sym_i16] = ACTIONS(1959), - [anon_sym_i32] = ACTIONS(1959), - [anon_sym_i64] = ACTIONS(1959), - [anon_sym_u8] = ACTIONS(1959), - [anon_sym_u16] = ACTIONS(1959), - [anon_sym_u32] = ACTIONS(1959), - [anon_sym_u64] = ACTIONS(1959), - [anon_sym_isize] = ACTIONS(1959), - [anon_sym_usize] = ACTIONS(1959), - [anon_sym_f32] = ACTIONS(1959), - [anon_sym_f64] = ACTIONS(1959), - [anon_sym_c_char] = ACTIONS(1959), - [anon_sym_c_schar] = ACTIONS(1959), - [anon_sym_c_uchar] = ACTIONS(1959), - [anon_sym_c_short] = ACTIONS(1959), - [anon_sym_c_ushort] = ACTIONS(1959), - [anon_sym_c_int] = ACTIONS(1959), - [anon_sym_c_uint] = ACTIONS(1959), - [anon_sym_c_long] = ACTIONS(1959), - [anon_sym_c_ulong] = ACTIONS(1959), - [anon_sym_c_longlong] = ACTIONS(1959), - [anon_sym_c_ulonglong] = ACTIONS(1959), - [anon_sym_c_float] = ACTIONS(1959), - [anon_sym_c_double] = ACTIONS(1959), - [anon_sym_c_longdouble] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), - [anon_sym_orelse] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_or] = ACTIONS(1959), - [anon_sym_and] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_xor] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_LT_LT_PIPE] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1957), - }, - [STATE(2383)] = { - [sym_identifier] = ACTIONS(1575), - [anon_sym_func] = ACTIONS(1575), - [anon_sym_c_func] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_COMMA] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_struct_type_BANG] = ACTIONS(1573), - [anon_sym_QMARK] = ACTIONS(1573), - [anon_sym_AT] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_noreturn] = ACTIONS(1575), - [anon_sym_type] = ACTIONS(1575), - [anon_sym_anyopaque] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_range] = ACTIONS(1575), - [anon_sym_i8] = ACTIONS(1575), - [anon_sym_i16] = ACTIONS(1575), - [anon_sym_i32] = ACTIONS(1575), - [anon_sym_i64] = ACTIONS(1575), - [anon_sym_u8] = ACTIONS(1575), - [anon_sym_u16] = ACTIONS(1575), - [anon_sym_u32] = ACTIONS(1575), - [anon_sym_u64] = ACTIONS(1575), - [anon_sym_isize] = ACTIONS(1575), - [anon_sym_usize] = ACTIONS(1575), - [anon_sym_f32] = ACTIONS(1575), - [anon_sym_f64] = ACTIONS(1575), - [anon_sym_c_char] = ACTIONS(1575), - [anon_sym_c_schar] = ACTIONS(1575), - [anon_sym_c_uchar] = ACTIONS(1575), - [anon_sym_c_short] = ACTIONS(1575), - [anon_sym_c_ushort] = ACTIONS(1575), - [anon_sym_c_int] = ACTIONS(1575), - [anon_sym_c_uint] = ACTIONS(1575), - [anon_sym_c_long] = ACTIONS(1575), - [anon_sym_c_ulong] = ACTIONS(1575), - [anon_sym_c_longlong] = ACTIONS(1575), - [anon_sym_c_ulonglong] = ACTIONS(1575), - [anon_sym_c_float] = ACTIONS(1575), - [anon_sym_c_double] = ACTIONS(1575), - [anon_sym_c_longdouble] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_orelse] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_BANG_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_LT_EQ] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_EQ] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(1573), - [anon_sym_LT_LT_PIPE] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1573), - }, - [STATE(2384)] = { - [sym_identifier] = ACTIONS(1849), - [anon_sym_func] = ACTIONS(1849), - [anon_sym_c_func] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_struct_type_BANG] = ACTIONS(1847), - [anon_sym_QMARK] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_noreturn] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_anyopaque] = ACTIONS(1849), - [anon_sym_bool] = ACTIONS(1849), - [anon_sym_int] = ACTIONS(1849), - [anon_sym_uint] = ACTIONS(1849), - [anon_sym_float] = ACTIONS(1849), - [anon_sym_range] = ACTIONS(1849), - [anon_sym_i8] = ACTIONS(1849), - [anon_sym_i16] = ACTIONS(1849), - [anon_sym_i32] = ACTIONS(1849), - [anon_sym_i64] = ACTIONS(1849), - [anon_sym_u8] = ACTIONS(1849), - [anon_sym_u16] = ACTIONS(1849), - [anon_sym_u32] = ACTIONS(1849), - [anon_sym_u64] = ACTIONS(1849), - [anon_sym_isize] = ACTIONS(1849), - [anon_sym_usize] = ACTIONS(1849), - [anon_sym_f32] = ACTIONS(1849), - [anon_sym_f64] = ACTIONS(1849), - [anon_sym_c_char] = ACTIONS(1849), - [anon_sym_c_schar] = ACTIONS(1849), - [anon_sym_c_uchar] = ACTIONS(1849), - [anon_sym_c_short] = ACTIONS(1849), - [anon_sym_c_ushort] = ACTIONS(1849), - [anon_sym_c_int] = ACTIONS(1849), - [anon_sym_c_uint] = ACTIONS(1849), - [anon_sym_c_long] = ACTIONS(1849), - [anon_sym_c_ulong] = ACTIONS(1849), - [anon_sym_c_longlong] = ACTIONS(1849), - [anon_sym_c_ulonglong] = ACTIONS(1849), - [anon_sym_c_float] = ACTIONS(1849), - [anon_sym_c_double] = ACTIONS(1849), - [anon_sym_c_longdouble] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1847), - [anon_sym_orelse] = ACTIONS(1849), - [anon_sym_catch] = ACTIONS(1849), - [anon_sym_or] = ACTIONS(1849), - [anon_sym_and] = ACTIONS(1849), - [anon_sym_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_xor] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1847), - [anon_sym_LT_LT_PIPE] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1847), - }, - [STATE(2385)] = { - [sym_identifier] = ACTIONS(1943), - [anon_sym_func] = ACTIONS(1943), - [anon_sym_c_func] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_struct_type_BANG] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(1941), - [anon_sym_AT] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_void] = ACTIONS(1943), - [anon_sym_noreturn] = ACTIONS(1943), - [anon_sym_type] = ACTIONS(1943), - [anon_sym_anyopaque] = ACTIONS(1943), - [anon_sym_bool] = ACTIONS(1943), - [anon_sym_int] = ACTIONS(1943), - [anon_sym_uint] = ACTIONS(1943), - [anon_sym_float] = ACTIONS(1943), - [anon_sym_range] = ACTIONS(1943), - [anon_sym_i8] = ACTIONS(1943), - [anon_sym_i16] = ACTIONS(1943), - [anon_sym_i32] = ACTIONS(1943), - [anon_sym_i64] = ACTIONS(1943), - [anon_sym_u8] = ACTIONS(1943), - [anon_sym_u16] = ACTIONS(1943), - [anon_sym_u32] = ACTIONS(1943), - [anon_sym_u64] = ACTIONS(1943), - [anon_sym_isize] = ACTIONS(1943), - [anon_sym_usize] = ACTIONS(1943), - [anon_sym_f32] = ACTIONS(1943), - [anon_sym_f64] = ACTIONS(1943), - [anon_sym_c_char] = ACTIONS(1943), - [anon_sym_c_schar] = ACTIONS(1943), - [anon_sym_c_uchar] = ACTIONS(1943), - [anon_sym_c_short] = ACTIONS(1943), - [anon_sym_c_ushort] = ACTIONS(1943), - [anon_sym_c_int] = ACTIONS(1943), - [anon_sym_c_uint] = ACTIONS(1943), - [anon_sym_c_long] = ACTIONS(1943), - [anon_sym_c_ulong] = ACTIONS(1943), - [anon_sym_c_longlong] = ACTIONS(1943), - [anon_sym_c_ulonglong] = ACTIONS(1943), - [anon_sym_c_float] = ACTIONS(1943), - [anon_sym_c_double] = ACTIONS(1943), - [anon_sym_c_longdouble] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_orelse] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_or] = ACTIONS(1943), - [anon_sym_and] = ACTIONS(1943), - [anon_sym_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_xor] = ACTIONS(1943), - [anon_sym_LT_LT] = ACTIONS(1943), - [anon_sym_GT_GT] = ACTIONS(1941), - [anon_sym_LT_LT_PIPE] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1941), - }, - [STATE(2386)] = { - [sym_identifier] = ACTIONS(1947), - [anon_sym_func] = ACTIONS(1947), - [anon_sym_c_func] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_COMMA] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_struct_type_BANG] = ACTIONS(1945), - [anon_sym_QMARK] = ACTIONS(1945), - [anon_sym_AT] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_void] = ACTIONS(1947), - [anon_sym_noreturn] = ACTIONS(1947), - [anon_sym_type] = ACTIONS(1947), - [anon_sym_anyopaque] = ACTIONS(1947), - [anon_sym_bool] = ACTIONS(1947), - [anon_sym_int] = ACTIONS(1947), - [anon_sym_uint] = ACTIONS(1947), - [anon_sym_float] = ACTIONS(1947), - [anon_sym_range] = ACTIONS(1947), - [anon_sym_i8] = ACTIONS(1947), - [anon_sym_i16] = ACTIONS(1947), - [anon_sym_i32] = ACTIONS(1947), - [anon_sym_i64] = ACTIONS(1947), - [anon_sym_u8] = ACTIONS(1947), - [anon_sym_u16] = ACTIONS(1947), - [anon_sym_u32] = ACTIONS(1947), - [anon_sym_u64] = ACTIONS(1947), - [anon_sym_isize] = ACTIONS(1947), - [anon_sym_usize] = ACTIONS(1947), - [anon_sym_f32] = ACTIONS(1947), - [anon_sym_f64] = ACTIONS(1947), - [anon_sym_c_char] = ACTIONS(1947), - [anon_sym_c_schar] = ACTIONS(1947), - [anon_sym_c_uchar] = ACTIONS(1947), - [anon_sym_c_short] = ACTIONS(1947), - [anon_sym_c_ushort] = ACTIONS(1947), - [anon_sym_c_int] = ACTIONS(1947), - [anon_sym_c_uint] = ACTIONS(1947), - [anon_sym_c_long] = ACTIONS(1947), - [anon_sym_c_ulong] = ACTIONS(1947), - [anon_sym_c_longlong] = ACTIONS(1947), - [anon_sym_c_ulonglong] = ACTIONS(1947), - [anon_sym_c_float] = ACTIONS(1947), - [anon_sym_c_double] = ACTIONS(1947), - [anon_sym_c_longdouble] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_orelse] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_or] = ACTIONS(1947), - [anon_sym_and] = ACTIONS(1947), - [anon_sym_EQ_EQ] = ACTIONS(1945), - [anon_sym_BANG_EQ] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_LT_EQ] = ACTIONS(1945), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_GT_EQ] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_xor] = ACTIONS(1947), - [anon_sym_LT_LT] = ACTIONS(1947), - [anon_sym_GT_GT] = ACTIONS(1945), - [anon_sym_LT_LT_PIPE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_SLASH] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1945), - }, - [STATE(2387)] = { - [sym_identifier] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_c_func] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_struct_type_BANG] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(1591), - [anon_sym_AT] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_noreturn] = ACTIONS(1593), - [anon_sym_type] = 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_DOT_DOT] = ACTIONS(1593), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_orelse] = ACTIONS(1593), - [anon_sym_catch] = ACTIONS(1593), - [anon_sym_or] = ACTIONS(1593), - [anon_sym_and] = ACTIONS(1593), - [anon_sym_EQ_EQ] = ACTIONS(1591), - [anon_sym_BANG_EQ] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1593), - [anon_sym_LT_EQ] = ACTIONS(1591), - [anon_sym_GT] = ACTIONS(1593), - [anon_sym_GT_EQ] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_xor] = ACTIONS(1593), - [anon_sym_LT_LT] = ACTIONS(1593), - [anon_sym_GT_GT] = ACTIONS(1591), - [anon_sym_LT_LT_PIPE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1591), - }, - [STATE(2388)] = { - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(423), - [anon_sym_c_func] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_struct_type_BANG] = ACTIONS(418), - [anon_sym_QMARK] = ACTIONS(418), - [anon_sym_AT] = ACTIONS(418), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_void] = ACTIONS(423), - [anon_sym_noreturn] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_anyopaque] = ACTIONS(423), - [anon_sym_bool] = ACTIONS(423), - [anon_sym_int] = ACTIONS(423), - [anon_sym_uint] = ACTIONS(423), - [anon_sym_float] = ACTIONS(423), - [anon_sym_range] = ACTIONS(423), - [anon_sym_i8] = ACTIONS(423), - [anon_sym_i16] = ACTIONS(423), - [anon_sym_i32] = ACTIONS(423), - [anon_sym_i64] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(423), - [anon_sym_u16] = ACTIONS(423), - [anon_sym_u32] = ACTIONS(423), - [anon_sym_u64] = ACTIONS(423), - [anon_sym_isize] = ACTIONS(423), - [anon_sym_usize] = ACTIONS(423), - [anon_sym_f32] = ACTIONS(423), - [anon_sym_f64] = ACTIONS(423), - [anon_sym_c_char] = ACTIONS(423), - [anon_sym_c_schar] = ACTIONS(423), - [anon_sym_c_uchar] = ACTIONS(423), - [anon_sym_c_short] = ACTIONS(423), - [anon_sym_c_ushort] = ACTIONS(423), - [anon_sym_c_int] = ACTIONS(423), - [anon_sym_c_uint] = ACTIONS(423), - [anon_sym_c_long] = ACTIONS(423), - [anon_sym_c_ulong] = ACTIONS(423), - [anon_sym_c_longlong] = ACTIONS(423), - [anon_sym_c_ulonglong] = ACTIONS(423), - [anon_sym_c_float] = ACTIONS(423), - [anon_sym_c_double] = ACTIONS(423), - [anon_sym_c_longdouble] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(418), - [anon_sym_orelse] = ACTIONS(423), - [anon_sym_catch] = ACTIONS(423), - [anon_sym_or] = ACTIONS(423), - [anon_sym_and] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(418), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_xor] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_LT_LT_PIPE] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(418), - }, - [STATE(2389)] = { - [sym_identifier] = ACTIONS(1563), - [anon_sym_func] = ACTIONS(1563), - [anon_sym_c_func] = ACTIONS(1563), - [anon_sym_struct] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_COMMA] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_struct_type_BANG] = ACTIONS(1561), - [anon_sym_QMARK] = ACTIONS(1561), - [anon_sym_AT] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_noreturn] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_anyopaque] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_range] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_c_char] = ACTIONS(1563), - [anon_sym_c_schar] = ACTIONS(1563), - [anon_sym_c_uchar] = ACTIONS(1563), - [anon_sym_c_short] = ACTIONS(1563), - [anon_sym_c_ushort] = ACTIONS(1563), - [anon_sym_c_int] = ACTIONS(1563), - [anon_sym_c_uint] = ACTIONS(1563), - [anon_sym_c_long] = ACTIONS(1563), - [anon_sym_c_ulong] = ACTIONS(1563), - [anon_sym_c_longlong] = ACTIONS(1563), - [anon_sym_c_ulonglong] = ACTIONS(1563), - [anon_sym_c_float] = ACTIONS(1563), - [anon_sym_c_double] = ACTIONS(1563), - [anon_sym_c_longdouble] = ACTIONS(1563), - [anon_sym_DOT_DOT] = ACTIONS(1563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_orelse] = ACTIONS(1563), - [anon_sym_catch] = ACTIONS(1563), - [anon_sym_or] = ACTIONS(1563), - [anon_sym_and] = ACTIONS(1563), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_BANG_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1563), - [anon_sym_LT_EQ] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_xor] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1563), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_LT_LT_PIPE] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_SLASH] = ACTIONS(1561), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1561), - }, - [STATE(2390)] = { - [sym_identifier] = ACTIONS(1963), - [anon_sym_func] = ACTIONS(1963), - [anon_sym_c_func] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_COMMA] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_struct_type_BANG] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(1961), - [anon_sym_AT] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_void] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_type] = ACTIONS(1963), - [anon_sym_anyopaque] = ACTIONS(1963), - [anon_sym_bool] = ACTIONS(1963), - [anon_sym_int] = ACTIONS(1963), - [anon_sym_uint] = ACTIONS(1963), - [anon_sym_float] = ACTIONS(1963), - [anon_sym_range] = ACTIONS(1963), - [anon_sym_i8] = ACTIONS(1963), - [anon_sym_i16] = ACTIONS(1963), - [anon_sym_i32] = ACTIONS(1963), - [anon_sym_i64] = ACTIONS(1963), - [anon_sym_u8] = ACTIONS(1963), - [anon_sym_u16] = ACTIONS(1963), - [anon_sym_u32] = ACTIONS(1963), - [anon_sym_u64] = ACTIONS(1963), - [anon_sym_isize] = ACTIONS(1963), - [anon_sym_usize] = ACTIONS(1963), - [anon_sym_f32] = ACTIONS(1963), - [anon_sym_f64] = ACTIONS(1963), - [anon_sym_c_char] = ACTIONS(1963), - [anon_sym_c_schar] = ACTIONS(1963), - [anon_sym_c_uchar] = ACTIONS(1963), - [anon_sym_c_short] = ACTIONS(1963), - [anon_sym_c_ushort] = ACTIONS(1963), - [anon_sym_c_int] = ACTIONS(1963), - [anon_sym_c_uint] = ACTIONS(1963), - [anon_sym_c_long] = ACTIONS(1963), - [anon_sym_c_ulong] = ACTIONS(1963), - [anon_sym_c_longlong] = ACTIONS(1963), - [anon_sym_c_ulonglong] = ACTIONS(1963), - [anon_sym_c_float] = ACTIONS(1963), - [anon_sym_c_double] = ACTIONS(1963), - [anon_sym_c_longdouble] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), - [anon_sym_orelse] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_or] = ACTIONS(1963), - [anon_sym_and] = ACTIONS(1963), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [anon_sym_BANG_EQ] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LT_EQ] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_xor] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_LT_LT_PIPE] = ACTIONS(1961), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(1963), - [anon_sym_CARET] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1961), - }, - [STATE(2391)] = { - [sym_identifier] = ACTIONS(1841), - [anon_sym_func] = ACTIONS(1841), - [anon_sym_c_func] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_struct_type_BANG] = ACTIONS(1839), - [anon_sym_QMARK] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_noreturn] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_anyopaque] = ACTIONS(1841), - [anon_sym_bool] = ACTIONS(1841), - [anon_sym_int] = ACTIONS(1841), - [anon_sym_uint] = ACTIONS(1841), - [anon_sym_float] = ACTIONS(1841), - [anon_sym_range] = ACTIONS(1841), - [anon_sym_i8] = ACTIONS(1841), - [anon_sym_i16] = ACTIONS(1841), - [anon_sym_i32] = ACTIONS(1841), - [anon_sym_i64] = ACTIONS(1841), - [anon_sym_u8] = ACTIONS(1841), - [anon_sym_u16] = ACTIONS(1841), - [anon_sym_u32] = ACTIONS(1841), - [anon_sym_u64] = ACTIONS(1841), - [anon_sym_isize] = ACTIONS(1841), - [anon_sym_usize] = ACTIONS(1841), - [anon_sym_f32] = ACTIONS(1841), - [anon_sym_f64] = ACTIONS(1841), - [anon_sym_c_char] = ACTIONS(1841), - [anon_sym_c_schar] = ACTIONS(1841), - [anon_sym_c_uchar] = ACTIONS(1841), - [anon_sym_c_short] = ACTIONS(1841), - [anon_sym_c_ushort] = ACTIONS(1841), - [anon_sym_c_int] = ACTIONS(1841), - [anon_sym_c_uint] = ACTIONS(1841), - [anon_sym_c_long] = ACTIONS(1841), - [anon_sym_c_ulong] = ACTIONS(1841), - [anon_sym_c_longlong] = ACTIONS(1841), - [anon_sym_c_ulonglong] = ACTIONS(1841), - [anon_sym_c_float] = ACTIONS(1841), - [anon_sym_c_double] = ACTIONS(1841), - [anon_sym_c_longdouble] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1839), - [anon_sym_orelse] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_or] = ACTIONS(1841), - [anon_sym_and] = ACTIONS(1841), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_xor] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(1841), - [anon_sym_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_PIPE] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1839), - }, - [STATE(2392)] = { - [sym_identifier] = ACTIONS(1701), - [anon_sym_func] = ACTIONS(1701), - [anon_sym_c_func] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_struct_type_BANG] = ACTIONS(1699), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_void] = ACTIONS(1701), - [anon_sym_noreturn] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_anyopaque] = ACTIONS(1701), - [anon_sym_bool] = ACTIONS(1701), - [anon_sym_int] = ACTIONS(1701), - [anon_sym_uint] = ACTIONS(1701), - [anon_sym_float] = ACTIONS(1701), - [anon_sym_range] = ACTIONS(1701), - [anon_sym_i8] = ACTIONS(1701), - [anon_sym_i16] = ACTIONS(1701), - [anon_sym_i32] = ACTIONS(1701), - [anon_sym_i64] = ACTIONS(1701), - [anon_sym_u8] = ACTIONS(1701), - [anon_sym_u16] = ACTIONS(1701), - [anon_sym_u32] = ACTIONS(1701), - [anon_sym_u64] = ACTIONS(1701), - [anon_sym_isize] = ACTIONS(1701), - [anon_sym_usize] = ACTIONS(1701), - [anon_sym_f32] = ACTIONS(1701), - [anon_sym_f64] = ACTIONS(1701), - [anon_sym_c_char] = ACTIONS(1701), - [anon_sym_c_schar] = ACTIONS(1701), - [anon_sym_c_uchar] = ACTIONS(1701), - [anon_sym_c_short] = ACTIONS(1701), - [anon_sym_c_ushort] = ACTIONS(1701), - [anon_sym_c_int] = ACTIONS(1701), - [anon_sym_c_uint] = ACTIONS(1701), - [anon_sym_c_long] = ACTIONS(1701), - [anon_sym_c_ulong] = ACTIONS(1701), - [anon_sym_c_longlong] = ACTIONS(1701), - [anon_sym_c_ulonglong] = ACTIONS(1701), - [anon_sym_c_float] = ACTIONS(1701), - [anon_sym_c_double] = ACTIONS(1701), - [anon_sym_c_longdouble] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1699), - [anon_sym_orelse] = ACTIONS(1701), - [anon_sym_catch] = ACTIONS(1701), - [anon_sym_or] = ACTIONS(1701), - [anon_sym_and] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_xor] = ACTIONS(1701), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1699), - [anon_sym_LT_LT_PIPE] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1699), - }, - [STATE(2393)] = { - [sym_identifier] = ACTIONS(1967), - [anon_sym_func] = ACTIONS(1967), - [anon_sym_c_func] = ACTIONS(1967), - [anon_sym_struct] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_struct_type_BANG] = ACTIONS(1965), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_AT] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_void] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_type] = ACTIONS(1967), - [anon_sym_anyopaque] = ACTIONS(1967), - [anon_sym_bool] = ACTIONS(1967), - [anon_sym_int] = ACTIONS(1967), - [anon_sym_uint] = ACTIONS(1967), - [anon_sym_float] = ACTIONS(1967), - [anon_sym_range] = ACTIONS(1967), - [anon_sym_i8] = ACTIONS(1967), - [anon_sym_i16] = ACTIONS(1967), - [anon_sym_i32] = ACTIONS(1967), - [anon_sym_i64] = ACTIONS(1967), - [anon_sym_u8] = ACTIONS(1967), - [anon_sym_u16] = ACTIONS(1967), - [anon_sym_u32] = ACTIONS(1967), - [anon_sym_u64] = ACTIONS(1967), - [anon_sym_isize] = ACTIONS(1967), - [anon_sym_usize] = ACTIONS(1967), - [anon_sym_f32] = ACTIONS(1967), - [anon_sym_f64] = ACTIONS(1967), - [anon_sym_c_char] = ACTIONS(1967), - [anon_sym_c_schar] = ACTIONS(1967), - [anon_sym_c_uchar] = ACTIONS(1967), - [anon_sym_c_short] = ACTIONS(1967), - [anon_sym_c_ushort] = ACTIONS(1967), - [anon_sym_c_int] = ACTIONS(1967), - [anon_sym_c_uint] = ACTIONS(1967), - [anon_sym_c_long] = ACTIONS(1967), - [anon_sym_c_ulong] = ACTIONS(1967), - [anon_sym_c_longlong] = ACTIONS(1967), - [anon_sym_c_ulonglong] = ACTIONS(1967), - [anon_sym_c_float] = ACTIONS(1967), - [anon_sym_c_double] = ACTIONS(1967), - [anon_sym_c_longdouble] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), - [anon_sym_orelse] = ACTIONS(1967), - [anon_sym_catch] = ACTIONS(1967), - [anon_sym_or] = ACTIONS(1967), - [anon_sym_and] = ACTIONS(1967), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1967), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1967), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_xor] = ACTIONS(1967), - [anon_sym_LT_LT] = ACTIONS(1967), - [anon_sym_GT_GT] = ACTIONS(1965), - [anon_sym_LT_LT_PIPE] = ACTIONS(1965), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1967), - [anon_sym_CARET] = ACTIONS(1965), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1965), - }, - [STATE(2394)] = { - [sym_identifier] = ACTIONS(2003), - [anon_sym_func] = ACTIONS(2003), - [anon_sym_c_func] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(2001), - [anon_sym_struct_type_BANG] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_STAR] = ACTIONS(2001), - [anon_sym_LBRACK] = ACTIONS(2001), - [anon_sym_void] = ACTIONS(2003), - [anon_sym_noreturn] = ACTIONS(2003), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_anyopaque] = ACTIONS(2003), - [anon_sym_bool] = ACTIONS(2003), - [anon_sym_int] = ACTIONS(2003), - [anon_sym_uint] = ACTIONS(2003), - [anon_sym_float] = ACTIONS(2003), - [anon_sym_range] = ACTIONS(2003), - [anon_sym_i8] = ACTIONS(2003), - [anon_sym_i16] = ACTIONS(2003), - [anon_sym_i32] = ACTIONS(2003), - [anon_sym_i64] = ACTIONS(2003), - [anon_sym_u8] = ACTIONS(2003), - [anon_sym_u16] = ACTIONS(2003), - [anon_sym_u32] = ACTIONS(2003), - [anon_sym_u64] = ACTIONS(2003), - [anon_sym_isize] = ACTIONS(2003), - [anon_sym_usize] = ACTIONS(2003), - [anon_sym_f32] = ACTIONS(2003), - [anon_sym_f64] = ACTIONS(2003), - [anon_sym_c_char] = ACTIONS(2003), - [anon_sym_c_schar] = ACTIONS(2003), - [anon_sym_c_uchar] = ACTIONS(2003), - [anon_sym_c_short] = ACTIONS(2003), - [anon_sym_c_ushort] = ACTIONS(2003), - [anon_sym_c_int] = ACTIONS(2003), - [anon_sym_c_uint] = ACTIONS(2003), - [anon_sym_c_long] = ACTIONS(2003), - [anon_sym_c_ulong] = ACTIONS(2003), - [anon_sym_c_longlong] = ACTIONS(2003), - [anon_sym_c_ulonglong] = ACTIONS(2003), - [anon_sym_c_float] = ACTIONS(2003), - [anon_sym_c_double] = ACTIONS(2003), - [anon_sym_c_longdouble] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2001), - [anon_sym_orelse] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_or] = ACTIONS(2003), - [anon_sym_and] = ACTIONS(2003), - [anon_sym_EQ_EQ] = ACTIONS(2001), - [anon_sym_BANG_EQ] = ACTIONS(2001), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2001), - [anon_sym_GT] = ACTIONS(2003), - [anon_sym_GT_EQ] = ACTIONS(2001), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_xor] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2001), - [anon_sym_LT_LT_PIPE] = ACTIONS(2001), - [anon_sym_PLUS] = ACTIONS(2001), - [anon_sym_SLASH] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2001), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2001), - }, - [STATE(2395)] = { - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(2808), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5651), - }, - [STATE(2396)] = { - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5654), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5651), - }, - [STATE(2397)] = { - [aux_sym_import_declaration_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5657), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5651), - }, - [STATE(2398)] = { - [aux_sym_import_declaration_repeat1] = STATE(4895), - [sym_identifier] = ACTIONS(5547), - [anon_sym_func] = ACTIONS(5547), - [anon_sym_BANG] = ACTIONS(5549), - [anon_sym_struct] = ACTIONS(5547), - [anon_sym_LPAREN] = ACTIONS(5549), - [anon_sym_LBRACE] = ACTIONS(5549), - [anon_sym_RBRACE] = ACTIONS(5549), - [anon_sym_DASH] = ACTIONS(5549), - [anon_sym_DOLLAR] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_void] = ACTIONS(5547), - [anon_sym_noreturn] = ACTIONS(5547), - [anon_sym_type] = ACTIONS(5547), - [anon_sym_anyopaque] = ACTIONS(5547), - [anon_sym_bool] = ACTIONS(5547), - [anon_sym_int] = ACTIONS(5547), - [anon_sym_uint] = ACTIONS(5547), - [anon_sym_float] = ACTIONS(5547), - [anon_sym_range] = ACTIONS(5547), - [anon_sym_i8] = ACTIONS(5547), - [anon_sym_i16] = ACTIONS(5547), - [anon_sym_i32] = ACTIONS(5547), - [anon_sym_i64] = ACTIONS(5547), - [anon_sym_u8] = ACTIONS(5547), - [anon_sym_u16] = ACTIONS(5547), - [anon_sym_u32] = ACTIONS(5547), - [anon_sym_u64] = ACTIONS(5547), - [anon_sym_isize] = ACTIONS(5547), - [anon_sym_usize] = ACTIONS(5547), - [anon_sym_f32] = ACTIONS(5547), - [anon_sym_f64] = ACTIONS(5547), - [anon_sym_c_char] = ACTIONS(5547), - [anon_sym_c_schar] = ACTIONS(5547), - [anon_sym_c_uchar] = ACTIONS(5547), - [anon_sym_c_short] = ACTIONS(5547), - [anon_sym_c_ushort] = ACTIONS(5547), - [anon_sym_c_int] = ACTIONS(5547), - [anon_sym_c_uint] = ACTIONS(5547), - [anon_sym_c_long] = ACTIONS(5547), - [anon_sym_c_ulong] = ACTIONS(5547), - [anon_sym_c_longlong] = ACTIONS(5547), - [anon_sym_c_ulonglong] = ACTIONS(5547), - [anon_sym_c_float] = ACTIONS(5547), - [anon_sym_c_double] = ACTIONS(5547), - [anon_sym_c_longdouble] = ACTIONS(5547), - [anon_sym_else] = ACTIONS(5660), - [anon_sym_expand] = ACTIONS(5547), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_TILDE] = ACTIONS(5549), - [anon_sym_try] = ACTIONS(5547), - [anon_sym_DOT] = ACTIONS(5549), - [anon_sym_true] = ACTIONS(5547), - [anon_sym_false] = ACTIONS(5547), - [anon_sym_null] = ACTIONS(5547), - [anon_sym_unreachable] = ACTIONS(5547), - [anon_sym_undefined] = ACTIONS(5547), - [sym_sink] = ACTIONS(5547), - [sym_integer] = ACTIONS(5547), - [sym_float] = ACTIONS(5549), - [anon_sym_DQUOTE] = ACTIONS(5549), - [sym_multiline_string] = ACTIONS(5549), - [sym_character] = ACTIONS(5549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5663), - }, - [STATE(2399)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5666), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), - }, - [STATE(2400)] = { - [aux_sym_import_declaration_repeat1] = STATE(4899), - [sym_identifier] = ACTIONS(5562), - [anon_sym_func] = ACTIONS(5562), - [anon_sym_BANG] = ACTIONS(5564), - [anon_sym_struct] = ACTIONS(5562), - [anon_sym_LPAREN] = ACTIONS(5564), - [anon_sym_LBRACE] = ACTIONS(5564), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_DASH] = ACTIONS(5564), - [anon_sym_DOLLAR] = ACTIONS(5564), - [anon_sym_LBRACK] = ACTIONS(5564), - [anon_sym_void] = ACTIONS(5562), - [anon_sym_noreturn] = ACTIONS(5562), - [anon_sym_type] = ACTIONS(5562), - [anon_sym_anyopaque] = ACTIONS(5562), - [anon_sym_bool] = ACTIONS(5562), - [anon_sym_int] = ACTIONS(5562), - [anon_sym_uint] = ACTIONS(5562), - [anon_sym_float] = ACTIONS(5562), - [anon_sym_range] = ACTIONS(5562), - [anon_sym_i8] = ACTIONS(5562), - [anon_sym_i16] = ACTIONS(5562), - [anon_sym_i32] = ACTIONS(5562), - [anon_sym_i64] = ACTIONS(5562), - [anon_sym_u8] = ACTIONS(5562), - [anon_sym_u16] = ACTIONS(5562), - [anon_sym_u32] = ACTIONS(5562), - [anon_sym_u64] = ACTIONS(5562), - [anon_sym_isize] = ACTIONS(5562), - [anon_sym_usize] = ACTIONS(5562), - [anon_sym_f32] = ACTIONS(5562), - [anon_sym_f64] = ACTIONS(5562), - [anon_sym_c_char] = ACTIONS(5562), - [anon_sym_c_schar] = ACTIONS(5562), - [anon_sym_c_uchar] = ACTIONS(5562), - [anon_sym_c_short] = ACTIONS(5562), - [anon_sym_c_ushort] = ACTIONS(5562), - [anon_sym_c_int] = ACTIONS(5562), - [anon_sym_c_uint] = ACTIONS(5562), - [anon_sym_c_long] = ACTIONS(5562), - [anon_sym_c_ulong] = ACTIONS(5562), - [anon_sym_c_longlong] = ACTIONS(5562), - [anon_sym_c_ulonglong] = ACTIONS(5562), - [anon_sym_c_float] = ACTIONS(5562), - [anon_sym_c_double] = ACTIONS(5562), - [anon_sym_c_longdouble] = ACTIONS(5562), - [anon_sym_else] = ACTIONS(5669), - [anon_sym_expand] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(5564), - [anon_sym_TILDE] = ACTIONS(5564), - [anon_sym_try] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(5564), - [anon_sym_true] = ACTIONS(5562), - [anon_sym_false] = ACTIONS(5562), - [anon_sym_null] = ACTIONS(5562), - [anon_sym_unreachable] = ACTIONS(5562), - [anon_sym_undefined] = ACTIONS(5562), - [sym_sink] = ACTIONS(5562), - [sym_integer] = ACTIONS(5562), - [sym_float] = ACTIONS(5564), - [anon_sym_DQUOTE] = ACTIONS(5564), - [sym_multiline_string] = ACTIONS(5564), - [sym_character] = ACTIONS(5564), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5672), - }, - [STATE(2401)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5675), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), - }, - [STATE(2402)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5657), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), - }, - [STATE(2403)] = { - [aux_sym_import_declaration_repeat1] = STATE(4898), - [sym_identifier] = ACTIONS(5502), - [anon_sym_func] = ACTIONS(5502), - [anon_sym_BANG] = ACTIONS(5504), - [anon_sym_struct] = ACTIONS(5502), - [anon_sym_LPAREN] = ACTIONS(5504), - [anon_sym_LBRACE] = ACTIONS(5504), - [anon_sym_RBRACE] = ACTIONS(5504), - [anon_sym_DASH] = ACTIONS(5504), - [anon_sym_DOLLAR] = ACTIONS(5504), - [anon_sym_LBRACK] = ACTIONS(5504), - [anon_sym_void] = ACTIONS(5502), - [anon_sym_noreturn] = ACTIONS(5502), - [anon_sym_type] = ACTIONS(5502), - [anon_sym_anyopaque] = ACTIONS(5502), - [anon_sym_bool] = ACTIONS(5502), - [anon_sym_int] = ACTIONS(5502), - [anon_sym_uint] = ACTIONS(5502), - [anon_sym_float] = ACTIONS(5502), - [anon_sym_range] = ACTIONS(5502), - [anon_sym_i8] = ACTIONS(5502), - [anon_sym_i16] = ACTIONS(5502), - [anon_sym_i32] = ACTIONS(5502), - [anon_sym_i64] = ACTIONS(5502), - [anon_sym_u8] = ACTIONS(5502), - [anon_sym_u16] = ACTIONS(5502), - [anon_sym_u32] = ACTIONS(5502), - [anon_sym_u64] = ACTIONS(5502), - [anon_sym_isize] = ACTIONS(5502), - [anon_sym_usize] = ACTIONS(5502), - [anon_sym_f32] = ACTIONS(5502), - [anon_sym_f64] = ACTIONS(5502), - [anon_sym_c_char] = ACTIONS(5502), - [anon_sym_c_schar] = ACTIONS(5502), - [anon_sym_c_uchar] = ACTIONS(5502), - [anon_sym_c_short] = ACTIONS(5502), - [anon_sym_c_ushort] = ACTIONS(5502), - [anon_sym_c_int] = ACTIONS(5502), - [anon_sym_c_uint] = ACTIONS(5502), - [anon_sym_c_long] = ACTIONS(5502), - [anon_sym_c_ulong] = ACTIONS(5502), - [anon_sym_c_longlong] = ACTIONS(5502), - [anon_sym_c_ulonglong] = ACTIONS(5502), - [anon_sym_c_float] = ACTIONS(5502), - [anon_sym_c_double] = ACTIONS(5502), - [anon_sym_c_longdouble] = ACTIONS(5502), - [anon_sym_else] = ACTIONS(5678), - [anon_sym_expand] = ACTIONS(5502), - [anon_sym_AMP] = ACTIONS(5504), - [anon_sym_TILDE] = ACTIONS(5504), - [anon_sym_try] = ACTIONS(5502), + [anon_sym_xor] = ACTIONS(5496), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5494), + [anon_sym_LT_LT_PIPE] = ACTIONS(5494), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_SLASH] = ACTIONS(5494), + [anon_sym_catch] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5496), + [anon_sym_CARET] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5494), + }, + [STATE(7479)] = { + [sym_identifier] = ACTIONS(5500), + [anon_sym_func] = ACTIONS(5500), + [anon_sym_c_func] = ACTIONS(5500), + [anon_sym_struct] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_PIPE] = ACTIONS(5498), + [anon_sym_struct_type_BANG] = ACTIONS(5498), + [anon_sym_QMARK] = ACTIONS(5498), + [anon_sym_AT] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(5498), + [anon_sym_LBRACK] = ACTIONS(5498), + [anon_sym_void] = ACTIONS(5500), + [anon_sym_noreturn] = ACTIONS(5500), + [anon_sym_type] = ACTIONS(5500), + [anon_sym_anyopaque] = ACTIONS(5500), + [anon_sym_bool] = ACTIONS(5500), + [anon_sym_int] = ACTIONS(5500), + [anon_sym_uint] = ACTIONS(5500), + [anon_sym_float] = ACTIONS(5500), + [anon_sym_range] = ACTIONS(5500), + [anon_sym_i8] = ACTIONS(5500), + [anon_sym_i16] = ACTIONS(5500), + [anon_sym_i32] = ACTIONS(5500), + [anon_sym_i64] = ACTIONS(5500), + [anon_sym_u8] = ACTIONS(5500), + [anon_sym_u16] = ACTIONS(5500), + [anon_sym_u32] = ACTIONS(5500), + [anon_sym_u64] = ACTIONS(5500), + [anon_sym_isize] = ACTIONS(5500), + [anon_sym_usize] = ACTIONS(5500), + [anon_sym_f32] = ACTIONS(5500), + [anon_sym_f64] = ACTIONS(5500), + [anon_sym_c_char] = ACTIONS(5500), + [anon_sym_c_schar] = ACTIONS(5500), + [anon_sym_c_uchar] = ACTIONS(5500), + [anon_sym_c_short] = ACTIONS(5500), + [anon_sym_c_ushort] = ACTIONS(5500), + [anon_sym_c_int] = ACTIONS(5500), + [anon_sym_c_uint] = ACTIONS(5500), + [anon_sym_c_long] = ACTIONS(5500), + [anon_sym_c_ulong] = ACTIONS(5500), + [anon_sym_c_longlong] = ACTIONS(5500), + [anon_sym_c_ulonglong] = ACTIONS(5500), + [anon_sym_c_float] = ACTIONS(5500), + [anon_sym_c_double] = ACTIONS(5500), + [anon_sym_c_longdouble] = ACTIONS(5500), + [anon_sym_else] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5498), + [anon_sym_orelse] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5498), + [anon_sym_BANG_EQ] = ACTIONS(5498), + [anon_sym_LT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5498), + [anon_sym_GT] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5498), + [anon_sym_xor] = ACTIONS(5500), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5498), + [anon_sym_LT_LT_PIPE] = ACTIONS(5498), + [anon_sym_PLUS] = ACTIONS(5498), + [anon_sym_SLASH] = ACTIONS(5498), + [anon_sym_catch] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5500), + [anon_sym_CARET] = ACTIONS(5498), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5498), + }, + [STATE(7480)] = { + [sym_identifier] = ACTIONS(5504), + [anon_sym_func] = ACTIONS(5504), + [anon_sym_c_func] = ACTIONS(5504), + [anon_sym_struct] = ACTIONS(5504), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_COMMA] = ACTIONS(5502), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_PIPE] = ACTIONS(5502), + [anon_sym_struct_type_BANG] = ACTIONS(5502), + [anon_sym_QMARK] = ACTIONS(5502), + [anon_sym_AT] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_LBRACK] = ACTIONS(5502), + [anon_sym_void] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym_type] = ACTIONS(5504), + [anon_sym_anyopaque] = ACTIONS(5504), + [anon_sym_bool] = ACTIONS(5504), + [anon_sym_int] = ACTIONS(5504), + [anon_sym_uint] = ACTIONS(5504), + [anon_sym_float] = ACTIONS(5504), + [anon_sym_range] = ACTIONS(5504), + [anon_sym_i8] = ACTIONS(5504), + [anon_sym_i16] = ACTIONS(5504), + [anon_sym_i32] = ACTIONS(5504), + [anon_sym_i64] = ACTIONS(5504), + [anon_sym_u8] = ACTIONS(5504), + [anon_sym_u16] = ACTIONS(5504), + [anon_sym_u32] = ACTIONS(5504), + [anon_sym_u64] = ACTIONS(5504), + [anon_sym_isize] = ACTIONS(5504), + [anon_sym_usize] = ACTIONS(5504), + [anon_sym_f32] = ACTIONS(5504), + [anon_sym_f64] = ACTIONS(5504), + [anon_sym_c_char] = ACTIONS(5504), + [anon_sym_c_schar] = ACTIONS(5504), + [anon_sym_c_uchar] = ACTIONS(5504), + [anon_sym_c_short] = ACTIONS(5504), + [anon_sym_c_ushort] = ACTIONS(5504), + [anon_sym_c_int] = ACTIONS(5504), + [anon_sym_c_uint] = ACTIONS(5504), + [anon_sym_c_long] = ACTIONS(5504), + [anon_sym_c_ulong] = ACTIONS(5504), + [anon_sym_c_longlong] = ACTIONS(5504), + [anon_sym_c_ulonglong] = ACTIONS(5504), + [anon_sym_c_float] = ACTIONS(5504), + [anon_sym_c_double] = ACTIONS(5504), + [anon_sym_c_longdouble] = ACTIONS(5504), + [anon_sym_else] = ACTIONS(5504), + [anon_sym_DOT_DOT] = ACTIONS(5504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5502), + [anon_sym_orelse] = ACTIONS(5504), + [anon_sym_or] = ACTIONS(5504), + [anon_sym_and] = ACTIONS(5504), + [anon_sym_EQ_EQ] = ACTIONS(5502), + [anon_sym_BANG_EQ] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_LT_EQ] = ACTIONS(5502), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_GT_EQ] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5502), + [anon_sym_xor] = ACTIONS(5504), + [anon_sym_LT_LT] = ACTIONS(5504), + [anon_sym_GT_GT] = ACTIONS(5502), + [anon_sym_LT_LT_PIPE] = ACTIONS(5502), + [anon_sym_PLUS] = ACTIONS(5502), + [anon_sym_SLASH] = ACTIONS(5502), + [anon_sym_catch] = ACTIONS(5504), [anon_sym_DOT] = ACTIONS(5504), - [anon_sym_true] = ACTIONS(5502), - [anon_sym_false] = ACTIONS(5502), - [anon_sym_null] = ACTIONS(5502), - [anon_sym_unreachable] = ACTIONS(5502), - [anon_sym_undefined] = ACTIONS(5502), - [sym_sink] = ACTIONS(5502), - [sym_integer] = ACTIONS(5502), - [sym_float] = ACTIONS(5504), - [anon_sym_DQUOTE] = ACTIONS(5504), - [sym_multiline_string] = ACTIONS(5504), - [sym_character] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5502), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5681), + [sym__newline] = ACTIONS(5502), }, - [STATE(2404)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), + [STATE(7481)] = { + [sym_identifier] = ACTIONS(5508), + [anon_sym_func] = ACTIONS(5508), + [anon_sym_c_func] = ACTIONS(5508), + [anon_sym_struct] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_COMMA] = ACTIONS(5506), + [anon_sym_RBRACE] = ACTIONS(5506), + [anon_sym_DASH] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5506), + [anon_sym_struct_type_BANG] = ACTIONS(5506), + [anon_sym_QMARK] = ACTIONS(5506), + [anon_sym_AT] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_void] = ACTIONS(5508), + [anon_sym_noreturn] = ACTIONS(5508), + [anon_sym_type] = ACTIONS(5508), + [anon_sym_anyopaque] = ACTIONS(5508), + [anon_sym_bool] = ACTIONS(5508), + [anon_sym_int] = ACTIONS(5508), + [anon_sym_uint] = ACTIONS(5508), + [anon_sym_float] = ACTIONS(5508), + [anon_sym_range] = ACTIONS(5508), + [anon_sym_i8] = ACTIONS(5508), + [anon_sym_i16] = ACTIONS(5508), + [anon_sym_i32] = ACTIONS(5508), + [anon_sym_i64] = ACTIONS(5508), + [anon_sym_u8] = ACTIONS(5508), + [anon_sym_u16] = ACTIONS(5508), + [anon_sym_u32] = ACTIONS(5508), + [anon_sym_u64] = ACTIONS(5508), + [anon_sym_isize] = ACTIONS(5508), + [anon_sym_usize] = ACTIONS(5508), + [anon_sym_f32] = ACTIONS(5508), + [anon_sym_f64] = ACTIONS(5508), + [anon_sym_c_char] = ACTIONS(5508), + [anon_sym_c_schar] = ACTIONS(5508), + [anon_sym_c_uchar] = ACTIONS(5508), + [anon_sym_c_short] = ACTIONS(5508), + [anon_sym_c_ushort] = ACTIONS(5508), + [anon_sym_c_int] = ACTIONS(5508), + [anon_sym_c_uint] = ACTIONS(5508), + [anon_sym_c_long] = ACTIONS(5508), + [anon_sym_c_ulong] = ACTIONS(5508), + [anon_sym_c_longlong] = ACTIONS(5508), + [anon_sym_c_ulonglong] = ACTIONS(5508), + [anon_sym_c_float] = ACTIONS(5508), + [anon_sym_c_double] = ACTIONS(5508), + [anon_sym_c_longdouble] = ACTIONS(5508), + [anon_sym_else] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5506), + [anon_sym_orelse] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_LT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5506), + [anon_sym_GT] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5506), + [anon_sym_xor] = ACTIONS(5508), + [anon_sym_LT_LT] = ACTIONS(5508), + [anon_sym_GT_GT] = ACTIONS(5506), + [anon_sym_LT_LT_PIPE] = ACTIONS(5506), + [anon_sym_PLUS] = ACTIONS(5506), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_catch] = ACTIONS(5508), + [anon_sym_DOT] = ACTIONS(5508), + [anon_sym_CARET] = ACTIONS(5506), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), + [sym__newline] = ACTIONS(5506), }, - [STATE(2405)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5687), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), - }, - [STATE(2406)] = { - [aux_sym_import_declaration_repeat1] = STATE(4896), + [STATE(7482)] = { [sym_identifier] = ACTIONS(5512), [anon_sym_func] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), + [anon_sym_c_func] = ACTIONS(5512), [anon_sym_struct] = ACTIONS(5512), - [anon_sym_LPAREN] = ACTIONS(5514), - [anon_sym_LBRACE] = ACTIONS(5514), - [anon_sym_RBRACE] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_DOLLAR] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_LPAREN] = ACTIONS(5510), + [anon_sym_COMMA] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_PIPE] = ACTIONS(5510), + [anon_sym_struct_type_BANG] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_AT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), [anon_sym_void] = ACTIONS(5512), [anon_sym_noreturn] = ACTIONS(5512), [anon_sym_type] = ACTIONS(5512), @@ -252974,427 +827262,7866 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(5512), [anon_sym_c_double] = ACTIONS(5512), [anon_sym_c_longdouble] = ACTIONS(5512), - [anon_sym_else] = ACTIONS(5690), - [anon_sym_expand] = ACTIONS(5512), + [anon_sym_else] = ACTIONS(5512), + [anon_sym_DOT_DOT] = ACTIONS(5512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5510), + [anon_sym_orelse] = ACTIONS(5512), + [anon_sym_or] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5510), + [anon_sym_BANG_EQ] = ACTIONS(5510), + [anon_sym_LT] = ACTIONS(5512), + [anon_sym_LT_EQ] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5510), + [anon_sym_xor] = ACTIONS(5512), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5510), + [anon_sym_LT_LT_PIPE] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_SLASH] = ACTIONS(5510), + [anon_sym_catch] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5510), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5510), + }, + [STATE(7483)] = { + [sym_identifier] = ACTIONS(5516), + [anon_sym_func] = ACTIONS(5516), + [anon_sym_c_func] = ACTIONS(5516), + [anon_sym_struct] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5514), + [anon_sym_COMMA] = ACTIONS(5514), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5514), + [anon_sym_struct_type_BANG] = ACTIONS(5514), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_AT] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_void] = ACTIONS(5516), + [anon_sym_noreturn] = ACTIONS(5516), + [anon_sym_type] = ACTIONS(5516), + [anon_sym_anyopaque] = ACTIONS(5516), + [anon_sym_bool] = ACTIONS(5516), + [anon_sym_int] = ACTIONS(5516), + [anon_sym_uint] = ACTIONS(5516), + [anon_sym_float] = ACTIONS(5516), + [anon_sym_range] = ACTIONS(5516), + [anon_sym_i8] = ACTIONS(5516), + [anon_sym_i16] = ACTIONS(5516), + [anon_sym_i32] = ACTIONS(5516), + [anon_sym_i64] = ACTIONS(5516), + [anon_sym_u8] = ACTIONS(5516), + [anon_sym_u16] = ACTIONS(5516), + [anon_sym_u32] = ACTIONS(5516), + [anon_sym_u64] = ACTIONS(5516), + [anon_sym_isize] = ACTIONS(5516), + [anon_sym_usize] = ACTIONS(5516), + [anon_sym_f32] = ACTIONS(5516), + [anon_sym_f64] = ACTIONS(5516), + [anon_sym_c_char] = ACTIONS(5516), + [anon_sym_c_schar] = ACTIONS(5516), + [anon_sym_c_uchar] = ACTIONS(5516), + [anon_sym_c_short] = ACTIONS(5516), + [anon_sym_c_ushort] = ACTIONS(5516), + [anon_sym_c_int] = ACTIONS(5516), + [anon_sym_c_uint] = ACTIONS(5516), + [anon_sym_c_long] = ACTIONS(5516), + [anon_sym_c_ulong] = ACTIONS(5516), + [anon_sym_c_longlong] = ACTIONS(5516), + [anon_sym_c_ulonglong] = ACTIONS(5516), + [anon_sym_c_float] = ACTIONS(5516), + [anon_sym_c_double] = ACTIONS(5516), + [anon_sym_c_longdouble] = ACTIONS(5516), + [anon_sym_else] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5514), + [anon_sym_orelse] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5514), + [anon_sym_BANG_EQ] = ACTIONS(5514), + [anon_sym_LT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5514), [anon_sym_AMP] = ACTIONS(5514), - [anon_sym_TILDE] = ACTIONS(5514), - [anon_sym_try] = ACTIONS(5512), - [anon_sym_DOT] = ACTIONS(5514), - [anon_sym_true] = ACTIONS(5512), - [anon_sym_false] = ACTIONS(5512), - [anon_sym_null] = ACTIONS(5512), - [anon_sym_unreachable] = ACTIONS(5512), - [anon_sym_undefined] = ACTIONS(5512), - [sym_sink] = ACTIONS(5512), - [sym_integer] = ACTIONS(5512), - [sym_float] = ACTIONS(5514), - [anon_sym_DQUOTE] = ACTIONS(5514), - [sym_multiline_string] = ACTIONS(5514), - [sym_character] = ACTIONS(5514), + [anon_sym_xor] = ACTIONS(5516), + [anon_sym_LT_LT] = ACTIONS(5516), + [anon_sym_GT_GT] = ACTIONS(5514), + [anon_sym_LT_LT_PIPE] = ACTIONS(5514), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_catch] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5516), + [anon_sym_CARET] = ACTIONS(5514), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5693), + [sym__newline] = ACTIONS(5514), }, - [STATE(2407)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5696), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), + [STATE(7484)] = { + [sym_identifier] = ACTIONS(5520), + [anon_sym_func] = ACTIONS(5520), + [anon_sym_c_func] = ACTIONS(5520), + [anon_sym_struct] = ACTIONS(5520), + [anon_sym_LPAREN] = ACTIONS(5518), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_RBRACE] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [anon_sym_PIPE] = ACTIONS(5518), + [anon_sym_struct_type_BANG] = ACTIONS(5518), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_AT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5518), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_void] = ACTIONS(5520), + [anon_sym_noreturn] = ACTIONS(5520), + [anon_sym_type] = ACTIONS(5520), + [anon_sym_anyopaque] = ACTIONS(5520), + [anon_sym_bool] = ACTIONS(5520), + [anon_sym_int] = ACTIONS(5520), + [anon_sym_uint] = ACTIONS(5520), + [anon_sym_float] = ACTIONS(5520), + [anon_sym_range] = ACTIONS(5520), + [anon_sym_i8] = ACTIONS(5520), + [anon_sym_i16] = ACTIONS(5520), + [anon_sym_i32] = ACTIONS(5520), + [anon_sym_i64] = ACTIONS(5520), + [anon_sym_u8] = ACTIONS(5520), + [anon_sym_u16] = ACTIONS(5520), + [anon_sym_u32] = ACTIONS(5520), + [anon_sym_u64] = ACTIONS(5520), + [anon_sym_isize] = ACTIONS(5520), + [anon_sym_usize] = ACTIONS(5520), + [anon_sym_f32] = ACTIONS(5520), + [anon_sym_f64] = ACTIONS(5520), + [anon_sym_c_char] = ACTIONS(5520), + [anon_sym_c_schar] = ACTIONS(5520), + [anon_sym_c_uchar] = ACTIONS(5520), + [anon_sym_c_short] = ACTIONS(5520), + [anon_sym_c_ushort] = ACTIONS(5520), + [anon_sym_c_int] = ACTIONS(5520), + [anon_sym_c_uint] = ACTIONS(5520), + [anon_sym_c_long] = ACTIONS(5520), + [anon_sym_c_ulong] = ACTIONS(5520), + [anon_sym_c_longlong] = ACTIONS(5520), + [anon_sym_c_ulonglong] = ACTIONS(5520), + [anon_sym_c_float] = ACTIONS(5520), + [anon_sym_c_double] = ACTIONS(5520), + [anon_sym_c_longdouble] = ACTIONS(5520), + [anon_sym_else] = ACTIONS(5520), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5518), + [anon_sym_orelse] = ACTIONS(5520), + [anon_sym_or] = ACTIONS(5520), + [anon_sym_and] = ACTIONS(5520), + [anon_sym_EQ_EQ] = ACTIONS(5518), + [anon_sym_BANG_EQ] = ACTIONS(5518), + [anon_sym_LT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5520), + [anon_sym_GT_EQ] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5518), + [anon_sym_xor] = ACTIONS(5520), + [anon_sym_LT_LT] = ACTIONS(5520), + [anon_sym_GT_GT] = ACTIONS(5518), + [anon_sym_LT_LT_PIPE] = ACTIONS(5518), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_SLASH] = ACTIONS(5518), + [anon_sym_catch] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(5520), + [anon_sym_CARET] = ACTIONS(5518), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), + [sym__newline] = ACTIONS(5518), }, - [STATE(2408)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5699), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), + [STATE(7485)] = { + [sym_identifier] = ACTIONS(5524), + [anon_sym_func] = ACTIONS(5524), + [anon_sym_c_func] = ACTIONS(5524), + [anon_sym_struct] = ACTIONS(5524), + [anon_sym_LPAREN] = ACTIONS(5522), + [anon_sym_COMMA] = ACTIONS(5522), + [anon_sym_RBRACE] = ACTIONS(5522), + [anon_sym_DASH] = ACTIONS(5522), + [anon_sym_PIPE] = ACTIONS(5522), + [anon_sym_struct_type_BANG] = ACTIONS(5522), + [anon_sym_QMARK] = ACTIONS(5522), + [anon_sym_AT] = ACTIONS(5522), + [anon_sym_STAR] = ACTIONS(5522), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_void] = ACTIONS(5524), + [anon_sym_noreturn] = ACTIONS(5524), + [anon_sym_type] = ACTIONS(5524), + [anon_sym_anyopaque] = ACTIONS(5524), + [anon_sym_bool] = ACTIONS(5524), + [anon_sym_int] = ACTIONS(5524), + [anon_sym_uint] = ACTIONS(5524), + [anon_sym_float] = ACTIONS(5524), + [anon_sym_range] = ACTIONS(5524), + [anon_sym_i8] = ACTIONS(5524), + [anon_sym_i16] = ACTIONS(5524), + [anon_sym_i32] = ACTIONS(5524), + [anon_sym_i64] = ACTIONS(5524), + [anon_sym_u8] = ACTIONS(5524), + [anon_sym_u16] = ACTIONS(5524), + [anon_sym_u32] = ACTIONS(5524), + [anon_sym_u64] = ACTIONS(5524), + [anon_sym_isize] = ACTIONS(5524), + [anon_sym_usize] = ACTIONS(5524), + [anon_sym_f32] = ACTIONS(5524), + [anon_sym_f64] = ACTIONS(5524), + [anon_sym_c_char] = ACTIONS(5524), + [anon_sym_c_schar] = ACTIONS(5524), + [anon_sym_c_uchar] = ACTIONS(5524), + [anon_sym_c_short] = ACTIONS(5524), + [anon_sym_c_ushort] = ACTIONS(5524), + [anon_sym_c_int] = ACTIONS(5524), + [anon_sym_c_uint] = ACTIONS(5524), + [anon_sym_c_long] = ACTIONS(5524), + [anon_sym_c_ulong] = ACTIONS(5524), + [anon_sym_c_longlong] = ACTIONS(5524), + [anon_sym_c_ulonglong] = ACTIONS(5524), + [anon_sym_c_float] = ACTIONS(5524), + [anon_sym_c_double] = ACTIONS(5524), + [anon_sym_c_longdouble] = ACTIONS(5524), + [anon_sym_else] = ACTIONS(5524), + [anon_sym_DOT_DOT] = ACTIONS(5524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5522), + [anon_sym_orelse] = ACTIONS(5524), + [anon_sym_or] = ACTIONS(5524), + [anon_sym_and] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5522), + [anon_sym_BANG_EQ] = ACTIONS(5522), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_LT_EQ] = ACTIONS(5522), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5522), + [anon_sym_AMP] = ACTIONS(5522), + [anon_sym_xor] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5524), + [anon_sym_GT_GT] = ACTIONS(5522), + [anon_sym_LT_LT_PIPE] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5522), + [anon_sym_SLASH] = ACTIONS(5522), + [anon_sym_catch] = ACTIONS(5524), + [anon_sym_DOT] = ACTIONS(5524), + [anon_sym_CARET] = ACTIONS(5522), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), + [sym__newline] = ACTIONS(5522), }, - [STATE(2409)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5654), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), + [STATE(7486)] = { + [sym_identifier] = ACTIONS(5528), + [anon_sym_func] = ACTIONS(5528), + [anon_sym_c_func] = ACTIONS(5528), + [anon_sym_struct] = ACTIONS(5528), + [anon_sym_LPAREN] = ACTIONS(5526), + [anon_sym_COMMA] = ACTIONS(5526), + [anon_sym_RBRACE] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_struct_type_BANG] = ACTIONS(5526), + [anon_sym_QMARK] = ACTIONS(5526), + [anon_sym_AT] = ACTIONS(5526), + [anon_sym_STAR] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [anon_sym_void] = ACTIONS(5528), + [anon_sym_noreturn] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_anyopaque] = ACTIONS(5528), + [anon_sym_bool] = ACTIONS(5528), + [anon_sym_int] = ACTIONS(5528), + [anon_sym_uint] = ACTIONS(5528), + [anon_sym_float] = ACTIONS(5528), + [anon_sym_range] = ACTIONS(5528), + [anon_sym_i8] = ACTIONS(5528), + [anon_sym_i16] = ACTIONS(5528), + [anon_sym_i32] = ACTIONS(5528), + [anon_sym_i64] = ACTIONS(5528), + [anon_sym_u8] = ACTIONS(5528), + [anon_sym_u16] = ACTIONS(5528), + [anon_sym_u32] = ACTIONS(5528), + [anon_sym_u64] = ACTIONS(5528), + [anon_sym_isize] = ACTIONS(5528), + [anon_sym_usize] = ACTIONS(5528), + [anon_sym_f32] = ACTIONS(5528), + [anon_sym_f64] = ACTIONS(5528), + [anon_sym_c_char] = ACTIONS(5528), + [anon_sym_c_schar] = ACTIONS(5528), + [anon_sym_c_uchar] = ACTIONS(5528), + [anon_sym_c_short] = ACTIONS(5528), + [anon_sym_c_ushort] = ACTIONS(5528), + [anon_sym_c_int] = ACTIONS(5528), + [anon_sym_c_uint] = ACTIONS(5528), + [anon_sym_c_long] = ACTIONS(5528), + [anon_sym_c_ulong] = ACTIONS(5528), + [anon_sym_c_longlong] = ACTIONS(5528), + [anon_sym_c_ulonglong] = ACTIONS(5528), + [anon_sym_c_float] = ACTIONS(5528), + [anon_sym_c_double] = ACTIONS(5528), + [anon_sym_c_longdouble] = ACTIONS(5528), + [anon_sym_else] = ACTIONS(5528), + [anon_sym_DOT_DOT] = ACTIONS(5528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5526), + [anon_sym_orelse] = ACTIONS(5528), + [anon_sym_or] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5526), + [anon_sym_BANG_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_LT_EQ] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_GT_EQ] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(5526), + [anon_sym_xor] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5528), + [anon_sym_GT_GT] = ACTIONS(5526), + [anon_sym_LT_LT_PIPE] = ACTIONS(5526), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_SLASH] = ACTIONS(5526), + [anon_sym_catch] = ACTIONS(5528), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_CARET] = ACTIONS(5526), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), + [sym__newline] = ACTIONS(5526), }, - [STATE(2410)] = { - [aux_sym_import_declaration_repeat1] = STATE(4900), - [sym_identifier] = ACTIONS(5527), - [anon_sym_func] = ACTIONS(5527), - [anon_sym_BANG] = ACTIONS(5529), - [anon_sym_struct] = ACTIONS(5527), - [anon_sym_LPAREN] = ACTIONS(5529), - [anon_sym_LBRACE] = ACTIONS(5529), - [anon_sym_RBRACE] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(5529), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_void] = ACTIONS(5527), - [anon_sym_noreturn] = ACTIONS(5527), - [anon_sym_type] = ACTIONS(5527), - [anon_sym_anyopaque] = ACTIONS(5527), - [anon_sym_bool] = ACTIONS(5527), - [anon_sym_int] = ACTIONS(5527), - [anon_sym_uint] = ACTIONS(5527), - [anon_sym_float] = ACTIONS(5527), - [anon_sym_range] = ACTIONS(5527), - [anon_sym_i8] = ACTIONS(5527), - [anon_sym_i16] = ACTIONS(5527), - [anon_sym_i32] = ACTIONS(5527), - [anon_sym_i64] = ACTIONS(5527), - [anon_sym_u8] = ACTIONS(5527), - [anon_sym_u16] = ACTIONS(5527), - [anon_sym_u32] = ACTIONS(5527), - [anon_sym_u64] = ACTIONS(5527), - [anon_sym_isize] = ACTIONS(5527), - [anon_sym_usize] = ACTIONS(5527), - [anon_sym_f32] = ACTIONS(5527), - [anon_sym_f64] = ACTIONS(5527), - [anon_sym_c_char] = ACTIONS(5527), - [anon_sym_c_schar] = ACTIONS(5527), - [anon_sym_c_uchar] = ACTIONS(5527), - [anon_sym_c_short] = ACTIONS(5527), - [anon_sym_c_ushort] = ACTIONS(5527), - [anon_sym_c_int] = ACTIONS(5527), - [anon_sym_c_uint] = ACTIONS(5527), - [anon_sym_c_long] = ACTIONS(5527), - [anon_sym_c_ulong] = ACTIONS(5527), - [anon_sym_c_longlong] = ACTIONS(5527), - [anon_sym_c_ulonglong] = ACTIONS(5527), - [anon_sym_c_float] = ACTIONS(5527), - [anon_sym_c_double] = ACTIONS(5527), - [anon_sym_c_longdouble] = ACTIONS(5527), + [STATE(7487)] = { + [sym_identifier] = ACTIONS(5532), + [anon_sym_func] = ACTIONS(5532), + [anon_sym_c_func] = ACTIONS(5532), + [anon_sym_struct] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5530), + [anon_sym_COMMA] = ACTIONS(5530), + [anon_sym_RBRACE] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_struct_type_BANG] = ACTIONS(5530), + [anon_sym_QMARK] = ACTIONS(5530), + [anon_sym_AT] = ACTIONS(5530), + [anon_sym_STAR] = ACTIONS(5530), + [anon_sym_LBRACK] = ACTIONS(5530), + [anon_sym_void] = ACTIONS(5532), + [anon_sym_noreturn] = ACTIONS(5532), + [anon_sym_type] = ACTIONS(5532), + [anon_sym_anyopaque] = ACTIONS(5532), + [anon_sym_bool] = ACTIONS(5532), + [anon_sym_int] = ACTIONS(5532), + [anon_sym_uint] = ACTIONS(5532), + [anon_sym_float] = ACTIONS(5532), + [anon_sym_range] = ACTIONS(5532), + [anon_sym_i8] = ACTIONS(5532), + [anon_sym_i16] = ACTIONS(5532), + [anon_sym_i32] = ACTIONS(5532), + [anon_sym_i64] = ACTIONS(5532), + [anon_sym_u8] = ACTIONS(5532), + [anon_sym_u16] = ACTIONS(5532), + [anon_sym_u32] = ACTIONS(5532), + [anon_sym_u64] = ACTIONS(5532), + [anon_sym_isize] = ACTIONS(5532), + [anon_sym_usize] = ACTIONS(5532), + [anon_sym_f32] = ACTIONS(5532), + [anon_sym_f64] = ACTIONS(5532), + [anon_sym_c_char] = ACTIONS(5532), + [anon_sym_c_schar] = ACTIONS(5532), + [anon_sym_c_uchar] = ACTIONS(5532), + [anon_sym_c_short] = ACTIONS(5532), + [anon_sym_c_ushort] = ACTIONS(5532), + [anon_sym_c_int] = ACTIONS(5532), + [anon_sym_c_uint] = ACTIONS(5532), + [anon_sym_c_long] = ACTIONS(5532), + [anon_sym_c_ulong] = ACTIONS(5532), + [anon_sym_c_longlong] = ACTIONS(5532), + [anon_sym_c_ulonglong] = ACTIONS(5532), + [anon_sym_c_float] = ACTIONS(5532), + [anon_sym_c_double] = ACTIONS(5532), + [anon_sym_c_longdouble] = ACTIONS(5532), + [anon_sym_else] = ACTIONS(5532), + [anon_sym_DOT_DOT] = ACTIONS(5532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5530), + [anon_sym_orelse] = ACTIONS(5532), + [anon_sym_or] = ACTIONS(5532), + [anon_sym_and] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5530), + [anon_sym_BANG_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_LT_EQ] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_GT_EQ] = ACTIONS(5530), + [anon_sym_AMP] = ACTIONS(5530), + [anon_sym_xor] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5532), + [anon_sym_GT_GT] = ACTIONS(5530), + [anon_sym_LT_LT_PIPE] = ACTIONS(5530), + [anon_sym_PLUS] = ACTIONS(5530), + [anon_sym_SLASH] = ACTIONS(5530), + [anon_sym_catch] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5530), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5530), + }, + [STATE(7488)] = { + [sym_identifier] = ACTIONS(5536), + [anon_sym_func] = ACTIONS(5536), + [anon_sym_c_func] = ACTIONS(5536), + [anon_sym_struct] = ACTIONS(5536), + [anon_sym_LPAREN] = ACTIONS(5534), + [anon_sym_COMMA] = ACTIONS(5534), + [anon_sym_RBRACE] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_struct_type_BANG] = ACTIONS(5534), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_AT] = ACTIONS(5534), + [anon_sym_STAR] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5534), + [anon_sym_void] = ACTIONS(5536), + [anon_sym_noreturn] = ACTIONS(5536), + [anon_sym_type] = ACTIONS(5536), + [anon_sym_anyopaque] = ACTIONS(5536), + [anon_sym_bool] = ACTIONS(5536), + [anon_sym_int] = ACTIONS(5536), + [anon_sym_uint] = ACTIONS(5536), + [anon_sym_float] = ACTIONS(5536), + [anon_sym_range] = ACTIONS(5536), + [anon_sym_i8] = ACTIONS(5536), + [anon_sym_i16] = ACTIONS(5536), + [anon_sym_i32] = ACTIONS(5536), + [anon_sym_i64] = ACTIONS(5536), + [anon_sym_u8] = ACTIONS(5536), + [anon_sym_u16] = ACTIONS(5536), + [anon_sym_u32] = ACTIONS(5536), + [anon_sym_u64] = ACTIONS(5536), + [anon_sym_isize] = ACTIONS(5536), + [anon_sym_usize] = ACTIONS(5536), + [anon_sym_f32] = ACTIONS(5536), + [anon_sym_f64] = ACTIONS(5536), + [anon_sym_c_char] = ACTIONS(5536), + [anon_sym_c_schar] = ACTIONS(5536), + [anon_sym_c_uchar] = ACTIONS(5536), + [anon_sym_c_short] = ACTIONS(5536), + [anon_sym_c_ushort] = ACTIONS(5536), + [anon_sym_c_int] = ACTIONS(5536), + [anon_sym_c_uint] = ACTIONS(5536), + [anon_sym_c_long] = ACTIONS(5536), + [anon_sym_c_ulong] = ACTIONS(5536), + [anon_sym_c_longlong] = ACTIONS(5536), + [anon_sym_c_ulonglong] = ACTIONS(5536), + [anon_sym_c_float] = ACTIONS(5536), + [anon_sym_c_double] = ACTIONS(5536), + [anon_sym_c_longdouble] = ACTIONS(5536), + [anon_sym_else] = ACTIONS(5536), + [anon_sym_DOT_DOT] = ACTIONS(5536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5534), + [anon_sym_orelse] = ACTIONS(5536), + [anon_sym_or] = ACTIONS(5536), + [anon_sym_and] = ACTIONS(5536), + [anon_sym_EQ_EQ] = ACTIONS(5534), + [anon_sym_BANG_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5536), + [anon_sym_LT_EQ] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5536), + [anon_sym_GT_EQ] = ACTIONS(5534), + [anon_sym_AMP] = ACTIONS(5534), + [anon_sym_xor] = ACTIONS(5536), + [anon_sym_LT_LT] = ACTIONS(5536), + [anon_sym_GT_GT] = ACTIONS(5534), + [anon_sym_LT_LT_PIPE] = ACTIONS(5534), + [anon_sym_PLUS] = ACTIONS(5534), + [anon_sym_SLASH] = ACTIONS(5534), + [anon_sym_catch] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(5536), + [anon_sym_CARET] = ACTIONS(5534), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5534), + }, + [STATE(7489)] = { + [sym_identifier] = ACTIONS(5540), + [anon_sym_func] = ACTIONS(5540), + [anon_sym_c_func] = ACTIONS(5540), + [anon_sym_struct] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_COMMA] = ACTIONS(5538), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5538), + [anon_sym_PIPE] = ACTIONS(5538), + [anon_sym_struct_type_BANG] = ACTIONS(5538), + [anon_sym_QMARK] = ACTIONS(5538), + [anon_sym_AT] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5538), + [anon_sym_void] = ACTIONS(5540), + [anon_sym_noreturn] = ACTIONS(5540), + [anon_sym_type] = ACTIONS(5540), + [anon_sym_anyopaque] = ACTIONS(5540), + [anon_sym_bool] = ACTIONS(5540), + [anon_sym_int] = ACTIONS(5540), + [anon_sym_uint] = ACTIONS(5540), + [anon_sym_float] = ACTIONS(5540), + [anon_sym_range] = ACTIONS(5540), + [anon_sym_i8] = ACTIONS(5540), + [anon_sym_i16] = ACTIONS(5540), + [anon_sym_i32] = ACTIONS(5540), + [anon_sym_i64] = ACTIONS(5540), + [anon_sym_u8] = ACTIONS(5540), + [anon_sym_u16] = ACTIONS(5540), + [anon_sym_u32] = ACTIONS(5540), + [anon_sym_u64] = ACTIONS(5540), + [anon_sym_isize] = ACTIONS(5540), + [anon_sym_usize] = ACTIONS(5540), + [anon_sym_f32] = ACTIONS(5540), + [anon_sym_f64] = ACTIONS(5540), + [anon_sym_c_char] = ACTIONS(5540), + [anon_sym_c_schar] = ACTIONS(5540), + [anon_sym_c_uchar] = ACTIONS(5540), + [anon_sym_c_short] = ACTIONS(5540), + [anon_sym_c_ushort] = ACTIONS(5540), + [anon_sym_c_int] = ACTIONS(5540), + [anon_sym_c_uint] = ACTIONS(5540), + [anon_sym_c_long] = ACTIONS(5540), + [anon_sym_c_ulong] = ACTIONS(5540), + [anon_sym_c_longlong] = ACTIONS(5540), + [anon_sym_c_ulonglong] = ACTIONS(5540), + [anon_sym_c_float] = ACTIONS(5540), + [anon_sym_c_double] = ACTIONS(5540), + [anon_sym_c_longdouble] = ACTIONS(5540), + [anon_sym_else] = ACTIONS(5540), + [anon_sym_DOT_DOT] = ACTIONS(5540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5538), + [anon_sym_orelse] = ACTIONS(5540), + [anon_sym_or] = ACTIONS(5540), + [anon_sym_and] = ACTIONS(5540), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5540), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT] = ACTIONS(5540), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5538), + [anon_sym_xor] = ACTIONS(5540), + [anon_sym_LT_LT] = ACTIONS(5540), + [anon_sym_GT_GT] = ACTIONS(5538), + [anon_sym_LT_LT_PIPE] = ACTIONS(5538), + [anon_sym_PLUS] = ACTIONS(5538), + [anon_sym_SLASH] = ACTIONS(5538), + [anon_sym_catch] = ACTIONS(5540), + [anon_sym_DOT] = ACTIONS(5540), + [anon_sym_CARET] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5538), + }, + [STATE(7490)] = { + [sym_identifier] = ACTIONS(5544), + [anon_sym_func] = ACTIONS(5544), + [anon_sym_c_func] = ACTIONS(5544), + [anon_sym_struct] = ACTIONS(5544), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_COMMA] = ACTIONS(5542), + [anon_sym_RBRACE] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_PIPE] = ACTIONS(5542), + [anon_sym_struct_type_BANG] = ACTIONS(5542), + [anon_sym_QMARK] = ACTIONS(5542), + [anon_sym_AT] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_void] = ACTIONS(5544), + [anon_sym_noreturn] = ACTIONS(5544), + [anon_sym_type] = ACTIONS(5544), + [anon_sym_anyopaque] = ACTIONS(5544), + [anon_sym_bool] = ACTIONS(5544), + [anon_sym_int] = ACTIONS(5544), + [anon_sym_uint] = ACTIONS(5544), + [anon_sym_float] = ACTIONS(5544), + [anon_sym_range] = ACTIONS(5544), + [anon_sym_i8] = ACTIONS(5544), + [anon_sym_i16] = ACTIONS(5544), + [anon_sym_i32] = ACTIONS(5544), + [anon_sym_i64] = ACTIONS(5544), + [anon_sym_u8] = ACTIONS(5544), + [anon_sym_u16] = ACTIONS(5544), + [anon_sym_u32] = ACTIONS(5544), + [anon_sym_u64] = ACTIONS(5544), + [anon_sym_isize] = ACTIONS(5544), + [anon_sym_usize] = ACTIONS(5544), + [anon_sym_f32] = ACTIONS(5544), + [anon_sym_f64] = ACTIONS(5544), + [anon_sym_c_char] = ACTIONS(5544), + [anon_sym_c_schar] = ACTIONS(5544), + [anon_sym_c_uchar] = ACTIONS(5544), + [anon_sym_c_short] = ACTIONS(5544), + [anon_sym_c_ushort] = ACTIONS(5544), + [anon_sym_c_int] = ACTIONS(5544), + [anon_sym_c_uint] = ACTIONS(5544), + [anon_sym_c_long] = ACTIONS(5544), + [anon_sym_c_ulong] = ACTIONS(5544), + [anon_sym_c_longlong] = ACTIONS(5544), + [anon_sym_c_ulonglong] = ACTIONS(5544), + [anon_sym_c_float] = ACTIONS(5544), + [anon_sym_c_double] = ACTIONS(5544), + [anon_sym_c_longdouble] = ACTIONS(5544), + [anon_sym_else] = ACTIONS(5544), + [anon_sym_DOT_DOT] = ACTIONS(5544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5542), + [anon_sym_orelse] = ACTIONS(5544), + [anon_sym_or] = ACTIONS(5544), + [anon_sym_and] = ACTIONS(5544), + [anon_sym_EQ_EQ] = ACTIONS(5542), + [anon_sym_BANG_EQ] = ACTIONS(5542), + [anon_sym_LT] = ACTIONS(5544), + [anon_sym_LT_EQ] = ACTIONS(5542), + [anon_sym_GT] = ACTIONS(5544), + [anon_sym_GT_EQ] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_xor] = ACTIONS(5544), + [anon_sym_LT_LT] = ACTIONS(5544), + [anon_sym_GT_GT] = ACTIONS(5542), + [anon_sym_LT_LT_PIPE] = ACTIONS(5542), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_SLASH] = ACTIONS(5542), + [anon_sym_catch] = ACTIONS(5544), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_CARET] = ACTIONS(5542), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5542), + }, + [STATE(7491)] = { + [sym_identifier] = ACTIONS(5548), + [anon_sym_func] = ACTIONS(5548), + [anon_sym_c_func] = ACTIONS(5548), + [anon_sym_struct] = ACTIONS(5548), + [anon_sym_LPAREN] = ACTIONS(5546), + [anon_sym_COMMA] = ACTIONS(5546), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5546), + [anon_sym_PIPE] = ACTIONS(5546), + [anon_sym_struct_type_BANG] = ACTIONS(5546), + [anon_sym_QMARK] = ACTIONS(5546), + [anon_sym_AT] = ACTIONS(5546), + [anon_sym_STAR] = ACTIONS(5546), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_void] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_type] = ACTIONS(5548), + [anon_sym_anyopaque] = ACTIONS(5548), + [anon_sym_bool] = ACTIONS(5548), + [anon_sym_int] = ACTIONS(5548), + [anon_sym_uint] = ACTIONS(5548), + [anon_sym_float] = ACTIONS(5548), + [anon_sym_range] = ACTIONS(5548), + [anon_sym_i8] = ACTIONS(5548), + [anon_sym_i16] = ACTIONS(5548), + [anon_sym_i32] = ACTIONS(5548), + [anon_sym_i64] = ACTIONS(5548), + [anon_sym_u8] = ACTIONS(5548), + [anon_sym_u16] = ACTIONS(5548), + [anon_sym_u32] = ACTIONS(5548), + [anon_sym_u64] = ACTIONS(5548), + [anon_sym_isize] = ACTIONS(5548), + [anon_sym_usize] = ACTIONS(5548), + [anon_sym_f32] = ACTIONS(5548), + [anon_sym_f64] = ACTIONS(5548), + [anon_sym_c_char] = ACTIONS(5548), + [anon_sym_c_schar] = ACTIONS(5548), + [anon_sym_c_uchar] = ACTIONS(5548), + [anon_sym_c_short] = ACTIONS(5548), + [anon_sym_c_ushort] = ACTIONS(5548), + [anon_sym_c_int] = ACTIONS(5548), + [anon_sym_c_uint] = ACTIONS(5548), + [anon_sym_c_long] = ACTIONS(5548), + [anon_sym_c_ulong] = ACTIONS(5548), + [anon_sym_c_longlong] = ACTIONS(5548), + [anon_sym_c_ulonglong] = ACTIONS(5548), + [anon_sym_c_float] = ACTIONS(5548), + [anon_sym_c_double] = ACTIONS(5548), + [anon_sym_c_longdouble] = ACTIONS(5548), + [anon_sym_else] = ACTIONS(5548), + [anon_sym_DOT_DOT] = ACTIONS(5548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5546), + [anon_sym_orelse] = ACTIONS(5548), + [anon_sym_or] = ACTIONS(5548), + [anon_sym_and] = ACTIONS(5548), + [anon_sym_EQ_EQ] = ACTIONS(5546), + [anon_sym_BANG_EQ] = ACTIONS(5546), + [anon_sym_LT] = ACTIONS(5548), + [anon_sym_LT_EQ] = ACTIONS(5546), + [anon_sym_GT] = ACTIONS(5548), + [anon_sym_GT_EQ] = ACTIONS(5546), + [anon_sym_AMP] = ACTIONS(5546), + [anon_sym_xor] = ACTIONS(5548), + [anon_sym_LT_LT] = ACTIONS(5548), + [anon_sym_GT_GT] = ACTIONS(5546), + [anon_sym_LT_LT_PIPE] = ACTIONS(5546), + [anon_sym_PLUS] = ACTIONS(5546), + [anon_sym_SLASH] = ACTIONS(5546), + [anon_sym_catch] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5548), + [anon_sym_CARET] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5546), + }, + [STATE(7492)] = { + [sym_identifier] = ACTIONS(5552), + [anon_sym_func] = ACTIONS(5552), + [anon_sym_c_func] = ACTIONS(5552), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_LPAREN] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5550), + [anon_sym_struct_type_BANG] = ACTIONS(5550), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_AT] = ACTIONS(5550), + [anon_sym_STAR] = ACTIONS(5550), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_void] = ACTIONS(5552), + [anon_sym_noreturn] = ACTIONS(5552), + [anon_sym_type] = ACTIONS(5552), + [anon_sym_anyopaque] = ACTIONS(5552), + [anon_sym_bool] = ACTIONS(5552), + [anon_sym_int] = ACTIONS(5552), + [anon_sym_uint] = ACTIONS(5552), + [anon_sym_float] = ACTIONS(5552), + [anon_sym_range] = ACTIONS(5552), + [anon_sym_i8] = ACTIONS(5552), + [anon_sym_i16] = ACTIONS(5552), + [anon_sym_i32] = ACTIONS(5552), + [anon_sym_i64] = ACTIONS(5552), + [anon_sym_u8] = ACTIONS(5552), + [anon_sym_u16] = ACTIONS(5552), + [anon_sym_u32] = ACTIONS(5552), + [anon_sym_u64] = ACTIONS(5552), + [anon_sym_isize] = ACTIONS(5552), + [anon_sym_usize] = ACTIONS(5552), + [anon_sym_f32] = ACTIONS(5552), + [anon_sym_f64] = ACTIONS(5552), + [anon_sym_c_char] = ACTIONS(5552), + [anon_sym_c_schar] = ACTIONS(5552), + [anon_sym_c_uchar] = ACTIONS(5552), + [anon_sym_c_short] = ACTIONS(5552), + [anon_sym_c_ushort] = ACTIONS(5552), + [anon_sym_c_int] = ACTIONS(5552), + [anon_sym_c_uint] = ACTIONS(5552), + [anon_sym_c_long] = ACTIONS(5552), + [anon_sym_c_ulong] = ACTIONS(5552), + [anon_sym_c_longlong] = ACTIONS(5552), + [anon_sym_c_ulonglong] = ACTIONS(5552), + [anon_sym_c_float] = ACTIONS(5552), + [anon_sym_c_double] = ACTIONS(5552), + [anon_sym_c_longdouble] = ACTIONS(5552), + [anon_sym_else] = ACTIONS(5552), + [anon_sym_DOT_DOT] = ACTIONS(5552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5550), + [anon_sym_orelse] = ACTIONS(5552), + [anon_sym_or] = ACTIONS(5552), + [anon_sym_and] = ACTIONS(5552), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_LT] = ACTIONS(5552), + [anon_sym_LT_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5552), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP] = ACTIONS(5550), + [anon_sym_xor] = ACTIONS(5552), + [anon_sym_LT_LT] = ACTIONS(5552), + [anon_sym_GT_GT] = ACTIONS(5550), + [anon_sym_LT_LT_PIPE] = ACTIONS(5550), + [anon_sym_PLUS] = ACTIONS(5550), + [anon_sym_SLASH] = ACTIONS(5550), + [anon_sym_catch] = ACTIONS(5552), + [anon_sym_DOT] = ACTIONS(5552), + [anon_sym_CARET] = ACTIONS(5550), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5550), + }, + [STATE(7493)] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_func] = ACTIONS(5560), + [anon_sym_c_func] = ACTIONS(5560), + [anon_sym_struct] = ACTIONS(5560), + [anon_sym_LPAREN] = ACTIONS(5558), + [anon_sym_COMMA] = ACTIONS(5558), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_PIPE] = ACTIONS(5558), + [anon_sym_struct_type_BANG] = ACTIONS(5558), + [anon_sym_QMARK] = ACTIONS(5558), + [anon_sym_AT] = ACTIONS(5558), + [anon_sym_STAR] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_void] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_type] = ACTIONS(5560), + [anon_sym_anyopaque] = ACTIONS(5560), + [anon_sym_bool] = ACTIONS(5560), + [anon_sym_int] = ACTIONS(5560), + [anon_sym_uint] = ACTIONS(5560), + [anon_sym_float] = ACTIONS(5560), + [anon_sym_range] = ACTIONS(5560), + [anon_sym_i8] = ACTIONS(5560), + [anon_sym_i16] = ACTIONS(5560), + [anon_sym_i32] = ACTIONS(5560), + [anon_sym_i64] = ACTIONS(5560), + [anon_sym_u8] = ACTIONS(5560), + [anon_sym_u16] = ACTIONS(5560), + [anon_sym_u32] = ACTIONS(5560), + [anon_sym_u64] = ACTIONS(5560), + [anon_sym_isize] = ACTIONS(5560), + [anon_sym_usize] = ACTIONS(5560), + [anon_sym_f32] = ACTIONS(5560), + [anon_sym_f64] = ACTIONS(5560), + [anon_sym_c_char] = ACTIONS(5560), + [anon_sym_c_schar] = ACTIONS(5560), + [anon_sym_c_uchar] = ACTIONS(5560), + [anon_sym_c_short] = ACTIONS(5560), + [anon_sym_c_ushort] = ACTIONS(5560), + [anon_sym_c_int] = ACTIONS(5560), + [anon_sym_c_uint] = ACTIONS(5560), + [anon_sym_c_long] = ACTIONS(5560), + [anon_sym_c_ulong] = ACTIONS(5560), + [anon_sym_c_longlong] = ACTIONS(5560), + [anon_sym_c_ulonglong] = ACTIONS(5560), + [anon_sym_c_float] = ACTIONS(5560), + [anon_sym_c_double] = ACTIONS(5560), + [anon_sym_c_longdouble] = ACTIONS(5560), + [anon_sym_else] = ACTIONS(5560), + [anon_sym_DOT_DOT] = ACTIONS(5560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5558), + [anon_sym_orelse] = ACTIONS(5560), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5558), + [anon_sym_BANG_EQ] = ACTIONS(5558), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_EQ] = ACTIONS(5558), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(5558), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5558), + [anon_sym_LT_LT_PIPE] = ACTIONS(5558), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_SLASH] = ACTIONS(5558), + [anon_sym_catch] = ACTIONS(5560), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5558), + }, + [STATE(7494)] = { + [sym_identifier] = ACTIONS(5564), + [anon_sym_func] = ACTIONS(5564), + [anon_sym_c_func] = ACTIONS(5564), + [anon_sym_struct] = ACTIONS(5564), + [anon_sym_LPAREN] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5562), + [anon_sym_struct_type_BANG] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_AT] = ACTIONS(5562), + [anon_sym_STAR] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_void] = ACTIONS(5564), + [anon_sym_noreturn] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_anyopaque] = ACTIONS(5564), + [anon_sym_bool] = ACTIONS(5564), + [anon_sym_int] = ACTIONS(5564), + [anon_sym_uint] = ACTIONS(5564), + [anon_sym_float] = ACTIONS(5564), + [anon_sym_range] = ACTIONS(5564), + [anon_sym_i8] = ACTIONS(5564), + [anon_sym_i16] = ACTIONS(5564), + [anon_sym_i32] = ACTIONS(5564), + [anon_sym_i64] = ACTIONS(5564), + [anon_sym_u8] = ACTIONS(5564), + [anon_sym_u16] = ACTIONS(5564), + [anon_sym_u32] = ACTIONS(5564), + [anon_sym_u64] = ACTIONS(5564), + [anon_sym_isize] = ACTIONS(5564), + [anon_sym_usize] = ACTIONS(5564), + [anon_sym_f32] = ACTIONS(5564), + [anon_sym_f64] = ACTIONS(5564), + [anon_sym_c_char] = ACTIONS(5564), + [anon_sym_c_schar] = ACTIONS(5564), + [anon_sym_c_uchar] = ACTIONS(5564), + [anon_sym_c_short] = ACTIONS(5564), + [anon_sym_c_ushort] = ACTIONS(5564), + [anon_sym_c_int] = ACTIONS(5564), + [anon_sym_c_uint] = ACTIONS(5564), + [anon_sym_c_long] = ACTIONS(5564), + [anon_sym_c_ulong] = ACTIONS(5564), + [anon_sym_c_longlong] = ACTIONS(5564), + [anon_sym_c_ulonglong] = ACTIONS(5564), + [anon_sym_c_float] = ACTIONS(5564), + [anon_sym_c_double] = ACTIONS(5564), + [anon_sym_c_longdouble] = ACTIONS(5564), + [anon_sym_else] = ACTIONS(5564), + [anon_sym_DOT_DOT] = ACTIONS(5564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5562), + [anon_sym_orelse] = ACTIONS(5564), + [anon_sym_or] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_LT] = ACTIONS(5564), + [anon_sym_LT_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5564), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP] = ACTIONS(5562), + [anon_sym_xor] = ACTIONS(5564), + [anon_sym_LT_LT] = ACTIONS(5564), + [anon_sym_GT_GT] = ACTIONS(5562), + [anon_sym_LT_LT_PIPE] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5562), + [anon_sym_SLASH] = ACTIONS(5562), + [anon_sym_catch] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5562), + }, + [STATE(7495)] = { + [sym_identifier] = ACTIONS(5570), + [anon_sym_func] = ACTIONS(5570), + [anon_sym_c_func] = ACTIONS(5570), + [anon_sym_struct] = ACTIONS(5570), + [anon_sym_LPAREN] = ACTIONS(5568), + [anon_sym_COMMA] = ACTIONS(5568), + [anon_sym_RBRACE] = ACTIONS(5568), + [anon_sym_DASH] = ACTIONS(5568), + [anon_sym_PIPE] = ACTIONS(5568), + [anon_sym_struct_type_BANG] = ACTIONS(5568), + [anon_sym_QMARK] = ACTIONS(5568), + [anon_sym_AT] = ACTIONS(5568), + [anon_sym_STAR] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_void] = ACTIONS(5570), + [anon_sym_noreturn] = ACTIONS(5570), + [anon_sym_type] = ACTIONS(5570), + [anon_sym_anyopaque] = ACTIONS(5570), + [anon_sym_bool] = ACTIONS(5570), + [anon_sym_int] = ACTIONS(5570), + [anon_sym_uint] = ACTIONS(5570), + [anon_sym_float] = ACTIONS(5570), + [anon_sym_range] = ACTIONS(5570), + [anon_sym_i8] = ACTIONS(5570), + [anon_sym_i16] = ACTIONS(5570), + [anon_sym_i32] = ACTIONS(5570), + [anon_sym_i64] = ACTIONS(5570), + [anon_sym_u8] = ACTIONS(5570), + [anon_sym_u16] = ACTIONS(5570), + [anon_sym_u32] = ACTIONS(5570), + [anon_sym_u64] = ACTIONS(5570), + [anon_sym_isize] = ACTIONS(5570), + [anon_sym_usize] = ACTIONS(5570), + [anon_sym_f32] = ACTIONS(5570), + [anon_sym_f64] = ACTIONS(5570), + [anon_sym_c_char] = ACTIONS(5570), + [anon_sym_c_schar] = ACTIONS(5570), + [anon_sym_c_uchar] = ACTIONS(5570), + [anon_sym_c_short] = ACTIONS(5570), + [anon_sym_c_ushort] = ACTIONS(5570), + [anon_sym_c_int] = ACTIONS(5570), + [anon_sym_c_uint] = ACTIONS(5570), + [anon_sym_c_long] = ACTIONS(5570), + [anon_sym_c_ulong] = ACTIONS(5570), + [anon_sym_c_longlong] = ACTIONS(5570), + [anon_sym_c_ulonglong] = ACTIONS(5570), + [anon_sym_c_float] = ACTIONS(5570), + [anon_sym_c_double] = ACTIONS(5570), + [anon_sym_c_longdouble] = ACTIONS(5570), + [anon_sym_else] = ACTIONS(5570), + [anon_sym_DOT_DOT] = ACTIONS(5570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5568), + [anon_sym_orelse] = ACTIONS(5570), + [anon_sym_or] = ACTIONS(5570), + [anon_sym_and] = ACTIONS(5570), + [anon_sym_EQ_EQ] = ACTIONS(5568), + [anon_sym_BANG_EQ] = ACTIONS(5568), + [anon_sym_LT] = ACTIONS(5570), + [anon_sym_LT_EQ] = ACTIONS(5568), + [anon_sym_GT] = ACTIONS(5570), + [anon_sym_GT_EQ] = ACTIONS(5568), + [anon_sym_AMP] = ACTIONS(5568), + [anon_sym_xor] = ACTIONS(5570), + [anon_sym_LT_LT] = ACTIONS(5570), + [anon_sym_GT_GT] = ACTIONS(5568), + [anon_sym_LT_LT_PIPE] = ACTIONS(5568), + [anon_sym_PLUS] = ACTIONS(5568), + [anon_sym_SLASH] = ACTIONS(5568), + [anon_sym_catch] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5570), + [anon_sym_CARET] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5568), + }, + [STATE(7496)] = { + [sym_identifier] = ACTIONS(5574), + [anon_sym_func] = ACTIONS(5574), + [anon_sym_c_func] = ACTIONS(5574), + [anon_sym_struct] = ACTIONS(5574), + [anon_sym_LPAREN] = ACTIONS(5572), + [anon_sym_COMMA] = ACTIONS(5572), + [anon_sym_RBRACE] = ACTIONS(5572), + [anon_sym_DASH] = ACTIONS(5572), + [anon_sym_PIPE] = ACTIONS(5572), + [anon_sym_struct_type_BANG] = ACTIONS(5572), + [anon_sym_QMARK] = ACTIONS(5572), + [anon_sym_AT] = ACTIONS(5572), + [anon_sym_STAR] = ACTIONS(5572), + [anon_sym_LBRACK] = ACTIONS(5572), + [anon_sym_void] = ACTIONS(5574), + [anon_sym_noreturn] = ACTIONS(5574), + [anon_sym_type] = ACTIONS(5574), + [anon_sym_anyopaque] = ACTIONS(5574), + [anon_sym_bool] = ACTIONS(5574), + [anon_sym_int] = ACTIONS(5574), + [anon_sym_uint] = ACTIONS(5574), + [anon_sym_float] = ACTIONS(5574), + [anon_sym_range] = ACTIONS(5574), + [anon_sym_i8] = ACTIONS(5574), + [anon_sym_i16] = ACTIONS(5574), + [anon_sym_i32] = ACTIONS(5574), + [anon_sym_i64] = ACTIONS(5574), + [anon_sym_u8] = ACTIONS(5574), + [anon_sym_u16] = ACTIONS(5574), + [anon_sym_u32] = ACTIONS(5574), + [anon_sym_u64] = ACTIONS(5574), + [anon_sym_isize] = ACTIONS(5574), + [anon_sym_usize] = ACTIONS(5574), + [anon_sym_f32] = ACTIONS(5574), + [anon_sym_f64] = ACTIONS(5574), + [anon_sym_c_char] = ACTIONS(5574), + [anon_sym_c_schar] = ACTIONS(5574), + [anon_sym_c_uchar] = ACTIONS(5574), + [anon_sym_c_short] = ACTIONS(5574), + [anon_sym_c_ushort] = ACTIONS(5574), + [anon_sym_c_int] = ACTIONS(5574), + [anon_sym_c_uint] = ACTIONS(5574), + [anon_sym_c_long] = ACTIONS(5574), + [anon_sym_c_ulong] = ACTIONS(5574), + [anon_sym_c_longlong] = ACTIONS(5574), + [anon_sym_c_ulonglong] = ACTIONS(5574), + [anon_sym_c_float] = ACTIONS(5574), + [anon_sym_c_double] = ACTIONS(5574), + [anon_sym_c_longdouble] = ACTIONS(5574), + [anon_sym_else] = ACTIONS(5574), + [anon_sym_DOT_DOT] = ACTIONS(5574), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5572), + [anon_sym_orelse] = ACTIONS(5574), + [anon_sym_or] = ACTIONS(5574), + [anon_sym_and] = ACTIONS(5574), + [anon_sym_EQ_EQ] = ACTIONS(5572), + [anon_sym_BANG_EQ] = ACTIONS(5572), + [anon_sym_LT] = ACTIONS(5574), + [anon_sym_LT_EQ] = ACTIONS(5572), + [anon_sym_GT] = ACTIONS(5574), + [anon_sym_GT_EQ] = ACTIONS(5572), + [anon_sym_AMP] = ACTIONS(5572), + [anon_sym_xor] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5572), + [anon_sym_LT_LT_PIPE] = ACTIONS(5572), + [anon_sym_PLUS] = ACTIONS(5572), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_catch] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5572), + }, + [STATE(7497)] = { + [sym_identifier] = ACTIONS(5578), + [anon_sym_func] = ACTIONS(5578), + [anon_sym_c_func] = ACTIONS(5578), + [anon_sym_struct] = ACTIONS(5578), + [anon_sym_LPAREN] = ACTIONS(5576), + [anon_sym_COMMA] = ACTIONS(5576), + [anon_sym_RBRACE] = ACTIONS(5576), + [anon_sym_DASH] = ACTIONS(5576), + [anon_sym_PIPE] = ACTIONS(5576), + [anon_sym_struct_type_BANG] = ACTIONS(5576), + [anon_sym_QMARK] = ACTIONS(5576), + [anon_sym_AT] = ACTIONS(5576), + [anon_sym_STAR] = ACTIONS(5576), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym_void] = ACTIONS(5578), + [anon_sym_noreturn] = ACTIONS(5578), + [anon_sym_type] = ACTIONS(5578), + [anon_sym_anyopaque] = ACTIONS(5578), + [anon_sym_bool] = ACTIONS(5578), + [anon_sym_int] = ACTIONS(5578), + [anon_sym_uint] = ACTIONS(5578), + [anon_sym_float] = ACTIONS(5578), + [anon_sym_range] = ACTIONS(5578), + [anon_sym_i8] = ACTIONS(5578), + [anon_sym_i16] = ACTIONS(5578), + [anon_sym_i32] = ACTIONS(5578), + [anon_sym_i64] = ACTIONS(5578), + [anon_sym_u8] = ACTIONS(5578), + [anon_sym_u16] = ACTIONS(5578), + [anon_sym_u32] = ACTIONS(5578), + [anon_sym_u64] = ACTIONS(5578), + [anon_sym_isize] = ACTIONS(5578), + [anon_sym_usize] = ACTIONS(5578), + [anon_sym_f32] = ACTIONS(5578), + [anon_sym_f64] = ACTIONS(5578), + [anon_sym_c_char] = ACTIONS(5578), + [anon_sym_c_schar] = ACTIONS(5578), + [anon_sym_c_uchar] = ACTIONS(5578), + [anon_sym_c_short] = ACTIONS(5578), + [anon_sym_c_ushort] = ACTIONS(5578), + [anon_sym_c_int] = ACTIONS(5578), + [anon_sym_c_uint] = ACTIONS(5578), + [anon_sym_c_long] = ACTIONS(5578), + [anon_sym_c_ulong] = ACTIONS(5578), + [anon_sym_c_longlong] = ACTIONS(5578), + [anon_sym_c_ulonglong] = ACTIONS(5578), + [anon_sym_c_float] = ACTIONS(5578), + [anon_sym_c_double] = ACTIONS(5578), + [anon_sym_c_longdouble] = ACTIONS(5578), + [anon_sym_else] = ACTIONS(5578), + [anon_sym_DOT_DOT] = ACTIONS(5578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5576), + [anon_sym_orelse] = ACTIONS(5578), + [anon_sym_or] = ACTIONS(5578), + [anon_sym_and] = ACTIONS(5578), + [anon_sym_EQ_EQ] = ACTIONS(5576), + [anon_sym_BANG_EQ] = ACTIONS(5576), + [anon_sym_LT] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5578), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_AMP] = ACTIONS(5576), + [anon_sym_xor] = ACTIONS(5578), + [anon_sym_LT_LT] = ACTIONS(5578), + [anon_sym_GT_GT] = ACTIONS(5576), + [anon_sym_LT_LT_PIPE] = ACTIONS(5576), + [anon_sym_PLUS] = ACTIONS(5576), + [anon_sym_SLASH] = ACTIONS(5576), + [anon_sym_catch] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_CARET] = ACTIONS(5576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5576), + }, + [STATE(7498)] = { + [sym_identifier] = ACTIONS(5582), + [anon_sym_func] = ACTIONS(5582), + [anon_sym_c_func] = ACTIONS(5582), + [anon_sym_struct] = ACTIONS(5582), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(5580), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_PIPE] = ACTIONS(5580), + [anon_sym_struct_type_BANG] = ACTIONS(5580), + [anon_sym_QMARK] = ACTIONS(5580), + [anon_sym_AT] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5580), + [anon_sym_LBRACK] = ACTIONS(5580), + [anon_sym_void] = ACTIONS(5582), + [anon_sym_noreturn] = ACTIONS(5582), + [anon_sym_type] = ACTIONS(5582), + [anon_sym_anyopaque] = ACTIONS(5582), + [anon_sym_bool] = ACTIONS(5582), + [anon_sym_int] = ACTIONS(5582), + [anon_sym_uint] = ACTIONS(5582), + [anon_sym_float] = ACTIONS(5582), + [anon_sym_range] = ACTIONS(5582), + [anon_sym_i8] = ACTIONS(5582), + [anon_sym_i16] = ACTIONS(5582), + [anon_sym_i32] = ACTIONS(5582), + [anon_sym_i64] = ACTIONS(5582), + [anon_sym_u8] = ACTIONS(5582), + [anon_sym_u16] = ACTIONS(5582), + [anon_sym_u32] = ACTIONS(5582), + [anon_sym_u64] = ACTIONS(5582), + [anon_sym_isize] = ACTIONS(5582), + [anon_sym_usize] = ACTIONS(5582), + [anon_sym_f32] = ACTIONS(5582), + [anon_sym_f64] = ACTIONS(5582), + [anon_sym_c_char] = ACTIONS(5582), + [anon_sym_c_schar] = ACTIONS(5582), + [anon_sym_c_uchar] = ACTIONS(5582), + [anon_sym_c_short] = ACTIONS(5582), + [anon_sym_c_ushort] = ACTIONS(5582), + [anon_sym_c_int] = ACTIONS(5582), + [anon_sym_c_uint] = ACTIONS(5582), + [anon_sym_c_long] = ACTIONS(5582), + [anon_sym_c_ulong] = ACTIONS(5582), + [anon_sym_c_longlong] = ACTIONS(5582), + [anon_sym_c_ulonglong] = ACTIONS(5582), + [anon_sym_c_float] = ACTIONS(5582), + [anon_sym_c_double] = ACTIONS(5582), + [anon_sym_c_longdouble] = ACTIONS(5582), + [anon_sym_else] = ACTIONS(5582), + [anon_sym_DOT_DOT] = ACTIONS(5582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5580), + [anon_sym_orelse] = ACTIONS(5582), + [anon_sym_or] = ACTIONS(5582), + [anon_sym_and] = ACTIONS(5582), + [anon_sym_EQ_EQ] = ACTIONS(5580), + [anon_sym_BANG_EQ] = ACTIONS(5580), + [anon_sym_LT] = ACTIONS(5582), + [anon_sym_LT_EQ] = ACTIONS(5580), + [anon_sym_GT] = ACTIONS(5582), + [anon_sym_GT_EQ] = ACTIONS(5580), + [anon_sym_AMP] = ACTIONS(5580), + [anon_sym_xor] = ACTIONS(5582), + [anon_sym_LT_LT] = ACTIONS(5582), + [anon_sym_GT_GT] = ACTIONS(5580), + [anon_sym_LT_LT_PIPE] = ACTIONS(5580), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_SLASH] = ACTIONS(5580), + [anon_sym_catch] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(5582), + [anon_sym_CARET] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5580), + }, + [STATE(7499)] = { + [sym_identifier] = ACTIONS(5586), + [anon_sym_func] = ACTIONS(5586), + [anon_sym_c_func] = ACTIONS(5586), + [anon_sym_struct] = ACTIONS(5586), + [anon_sym_LPAREN] = ACTIONS(5584), + [anon_sym_COMMA] = ACTIONS(5584), + [anon_sym_RBRACE] = ACTIONS(5584), + [anon_sym_DASH] = ACTIONS(5584), + [anon_sym_PIPE] = ACTIONS(5584), + [anon_sym_struct_type_BANG] = ACTIONS(5584), + [anon_sym_QMARK] = ACTIONS(5584), + [anon_sym_AT] = ACTIONS(5584), + [anon_sym_STAR] = ACTIONS(5584), + [anon_sym_LBRACK] = ACTIONS(5584), + [anon_sym_void] = ACTIONS(5586), + [anon_sym_noreturn] = ACTIONS(5586), + [anon_sym_type] = ACTIONS(5586), + [anon_sym_anyopaque] = ACTIONS(5586), + [anon_sym_bool] = ACTIONS(5586), + [anon_sym_int] = ACTIONS(5586), + [anon_sym_uint] = ACTIONS(5586), + [anon_sym_float] = ACTIONS(5586), + [anon_sym_range] = ACTIONS(5586), + [anon_sym_i8] = ACTIONS(5586), + [anon_sym_i16] = ACTIONS(5586), + [anon_sym_i32] = ACTIONS(5586), + [anon_sym_i64] = ACTIONS(5586), + [anon_sym_u8] = ACTIONS(5586), + [anon_sym_u16] = ACTIONS(5586), + [anon_sym_u32] = ACTIONS(5586), + [anon_sym_u64] = ACTIONS(5586), + [anon_sym_isize] = ACTIONS(5586), + [anon_sym_usize] = ACTIONS(5586), + [anon_sym_f32] = ACTIONS(5586), + [anon_sym_f64] = ACTIONS(5586), + [anon_sym_c_char] = ACTIONS(5586), + [anon_sym_c_schar] = ACTIONS(5586), + [anon_sym_c_uchar] = ACTIONS(5586), + [anon_sym_c_short] = ACTIONS(5586), + [anon_sym_c_ushort] = ACTIONS(5586), + [anon_sym_c_int] = ACTIONS(5586), + [anon_sym_c_uint] = ACTIONS(5586), + [anon_sym_c_long] = ACTIONS(5586), + [anon_sym_c_ulong] = ACTIONS(5586), + [anon_sym_c_longlong] = ACTIONS(5586), + [anon_sym_c_ulonglong] = ACTIONS(5586), + [anon_sym_c_float] = ACTIONS(5586), + [anon_sym_c_double] = ACTIONS(5586), + [anon_sym_c_longdouble] = ACTIONS(5586), + [anon_sym_else] = ACTIONS(5586), + [anon_sym_DOT_DOT] = ACTIONS(5586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5584), + [anon_sym_orelse] = ACTIONS(5586), + [anon_sym_or] = ACTIONS(5586), + [anon_sym_and] = ACTIONS(5586), + [anon_sym_EQ_EQ] = ACTIONS(5584), + [anon_sym_BANG_EQ] = ACTIONS(5584), + [anon_sym_LT] = ACTIONS(5586), + [anon_sym_LT_EQ] = ACTIONS(5584), + [anon_sym_GT] = ACTIONS(5586), + [anon_sym_GT_EQ] = ACTIONS(5584), + [anon_sym_AMP] = ACTIONS(5584), + [anon_sym_xor] = ACTIONS(5586), + [anon_sym_LT_LT] = ACTIONS(5586), + [anon_sym_GT_GT] = ACTIONS(5584), + [anon_sym_LT_LT_PIPE] = ACTIONS(5584), + [anon_sym_PLUS] = ACTIONS(5584), + [anon_sym_SLASH] = ACTIONS(5584), + [anon_sym_catch] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(5586), + [anon_sym_CARET] = ACTIONS(5584), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5584), + }, + [STATE(7500)] = { + [sym_identifier] = ACTIONS(5590), + [anon_sym_func] = ACTIONS(5590), + [anon_sym_c_func] = ACTIONS(5590), + [anon_sym_struct] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5588), + [anon_sym_COMMA] = ACTIONS(5588), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_DASH] = ACTIONS(5588), + [anon_sym_PIPE] = ACTIONS(5588), + [anon_sym_struct_type_BANG] = ACTIONS(5588), + [anon_sym_QMARK] = ACTIONS(5588), + [anon_sym_AT] = ACTIONS(5588), + [anon_sym_STAR] = ACTIONS(5588), + [anon_sym_LBRACK] = ACTIONS(5588), + [anon_sym_void] = ACTIONS(5590), + [anon_sym_noreturn] = ACTIONS(5590), + [anon_sym_type] = ACTIONS(5590), + [anon_sym_anyopaque] = ACTIONS(5590), + [anon_sym_bool] = ACTIONS(5590), + [anon_sym_int] = ACTIONS(5590), + [anon_sym_uint] = ACTIONS(5590), + [anon_sym_float] = ACTIONS(5590), + [anon_sym_range] = ACTIONS(5590), + [anon_sym_i8] = ACTIONS(5590), + [anon_sym_i16] = ACTIONS(5590), + [anon_sym_i32] = ACTIONS(5590), + [anon_sym_i64] = ACTIONS(5590), + [anon_sym_u8] = ACTIONS(5590), + [anon_sym_u16] = ACTIONS(5590), + [anon_sym_u32] = ACTIONS(5590), + [anon_sym_u64] = ACTIONS(5590), + [anon_sym_isize] = ACTIONS(5590), + [anon_sym_usize] = ACTIONS(5590), + [anon_sym_f32] = ACTIONS(5590), + [anon_sym_f64] = ACTIONS(5590), + [anon_sym_c_char] = ACTIONS(5590), + [anon_sym_c_schar] = ACTIONS(5590), + [anon_sym_c_uchar] = ACTIONS(5590), + [anon_sym_c_short] = ACTIONS(5590), + [anon_sym_c_ushort] = ACTIONS(5590), + [anon_sym_c_int] = ACTIONS(5590), + [anon_sym_c_uint] = ACTIONS(5590), + [anon_sym_c_long] = ACTIONS(5590), + [anon_sym_c_ulong] = ACTIONS(5590), + [anon_sym_c_longlong] = ACTIONS(5590), + [anon_sym_c_ulonglong] = ACTIONS(5590), + [anon_sym_c_float] = ACTIONS(5590), + [anon_sym_c_double] = ACTIONS(5590), + [anon_sym_c_longdouble] = ACTIONS(5590), + [anon_sym_else] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5588), + [anon_sym_orelse] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_EQ_EQ] = ACTIONS(5588), + [anon_sym_BANG_EQ] = ACTIONS(5588), + [anon_sym_LT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5588), + [anon_sym_GT] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5588), + [anon_sym_AMP] = ACTIONS(5588), + [anon_sym_xor] = ACTIONS(5590), + [anon_sym_LT_LT] = ACTIONS(5590), + [anon_sym_GT_GT] = ACTIONS(5588), + [anon_sym_LT_LT_PIPE] = ACTIONS(5588), + [anon_sym_PLUS] = ACTIONS(5588), + [anon_sym_SLASH] = ACTIONS(5588), + [anon_sym_catch] = ACTIONS(5590), + [anon_sym_DOT] = ACTIONS(5590), + [anon_sym_CARET] = ACTIONS(5588), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5588), + }, + [STATE(7501)] = { + [sym_identifier] = ACTIONS(5594), + [anon_sym_func] = ACTIONS(5594), + [anon_sym_c_func] = ACTIONS(5594), + [anon_sym_struct] = ACTIONS(5594), + [anon_sym_LPAREN] = ACTIONS(5592), + [anon_sym_COMMA] = ACTIONS(5592), + [anon_sym_RBRACE] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5592), + [anon_sym_PIPE] = ACTIONS(5592), + [anon_sym_struct_type_BANG] = ACTIONS(5592), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_AT] = ACTIONS(5592), + [anon_sym_STAR] = ACTIONS(5592), + [anon_sym_LBRACK] = ACTIONS(5592), + [anon_sym_void] = ACTIONS(5594), + [anon_sym_noreturn] = ACTIONS(5594), + [anon_sym_type] = ACTIONS(5594), + [anon_sym_anyopaque] = ACTIONS(5594), + [anon_sym_bool] = ACTIONS(5594), + [anon_sym_int] = ACTIONS(5594), + [anon_sym_uint] = ACTIONS(5594), + [anon_sym_float] = ACTIONS(5594), + [anon_sym_range] = ACTIONS(5594), + [anon_sym_i8] = ACTIONS(5594), + [anon_sym_i16] = ACTIONS(5594), + [anon_sym_i32] = ACTIONS(5594), + [anon_sym_i64] = ACTIONS(5594), + [anon_sym_u8] = ACTIONS(5594), + [anon_sym_u16] = ACTIONS(5594), + [anon_sym_u32] = ACTIONS(5594), + [anon_sym_u64] = ACTIONS(5594), + [anon_sym_isize] = ACTIONS(5594), + [anon_sym_usize] = ACTIONS(5594), + [anon_sym_f32] = ACTIONS(5594), + [anon_sym_f64] = ACTIONS(5594), + [anon_sym_c_char] = ACTIONS(5594), + [anon_sym_c_schar] = ACTIONS(5594), + [anon_sym_c_uchar] = ACTIONS(5594), + [anon_sym_c_short] = ACTIONS(5594), + [anon_sym_c_ushort] = ACTIONS(5594), + [anon_sym_c_int] = ACTIONS(5594), + [anon_sym_c_uint] = ACTIONS(5594), + [anon_sym_c_long] = ACTIONS(5594), + [anon_sym_c_ulong] = ACTIONS(5594), + [anon_sym_c_longlong] = ACTIONS(5594), + [anon_sym_c_ulonglong] = ACTIONS(5594), + [anon_sym_c_float] = ACTIONS(5594), + [anon_sym_c_double] = ACTIONS(5594), + [anon_sym_c_longdouble] = ACTIONS(5594), + [anon_sym_else] = ACTIONS(5594), + [anon_sym_DOT_DOT] = ACTIONS(5594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5592), + [anon_sym_orelse] = ACTIONS(5594), + [anon_sym_or] = ACTIONS(5594), + [anon_sym_and] = ACTIONS(5594), + [anon_sym_EQ_EQ] = ACTIONS(5592), + [anon_sym_BANG_EQ] = ACTIONS(5592), + [anon_sym_LT] = ACTIONS(5594), + [anon_sym_LT_EQ] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5594), + [anon_sym_GT_EQ] = ACTIONS(5592), + [anon_sym_AMP] = ACTIONS(5592), + [anon_sym_xor] = ACTIONS(5594), + [anon_sym_LT_LT] = ACTIONS(5594), + [anon_sym_GT_GT] = ACTIONS(5592), + [anon_sym_LT_LT_PIPE] = ACTIONS(5592), + [anon_sym_PLUS] = ACTIONS(5592), + [anon_sym_SLASH] = ACTIONS(5592), + [anon_sym_catch] = ACTIONS(5594), + [anon_sym_DOT] = ACTIONS(5594), + [anon_sym_CARET] = ACTIONS(5592), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5592), + }, + [STATE(7502)] = { + [sym_identifier] = ACTIONS(5598), + [anon_sym_func] = ACTIONS(5598), + [anon_sym_c_func] = ACTIONS(5598), + [anon_sym_struct] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5596), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_RBRACE] = ACTIONS(5596), + [anon_sym_DASH] = ACTIONS(5596), + [anon_sym_PIPE] = ACTIONS(5596), + [anon_sym_struct_type_BANG] = ACTIONS(5596), + [anon_sym_QMARK] = ACTIONS(5596), + [anon_sym_AT] = ACTIONS(5596), + [anon_sym_STAR] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(5596), + [anon_sym_void] = ACTIONS(5598), + [anon_sym_noreturn] = ACTIONS(5598), + [anon_sym_type] = ACTIONS(5598), + [anon_sym_anyopaque] = ACTIONS(5598), + [anon_sym_bool] = ACTIONS(5598), + [anon_sym_int] = ACTIONS(5598), + [anon_sym_uint] = ACTIONS(5598), + [anon_sym_float] = ACTIONS(5598), + [anon_sym_range] = ACTIONS(5598), + [anon_sym_i8] = ACTIONS(5598), + [anon_sym_i16] = ACTIONS(5598), + [anon_sym_i32] = ACTIONS(5598), + [anon_sym_i64] = ACTIONS(5598), + [anon_sym_u8] = ACTIONS(5598), + [anon_sym_u16] = ACTIONS(5598), + [anon_sym_u32] = ACTIONS(5598), + [anon_sym_u64] = ACTIONS(5598), + [anon_sym_isize] = ACTIONS(5598), + [anon_sym_usize] = ACTIONS(5598), + [anon_sym_f32] = ACTIONS(5598), + [anon_sym_f64] = ACTIONS(5598), + [anon_sym_c_char] = ACTIONS(5598), + [anon_sym_c_schar] = ACTIONS(5598), + [anon_sym_c_uchar] = ACTIONS(5598), + [anon_sym_c_short] = ACTIONS(5598), + [anon_sym_c_ushort] = ACTIONS(5598), + [anon_sym_c_int] = ACTIONS(5598), + [anon_sym_c_uint] = ACTIONS(5598), + [anon_sym_c_long] = ACTIONS(5598), + [anon_sym_c_ulong] = ACTIONS(5598), + [anon_sym_c_longlong] = ACTIONS(5598), + [anon_sym_c_ulonglong] = ACTIONS(5598), + [anon_sym_c_float] = ACTIONS(5598), + [anon_sym_c_double] = ACTIONS(5598), + [anon_sym_c_longdouble] = ACTIONS(5598), + [anon_sym_else] = ACTIONS(5598), + [anon_sym_DOT_DOT] = ACTIONS(5598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5596), + [anon_sym_orelse] = ACTIONS(5598), + [anon_sym_or] = ACTIONS(5598), + [anon_sym_and] = ACTIONS(5598), + [anon_sym_EQ_EQ] = ACTIONS(5596), + [anon_sym_BANG_EQ] = ACTIONS(5596), + [anon_sym_LT] = ACTIONS(5598), + [anon_sym_LT_EQ] = ACTIONS(5596), + [anon_sym_GT] = ACTIONS(5598), + [anon_sym_GT_EQ] = ACTIONS(5596), + [anon_sym_AMP] = ACTIONS(5596), + [anon_sym_xor] = ACTIONS(5598), + [anon_sym_LT_LT] = ACTIONS(5598), + [anon_sym_GT_GT] = ACTIONS(5596), + [anon_sym_LT_LT_PIPE] = ACTIONS(5596), + [anon_sym_PLUS] = ACTIONS(5596), + [anon_sym_SLASH] = ACTIONS(5596), + [anon_sym_catch] = ACTIONS(5598), + [anon_sym_DOT] = ACTIONS(5598), + [anon_sym_CARET] = ACTIONS(5596), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5596), + }, + [STATE(7503)] = { + [sym_identifier] = ACTIONS(5602), + [anon_sym_func] = ACTIONS(5602), + [anon_sym_c_func] = ACTIONS(5602), + [anon_sym_struct] = ACTIONS(5602), + [anon_sym_LPAREN] = ACTIONS(5600), + [anon_sym_COMMA] = ACTIONS(5600), + [anon_sym_RBRACE] = ACTIONS(5600), + [anon_sym_DASH] = ACTIONS(5600), + [anon_sym_PIPE] = ACTIONS(5600), + [anon_sym_struct_type_BANG] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5600), + [anon_sym_AT] = ACTIONS(5600), + [anon_sym_STAR] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_void] = ACTIONS(5602), + [anon_sym_noreturn] = ACTIONS(5602), + [anon_sym_type] = ACTIONS(5602), + [anon_sym_anyopaque] = ACTIONS(5602), + [anon_sym_bool] = ACTIONS(5602), + [anon_sym_int] = ACTIONS(5602), + [anon_sym_uint] = ACTIONS(5602), + [anon_sym_float] = ACTIONS(5602), + [anon_sym_range] = ACTIONS(5602), + [anon_sym_i8] = ACTIONS(5602), + [anon_sym_i16] = ACTIONS(5602), + [anon_sym_i32] = ACTIONS(5602), + [anon_sym_i64] = ACTIONS(5602), + [anon_sym_u8] = ACTIONS(5602), + [anon_sym_u16] = ACTIONS(5602), + [anon_sym_u32] = ACTIONS(5602), + [anon_sym_u64] = ACTIONS(5602), + [anon_sym_isize] = ACTIONS(5602), + [anon_sym_usize] = ACTIONS(5602), + [anon_sym_f32] = ACTIONS(5602), + [anon_sym_f64] = ACTIONS(5602), + [anon_sym_c_char] = ACTIONS(5602), + [anon_sym_c_schar] = ACTIONS(5602), + [anon_sym_c_uchar] = ACTIONS(5602), + [anon_sym_c_short] = ACTIONS(5602), + [anon_sym_c_ushort] = ACTIONS(5602), + [anon_sym_c_int] = ACTIONS(5602), + [anon_sym_c_uint] = ACTIONS(5602), + [anon_sym_c_long] = ACTIONS(5602), + [anon_sym_c_ulong] = ACTIONS(5602), + [anon_sym_c_longlong] = ACTIONS(5602), + [anon_sym_c_ulonglong] = ACTIONS(5602), + [anon_sym_c_float] = ACTIONS(5602), + [anon_sym_c_double] = ACTIONS(5602), + [anon_sym_c_longdouble] = ACTIONS(5602), + [anon_sym_else] = ACTIONS(5602), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5600), + [anon_sym_orelse] = ACTIONS(5602), + [anon_sym_or] = ACTIONS(5602), + [anon_sym_and] = ACTIONS(5602), + [anon_sym_EQ_EQ] = ACTIONS(5600), + [anon_sym_BANG_EQ] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5600), + [anon_sym_GT] = ACTIONS(5602), + [anon_sym_GT_EQ] = ACTIONS(5600), + [anon_sym_AMP] = ACTIONS(5600), + [anon_sym_xor] = ACTIONS(5602), + [anon_sym_LT_LT] = ACTIONS(5602), + [anon_sym_GT_GT] = ACTIONS(5600), + [anon_sym_LT_LT_PIPE] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5600), + [anon_sym_SLASH] = ACTIONS(5600), + [anon_sym_catch] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5602), + [anon_sym_CARET] = ACTIONS(5600), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5600), + }, + [STATE(7504)] = { + [sym_identifier] = ACTIONS(5606), + [anon_sym_func] = ACTIONS(5606), + [anon_sym_c_func] = ACTIONS(5606), + [anon_sym_struct] = ACTIONS(5606), + [anon_sym_LPAREN] = ACTIONS(5604), + [anon_sym_COMMA] = ACTIONS(5604), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_DASH] = ACTIONS(5604), + [anon_sym_PIPE] = ACTIONS(5604), + [anon_sym_struct_type_BANG] = ACTIONS(5604), + [anon_sym_QMARK] = ACTIONS(5604), + [anon_sym_AT] = ACTIONS(5604), + [anon_sym_STAR] = ACTIONS(5604), + [anon_sym_LBRACK] = ACTIONS(5604), + [anon_sym_void] = ACTIONS(5606), + [anon_sym_noreturn] = ACTIONS(5606), + [anon_sym_type] = ACTIONS(5606), + [anon_sym_anyopaque] = ACTIONS(5606), + [anon_sym_bool] = ACTIONS(5606), + [anon_sym_int] = ACTIONS(5606), + [anon_sym_uint] = ACTIONS(5606), + [anon_sym_float] = ACTIONS(5606), + [anon_sym_range] = ACTIONS(5606), + [anon_sym_i8] = ACTIONS(5606), + [anon_sym_i16] = ACTIONS(5606), + [anon_sym_i32] = ACTIONS(5606), + [anon_sym_i64] = ACTIONS(5606), + [anon_sym_u8] = ACTIONS(5606), + [anon_sym_u16] = ACTIONS(5606), + [anon_sym_u32] = ACTIONS(5606), + [anon_sym_u64] = ACTIONS(5606), + [anon_sym_isize] = ACTIONS(5606), + [anon_sym_usize] = ACTIONS(5606), + [anon_sym_f32] = ACTIONS(5606), + [anon_sym_f64] = ACTIONS(5606), + [anon_sym_c_char] = ACTIONS(5606), + [anon_sym_c_schar] = ACTIONS(5606), + [anon_sym_c_uchar] = ACTIONS(5606), + [anon_sym_c_short] = ACTIONS(5606), + [anon_sym_c_ushort] = ACTIONS(5606), + [anon_sym_c_int] = ACTIONS(5606), + [anon_sym_c_uint] = ACTIONS(5606), + [anon_sym_c_long] = ACTIONS(5606), + [anon_sym_c_ulong] = ACTIONS(5606), + [anon_sym_c_longlong] = ACTIONS(5606), + [anon_sym_c_ulonglong] = ACTIONS(5606), + [anon_sym_c_float] = ACTIONS(5606), + [anon_sym_c_double] = ACTIONS(5606), + [anon_sym_c_longdouble] = ACTIONS(5606), + [anon_sym_else] = ACTIONS(5606), + [anon_sym_DOT_DOT] = ACTIONS(5606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5604), + [anon_sym_orelse] = ACTIONS(5606), + [anon_sym_or] = ACTIONS(5606), + [anon_sym_and] = ACTIONS(5606), + [anon_sym_EQ_EQ] = ACTIONS(5604), + [anon_sym_BANG_EQ] = ACTIONS(5604), + [anon_sym_LT] = ACTIONS(5606), + [anon_sym_LT_EQ] = ACTIONS(5604), + [anon_sym_GT] = ACTIONS(5606), + [anon_sym_GT_EQ] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5604), + [anon_sym_xor] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5604), + [anon_sym_LT_LT_PIPE] = ACTIONS(5604), + [anon_sym_PLUS] = ACTIONS(5604), + [anon_sym_SLASH] = ACTIONS(5604), + [anon_sym_catch] = ACTIONS(5606), + [anon_sym_DOT] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5604), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5604), + }, + [STATE(7505)] = { + [sym_identifier] = ACTIONS(5610), + [anon_sym_func] = ACTIONS(5610), + [anon_sym_c_func] = ACTIONS(5610), + [anon_sym_struct] = ACTIONS(5610), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_COMMA] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_DASH] = ACTIONS(5608), + [anon_sym_PIPE] = ACTIONS(5608), + [anon_sym_struct_type_BANG] = ACTIONS(5608), + [anon_sym_QMARK] = ACTIONS(5608), + [anon_sym_AT] = ACTIONS(5608), + [anon_sym_STAR] = ACTIONS(5608), + [anon_sym_LBRACK] = ACTIONS(5608), + [anon_sym_void] = ACTIONS(5610), + [anon_sym_noreturn] = ACTIONS(5610), + [anon_sym_type] = ACTIONS(5610), + [anon_sym_anyopaque] = ACTIONS(5610), + [anon_sym_bool] = ACTIONS(5610), + [anon_sym_int] = ACTIONS(5610), + [anon_sym_uint] = ACTIONS(5610), + [anon_sym_float] = ACTIONS(5610), + [anon_sym_range] = ACTIONS(5610), + [anon_sym_i8] = ACTIONS(5610), + [anon_sym_i16] = ACTIONS(5610), + [anon_sym_i32] = ACTIONS(5610), + [anon_sym_i64] = ACTIONS(5610), + [anon_sym_u8] = ACTIONS(5610), + [anon_sym_u16] = ACTIONS(5610), + [anon_sym_u32] = ACTIONS(5610), + [anon_sym_u64] = ACTIONS(5610), + [anon_sym_isize] = ACTIONS(5610), + [anon_sym_usize] = ACTIONS(5610), + [anon_sym_f32] = ACTIONS(5610), + [anon_sym_f64] = ACTIONS(5610), + [anon_sym_c_char] = ACTIONS(5610), + [anon_sym_c_schar] = ACTIONS(5610), + [anon_sym_c_uchar] = ACTIONS(5610), + [anon_sym_c_short] = ACTIONS(5610), + [anon_sym_c_ushort] = ACTIONS(5610), + [anon_sym_c_int] = ACTIONS(5610), + [anon_sym_c_uint] = ACTIONS(5610), + [anon_sym_c_long] = ACTIONS(5610), + [anon_sym_c_ulong] = ACTIONS(5610), + [anon_sym_c_longlong] = ACTIONS(5610), + [anon_sym_c_ulonglong] = ACTIONS(5610), + [anon_sym_c_float] = ACTIONS(5610), + [anon_sym_c_double] = ACTIONS(5610), + [anon_sym_c_longdouble] = ACTIONS(5610), + [anon_sym_else] = ACTIONS(5610), + [anon_sym_DOT_DOT] = ACTIONS(5610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5608), + [anon_sym_orelse] = ACTIONS(5610), + [anon_sym_or] = ACTIONS(5610), + [anon_sym_and] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5608), + [anon_sym_BANG_EQ] = ACTIONS(5608), + [anon_sym_LT] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5610), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_AMP] = ACTIONS(5608), + [anon_sym_xor] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5608), + [anon_sym_LT_LT_PIPE] = ACTIONS(5608), + [anon_sym_PLUS] = ACTIONS(5608), + [anon_sym_SLASH] = ACTIONS(5608), + [anon_sym_catch] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5608), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5608), + }, + [STATE(7506)] = { + [sym_identifier] = ACTIONS(5614), + [anon_sym_func] = ACTIONS(5614), + [anon_sym_c_func] = ACTIONS(5614), + [anon_sym_struct] = ACTIONS(5614), + [anon_sym_LPAREN] = ACTIONS(5612), + [anon_sym_COMMA] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5612), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_PIPE] = ACTIONS(5612), + [anon_sym_struct_type_BANG] = ACTIONS(5612), + [anon_sym_QMARK] = ACTIONS(5612), + [anon_sym_AT] = ACTIONS(5612), + [anon_sym_STAR] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(5612), + [anon_sym_void] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_type] = ACTIONS(5614), + [anon_sym_anyopaque] = ACTIONS(5614), + [anon_sym_bool] = ACTIONS(5614), + [anon_sym_int] = ACTIONS(5614), + [anon_sym_uint] = ACTIONS(5614), + [anon_sym_float] = ACTIONS(5614), + [anon_sym_range] = ACTIONS(5614), + [anon_sym_i8] = ACTIONS(5614), + [anon_sym_i16] = ACTIONS(5614), + [anon_sym_i32] = ACTIONS(5614), + [anon_sym_i64] = ACTIONS(5614), + [anon_sym_u8] = ACTIONS(5614), + [anon_sym_u16] = ACTIONS(5614), + [anon_sym_u32] = ACTIONS(5614), + [anon_sym_u64] = ACTIONS(5614), + [anon_sym_isize] = ACTIONS(5614), + [anon_sym_usize] = ACTIONS(5614), + [anon_sym_f32] = ACTIONS(5614), + [anon_sym_f64] = ACTIONS(5614), + [anon_sym_c_char] = ACTIONS(5614), + [anon_sym_c_schar] = ACTIONS(5614), + [anon_sym_c_uchar] = ACTIONS(5614), + [anon_sym_c_short] = ACTIONS(5614), + [anon_sym_c_ushort] = ACTIONS(5614), + [anon_sym_c_int] = ACTIONS(5614), + [anon_sym_c_uint] = ACTIONS(5614), + [anon_sym_c_long] = ACTIONS(5614), + [anon_sym_c_ulong] = ACTIONS(5614), + [anon_sym_c_longlong] = ACTIONS(5614), + [anon_sym_c_ulonglong] = ACTIONS(5614), + [anon_sym_c_float] = ACTIONS(5614), + [anon_sym_c_double] = ACTIONS(5614), + [anon_sym_c_longdouble] = ACTIONS(5614), + [anon_sym_else] = ACTIONS(5614), + [anon_sym_DOT_DOT] = ACTIONS(5614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5612), + [anon_sym_orelse] = ACTIONS(5614), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5612), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5612), + [anon_sym_LT_LT_PIPE] = ACTIONS(5612), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_SLASH] = ACTIONS(5612), + [anon_sym_catch] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5612), + }, + [STATE(7507)] = { + [sym_identifier] = ACTIONS(5618), + [anon_sym_func] = ACTIONS(5618), + [anon_sym_c_func] = ACTIONS(5618), + [anon_sym_struct] = ACTIONS(5618), + [anon_sym_LPAREN] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5616), + [anon_sym_struct_type_BANG] = ACTIONS(5616), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_AT] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_void] = ACTIONS(5618), + [anon_sym_noreturn] = ACTIONS(5618), + [anon_sym_type] = ACTIONS(5618), + [anon_sym_anyopaque] = ACTIONS(5618), + [anon_sym_bool] = ACTIONS(5618), + [anon_sym_int] = ACTIONS(5618), + [anon_sym_uint] = ACTIONS(5618), + [anon_sym_float] = ACTIONS(5618), + [anon_sym_range] = ACTIONS(5618), + [anon_sym_i8] = ACTIONS(5618), + [anon_sym_i16] = ACTIONS(5618), + [anon_sym_i32] = ACTIONS(5618), + [anon_sym_i64] = ACTIONS(5618), + [anon_sym_u8] = ACTIONS(5618), + [anon_sym_u16] = ACTIONS(5618), + [anon_sym_u32] = ACTIONS(5618), + [anon_sym_u64] = ACTIONS(5618), + [anon_sym_isize] = ACTIONS(5618), + [anon_sym_usize] = ACTIONS(5618), + [anon_sym_f32] = ACTIONS(5618), + [anon_sym_f64] = ACTIONS(5618), + [anon_sym_c_char] = ACTIONS(5618), + [anon_sym_c_schar] = ACTIONS(5618), + [anon_sym_c_uchar] = ACTIONS(5618), + [anon_sym_c_short] = ACTIONS(5618), + [anon_sym_c_ushort] = ACTIONS(5618), + [anon_sym_c_int] = ACTIONS(5618), + [anon_sym_c_uint] = ACTIONS(5618), + [anon_sym_c_long] = ACTIONS(5618), + [anon_sym_c_ulong] = ACTIONS(5618), + [anon_sym_c_longlong] = ACTIONS(5618), + [anon_sym_c_ulonglong] = ACTIONS(5618), + [anon_sym_c_float] = ACTIONS(5618), + [anon_sym_c_double] = ACTIONS(5618), + [anon_sym_c_longdouble] = ACTIONS(5618), + [anon_sym_else] = ACTIONS(5618), + [anon_sym_DOT_DOT] = ACTIONS(5618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5616), + [anon_sym_orelse] = ACTIONS(5618), + [anon_sym_or] = ACTIONS(5618), + [anon_sym_and] = ACTIONS(5618), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5618), + [anon_sym_LT_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5618), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_xor] = ACTIONS(5618), + [anon_sym_LT_LT] = ACTIONS(5618), + [anon_sym_GT_GT] = ACTIONS(5616), + [anon_sym_LT_LT_PIPE] = ACTIONS(5616), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_SLASH] = ACTIONS(5616), + [anon_sym_catch] = ACTIONS(5618), + [anon_sym_DOT] = ACTIONS(5618), + [anon_sym_CARET] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5616), + }, + [STATE(7508)] = { + [sym_identifier] = ACTIONS(5622), + [anon_sym_func] = ACTIONS(5622), + [anon_sym_c_func] = ACTIONS(5622), + [anon_sym_struct] = ACTIONS(5622), + [anon_sym_LPAREN] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5620), + [anon_sym_struct_type_BANG] = ACTIONS(5620), + [anon_sym_QMARK] = ACTIONS(5620), + [anon_sym_AT] = ACTIONS(5620), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym_void] = ACTIONS(5622), + [anon_sym_noreturn] = ACTIONS(5622), + [anon_sym_type] = ACTIONS(5622), + [anon_sym_anyopaque] = ACTIONS(5622), + [anon_sym_bool] = ACTIONS(5622), + [anon_sym_int] = ACTIONS(5622), + [anon_sym_uint] = ACTIONS(5622), + [anon_sym_float] = ACTIONS(5622), + [anon_sym_range] = ACTIONS(5622), + [anon_sym_i8] = ACTIONS(5622), + [anon_sym_i16] = ACTIONS(5622), + [anon_sym_i32] = ACTIONS(5622), + [anon_sym_i64] = ACTIONS(5622), + [anon_sym_u8] = ACTIONS(5622), + [anon_sym_u16] = ACTIONS(5622), + [anon_sym_u32] = ACTIONS(5622), + [anon_sym_u64] = ACTIONS(5622), + [anon_sym_isize] = ACTIONS(5622), + [anon_sym_usize] = ACTIONS(5622), + [anon_sym_f32] = ACTIONS(5622), + [anon_sym_f64] = ACTIONS(5622), + [anon_sym_c_char] = ACTIONS(5622), + [anon_sym_c_schar] = ACTIONS(5622), + [anon_sym_c_uchar] = ACTIONS(5622), + [anon_sym_c_short] = ACTIONS(5622), + [anon_sym_c_ushort] = ACTIONS(5622), + [anon_sym_c_int] = ACTIONS(5622), + [anon_sym_c_uint] = ACTIONS(5622), + [anon_sym_c_long] = ACTIONS(5622), + [anon_sym_c_ulong] = ACTIONS(5622), + [anon_sym_c_longlong] = ACTIONS(5622), + [anon_sym_c_ulonglong] = ACTIONS(5622), + [anon_sym_c_float] = ACTIONS(5622), + [anon_sym_c_double] = ACTIONS(5622), + [anon_sym_c_longdouble] = ACTIONS(5622), + [anon_sym_else] = ACTIONS(5622), + [anon_sym_DOT_DOT] = ACTIONS(5622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5620), + [anon_sym_orelse] = ACTIONS(5622), + [anon_sym_or] = ACTIONS(5622), + [anon_sym_and] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5620), + [anon_sym_BANG_EQ] = ACTIONS(5620), + [anon_sym_LT] = ACTIONS(5622), + [anon_sym_LT_EQ] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5620), + [anon_sym_AMP] = ACTIONS(5620), + [anon_sym_xor] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5622), + [anon_sym_GT_GT] = ACTIONS(5620), + [anon_sym_LT_LT_PIPE] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5620), + [anon_sym_SLASH] = ACTIONS(5620), + [anon_sym_catch] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5622), + [anon_sym_CARET] = ACTIONS(5620), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5620), + }, + [STATE(7509)] = { + [sym_identifier] = ACTIONS(5626), + [anon_sym_func] = ACTIONS(5626), + [anon_sym_c_func] = ACTIONS(5626), + [anon_sym_struct] = ACTIONS(5626), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5624), + [anon_sym_struct_type_BANG] = ACTIONS(5624), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_AT] = ACTIONS(5624), + [anon_sym_STAR] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_void] = ACTIONS(5626), + [anon_sym_noreturn] = ACTIONS(5626), + [anon_sym_type] = ACTIONS(5626), + [anon_sym_anyopaque] = ACTIONS(5626), + [anon_sym_bool] = ACTIONS(5626), + [anon_sym_int] = ACTIONS(5626), + [anon_sym_uint] = ACTIONS(5626), + [anon_sym_float] = ACTIONS(5626), + [anon_sym_range] = ACTIONS(5626), + [anon_sym_i8] = ACTIONS(5626), + [anon_sym_i16] = ACTIONS(5626), + [anon_sym_i32] = ACTIONS(5626), + [anon_sym_i64] = ACTIONS(5626), + [anon_sym_u8] = ACTIONS(5626), + [anon_sym_u16] = ACTIONS(5626), + [anon_sym_u32] = ACTIONS(5626), + [anon_sym_u64] = ACTIONS(5626), + [anon_sym_isize] = ACTIONS(5626), + [anon_sym_usize] = ACTIONS(5626), + [anon_sym_f32] = ACTIONS(5626), + [anon_sym_f64] = ACTIONS(5626), + [anon_sym_c_char] = ACTIONS(5626), + [anon_sym_c_schar] = ACTIONS(5626), + [anon_sym_c_uchar] = ACTIONS(5626), + [anon_sym_c_short] = ACTIONS(5626), + [anon_sym_c_ushort] = ACTIONS(5626), + [anon_sym_c_int] = ACTIONS(5626), + [anon_sym_c_uint] = ACTIONS(5626), + [anon_sym_c_long] = ACTIONS(5626), + [anon_sym_c_ulong] = ACTIONS(5626), + [anon_sym_c_longlong] = ACTIONS(5626), + [anon_sym_c_ulonglong] = ACTIONS(5626), + [anon_sym_c_float] = ACTIONS(5626), + [anon_sym_c_double] = ACTIONS(5626), + [anon_sym_c_longdouble] = ACTIONS(5626), + [anon_sym_else] = ACTIONS(5626), + [anon_sym_DOT_DOT] = ACTIONS(5626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5624), + [anon_sym_orelse] = ACTIONS(5626), + [anon_sym_or] = ACTIONS(5626), + [anon_sym_and] = ACTIONS(5626), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_LT] = ACTIONS(5626), + [anon_sym_LT_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5626), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5626), + [anon_sym_LT_LT] = ACTIONS(5626), + [anon_sym_GT_GT] = ACTIONS(5624), + [anon_sym_LT_LT_PIPE] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5624), + [anon_sym_SLASH] = ACTIONS(5624), + [anon_sym_catch] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5626), + [anon_sym_CARET] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5624), + }, + [STATE(7510)] = { + [sym_identifier] = ACTIONS(5630), + [anon_sym_func] = ACTIONS(5630), + [anon_sym_c_func] = ACTIONS(5630), + [anon_sym_struct] = ACTIONS(5630), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_PIPE] = ACTIONS(5628), + [anon_sym_struct_type_BANG] = ACTIONS(5628), + [anon_sym_QMARK] = ACTIONS(5628), + [anon_sym_AT] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [anon_sym_void] = ACTIONS(5630), + [anon_sym_noreturn] = ACTIONS(5630), + [anon_sym_type] = ACTIONS(5630), + [anon_sym_anyopaque] = ACTIONS(5630), + [anon_sym_bool] = ACTIONS(5630), + [anon_sym_int] = ACTIONS(5630), + [anon_sym_uint] = ACTIONS(5630), + [anon_sym_float] = ACTIONS(5630), + [anon_sym_range] = ACTIONS(5630), + [anon_sym_i8] = ACTIONS(5630), + [anon_sym_i16] = ACTIONS(5630), + [anon_sym_i32] = ACTIONS(5630), + [anon_sym_i64] = ACTIONS(5630), + [anon_sym_u8] = ACTIONS(5630), + [anon_sym_u16] = ACTIONS(5630), + [anon_sym_u32] = ACTIONS(5630), + [anon_sym_u64] = ACTIONS(5630), + [anon_sym_isize] = ACTIONS(5630), + [anon_sym_usize] = ACTIONS(5630), + [anon_sym_f32] = ACTIONS(5630), + [anon_sym_f64] = ACTIONS(5630), + [anon_sym_c_char] = ACTIONS(5630), + [anon_sym_c_schar] = ACTIONS(5630), + [anon_sym_c_uchar] = ACTIONS(5630), + [anon_sym_c_short] = ACTIONS(5630), + [anon_sym_c_ushort] = ACTIONS(5630), + [anon_sym_c_int] = ACTIONS(5630), + [anon_sym_c_uint] = ACTIONS(5630), + [anon_sym_c_long] = ACTIONS(5630), + [anon_sym_c_ulong] = ACTIONS(5630), + [anon_sym_c_longlong] = ACTIONS(5630), + [anon_sym_c_ulonglong] = ACTIONS(5630), + [anon_sym_c_float] = ACTIONS(5630), + [anon_sym_c_double] = ACTIONS(5630), + [anon_sym_c_longdouble] = ACTIONS(5630), + [anon_sym_else] = ACTIONS(5630), + [anon_sym_DOT_DOT] = ACTIONS(5630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5628), + [anon_sym_orelse] = ACTIONS(5630), + [anon_sym_or] = ACTIONS(5630), + [anon_sym_and] = ACTIONS(5630), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5630), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT] = ACTIONS(5630), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5628), + [anon_sym_xor] = ACTIONS(5630), + [anon_sym_LT_LT] = ACTIONS(5630), + [anon_sym_GT_GT] = ACTIONS(5628), + [anon_sym_LT_LT_PIPE] = ACTIONS(5628), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_SLASH] = ACTIONS(5628), + [anon_sym_catch] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5630), + [anon_sym_CARET] = ACTIONS(5628), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5628), + }, + [STATE(7511)] = { + [sym_identifier] = ACTIONS(5634), + [anon_sym_func] = ACTIONS(5634), + [anon_sym_c_func] = ACTIONS(5634), + [anon_sym_struct] = ACTIONS(5634), + [anon_sym_LPAREN] = ACTIONS(5632), + [anon_sym_COMMA] = ACTIONS(5632), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_DASH] = ACTIONS(5632), + [anon_sym_PIPE] = ACTIONS(5632), + [anon_sym_struct_type_BANG] = ACTIONS(5632), + [anon_sym_QMARK] = ACTIONS(5632), + [anon_sym_AT] = ACTIONS(5632), + [anon_sym_STAR] = ACTIONS(5632), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_void] = ACTIONS(5634), + [anon_sym_noreturn] = ACTIONS(5634), + [anon_sym_type] = ACTIONS(5634), + [anon_sym_anyopaque] = ACTIONS(5634), + [anon_sym_bool] = ACTIONS(5634), + [anon_sym_int] = ACTIONS(5634), + [anon_sym_uint] = ACTIONS(5634), + [anon_sym_float] = ACTIONS(5634), + [anon_sym_range] = ACTIONS(5634), + [anon_sym_i8] = ACTIONS(5634), + [anon_sym_i16] = ACTIONS(5634), + [anon_sym_i32] = ACTIONS(5634), + [anon_sym_i64] = ACTIONS(5634), + [anon_sym_u8] = ACTIONS(5634), + [anon_sym_u16] = ACTIONS(5634), + [anon_sym_u32] = ACTIONS(5634), + [anon_sym_u64] = ACTIONS(5634), + [anon_sym_isize] = ACTIONS(5634), + [anon_sym_usize] = ACTIONS(5634), + [anon_sym_f32] = ACTIONS(5634), + [anon_sym_f64] = ACTIONS(5634), + [anon_sym_c_char] = ACTIONS(5634), + [anon_sym_c_schar] = ACTIONS(5634), + [anon_sym_c_uchar] = ACTIONS(5634), + [anon_sym_c_short] = ACTIONS(5634), + [anon_sym_c_ushort] = ACTIONS(5634), + [anon_sym_c_int] = ACTIONS(5634), + [anon_sym_c_uint] = ACTIONS(5634), + [anon_sym_c_long] = ACTIONS(5634), + [anon_sym_c_ulong] = ACTIONS(5634), + [anon_sym_c_longlong] = ACTIONS(5634), + [anon_sym_c_ulonglong] = ACTIONS(5634), + [anon_sym_c_float] = ACTIONS(5634), + [anon_sym_c_double] = ACTIONS(5634), + [anon_sym_c_longdouble] = ACTIONS(5634), + [anon_sym_else] = ACTIONS(5634), + [anon_sym_DOT_DOT] = ACTIONS(5634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5632), + [anon_sym_orelse] = ACTIONS(5634), + [anon_sym_or] = ACTIONS(5634), + [anon_sym_and] = ACTIONS(5634), + [anon_sym_EQ_EQ] = ACTIONS(5632), + [anon_sym_BANG_EQ] = ACTIONS(5632), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_LT_EQ] = ACTIONS(5632), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_GT_EQ] = ACTIONS(5632), + [anon_sym_AMP] = ACTIONS(5632), + [anon_sym_xor] = ACTIONS(5634), + [anon_sym_LT_LT] = ACTIONS(5634), + [anon_sym_GT_GT] = ACTIONS(5632), + [anon_sym_LT_LT_PIPE] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5632), + [anon_sym_SLASH] = ACTIONS(5632), + [anon_sym_catch] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5632), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5632), + }, + [STATE(7512)] = { + [sym_identifier] = ACTIONS(5638), + [anon_sym_func] = ACTIONS(5638), + [anon_sym_c_func] = ACTIONS(5638), + [anon_sym_struct] = ACTIONS(5638), + [anon_sym_LPAREN] = ACTIONS(5636), + [anon_sym_COMMA] = ACTIONS(5636), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_struct_type_BANG] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5636), + [anon_sym_AT] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_void] = ACTIONS(5638), + [anon_sym_noreturn] = ACTIONS(5638), + [anon_sym_type] = ACTIONS(5638), + [anon_sym_anyopaque] = ACTIONS(5638), + [anon_sym_bool] = ACTIONS(5638), + [anon_sym_int] = ACTIONS(5638), + [anon_sym_uint] = ACTIONS(5638), + [anon_sym_float] = ACTIONS(5638), + [anon_sym_range] = ACTIONS(5638), + [anon_sym_i8] = ACTIONS(5638), + [anon_sym_i16] = ACTIONS(5638), + [anon_sym_i32] = ACTIONS(5638), + [anon_sym_i64] = ACTIONS(5638), + [anon_sym_u8] = ACTIONS(5638), + [anon_sym_u16] = ACTIONS(5638), + [anon_sym_u32] = ACTIONS(5638), + [anon_sym_u64] = ACTIONS(5638), + [anon_sym_isize] = ACTIONS(5638), + [anon_sym_usize] = ACTIONS(5638), + [anon_sym_f32] = ACTIONS(5638), + [anon_sym_f64] = ACTIONS(5638), + [anon_sym_c_char] = ACTIONS(5638), + [anon_sym_c_schar] = ACTIONS(5638), + [anon_sym_c_uchar] = ACTIONS(5638), + [anon_sym_c_short] = ACTIONS(5638), + [anon_sym_c_ushort] = ACTIONS(5638), + [anon_sym_c_int] = ACTIONS(5638), + [anon_sym_c_uint] = ACTIONS(5638), + [anon_sym_c_long] = ACTIONS(5638), + [anon_sym_c_ulong] = ACTIONS(5638), + [anon_sym_c_longlong] = ACTIONS(5638), + [anon_sym_c_ulonglong] = ACTIONS(5638), + [anon_sym_c_float] = ACTIONS(5638), + [anon_sym_c_double] = ACTIONS(5638), + [anon_sym_c_longdouble] = ACTIONS(5638), + [anon_sym_else] = ACTIONS(5638), + [anon_sym_DOT_DOT] = ACTIONS(5638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5636), + [anon_sym_orelse] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5638), + [anon_sym_and] = ACTIONS(5638), + [anon_sym_EQ_EQ] = ACTIONS(5636), + [anon_sym_BANG_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_GT] = ACTIONS(5638), + [anon_sym_GT_EQ] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_xor] = ACTIONS(5638), + [anon_sym_LT_LT] = ACTIONS(5638), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym_LT_LT_PIPE] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_catch] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5638), + [anon_sym_CARET] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5636), + }, + [STATE(7513)] = { + [sym_identifier] = ACTIONS(5642), + [anon_sym_func] = ACTIONS(5642), + [anon_sym_c_func] = ACTIONS(5642), + [anon_sym_struct] = ACTIONS(5642), + [anon_sym_LPAREN] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5640), + [anon_sym_struct_type_BANG] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_AT] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5640), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_void] = ACTIONS(5642), + [anon_sym_noreturn] = ACTIONS(5642), + [anon_sym_type] = ACTIONS(5642), + [anon_sym_anyopaque] = ACTIONS(5642), + [anon_sym_bool] = ACTIONS(5642), + [anon_sym_int] = ACTIONS(5642), + [anon_sym_uint] = ACTIONS(5642), + [anon_sym_float] = ACTIONS(5642), + [anon_sym_range] = ACTIONS(5642), + [anon_sym_i8] = ACTIONS(5642), + [anon_sym_i16] = ACTIONS(5642), + [anon_sym_i32] = ACTIONS(5642), + [anon_sym_i64] = ACTIONS(5642), + [anon_sym_u8] = ACTIONS(5642), + [anon_sym_u16] = ACTIONS(5642), + [anon_sym_u32] = ACTIONS(5642), + [anon_sym_u64] = ACTIONS(5642), + [anon_sym_isize] = ACTIONS(5642), + [anon_sym_usize] = ACTIONS(5642), + [anon_sym_f32] = ACTIONS(5642), + [anon_sym_f64] = ACTIONS(5642), + [anon_sym_c_char] = ACTIONS(5642), + [anon_sym_c_schar] = ACTIONS(5642), + [anon_sym_c_uchar] = ACTIONS(5642), + [anon_sym_c_short] = ACTIONS(5642), + [anon_sym_c_ushort] = ACTIONS(5642), + [anon_sym_c_int] = ACTIONS(5642), + [anon_sym_c_uint] = ACTIONS(5642), + [anon_sym_c_long] = ACTIONS(5642), + [anon_sym_c_ulong] = ACTIONS(5642), + [anon_sym_c_longlong] = ACTIONS(5642), + [anon_sym_c_ulonglong] = ACTIONS(5642), + [anon_sym_c_float] = ACTIONS(5642), + [anon_sym_c_double] = ACTIONS(5642), + [anon_sym_c_longdouble] = ACTIONS(5642), + [anon_sym_else] = ACTIONS(5642), + [anon_sym_DOT_DOT] = ACTIONS(5642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5640), + [anon_sym_orelse] = ACTIONS(5642), + [anon_sym_or] = ACTIONS(5642), + [anon_sym_and] = ACTIONS(5642), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_LT] = ACTIONS(5642), + [anon_sym_LT_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5642), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5642), + [anon_sym_LT_LT] = ACTIONS(5642), + [anon_sym_GT_GT] = ACTIONS(5640), + [anon_sym_LT_LT_PIPE] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5640), + [anon_sym_SLASH] = ACTIONS(5640), + [anon_sym_catch] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5642), + [anon_sym_CARET] = ACTIONS(5640), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5640), + }, + [STATE(7514)] = { + [sym_identifier] = ACTIONS(5646), + [anon_sym_func] = ACTIONS(5646), + [anon_sym_c_func] = ACTIONS(5646), + [anon_sym_struct] = ACTIONS(5646), + [anon_sym_LPAREN] = ACTIONS(5644), + [anon_sym_COMMA] = ACTIONS(5644), + [anon_sym_RBRACE] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5644), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_struct_type_BANG] = ACTIONS(5644), + [anon_sym_QMARK] = ACTIONS(5644), + [anon_sym_AT] = ACTIONS(5644), + [anon_sym_STAR] = ACTIONS(5644), + [anon_sym_LBRACK] = ACTIONS(5644), + [anon_sym_void] = ACTIONS(5646), + [anon_sym_noreturn] = ACTIONS(5646), + [anon_sym_type] = ACTIONS(5646), + [anon_sym_anyopaque] = ACTIONS(5646), + [anon_sym_bool] = ACTIONS(5646), + [anon_sym_int] = ACTIONS(5646), + [anon_sym_uint] = ACTIONS(5646), + [anon_sym_float] = ACTIONS(5646), + [anon_sym_range] = ACTIONS(5646), + [anon_sym_i8] = ACTIONS(5646), + [anon_sym_i16] = ACTIONS(5646), + [anon_sym_i32] = ACTIONS(5646), + [anon_sym_i64] = ACTIONS(5646), + [anon_sym_u8] = ACTIONS(5646), + [anon_sym_u16] = ACTIONS(5646), + [anon_sym_u32] = ACTIONS(5646), + [anon_sym_u64] = ACTIONS(5646), + [anon_sym_isize] = ACTIONS(5646), + [anon_sym_usize] = ACTIONS(5646), + [anon_sym_f32] = ACTIONS(5646), + [anon_sym_f64] = ACTIONS(5646), + [anon_sym_c_char] = ACTIONS(5646), + [anon_sym_c_schar] = ACTIONS(5646), + [anon_sym_c_uchar] = ACTIONS(5646), + [anon_sym_c_short] = ACTIONS(5646), + [anon_sym_c_ushort] = ACTIONS(5646), + [anon_sym_c_int] = ACTIONS(5646), + [anon_sym_c_uint] = ACTIONS(5646), + [anon_sym_c_long] = ACTIONS(5646), + [anon_sym_c_ulong] = ACTIONS(5646), + [anon_sym_c_longlong] = ACTIONS(5646), + [anon_sym_c_ulonglong] = ACTIONS(5646), + [anon_sym_c_float] = ACTIONS(5646), + [anon_sym_c_double] = ACTIONS(5646), + [anon_sym_c_longdouble] = ACTIONS(5646), + [anon_sym_else] = ACTIONS(5646), + [anon_sym_DOT_DOT] = ACTIONS(5646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5644), + [anon_sym_orelse] = ACTIONS(5646), + [anon_sym_or] = ACTIONS(5646), + [anon_sym_and] = ACTIONS(5646), + [anon_sym_EQ_EQ] = ACTIONS(5644), + [anon_sym_BANG_EQ] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_LT_EQ] = ACTIONS(5644), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5644), + [anon_sym_AMP] = ACTIONS(5644), + [anon_sym_xor] = ACTIONS(5646), + [anon_sym_LT_LT] = ACTIONS(5646), + [anon_sym_GT_GT] = ACTIONS(5644), + [anon_sym_LT_LT_PIPE] = ACTIONS(5644), + [anon_sym_PLUS] = ACTIONS(5644), + [anon_sym_SLASH] = ACTIONS(5644), + [anon_sym_catch] = ACTIONS(5646), + [anon_sym_DOT] = ACTIONS(5646), + [anon_sym_CARET] = ACTIONS(5644), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5644), + }, + [STATE(7515)] = { + [sym_identifier] = ACTIONS(5788), + [anon_sym_func] = ACTIONS(5788), + [anon_sym_c_func] = ACTIONS(5788), + [anon_sym_struct] = ACTIONS(5788), + [anon_sym_LPAREN] = ACTIONS(5786), + [anon_sym_COMMA] = ACTIONS(5786), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5786), + [anon_sym_struct_type_BANG] = ACTIONS(5786), + [anon_sym_QMARK] = ACTIONS(5786), + [anon_sym_AT] = ACTIONS(5786), + [anon_sym_STAR] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_void] = ACTIONS(5788), + [anon_sym_noreturn] = ACTIONS(5788), + [anon_sym_type] = ACTIONS(5788), + [anon_sym_anyopaque] = ACTIONS(5788), + [anon_sym_bool] = ACTIONS(5788), + [anon_sym_int] = ACTIONS(5788), + [anon_sym_uint] = ACTIONS(5788), + [anon_sym_float] = ACTIONS(5788), + [anon_sym_range] = ACTIONS(5788), + [anon_sym_i8] = ACTIONS(5788), + [anon_sym_i16] = ACTIONS(5788), + [anon_sym_i32] = ACTIONS(5788), + [anon_sym_i64] = ACTIONS(5788), + [anon_sym_u8] = ACTIONS(5788), + [anon_sym_u16] = ACTIONS(5788), + [anon_sym_u32] = ACTIONS(5788), + [anon_sym_u64] = ACTIONS(5788), + [anon_sym_isize] = ACTIONS(5788), + [anon_sym_usize] = ACTIONS(5788), + [anon_sym_f32] = ACTIONS(5788), + [anon_sym_f64] = ACTIONS(5788), + [anon_sym_c_char] = ACTIONS(5788), + [anon_sym_c_schar] = ACTIONS(5788), + [anon_sym_c_uchar] = ACTIONS(5788), + [anon_sym_c_short] = ACTIONS(5788), + [anon_sym_c_ushort] = ACTIONS(5788), + [anon_sym_c_int] = ACTIONS(5788), + [anon_sym_c_uint] = ACTIONS(5788), + [anon_sym_c_long] = ACTIONS(5788), + [anon_sym_c_ulong] = ACTIONS(5788), + [anon_sym_c_longlong] = ACTIONS(5788), + [anon_sym_c_ulonglong] = ACTIONS(5788), + [anon_sym_c_float] = ACTIONS(5788), + [anon_sym_c_double] = ACTIONS(5788), + [anon_sym_c_longdouble] = ACTIONS(5788), + [anon_sym_else] = ACTIONS(5788), + [anon_sym_DOT_DOT] = ACTIONS(5788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5786), + [anon_sym_orelse] = ACTIONS(5788), + [anon_sym_or] = ACTIONS(5788), + [anon_sym_and] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5786), + [anon_sym_BANG_EQ] = ACTIONS(5786), + [anon_sym_LT] = ACTIONS(5788), + [anon_sym_LT_EQ] = ACTIONS(5786), + [anon_sym_GT] = ACTIONS(5788), + [anon_sym_GT_EQ] = ACTIONS(5786), + [anon_sym_AMP] = ACTIONS(5786), + [anon_sym_xor] = ACTIONS(5788), + [anon_sym_LT_LT] = ACTIONS(5788), + [anon_sym_GT_GT] = ACTIONS(5786), + [anon_sym_LT_LT_PIPE] = ACTIONS(5786), + [anon_sym_PLUS] = ACTIONS(5786), + [anon_sym_SLASH] = ACTIONS(5786), + [anon_sym_catch] = ACTIONS(5788), + [anon_sym_DOT] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5786), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5786), + }, + [STATE(7516)] = { + [sym_identifier] = ACTIONS(5736), + [anon_sym_func] = ACTIONS(5736), + [anon_sym_c_func] = ACTIONS(5736), + [anon_sym_struct] = ACTIONS(5736), + [anon_sym_LPAREN] = ACTIONS(5734), + [anon_sym_COMMA] = ACTIONS(5734), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_DASH] = ACTIONS(5734), + [anon_sym_PIPE] = ACTIONS(5734), + [anon_sym_struct_type_BANG] = ACTIONS(5734), + [anon_sym_QMARK] = ACTIONS(5734), + [anon_sym_AT] = ACTIONS(5734), + [anon_sym_STAR] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5734), + [anon_sym_void] = ACTIONS(5736), + [anon_sym_noreturn] = ACTIONS(5736), + [anon_sym_type] = ACTIONS(5736), + [anon_sym_anyopaque] = ACTIONS(5736), + [anon_sym_bool] = ACTIONS(5736), + [anon_sym_int] = ACTIONS(5736), + [anon_sym_uint] = ACTIONS(5736), + [anon_sym_float] = ACTIONS(5736), + [anon_sym_range] = ACTIONS(5736), + [anon_sym_i8] = ACTIONS(5736), + [anon_sym_i16] = ACTIONS(5736), + [anon_sym_i32] = ACTIONS(5736), + [anon_sym_i64] = ACTIONS(5736), + [anon_sym_u8] = ACTIONS(5736), + [anon_sym_u16] = ACTIONS(5736), + [anon_sym_u32] = ACTIONS(5736), + [anon_sym_u64] = ACTIONS(5736), + [anon_sym_isize] = ACTIONS(5736), + [anon_sym_usize] = ACTIONS(5736), + [anon_sym_f32] = ACTIONS(5736), + [anon_sym_f64] = ACTIONS(5736), + [anon_sym_c_char] = ACTIONS(5736), + [anon_sym_c_schar] = ACTIONS(5736), + [anon_sym_c_uchar] = ACTIONS(5736), + [anon_sym_c_short] = ACTIONS(5736), + [anon_sym_c_ushort] = ACTIONS(5736), + [anon_sym_c_int] = ACTIONS(5736), + [anon_sym_c_uint] = ACTIONS(5736), + [anon_sym_c_long] = ACTIONS(5736), + [anon_sym_c_ulong] = ACTIONS(5736), + [anon_sym_c_longlong] = ACTIONS(5736), + [anon_sym_c_ulonglong] = ACTIONS(5736), + [anon_sym_c_float] = ACTIONS(5736), + [anon_sym_c_double] = ACTIONS(5736), + [anon_sym_c_longdouble] = ACTIONS(5736), + [anon_sym_else] = ACTIONS(5736), + [anon_sym_DOT_DOT] = ACTIONS(5736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5734), + [anon_sym_orelse] = ACTIONS(5736), + [anon_sym_or] = ACTIONS(5736), + [anon_sym_and] = ACTIONS(5736), + [anon_sym_EQ_EQ] = ACTIONS(5734), + [anon_sym_BANG_EQ] = ACTIONS(5734), + [anon_sym_LT] = ACTIONS(5736), + [anon_sym_LT_EQ] = ACTIONS(5734), + [anon_sym_GT] = ACTIONS(5736), + [anon_sym_GT_EQ] = ACTIONS(5734), + [anon_sym_AMP] = ACTIONS(5734), + [anon_sym_xor] = ACTIONS(5736), + [anon_sym_LT_LT] = ACTIONS(5736), + [anon_sym_GT_GT] = ACTIONS(5734), + [anon_sym_LT_LT_PIPE] = ACTIONS(5734), + [anon_sym_PLUS] = ACTIONS(5734), + [anon_sym_SLASH] = ACTIONS(5734), + [anon_sym_catch] = ACTIONS(5736), + [anon_sym_DOT] = ACTIONS(5736), + [anon_sym_CARET] = ACTIONS(5734), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5734), + }, + [STATE(7517)] = { + [sym_identifier] = ACTIONS(5792), + [anon_sym_func] = ACTIONS(5792), + [anon_sym_c_func] = ACTIONS(5792), + [anon_sym_struct] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(5790), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_DASH] = ACTIONS(5790), + [anon_sym_PIPE] = ACTIONS(5790), + [anon_sym_struct_type_BANG] = ACTIONS(5790), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_AT] = ACTIONS(5790), + [anon_sym_STAR] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(5790), + [anon_sym_void] = ACTIONS(5792), + [anon_sym_noreturn] = ACTIONS(5792), + [anon_sym_type] = ACTIONS(5792), + [anon_sym_anyopaque] = ACTIONS(5792), + [anon_sym_bool] = ACTIONS(5792), + [anon_sym_int] = ACTIONS(5792), + [anon_sym_uint] = ACTIONS(5792), + [anon_sym_float] = ACTIONS(5792), + [anon_sym_range] = ACTIONS(5792), + [anon_sym_i8] = ACTIONS(5792), + [anon_sym_i16] = ACTIONS(5792), + [anon_sym_i32] = ACTIONS(5792), + [anon_sym_i64] = ACTIONS(5792), + [anon_sym_u8] = ACTIONS(5792), + [anon_sym_u16] = ACTIONS(5792), + [anon_sym_u32] = ACTIONS(5792), + [anon_sym_u64] = ACTIONS(5792), + [anon_sym_isize] = ACTIONS(5792), + [anon_sym_usize] = ACTIONS(5792), + [anon_sym_f32] = ACTIONS(5792), + [anon_sym_f64] = ACTIONS(5792), + [anon_sym_c_char] = ACTIONS(5792), + [anon_sym_c_schar] = ACTIONS(5792), + [anon_sym_c_uchar] = ACTIONS(5792), + [anon_sym_c_short] = ACTIONS(5792), + [anon_sym_c_ushort] = ACTIONS(5792), + [anon_sym_c_int] = ACTIONS(5792), + [anon_sym_c_uint] = ACTIONS(5792), + [anon_sym_c_long] = ACTIONS(5792), + [anon_sym_c_ulong] = ACTIONS(5792), + [anon_sym_c_longlong] = ACTIONS(5792), + [anon_sym_c_ulonglong] = ACTIONS(5792), + [anon_sym_c_float] = ACTIONS(5792), + [anon_sym_c_double] = ACTIONS(5792), + [anon_sym_c_longdouble] = ACTIONS(5792), + [anon_sym_else] = ACTIONS(5792), + [anon_sym_DOT_DOT] = ACTIONS(5792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5790), + [anon_sym_orelse] = ACTIONS(5792), + [anon_sym_or] = ACTIONS(5792), + [anon_sym_and] = ACTIONS(5792), + [anon_sym_EQ_EQ] = ACTIONS(5790), + [anon_sym_BANG_EQ] = ACTIONS(5790), + [anon_sym_LT] = ACTIONS(5792), + [anon_sym_LT_EQ] = ACTIONS(5790), + [anon_sym_GT] = ACTIONS(5792), + [anon_sym_GT_EQ] = ACTIONS(5790), + [anon_sym_AMP] = ACTIONS(5790), + [anon_sym_xor] = ACTIONS(5792), + [anon_sym_LT_LT] = ACTIONS(5792), + [anon_sym_GT_GT] = ACTIONS(5790), + [anon_sym_LT_LT_PIPE] = ACTIONS(5790), + [anon_sym_PLUS] = ACTIONS(5790), + [anon_sym_SLASH] = ACTIONS(5790), + [anon_sym_catch] = ACTIONS(5792), + [anon_sym_DOT] = ACTIONS(5792), + [anon_sym_CARET] = ACTIONS(5790), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5790), + }, + [STATE(7518)] = { + [sym_identifier] = ACTIONS(6142), + [anon_sym_func] = ACTIONS(6142), + [anon_sym_c_func] = ACTIONS(6142), + [anon_sym_struct] = ACTIONS(6142), + [anon_sym_LPAREN] = ACTIONS(6140), + [anon_sym_COMMA] = ACTIONS(6140), + [anon_sym_RBRACE] = ACTIONS(6140), + [anon_sym_DASH] = ACTIONS(6140), + [anon_sym_PIPE] = ACTIONS(6140), + [anon_sym_struct_type_BANG] = ACTIONS(6140), + [anon_sym_QMARK] = ACTIONS(6140), + [anon_sym_AT] = ACTIONS(6140), + [anon_sym_STAR] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(6140), + [anon_sym_void] = ACTIONS(6142), + [anon_sym_noreturn] = ACTIONS(6142), + [anon_sym_type] = ACTIONS(6142), + [anon_sym_anyopaque] = ACTIONS(6142), + [anon_sym_bool] = ACTIONS(6142), + [anon_sym_int] = ACTIONS(6142), + [anon_sym_uint] = ACTIONS(6142), + [anon_sym_float] = ACTIONS(6142), + [anon_sym_range] = ACTIONS(6142), + [anon_sym_i8] = ACTIONS(6142), + [anon_sym_i16] = ACTIONS(6142), + [anon_sym_i32] = ACTIONS(6142), + [anon_sym_i64] = ACTIONS(6142), + [anon_sym_u8] = ACTIONS(6142), + [anon_sym_u16] = ACTIONS(6142), + [anon_sym_u32] = ACTIONS(6142), + [anon_sym_u64] = ACTIONS(6142), + [anon_sym_isize] = ACTIONS(6142), + [anon_sym_usize] = ACTIONS(6142), + [anon_sym_f32] = ACTIONS(6142), + [anon_sym_f64] = ACTIONS(6142), + [anon_sym_c_char] = ACTIONS(6142), + [anon_sym_c_schar] = ACTIONS(6142), + [anon_sym_c_uchar] = ACTIONS(6142), + [anon_sym_c_short] = ACTIONS(6142), + [anon_sym_c_ushort] = ACTIONS(6142), + [anon_sym_c_int] = ACTIONS(6142), + [anon_sym_c_uint] = ACTIONS(6142), + [anon_sym_c_long] = ACTIONS(6142), + [anon_sym_c_ulong] = ACTIONS(6142), + [anon_sym_c_longlong] = ACTIONS(6142), + [anon_sym_c_ulonglong] = ACTIONS(6142), + [anon_sym_c_float] = ACTIONS(6142), + [anon_sym_c_double] = ACTIONS(6142), + [anon_sym_c_longdouble] = ACTIONS(6142), + [anon_sym_else] = ACTIONS(6142), + [anon_sym_DOT_DOT] = ACTIONS(6142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6140), + [anon_sym_orelse] = ACTIONS(6142), + [anon_sym_or] = ACTIONS(6142), + [anon_sym_and] = ACTIONS(6142), + [anon_sym_EQ_EQ] = ACTIONS(6140), + [anon_sym_BANG_EQ] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(6142), + [anon_sym_LT_EQ] = ACTIONS(6140), + [anon_sym_GT] = ACTIONS(6142), + [anon_sym_GT_EQ] = ACTIONS(6140), + [anon_sym_AMP] = ACTIONS(6140), + [anon_sym_xor] = ACTIONS(6142), + [anon_sym_LT_LT] = ACTIONS(6142), + [anon_sym_GT_GT] = ACTIONS(6140), + [anon_sym_LT_LT_PIPE] = ACTIONS(6140), + [anon_sym_PLUS] = ACTIONS(6140), + [anon_sym_SLASH] = ACTIONS(6140), + [anon_sym_catch] = ACTIONS(6142), + [anon_sym_DOT] = ACTIONS(6142), + [anon_sym_CARET] = ACTIONS(6140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6140), + }, + [STATE(7519)] = { + [sym_identifier] = ACTIONS(6198), + [anon_sym_func] = ACTIONS(6198), + [anon_sym_c_func] = ACTIONS(6198), + [anon_sym_struct] = ACTIONS(6198), + [anon_sym_LPAREN] = ACTIONS(6196), + [anon_sym_COMMA] = ACTIONS(6196), + [anon_sym_RBRACE] = ACTIONS(6196), + [anon_sym_DASH] = ACTIONS(6196), + [anon_sym_PIPE] = ACTIONS(6196), + [anon_sym_struct_type_BANG] = ACTIONS(6196), + [anon_sym_QMARK] = ACTIONS(6196), + [anon_sym_AT] = ACTIONS(6196), + [anon_sym_STAR] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(6196), + [anon_sym_void] = ACTIONS(6198), + [anon_sym_noreturn] = ACTIONS(6198), + [anon_sym_type] = ACTIONS(6198), + [anon_sym_anyopaque] = ACTIONS(6198), + [anon_sym_bool] = ACTIONS(6198), + [anon_sym_int] = ACTIONS(6198), + [anon_sym_uint] = ACTIONS(6198), + [anon_sym_float] = ACTIONS(6198), + [anon_sym_range] = ACTIONS(6198), + [anon_sym_i8] = ACTIONS(6198), + [anon_sym_i16] = ACTIONS(6198), + [anon_sym_i32] = ACTIONS(6198), + [anon_sym_i64] = ACTIONS(6198), + [anon_sym_u8] = ACTIONS(6198), + [anon_sym_u16] = ACTIONS(6198), + [anon_sym_u32] = ACTIONS(6198), + [anon_sym_u64] = ACTIONS(6198), + [anon_sym_isize] = ACTIONS(6198), + [anon_sym_usize] = ACTIONS(6198), + [anon_sym_f32] = ACTIONS(6198), + [anon_sym_f64] = ACTIONS(6198), + [anon_sym_c_char] = ACTIONS(6198), + [anon_sym_c_schar] = ACTIONS(6198), + [anon_sym_c_uchar] = ACTIONS(6198), + [anon_sym_c_short] = ACTIONS(6198), + [anon_sym_c_ushort] = ACTIONS(6198), + [anon_sym_c_int] = ACTIONS(6198), + [anon_sym_c_uint] = ACTIONS(6198), + [anon_sym_c_long] = ACTIONS(6198), + [anon_sym_c_ulong] = ACTIONS(6198), + [anon_sym_c_longlong] = ACTIONS(6198), + [anon_sym_c_ulonglong] = ACTIONS(6198), + [anon_sym_c_float] = ACTIONS(6198), + [anon_sym_c_double] = ACTIONS(6198), + [anon_sym_c_longdouble] = ACTIONS(6198), + [anon_sym_else] = ACTIONS(6198), + [anon_sym_DOT_DOT] = ACTIONS(6198), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6196), + [anon_sym_orelse] = ACTIONS(6198), + [anon_sym_or] = ACTIONS(6198), + [anon_sym_and] = ACTIONS(6198), + [anon_sym_EQ_EQ] = ACTIONS(6196), + [anon_sym_BANG_EQ] = ACTIONS(6196), + [anon_sym_LT] = ACTIONS(6198), + [anon_sym_LT_EQ] = ACTIONS(6196), + [anon_sym_GT] = ACTIONS(6198), + [anon_sym_GT_EQ] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6196), + [anon_sym_xor] = ACTIONS(6198), + [anon_sym_LT_LT] = ACTIONS(6198), + [anon_sym_GT_GT] = ACTIONS(6196), + [anon_sym_LT_LT_PIPE] = ACTIONS(6196), + [anon_sym_PLUS] = ACTIONS(6196), + [anon_sym_SLASH] = ACTIONS(6196), + [anon_sym_catch] = ACTIONS(6198), + [anon_sym_DOT] = ACTIONS(6198), + [anon_sym_CARET] = ACTIONS(6196), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6196), + }, + [STATE(7520)] = { + [sym_identifier] = ACTIONS(1194), + [anon_sym_func] = ACTIONS(1194), + [anon_sym_c_func] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_struct_type_BANG] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_noreturn] = 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_else] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_xor] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1194), + [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_catch] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1198), + }, + [STATE(7521)] = { + [sym_identifier] = ACTIONS(6256), + [anon_sym_func] = ACTIONS(6256), + [anon_sym_c_func] = ACTIONS(6256), + [anon_sym_struct] = ACTIONS(6256), + [anon_sym_LPAREN] = ACTIONS(6254), + [anon_sym_COMMA] = ACTIONS(6254), + [anon_sym_RBRACE] = ACTIONS(6254), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_struct_type_BANG] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6254), + [anon_sym_AT] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_void] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym_type] = ACTIONS(6256), + [anon_sym_anyopaque] = ACTIONS(6256), + [anon_sym_bool] = ACTIONS(6256), + [anon_sym_int] = ACTIONS(6256), + [anon_sym_uint] = ACTIONS(6256), + [anon_sym_float] = ACTIONS(6256), + [anon_sym_range] = ACTIONS(6256), + [anon_sym_i8] = ACTIONS(6256), + [anon_sym_i16] = ACTIONS(6256), + [anon_sym_i32] = ACTIONS(6256), + [anon_sym_i64] = ACTIONS(6256), + [anon_sym_u8] = ACTIONS(6256), + [anon_sym_u16] = ACTIONS(6256), + [anon_sym_u32] = ACTIONS(6256), + [anon_sym_u64] = ACTIONS(6256), + [anon_sym_isize] = ACTIONS(6256), + [anon_sym_usize] = ACTIONS(6256), + [anon_sym_f32] = ACTIONS(6256), + [anon_sym_f64] = ACTIONS(6256), + [anon_sym_c_char] = ACTIONS(6256), + [anon_sym_c_schar] = ACTIONS(6256), + [anon_sym_c_uchar] = ACTIONS(6256), + [anon_sym_c_short] = ACTIONS(6256), + [anon_sym_c_ushort] = ACTIONS(6256), + [anon_sym_c_int] = ACTIONS(6256), + [anon_sym_c_uint] = ACTIONS(6256), + [anon_sym_c_long] = ACTIONS(6256), + [anon_sym_c_ulong] = ACTIONS(6256), + [anon_sym_c_longlong] = ACTIONS(6256), + [anon_sym_c_ulonglong] = ACTIONS(6256), + [anon_sym_c_float] = ACTIONS(6256), + [anon_sym_c_double] = ACTIONS(6256), + [anon_sym_c_longdouble] = ACTIONS(6256), + [anon_sym_else] = ACTIONS(6256), + [anon_sym_DOT_DOT] = ACTIONS(6256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6254), + [anon_sym_orelse] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6256), + [anon_sym_and] = ACTIONS(6256), + [anon_sym_EQ_EQ] = ACTIONS(6254), + [anon_sym_BANG_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_GT] = ACTIONS(6256), + [anon_sym_GT_EQ] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6256), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym_LT_LT_PIPE] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_catch] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6256), + [anon_sym_CARET] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6254), + }, + [STATE(7522)] = { + [sym_identifier] = ACTIONS(6152), + [anon_sym_func] = ACTIONS(6152), + [anon_sym_c_func] = ACTIONS(6152), + [anon_sym_struct] = ACTIONS(6152), + [anon_sym_LPAREN] = ACTIONS(6150), + [anon_sym_COMMA] = ACTIONS(6150), + [anon_sym_RBRACE] = ACTIONS(6150), + [anon_sym_DASH] = ACTIONS(6150), + [anon_sym_PIPE] = ACTIONS(6150), + [anon_sym_struct_type_BANG] = ACTIONS(6150), + [anon_sym_QMARK] = ACTIONS(6150), + [anon_sym_AT] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(6150), + [anon_sym_LBRACK] = ACTIONS(6150), + [anon_sym_void] = ACTIONS(6152), + [anon_sym_noreturn] = ACTIONS(6152), + [anon_sym_type] = ACTIONS(6152), + [anon_sym_anyopaque] = ACTIONS(6152), + [anon_sym_bool] = ACTIONS(6152), + [anon_sym_int] = ACTIONS(6152), + [anon_sym_uint] = ACTIONS(6152), + [anon_sym_float] = ACTIONS(6152), + [anon_sym_range] = ACTIONS(6152), + [anon_sym_i8] = ACTIONS(6152), + [anon_sym_i16] = ACTIONS(6152), + [anon_sym_i32] = ACTIONS(6152), + [anon_sym_i64] = ACTIONS(6152), + [anon_sym_u8] = ACTIONS(6152), + [anon_sym_u16] = ACTIONS(6152), + [anon_sym_u32] = ACTIONS(6152), + [anon_sym_u64] = ACTIONS(6152), + [anon_sym_isize] = ACTIONS(6152), + [anon_sym_usize] = ACTIONS(6152), + [anon_sym_f32] = ACTIONS(6152), + [anon_sym_f64] = ACTIONS(6152), + [anon_sym_c_char] = ACTIONS(6152), + [anon_sym_c_schar] = ACTIONS(6152), + [anon_sym_c_uchar] = ACTIONS(6152), + [anon_sym_c_short] = ACTIONS(6152), + [anon_sym_c_ushort] = ACTIONS(6152), + [anon_sym_c_int] = ACTIONS(6152), + [anon_sym_c_uint] = ACTIONS(6152), + [anon_sym_c_long] = ACTIONS(6152), + [anon_sym_c_ulong] = ACTIONS(6152), + [anon_sym_c_longlong] = ACTIONS(6152), + [anon_sym_c_ulonglong] = ACTIONS(6152), + [anon_sym_c_float] = ACTIONS(6152), + [anon_sym_c_double] = ACTIONS(6152), + [anon_sym_c_longdouble] = ACTIONS(6152), + [anon_sym_else] = ACTIONS(6152), + [anon_sym_DOT_DOT] = ACTIONS(6152), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6150), + [anon_sym_orelse] = ACTIONS(6152), + [anon_sym_or] = ACTIONS(6152), + [anon_sym_and] = ACTIONS(6152), + [anon_sym_EQ_EQ] = ACTIONS(6150), + [anon_sym_BANG_EQ] = ACTIONS(6150), + [anon_sym_LT] = ACTIONS(6152), + [anon_sym_LT_EQ] = ACTIONS(6150), + [anon_sym_GT] = ACTIONS(6152), + [anon_sym_GT_EQ] = ACTIONS(6150), + [anon_sym_AMP] = ACTIONS(6150), + [anon_sym_xor] = ACTIONS(6152), + [anon_sym_LT_LT] = ACTIONS(6152), + [anon_sym_GT_GT] = ACTIONS(6150), + [anon_sym_LT_LT_PIPE] = ACTIONS(6150), + [anon_sym_PLUS] = ACTIONS(6150), + [anon_sym_SLASH] = ACTIONS(6150), + [anon_sym_catch] = ACTIONS(6152), + [anon_sym_DOT] = ACTIONS(6152), + [anon_sym_CARET] = ACTIONS(6150), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6150), + }, + [STATE(7523)] = { + [sym_identifier] = ACTIONS(5796), + [anon_sym_func] = ACTIONS(5796), + [anon_sym_c_func] = ACTIONS(5796), + [anon_sym_struct] = ACTIONS(5796), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_DASH] = ACTIONS(5794), + [anon_sym_PIPE] = ACTIONS(5794), + [anon_sym_struct_type_BANG] = ACTIONS(5794), + [anon_sym_QMARK] = ACTIONS(5794), + [anon_sym_AT] = ACTIONS(5794), + [anon_sym_STAR] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_void] = ACTIONS(5796), + [anon_sym_noreturn] = ACTIONS(5796), + [anon_sym_type] = ACTIONS(5796), + [anon_sym_anyopaque] = ACTIONS(5796), + [anon_sym_bool] = ACTIONS(5796), + [anon_sym_int] = ACTIONS(5796), + [anon_sym_uint] = ACTIONS(5796), + [anon_sym_float] = ACTIONS(5796), + [anon_sym_range] = ACTIONS(5796), + [anon_sym_i8] = ACTIONS(5796), + [anon_sym_i16] = ACTIONS(5796), + [anon_sym_i32] = ACTIONS(5796), + [anon_sym_i64] = ACTIONS(5796), + [anon_sym_u8] = ACTIONS(5796), + [anon_sym_u16] = ACTIONS(5796), + [anon_sym_u32] = ACTIONS(5796), + [anon_sym_u64] = ACTIONS(5796), + [anon_sym_isize] = ACTIONS(5796), + [anon_sym_usize] = ACTIONS(5796), + [anon_sym_f32] = ACTIONS(5796), + [anon_sym_f64] = ACTIONS(5796), + [anon_sym_c_char] = ACTIONS(5796), + [anon_sym_c_schar] = ACTIONS(5796), + [anon_sym_c_uchar] = ACTIONS(5796), + [anon_sym_c_short] = ACTIONS(5796), + [anon_sym_c_ushort] = ACTIONS(5796), + [anon_sym_c_int] = ACTIONS(5796), + [anon_sym_c_uint] = ACTIONS(5796), + [anon_sym_c_long] = ACTIONS(5796), + [anon_sym_c_ulong] = ACTIONS(5796), + [anon_sym_c_longlong] = ACTIONS(5796), + [anon_sym_c_ulonglong] = ACTIONS(5796), + [anon_sym_c_float] = ACTIONS(5796), + [anon_sym_c_double] = ACTIONS(5796), + [anon_sym_c_longdouble] = ACTIONS(5796), + [anon_sym_else] = ACTIONS(5796), + [anon_sym_DOT_DOT] = ACTIONS(5796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5794), + [anon_sym_orelse] = ACTIONS(5796), + [anon_sym_or] = ACTIONS(5796), + [anon_sym_and] = ACTIONS(5796), + [anon_sym_EQ_EQ] = ACTIONS(5794), + [anon_sym_BANG_EQ] = ACTIONS(5794), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_LT_EQ] = ACTIONS(5794), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_GT_EQ] = ACTIONS(5794), + [anon_sym_AMP] = ACTIONS(5794), + [anon_sym_xor] = ACTIONS(5796), + [anon_sym_LT_LT] = ACTIONS(5796), + [anon_sym_GT_GT] = ACTIONS(5794), + [anon_sym_LT_LT_PIPE] = ACTIONS(5794), + [anon_sym_PLUS] = ACTIONS(5794), + [anon_sym_SLASH] = ACTIONS(5794), + [anon_sym_catch] = ACTIONS(5796), + [anon_sym_DOT] = ACTIONS(5796), + [anon_sym_CARET] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5794), + }, + [STATE(7524)] = { + [sym_identifier] = ACTIONS(5740), + [anon_sym_func] = ACTIONS(5740), + [anon_sym_c_func] = ACTIONS(5740), + [anon_sym_struct] = ACTIONS(5740), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(5738), + [anon_sym_RBRACE] = ACTIONS(5738), + [anon_sym_DASH] = ACTIONS(5738), + [anon_sym_PIPE] = ACTIONS(5738), + [anon_sym_struct_type_BANG] = ACTIONS(5738), + [anon_sym_QMARK] = ACTIONS(5738), + [anon_sym_AT] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5738), + [anon_sym_LBRACK] = ACTIONS(5738), + [anon_sym_void] = ACTIONS(5740), + [anon_sym_noreturn] = ACTIONS(5740), + [anon_sym_type] = ACTIONS(5740), + [anon_sym_anyopaque] = ACTIONS(5740), + [anon_sym_bool] = ACTIONS(5740), + [anon_sym_int] = ACTIONS(5740), + [anon_sym_uint] = ACTIONS(5740), + [anon_sym_float] = ACTIONS(5740), + [anon_sym_range] = ACTIONS(5740), + [anon_sym_i8] = ACTIONS(5740), + [anon_sym_i16] = ACTIONS(5740), + [anon_sym_i32] = ACTIONS(5740), + [anon_sym_i64] = ACTIONS(5740), + [anon_sym_u8] = ACTIONS(5740), + [anon_sym_u16] = ACTIONS(5740), + [anon_sym_u32] = ACTIONS(5740), + [anon_sym_u64] = ACTIONS(5740), + [anon_sym_isize] = ACTIONS(5740), + [anon_sym_usize] = ACTIONS(5740), + [anon_sym_f32] = ACTIONS(5740), + [anon_sym_f64] = ACTIONS(5740), + [anon_sym_c_char] = ACTIONS(5740), + [anon_sym_c_schar] = ACTIONS(5740), + [anon_sym_c_uchar] = ACTIONS(5740), + [anon_sym_c_short] = ACTIONS(5740), + [anon_sym_c_ushort] = ACTIONS(5740), + [anon_sym_c_int] = ACTIONS(5740), + [anon_sym_c_uint] = ACTIONS(5740), + [anon_sym_c_long] = ACTIONS(5740), + [anon_sym_c_ulong] = ACTIONS(5740), + [anon_sym_c_longlong] = ACTIONS(5740), + [anon_sym_c_ulonglong] = ACTIONS(5740), + [anon_sym_c_float] = ACTIONS(5740), + [anon_sym_c_double] = ACTIONS(5740), + [anon_sym_c_longdouble] = ACTIONS(5740), + [anon_sym_else] = ACTIONS(5740), + [anon_sym_DOT_DOT] = ACTIONS(5740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5738), + [anon_sym_orelse] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5740), + [anon_sym_and] = ACTIONS(5740), + [anon_sym_EQ_EQ] = ACTIONS(5738), + [anon_sym_BANG_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_GT] = ACTIONS(5740), + [anon_sym_GT_EQ] = ACTIONS(5738), + [anon_sym_AMP] = ACTIONS(5738), + [anon_sym_xor] = ACTIONS(5740), + [anon_sym_LT_LT] = ACTIONS(5740), + [anon_sym_GT_GT] = ACTIONS(5738), + [anon_sym_LT_LT_PIPE] = ACTIONS(5738), + [anon_sym_PLUS] = ACTIONS(5738), + [anon_sym_SLASH] = ACTIONS(5738), + [anon_sym_catch] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5740), + [anon_sym_CARET] = ACTIONS(5738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5738), + }, + [STATE(7525)] = { + [sym_identifier] = ACTIONS(5808), + [anon_sym_func] = ACTIONS(5808), + [anon_sym_c_func] = ACTIONS(5808), + [anon_sym_struct] = ACTIONS(5808), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(5806), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5806), + [anon_sym_struct_type_BANG] = ACTIONS(5806), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_AT] = ACTIONS(5806), + [anon_sym_STAR] = ACTIONS(5806), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_void] = ACTIONS(5808), + [anon_sym_noreturn] = ACTIONS(5808), + [anon_sym_type] = ACTIONS(5808), + [anon_sym_anyopaque] = ACTIONS(5808), + [anon_sym_bool] = ACTIONS(5808), + [anon_sym_int] = ACTIONS(5808), + [anon_sym_uint] = ACTIONS(5808), + [anon_sym_float] = ACTIONS(5808), + [anon_sym_range] = ACTIONS(5808), + [anon_sym_i8] = ACTIONS(5808), + [anon_sym_i16] = ACTIONS(5808), + [anon_sym_i32] = ACTIONS(5808), + [anon_sym_i64] = ACTIONS(5808), + [anon_sym_u8] = ACTIONS(5808), + [anon_sym_u16] = ACTIONS(5808), + [anon_sym_u32] = ACTIONS(5808), + [anon_sym_u64] = ACTIONS(5808), + [anon_sym_isize] = ACTIONS(5808), + [anon_sym_usize] = ACTIONS(5808), + [anon_sym_f32] = ACTIONS(5808), + [anon_sym_f64] = ACTIONS(5808), + [anon_sym_c_char] = ACTIONS(5808), + [anon_sym_c_schar] = ACTIONS(5808), + [anon_sym_c_uchar] = ACTIONS(5808), + [anon_sym_c_short] = ACTIONS(5808), + [anon_sym_c_ushort] = ACTIONS(5808), + [anon_sym_c_int] = ACTIONS(5808), + [anon_sym_c_uint] = ACTIONS(5808), + [anon_sym_c_long] = ACTIONS(5808), + [anon_sym_c_ulong] = ACTIONS(5808), + [anon_sym_c_longlong] = ACTIONS(5808), + [anon_sym_c_ulonglong] = ACTIONS(5808), + [anon_sym_c_float] = ACTIONS(5808), + [anon_sym_c_double] = ACTIONS(5808), + [anon_sym_c_longdouble] = ACTIONS(5808), + [anon_sym_else] = ACTIONS(5808), + [anon_sym_DOT_DOT] = ACTIONS(5808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5806), + [anon_sym_orelse] = ACTIONS(5808), + [anon_sym_or] = ACTIONS(5808), + [anon_sym_and] = ACTIONS(5808), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5808), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_AMP] = ACTIONS(5806), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_LT_LT] = ACTIONS(5808), + [anon_sym_GT_GT] = ACTIONS(5806), + [anon_sym_LT_LT_PIPE] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5806), + [anon_sym_SLASH] = ACTIONS(5806), + [anon_sym_catch] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(5808), + [anon_sym_CARET] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5806), + }, + [STATE(7526)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(11410), + [anon_sym_func] = ACTIONS(11410), + [anon_sym_c_func] = ACTIONS(11410), + [anon_sym_struct] = ACTIONS(11410), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(11412), + [anon_sym_RBRACE] = ACTIONS(11412), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(11412), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(11412), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(11410), + [anon_sym_noreturn] = ACTIONS(11410), + [anon_sym_type] = ACTIONS(11410), + [anon_sym_anyopaque] = ACTIONS(11410), + [anon_sym_bool] = ACTIONS(11410), + [anon_sym_int] = ACTIONS(11410), + [anon_sym_uint] = ACTIONS(11410), + [anon_sym_float] = ACTIONS(11410), + [anon_sym_range] = ACTIONS(11410), + [anon_sym_i8] = ACTIONS(11410), + [anon_sym_i16] = ACTIONS(11410), + [anon_sym_i32] = ACTIONS(11410), + [anon_sym_i64] = ACTIONS(11410), + [anon_sym_u8] = ACTIONS(11410), + [anon_sym_u16] = ACTIONS(11410), + [anon_sym_u32] = ACTIONS(11410), + [anon_sym_u64] = ACTIONS(11410), + [anon_sym_isize] = ACTIONS(11410), + [anon_sym_usize] = ACTIONS(11410), + [anon_sym_f32] = ACTIONS(11410), + [anon_sym_f64] = ACTIONS(11410), + [anon_sym_c_char] = ACTIONS(11410), + [anon_sym_c_schar] = ACTIONS(11410), + [anon_sym_c_uchar] = ACTIONS(11410), + [anon_sym_c_short] = ACTIONS(11410), + [anon_sym_c_ushort] = ACTIONS(11410), + [anon_sym_c_int] = ACTIONS(11410), + [anon_sym_c_uint] = ACTIONS(11410), + [anon_sym_c_long] = ACTIONS(11410), + [anon_sym_c_ulong] = ACTIONS(11410), + [anon_sym_c_longlong] = ACTIONS(11410), + [anon_sym_c_ulonglong] = ACTIONS(11410), + [anon_sym_c_float] = ACTIONS(11410), + [anon_sym_c_double] = ACTIONS(11410), + [anon_sym_c_longdouble] = ACTIONS(11410), + [anon_sym_DOT_DOT] = ACTIONS(11406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(11408), + [anon_sym_orelse] = ACTIONS(11353), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(11400), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11412), + }, + [STATE(7527)] = { + [sym_identifier] = ACTIONS(2696), + [anon_sym_func] = ACTIONS(2696), + [anon_sym_c_func] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_struct_type_BANG] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_noreturn] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_anyopaque] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_int] = ACTIONS(2696), + [anon_sym_uint] = ACTIONS(2696), + [anon_sym_float] = ACTIONS(2696), + [anon_sym_range] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_c_char] = ACTIONS(2696), + [anon_sym_c_schar] = ACTIONS(2696), + [anon_sym_c_uchar] = ACTIONS(2696), + [anon_sym_c_short] = ACTIONS(2696), + [anon_sym_c_ushort] = ACTIONS(2696), + [anon_sym_c_int] = ACTIONS(2696), + [anon_sym_c_uint] = ACTIONS(2696), + [anon_sym_c_long] = ACTIONS(2696), + [anon_sym_c_ulong] = ACTIONS(2696), + [anon_sym_c_longlong] = ACTIONS(2696), + [anon_sym_c_ulonglong] = ACTIONS(2696), + [anon_sym_c_float] = ACTIONS(2696), + [anon_sym_c_double] = ACTIONS(2696), + [anon_sym_c_longdouble] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_orelse] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2696), + [anon_sym_and] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_xor] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_LT_LT_PIPE] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2694), + }, + [STATE(7528)] = { + [sym_identifier] = ACTIONS(5856), + [anon_sym_func] = ACTIONS(5856), + [anon_sym_c_func] = ACTIONS(5856), + [anon_sym_struct] = ACTIONS(5856), + [anon_sym_LPAREN] = ACTIONS(5854), + [anon_sym_COMMA] = ACTIONS(5854), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_DASH] = ACTIONS(5854), + [anon_sym_PIPE] = ACTIONS(5854), + [anon_sym_struct_type_BANG] = ACTIONS(5854), + [anon_sym_QMARK] = ACTIONS(5854), + [anon_sym_AT] = ACTIONS(5854), + [anon_sym_STAR] = ACTIONS(5854), + [anon_sym_LBRACK] = ACTIONS(5854), + [anon_sym_void] = ACTIONS(5856), + [anon_sym_noreturn] = ACTIONS(5856), + [anon_sym_type] = ACTIONS(5856), + [anon_sym_anyopaque] = ACTIONS(5856), + [anon_sym_bool] = ACTIONS(5856), + [anon_sym_int] = ACTIONS(5856), + [anon_sym_uint] = ACTIONS(5856), + [anon_sym_float] = ACTIONS(5856), + [anon_sym_range] = ACTIONS(5856), + [anon_sym_i8] = ACTIONS(5856), + [anon_sym_i16] = ACTIONS(5856), + [anon_sym_i32] = ACTIONS(5856), + [anon_sym_i64] = ACTIONS(5856), + [anon_sym_u8] = ACTIONS(5856), + [anon_sym_u16] = ACTIONS(5856), + [anon_sym_u32] = ACTIONS(5856), + [anon_sym_u64] = ACTIONS(5856), + [anon_sym_isize] = ACTIONS(5856), + [anon_sym_usize] = ACTIONS(5856), + [anon_sym_f32] = ACTIONS(5856), + [anon_sym_f64] = ACTIONS(5856), + [anon_sym_c_char] = ACTIONS(5856), + [anon_sym_c_schar] = ACTIONS(5856), + [anon_sym_c_uchar] = ACTIONS(5856), + [anon_sym_c_short] = ACTIONS(5856), + [anon_sym_c_ushort] = ACTIONS(5856), + [anon_sym_c_int] = ACTIONS(5856), + [anon_sym_c_uint] = ACTIONS(5856), + [anon_sym_c_long] = ACTIONS(5856), + [anon_sym_c_ulong] = ACTIONS(5856), + [anon_sym_c_longlong] = ACTIONS(5856), + [anon_sym_c_ulonglong] = ACTIONS(5856), + [anon_sym_c_float] = ACTIONS(5856), + [anon_sym_c_double] = ACTIONS(5856), + [anon_sym_c_longdouble] = ACTIONS(5856), + [anon_sym_else] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5854), + [anon_sym_orelse] = ACTIONS(5856), + [anon_sym_or] = ACTIONS(5856), + [anon_sym_and] = ACTIONS(5856), + [anon_sym_EQ_EQ] = ACTIONS(5854), + [anon_sym_BANG_EQ] = ACTIONS(5854), + [anon_sym_LT] = ACTIONS(5856), + [anon_sym_LT_EQ] = ACTIONS(5854), + [anon_sym_GT] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5854), + [anon_sym_AMP] = ACTIONS(5854), + [anon_sym_xor] = ACTIONS(5856), + [anon_sym_LT_LT] = ACTIONS(5856), + [anon_sym_GT_GT] = ACTIONS(5854), + [anon_sym_LT_LT_PIPE] = ACTIONS(5854), + [anon_sym_PLUS] = ACTIONS(5854), + [anon_sym_SLASH] = ACTIONS(5854), + [anon_sym_catch] = ACTIONS(5856), + [anon_sym_DOT] = ACTIONS(5856), + [anon_sym_CARET] = ACTIONS(5854), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5854), + }, + [STATE(7529)] = { + [sym_identifier] = ACTIONS(5702), + [anon_sym_func] = ACTIONS(5702), + [anon_sym_c_func] = ACTIONS(5702), + [anon_sym_struct] = ACTIONS(5702), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_COMMA] = ACTIONS(5698), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), + [anon_sym_PIPE] = ACTIONS(5698), + [anon_sym_struct_type_BANG] = ACTIONS(5698), + [anon_sym_QMARK] = ACTIONS(5698), + [anon_sym_AT] = ACTIONS(5698), + [anon_sym_STAR] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [anon_sym_void] = ACTIONS(5702), + [anon_sym_noreturn] = ACTIONS(5702), + [anon_sym_type] = ACTIONS(5702), + [anon_sym_anyopaque] = ACTIONS(5702), + [anon_sym_bool] = ACTIONS(5702), + [anon_sym_int] = ACTIONS(5702), + [anon_sym_uint] = ACTIONS(5702), + [anon_sym_float] = ACTIONS(5702), + [anon_sym_range] = ACTIONS(5702), + [anon_sym_i8] = ACTIONS(5702), + [anon_sym_i16] = ACTIONS(5702), + [anon_sym_i32] = ACTIONS(5702), + [anon_sym_i64] = ACTIONS(5702), + [anon_sym_u8] = ACTIONS(5702), + [anon_sym_u16] = ACTIONS(5702), + [anon_sym_u32] = ACTIONS(5702), + [anon_sym_u64] = ACTIONS(5702), + [anon_sym_isize] = ACTIONS(5702), + [anon_sym_usize] = ACTIONS(5702), + [anon_sym_f32] = ACTIONS(5702), + [anon_sym_f64] = ACTIONS(5702), + [anon_sym_c_char] = ACTIONS(5702), + [anon_sym_c_schar] = ACTIONS(5702), + [anon_sym_c_uchar] = ACTIONS(5702), + [anon_sym_c_short] = ACTIONS(5702), + [anon_sym_c_ushort] = ACTIONS(5702), + [anon_sym_c_int] = ACTIONS(5702), + [anon_sym_c_uint] = ACTIONS(5702), + [anon_sym_c_long] = ACTIONS(5702), + [anon_sym_c_ulong] = ACTIONS(5702), + [anon_sym_c_longlong] = ACTIONS(5702), + [anon_sym_c_ulonglong] = ACTIONS(5702), + [anon_sym_c_float] = ACTIONS(5702), + [anon_sym_c_double] = ACTIONS(5702), + [anon_sym_c_longdouble] = ACTIONS(5702), [anon_sym_else] = ACTIONS(5702), - [anon_sym_expand] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_TILDE] = ACTIONS(5529), - [anon_sym_try] = ACTIONS(5527), - [anon_sym_DOT] = ACTIONS(5529), - [anon_sym_true] = ACTIONS(5527), - [anon_sym_false] = ACTIONS(5527), - [anon_sym_null] = ACTIONS(5527), - [anon_sym_unreachable] = ACTIONS(5527), - [anon_sym_undefined] = ACTIONS(5527), - [sym_sink] = ACTIONS(5527), - [sym_integer] = ACTIONS(5527), - [sym_float] = ACTIONS(5529), - [anon_sym_DQUOTE] = ACTIONS(5529), - [sym_multiline_string] = ACTIONS(5529), - [sym_character] = ACTIONS(5529), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5698), + [anon_sym_orelse] = ACTIONS(5702), + [anon_sym_or] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5702), + [anon_sym_EQ_EQ] = ACTIONS(5698), + [anon_sym_BANG_EQ] = ACTIONS(5698), + [anon_sym_LT] = ACTIONS(5702), + [anon_sym_LT_EQ] = ACTIONS(5698), + [anon_sym_GT] = ACTIONS(5702), + [anon_sym_GT_EQ] = ACTIONS(5698), + [anon_sym_AMP] = ACTIONS(5698), + [anon_sym_xor] = ACTIONS(5702), + [anon_sym_LT_LT] = ACTIONS(5702), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_LT_LT_PIPE] = ACTIONS(5698), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_SLASH] = ACTIONS(5698), + [anon_sym_catch] = ACTIONS(5702), + [anon_sym_DOT] = ACTIONS(5702), + [anon_sym_CARET] = ACTIONS(5698), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5705), + [sym__newline] = ACTIONS(5698), }, - [STATE(2411)] = { - [aux_sym_import_declaration_repeat1] = STATE(4897), - [sym_identifier] = ACTIONS(5492), - [anon_sym_func] = ACTIONS(5492), - [anon_sym_BANG] = ACTIONS(5494), - [anon_sym_struct] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_DOLLAR] = ACTIONS(5494), - [anon_sym_LBRACK] = ACTIONS(5494), - [anon_sym_void] = ACTIONS(5492), - [anon_sym_noreturn] = ACTIONS(5492), - [anon_sym_type] = ACTIONS(5492), - [anon_sym_anyopaque] = ACTIONS(5492), - [anon_sym_bool] = ACTIONS(5492), - [anon_sym_int] = ACTIONS(5492), - [anon_sym_uint] = ACTIONS(5492), - [anon_sym_float] = ACTIONS(5492), - [anon_sym_range] = ACTIONS(5492), - [anon_sym_i8] = ACTIONS(5492), - [anon_sym_i16] = ACTIONS(5492), - [anon_sym_i32] = ACTIONS(5492), - [anon_sym_i64] = ACTIONS(5492), - [anon_sym_u8] = ACTIONS(5492), - [anon_sym_u16] = ACTIONS(5492), - [anon_sym_u32] = ACTIONS(5492), - [anon_sym_u64] = ACTIONS(5492), - [anon_sym_isize] = ACTIONS(5492), - [anon_sym_usize] = ACTIONS(5492), - [anon_sym_f32] = ACTIONS(5492), - [anon_sym_f64] = ACTIONS(5492), - [anon_sym_c_char] = ACTIONS(5492), - [anon_sym_c_schar] = ACTIONS(5492), - [anon_sym_c_uchar] = ACTIONS(5492), - [anon_sym_c_short] = ACTIONS(5492), - [anon_sym_c_ushort] = ACTIONS(5492), - [anon_sym_c_int] = ACTIONS(5492), - [anon_sym_c_uint] = ACTIONS(5492), - [anon_sym_c_long] = ACTIONS(5492), - [anon_sym_c_ulong] = ACTIONS(5492), - [anon_sym_c_longlong] = ACTIONS(5492), - [anon_sym_c_ulonglong] = ACTIONS(5492), - [anon_sym_c_float] = ACTIONS(5492), - [anon_sym_c_double] = ACTIONS(5492), - [anon_sym_c_longdouble] = ACTIONS(5492), - [anon_sym_else] = ACTIONS(5708), - [anon_sym_expand] = ACTIONS(5492), - [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_TILDE] = ACTIONS(5494), - [anon_sym_try] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(5494), - [anon_sym_true] = ACTIONS(5492), - [anon_sym_false] = ACTIONS(5492), - [anon_sym_null] = ACTIONS(5492), - [anon_sym_unreachable] = ACTIONS(5492), - [anon_sym_undefined] = ACTIONS(5492), - [sym_sink] = ACTIONS(5492), - [sym_integer] = ACTIONS(5492), - [sym_float] = ACTIONS(5494), - [anon_sym_DQUOTE] = ACTIONS(5494), - [sym_multiline_string] = ACTIONS(5494), - [sym_character] = ACTIONS(5494), + [STATE(7530)] = { + [sym_identifier] = ACTIONS(5744), + [anon_sym_func] = ACTIONS(5744), + [anon_sym_c_func] = ACTIONS(5744), + [anon_sym_struct] = ACTIONS(5744), + [anon_sym_LPAREN] = ACTIONS(5742), + [anon_sym_COMMA] = ACTIONS(5742), + [anon_sym_RBRACE] = ACTIONS(5742), + [anon_sym_DASH] = ACTIONS(5742), + [anon_sym_PIPE] = ACTIONS(5742), + [anon_sym_struct_type_BANG] = ACTIONS(5742), + [anon_sym_QMARK] = ACTIONS(5742), + [anon_sym_AT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5742), + [anon_sym_LBRACK] = ACTIONS(5742), + [anon_sym_void] = ACTIONS(5744), + [anon_sym_noreturn] = ACTIONS(5744), + [anon_sym_type] = ACTIONS(5744), + [anon_sym_anyopaque] = ACTIONS(5744), + [anon_sym_bool] = ACTIONS(5744), + [anon_sym_int] = ACTIONS(5744), + [anon_sym_uint] = ACTIONS(5744), + [anon_sym_float] = ACTIONS(5744), + [anon_sym_range] = ACTIONS(5744), + [anon_sym_i8] = ACTIONS(5744), + [anon_sym_i16] = ACTIONS(5744), + [anon_sym_i32] = ACTIONS(5744), + [anon_sym_i64] = ACTIONS(5744), + [anon_sym_u8] = ACTIONS(5744), + [anon_sym_u16] = ACTIONS(5744), + [anon_sym_u32] = ACTIONS(5744), + [anon_sym_u64] = ACTIONS(5744), + [anon_sym_isize] = ACTIONS(5744), + [anon_sym_usize] = ACTIONS(5744), + [anon_sym_f32] = ACTIONS(5744), + [anon_sym_f64] = ACTIONS(5744), + [anon_sym_c_char] = ACTIONS(5744), + [anon_sym_c_schar] = ACTIONS(5744), + [anon_sym_c_uchar] = ACTIONS(5744), + [anon_sym_c_short] = ACTIONS(5744), + [anon_sym_c_ushort] = ACTIONS(5744), + [anon_sym_c_int] = ACTIONS(5744), + [anon_sym_c_uint] = ACTIONS(5744), + [anon_sym_c_long] = ACTIONS(5744), + [anon_sym_c_ulong] = ACTIONS(5744), + [anon_sym_c_longlong] = ACTIONS(5744), + [anon_sym_c_ulonglong] = ACTIONS(5744), + [anon_sym_c_float] = ACTIONS(5744), + [anon_sym_c_double] = ACTIONS(5744), + [anon_sym_c_longdouble] = ACTIONS(5744), + [anon_sym_else] = ACTIONS(5744), + [anon_sym_DOT_DOT] = ACTIONS(5744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5742), + [anon_sym_orelse] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5744), + [anon_sym_and] = ACTIONS(5744), + [anon_sym_EQ_EQ] = ACTIONS(5742), + [anon_sym_BANG_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_GT] = ACTIONS(5744), + [anon_sym_GT_EQ] = ACTIONS(5742), + [anon_sym_AMP] = ACTIONS(5742), + [anon_sym_xor] = ACTIONS(5744), + [anon_sym_LT_LT] = ACTIONS(5744), + [anon_sym_GT_GT] = ACTIONS(5742), + [anon_sym_LT_LT_PIPE] = ACTIONS(5742), + [anon_sym_PLUS] = ACTIONS(5742), + [anon_sym_SLASH] = ACTIONS(5742), + [anon_sym_catch] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5744), + [anon_sym_CARET] = ACTIONS(5742), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(5711), + [sym__newline] = ACTIONS(5742), }, - [STATE(2412)] = { - [aux_sym_import_declaration_repeat1] = STATE(1537), - [sym_identifier] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(5714), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_noreturn] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_anyopaque] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_int] = ACTIONS(2806), - [anon_sym_uint] = ACTIONS(2806), - [anon_sym_float] = ACTIONS(2806), - [anon_sym_range] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_c_char] = ACTIONS(2806), - [anon_sym_c_schar] = ACTIONS(2806), - [anon_sym_c_uchar] = ACTIONS(2806), - [anon_sym_c_short] = ACTIONS(2806), - [anon_sym_c_ushort] = ACTIONS(2806), - [anon_sym_c_int] = ACTIONS(2806), - [anon_sym_c_uint] = ACTIONS(2806), - [anon_sym_c_long] = ACTIONS(2806), - [anon_sym_c_ulong] = ACTIONS(2806), - [anon_sym_c_longlong] = ACTIONS(2806), - [anon_sym_c_ulonglong] = ACTIONS(2806), - [anon_sym_c_float] = ACTIONS(2806), - [anon_sym_c_double] = ACTIONS(2806), - [anon_sym_c_longdouble] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_unreachable] = ACTIONS(2806), - [anon_sym_undefined] = ACTIONS(2806), - [sym_sink] = ACTIONS(2806), - [sym_integer] = ACTIONS(2806), - [sym_float] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_multiline_string] = ACTIONS(2808), - [sym_character] = ACTIONS(2808), + [STATE(7531)] = { + [sym_identifier] = ACTIONS(6056), + [anon_sym_func] = ACTIONS(6056), + [anon_sym_c_func] = ACTIONS(6056), + [anon_sym_struct] = ACTIONS(6056), + [anon_sym_LPAREN] = ACTIONS(6054), + [anon_sym_COMMA] = ACTIONS(6054), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6054), + [anon_sym_struct_type_BANG] = ACTIONS(6054), + [anon_sym_QMARK] = ACTIONS(6054), + [anon_sym_AT] = ACTIONS(6054), + [anon_sym_STAR] = ACTIONS(6054), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_void] = ACTIONS(6056), + [anon_sym_noreturn] = ACTIONS(6056), + [anon_sym_type] = ACTIONS(6056), + [anon_sym_anyopaque] = ACTIONS(6056), + [anon_sym_bool] = ACTIONS(6056), + [anon_sym_int] = ACTIONS(6056), + [anon_sym_uint] = ACTIONS(6056), + [anon_sym_float] = ACTIONS(6056), + [anon_sym_range] = ACTIONS(6056), + [anon_sym_i8] = ACTIONS(6056), + [anon_sym_i16] = ACTIONS(6056), + [anon_sym_i32] = ACTIONS(6056), + [anon_sym_i64] = ACTIONS(6056), + [anon_sym_u8] = ACTIONS(6056), + [anon_sym_u16] = ACTIONS(6056), + [anon_sym_u32] = ACTIONS(6056), + [anon_sym_u64] = ACTIONS(6056), + [anon_sym_isize] = ACTIONS(6056), + [anon_sym_usize] = ACTIONS(6056), + [anon_sym_f32] = ACTIONS(6056), + [anon_sym_f64] = ACTIONS(6056), + [anon_sym_c_char] = ACTIONS(6056), + [anon_sym_c_schar] = ACTIONS(6056), + [anon_sym_c_uchar] = ACTIONS(6056), + [anon_sym_c_short] = ACTIONS(6056), + [anon_sym_c_ushort] = ACTIONS(6056), + [anon_sym_c_int] = ACTIONS(6056), + [anon_sym_c_uint] = ACTIONS(6056), + [anon_sym_c_long] = ACTIONS(6056), + [anon_sym_c_ulong] = ACTIONS(6056), + [anon_sym_c_longlong] = ACTIONS(6056), + [anon_sym_c_ulonglong] = ACTIONS(6056), + [anon_sym_c_float] = ACTIONS(6056), + [anon_sym_c_double] = ACTIONS(6056), + [anon_sym_c_longdouble] = ACTIONS(6056), + [anon_sym_else] = ACTIONS(6056), + [anon_sym_DOT_DOT] = ACTIONS(6056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6054), + [anon_sym_orelse] = ACTIONS(6056), + [anon_sym_or] = ACTIONS(6056), + [anon_sym_and] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6054), + [anon_sym_BANG_EQ] = ACTIONS(6054), + [anon_sym_LT] = ACTIONS(6056), + [anon_sym_LT_EQ] = ACTIONS(6054), + [anon_sym_GT] = ACTIONS(6056), + [anon_sym_GT_EQ] = ACTIONS(6054), + [anon_sym_AMP] = ACTIONS(6054), + [anon_sym_xor] = ACTIONS(6056), + [anon_sym_LT_LT] = ACTIONS(6056), + [anon_sym_GT_GT] = ACTIONS(6054), + [anon_sym_LT_LT_PIPE] = ACTIONS(6054), + [anon_sym_PLUS] = ACTIONS(6054), + [anon_sym_SLASH] = ACTIONS(6054), + [anon_sym_catch] = ACTIONS(6056), + [anon_sym_DOT] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6054), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), + [sym__newline] = ACTIONS(6054), + }, + [STATE(7532)] = { + [sym_identifier] = ACTIONS(6312), + [anon_sym_func] = ACTIONS(6312), + [anon_sym_c_func] = ACTIONS(6312), + [anon_sym_struct] = ACTIONS(6312), + [anon_sym_LPAREN] = ACTIONS(6310), + [anon_sym_COMMA] = ACTIONS(6310), + [anon_sym_RBRACE] = ACTIONS(6310), + [anon_sym_DASH] = ACTIONS(6310), + [anon_sym_PIPE] = ACTIONS(6310), + [anon_sym_struct_type_BANG] = ACTIONS(6310), + [anon_sym_QMARK] = ACTIONS(6310), + [anon_sym_AT] = ACTIONS(6310), + [anon_sym_STAR] = ACTIONS(6310), + [anon_sym_LBRACK] = ACTIONS(6310), + [anon_sym_void] = ACTIONS(6312), + [anon_sym_noreturn] = ACTIONS(6312), + [anon_sym_type] = ACTIONS(6312), + [anon_sym_anyopaque] = ACTIONS(6312), + [anon_sym_bool] = ACTIONS(6312), + [anon_sym_int] = ACTIONS(6312), + [anon_sym_uint] = ACTIONS(6312), + [anon_sym_float] = ACTIONS(6312), + [anon_sym_range] = ACTIONS(6312), + [anon_sym_i8] = ACTIONS(6312), + [anon_sym_i16] = ACTIONS(6312), + [anon_sym_i32] = ACTIONS(6312), + [anon_sym_i64] = ACTIONS(6312), + [anon_sym_u8] = ACTIONS(6312), + [anon_sym_u16] = ACTIONS(6312), + [anon_sym_u32] = ACTIONS(6312), + [anon_sym_u64] = ACTIONS(6312), + [anon_sym_isize] = ACTIONS(6312), + [anon_sym_usize] = ACTIONS(6312), + [anon_sym_f32] = ACTIONS(6312), + [anon_sym_f64] = ACTIONS(6312), + [anon_sym_c_char] = ACTIONS(6312), + [anon_sym_c_schar] = ACTIONS(6312), + [anon_sym_c_uchar] = ACTIONS(6312), + [anon_sym_c_short] = ACTIONS(6312), + [anon_sym_c_ushort] = ACTIONS(6312), + [anon_sym_c_int] = ACTIONS(6312), + [anon_sym_c_uint] = ACTIONS(6312), + [anon_sym_c_long] = ACTIONS(6312), + [anon_sym_c_ulong] = ACTIONS(6312), + [anon_sym_c_longlong] = ACTIONS(6312), + [anon_sym_c_ulonglong] = ACTIONS(6312), + [anon_sym_c_float] = ACTIONS(6312), + [anon_sym_c_double] = ACTIONS(6312), + [anon_sym_c_longdouble] = ACTIONS(6312), + [anon_sym_else] = ACTIONS(6312), + [anon_sym_DOT_DOT] = ACTIONS(6312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6310), + [anon_sym_orelse] = ACTIONS(6312), + [anon_sym_or] = ACTIONS(6312), + [anon_sym_and] = ACTIONS(6312), + [anon_sym_EQ_EQ] = ACTIONS(6310), + [anon_sym_BANG_EQ] = ACTIONS(6310), + [anon_sym_LT] = ACTIONS(6312), + [anon_sym_LT_EQ] = ACTIONS(6310), + [anon_sym_GT] = ACTIONS(6312), + [anon_sym_GT_EQ] = ACTIONS(6310), + [anon_sym_AMP] = ACTIONS(6310), + [anon_sym_xor] = ACTIONS(6312), + [anon_sym_LT_LT] = ACTIONS(6312), + [anon_sym_GT_GT] = ACTIONS(6310), + [anon_sym_LT_LT_PIPE] = ACTIONS(6310), + [anon_sym_PLUS] = ACTIONS(6310), + [anon_sym_SLASH] = ACTIONS(6310), + [anon_sym_catch] = ACTIONS(6312), + [anon_sym_DOT] = ACTIONS(6312), + [anon_sym_CARET] = ACTIONS(6310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6310), + }, + [STATE(7533)] = { + [sym_identifier] = ACTIONS(6316), + [anon_sym_func] = ACTIONS(6316), + [anon_sym_c_func] = ACTIONS(6316), + [anon_sym_struct] = ACTIONS(6316), + [anon_sym_LPAREN] = ACTIONS(6314), + [anon_sym_COMMA] = ACTIONS(6314), + [anon_sym_RBRACE] = ACTIONS(6314), + [anon_sym_DASH] = ACTIONS(6314), + [anon_sym_PIPE] = ACTIONS(6314), + [anon_sym_struct_type_BANG] = ACTIONS(6314), + [anon_sym_QMARK] = ACTIONS(6314), + [anon_sym_AT] = ACTIONS(6314), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_LBRACK] = ACTIONS(6314), + [anon_sym_void] = ACTIONS(6316), + [anon_sym_noreturn] = ACTIONS(6316), + [anon_sym_type] = ACTIONS(6316), + [anon_sym_anyopaque] = ACTIONS(6316), + [anon_sym_bool] = ACTIONS(6316), + [anon_sym_int] = ACTIONS(6316), + [anon_sym_uint] = ACTIONS(6316), + [anon_sym_float] = ACTIONS(6316), + [anon_sym_range] = ACTIONS(6316), + [anon_sym_i8] = ACTIONS(6316), + [anon_sym_i16] = ACTIONS(6316), + [anon_sym_i32] = ACTIONS(6316), + [anon_sym_i64] = ACTIONS(6316), + [anon_sym_u8] = ACTIONS(6316), + [anon_sym_u16] = ACTIONS(6316), + [anon_sym_u32] = ACTIONS(6316), + [anon_sym_u64] = ACTIONS(6316), + [anon_sym_isize] = ACTIONS(6316), + [anon_sym_usize] = ACTIONS(6316), + [anon_sym_f32] = ACTIONS(6316), + [anon_sym_f64] = ACTIONS(6316), + [anon_sym_c_char] = ACTIONS(6316), + [anon_sym_c_schar] = ACTIONS(6316), + [anon_sym_c_uchar] = ACTIONS(6316), + [anon_sym_c_short] = ACTIONS(6316), + [anon_sym_c_ushort] = ACTIONS(6316), + [anon_sym_c_int] = ACTIONS(6316), + [anon_sym_c_uint] = ACTIONS(6316), + [anon_sym_c_long] = ACTIONS(6316), + [anon_sym_c_ulong] = ACTIONS(6316), + [anon_sym_c_longlong] = ACTIONS(6316), + [anon_sym_c_ulonglong] = ACTIONS(6316), + [anon_sym_c_float] = ACTIONS(6316), + [anon_sym_c_double] = ACTIONS(6316), + [anon_sym_c_longdouble] = ACTIONS(6316), + [anon_sym_else] = ACTIONS(6316), + [anon_sym_DOT_DOT] = ACTIONS(6316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6314), + [anon_sym_orelse] = ACTIONS(6316), + [anon_sym_or] = ACTIONS(6316), + [anon_sym_and] = ACTIONS(6316), + [anon_sym_EQ_EQ] = ACTIONS(6314), + [anon_sym_BANG_EQ] = ACTIONS(6314), + [anon_sym_LT] = ACTIONS(6316), + [anon_sym_LT_EQ] = ACTIONS(6314), + [anon_sym_GT] = ACTIONS(6316), + [anon_sym_GT_EQ] = ACTIONS(6314), + [anon_sym_AMP] = ACTIONS(6314), + [anon_sym_xor] = ACTIONS(6316), + [anon_sym_LT_LT] = ACTIONS(6316), + [anon_sym_GT_GT] = ACTIONS(6314), + [anon_sym_LT_LT_PIPE] = ACTIONS(6314), + [anon_sym_PLUS] = ACTIONS(6314), + [anon_sym_SLASH] = ACTIONS(6314), + [anon_sym_catch] = ACTIONS(6316), + [anon_sym_DOT] = ACTIONS(6316), + [anon_sym_CARET] = ACTIONS(6314), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6314), + }, + [STATE(7534)] = { + [sym_identifier] = ACTIONS(6320), + [anon_sym_func] = ACTIONS(6320), + [anon_sym_c_func] = ACTIONS(6320), + [anon_sym_struct] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6318), + [anon_sym_COMMA] = ACTIONS(6318), + [anon_sym_RBRACE] = ACTIONS(6318), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(6318), + [anon_sym_struct_type_BANG] = ACTIONS(6318), + [anon_sym_QMARK] = ACTIONS(6318), + [anon_sym_AT] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6318), + [anon_sym_LBRACK] = ACTIONS(6318), + [anon_sym_void] = ACTIONS(6320), + [anon_sym_noreturn] = ACTIONS(6320), + [anon_sym_type] = ACTIONS(6320), + [anon_sym_anyopaque] = ACTIONS(6320), + [anon_sym_bool] = ACTIONS(6320), + [anon_sym_int] = ACTIONS(6320), + [anon_sym_uint] = ACTIONS(6320), + [anon_sym_float] = ACTIONS(6320), + [anon_sym_range] = ACTIONS(6320), + [anon_sym_i8] = ACTIONS(6320), + [anon_sym_i16] = ACTIONS(6320), + [anon_sym_i32] = ACTIONS(6320), + [anon_sym_i64] = ACTIONS(6320), + [anon_sym_u8] = ACTIONS(6320), + [anon_sym_u16] = ACTIONS(6320), + [anon_sym_u32] = ACTIONS(6320), + [anon_sym_u64] = ACTIONS(6320), + [anon_sym_isize] = ACTIONS(6320), + [anon_sym_usize] = ACTIONS(6320), + [anon_sym_f32] = ACTIONS(6320), + [anon_sym_f64] = ACTIONS(6320), + [anon_sym_c_char] = ACTIONS(6320), + [anon_sym_c_schar] = ACTIONS(6320), + [anon_sym_c_uchar] = ACTIONS(6320), + [anon_sym_c_short] = ACTIONS(6320), + [anon_sym_c_ushort] = ACTIONS(6320), + [anon_sym_c_int] = ACTIONS(6320), + [anon_sym_c_uint] = ACTIONS(6320), + [anon_sym_c_long] = ACTIONS(6320), + [anon_sym_c_ulong] = ACTIONS(6320), + [anon_sym_c_longlong] = ACTIONS(6320), + [anon_sym_c_ulonglong] = ACTIONS(6320), + [anon_sym_c_float] = ACTIONS(6320), + [anon_sym_c_double] = ACTIONS(6320), + [anon_sym_c_longdouble] = ACTIONS(6320), + [anon_sym_else] = ACTIONS(6320), + [anon_sym_DOT_DOT] = ACTIONS(6320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6318), + [anon_sym_orelse] = ACTIONS(6320), + [anon_sym_or] = ACTIONS(6320), + [anon_sym_and] = ACTIONS(6320), + [anon_sym_EQ_EQ] = ACTIONS(6318), + [anon_sym_BANG_EQ] = ACTIONS(6318), + [anon_sym_LT] = ACTIONS(6320), + [anon_sym_LT_EQ] = ACTIONS(6318), + [anon_sym_GT] = ACTIONS(6320), + [anon_sym_GT_EQ] = ACTIONS(6318), + [anon_sym_AMP] = ACTIONS(6318), + [anon_sym_xor] = ACTIONS(6320), + [anon_sym_LT_LT] = ACTIONS(6320), + [anon_sym_GT_GT] = ACTIONS(6318), + [anon_sym_LT_LT_PIPE] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_SLASH] = ACTIONS(6318), + [anon_sym_catch] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(6318), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6318), + }, + [STATE(7535)] = { + [sym_identifier] = ACTIONS(6060), + [anon_sym_func] = ACTIONS(6060), + [anon_sym_c_func] = ACTIONS(6060), + [anon_sym_struct] = ACTIONS(6060), + [anon_sym_LPAREN] = ACTIONS(6058), + [anon_sym_COMMA] = ACTIONS(6058), + [anon_sym_RBRACE] = ACTIONS(6058), + [anon_sym_DASH] = ACTIONS(6058), + [anon_sym_PIPE] = ACTIONS(6058), + [anon_sym_struct_type_BANG] = ACTIONS(6058), + [anon_sym_QMARK] = ACTIONS(6058), + [anon_sym_AT] = ACTIONS(6058), + [anon_sym_STAR] = ACTIONS(6058), + [anon_sym_LBRACK] = ACTIONS(6058), + [anon_sym_void] = ACTIONS(6060), + [anon_sym_noreturn] = ACTIONS(6060), + [anon_sym_type] = ACTIONS(6060), + [anon_sym_anyopaque] = ACTIONS(6060), + [anon_sym_bool] = ACTIONS(6060), + [anon_sym_int] = ACTIONS(6060), + [anon_sym_uint] = ACTIONS(6060), + [anon_sym_float] = ACTIONS(6060), + [anon_sym_range] = ACTIONS(6060), + [anon_sym_i8] = ACTIONS(6060), + [anon_sym_i16] = ACTIONS(6060), + [anon_sym_i32] = ACTIONS(6060), + [anon_sym_i64] = ACTIONS(6060), + [anon_sym_u8] = ACTIONS(6060), + [anon_sym_u16] = ACTIONS(6060), + [anon_sym_u32] = ACTIONS(6060), + [anon_sym_u64] = ACTIONS(6060), + [anon_sym_isize] = ACTIONS(6060), + [anon_sym_usize] = ACTIONS(6060), + [anon_sym_f32] = ACTIONS(6060), + [anon_sym_f64] = ACTIONS(6060), + [anon_sym_c_char] = ACTIONS(6060), + [anon_sym_c_schar] = ACTIONS(6060), + [anon_sym_c_uchar] = ACTIONS(6060), + [anon_sym_c_short] = ACTIONS(6060), + [anon_sym_c_ushort] = ACTIONS(6060), + [anon_sym_c_int] = ACTIONS(6060), + [anon_sym_c_uint] = ACTIONS(6060), + [anon_sym_c_long] = ACTIONS(6060), + [anon_sym_c_ulong] = ACTIONS(6060), + [anon_sym_c_longlong] = ACTIONS(6060), + [anon_sym_c_ulonglong] = ACTIONS(6060), + [anon_sym_c_float] = ACTIONS(6060), + [anon_sym_c_double] = ACTIONS(6060), + [anon_sym_c_longdouble] = ACTIONS(6060), + [anon_sym_else] = ACTIONS(6060), + [anon_sym_DOT_DOT] = ACTIONS(6060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6058), + [anon_sym_orelse] = ACTIONS(6060), + [anon_sym_or] = ACTIONS(6060), + [anon_sym_and] = ACTIONS(6060), + [anon_sym_EQ_EQ] = ACTIONS(6058), + [anon_sym_BANG_EQ] = ACTIONS(6058), + [anon_sym_LT] = ACTIONS(6060), + [anon_sym_LT_EQ] = ACTIONS(6058), + [anon_sym_GT] = ACTIONS(6060), + [anon_sym_GT_EQ] = ACTIONS(6058), + [anon_sym_AMP] = ACTIONS(6058), + [anon_sym_xor] = ACTIONS(6060), + [anon_sym_LT_LT] = ACTIONS(6060), + [anon_sym_GT_GT] = ACTIONS(6058), + [anon_sym_LT_LT_PIPE] = ACTIONS(6058), + [anon_sym_PLUS] = ACTIONS(6058), + [anon_sym_SLASH] = ACTIONS(6058), + [anon_sym_catch] = ACTIONS(6060), + [anon_sym_DOT] = ACTIONS(6060), + [anon_sym_CARET] = ACTIONS(6058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6058), + }, + [STATE(7536)] = { + [sym_identifier] = ACTIONS(5860), + [anon_sym_func] = ACTIONS(5860), + [anon_sym_c_func] = ACTIONS(5860), + [anon_sym_struct] = ACTIONS(5860), + [anon_sym_LPAREN] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5858), + [anon_sym_RBRACE] = ACTIONS(5858), + [anon_sym_DASH] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_struct_type_BANG] = ACTIONS(5858), + [anon_sym_QMARK] = ACTIONS(5858), + [anon_sym_AT] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(5858), + [anon_sym_LBRACK] = ACTIONS(5858), + [anon_sym_void] = ACTIONS(5860), + [anon_sym_noreturn] = ACTIONS(5860), + [anon_sym_type] = ACTIONS(5860), + [anon_sym_anyopaque] = ACTIONS(5860), + [anon_sym_bool] = ACTIONS(5860), + [anon_sym_int] = ACTIONS(5860), + [anon_sym_uint] = ACTIONS(5860), + [anon_sym_float] = ACTIONS(5860), + [anon_sym_range] = ACTIONS(5860), + [anon_sym_i8] = ACTIONS(5860), + [anon_sym_i16] = ACTIONS(5860), + [anon_sym_i32] = ACTIONS(5860), + [anon_sym_i64] = ACTIONS(5860), + [anon_sym_u8] = ACTIONS(5860), + [anon_sym_u16] = ACTIONS(5860), + [anon_sym_u32] = ACTIONS(5860), + [anon_sym_u64] = ACTIONS(5860), + [anon_sym_isize] = ACTIONS(5860), + [anon_sym_usize] = ACTIONS(5860), + [anon_sym_f32] = ACTIONS(5860), + [anon_sym_f64] = ACTIONS(5860), + [anon_sym_c_char] = ACTIONS(5860), + [anon_sym_c_schar] = ACTIONS(5860), + [anon_sym_c_uchar] = ACTIONS(5860), + [anon_sym_c_short] = ACTIONS(5860), + [anon_sym_c_ushort] = ACTIONS(5860), + [anon_sym_c_int] = ACTIONS(5860), + [anon_sym_c_uint] = ACTIONS(5860), + [anon_sym_c_long] = ACTIONS(5860), + [anon_sym_c_ulong] = ACTIONS(5860), + [anon_sym_c_longlong] = ACTIONS(5860), + [anon_sym_c_ulonglong] = ACTIONS(5860), + [anon_sym_c_float] = ACTIONS(5860), + [anon_sym_c_double] = ACTIONS(5860), + [anon_sym_c_longdouble] = ACTIONS(5860), + [anon_sym_else] = ACTIONS(5860), + [anon_sym_DOT_DOT] = ACTIONS(5860), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5858), + [anon_sym_orelse] = ACTIONS(5860), + [anon_sym_or] = ACTIONS(5860), + [anon_sym_and] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_BANG_EQ] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_LT_EQ] = ACTIONS(5858), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_EQ] = ACTIONS(5858), + [anon_sym_AMP] = ACTIONS(5858), + [anon_sym_xor] = ACTIONS(5860), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(5858), + [anon_sym_LT_LT_PIPE] = ACTIONS(5858), + [anon_sym_PLUS] = ACTIONS(5858), + [anon_sym_SLASH] = ACTIONS(5858), + [anon_sym_catch] = ACTIONS(5860), + [anon_sym_DOT] = ACTIONS(5860), + [anon_sym_CARET] = ACTIONS(5858), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5858), + }, + [STATE(7537)] = { + [sym_identifier] = ACTIONS(4366), + [anon_sym_func] = ACTIONS(4366), + [anon_sym_c_func] = ACTIONS(4366), + [anon_sym_struct] = ACTIONS(4366), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4364), + [anon_sym_PIPE] = ACTIONS(4364), + [anon_sym_struct_type_BANG] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [anon_sym_AT] = ACTIONS(4364), + [anon_sym_STAR] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_void] = ACTIONS(4366), + [anon_sym_noreturn] = ACTIONS(4366), + [anon_sym_type] = ACTIONS(4366), + [anon_sym_anyopaque] = ACTIONS(4366), + [anon_sym_bool] = ACTIONS(4366), + [anon_sym_int] = ACTIONS(4366), + [anon_sym_uint] = ACTIONS(4366), + [anon_sym_float] = ACTIONS(4366), + [anon_sym_range] = ACTIONS(4366), + [anon_sym_i8] = ACTIONS(4366), + [anon_sym_i16] = ACTIONS(4366), + [anon_sym_i32] = ACTIONS(4366), + [anon_sym_i64] = ACTIONS(4366), + [anon_sym_u8] = ACTIONS(4366), + [anon_sym_u16] = ACTIONS(4366), + [anon_sym_u32] = ACTIONS(4366), + [anon_sym_u64] = ACTIONS(4366), + [anon_sym_isize] = ACTIONS(4366), + [anon_sym_usize] = ACTIONS(4366), + [anon_sym_f32] = ACTIONS(4366), + [anon_sym_f64] = ACTIONS(4366), + [anon_sym_c_char] = ACTIONS(4366), + [anon_sym_c_schar] = ACTIONS(4366), + [anon_sym_c_uchar] = ACTIONS(4366), + [anon_sym_c_short] = ACTIONS(4366), + [anon_sym_c_ushort] = ACTIONS(4366), + [anon_sym_c_int] = ACTIONS(4366), + [anon_sym_c_uint] = ACTIONS(4366), + [anon_sym_c_long] = ACTIONS(4366), + [anon_sym_c_ulong] = ACTIONS(4366), + [anon_sym_c_longlong] = ACTIONS(4366), + [anon_sym_c_ulonglong] = ACTIONS(4366), + [anon_sym_c_float] = ACTIONS(4366), + [anon_sym_c_double] = ACTIONS(4366), + [anon_sym_c_longdouble] = ACTIONS(4366), + [anon_sym_else] = ACTIONS(4366), + [anon_sym_DOT_DOT] = ACTIONS(4366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4364), + [anon_sym_orelse] = ACTIONS(4366), + [anon_sym_or] = ACTIONS(4366), + [anon_sym_and] = ACTIONS(4366), + [anon_sym_EQ_EQ] = ACTIONS(4364), + [anon_sym_BANG_EQ] = ACTIONS(4364), + [anon_sym_LT] = ACTIONS(4366), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4366), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_xor] = ACTIONS(4366), + [anon_sym_LT_LT] = ACTIONS(4366), + [anon_sym_GT_GT] = ACTIONS(4364), + [anon_sym_LT_LT_PIPE] = ACTIONS(4364), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_catch] = ACTIONS(4366), + [anon_sym_DOT] = ACTIONS(4366), + [anon_sym_CARET] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4364), + }, + [STATE(7538)] = { + [sym_identifier] = ACTIONS(4370), + [anon_sym_func] = ACTIONS(4370), + [anon_sym_c_func] = ACTIONS(4370), + [anon_sym_struct] = ACTIONS(4370), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_COMMA] = ACTIONS(4368), + [anon_sym_RBRACE] = ACTIONS(4368), + [anon_sym_DASH] = ACTIONS(4368), + [anon_sym_PIPE] = ACTIONS(4368), + [anon_sym_struct_type_BANG] = ACTIONS(4368), + [anon_sym_QMARK] = ACTIONS(4368), + [anon_sym_AT] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_void] = ACTIONS(4370), + [anon_sym_noreturn] = ACTIONS(4370), + [anon_sym_type] = ACTIONS(4370), + [anon_sym_anyopaque] = ACTIONS(4370), + [anon_sym_bool] = ACTIONS(4370), + [anon_sym_int] = ACTIONS(4370), + [anon_sym_uint] = ACTIONS(4370), + [anon_sym_float] = ACTIONS(4370), + [anon_sym_range] = ACTIONS(4370), + [anon_sym_i8] = ACTIONS(4370), + [anon_sym_i16] = ACTIONS(4370), + [anon_sym_i32] = ACTIONS(4370), + [anon_sym_i64] = ACTIONS(4370), + [anon_sym_u8] = ACTIONS(4370), + [anon_sym_u16] = ACTIONS(4370), + [anon_sym_u32] = ACTIONS(4370), + [anon_sym_u64] = ACTIONS(4370), + [anon_sym_isize] = ACTIONS(4370), + [anon_sym_usize] = ACTIONS(4370), + [anon_sym_f32] = ACTIONS(4370), + [anon_sym_f64] = ACTIONS(4370), + [anon_sym_c_char] = ACTIONS(4370), + [anon_sym_c_schar] = ACTIONS(4370), + [anon_sym_c_uchar] = ACTIONS(4370), + [anon_sym_c_short] = ACTIONS(4370), + [anon_sym_c_ushort] = ACTIONS(4370), + [anon_sym_c_int] = ACTIONS(4370), + [anon_sym_c_uint] = ACTIONS(4370), + [anon_sym_c_long] = ACTIONS(4370), + [anon_sym_c_ulong] = ACTIONS(4370), + [anon_sym_c_longlong] = ACTIONS(4370), + [anon_sym_c_ulonglong] = ACTIONS(4370), + [anon_sym_c_float] = ACTIONS(4370), + [anon_sym_c_double] = ACTIONS(4370), + [anon_sym_c_longdouble] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(4370), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4368), + [anon_sym_orelse] = ACTIONS(4370), + [anon_sym_or] = ACTIONS(4370), + [anon_sym_and] = ACTIONS(4370), + [anon_sym_EQ_EQ] = ACTIONS(4368), + [anon_sym_BANG_EQ] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4370), + [anon_sym_LT_EQ] = ACTIONS(4368), + [anon_sym_GT] = ACTIONS(4370), + [anon_sym_GT_EQ] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_xor] = ACTIONS(4370), + [anon_sym_LT_LT] = ACTIONS(4370), + [anon_sym_GT_GT] = ACTIONS(4368), + [anon_sym_LT_LT_PIPE] = ACTIONS(4368), + [anon_sym_PLUS] = ACTIONS(4368), + [anon_sym_SLASH] = ACTIONS(4368), + [anon_sym_catch] = ACTIONS(4370), + [anon_sym_DOT] = ACTIONS(4370), + [anon_sym_CARET] = ACTIONS(4368), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4368), + }, + [STATE(7539)] = { + [sym_identifier] = ACTIONS(4420), + [anon_sym_func] = ACTIONS(4420), + [anon_sym_c_func] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4418), + [anon_sym_PIPE] = ACTIONS(4418), + [anon_sym_struct_type_BANG] = ACTIONS(4418), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_void] = ACTIONS(4420), + [anon_sym_noreturn] = 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_else] = ACTIONS(4420), + [anon_sym_DOT_DOT] = ACTIONS(4420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), + [anon_sym_orelse] = ACTIONS(4420), + [anon_sym_or] = ACTIONS(4420), + [anon_sym_and] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4418), + [anon_sym_xor] = ACTIONS(4420), + [anon_sym_LT_LT] = ACTIONS(4420), + [anon_sym_GT_GT] = ACTIONS(4418), + [anon_sym_LT_LT_PIPE] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4418), + [anon_sym_SLASH] = ACTIONS(4418), + [anon_sym_catch] = ACTIONS(4420), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4418), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4418), + }, + [STATE(7540)] = { + [sym_identifier] = ACTIONS(4374), + [anon_sym_func] = ACTIONS(4374), + [anon_sym_c_func] = ACTIONS(4374), + [anon_sym_struct] = ACTIONS(4374), + [anon_sym_LPAREN] = ACTIONS(4372), + [anon_sym_COMMA] = ACTIONS(4372), + [anon_sym_RBRACE] = ACTIONS(4372), + [anon_sym_DASH] = ACTIONS(4372), + [anon_sym_PIPE] = ACTIONS(4372), + [anon_sym_struct_type_BANG] = ACTIONS(4372), + [anon_sym_QMARK] = ACTIONS(4372), + [anon_sym_AT] = ACTIONS(4372), + [anon_sym_STAR] = ACTIONS(4372), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_void] = ACTIONS(4374), + [anon_sym_noreturn] = ACTIONS(4374), + [anon_sym_type] = ACTIONS(4374), + [anon_sym_anyopaque] = ACTIONS(4374), + [anon_sym_bool] = ACTIONS(4374), + [anon_sym_int] = ACTIONS(4374), + [anon_sym_uint] = ACTIONS(4374), + [anon_sym_float] = ACTIONS(4374), + [anon_sym_range] = ACTIONS(4374), + [anon_sym_i8] = ACTIONS(4374), + [anon_sym_i16] = ACTIONS(4374), + [anon_sym_i32] = ACTIONS(4374), + [anon_sym_i64] = ACTIONS(4374), + [anon_sym_u8] = ACTIONS(4374), + [anon_sym_u16] = ACTIONS(4374), + [anon_sym_u32] = ACTIONS(4374), + [anon_sym_u64] = ACTIONS(4374), + [anon_sym_isize] = ACTIONS(4374), + [anon_sym_usize] = ACTIONS(4374), + [anon_sym_f32] = ACTIONS(4374), + [anon_sym_f64] = ACTIONS(4374), + [anon_sym_c_char] = ACTIONS(4374), + [anon_sym_c_schar] = ACTIONS(4374), + [anon_sym_c_uchar] = ACTIONS(4374), + [anon_sym_c_short] = ACTIONS(4374), + [anon_sym_c_ushort] = ACTIONS(4374), + [anon_sym_c_int] = ACTIONS(4374), + [anon_sym_c_uint] = ACTIONS(4374), + [anon_sym_c_long] = ACTIONS(4374), + [anon_sym_c_ulong] = ACTIONS(4374), + [anon_sym_c_longlong] = ACTIONS(4374), + [anon_sym_c_ulonglong] = ACTIONS(4374), + [anon_sym_c_float] = ACTIONS(4374), + [anon_sym_c_double] = ACTIONS(4374), + [anon_sym_c_longdouble] = ACTIONS(4374), + [anon_sym_else] = ACTIONS(4374), + [anon_sym_DOT_DOT] = ACTIONS(4374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_orelse] = ACTIONS(4374), + [anon_sym_or] = ACTIONS(4374), + [anon_sym_and] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_LT] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4372), + [anon_sym_GT] = ACTIONS(4374), + [anon_sym_GT_EQ] = ACTIONS(4372), + [anon_sym_AMP] = ACTIONS(4372), + [anon_sym_xor] = ACTIONS(4374), + [anon_sym_LT_LT] = ACTIONS(4374), + [anon_sym_GT_GT] = ACTIONS(4372), + [anon_sym_LT_LT_PIPE] = ACTIONS(4372), + [anon_sym_PLUS] = ACTIONS(4372), + [anon_sym_SLASH] = ACTIONS(4372), + [anon_sym_catch] = ACTIONS(4374), + [anon_sym_DOT] = ACTIONS(4374), + [anon_sym_CARET] = ACTIONS(4372), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4372), + }, + [STATE(7541)] = { + [sym_identifier] = ACTIONS(4424), + [anon_sym_func] = ACTIONS(4424), + [anon_sym_c_func] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym_COMMA] = ACTIONS(4422), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(4422), + [anon_sym_struct_type_BANG] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_void] = ACTIONS(4424), + [anon_sym_noreturn] = 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_else] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4422), + [anon_sym_orelse] = ACTIONS(4424), + [anon_sym_or] = ACTIONS(4424), + [anon_sym_and] = ACTIONS(4424), + [anon_sym_EQ_EQ] = ACTIONS(4422), + [anon_sym_BANG_EQ] = ACTIONS(4422), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_LT_EQ] = ACTIONS(4422), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_GT_EQ] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4422), + [anon_sym_xor] = ACTIONS(4424), + [anon_sym_LT_LT] = ACTIONS(4424), + [anon_sym_GT_GT] = ACTIONS(4422), + [anon_sym_LT_LT_PIPE] = ACTIONS(4422), + [anon_sym_PLUS] = ACTIONS(4422), + [anon_sym_SLASH] = ACTIONS(4422), + [anon_sym_catch] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4422), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4422), + }, + [STATE(7542)] = { + [sym_identifier] = ACTIONS(1256), + [anon_sym_func] = ACTIONS(1256), + [anon_sym_c_func] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_struct_type_BANG] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_anyopaque] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_int] = ACTIONS(1256), + [anon_sym_uint] = ACTIONS(1256), + [anon_sym_float] = ACTIONS(1256), + [anon_sym_range] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_c_char] = ACTIONS(1256), + [anon_sym_c_schar] = ACTIONS(1256), + [anon_sym_c_uchar] = ACTIONS(1256), + [anon_sym_c_short] = ACTIONS(1256), + [anon_sym_c_ushort] = ACTIONS(1256), + [anon_sym_c_int] = ACTIONS(1256), + [anon_sym_c_uint] = ACTIONS(1256), + [anon_sym_c_long] = ACTIONS(1256), + [anon_sym_c_ulong] = ACTIONS(1256), + [anon_sym_c_longlong] = ACTIONS(1256), + [anon_sym_c_ulonglong] = ACTIONS(1256), + [anon_sym_c_float] = ACTIONS(1256), + [anon_sym_c_double] = ACTIONS(1256), + [anon_sym_c_longdouble] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_orelse] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_LT_LT_PIPE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_catch] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1252), + }, + [STATE(7543)] = { + [sym_identifier] = ACTIONS(5916), + [anon_sym_func] = ACTIONS(5916), + [anon_sym_c_func] = ACTIONS(5916), + [anon_sym_struct] = ACTIONS(5916), + [anon_sym_LPAREN] = ACTIONS(5914), + [anon_sym_COMMA] = ACTIONS(5914), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_DASH] = ACTIONS(5914), + [anon_sym_PIPE] = ACTIONS(5914), + [anon_sym_struct_type_BANG] = ACTIONS(5914), + [anon_sym_QMARK] = ACTIONS(5914), + [anon_sym_AT] = ACTIONS(5914), + [anon_sym_STAR] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(5914), + [anon_sym_void] = ACTIONS(5916), + [anon_sym_noreturn] = ACTIONS(5916), + [anon_sym_type] = ACTIONS(5916), + [anon_sym_anyopaque] = ACTIONS(5916), + [anon_sym_bool] = ACTIONS(5916), + [anon_sym_int] = ACTIONS(5916), + [anon_sym_uint] = ACTIONS(5916), + [anon_sym_float] = ACTIONS(5916), + [anon_sym_range] = ACTIONS(5916), + [anon_sym_i8] = ACTIONS(5916), + [anon_sym_i16] = ACTIONS(5916), + [anon_sym_i32] = ACTIONS(5916), + [anon_sym_i64] = ACTIONS(5916), + [anon_sym_u8] = ACTIONS(5916), + [anon_sym_u16] = ACTIONS(5916), + [anon_sym_u32] = ACTIONS(5916), + [anon_sym_u64] = ACTIONS(5916), + [anon_sym_isize] = ACTIONS(5916), + [anon_sym_usize] = ACTIONS(5916), + [anon_sym_f32] = ACTIONS(5916), + [anon_sym_f64] = ACTIONS(5916), + [anon_sym_c_char] = ACTIONS(5916), + [anon_sym_c_schar] = ACTIONS(5916), + [anon_sym_c_uchar] = ACTIONS(5916), + [anon_sym_c_short] = ACTIONS(5916), + [anon_sym_c_ushort] = ACTIONS(5916), + [anon_sym_c_int] = ACTIONS(5916), + [anon_sym_c_uint] = ACTIONS(5916), + [anon_sym_c_long] = ACTIONS(5916), + [anon_sym_c_ulong] = ACTIONS(5916), + [anon_sym_c_longlong] = ACTIONS(5916), + [anon_sym_c_ulonglong] = ACTIONS(5916), + [anon_sym_c_float] = ACTIONS(5916), + [anon_sym_c_double] = ACTIONS(5916), + [anon_sym_c_longdouble] = ACTIONS(5916), + [anon_sym_else] = ACTIONS(5916), + [anon_sym_DOT_DOT] = ACTIONS(5916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5914), + [anon_sym_orelse] = ACTIONS(5916), + [anon_sym_or] = ACTIONS(5916), + [anon_sym_and] = ACTIONS(5916), + [anon_sym_EQ_EQ] = ACTIONS(5914), + [anon_sym_BANG_EQ] = ACTIONS(5914), + [anon_sym_LT] = ACTIONS(5916), + [anon_sym_LT_EQ] = ACTIONS(5914), + [anon_sym_GT] = ACTIONS(5916), + [anon_sym_GT_EQ] = ACTIONS(5914), + [anon_sym_AMP] = ACTIONS(5914), + [anon_sym_xor] = ACTIONS(5916), + [anon_sym_LT_LT] = ACTIONS(5916), + [anon_sym_GT_GT] = ACTIONS(5914), + [anon_sym_LT_LT_PIPE] = ACTIONS(5914), + [anon_sym_PLUS] = ACTIONS(5914), + [anon_sym_SLASH] = ACTIONS(5914), + [anon_sym_catch] = ACTIONS(5916), + [anon_sym_DOT] = ACTIONS(5916), + [anon_sym_CARET] = ACTIONS(5914), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5914), + }, + [STATE(7544)] = { + [sym_argument_list] = STATE(7524), + [sym_identifier] = ACTIONS(5708), + [anon_sym_func] = ACTIONS(5708), + [anon_sym_c_func] = ACTIONS(5708), + [anon_sym_struct] = ACTIONS(5708), + [anon_sym_LPAREN] = ACTIONS(11234), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(11306), + [anon_sym_PIPE] = ACTIONS(11312), + [anon_sym_struct_type_BANG] = ACTIONS(5706), + [anon_sym_QMARK] = ACTIONS(11290), + [anon_sym_AT] = ACTIONS(5706), + [anon_sym_STAR] = ACTIONS(11304), + [anon_sym_LBRACK] = ACTIONS(11292), + [anon_sym_void] = ACTIONS(5708), + [anon_sym_noreturn] = ACTIONS(5708), + [anon_sym_type] = ACTIONS(5708), + [anon_sym_anyopaque] = ACTIONS(5708), + [anon_sym_bool] = ACTIONS(5708), + [anon_sym_int] = ACTIONS(5708), + [anon_sym_uint] = ACTIONS(5708), + [anon_sym_float] = ACTIONS(5708), + [anon_sym_range] = ACTIONS(5708), + [anon_sym_i8] = ACTIONS(5708), + [anon_sym_i16] = ACTIONS(5708), + [anon_sym_i32] = ACTIONS(5708), + [anon_sym_i64] = ACTIONS(5708), + [anon_sym_u8] = ACTIONS(5708), + [anon_sym_u16] = ACTIONS(5708), + [anon_sym_u32] = ACTIONS(5708), + [anon_sym_u64] = ACTIONS(5708), + [anon_sym_isize] = ACTIONS(5708), + [anon_sym_usize] = ACTIONS(5708), + [anon_sym_f32] = ACTIONS(5708), + [anon_sym_f64] = ACTIONS(5708), + [anon_sym_c_char] = ACTIONS(5708), + [anon_sym_c_schar] = ACTIONS(5708), + [anon_sym_c_uchar] = ACTIONS(5708), + [anon_sym_c_short] = ACTIONS(5708), + [anon_sym_c_ushort] = ACTIONS(5708), + [anon_sym_c_int] = ACTIONS(5708), + [anon_sym_c_uint] = ACTIONS(5708), + [anon_sym_c_long] = ACTIONS(5708), + [anon_sym_c_ulong] = ACTIONS(5708), + [anon_sym_c_longlong] = ACTIONS(5708), + [anon_sym_c_ulonglong] = ACTIONS(5708), + [anon_sym_c_float] = ACTIONS(5708), + [anon_sym_c_double] = ACTIONS(5708), + [anon_sym_c_longdouble] = ACTIONS(5708), + [anon_sym_DOT_DOT] = ACTIONS(11406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(11408), + [anon_sym_orelse] = ACTIONS(11353), + [anon_sym_or] = ACTIONS(11314), + [anon_sym_and] = ACTIONS(11316), + [anon_sym_EQ_EQ] = ACTIONS(11318), + [anon_sym_BANG_EQ] = ACTIONS(11318), + [anon_sym_LT] = ACTIONS(11320), + [anon_sym_LT_EQ] = ACTIONS(11318), + [anon_sym_GT] = ACTIONS(11320), + [anon_sym_GT_EQ] = ACTIONS(11318), + [anon_sym_AMP] = ACTIONS(11312), + [anon_sym_xor] = ACTIONS(11322), + [anon_sym_LT_LT] = ACTIONS(11308), + [anon_sym_GT_GT] = ACTIONS(11310), + [anon_sym_LT_LT_PIPE] = ACTIONS(11310), + [anon_sym_PLUS] = ACTIONS(11306), + [anon_sym_SLASH] = ACTIONS(11304), + [anon_sym_catch] = ACTIONS(11400), + [anon_sym_DOT] = ACTIONS(11294), + [anon_sym_CARET] = ACTIONS(11290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5706), + }, + [STATE(7545)] = { + [sym_identifier] = ACTIONS(4382), + [anon_sym_func] = ACTIONS(4382), + [anon_sym_c_func] = ACTIONS(4382), + [anon_sym_struct] = ACTIONS(4382), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_COMMA] = ACTIONS(4380), + [anon_sym_RBRACE] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_struct_type_BANG] = ACTIONS(4380), + [anon_sym_QMARK] = ACTIONS(4380), + [anon_sym_AT] = ACTIONS(4380), + [anon_sym_STAR] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_void] = ACTIONS(4382), + [anon_sym_noreturn] = ACTIONS(4382), + [anon_sym_type] = ACTIONS(4382), + [anon_sym_anyopaque] = ACTIONS(4382), + [anon_sym_bool] = ACTIONS(4382), + [anon_sym_int] = ACTIONS(4382), + [anon_sym_uint] = ACTIONS(4382), + [anon_sym_float] = ACTIONS(4382), + [anon_sym_range] = ACTIONS(4382), + [anon_sym_i8] = ACTIONS(4382), + [anon_sym_i16] = ACTIONS(4382), + [anon_sym_i32] = ACTIONS(4382), + [anon_sym_i64] = ACTIONS(4382), + [anon_sym_u8] = ACTIONS(4382), + [anon_sym_u16] = ACTIONS(4382), + [anon_sym_u32] = ACTIONS(4382), + [anon_sym_u64] = ACTIONS(4382), + [anon_sym_isize] = ACTIONS(4382), + [anon_sym_usize] = ACTIONS(4382), + [anon_sym_f32] = ACTIONS(4382), + [anon_sym_f64] = ACTIONS(4382), + [anon_sym_c_char] = ACTIONS(4382), + [anon_sym_c_schar] = ACTIONS(4382), + [anon_sym_c_uchar] = ACTIONS(4382), + [anon_sym_c_short] = ACTIONS(4382), + [anon_sym_c_ushort] = ACTIONS(4382), + [anon_sym_c_int] = ACTIONS(4382), + [anon_sym_c_uint] = ACTIONS(4382), + [anon_sym_c_long] = ACTIONS(4382), + [anon_sym_c_ulong] = ACTIONS(4382), + [anon_sym_c_longlong] = ACTIONS(4382), + [anon_sym_c_ulonglong] = ACTIONS(4382), + [anon_sym_c_float] = ACTIONS(4382), + [anon_sym_c_double] = ACTIONS(4382), + [anon_sym_c_longdouble] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4380), + [anon_sym_orelse] = ACTIONS(4382), + [anon_sym_or] = ACTIONS(4382), + [anon_sym_and] = ACTIONS(4382), + [anon_sym_EQ_EQ] = ACTIONS(4380), + [anon_sym_BANG_EQ] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_LT_EQ] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_GT_EQ] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_xor] = ACTIONS(4382), + [anon_sym_LT_LT] = ACTIONS(4382), + [anon_sym_GT_GT] = ACTIONS(4380), + [anon_sym_LT_LT_PIPE] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_catch] = ACTIONS(4382), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_CARET] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4380), + }, + [STATE(7546)] = { + [sym_identifier] = ACTIONS(5920), + [anon_sym_func] = ACTIONS(5920), + [anon_sym_c_func] = ACTIONS(5920), + [anon_sym_struct] = ACTIONS(5920), + [anon_sym_LPAREN] = ACTIONS(5918), + [anon_sym_COMMA] = ACTIONS(5918), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5918), + [anon_sym_PIPE] = ACTIONS(5918), + [anon_sym_struct_type_BANG] = ACTIONS(5918), + [anon_sym_QMARK] = ACTIONS(5918), + [anon_sym_AT] = ACTIONS(5918), + [anon_sym_STAR] = ACTIONS(5918), + [anon_sym_LBRACK] = ACTIONS(5918), + [anon_sym_void] = ACTIONS(5920), + [anon_sym_noreturn] = ACTIONS(5920), + [anon_sym_type] = ACTIONS(5920), + [anon_sym_anyopaque] = ACTIONS(5920), + [anon_sym_bool] = ACTIONS(5920), + [anon_sym_int] = ACTIONS(5920), + [anon_sym_uint] = ACTIONS(5920), + [anon_sym_float] = ACTIONS(5920), + [anon_sym_range] = ACTIONS(5920), + [anon_sym_i8] = ACTIONS(5920), + [anon_sym_i16] = ACTIONS(5920), + [anon_sym_i32] = ACTIONS(5920), + [anon_sym_i64] = ACTIONS(5920), + [anon_sym_u8] = ACTIONS(5920), + [anon_sym_u16] = ACTIONS(5920), + [anon_sym_u32] = ACTIONS(5920), + [anon_sym_u64] = ACTIONS(5920), + [anon_sym_isize] = ACTIONS(5920), + [anon_sym_usize] = ACTIONS(5920), + [anon_sym_f32] = ACTIONS(5920), + [anon_sym_f64] = ACTIONS(5920), + [anon_sym_c_char] = ACTIONS(5920), + [anon_sym_c_schar] = ACTIONS(5920), + [anon_sym_c_uchar] = ACTIONS(5920), + [anon_sym_c_short] = ACTIONS(5920), + [anon_sym_c_ushort] = ACTIONS(5920), + [anon_sym_c_int] = ACTIONS(5920), + [anon_sym_c_uint] = ACTIONS(5920), + [anon_sym_c_long] = ACTIONS(5920), + [anon_sym_c_ulong] = ACTIONS(5920), + [anon_sym_c_longlong] = ACTIONS(5920), + [anon_sym_c_ulonglong] = ACTIONS(5920), + [anon_sym_c_float] = ACTIONS(5920), + [anon_sym_c_double] = ACTIONS(5920), + [anon_sym_c_longdouble] = ACTIONS(5920), + [anon_sym_else] = ACTIONS(5920), + [anon_sym_DOT_DOT] = ACTIONS(5920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5918), + [anon_sym_orelse] = ACTIONS(5920), + [anon_sym_or] = ACTIONS(5920), + [anon_sym_and] = ACTIONS(5920), + [anon_sym_EQ_EQ] = ACTIONS(5918), + [anon_sym_BANG_EQ] = ACTIONS(5918), + [anon_sym_LT] = ACTIONS(5920), + [anon_sym_LT_EQ] = ACTIONS(5918), + [anon_sym_GT] = ACTIONS(5920), + [anon_sym_GT_EQ] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5918), + [anon_sym_xor] = ACTIONS(5920), + [anon_sym_LT_LT] = ACTIONS(5920), + [anon_sym_GT_GT] = ACTIONS(5918), + [anon_sym_LT_LT_PIPE] = ACTIONS(5918), + [anon_sym_PLUS] = ACTIONS(5918), + [anon_sym_SLASH] = ACTIONS(5918), + [anon_sym_catch] = ACTIONS(5920), + [anon_sym_DOT] = ACTIONS(5920), + [anon_sym_CARET] = ACTIONS(5918), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5918), + }, + [STATE(7547)] = { + [sym_identifier] = ACTIONS(1333), + [anon_sym_func] = ACTIONS(1333), + [anon_sym_c_func] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_struct_type_BANG] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_anyopaque] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_int] = ACTIONS(1333), + [anon_sym_uint] = ACTIONS(1333), + [anon_sym_float] = ACTIONS(1333), + [anon_sym_range] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_c_char] = ACTIONS(1333), + [anon_sym_c_schar] = ACTIONS(1333), + [anon_sym_c_uchar] = ACTIONS(1333), + [anon_sym_c_short] = ACTIONS(1333), + [anon_sym_c_ushort] = ACTIONS(1333), + [anon_sym_c_int] = ACTIONS(1333), + [anon_sym_c_uint] = ACTIONS(1333), + [anon_sym_c_long] = ACTIONS(1333), + [anon_sym_c_ulong] = ACTIONS(1333), + [anon_sym_c_longlong] = ACTIONS(1333), + [anon_sym_c_ulonglong] = ACTIONS(1333), + [anon_sym_c_float] = ACTIONS(1333), + [anon_sym_c_double] = ACTIONS(1333), + [anon_sym_c_longdouble] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_orelse] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_LT_LT_PIPE] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1335), + }, + [STATE(7548)] = { + [sym_identifier] = ACTIONS(2712), + [anon_sym_func] = ACTIONS(2712), + [anon_sym_c_func] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_struct_type_BANG] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_noreturn] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_anyopaque] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_int] = ACTIONS(2712), + [anon_sym_uint] = ACTIONS(2712), + [anon_sym_float] = ACTIONS(2712), + [anon_sym_range] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_c_char] = ACTIONS(2712), + [anon_sym_c_schar] = ACTIONS(2712), + [anon_sym_c_uchar] = ACTIONS(2712), + [anon_sym_c_short] = ACTIONS(2712), + [anon_sym_c_ushort] = ACTIONS(2712), + [anon_sym_c_int] = ACTIONS(2712), + [anon_sym_c_uint] = ACTIONS(2712), + [anon_sym_c_long] = ACTIONS(2712), + [anon_sym_c_ulong] = ACTIONS(2712), + [anon_sym_c_longlong] = ACTIONS(2712), + [anon_sym_c_ulonglong] = ACTIONS(2712), + [anon_sym_c_float] = ACTIONS(2712), + [anon_sym_c_double] = ACTIONS(2712), + [anon_sym_c_longdouble] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2710), + [anon_sym_orelse] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(2712), + [anon_sym_and] = ACTIONS(2712), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_xor] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_LT_LT_PIPE] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2710), + }, + [STATE(7549)] = { + [sym_identifier] = ACTIONS(4386), + [anon_sym_func] = ACTIONS(4386), + [anon_sym_c_func] = ACTIONS(4386), + [anon_sym_struct] = ACTIONS(4386), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_DASH] = ACTIONS(4384), + [anon_sym_PIPE] = ACTIONS(4384), + [anon_sym_struct_type_BANG] = ACTIONS(4384), + [anon_sym_QMARK] = ACTIONS(4384), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_STAR] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_void] = ACTIONS(4386), + [anon_sym_noreturn] = ACTIONS(4386), + [anon_sym_type] = ACTIONS(4386), + [anon_sym_anyopaque] = ACTIONS(4386), + [anon_sym_bool] = ACTIONS(4386), + [anon_sym_int] = ACTIONS(4386), + [anon_sym_uint] = ACTIONS(4386), + [anon_sym_float] = ACTIONS(4386), + [anon_sym_range] = ACTIONS(4386), + [anon_sym_i8] = ACTIONS(4386), + [anon_sym_i16] = ACTIONS(4386), + [anon_sym_i32] = ACTIONS(4386), + [anon_sym_i64] = ACTIONS(4386), + [anon_sym_u8] = ACTIONS(4386), + [anon_sym_u16] = ACTIONS(4386), + [anon_sym_u32] = ACTIONS(4386), + [anon_sym_u64] = ACTIONS(4386), + [anon_sym_isize] = ACTIONS(4386), + [anon_sym_usize] = ACTIONS(4386), + [anon_sym_f32] = ACTIONS(4386), + [anon_sym_f64] = ACTIONS(4386), + [anon_sym_c_char] = ACTIONS(4386), + [anon_sym_c_schar] = ACTIONS(4386), + [anon_sym_c_uchar] = ACTIONS(4386), + [anon_sym_c_short] = ACTIONS(4386), + [anon_sym_c_ushort] = ACTIONS(4386), + [anon_sym_c_int] = ACTIONS(4386), + [anon_sym_c_uint] = ACTIONS(4386), + [anon_sym_c_long] = ACTIONS(4386), + [anon_sym_c_ulong] = ACTIONS(4386), + [anon_sym_c_longlong] = ACTIONS(4386), + [anon_sym_c_ulonglong] = ACTIONS(4386), + [anon_sym_c_float] = ACTIONS(4386), + [anon_sym_c_double] = ACTIONS(4386), + [anon_sym_c_longdouble] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4384), + [anon_sym_orelse] = ACTIONS(4386), + [anon_sym_or] = ACTIONS(4386), + [anon_sym_and] = ACTIONS(4386), + [anon_sym_EQ_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(4384), + [anon_sym_xor] = ACTIONS(4386), + [anon_sym_LT_LT] = ACTIONS(4386), + [anon_sym_GT_GT] = ACTIONS(4384), + [anon_sym_LT_LT_PIPE] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4384), + [anon_sym_SLASH] = ACTIONS(4384), + [anon_sym_catch] = ACTIONS(4386), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_CARET] = ACTIONS(4384), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4384), + }, + [STATE(7550)] = { + [sym_identifier] = ACTIONS(4390), + [anon_sym_func] = ACTIONS(4390), + [anon_sym_c_func] = ACTIONS(4390), + [anon_sym_struct] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_struct_type_BANG] = ACTIONS(4388), + [anon_sym_QMARK] = ACTIONS(4388), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_void] = ACTIONS(4390), + [anon_sym_noreturn] = ACTIONS(4390), + [anon_sym_type] = ACTIONS(4390), + [anon_sym_anyopaque] = ACTIONS(4390), + [anon_sym_bool] = ACTIONS(4390), + [anon_sym_int] = ACTIONS(4390), + [anon_sym_uint] = ACTIONS(4390), + [anon_sym_float] = ACTIONS(4390), + [anon_sym_range] = ACTIONS(4390), + [anon_sym_i8] = ACTIONS(4390), + [anon_sym_i16] = ACTIONS(4390), + [anon_sym_i32] = ACTIONS(4390), + [anon_sym_i64] = ACTIONS(4390), + [anon_sym_u8] = ACTIONS(4390), + [anon_sym_u16] = ACTIONS(4390), + [anon_sym_u32] = ACTIONS(4390), + [anon_sym_u64] = ACTIONS(4390), + [anon_sym_isize] = ACTIONS(4390), + [anon_sym_usize] = ACTIONS(4390), + [anon_sym_f32] = ACTIONS(4390), + [anon_sym_f64] = ACTIONS(4390), + [anon_sym_c_char] = ACTIONS(4390), + [anon_sym_c_schar] = ACTIONS(4390), + [anon_sym_c_uchar] = ACTIONS(4390), + [anon_sym_c_short] = ACTIONS(4390), + [anon_sym_c_ushort] = ACTIONS(4390), + [anon_sym_c_int] = ACTIONS(4390), + [anon_sym_c_uint] = ACTIONS(4390), + [anon_sym_c_long] = ACTIONS(4390), + [anon_sym_c_ulong] = ACTIONS(4390), + [anon_sym_c_longlong] = ACTIONS(4390), + [anon_sym_c_ulonglong] = ACTIONS(4390), + [anon_sym_c_float] = ACTIONS(4390), + [anon_sym_c_double] = ACTIONS(4390), + [anon_sym_c_longdouble] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4388), + [anon_sym_orelse] = ACTIONS(4390), + [anon_sym_or] = ACTIONS(4390), + [anon_sym_and] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_xor] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4388), + [anon_sym_LT_LT_PIPE] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4388), + [anon_sym_SLASH] = ACTIONS(4388), + [anon_sym_catch] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_CARET] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4388), + }, + [STATE(7551)] = { + [sym_identifier] = ACTIONS(6168), + [anon_sym_func] = ACTIONS(6168), + [anon_sym_c_func] = ACTIONS(6168), + [anon_sym_struct] = ACTIONS(6168), + [anon_sym_LPAREN] = ACTIONS(6166), + [anon_sym_COMMA] = ACTIONS(6166), + [anon_sym_RBRACE] = ACTIONS(6166), + [anon_sym_DASH] = ACTIONS(6166), + [anon_sym_PIPE] = ACTIONS(6166), + [anon_sym_struct_type_BANG] = ACTIONS(6166), + [anon_sym_QMARK] = ACTIONS(6166), + [anon_sym_AT] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(6166), + [anon_sym_LBRACK] = ACTIONS(6166), + [anon_sym_void] = ACTIONS(6168), + [anon_sym_noreturn] = ACTIONS(6168), + [anon_sym_type] = ACTIONS(6168), + [anon_sym_anyopaque] = ACTIONS(6168), + [anon_sym_bool] = ACTIONS(6168), + [anon_sym_int] = ACTIONS(6168), + [anon_sym_uint] = ACTIONS(6168), + [anon_sym_float] = ACTIONS(6168), + [anon_sym_range] = ACTIONS(6168), + [anon_sym_i8] = ACTIONS(6168), + [anon_sym_i16] = ACTIONS(6168), + [anon_sym_i32] = ACTIONS(6168), + [anon_sym_i64] = ACTIONS(6168), + [anon_sym_u8] = ACTIONS(6168), + [anon_sym_u16] = ACTIONS(6168), + [anon_sym_u32] = ACTIONS(6168), + [anon_sym_u64] = ACTIONS(6168), + [anon_sym_isize] = ACTIONS(6168), + [anon_sym_usize] = ACTIONS(6168), + [anon_sym_f32] = ACTIONS(6168), + [anon_sym_f64] = ACTIONS(6168), + [anon_sym_c_char] = ACTIONS(6168), + [anon_sym_c_schar] = ACTIONS(6168), + [anon_sym_c_uchar] = ACTIONS(6168), + [anon_sym_c_short] = ACTIONS(6168), + [anon_sym_c_ushort] = ACTIONS(6168), + [anon_sym_c_int] = ACTIONS(6168), + [anon_sym_c_uint] = ACTIONS(6168), + [anon_sym_c_long] = ACTIONS(6168), + [anon_sym_c_ulong] = ACTIONS(6168), + [anon_sym_c_longlong] = ACTIONS(6168), + [anon_sym_c_ulonglong] = ACTIONS(6168), + [anon_sym_c_float] = ACTIONS(6168), + [anon_sym_c_double] = ACTIONS(6168), + [anon_sym_c_longdouble] = ACTIONS(6168), + [anon_sym_else] = ACTIONS(6168), + [anon_sym_DOT_DOT] = ACTIONS(6168), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6166), + [anon_sym_orelse] = ACTIONS(6168), + [anon_sym_or] = ACTIONS(6168), + [anon_sym_and] = ACTIONS(6168), + [anon_sym_EQ_EQ] = ACTIONS(6166), + [anon_sym_BANG_EQ] = ACTIONS(6166), + [anon_sym_LT] = ACTIONS(6168), + [anon_sym_LT_EQ] = ACTIONS(6166), + [anon_sym_GT] = ACTIONS(6168), + [anon_sym_GT_EQ] = ACTIONS(6166), + [anon_sym_AMP] = ACTIONS(6166), + [anon_sym_xor] = ACTIONS(6168), + [anon_sym_LT_LT] = ACTIONS(6168), + [anon_sym_GT_GT] = ACTIONS(6166), + [anon_sym_LT_LT_PIPE] = ACTIONS(6166), + [anon_sym_PLUS] = ACTIONS(6166), + [anon_sym_SLASH] = ACTIONS(6166), + [anon_sym_catch] = ACTIONS(6168), + [anon_sym_DOT] = ACTIONS(6168), + [anon_sym_CARET] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6166), + }, + [STATE(7552)] = { + [sym_identifier] = ACTIONS(6272), + [anon_sym_func] = ACTIONS(6272), + [anon_sym_c_func] = ACTIONS(6272), + [anon_sym_struct] = ACTIONS(6272), + [anon_sym_LPAREN] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6270), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_struct_type_BANG] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6270), + [anon_sym_AT] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_void] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym_type] = ACTIONS(6272), + [anon_sym_anyopaque] = ACTIONS(6272), + [anon_sym_bool] = ACTIONS(6272), + [anon_sym_int] = ACTIONS(6272), + [anon_sym_uint] = ACTIONS(6272), + [anon_sym_float] = ACTIONS(6272), + [anon_sym_range] = ACTIONS(6272), + [anon_sym_i8] = ACTIONS(6272), + [anon_sym_i16] = ACTIONS(6272), + [anon_sym_i32] = ACTIONS(6272), + [anon_sym_i64] = ACTIONS(6272), + [anon_sym_u8] = ACTIONS(6272), + [anon_sym_u16] = ACTIONS(6272), + [anon_sym_u32] = ACTIONS(6272), + [anon_sym_u64] = ACTIONS(6272), + [anon_sym_isize] = ACTIONS(6272), + [anon_sym_usize] = ACTIONS(6272), + [anon_sym_f32] = ACTIONS(6272), + [anon_sym_f64] = ACTIONS(6272), + [anon_sym_c_char] = ACTIONS(6272), + [anon_sym_c_schar] = ACTIONS(6272), + [anon_sym_c_uchar] = ACTIONS(6272), + [anon_sym_c_short] = ACTIONS(6272), + [anon_sym_c_ushort] = ACTIONS(6272), + [anon_sym_c_int] = ACTIONS(6272), + [anon_sym_c_uint] = ACTIONS(6272), + [anon_sym_c_long] = ACTIONS(6272), + [anon_sym_c_ulong] = ACTIONS(6272), + [anon_sym_c_longlong] = ACTIONS(6272), + [anon_sym_c_ulonglong] = ACTIONS(6272), + [anon_sym_c_float] = ACTIONS(6272), + [anon_sym_c_double] = ACTIONS(6272), + [anon_sym_c_longdouble] = ACTIONS(6272), + [anon_sym_else] = ACTIONS(6272), + [anon_sym_DOT_DOT] = ACTIONS(6272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6270), + [anon_sym_orelse] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6272), + [anon_sym_and] = ACTIONS(6272), + [anon_sym_EQ_EQ] = ACTIONS(6270), + [anon_sym_BANG_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_GT] = ACTIONS(6272), + [anon_sym_GT_EQ] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6272), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym_LT_LT_PIPE] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_catch] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6272), + [anon_sym_CARET] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6270), + }, + [STATE(7553)] = { + [sym_identifier] = ACTIONS(2716), + [anon_sym_func] = ACTIONS(2716), + [anon_sym_c_func] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_struct_type_BANG] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_noreturn] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_anyopaque] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_int] = ACTIONS(2716), + [anon_sym_uint] = ACTIONS(2716), + [anon_sym_float] = ACTIONS(2716), + [anon_sym_range] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_c_char] = ACTIONS(2716), + [anon_sym_c_schar] = ACTIONS(2716), + [anon_sym_c_uchar] = ACTIONS(2716), + [anon_sym_c_short] = ACTIONS(2716), + [anon_sym_c_ushort] = ACTIONS(2716), + [anon_sym_c_int] = ACTIONS(2716), + [anon_sym_c_uint] = ACTIONS(2716), + [anon_sym_c_long] = ACTIONS(2716), + [anon_sym_c_ulong] = ACTIONS(2716), + [anon_sym_c_longlong] = ACTIONS(2716), + [anon_sym_c_ulonglong] = ACTIONS(2716), + [anon_sym_c_float] = ACTIONS(2716), + [anon_sym_c_double] = ACTIONS(2716), + [anon_sym_c_longdouble] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2714), + [anon_sym_orelse] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(2716), + [anon_sym_and] = ACTIONS(2716), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_xor] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2716), + [anon_sym_GT_GT] = ACTIONS(2714), + [anon_sym_LT_LT_PIPE] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2714), + }, + [STATE(7554)] = { + [sym_identifier] = ACTIONS(4416), + [anon_sym_func] = ACTIONS(4416), + [anon_sym_c_func] = ACTIONS(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_PIPE] = ACTIONS(4414), + [anon_sym_struct_type_BANG] = ACTIONS(4414), + [anon_sym_QMARK] = ACTIONS(4414), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_void] = ACTIONS(4416), + [anon_sym_noreturn] = 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_else] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4416), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4414), + [anon_sym_orelse] = ACTIONS(4416), + [anon_sym_or] = ACTIONS(4416), + [anon_sym_and] = ACTIONS(4416), + [anon_sym_EQ_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4414), + [anon_sym_xor] = ACTIONS(4416), + [anon_sym_LT_LT] = ACTIONS(4416), + [anon_sym_GT_GT] = ACTIONS(4414), + [anon_sym_LT_LT_PIPE] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_SLASH] = ACTIONS(4414), + [anon_sym_catch] = ACTIONS(4416), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_CARET] = ACTIONS(4414), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4414), + }, + [STATE(7555)] = { + [sym_identifier] = ACTIONS(4468), + [anon_sym_func] = ACTIONS(4468), + [anon_sym_c_func] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_struct_type_BANG] = ACTIONS(4466), + [anon_sym_QMARK] = ACTIONS(4466), + [anon_sym_AT] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_void] = ACTIONS(4468), + [anon_sym_noreturn] = 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_else] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4466), + [anon_sym_orelse] = ACTIONS(4468), + [anon_sym_or] = ACTIONS(4468), + [anon_sym_and] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + [anon_sym_xor] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4466), + [anon_sym_LT_LT_PIPE] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4466), + [anon_sym_SLASH] = ACTIONS(4466), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_CARET] = ACTIONS(4466), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4466), + }, + [STATE(7556)] = { + [sym_identifier] = ACTIONS(6276), + [anon_sym_func] = ACTIONS(6276), + [anon_sym_c_func] = ACTIONS(6276), + [anon_sym_struct] = ACTIONS(6276), + [anon_sym_LPAREN] = ACTIONS(6274), + [anon_sym_COMMA] = ACTIONS(6274), + [anon_sym_RBRACE] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6274), + [anon_sym_PIPE] = ACTIONS(6274), + [anon_sym_struct_type_BANG] = ACTIONS(6274), + [anon_sym_QMARK] = ACTIONS(6274), + [anon_sym_AT] = ACTIONS(6274), + [anon_sym_STAR] = ACTIONS(6274), + [anon_sym_LBRACK] = ACTIONS(6274), + [anon_sym_void] = ACTIONS(6276), + [anon_sym_noreturn] = ACTIONS(6276), + [anon_sym_type] = ACTIONS(6276), + [anon_sym_anyopaque] = ACTIONS(6276), + [anon_sym_bool] = ACTIONS(6276), + [anon_sym_int] = ACTIONS(6276), + [anon_sym_uint] = ACTIONS(6276), + [anon_sym_float] = ACTIONS(6276), + [anon_sym_range] = ACTIONS(6276), + [anon_sym_i8] = ACTIONS(6276), + [anon_sym_i16] = ACTIONS(6276), + [anon_sym_i32] = ACTIONS(6276), + [anon_sym_i64] = ACTIONS(6276), + [anon_sym_u8] = ACTIONS(6276), + [anon_sym_u16] = ACTIONS(6276), + [anon_sym_u32] = ACTIONS(6276), + [anon_sym_u64] = ACTIONS(6276), + [anon_sym_isize] = ACTIONS(6276), + [anon_sym_usize] = ACTIONS(6276), + [anon_sym_f32] = ACTIONS(6276), + [anon_sym_f64] = ACTIONS(6276), + [anon_sym_c_char] = ACTIONS(6276), + [anon_sym_c_schar] = ACTIONS(6276), + [anon_sym_c_uchar] = ACTIONS(6276), + [anon_sym_c_short] = ACTIONS(6276), + [anon_sym_c_ushort] = ACTIONS(6276), + [anon_sym_c_int] = ACTIONS(6276), + [anon_sym_c_uint] = ACTIONS(6276), + [anon_sym_c_long] = ACTIONS(6276), + [anon_sym_c_ulong] = ACTIONS(6276), + [anon_sym_c_longlong] = ACTIONS(6276), + [anon_sym_c_ulonglong] = ACTIONS(6276), + [anon_sym_c_float] = ACTIONS(6276), + [anon_sym_c_double] = ACTIONS(6276), + [anon_sym_c_longdouble] = ACTIONS(6276), + [anon_sym_else] = ACTIONS(6276), + [anon_sym_DOT_DOT] = ACTIONS(6276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6274), + [anon_sym_orelse] = ACTIONS(6276), + [anon_sym_or] = ACTIONS(6276), + [anon_sym_and] = ACTIONS(6276), + [anon_sym_EQ_EQ] = ACTIONS(6274), + [anon_sym_BANG_EQ] = ACTIONS(6274), + [anon_sym_LT] = ACTIONS(6276), + [anon_sym_LT_EQ] = ACTIONS(6274), + [anon_sym_GT] = ACTIONS(6276), + [anon_sym_GT_EQ] = ACTIONS(6274), + [anon_sym_AMP] = ACTIONS(6274), + [anon_sym_xor] = ACTIONS(6276), + [anon_sym_LT_LT] = ACTIONS(6276), + [anon_sym_GT_GT] = ACTIONS(6274), + [anon_sym_LT_LT_PIPE] = ACTIONS(6274), + [anon_sym_PLUS] = ACTIONS(6274), + [anon_sym_SLASH] = ACTIONS(6274), + [anon_sym_catch] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(6276), + [anon_sym_CARET] = ACTIONS(6274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6274), + }, + [STATE(7557)] = { + [sym_identifier] = ACTIONS(6288), + [anon_sym_func] = ACTIONS(6288), + [anon_sym_c_func] = ACTIONS(6288), + [anon_sym_struct] = ACTIONS(6288), + [anon_sym_LPAREN] = ACTIONS(6286), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6286), + [anon_sym_PIPE] = ACTIONS(6286), + [anon_sym_struct_type_BANG] = ACTIONS(6286), + [anon_sym_QMARK] = ACTIONS(6286), + [anon_sym_AT] = ACTIONS(6286), + [anon_sym_STAR] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_void] = ACTIONS(6288), + [anon_sym_noreturn] = ACTIONS(6288), + [anon_sym_type] = ACTIONS(6288), + [anon_sym_anyopaque] = ACTIONS(6288), + [anon_sym_bool] = ACTIONS(6288), + [anon_sym_int] = ACTIONS(6288), + [anon_sym_uint] = ACTIONS(6288), + [anon_sym_float] = ACTIONS(6288), + [anon_sym_range] = ACTIONS(6288), + [anon_sym_i8] = ACTIONS(6288), + [anon_sym_i16] = ACTIONS(6288), + [anon_sym_i32] = ACTIONS(6288), + [anon_sym_i64] = ACTIONS(6288), + [anon_sym_u8] = ACTIONS(6288), + [anon_sym_u16] = ACTIONS(6288), + [anon_sym_u32] = ACTIONS(6288), + [anon_sym_u64] = ACTIONS(6288), + [anon_sym_isize] = ACTIONS(6288), + [anon_sym_usize] = ACTIONS(6288), + [anon_sym_f32] = ACTIONS(6288), + [anon_sym_f64] = ACTIONS(6288), + [anon_sym_c_char] = ACTIONS(6288), + [anon_sym_c_schar] = ACTIONS(6288), + [anon_sym_c_uchar] = ACTIONS(6288), + [anon_sym_c_short] = ACTIONS(6288), + [anon_sym_c_ushort] = ACTIONS(6288), + [anon_sym_c_int] = ACTIONS(6288), + [anon_sym_c_uint] = ACTIONS(6288), + [anon_sym_c_long] = ACTIONS(6288), + [anon_sym_c_ulong] = ACTIONS(6288), + [anon_sym_c_longlong] = ACTIONS(6288), + [anon_sym_c_ulonglong] = ACTIONS(6288), + [anon_sym_c_float] = ACTIONS(6288), + [anon_sym_c_double] = ACTIONS(6288), + [anon_sym_c_longdouble] = ACTIONS(6288), + [anon_sym_else] = ACTIONS(6288), + [anon_sym_DOT_DOT] = ACTIONS(6288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6286), + [anon_sym_orelse] = ACTIONS(6288), + [anon_sym_or] = ACTIONS(6288), + [anon_sym_and] = ACTIONS(6288), + [anon_sym_EQ_EQ] = ACTIONS(6286), + [anon_sym_BANG_EQ] = ACTIONS(6286), + [anon_sym_LT] = ACTIONS(6288), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6288), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_AMP] = ACTIONS(6286), + [anon_sym_xor] = ACTIONS(6288), + [anon_sym_LT_LT] = ACTIONS(6288), + [anon_sym_GT_GT] = ACTIONS(6286), + [anon_sym_LT_LT_PIPE] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6286), + [anon_sym_SLASH] = ACTIONS(6286), + [anon_sym_catch] = ACTIONS(6288), + [anon_sym_DOT] = ACTIONS(6288), + [anon_sym_CARET] = ACTIONS(6286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6286), + }, + [STATE(7558)] = { + [sym_identifier] = ACTIONS(6292), + [anon_sym_func] = ACTIONS(6292), + [anon_sym_c_func] = ACTIONS(6292), + [anon_sym_struct] = ACTIONS(6292), + [anon_sym_LPAREN] = ACTIONS(6290), + [anon_sym_COMMA] = ACTIONS(6290), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_PIPE] = ACTIONS(6290), + [anon_sym_struct_type_BANG] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6290), + [anon_sym_AT] = ACTIONS(6290), + [anon_sym_STAR] = ACTIONS(6290), + [anon_sym_LBRACK] = ACTIONS(6290), + [anon_sym_void] = ACTIONS(6292), + [anon_sym_noreturn] = ACTIONS(6292), + [anon_sym_type] = ACTIONS(6292), + [anon_sym_anyopaque] = ACTIONS(6292), + [anon_sym_bool] = ACTIONS(6292), + [anon_sym_int] = ACTIONS(6292), + [anon_sym_uint] = ACTIONS(6292), + [anon_sym_float] = ACTIONS(6292), + [anon_sym_range] = ACTIONS(6292), + [anon_sym_i8] = ACTIONS(6292), + [anon_sym_i16] = ACTIONS(6292), + [anon_sym_i32] = ACTIONS(6292), + [anon_sym_i64] = ACTIONS(6292), + [anon_sym_u8] = ACTIONS(6292), + [anon_sym_u16] = ACTIONS(6292), + [anon_sym_u32] = ACTIONS(6292), + [anon_sym_u64] = ACTIONS(6292), + [anon_sym_isize] = ACTIONS(6292), + [anon_sym_usize] = ACTIONS(6292), + [anon_sym_f32] = ACTIONS(6292), + [anon_sym_f64] = ACTIONS(6292), + [anon_sym_c_char] = ACTIONS(6292), + [anon_sym_c_schar] = ACTIONS(6292), + [anon_sym_c_uchar] = ACTIONS(6292), + [anon_sym_c_short] = ACTIONS(6292), + [anon_sym_c_ushort] = ACTIONS(6292), + [anon_sym_c_int] = ACTIONS(6292), + [anon_sym_c_uint] = ACTIONS(6292), + [anon_sym_c_long] = ACTIONS(6292), + [anon_sym_c_ulong] = ACTIONS(6292), + [anon_sym_c_longlong] = ACTIONS(6292), + [anon_sym_c_ulonglong] = ACTIONS(6292), + [anon_sym_c_float] = ACTIONS(6292), + [anon_sym_c_double] = ACTIONS(6292), + [anon_sym_c_longdouble] = ACTIONS(6292), + [anon_sym_else] = ACTIONS(6292), + [anon_sym_DOT_DOT] = ACTIONS(6292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6290), + [anon_sym_orelse] = ACTIONS(6292), + [anon_sym_or] = ACTIONS(6292), + [anon_sym_and] = ACTIONS(6292), + [anon_sym_EQ_EQ] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6290), + [anon_sym_LT] = ACTIONS(6292), + [anon_sym_LT_EQ] = ACTIONS(6290), + [anon_sym_GT] = ACTIONS(6292), + [anon_sym_GT_EQ] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6290), + [anon_sym_xor] = ACTIONS(6292), + [anon_sym_LT_LT] = ACTIONS(6292), + [anon_sym_GT_GT] = ACTIONS(6290), + [anon_sym_LT_LT_PIPE] = ACTIONS(6290), + [anon_sym_PLUS] = ACTIONS(6290), + [anon_sym_SLASH] = ACTIONS(6290), + [anon_sym_catch] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_CARET] = ACTIONS(6290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6290), + }, + [STATE(7559)] = { + [sym_identifier] = ACTIONS(6296), + [anon_sym_func] = ACTIONS(6296), + [anon_sym_c_func] = ACTIONS(6296), + [anon_sym_struct] = ACTIONS(6296), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_COMMA] = ACTIONS(6294), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_PIPE] = ACTIONS(6294), + [anon_sym_struct_type_BANG] = ACTIONS(6294), + [anon_sym_QMARK] = ACTIONS(6294), + [anon_sym_AT] = ACTIONS(6294), + [anon_sym_STAR] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_void] = ACTIONS(6296), + [anon_sym_noreturn] = ACTIONS(6296), + [anon_sym_type] = ACTIONS(6296), + [anon_sym_anyopaque] = ACTIONS(6296), + [anon_sym_bool] = ACTIONS(6296), + [anon_sym_int] = ACTIONS(6296), + [anon_sym_uint] = ACTIONS(6296), + [anon_sym_float] = ACTIONS(6296), + [anon_sym_range] = ACTIONS(6296), + [anon_sym_i8] = ACTIONS(6296), + [anon_sym_i16] = ACTIONS(6296), + [anon_sym_i32] = ACTIONS(6296), + [anon_sym_i64] = ACTIONS(6296), + [anon_sym_u8] = ACTIONS(6296), + [anon_sym_u16] = ACTIONS(6296), + [anon_sym_u32] = ACTIONS(6296), + [anon_sym_u64] = ACTIONS(6296), + [anon_sym_isize] = ACTIONS(6296), + [anon_sym_usize] = ACTIONS(6296), + [anon_sym_f32] = ACTIONS(6296), + [anon_sym_f64] = ACTIONS(6296), + [anon_sym_c_char] = ACTIONS(6296), + [anon_sym_c_schar] = ACTIONS(6296), + [anon_sym_c_uchar] = ACTIONS(6296), + [anon_sym_c_short] = ACTIONS(6296), + [anon_sym_c_ushort] = ACTIONS(6296), + [anon_sym_c_int] = ACTIONS(6296), + [anon_sym_c_uint] = ACTIONS(6296), + [anon_sym_c_long] = ACTIONS(6296), + [anon_sym_c_ulong] = ACTIONS(6296), + [anon_sym_c_longlong] = ACTIONS(6296), + [anon_sym_c_ulonglong] = ACTIONS(6296), + [anon_sym_c_float] = ACTIONS(6296), + [anon_sym_c_double] = ACTIONS(6296), + [anon_sym_c_longdouble] = ACTIONS(6296), + [anon_sym_else] = ACTIONS(6296), + [anon_sym_DOT_DOT] = ACTIONS(6296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_orelse] = ACTIONS(6296), + [anon_sym_or] = ACTIONS(6296), + [anon_sym_and] = ACTIONS(6296), + [anon_sym_EQ_EQ] = ACTIONS(6294), + [anon_sym_BANG_EQ] = ACTIONS(6294), + [anon_sym_LT] = ACTIONS(6296), + [anon_sym_LT_EQ] = ACTIONS(6294), + [anon_sym_GT] = ACTIONS(6296), + [anon_sym_GT_EQ] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6294), + [anon_sym_xor] = ACTIONS(6296), + [anon_sym_LT_LT] = ACTIONS(6296), + [anon_sym_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT_PIPE] = ACTIONS(6294), + [anon_sym_PLUS] = ACTIONS(6294), + [anon_sym_SLASH] = ACTIONS(6294), + [anon_sym_catch] = ACTIONS(6296), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6294), + }, + [STATE(7560)] = { + [sym_identifier] = ACTIONS(6018), + [anon_sym_func] = ACTIONS(6018), + [anon_sym_c_func] = ACTIONS(6018), + [anon_sym_struct] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_COMMA] = ACTIONS(6016), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6016), + [anon_sym_PIPE] = ACTIONS(6016), + [anon_sym_struct_type_BANG] = ACTIONS(6016), + [anon_sym_QMARK] = ACTIONS(6016), + [anon_sym_AT] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_void] = ACTIONS(6018), + [anon_sym_noreturn] = ACTIONS(6018), + [anon_sym_type] = ACTIONS(6018), + [anon_sym_anyopaque] = ACTIONS(6018), + [anon_sym_bool] = ACTIONS(6018), + [anon_sym_int] = ACTIONS(6018), + [anon_sym_uint] = ACTIONS(6018), + [anon_sym_float] = ACTIONS(6018), + [anon_sym_range] = ACTIONS(6018), + [anon_sym_i8] = ACTIONS(6018), + [anon_sym_i16] = ACTIONS(6018), + [anon_sym_i32] = ACTIONS(6018), + [anon_sym_i64] = ACTIONS(6018), + [anon_sym_u8] = ACTIONS(6018), + [anon_sym_u16] = ACTIONS(6018), + [anon_sym_u32] = ACTIONS(6018), + [anon_sym_u64] = ACTIONS(6018), + [anon_sym_isize] = ACTIONS(6018), + [anon_sym_usize] = ACTIONS(6018), + [anon_sym_f32] = ACTIONS(6018), + [anon_sym_f64] = ACTIONS(6018), + [anon_sym_c_char] = ACTIONS(6018), + [anon_sym_c_schar] = ACTIONS(6018), + [anon_sym_c_uchar] = ACTIONS(6018), + [anon_sym_c_short] = ACTIONS(6018), + [anon_sym_c_ushort] = ACTIONS(6018), + [anon_sym_c_int] = ACTIONS(6018), + [anon_sym_c_uint] = ACTIONS(6018), + [anon_sym_c_long] = ACTIONS(6018), + [anon_sym_c_ulong] = ACTIONS(6018), + [anon_sym_c_longlong] = ACTIONS(6018), + [anon_sym_c_ulonglong] = ACTIONS(6018), + [anon_sym_c_float] = ACTIONS(6018), + [anon_sym_c_double] = ACTIONS(6018), + [anon_sym_c_longdouble] = ACTIONS(6018), + [anon_sym_else] = ACTIONS(6018), + [anon_sym_DOT_DOT] = ACTIONS(6018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6016), + [anon_sym_orelse] = ACTIONS(6018), + [anon_sym_or] = ACTIONS(6018), + [anon_sym_and] = ACTIONS(6018), + [anon_sym_EQ_EQ] = ACTIONS(6016), + [anon_sym_BANG_EQ] = ACTIONS(6016), + [anon_sym_LT] = ACTIONS(6018), + [anon_sym_LT_EQ] = ACTIONS(6016), + [anon_sym_GT] = ACTIONS(6018), + [anon_sym_GT_EQ] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_xor] = ACTIONS(6018), + [anon_sym_LT_LT] = ACTIONS(6018), + [anon_sym_GT_GT] = ACTIONS(6016), + [anon_sym_LT_LT_PIPE] = ACTIONS(6016), + [anon_sym_PLUS] = ACTIONS(6016), + [anon_sym_SLASH] = ACTIONS(6016), + [anon_sym_catch] = ACTIONS(6018), + [anon_sym_DOT] = ACTIONS(6018), + [anon_sym_CARET] = ACTIONS(6016), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6016), + }, + [STATE(7561)] = { + [sym_identifier] = ACTIONS(6022), + [anon_sym_func] = ACTIONS(6022), + [anon_sym_c_func] = ACTIONS(6022), + [anon_sym_struct] = ACTIONS(6022), + [anon_sym_LPAREN] = ACTIONS(6020), + [anon_sym_COMMA] = ACTIONS(6020), + [anon_sym_RBRACE] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6020), + [anon_sym_PIPE] = ACTIONS(6020), + [anon_sym_struct_type_BANG] = ACTIONS(6020), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_AT] = ACTIONS(6020), + [anon_sym_STAR] = ACTIONS(6020), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_void] = ACTIONS(6022), + [anon_sym_noreturn] = ACTIONS(6022), + [anon_sym_type] = ACTIONS(6022), + [anon_sym_anyopaque] = ACTIONS(6022), + [anon_sym_bool] = ACTIONS(6022), + [anon_sym_int] = ACTIONS(6022), + [anon_sym_uint] = ACTIONS(6022), + [anon_sym_float] = ACTIONS(6022), + [anon_sym_range] = ACTIONS(6022), + [anon_sym_i8] = ACTIONS(6022), + [anon_sym_i16] = ACTIONS(6022), + [anon_sym_i32] = ACTIONS(6022), + [anon_sym_i64] = ACTIONS(6022), + [anon_sym_u8] = ACTIONS(6022), + [anon_sym_u16] = ACTIONS(6022), + [anon_sym_u32] = ACTIONS(6022), + [anon_sym_u64] = ACTIONS(6022), + [anon_sym_isize] = ACTIONS(6022), + [anon_sym_usize] = ACTIONS(6022), + [anon_sym_f32] = ACTIONS(6022), + [anon_sym_f64] = ACTIONS(6022), + [anon_sym_c_char] = ACTIONS(6022), + [anon_sym_c_schar] = ACTIONS(6022), + [anon_sym_c_uchar] = ACTIONS(6022), + [anon_sym_c_short] = ACTIONS(6022), + [anon_sym_c_ushort] = ACTIONS(6022), + [anon_sym_c_int] = ACTIONS(6022), + [anon_sym_c_uint] = ACTIONS(6022), + [anon_sym_c_long] = ACTIONS(6022), + [anon_sym_c_ulong] = ACTIONS(6022), + [anon_sym_c_longlong] = ACTIONS(6022), + [anon_sym_c_ulonglong] = ACTIONS(6022), + [anon_sym_c_float] = ACTIONS(6022), + [anon_sym_c_double] = ACTIONS(6022), + [anon_sym_c_longdouble] = ACTIONS(6022), + [anon_sym_else] = ACTIONS(6022), + [anon_sym_DOT_DOT] = ACTIONS(6022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6020), + [anon_sym_orelse] = ACTIONS(6022), + [anon_sym_or] = ACTIONS(6022), + [anon_sym_and] = ACTIONS(6022), + [anon_sym_EQ_EQ] = ACTIONS(6020), + [anon_sym_BANG_EQ] = ACTIONS(6020), + [anon_sym_LT] = ACTIONS(6022), + [anon_sym_LT_EQ] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6022), + [anon_sym_GT_EQ] = ACTIONS(6020), + [anon_sym_AMP] = ACTIONS(6020), + [anon_sym_xor] = ACTIONS(6022), + [anon_sym_LT_LT] = ACTIONS(6022), + [anon_sym_GT_GT] = ACTIONS(6020), + [anon_sym_LT_LT_PIPE] = ACTIONS(6020), + [anon_sym_PLUS] = ACTIONS(6020), + [anon_sym_SLASH] = ACTIONS(6020), + [anon_sym_catch] = ACTIONS(6022), + [anon_sym_DOT] = ACTIONS(6022), + [anon_sym_CARET] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(6020), + }, + [STATE(7562)] = { + [sym_identifier] = ACTIONS(5212), + [anon_sym_func] = ACTIONS(5212), + [anon_sym_c_func] = ACTIONS(5212), + [anon_sym_struct] = ACTIONS(5212), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_struct_type_BANG] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_AT] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_LBRACK] = ACTIONS(5210), + [anon_sym_void] = ACTIONS(5212), + [anon_sym_noreturn] = ACTIONS(5212), + [anon_sym_type] = ACTIONS(5212), + [anon_sym_anyopaque] = ACTIONS(5212), + [anon_sym_bool] = ACTIONS(5212), + [anon_sym_int] = ACTIONS(5212), + [anon_sym_uint] = ACTIONS(5212), + [anon_sym_float] = ACTIONS(5212), + [anon_sym_range] = ACTIONS(5212), + [anon_sym_i8] = ACTIONS(5212), + [anon_sym_i16] = ACTIONS(5212), + [anon_sym_i32] = ACTIONS(5212), + [anon_sym_i64] = ACTIONS(5212), + [anon_sym_u8] = ACTIONS(5212), + [anon_sym_u16] = ACTIONS(5212), + [anon_sym_u32] = ACTIONS(5212), + [anon_sym_u64] = ACTIONS(5212), + [anon_sym_isize] = ACTIONS(5212), + [anon_sym_usize] = ACTIONS(5212), + [anon_sym_f32] = ACTIONS(5212), + [anon_sym_f64] = ACTIONS(5212), + [anon_sym_c_char] = ACTIONS(5212), + [anon_sym_c_schar] = ACTIONS(5212), + [anon_sym_c_uchar] = ACTIONS(5212), + [anon_sym_c_short] = ACTIONS(5212), + [anon_sym_c_ushort] = ACTIONS(5212), + [anon_sym_c_int] = ACTIONS(5212), + [anon_sym_c_uint] = ACTIONS(5212), + [anon_sym_c_long] = ACTIONS(5212), + [anon_sym_c_ulong] = ACTIONS(5212), + [anon_sym_c_longlong] = ACTIONS(5212), + [anon_sym_c_ulonglong] = ACTIONS(5212), + [anon_sym_c_float] = ACTIONS(5212), + [anon_sym_c_double] = ACTIONS(5212), + [anon_sym_c_longdouble] = ACTIONS(5212), + [anon_sym_else] = ACTIONS(5212), + [anon_sym_DOT_DOT] = ACTIONS(5212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5210), + [anon_sym_orelse] = ACTIONS(5212), + [anon_sym_or] = ACTIONS(5212), + [anon_sym_and] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5210), + [anon_sym_xor] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_LT_LT_PIPE] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_catch] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5210), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(5210), + }, + [STATE(7563)] = { + [sym_identifier] = ACTIONS(11414), + [anon_sym_func] = ACTIONS(11414), + [anon_sym_BANG] = ACTIONS(11416), + [anon_sym_struct] = ACTIONS(11414), + [anon_sym_LPAREN] = ACTIONS(11416), + [anon_sym_LBRACE] = ACTIONS(11416), + [anon_sym_DASH] = ACTIONS(11416), + [anon_sym_DOLLAR] = ACTIONS(11416), + [anon_sym_LBRACK] = ACTIONS(11416), + [anon_sym_void] = ACTIONS(11414), + [anon_sym_noreturn] = ACTIONS(11414), + [anon_sym_type] = ACTIONS(11414), + [anon_sym_anyopaque] = ACTIONS(11414), + [anon_sym_bool] = ACTIONS(11414), + [anon_sym_int] = ACTIONS(11414), + [anon_sym_uint] = ACTIONS(11414), + [anon_sym_float] = ACTIONS(11414), + [anon_sym_range] = ACTIONS(11414), + [anon_sym_i8] = ACTIONS(11414), + [anon_sym_i16] = ACTIONS(11414), + [anon_sym_i32] = ACTIONS(11414), + [anon_sym_i64] = ACTIONS(11414), + [anon_sym_u8] = ACTIONS(11414), + [anon_sym_u16] = ACTIONS(11414), + [anon_sym_u32] = ACTIONS(11414), + [anon_sym_u64] = ACTIONS(11414), + [anon_sym_isize] = ACTIONS(11414), + [anon_sym_usize] = ACTIONS(11414), + [anon_sym_f32] = ACTIONS(11414), + [anon_sym_f64] = ACTIONS(11414), + [anon_sym_c_char] = ACTIONS(11414), + [anon_sym_c_schar] = ACTIONS(11414), + [anon_sym_c_uchar] = ACTIONS(11414), + [anon_sym_c_short] = ACTIONS(11414), + [anon_sym_c_ushort] = ACTIONS(11414), + [anon_sym_c_int] = ACTIONS(11414), + [anon_sym_c_uint] = ACTIONS(11414), + [anon_sym_c_long] = ACTIONS(11414), + [anon_sym_c_ulong] = ACTIONS(11414), + [anon_sym_c_longlong] = ACTIONS(11414), + [anon_sym_c_ulonglong] = ACTIONS(11414), + [anon_sym_c_float] = ACTIONS(11414), + [anon_sym_c_double] = ACTIONS(11414), + [anon_sym_c_longdouble] = ACTIONS(11414), + [anon_sym_return] = ACTIONS(11414), + [anon_sym_yield] = ACTIONS(11414), + [anon_sym_break] = ACTIONS(11414), + [anon_sym_continue] = ACTIONS(11414), + [anon_sym_defer] = ACTIONS(11414), + [anon_sym_errdefer] = ACTIONS(11414), + [anon_sym_if] = ACTIONS(11414), + [anon_sym_while] = ACTIONS(11414), + [anon_sym_expand] = ACTIONS(11414), + [anon_sym_for] = ACTIONS(11414), + [anon_sym_match] = ACTIONS(11414), + [anon_sym_AMP] = ACTIONS(11416), + [anon_sym_TILDE] = ACTIONS(11416), + [anon_sym_try] = ACTIONS(11414), + [anon_sym_DOT] = ACTIONS(11416), + [anon_sym_true] = ACTIONS(11414), + [anon_sym_false] = ACTIONS(11414), + [anon_sym_null] = ACTIONS(11414), + [anon_sym_unreachable] = ACTIONS(11414), + [anon_sym_undefined] = ACTIONS(11414), + [sym_sink] = ACTIONS(11414), + [sym_integer] = ACTIONS(11414), + [sym_float] = ACTIONS(11416), + [anon_sym_DQUOTE] = ACTIONS(11416), + [sym_multiline_string] = ACTIONS(11416), + [sym_character] = ACTIONS(11416), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11416), + }, + [STATE(7564)] = { + [sym_identifier] = ACTIONS(11418), + [anon_sym_func] = ACTIONS(11418), + [anon_sym_BANG] = ACTIONS(11420), + [anon_sym_struct] = ACTIONS(11418), + [anon_sym_LPAREN] = ACTIONS(11420), + [anon_sym_LBRACE] = ACTIONS(11420), + [anon_sym_DASH] = ACTIONS(11420), + [anon_sym_DOLLAR] = ACTIONS(11420), + [anon_sym_LBRACK] = ACTIONS(11420), + [anon_sym_void] = ACTIONS(11418), + [anon_sym_noreturn] = ACTIONS(11418), + [anon_sym_type] = ACTIONS(11418), + [anon_sym_anyopaque] = ACTIONS(11418), + [anon_sym_bool] = ACTIONS(11418), + [anon_sym_int] = ACTIONS(11418), + [anon_sym_uint] = ACTIONS(11418), + [anon_sym_float] = ACTIONS(11418), + [anon_sym_range] = ACTIONS(11418), + [anon_sym_i8] = ACTIONS(11418), + [anon_sym_i16] = ACTIONS(11418), + [anon_sym_i32] = ACTIONS(11418), + [anon_sym_i64] = ACTIONS(11418), + [anon_sym_u8] = ACTIONS(11418), + [anon_sym_u16] = ACTIONS(11418), + [anon_sym_u32] = ACTIONS(11418), + [anon_sym_u64] = ACTIONS(11418), + [anon_sym_isize] = ACTIONS(11418), + [anon_sym_usize] = ACTIONS(11418), + [anon_sym_f32] = ACTIONS(11418), + [anon_sym_f64] = ACTIONS(11418), + [anon_sym_c_char] = ACTIONS(11418), + [anon_sym_c_schar] = ACTIONS(11418), + [anon_sym_c_uchar] = ACTIONS(11418), + [anon_sym_c_short] = ACTIONS(11418), + [anon_sym_c_ushort] = ACTIONS(11418), + [anon_sym_c_int] = ACTIONS(11418), + [anon_sym_c_uint] = ACTIONS(11418), + [anon_sym_c_long] = ACTIONS(11418), + [anon_sym_c_ulong] = ACTIONS(11418), + [anon_sym_c_longlong] = ACTIONS(11418), + [anon_sym_c_ulonglong] = ACTIONS(11418), + [anon_sym_c_float] = ACTIONS(11418), + [anon_sym_c_double] = ACTIONS(11418), + [anon_sym_c_longdouble] = ACTIONS(11418), + [anon_sym_return] = ACTIONS(11418), + [anon_sym_yield] = ACTIONS(11418), + [anon_sym_break] = ACTIONS(11418), + [anon_sym_continue] = ACTIONS(11418), + [anon_sym_defer] = ACTIONS(11418), + [anon_sym_errdefer] = ACTIONS(11418), + [anon_sym_if] = ACTIONS(11418), + [anon_sym_while] = ACTIONS(11418), + [anon_sym_expand] = ACTIONS(11418), + [anon_sym_for] = ACTIONS(11418), + [anon_sym_match] = ACTIONS(11418), + [anon_sym_AMP] = ACTIONS(11420), + [anon_sym_TILDE] = ACTIONS(11420), + [anon_sym_try] = ACTIONS(11418), + [anon_sym_DOT] = ACTIONS(11420), + [anon_sym_true] = ACTIONS(11418), + [anon_sym_false] = ACTIONS(11418), + [anon_sym_null] = ACTIONS(11418), + [anon_sym_unreachable] = ACTIONS(11418), + [anon_sym_undefined] = ACTIONS(11418), + [sym_sink] = ACTIONS(11418), + [sym_integer] = ACTIONS(11418), + [sym_float] = ACTIONS(11420), + [anon_sym_DQUOTE] = ACTIONS(11420), + [sym_multiline_string] = ACTIONS(11420), + [sym_character] = ACTIONS(11420), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11420), + }, + [STATE(7565)] = { + [sym_identifier] = ACTIONS(11422), + [anon_sym_func] = ACTIONS(11422), + [anon_sym_BANG] = ACTIONS(11424), + [anon_sym_struct] = ACTIONS(11422), + [anon_sym_LPAREN] = ACTIONS(11424), + [anon_sym_LBRACE] = ACTIONS(11424), + [anon_sym_DASH] = ACTIONS(11424), + [anon_sym_DOLLAR] = ACTIONS(11424), + [anon_sym_LBRACK] = ACTIONS(11424), + [anon_sym_void] = ACTIONS(11422), + [anon_sym_noreturn] = ACTIONS(11422), + [anon_sym_type] = ACTIONS(11422), + [anon_sym_anyopaque] = ACTIONS(11422), + [anon_sym_bool] = ACTIONS(11422), + [anon_sym_int] = ACTIONS(11422), + [anon_sym_uint] = ACTIONS(11422), + [anon_sym_float] = ACTIONS(11422), + [anon_sym_range] = ACTIONS(11422), + [anon_sym_i8] = ACTIONS(11422), + [anon_sym_i16] = ACTIONS(11422), + [anon_sym_i32] = ACTIONS(11422), + [anon_sym_i64] = ACTIONS(11422), + [anon_sym_u8] = ACTIONS(11422), + [anon_sym_u16] = ACTIONS(11422), + [anon_sym_u32] = ACTIONS(11422), + [anon_sym_u64] = ACTIONS(11422), + [anon_sym_isize] = ACTIONS(11422), + [anon_sym_usize] = ACTIONS(11422), + [anon_sym_f32] = ACTIONS(11422), + [anon_sym_f64] = ACTIONS(11422), + [anon_sym_c_char] = ACTIONS(11422), + [anon_sym_c_schar] = ACTIONS(11422), + [anon_sym_c_uchar] = ACTIONS(11422), + [anon_sym_c_short] = ACTIONS(11422), + [anon_sym_c_ushort] = ACTIONS(11422), + [anon_sym_c_int] = ACTIONS(11422), + [anon_sym_c_uint] = ACTIONS(11422), + [anon_sym_c_long] = ACTIONS(11422), + [anon_sym_c_ulong] = ACTIONS(11422), + [anon_sym_c_longlong] = ACTIONS(11422), + [anon_sym_c_ulonglong] = ACTIONS(11422), + [anon_sym_c_float] = ACTIONS(11422), + [anon_sym_c_double] = ACTIONS(11422), + [anon_sym_c_longdouble] = ACTIONS(11422), + [anon_sym_return] = ACTIONS(11422), + [anon_sym_yield] = ACTIONS(11422), + [anon_sym_break] = ACTIONS(11422), + [anon_sym_continue] = ACTIONS(11422), + [anon_sym_defer] = ACTIONS(11422), + [anon_sym_errdefer] = ACTIONS(11422), + [anon_sym_if] = ACTIONS(11422), + [anon_sym_while] = ACTIONS(11422), + [anon_sym_expand] = ACTIONS(11422), + [anon_sym_for] = ACTIONS(11422), + [anon_sym_match] = ACTIONS(11422), + [anon_sym_AMP] = ACTIONS(11424), + [anon_sym_TILDE] = ACTIONS(11424), + [anon_sym_try] = ACTIONS(11422), + [anon_sym_DOT] = ACTIONS(11424), + [anon_sym_true] = ACTIONS(11422), + [anon_sym_false] = ACTIONS(11422), + [anon_sym_null] = ACTIONS(11422), + [anon_sym_unreachable] = ACTIONS(11422), + [anon_sym_undefined] = ACTIONS(11422), + [sym_sink] = ACTIONS(11422), + [sym_integer] = ACTIONS(11422), + [sym_float] = ACTIONS(11424), + [anon_sym_DQUOTE] = ACTIONS(11424), + [sym_multiline_string] = ACTIONS(11424), + [sym_character] = ACTIONS(11424), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11424), + }, + [STATE(7566)] = { + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11426), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_DOT_DOT] = ACTIONS(8603), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8601), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11429), + }, + [STATE(7567)] = { + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11432), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_DOT_DOT] = ACTIONS(8603), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8601), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11429), + }, + [STATE(7568)] = { + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(8603), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_DOT_DOT] = ACTIONS(8603), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8601), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11429), + }, + [STATE(7569)] = { + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11435), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_DOT_DOT] = ACTIONS(8603), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8601), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11429), + }, + [STATE(7570)] = { + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11438), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_DOT_DOT] = ACTIONS(8603), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8601), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11429), + }, + [STATE(7571)] = { + [aux_sym_import_declaration_repeat1] = STATE(7568), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11441), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_DOT_DOT] = ACTIONS(8603), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8601), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11429), + }, + [STATE(7572)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11444), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7573)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11447), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7574)] = { + [aux_sym_import_declaration_repeat1] = STATE(14437), + [sym_identifier] = ACTIONS(4406), + [anon_sym_func] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4404), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_DOLLAR] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_void] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_anyopaque] = ACTIONS(4406), + [anon_sym_bool] = ACTIONS(4406), + [anon_sym_int] = ACTIONS(4406), + [anon_sym_uint] = ACTIONS(4406), + [anon_sym_float] = ACTIONS(4406), + [anon_sym_range] = ACTIONS(4406), + [anon_sym_i8] = ACTIONS(4406), + [anon_sym_i16] = ACTIONS(4406), + [anon_sym_i32] = ACTIONS(4406), + [anon_sym_i64] = ACTIONS(4406), + [anon_sym_u8] = ACTIONS(4406), + [anon_sym_u16] = ACTIONS(4406), + [anon_sym_u32] = ACTIONS(4406), + [anon_sym_u64] = ACTIONS(4406), + [anon_sym_isize] = ACTIONS(4406), + [anon_sym_usize] = ACTIONS(4406), + [anon_sym_f32] = ACTIONS(4406), + [anon_sym_f64] = ACTIONS(4406), + [anon_sym_c_char] = ACTIONS(4406), + [anon_sym_c_schar] = ACTIONS(4406), + [anon_sym_c_uchar] = ACTIONS(4406), + [anon_sym_c_short] = ACTIONS(4406), + [anon_sym_c_ushort] = ACTIONS(4406), + [anon_sym_c_int] = ACTIONS(4406), + [anon_sym_c_uint] = ACTIONS(4406), + [anon_sym_c_long] = ACTIONS(4406), + [anon_sym_c_ulong] = ACTIONS(4406), + [anon_sym_c_longlong] = ACTIONS(4406), + [anon_sym_c_ulonglong] = ACTIONS(4406), + [anon_sym_c_float] = ACTIONS(4406), + [anon_sym_c_double] = ACTIONS(4406), + [anon_sym_c_longdouble] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(11450), + [anon_sym_expand] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_unreachable] = ACTIONS(4406), + [anon_sym_undefined] = ACTIONS(4406), + [sym_sink] = ACTIONS(4406), + [sym_integer] = ACTIONS(4406), + [sym_float] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_multiline_string] = ACTIONS(4404), + [sym_character] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11453), + }, + [STATE(7575)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11438), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7576)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11441), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7577)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11432), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7578)] = { + [aux_sym_import_declaration_repeat1] = STATE(14438), + [sym_identifier] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = 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_noreturn] = 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_else] = ACTIONS(11456), + [anon_sym_expand] = 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), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_unreachable] = ACTIONS(4428), + [anon_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(11459), + }, + [STATE(7579)] = { + [aux_sym_import_declaration_repeat1] = STATE(14443), + [sym_identifier] = ACTIONS(4476), + [anon_sym_func] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_void] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_anyopaque] = ACTIONS(4476), + [anon_sym_bool] = ACTIONS(4476), + [anon_sym_int] = ACTIONS(4476), + [anon_sym_uint] = ACTIONS(4476), + [anon_sym_float] = ACTIONS(4476), + [anon_sym_range] = ACTIONS(4476), + [anon_sym_i8] = ACTIONS(4476), + [anon_sym_i16] = ACTIONS(4476), + [anon_sym_i32] = ACTIONS(4476), + [anon_sym_i64] = ACTIONS(4476), + [anon_sym_u8] = ACTIONS(4476), + [anon_sym_u16] = ACTIONS(4476), + [anon_sym_u32] = ACTIONS(4476), + [anon_sym_u64] = ACTIONS(4476), + [anon_sym_isize] = ACTIONS(4476), + [anon_sym_usize] = ACTIONS(4476), + [anon_sym_f32] = ACTIONS(4476), + [anon_sym_f64] = ACTIONS(4476), + [anon_sym_c_char] = ACTIONS(4476), + [anon_sym_c_schar] = ACTIONS(4476), + [anon_sym_c_uchar] = ACTIONS(4476), + [anon_sym_c_short] = ACTIONS(4476), + [anon_sym_c_ushort] = ACTIONS(4476), + [anon_sym_c_int] = ACTIONS(4476), + [anon_sym_c_uint] = ACTIONS(4476), + [anon_sym_c_long] = ACTIONS(4476), + [anon_sym_c_ulong] = ACTIONS(4476), + [anon_sym_c_longlong] = ACTIONS(4476), + [anon_sym_c_ulonglong] = ACTIONS(4476), + [anon_sym_c_float] = ACTIONS(4476), + [anon_sym_c_double] = ACTIONS(4476), + [anon_sym_c_longdouble] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(11462), + [anon_sym_expand] = ACTIONS(4476), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_unreachable] = ACTIONS(4476), + [anon_sym_undefined] = ACTIONS(4476), + [sym_sink] = ACTIONS(4476), + [sym_integer] = ACTIONS(4476), + [sym_float] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_multiline_string] = ACTIONS(4474), + [sym_character] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11465), + }, + [STATE(7580)] = { + [aux_sym_import_declaration_repeat1] = STATE(14439), + [sym_identifier] = ACTIONS(4446), + [anon_sym_func] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_DOLLAR] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_void] = ACTIONS(4446), + [anon_sym_noreturn] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_anyopaque] = ACTIONS(4446), + [anon_sym_bool] = ACTIONS(4446), + [anon_sym_int] = ACTIONS(4446), + [anon_sym_uint] = ACTIONS(4446), + [anon_sym_float] = ACTIONS(4446), + [anon_sym_range] = ACTIONS(4446), + [anon_sym_i8] = ACTIONS(4446), + [anon_sym_i16] = ACTIONS(4446), + [anon_sym_i32] = ACTIONS(4446), + [anon_sym_i64] = ACTIONS(4446), + [anon_sym_u8] = ACTIONS(4446), + [anon_sym_u16] = ACTIONS(4446), + [anon_sym_u32] = ACTIONS(4446), + [anon_sym_u64] = ACTIONS(4446), + [anon_sym_isize] = ACTIONS(4446), + [anon_sym_usize] = ACTIONS(4446), + [anon_sym_f32] = ACTIONS(4446), + [anon_sym_f64] = ACTIONS(4446), + [anon_sym_c_char] = ACTIONS(4446), + [anon_sym_c_schar] = ACTIONS(4446), + [anon_sym_c_uchar] = ACTIONS(4446), + [anon_sym_c_short] = ACTIONS(4446), + [anon_sym_c_ushort] = ACTIONS(4446), + [anon_sym_c_int] = ACTIONS(4446), + [anon_sym_c_uint] = ACTIONS(4446), + [anon_sym_c_long] = ACTIONS(4446), + [anon_sym_c_ulong] = ACTIONS(4446), + [anon_sym_c_longlong] = ACTIONS(4446), + [anon_sym_c_ulonglong] = ACTIONS(4446), + [anon_sym_c_float] = ACTIONS(4446), + [anon_sym_c_double] = ACTIONS(4446), + [anon_sym_c_longdouble] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(11468), + [anon_sym_expand] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4446), + [anon_sym_false] = ACTIONS(4446), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_unreachable] = ACTIONS(4446), + [anon_sym_undefined] = ACTIONS(4446), + [sym_sink] = ACTIONS(4446), + [sym_integer] = ACTIONS(4446), + [sym_float] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [sym_multiline_string] = ACTIONS(4444), + [sym_character] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11471), + }, + [STATE(7581)] = { + [aux_sym_import_declaration_repeat1] = STATE(14440), + [sym_identifier] = ACTIONS(4458), + [anon_sym_func] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_DOLLAR] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_void] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_anyopaque] = ACTIONS(4458), + [anon_sym_bool] = ACTIONS(4458), + [anon_sym_int] = ACTIONS(4458), + [anon_sym_uint] = ACTIONS(4458), + [anon_sym_float] = ACTIONS(4458), + [anon_sym_range] = ACTIONS(4458), + [anon_sym_i8] = ACTIONS(4458), + [anon_sym_i16] = ACTIONS(4458), + [anon_sym_i32] = ACTIONS(4458), + [anon_sym_i64] = ACTIONS(4458), + [anon_sym_u8] = ACTIONS(4458), + [anon_sym_u16] = ACTIONS(4458), + [anon_sym_u32] = ACTIONS(4458), + [anon_sym_u64] = ACTIONS(4458), + [anon_sym_isize] = ACTIONS(4458), + [anon_sym_usize] = ACTIONS(4458), + [anon_sym_f32] = ACTIONS(4458), + [anon_sym_f64] = ACTIONS(4458), + [anon_sym_c_char] = ACTIONS(4458), + [anon_sym_c_schar] = ACTIONS(4458), + [anon_sym_c_uchar] = ACTIONS(4458), + [anon_sym_c_short] = ACTIONS(4458), + [anon_sym_c_ushort] = ACTIONS(4458), + [anon_sym_c_int] = ACTIONS(4458), + [anon_sym_c_uint] = ACTIONS(4458), + [anon_sym_c_long] = ACTIONS(4458), + [anon_sym_c_ulong] = ACTIONS(4458), + [anon_sym_c_longlong] = ACTIONS(4458), + [anon_sym_c_ulonglong] = ACTIONS(4458), + [anon_sym_c_float] = ACTIONS(4458), + [anon_sym_c_double] = ACTIONS(4458), + [anon_sym_c_longdouble] = ACTIONS(4458), + [anon_sym_else] = ACTIONS(11474), + [anon_sym_expand] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_true] = ACTIONS(4458), + [anon_sym_false] = ACTIONS(4458), + [anon_sym_null] = ACTIONS(4458), + [anon_sym_unreachable] = ACTIONS(4458), + [anon_sym_undefined] = ACTIONS(4458), + [sym_sink] = ACTIONS(4458), + [sym_integer] = ACTIONS(4458), + [sym_float] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_multiline_string] = ACTIONS(4456), + [sym_character] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11477), + }, + [STATE(7582)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11480), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7583)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11483), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7584)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11486), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7585)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11435), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7586)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11426), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7587)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11489), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), + }, + [STATE(7588)] = { + [aux_sym_import_declaration_repeat1] = STATE(14431), + [sym_identifier] = ACTIONS(4394), + [anon_sym_func] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4392), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_void] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_anyopaque] = ACTIONS(4394), + [anon_sym_bool] = ACTIONS(4394), + [anon_sym_int] = ACTIONS(4394), + [anon_sym_uint] = ACTIONS(4394), + [anon_sym_float] = ACTIONS(4394), + [anon_sym_range] = ACTIONS(4394), + [anon_sym_i8] = ACTIONS(4394), + [anon_sym_i16] = ACTIONS(4394), + [anon_sym_i32] = ACTIONS(4394), + [anon_sym_i64] = ACTIONS(4394), + [anon_sym_u8] = ACTIONS(4394), + [anon_sym_u16] = ACTIONS(4394), + [anon_sym_u32] = ACTIONS(4394), + [anon_sym_u64] = ACTIONS(4394), + [anon_sym_isize] = ACTIONS(4394), + [anon_sym_usize] = ACTIONS(4394), + [anon_sym_f32] = ACTIONS(4394), + [anon_sym_f64] = ACTIONS(4394), + [anon_sym_c_char] = ACTIONS(4394), + [anon_sym_c_schar] = ACTIONS(4394), + [anon_sym_c_uchar] = ACTIONS(4394), + [anon_sym_c_short] = ACTIONS(4394), + [anon_sym_c_ushort] = ACTIONS(4394), + [anon_sym_c_int] = ACTIONS(4394), + [anon_sym_c_uint] = ACTIONS(4394), + [anon_sym_c_long] = ACTIONS(4394), + [anon_sym_c_ulong] = ACTIONS(4394), + [anon_sym_c_longlong] = ACTIONS(4394), + [anon_sym_c_ulonglong] = ACTIONS(4394), + [anon_sym_c_float] = ACTIONS(4394), + [anon_sym_c_double] = ACTIONS(4394), + [anon_sym_c_longdouble] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(11492), + [anon_sym_expand] = ACTIONS(4394), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_unreachable] = ACTIONS(4394), + [anon_sym_undefined] = ACTIONS(4394), + [sym_sink] = ACTIONS(4394), + [sym_integer] = ACTIONS(4394), + [sym_float] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_multiline_string] = ACTIONS(4392), + [sym_character] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(11495), + }, + [STATE(7589)] = { + [aux_sym_import_declaration_repeat1] = STATE(6273), + [sym_identifier] = ACTIONS(8601), + [anon_sym_func] = ACTIONS(8601), + [anon_sym_BANG] = ACTIONS(8603), + [anon_sym_struct] = ACTIONS(8601), + [anon_sym_LPAREN] = ACTIONS(8603), + [anon_sym_LBRACE] = ACTIONS(8603), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_DOLLAR] = ACTIONS(8603), + [anon_sym_STAR] = ACTIONS(8603), + [anon_sym_LBRACK] = ACTIONS(8603), + [anon_sym_SEMI] = ACTIONS(8603), + [anon_sym_RBRACK] = ACTIONS(11498), + [anon_sym_void] = ACTIONS(8601), + [anon_sym_noreturn] = ACTIONS(8601), + [anon_sym_type] = ACTIONS(8601), + [anon_sym_anyopaque] = ACTIONS(8601), + [anon_sym_bool] = ACTIONS(8601), + [anon_sym_int] = ACTIONS(8601), + [anon_sym_uint] = ACTIONS(8601), + [anon_sym_float] = ACTIONS(8601), + [anon_sym_range] = ACTIONS(8601), + [anon_sym_i8] = ACTIONS(8601), + [anon_sym_i16] = ACTIONS(8601), + [anon_sym_i32] = ACTIONS(8601), + [anon_sym_i64] = ACTIONS(8601), + [anon_sym_u8] = ACTIONS(8601), + [anon_sym_u16] = ACTIONS(8601), + [anon_sym_u32] = ACTIONS(8601), + [anon_sym_u64] = ACTIONS(8601), + [anon_sym_isize] = ACTIONS(8601), + [anon_sym_usize] = ACTIONS(8601), + [anon_sym_f32] = ACTIONS(8601), + [anon_sym_f64] = ACTIONS(8601), + [anon_sym_c_char] = ACTIONS(8601), + [anon_sym_c_schar] = ACTIONS(8601), + [anon_sym_c_uchar] = ACTIONS(8601), + [anon_sym_c_short] = ACTIONS(8601), + [anon_sym_c_ushort] = ACTIONS(8601), + [anon_sym_c_int] = ACTIONS(8601), + [anon_sym_c_uint] = ACTIONS(8601), + [anon_sym_c_long] = ACTIONS(8601), + [anon_sym_c_ulong] = ACTIONS(8601), + [anon_sym_c_longlong] = ACTIONS(8601), + [anon_sym_c_ulonglong] = ACTIONS(8601), + [anon_sym_c_float] = ACTIONS(8601), + [anon_sym_c_double] = ACTIONS(8601), + [anon_sym_c_longdouble] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_TILDE] = ACTIONS(8603), + [anon_sym_try] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_true] = ACTIONS(8601), + [anon_sym_false] = ACTIONS(8601), + [anon_sym_null] = ACTIONS(8601), + [anon_sym_unreachable] = ACTIONS(8601), + [anon_sym_undefined] = ACTIONS(8601), + [sym_sink] = ACTIONS(8601), + [sym_integer] = ACTIONS(8601), + [sym_float] = ACTIONS(8603), + [anon_sym_DQUOTE] = ACTIONS(8603), + [sym_multiline_string] = ACTIONS(8603), + [sym_character] = ACTIONS(8603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(10172), }, }; @@ -253402,7 +835129,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 15, + ACTIONS(11503), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -253418,7 +835145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(5717), 48, + ACTIONS(11501), 48, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -253470,7 +835197,7 @@ static const uint16_t ts_small_parse_table[] = { [71] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 15, + ACTIONS(11507), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -253486,7 +835213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(5721), 48, + ACTIONS(11505), 48, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -253538,7 +835265,7 @@ static const uint16_t ts_small_parse_table[] = { [142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 15, + ACTIONS(11511), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -253554,7 +835281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(5725), 48, + ACTIONS(11509), 48, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -253606,7 +835333,7 @@ static const uint16_t ts_small_parse_table[] = { [213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 15, + ACTIONS(11515), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -253622,7 +835349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(5729), 48, + ACTIONS(11513), 48, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -253674,7 +835401,7 @@ static const uint16_t ts_small_parse_table[] = { [284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 15, + ACTIONS(11519), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -253690,7 +835417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(5733), 48, + ACTIONS(11517), 48, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -253742,7 +835469,7 @@ static const uint16_t ts_small_parse_table[] = { [355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 15, + ACTIONS(11523), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -253758,7 +835485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(5737), 48, + ACTIONS(11521), 48, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -253810,7 +835537,7 @@ static const uint16_t ts_small_parse_table[] = { [426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 15, + ACTIONS(11527), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -253826,7 +835553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(5741), 48, + ACTIONS(11525), 48, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -253878,7 +835605,7 @@ static const uint16_t ts_small_parse_table[] = { [497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 15, + ACTIONS(11531), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -253894,7 +835621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(5745), 48, + ACTIONS(11529), 48, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -253946,37 +835673,37 @@ static const uint16_t ts_small_parse_table[] = { [568] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, + ACTIONS(11533), 1, sym_identifier, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5767), 1, + ACTIONS(11551), 1, anon_sym_DOT, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2956), 2, + STATE(8295), 2, sym_struct_type, sym_type, - ACTIONS(1499), 4, + ACTIONS(5954), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PIPE, sym__newline, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -253986,7 +835713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254025,38 +835752,38 @@ static const uint16_t ts_small_parse_table[] = { [662] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5771), 1, + ACTIONS(11555), 1, anon_sym_RBRACE, - ACTIONS(5773), 1, + ACTIONS(11557), 1, sym__newline, - STATE(2434), 1, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254066,7 +835793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254105,38 +835832,38 @@ static const uint16_t ts_small_parse_table[] = { [759] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5773), 1, - sym__newline, - ACTIONS(5775), 1, + ACTIONS(11559), 1, anon_sym_RBRACE, - STATE(2434), 1, + ACTIONS(11561), 1, + sym__newline, + STATE(7601), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254146,7 +835873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254185,38 +835912,38 @@ static const uint16_t ts_small_parse_table[] = { [856] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5777), 1, - anon_sym_RBRACE, - ACTIONS(5779), 1, + ACTIONS(11557), 1, sym__newline, - STATE(2430), 1, + ACTIONS(11563), 1, + anon_sym_RBRACE, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254226,7 +835953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254265,38 +835992,38 @@ static const uint16_t ts_small_parse_table[] = { [953] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5781), 1, + ACTIONS(11565), 1, anon_sym_RBRACE, - ACTIONS(5783), 1, + ACTIONS(11567), 1, sym__newline, - STATE(2422), 1, + STATE(7603), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254306,7 +836033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254345,38 +836072,38 @@ static const uint16_t ts_small_parse_table[] = { [1050] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5773), 1, + ACTIONS(11557), 1, sym__newline, - ACTIONS(5785), 1, + ACTIONS(11569), 1, anon_sym_RBRACE, - STATE(2434), 1, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254386,7 +836113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254425,38 +836152,38 @@ static const uint16_t ts_small_parse_table[] = { [1147] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5773), 1, - sym__newline, - ACTIONS(5787), 1, + ACTIONS(11571), 1, anon_sym_RBRACE, - STATE(2434), 1, + ACTIONS(11573), 1, + sym__newline, + STATE(7605), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254466,7 +836193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254505,38 +836232,38 @@ static const uint16_t ts_small_parse_table[] = { [1244] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5789), 1, - anon_sym_RBRACE, - ACTIONS(5791), 1, + ACTIONS(11557), 1, sym__newline, - STATE(2436), 1, + ACTIONS(11575), 1, + anon_sym_RBRACE, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254546,7 +836273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254585,38 +836312,38 @@ static const uint16_t ts_small_parse_table[] = { [1341] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5773), 1, - sym__newline, - ACTIONS(5793), 1, + ACTIONS(11577), 1, anon_sym_RBRACE, - STATE(2434), 1, + ACTIONS(11579), 1, + sym__newline, + STATE(7607), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254626,7 +836353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254665,38 +836392,38 @@ static const uint16_t ts_small_parse_table[] = { [1438] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5773), 1, + ACTIONS(11557), 1, sym__newline, - ACTIONS(5795), 1, + ACTIONS(11581), 1, anon_sym_RBRACE, - STATE(2434), 1, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254706,7 +836433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254745,38 +836472,38 @@ static const uint16_t ts_small_parse_table[] = { [1535] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5797), 1, + ACTIONS(11583), 1, anon_sym_RBRACE, - ACTIONS(5799), 1, + ACTIONS(11585), 1, sym__newline, - STATE(2433), 1, + STATE(7609), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254786,7 +836513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254825,38 +836552,38 @@ static const uint16_t ts_small_parse_table[] = { [1632] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5801), 1, - anon_sym_RBRACE, - ACTIONS(5803), 1, + ACTIONS(11557), 1, sym__newline, - STATE(2427), 1, + ACTIONS(11587), 1, + anon_sym_RBRACE, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254866,7 +836593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254905,38 +836632,38 @@ static const uint16_t ts_small_parse_table[] = { [1729] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5773), 1, - sym__newline, - ACTIONS(5805), 1, + ACTIONS(11589), 1, anon_sym_RBRACE, - STATE(2434), 1, + ACTIONS(11591), 1, + sym__newline, + STATE(7612), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -254946,7 +836673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -254985,38 +836712,38 @@ static const uint16_t ts_small_parse_table[] = { [1826] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, - sym_identifier, - ACTIONS(5813), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5816), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5819), 1, - anon_sym_RBRACE, - ACTIONS(5821), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5824), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5836), 1, + ACTIONS(11553), 1, + sym_identifier, + ACTIONS(11593), 1, + anon_sym_RBRACE, + ACTIONS(11595), 1, sym__newline, - STATE(2434), 1, + STATE(7613), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5810), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5827), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -255026,7 +836753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5833), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -255065,38 +836792,38 @@ static const uint16_t ts_small_parse_table[] = { [1923] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5839), 1, - anon_sym_RBRACE, - ACTIONS(5841), 1, + ACTIONS(11557), 1, sym__newline, - STATE(2429), 1, + ACTIONS(11597), 1, + anon_sym_RBRACE, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -255106,7 +836833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -255145,38 +836872,38 @@ static const uint16_t ts_small_parse_table[] = { [2020] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5773), 1, + ACTIONS(11557), 1, sym__newline, - ACTIONS(5843), 1, + ACTIONS(11599), 1, anon_sym_RBRACE, - STATE(2434), 1, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -255186,7 +836913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -255225,38 +836952,38 @@ static const uint16_t ts_small_parse_table[] = { [2117] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5845), 1, + ACTIONS(11601), 1, anon_sym_RBRACE, - ACTIONS(5847), 1, + ACTIONS(11603), 1, sym__newline, - STATE(2423), 1, + STATE(7615), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -255266,7 +836993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -255305,38 +837032,38 @@ static const uint16_t ts_small_parse_table[] = { [2214] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, + ACTIONS(11537), 1, anon_sym_struct, - ACTIONS(5755), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5849), 1, - anon_sym_RBRACE, - ACTIONS(5851), 1, + ACTIONS(11557), 1, sym__newline, - STATE(2426), 1, + ACTIONS(11605), 1, + anon_sym_RBRACE, + STATE(7619), 1, aux_sym_record_body_repeat1, - STATE(2892), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(2960), 1, + STATE(8355), 1, sym_record_field, - ACTIONS(5751), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2959), 2, + STATE(8365), 2, sym_struct_type, sym_type, - STATE(2908), 9, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -255346,7 +837073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -255382,2693 +837109,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2311] = 14, + [2311] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, + ACTIONS(11537), 1, + anon_sym_struct, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4433), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2401] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4530), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2491] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, + ACTIONS(11553), 1, sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3814), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2581] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3813), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2671] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4486), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - 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] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5873), 1, - anon_sym_union, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5877), 1, - anon_sym_enum, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3596), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2851] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5883), 1, - anon_sym_union, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5887), 1, - anon_sym_enum, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3213), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2941] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3797), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3031] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4251), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3121] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4274), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3211] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5895), 1, - anon_sym_union, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5899), 1, - anon_sym_enum, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(872), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3301] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3801), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3391] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5905), 1, - anon_sym_union, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5909), 1, - anon_sym_enum, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3037), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3481] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5905), 1, - anon_sym_union, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5909), 1, - anon_sym_enum, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3094), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3571] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3801), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3661] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3818), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3751] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4707), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3841] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4356), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3931] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4351), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4021] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4381), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4111] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5919), 1, - anon_sym_union, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5923), 1, - anon_sym_enum, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2300), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4201] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5919), 1, - anon_sym_union, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5923), 1, - anon_sym_enum, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2229), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4291] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4683), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4381] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(5933), 1, - anon_sym_union, - ACTIONS(5935), 1, - anon_sym_enum, - STATE(2892), 1, - sym_qualified_identifier, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2898), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4471] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5873), 1, - anon_sym_union, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5877), 1, - anon_sym_enum, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3668), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4561] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4391), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4651] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5939), 1, - anon_sym_union, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5943), 1, - anon_sym_enum, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(635), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4741] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(5933), 1, - anon_sym_union, - ACTIONS(5935), 1, - anon_sym_enum, - STATE(2892), 1, - sym_qualified_identifier, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2904), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4831] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5883), 1, - anon_sym_union, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5887), 1, - anon_sym_enum, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3240), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4921] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5895), 1, - anon_sym_union, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5899), 1, - anon_sym_enum, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(873), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5011] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5939), 1, - anon_sym_union, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5943), 1, - anon_sym_enum, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(634), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5101] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3812), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5191] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_union, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(4279), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5281] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1437), 1, - anon_sym_enum, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3797), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5371] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(5949), 1, - anon_sym_COLON_COLON, - ACTIONS(5951), 1, - anon_sym_test, - ACTIONS(5955), 1, - anon_sym_EQ, - STATE(3856), 1, - sym_qualified_identifier, - STATE(5060), 1, - sym_type, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - ACTIONS(5953), 2, - anon_sym_func, - anon_sym_c_func, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5461] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(5957), 1, + ACTIONS(11607), 1, + anon_sym_RBRACE, + ACTIONS(11609), 1, sym__newline, - STATE(2510), 1, - aux_sym_import_declaration_repeat1, - STATE(3800), 1, + STATE(7599), 1, + aux_sym_record_body_repeat1, + STATE(8225), 1, sym_qualified_identifier, - STATE(3808), 1, - sym_type, - ACTIONS(5861), 2, + STATE(8355), 1, + sym_record_field, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(8365), 2, + sym_struct_type, + sym_type, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258078,7 +837153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258114,34 +837189,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5548] = 14, + [2408] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, + ACTIONS(11537), 1, + anon_sym_struct, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5889), 1, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11553), 1, + sym_identifier, + ACTIONS(11611), 1, + anon_sym_RBRACE, + ACTIONS(11613), 1, sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3190), 1, + STATE(7618), 1, + aux_sym_record_body_repeat1, + STATE(8225), 1, sym_qualified_identifier, - STATE(3250), 1, - sym_type, - ACTIONS(3709), 2, + STATE(8355), 1, + sym_record_field, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(3719), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(3189), 9, + STATE(8365), 2, + sym_struct_type, + sym_type, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258151,7 +837233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(2227), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258187,34 +837269,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5635] = 14, + [2505] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, + ACTIONS(11537), 1, + anon_sym_struct, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5879), 1, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5881), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5961), 1, + ACTIONS(11553), 1, + sym_identifier, + ACTIONS(11557), 1, sym__newline, - STATE(2478), 1, - aux_sym_import_declaration_repeat1, - STATE(3562), 1, + ACTIONS(11615), 1, + anon_sym_RBRACE, + STATE(7619), 1, + aux_sym_record_body_repeat1, + STATE(8225), 1, sym_qualified_identifier, - STATE(3625), 1, - sym_type, - ACTIONS(4096), 2, + STATE(8355), 1, + sym_record_field, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4106), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(3555), 9, + STATE(8365), 2, + sym_struct_type, + sym_type, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258224,7 +837313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(2889), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258260,107 +837349,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5722] = 14, + [2602] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11617), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11623), 1, + anon_sym_struct, + ACTIONS(11626), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(5963), 1, - anon_sym_COMMA, - STATE(2969), 1, - aux_sym_parameter_repeat1, - STATE(3856), 1, - sym_qualified_identifier, - STATE(4711), 1, - sym_type, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5809] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, + ACTIONS(11629), 1, + anon_sym_RBRACE, + ACTIONS(11631), 1, anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, + ACTIONS(11634), 1, anon_sym_QMARK, - ACTIONS(5881), 1, + ACTIONS(11640), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11646), 1, sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3562), 1, + STATE(7619), 1, + aux_sym_record_body_repeat1, + STATE(8225), 1, sym_qualified_identifier, - STATE(3636), 1, - sym_type, - ACTIONS(4096), 2, + STATE(8355), 1, + sym_record_field, + ACTIONS(11620), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4106), 2, + ACTIONS(11637), 2, anon_sym_AT, anon_sym_STAR, - STATE(3555), 9, + STATE(8365), 2, + sym_struct_type, + sym_type, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258370,7 +837393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(2889), 35, + ACTIONS(11643), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258406,34 +837429,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5896] = 14, + [2699] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11537), 1, + anon_sym_struct, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11553), 1, + sym_identifier, + ACTIONS(11649), 1, + anon_sym_RBRACE, + ACTIONS(11651), 1, sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3800), 1, + STATE(7621), 1, + aux_sym_record_body_repeat1, + STATE(8225), 1, sym_qualified_identifier, - STATE(3811), 1, - sym_type, - ACTIONS(5861), 2, + STATE(8355), 1, + sym_record_field, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(8365), 2, + sym_struct_type, + sym_type, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258443,7 +837473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258479,34 +837509,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5983] = 14, + [2796] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11537), 1, + anon_sym_struct, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5965), 1, + ACTIONS(11553), 1, + sym_identifier, + ACTIONS(11557), 1, sym__newline, - STATE(2479), 1, - aux_sym_import_declaration_repeat1, - STATE(3793), 1, - sym_type, - STATE(3800), 1, + ACTIONS(11653), 1, + anon_sym_RBRACE, + STATE(7619), 1, + aux_sym_record_body_repeat1, + STATE(8225), 1, sym_qualified_identifier, - ACTIONS(5861), 2, + STATE(8355), 1, + sym_record_field, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(8365), 2, + sym_struct_type, + sym_type, + STATE(8262), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258516,7 +837553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258552,34 +837589,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6070] = 14, + [2893] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, - sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4040), 1, - sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(13853), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258589,7 +837629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258625,34 +837665,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6157] = 14, + [2983] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5967), 1, - sym__newline, - STATE(2481), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4154), 1, - sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(13103), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258662,7 +837705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258698,34 +837741,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6244] = 14, + [3073] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11663), 1, + anon_sym_union, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11667), 1, + anon_sym_enum, + ACTIONS(11669), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11671), 1, anon_sym_LBRACK, - ACTIONS(5969), 1, - sym__newline, - STATE(2487), 1, - aux_sym_import_declaration_repeat1, - STATE(3800), 1, + STATE(8897), 1, sym_qualified_identifier, - STATE(3833), 1, - sym_type, - ACTIONS(5861), 2, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1788), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(8942), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(8861), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258735,7 +837781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258771,34 +837817,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6331] = 14, + [3163] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5937), 1, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5941), 1, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5945), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5947), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5971), 1, - sym__newline, - STATE(537), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(630), 1, - sym_type, - STATE(2485), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(339), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(349), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(540), 9, + STATE(10845), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10917), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258808,7 +837857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258844,34 +837893,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6418] = 14, + [3253] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, + ACTIONS(6368), 1, + anon_sym_union, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5941), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5945), 1, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5947), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, - sym__newline, - STATE(537), 1, + STATE(10848), 1, sym_qualified_identifier, - STATE(632), 1, - sym_type, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(339), 2, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(349), 2, + ACTIONS(11679), 2, anon_sym_AT, anon_sym_STAR, - STATE(540), 9, + STATE(10860), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10871), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258881,7 +837933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 35, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258917,34 +837969,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6505] = 14, + [3343] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11685), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11687), 1, + anon_sym_union, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11691), 1, + anon_sym_enum, + ACTIONS(11693), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11695), 1, anon_sym_LBRACK, - ACTIONS(5973), 1, - anon_sym_COLON_COLON, - ACTIONS(5977), 1, - anon_sym_EQ, - STATE(3856), 1, + STATE(674), 1, sym_qualified_identifier, - STATE(5081), 1, - sym_type, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - ACTIONS(5975), 2, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - STATE(3857), 9, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2655), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(735), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -258954,7 +838009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -258990,34 +838045,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6592] = 14, + [3433] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, - sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3800), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(3845), 1, - sym_type, - ACTIONS(5861), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(12517), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259027,7 +838085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259063,34 +838121,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6679] = 14, + [3523] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5979), 1, - sym__newline, - STATE(2528), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4910), 1, - sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(12560), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259100,7 +838161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259136,34 +838197,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6766] = 14, + [3613] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(11685), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11687), 1, + anon_sym_union, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11691), 1, + anon_sym_enum, + ACTIONS(11693), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11695), 1, anon_sym_LBRACK, - ACTIONS(5981), 1, - sym__newline, - STATE(2490), 1, - aux_sym_import_declaration_repeat1, - STATE(3004), 1, + STATE(674), 1, sym_qualified_identifier, - STATE(3070), 1, - sym_type, - ACTIONS(511), 2, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(1179), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(2660), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(735), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259173,7 +838237,2667 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3703] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(13032), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3793] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(13083), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3883] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(13434), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3973] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(13473), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4063] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6368), 1, + anon_sym_union, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10870), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4153] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(13918), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4243] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(13218), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4333] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(13616), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4423] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(12745), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4513] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(12910), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4603] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11697), 1, + anon_sym_union, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11701), 1, + anon_sym_enum, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10215), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4693] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(12698), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4783] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(12346), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4873] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11709), 1, + anon_sym_union, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11713), 1, + anon_sym_enum, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(4074), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4963] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11697), 1, + anon_sym_union, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11701), 1, + anon_sym_enum, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10339), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5053] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11719), 1, + anon_sym_union, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11723), 1, + anon_sym_enum, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, + sym_qualified_identifier, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8330), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5143] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11719), 1, + anon_sym_union, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11723), 1, + anon_sym_enum, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, + sym_qualified_identifier, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8359), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5233] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11663), 1, + anon_sym_union, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11667), 1, + anon_sym_enum, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8978), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5323] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11729), 1, + anon_sym_union, + ACTIONS(11731), 1, + anon_sym_enum, + STATE(8225), 1, + sym_qualified_identifier, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8245), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5413] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11737), 1, + anon_sym_union, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11741), 1, + anon_sym_enum, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3033), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5503] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11709), 1, + anon_sym_union, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11713), 1, + anon_sym_enum, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(4125), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5593] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6368), 1, + anon_sym_union, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10869), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5683] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6368), 1, + anon_sym_union, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10874), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5773] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6368), 1, + anon_sym_union, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10845), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5863] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11751), 1, + anon_sym_union, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11755), 1, + anon_sym_enum, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9477), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5953] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11765), 1, + anon_sym_union, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_enum, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7170), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6043] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11765), 1, + anon_sym_union, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_enum, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7114), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6133] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11737), 1, + anon_sym_union, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11741), 1, + anon_sym_enum, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3063), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6223] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(12391), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6313] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(12464), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6403] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11751), 1, + anon_sym_union, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11755), 1, + anon_sym_enum, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9474), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6493] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11781), 1, + anon_sym_union, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11785), 1, + anon_sym_enum, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3846), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6583] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(13842), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6673] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6368), 1, + anon_sym_union, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10872), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [6763] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(6370), 1, + anon_sym_enum, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11655), 1, + anon_sym_union, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10860), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259212,31 +840936,34 @@ static const uint16_t ts_small_parse_table[] = { [6853] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(11779), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11781), 1, + anon_sym_union, + ACTIONS(11783), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11785), 1, + anon_sym_enum, + ACTIONS(11787), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11789), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, - sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3004), 1, + STATE(3434), 1, sym_qualified_identifier, - STATE(3080), 1, - sym_type, - ACTIONS(511), 2, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(1705), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(3620), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(3376), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259246,7 +840973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259282,34 +841009,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6940] = 14, + [6943] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, + ACTIONS(11533), 1, sym_identifier, - ACTIONS(5921), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5983), 1, - sym__newline, - STATE(2219), 1, + ACTIONS(11729), 1, + anon_sym_union, + ACTIONS(11731), 1, + anon_sym_enum, + STATE(8225), 1, sym_qualified_identifier, - STATE(2278), 1, - sym_type, - STATE(2492), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5917), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8240), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(8227), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259319,7 +841049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259355,34 +841085,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7027] = 14, + [7033] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, - sym__newline, - STATE(2219), 1, + ACTIONS(11791), 1, + anon_sym_COLON_COLON, + ACTIONS(11793), 1, + anon_sym_test, + ACTIONS(11797), 1, + anon_sym_EQ, + STATE(10912), 1, sym_qualified_identifier, - STATE(2286), 1, + STATE(15080), 1, sym_type, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + ACTIONS(11795), 2, + anon_sym_func, + anon_sym_c_func, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259392,7 +841124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259428,34 +841160,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7114] = 14, + [7123] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5963), 1, + ACTIONS(11799), 1, anon_sym_COMMA, - STATE(2477), 1, + STATE(7672), 1, aux_sym_parameter_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4718), 1, + STATE(14482), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259465,7 +841197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259501,34 +841233,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7201] = 14, + [7210] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2497), 1, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - STATE(2892), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(2939), 1, + STATE(11757), 1, sym_type, - ACTIONS(5751), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(2894), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259538,7 +841270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259574,34 +841306,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7288] = 14, + [7297] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - ACTIONS(5963), 1, + ACTIONS(11803), 1, + sym__newline, + STATE(7702), 1, + aux_sym_import_declaration_repeat1, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10849), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [7384] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11799), 1, anon_sym_COMMA, - STATE(2969), 1, + STATE(8791), 1, aux_sym_parameter_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4985), 1, + STATE(14675), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259611,7 +841416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259647,34 +841452,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7375] = 14, + [7471] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11805), 1, sym__newline, - STATE(2963), 1, + STATE(7674), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(3881), 1, + STATE(14760), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3862), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259684,7 +841489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259720,34 +841525,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7462] = 14, + [7558] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2944), 1, - sym_type, - STATE(2963), 1, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - ACTIONS(5751), 2, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14764), 1, + sym_type, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(2894), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259757,7 +841562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259793,34 +841598,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7549] = 14, + [7645] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5885), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5889), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5987), 1, + ACTIONS(11807), 1, sym__newline, - STATE(2475), 1, + STATE(7676), 1, aux_sym_import_declaration_repeat1, - STATE(3190), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(3254), 1, + STATE(11905), 1, sym_type, - ACTIONS(3709), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(3719), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3189), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259830,7 +841635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(2227), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259866,34 +841671,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7636] = 14, + [7732] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5989), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2500), 1, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4829), 1, + STATE(11920), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259903,7 +841708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -259939,34 +841744,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7723] = 14, + [7819] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11733), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11739), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11749), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(2882), 1, sym_qualified_identifier, - STATE(4994), 1, + STATE(3009), 1, sym_type, - ACTIONS(471), 2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(11747), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(2900), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -259976,7 +841781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260012,34 +841817,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7810] = 14, + [7906] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - ACTIONS(5991), 1, + ACTIONS(11809), 1, sym__newline, - STATE(2502), 1, + STATE(7696), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10848), 1, sym_qualified_identifier, - STATE(4041), 1, + STATE(10876), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(11679), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10871), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260049,7 +841854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260085,34 +841890,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7897] = 14, + [7993] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11811), 1, sym__newline, - STATE(2963), 1, + STATE(7680), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4128), 1, + STATE(14225), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260122,7 +841927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260158,34 +841963,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7984] = 14, + [8080] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5893), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5897), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5901), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5903), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5993), 1, + ACTIONS(11801), 1, sym__newline, - STATE(797), 1, - sym_qualified_identifier, - STATE(865), 1, - sym_type, - STATE(2504), 1, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - ACTIONS(2059), 2, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14780), 1, + sym_type, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(2069), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(796), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260195,7 +842000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260231,34 +842036,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8071] = 14, + [8167] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5893), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5897), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5901), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5903), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11813), 1, sym__newline, - STATE(797), 1, - sym_qualified_identifier, - STATE(870), 1, - sym_type, - STATE(2963), 1, + STATE(7682), 1, aux_sym_import_declaration_repeat1, - ACTIONS(2059), 2, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11467), 1, + sym_type, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(2069), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(796), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260268,7 +842073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260304,34 +842109,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8158] = 14, + [8254] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5995), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2506), 1, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4835), 1, + STATE(11665), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260341,7 +842146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260377,34 +842182,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8245] = 14, + [8341] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(10739), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11703), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11705), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11815), 1, sym__newline, - STATE(2963), 1, + STATE(7723), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10100), 1, sym_qualified_identifier, - STATE(4867), 1, + STATE(10271), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(10741), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(10751), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10084), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260414,7 +842219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1524), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260450,34 +842255,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8332] = 14, + [8428] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5997), 1, + ACTIONS(11817), 1, sym__newline, - STATE(2508), 1, + STATE(7689), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4144), 1, + STATE(14074), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260487,7 +842292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260523,34 +842328,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8419] = 14, + [8515] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11819), 1, sym__newline, - STATE(2963), 1, + STATE(7686), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4164), 1, + STATE(14732), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260560,7 +842365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260596,34 +842401,837 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8506] = 14, + [8602] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5963), 1, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(13980), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8689] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11821), 1, + sym__newline, + STATE(7688), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11067), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8776] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11084), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8863] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14680), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8950] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11823), 1, + sym__newline, + STATE(7695), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11715), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9037] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11825), 1, + sym__newline, + STATE(7692), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(13995), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9124] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14076), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9211] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11827), 1, + sym__newline, + STATE(7694), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14119), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9298] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14130), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9385] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11943), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9472] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10878), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9559] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11799), 1, anon_sym_COMMA, - STATE(2495), 1, + STATE(7734), 1, aux_sym_parameter_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4766), 1, + STATE(14176), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260633,7 +843241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260669,34 +843277,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8593] = 14, + [9646] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(10006), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11757), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11759), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11829), 1, sym__newline, - STATE(2963), 1, + STATE(7701), 1, aux_sym_import_declaration_repeat1, - STATE(3786), 1, - sym_type, - STATE(3800), 1, + STATE(9422), 1, sym_qualified_identifier, - ACTIONS(5861), 2, + STATE(9446), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(10018), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(9423), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260706,7 +843314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260742,34 +843350,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8680] = 14, + [9733] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5999), 1, + ACTIONS(11831), 1, sym__newline, - STATE(2512), 1, + STATE(7712), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4971), 1, + STATE(11760), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260779,7 +843387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260815,34 +843423,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8767] = 14, + [9820] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11833), 1, sym__newline, - STATE(2963), 1, + STATE(7726), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4817), 1, + STATE(14181), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260852,7 +843460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260888,34 +843496,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8854] = 14, + [9907] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(10006), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11757), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11759), 1, anon_sym_LBRACK, - ACTIONS(6001), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2514), 1, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(9422), 1, sym_qualified_identifier, - STATE(4010), 1, + STATE(9447), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(10018), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(9423), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260925,7 +843533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -260961,34 +843569,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8941] = 14, + [9994] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2963), 1, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10848), 1, sym_qualified_identifier, - STATE(4032), 1, + STATE(10853), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(11679), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10871), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -260998,7 +843606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261034,34 +843642,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9028] = 14, + [10081] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7898), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11665), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11669), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11671), 1, anon_sym_LBRACK, - ACTIONS(6003), 1, + ACTIONS(11835), 1, sym__newline, - STATE(2516), 1, + STATE(7730), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(8897), 1, sym_qualified_identifier, - STATE(4967), 1, + STATE(8923), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1788), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(8861), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261071,7 +843679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261107,34 +843715,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9115] = 14, + [10168] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11685), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11693), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11695), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11837), 1, sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(674), 1, sym_qualified_identifier, - STATE(4909), 1, + STATE(2623), 1, sym_type, - ACTIONS(471), 2, + STATE(7708), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1179), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(735), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261144,7 +843752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261180,34 +843788,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9202] = 14, + [10255] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - ACTIONS(6005), 1, + ACTIONS(11839), 1, sym__newline, - STATE(2518), 1, + STATE(7741), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10848), 1, sym_qualified_identifier, - STATE(4184), 1, + STATE(10859), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(11679), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10871), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261217,7 +843825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261253,34 +843861,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9289] = 14, + [10342] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11841), 1, sym__newline, - STATE(2963), 1, + STATE(7707), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(3959), 1, + STATE(8326), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261290,7 +843898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261326,34 +843934,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9376] = 14, + [10429] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6007), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2496), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(3870), 1, + STATE(8314), 1, sym_type, - ACTIONS(471), 2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(3862), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261363,7 +843971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261399,34 +844007,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9463] = 14, + [10516] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11685), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11693), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11695), 1, anon_sym_LBRACK, - ACTIONS(6009), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2521), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(674), 1, sym_qualified_identifier, - STATE(4904), 1, + STATE(2636), 1, sym_type, - ACTIONS(471), 2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1179), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(735), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261436,7 +844044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261472,34 +844080,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9550] = 14, + [10603] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11843), 1, sym__newline, - STATE(2963), 1, + STATE(7670), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4952), 1, + STATE(11741), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261509,7 +844117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261545,34 +844153,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9637] = 14, + [10690] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6011), 1, + ACTIONS(11845), 1, sym__newline, - STATE(2523), 1, + STATE(7736), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4000), 1, + STATE(10941), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10917), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261582,7 +844190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261618,34 +844226,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9724] = 14, + [10777] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11733), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11739), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11749), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11847), 1, sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(2882), 1, sym_qualified_identifier, - STATE(4014), 1, + STATE(2993), 1, sym_type, - ACTIONS(471), 2, + STATE(7677), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(11747), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(2900), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261655,7 +844263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261691,34 +844299,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9811] = 14, + [10864] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6013), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2525), 1, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4913), 1, + STATE(11719), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261728,7 +844336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261764,34 +844372,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9898] = 14, + [10951] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11707), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11711), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11715), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11717), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(3903), 1, sym_qualified_identifier, - STATE(4925), 1, + STATE(4003), 1, sym_type, - ACTIONS(471), 2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261801,7 +844409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261837,34 +844445,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9985] = 14, + [11038] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6015), 1, - sym__newline, - STATE(2527), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + ACTIONS(11849), 1, + anon_sym_COLON_COLON, + ACTIONS(11853), 1, + anon_sym_EQ, + STATE(10912), 1, sym_qualified_identifier, - STATE(4992), 1, + STATE(15044), 1, sym_type, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + ACTIONS(11851), 2, + anon_sym_func, + anon_sym_c_func, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261874,7 +844482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261910,34 +844518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10072] = 14, + [11125] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11533), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11801), 1, sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(5024), 1, + STATE(8233), 1, sym_type, - ACTIONS(471), 2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(8227), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -261947,7 +844555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -261983,34 +844591,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10159] = 14, + [11212] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(5959), 1, + ACTIONS(11855), 1, sym__newline, - STATE(2963), 1, + STATE(7717), 1, aux_sym_import_declaration_repeat1, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(4993), 1, + STATE(14178), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262020,7 +844628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262056,32 +844664,1928 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10246] = 13, + [11299] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(2430), 1, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14200), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11386] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11857), 1, + sym__newline, + STATE(7719), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11416), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11473] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11434), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11560] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11859), 1, + sym__newline, + STATE(7724), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14678), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11647] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(11861), 1, + sym__newline, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7113), 1, + sym_type, + STATE(7722), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11734] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7130), 1, + sym_type, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11821] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10363), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11908] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14485), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11995] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11863), 1, + sym__newline, + STATE(7733), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11115), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12082] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14169), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12169] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11865), 1, + sym__newline, + STATE(7728), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14121), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12256] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14137), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12343] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11867), 1, + sym__newline, + STATE(7732), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11605), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12430] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8934), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12517] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11869), 1, + sym__newline, + STATE(3903), 1, + sym_qualified_identifier, + STATE(3945), 1, + sym_type, + STATE(7713), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12604] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11616), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12691] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(11371), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12778] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11799), 1, + anon_sym_COMMA, + STATE(8791), 1, + aux_sym_parameter_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14502), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12865] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11871), 1, + sym__newline, + STATE(7715), 1, + aux_sym_import_declaration_repeat1, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8230), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12952] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(10933), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13039] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11873), 1, + sym__newline, + STATE(7740), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14420), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13126] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(11875), 1, + sym__newline, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3694), 1, + sym_type, + STATE(7739), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13213] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3527), 1, + sym_type, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13300] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10912), 1, + sym_qualified_identifier, + STATE(14442), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13387] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(11801), 1, + sym__newline, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10861), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13474] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11877), 1, + anon_sym_enum, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15382), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13558] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11879), 1, anon_sym_mut, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3029), 1, + STATE(3893), 1, sym_type, - ACTIONS(511), 2, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262091,7 +846595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262127,32 +846631,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10330] = 13, + [13642] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6017), 1, + ACTIONS(11881), 1, anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2937), 1, + STATE(3892), 1, sym_type, - ACTIONS(5751), 2, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(2894), 9, + STATE(10917), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262162,7 +846666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262198,32 +846702,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10414] = 13, + [13726] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6019), 1, + ACTIONS(11883), 1, anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2940), 1, + STATE(3867), 1, sym_type, - ACTIONS(5751), 2, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(2894), 9, + STATE(10917), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262233,7 +846737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262269,32 +846773,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10498] = 13, + [13810] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6021), 1, + ACTIONS(1250), 1, anon_sym_mut, - STATE(2892), 1, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, sym_qualified_identifier, - STATE(2951), 1, + STATE(2565), 1, sym_type, - ACTIONS(5751), 2, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(1179), 2, anon_sym_AT, anon_sym_STAR, - STATE(2894), 9, + STATE(735), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262304,7 +846808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262340,32 +846844,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10582] = 13, + [13894] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6023), 1, + ACTIONS(6501), 1, anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2954), 1, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3886), 1, sym_type, - ACTIONS(5751), 2, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(2894), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262375,7 +846879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262411,32 +846915,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10666] = 13, + [13978] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(521), 1, + ACTIONS(6547), 1, anon_sym_mut, - ACTIONS(2407), 1, + ACTIONS(11707), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11711), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11715), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11717), 1, anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3075), 1, + STATE(3865), 1, sym_type, - ACTIONS(511), 2, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262446,7 +846950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262482,32 +846986,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10750] = 13, + [14062] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(437), 1, + ACTIONS(6555), 1, anon_sym_mut, - ACTIONS(5937), 1, + ACTIONS(11707), 1, sym_identifier, - ACTIONS(5941), 1, + ACTIONS(11711), 1, anon_sym_LPAREN, - ACTIONS(5945), 1, + ACTIONS(11715), 1, anon_sym_QMARK, - ACTIONS(5947), 1, + ACTIONS(11717), 1, anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(574), 1, + STATE(3890), 1, sym_type, - ACTIONS(339), 2, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(349), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(540), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262517,7 +847021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262553,32 +847057,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10834] = 13, + [14146] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(445), 1, - anon_sym_mut, - ACTIONS(5937), 1, + ACTIONS(11707), 1, sym_identifier, - ACTIONS(5941), 1, + ACTIONS(11711), 1, anon_sym_LPAREN, - ACTIONS(5945), 1, + ACTIONS(11715), 1, anon_sym_QMARK, - ACTIONS(5947), 1, + ACTIONS(11717), 1, anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(579), 1, + ACTIONS(11885), 1, + anon_sym_mut, + STATE(3871), 1, sym_type, - ACTIONS(339), 2, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(349), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(540), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262588,7 +847092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262624,32 +847128,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10918] = 13, + [14230] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(10006), 1, sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - ACTIONS(6025), 1, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(10154), 1, anon_sym_mut, - STATE(3004), 1, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, sym_qualified_identifier, - STATE(3085), 1, + STATE(9485), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(10018), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(9423), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262659,7 +847163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262695,32 +847199,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11002] = 13, + [14314] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(517), 1, - anon_sym_mut, - ACTIONS(2407), 1, + ACTIONS(10006), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11757), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11759), 1, anon_sym_LBRACK, - STATE(3004), 1, + ACTIONS(11887), 1, + anon_sym_mut, + STATE(9422), 1, sym_qualified_identifier, - STATE(3087), 1, + STATE(9456), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(10018), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(9423), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262730,7 +847234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262766,32 +847270,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11086] = 13, + [14398] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, - ACTIONS(523), 1, + ACTIONS(1221), 1, anon_sym_mut, - ACTIONS(2407), 1, + ACTIONS(11685), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11693), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11695), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(674), 1, sym_qualified_identifier, - STATE(3090), 1, + STATE(2559), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(1179), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(735), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262801,7 +847305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262837,32 +847341,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11170] = 13, + [14482] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(10006), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11757), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11759), 1, anon_sym_LBRACK, - ACTIONS(6027), 1, + ACTIONS(11889), 1, anon_sym_mut, - STATE(3004), 1, + STATE(9422), 1, sym_qualified_identifier, - STATE(3089), 1, + STATE(9468), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(10018), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(9423), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262872,7 +847376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262908,32 +847412,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11254] = 13, + [14566] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(11533), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(6029), 1, + ACTIONS(11891), 1, anon_sym_mut, - STATE(3004), 1, + STATE(8225), 1, sym_qualified_identifier, - STATE(3097), 1, + STATE(8228), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(8227), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -262943,7 +847447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -262979,32 +847483,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11338] = 13, + [14650] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(10739), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11703), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11705), 1, anon_sym_LBRACK, - ACTIONS(6031), 1, + ACTIONS(11893), 1, anon_sym_mut, - STATE(3004), 1, + STATE(10100), 1, sym_qualified_identifier, - STATE(3099), 1, + STATE(10368), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(10741), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(10751), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(10084), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263014,7 +847518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1524), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263050,32 +847554,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11422] = 13, + [14734] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - ACTIONS(6033), 1, + ACTIONS(1184), 1, anon_sym_mut, - STATE(3004), 1, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, sym_qualified_identifier, - STATE(3020), 1, + STATE(2564), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(1179), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(735), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263085,7 +847589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263121,32 +847625,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11506] = 13, + [14818] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, + ACTIONS(10739), 1, sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6035), 1, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(10756), 1, anon_sym_mut, - STATE(537), 1, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, sym_qualified_identifier, - STATE(575), 1, + STATE(10376), 1, sym_type, - ACTIONS(339), 2, + ACTIONS(10741), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(349), 2, + ACTIONS(10751), 2, anon_sym_AT, anon_sym_STAR, - STATE(540), 9, + STATE(10084), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263156,7 +847660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 35, + ACTIONS(1524), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263192,32 +847696,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11590] = 13, + [14902] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(519), 1, - anon_sym_mut, - ACTIONS(2407), 1, + ACTIONS(10006), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11757), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11759), 1, anon_sym_LBRACK, - STATE(3004), 1, + ACTIONS(11895), 1, + anon_sym_mut, + STATE(9422), 1, sym_qualified_identifier, - STATE(3027), 1, + STATE(9480), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(10018), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(9423), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263227,7 +847731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263263,32 +847767,3866 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11674] = 13, + [14986] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(11533), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11547), 1, anon_sym_LBRACK, - ACTIONS(6037), 1, + ACTIONS(11897), 1, anon_sym_mut, - STATE(3004), 1, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8258), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15070] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(10805), 1, + anon_sym_mut, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10393), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15154] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11899), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10386), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15238] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(11901), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7197), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15322] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(10240), 1, + anon_sym_mut, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9475), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15406] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11903), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8259), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15490] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11905), 1, + anon_sym_mut, + STATE(3893), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15574] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11907), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8261), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15658] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11909), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8260), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15742] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + ACTIONS(11911), 1, + anon_sym_mut, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9461), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15826] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1599), 1, + anon_sym_mut, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(2978), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15910] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11913), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8264), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15994] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11915), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8265), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16078] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11917), 1, + anon_sym_mut, + STATE(3873), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16162] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11919), 1, + anon_sym_mut, + STATE(3895), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16246] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11921), 1, + anon_sym_mut, + STATE(3861), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16330] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11923), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8266), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16414] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(6572), 1, + anon_sym_mut, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3862), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16498] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11925), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8268), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16582] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(10184), 1, + anon_sym_mut, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9478), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16666] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11927), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8271), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16750] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(10023), 1, + anon_sym_mut, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9460), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16834] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11929), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8273), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16918] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11931), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8274), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17002] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11933), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8275), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17086] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11935), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8280), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17170] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(11937), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(9049), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17254] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1566), 1, + anon_sym_mut, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(2997), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17338] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(11939), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8281), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17422] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_mut, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(2996), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17506] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11941), 1, + anon_sym_mut, + STATE(3886), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17590] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(11943), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3582), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17674] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(10189), 1, + anon_sym_mut, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9427), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17758] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(11945), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3012), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17842] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_mut, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3013), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17926] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11947), 1, + anon_sym_mut, + STATE(3883), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18010] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11949), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10238), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18094] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11951), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10246), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18178] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11953), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10272), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18262] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(10784), 1, + anon_sym_mut, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10377), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18346] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11955), 1, + anon_sym_mut, + STATE(3876), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11957), 1, + anon_sym_enum, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15672), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18514] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11959), 1, + anon_sym_mut, + STATE(3877), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18598] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11961), 1, + anon_sym_mut, + STATE(3891), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18682] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11963), 1, + anon_sym_mut, + STATE(3892), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18766] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(11965), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(2967), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18850] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + ACTIONS(11967), 1, + anon_sym_mut, + STATE(3867), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18934] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1656), 1, + anon_sym_mut, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3017), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19018] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(11969), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3014), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19102] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(11971), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2570), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19186] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(10770), 1, + anon_sym_mut, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10356), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19270] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11973), 1, + anon_sym_enum, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15221), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19354] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(11975), 1, + anon_sym_mut, + STATE(3865), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19438] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11977), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10260), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19522] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(11979), 1, + anon_sym_mut, + STATE(2882), 1, sym_qualified_identifier, STATE(3039), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(11747), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(2900), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263298,7 +851636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263334,32 +851672,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11758] = 13, + [19606] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, + ACTIONS(1790), 1, anon_sym_mut, - STATE(3004), 1, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, sym_qualified_identifier, - STATE(3041), 1, + STATE(8911), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(1788), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(8861), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263369,7 +851707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263405,32 +851743,955 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11842] = 13, + [19690] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - ACTIONS(6041), 1, + ACTIONS(11981), 1, anon_sym_mut, - STATE(3004), 1, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10893), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19774] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(11983), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3043), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19858] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(11985), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10894), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19942] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(11987), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10895), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20026] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(7912), 1, + anon_sym_mut, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8968), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20110] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11989), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10348), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20194] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(1277), 1, + anon_sym_mut, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2571), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20278] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11991), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10354), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20362] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(11993), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10444), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20446] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(1260), 1, + anon_sym_mut, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2573), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20530] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(11995), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2572), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20614] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(7463), 1, + anon_sym_mut, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8353), 1, + sym_type, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20698] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(11997), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10897), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20782] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(11999), 1, + anon_sym_mut, + STATE(2882), 1, sym_qualified_identifier, STATE(3044), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(11747), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(2900), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263440,7 +852701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263476,32 +852737,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [11926] = 13, + [20866] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(10739), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11703), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11705), 1, anon_sym_LBRACK, - ACTIONS(6043), 1, + ACTIONS(12001), 1, anon_sym_mut, - STATE(3004), 1, + STATE(10100), 1, sym_qualified_identifier, - STATE(3047), 1, + STATE(10466), 1, sym_type, - ACTIONS(511), 2, + ACTIONS(10741), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(10751), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(10084), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263511,7 +852772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1524), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263547,32 +852808,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12010] = 13, + [20950] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6045), 1, + ACTIONS(12003), 1, anon_sym_mut, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3052), 1, + STATE(10858), 1, sym_type, - ACTIONS(511), 2, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(10917), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263582,7 +852843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263618,32 +852879,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12094] = 13, + [21034] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6047), 1, + ACTIONS(12005), 1, anon_sym_mut, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3054), 1, + STATE(3861), 1, sym_type, - ACTIONS(511), 2, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(2999), 9, + STATE(10917), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263653,7 +852914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263689,32 +852950,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12178] = 13, + [21118] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(1474), 1, anon_sym_mut, - ACTIONS(5915), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5921), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2281), 1, + STATE(8350), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263724,7 +852985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263760,32 +853021,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12262] = 13, + [21202] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5937), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6049), 1, + ACTIONS(7480), 1, anon_sym_mut, - STATE(537), 1, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, sym_qualified_identifier, - STATE(588), 1, + STATE(8344), 1, sym_type, - ACTIONS(339), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(349), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(540), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263795,7 +853056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263831,32 +853092,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12346] = 13, + [21286] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - ACTIONS(6051), 1, + ACTIONS(1555), 1, anon_sym_mut, - STATE(2219), 1, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, sym_qualified_identifier, - STATE(2292), 1, + STATE(3046), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(11747), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(2900), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263866,7 +853127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263902,32 +853163,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12430] = 13, + [21370] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 1, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + ACTIONS(12007), 1, anon_sym_mut, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2293), 1, + STATE(8351), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -263937,7 +853198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -263973,32 +853234,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12514] = 13, + [21454] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 1, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(1458), 1, anon_sym_mut, - ACTIONS(5915), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5921), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2295), 1, + STATE(8297), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264008,7 +853269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264044,32 +853305,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12598] = 13, + [21538] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(1476), 1, anon_sym_mut, - STATE(2219), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, sym_qualified_identifier, - STATE(2294), 1, + STATE(8354), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264079,7 +853340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264115,32 +853376,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12682] = 13, + [21622] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6055), 1, + ACTIONS(12009), 1, anon_sym_mut, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2280), 1, + STATE(8299), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264150,7 +853411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264186,32 +853447,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12766] = 13, + [21706] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5921), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(11675), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(12011), 1, anon_sym_mut, - STATE(2219), 1, + STATE(10848), 1, sym_qualified_identifier, - STATE(2275), 1, + STATE(10887), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(11679), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(10871), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264221,7 +853482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264257,32 +853518,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12850] = 13, + [21790] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6059), 1, + ACTIONS(12013), 1, anon_sym_mut, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2276), 1, + STATE(8333), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264292,7 +853553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264328,32 +853589,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [12934] = 13, + [21874] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + ACTIONS(12015), 1, anon_sym_mut, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2302), 1, + STATE(8334), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264363,7 +853624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264399,32 +853660,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13018] = 13, + [21958] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6061), 1, + ACTIONS(12017), 1, anon_sym_mut, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2231), 1, + STATE(8335), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264434,7 +853695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264470,32 +853731,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13102] = 13, + [22042] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(1478), 1, anon_sym_mut, - STATE(2219), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, sym_qualified_identifier, - STATE(2239), 1, + STATE(8340), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264505,7 +853766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264541,32 +853802,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13186] = 13, + [22126] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, + ACTIONS(10006), 1, sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11759), 1, anon_sym_LBRACK, - ACTIONS(6065), 1, + ACTIONS(12019), 1, anon_sym_mut, - STATE(2219), 1, + STATE(9422), 1, sym_qualified_identifier, - STATE(2240), 1, + STATE(9481), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(10018), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(9423), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264576,7 +853837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264612,32 +853873,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13270] = 13, + [22210] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6067), 1, + ACTIONS(12021), 1, anon_sym_mut, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2243), 1, + STATE(8362), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264647,7 +853908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264683,32 +853944,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13354] = 13, + [22294] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6069), 1, + ACTIONS(12023), 1, anon_sym_mut, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2259), 1, + STATE(8329), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264718,7 +853979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264754,32 +854015,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13438] = 13, + [22378] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6071), 1, + ACTIONS(12025), 1, anon_sym_mut, - STATE(2219), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2260), 1, + STATE(8303), 1, sym_type, - ACTIONS(5917), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2221), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264789,7 +854050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264825,32 +854086,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13522] = 13, + [22462] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6073), 1, + ACTIONS(12027), 1, anon_sym_mut, - STATE(3800), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(3804), 1, + STATE(8313), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264860,7 +854121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264896,32 +854157,6209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13606] = 13, + [22546] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - ACTIONS(6075), 1, + ACTIONS(12029), 1, + anon_sym_mut, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8323), 1, + sym_type, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22630] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + ACTIONS(12031), 1, + anon_sym_mut, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8324), 1, + sym_type, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22714] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(12033), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3065), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22798] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + ACTIONS(12035), 1, + anon_sym_mut, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9439), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22882] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(12037), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3071), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22966] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12039), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8902), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23050] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(12041), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3072), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23134] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12043), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8908), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23218] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12045), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8922), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23302] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12047), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(9040), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23386] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(10798), 1, + anon_sym_mut, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10285), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23470] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12049), 1, + anon_sym_mut, + STATE(3862), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23554] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(10803), 1, + anon_sym_mut, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10284), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23638] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12051), 1, + anon_sym_mut, + STATE(3890), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23722] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(12053), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8237), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23806] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12055), 1, + anon_sym_mut, + STATE(3871), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23890] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12057), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3487), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23974] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(7923), 1, + anon_sym_mut, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8991), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24058] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12059), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10900), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24142] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12061), 1, + anon_sym_mut, + STATE(3860), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24226] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12063), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10902), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24310] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12065), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10903), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24394] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12067), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10904), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24478] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(12069), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3076), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24562] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(12071), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3097), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24646] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + ACTIONS(12073), 1, + anon_sym_mut, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3098), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24730] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12075), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2579), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24814] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12077), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2580), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24898] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_mut, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7206), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24982] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + ACTIONS(12079), 1, + anon_sym_mut, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8361), 1, + sym_type, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25066] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10614), 1, + anon_sym_mut, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7129), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25150] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10637), 1, + anon_sym_mut, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7126), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25234] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(6524), 1, + anon_sym_mut, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3863), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25318] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12081), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7133), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25402] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10661), 1, + anon_sym_mut, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7134), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25486] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10695), 1, + anon_sym_mut, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7136), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25570] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12083), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7135), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25654] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12085), 1, + anon_sym_mut, + STATE(3873), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25738] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12087), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7180), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25822] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12089), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7191), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25906] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12091), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7194), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25990] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10715), 1, + anon_sym_mut, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7199), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26074] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12093), 1, + anon_sym_mut, + STATE(3895), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26158] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12095), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7116), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26242] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12097), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7118), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26326] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12099), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7119), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26410] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12101), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7120), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26494] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12103), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7127), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26578] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + ACTIONS(12105), 1, + anon_sym_mut, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7128), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26662] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12107), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2610), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26746] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12109), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2581), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26830] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12111), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10882), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26914] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12113), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10884), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26998] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12115), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3488), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27082] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + ACTIONS(12117), 1, + anon_sym_mut, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9457), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27166] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + ACTIONS(12119), 1, + anon_sym_mut, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9467), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27250] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12121), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2598), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27334] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(1200), 1, + anon_sym_mut, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2583), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27418] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + ACTIONS(12123), 1, + anon_sym_mut, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9487), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27502] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12125), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(9004), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27586] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + ACTIONS(12127), 1, + anon_sym_mut, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9492), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27670] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12129), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10909), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27754] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12131), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10910), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27838] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12133), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8917), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27922] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + ACTIONS(12135), 1, + anon_sym_mut, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9472), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28006] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(12137), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10254), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28090] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12139), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(9017), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28174] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + ACTIONS(12141), 1, + anon_sym_mut, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10321), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28258] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12143), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(9028), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28342] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12145), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10885), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28426] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12147), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2586), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28510] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12149), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2599), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28594] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12151), 1, + anon_sym_mut, + STATE(3876), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28678] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12153), 1, + anon_sym_mut, + STATE(3877), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28762] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(1815), 1, + anon_sym_mut, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8939), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28846] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12155), 1, + anon_sym_mut, + STATE(3883), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28930] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(12157), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8250), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29014] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12159), 1, + anon_sym_mut, + STATE(3891), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29098] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(10149), 1, + anon_sym_mut, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9433), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29182] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + ACTIONS(12161), 1, + anon_sym_mut, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8256), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29266] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12163), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2588), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29350] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(1817), 1, + anon_sym_mut, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(9001), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29434] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12165), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8963), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29518] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12167), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8931), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29602] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + ACTIONS(12169), 1, + anon_sym_mut, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8932), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29686] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + ACTIONS(12171), 1, + anon_sym_mut, + STATE(674), 1, + sym_qualified_identifier, + STATE(2589), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29770] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(6580), 1, + anon_sym_mut, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3860), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29854] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12173), 1, anon_sym_enum, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(5203), 1, + STATE(15397), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -264931,7 +860369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -264967,32 +860405,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13690] = 13, + [29938] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(11675), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - ACTIONS(6077), 1, + ACTIONS(12175), 1, anon_sym_mut, - STATE(3800), 1, + STATE(10848), 1, sym_qualified_identifier, - STATE(3852), 1, + STATE(10858), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(11679), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(10871), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -265002,7 +860440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -265038,32 +860476,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13774] = 13, + [30022] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6079), 1, + ACTIONS(1819), 1, anon_sym_mut, - STATE(537), 1, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, sym_qualified_identifier, - STATE(589), 1, + STATE(9046), 1, sym_type, - ACTIONS(339), 2, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(349), 2, + ACTIONS(1788), 2, anon_sym_AT, anon_sym_STAR, - STATE(540), 9, + STATE(8861), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -265073,7 +860511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 35, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -265109,1878 +860547,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13858] = 13, + [30106] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(354), 1, - anon_sym_mut, - ACTIONS(5937), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5941), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5945), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5947), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(688), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13942] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(2153), 1, - anon_sym_mut, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(754), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14026] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6081), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3855), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14110] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6083), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(590), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14194] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(389), 1, - anon_sym_mut, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(558), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14278] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(410), 1, - anon_sym_mut, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(592), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14362] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6085), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2919), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14446] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6087), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(597), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14530] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6089), 1, - anon_sym_mut, - STATE(773), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14614] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6091), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(599), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14698] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_mut, - STATE(760), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14782] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(2120), 1, - anon_sym_mut, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(761), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14866] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(2128), 1, - anon_sym_mut, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(763), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14950] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6095), 1, - anon_sym_mut, - STATE(762), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15034] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_mut, - STATE(775), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15118] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6099), 1, - anon_sym_mut, - STATE(776), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15202] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6101), 1, - anon_sym_mut, - STATE(777), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15286] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6103), 1, - anon_sym_mut, - STATE(765), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15370] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6105), 1, - anon_sym_mut, - STATE(766), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15454] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6107), 1, - anon_sym_mut, - STATE(767), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15538] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(2145), 1, - anon_sym_mut, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(769), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - 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] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(600), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15706] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6111), 1, - anon_sym_mut, - STATE(773), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15790] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6113), 1, - anon_sym_mut, - STATE(775), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15874] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_mut, - STATE(776), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15958] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6117), 1, - anon_sym_mut, - STATE(777), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16042] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6119), 1, + ACTIONS(12177), 1, anon_sym_enum, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(5292), 1, + STATE(15151), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -266990,7 +860582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -267026,6138 +860618,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16126] = 13, + [30190] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5937), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5941), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5945), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5947), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6121), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(601), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16210] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(2459), 1, - anon_sym_mut, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3073), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16294] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6123), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(606), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16378] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6125), 1, - anon_sym_mut, - STATE(797), 1, - sym_qualified_identifier, - STATE(852), 1, - sym_type, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16462] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6127), 1, - anon_sym_mut, - STATE(3804), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16546] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_mut, - STATE(784), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16630] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - ACTIONS(6131), 1, - anon_sym_mut, - STATE(785), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - 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] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6133), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2926), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16798] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4004), 1, - anon_sym_mut, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2268), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16882] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6135), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(614), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [16966] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4030), 1, - anon_sym_mut, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2225), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17050] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(4139), 1, - anon_sym_mut, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3660), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17134] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6137), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3238), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17218] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6139), 1, - anon_sym_mut, - STATE(754), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17302] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(3982), 1, - anon_sym_mut, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3237), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17386] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(3977), 1, - anon_sym_mut, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3198), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17470] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6141), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2896), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17554] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(4125), 1, - anon_sym_mut, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3674), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17638] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(4158), 1, - anon_sym_mut, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3669), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17722] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(381), 1, - anon_sym_mut, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(559), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17806] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6143), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3196), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17890] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(3724), 1, - anon_sym_mut, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3223), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17974] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6145), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2934), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18058] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6147), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3233), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18142] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6149), 1, - anon_sym_mut, - STATE(760), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18226] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6151), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(622), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18310] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6153), 1, - anon_sym_mut, - STATE(761), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18394] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6155), 1, - anon_sym_mut, - STATE(763), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18478] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6157), 1, - anon_sym_mut, - STATE(762), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18562] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6159), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3230), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18646] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6161), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3234), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18730] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6163), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3191), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18814] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(3943), 1, - anon_sym_mut, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3203), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18898] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6165), 1, - anon_sym_mut, - STATE(784), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18982] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6167), 1, - anon_sym_mut, - STATE(785), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19066] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6169), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3243), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19150] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6171), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3253), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19234] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6173), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3199), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19318] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3225), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19402] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6177), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3692), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19486] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_mut, - STATE(537), 1, - sym_qualified_identifier, - STATE(571), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19570] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3231), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19654] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - ACTIONS(6183), 1, - anon_sym_mut, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3239), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19738] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - ACTIONS(6185), 1, - anon_sym_mut, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3074), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19822] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - ACTIONS(6187), 1, - anon_sym_mut, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2248), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19906] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6189), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3649), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19990] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6191), 1, - anon_sym_mut, - STATE(780), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20074] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(4160), 1, - anon_sym_mut, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3651), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20158] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(4111), 1, - anon_sym_mut, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3655), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20242] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6193), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3653), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20326] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(2097), 1, - anon_sym_mut, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(780), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20410] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6195), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3671), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20494] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6197), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3851), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20578] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(2074), 1, - anon_sym_mut, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(757), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20662] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6199), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3673), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20746] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6201), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3675), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20830] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6203), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3829), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20914] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(4153), 1, - anon_sym_mut, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3678), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20998] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6205), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3624), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21082] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6207), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3846), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21166] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6209), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3836), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21250] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6211), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3821), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21334] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6213), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3602), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21418] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6215), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3686), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21502] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6217), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3650), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21586] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6219), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3849), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21670] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6221), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3853), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21754] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6223), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3820), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21838] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6225), 1, - anon_sym_mut, - STATE(757), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21922] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6227), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3826), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22006] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6229), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3694), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22090] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - ACTIONS(6231), 1, - anon_sym_mut, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3604), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22174] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6233), 1, - anon_sym_mut, - STATE(765), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22258] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6235), 1, - anon_sym_mut, - STATE(766), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22342] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6237), 1, - anon_sym_mut, - STATE(767), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22426] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6239), 1, - anon_sym_mut, - STATE(769), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22510] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6241), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2900), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22594] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6243), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2913), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22678] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6245), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2914), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22762] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6247), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2917), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22846] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6249), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2915), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22930] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6251), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2922), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23014] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2923), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23098] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6255), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2925), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23182] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6257), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2927), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23266] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(6259), 1, - anon_sym_mut, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2931), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23350] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6261), 1, + ACTIONS(12179), 1, anon_sym_enum, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(5140), 1, + STATE(15487), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -273167,7 +860653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -273203,32 +860689,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [23434] = 13, + [30274] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11717), 1, anon_sym_LBRACK, - ACTIONS(6263), 1, + ACTIONS(12181), 1, anon_sym_mut, - STATE(3800), 1, + STATE(3903), 1, sym_qualified_identifier, - STATE(3830), 1, + STATE(4467), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -273238,7 +860724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -273274,32 +860760,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [23518] = 13, + [30358] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11695), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(12183), 1, anon_sym_mut, - STATE(3800), 1, + STATE(674), 1, sym_qualified_identifier, - STATE(3834), 1, + STATE(2590), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1179), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(735), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -273309,7 +860795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -273345,387 +860831,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [23602] = 13, + [30442] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6267), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3838), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23686] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6269), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3835), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23770] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6271), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3847), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23854] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - ACTIONS(6273), 1, - anon_sym_mut, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3848), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23938] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(3923), 1, - anon_sym_mut, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3248), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24022] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6275), 1, + ACTIONS(12185), 1, anon_sym_enum, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(5274), 1, + STATE(15677), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -273735,7 +860866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -273771,32 +860902,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24106] = 13, + [30526] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6277), 1, + ACTIONS(12187), 1, anon_sym_enum, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(5192), 1, + STATE(16028), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -273806,7 +860937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -273842,32 +860973,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24190] = 13, + [30610] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - ACTIONS(6279), 1, + ACTIONS(12189), 1, anon_sym_enum, - STATE(3856), 1, + STATE(10912), 1, sym_qualified_identifier, - STATE(5220), 1, + STATE(15340), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -273877,7 +861008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -273913,11837 +861044,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24274] = 13, + [30694] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6281), 1, - anon_sym_enum, - STATE(3856), 1, - sym_qualified_identifier, - STATE(5246), 1, - sym_type, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24358] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_enum, - STATE(3856), 1, - sym_qualified_identifier, - STATE(5263), 1, - sym_type, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24442] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - ACTIONS(6285), 1, - anon_sym_enum, - STATE(3856), 1, - sym_qualified_identifier, - STATE(5278), 1, - sym_type, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24526] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(3729), 1, + ACTIONS(1724), 1, anon_sym_mut, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3252), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24610] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2232), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24691] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3610), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24772] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(789), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24853] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(769), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24934] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2896), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25015] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(770), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25096] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2914), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25177] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2915), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25258] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(558), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25339] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(589), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25420] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2923), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25501] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(591), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25582] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - STATE(5280), 1, - sym_type, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25663] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2927), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25744] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(592), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25825] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2929), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25906] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2931), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [25987] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2933), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26068] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2934), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26149] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(593), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26230] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2943), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26311] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2949), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26392] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2950), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26473] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2951), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26554] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2954), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26635] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2942), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - 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] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2952), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26797] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3073), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26878] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3087), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [26959] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3089), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27040] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3099), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27121] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3022), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27202] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(597), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27283] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3027), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27364] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3031), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27445] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3039), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27526] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(598), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27607] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3040), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27688] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3041), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27769] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(599), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27850] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3048), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27931] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3050), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28012] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3051), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28093] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3052), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28174] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3054), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28255] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(602), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28336] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3059), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28417] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3100), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28498] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2225), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28579] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2293), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28660] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2294), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28741] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2275), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28822] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2299), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28903] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2302), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28984] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2226), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29065] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2231), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29146] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2239), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29227] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2252), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29308] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2254), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29389] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2258), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29470] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2259), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29551] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2260), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29632] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2262), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29713] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2263), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29794] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3798), 1, - sym_type, - STATE(3800), 1, - sym_qualified_identifier, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29875] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(604), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [29956] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(605), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30037] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - STATE(5145), 1, - sym_type, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30118] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3792), 1, - sym_type, - STATE(3800), 1, - sym_qualified_identifier, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30199] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(606), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30280] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3924), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3864), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30361] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3952), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3864), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30442] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(626), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30523] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(614), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30604] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(757), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30685] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2918), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30766] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(773), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30847] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(774), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [30928] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(775), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31009] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(761), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31090] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(762), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31171] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(616), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31252] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(617), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31333] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(778), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31414] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(766), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31495] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(789), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31576] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(769), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31657] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(770), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31738] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(773), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31819] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(774), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31900] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(775), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [31981] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(778), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32062] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3019), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32143] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(757), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32224] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(797), 1, - sym_qualified_identifier, - STATE(851), 1, - sym_type, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32305] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3798), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32386] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3654), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32467] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(782), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32548] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(783), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32629] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(784), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32710] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(785), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32791] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(788), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32872] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(755), 1, - sym_type, - STATE(797), 1, - sym_qualified_identifier, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [32953] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_struct_type_BANG, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_LBRACK, - STATE(2892), 1, - sym_qualified_identifier, - STATE(2932), 1, - sym_type, - ACTIONS(5751), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5761), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2894), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5765), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33034] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2267), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33115] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3236), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33196] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3669), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33277] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3237), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33358] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3223), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33439] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3233), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33520] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(621), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33601] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(761), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33682] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(762), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33763] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3234), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33844] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3195), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [33925] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3203), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34006] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3206), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34087] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(782), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34168] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(783), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34249] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(784), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34330] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(785), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34411] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3651), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34492] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3243), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34573] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3251), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34654] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3253), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34735] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3653), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34816] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3202), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34897] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3681), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [34978] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3792), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35059] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3222), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35140] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3229), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35221] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3231), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35302] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3239), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35383] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_QMARK, - ACTIONS(5913), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_qualified_identifier, - STATE(3069), 1, - sym_type, - ACTIONS(511), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(515), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2999), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(199), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35464] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, - anon_sym_struct_type_BANG, - ACTIONS(5927), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_qualified_identifier, - STATE(2247), 1, - sym_type, - ACTIONS(5917), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5929), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2221), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3131), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35545] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3205), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35626] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_struct_type_BANG, - ACTIONS(5885), 1, - anon_sym_LPAREN, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3207), 1, - sym_type, - ACTIONS(3709), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3719), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3189), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2227), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35707] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_struct_type_BANG, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LPAREN, - ACTIONS(5901), 1, - anon_sym_QMARK, - ACTIONS(5903), 1, - anon_sym_LBRACK, - STATE(797), 1, - sym_qualified_identifier, - STATE(856), 1, - sym_type, - ACTIONS(2059), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(2069), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(796), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35788] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3855), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35869] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3673), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [35950] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(574), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36031] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3676), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36112] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3846), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36193] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3678), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36274] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3821), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36355] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - anon_sym_struct_type_BANG, - ACTIONS(5937), 1, - sym_identifier, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5945), 1, - anon_sym_QMARK, - ACTIONS(5947), 1, - anon_sym_LBRACK, - STATE(537), 1, - sym_qualified_identifier, - STATE(575), 1, - sym_type, - ACTIONS(339), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(349), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(540), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36436] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3679), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36517] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(788), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36598] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(755), 1, - sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3862), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36679] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3624), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36760] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3853), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36841] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3819), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [36922] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3826), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37003] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3690), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37084] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3828), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37165] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3602), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37246] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3613), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37327] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3616), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37408] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3648), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37489] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3598), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37570] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3694), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37651] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, - anon_sym_LBRACK, - STATE(3856), 1, - sym_qualified_identifier, - STATE(5147), 1, - sym_type, - ACTIONS(471), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(493), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3857), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1445), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37732] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3830), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37813] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3832), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37894] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3834), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [37975] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, - anon_sym_LPAREN, - ACTIONS(5879), 1, - anon_sym_QMARK, - ACTIONS(5881), 1, - anon_sym_LBRACK, - STATE(3562), 1, - sym_qualified_identifier, - STATE(3604), 1, - sym_type, - ACTIONS(4096), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4106), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3555), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(2889), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [38056] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, - anon_sym_LBRACK, - STATE(3800), 1, - sym_qualified_identifier, - STATE(3825), 1, - sym_type, - ACTIONS(5861), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(5867), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(3815), 9, - sym__type_atom, - sym_parenthesized_type, - sym_named_type, - sym_intrinsic_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(5871), 35, - anon_sym_void, - anon_sym_noreturn, - anon_sym_type, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [38137] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, + ACTIONS(11779), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11783), 1, anon_sym_LPAREN, - ACTIONS(5863), 1, - anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11787), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11789), 1, anon_sym_LBRACK, - STATE(3800), 1, + STATE(3434), 1, sym_qualified_identifier, STATE(3842), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1705), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(3376), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -285753,7 +861079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -285789,30 +861115,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38218] = 12, + [30778] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - STATE(3800), 1, + ACTIONS(12191), 1, + anon_sym_enum, + STATE(10912), 1, sym_qualified_identifier, - STATE(3843), 1, + STATE(15388), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(10913), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -285822,7 +861150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -285858,30 +861186,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38299] = 12, + [30862] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(11675), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - STATE(3800), 1, + ACTIONS(12193), 1, + anon_sym_mut, + STATE(10848), 1, sym_qualified_identifier, - STATE(3847), 1, + STATE(10889), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(11679), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(10871), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -285891,7 +861221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -285927,30 +861257,1168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38380] = 12, + [30946] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - STATE(3800), 1, + ACTIONS(12195), 1, + anon_sym_enum, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15125), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31030] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(1747), 1, + anon_sym_mut, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3768), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31114] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(1780), 1, + anon_sym_mut, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3767), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31198] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12197), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10891), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31282] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12199), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3540), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31366] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + ACTIONS(12201), 1, + anon_sym_enum, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15372), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31450] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12203), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3436), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31534] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(1772), 1, + anon_sym_mut, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3543), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31618] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(1782), 1, + anon_sym_mut, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3551), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31702] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12205), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3544), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31786] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + ACTIONS(12207), 1, + anon_sym_mut, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10890), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31870] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12209), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3641), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31954] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12211), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3642), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [32038] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12213), 1, + anon_sym_mut, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3666), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [32122] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(1707), 1, + anon_sym_mut, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3690), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [32206] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + ACTIONS(12215), 1, + anon_sym_mut, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9493), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [32290] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + ACTIONS(12217), 1, + anon_sym_mut, + STATE(3434), 1, sym_qualified_identifier, STATE(3848), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1705), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(3376), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -285960,7 +862428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -285996,30 +862464,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38461] = 12, + [32374] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11789), 1, anon_sym_LBRACK, - STATE(3800), 1, + ACTIONS(12219), 1, + anon_sym_mut, + STATE(3434), 1, sym_qualified_identifier, - STATE(3823), 1, + STATE(3852), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1705), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(3376), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286029,7 +862499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286065,30 +862535,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38542] = 12, + [32458] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11789), 1, anon_sym_LBRACK, - STATE(3800), 1, + ACTIONS(12221), 1, + anon_sym_mut, + STATE(3434), 1, sym_qualified_identifier, - STATE(3824), 1, + STATE(3853), 1, sym_type, - ACTIONS(5861), 2, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1705), 2, anon_sym_AT, anon_sym_STAR, - STATE(3815), 9, + STATE(3376), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286098,7 +862570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286134,30 +862606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38623] = 12, + [32542] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, - ACTIONS(5885), 1, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5889), 1, + ACTIONS(11659), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(11661), 1, anon_sym_LBRACK, - STATE(3190), 1, - sym_qualified_identifier, - STATE(3244), 1, + ACTIONS(12223), 1, + anon_sym_mut, + STATE(3863), 1, sym_type, - ACTIONS(3709), 2, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(3719), 2, + ACTIONS(1313), 2, anon_sym_AT, anon_sym_STAR, - STATE(3189), 9, + STATE(10917), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286167,7 +862641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(2227), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286203,30 +862677,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38704] = 12, + [32626] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - STATE(766), 1, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8334), 1, sym_type, - STATE(3856), 1, - sym_qualified_identifier, - ACTIONS(471), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(3862), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286236,7 +862710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286272,30 +862746,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38785] = 12, + [32707] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11733), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11739), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11749), 1, anon_sym_LBRACK, - STATE(3856), 1, + STATE(2882), 1, sym_qualified_identifier, - STATE(5275), 1, + STATE(3087), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(11747), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(2900), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286305,7 +862779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286341,30 +862815,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38866] = 12, + [32788] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7898), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11665), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11669), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11671), 1, anon_sym_LBRACK, - STATE(3856), 1, + STATE(8897), 1, sym_qualified_identifier, - STATE(5193), 1, + STATE(9032), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1788), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(8861), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286374,7 +862848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286410,30 +862884,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [38947] = 12, + [32869] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7898), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11665), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11669), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11671), 1, anon_sym_LBRACK, - STATE(3856), 1, + STATE(8897), 1, sym_qualified_identifier, - STATE(5223), 1, + STATE(9046), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1788), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(8861), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286443,7 +862917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286479,30 +862953,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39028] = 12, + [32950] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - STATE(3856), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(5247), 1, + STATE(8297), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286512,7 +862986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286548,30 +863022,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39109] = 12, + [33031] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, - anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(11733), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11739), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11749), 1, anon_sym_LBRACK, - STATE(3856), 1, + STATE(2882), 1, sym_qualified_identifier, - STATE(5266), 1, + STATE(3088), 1, sym_type, - ACTIONS(471), 2, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(11747), 2, anon_sym_AT, anon_sym_STAR, - STATE(3857), 9, + STATE(2900), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286581,7 +863055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286617,30 +863091,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39190] = 12, + [33112] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - STATE(2892), 1, + STATE(8289), 1, sym_qualified_identifier, - STATE(2895), 1, + STATE(8299), 1, sym_type, - ACTIONS(5751), 2, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(2894), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286650,7 +863124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286686,28 +863160,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39271] = 11, + [33193] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - sym_identifier, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(5759), 1, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, anon_sym_QMARK, - ACTIONS(5763), 1, + ACTIONS(11717), 1, anon_sym_LBRACK, - STATE(2892), 1, + STATE(3903), 1, sym_qualified_identifier, - ACTIONS(5751), 2, + STATE(4465), 1, + sym_type, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5761), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(2936), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286717,7 +863193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5765), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286753,28 +863229,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39349] = 11, + [33274] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_struct_type_BANG, - ACTIONS(2407), 1, + ACTIONS(11733), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(11739), 1, anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - ACTIONS(5913), 1, + ACTIONS(11749), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(2882), 1, sym_qualified_identifier, - ACTIONS(511), 2, + STATE(3097), 1, + sym_type, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(515), 2, + ACTIONS(11747), 2, anon_sym_AT, anon_sym_STAR, - STATE(3043), 9, + STATE(2900), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286784,7 +863262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(199), 35, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286820,28 +863298,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39427] = 11, + [33355] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_LPAREN, - ACTIONS(5925), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(5927), 1, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, anon_sym_QMARK, - ACTIONS(5931), 1, + ACTIONS(11717), 1, anon_sym_LBRACK, - STATE(2219), 1, + STATE(3887), 1, + sym_type, + STATE(3903), 1, sym_qualified_identifier, - ACTIONS(5917), 2, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5929), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(2270), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286851,7 +863331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3131), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286887,28 +863367,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39505] = 11, + [33436] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, - ACTIONS(2391), 1, + ACTIONS(7898), 1, sym_identifier, - ACTIONS(5855), 1, + ACTIONS(11665), 1, anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(11669), 1, anon_sym_QMARK, - ACTIONS(5859), 1, + ACTIONS(11671), 1, anon_sym_LBRACK, - STATE(3856), 1, + STATE(8897), 1, sym_qualified_identifier, - ACTIONS(471), 2, + STATE(8921), 1, + sym_type, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(493), 2, + ACTIONS(1788), 2, anon_sym_AT, anon_sym_STAR, - STATE(3806), 9, + STATE(8861), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286918,7 +863400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -286954,28 +863436,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39583] = 11, + [33517] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(5855), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, - ACTIONS(5865), 1, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11789), 1, anon_sym_LBRACK, - STATE(3800), 1, + STATE(3434), 1, sym_qualified_identifier, - ACTIONS(5861), 2, + STATE(3477), 1, + sym_type, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(5867), 2, + ACTIONS(1705), 2, anon_sym_AT, anon_sym_STAR, - STATE(3806), 9, + STATE(3376), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -286985,7 +863469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(5871), 35, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287021,28 +863505,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39661] = 11, + [33598] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4094), 1, + ACTIONS(7160), 1, sym_identifier, - ACTIONS(4101), 1, - anon_sym_struct_type_BANG, - ACTIONS(5875), 1, + ACTIONS(11657), 1, anon_sym_LPAREN, - ACTIONS(5879), 1, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - ACTIONS(5881), 1, + ACTIONS(11681), 1, anon_sym_LBRACK, - STATE(3562), 1, + STATE(10848), 1, sym_qualified_identifier, - ACTIONS(4096), 2, + STATE(10890), 1, + sym_type, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4106), 2, + ACTIONS(11679), 2, anon_sym_AT, anon_sym_STAR, - STATE(3677), 9, + STATE(10871), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -287052,7 +863538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(2889), 35, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287088,28 +863574,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39739] = 11, + [33679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3714), 1, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, - ACTIONS(5885), 1, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, anon_sym_LPAREN, - ACTIONS(5889), 1, + ACTIONS(11715), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(11717), 1, anon_sym_LBRACK, - STATE(3190), 1, + STATE(3862), 1, + sym_type, + STATE(3903), 1, sym_qualified_identifier, - ACTIONS(3709), 2, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(3719), 2, + ACTIONS(6496), 2, anon_sym_AT, anon_sym_STAR, - STATE(3226), 9, + STATE(3901), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -287119,7 +863607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(2227), 35, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287155,28 +863643,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39817] = 11, + [33760] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5937), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5941), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5945), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5947), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - STATE(537), 1, + STATE(8289), 1, sym_qualified_identifier, - ACTIONS(339), 2, + STATE(8337), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(349), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(628), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -287186,7 +863676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287222,28 +863712,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39895] = 11, + [33841] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 1, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, - ACTIONS(5893), 1, + ACTIONS(7436), 1, sym_identifier, - ACTIONS(5897), 1, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(5901), 1, + ACTIONS(11725), 1, anon_sym_QMARK, - ACTIONS(5903), 1, + ACTIONS(11727), 1, anon_sym_LBRACK, - STATE(797), 1, + STATE(8289), 1, sym_qualified_identifier, - ACTIONS(2059), 2, + STATE(8340), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(2069), 2, + ACTIONS(1456), 2, anon_sym_AT, anon_sym_STAR, - STATE(859), 9, + STATE(8293), 9, sym__type_atom, sym_parenthesized_type, sym_named_type, @@ -287253,7 +863745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1445), 35, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287289,28 +863781,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [39973] = 4, + [33922] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 1, - anon_sym_DOT, - ACTIONS(1499), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11717), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1501), 39, + STATE(3903), 1, + sym_qualified_identifier, + STATE(4539), 1, + sym_type, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287346,30 +863850,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40035] = 5, + [34003] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 1, - anon_sym_PIPE, - STATE(2891), 1, - aux_sym_type_repeat1, - ACTIONS(1465), 11, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1467), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8342), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287405,30 +863919,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40099] = 5, + [34084] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6290), 1, - anon_sym_LPAREN, - STATE(2921), 1, - sym_argument_list, - ACTIONS(1411), 11, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11759), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1413), 39, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9484), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287464,29 +863988,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40163] = 4, + [34165] = 12, ACTIONS(3), 1, sym_comment, - STATE(2891), 1, - aux_sym_type_repeat1, - ACTIONS(1476), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1478), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8362), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287522,29 +864057,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40225] = 4, + [34246] = 12, ACTIONS(3), 1, sym_comment, - STATE(2893), 1, - aux_sym_type_repeat1, - ACTIONS(1472), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1474), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8267), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287580,27 +864126,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40287] = 3, + [34327] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1633), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8328), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287636,27 +864195,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40346] = 3, + [34408] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11661), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1507), 39, + STATE(3887), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287692,27 +864264,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40405] = 3, + [34489] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1983), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8329), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287748,27 +864333,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40464] = 3, + [34570] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11717), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1801), 39, + STATE(3866), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287804,27 +864402,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40523] = 3, + [34651] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1605), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8268), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287860,27 +864471,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40582] = 3, + [34732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11661), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1511), 39, + STATE(3862), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287916,27 +864540,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40641] = 3, + [34813] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1611), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11743), 1, anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11749), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1613), 39, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3098), 1, + sym_type, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -287972,27 +864609,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40700] = 3, + [34894] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1879), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8316), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288028,27 +864678,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40759] = 3, + [34975] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1645), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8321), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288084,27 +864747,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40818] = 3, + [35056] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1805), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8322), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288140,27 +864816,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40877] = 3, + [35137] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1649), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8323), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288196,27 +864885,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40936] = 3, + [35218] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1975), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8269), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288252,27 +864954,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [40995] = 3, + [35299] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(2031), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8324), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288308,29 +865023,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41054] = 5, + [35380] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, - anon_sym_PIPE, - STATE(2911), 1, - aux_sym_type_repeat1, - ACTIONS(1472), 10, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11759), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1474), 39, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9490), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288366,27 +865092,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41117] = 3, + [35461] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1519), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8315), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288422,27 +865161,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41176] = 3, + [35542] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(2035), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8296), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288478,29 +865230,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41235] = 5, + [35623] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, - anon_sym_PIPE, - STATE(2891), 1, - aux_sym_type_repeat1, - ACTIONS(1476), 10, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11661), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1478), 39, + STATE(3870), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288536,27 +865299,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41298] = 3, + [35704] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11759), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(2039), 39, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9435), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288592,27 +865368,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41357] = 3, + [35785] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11695), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1555), 39, + STATE(674), 1, + sym_qualified_identifier, + STATE(2598), 1, + sym_type, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288648,27 +865437,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41416] = 3, + [35866] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11675), 1, anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11681), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1567), 39, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10898), 1, + sym_type, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288704,27 +865506,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41475] = 3, + [35947] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1571), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8271), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288760,27 +865575,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41534] = 3, + [36028] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11671), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1729), 39, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8902), 1, + sym_type, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288816,27 +865644,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41593] = 3, + [36109] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11743), 1, anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11749), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1587), 39, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3101), 1, + sym_type, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288872,27 +865713,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41652] = 3, + [36190] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1753), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8272), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288928,27 +865782,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41711] = 3, + [36271] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11671), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1757), 39, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8905), 1, + sym_type, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -288984,27 +865851,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41770] = 3, + [36352] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1615), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11671), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1617), 39, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8908), 1, + sym_type, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289040,27 +865920,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41829] = 3, + [36433] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1761), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8273), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289096,27 +865989,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41888] = 3, + [36514] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1619), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11743), 1, anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11749), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1621), 39, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3103), 1, + sym_type, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289152,27 +866058,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [41947] = 3, + [36595] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1454), 1, anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11727), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1625), 39, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8312), 1, + sym_type, + ACTIONS(1452), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289208,27 +866127,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42006] = 3, + [36676] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1985), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11671), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1987), 39, + STATE(8897), 1, + sym_qualified_identifier, + STATE(9048), 1, + sym_type, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289264,27 +866196,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42065] = 3, + [36757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11789), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1629), 39, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3487), 1, + sym_type, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289320,27 +866265,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42124] = 3, + [36838] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1991), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8276), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289376,27 +866334,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42183] = 3, + [36919] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1635), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1637), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8278), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289432,27 +866403,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42242] = 3, + [37000] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11661), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1765), 39, + STATE(3871), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289488,27 +866472,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42301] = 3, + [37081] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11759), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1641), 39, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9453), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289544,27 +866541,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42360] = 3, + [37162] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1651), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1653), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8279), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289600,27 +866610,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42419] = 3, + [37243] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1655), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1657), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8236), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289656,27 +866679,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42478] = 3, + [37324] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11705), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1769), 39, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10376), 1, + sym_type, + ACTIONS(10741), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289712,27 +866748,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42537] = 3, + [37405] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1661), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8280), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289768,27 +866817,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42596] = 3, + [37486] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1663), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11705), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1665), 39, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10386), 1, + sym_type, + ACTIONS(10741), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289824,27 +866886,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42655] = 3, + [37567] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11759), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1773), 39, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9471), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289880,27 +866955,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42714] = 3, + [37648] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11743), 1, anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11749), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1467), 39, + STATE(2882), 1, + sym_qualified_identifier, + STATE(2977), 1, + sym_type, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289936,27 +867024,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42773] = 3, + [37729] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1667), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11759), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1669), 39, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9467), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -289992,27 +867093,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42832] = 3, + [37810] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11675), 1, anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11681), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1817), 39, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10900), 1, + sym_type, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290048,28 +867162,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42891] = 4, + [37891] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 1, - anon_sym_BANG, - ACTIONS(1779), 11, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11661), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1781), 39, + STATE(10856), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290105,27 +867231,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [42952] = 3, + [37972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1673), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8281), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290161,27 +867300,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43011] = 3, + [38053] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11675), 1, anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11681), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1787), 39, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10901), 1, + sym_type, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290217,27 +867369,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43070] = 3, + [38134] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11675), 1, anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11681), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1733), 39, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10902), 1, + sym_type, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290273,27 +867438,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43129] = 3, + [38215] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1675), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11671), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1677), 39, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8977), 1, + sym_type, + ACTIONS(1784), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290329,28 +867507,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43188] = 4, + [38296] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6296), 1, - anon_sym_BANG, - ACTIONS(1789), 11, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11789), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1791), 39, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3595), 1, + sym_type, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290386,27 +867576,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43249] = 3, + [38377] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11789), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1797), 39, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3596), 1, + sym_type, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290442,27 +867645,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43308] = 3, + [38458] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11661), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(2043), 39, + STATE(3866), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290498,27 +867714,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43367] = 3, + [38539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11743), 1, anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11749), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1681), 39, + STATE(2882), 1, + sym_qualified_identifier, + STATE(2996), 1, + sym_type, + ACTIONS(11735), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290554,27 +867783,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43426] = 3, + [38620] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11759), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1515), 39, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9458), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290610,27 +867852,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43485] = 3, + [38701] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1683), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11675), 1, anon_sym_struct_type_BANG, + ACTIONS(11677), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11681), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1685), 39, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10905), 1, + sym_type, + ACTIONS(11673), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290666,27 +867921,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43544] = 3, + [38782] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1687), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1703), 1, anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11789), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1689), 39, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3580), 1, + sym_type, + ACTIONS(1701), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290722,27 +867990,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43603] = 3, + [38863] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11705), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1693), 39, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10465), 1, + sym_type, + ACTIONS(10741), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290778,27 +868059,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43662] = 3, + [38944] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11695), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1737), 39, + STATE(674), 1, + sym_qualified_identifier, + STATE(2580), 1, + sym_type, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290834,27 +868128,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43721] = 3, + [39025] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1308), 1, anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11661), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1979), 39, + STATE(3885), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290890,27 +868197,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43780] = 3, + [39106] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 12, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1725), 39, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7205), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -290946,27 +868266,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43839] = 3, + [39187] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 12, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11695), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1749), 39, + STATE(674), 1, + sym_qualified_identifier, + STATE(2597), 1, + sym_type, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291002,26 +868335,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43898] = 4, + [39268] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 1, - anon_sym_EQ, - ACTIONS(6302), 9, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(11541), 1, anon_sym_struct_type_BANG, + ACTIONS(11543), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6298), 39, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8284), 1, + sym_type, + ACTIONS(11535), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291057,25 +868404,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [43957] = 3, + [39349] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 10, - anon_sym_EQ, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1527), 39, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7126), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291111,25 +868473,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [44014] = 3, + [39430] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1561), 10, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11759), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1563), 39, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9459), 1, + sym_type, + ACTIONS(10008), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291165,24 +868542,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [44071] = 3, + [39511] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 9, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11717), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6304), 39, + STATE(3883), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291218,25 +868611,1075 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [44127] = 4, + [39592] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6312), 1, - anon_sym_COMMA, - ACTIONS(6310), 8, - anon_sym_LPAREN, - anon_sym_RBRACE, + ACTIONS(1786), 1, anon_sym_struct_type_BANG, - anon_sym_QMARK, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8975), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [39673] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3889), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [39754] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7134), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [39835] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3891), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [39916] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7135), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [39997] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9481), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40078] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3865), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40159] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3874), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40240] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(2966), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40321] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7191), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40402] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2564), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40483] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3013), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40564] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7198), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40645] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7199), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40726] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8285), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, anon_sym_AT, anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [40807] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6308), 39, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7201), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291272,135 +869715,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [44185] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(473), 1, - anon_sym_BANG, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(486), 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(477), 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, - [44248] = 5, + [40888] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6314), 1, - anon_sym_LBRACE, - STATE(660), 1, - sym_variant_payload, - ACTIONS(1492), 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(1494), 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, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, sym_identifier, - [44307] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6316), 1, - sym__newline, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(2808), 7, + ACTIONS(11711), 1, anon_sym_LPAREN, - anon_sym_struct_type_BANG, + ACTIONS(11715), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11717), 1, anon_sym_LBRACK, - anon_sym_PIPE2, - ACTIONS(2806), 38, + STATE(3875), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291436,23 +869784,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [44366] = 3, + [40969] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5819), 8, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, - anon_sym_RBRACE, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6319), 39, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7116), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291488,264 +869853,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [44421] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1399), 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(1401), 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, - [44489] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 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(1369), 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, - [44555] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6327), 1, - anon_sym_orelse, - ACTIONS(6329), 1, - anon_sym_catch, - ACTIONS(6331), 1, - anon_sym_or, - ACTIONS(6333), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1401), 7, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(1399), 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, - [44639] = 11, + [41050] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 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, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, sym_identifier, - ACTIONS(1367), 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, - [44709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6345), 1, - anon_sym_COMMA, - STATE(2969), 1, - aux_sym_parameter_repeat1, - ACTIONS(6343), 6, + ACTIONS(11711), 1, anon_sym_LPAREN, - anon_sym_struct_type_BANG, + ACTIONS(11715), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11717), 1, anon_sym_LBRACK, - ACTIONS(6341), 38, + STATE(3870), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -291781,829 +869922,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [44767] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1486), 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(1484), 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, - [44843] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1399), 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(1401), 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, - [44909] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 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(1369), 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, - [44977] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6331), 1, - anon_sym_or, - ACTIONS(6333), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1401), 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(1399), 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, - [45057] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 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(1367), 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, - [45129] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6327), 1, - anon_sym_orelse, - ACTIONS(6329), 1, - anon_sym_catch, - ACTIONS(6331), 1, - anon_sym_or, - ACTIONS(6333), 1, - anon_sym_and, - ACTIONS(6348), 1, - anon_sym_EQ, - ACTIONS(6352), 1, - anon_sym_DOT_DOT, - ACTIONS(6354), 1, - anon_sym_DOT_DOT_EQ, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(2159), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2155), 5, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - sym_identifier, - ACTIONS(6350), 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, - [45221] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6327), 1, - anon_sym_orelse, - ACTIONS(6329), 1, - anon_sym_catch, - ACTIONS(6331), 1, - anon_sym_or, - ACTIONS(6333), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1369), 7, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(1367), 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, - [45305] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6331), 1, - anon_sym_or, - ACTIONS(6333), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1369), 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(1367), 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, - [45385] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 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(1399), 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, - [45455] = 15, + [41131] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6333), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1409), 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(1407), 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, - [45533] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6333), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1486), 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(1484), 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, - [45611] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1409), 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(1407), 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, - [45687] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 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, + ACTIONS(11761), 1, sym_identifier, - ACTIONS(1399), 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, - [45759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 7, + ACTIONS(11767), 1, anon_sym_LPAREN, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6356), 38, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7117), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -292639,21 +869991,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [45812] = 3, + [41212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6362), 7, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6360), 38, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7118), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -292689,21 +870060,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [45865] = 3, + [41293] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6366), 7, - anon_sym_LPAREN, + ACTIONS(1174), 1, anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11695), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6364), 38, + STATE(674), 1, + sym_qualified_identifier, + STATE(2599), 1, + sym_type, + ACTIONS(1169), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -292739,21 +870129,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [45918] = 3, + [41374] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 7, - anon_sym_LPAREN, + ACTIONS(6491), 1, anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11717), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6368), 38, + STATE(3871), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -292789,21 +870198,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [45971] = 3, + [41455] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 7, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6372), 38, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7121), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -292839,21 +870267,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [46024] = 3, + [41536] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6378), 7, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - ACTIONS(6376), 38, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7125), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -292889,21 +870336,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [46077] = 3, + [41617] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6382), 7, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - ACTIONS(6380), 38, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7110), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -292939,21 +870405,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [46130] = 3, + [41698] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 7, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6384), 38, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7127), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -292989,21 +870474,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [46183] = 3, + [41779] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 7, - anon_sym_LPAREN, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11705), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(6388), 38, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10343), 1, + sym_type, + ACTIONS(10741), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -293039,90 +870543,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [46236] = 22, + [41860] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6327), 1, - anon_sym_orelse, - ACTIONS(6329), 1, - anon_sym_catch, - ACTIONS(6331), 1, - anon_sym_or, - ACTIONS(6333), 1, - anon_sym_and, - ACTIONS(6352), 1, - anon_sym_DOT_DOT, - ACTIONS(6354), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6392), 1, - anon_sym_EQ, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(2159), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6321), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6337), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6325), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6339), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(2155), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, + ACTIONS(11761), 1, sym_identifier, - ACTIONS(6335), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6394), 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, - [46327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6398), 7, + ACTIONS(11767), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(11771), 1, anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(11777), 1, anon_sym_LBRACK, - ACTIONS(6396), 38, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7128), 1, + sym_type, + ACTIONS(11763), 2, anon_sym_func, anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, anon_sym_void, anon_sym_noreturn, anon_sym_type, @@ -293158,24968 +870612,108573 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [46380] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 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(1367), 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, - [46449] = 5, + [41941] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6408), 1, - anon_sym_LBRACE, - STATE(3181), 1, - sym_variant_payload, - ACTIONS(1494), 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(1492), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [46504] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 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, + ACTIONS(11733), 1, sym_identifier, - ACTIONS(1399), 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, - [46571] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, + ACTIONS(11739), 1, anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6410), 1, - anon_sym_or, - ACTIONS(6412), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1369), 6, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - ACTIONS(1367), 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, - [46648] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, + ACTIONS(11749), 1, anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6410), 1, - anon_sym_or, - ACTIONS(6412), 1, - anon_sym_and, - ACTIONS(6418), 1, - anon_sym_orelse, - ACTIONS(6420), 1, - anon_sym_catch, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 4, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1399), 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, - [46729] = 4, - ACTIONS(3), 1, - sym_comment, + STATE(2882), 1, + sym_qualified_identifier, STATE(3014), 1, - aux_sym_type_repeat1, - ACTIONS(1474), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 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(1472), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [46782] = 16, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42022] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6410), 1, - anon_sym_or, - ACTIONS(6412), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1401), 6, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, + ACTIONS(11761), 1, sym_identifier, - ACTIONS(1399), 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, - [46859] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, + ACTIONS(11767), 1, anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6412), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1486), 7, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(1484), 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, - [46934] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, + ACTIONS(11777), 1, anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6410), 1, - anon_sym_or, - ACTIONS(6412), 1, - anon_sym_and, - ACTIONS(6418), 1, - anon_sym_orelse, - ACTIONS(6420), 1, - anon_sym_catch, - ACTIONS(6422), 1, - anon_sym_EQ, - ACTIONS(6426), 1, - anon_sym_DOT_DOT, - ACTIONS(6428), 1, - anon_sym_DOT_DOT_EQ, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(2155), 2, - anon_sym_else, - sym_identifier, - ACTIONS(2159), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7138), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6424), 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, - [47023] = 14, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42103] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, anon_sym_LPAREN, - ACTIONS(1381), 1, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7139), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1486), 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(1484), 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, - [47096] = 5, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42184] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2609), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42265] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3488), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42346] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10850), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42427] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9428), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42508] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3888), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42589] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8981), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42670] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3865), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42751] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2601), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42832] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9480), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42913] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9487), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [42994] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2582), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43075] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2583), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43156] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2617), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43237] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2584), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43318] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10246), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43399] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10907), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43480] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2602), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43561] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10908), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43642] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10909), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43723] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10305), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43804] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3486), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43885] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10377), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [43966] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3860), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44047] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10405), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44128] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8939), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44209] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10232), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44290] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10245), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44371] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10254), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44452] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3876), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44533] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10321), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44614] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10884), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44695] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9493), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44776] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15674), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44857] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2586), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [44938] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3877), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45019] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10284), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45100] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3874), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45181] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10964), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10918), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45262] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3875), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45343] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3876), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45424] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2587), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45505] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3043), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45586] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3877), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45667] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8256), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45748] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3437), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45829] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2596), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45910] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8929), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [45991] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8930), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46072] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8931), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46153] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8247), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46234] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8990), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46315] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10296), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46396] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10309), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46477] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2588), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46558] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10968), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10918), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46639] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3860), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46720] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9485), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46801] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3045), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46882] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3046), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [46963] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8259), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47044] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8963), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47125] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + STATE(7196), 1, + sym_type, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7106), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47206] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9470), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47287] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8932), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47368] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3047), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47449] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2571), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47530] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(8968), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47611] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10880), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47692] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15398), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47773] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10856), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47854] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3895), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [47935] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10894), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48016] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3065), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48097] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15152), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48178] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10348), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48259] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15488), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48340] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9478), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48421] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8260), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48502] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9475), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48583] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15678), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48664] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2591), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48745] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3885), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48826] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15120), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48907] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10889), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [48988] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15364), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49069] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10850), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49150] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3830), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49231] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10353), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49312] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3067), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49393] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15389), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49474] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + STATE(2572), 1, + sym_type, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(735), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49555] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3767), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49636] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10354), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49717] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15126), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49798] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + STATE(3071), 1, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49879] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15253), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [49960] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10896), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50041] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9489), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50122] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3888), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50203] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + STATE(15373), 1, + sym_type, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10913), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50284] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + STATE(9017), 1, + sym_type, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8861), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50365] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3543), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50446] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + STATE(9461), 1, + sym_type, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9423), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50527] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3544), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50608] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10897), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50689] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8346), 1, + sym_type, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50770] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + STATE(8225), 1, + sym_qualified_identifier, + STATE(8265), 1, + sym_type, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8227), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50851] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3642), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [50932] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10886), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51013] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3883), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51094] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3669), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51175] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3690), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51256] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, STATE(3077), 1, - sym_argument_list, - ACTIONS(1413), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, + sym_type, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 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(1411), 24, - anon_sym_RPAREN, - 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_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, - [47151] = 15, + STATE(2900), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51337] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6412), 1, - anon_sym_and, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1409), 7, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, sym_identifier, - ACTIONS(1407), 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, - [47226] = 10, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3691), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51418] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 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, + ACTIONS(10739), 1, sym_identifier, - ACTIONS(1367), 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, - [47291] = 9, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + STATE(10310), 1, + sym_type, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10084), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51499] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1399), 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(1401), 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, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, sym_identifier, - [47354] = 14, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3848), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51580] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1409), 8, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, sym_identifier, - ACTIONS(1407), 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, - [47427] = 7, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3895), 1, + sym_type, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3901), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51661] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(2395), 1, - anon_sym_BANG, - ACTIONS(477), 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(486), 24, - anon_sym_RPAREN, - 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_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, - [47486] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 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, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, sym_identifier, - ACTIONS(1399), 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, - [47555] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, + ACTIONS(11783), 1, anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, + ACTIONS(11787), 1, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3851), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 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(1399), 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, - [47620] = 9, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51742] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, + ACTIONS(11787), 1, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6404), 2, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3852), 1, + sym_type, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 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(1369), 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, - [47683] = 11, + STATE(3376), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51823] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, + ACTIONS(11725), 1, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, + sym_qualified_identifier, + STATE(8344), 1, + sym_type, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 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(1367), 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, - [47750] = 4, + STATE(8293), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51904] = 12, ACTIONS(3), 1, sym_comment, - STATE(3016), 1, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3889), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [51985] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(3891), 1, + sym_type, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10917), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52066] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + STATE(10910), 1, + sym_type, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10871), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52147] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10006), 1, + sym_identifier, + ACTIONS(10013), 1, + anon_sym_struct_type_BANG, + ACTIONS(11753), 1, + anon_sym_LPAREN, + ACTIONS(11757), 1, + anon_sym_QMARK, + ACTIONS(11759), 1, + anon_sym_LBRACK, + STATE(9422), 1, + sym_qualified_identifier, + ACTIONS(10008), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10018), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(9438), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1432), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52225] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_struct_type_BANG, + ACTIONS(7436), 1, + sym_identifier, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_QMARK, + ACTIONS(11727), 1, + anon_sym_LBRACK, + STATE(8289), 1, + sym_qualified_identifier, + ACTIONS(1452), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1456), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8357), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(141), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52303] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_struct_type_BANG, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11693), 1, + anon_sym_QMARK, + ACTIONS(11695), 1, + anon_sym_LBRACK, + STATE(674), 1, + sym_qualified_identifier, + ACTIONS(1169), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1179), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2619), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52381] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + anon_sym_struct_type_BANG, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11659), 1, + anon_sym_QMARK, + ACTIONS(11661), 1, + anon_sym_LBRACK, + STATE(10912), 1, + sym_qualified_identifier, + ACTIONS(1297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1313), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10857), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52459] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11761), 1, + sym_identifier, + ACTIONS(11767), 1, + anon_sym_LPAREN, + ACTIONS(11771), 1, + anon_sym_struct_type_BANG, + ACTIONS(11773), 1, + anon_sym_QMARK, + ACTIONS(11777), 1, + anon_sym_LBRACK, + STATE(7095), 1, + sym_qualified_identifier, + ACTIONS(11763), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11775), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(7162), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1396), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52537] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11533), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_struct_type_BANG, + ACTIONS(11543), 1, + anon_sym_QMARK, + ACTIONS(11547), 1, + anon_sym_LBRACK, + STATE(8225), 1, + sym_qualified_identifier, + ACTIONS(11535), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11545), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8254), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11549), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52615] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + anon_sym_struct_type_BANG, + ACTIONS(11677), 1, + anon_sym_QMARK, + ACTIONS(11681), 1, + anon_sym_LBRACK, + STATE(10848), 1, + sym_qualified_identifier, + ACTIONS(11673), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11679), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10857), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(11683), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52693] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10739), 1, + sym_identifier, + ACTIONS(10746), 1, + anon_sym_struct_type_BANG, + ACTIONS(11699), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_QMARK, + ACTIONS(11705), 1, + anon_sym_LBRACK, + STATE(10100), 1, + sym_qualified_identifier, + ACTIONS(10741), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(10751), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(10389), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1524), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52771] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_struct_type_BANG, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11711), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + anon_sym_QMARK, + ACTIONS(11717), 1, + anon_sym_LBRACK, + STATE(3903), 1, + sym_qualified_identifier, + ACTIONS(6486), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(4585), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1358), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52849] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_struct_type_BANG, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11783), 1, + anon_sym_LPAREN, + ACTIONS(11787), 1, + anon_sym_QMARK, + ACTIONS(11789), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_qualified_identifier, + ACTIONS(1701), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1705), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3522), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(687), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [52927] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11739), 1, + anon_sym_LPAREN, + ACTIONS(11743), 1, + anon_sym_struct_type_BANG, + ACTIONS(11745), 1, + anon_sym_QMARK, + ACTIONS(11749), 1, + anon_sym_LBRACK, + STATE(2882), 1, + sym_qualified_identifier, + ACTIONS(11735), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(11747), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2981), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(83), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [53005] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_struct_type_BANG, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(11665), 1, + anon_sym_LPAREN, + ACTIONS(11669), 1, + anon_sym_QMARK, + ACTIONS(11671), 1, + anon_sym_LBRACK, + STATE(8897), 1, + sym_qualified_identifier, + ACTIONS(1784), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1788), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(8993), 9, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_intrinsic_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(425), 35, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [53083] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12225), 1, + anon_sym_PIPE, + STATE(8223), 1, aux_sym_type_repeat1, - ACTIONS(1478), 17, + ACTIONS(2901), 11, 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(1476), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [47803] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(6410), 1, - anon_sym_or, - ACTIONS(6412), 1, - anon_sym_and, - ACTIONS(6418), 1, - anon_sym_orelse, - ACTIONS(6420), 1, - anon_sym_catch, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 4, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, + ACTIONS(2903), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1367), 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, - [47884] = 5, + [53147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, + ACTIONS(11551), 1, + anon_sym_DOT, + ACTIONS(5954), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PIPE, - STATE(3016), 1, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5956), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53209] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12228), 1, + anon_sym_LPAREN, + STATE(8239), 1, + sym_argument_list, + ACTIONS(2964), 11, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(2966), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53273] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8223), 1, aux_sym_type_repeat1, - ACTIONS(1467), 16, + ACTIONS(3056), 12, 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(1465), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [47939] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1490), 15, - anon_sym_EQ, - anon_sym_DASH, + anon_sym_COMMA, + anon_sym_RBRACE, 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(1488), 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, - [47999] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, + anon_sym_struct_type_BANG, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1401), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, + 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, - ACTIONS(1399), 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, - [48059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1769), 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(1767), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [48109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 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(1627), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [48159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 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(1747), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [48209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1633), 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(1631), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [48259] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 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(1399), 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, - [48321] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 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(1399), 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, - [48387] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_orelse, - ACTIONS(6451), 1, - anon_sym_catch, - ACTIONS(6453), 1, - anon_sym_or, - ACTIONS(6455), 1, - anon_sym_and, - STATE(3149), 1, - sym_argument_list, - ACTIONS(1401), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1399), 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, - [48467] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6453), 1, - anon_sym_or, - ACTIONS(6455), 1, - anon_sym_and, - STATE(3149), 1, - sym_argument_list, - ACTIONS(1401), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1399), 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, - [48543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 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(1635), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [48593] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6455), 1, - anon_sym_and, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1409), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1407), 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, - [48667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 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(1989), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [48717] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1409), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1407), 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, - [48789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 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(1639), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [48839] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(1401), 5, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 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, - [48907] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1401), 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(1399), 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, - [48971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1645), 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(1643), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 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(1647), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49071] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_orelse, - ACTIONS(6451), 1, - anon_sym_catch, - ACTIONS(6453), 1, - anon_sym_or, - ACTIONS(6455), 1, - anon_sym_and, - ACTIONS(6461), 1, - anon_sym_EQ, - ACTIONS(6463), 1, - anon_sym_RPAREN, - ACTIONS(6468), 1, - anon_sym_DOT_DOT, - ACTIONS(6470), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6472), 1, - sym__newline, - STATE(3149), 1, - sym_argument_list, - STATE(4880), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6466), 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, - [49161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1805), 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(1803), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1653), 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(1651), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1657), 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(1655), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 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(1659), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 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(1663), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1773), 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(1771), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 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(1465), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 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(1667), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 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(1815), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49611] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_orelse, - ACTIONS(6451), 1, - anon_sym_catch, - ACTIONS(6453), 1, - anon_sym_or, - ACTIONS(6455), 1, - anon_sym_and, - ACTIONS(6468), 1, - anon_sym_DOT_DOT, - ACTIONS(6470), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6475), 1, - anon_sym_EQ, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2159), 3, - anon_sym_RPAREN, - anon_sym_else, - sym__newline, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6477), 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, - [49697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1673), 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(1671), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1677), 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(1675), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1681), 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(1679), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1685), 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(1683), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1689), 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(1687), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1693), 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(1691), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [49997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 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(2029), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [50047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1725), 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(1723), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [50097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2035), 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(2033), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [50147] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 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(1367), 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, - [50209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1729), 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(1727), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [50259] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 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(1367), 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, - [50325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 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(1731), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [50375] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_orelse, - ACTIONS(6451), 1, - anon_sym_catch, - ACTIONS(6453), 1, - anon_sym_or, - ACTIONS(6455), 1, - anon_sym_and, - STATE(3149), 1, - sym_argument_list, - ACTIONS(1369), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1367), 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, - [50455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 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(1985), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [50505] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6453), 1, - anon_sym_or, - ACTIONS(6455), 1, - anon_sym_and, - STATE(3149), 1, - sym_argument_list, - ACTIONS(1369), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1367), 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, - [50581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2039), 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(2037), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [50631] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6455), 1, - anon_sym_and, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1486), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1484), 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, - [50705] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1486), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1484), 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, - [50777] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(1369), 5, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1367), 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, - [50845] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1381), 1, - anon_sym_LBRACK, - ACTIONS(1397), 1, - anon_sym_DOT, - ACTIONS(2155), 1, + ACTIONS(3058), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, - ACTIONS(6410), 1, - anon_sym_or, - ACTIONS(6412), 1, - anon_sym_and, - ACTIONS(6418), 1, - anon_sym_orelse, - ACTIONS(6420), 1, - anon_sym_catch, - ACTIONS(6426), 1, - anon_sym_DOT_DOT, - ACTIONS(6428), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6479), 1, - anon_sym_EQ, - STATE(568), 1, - sym_argument_list, - ACTIONS(1377), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(2159), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(6400), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6402), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6406), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6414), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6481), 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, - [50933] = 10, + [53335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1369), 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(1367), 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, - [50997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 17, + STATE(8226), 1, + aux_sym_type_repeat1, + ACTIONS(3024), 12, 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(1751), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51047] = 4, + ACTIONS(3026), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6483), 1, - anon_sym_BANG, - ACTIONS(1781), 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(1779), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [51099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 17, + ACTIONS(5830), 12, 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(1785), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51149] = 3, + ACTIONS(5832), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2043), 17, + ACTIONS(4544), 12, 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(2041), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51199] = 3, + ACTIONS(4546), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 17, + ACTIONS(12230), 1, + anon_sym_BANG, + ACTIONS(5998), 11, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(6000), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6004), 12, 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(1505), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51249] = 3, + ACTIONS(6006), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 17, + ACTIONS(5726), 12, 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(1755), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51299] = 3, + ACTIONS(5728), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 17, + ACTIONS(12232), 1, + anon_sym_BANG, + ACTIONS(6024), 11, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(6026), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6030), 12, 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(1509), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51349] = 3, + ACTIONS(6032), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 17, + ACTIONS(5962), 12, 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(1973), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51399] = 3, + ACTIONS(5964), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 17, + ACTIONS(5968), 12, 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(1759), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51449] = 3, + ACTIONS(5970), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 17, + ACTIONS(5972), 12, 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(1877), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51499] = 3, + ACTIONS(5974), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [53991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 17, + ACTIONS(12234), 1, + anon_sym_PIPE, + STATE(8223), 1, + aux_sym_type_repeat1, + ACTIONS(3056), 10, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(3058), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5978), 12, 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(1513), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51549] = 4, + ACTIONS(5980), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6485), 1, - anon_sym_BANG, - ACTIONS(1791), 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(1789), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [51601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 17, + ACTIONS(6050), 12, 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(1795), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [51651] = 3, + ACTIONS(6052), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 17, + ACTIONS(4512), 12, 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(1517), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [51701] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1405), 15, - anon_sym_EQ, - anon_sym_DASH, + anon_sym_COMMA, + anon_sym_RBRACE, 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(1403), 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, - [51761] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6487), 1, - anon_sym_DOT, - ACTIONS(1501), 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(1499), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_struct_type_BANG, 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_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, - [51813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, + 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(1553), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [51863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 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(1977), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [51913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 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(1565), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [51963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1983), 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(1981), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 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(1569), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 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(1585), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52113] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - STATE(3149), 1, - sym_argument_list, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1369), 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(1367), 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, - [52173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 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(1603), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1613), 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(1611), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 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(1799), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 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(1615), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 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(1763), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 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(1619), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52473] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_orelse, - ACTIONS(6451), 1, - anon_sym_catch, - ACTIONS(6453), 1, - anon_sym_or, - ACTIONS(6455), 1, - anon_sym_and, - ACTIONS(6461), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_DOT_DOT, - ACTIONS(6470), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6489), 1, - anon_sym_RPAREN, - ACTIONS(6492), 1, - sym__newline, - STATE(3149), 1, - sym_argument_list, - STATE(4934), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6466), 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, - [52563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1625), 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(1623), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 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(1735), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 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(2025), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 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(1867), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 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(1969), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 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(1873), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 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(1839), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 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(1929), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [52957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 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(453), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2003), 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(2001), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2007), 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(2005), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 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(1561), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 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(2021), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1853), 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(1851), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 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(1863), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 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(1529), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(396), 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(391), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 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(2049), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1891), 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(1889), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 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(1893), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 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(1897), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 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(2045), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1903), 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(1901), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1845), 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(1843), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 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(449), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(459), 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(461), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1777), 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(1775), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 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(1807), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1575), 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(1573), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [53986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 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(1823), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [54035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 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(1905), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [54084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 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(1881), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [54133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 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(1521), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [54182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 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(1707), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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(4514), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, [54231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 16, + ACTIONS(5648), 12, + 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(1835), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54280] = 3, + ACTIONS(5650), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 16, + ACTIONS(5652), 12, + 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(1715), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54329] = 3, + ACTIONS(5654), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1721), 16, + ACTIONS(5810), 12, + 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(1719), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54378] = 3, + ACTIONS(5812), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 16, + ACTIONS(6062), 12, + 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(1743), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54427] = 3, + ACTIONS(6064), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 16, + ACTIONS(5984), 12, + 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(1827), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54476] = 3, + ACTIONS(5986), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 16, + ACTIONS(5988), 12, + 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(1859), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54525] = 3, + ACTIONS(5990), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 16, + ACTIONS(5664), 12, + 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(1831), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54574] = 3, + ACTIONS(5666), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 16, + ACTIONS(5816), 12, + 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(1855), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54623] = 3, + ACTIONS(5818), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 16, + ACTIONS(5820), 12, + 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(1997), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54672] = 3, + ACTIONS(5822), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 16, + ACTIONS(5668), 12, + 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(1533), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54721] = 3, + ACTIONS(5670), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 16, + ACTIONS(5992), 12, + 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(1549), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54770] = 3, + ACTIONS(5994), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 16, + ACTIONS(5672), 12, + 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(1557), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54819] = 3, + ACTIONS(5674), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 16, + ACTIONS(2901), 12, + 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(1537), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54868] = 3, + ACTIONS(2903), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [54998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 16, + ACTIONS(4738), 12, + 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(1607), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [54917] = 21, + ACTIONS(4734), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_orelse, - ACTIONS(6451), 1, - anon_sym_catch, - ACTIONS(6453), 1, - anon_sym_or, - ACTIONS(6455), 1, - anon_sym_and, - ACTIONS(6461), 1, + ACTIONS(5826), 12, + anon_sym_BANG, anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_DOT_DOT, - ACTIONS(6470), 1, - anon_sym_DOT_DOT_EQ, - STATE(3149), 1, - sym_argument_list, - ACTIONS(2159), 2, - anon_sym_RPAREN, - sym__newline, - ACTIONS(6435), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6441), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6459), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6445), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6447), 3, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6457), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6466), 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, - [55002] = 3, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5828), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1939), 16, + ACTIONS(5704), 12, + 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(1937), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [55051] = 3, + ACTIONS(5700), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 16, + ACTIONS(5838), 12, + 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(1541), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [55100] = 3, + ACTIONS(5840), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 16, + ACTIONS(5842), 12, + 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(1545), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [55149] = 3, + ACTIONS(5844), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 16, + ACTIONS(5846), 12, + 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(1941), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [55198] = 3, + ACTIONS(5848), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 16, + ACTIONS(5850), 12, + 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(1577), 25, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, + 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_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, - [55247] = 3, + ACTIONS(5852), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 16, - anon_sym_EQ, - anon_sym_DASH, + ACTIONS(12234), 1, 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(1591), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1813), 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(1811), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 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(2009), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 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(457), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1911), 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(1909), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1701), 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(1699), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 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(1913), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 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(1945), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1919), 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(1917), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 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(1921), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 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(2013), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(423), 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(418), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1927), 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(1925), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 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(1949), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 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(1953), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [55982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2019), 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(2017), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1705), 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(1703), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 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(1581), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1597), 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(1595), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1601), 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(1599), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1697), 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(1695), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 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(486), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1959), 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(1957), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 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(1819), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 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(1961), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 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(1525), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 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(1711), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1741), 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(1739), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 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(1885), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 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(1965), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1609), 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(1607), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 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(1993), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 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(1847), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1935), 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(1933), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_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, - [56913] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3188), 1, + STATE(8238), 1, aux_sym_type_repeat1, - ACTIONS(1478), 7, + ACTIONS(3024), 10, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(3026), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5784), 12, anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5780), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5862), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5864), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5866), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5868), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5870), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5872), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5874), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5876), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5878), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5880), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5882), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5884), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5886), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5888), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [55946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5890), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5892), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5894), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5896), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5898), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5900), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5902), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5904), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5906), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5908), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5910), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5912), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5922), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5924), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5926), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5928), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5932), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5934), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5936), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5938), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5940), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5686), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5942), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5944), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5946), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5948), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5950), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5952), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5678), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5680), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5688), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5690), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [56949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5722), 12, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5724), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [57008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + STATE(8325), 1, + sym_argument_list, + ACTIONS(2966), 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(1476), 30, - anon_sym_LPAREN, + ACTIONS(2964), 30, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [56961] = 5, + [57069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(12238), 1, anon_sym_PIPE, - STATE(3188), 1, + STATE(8290), 1, aux_sym_type_repeat1, - ACTIONS(1467), 7, + ACTIONS(2903), 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(1465), 29, + ACTIONS(2901), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [57011] = 4, + [57130] = 3, ACTIONS(3), 1, sym_comment, - STATE(3187), 1, + ACTIONS(5758), 10, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5760), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [57187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5718), 10, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5720), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [57244] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8294), 1, aux_sym_type_repeat1, - ACTIONS(1474), 7, + ACTIONS(3026), 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(1472), 30, + ACTIONS(3024), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_catch, + anon_sym_CARET, + sym__newline, + [57303] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8290), 1, + aux_sym_type_repeat1, + ACTIONS(3058), 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(3056), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, anon_sym_CARET, sym__newline, - [57059] = 5, + [57362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(12243), 1, + anon_sym_EQ, + ACTIONS(12245), 9, anon_sym_LPAREN, - STATE(3256), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12241), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [57421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 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(5950), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [57477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 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(5842), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [57533] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + anon_sym_BANG, + ACTIONS(1292), 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(1285), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [57597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5848), 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(5846), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [57653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 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(5722), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [57709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 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(5726), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [57765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5818), 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(5816), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [57821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5904), 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(5902), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [57877] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, sym_argument_list, - ACTIONS(1413), 7, - anon_sym_BANG, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2666), 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_DOT, - ACTIONS(1411), 29, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(2664), 27, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, + anon_sym_catch, sym__newline, - [57109] = 3, + [57943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 7, + ACTIONS(5690), 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(1627), 30, + ACTIONS(5688), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 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(1603), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, - [57199] = 3, + [57999] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 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(1985), 30, + ACTIONS(12236), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(12249), 1, anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1613), 7, - anon_sym_BANG, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(12251), 1, anon_sym_DOT, - ACTIONS(1611), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1633), 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(1631), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 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(1553), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57379] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, + STATE(8498), 1, sym_argument_list, - ACTIONS(6500), 2, + ACTIONS(12247), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1401), 5, + ACTIONS(2704), 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, - ACTIONS(1399), 26, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(2702), 27, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - sym__newline, - [57434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 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(1509), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, sym__newline, - [57479] = 3, + [58065] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 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(1667), 30, + ACTIONS(12236), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(12249), 1, anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57524] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(12251), 1, anon_sym_DOT, - STATE(3301), 1, + STATE(8498), 1, sym_argument_list, - ACTIONS(6500), 2, + ACTIONS(12247), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1490), 5, + ACTIONS(2647), 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, - ACTIONS(1488), 26, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(2645), 27, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, sym__newline, - [57579] = 3, + [58131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 7, + ACTIONS(5944), 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(1815), 30, + ACTIONS(5942), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [57624] = 3, + [58187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 7, + ACTIONS(4514), 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(1675), 30, + ACTIONS(4512), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [57669] = 3, + [58243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1637), 7, + ACTIONS(5964), 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(1635), 30, + ACTIONS(5962), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1729), 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(1727), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, - [57759] = 3, + [58299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 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(1731), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(12253), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 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(1639), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 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(1735), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6506), 1, - anon_sym_DOT, - ACTIONS(1501), 6, - anon_sym_BANG, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1499), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 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(1785), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [57986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1681), 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(1679), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [58031] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(6508), 1, - anon_sym_BANG, - ACTIONS(477), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(486), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [58084] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6510), 1, - anon_sym_LBRACE, - STATE(3309), 1, + STATE(8692), 1, sym_variant_payload, - ACTIONS(1494), 6, + ACTIONS(2659), 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(1492), 29, + ACTIONS(2657), 30, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58133] = 3, + [58359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 7, + ACTIONS(5970), 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(1799), 30, + ACTIONS(5968), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58178] = 3, + [58415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 7, + ACTIONS(5908), 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(1615), 30, + ACTIONS(5906), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58223] = 3, + [58471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 7, + ACTIONS(12255), 1, anon_sym_BANG, + ACTIONS(6026), 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(1795), 30, + ACTIONS(6024), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [58268] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1405), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1403), 26, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - 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, - anon_sym_SLASH, + anon_sym_CARET, sym__newline, - [58323] = 3, + [58529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 7, + ACTIONS(5948), 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(1763), 30, + ACTIONS(5946), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58368] = 3, + [58585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 7, + ACTIONS(5912), 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(1643), 30, + ACTIONS(5910), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58413] = 3, + [58641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1649), 7, + ACTIONS(5666), 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(1647), 30, + ACTIONS(5664), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_catch, + anon_sym_CARET, + sym__newline, + [58697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5670), 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(5668), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58458] = 8, + [58753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(2381), 1, + ACTIONS(5674), 17, anon_sym_BANG, - ACTIONS(2387), 1, + 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(5672), 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, - ACTIONS(477), 14, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [58809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5924), 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(5922), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [58865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5928), 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(5926), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [58921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5932), 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(5930), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [58977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5936), 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(5934), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 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(5938), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5980), 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(5978), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 1, + anon_sym_BANG, + ACTIONS(6000), 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(5998), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6006), 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(6004), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5896), 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(5894), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5900), 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(5898), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6052), 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(6050), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 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(5784), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59483] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1299), 1, + anon_sym_BANG, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(4454), 1, + anon_sym_COLON, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(1285), 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(1292), 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, + anon_sym_catch, sym_identifier, - ACTIONS(486), 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, - [58513] = 3, + [59549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 7, + ACTIONS(5864), 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(1973), 30, + ACTIONS(5862), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58558] = 3, + [59605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1685), 7, + ACTIONS(5868), 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(1683), 30, + ACTIONS(5866), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58603] = 3, + [59661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 7, + ACTIONS(5872), 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(1565), 30, + ACTIONS(5870), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_catch, + anon_sym_CARET, + sym__newline, + [59717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6032), 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(6030), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58648] = 8, + [59773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(5876), 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, - STATE(3301), 1, + ACTIONS(5874), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 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(5704), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5986), 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(5984), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5880), 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(5878), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [59997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 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(4738), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5884), 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(5882), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5650), 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(5648), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 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(5826), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5654), 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(5652), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 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(5988), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 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(4544), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5680), 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(5678), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60445] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, sym_argument_list, - ACTIONS(6500), 2, + ACTIONS(12247), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1369), 5, + ACTIONS(2672), 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, - ACTIONS(1367), 26, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(2670), 27, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, sym__newline, - [58703] = 3, + [60511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 7, + ACTIONS(5832), 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(1671), 30, + ACTIONS(5830), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58748] = 3, + [60567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 7, + ACTIONS(5840), 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(1465), 30, + ACTIONS(5838), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58793] = 3, + [60623] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 7, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, anon_sym_BANG, + ACTIONS(12259), 1, + anon_sym_COLON, + ACTIONS(1292), 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_DOT, - ACTIONS(1517), 30, - anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(1285), 28, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_STAR, anon_sym_LBRACK, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58838] = 3, + [60689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 7, + ACTIONS(5822), 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(1981), 30, + ACTIONS(5820), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [58883] = 3, + [60745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1689), 7, + ACTIONS(5852), 17, anon_sym_BANG, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1687), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [58928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 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(1619), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [58973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1693), 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(1691), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 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(1513), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 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(1569), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1625), 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(1623), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 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(1747), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 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(1751), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 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(1505), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 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(1755), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1725), 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(1723), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1805), 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(1803), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1653), 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(1651), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 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(2029), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1657), 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(1655), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1769), 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(1767), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2035), 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(2033), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2039), 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(2037), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 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(1877), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 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(1989), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1773), 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(1771), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6512), 1, - anon_sym_BANG, - ACTIONS(1791), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1789), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 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(1659), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 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(1585), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [59965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 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(1663), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6514), 1, - anon_sym_BANG, - ACTIONS(1781), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1779), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2043), 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(2041), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 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(1759), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 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(1977), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1959), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1957), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1965), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1993), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1999), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1997), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(453), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2003), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(2001), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2007), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(2005), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(2009), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(2013), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2019), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(2017), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(2021), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(2025), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(2045), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1845), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1843), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1777), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1775), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1807), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1823), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1881), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [60984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1521), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1707), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1715), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1721), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1719), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1745), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1743), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1829), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1827), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1833), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1831), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1857), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1855), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1533), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1551), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1549), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1557), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1577), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1581), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1597), 6, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1595), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1601), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1599), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1697), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1695), 30, + ACTIONS(5850), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, - [61732] = 3, + [60801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1703), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(12265), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [61776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1609), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1607), 30, + ACTIONS(12263), 8, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, + anon_sym_struct_type_BANG, anon_sym_QMARK, + anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - 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, - anon_sym_SLASH, - anon_sym_CARET, sym__newline, - [61820] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(2381), 1, - anon_sym_BANG, - ACTIONS(477), 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, + ACTIONS(12261), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, - ACTIONS(486), 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, - [61872] = 3, + [60859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 6, + ACTIONS(5994), 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(1739), 30, + ACTIONS(5992), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_catch, + anon_sym_CARET, + sym__newline, + [60915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 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(2901), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [60971] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12267), 1, + anon_sym_DOT, + ACTIONS(5956), 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(5954), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61029] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6064), 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(6062), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5888), 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(5886), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5974), 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(5972), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5892), 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(5890), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 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(5810), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5686), 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(5684), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12271), 9, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12269), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [61421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5528), 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(5526), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6078), 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(6076), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6082), 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(6080), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6086), 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(6084), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 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(1331), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5098), 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(5096), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 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(5100), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 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(1258), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [61861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5106), 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(5104), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, anon_sym_CARET, sym__newline, [61916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 6, + ACTIONS(4930), 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(1525), 30, + ACTIONS(4928), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [61960] = 3, + [61971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 6, + ACTIONS(4854), 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(1529), 30, + ACTIONS(4852), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62004] = 3, + [62026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 6, + ACTIONS(4640), 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(1835), 30, + ACTIONS(4638), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62048] = 3, + [62081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 6, + ACTIONS(4644), 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(1537), 30, + ACTIONS(4642), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [62092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1541), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, [62136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 6, + ACTIONS(4648), 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(1545), 30, + ACTIONS(4646), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62180] = 3, + [62191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 6, + ACTIONS(2726), 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(1561), 30, + ACTIONS(2724), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62224] = 3, + [62246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 6, + ACTIONS(4652), 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(1573), 30, + ACTIONS(4650), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62268] = 3, + [62301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 6, + ACTIONS(6114), 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(1961), 30, + ACTIONS(6112), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [62312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1593), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1591), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, [62356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 6, + ACTIONS(4934), 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(1699), 30, + ACTIONS(4932), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62400] = 3, + [62411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 6, + ACTIONS(5110), 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(1711), 30, + ACTIONS(5108), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62444] = 3, + [62466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 6, + ACTIONS(5114), 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(1885), 30, + ACTIONS(5112), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62488] = 3, + [62521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 6, + ACTIONS(5118), 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(1969), 30, + ACTIONS(5116), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [62532] = 9, + [62576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1399), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5122), 16, + anon_sym_EQ, 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, - [62588] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 4, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 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, - [62650] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6524), 1, - anon_sym_LBRACE, - STATE(876), 1, - sym_variant_payload, - ACTIONS(1494), 15, - 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(1492), 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, - [62698] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1399), 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, - [62774] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1399), 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, - [62846] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6534), 1, - anon_sym_and, - STATE(3301), 1, - sym_argument_list, - ACTIONS(1409), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1407), 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, - [62916] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(1409), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1407), 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, - [62984] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(1401), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 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, - [63048] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1401), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1399), 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, - [63106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1867), 30, + ACTIONS(5120), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63150] = 3, + [62631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 6, + ACTIONS(5126), 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(1873), 30, + ACTIONS(5124), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63194] = 3, + [62686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 6, + ACTIONS(5130), 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(1929), 30, + ACTIONS(5128), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63238] = 3, + [62741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1935), 6, + ACTIONS(5134), 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(1933), 30, + ACTIONS(5132), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63282] = 3, + [62796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1939), 6, + ACTIONS(5808), 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(1937), 30, + ACTIONS(5806), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63326] = 3, + [62851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 6, + ACTIONS(4578), 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(1941), 30, + ACTIONS(4576), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63370] = 3, + [62906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1947), 6, + ACTIONS(5138), 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(1945), 30, + ACTIONS(5136), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63414] = 3, + [62961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(423), 6, + ACTIONS(4752), 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(418), 30, + ACTIONS(4750), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63458] = 3, + [63016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 6, + ACTIONS(5760), 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(1819), 30, + ACTIONS(5758), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63502] = 9, + [63071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1367), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5142), 16, + anon_sym_EQ, 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, - [63558] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 4, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 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, - [63620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1813), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1811), 30, + ACTIONS(5140), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [63664] = 3, + [63126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 6, + ACTIONS(4518), 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(457), 30, + ACTIONS(4516), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [63708] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1369), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1367), 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, - [63784] = 17, + [63181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(5146), 16, + anon_sym_EQ, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1367), 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, - [63856] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6534), 1, - anon_sym_and, - STATE(3301), 1, - sym_argument_list, - ACTIONS(1486), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1484), 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, - [63926] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(1486), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1484), 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, - [63994] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(1369), 4, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 16, + 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(5144), 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_catch, + anon_sym_CARET, sym__newline, - [64058] = 10, + [63236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(5150), 16, + anon_sym_EQ, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1369), 5, + 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, - ACTIONS(1367), 21, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(5148), 31, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE, + 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_catch, + anon_sym_CARET, + sym__newline, + [63291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4522), 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(4520), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5154), 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(5152), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 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(5156), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 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(4524), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 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(5698), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 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(5160), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 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(5164), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5170), 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(5168), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4534), 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(4532), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 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(5172), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 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(5180), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 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(5184), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [63951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 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(5190), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [64006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 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(5194), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [64061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 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(5198), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, sym__newline, [64116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 6, + ACTIONS(5204), 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(1839), 30, + ACTIONS(5202), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64160] = 3, + [64171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 6, + ACTIONS(5208), 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(2049), 30, + ACTIONS(5206), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64204] = 3, + [64226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 6, + ACTIONS(6124), 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(1847), 30, + ACTIONS(6122), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64248] = 3, + [64281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 6, + ACTIONS(5212), 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(1851), 30, + ACTIONS(5210), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [64292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1859), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, [64336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 6, + ACTIONS(5216), 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(1863), 30, + ACTIONS(5214), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64380] = 3, + [64391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(396), 6, + ACTIONS(6134), 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(391), 30, + ACTIONS(6132), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64424] = 3, + [64446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 6, + ACTIONS(5220), 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(1889), 30, + ACTIONS(5218), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64468] = 3, + [64501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 6, + ACTIONS(5224), 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(1893), 30, + ACTIONS(5222), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [64512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1897), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, [64556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 6, + ACTIONS(5228), 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(1901), 30, + ACTIONS(5226), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64600] = 3, + [64611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 6, + ACTIONS(5232), 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(449), 30, + ACTIONS(5230), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64644] = 3, + [64666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(459), 6, + ACTIONS(5236), 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(461), 30, + ACTIONS(5234), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64688] = 3, + [64721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 6, + ACTIONS(5240), 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(1905), 30, + ACTIONS(5238), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [64732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1911), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1909), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, [64776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 6, + ACTIONS(5244), 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(1913), 30, + ACTIONS(5242), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64820] = 3, + [64831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 6, + ACTIONS(5248), 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(1917), 30, + ACTIONS(5246), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64864] = 3, + [64886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 6, + ACTIONS(5252), 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(1921), 30, + ACTIONS(5250), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [64908] = 3, + [64941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1927), 6, + ACTIONS(5256), 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(1925), 30, + ACTIONS(5254), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [64952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1949), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - 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, - anon_sym_SLASH, anon_sym_CARET, sym__newline, [64996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 6, + ACTIONS(5260), 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(1953), 30, + ACTIONS(5258), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [65040] = 3, + [65051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 6, + ACTIONS(5264), 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(1607), 30, + ACTIONS(5262), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, - 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5268), 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(5266), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 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(5270), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5276), 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(5274), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 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(4502), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5280), 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(5278), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5284), 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(5282), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5288), 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(5286), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5292), 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(5290), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5296), 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(5294), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 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(5298), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6138), 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(6136), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6142), 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(6140), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6152), 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(6150), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5308), 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(5306), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5312), 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(5310), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5318), 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(5316), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [65986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5322), 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(5320), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 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(5324), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 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(5328), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 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(5332), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5338), 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(5336), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5342), 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(5340), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5346), 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(5344), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 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(5348), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 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(5352), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5358), 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(5356), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5362), 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(5360), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5366), 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(5364), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 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(4536), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66701] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2726), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2724), 21, + anon_sym_RPAREN, + 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, - 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, - [65084] = 20, + [66782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6546), 1, - anon_sym_orelse, - ACTIONS(6548), 1, - anon_sym_catch, - ACTIONS(6550), 1, - anon_sym_or, - ACTIONS(6552), 1, - anon_sym_and, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1367), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1369), 6, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - [65161] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1399), 13, - ts_builtin_sym_end, + ACTIONS(5370), 16, + anon_sym_EQ, 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(1401), 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, - [65216] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1484), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1486), 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, - [65285] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6550), 1, - anon_sym_or, - ACTIONS(6552), 1, - anon_sym_and, - ACTIONS(6558), 1, + anon_sym_AMP, anon_sym_xor, - ACTIONS(6560), 1, anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1367), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1369), 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, - [65358] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6552), 1, - anon_sym_and, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1484), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1486), 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, - [65429] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6552), 1, - anon_sym_and, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1407), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1409), 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, - [65500] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 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(1369), 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, - [65555] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1367), 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(1369), 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, - [65620] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, anon_sym_DOT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 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(1369), 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, - [65677] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, + ACTIONS(5368), 31, anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6546), 1, - anon_sym_orelse, - ACTIONS(6548), 1, - anon_sym_catch, - ACTIONS(6550), 1, - anon_sym_or, - ACTIONS(6552), 1, - anon_sym_and, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - ACTIONS(6564), 1, - anon_sym_DOT_DOT, - ACTIONS(6566), 1, - anon_sym_DOT_DOT_EQ, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(2399), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2397), 5, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - sym_identifier, - [65758] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6546), 1, - anon_sym_orelse, - ACTIONS(6548), 1, - anon_sym_catch, - ACTIONS(6550), 1, - anon_sym_or, - ACTIONS(6552), 1, - anon_sym_and, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1401), 6, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - [65835] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1367), 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(1369), 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, - [65896] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6550), 1, - anon_sym_or, - ACTIONS(6552), 1, - anon_sym_and, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1401), 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, - [65969] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 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(1401), 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, - [66034] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 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(1401), 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, - [66095] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6558), 1, - anon_sym_xor, - ACTIONS(6560), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6542), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1407), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6554), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1409), 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, - [66164] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1399), 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(1401), 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, - [66221] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6568), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6570), 1, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, anon_sym_SEMI, - ACTIONS(6572), 1, anon_sym_RBRACK, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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(6578), 1, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, sym__newline, - STATE(3301), 1, + [66837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5374), 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(5372), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 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(5376), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [66947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5382), 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(5380), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5386), 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(5384), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5390), 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(5388), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 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(5392), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5398), 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(5396), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5402), 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(5400), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5406), 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(5404), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5410), 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(5408), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5414), 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(5412), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 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(4938), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5732), 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(5730), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 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(4942), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 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(4540), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 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(5734), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67717] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, sym_argument_list, - STATE(4153), 1, - aux_sym_match_arm_repeat1, - STATE(4598), 1, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 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(2670), 26, + anon_sym_RPAREN, + 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [67784] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 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(2670), 26, + anon_sym_RPAREN, + 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [67855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 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(4946), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 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(4950), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [67965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 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(4954), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5418), 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(5416), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4656), 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(4654), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 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(4658), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 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(4666), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 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(5420), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68295] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 21, + anon_sym_RPAREN, + 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, + sym__newline, + [68376] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12281), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2692), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 21, + anon_sym_RPAREN, + 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, + sym__newline, + [68455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 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(4958), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 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(5424), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11629), 8, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12289), 39, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [68620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 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(4670), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68675] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12291), 1, + sym__newline, + STATE(8496), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(8603), 7, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + ACTIONS(8601), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [68734] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(12273), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(2692), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12275), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [66307] = 25, + ACTIONS(2690), 22, + anon_sym_RPAREN, + 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_and, + anon_sym_catch, + sym__newline, + [68811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(5740), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6580), 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, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(5738), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6582), 1, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, anon_sym_SEMI, - ACTIONS(6584), 1, anon_sym_RBRACK, - ACTIONS(6586), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, sym__newline, - STATE(3301), 1, + [68866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 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(5742), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 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(4676), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [68976] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, sym_argument_list, - STATE(4022), 1, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 5, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 26, + anon_sym_RPAREN, + 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [69049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5434), 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(5432), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 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(4962), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69159] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 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(2670), 26, + anon_sym_RPAREN, + 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [69228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 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(4680), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 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(4966), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 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(4684), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 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(4688), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 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(5436), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 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(5442), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 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(5446), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 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(4970), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 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(4692), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5452), 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(5450), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 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(5454), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 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(5458), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 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(5462), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5468), 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(5466), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [69998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 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(5470), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5476), 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(5474), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5480), 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(5478), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5484), 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(5482), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 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(5486), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5492), 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(5490), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 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(5494), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5500), 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(5498), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5504), 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(5502), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 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(5506), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 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(5510), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5516), 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(5514), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5520), 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(5518), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5524), 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(5522), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 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(4604), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5532), 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(5530), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5536), 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(5534), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 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(5538), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [70988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5544), 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(5542), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5548), 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(5546), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5552), 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(5550), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5560), 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(5558), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 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(5562), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 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(5568), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5574), 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(5572), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 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(5576), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5582), 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(5580), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5586), 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(5584), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5590), 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(5588), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5594), 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(5592), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5598), 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(5596), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5602), 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(5600), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 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(5604), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5610), 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(5608), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 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(5612), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 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(4696), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [71978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 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(5616), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 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(4700), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 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(5620), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 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(4704), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 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(5624), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 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(4708), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 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(4712), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 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(4716), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4788), 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(4786), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5800), 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(5798), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 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(5854), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5634), 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(5632), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 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(5636), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 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(4974), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5642), 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(5640), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5860), 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(5858), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 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(1252), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 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(5802), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [72968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5646), 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(5644), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73023] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2696), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2694), 21, + anon_sym_RPAREN, + 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, + sym__newline, + [73104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6168), 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(6166), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 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(4856), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6172), 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(6170), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 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(4580), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 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(4584), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6176), 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(6174), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73434] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1299), 1, + anon_sym_BANG, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(1285), 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(1292), 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_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_catch, + sym_identifier, + [73497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4590), 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(4588), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 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(4860), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4390), 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(4388), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 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(4978), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 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(4982), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6186), 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(6184), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 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(4616), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 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(4986), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 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(4990), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [73992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 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(4592), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4748), 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(4746), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 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(4994), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 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(4998), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6190), 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(6188), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74267] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 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(2702), 26, + anon_sym_RPAREN, + 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [74334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6194), 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(6192), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 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(5002), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 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(5006), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6198), 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(6196), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 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(1198), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 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(6254), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 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(5010), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 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(5014), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12294), 1, + anon_sym_LBRACE, + STATE(2548), 1, + sym_variant_payload, + ACTIONS(2657), 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(2659), 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_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_catch, + anon_sym_DOT, + sym_identifier, + [74833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5916), 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(5914), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 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(4828), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 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(4502), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [74998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 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(5018), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 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(4560), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6272), 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(6270), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6276), 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(6274), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6288), 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(6286), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 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(4914), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6292), 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(6290), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6296), 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(6294), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5920), 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(5918), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 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(4622), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 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(5022), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1333), 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(1335), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 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(5026), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75713] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 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(2702), 26, + anon_sym_RPAREN, + 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [75784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 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(4832), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 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(4720), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 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(5030), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [75949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 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(4552), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4756), 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(4754), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 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(5034), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 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(5038), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4628), 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(4626), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 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(2710), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 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(4864), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 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(4868), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4736), 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(4732), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 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(5042), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 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(4872), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4816), 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(4814), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6312), 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(6310), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6316), 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(6314), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6320), 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(6318), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6324), 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(6322), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6328), 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(6326), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6332), 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(6330), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 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(4418), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [76994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2716), 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(2714), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4796), 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(4794), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6018), 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(6016), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 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(5046), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 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(4758), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4792), 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(4790), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 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(4798), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 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(5054), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 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(4422), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6336), 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(6334), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6340), 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(6338), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6344), 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(6342), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6348), 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(6346), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 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(5058), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 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(4436), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 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(4440), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1292), 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(1285), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6022), 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(6020), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [77984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6042), 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(6040), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78039] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 21, + anon_sym_RPAREN, + 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, + sym__newline, + [78120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5782), 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(5778), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 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(4612), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4838), 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(4836), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 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(4840), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 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(2694), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 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(5064), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78450] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12281), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2708), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 21, + anon_sym_RPAREN, + 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, + sym__newline, + [78529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 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(4762), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 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(4414), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6056), 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(6054), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 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(4556), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78749] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2708), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 22, + anon_sym_RPAREN, + 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_and, + anon_sym_catch, + sym__newline, + [78826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 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(5770), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6060), 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(6058), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 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(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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [78991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 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(4844), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4780), 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(4778), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79101] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 5, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 26, + anon_sym_RPAREN, + 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [79174] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 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(2702), 26, + anon_sym_RPAREN, + 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [79243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 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(5774), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 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(4820), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 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(3062), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5788), 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(5786), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 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(4364), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79518] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2712), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2710), 21, + anon_sym_RPAREN, + 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, + sym__newline, + [79599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 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(4368), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 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(4372), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5792), 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(5790), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 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(5794), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 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(4570), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4468), 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(4466), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [79929] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2716), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2714), 21, + anon_sym_RPAREN, + 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, + sym__newline, + [80010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 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(4548), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 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(5068), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 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(4920), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 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(5072), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 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(4630), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 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(4876), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4882), 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(4880), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5078), 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(5076), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 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(4884), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 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(4888), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 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(4728), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 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(5080), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4744), 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(4742), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 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(4766), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 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(4892), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 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(4924), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 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(4770), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [80945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 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(5084), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 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(4484), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12296), 1, + anon_sym_COLON, + ACTIONS(4490), 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(4488), 30, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12298), 1, + anon_sym_COLON, + ACTIONS(4496), 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(4494), 30, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6074), 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(6072), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4896), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 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(4848), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 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(4900), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 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(4634), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 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(5718), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 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(4904), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 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(4470), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 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(4774), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 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(4782), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 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(4824), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 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(4802), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 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(5088), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4382), 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(4380), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4386), 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(4384), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [81994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 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(5092), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [82049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4808), 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(4806), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [82104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 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(4596), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [82159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 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(4600), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [82214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 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(4908), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [82269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 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(5628), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [82324] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12300), 1, + anon_sym_else, + ACTIONS(12302), 1, + sym__newline, + STATE(14302), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 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(4426), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [82384] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 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_or, + anon_sym_and, + anon_sym_catch, + sym_identifier, + ACTIONS(2706), 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, + [82460] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12317), 1, + anon_sym_else, + ACTIONS(12319), 1, + sym__newline, + STATE(14594), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4456), 20, + 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, + ACTIONS(4458), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [82520] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2692), 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_or, + anon_sym_and, + anon_sym_catch, + sym_identifier, + ACTIONS(2690), 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, + [82596] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 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_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_catch, + sym_identifier, + ACTIONS(2702), 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, + [82666] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, + anon_sym_else, + ACTIONS(12325), 1, + sym__newline, + STATE(14116), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4392), 20, + 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, + ACTIONS(4394), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [82726] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12328), 1, + anon_sym_EQ, + ACTIONS(12332), 1, + anon_sym_DOT_DOT, + ACTIONS(12334), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12342), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5750), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + sym_identifier, + ACTIONS(12330), 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, + [82818] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 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_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_catch, + sym_identifier, + ACTIONS(2670), 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, + [82890] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 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(2672), 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_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_catch, + sym_identifier, + [82958] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12344), 1, + anon_sym_else, + ACTIONS(12347), 1, + sym__newline, + STATE(14614), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [83018] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12350), 1, + anon_sym_else, + ACTIONS(12353), 1, + sym__newline, + STATE(14617), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [83078] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2696), 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(2694), 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, + [83158] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12356), 1, + anon_sym_else, + ACTIONS(12358), 1, + sym__newline, + STATE(14595), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4474), 20, + 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, + ACTIONS(4476), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [83218] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 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_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_catch, + sym_identifier, + ACTIONS(2702), 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, + [83290] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12361), 1, + anon_sym_else, + ACTIONS(12363), 1, + sym__newline, + STATE(14300), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [83350] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2726), 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(2724), 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, + [83430] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2702), 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(2704), 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_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_catch, + sym_identifier, + [83498] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12332), 1, + anon_sym_DOT_DOT, + ACTIONS(12334), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12342), 1, + anon_sym_catch, + ACTIONS(12366), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5750), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + sym_identifier, + ACTIONS(12368), 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, + [83590] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2712), 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(2710), 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, + [83670] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2716), 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(2714), 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, + [83750] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12370), 1, + anon_sym_else, + ACTIONS(12373), 1, + sym__newline, + STATE(14616), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 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(4426), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [83810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12376), 1, + anon_sym_else, + ACTIONS(12378), 1, + sym__newline, + STATE(14301), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 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(4404), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [83870] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12342), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2672), 7, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(2670), 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, + [83954] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12381), 1, + anon_sym_else, + ACTIONS(12384), 1, + sym__newline, + STATE(14615), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 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(4404), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [84014] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2672), 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(2670), 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, + [84094] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12387), 1, + anon_sym_else, + ACTIONS(12390), 1, + sym__newline, + STATE(14151), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4404), 20, + 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, + ACTIONS(4406), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [84154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12393), 1, + anon_sym_else, + ACTIONS(12396), 1, + sym__newline, + STATE(14152), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4426), 20, + 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, + ACTIONS(4428), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [84214] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12399), 1, + anon_sym_else, + ACTIONS(12401), 1, + sym__newline, + STATE(14590), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4392), 20, + 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, + ACTIONS(4394), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [84274] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2704), 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(2702), 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, + [84354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12404), 1, + anon_sym_else, + ACTIONS(12406), 1, + sym__newline, + STATE(14303), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [84414] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12409), 1, + anon_sym_else, + ACTIONS(12412), 1, + sym__newline, + STATE(14618), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [84474] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12332), 1, + anon_sym_DOT_DOT, + ACTIONS(12334), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12342), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5708), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + sym_identifier, + ACTIONS(5706), 12, + 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, + sym__newline, + [84562] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12415), 1, + anon_sym_else, + ACTIONS(12417), 1, + sym__newline, + STATE(14306), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [84622] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12422), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 18, + anon_sym_RPAREN, + 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_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [84706] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 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(2672), 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_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_catch, + sym_identifier, + [84772] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 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_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_catch, + sym_identifier, + ACTIONS(2670), 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, + [84842] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12340), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2692), 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_or, + anon_sym_catch, + sym_identifier, + ACTIONS(2690), 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, + [84920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12424), 1, + anon_sym_else, + ACTIONS(12427), 1, + sym__newline, + STATE(14195), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4444), 20, + 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, + ACTIONS(4446), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [84980] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12422), 1, + anon_sym_catch, + ACTIONS(12430), 1, + anon_sym_EQ, + ACTIONS(12436), 1, + anon_sym_DOT_DOT, + ACTIONS(12438), 1, + anon_sym_DOT_DOT_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5748), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_else, + sym__newline, + ACTIONS(12433), 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, + [85070] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12440), 1, + anon_sym_else, + ACTIONS(12443), 1, + sym__newline, + STATE(14197), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4456), 20, + 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, + ACTIONS(4458), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [85130] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12446), 1, + anon_sym_else, + ACTIONS(12448), 1, + sym__newline, + STATE(14591), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4404), 20, + 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, + ACTIONS(4406), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [85190] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12340), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 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_or, + anon_sym_catch, + sym_identifier, + ACTIONS(2706), 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, + [85268] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12332), 1, + anon_sym_DOT_DOT, + ACTIONS(12334), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12342), 1, + anon_sym_catch, + ACTIONS(12451), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5750), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + sym_identifier, + ACTIONS(12454), 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, + [85360] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12457), 1, + anon_sym_else, + ACTIONS(12459), 1, + sym__newline, + STATE(14592), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4426), 20, + 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, + ACTIONS(4428), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [85420] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12422), 1, + anon_sym_catch, + ACTIONS(12436), 1, + anon_sym_DOT_DOT, + ACTIONS(12438), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12462), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5748), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_else, + sym__newline, + ACTIONS(12464), 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, + [85510] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12422), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 18, + anon_sym_RPAREN, + 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_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [85594] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12422), 1, + anon_sym_catch, + ACTIONS(12436), 1, + anon_sym_DOT_DOT, + ACTIONS(12438), 1, + anon_sym_DOT_DOT_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 17, + anon_sym_RPAREN, + 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_else, + sym__newline, + [85682] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12466), 1, + anon_sym_else, + ACTIONS(12468), 1, + sym__newline, + STATE(14593), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4444), 20, + 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, + ACTIONS(4446), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [85742] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12471), 1, + anon_sym_else, + ACTIONS(12474), 1, + sym__newline, + STATE(14619), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [85802] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12477), 1, + anon_sym_else, + ACTIONS(12480), 1, + sym__newline, + STATE(14279), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4474), 20, + 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, + ACTIONS(4476), 23, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [85862] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12342), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2704), 7, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(2702), 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, + [85946] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12483), 1, + anon_sym_else, + ACTIONS(12485), 1, + sym__newline, + STATE(14331), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 27, + 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_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [86006] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12492), 1, + anon_sym_COMMA, + STATE(8791), 1, + aux_sym_parameter_repeat1, + ACTIONS(12490), 6, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(12488), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [86064] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2702), 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(2704), 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_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_catch, + sym_identifier, + [86130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12497), 7, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12495), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [86183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12501), 7, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(12499), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [86236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12505), 7, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(12503), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [86289] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12507), 1, + anon_sym_EQ, + ACTIONS(12513), 1, + anon_sym_DOT_DOT, + ACTIONS(12515), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12517), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5750), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12510), 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, + [86380] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12517), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2672), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(2670), 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, + [86463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12521), 7, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12519), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [86516] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12517), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2704), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(2702), 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, + [86599] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12513), 1, + anon_sym_DOT_DOT, + ACTIONS(12515), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12517), 1, + anon_sym_catch, + ACTIONS(12523), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5750), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12525), 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, + [86690] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12513), 1, + anon_sym_DOT_DOT, + ACTIONS(12515), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12517), 1, + anon_sym_catch, + ACTIONS(12527), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5750), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12529), 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, + [86781] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12531), 1, + anon_sym_EQ, + ACTIONS(12535), 1, + anon_sym_DOT_DOT, + ACTIONS(12537), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12539), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5748), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + sym__newline, + ACTIONS(12533), 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, + [86870] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12336), 1, + anon_sym_orelse, + ACTIONS(12338), 1, + anon_sym_or, + ACTIONS(12340), 1, + anon_sym_and, + ACTIONS(12513), 1, + anon_sym_DOT_DOT, + ACTIONS(12515), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12517), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12313), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12307), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12315), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5708), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + sym_identifier, + ACTIONS(5706), 12, + 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, + sym__newline, + [86957] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12535), 1, + anon_sym_DOT_DOT, + ACTIONS(12537), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12539), 1, + anon_sym_catch, + ACTIONS(12541), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5748), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + sym__newline, + ACTIONS(12544), 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, + [87046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12549), 7, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12547), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [87099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12553), 7, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12551), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [87152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12557), 7, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12555), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [87205] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12539), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 17, + anon_sym_RPAREN, + 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_DOT_DOT_EQ, + sym__newline, + [87288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12561), 7, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12559), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [87341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12565), 7, + anon_sym_LPAREN, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(12563), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [87394] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12539), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 17, + anon_sym_RPAREN, + 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_DOT_DOT_EQ, + sym__newline, + [87477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12569), 7, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_struct_type_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(12567), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_noreturn, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + 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, + [87530] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12535), 1, + anon_sym_DOT_DOT, + ACTIONS(12537), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12539), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 16, + anon_sym_RPAREN, + 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, + sym__newline, + [87617] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12571), 1, + anon_sym_else, + ACTIONS(12574), 1, + sym__newline, + STATE(14364), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4474), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [87675] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2726), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(2724), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [87753] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + anon_sym_BANG, + ACTIONS(12593), 1, + anon_sym_COLON, + ACTIONS(1292), 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(1285), 24, + anon_sym_COMMA, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [87815] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12598), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [87897] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12598), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [87979] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12600), 1, + anon_sym_else, + ACTIONS(12602), 1, + sym__newline, + STATE(14632), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4392), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [88037] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12605), 1, + anon_sym_else, + ACTIONS(12607), 1, + sym__newline, + STATE(14633), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4404), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [88095] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 8, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_catch, + sym_identifier, + ACTIONS(2706), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [88169] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12610), 1, + anon_sym_else, + ACTIONS(12612), 1, + sym__newline, + STATE(14634), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4426), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [88227] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12615), 1, + anon_sym_else, + ACTIONS(12618), 1, + sym__newline, + STATE(14361), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4444), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [88285] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 18, + 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_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(2672), 18, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + sym_identifier, + [88349] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_catch, + sym_identifier, + ACTIONS(2670), 18, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [88417] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7802), 1, + anon_sym_BANG, + ACTIONS(12621), 1, + anon_sym_COLON, + ACTIONS(1292), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(1285), 23, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [88479] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 10, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_catch, + sym_identifier, + ACTIONS(2702), 18, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [88549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12623), 1, + anon_sym_else, + ACTIONS(12626), 1, + sym__newline, + STATE(14362), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4456), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [88607] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2702), 18, + 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_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(2704), 18, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + sym_identifier, + [88671] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2692), 8, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_catch, + sym_identifier, + ACTIONS(2690), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [88745] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2672), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(2670), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [88823] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2704), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(2702), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [88901] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12598), 1, + anon_sym_catch, + ACTIONS(12629), 1, + anon_sym_DOT_DOT, + ACTIONS(12631), 1, + anon_sym_DOT_DOT_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5708), 3, + anon_sym_EQ, + anon_sym_else, + sym_identifier, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 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_COLON, + sym__newline, + [88987] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 10, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_catch, + sym_identifier, + ACTIONS(2670), 18, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [89057] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12585), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_catch, + sym_identifier, + ACTIONS(2706), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [89133] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12598), 1, + anon_sym_catch, + ACTIONS(12629), 1, + anon_sym_DOT_DOT, + ACTIONS(12631), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12633), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5750), 2, + anon_sym_else, + sym_identifier, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_LBRACE, + anon_sym_COLON, + sym__newline, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12636), 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, + [89223] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12639), 1, + anon_sym_else, + ACTIONS(12641), 1, + sym__newline, + STATE(14636), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4456), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [89281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12644), 1, + anon_sym_else, + ACTIONS(12647), 1, + sym__newline, + STATE(14358), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4392), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [89339] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 16, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + sym_identifier, + ACTIONS(2670), 18, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [89405] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12650), 1, + anon_sym_else, + ACTIONS(12653), 1, + sym__newline, + STATE(14359), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4404), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [89463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12656), 1, + anon_sym_else, + ACTIONS(12658), 1, + sym__newline, + STATE(14637), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4474), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [89521] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12598), 1, + anon_sym_catch, + ACTIONS(12629), 1, + anon_sym_DOT_DOT, + ACTIONS(12631), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12661), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5750), 2, + anon_sym_else, + sym_identifier, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_LBRACE, + anon_sym_COLON, + sym__newline, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12663), 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, + [89611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12665), 1, + anon_sym_else, + ACTIONS(12668), 1, + sym__newline, + STATE(14360), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4426), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [89669] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 16, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + sym_identifier, + ACTIONS(2702), 18, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [89735] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2712), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(2710), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [89813] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_catch, + sym_identifier, + ACTIONS(2702), 18, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [89881] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12585), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2692), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_catch, + sym_identifier, + ACTIONS(2690), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [89957] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2696), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(2694), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [90035] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2716), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(2714), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [90113] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12671), 1, + anon_sym_else, + ACTIONS(12673), 1, + sym__newline, + STATE(14635), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4444), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + [90171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12676), 1, + anon_sym_else, + ACTIONS(12679), 1, + sym__newline, + STATE(14606), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4456), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4458), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [90228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12682), 1, + anon_sym_else, + ACTIONS(12685), 1, + sym__newline, + STATE(14602), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4392), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4394), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [90285] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12688), 1, + anon_sym_EQ, + ACTIONS(12692), 1, + anon_sym_DOT_DOT, + ACTIONS(12694), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12696), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5748), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + sym__newline, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12690), 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, + [90372] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12698), 1, + anon_sym_else, + ACTIONS(12701), 1, + sym__newline, + STATE(14603), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4404), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4406), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [90429] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12704), 1, + anon_sym_else, + ACTIONS(12707), 1, + sym__newline, + STATE(14604), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4426), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4428), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [90486] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12710), 1, + anon_sym_else, + ACTIONS(12713), 1, + sym__newline, + STATE(14605), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4444), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4446), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [90543] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12716), 1, + anon_sym_DOT_DOT, + ACTIONS(12718), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12720), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5708), 3, + anon_sym_EQ, + anon_sym_else, + sym_identifier, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 12, + 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, + sym__newline, + [90628] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12716), 1, + anon_sym_DOT_DOT, + ACTIONS(12718), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12720), 1, + anon_sym_catch, + ACTIONS(12722), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(5750), 2, + anon_sym_else, + sym_identifier, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12725), 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, + [90717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12728), 1, + anon_sym_else, + ACTIONS(12731), 1, + sym__newline, + STATE(14607), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4474), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4476), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [90774] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12692), 1, + anon_sym_DOT_DOT, + ACTIONS(12694), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12696), 1, + anon_sym_catch, + ACTIONS(12734), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5748), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + sym__newline, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12737), 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, + [90861] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8863), 1, + aux_sym_type_repeat1, + ACTIONS(3026), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(3024), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [90914] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12716), 1, + anon_sym_DOT_DOT, + ACTIONS(12718), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12720), 1, + anon_sym_catch, + ACTIONS(12740), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(5750), 2, + anon_sym_else, + sym_identifier, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12742), 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, + [91003] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8871), 1, + aux_sym_type_repeat1, + ACTIONS(3058), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(3056), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [91056] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12744), 1, + anon_sym_else, + ACTIONS(12746), 1, + sym__newline, + STATE(14255), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4392), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4394), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [91113] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12749), 1, + anon_sym_else, + ACTIONS(12751), 1, + sym__newline, + STATE(14265), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4404), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4406), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [91170] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12754), 1, + anon_sym_else, + ACTIONS(12756), 1, + sym__newline, + STATE(14266), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4426), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4428), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [91227] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12759), 1, + anon_sym_else, + ACTIONS(12761), 1, + sym__newline, + STATE(14275), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4444), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4446), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [91284] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12764), 1, + anon_sym_else, + ACTIONS(12766), 1, + sym__newline, + STATE(14276), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4456), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4458), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [91341] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12769), 1, + anon_sym_else, + ACTIONS(12771), 1, + sym__newline, + STATE(14277), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4474), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + ACTIONS(4476), 20, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_orelse, + 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_catch, + anon_sym_DOT, + sym_identifier, + [91398] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(7164), 1, + anon_sym_BANG, + ACTIONS(12259), 1, + anon_sym_COLON, + ACTIONS(1305), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(1292), 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(1285), 23, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [91457] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12774), 1, + anon_sym_PIPE, + STATE(8871), 1, + aux_sym_type_repeat1, + ACTIONS(2903), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2901), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [91512] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12777), 1, + anon_sym_else, + ACTIONS(12780), 1, + sym__newline, + STATE(14412), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [91569] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12783), 1, + anon_sym_else, + ACTIONS(12786), 1, + sym__newline, + STATE(14413), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 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(4404), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [91626] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12789), 1, + anon_sym_else, + ACTIONS(12792), 1, + sym__newline, + STATE(14414), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 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(4426), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [91683] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12795), 1, + anon_sym_else, + ACTIONS(12798), 1, + sym__newline, + STATE(14415), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [91740] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12801), 1, + anon_sym_else, + ACTIONS(12804), 1, + sym__newline, + STATE(14418), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [91797] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12807), 1, + anon_sym_else, + ACTIONS(12810), 1, + sym__newline, + STATE(14419), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [91854] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12813), 1, + anon_sym_EQ, + ACTIONS(12819), 1, + anon_sym_DOT_DOT, + ACTIONS(12821), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12823), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_LBRACE, + anon_sym_COLON, + sym__newline, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12816), 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, + [91943] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12825), 1, + anon_sym_else, + ACTIONS(12827), 1, + sym__newline, + STATE(14650), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [92000] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12830), 1, + anon_sym_else, + ACTIONS(12832), 1, + sym__newline, + STATE(14651), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 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(4404), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [92057] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12716), 1, + anon_sym_DOT_DOT, + ACTIONS(12718), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12720), 1, + anon_sym_catch, + ACTIONS(12835), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(5750), 2, + anon_sym_else, + sym_identifier, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12837), 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, + [92146] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12839), 1, + anon_sym_else, + ACTIONS(12841), 1, + sym__newline, + STATE(14652), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 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(4426), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [92203] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12844), 1, + anon_sym_else, + ACTIONS(12846), 1, + sym__newline, + STATE(14653), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [92260] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12849), 1, + anon_sym_else, + ACTIONS(12851), 1, + sym__newline, + STATE(14654), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [92317] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12854), 1, + anon_sym_else, + ACTIONS(12856), 1, + sym__newline, + STATE(14655), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [92374] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12819), 1, + anon_sym_DOT_DOT, + ACTIONS(12821), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12823), 1, + anon_sym_catch, + ACTIONS(12859), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_LBRACE, + anon_sym_COLON, + sym__newline, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12861), 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, + [92463] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12696), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 15, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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, + sym__newline, + [92544] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12696), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 15, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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, + sym__newline, + [92625] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12720), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 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, + [92706] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12720), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 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, + [92787] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12823), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2672), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [92868] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12823), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2704), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 14, + 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_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [92949] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7802), 1, + anon_sym_BANG, + ACTIONS(1292), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(1285), 23, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12863), 1, + anon_sym_LBRACE, + STATE(9070), 1, + sym_variant_payload, + ACTIONS(2659), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2657), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93063] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12692), 1, + anon_sym_DOT_DOT, + ACTIONS(12694), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12696), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 14, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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, + sym__newline, + [93148] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12819), 1, + anon_sym_DOT_DOT, + ACTIONS(12821), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12823), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5708), 2, + anon_sym_EQ, + sym_identifier, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 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_COLON, + sym__newline, + [93233] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + STATE(8979), 1, + sym_argument_list, + ACTIONS(2966), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2964), 23, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93288] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2704), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [93364] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12895), 1, + anon_sym_DOT_DOT, + ACTIONS(12897), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(12901), 1, + anon_sym_catch, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12889), 2, + anon_sym_EQ, + anon_sym_PIPE_EQ, + ACTIONS(5748), 3, + anon_sym_else, + anon_sym_PIPE2, + sym__newline, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12892), 9, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [93450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5888), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5886), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93500] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2666), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2664), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [93560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5892), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5890), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93610] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12903), 1, + anon_sym_EQ, + ACTIONS(12907), 1, + anon_sym_DOT_DOT, + ACTIONS(12909), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12911), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12905), 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, + [93698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4544), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5896), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5894), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5680), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5678), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93848] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2672), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2670), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [93908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5900), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5898), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [93958] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 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(2670), 21, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [94020] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 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(2670), 21, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [94086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5830), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [94136] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12422), 1, + anon_sym_catch, + ACTIONS(12436), 1, + anon_sym_DOT_DOT, + ACTIONS(12438), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12919), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_RPAREN, + anon_sym_else, + sym__newline, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12921), 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, + [94222] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12911), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2672), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 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, + [94302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5686), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5684), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [94352] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12911), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2704), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 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, + [94432] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2704), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2702), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [94492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5838), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [94542] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12923), 1, + anon_sym_EQ, + ACTIONS(12929), 1, + anon_sym_DOT_DOT, + ACTIONS(12931), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(12943), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_LBRACE, + anon_sym_else, + sym__newline, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12927), 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, + [94628] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(12943), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 14, + 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_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [94708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5688), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [94758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5884), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5882), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [94808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5904), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5902), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [94858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12945), 1, + anon_sym_BANG, + ACTIONS(6000), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5998), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [94910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(7164), 1, + anon_sym_BANG, + ACTIONS(1305), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(1292), 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(1285), 23, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [94966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12947), 1, + anon_sym_LBRACE, + STATE(8692), 1, + sym_variant_payload, + ACTIONS(2659), 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(2657), 24, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95020] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12535), 1, + anon_sym_DOT_DOT, + ACTIONS(12537), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12539), 1, + anon_sym_catch, + ACTIONS(12950), 1, + anon_sym_EQ, + ACTIONS(12952), 1, + anon_sym_RPAREN, + ACTIONS(12957), 1, + sym__newline, + STATE(8498), 1, + sym_argument_list, + STATE(14212), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12955), 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, + [95110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5650), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5648), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5924), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5922), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5928), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5926), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5932), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5930), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5936), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5934), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5938), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95410] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12535), 1, + anon_sym_DOT_DOT, + ACTIONS(12537), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12539), 1, + anon_sym_catch, + ACTIONS(12950), 1, + anon_sym_EQ, + ACTIONS(12960), 1, + anon_sym_RPAREN, + ACTIONS(12963), 1, + sym__newline, + STATE(8498), 1, + sym_argument_list, + STATE(14020), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12955), 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, + [95500] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12966), 1, + anon_sym_BANG, + ACTIONS(6026), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6024), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6032), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6030), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95602] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 16, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [95678] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12968), 1, + anon_sym_else, + ACTIONS(12971), 1, + sym__newline, + STATE(14369), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4392), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [95734] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12937), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2692), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 16, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [95808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5842), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [95858] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2692), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_catch, + sym__newline, + [95930] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12974), 1, + anon_sym_else, + ACTIONS(12977), 1, + sym__newline, + STATE(14370), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4404), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [95986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6052), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6050), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [96036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5704), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [96086] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12980), 1, + anon_sym_else, + ACTIONS(12983), 1, + sym__newline, + STATE(14371), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4426), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [96142] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12986), 1, + anon_sym_else, + ACTIONS(12989), 1, + sym__newline, + STATE(14372), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4444), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [96198] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12992), 1, + anon_sym_else, + ACTIONS(12995), 1, + sym__newline, + STATE(14373), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4456), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [96254] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2672), 5, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 21, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [96322] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12998), 1, + anon_sym_else, + ACTIONS(13001), 1, + sym__newline, + STATE(14374), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4474), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [96378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6006), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6004), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [96428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13004), 1, + anon_sym_COLON, + ACTIONS(4490), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4488), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [96480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13006), 1, + anon_sym_COLON, + ACTIONS(4496), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4494), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [96532] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 14, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PIPE_EQ, + 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(2670), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [96594] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2670), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [96660] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(12901), 1, + anon_sym_catch, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2672), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + [96740] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2672), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [96816] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2692), 4, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [96890] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2692), 4, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_catch, + sym__newline, + [96962] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 6, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [97030] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 12, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PIPE_EQ, + 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(2670), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [97094] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2696), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2694), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [97170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5810), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [97220] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13008), 1, + anon_sym_DOT, + ACTIONS(5956), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5954), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [97272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5848), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5846), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [97322] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 14, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PIPE_EQ, + 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(2702), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [97384] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2702), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [97450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5944), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5942), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [97500] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(12901), 1, + anon_sym_catch, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2704), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + [97580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5826), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [97630] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2708), 4, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [97704] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2708), 4, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_catch, + sym__newline, + [97776] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 6, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [97844] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 12, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PIPE_EQ, + 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(2702), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [97908] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2712), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2710), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [97984] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2716), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2714), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [98060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5948), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5946), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5964), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5962), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5970), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5968), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6064), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6062), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5980), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5978), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98310] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2726), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2724), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [98386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5950), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98436] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13010), 1, + anon_sym_else, + ACTIONS(13013), 1, + sym__newline, + STATE(14380), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [98492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13016), 1, + anon_sym_else, + ACTIONS(13019), 1, + sym__newline, + STATE(14381), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 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(4404), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [98548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13022), 1, + anon_sym_else, + ACTIONS(13025), 1, + sym__newline, + STATE(14382), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 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(4426), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [98604] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13028), 1, + anon_sym_else, + ACTIONS(13031), 1, + sym__newline, + STATE(14383), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [98660] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13034), 1, + anon_sym_else, + ACTIONS(13037), 1, + sym__newline, + STATE(14384), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [98716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13040), 1, + anon_sym_else, + ACTIONS(13043), 1, + sym__newline, + STATE(14385), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [98772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5986), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5984), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5818), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5816), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5988), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5820), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [98972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5994), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5992), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [99022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2901), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [99072] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13046), 1, + anon_sym_else, + ACTIONS(13048), 1, + sym__newline, + STATE(14638), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4392), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99128] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13051), 1, + anon_sym_else, + ACTIONS(13053), 1, + sym__newline, + STATE(14639), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4404), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99184] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13056), 1, + anon_sym_else, + ACTIONS(13058), 1, + sym__newline, + STATE(14640), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4426), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13061), 1, + anon_sym_else, + ACTIONS(13063), 1, + sym__newline, + STATE(14641), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4444), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99296] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13066), 1, + anon_sym_else, + ACTIONS(13068), 1, + sym__newline, + STATE(14642), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4456), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99352] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13071), 1, + anon_sym_else, + ACTIONS(13073), 1, + sym__newline, + STATE(14643), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4474), 22, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99408] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2672), 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(2670), 21, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [99472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5852), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5850), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [99522] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2696), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2694), 16, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [99598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5784), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [99648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5864), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5862), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [99698] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 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(2702), 21, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [99760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13076), 1, + anon_sym_else, + ACTIONS(13078), 1, + sym__newline, + STATE(14644), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99816] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13081), 1, + anon_sym_else, + ACTIONS(13083), 1, + sym__newline, + STATE(14645), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 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(4404), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13086), 1, + anon_sym_else, + ACTIONS(13088), 1, + sym__newline, + STATE(14646), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 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(4426), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [99928] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13091), 1, + anon_sym_EQ, + ACTIONS(13095), 1, + anon_sym_DOT_DOT, + ACTIONS(13097), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13099), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_COMMA, + anon_sym_COLON, + sym__newline, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13093), 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, + [100014] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13101), 1, + anon_sym_else, + ACTIONS(13103), 1, + sym__newline, + STATE(14647), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [100070] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12907), 1, + anon_sym_DOT_DOT, + ACTIONS(12909), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12911), 1, + anon_sym_catch, + ACTIONS(13106), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13109), 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, + [100158] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13112), 1, + anon_sym_else, + ACTIONS(13114), 1, + sym__newline, + STATE(14648), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [100214] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13117), 1, + anon_sym_else, + ACTIONS(13119), 1, + sym__newline, + STATE(14649), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [100270] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 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(2702), 21, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [100336] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(12943), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 14, + 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_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [100416] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 16, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [100492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5868), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5866), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [100542] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12937), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2708), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 16, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [100616] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2708), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_catch, + sym__newline, + [100688] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12929), 1, + anon_sym_DOT_DOT, + ACTIONS(12931), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(12943), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 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_else, + sym__newline, + [100772] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2704), 5, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 21, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [100840] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12907), 1, + anon_sym_DOT_DOT, + ACTIONS(12909), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12911), 1, + anon_sym_catch, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5708), 2, + anon_sym_EQ, + sym_identifier, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 12, + 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, + sym__newline, + [100924] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13095), 1, + anon_sym_DOT_DOT, + ACTIONS(13097), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13099), 1, + anon_sym_catch, + ACTIONS(13122), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_COMMA, + anon_sym_COLON, + sym__newline, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13125), 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, + [101010] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12929), 1, + anon_sym_DOT_DOT, + ACTIONS(12931), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(12943), 1, + anon_sym_catch, + ACTIONS(13128), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5748), 3, + anon_sym_LBRACE, + anon_sym_else, + sym__newline, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13131), 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, + [101096] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(12583), 1, + anon_sym_or, + ACTIONS(12585), 1, + anon_sym_and, + ACTIONS(12596), 1, + anon_sym_orelse, + ACTIONS(12907), 1, + anon_sym_DOT_DOT, + ACTIONS(12909), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12911), 1, + anon_sym_catch, + ACTIONS(13134), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_argument_list, + ACTIONS(2651), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5748), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(12577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12579), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12591), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12587), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13136), 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, + [101184] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2704), 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(2702), 21, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [101248] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2712), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2710), 16, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [101324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5870), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [101374] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2716), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2714), 16, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [101450] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13099), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 14, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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_DOT_DOT_EQ, + sym__newline, + [101530] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13099), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 14, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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_DOT_DOT_EQ, + sym__newline, + [101610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5876), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5874), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [101660] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2726), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2724), 16, + 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_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [101736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4738), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [101786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5722), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [101836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5726), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [101886] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12895), 1, + anon_sym_DOT_DOT, + ACTIONS(12897), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(12901), 1, + anon_sym_catch, + STATE(9133), 1, + sym_argument_list, + ACTIONS(5708), 2, + anon_sym_EQ, + anon_sym_PIPE_EQ, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + sym__newline, + [101970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5654), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5652), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4512), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5908), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5906), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5664), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5670), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5668), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5672), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102270] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12895), 1, + anon_sym_DOT_DOT, + ACTIONS(12897), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(12901), 1, + anon_sym_catch, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13138), 2, + anon_sym_EQ, + anon_sym_PIPE_EQ, + ACTIONS(5748), 3, + anon_sym_else, + anon_sym_PIPE2, + sym__newline, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13140), 9, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [102356] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12887), 1, + anon_sym_DOT, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2647), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2645), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_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_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [102416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5880), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5878), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102466] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13095), 1, + anon_sym_DOT_DOT, + ACTIONS(13097), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13099), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 13, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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, + [102550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5912), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5910), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5974), 18, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5972), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5458), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6348), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6346), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4364), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4368), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4372), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [102895] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(13142), 1, + anon_sym_catch, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2672), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + [102974] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(13142), 1, + anon_sym_catch, + STATE(9133), 1, + sym_argument_list, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2704), 3, + anon_sym_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_DOT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + [103053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4418), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4736), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4732), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4422), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4382), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4380), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4386), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4384), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5636), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4390), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4388), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4436), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4440), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5770), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5774), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5788), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5786), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1292), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(1285), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5792), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5790), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5794), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4414), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5634), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5632), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4468), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4466), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5718), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [103984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4470), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2694), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(3062), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4484), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5800), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5798), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5758), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4516), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4522), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4520), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4524), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4534), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4532), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4536), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4540), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5802), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5808), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5806), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5732), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5730), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5698), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5854), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5860), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5858), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4548), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4552), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [104964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4556), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4560), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4570), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4576), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(1252), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5916), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5914), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4580), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4584), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4590), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4588), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4592), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5734), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5920), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5918), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1333), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(1335), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2710), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2716), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2714), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6018), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6016), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6022), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6020), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6042), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6040), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5782), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5778), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4596), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4600), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [105993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4604), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4612), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4616), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4622), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4628), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4626), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4630), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4634), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4638), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4644), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4642), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4646), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4650), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6056), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6054), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4656), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4654), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4658), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4666), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4670), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5740), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5738), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4676), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5742), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4680), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [106973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4684), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4688), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4692), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4696), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4700), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4704), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4708), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4712), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4716), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5646), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5644), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4720), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4728), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4744), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4742), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4748), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4746), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4752), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4750), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4756), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4754), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4758), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4762), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4766), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4770), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [107953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4774), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4780), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4778), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4782), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4788), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4786), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4792), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4790), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4796), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4794), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4798), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6060), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6058), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4802), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4808), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4806), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4816), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4814), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4820), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4824), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4828), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4832), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4838), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4836), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4840), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4844), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4848), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4852), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4856), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [108982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4860), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4864), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4868), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4872), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4876), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4882), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4880), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4884), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4888), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4892), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109423] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(13144), 1, + anon_sym_EQ, + ACTIONS(13148), 1, + anon_sym_DOT_DOT, + ACTIONS(13150), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13152), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(5748), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13146), 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, + [109508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4896), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4900), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4904), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4908), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4914), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4920), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4924), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4928), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4932), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4938), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [109998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4942), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4946), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4950), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4954), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4958), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4962), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4966), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4970), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4974), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4978), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4982), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4986), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4990), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4502), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4994), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4998), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110831] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(13152), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 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, + [110910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6074), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6072), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [110959] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(13152), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 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, + [111038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6078), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6076), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5002), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5010), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6082), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6080), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5014), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6086), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6084), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5018), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5022), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5026), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5030), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5034), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5038), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(1331), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5042), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5046), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5054), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5058), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5064), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5068), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [111969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(1258), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5072), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5078), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5076), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5080), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(2724), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6114), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6112), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5084), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5088), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5092), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6124), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6122), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5098), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5096), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5100), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6134), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6132), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6138), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6136), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6142), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6140), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5106), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5104), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5110), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5108), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6152), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6150), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(4502), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5114), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5112), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5118), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5116), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [112998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5122), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5120), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5126), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5124), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5128), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5134), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5132), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5136), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5142), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5140), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5146), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5144), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5148), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5154), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5152), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5156), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5160), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5164), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5170), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5168), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5172), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5180), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6168), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6166), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5184), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5190), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5194), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5198), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [113978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5204), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5202), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5208), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5206), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5210), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5216), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5214), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5220), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5218), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6172), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6170), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6176), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6174), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6186), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6184), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6190), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6188), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114419] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(12535), 1, + anon_sym_DOT_DOT, + ACTIONS(12537), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(12539), 1, + anon_sym_catch, + ACTIONS(12950), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(5748), 2, + anon_sym_RPAREN, + sym__newline, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(12955), 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, + [114504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6194), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6192), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6198), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6196), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(1198), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114651] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(13148), 1, + anon_sym_DOT_DOT, + ACTIONS(13150), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13152), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 12, + 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, + sym__newline, + [114734] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12933), 1, + anon_sym_orelse, + ACTIONS(12935), 1, + anon_sym_or, + ACTIONS(12937), 1, + anon_sym_and, + ACTIONS(13148), 1, + anon_sym_DOT_DOT, + ACTIONS(13150), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13152), 1, + anon_sym_catch, + ACTIONS(13154), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(5748), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12917), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12925), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13157), 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, + [114819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6254), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6272), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6270), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5224), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5222), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [114966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5228), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5226), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115015] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13160), 1, + anon_sym_else, + ACTIONS(13162), 1, + sym__newline, + STATE(14723), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 22, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [115070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5232), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5230), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115119] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13164), 1, + anon_sym_else, + ACTIONS(13166), 1, + sym__newline, + STATE(14724), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 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(4404), 22, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [115174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13168), 1, + anon_sym_else, + ACTIONS(13170), 1, + sym__newline, + STATE(14725), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 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(4426), 22, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [115229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13172), 1, + anon_sym_else, + ACTIONS(13174), 1, + sym__newline, + STATE(14726), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 22, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [115284] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13176), 1, + anon_sym_else, + ACTIONS(13178), 1, + sym__newline, + STATE(14727), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 22, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [115339] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13180), 1, + anon_sym_else, + ACTIONS(13182), 1, + sym__newline, + STATE(14728), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 22, + 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_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + [115394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5234), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5238), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5244), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5242), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5248), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5246), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5252), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5250), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5256), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5254), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5258), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5264), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5262), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5268), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5266), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5270), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5276), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5274), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5280), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5278), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [115982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5284), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5282), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5288), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5286), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5292), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5290), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5296), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5294), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5298), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5308), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5306), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5312), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5310), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5318), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5316), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5322), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5320), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5324), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5328), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5332), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5338), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5336), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5342), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5340), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5346), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5344), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5348), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5352), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5358), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5356), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5362), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5360), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5366), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5364), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [116962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5370), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5368), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5374), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5372), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5376), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5382), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5380), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5386), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5384), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5390), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5388), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5392), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5398), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5396), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5402), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5400), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6276), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6274), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6288), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6286), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5406), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5404), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5410), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5408), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5414), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5412), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5418), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5416), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5420), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5424), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5434), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5432), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5436), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5442), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5446), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [117991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5452), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5450), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5454), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5462), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5468), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5466), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5470), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5476), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5474), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5480), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5478), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5484), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5482), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5486), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5492), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5490), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5494), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5500), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5498), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5504), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5502), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5506), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5510), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5516), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5514), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5520), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5518), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5524), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5522), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5528), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5526), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5532), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5530), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [118971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5536), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5534), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5538), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5544), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5542), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5548), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5546), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5552), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5550), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5560), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5558), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5562), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5568), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5574), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5572), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5576), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5582), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5580), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5586), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5584), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5590), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5588), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5594), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5592), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5598), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5596), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6292), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6290), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5602), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5600), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5604), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5610), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5608), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6296), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6294), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [119951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5612), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5616), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5620), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5624), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5642), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5640), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6312), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6310), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6316), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6314), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5628), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120343] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(13142), 1, + anon_sym_catch, + ACTIONS(13188), 1, + anon_sym_DOT_DOT, + ACTIONS(13190), 1, + anon_sym_DOT_DOT_EQ, + STATE(9133), 1, + sym_argument_list, + ACTIONS(5748), 2, + anon_sym_PIPE2, + sym__newline, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13184), 2, + anon_sym_EQ, + anon_sym_PIPE_EQ, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13186), 9, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [120428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6320), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6318), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6324), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6322), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6328), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6326), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120575] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(13142), 1, + anon_sym_catch, + ACTIONS(13188), 1, + anon_sym_DOT_DOT, + ACTIONS(13190), 1, + anon_sym_DOT_DOT_EQ, + STATE(9133), 1, + sym_argument_list, + ACTIONS(5708), 2, + anon_sym_EQ, + anon_sym_PIPE_EQ, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_PIPE2, + sym__newline, + [120658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6332), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6330), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120707] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + ACTIONS(12875), 1, + anon_sym_LBRACK, + ACTIONS(12877), 1, + anon_sym_or, + ACTIONS(12879), 1, + anon_sym_and, + ACTIONS(12887), 1, + anon_sym_DOT, + ACTIONS(12899), 1, + anon_sym_orelse, + ACTIONS(13142), 1, + anon_sym_catch, + ACTIONS(13188), 1, + anon_sym_DOT_DOT, + ACTIONS(13190), 1, + anon_sym_DOT_DOT_EQ, + STATE(9133), 1, + sym_argument_list, + ACTIONS(5748), 2, + anon_sym_PIPE2, + sym__newline, + ACTIONS(12867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12871), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12873), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13192), 2, + anon_sym_EQ, + anon_sym_PIPE_EQ, + ACTIONS(12869), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12885), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13195), 9, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [120792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6336), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6334), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6340), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6338), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6344), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(6342), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PIPE_EQ, + 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(5006), 24, + 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_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [120988] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13198), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2672), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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, + [121065] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13198), 1, + anon_sym_catch, + ACTIONS(13200), 1, + anon_sym_EQ, + ACTIONS(13206), 1, + anon_sym_DOT_DOT, + ACTIONS(13208), 1, + anon_sym_DOT_DOT_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13203), 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, + [121146] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13198), 1, + anon_sym_catch, + ACTIONS(13206), 1, + anon_sym_DOT_DOT, + ACTIONS(13208), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13210), 1, + anon_sym_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13212), 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, + [121227] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13198), 1, + anon_sym_catch, + ACTIONS(13206), 1, + anon_sym_DOT_DOT, + ACTIONS(13208), 1, + anon_sym_DOT_DOT_EQ, + STATE(8498), 1, + sym_argument_list, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 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, + [121308] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(12249), 1, + anon_sym_LBRACK, + ACTIONS(12251), 1, + anon_sym_DOT, + ACTIONS(12279), 1, + anon_sym_or, + ACTIONS(12281), 1, + anon_sym_and, + ACTIONS(12420), 1, + anon_sym_orelse, + ACTIONS(13198), 1, + anon_sym_catch, + STATE(8498), 1, + sym_argument_list, + ACTIONS(2704), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(12247), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(12273), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(12285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(12275), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(12287), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(12283), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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, + [121385] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13214), 1, + anon_sym_PIPE, + STATE(9421), 1, + aux_sym_type_repeat1, + ACTIONS(2903), 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(2901), 29, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + STATE(9454), 1, + sym_argument_list, + ACTIONS(2966), 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(2964), 29, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121485] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(9424), 1, + aux_sym_type_repeat1, + ACTIONS(3026), 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(3024), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121533] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(9421), 1, + aux_sym_type_repeat1, + ACTIONS(3058), 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(3056), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121581] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(13221), 1, + anon_sym_COLON, + ACTIONS(1292), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 27, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5964), 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(5962), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5852), 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(5850), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5912), 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(5910), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 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(4512), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 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(5722), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5654), 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(5652), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5986), 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(5984), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 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(5830), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [121996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 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(5664), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5970), 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(5968), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 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(4738), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122131] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, + anon_sym_BANG, + ACTIONS(7760), 1, + anon_sym_COLON, + ACTIONS(1292), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + ACTIONS(1285), 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, + [122186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 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(2901), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5974), 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(5972), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5994), 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(5992), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122321] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2704), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2702), 26, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [122376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5924), 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(5922), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5888), 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(5886), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122466] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2666), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2664), 26, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [122521] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, + anon_sym_BANG, + ACTIONS(7816), 1, + anon_sym_COLON, + ACTIONS(1292), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + ACTIONS(1285), 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, + [122576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13229), 1, + anon_sym_BANG, + ACTIONS(6000), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5998), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122623] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13231), 1, + anon_sym_BANG, + ACTIONS(6026), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6024), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6032), 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(6030), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6006), 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(6004), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 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(5784), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5944), 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(5942), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122850] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13233), 1, + anon_sym_LBRACE, + STATE(9570), 1, + sym_variant_payload, + ACTIONS(2659), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(2657), 29, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5928), 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(5926), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5980), 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(5978), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [122989] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(1292), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 28, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5864), 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(5862), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5904), 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(5902), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5948), 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(5946), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 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(5950), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 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(5820), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5900), 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(5898), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 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(4544), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5686), 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(5684), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123402] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2647), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2645), 26, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [123457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 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(5704), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5650), 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(5648), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5936), 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(5934), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 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(5870), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 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(5688), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5876), 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(5874), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5932), 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(5930), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 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(5838), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123817] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13235), 1, + anon_sym_DOT, + ACTIONS(5956), 6, + anon_sym_BANG, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(5954), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6064), 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(6062), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5880), 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(5878), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5680), 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(5678), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [123999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6052), 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(6050), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 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(5842), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 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(5726), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5892), 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(5890), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5848), 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(5846), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5818), 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(5816), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 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(5810), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5884), 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(5882), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 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(5826), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124404] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2672), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2670), 26, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [124459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 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(5938), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 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(5672), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5896), 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(5894), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 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(5988), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5670), 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(5668), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5908), 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(5906), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5868), 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(5866), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5258), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4638), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4536), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4596), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4580), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [124994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4584), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5486), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4440), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4414), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4600), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4604), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6186), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6184), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5080), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5718), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6190), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6188), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5516), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5514), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6194), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6192), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6198), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6196), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1198), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6254), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4752), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4750), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5084), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5088), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6056), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6054), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5520), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5518), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5524), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5522), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6060), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6058), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [125962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4468), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4466), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4612), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4616), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4502), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5758), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5092), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1192), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4470), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4736), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4732), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4896), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5118), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5116), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4900), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4904), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4756), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4754), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4758), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5122), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5120), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6312), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6310), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5126), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5124), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4762), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4766), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4770), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4644), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4642), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [126974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5770), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5774), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5788), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5786), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4774), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4502), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4570), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4484), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13237), 1, + anon_sym_COLON, + ACTIONS(4490), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4488), 29, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127328] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13239), 1, + anon_sym_COLON, + ACTIONS(4496), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4494), 29, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4590), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4588), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4908), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4914), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4780), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4778), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5528), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5526), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5098), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5096), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6272), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6270), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6074), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6072), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6276), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6274), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6078), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6076), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6288), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6286), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6082), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6080), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5494), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6290), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [127990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6296), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6294), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4782), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5594), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5592), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5792), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5790), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5794), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4788), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4786), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5500), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5498), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6086), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6084), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5010), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5562), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1331), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1258), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(2724), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128562] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2724), 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, + [128634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6114), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6112), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4516), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4522), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4520), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4622), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4524), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128854] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2670), 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_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_catch, + sym__newline, + [128910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5598), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5596), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5532), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5530), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [128998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5732), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5730), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4792), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4790), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129086] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 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_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_catch, + sym__newline, + [129148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4796), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4794), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5536), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5534), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4382), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4380), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4798), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5568), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4386), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4384), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4958), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4962), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4966), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5014), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4970), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4974), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4978), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4982), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5018), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4986), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6316), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6314), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5602), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5600), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4656), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4654), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [129984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4658), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4990), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6320), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6318), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6324), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6322), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4666), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5734), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6328), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6326), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6332), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6330), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5538), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4994), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4998), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4548), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4670), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5002), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4720), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4728), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5022), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130732] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 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, + [130804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5026), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6168), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6166), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4950), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5006), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [130980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6172), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6170), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131024] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(2692), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 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, + [131094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4552), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4676), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131182] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(2692), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 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_and, + anon_sym_catch, + sym__newline, + [131250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4364), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6176), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6174), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5128), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5030), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5134), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5132), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131470] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2672), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [131534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4368), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5604), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5740), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5738), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131666] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2670), 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_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_catch, + sym__newline, + [131724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5136), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4534), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4532), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5742), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(2694), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5142), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5140), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5146), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5144), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [131988] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2694), 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, + [132060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5148), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(3062), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5800), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5798), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5610), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5608), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5802), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4680), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5100), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4372), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4684), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4688), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5808), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5806), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5698), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5034), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4802), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4808), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4806), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5154), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5152), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5156), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4592), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5160), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5164), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5170), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5168), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [132984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4816), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4814), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4820), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4824), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5544), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5542), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4692), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5548), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5546), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4828), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4832), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5854), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5860), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5858), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6336), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6334), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1252), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4696), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4838), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4836), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4840), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4700), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4704), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6344), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6342), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4844), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4848), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4576), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4852), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4856), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [133996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4954), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4860), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4628), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4626), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6348), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6346), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13259), 1, + anon_sym_LBRACE, + STATE(4210), 1, + sym_variant_payload, + ACTIONS(2659), 15, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(2657), 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, + [134220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4708), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4864), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4868), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4872), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4712), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5916), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5914), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5612), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4876), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4744), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4742), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5172), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5180), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134704] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2702), 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_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_catch, + sym__newline, + [134760] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 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_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_catch, + sym__newline, + [134822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5184), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5492), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5490), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5920), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5918), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1333), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1335), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [134998] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 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, + [135070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5038), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135114] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(2708), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 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, + [135184] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(2708), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 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_and, + anon_sym_catch, + sym__newline, + [135252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5042), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135296] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2704), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 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_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [135360] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2702), 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_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_catch, + sym__newline, + [135418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4650), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(2710), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135506] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2710), 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, + [135578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5552), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5550), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4882), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4880), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2716), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(2714), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135710] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2716), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2714), 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, + [135782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6018), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6016), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5506), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4748), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4746), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4716), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [135958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4418), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4556), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4422), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5616), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5190), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5194), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5510), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5198), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5046), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5204), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5202), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136398] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, + anon_sym_BANG, + ACTIONS(1292), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + ACTIONS(1285), 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, + [136450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5208), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5206), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5210), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5216), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5214), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5624), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5220), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5218), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5224), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5222), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5620), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5228), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5226), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5232), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5230), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5234), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4436), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5238), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [136978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5244), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5242), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6022), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6020), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5248), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5246), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5252), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5250), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5628), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5256), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5254), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5634), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5632), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5636), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5642), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5640), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6042), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6040), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4884), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4630), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5264), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5262), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5268), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5266), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5782), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5778), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5270), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4390), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4388), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5276), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5274), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5280), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5278), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4646), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5284), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5282), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5288), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5286), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5290), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [137990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5296), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5294), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5298), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5308), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5306), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5312), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5310), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5318), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5316), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5322), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5320), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5324), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5328), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5332), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5338), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5336), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5342), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5340), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5346), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5344), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5348), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5352), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5358), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5356), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6124), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6122), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5362), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5360), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5366), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5364), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5646), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5644), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6134), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6132), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4888), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4892), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [138958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5574), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5572), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4920), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5370), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5368), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5106), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5104), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6138), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6136), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5374), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5372), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5376), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6142), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6140), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5054), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5382), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5380), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5386), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5384), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5110), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5108), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5576), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5390), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5388), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5114), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5112), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6152), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6150), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4540), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5058), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5504), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5502), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4924), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5392), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5398), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5396), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5402), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5400), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [139970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5406), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5404), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5410), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5408), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5414), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5412), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5418), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5416), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5420), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5582), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5580), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4928), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5586), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5584), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5560), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5558), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5064), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4932), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5068), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4938), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5072), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5078), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5076), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5590), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5588), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5424), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5434), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5432), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5436), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4942), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4560), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5442), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5446), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [140982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5452), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5450), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5454), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5458), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4946), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5462), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5468), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5466), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5470), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5476), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5474), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5480), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5478), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5484), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5482), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4634), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6340), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(6338), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [141510] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 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(2672), 12, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_catch, + sym_identifier, + [141575] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13273), 1, + anon_sym_else, + ACTIONS(13275), 1, + sym__newline, + STATE(13942), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4392), 18, + 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, + [141624] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2702), 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(2704), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + [141679] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 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(2672), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + [141736] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13269), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 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(2704), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_catch, + sym_identifier, + [141797] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13278), 1, + anon_sym_else, + ACTIONS(13280), 1, + sym__newline, + STATE(14417), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4456), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [141846] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13283), 1, + anon_sym_DOT_DOT, + ACTIONS(13285), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13289), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_else, + sym__newline, + [141923] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2690), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2692), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_catch, + sym_identifier, + [141994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13297), 1, + anon_sym_else, + ACTIONS(13300), 1, + sym__newline, + STATE(14561), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4474), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [142043] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13303), 1, + anon_sym_else, + ACTIONS(13306), 1, + sym__newline, + STATE(14557), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4404), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [142092] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13309), 1, + anon_sym_else, + ACTIONS(13311), 1, + sym__newline, + STATE(14483), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4474), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [142141] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13314), 1, + anon_sym_else, + ACTIONS(13316), 1, + sym__newline, + STATE(14375), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4404), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [142190] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13319), 1, + anon_sym_else, + ACTIONS(13322), 1, + sym__newline, + STATE(14558), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4426), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [142239] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13325), 1, + anon_sym_else, + ACTIONS(13328), 1, + sym__newline, + STATE(14552), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4474), 18, + 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, + [142288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13289), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [142363] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13331), 1, + anon_sym_else, + ACTIONS(13333), 1, + sym__newline, + STATE(14677), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4404), 18, + 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, + [142412] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13289), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [142487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13336), 1, + anon_sym_else, + ACTIONS(13338), 1, + sym__newline, + STATE(14187), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4474), 18, + 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, + [142536] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13341), 1, + anon_sym_else, + ACTIONS(13344), 1, + sym__newline, + STATE(14556), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4392), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [142585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13347), 1, + anon_sym_else, + ACTIONS(13349), 1, + sym__newline, + STATE(14416), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4444), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [142634] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2672), 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, + [142707] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13354), 1, + anon_sym_else, + ACTIONS(13357), 1, + sym__newline, + STATE(14551), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4456), 18, + 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, + [142756] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13360), 1, + anon_sym_else, + ACTIONS(13363), 1, + sym__newline, + STATE(14560), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4456), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [142805] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13366), 1, + anon_sym_else, + ACTIONS(13368), 1, + sym__newline, + STATE(13991), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4444), 18, + 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, + [142854] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13269), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 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(2672), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_catch, + sym_identifier, + [142915] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13371), 1, + anon_sym_else, + ACTIONS(13374), 1, + sym__newline, + STATE(14547), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4392), 18, + 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, + [142964] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 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(2704), 12, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_catch, + sym_identifier, + [143029] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2702), 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(2704), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + [143086] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13377), 1, + anon_sym_else, + ACTIONS(13379), 1, + sym__newline, + STATE(14019), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4456), 18, + 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, + [143135] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13382), 1, + anon_sym_else, + ACTIONS(13384), 1, + sym__newline, + STATE(14682), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4426), 18, + 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, + [143184] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13387), 1, + anon_sym_else, + ACTIONS(13390), 1, + sym__newline, + STATE(14549), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4426), 18, + 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, + [143233] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + ACTIONS(13393), 1, + anon_sym_DOT_DOT, + ACTIONS(13395), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13397), 1, + anon_sym_orelse, + ACTIONS(13399), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5706), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5708), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + sym_identifier, + [143314] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2704), 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, + [143387] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2690), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2692), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_catch, + sym_identifier, + [143456] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13401), 1, + anon_sym_else, + ACTIONS(13404), 1, + sym__newline, + STATE(14548), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4404), 18, + 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, + [143505] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2706), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_catch, + sym_identifier, + [143576] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2710), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2712), 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, + [143649] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2706), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_catch, + sym_identifier, + [143718] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2694), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2696), 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, + [143791] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2724), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2726), 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, + [143864] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13407), 1, + anon_sym_else, + ACTIONS(13409), 1, + sym__newline, + STATE(14332), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4392), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [143913] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + ACTIONS(13397), 1, + anon_sym_orelse, + ACTIONS(13399), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2672), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + [143990] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2714), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2716), 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, + [144063] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13412), 1, + anon_sym_else, + ACTIONS(13415), 1, + sym__newline, + STATE(14559), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4444), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [144112] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + ACTIONS(13397), 1, + anon_sym_orelse, + ACTIONS(13399), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2704), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + [144189] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13418), 1, + anon_sym_else, + ACTIONS(13421), 1, + sym__newline, + STATE(14550), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4444), 18, + 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, + [144238] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 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(2672), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + [144293] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13424), 1, + anon_sym_else, + ACTIONS(13426), 1, + sym__newline, + STATE(14377), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4426), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [144342] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13429), 1, + anon_sym_COMMA, + ACTIONS(13431), 1, + anon_sym_SEMI, + ACTIONS(13433), 1, + anon_sym_RBRACK, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13441), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11423), 1, aux_sym_match_arm_repeat1, + STATE(12961), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [144428] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13443), 1, + anon_sym_COMMA, + ACTIONS(13445), 1, + anon_sym_SEMI, + ACTIONS(13447), 1, + anon_sym_RBRACK, + ACTIONS(13449), 1, + anon_sym_DOT_DOT, + ACTIONS(13451), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11714), 1, + aux_sym_match_arm_repeat1, + STATE(12570), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [144514] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + sym__newline, + [144588] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13453), 1, + sym_identifier, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(13463), 1, + anon_sym_COLON, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13487), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(8461), 1, + sym_block, + STATE(11750), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [144676] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + ACTIONS(13397), 1, + anon_sym_orelse, + ACTIONS(13489), 1, + anon_sym_DOT_DOT, + ACTIONS(13491), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13493), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5706), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5708), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [144756] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + ACTIONS(13397), 1, + anon_sym_orelse, + ACTIONS(13493), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2672), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + sym_identifier, + [144832] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13495), 1, + anon_sym_COMMA, + ACTIONS(13497), 1, + anon_sym_SEMI, + ACTIONS(13499), 1, + anon_sym_RBRACK, + ACTIONS(13501), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11056), 1, + aux_sym_match_arm_repeat1, + STATE(12542), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [144918] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13503), 1, + anon_sym_COMMA, + ACTIONS(13505), 1, + anon_sym_SEMI, + ACTIONS(13507), 1, + anon_sym_RBRACK, + ACTIONS(13509), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11170), 1, + aux_sym_match_arm_repeat1, + STATE(13154), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145004] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOT_DOT_EQ, + sym__newline, + [145078] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13511), 1, + sym_identifier, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(13515), 1, + anon_sym_COLON, + ACTIONS(13517), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(9496), 1, + sym_block, + STATE(11821), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145166] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13519), 1, + anon_sym_COMMA, + ACTIONS(13521), 1, + anon_sym_SEMI, + ACTIONS(13523), 1, + anon_sym_RBRACK, + ACTIONS(13525), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11077), 1, + aux_sym_match_arm_repeat1, + STATE(12125), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145252] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13527), 1, + anon_sym_COMMA, + ACTIONS(13529), 1, + anon_sym_SEMI, + ACTIONS(13531), 1, + anon_sym_RBRACK, + ACTIONS(13533), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11414), 1, + aux_sym_match_arm_repeat1, + STATE(12616), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145338] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13535), 1, + sym_identifier, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(13539), 1, + anon_sym_COLON, + ACTIONS(13541), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(10640), 1, + sym_block, + STATE(11612), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145426] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13543), 1, + sym_identifier, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(13547), 1, + anon_sym_COLON, + ACTIONS(13549), 1, + sym__newline, + STATE(4229), 1, + sym_block, + STATE(4430), 1, + sym_argument_list, + STATE(11219), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145514] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13449), 1, + anon_sym_DOT_DOT, + ACTIONS(13495), 1, + anon_sym_COMMA, + ACTIONS(13497), 1, + anon_sym_SEMI, + ACTIONS(13551), 1, + anon_sym_RBRACK, + ACTIONS(13553), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11056), 1, + aux_sym_match_arm_repeat1, + STATE(12611), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145600] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13555), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, + anon_sym_SEMI, + ACTIONS(13559), 1, + anon_sym_RBRACK, + ACTIONS(13561), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11611), 1, + aux_sym_match_arm_repeat1, + STATE(13788), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145686] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13563), 1, + anon_sym_COMMA, + ACTIONS(13565), 1, + anon_sym_SEMI, + ACTIONS(13567), 1, + anon_sym_RBRACK, + ACTIONS(13569), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11748), 1, + aux_sym_match_arm_repeat1, + STATE(13001), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145772] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13571), 1, + sym_identifier, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(13575), 1, + anon_sym_COLON, + ACTIONS(13577), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(7222), 1, + sym_block, + STATE(11913), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145860] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13443), 1, + anon_sym_COMMA, + ACTIONS(13445), 1, + anon_sym_SEMI, + ACTIONS(13579), 1, + anon_sym_RBRACK, + ACTIONS(13581), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11714), 1, + aux_sym_match_arm_repeat1, + STATE(13656), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145946] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13583), 1, + anon_sym_COMMA, + ACTIONS(13585), 1, + anon_sym_SEMI, + ACTIONS(13587), 1, + anon_sym_RBRACK, + ACTIONS(13589), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11764), 1, + aux_sym_match_arm_repeat1, + STATE(13144), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146032] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13591), 1, + anon_sym_COMMA, + ACTIONS(13593), 1, + anon_sym_SEMI, + ACTIONS(13595), 1, + anon_sym_RBRACK, + ACTIONS(13597), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11782), 1, + aux_sym_match_arm_repeat1, + STATE(13384), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146118] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13599), 1, + anon_sym_COMMA, + ACTIONS(13601), 1, + anon_sym_SEMI, + ACTIONS(13603), 1, + anon_sym_RBRACK, + ACTIONS(13605), 1, + anon_sym_DOT_DOT, + ACTIONS(13607), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11912), 1, + aux_sym_match_arm_repeat1, + STATE(12412), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146204] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13609), 1, + sym_identifier, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(13613), 1, + anon_sym_COLON, + ACTIONS(13615), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(9103), 1, + sym_block, + STATE(11724), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146292] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13617), 1, + anon_sym_COMMA, + ACTIONS(13619), 1, + anon_sym_SEMI, + ACTIONS(13621), 1, + anon_sym_RBRACK, + ACTIONS(13623), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11095), 1, + aux_sym_match_arm_repeat1, + STATE(12131), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146378] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5706), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + sym__newline, + [146454] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13591), 1, + anon_sym_COMMA, + ACTIONS(13593), 1, + anon_sym_SEMI, + ACTIONS(13605), 1, + anon_sym_DOT_DOT, + ACTIONS(13625), 1, + anon_sym_RBRACK, + ACTIONS(13627), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11782), 1, + aux_sym_match_arm_repeat1, + STATE(12529), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146540] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13267), 1, + anon_sym_xor, + ACTIONS(13269), 1, + anon_sym_LT_LT, + ACTIONS(13291), 1, + anon_sym_and, + ACTIONS(13352), 1, + anon_sym_or, + ACTIONS(13397), 1, + anon_sym_orelse, + ACTIONS(13493), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13261), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13263), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13293), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2704), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_DOT_DOT, + sym_identifier, + [146616] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13519), 1, + anon_sym_COMMA, + ACTIONS(13521), 1, + anon_sym_SEMI, + ACTIONS(13605), 1, + anon_sym_DOT_DOT, + ACTIONS(13629), 1, + anon_sym_RBRACK, + ACTIONS(13631), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11077), 1, + aux_sym_match_arm_repeat1, + STATE(12875), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146702] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13633), 1, + anon_sym_COMMA, + ACTIONS(13635), 1, + anon_sym_SEMI, + ACTIONS(13637), 1, + anon_sym_RBRACK, + ACTIONS(13639), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11498), 1, + aux_sym_match_arm_repeat1, + STATE(13606), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146788] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13605), 1, + anon_sym_DOT_DOT, + ACTIONS(13633), 1, + anon_sym_COMMA, + ACTIONS(13635), 1, + anon_sym_SEMI, + ACTIONS(13641), 1, + anon_sym_RBRACK, + ACTIONS(13643), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11498), 1, + aux_sym_match_arm_repeat1, + STATE(12533), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146874] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(13645), 1, + sym_identifier, + ACTIONS(13647), 1, + anon_sym_COLON, + ACTIONS(13649), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(9086), 1, + sym_block, + STATE(11573), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [146962] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13651), 1, + sym_identifier, + ACTIONS(13653), 1, + anon_sym_COLON, + ACTIONS(13655), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(8579), 1, + sym_block, + STATE(11766), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147050] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13657), 1, + anon_sym_COMMA, + ACTIONS(13659), 1, + anon_sym_SEMI, + ACTIONS(13661), 1, + anon_sym_RBRACK, + ACTIONS(13663), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11622), 1, + aux_sym_match_arm_repeat1, + STATE(13825), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147136] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13665), 1, + anon_sym_COMMA, + ACTIONS(13667), 1, + anon_sym_SEMI, + ACTIONS(13669), 1, + anon_sym_RBRACK, + ACTIONS(13671), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11921), 1, + aux_sym_match_arm_repeat1, + STATE(13803), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147222] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13449), 1, + anon_sym_DOT_DOT, + ACTIONS(13657), 1, + anon_sym_COMMA, + ACTIONS(13659), 1, + anon_sym_SEMI, + ACTIONS(13673), 1, + anon_sym_RBRACK, + ACTIONS(13675), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11622), 1, + aux_sym_match_arm_repeat1, + STATE(12297), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147308] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13555), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, + anon_sym_SEMI, + ACTIONS(13605), 1, + anon_sym_DOT_DOT, + ACTIONS(13677), 1, + anon_sym_RBRACK, + ACTIONS(13679), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11611), 1, + aux_sym_match_arm_repeat1, + STATE(12288), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147394] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13665), 1, + anon_sym_COMMA, + ACTIONS(13667), 1, + anon_sym_SEMI, + ACTIONS(13681), 1, + anon_sym_RBRACK, + ACTIONS(13683), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11921), 1, + aux_sym_match_arm_repeat1, + STATE(12488), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147480] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13685), 1, + anon_sym_COMMA, + ACTIONS(13687), 1, + anon_sym_SEMI, + ACTIONS(13689), 1, + anon_sym_RBRACK, + ACTIONS(13691), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11378), 1, + aux_sym_match_arm_repeat1, + STATE(12359), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147566] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13693), 1, + sym_identifier, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(13697), 1, + anon_sym_COLON, + ACTIONS(13699), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(6657), 1, + sym_block, + STATE(11873), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147654] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(13701), 1, + sym_identifier, + ACTIONS(13703), 1, + anon_sym_COLON, + ACTIONS(13705), 1, + sym__newline, STATE(4326), 1, + sym_block, + STATE(4430), 1, + sym_argument_list, + STATE(11384), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(135), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13459), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [66393] = 25, + [147742] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(6588), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13599), 1, anon_sym_COMMA, - ACTIONS(6590), 1, + ACTIONS(13601), 1, anon_sym_SEMI, - ACTIONS(6592), 1, + ACTIONS(13707), 1, anon_sym_RBRACK, + ACTIONS(13709), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11912), 1, + aux_sym_match_arm_repeat1, + STATE(12609), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147828] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13711), 1, + sym_identifier, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(13715), 1, + anon_sym_COLON, + ACTIONS(13717), 1, + sym__newline, + STATE(3258), 1, + sym_block, + STATE(4430), 1, + sym_argument_list, + STATE(11220), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147916] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13449), 1, + anon_sym_DOT_DOT, + ACTIONS(13617), 1, + anon_sym_COMMA, + ACTIONS(13619), 1, + anon_sym_SEMI, + ACTIONS(13719), 1, + anon_sym_RBRACK, + ACTIONS(13721), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11095), 1, + aux_sym_match_arm_repeat1, + STATE(13552), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148002] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13723), 1, + sym_identifier, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(13727), 1, + anon_sym_COLON, + ACTIONS(13729), 1, + sym__newline, + STATE(3541), 1, + sym_block, + STATE(4430), 1, + sym_argument_list, + STATE(11079), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148090] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13449), 1, + anon_sym_DOT_DOT, + ACTIONS(13731), 1, + anon_sym_COMMA, + ACTIONS(13733), 1, + anon_sym_SEMI, + ACTIONS(13735), 1, + anon_sym_RBRACK, + ACTIONS(13737), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11927), 1, + aux_sym_match_arm_repeat1, + STATE(12485), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148176] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13739), 1, + anon_sym_COMMA, + ACTIONS(13741), 1, + anon_sym_SEMI, + ACTIONS(13743), 1, + anon_sym_RBRACK, + ACTIONS(13745), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11440), 1, + aux_sym_match_arm_repeat1, + STATE(13004), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148262] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(13747), 1, + sym_identifier, + ACTIONS(13749), 1, + anon_sym_COLON, + ACTIONS(13751), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(6617), 1, + sym_block, + STATE(11406), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148350] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13591), 1, + anon_sym_COMMA, + ACTIONS(13593), 1, + anon_sym_SEMI, + ACTIONS(13753), 1, + anon_sym_RBRACK, + ACTIONS(13755), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11782), 1, + aux_sym_match_arm_repeat1, + STATE(13346), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148436] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13527), 1, + anon_sym_COMMA, + ACTIONS(13529), 1, + anon_sym_SEMI, + ACTIONS(13757), 1, + anon_sym_RBRACK, + ACTIONS(13759), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11414), 1, + aux_sym_match_arm_repeat1, + STATE(12445), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148522] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13761), 1, + sym_identifier, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(13765), 1, + anon_sym_COLON, + ACTIONS(13767), 1, + sym__newline, + STATE(2184), 1, + sym_block, + STATE(4430), 1, + sym_argument_list, + STATE(11444), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148610] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13731), 1, + anon_sym_COMMA, + ACTIONS(13733), 1, + anon_sym_SEMI, + ACTIONS(13769), 1, + anon_sym_RBRACK, + ACTIONS(13771), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11927), 1, + aux_sym_match_arm_repeat1, + STATE(12674), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148696] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(13773), 1, + sym_identifier, + ACTIONS(13775), 1, + anon_sym_COLON, + ACTIONS(13777), 1, + sym__newline, + STATE(2166), 1, + sym_block, + STATE(4430), 1, + sym_argument_list, + STATE(11428), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148784] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13495), 1, + anon_sym_COMMA, + ACTIONS(13497), 1, + anon_sym_SEMI, + ACTIONS(13779), 1, + anon_sym_RBRACK, + ACTIONS(13781), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11056), 1, + aux_sym_match_arm_repeat1, + STATE(13414), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148870] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(13783), 1, + sym_identifier, + ACTIONS(13785), 1, + anon_sym_COLON, + ACTIONS(13787), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(7240), 1, + sym_block, + STATE(11929), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148958] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(13789), 1, + sym_identifier, + ACTIONS(13791), 1, + anon_sym_COLON, + ACTIONS(13793), 1, + sym__newline, + STATE(3554), 1, + sym_block, + STATE(4430), 1, + sym_argument_list, + STATE(11098), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149046] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(13795), 1, + sym_identifier, + ACTIONS(13797), 1, + anon_sym_COLON, + ACTIONS(13799), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(10571), 1, + sym_block, + STATE(11624), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149134] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13801), 1, + anon_sym_COMMA, + ACTIONS(13803), 1, + anon_sym_PIPE, + ACTIONS(13805), 1, + anon_sym_COLON, + ACTIONS(13807), 1, + anon_sym_DOT_DOT, + ACTIONS(13809), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13811), 1, + anon_sym_catch, + ACTIONS(13813), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(10951), 1, + aux_sym_match_arm_repeat1, + STATE(14826), 1, + aux_sym_import_declaration_repeat1, + STATE(15985), 1, + sym_match_capture, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13243), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149222] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(13815), 1, + sym_identifier, + ACTIONS(13817), 1, + anon_sym_COLON, + ACTIONS(13819), 1, + sym__newline, + STATE(3274), 1, + sym_block, + STATE(4430), 1, + sym_argument_list, + STATE(11225), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149310] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(13821), 1, + sym_identifier, + ACTIONS(13823), 1, + anon_sym_COLON, + ACTIONS(13825), 1, + sym__newline, + STATE(4430), 1, + sym_argument_list, + STATE(9499), 1, + sym_block, + STATE(11066), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149398] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13827), 1, + anon_sym_RPAREN, + ACTIONS(13829), 1, + anon_sym_COMMA, + ACTIONS(13831), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11430), 1, + aux_sym_match_arm_repeat1, + STATE(12491), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149481] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13833), 1, + anon_sym_else, + ACTIONS(13835), 1, + sym__newline, + STATE(14815), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4426), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [149528] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2141), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13838), 1, + anon_sym_COMMA, + ACTIONS(13840), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11092), 1, + aux_sym_initializer_list_repeat1, + STATE(12653), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149611] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13842), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + sym__newline, + [149686] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13844), 1, + anon_sym_else, + ACTIONS(13846), 1, + sym__newline, + STATE(14781), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4392), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [149733] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(1699), 1, + anon_sym_EQ, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(13849), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(1292), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [149786] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13851), 1, + anon_sym_else, + ACTIONS(13854), 1, + sym__newline, + STATE(14576), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4456), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [149833] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(7728), 1, + anon_sym_BANG, + ACTIONS(13857), 1, + anon_sym_COLON, + ACTIONS(1305), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(1292), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + ACTIONS(1285), 17, + 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, + [149882] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9126), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13860), 1, + anon_sym_COMMA, + ACTIONS(13862), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11775), 1, + aux_sym_match_arm_repeat1, + STATE(13432), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149965] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9518), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13864), 1, + anon_sym_COMMA, + ACTIONS(13866), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11314), 1, + aux_sym_match_arm_repeat1, + STATE(12127), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150048] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(13868), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + sym__newline, + [150123] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9768), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13870), 1, + anon_sym_COMMA, + ACTIONS(13872), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11681), 1, + aux_sym_match_arm_repeat1, + STATE(13126), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150206] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13874), 1, + anon_sym_COMMA, + ACTIONS(13876), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11393), 1, + aux_sym_initializer_list_repeat1, + STATE(12384), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150289] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2706), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 7, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_catch, + sym_identifier, + [150356] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 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(2704), 9, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_catch, + sym_identifier, + [150419] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9730), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13878), 1, + anon_sym_COMMA, + ACTIONS(13880), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11397), 1, + aux_sym_match_arm_repeat1, + STATE(12389), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150502] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2694), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2696), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [150573] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2724), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2726), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [150644] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2051), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13882), 1, + anon_sym_COMMA, + ACTIONS(13884), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11120), 1, + aux_sym_initializer_list_repeat1, + STATE(12888), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150727] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13886), 1, + anon_sym_RPAREN, + ACTIONS(13888), 1, + anon_sym_COMMA, + ACTIONS(13890), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11226), 1, + aux_sym_match_arm_repeat1, + STATE(12959), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150810] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + ACTIONS(2702), 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, + [150863] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9412), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13892), 1, + anon_sym_COMMA, + ACTIONS(13894), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11105), 1, + aux_sym_match_arm_repeat1, + STATE(12740), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150946] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13896), 1, + anon_sym_else, + ACTIONS(13899), 1, + sym__newline, + STATE(14577), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4474), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [150993] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9014), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13904), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11614), 1, + aux_sym_match_arm_repeat1, + STATE(12978), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151076] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2690), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2692), 6, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_catch, + sym_identifier, + [151145] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13906), 1, + anon_sym_else, + ACTIONS(13909), 1, + sym__newline, + STATE(14574), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4426), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [151192] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13912), 1, + anon_sym_COMMA, + ACTIONS(13914), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11805), 1, + aux_sym_initializer_list_repeat1, + STATE(13477), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151275] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1953), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13916), 1, + anon_sym_COMMA, + ACTIONS(13918), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11935), 1, + aux_sym_initializer_list_repeat1, + STATE(13844), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151358] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13829), 1, + anon_sym_COMMA, + ACTIONS(13920), 1, + anon_sym_RPAREN, + ACTIONS(13922), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11430), 1, + aux_sym_match_arm_repeat1, + STATE(12406), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151441] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 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(2704), 10, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_catch, + sym_identifier, + [151500] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13924), 1, + anon_sym_COMMA, + ACTIONS(13926), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11790), 1, + aux_sym_initializer_list_repeat1, + STATE(13468), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151583] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2209), 1, + anon_sym_RBRACE, + ACTIONS(6596), 1, + anon_sym_COMMA, + ACTIONS(6598), 1, + sym__newline, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + STATE(11608), 1, + aux_sym_match_arm_repeat1, + STATE(12953), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151666] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8816), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13928), 1, + anon_sym_COMMA, + ACTIONS(13930), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11900), 1, + aux_sym_match_arm_repeat1, + STATE(13807), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151749] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13932), 1, + anon_sym_COMMA, + ACTIONS(13934), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11737), 1, + aux_sym_initializer_list_repeat1, + STATE(13180), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151832] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13936), 1, + anon_sym_RBRACK, + ACTIONS(13938), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14198), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT_DOT_EQ, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151911] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9520), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13940), 1, + anon_sym_COMMA, + ACTIONS(13942), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11317), 1, + aux_sym_match_arm_repeat1, + STATE(12135), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13944), 1, + anon_sym_else, + ACTIONS(13946), 1, + sym__newline, + STATE(13932), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4444), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [152041] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + ACTIONS(2702), 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, + [152096] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13949), 1, + anon_sym_else, + ACTIONS(13952), 1, + sym__newline, + STATE(14575), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4444), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [152143] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(7816), 1, + anon_sym_COLON, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(1292), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + sym__newline, + [152194] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8920), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13955), 1, + anon_sym_COMMA, + ACTIONS(13957), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11433), 1, + aux_sym_match_arm_repeat1, + STATE(12462), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [152277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13959), 1, + anon_sym_else, + ACTIONS(13962), 1, + sym__newline, + STATE(14572), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4392), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [152324] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13965), 1, + anon_sym_else, + ACTIONS(13968), 1, + sym__newline, + STATE(14573), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4404), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [152371] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_RBRACE, + ACTIONS(6604), 1, + anon_sym_COMMA, + ACTIONS(6606), 1, + sym__newline, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + STATE(11420), 1, + aux_sym_match_arm_repeat1, + STATE(12439), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [152454] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2710), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2712), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [152525] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9206), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13971), 1, + anon_sym_COMMA, + ACTIONS(13973), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11918), 1, + aux_sym_match_arm_repeat1, + STATE(13805), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [152608] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9640), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13975), 1, + anon_sym_COMMA, + ACTIONS(13977), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11891), 1, + aux_sym_match_arm_repeat1, + STATE(13499), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [152691] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9708), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13979), 1, + anon_sym_COMMA, + ACTIONS(13981), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11370), 1, + aux_sym_match_arm_repeat1, + STATE(12339), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [152774] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1851), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13983), 1, + anon_sym_COMMA, + ACTIONS(13985), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11626), 1, + aux_sym_initializer_list_repeat1, + STATE(13023), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [152857] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_RBRACE, + ACTIONS(6600), 1, + anon_sym_COMMA, + ACTIONS(6602), 1, + sym__newline, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + STATE(11954), 1, + aux_sym_match_arm_repeat1, + STATE(13896), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [152940] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13987), 1, + anon_sym_else, + ACTIONS(13989), 1, + sym__newline, + STATE(14467), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4456), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [152987] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_RBRACE, + ACTIONS(6608), 1, + anon_sym_COMMA, + ACTIONS(6610), 1, + sym__newline, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + STATE(11740), 1, + aux_sym_match_arm_repeat1, + STATE(13186), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153070] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9112), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13992), 1, + anon_sym_COMMA, + ACTIONS(13994), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11755), 1, + aux_sym_match_arm_repeat1, + STATE(13395), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153153] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13996), 1, + anon_sym_else, + ACTIONS(13998), 1, + sym__newline, + STATE(14340), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4474), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [153200] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9320), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14001), 1, + anon_sym_COMMA, + ACTIONS(14003), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11744), 1, + aux_sym_match_arm_repeat1, + STATE(13213), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153283] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9220), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14005), 1, + anon_sym_COMMA, + ACTIONS(14007), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11941), 1, + aux_sym_match_arm_repeat1, + STATE(13851), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153366] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9094), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13829), 1, + anon_sym_COMMA, + ACTIONS(14009), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11430), 1, + aux_sym_match_arm_repeat1, + STATE(12448), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153449] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9028), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14011), 1, + anon_sym_COMMA, + ACTIONS(14013), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11628), 1, + aux_sym_match_arm_repeat1, + STATE(13030), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153532] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14015), 1, + anon_sym_COMMA, + ACTIONS(14017), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11636), 1, + aux_sym_initializer_list_repeat1, + STATE(13075), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153615] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2714), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2716), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [153686] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14019), 1, + anon_sym_COMMA, + ACTIONS(14021), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11427), 1, + aux_sym_initializer_list_repeat1, + STATE(12451), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153769] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(1699), 1, + anon_sym_EQ, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(1292), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 23, + anon_sym_COMMA, + 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_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_catch, + anon_sym_CARET, + sym__newline, + [153820] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14023), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 3, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(2670), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153895] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14025), 1, + anon_sym_COMMA, + ACTIONS(14027), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11771), 1, + aux_sym_initializer_list_repeat1, + STATE(13426), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153978] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8922), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14029), 1, + anon_sym_COMMA, + ACTIONS(14031), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11438), 1, + aux_sym_match_arm_repeat1, + STATE(12478), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [154061] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(14033), 1, + anon_sym_COLON, + ACTIONS(1292), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 23, + anon_sym_COMMA, + 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_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_catch, + anon_sym_CARET, + sym__newline, + [154112] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9710), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14036), 1, + anon_sym_COMMA, + ACTIONS(14038), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11376), 1, + aux_sym_match_arm_repeat1, + STATE(12352), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [154195] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2704), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [154266] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14040), 1, + anon_sym_COMMA, + ACTIONS(14042), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11058), 1, + aux_sym_initializer_list_repeat1, + STATE(12549), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [154349] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + ACTIONS(2670), 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, + [154404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14044), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(14046), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(1292), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + ACTIONS(1285), 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, + [154449] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + sym_identifier, + ACTIONS(2670), 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, + [154502] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14048), 1, + anon_sym_COMMA, + ACTIONS(14050), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11475), 1, + aux_sym_initializer_list_repeat1, + STATE(12554), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [154585] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2706), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 6, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_catch, + sym_identifier, + [154654] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14023), 1, + anon_sym_catch, + ACTIONS(14052), 1, + anon_sym_DOT_DOT, + ACTIONS(14054), 1, + anon_sym_DOT_DOT_EQ, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5708), 2, + anon_sym_else, + sym_identifier, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5706), 3, + anon_sym_LBRACE, + anon_sym_COLON, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [154733] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2672), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [154804] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_RBRACE, + ACTIONS(6620), 1, + anon_sym_COMMA, + ACTIONS(6622), 1, + sym__newline, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + STATE(11137), 1, + aux_sym_match_arm_repeat1, + STATE(12982), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [154887] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9016), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14056), 1, + anon_sym_COMMA, + ACTIONS(14058), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11619), 1, + aux_sym_match_arm_repeat1, + STATE(12993), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [154970] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14060), 1, + anon_sym_RBRACK, + ACTIONS(14062), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14481), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT_DOT_EQ, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155049] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13888), 1, + anon_sym_COMMA, + ACTIONS(14064), 1, + anon_sym_RPAREN, + ACTIONS(14066), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11226), 1, + aux_sym_match_arm_repeat1, + STATE(12479), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155132] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 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(2672), 9, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_catch, + sym_identifier, + [155195] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14068), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(14070), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(1292), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + ACTIONS(1285), 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, + [155240] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14023), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 3, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(2702), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155315] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 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(2672), 10, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_catch, + sym_identifier, + [155374] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(14072), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + sym__newline, + [155449] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9398), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14074), 1, + anon_sym_COMMA, + ACTIONS(14076), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11083), 1, + aux_sym_match_arm_repeat1, + STATE(12628), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155532] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2690), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2692), 7, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_catch, + sym_identifier, + [155599] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14078), 1, + anon_sym_COMMA, + ACTIONS(14080), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11139), 1, + aux_sym_initializer_list_repeat1, + STATE(12999), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155682] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1897), 1, + anon_sym_RBRACE, + ACTIONS(6624), 1, + anon_sym_COMMA, + ACTIONS(6626), 1, + sym__newline, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + STATE(11745), 1, + aux_sym_match_arm_repeat1, + STATE(13377), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155765] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9306), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14082), 1, + anon_sym_COMMA, + ACTIONS(14084), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11664), 1, + aux_sym_match_arm_repeat1, + STATE(13096), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155848] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13888), 1, + anon_sym_COMMA, + ACTIONS(14086), 1, + anon_sym_RPAREN, + ACTIONS(14088), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11226), 1, + aux_sym_match_arm_repeat1, + STATE(13551), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [155931] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2033), 1, + anon_sym_RBRACE, + ACTIONS(6612), 1, + anon_sym_COMMA, + ACTIONS(6614), 1, + sym__newline, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + STATE(11071), 1, + aux_sym_match_arm_repeat1, + STATE(12588), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [156014] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, + anon_sym_RBRACE, + ACTIONS(6584), 1, + anon_sym_COMMA, ACTIONS(6594), 1, sym__newline, - STATE(3301), 1, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, sym_argument_list, - STATE(4007), 1, + STATE(11471), 1, aux_sym_match_arm_repeat1, - STATE(4454), 1, + STATE(12957), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [66479] = 20, + [156097] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6596), 6, + ACTIONS(9660), 1, anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13888), 1, anon_sym_COMMA, + ACTIONS(14090), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11226), 1, + aux_sym_match_arm_repeat1, + STATE(13714), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [156180] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9400), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - sym__newline, - [66555] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(6598), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14092), 1, anon_sym_COMMA, - ACTIONS(6600), 1, - anon_sym_SEMI, - ACTIONS(6602), 1, - anon_sym_RBRACK, - ACTIONS(6604), 1, + ACTIONS(14094), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4019), 1, + STATE(11090), 1, aux_sym_match_arm_repeat1, - STATE(4462), 1, + STATE(12648), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [66641] = 26, + [156263] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6606), 1, - sym_identifier, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(6616), 1, - anon_sym_COLON, - ACTIONS(6618), 1, - anon_sym_DOT_DOT, - ACTIONS(6620), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6622), 1, - anon_sym_orelse, - ACTIONS(6624), 1, - anon_sym_catch, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(6628), 1, - anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - ACTIONS(6640), 1, - sym__newline, - STATE(912), 1, - sym_argument_list, - STATE(1814), 1, - sym_block, - STATE(4124), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [66729] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6642), 1, - anon_sym_COMMA, - ACTIONS(6644), 1, - anon_sym_SEMI, - ACTIONS(6646), 1, - anon_sym_RBRACK, - ACTIONS(6648), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4173), 1, - aux_sym_match_arm_repeat1, - STATE(4663), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [66815] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6650), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_SEMI, - ACTIONS(6654), 1, - anon_sym_RBRACK, - ACTIONS(6656), 1, - anon_sym_DOT_DOT, - ACTIONS(6658), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3955), 1, - aux_sym_match_arm_repeat1, - STATE(4501), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [66901] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6660), 1, - anon_sym_COMMA, - ACTIONS(6662), 1, - anon_sym_SEMI, - ACTIONS(6664), 1, - anon_sym_RBRACK, - ACTIONS(6666), 1, - anon_sym_DOT_DOT, - ACTIONS(6668), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3964), 1, - aux_sym_match_arm_repeat1, - STATE(4507), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [66987] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6568), 1, - anon_sym_COMMA, - ACTIONS(6570), 1, - anon_sym_SEMI, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6670), 1, - anon_sym_RBRACK, - ACTIONS(6672), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4153), 1, - aux_sym_match_arm_repeat1, - STATE(4324), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67073] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6568), 1, - anon_sym_COMMA, - ACTIONS(6570), 1, - anon_sym_SEMI, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6656), 1, - anon_sym_DOT_DOT, - ACTIONS(6674), 1, - anon_sym_RBRACK, - ACTIONS(6676), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4153), 1, - aux_sym_match_arm_repeat1, - STATE(4449), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67159] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6642), 1, - anon_sym_COMMA, - ACTIONS(6644), 1, - anon_sym_SEMI, - ACTIONS(6678), 1, - anon_sym_RBRACK, - ACTIONS(6680), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4173), 1, - aux_sym_match_arm_repeat1, - STATE(4343), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67245] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6682), 1, - anon_sym_COMMA, - ACTIONS(6684), 1, - anon_sym_SEMI, - ACTIONS(6686), 1, - anon_sym_RBRACK, - ACTIONS(6688), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4029), 1, - aux_sym_match_arm_repeat1, - STATE(4221), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67331] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6690), 1, - anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_SEMI, - ACTIONS(6694), 1, - anon_sym_RBRACK, - ACTIONS(6696), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4098), 1, - aux_sym_match_arm_repeat1, - STATE(4442), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67417] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6698), 1, - anon_sym_COMMA, - ACTIONS(6700), 1, - anon_sym_SEMI, - ACTIONS(6702), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4111), 1, - aux_sym_match_arm_repeat1, - STATE(4533), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67503] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6706), 1, - anon_sym_COMMA, - ACTIONS(6708), 1, - anon_sym_SEMI, - ACTIONS(6710), 1, - anon_sym_RBRACK, - ACTIONS(6712), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4053), 1, - aux_sym_match_arm_repeat1, - STATE(4240), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67589] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6698), 1, - anon_sym_COMMA, - ACTIONS(6700), 1, - anon_sym_SEMI, - ACTIONS(6714), 1, - anon_sym_RBRACK, - ACTIONS(6716), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4111), 1, - aux_sym_match_arm_repeat1, - STATE(4370), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67675] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6718), 1, - anon_sym_COMMA, - ACTIONS(6720), 1, - anon_sym_PIPE, - ACTIONS(6722), 1, - anon_sym_COLON, - ACTIONS(6724), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3897), 1, - aux_sym_match_arm_repeat1, - STATE(4965), 1, - aux_sym_import_declaration_repeat1, - STATE(5143), 1, - sym_match_capture, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6526), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67763] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(6618), 1, - anon_sym_DOT_DOT, - ACTIONS(6620), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6622), 1, - anon_sym_orelse, - ACTIONS(6624), 1, - anon_sym_catch, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(6628), 1, - anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - ACTIONS(6726), 1, - sym_identifier, - ACTIONS(6728), 1, - anon_sym_COLON, - ACTIONS(6730), 1, - sym__newline, - STATE(912), 1, - sym_argument_list, - STATE(2016), 1, - sym_block, - STATE(4196), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67851] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6650), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_SEMI, - ACTIONS(6732), 1, - anon_sym_RBRACK, - ACTIONS(6734), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3955), 1, - aux_sym_match_arm_repeat1, - STATE(4423), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [67937] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6736), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1957), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - sym__newline, - [68013] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6740), 1, - anon_sym_SEMI, - ACTIONS(6742), 1, - anon_sym_RBRACK, - ACTIONS(6744), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4169), 1, - aux_sym_match_arm_repeat1, - STATE(4700), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [68099] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, + ACTIONS(13255), 1, anon_sym_LT_LT, - ACTIONS(6528), 1, + ACTIONS(13287), 1, anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6642), 1, - anon_sym_COMMA, - ACTIONS(6644), 1, - anon_sym_SEMI, - ACTIONS(6666), 1, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6746), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4173), 1, - aux_sym_match_arm_repeat1, - STATE(4594), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [68185] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(6660), 1, - anon_sym_COMMA, - ACTIONS(6662), 1, - anon_sym_SEMI, - ACTIONS(6750), 1, - anon_sym_RBRACK, - ACTIONS(6752), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3964), 1, - aux_sym_match_arm_repeat1, - STATE(4428), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [68271] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, + ACTIONS(13439), 1, anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6754), 6, - anon_sym_RPAREN, + ACTIONS(14096), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(14098), 1, sym__newline, - [68347] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6582), 1, - anon_sym_SEMI, - ACTIONS(6756), 1, - anon_sym_RBRACK, - ACTIONS(6758), 1, - sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4022), 1, - aux_sym_match_arm_repeat1, - STATE(4300), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [68433] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6760), 1, - anon_sym_COMMA, - ACTIONS(6762), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4073), 1, + STATE(11956), 1, aux_sym_initializer_list_repeat1, - STATE(4397), 1, + STATE(13911), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [68516] = 24, + [156346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, + ACTIONS(1305), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(1326), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6764), 1, - anon_sym_COMMA, - ACTIONS(6766), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4013), 1, - aux_sym_match_arm_repeat1, - STATE(4327), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [68599] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1407), 4, + ACTIONS(5954), 1, anon_sym_LBRACE, + ACTIONS(14100), 1, + anon_sym_BANG, + ACTIONS(14102), 1, anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1409), 7, + ACTIONS(1292), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 22, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_else, - anon_sym_DOT_DOT, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, anon_sym_orelse, - anon_sym_catch, - anon_sym_or, anon_sym_and, - sym_identifier, - [68666] = 24, + 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_catch, + anon_sym_CARET, + sym__newline, + [156397] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(8820), 1, anon_sym_RBRACE, - ACTIONS(2183), 1, - anon_sym_COMMA, - ACTIONS(2185), 1, - sym__newline, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - STATE(3301), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14104), 1, + anon_sym_COMMA, + ACTIONS(14106), 1, + sym__newline, + STATE(9646), 1, sym_argument_list, - STATE(4003), 1, + STATE(11053), 1, aux_sym_match_arm_repeat1, - STATE(4321), 1, + STATE(12512), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [68749] = 14, + [156480] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 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(1401), 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, - [68812] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6768), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6770), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(477), 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(486), 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, - [68857] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6772), 1, - anon_sym_COMMA, - ACTIONS(6774), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4015), 1, - aux_sym_match_arm_repeat1, - STATE(4334), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [68940] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 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(1399), 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, - [68995] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(650), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6776), 1, - anon_sym_COMMA, - ACTIONS(6778), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4185), 1, - aux_sym_initializer_list_repeat1, - STATE(4679), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [69078] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(812), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6780), 1, - anon_sym_COMMA, - ACTIONS(6782), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4069), 1, - aux_sym_initializer_list_repeat1, - STATE(4439), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [69161] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6784), 1, - anon_sym_COMMA, - ACTIONS(6786), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4187), 1, - aux_sym_match_arm_repeat1, - STATE(4682), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [69244] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(680), 1, - anon_sym_RBRACE, - ACTIONS(2161), 1, - anon_sym_COMMA, ACTIONS(2169), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - STATE(4025), 1, - aux_sym_match_arm_repeat1, - STATE(4276), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [69327] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(780), 1, anon_sym_RBRACE, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(6788), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14108), 1, anon_sym_COMMA, - ACTIONS(6790), 1, + ACTIONS(14110), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4023), 1, + STATE(11451), 1, aux_sym_initializer_list_repeat1, - STATE(4347), 1, + STATE(12509), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [69410] = 24, + [156563] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6792), 1, - anon_sym_COMMA, - ACTIONS(6794), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4026), 1, - aux_sym_match_arm_repeat1, - STATE(4354), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [69493] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6796), 1, - anon_sym_COMMA, - ACTIONS(6798), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3983), 1, - aux_sym_match_arm_repeat1, - STATE(4277), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [69576] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_EQ, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(6508), 1, - anon_sym_BANG, - ACTIONS(477), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(486), 23, - anon_sym_COMMA, + ACTIONS(1939), 1, 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, - [69627] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(764), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6800), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(6802), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4110), 1, - aux_sym_initializer_list_repeat1, - STATE(4529), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [69710] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(2387), 1, - anon_sym_COLON, - ACTIONS(6508), 1, - anon_sym_BANG, - ACTIONS(477), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(486), 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, - [69761] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6804), 1, - anon_sym_RBRACK, - ACTIONS(6806), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4873), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_DOT_DOT_EQ, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [69840] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 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(1367), 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, - [69893] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1367), 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(1369), 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, - [69952] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6808), 1, - anon_sym_COMMA, - ACTIONS(6810), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4039), 1, - aux_sym_initializer_list_repeat1, - STATE(4377), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [70035] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(640), 1, - anon_sym_RBRACE, - ACTIONS(2187), 1, - anon_sym_COMMA, - ACTIONS(2189), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - STATE(4148), 1, - aux_sym_match_arm_repeat1, - STATE(4590), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [70118] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6622), 1, - anon_sym_orelse, - ACTIONS(6624), 1, - anon_sym_catch, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(6628), 1, - anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 3, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(1367), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [70193] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(6628), 1, - anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1367), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1369), 5, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - [70264] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6628), 1, - anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1484), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1486), 6, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - [70333] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1484), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1486), 7, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - [70400] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1367), 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(1369), 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, - [70463] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 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(1367), 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, - [70518] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(6814), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4042), 1, - aux_sym_match_arm_repeat1, - STATE(4344), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [70601] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6816), 1, - anon_sym_COMMA, - ACTIONS(6818), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4203), 1, - aux_sym_initializer_list_repeat1, - STATE(4706), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [70684] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - anon_sym_EQ, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(6508), 1, - anon_sym_BANG, - ACTIONS(6820), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(477), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(486), 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, - [70737] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3629), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6822), 1, - anon_sym_COMMA, - ACTIONS(6824), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4170), 1, - aux_sym_match_arm_repeat1, - STATE(4655), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [70820] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6826), 1, - anon_sym_RPAREN, - ACTIONS(6828), 1, - anon_sym_COMMA, - ACTIONS(6830), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4172), 1, - aux_sym_match_arm_repeat1, - STATE(4493), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [70903] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_RBRACE, - ACTIONS(2175), 1, - anon_sym_COMMA, - ACTIONS(2177), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - STATE(4057), 1, - aux_sym_match_arm_repeat1, - STATE(4385), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [70986] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6834), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(477), 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(486), 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, - [71031] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6836), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6838), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(477), 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(486), 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, - [71076] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3577), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6840), 1, - anon_sym_COMMA, - ACTIONS(6842), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4123), 1, - aux_sym_match_arm_repeat1, - STATE(4563), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71159] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3429), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6844), 1, - anon_sym_COMMA, - ACTIONS(6846), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4077), 1, - aux_sym_match_arm_repeat1, - STATE(4457), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71242] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(2171), 1, - anon_sym_COMMA, - ACTIONS(2173), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - STATE(4192), 1, - aux_sym_match_arm_repeat1, - STATE(4214), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71325] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6848), 1, - anon_sym_COMMA, - ACTIONS(6850), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3961), 1, - aux_sym_match_arm_repeat1, - STATE(4235), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71408] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6828), 1, - anon_sym_COMMA, - ACTIONS(6852), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4172), 1, - aux_sym_match_arm_repeat1, - STATE(4583), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71491] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(682), 1, - anon_sym_RBRACE, - ACTIONS(2179), 1, - anon_sym_COMMA, - ACTIONS(2181), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - STATE(4165), 1, - aux_sym_match_arm_repeat1, - STATE(4650), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71574] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6854), 1, - anon_sym_RBRACK, - ACTIONS(6856), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4822), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_DOT_DOT_EQ, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71653] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3011), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6858), 1, - anon_sym_COMMA, - ACTIONS(6860), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4031), 1, - aux_sym_match_arm_repeat1, - STATE(4323), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71736] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3431), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6862), 1, - anon_sym_COMMA, - ACTIONS(6864), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4078), 1, - aux_sym_match_arm_repeat1, - STATE(4464), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71819] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(738), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6866), 1, - anon_sym_COMMA, - ACTIONS(6868), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3968), 1, - aux_sym_initializer_list_repeat1, - STATE(4246), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71902] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3627), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6870), 1, - anon_sym_COMMA, - ACTIONS(6872), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4163), 1, - aux_sym_match_arm_repeat1, - STATE(4631), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [71985] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6874), 1, - anon_sym_COMMA, - ACTIONS(6876), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3973), 1, - aux_sym_match_arm_repeat1, - STATE(4250), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72068] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3395), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6878), 1, - anon_sym_COMMA, - ACTIONS(6880), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4061), 1, - aux_sym_match_arm_repeat1, - STATE(4425), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72151] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 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(1399), 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, - [72204] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2861), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6882), 1, - anon_sym_COMMA, - ACTIONS(6884), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4150), 1, - aux_sym_match_arm_repeat1, - STATE(4627), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72287] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 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(1401), 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, - [72346] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6886), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6888), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(477), 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(486), 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, - [72391] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6890), 1, - anon_sym_COMMA, - ACTIONS(6892), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3970), 1, - aux_sym_initializer_list_repeat1, - STATE(4248), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72474] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6622), 1, - anon_sym_orelse, - ACTIONS(6624), 1, - anon_sym_catch, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(6628), 1, - anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 3, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(1399), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72549] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3397), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6894), 1, - anon_sym_COMMA, - ACTIONS(6896), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4062), 1, - aux_sym_match_arm_repeat1, - STATE(4432), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72632] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6898), 1, - anon_sym_COMMA, - ACTIONS(6900), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3982), 1, - aux_sym_match_arm_repeat1, - STATE(4275), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72715] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(696), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6902), 1, - anon_sym_COMMA, - ACTIONS(6904), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4108), 1, - aux_sym_initializer_list_repeat1, - STATE(4516), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72798] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(6628), 1, - anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1401), 5, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - [72869] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(606), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6906), 1, - anon_sym_COMMA, - ACTIONS(6908), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4018), 1, - aux_sym_initializer_list_repeat1, - STATE(4341), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [72952] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, - ACTIONS(6628), 1, - anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, - anon_sym_LT_LT, - STATE(912), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6612), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6632), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1407), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6630), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1409), 6, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - [73021] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(742), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6910), 1, - anon_sym_COMMA, - ACTIONS(6912), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3980), 1, - aux_sym_initializer_list_repeat1, - STATE(4267), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73104] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3107), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6914), 1, - anon_sym_COMMA, - ACTIONS(6916), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4102), 1, - aux_sym_match_arm_repeat1, - STATE(4485), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73187] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6796), 1, - anon_sym_COMMA, - ACTIONS(6918), 1, - anon_sym_RPAREN, - ACTIONS(6920), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3983), 1, - aux_sym_match_arm_repeat1, - STATE(4270), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73270] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6922), 1, - anon_sym_COMMA, - ACTIONS(6924), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4094), 1, - aux_sym_match_arm_repeat1, - STATE(4421), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73353] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_RPAREN, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6926), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(3958), 1, - aux_sym_match_arm_repeat1, - STATE(4229), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73436] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6662), 1, - anon_sym_SEMI, - ACTIONS(6930), 1, - anon_sym_RBRACK, - ACTIONS(6932), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4724), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73516] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6934), 1, - anon_sym_SEMI, - ACTIONS(6936), 1, - anon_sym_RBRACK, - ACTIONS(6938), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4943), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73596] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6952), 1, - anon_sym_PIPE2, - ACTIONS(6954), 1, - anon_sym_DOT_DOT, - ACTIONS(6956), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6958), 1, - anon_sym_orelse, - ACTIONS(6960), 1, - anon_sym_catch, - ACTIONS(6962), 1, - anon_sym_or, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(6978), 1, - sym__newline, - STATE(3708), 1, - sym_argument_list, - STATE(4606), 1, - aux_sym_import_declaration_repeat1, - STATE(5114), 1, - sym__for_capture_bar, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73678] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6980), 1, - anon_sym_SEMI, - ACTIONS(6983), 1, - anon_sym_RBRACK, - ACTIONS(6986), 1, - sym__newline, - STATE(4872), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [73726] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6989), 1, - anon_sym_SEMI, - ACTIONS(6991), 1, - anon_sym_RBRACK, - ACTIONS(6993), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4929), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73806] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6684), 1, - anon_sym_SEMI, - ACTIONS(6995), 1, - anon_sym_RBRACK, - ACTIONS(6997), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4976), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73886] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6708), 1, - anon_sym_SEMI, - ACTIONS(6999), 1, - anon_sym_RBRACK, - ACTIONS(7001), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4745), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [73966] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6954), 1, - anon_sym_DOT_DOT, - ACTIONS(6956), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6958), 1, - anon_sym_orelse, - ACTIONS(6960), 1, - anon_sym_catch, - ACTIONS(6962), 1, - anon_sym_or, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(7003), 1, - anon_sym_PIPE2, - ACTIONS(7005), 1, - sym__newline, - STATE(3708), 1, - sym_argument_list, - STATE(4445), 1, - aux_sym_import_declaration_repeat1, - STATE(5071), 1, - sym__for_capture_bar, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74048] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7007), 1, - anon_sym_SEMI, - ACTIONS(7010), 1, - anon_sym_RBRACK, - ACTIONS(7013), 1, - sym__newline, - STATE(4888), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [74096] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6692), 1, - anon_sym_SEMI, - ACTIONS(7016), 1, - anon_sym_RBRACK, - ACTIONS(7018), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4872), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74176] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7020), 1, - anon_sym_SEMI, - ACTIONS(7023), 1, - anon_sym_RBRACK, - ACTIONS(7026), 1, - sym__newline, - STATE(4713), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [74224] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6652), 1, - anon_sym_SEMI, - ACTIONS(7029), 1, - anon_sym_RBRACK, - ACTIONS(7031), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4713), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74304] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7033), 1, - anon_sym_SEMI, - ACTIONS(7036), 1, - anon_sym_RBRACK, - ACTIONS(7039), 1, - sym__newline, - STATE(4847), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [74352] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6740), 1, - anon_sym_SEMI, - ACTIONS(7042), 1, - anon_sym_RBRACK, - ACTIONS(7044), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4923), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74432] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7046), 1, - anon_sym_SEMI, - ACTIONS(7049), 1, - anon_sym_RBRACK, - ACTIONS(7052), 1, - sym__newline, - STATE(4724), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [74480] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6700), 1, - anon_sym_SEMI, - ACTIONS(7055), 1, - anon_sym_RBRACK, - ACTIONS(7057), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4877), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74560] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6582), 1, - anon_sym_SEMI, - ACTIONS(7059), 1, - anon_sym_RBRACK, - ACTIONS(7061), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4780), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74640] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6590), 1, - anon_sym_SEMI, - ACTIONS(7063), 1, - anon_sym_RBRACK, - ACTIONS(7065), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4751), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74720] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7067), 1, - anon_sym_SEMI, - ACTIONS(7070), 1, - anon_sym_RBRACK, - ACTIONS(7073), 1, - sym__newline, - STATE(4923), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [74768] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_SEMI, - ACTIONS(7079), 1, - anon_sym_RBRACK, - ACTIONS(7082), 1, - sym__newline, - STATE(4757), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [74816] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6600), 1, - anon_sym_SEMI, - ACTIONS(7085), 1, - anon_sym_RBRACK, - ACTIONS(7087), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4757), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74896] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7089), 1, - anon_sym_SEMI, - ACTIONS(7091), 1, - anon_sym_RBRACK, - ACTIONS(7093), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4949), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [74976] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7095), 1, - anon_sym_SEMI, - ACTIONS(7097), 1, - anon_sym_RBRACK, - ACTIONS(7099), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4831), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [75056] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(6508), 1, - anon_sym_BANG, - ACTIONS(7101), 1, - anon_sym_PIPE, - ACTIONS(477), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(486), 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, - [75106] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2217), 1, - anon_sym_DOT, ACTIONS(6618), 1, - anon_sym_DOT_DOT, - ACTIONS(6620), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6622), 1, - anon_sym_orelse, - ACTIONS(6624), 1, - anon_sym_catch, - ACTIONS(6626), 1, + sym__newline, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6628), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6634), 1, - anon_sym_xor, - ACTIONS(6636), 1, + ACTIONS(13255), 1, anon_sym_LT_LT, - STATE(912), 1, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, sym_argument_list, - ACTIONS(35), 2, + STATE(11908), 1, + aux_sym_match_arm_repeat1, + STATE(13782), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(2397), 2, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [156646] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14112), 1, + anon_sym_COMMA, + ACTIONS(14114), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11872), 1, + aux_sym_initializer_list_repeat1, + STATE(13584), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [156729] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9208), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14116), 1, + anon_sym_COMMA, + ACTIONS(14118), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11924), 1, + aux_sym_match_arm_repeat1, + STATE(13815), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [156812] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9490), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14120), 1, + anon_sym_COMMA, + ACTIONS(14122), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11222), 1, + aux_sym_match_arm_repeat1, + STATE(13626), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [156895] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8934), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14124), 1, + anon_sym_COMMA, + ACTIONS(14126), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11456), 1, + aux_sym_match_arm_repeat1, + STATE(12515), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [156978] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14128), 1, + anon_sym_else, + ACTIONS(14130), 1, + sym__newline, + STATE(14814), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4404), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + 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, + anon_sym_SLASH, + anon_sym_CARET, + [157025] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8832), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14133), 1, + anon_sym_COMMA, + ACTIONS(14135), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11100), 1, + aux_sym_match_arm_repeat1, + STATE(12694), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157108] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9114), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14137), 1, + anon_sym_COMMA, + ACTIONS(14139), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11761), 1, + aux_sym_match_arm_repeat1, + STATE(13404), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157191] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14141), 1, + anon_sym_COMMA, + ACTIONS(14143), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11102), 1, + aux_sym_initializer_list_repeat1, + STATE(12719), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157274] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9492), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14145), 1, + anon_sym_COMMA, + ACTIONS(14147), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11228), 1, + aux_sym_match_arm_repeat1, + STATE(13721), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157357] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13829), 1, + anon_sym_COMMA, + ACTIONS(14149), 1, + anon_sym_RPAREN, + ACTIONS(14151), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(11430), 1, + aux_sym_match_arm_repeat1, + STATE(12867), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14153), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(14155), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(1292), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + ACTIONS(1285), 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, + [157485] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14157), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(14159), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(1292), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + ACTIONS(1285), 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, + [157530] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(10127), 1, + aux_sym_type_repeat1, + ACTIONS(3026), 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(3024), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [157572] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14161), 1, + anon_sym_SEMI, + ACTIONS(14164), 1, + anon_sym_RBRACK, + ACTIONS(14167), 1, + sym__newline, + STATE(14079), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [157620] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14170), 1, + anon_sym_SEMI, + ACTIONS(14173), 1, + anon_sym_RBRACK, + ACTIONS(14176), 1, + sym__newline, + STATE(14447), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [157668] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13593), 1, + anon_sym_SEMI, + ACTIONS(14179), 1, + anon_sym_RBRACK, + ACTIONS(14181), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14140), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157748] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14183), 1, + anon_sym_SEMI, + ACTIONS(14186), 1, + anon_sym_RBRACK, + ACTIONS(14189), 1, + sym__newline, + STATE(14109), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [157796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14192), 1, + anon_sym_else, + ACTIONS(14194), 1, + sym__newline, + STATE(14350), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4474), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [157842] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13529), 1, + anon_sym_SEMI, + ACTIONS(14197), 1, + anon_sym_RBRACK, + ACTIONS(14199), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14500), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157922] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2704), 2, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157996] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14201), 1, + anon_sym_SEMI, + ACTIONS(14204), 1, + anon_sym_RBRACK, + ACTIONS(14207), 1, + sym__newline, + STATE(14477), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [158044] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13497), 1, + anon_sym_SEMI, + ACTIONS(14210), 1, + anon_sym_RBRACK, + ACTIONS(14212), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14174), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [158124] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(14100), 1, + anon_sym_BANG, + ACTIONS(1292), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 22, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [158172] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13667), 1, + anon_sym_SEMI, + ACTIONS(14214), 1, + anon_sym_RBRACK, + ACTIONS(14216), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14091), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [158252] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14218), 1, + anon_sym_SEMI, + ACTIONS(14221), 1, + anon_sym_RBRACK, + ACTIONS(14224), 1, + sym__newline, + STATE(14134), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [158300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14227), 1, + anon_sym_LBRACE, + STATE(10510), 1, + sym_variant_payload, + ACTIONS(2659), 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(2657), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [158344] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14229), 1, + anon_sym_else, + ACTIONS(14232), 1, + sym__newline, + STATE(14626), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4392), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [158390] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14235), 1, + anon_sym_else, + ACTIONS(14238), 1, + sym__newline, + STATE(14627), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4404), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [158436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + STATE(10446), 1, + sym_argument_list, + ACTIONS(2966), 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(2964), 22, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [158480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14243), 1, + anon_sym_else, + ACTIONS(14246), 1, + sym__newline, + STATE(14628), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4426), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [158526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14249), 1, + anon_sym_else, + ACTIONS(14252), 1, + sym__newline, + STATE(14629), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4444), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [158572] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14255), 1, + anon_sym_SEMI, + ACTIONS(14258), 1, + anon_sym_RBRACK, + ACTIONS(14261), 1, + sym__newline, + STATE(14159), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [158620] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2672), 2, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [158694] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14264), 1, + anon_sym_else, + ACTIONS(14267), 1, + sym__newline, + STATE(14630), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4456), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [158740] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14270), 1, + anon_sym_else, + ACTIONS(14273), 1, + sym__newline, + STATE(14631), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4474), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [158786] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(13221), 1, + anon_sym_COLON, + ACTIONS(1305), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(1292), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 22, + 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_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_catch, + anon_sym_CARET, + sym__newline, + [158834] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14276), 1, + anon_sym_SEMI, + ACTIONS(14279), 1, + anon_sym_RBRACK, + ACTIONS(14282), 1, + sym__newline, + STATE(13937), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [158882] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13601), 1, + anon_sym_SEMI, + ACTIONS(14285), 1, + anon_sym_RBRACK, + ACTIONS(14287), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14079), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [158962] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14289), 1, + anon_sym_SEMI, + ACTIONS(14292), 1, + anon_sym_RBRACK, + ACTIONS(14295), 1, + sym__newline, + STATE(14567), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [159010] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13733), 1, + anon_sym_SEMI, + ACTIONS(14298), 1, + anon_sym_RBRACK, + ACTIONS(14300), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14109), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159090] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14302), 1, + anon_sym_SEMI, + ACTIONS(14304), 1, + anon_sym_RBRACK, + ACTIONS(14306), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14157), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159170] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13565), 1, + anon_sym_SEMI, + ACTIONS(14308), 1, + anon_sym_RBRACK, + ACTIONS(14310), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14058), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159250] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13585), 1, + anon_sym_SEMI, + ACTIONS(14312), 1, + anon_sym_RBRACK, + ACTIONS(14314), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14162), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159330] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14316), 1, + anon_sym_SEMI, + ACTIONS(14319), 1, + anon_sym_RBRACK, + ACTIONS(14322), 1, + sym__newline, + STATE(14186), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [159378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14325), 1, + anon_sym_else, + ACTIONS(14327), 1, + sym__newline, + STATE(14290), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4392), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [159424] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14330), 1, + anon_sym_SEMI, + ACTIONS(14332), 1, + anon_sym_RBRACK, + ACTIONS(14334), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14775), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14336), 1, + anon_sym_else, + ACTIONS(14338), 1, + sym__newline, + STATE(14291), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4404), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [159550] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14341), 1, + anon_sym_else, + ACTIONS(14343), 1, + sym__newline, + STATE(14292), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4426), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [159596] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14346), 1, + anon_sym_else, + ACTIONS(14348), 1, + sym__newline, + STATE(14293), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4444), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [159642] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14351), 1, + anon_sym_else, + ACTIONS(14353), 1, + sym__newline, + STATE(14295), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4456), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [159688] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14356), 1, + anon_sym_else, + ACTIONS(14358), 1, + sym__newline, + STATE(14296), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4474), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [159734] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13635), 1, + anon_sym_SEMI, + ACTIONS(14361), 1, + anon_sym_RBRACK, + ACTIONS(14363), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14134), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159814] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13445), 1, + anon_sym_SEMI, + ACTIONS(14365), 1, + anon_sym_RBRACK, + ACTIONS(14367), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14159), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159894] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + sym_identifier, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13465), 1, + anon_sym_DOT_DOT, + ACTIONS(13467), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(13485), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5706), 3, + anon_sym_LBRACE, + anon_sym_COLON, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159972] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13431), 1, + anon_sym_SEMI, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14369), 1, + anon_sym_RBRACK, + ACTIONS(14371), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14447), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160052] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(10149), 1, + aux_sym_type_repeat1, + ACTIONS(3058), 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(3056), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [160094] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13521), 1, + anon_sym_SEMI, + ACTIONS(14373), 1, + anon_sym_RBRACK, + ACTIONS(14375), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14230), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160174] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14387), 1, + anon_sym_PIPE2, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14413), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13683), 1, + aux_sym_import_declaration_repeat1, + STATE(14869), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160256] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13619), 1, + anon_sym_SEMI, + ACTIONS(14415), 1, + anon_sym_RBRACK, + ACTIONS(14417), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14237), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160336] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14419), 1, + anon_sym_SEMI, + ACTIONS(14422), 1, + anon_sym_RBRACK, + ACTIONS(14425), 1, + sym__newline, + STATE(14058), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [160384] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13741), 1, + anon_sym_SEMI, + ACTIONS(14428), 1, + anon_sym_RBRACK, + ACTIONS(14430), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14477), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160464] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13557), 1, + anon_sym_SEMI, + ACTIONS(14432), 1, + anon_sym_RBRACK, + ACTIONS(14434), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13937), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160544] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14436), 1, + anon_sym_SEMI, + ACTIONS(14439), 1, + anon_sym_RBRACK, + ACTIONS(14442), 1, + sym__newline, + STATE(14162), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [160592] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13659), 1, + anon_sym_SEMI, + ACTIONS(14445), 1, + anon_sym_RBRACK, + ACTIONS(14447), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14567), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160672] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14449), 1, + anon_sym_SEMI, + ACTIONS(14452), 1, + anon_sym_RBRACK, + ACTIONS(14455), 1, + sym__newline, + STATE(14500), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [160720] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14458), 1, + anon_sym_SEMI, + ACTIONS(14460), 1, + anon_sym_RBRACK, + ACTIONS(14462), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14205), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160800] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14464), 1, + anon_sym_SEMI, + ACTIONS(14467), 1, + anon_sym_RBRACK, + ACTIONS(14470), 1, + sym__newline, + STATE(14230), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [160848] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1326), 1, + anon_sym_DOT, + ACTIONS(5954), 1, + anon_sym_LBRACE, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(14473), 1, + anon_sym_PIPE, + ACTIONS(1292), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + sym__newline, + [160898] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14476), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(2672), 3, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160972] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14476), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(2704), 3, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161046] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_SEMI, + ACTIONS(14481), 1, + anon_sym_RBRACK, + ACTIONS(14484), 1, + sym__newline, + STATE(14237), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [161094] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14487), 1, + anon_sym_SEMI, + ACTIONS(14490), 1, + anon_sym_RBRACK, + ACTIONS(14493), 1, + sym__newline, + STATE(14091), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [161142] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14496), 1, + anon_sym_else, + ACTIONS(14499), 1, + sym__newline, + STATE(14613), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4474), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [161188] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14502), 1, + anon_sym_SEMI, + ACTIONS(14505), 1, + anon_sym_RBRACK, + ACTIONS(14508), 1, + sym__newline, + STATE(14140), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [161236] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13505), 1, + anon_sym_SEMI, + ACTIONS(14511), 1, + anon_sym_RBRACK, + ACTIONS(14513), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14738), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161316] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(14515), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [161388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(14515), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [161460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14517), 1, + anon_sym_PIPE, + STATE(10149), 1, + aux_sym_type_repeat1, + ACTIONS(2903), 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(2901), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [161504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14520), 1, + anon_sym_else, + ACTIONS(14522), 1, + sym__newline, + STATE(14345), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4392), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [161550] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14525), 1, + anon_sym_SEMI, + ACTIONS(14528), 1, + anon_sym_RBRACK, + ACTIONS(14531), 1, + sym__newline, + STATE(14738), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [161598] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14534), 1, + anon_sym_SEMI, + ACTIONS(14536), 1, + anon_sym_RBRACK, + ACTIONS(14538), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14767), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161678] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14540), 1, + anon_sym_else, + ACTIONS(14542), 1, + sym__newline, + STATE(14346), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4404), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [161724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14545), 1, + anon_sym_else, + ACTIONS(14547), 1, + sym__newline, + STATE(14347), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4426), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [161770] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14550), 1, + anon_sym_SEMI, + ACTIONS(14553), 1, + anon_sym_RBRACK, + ACTIONS(14556), 1, + sym__newline, + STATE(14174), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [161818] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14559), 1, + anon_sym_PIPE2, + ACTIONS(14561), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13789), 1, + aux_sym_import_declaration_repeat1, + STATE(14971), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161900] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14563), 1, + anon_sym_PIPE2, + ACTIONS(14565), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13792), 1, + aux_sym_import_declaration_repeat1, + STATE(14984), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161982] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14567), 1, + anon_sym_PIPE2, + ACTIONS(14569), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13332), 1, + aux_sym_import_declaration_repeat1, + STATE(15118), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162064] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14571), 1, + anon_sym_PIPE2, + ACTIONS(14573), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13795), 1, + aux_sym_import_declaration_repeat1, + STATE(15045), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162146] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13687), 1, + anon_sym_SEMI, + ACTIONS(14575), 1, + anon_sym_RBRACK, + ACTIONS(14577), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14186), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162226] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14579), 1, + anon_sym_else, + ACTIONS(14582), 1, + sym__newline, + STATE(14608), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4392), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [162272] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14585), 1, + anon_sym_else, + ACTIONS(14588), 1, + sym__newline, + STATE(14609), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4404), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [162318] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14591), 1, + anon_sym_SEMI, + ACTIONS(14593), 1, + anon_sym_RBRACK, + ACTIONS(14595), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14376), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162398] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14597), 1, + anon_sym_else, + ACTIONS(14600), 1, + sym__newline, + STATE(14610), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4426), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [162444] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14603), 1, + anon_sym_PIPE2, + ACTIONS(14605), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(12604), 1, + aux_sym_import_declaration_repeat1, + STATE(14880), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14607), 1, + anon_sym_else, + ACTIONS(14610), 1, + sym__newline, + STATE(14611), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4444), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [162572] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_else, + ACTIONS(14615), 1, + sym__newline, + STATE(14348), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4444), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [162618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14618), 1, + anon_sym_else, + ACTIONS(14620), 1, + sym__newline, + STATE(14349), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 11, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_catch, + anon_sym_DOT, + sym_identifier, + ACTIONS(4456), 18, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [162664] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14623), 1, + anon_sym_PIPE2, + ACTIONS(14625), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13840), 1, + aux_sym_import_declaration_repeat1, + STATE(14856), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162746] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14627), 1, + anon_sym_PIPE2, + ACTIONS(14629), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13841), 1, + aux_sym_import_declaration_repeat1, + STATE(14858), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162828] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14631), 1, + anon_sym_PIPE2, + ACTIONS(14633), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13843), 1, + aux_sym_import_declaration_repeat1, + STATE(14862), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162910] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(14515), 1, + anon_sym_catch, + ACTIONS(14635), 1, + anon_sym_DOT_DOT, + ACTIONS(14637), 1, + anon_sym_DOT_DOT_EQ, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5706), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162984] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14639), 1, + anon_sym_else, + ACTIONS(14642), 1, + sym__newline, + STATE(14612), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4456), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + [163030] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14476), 1, + anon_sym_catch, + ACTIONS(14645), 1, + anon_sym_DOT_DOT, + ACTIONS(14647), 1, + anon_sym_DOT_DOT_EQ, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5706), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(5708), 2, anon_sym_else, sym_identifier, - ACTIONS(2399), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(6610), 2, + ACTIONS(13457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6612), 2, + ACTIONS(13459), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6614), 2, + ACTIONS(13461), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6632), 2, + ACTIONS(13477), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6638), 2, + ACTIONS(13483), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(6630), 4, + ACTIONS(13475), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [75184] = 7, + [163108] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7104), 1, - anon_sym_SEMI, - ACTIONS(7107), 1, - anon_sym_RBRACK, - ACTIONS(7110), 1, - sym__newline, - STATE(4780), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 22, + ACTIONS(14241), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, + ACTIONS(14379), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(14385), 1, 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, - [75232] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(14389), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7113), 1, - anon_sym_SEMI, - ACTIONS(7115), 1, - anon_sym_RBRACK, - ACTIONS(7117), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4845), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [75312] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7119), 1, - anon_sym_SEMI, - ACTIONS(7122), 1, - anon_sym_RBRACK, - ACTIONS(7125), 1, - sym__newline, - STATE(4976), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(14391), 1, anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, anon_sym_orelse, - 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, - [75360] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(14395), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(14397), 1, anon_sym_and, - ACTIONS(6570), 1, - anon_sym_SEMI, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7128), 1, - anon_sym_RBRACK, - ACTIONS(7130), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4888), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [75440] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7132), 1, - anon_sym_SEMI, - ACTIONS(7135), 1, - anon_sym_RBRACK, - ACTIONS(7138), 1, - sym__newline, - STATE(4745), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, + ACTIONS(14405), 1, anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, + ACTIONS(14409), 1, 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, - [75488] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7141), 1, - anon_sym_SEMI, - ACTIONS(7144), 1, - anon_sym_RBRACK, - ACTIONS(7147), 1, - sym__newline, - STATE(4877), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(14411), 1, anon_sym_DOT, - ACTIONS(486), 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, - [75536] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7150), 1, - anon_sym_SEMI, - ACTIONS(7152), 1, - anon_sym_RBRACK, - ACTIONS(7154), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4735), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [75616] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6644), 1, - anon_sym_SEMI, - ACTIONS(7156), 1, - anon_sym_RBRACK, - ACTIONS(7158), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4847), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [75696] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6954), 1, - anon_sym_DOT_DOT, - ACTIONS(6956), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6958), 1, - anon_sym_orelse, - ACTIONS(6960), 1, - anon_sym_catch, - ACTIONS(6962), 1, - anon_sym_or, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(7160), 1, + ACTIONS(14649), 1, anon_sym_PIPE2, - ACTIONS(7162), 1, + ACTIONS(14651), 1, sym__newline, - STATE(3708), 1, + STATE(10753), 1, sym_argument_list, - STATE(4245), 1, + STATE(13856), 1, aux_sym_import_declaration_repeat1, - STATE(5072), 1, + STATE(14929), 1, sym__for_capture_bar, - ACTIONS(6942), 2, + ACTIONS(14377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6946), 2, + ACTIONS(14381), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6948), 2, + ACTIONS(14383), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6968), 2, + ACTIONS(14401), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6970), 2, + ACTIONS(14403), 2, anon_sym_AMP, anon_sym_xor, - ACTIONS(6974), 2, + ACTIONS(14407), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, + ACTIONS(14399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [75778] = 7, + [163190] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7164), 1, - anon_sym_SEMI, - ACTIONS(7167), 1, - anon_sym_RBRACK, - ACTIONS(7170), 1, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14653), 1, + anon_sym_PIPE2, + ACTIONS(14655), 1, sym__newline, - STATE(4751), 1, + STATE(10753), 1, + sym_argument_list, + STATE(13857), 1, aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, + STATE(14930), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163272] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14657), 1, + anon_sym_PIPE2, + ACTIONS(14659), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13859), 1, + aux_sym_import_declaration_repeat1, + STATE(14935), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163354] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14661), 1, + anon_sym_PIPE2, + ACTIONS(14663), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13868), 1, + aux_sym_import_declaration_repeat1, + STATE(14962), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163436] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14665), 1, + anon_sym_PIPE2, + ACTIONS(14667), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13869), 1, + aux_sym_import_declaration_repeat1, + STATE(14963), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163518] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14669), 1, + anon_sym_PIPE2, + ACTIONS(14671), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13870), 1, + aux_sym_import_declaration_repeat1, + STATE(14969), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163600] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14673), 1, + anon_sym_PIPE2, + ACTIONS(14675), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13877), 1, + aux_sym_import_declaration_repeat1, + STATE(14981), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163682] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14677), 1, + anon_sym_PIPE2, + ACTIONS(14679), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13878), 1, + aux_sym_import_declaration_repeat1, + STATE(14982), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163764] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14681), 1, + anon_sym_PIPE2, + ACTIONS(14683), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13880), 1, + aux_sym_import_declaration_repeat1, + STATE(14986), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163846] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14685), 1, + anon_sym_PIPE2, + ACTIONS(14687), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13883), 1, + aux_sym_import_declaration_repeat1, + STATE(14995), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163928] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14689), 1, + anon_sym_PIPE2, + ACTIONS(14691), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13884), 1, + aux_sym_import_declaration_repeat1, + STATE(14996), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164010] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14693), 1, + anon_sym_PIPE2, + ACTIONS(14695), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13886), 1, + aux_sym_import_declaration_repeat1, + STATE(14999), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164092] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14697), 1, + anon_sym_PIPE2, + ACTIONS(14699), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13889), 1, + aux_sym_import_declaration_repeat1, + STATE(15005), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164174] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14701), 1, + anon_sym_PIPE2, + ACTIONS(14703), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13890), 1, + aux_sym_import_declaration_repeat1, + STATE(15006), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164256] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14705), 1, + anon_sym_PIPE2, + ACTIONS(14707), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13892), 1, + aux_sym_import_declaration_repeat1, + STATE(15009), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164338] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14709), 1, + anon_sym_PIPE2, + ACTIONS(14711), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13894), 1, + aux_sym_import_declaration_repeat1, + STATE(15017), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164420] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14713), 1, + anon_sym_PIPE2, + ACTIONS(14715), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13895), 1, + aux_sym_import_declaration_repeat1, + STATE(15018), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164502] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14717), 1, + anon_sym_PIPE2, + ACTIONS(14719), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13897), 1, + aux_sym_import_declaration_repeat1, + STATE(15023), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164584] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14721), 1, + anon_sym_PIPE2, + ACTIONS(14723), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13900), 1, + aux_sym_import_declaration_repeat1, + STATE(15029), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164666] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14725), 1, + anon_sym_PIPE2, + ACTIONS(14727), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13901), 1, + aux_sym_import_declaration_repeat1, + STATE(15030), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164748] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(14729), 1, + anon_sym_PIPE2, + ACTIONS(14731), 1, + sym__newline, + STATE(10753), 1, + sym_argument_list, + STATE(13903), 1, + aux_sym_import_declaration_repeat1, + STATE(15033), 1, + sym__for_capture_bar, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164830] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14733), 1, + anon_sym_SEMI, + ACTIONS(14735), 1, + anon_sym_RBRACK, + ACTIONS(14737), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14273), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 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(486), 22, + ACTIONS(4544), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [164949] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13449), 1, + anon_sym_DOT_DOT, + ACTIONS(14739), 1, + anon_sym_RBRACK, + ACTIONS(14741), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14515), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165026] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14743), 1, + anon_sym_RPAREN, + ACTIONS(14745), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14479), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165103] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14747), 1, + anon_sym_LBRACE, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(14775), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13934), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165180] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2724), 6, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [165247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14777), 1, + anon_sym_else, + ACTIONS(14780), 1, + sym__newline, + STATE(14589), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4474), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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_catch, + anon_sym_CARET, + [165292] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14783), 1, + anon_sym_RPAREN, + ACTIONS(14785), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14430), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165369] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14787), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2670), 4, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165440] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14789), 1, + anon_sym_SEMI, + ACTIONS(14792), 1, + anon_sym_RBRACK, + ACTIONS(14795), 1, + sym__newline, + STATE(14273), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [165487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5654), 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(5652), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [165526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 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(5810), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [165565] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14798), 1, + anon_sym_RBRACK, + ACTIONS(14800), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14138), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165642] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14802), 1, + anon_sym_RBRACK, + ACTIONS(14804), 1, + anon_sym_DOT_DOT, + ACTIONS(14806), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14248), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165719] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14808), 1, + anon_sym_RPAREN, + ACTIONS(14810), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14278), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165796] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14787), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2702), 4, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165867] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14812), 1, + anon_sym_else, + ACTIONS(14814), 1, + sym__newline, + STATE(13976), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4474), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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_catch, + anon_sym_CARET, + [165912] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14817), 1, + anon_sym_RPAREN, + ACTIONS(14819), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14537), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165989] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14821), 1, + anon_sym_RBRACK, + ACTIONS(14823), 1, + anon_sym_DOT_DOT, + ACTIONS(14825), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14498), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [166066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6052), 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(6050), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [166105] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14827), 1, + anon_sym_else, + ACTIONS(14830), 1, + sym__newline, + STATE(14587), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4444), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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_catch, + anon_sym_CARET, + [166150] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13811), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2702), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [166221] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(5812), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5810), 24, 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, - [75826] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(740), 1, anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7173), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4954), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [75903] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7175), 1, - anon_sym_RPAREN, - ACTIONS(7177), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4793), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [75980] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7179), 1, - anon_sym_SEMI, - ACTIONS(7182), 1, - anon_sym_RBRACK, - ACTIONS(7185), 1, - sym__newline, - STATE(4735), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 21, - anon_sym_LPAREN, anon_sym_DASH, anon_sym_PIPE, anon_sym_QMARK, @@ -318127,7 +979186,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -318139,78 +979197,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - [76027] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7188), 1, - anon_sym_RBRACK, - ACTIONS(7190), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4868), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [76104] = 5, + sym__newline, + [166262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7192), 1, + ACTIONS(14833), 1, + anon_sym_else, + ACTIONS(14835), 1, + sym__newline, + STATE(14342), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 7, anon_sym_PIPE, - STATE(3510), 1, - aux_sym_type_repeat1, - ACTIONS(1467), 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(1465), 22, + ACTIONS(4404), 21, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, @@ -318219,7 +979226,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -318231,339 +979237,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, - sym__newline, - [76147] = 22, + [166307] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(7195), 1, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 6, anon_sym_LBRACE, - ACTIONS(7203), 1, - anon_sym_DOT_DOT, - ACTIONS(7205), 1, + anon_sym_else, anon_sym_DOT_DOT_EQ, - ACTIONS(7207), 1, anon_sym_orelse, - ACTIONS(7209), 1, anon_sym_catch, - ACTIONS(7211), 1, - anon_sym_or, - ACTIONS(7213), 1, - anon_sym_and, - ACTIONS(7219), 1, - anon_sym_LT_LT, - ACTIONS(7223), 1, sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4916), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7217), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7215), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [76224] = 22, + [166374] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6576), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(6666), 1, - anon_sym_DOT_DOT, - ACTIONS(7225), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14838), 1, anon_sym_RBRACK, - ACTIONS(7227), 1, + ACTIONS(14840), 1, + anon_sym_DOT_DOT, + ACTIONS(14842), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4926), 1, + STATE(14343), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [76301] = 5, + [166451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(826), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(14844), 1, + anon_sym_else, + ACTIONS(14846), 1, sym__newline, - ACTIONS(1975), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1973), 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, - [76344] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7229), 1, - anon_sym_RPAREN, - ACTIONS(7231), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4891), 1, + STATE(14344), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(4428), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4426), 21, + 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_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [76421] = 22, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_catch, + anon_sym_CARET, + [166496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, + ACTIONS(14849), 1, + anon_sym_else, + ACTIONS(14852), 1, + sym__newline, + STATE(14586), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 6, anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, anon_sym_or, - ACTIONS(6534), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4426), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_and, - ACTIONS(7233), 1, + 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_catch, + anon_sym_CARET, + [166541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5924), 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(5922), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [166580] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14855), 1, + anon_sym_else, + ACTIONS(14858), 1, + sym__newline, + STATE(14584), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4392), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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_catch, + anon_sym_CARET, + [166625] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14861), 1, + anon_sym_DOT, + ACTIONS(5956), 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(5954), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [166666] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14863), 1, anon_sym_RBRACK, - ACTIONS(7235), 1, + ACTIONS(14865), 1, + anon_sym_DOT_DOT, + ACTIONS(14867), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4893), 1, + STATE(14113), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [76498] = 22, + [166743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7237), 1, + ACTIONS(14869), 1, + anon_sym_else, + ACTIONS(14872), 1, sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4834), 1, + STATE(14585), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [76575] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(826), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(1583), 6, + ACTIONS(4406), 6, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1581), 21, + ACTIONS(4404), 22, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DASH, anon_sym_PIPE, anon_sym_QMARK, @@ -318571,7 +979615,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -318583,590 +979626,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, - [76618] = 5, + [166788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(826), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(14875), 1, + anon_sym_else, + ACTIONS(14877), 1, sym__newline, - ACTIONS(1597), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1595), 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, - [76661] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(826), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(1601), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1599), 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, - [76704] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(826), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(1697), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1695), 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, - [76747] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7239), 1, - anon_sym_RBRACK, - ACTIONS(7241), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4883), 1, + STATE(14733), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(4446), 6, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4444), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [76824] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, + anon_sym_AMP, + anon_sym_xor, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_catch, + anon_sym_CARET, + [166833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(2399), 3, - anon_sym_RPAREN, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5784), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [166872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14880), 1, + anon_sym_else, + ACTIONS(14882), 1, + sym__newline, + STATE(13939), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 21, + 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_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_catch, + anon_sym_CARET, + [166917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5928), 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(5926), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [166956] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14885), 1, + anon_sym_else, + ACTIONS(14887), 1, + sym__newline, + STATE(14715), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 21, + 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_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_catch, + anon_sym_CARET, + [167001] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14890), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [167074] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14787), 1, + anon_sym_catch, + ACTIONS(14892), 1, + anon_sym_DOT_DOT, + ACTIONS(14894), 1, + anon_sym_DOT_DOT_EQ, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5706), 3, + anon_sym_LBRACE, anon_sym_else, sym__newline, - ACTIONS(6526), 3, + ACTIONS(14751), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(14765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [76897] = 22, + [167147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(14241), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(14385), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(14411), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7243), 1, - anon_sym_RPAREN, - ACTIONS(7245), 1, - sym__newline, - STATE(3301), 1, + STATE(10753), 1, sym_argument_list, - STATE(4934), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(14381), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [76974] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(7247), 1, - anon_sym_RBRACK, - ACTIONS(7249), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4836), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77051] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7251), 1, - anon_sym_SEMI, - ACTIONS(7254), 1, - anon_sym_RBRACK, - ACTIONS(7257), 1, - sym__newline, - STATE(4831), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [77098] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7260), 1, - anon_sym_RBRACK, - ACTIONS(7262), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4838), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77175] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7264), 1, - anon_sym_RBRACK, - ACTIONS(7266), 1, - anon_sym_DOT_DOT, - ACTIONS(7268), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4812), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(1975), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1973), 24, - anon_sym_LPAREN, - anon_sym_COMMA, - 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, - [77293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(1583), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1581), 24, - anon_sym_LPAREN, - anon_sym_COMMA, - 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, - [77334] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(483), 1, - anon_sym_LPAREN, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(1499), 1, - anon_sym_LBRACE, - ACTIONS(7270), 1, - anon_sym_BANG, - ACTIONS(477), 6, + ACTIONS(2666), 6, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - ACTIONS(486), 21, + ACTIONS(2664), 19, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_else, 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, @@ -319178,1270 +979962,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, + anon_sym_catch, sym__newline, - [77381] = 4, + [167196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(1597), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1326), 1, anon_sym_DOT, - ACTIONS(1595), 24, + ACTIONS(13219), 1, + anon_sym_BANG, + ACTIONS(1305), 2, anon_sym_LPAREN, - anon_sym_COMMA, - 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, - [77422] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7272), 1, - anon_sym_RBRACK, - ACTIONS(7274), 1, - anon_sym_DOT_DOT, - ACTIONS(7276), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4964), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77499] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7278), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77572] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(1601), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1599), 24, - anon_sym_LPAREN, - anon_sym_COMMA, - 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, - [77613] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7280), 1, - anon_sym_RBRACK, - ACTIONS(7282), 1, - anon_sym_DOT_DOT, - ACTIONS(7284), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4833), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77690] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ, - ACTIONS(1697), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1695), 24, - anon_sym_LPAREN, - anon_sym_COMMA, - 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, - [77731] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7286), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77804] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7288), 1, - anon_sym_RBRACK, - ACTIONS(7290), 1, - anon_sym_DOT_DOT, - ACTIONS(7292), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4862), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77881] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7294), 1, - anon_sym_RBRACK, - ACTIONS(7296), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(5017), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [77958] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7298), 1, - anon_sym_RBRACK, - ACTIONS(7300), 1, - anon_sym_DOT_DOT, - ACTIONS(7302), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4736), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78035] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7304), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78108] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5376), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7306), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4808), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78185] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(7308), 1, - anon_sym_RBRACK, - ACTIONS(7310), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4809), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78262] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7312), 1, - anon_sym_RBRACK, - ACTIONS(7314), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4810), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78339] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7203), 1, - anon_sym_DOT_DOT, - ACTIONS(7205), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7207), 1, - anon_sym_orelse, - ACTIONS(7209), 1, - anon_sym_catch, - ACTIONS(7211), 1, - anon_sym_or, - ACTIONS(7213), 1, - anon_sym_and, - ACTIONS(7219), 1, - anon_sym_LT_LT, - ACTIONS(7316), 1, anon_sym_LBRACE, - ACTIONS(7318), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4960), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7217), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7215), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78416] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(1292), 5, anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7320), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78489] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7322), 1, - anon_sym_RPAREN, - ACTIONS(7324), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4773), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78566] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(652), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7326), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4996), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(1285), 22, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78643] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, + anon_sym_QMARK, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(7328), 1, - anon_sym_RBRACK, - ACTIONS(7330), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4846), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78720] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, + anon_sym_else, anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7332), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78793] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7334), 1, - anon_sym_RBRACK, - ACTIONS(7336), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(5001), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [78870] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(694), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7338), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4746), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [78947] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(810), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7340), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4983), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [79024] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(782), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7342), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4824), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [79101] = 4, + anon_sym_SLASH, + anon_sym_catch, + anon_sym_CARET, + sym__newline, + [167241] = 3, ACTIONS(3), 1, sym_comment, - STATE(3586), 1, - aux_sym_type_repeat1, - ACTIONS(1474), 8, + ACTIONS(5864), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -320450,7 +980015,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1472), 22, + ACTIONS(5862), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [167280] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11163), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14896), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13982), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [167357] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14898), 1, + anon_sym_else, + ACTIONS(14901), 1, + sym__newline, + STATE(14588), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4456), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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_catch, + anon_sym_CARET, + [167402] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14904), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14461), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [167479] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14906), 1, + anon_sym_else, + ACTIONS(14909), 1, + sym__newline, + STATE(14578), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 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(4392), 21, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, @@ -320459,7 +980214,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320471,331 +980225,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, - sym__newline, - [79142] = 22, + [167524] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(7344), 1, - anon_sym_RPAREN, - ACTIONS(7346), 1, - sym__newline, - STATE(3301), 1, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, sym_argument_list, - STATE(4889), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [79219] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 1, - anon_sym_SEMI, - ACTIONS(7351), 1, - anon_sym_RBRACK, - ACTIONS(7354), 1, - sym__newline, - STATE(4929), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 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, - [79266] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7357), 1, - anon_sym_RBRACK, - ACTIONS(7359), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4879), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [79343] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7361), 1, - anon_sym_RPAREN, - ACTIONS(7363), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4819), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [79420] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5424), 1, + ACTIONS(14912), 3, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7365), 1, sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4752), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [79497] = 22, + [167597] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(7367), 1, - anon_sym_RBRACK, - ACTIONS(7369), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14914), 1, + anon_sym_RPAREN, + ACTIONS(14916), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4912), 1, + STATE(14111), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [79574] = 5, + [167674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - STATE(3652), 1, - sym_argument_list, - ACTIONS(1413), 8, + ACTIONS(5932), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -320804,7 +980347,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1411), 21, + ACTIONS(5930), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [167713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5868), 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(5866), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [167752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(4420), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4418), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_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_catch, + anon_sym_CARET, + sym__newline, + [167793] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2670), 6, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [167862] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(2692), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 6, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [167929] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(4424), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4422), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_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_catch, + anon_sym_CARET, + sym__newline, + [167970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(4438), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4436), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_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_catch, + anon_sym_CARET, + sym__newline, + [168011] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(2692), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 6, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [168076] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(4442), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4440), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_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_catch, + anon_sym_CARET, + sym__newline, + [168117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5936), 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(5934), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [168156] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(2692), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 7, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_catch, + sym__newline, + [168219] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14918), 1, + anon_sym_else, + ACTIONS(14920), 1, + sym__newline, + STATE(14729), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 21, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, @@ -320812,7 +980815,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320824,989 +980826,5869 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [79617] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7371), 1, - anon_sym_RBRACK, - ACTIONS(7373), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4990), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [79694] = 22, + [168264] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5414), 1, + ACTIONS(2171), 1, anon_sym_RBRACE, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(7375), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14923), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4875), 1, + STATE(14386), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [79771] = 7, + [168341] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7377), 1, - anon_sym_SEMI, - ACTIONS(7380), 1, - anon_sym_RBRACK, - ACTIONS(7383), 1, - sym__newline, - STATE(4949), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(486), 21, + ACTIONS(13217), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(13225), 1, 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, - [79818] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7386), 1, - anon_sym_SEMI, - ACTIONS(7389), 1, - anon_sym_RBRACK, - ACTIONS(7392), 1, - sym__newline, - STATE(4943), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(486), 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, - [79865] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(7395), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14925), 1, anon_sym_RPAREN, - ACTIONS(7397), 1, + ACTIONS(14927), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4988), 1, + STATE(14672), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [79942] = 22, + [168418] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, + ACTIONS(14769), 1, anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(7399), 1, - anon_sym_RBRACK, - ACTIONS(7401), 1, - sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4821), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(14749), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14771), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(14751), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80019] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(2672), 4, anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7403), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80092] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7405), 1, - anon_sym_RBRACK, - ACTIONS(7407), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4771), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80169] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7409), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80242] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7411), 1, - anon_sym_RPAREN, - ACTIONS(7413), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4880), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80319] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(7415), 1, - anon_sym_RBRACK, - ACTIONS(7417), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4968), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80396] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5458), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7419), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4855), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80473] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7421), 1, - anon_sym_RPAREN, - ACTIONS(7423), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4890), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80550] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7425), 1, - anon_sym_RBRACK, - ACTIONS(7427), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4828), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80627] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7429), 1, - anon_sym_RPAREN, - ACTIONS(7431), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4749), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80704] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7433), 1, - anon_sym_RBRACK, - ACTIONS(7435), 1, - anon_sym_DOT_DOT, - ACTIONS(7437), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4905), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80781] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(7439), 1, - anon_sym_RBRACK, - ACTIONS(7441), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4882), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80858] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7443), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - anon_sym_DOT_DOT, - ACTIONS(7447), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4788), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [80935] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7449), 1, + ACTIONS(2670), 11, anon_sym_LBRACE, - STATE(3755), 1, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [168477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5974), 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(5972), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [168516] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14929), 1, + anon_sym_RBRACK, + ACTIONS(14931), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14388), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [168593] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14933), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2672), 2, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [168666] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14935), 1, + anon_sym_RBRACK, + ACTIONS(14937), 1, + anon_sym_DOT_DOT, + ACTIONS(14939), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14097), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [168743] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2670), 16, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [168796] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5708), 1, + sym_identifier, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14933), 1, + anon_sym_catch, + ACTIONS(14941), 1, + anon_sym_DOT_DOT, + ACTIONS(14943), 1, + anon_sym_DOT_DOT_EQ, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5706), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [168873] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_LBRACK, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(13469), 1, + anon_sym_orelse, + ACTIONS(13471), 1, + anon_sym_or, + ACTIONS(13473), 1, + anon_sym_and, + ACTIONS(13479), 1, + anon_sym_xor, + ACTIONS(13481), 1, + anon_sym_LT_LT, + ACTIONS(14933), 1, + anon_sym_catch, + STATE(4430), 1, + sym_argument_list, + ACTIONS(135), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2704), 2, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(13457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13459), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13461), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13483), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13475), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [168946] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14945), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14526), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169023] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14947), 1, + anon_sym_RBRACK, + ACTIONS(14949), 1, + anon_sym_DOT_DOT, + ACTIONS(14951), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14394), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169100] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2694), 6, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [169167] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(14953), 1, + anon_sym_LBRACE, + ACTIONS(14955), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14486), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169244] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14957), 1, + anon_sym_BANG, + ACTIONS(6000), 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(5998), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [169285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 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(5870), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [169324] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14959), 1, + anon_sym_RBRACK, + ACTIONS(14961), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14304), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169401] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(14963), 1, + anon_sym_LBRACE, + ACTIONS(14965), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14499), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169478] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14967), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14466), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169555] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14969), 1, + anon_sym_RBRACK, + ACTIONS(14971), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14489), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169632] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14973), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6006), 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(6004), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [169744] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14975), 1, + anon_sym_RBRACK, + ACTIONS(14977), 1, + anon_sym_DOT_DOT, + ACTIONS(14979), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14564), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169821] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14981), 1, + anon_sym_RBRACK, + ACTIONS(14983), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14783), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 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(4738), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [169937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5944), 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(5942), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [169976] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2670), 17, + anon_sym_DASH, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [170027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 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(5826), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [170066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 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(5830), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [170105] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14985), 1, + anon_sym_RBRACK, + ACTIONS(14987), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14529), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [170182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 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(5664), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [170221] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2702), 17, + anon_sym_DASH, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [170272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5670), 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(5668), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [170311] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 5, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 13, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [170368] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2704), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2702), 19, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [170417] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14989), 1, + anon_sym_RBRACK, + ACTIONS(14991), 1, + anon_sym_DOT_DOT, + ACTIONS(14993), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14532), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [170494] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11091), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14995), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13943), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [170571] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(14997), 1, + anon_sym_RBRACK, + ACTIONS(14999), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13952), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [170648] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15001), 1, + anon_sym_RBRACK, + ACTIONS(15003), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13981), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [170725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5948), 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(5946), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [170764] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2702), 6, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [170833] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(2708), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 6, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [170900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15005), 1, + anon_sym_else, + ACTIONS(15008), 1, + sym__newline, + STATE(14579), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 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(4404), 21, + 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_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_catch, + anon_sym_CARET, + [170945] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(15011), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 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(5672), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [171057] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10913), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15013), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14444), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171134] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15015), 1, + anon_sym_RBRACK, + ACTIONS(15017), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14448), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171211] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15019), 1, + anon_sym_SEMI, + ACTIONS(15022), 1, + anon_sym_RBRACK, + ACTIONS(15025), 1, + sym__newline, + STATE(14767), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [171258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5876), 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(5874), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [171297] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(2708), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 7, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_catch, + sym__newline, + [171362] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15028), 1, + anon_sym_RBRACK, + ACTIONS(15030), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14451), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171439] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 11, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [171500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 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(5950), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [171539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5912), 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(5910), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [171578] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(2692), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2690), 7, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_catch, + sym__newline, + [171643] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2702), 15, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [171696] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15032), 1, + anon_sym_RBRACK, + ACTIONS(15034), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14211), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171773] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2710), 6, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [171842] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15036), 1, + anon_sym_RPAREN, + ACTIONS(15038), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14768), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171919] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15040), 1, + anon_sym_RPAREN, + ACTIONS(15042), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14212), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171996] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15044), 1, + anon_sym_LBRACE, + ACTIONS(15046), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14676), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5986), 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(5984), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [172112] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2716), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2714), 6, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [172181] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15048), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14238), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 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(5938), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [172297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5818), 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(5816), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [172336] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15050), 1, + anon_sym_LBRACE, + ACTIONS(15052), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14684), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 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(5726), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [172452] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15054), 1, + anon_sym_else, + ACTIONS(15056), 1, + sym__newline, + STATE(14736), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4456), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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_catch, + anon_sym_CARET, + [172497] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2694), 6, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [172566] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15059), 1, + anon_sym_RBRACK, + ACTIONS(15061), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14571), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172643] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10957), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15063), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14280), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172720] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15065), 1, + anon_sym_LBRACE, + ACTIONS(15067), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14714), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172797] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15069), 1, + anon_sym_RBRACK, + ACTIONS(15071), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14242), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172874] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15073), 1, + anon_sym_SEMI, + ACTIONS(15076), 1, + anon_sym_RBRACK, + ACTIONS(15079), 1, + sym__newline, + STATE(14775), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [172921] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15082), 1, + anon_sym_RPAREN, + ACTIONS(15084), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14073), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172998] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2647), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2645), 19, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [173047] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15086), 1, + anon_sym_LBRACE, + ACTIONS(15088), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14730), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173124] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15090), 1, + anon_sym_RPAREN, + ACTIONS(15092), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14450), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173201] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15094), 1, + anon_sym_LBRACE, + ACTIONS(15096), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14735), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173278] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15098), 1, + anon_sym_RPAREN, + ACTIONS(15100), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14183), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173355] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15102), 1, + anon_sym_RPAREN, + ACTIONS(15104), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14776), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6064), 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(6062), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [173471] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15106), 1, + anon_sym_RBRACK, + ACTIONS(15108), 1, + anon_sym_DOT_DOT, + ACTIONS(15110), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14387), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173548] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15112), 1, + anon_sym_LBRACE, + ACTIONS(15114), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14784), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173625] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(15116), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 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(5988), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [173737] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15118), 1, + anon_sym_LBRACE, + ACTIONS(15120), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14793), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 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(4512), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [173853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5888), 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(5886), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [173892] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15122), 1, + anon_sym_RBRACK, + ACTIONS(15124), 1, + anon_sym_DOT_DOT, + ACTIONS(15126), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14787), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [173969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5892), 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(5890), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [174008] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15128), 1, + anon_sym_RBRACK, + ACTIONS(15130), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14478), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174085] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15132), 1, + anon_sym_RBRACK, + ACTIONS(15134), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14709), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174162] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15136), 1, + anon_sym_RBRACK, + ACTIONS(15138), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14673), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174239] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15140), 1, + anon_sym_RBRACK, + ACTIONS(15142), 1, + anon_sym_DOT_DOT, + ACTIONS(15144), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14681), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5896), 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(5894), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [174355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5900), 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(5898), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [174394] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15146), 1, + anon_sym_LBRACE, + ACTIONS(15148), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13945), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 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(5820), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [174510] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15150), 1, + anon_sym_RPAREN, + ACTIONS(15152), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14722), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15154), 1, + anon_sym_else, + ACTIONS(15157), 1, + sym__newline, + STATE(14580), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 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(4426), 21, + 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_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_catch, + anon_sym_CARET, + [174632] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(2225), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(5812), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5810), 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_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_catch, + anon_sym_CARET, + [174675] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15160), 1, + anon_sym_LBRACE, + ACTIONS(15162), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14777), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174752] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15164), 1, + anon_sym_LBRACE, + ACTIONS(15166), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13950), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174829] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15168), 1, + anon_sym_LBRACE, + ACTIONS(15170), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14285), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15172), 1, + anon_sym_BANG, + ACTIONS(6026), 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(6024), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [174947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6032), 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(6030), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [174986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 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(5704), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [175025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15174), 1, + anon_sym_COLON, + ACTIONS(4490), 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(4488), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [175066] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(15176), 1, + anon_sym_DOT_DOT, + ACTIONS(15178), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(15180), 1, + anon_sym_catch, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5706), 3, + anon_sym_else, + anon_sym_PIPE2, + sym__newline, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 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(5838), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [175180] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2702), 18, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [175231] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(2225), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4420), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4418), 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_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_catch, + anon_sym_CARET, + [175274] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2704), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 14, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [175331] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(2225), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4424), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4422), 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_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_catch, + anon_sym_CARET, + [175374] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11135), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15182), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14788), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(2225), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4438), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4436), 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_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_catch, + anon_sym_CARET, + [175494] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15184), 1, + anon_sym_RBRACK, + ACTIONS(15186), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14790), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 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(5842), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [175610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5880), 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(5878), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [175649] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15188), 1, + anon_sym_RBRACK, + ACTIONS(15190), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14791), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_EQ, + ACTIONS(2225), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4442), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4440), 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_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_catch, + anon_sym_CARET, + [175769] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15192), 1, + anon_sym_RBRACK, + ACTIONS(15194), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14555), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175846] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15196), 1, + anon_sym_LBRACE, + STATE(9570), 1, sym_variant_payload, - ACTIONS(1494), 7, - anon_sym_PIPE, + ACTIONS(2659), 6, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1492), 22, + ACTIONS(2657), 23, anon_sym_LPAREN, anon_sym_DASH, + anon_sym_PIPE, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, - anon_sym_PIPE2, + 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, @@ -321818,234 +986700,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [80978] = 22, + [175889] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(2670), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(7451), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4863), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [81055] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(604), 1, - anon_sym_RBRACE, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(2672), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7453), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4982), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6526), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [81132] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7455), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15199), 1, anon_sym_RBRACK, - ACTIONS(7457), 1, + ACTIONS(15201), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4725), 1, + STATE(14353), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81209] = 22, + [175966] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7459), 1, - anon_sym_RBRACK, - ACTIONS(7461), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(7463), 1, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15203), 1, + anon_sym_RPAREN, + ACTIONS(15205), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4762), 1, + STATE(14095), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81286] = 4, + [176043] = 3, ACTIONS(3), 1, sym_comment, - STATE(3510), 1, - aux_sym_type_repeat1, - ACTIONS(1478), 8, + ACTIONS(5680), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -322054,7 +986825,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1476), 22, + ACTIONS(5678), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [176082] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 5, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 13, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [176139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5848), 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(5846), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [176178] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15207), 1, + anon_sym_LBRACE, + ACTIONS(15209), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13987), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5994), 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(5992), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [176294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 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(2901), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [176333] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15211), 1, + anon_sym_LBRACE, + ACTIONS(15213), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13993), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176410] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15215), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14823), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15217), 1, + anon_sym_else, + ACTIONS(15220), 1, + sym__newline, + STATE(14581), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 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(4444), 21, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, @@ -322063,7 +987193,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322075,192 +987204,1930 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, - sym__newline, - [81327] = 22, + [176532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(5852), 8, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7465), 1, - anon_sym_RBRACK, - ACTIONS(7467), 1, - sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4785), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(5850), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [176571] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(14765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81404] = 22, + ACTIONS(2702), 6, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [176638] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(14763), 1, anon_sym_and, - ACTIONS(7469), 1, - anon_sym_RBRACK, - ACTIONS(7471), 1, - sym__newline, - STATE(3301), 1, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, sym_argument_list, - STATE(4878), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(2708), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(14749), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(14765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81481] = 22, + ACTIONS(2706), 6, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [176703] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(7473), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15223), 1, anon_sym_RPAREN, - ACTIONS(7475), 1, + ACTIONS(15225), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4747), 1, + STATE(14145), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81558] = 7, + [176780] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15227), 1, + anon_sym_RBRACK, + ACTIONS(15229), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14825), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176857] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15231), 1, + anon_sym_RBRACK, + ACTIONS(15233), 1, + anon_sym_DOT_DOT, + ACTIONS(15235), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14125), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176934] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(2708), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2706), 7, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_catch, + sym__newline, + [176997] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2704), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2702), 11, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [177056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15237), 1, + anon_sym_COLON, + ACTIONS(4496), 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(4494), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [177097] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2704), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2702), 16, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [177150] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15239), 1, + anon_sym_LBRACE, + ACTIONS(15241), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14027), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177227] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15243), 1, + anon_sym_RBRACK, + ACTIONS(15245), 1, + anon_sym_DOT_DOT, + ACTIONS(15247), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14828), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5884), 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(5882), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [177343] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15249), 1, + anon_sym_LBRACE, + ACTIONS(15251), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14031), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177420] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(15253), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177493] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2710), 6, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [177560] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15255), 1, + anon_sym_else, + ACTIONS(15257), 1, + sym__newline, + STATE(14297), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4392), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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_catch, + anon_sym_CARET, + [177605] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15260), 1, + anon_sym_else, + ACTIONS(15263), 1, + sym__newline, + STATE(14582), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 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(4456), 21, + 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_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_catch, + anon_sym_CARET, + [177650] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15266), 1, + anon_sym_RBRACK, + ACTIONS(15268), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14081), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177727] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(15270), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177800] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 11, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_catch, + sym__newline, + [177861] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11001), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15272), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14544), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177938] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2716), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2714), 6, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [178005] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10859), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15274), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14096), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178082] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15276), 1, + anon_sym_RBRACK, + ACTIONS(15278), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14545), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178159] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15280), 1, + anon_sym_RBRACK, + ACTIONS(15282), 1, + anon_sym_DOT_DOT, + ACTIONS(15284), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(13938), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178236] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15286), 1, + anon_sym_LBRACE, + ACTIONS(15288), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14299), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178313] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13807), 1, + anon_sym_DOT_DOT, + ACTIONS(13809), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13811), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13842), 3, + anon_sym_COMMA, + anon_sym_COLON, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178386] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13807), 1, + anon_sym_DOT_DOT, + ACTIONS(13809), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13811), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14072), 3, + anon_sym_COMMA, + anon_sym_COLON, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178459] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13807), 1, + anon_sym_DOT_DOT, + ACTIONS(13809), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13811), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13868), 3, + anon_sym_COMMA, + anon_sym_COLON, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15290), 1, + anon_sym_else, + ACTIONS(15293), 1, + sym__newline, + STATE(14583), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 21, + 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_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_catch, + anon_sym_CARET, + [178577] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15296), 1, + anon_sym_RBRACK, + ACTIONS(15298), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14546), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178654] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15300), 1, + anon_sym_RPAREN, + ACTIONS(15302), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14020), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178731] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15304), 1, + anon_sym_RBRACK, + ACTIONS(15306), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14100), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178808] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2087), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15308), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14202), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [178885] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2670), 15, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [178938] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2724), 6, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [179007] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15310), 1, + anon_sym_RBRACK, + ACTIONS(15312), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14218), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [179084] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15314), 1, anon_sym_SEMI, - ACTIONS(7480), 1, + ACTIONS(15317), 1, anon_sym_RBRACK, - ACTIONS(7483), 1, + ACTIONS(15320), 1, sym__newline, - STATE(4845), 1, + STATE(14376), 1, aux_sym_import_declaration_repeat1, - ACTIONS(477), 6, + ACTIONS(1292), 6, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(486), 21, + ACTIONS(1285), 21, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PIPE, @@ -322269,7 +989136,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322281,491 +989147,573 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, - [81605] = 22, + [179131] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(7486), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15323), 1, anon_sym_RBRACK, - ACTIONS(7488), 1, + ACTIONS(15325), 1, + anon_sym_DOT_DOT, + ACTIONS(15327), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(4865), 1, + STATE(14233), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81682] = 22, + [179208] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(6656), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(7490), 1, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15329), 1, anon_sym_RBRACK, - ACTIONS(7492), 1, + ACTIONS(15331), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(5025), 1, + STATE(14103), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81759] = 22, + [179285] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + ACTIONS(13247), 1, anon_sym_or, - ACTIONS(6534), 1, + ACTIONS(13249), 1, anon_sym_and, - ACTIONS(6574), 1, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(13437), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(7494), 1, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15333), 1, anon_sym_RPAREN, - ACTIONS(7496), 1, + ACTIONS(15335), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(5000), 1, + STATE(14177), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81836] = 22, + [179362] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7498), 1, + ACTIONS(15337), 1, + anon_sym_SEMI, + ACTIONS(15340), 1, anon_sym_RBRACK, - ACTIONS(7500), 1, - anon_sym_DOT_DOT, - ACTIONS(7502), 1, + ACTIONS(15343), 1, sym__newline, - STATE(3301), 1, - sym_argument_list, - STATE(4792), 1, + STATE(14157), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 21, + anon_sym_LPAREN, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6536), 4, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81913] = 22, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_catch, + anon_sym_CARET, + [179409] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6504), 1, + ACTIONS(13227), 1, anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2672), 5, + anon_sym_DOT_DOT, anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6576), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2670), 18, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, anon_sym_DOT_DOT_EQ, - ACTIONS(7504), 1, + anon_sym_orelse, + 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_catch, + sym__newline, + [179460] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15346), 1, anon_sym_RBRACK, - ACTIONS(7506), 1, - anon_sym_DOT_DOT, - ACTIONS(7508), 1, + ACTIONS(15348), 1, sym__newline, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - STATE(5016), 1, + STATE(14488), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6538), 2, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6526), 3, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(6536), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [81990] = 3, + [179537] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 8, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(11043), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1803), 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, + ACTIONS(13249), 1, 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, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15350), 1, sym__newline, - [82028] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, + STATE(9646), 1, sym_argument_list, - ACTIONS(6946), 2, + STATE(13941), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1490), 6, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1488), 18, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 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, - sym__newline, - [82076] = 3, + [179614] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1689), 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(1687), 22, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_PIPE2, + ACTIONS(2670), 1, anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - 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, - [82114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1645), 8, - anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(2672), 1, anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, anon_sym_or, - anon_sym_LT, - anon_sym_GT, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1643), 22, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, + ACTIONS(13287), 1, anon_sym_orelse, + ACTIONS(13439), 1, 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, + ACTIONS(15352), 1, + anon_sym_RBRACK, + ACTIONS(15354), 1, sym__newline, - [82152] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7213), 1, - anon_sym_and, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, + STATE(9646), 1, sym_argument_list, - ACTIONS(1409), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6500), 2, + STATE(14120), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(7197), 2, + ACTIONS(13241), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7201), 2, + ACTIONS(13245), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7217), 2, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(13257), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, + ACTIONS(13243), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(7215), 4, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1407), 5, + [179691] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15356), 1, + anon_sym_SEMI, + ACTIONS(15359), 1, + anon_sym_RBRACK, + ACTIONS(15362), 1, + sym__newline, + STATE(14205), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 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_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_catch, + anon_sym_CARET, + [179738] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15365), 1, + anon_sym_else, + ACTIONS(15367), 1, + sym__newline, + STATE(14094), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 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(4474), 21, + 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_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_catch, + anon_sym_CARET, + [179783] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + ACTIONS(15370), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, + ACTIONS(15372), 1, sym__newline, - [82216] = 5, + STATE(9646), 1, + sym_argument_list, + STATE(14422), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [179860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7510), 1, + ACTIONS(15374), 1, + anon_sym_else, + ACTIONS(15376), 1, + sym__newline, + STATE(14562), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4404), 22, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(3309), 1, - sym_variant_payload, - ACTIONS(1494), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1492), 22, - anon_sym_LPAREN, anon_sym_DASH, anon_sym_PIPE, anon_sym_QMARK, @@ -322773,7 +989721,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322785,12 +989732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, - sym__newline, - [82258] = 3, + [179905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 8, + ACTIONS(5904), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -322799,16 +989746,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1663), 22, + ACTIONS(5902), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -322820,12 +989767,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [82296] = 3, + [179944] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 8, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(15180), 1, + anon_sym_catch, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 4, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5980), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -322834,16 +989835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1727), 22, + ACTIONS(5978), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -322855,12 +989856,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [82334] = 3, + [180056] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1725), 8, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15379), 1, + anon_sym_RPAREN, + ACTIONS(15381), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14210), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5686), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -322869,16 +989926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1723), 22, + ACTIONS(5684), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -322890,52 +989947,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [82372] = 8, + [180172] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6950), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6976), 1, + ACTIONS(13227), 1, anon_sym_DOT, - STATE(3708), 1, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13807), 1, + anon_sym_DOT_DOT, + ACTIONS(13809), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13811), 1, + anon_sym_catch, + STATE(9646), 1, sym_argument_list, - ACTIONS(6946), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1405), 6, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1403), 18, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5706), 3, + anon_sym_COMMA, + anon_sym_COLON, + sym__newline, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 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, - sym__newline, - [82420] = 3, + [180245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1613), 8, + ACTIONS(5690), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -322944,16 +990015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1611), 22, + ACTIONS(5688), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -322965,12 +990036,683 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [82458] = 3, + [180284] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1649), 8, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14411), 1, + anon_sym_DOT, + ACTIONS(15180), 1, + anon_sym_catch, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 4, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180357] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11199), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15383), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14363), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180434] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14769), 1, + anon_sym_LT_LT, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2672), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2670), 14, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [180491] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(2672), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(2670), 19, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + sym__newline, + [180540] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(13605), 1, + anon_sym_DOT_DOT, + ACTIONS(15385), 1, + anon_sym_RBRACK, + ACTIONS(15387), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14570), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180617] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15389), 1, + anon_sym_RBRACK, + ACTIONS(15391), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14282), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180694] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15393), 1, + anon_sym_RBRACK, + ACTIONS(15395), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14283), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180771] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13811), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(2670), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180842] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15397), 1, + anon_sym_RBRACK, + ACTIONS(15399), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14365), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15401), 1, + anon_sym_else, + ACTIONS(15403), 1, + sym__newline, + STATE(14563), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4426), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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_catch, + anon_sym_CARET, + [180964] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15406), 1, + anon_sym_RBRACK, + ACTIONS(15408), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14366), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181041] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15410), 1, + anon_sym_RBRACK, + ACTIONS(15412), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14208), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181118] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15414), 1, + sym__newline, + STATE(9646), 1, + sym_argument_list, + STATE(14731), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5964), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -322979,16 +990721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1647), 22, + ACTIONS(5962), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323000,97 +990742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [82496] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 6, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1399), 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, - [82546] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 5, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 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, - [82602] = 3, + [181234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 8, + ACTIONS(5970), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -323099,16 +990757,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1731), 22, + ACTIONS(5968), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323120,104 +990778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [82640] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1401), 6, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1399), 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, - [82688] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6958), 1, - anon_sym_orelse, - ACTIONS(6960), 1, - anon_sym_catch, - ACTIONS(6962), 1, - anon_sym_or, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 3, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, sym__newline, - ACTIONS(6966), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [82760] = 3, + [181273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 8, + ACTIONS(5908), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -323226,16 +990793,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1735), 22, + ACTIONS(5906), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323247,62 +990814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [82798] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6962), 1, - anon_sym_or, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1399), 5, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, anon_sym_catch, + anon_sym_CARET, sym__newline, - [82866] = 3, + [181312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 8, + ACTIONS(5724), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -323311,16 +990829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1973), 22, + ACTIONS(5722), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323332,12 +990850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [82904] = 3, + [181351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 8, + ACTIONS(5650), 8, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -323346,16 +990865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1675), 22, + ACTIONS(5648), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323367,110 +990886,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [82942] = 17, + [181390] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, + ACTIONS(13227), 1, anon_sym_DOT, - STATE(3708), 1, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15416), 1, + anon_sym_RBRACK, + ACTIONS(15418), 1, + anon_sym_DOT_DOT, + ACTIONS(15420), 1, + sym__newline, + STATE(9646), 1, sym_argument_list, - ACTIONS(1409), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, + STATE(14206), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6948), 2, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6968), 2, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, + ACTIONS(13257), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1407), 5, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [83008] = 16, + [181467] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(2049), 1, + anon_sym_RBRACE, + ACTIONS(13217), 1, anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, + ACTIONS(13225), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, + ACTIONS(13227), 1, anon_sym_DOT, - STATE(3708), 1, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(13435), 1, + anon_sym_DOT_DOT, + ACTIONS(13437), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(13439), 1, + anon_sym_catch, + ACTIONS(15422), 1, + sym__newline, + STATE(9646), 1, sym_argument_list, - ACTIONS(1409), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, + STATE(14669), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(6948), 2, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6968), 2, + ACTIONS(13253), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, + ACTIONS(13257), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1407), 6, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [83072] = 3, + [181544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1653), 8, - anon_sym_BANG, + ACTIONS(5040), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323478,16 +991010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1651), 22, + ACTIONS(5038), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323499,86 +991031,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83110] = 14, + [181582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(6086), 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(6084), 23, anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 10, + anon_sym_LBRACK, + anon_sym_else, 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_catch, + anon_sym_CARET, sym__newline, - [83170] = 10, + [181620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(5066), 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(5064), 23, anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 6, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1399), 14, + anon_sym_LBRACK, + anon_sym_else, 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, @@ -323588,20 +991099,3909 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_catch, + anon_sym_CARET, sym__newline, - [83222] = 4, + [181658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, + ACTIONS(5594), 7, anon_sym_PIPE, - ACTIONS(477), 6, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(486), 23, + ACTIONS(5592), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [181696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 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(4368), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [181734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 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(5420), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [181772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 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(5238), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [181810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6082), 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(6080), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [181848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4390), 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(4388), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [181886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 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(5486), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [181924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5492), 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(5490), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [181962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6168), 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(6166), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 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(4548), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6320), 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(6318), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5276), 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(5274), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 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(1192), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 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(4852), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 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(5620), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 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(4552), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 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(5100), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 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(4556), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5228), 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(5226), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 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(4692), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 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(4696), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 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(4560), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 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(5494), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4882), 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(4880), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 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(4670), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 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(5442), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 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(5436), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6124), 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(6122), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 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(4700), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 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(5446), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 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(4704), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6142), 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(6140), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 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(4638), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 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(5068), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 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(5718), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [182988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 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(4708), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5792), 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(5790), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5268), 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(5266), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 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(4712), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6324), 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(6322), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 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(4570), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 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(5080), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5500), 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(5498), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4644), 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(4642), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6134), 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(6132), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 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(1331), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6328), 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(6326), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 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(4576), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 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(5072), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6172), 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(6170), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 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(5624), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 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(5628), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5598), 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(5596), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6332), 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(6330), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5634), 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(5632), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5504), 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(5502), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 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(4676), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4468), 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(4466), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5110), 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(5108), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5114), 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(5112), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5118), 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(5116), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [183976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 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(5506), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 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(5510), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5516), 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(5514), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5520), 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(5518), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 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(5636), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 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(4716), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5146), 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(5144), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5642), 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(5640), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5452), 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(5450), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5434), 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(5432), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 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(5270), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6176), 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(6174), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 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(4884), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 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(5160), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5524), 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(5522), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 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(4888), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5602), 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(5600), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 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(4646), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 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(5604), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5280), 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(5278), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5232), 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(5230), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6186), 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(6184), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 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(5234), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5406), 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(5404), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6190), 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(6188), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 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(4892), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [184964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6194), 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(6192), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6022), 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(6020), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5204), 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(5202), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6042), 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(6040), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5410), 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(5408), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 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(4634), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6336), 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(6334), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5208), 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(5206), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 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(4580), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5610), 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(5608), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 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(4584), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 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(4502), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5244), 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(5242), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5106), 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(5104), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5248), 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(5246), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 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(5612), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4736), 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(4732), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4590), 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(4588), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 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(5616), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5646), 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(5644), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6340), 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(6338), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 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(5148), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 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(4592), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 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(5458), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14473), 1, + anon_sym_PIPE, + ACTIONS(1292), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1285), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH, @@ -323611,7 +995011,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -323623,60 +995022,453 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83262] = 15, + [185916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(1409), 2, + ACTIONS(15424), 1, + anon_sym_else, + ACTIONS(15426), 1, + sym__newline, + STATE(14721), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 6, anon_sym_DOT_DOT, anon_sym_or, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7217), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4474), 21, + anon_sym_LPAREN, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7215), 4, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1407), 6, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_catch, + anon_sym_CARET, + [185960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 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(5794), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [185998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4382), 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(4380), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5122), 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(5120), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 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(4630), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4386), 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(4384), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4896), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 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(5854), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 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(4900), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 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(4904), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6344), 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(6342), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186340] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14755), 1, + anon_sym_DOT_DOT, + ACTIONS(14757), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(5706), 2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, sym__newline, - [83324] = 3, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14749), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14771), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14751), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [186412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1657), 8, - anon_sym_BANG, + ACTIONS(5154), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323684,16 +995476,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1655), 22, + ACTIONS(5152), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323705,14 +995497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83362] = 4, + [186450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, - anon_sym_BANG, - ACTIONS(1781), 7, + ACTIONS(5126), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323720,16 +995511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1779), 22, + ACTIONS(5124), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323741,13 +995532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83402] = 3, + [186488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 8, - anon_sym_BANG, + ACTIONS(6348), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323755,16 +995546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(2029), 22, + ACTIONS(6346), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323776,13 +995567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83440] = 3, + [186526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 8, - anon_sym_BANG, + ACTIONS(5378), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323790,16 +995581,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1513), 22, + ACTIONS(5376), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323811,31 +995602,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83478] = 4, + [186564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7515), 1, - anon_sym_DOT, - ACTIONS(1501), 7, - anon_sym_BANG, + ACTIONS(5130), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - ACTIONS(1499), 22, + anon_sym_DOT, + ACTIONS(5128), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323847,13 +995637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83518] = 3, + [186602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 8, - anon_sym_BANG, + ACTIONS(4534), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323861,16 +995651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(2033), 22, + ACTIONS(4532), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323882,13 +995672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83556] = 3, + [186640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 8, - anon_sym_BANG, + ACTIONS(5138), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323896,16 +995686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(2037), 22, + ACTIONS(5136), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323917,13 +995707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83594] = 3, + [186678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 8, - anon_sym_BANG, + ACTIONS(5166), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323931,16 +995721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1763), 22, + ACTIONS(5164), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323952,13 +995742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83632] = 3, + [186716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 8, - anon_sym_BANG, + ACTIONS(5142), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -323966,16 +995756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1985), 22, + ACTIONS(5140), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -323987,13 +995777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83670] = 3, + [186754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 8, - anon_sym_BANG, + ACTIONS(5390), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -324001,16 +995791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1815), 22, + ACTIONS(5388), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -324022,2363 +995812,955 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [83708] = 19, + [186792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, + ACTIONS(5772), 7, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7207), 1, - anon_sym_orelse, - ACTIONS(7209), 1, - anon_sym_catch, - ACTIONS(7211), 1, anon_sym_or, - ACTIONS(7213), 1, - anon_sym_and, - ACTIONS(7219), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - STATE(3301), 1, + anon_sym_DOT, + ACTIONS(5770), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 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(4908), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5134), 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(5132), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 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(4436), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5732), 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(5730), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [186982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 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(4802), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 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(5210), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 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(4502), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5264), 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(5262), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5170), 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(5168), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6138), 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(6136), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5216), 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(5214), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5318), 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(5316), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5916), 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(5914), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187324] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + STATE(9646), 1, sym_argument_list, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(7197), 2, + ACTIONS(14749), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7201), 2, + ACTIONS(14753), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7217), 2, + ACTIONS(14767), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(14771), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1367), 3, + ACTIONS(2702), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, sym__newline, - ACTIONS(7199), 3, + ACTIONS(14751), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(7215), 4, + ACTIONS(14765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [83778] = 17, + [187394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, + ACTIONS(5582), 7, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7211), 1, anon_sym_or, - ACTIONS(7213), 1, - anon_sym_and, - ACTIONS(7219), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - STATE(3301), 1, + anon_sym_DOT, + ACTIONS(5580), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 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(4914), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5782), 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(5778), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5414), 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(5412), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 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(5088), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 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(4920), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 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(4924), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6198), 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(6196), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5322), 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(5320), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 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(4928), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [187774] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(14759), 1, + anon_sym_orelse, + ACTIONS(14761), 1, + anon_sym_or, + ACTIONS(14763), 1, + anon_sym_and, + ACTIONS(14769), 1, + anon_sym_LT_LT, + ACTIONS(14773), 1, + anon_sym_catch, + STATE(9646), 1, sym_argument_list, - ACTIONS(6500), 2, + ACTIONS(13223), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(7197), 2, + ACTIONS(14749), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7201), 2, + ACTIONS(14753), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7217), 2, + ACTIONS(14767), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(14771), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7215), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1367), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [83844] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7517), 1, - anon_sym_BANG, - ACTIONS(1791), 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(1789), 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, - [83884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 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(1795), 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, - [83922] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 6, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1367), 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, - [83972] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 5, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1367), 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, - [84028] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1369), 6, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1367), 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, - [84076] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1369), 1, - anon_sym_DOT_DOT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6958), 1, - anon_sym_orelse, - ACTIONS(6960), 1, - anon_sym_catch, - ACTIONS(6962), 1, - anon_sym_or, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1367), 3, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(6966), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [84148] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1369), 1, - anon_sym_DOT_DOT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6962), 1, - anon_sym_or, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1367), 5, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [84216] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6964), 1, - anon_sym_and, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(1486), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1484), 5, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [84282] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(1486), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6968), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6966), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1484), 6, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [84346] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LT_LT, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6970), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6974), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1367), 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, - [84406] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6950), 1, - anon_sym_LBRACK, - ACTIONS(6976), 1, - anon_sym_DOT, - STATE(3708), 1, - sym_argument_list, - ACTIONS(6942), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6946), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 6, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1367), 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, - [84458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 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(1517), 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, - [84496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1685), 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(1683), 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, - [84534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 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(1553), 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, - [84572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1673), 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(1671), 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, - [84610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 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(1565), 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, - [84648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 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(1759), 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, - [84686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 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(1569), 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, - [84724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1769), 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(1767), 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, - [84762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 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(1585), 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, - [84800] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7213), 1, - anon_sym_and, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(1486), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7217), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7215), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1484), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [84864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 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(1785), 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, - [84902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2043), 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(2041), 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, - [84940] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(1486), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7217), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7215), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1484), 6, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [85002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 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(1989), 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, - [85040] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(1369), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1367), 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, - [85098] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1401), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 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, - [85154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 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(1747), 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, - [85192] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7211), 1, - anon_sym_or, - ACTIONS(7213), 1, - anon_sym_and, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7217), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(7215), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1399), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [85258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1681), 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(1679), 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, - [85296] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1367), 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, - [85348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1773), 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(1771), 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, - [85386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 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(1799), 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, - [85424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 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(1505), 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, - [85462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 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(1615), 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, - [85500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 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(1619), 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, - [85538] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(7199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(1401), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 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, - [85596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1625), 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(1623), 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, - [85634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 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(1509), 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, - [85672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 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(1627), 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, - [85710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1633), 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(1631), 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, - [85748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 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(1465), 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, - [85786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 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(1635), 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, - [85824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 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(1639), 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, - [85862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 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(1603), 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, - [85900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 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(1751), 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, - [85938] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1399), 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, - [85990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 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(1877), 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, - [86028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(6508), 1, - anon_sym_BANG, - ACTIONS(483), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(477), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(486), 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, - [86072] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1401), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1399), 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, - [86122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 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(1667), 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, - [86160] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1369), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1367), 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, - [86210] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1369), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1367), 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, - [86266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1983), 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(1981), 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, - [86304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 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(1659), 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, - [86342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 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(1977), 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, - [86380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 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(1755), 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, - [86418] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_DOT_DOT, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(7207), 1, - anon_sym_orelse, - ACTIONS(7209), 1, - anon_sym_catch, - ACTIONS(7211), 1, - anon_sym_or, - ACTIONS(7213), 1, - anon_sym_and, - ACTIONS(7219), 1, - anon_sym_LT_LT, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(7197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7217), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1399), 3, + ACTIONS(2670), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, sym__newline, - ACTIONS(7199), 3, + ACTIONS(14751), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(7215), 4, + ACTIONS(14765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [86488] = 3, + [187844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1693), 8, - anon_sym_BANG, + ACTIONS(5300), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -326386,1818 +996768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1691), 22, + ACTIONS(5298), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, - [86526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 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(486), 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, - [86563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 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(457), 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, - [86600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 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(1529), 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, - [86637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1539), 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(1537), 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, - [86674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 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(1525), 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, - [86711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 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(1839), 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, - [86748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 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(1561), 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, - [86785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1705), 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(1703), 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, - [86822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1575), 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(1573), 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, - [86859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 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(1835), 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, - [86896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 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(2049), 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, - [86933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 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(1847), 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, - [86970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1853), 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(1851), 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, - [87007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 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(1541), 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, - [87044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 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(1859), 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, - [87081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 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(1863), 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, - [87118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(396), 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(391), 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, - [87155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1741), 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(1739), 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, - [87192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1891), 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(1889), 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, - [87229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1593), 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(1591), 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, - [87266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 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(1893), 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, - [87303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 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(1897), 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, - [87340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 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(1867), 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, - [87377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1903), 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(1901), 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, - [87414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 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(449), 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, - [87451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(459), 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(461), 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, - [87488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 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(1873), 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, - [87525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 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(1929), 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, - [87562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1701), 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(1699), 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, - [87599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 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(1905), 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, - [87636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 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(1581), 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, - [87673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1597), 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(1595), 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, - [87710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1911), 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(1909), 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, - [87747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 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(1913), 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, - [87784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1919), 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(1917), 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, - [87821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 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(1921), 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, - [87858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1927), 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(1925), 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, - [87895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1813), 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(1811), 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, - [87932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 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(1953), 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, - [87969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1959), 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(1957), 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, - [88006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 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(1961), 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, - [88043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 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(1965), 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, - [88080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 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(1993), 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, - [88117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1999), 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(1997), 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, - [88154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 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(453), 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, - [88191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2003), 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(2001), 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, - [88228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2007), 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(2005), 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, - [88265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 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(1711), 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, - [88302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 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(2009), 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, - [88339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 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(2013), 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, - [88376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2019), 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(2017), 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, - [88413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 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(2021), 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, - [88450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 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(2025), 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, @@ -328209,46 +996789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [88487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 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(2045), 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, - [88524] = 3, + [187882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 7, + ACTIONS(5326), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328256,16 +996803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1843), 22, + ACTIONS(5324), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328277,46 +996824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [88561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1777), 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(1775), 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, - [88598] = 3, + [187920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 7, + ACTIONS(1254), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328324,16 +996838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1807), 22, + ACTIONS(1258), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328345,46 +996859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [88635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 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(1823), 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, - [88672] = 3, + [187958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 7, + ACTIONS(5540), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328392,16 +996873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1881), 22, + ACTIONS(5538), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328413,46 +996894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [88709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 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(1521), 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, - [88746] = 3, + [187996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 7, + ACTIONS(5094), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328460,16 +996908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1885), 22, + ACTIONS(5092), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328481,46 +996929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [88783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 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(1707), 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, - [88820] = 3, + [188034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 7, + ACTIONS(6152), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328528,16 +996943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1715), 22, + ACTIONS(6150), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328549,12 +996964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [88857] = 3, + [188072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1721), 7, + ACTIONS(4538), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328562,16 +996978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1719), 22, + ACTIONS(4536), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328583,12 +996999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [88894] = 3, + [188110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 7, + ACTIONS(5860), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328596,16 +997013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1743), 22, + ACTIONS(5858), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328617,12 +997034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [88931] = 3, + [188148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 7, + ACTIONS(5330), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328630,16 +997048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1827), 22, + ACTIONS(5328), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328651,12 +997069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [88968] = 3, + [188186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 7, + ACTIONS(5394), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328664,16 +997083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1831), 22, + ACTIONS(5392), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328685,12 +997104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89005] = 3, + [188224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 7, + ACTIONS(5920), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328698,16 +997118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1855), 22, + ACTIONS(5918), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328719,29 +997139,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89042] = 3, + [188262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 7, - anon_sym_PIPE, + ACTIONS(15428), 1, + anon_sym_else, + ACTIONS(15430), 1, + sym__newline, + STATE(14718), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 6, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1533), 22, + ACTIONS(4426), 21, 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, anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -328753,12 +997178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, - sym__newline, - [89079] = 3, + [188306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 7, + ACTIONS(1194), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328766,16 +997191,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1549), 22, + ACTIONS(1198), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328787,12 +997212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89116] = 3, + [188344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 7, + ACTIONS(1333), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328800,16 +997226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1557), 22, + ACTIONS(1335), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328821,12 +997247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89153] = 3, + [188382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 7, + ACTIONS(5060), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328834,16 +997261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1969), 22, + ACTIONS(5058), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328855,12 +997282,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89190] = 3, + [188420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 7, + ACTIONS(4846), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328868,16 +997296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1577), 22, + ACTIONS(4844), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328889,12 +997317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89227] = 3, + [188458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 7, + ACTIONS(5334), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328902,16 +997331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1545), 22, + ACTIONS(5332), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328923,12 +997352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89264] = 3, + [188496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1601), 7, + ACTIONS(6060), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328936,16 +997366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1599), 22, + ACTIONS(6058), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328957,12 +997387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89301] = 3, + [188534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 7, + ACTIONS(2726), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -328970,16 +997401,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1695), 22, + ACTIONS(2724), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -328991,12 +997422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89338] = 3, + [188572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1935), 7, + ACTIONS(5776), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -329004,16 +997436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1933), 22, + ACTIONS(5774), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -329025,12 +997457,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89375] = 3, + [188610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1939), 7, + ACTIONS(5220), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -329038,16 +997471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1937), 22, + ACTIONS(5218), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -329059,12 +997492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89412] = 3, + [188648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 7, + ACTIONS(5744), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -329072,16 +997506,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1941), 22, + ACTIONS(5742), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -329093,12 +997527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89449] = 3, + [188686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1947), 7, + ACTIONS(5338), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -329106,16 +997541,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1945), 22, + ACTIONS(5336), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -329127,12 +997562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89486] = 3, + [188724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 7, + ACTIONS(5382), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -329140,16 +997576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1607), 22, + ACTIONS(5380), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -329161,12 +997597,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89523] = 3, + [188762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(423), 7, + ACTIONS(4722), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -329174,16 +997611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(418), 22, + ACTIONS(4720), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -329195,12 +997632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89560] = 3, + [188800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 7, + ACTIONS(5528), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -329208,16 +997646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1819), 22, + ACTIONS(5526), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -329229,12 +997667,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89597] = 3, + [188838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 7, + ACTIONS(4934), 7, anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, @@ -329242,16 +997681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1607), 22, + ACTIONS(4932), 23, anon_sym_LPAREN, anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_else, 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, @@ -329263,178 +997702,6351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_catch, anon_sym_CARET, sym__newline, - [89634] = 3, + [188876] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 7, - anon_sym_PIPE, + ACTIONS(2704), 1, anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(1949), 22, + ACTIONS(14241), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, anon_sym_LBRACK, - anon_sym_PIPE2, - anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, anon_sym_orelse, - anon_sym_catch, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, 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, - [89671] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, + ACTIONS(14405), 1, anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, + ACTIONS(14409), 1, anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(7519), 1, - anon_sym_PIPE, - STATE(3301), 1, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, + ACTIONS(14377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6526), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6538), 2, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6536), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [89741] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_LBRACK, - ACTIONS(6504), 1, - anon_sym_DOT, - ACTIONS(6520), 1, - anon_sym_LT_LT, - ACTIONS(6528), 1, - anon_sym_orelse, - ACTIONS(6530), 1, - anon_sym_catch, - ACTIONS(6532), 1, - anon_sym_or, - ACTIONS(6534), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_DOT_DOT, - ACTIONS(6576), 1, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2702), 3, + anon_sym_PIPE2, anon_sym_DOT_DOT_EQ, - ACTIONS(7521), 1, - anon_sym_PIPE, - STATE(3301), 1, - sym_argument_list, - ACTIONS(6500), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(6516), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6522), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(6526), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(6538), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6536), 4, + sym__newline, + ACTIONS(14399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89811] = 8, + [188948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7523), 1, - ts_builtin_sym_end, - ACTIONS(7525), 1, - sym_identifier, - ACTIONS(7528), 1, - anon_sym_import, - ACTIONS(7531), 1, - anon_sym_test, - ACTIONS(7534), 1, - anon_sym_hide, - ACTIONS(7537), 1, - sym__newline, - STATE(3782), 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, - [89844] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7540), 1, + ACTIONS(5586), 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(1501), 4, + ACTIONS(5584), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [188986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 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(5462), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5284), 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(5282), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 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(1252), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 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(4938), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 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(4942), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 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(4946), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 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(4950), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 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(5734), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 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(4728), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 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(3062), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 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(4470), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5484), 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(5482), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 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(5084), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 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(5172), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6056), 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(6054), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6074), 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(6072), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 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(4856), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5532), 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(5530), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4744), 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(4742), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 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(4516), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4522), 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(4520), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4808), 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(4806), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4748), 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(4746), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5480), 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(5478), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5544), 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(5542), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5548), 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(5546), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [189974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 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(4540), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5078), 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(5076), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5292), 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(5290), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 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(4860), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 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(4954), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5386), 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(5384), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 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(4372), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 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(4958), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 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(4962), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5342), 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(5340), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 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(4966), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 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(4650), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 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(5180), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 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(4970), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 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(4524), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190544] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14389), 1, + anon_sym_DOT_DOT, + ACTIONS(14391), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(5706), 2, + anon_sym_PIPE2, + sym__newline, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [190618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5468), 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(5466), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4656), 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(4654), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 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(5454), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 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(4864), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5398), 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(5396), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6272), 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(6270), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 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(4974), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4752), 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(4750), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 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(5470), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 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(4658), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [190998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 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(4868), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5346), 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(5344), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4756), 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(4754), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 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(4666), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 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(4872), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 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(4758), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 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(4876), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4816), 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(4814), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5552), 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(5550), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 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(4762), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6114), 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(6112), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 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(6254), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 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(4766), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 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(4848), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 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(4770), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6276), 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(6274), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 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(4978), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 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(4820), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 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(5348), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 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(4774), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 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(5184), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 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(4982), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 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(4986), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4780), 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(4778), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 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(5190), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 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(5352), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [191986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 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(4440), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 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(4782), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5800), 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(5798), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5358), 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(5356), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5308), 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(5306), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 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(5758), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5098), 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(5096), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5560), 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(5558), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 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(4680), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 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(4824), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192366] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15432), 1, + anon_sym_else, + ACTIONS(15434), 1, + sym__newline, + STATE(14719), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4444), 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_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_catch, + anon_sym_CARET, + [192410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5808), 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(5806), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5740), 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(5738), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4788), 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(4786), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 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(2710), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 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(4596), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 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(4600), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 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(4604), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 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(4990), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4792), 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(4790), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 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(4994), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6288), 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(6286), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6078), 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(6076), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 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(4828), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 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(5258), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2716), 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(2714), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [192980] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15436), 1, + anon_sym_else, + ACTIONS(15438), 1, + sym__newline, + STATE(14720), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4456), 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_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_catch, + anon_sym_CARET, + [193024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 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(4998), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 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(5002), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5362), 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(5360), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4796), 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(4794), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 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(5006), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 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(5010), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5366), 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(5364), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5296), 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(5294), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 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(4484), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5402), 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(5400), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 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(4414), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 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(4612), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 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(4798), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 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(4616), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 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(5802), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 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(4422), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 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(5156), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 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(5194), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 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(5198), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 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(5698), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 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(5562), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 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(4684), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 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(4688), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 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(5424), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 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(4832), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [193974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4838), 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(4836), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5476), 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(5474), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 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(4840), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5256), 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(5254), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5570), 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(5568), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6018), 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(6016), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5574), 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(5572), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5312), 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(5310), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5370), 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(5368), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 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(5014), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5252), 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(5250), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6292), 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(6290), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15440), 1, + anon_sym_else, + ACTIONS(15442), 1, + sym__newline, + STATE(14716), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4392), 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_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_catch, + anon_sym_CARET, + [194474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 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(5576), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6296), 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(6294), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 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(2694), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5374), 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(5372), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5224), 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(5222), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5536), 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(5534), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 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(4622), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5590), 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(5588), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194778] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(14241), 1, + anon_sym_LPAREN, + ACTIONS(14379), 1, + anon_sym_PIPE, + ACTIONS(14385), 1, + anon_sym_LBRACK, + ACTIONS(14393), 1, + anon_sym_orelse, + ACTIONS(14395), 1, + anon_sym_or, + ACTIONS(14397), 1, + anon_sym_and, + ACTIONS(14405), 1, + anon_sym_LT_LT, + ACTIONS(14409), 1, + anon_sym_catch, + ACTIONS(14411), 1, + anon_sym_DOT, + STATE(10753), 1, + sym_argument_list, + ACTIONS(14377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14381), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(14383), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(14401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(14403), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(14407), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(2670), 3, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(14399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [194850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5418), 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(5416), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4628), 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(4626), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 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(5018), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [194964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 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(5022), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 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(5026), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 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(5030), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 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(5034), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 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(4418), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 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(5042), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1292), 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(1285), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 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(5046), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 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(5054), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15444), 1, + anon_sym_else, + ACTIONS(15446), 1, + sym__newline, + STATE(14717), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(4404), 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_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_catch, + anon_sym_CARET, + [195350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6312), 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(6310), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5788), 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(5786), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 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(4364), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6316), 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(6314), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5288), 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(5286), 23, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + 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_catch, + anon_sym_CARET, + sym__newline, + [195540] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2702), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2704), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(15448), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195608] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(15448), 1, + anon_sym_catch, + ACTIONS(15450), 1, + anon_sym_DOT_DOT, + ACTIONS(15452), 1, + anon_sym_DOT_DOT_EQ, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195676] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(2672), 1, + anon_sym_DOT_DOT, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(15448), 1, + anon_sym_catch, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13243), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195744] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(15448), 1, + anon_sym_catch, + ACTIONS(15450), 1, + anon_sym_DOT_DOT, + ACTIONS(15452), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(15454), 1, + anon_sym_PIPE, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13243), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195814] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13225), 1, + anon_sym_LBRACK, + ACTIONS(13227), 1, + anon_sym_DOT, + ACTIONS(13247), 1, + anon_sym_or, + ACTIONS(13249), 1, + anon_sym_and, + ACTIONS(13255), 1, + anon_sym_LT_LT, + ACTIONS(13287), 1, + anon_sym_orelse, + ACTIONS(15448), 1, + anon_sym_catch, + ACTIONS(15450), 1, + anon_sym_DOT_DOT, + ACTIONS(15452), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(15456), 1, + anon_sym_PIPE, + STATE(9646), 1, + sym_argument_list, + ACTIONS(13223), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(13241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13243), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(13245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(13253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(13257), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(13251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15458), 1, + anon_sym_DOT, + ACTIONS(5956), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1499), 10, + ACTIONS(5954), 10, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329445,7 +1004057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [89869] = 8, + [195909] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, @@ -329456,11 +1004068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, ACTIONS(13), 1, anon_sym_hide, - ACTIONS(7542), 1, + ACTIONS(15460), 1, ts_builtin_sym_end, - ACTIONS(7544), 1, + ACTIONS(15462), 1, sym__newline, - STATE(3782), 9, + STATE(10840), 9, sym__top_level_declaration, sym_import_declaration, sym_test_import_declaration, @@ -329470,15 +1004082,40 @@ static const uint16_t ts_small_parse_table[] = { sym_global_constant_declaration, sym_global_variable_declaration, aux_sym_source_file_repeat1, - [89902] = 3, + [195942] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1773), 4, + ACTIONS(15464), 1, + ts_builtin_sym_end, + ACTIONS(15466), 1, + sym_identifier, + ACTIONS(15469), 1, + anon_sym_import, + ACTIONS(15472), 1, + anon_sym_test, + ACTIONS(15475), 1, + anon_sym_hide, + ACTIONS(15478), 1, + sym__newline, + STATE(10840), 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, + [195975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5994), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1771), 10, + ACTIONS(5992), 10, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329489,39 +1004126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [89924] = 9, + [195997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, - ts_builtin_sym_end, - ACTIONS(7550), 1, - anon_sym_BANG, - ACTIONS(7552), 1, - sym__newline, - STATE(3918), 1, - sym_block, - STATE(4540), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1789), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7548), 4, + ACTIONS(5650), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - [89957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1647), 9, + ACTIONS(5648), 9, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329531,15 +1004144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [89978] = 3, + [196018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 4, + ACTIONS(5728), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1785), 9, + ACTIONS(5726), 9, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329549,15 +1004162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [89999] = 3, + [196039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 4, + ACTIONS(5654), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1759), 9, + ACTIONS(5652), 9, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329567,15 +1004180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [90020] = 3, + [196060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1613), 4, + ACTIONS(6064), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1611), 9, + ACTIONS(6062), 9, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329585,15 +1004198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [90041] = 3, + [196081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 4, + ACTIONS(5986), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1763), 9, + ACTIONS(5984), 9, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329603,15 +1004216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [90062] = 3, + [196102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 4, + ACTIONS(6032), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1767), 9, + ACTIONS(6030), 9, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329621,151 +1004234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [90083] = 9, + [196123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(7555), 1, - ts_builtin_sym_end, - ACTIONS(7559), 1, - anon_sym_BANG, - ACTIONS(7561), 1, - sym__newline, - STATE(3944), 1, - sym_block, - STATE(4366), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1779), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7557), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [90116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1983), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1981), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1747), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1603), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1799), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1751), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(2029), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90242] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7564), 1, + ACTIONS(15481), 1, anon_sym_LPAREN, - STATE(3789), 1, + STATE(10866), 1, sym_argument_list, - ACTIONS(1413), 4, + ACTIONS(2966), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1411), 7, + ACTIONS(2964), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329773,165 +1004254,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90267] = 3, + [196148] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1803), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(13695), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1977), 9, + ACTIONS(15483), 1, ts_builtin_sym_end, - anon_sym_COLON_COLON, + ACTIONS(15487), 1, anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(15489), 1, sym__newline, - [90309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2039), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(2037), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1755), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1795), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1465), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2035), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(2033), 9, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [90414] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(7566), 1, - ts_builtin_sym_end, - ACTIONS(7570), 1, - anon_sym_BANG, - ACTIONS(7572), 1, - sym__newline, - STATE(3906), 1, + STATE(11007), 1, sym_block, - STATE(4265), 1, + STATE(12419), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1779), 3, + ACTIONS(5998), 3, anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7568), 4, + ACTIONS(15485), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - [90447] = 3, + [196181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 4, + ACTIONS(5990), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1513), 9, + ACTIONS(5988), 9, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329941,15 +1004296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [90468] = 3, + [196202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 4, + ACTIONS(5686), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1643), 9, + ACTIONS(5684), 9, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -329959,182 +1004314,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [90489] = 9, + [196223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(7575), 1, + ACTIONS(5690), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5688), 9, ts_builtin_sym_end, - ACTIONS(7579), 1, + anon_sym_COLON_COLON, anon_sym_BANG, - ACTIONS(7581), 1, - sym__newline, - STATE(3949), 1, - sym_block, - STATE(4390), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1789), 3, - anon_sym_COLON_COLON, anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7577), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [90522] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(7584), 1, - ts_builtin_sym_end, - ACTIONS(7588), 1, - sym__newline, - STATE(3942), 1, - sym_block, - STATE(4654), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1799), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(7586), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [90552] = 8, + sym__newline, + [196244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - ACTIONS(7591), 1, + ACTIONS(15492), 1, ts_builtin_sym_end, - ACTIONS(7595), 1, + ACTIONS(15496), 1, + anon_sym_BANG, + ACTIONS(15498), 1, sym__newline, - STATE(3943), 1, + STATE(10993), 1, sym_block, - STATE(4362), 1, + STATE(12979), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1803), 3, + ACTIONS(6024), 3, anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7593), 4, + ACTIONS(15494), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - [90582] = 8, + [196277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(6006), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(6004), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(7598), 1, - ts_builtin_sym_end, - ACTIONS(7602), 1, - sym__newline, - STATE(3900), 1, - sym_block, - STATE(4382), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1803), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(7600), 4, + sym__newline, + [196298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5964), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - [90612] = 4, + ACTIONS(5962), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196319] = 3, ACTIONS(3), 1, sym_comment, - STATE(3816), 1, + ACTIONS(5970), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5968), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(2901), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5974), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5972), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196382] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(15501), 1, + ts_builtin_sym_end, + ACTIONS(15505), 1, + anon_sym_BANG, + ACTIONS(15507), 1, + sym__newline, + STATE(10983), 1, + sym_block, + STATE(13091), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5998), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(15503), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [196415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6052), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(6050), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196436] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(15510), 1, + ts_builtin_sym_end, + ACTIONS(15514), 1, + anon_sym_BANG, + ACTIONS(15516), 1, + sym__newline, + STATE(10984), 1, + sym_block, + STATE(12341), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6024), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(15512), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [196469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5680), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5678), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5664), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5670), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5668), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5672), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5980), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5978), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5722), 9, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [196595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15519), 1, + anon_sym_PIPE, + STATE(10868), 1, aux_sym_type_repeat1, - ACTIONS(1474), 4, + ACTIONS(2903), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1472), 7, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__newline, - [90634] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3817), 1, - aux_sym_type_repeat1, - ACTIONS(1478), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1476), 7, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__newline, - [90656] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_PIPE, - STATE(3817), 1, - aux_sym_type_repeat1, - ACTIONS(1467), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1465), 6, + ACTIONS(2901), 6, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, anon_sym_LBRACE, sym__newline, - [90680] = 8, + [196619] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - ACTIONS(7608), 1, + ACTIONS(15522), 1, ts_builtin_sym_end, - ACTIONS(7612), 1, + ACTIONS(15526), 1, sym__newline, - STATE(3913), 1, + STATE(10992), 1, sym_block, - STATE(4519), 1, + STATE(13822), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1799), 3, + ACTIONS(6050), 3, anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7610), 4, + ACTIONS(15524), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - [90710] = 3, + [196649] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1633), 4, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(15529), 1, + ts_builtin_sym_end, + ACTIONS(15533), 1, + sym__newline, + STATE(10977), 1, + sym_block, + STATE(13726), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6050), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(15531), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1631), 7, + [196679] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(10873), 1, + aux_sym_type_repeat1, + ACTIONS(3026), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(3024), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330142,15 +1004701,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90729] = 3, + [196701] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 4, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(15536), 1, + ts_builtin_sym_end, + ACTIONS(15540), 1, + sym__newline, + STATE(10982), 1, + sym_block, + STATE(12729), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6062), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(15538), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1627), 7, + [196731] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(10868), 1, + aux_sym_type_repeat1, + ACTIONS(3058), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(3056), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330158,15 +1004741,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90748] = 3, + [196753] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 4, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(15543), 1, + ts_builtin_sym_end, + ACTIONS(15547), 1, + sym__newline, + STATE(10959), 1, + sym_block, + STATE(13550), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6062), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(15545), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1569), 7, + [196783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5944), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5942), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330174,15 +1004779,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90767] = 3, + [196802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 4, + ACTIONS(15550), 1, + anon_sym_BANG, + ACTIONS(6000), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1727), 7, + ACTIONS(5998), 6, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__newline, + [196823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(4544), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330190,15 +1004812,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90786] = 3, + [196842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 4, + ACTIONS(15552), 1, + anon_sym_BANG, + ACTIONS(6026), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1731), 7, + ACTIONS(6024), 6, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__newline, + [196863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5810), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330206,15 +1004845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90805] = 3, + [196882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 4, + ACTIONS(5948), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1735), 7, + ACTIONS(5946), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330222,15 +1004861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90824] = 3, + [196901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 4, + ACTIONS(5818), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1675), 7, + ACTIONS(5816), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330238,15 +1004877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90843] = 3, + [196920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1637), 4, + ACTIONS(5822), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1635), 7, + ACTIONS(5820), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330254,15 +1004893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90862] = 3, + [196939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1653), 4, + ACTIONS(4734), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1651), 7, + ACTIONS(4738), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330270,15 +1004909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90881] = 3, + [196958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 4, + ACTIONS(5828), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1639), 7, + ACTIONS(5826), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330286,15 +1004925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90900] = 3, + [196977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 4, + ACTIONS(5832), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1553), 7, + ACTIONS(5830), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330302,15 +1004941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90919] = 3, + [196996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1657), 4, + ACTIONS(5952), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1655), 7, + ACTIONS(5950), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330318,15 +1004957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90938] = 3, + [197015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(5840), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1517), 7, + ACTIONS(5838), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330334,15 +1004973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90957] = 3, + [197034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 4, + ACTIONS(4514), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1659), 7, + ACTIONS(4512), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330350,32 +1004989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [90976] = 4, + [197053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7615), 1, - anon_sym_BANG, - ACTIONS(1781), 4, + ACTIONS(5844), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1779), 6, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__newline, - [90997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1663), 7, + ACTIONS(5842), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330383,15 +1005005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91016] = 3, + [197072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 4, + ACTIONS(5848), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1671), 7, + ACTIONS(5846), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330399,15 +1005021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91035] = 3, + [197091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 4, + ACTIONS(5852), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1585), 7, + ACTIONS(5850), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330415,15 +1005037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91054] = 3, + [197110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 4, + ACTIONS(5780), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1615), 7, + ACTIONS(5784), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330431,15 +1005053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91073] = 3, + [197129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 4, + ACTIONS(5864), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1667), 7, + ACTIONS(5862), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330447,15 +1005069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91092] = 3, + [197148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 4, + ACTIONS(5868), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1973), 7, + ACTIONS(5866), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330463,15 +1005085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91111] = 3, + [197167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 4, + ACTIONS(5872), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1985), 7, + ACTIONS(5870), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330479,15 +1005101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91130] = 3, + [197186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1681), 4, + ACTIONS(5876), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1679), 7, + ACTIONS(5874), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330495,15 +1005117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91149] = 3, + [197205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1685), 4, + ACTIONS(5880), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1683), 7, + ACTIONS(5878), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330511,15 +1005133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91168] = 3, + [197224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1689), 4, + ACTIONS(5884), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1687), 7, + ACTIONS(5882), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330527,15 +1005149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91187] = 3, + [197243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 4, + ACTIONS(5888), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1877), 7, + ACTIONS(5886), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330543,32 +1005165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91206] = 4, + [197262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7617), 1, - anon_sym_BANG, - ACTIONS(1791), 4, + ACTIONS(5892), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1789), 6, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__newline, - [91227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1565), 7, + ACTIONS(5890), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330576,15 +1005181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91246] = 3, + [197281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1693), 4, + ACTIONS(5896), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1691), 7, + ACTIONS(5894), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330592,15 +1005197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91265] = 3, + [197300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1725), 4, + ACTIONS(5900), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1723), 7, + ACTIONS(5898), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330608,15 +1005213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91284] = 3, + [197319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 4, + ACTIONS(5904), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1619), 7, + ACTIONS(5902), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330624,15 +1005229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91303] = 3, + [197338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 4, + ACTIONS(5908), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1815), 7, + ACTIONS(5906), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330640,15 +1005245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91322] = 3, + [197357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 4, + ACTIONS(5912), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1509), 7, + ACTIONS(5910), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330656,15 +1005261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91341] = 3, + [197376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 4, + ACTIONS(5924), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1989), 7, + ACTIONS(5922), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330672,15 +1005277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91360] = 3, + [197395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1625), 4, + ACTIONS(5928), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1623), 7, + ACTIONS(5926), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330688,15 +1005293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91379] = 3, + [197414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2043), 4, + ACTIONS(5932), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(2041), 7, + ACTIONS(5930), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330704,15 +1005309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91398] = 3, + [197433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 4, + ACTIONS(5936), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1505), 7, + ACTIONS(5934), 7, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -330720,14 +1005325,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__newline, - [91417] = 4, + [197452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(5940), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5938), 7, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__newline, + [197471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5704), 7, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__newline, + [197490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, anon_sym_LPAREN, - STATE(3789), 1, + STATE(10866), 1, sym_argument_list, - ACTIONS(1411), 8, + ACTIONS(2964), 8, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, @@ -330736,14 +1005373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [91437] = 4, + [197510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, + ACTIONS(15554), 1, anon_sym_PIPE, - STATE(3861), 1, + STATE(10916), 1, aux_sym_type_repeat1, - ACTIONS(1472), 7, + ACTIONS(3024), 7, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, @@ -330751,27 +1005388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COMMA, sym__newline, - [91456] = 4, + [197529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7621), 1, - anon_sym_PIPE, - STATE(3858), 1, + STATE(10915), 1, aux_sym_type_repeat1, - ACTIONS(1465), 7, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - sym__newline, - [91475] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(3858), 1, - aux_sym_type_repeat1, - ACTIONS(1476), 8, + ACTIONS(3056), 8, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, @@ -330780,17209 +1005402,59076 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, sym__newline, - [91492] = 6, + [197546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7624), 1, + ACTIONS(15556), 1, + anon_sym_PIPE, + STATE(10915), 1, + aux_sym_type_repeat1, + ACTIONS(2901), 7, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7627), 1, sym__newline, - STATE(3860), 1, + [197565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15554), 1, + anon_sym_PIPE, + STATE(10915), 1, + aux_sym_type_repeat1, + ACTIONS(3056), 7, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + sym__newline, + [197584] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(10914), 1, + aux_sym_type_repeat1, + ACTIONS(3024), 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, + [197601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15559), 1, + anon_sym_PIPE, + STATE(10920), 1, + aux_sym_type_repeat1, + ACTIONS(3024), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3026), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197621] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15563), 1, + anon_sym_RPAREN, + ACTIONS(15565), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(14148), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [197647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15559), 1, + anon_sym_PIPE, + STATE(10868), 1, + aux_sym_type_repeat1, + ACTIONS(3056), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3058), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 1, + ts_builtin_sym_end, + ACTIONS(15569), 1, + anon_sym_else, + ACTIONS(15571), 1, + sym__newline, + STATE(14085), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197689] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15565), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15574), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(14148), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [197715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + ts_builtin_sym_end, + ACTIONS(15576), 1, + anon_sym_else, + ACTIONS(15579), 1, + sym__newline, + STATE(14070), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197737] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + ts_builtin_sym_end, + ACTIONS(15582), 1, + anon_sym_else, + ACTIONS(15585), 1, + sym__newline, + STATE(14071), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197759] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15588), 1, + anon_sym_RPAREN, + ACTIONS(15590), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15592), 1, + sym__newline, + STATE(10928), 1, + aux_sym_import_declaration_repeat1, + STATE(14102), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [197785] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + ts_builtin_sym_end, + ACTIONS(15594), 1, + anon_sym_else, + ACTIONS(15596), 1, + sym__newline, + STATE(14480), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4446), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197807] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15590), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15599), 1, + anon_sym_RPAREN, + ACTIONS(15601), 1, + sym__newline, + STATE(10942), 1, + aux_sym_import_declaration_repeat1, + STATE(14102), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [197833] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15574), 1, + anon_sym_RPAREN, + ACTIONS(15603), 1, + anon_sym_DOT_DOT_DOT, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(14553), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [197859] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + ts_builtin_sym_end, + ACTIONS(15605), 1, + anon_sym_else, + ACTIONS(15608), 1, + sym__newline, + STATE(14067), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197881] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15574), 1, + anon_sym_RPAREN, + ACTIONS(15603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15611), 1, + sym__newline, + STATE(10919), 1, + aux_sym_import_declaration_repeat1, + STATE(14553), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [197907] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15613), 1, + anon_sym_RPAREN, + ACTIONS(15615), 1, + anon_sym_DOT_DOT_DOT, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(11405), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [197933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + ts_builtin_sym_end, + ACTIONS(15617), 1, + anon_sym_else, + ACTIONS(15619), 1, + sym__newline, + STATE(14059), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4458), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15622), 1, + anon_sym_BANG, + ACTIONS(6024), 7, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [197971] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + ts_builtin_sym_end, + ACTIONS(15624), 1, + anon_sym_else, + ACTIONS(15626), 1, + sym__newline, + STATE(13933), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4394), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [197993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + ts_builtin_sym_end, + ACTIONS(15629), 1, + anon_sym_else, + ACTIONS(15632), 1, + sym__newline, + STATE(14068), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198015] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, + ts_builtin_sym_end, + ACTIONS(15635), 1, + anon_sym_else, + ACTIONS(15638), 1, + sym__newline, + STATE(14069), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198037] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15641), 1, + anon_sym_RPAREN, + ACTIONS(15643), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15645), 1, + sym__newline, + STATE(10931), 1, + aux_sym_import_declaration_repeat1, + STATE(11106), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198063] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 1, + ts_builtin_sym_end, + ACTIONS(15647), 1, + anon_sym_else, + ACTIONS(15650), 1, + sym__newline, + STATE(14072), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4476), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198085] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15565), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15588), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(14148), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198111] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15590), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15653), 1, + anon_sym_RPAREN, + ACTIONS(15655), 1, + sym__newline, + STATE(10943), 1, + aux_sym_import_declaration_repeat1, + STATE(14102), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15657), 1, + anon_sym_BANG, + ACTIONS(5998), 7, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [198153] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15588), 1, + anon_sym_RPAREN, + ACTIONS(15603), 1, + anon_sym_DOT_DOT_DOT, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(14553), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198179] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15599), 1, + anon_sym_RPAREN, + ACTIONS(15603), 1, + anon_sym_DOT_DOT_DOT, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(14553), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198205] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15599), 1, + anon_sym_RPAREN, + ACTIONS(15603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15659), 1, + sym__newline, + STATE(10939), 1, + aux_sym_import_declaration_repeat1, + STATE(14553), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198231] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15588), 1, + anon_sym_RPAREN, + ACTIONS(15603), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15661), 1, + sym__newline, + STATE(10922), 1, + aux_sym_import_declaration_repeat1, + STATE(14553), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198257] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + ts_builtin_sym_end, + ACTIONS(15663), 1, + anon_sym_else, + ACTIONS(15665), 1, + sym__newline, + STATE(14396), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4406), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198279] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, + ts_builtin_sym_end, + ACTIONS(15668), 1, + anon_sym_else, + ACTIONS(15670), 1, + sym__newline, + STATE(14286), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4428), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198301] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + ACTIONS(15603), 1, + anon_sym_DOT_DOT_DOT, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(14553), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198324] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15673), 1, + anon_sym_COMMA, + ACTIONS(15676), 1, + sym__newline, + STATE(10949), 1, aux_sym_match_arm_repeat1, - STATE(4965), 1, + STATE(14207), 1, aux_sym_import_declaration_repeat1, - ACTIONS(6596), 5, + ACTIONS(13842), 3, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_PIPE, anon_sym_RBRACK, + [198345] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15565), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15567), 1, + anon_sym_DOLLAR, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(14148), 1, + sym_parameter, + ACTIONS(15561), 2, + sym_sink, + sym_identifier, + [198368] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13801), 1, + anon_sym_COMMA, + ACTIONS(13813), 1, + sym__newline, + ACTIONS(15679), 1, + anon_sym_PIPE, + ACTIONS(15681), 1, anon_sym_COLON, - [91515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7619), 1, - anon_sym_PIPE, - STATE(3858), 1, - aux_sym_type_repeat1, - ACTIONS(1476), 7, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - sym__newline, - [91534] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(3859), 1, - aux_sym_type_repeat1, - ACTIONS(1472), 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, - [91551] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7632), 1, - anon_sym_RPAREN, - ACTIONS(7634), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym__newline, - STATE(3889), 1, - aux_sym_import_declaration_repeat1, - STATE(4911), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91577] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7640), 1, - anon_sym_PIPE, - STATE(3868), 1, - aux_sym_type_repeat1, - ACTIONS(1472), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(1474), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [91597] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5529), 1, - ts_builtin_sym_end, - ACTIONS(7642), 1, - anon_sym_else, - ACTIONS(7645), 1, - sym__newline, - STATE(4940), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5527), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [91619] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 1, - ts_builtin_sym_end, - ACTIONS(7648), 1, - anon_sym_else, - ACTIONS(7650), 1, - sym__newline, - STATE(4942), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5502), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [91641] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - ts_builtin_sym_end, - ACTIONS(7653), 1, - anon_sym_else, - ACTIONS(7655), 1, - sym__newline, - STATE(4955), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5562), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [91663] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7640), 1, - anon_sym_PIPE, - STATE(3817), 1, - aux_sym_type_repeat1, - ACTIONS(1476), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(1478), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [91683] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5529), 1, - ts_builtin_sym_end, - ACTIONS(7658), 1, - anon_sym_else, - ACTIONS(7660), 1, - sym__newline, - STATE(4927), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5527), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [91705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7663), 1, - anon_sym_BANG, - ACTIONS(1779), 7, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [91721] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7665), 1, - anon_sym_RPAREN, - ACTIONS(7667), 1, - anon_sym_DOT_DOT_DOT, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(5015), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91747] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7665), 1, - anon_sym_RPAREN, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(5019), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91773] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7665), 1, - anon_sym_RPAREN, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7671), 1, - sym__newline, - STATE(3882), 1, - aux_sym_import_declaration_repeat1, - STATE(5019), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91799] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7673), 1, - anon_sym_RPAREN, - ACTIONS(7675), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, - sym__newline, - STATE(3884), 1, - aux_sym_import_declaration_repeat1, - STATE(4129), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91825] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - ts_builtin_sym_end, - ACTIONS(7679), 1, - anon_sym_else, - ACTIONS(7682), 1, - sym__newline, - STATE(4939), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5562), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [91847] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7685), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(5015), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91873] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7685), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(5019), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91899] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7685), 1, - anon_sym_RPAREN, - ACTIONS(7687), 1, - sym__newline, - STATE(3871), 1, - aux_sym_import_declaration_repeat1, - STATE(5019), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91925] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7634), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7685), 1, - anon_sym_RPAREN, - ACTIONS(7689), 1, - sym__newline, - STATE(3872), 1, - aux_sym_import_declaration_repeat1, - STATE(4911), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [91951] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5549), 1, - ts_builtin_sym_end, - ACTIONS(7691), 1, - anon_sym_else, - ACTIONS(7694), 1, - sym__newline, - STATE(4935), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5547), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [91973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7697), 1, - anon_sym_BANG, - ACTIONS(1789), 7, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [91989] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7699), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(5015), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [92015] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - ts_builtin_sym_end, - ACTIONS(7701), 1, - anon_sym_else, - ACTIONS(7703), 1, - sym__newline, - STATE(4767), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5512), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92037] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7706), 1, - anon_sym_RPAREN, - ACTIONS(7708), 1, - anon_sym_DOT_DOT_DOT, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3966), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [92063] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - ts_builtin_sym_end, - ACTIONS(7710), 1, - anon_sym_else, - ACTIONS(7712), 1, - sym__newline, - STATE(4844), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5492), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92085] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - ts_builtin_sym_end, - ACTIONS(7715), 1, - anon_sym_else, - ACTIONS(7718), 1, - sym__newline, - STATE(4936), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5512), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92107] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 1, - ts_builtin_sym_end, - ACTIONS(7721), 1, - anon_sym_else, - ACTIONS(7724), 1, - sym__newline, - STATE(4938), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5502), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92129] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - ts_builtin_sym_end, - ACTIONS(7727), 1, - anon_sym_else, - ACTIONS(7730), 1, - sym__newline, - STATE(4937), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5492), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92151] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7733), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(5019), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [92177] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7733), 1, - anon_sym_RPAREN, - ACTIONS(7735), 1, - sym__newline, - STATE(3876), 1, - aux_sym_import_declaration_repeat1, - STATE(5019), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [92203] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7634), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7733), 1, - anon_sym_RPAREN, - ACTIONS(7737), 1, - sym__newline, - STATE(3877), 1, - aux_sym_import_declaration_repeat1, - STATE(4911), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [92229] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5549), 1, - ts_builtin_sym_end, - ACTIONS(7739), 1, - anon_sym_else, - ACTIONS(7741), 1, - sym__newline, - STATE(4874), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5547), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92251] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7744), 1, - sym__newline, - STATE(3894), 1, - aux_sym_import_declaration_repeat1, - STATE(5019), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [92274] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DOT_DOT_DOT, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(5015), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [92297] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7746), 1, - anon_sym_LBRACE, - STATE(3297), 1, - sym_record_body, - STATE(4698), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(826), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [92316] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7634), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7636), 1, - anon_sym_DOLLAR, - ACTIONS(7748), 1, - sym__newline, - STATE(3898), 1, - aux_sym_import_declaration_repeat1, - STATE(4911), 1, - sym_parameter, - ACTIONS(7630), 2, - sym_sink, - sym_identifier, - [92339] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6718), 1, - anon_sym_COMMA, - ACTIONS(6724), 1, - sym__newline, - ACTIONS(7750), 1, - anon_sym_PIPE, - ACTIONS(7752), 1, - anon_sym_COLON, - STATE(3860), 1, + STATE(11006), 1, aux_sym_match_arm_repeat1, - STATE(4965), 1, + STATE(14826), 1, aux_sym_import_declaration_repeat1, - STATE(5232), 1, + STATE(15478), 1, sym_match_capture, - [92364] = 7, + [198393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(15683), 1, + anon_sym_LBRACE, + STATE(9507), 1, + sym_record_body, + STATE(12557), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(2225), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, sym__newline, - ACTIONS(7636), 1, + [198412] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15567), 1, anon_sym_DOLLAR, - ACTIONS(7669), 1, + ACTIONS(15603), 1, anon_sym_DOT_DOT_DOT, - STATE(1537), 1, + ACTIONS(15685), 1, + sym__newline, + STATE(10950), 1, aux_sym_import_declaration_repeat1, - STATE(5019), 1, + STATE(14553), 1, sym_parameter, - ACTIONS(7630), 2, + ACTIONS(15561), 2, sym_sink, sym_identifier, - [92387] = 3, + [198435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7754), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7756), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7758), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7760), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7762), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7764), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6768), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6770), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1577), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(1579), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7766), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7768), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7770), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7772), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7776), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7778), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7780), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7782), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7784), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7786), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7788), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7790), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7792), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7794), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7796), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7798), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7800), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7804), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6886), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6888), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7806), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7808), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7812), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7814), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7816), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7818), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7820), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7822), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7824), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7826), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7828), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7830), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7832), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1703), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(1705), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7834), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7836), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7840), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92751] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7842), 1, - anon_sym_COMMA, - ACTIONS(7847), 1, - sym__newline, - STATE(3925), 1, - aux_sym_capture_list_repeat1, - STATE(4861), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(7845), 2, - anon_sym_PIPE, - anon_sym_COLON, - [92771] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2368), 1, - anon_sym_COMMA, - ACTIONS(7850), 1, - anon_sym_PIPE, - ACTIONS(7852), 1, - anon_sym_COLON, - ACTIONS(7854), 1, - sym__newline, - STATE(3925), 1, - aux_sym_capture_list_repeat1, - STATE(4861), 1, - aux_sym_import_declaration_repeat1, - [92793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7856), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7858), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6834), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6836), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(6838), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7860), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7862), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7864), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7866), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7868), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7870), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7872), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7874), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7876), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7878), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7882), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7884), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7886), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7888), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7890), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7892), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7894), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7896), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7898), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7900), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7902), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [92989] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2501), 1, - sym_parameter_list, - ACTIONS(826), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [93005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7906), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7908), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7910), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7912), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7914), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7916), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7918), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7920), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7922), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7924), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7926), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7928), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7932), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7934), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7936), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7938), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7940), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7942), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7944), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7946), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7948), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7950), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(7952), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [93173] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7954), 1, - anon_sym_LPAREN, - ACTIONS(7956), 1, - anon_sym_LBRACE, - ACTIONS(7958), 1, - sym__newline, - STATE(3802), 1, - sym_record_body, - STATE(4210), 1, - aux_sym_import_declaration_repeat1, - [93192] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 1, - anon_sym_RBRACK, - ACTIONS(6660), 1, - anon_sym_COMMA, - ACTIONS(7960), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4239), 1, - aux_sym_import_declaration_repeat1, - [93211] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(604), 1, - anon_sym_RBRACE, - ACTIONS(7962), 1, - anon_sym_COMMA, - ACTIONS(7964), 1, - sym__newline, - STATE(4002), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4319), 1, - aux_sym_import_declaration_repeat1, - [93230] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(738), 1, - anon_sym_RBRACE, - ACTIONS(6866), 1, - anon_sym_COMMA, - ACTIONS(6868), 1, - sym__newline, - STATE(3968), 1, - aux_sym_initializer_list_repeat1, - STATE(4246), 1, - aux_sym_import_declaration_repeat1, - [93249] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(6874), 1, - anon_sym_COMMA, - ACTIONS(6876), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4250), 1, - aux_sym_import_declaration_repeat1, - [93268] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7966), 1, - anon_sym_BANG, - ACTIONS(7968), 1, - anon_sym_LBRACE, - ACTIONS(7970), 1, - sym__newline, - STATE(3185), 1, - sym_block, - STATE(4252), 1, - aux_sym_import_declaration_repeat1, - [93287] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(7972), 1, - sym_identifier, - ACTIONS(7974), 1, - sym__newline, - STATE(1929), 1, - sym_block, - STATE(4182), 1, - aux_sym_import_declaration_repeat1, - [93306] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 1, - anon_sym_RBRACE, - ACTIONS(7976), 1, - anon_sym_COMMA, - ACTIONS(7978), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4259), 1, - aux_sym_import_declaration_repeat1, - [93325] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5342), 1, - anon_sym_RBRACE, - ACTIONS(7980), 1, - anon_sym_COMMA, - ACTIONS(7982), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4260), 1, - aux_sym_import_declaration_repeat1, - [93344] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7986), 1, + ACTIONS(15567), 1, anon_sym_DOLLAR, - ACTIONS(7988), 1, + ACTIONS(15590), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15687), 1, sym__newline, - STATE(4058), 1, + STATE(10948), 1, aux_sym_import_declaration_repeat1, - ACTIONS(7984), 2, + STATE(14102), 1, + sym_parameter, + ACTIONS(15561), 2, sym_sink, sym_identifier, - [93361] = 6, + [198458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_RBRACK, - ACTIONS(7990), 1, - anon_sym_COMMA, - ACTIONS(7992), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4262), 1, - aux_sym_import_declaration_repeat1, - [93380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(740), 1, - anon_sym_RBRACE, - ACTIONS(7994), 1, - anon_sym_COMMA, - ACTIONS(7996), 1, - sym__newline, - STATE(3976), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4263), 1, - aux_sym_import_declaration_repeat1, - [93399] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7632), 1, - anon_sym_RPAREN, - ACTIONS(7998), 1, - anon_sym_COMMA, - ACTIONS(8000), 1, - sym__newline, - STATE(4092), 1, - aux_sym_parameter_list_repeat1, - STATE(4422), 1, - aux_sym_import_declaration_repeat1, - [93418] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8002), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1888), 1, - sym_block, - [93437] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(742), 1, - anon_sym_RBRACE, - ACTIONS(6910), 1, - anon_sym_COMMA, - ACTIONS(6912), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4267), 1, - aux_sym_import_declaration_repeat1, - [93456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(742), 1, - anon_sym_RBRACE, - ACTIONS(6910), 1, - anon_sym_COMMA, - ACTIONS(6912), 1, - sym__newline, - STATE(3980), 1, - aux_sym_initializer_list_repeat1, - STATE(4267), 1, - aux_sym_import_declaration_repeat1, - [93475] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(606), 1, - anon_sym_RBRACE, - ACTIONS(6906), 1, - anon_sym_COMMA, - ACTIONS(6908), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4341), 1, - aux_sym_import_declaration_repeat1, - [93494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8004), 1, - sym_identifier, - ACTIONS(8006), 1, - sym__newline, - STATE(1953), 1, - sym_block, - STATE(4087), 1, - aux_sym_import_declaration_repeat1, - [93513] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8008), 1, - sym_identifier, - ACTIONS(8010), 1, - sym__newline, - STATE(1843), 1, - sym_block, - STATE(4202), 1, - aux_sym_import_declaration_repeat1, - [93532] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2833), 1, - anon_sym_RPAREN, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(8014), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4272), 1, - aux_sym_import_declaration_repeat1, - [93551] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8016), 1, - sym_identifier, - ACTIONS(8018), 1, - sym__newline, - STATE(1956), 1, - sym_block, - STATE(4091), 1, - aux_sym_import_declaration_repeat1, - [93570] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8020), 1, - sym_identifier, - ACTIONS(8022), 1, - sym__newline, - STATE(1957), 1, - sym_block, - STATE(4095), 1, - aux_sym_import_declaration_repeat1, - [93589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5376), 1, - anon_sym_RBRACE, - ACTIONS(8024), 1, - anon_sym_COMMA, - ACTIONS(8026), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4278), 1, - aux_sym_import_declaration_repeat1, - [93608] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(606), 1, - anon_sym_RBRACE, - ACTIONS(6906), 1, - anon_sym_COMMA, - ACTIONS(6908), 1, - sym__newline, - STATE(4018), 1, - aux_sym_initializer_list_repeat1, - STATE(4341), 1, - aux_sym_import_declaration_repeat1, - [93627] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5376), 1, - anon_sym_RBRACE, - ACTIONS(8024), 1, - anon_sym_COMMA, - ACTIONS(8026), 1, - sym__newline, - STATE(3984), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4278), 1, - aux_sym_import_declaration_repeat1, - [93646] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8028), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1959), 1, - sym_block, - [93665] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(746), 1, - anon_sym_RBRACE, - ACTIONS(8030), 1, - anon_sym_COMMA, - ACTIONS(8032), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4284), 1, - aux_sym_import_declaration_repeat1, - [93684] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, - sym_identifier, - ACTIONS(8036), 1, - anon_sym_RBRACE, - ACTIONS(8038), 1, - sym__newline, - STATE(4054), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [93703] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_RPAREN, - ACTIONS(8040), 1, - anon_sym_COMMA, - ACTIONS(8042), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4346), 1, - aux_sym_import_declaration_repeat1, - [93722] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_RPAREN, - ACTIONS(6828), 1, - anon_sym_COMMA, - ACTIONS(6852), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4583), 1, - aux_sym_import_declaration_repeat1, - [93741] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5392), 1, - anon_sym_RBRACE, - ACTIONS(8044), 1, - anon_sym_COMMA, - ACTIONS(8046), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4290), 1, - aux_sym_import_declaration_repeat1, - [93760] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8048), 1, - sym_identifier, - ACTIONS(8050), 1, - sym__newline, - STATE(2048), 1, - sym_block, - STATE(3979), 1, - aux_sym_import_declaration_repeat1, - [93779] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5438), 1, - anon_sym_RBRACE, - ACTIONS(8052), 1, - anon_sym_COMMA, - ACTIONS(8054), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4517), 1, - aux_sym_import_declaration_repeat1, - [93798] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5334), 1, - anon_sym_RBRACE, - ACTIONS(8056), 1, - anon_sym_COMMA, - ACTIONS(8058), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4528), 1, - aux_sym_import_declaration_repeat1, - [93817] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, - sym_identifier, - ACTIONS(8060), 1, - anon_sym_RBRACE, - ACTIONS(8062), 1, - sym__newline, - STATE(4012), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [93836] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8064), 1, + ACTIONS(15689), 1, anon_sym_LPAREN, - ACTIONS(8066), 1, - anon_sym_LBRACE, - ACTIONS(8068), 1, + STATE(7725), 1, + sym_parameter_list, + ACTIONS(2225), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, sym__newline, - STATE(3691), 1, + [198474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15691), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15693), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15695), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15697), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198502] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15699), 1, + anon_sym_COMMA, + ACTIONS(15704), 1, + sym__newline, + STATE(10958), 1, + aux_sym_capture_list_repeat1, + STATE(14351), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(15702), 2, + anon_sym_PIPE, + anon_sym_COLON, + [198522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15707), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15709), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15711), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15713), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15715), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15717), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15719), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15721), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15723), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15725), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15727), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15729), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15731), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15733), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15735), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15737), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15739), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15741), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15743), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15745), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14044), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(14046), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198676] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7718), 1, + anon_sym_COMMA, + ACTIONS(15747), 1, + anon_sym_PIPE, + ACTIONS(15749), 1, + anon_sym_COLON, + ACTIONS(15751), 1, + sym__newline, + STATE(10958), 1, + aux_sym_capture_list_repeat1, + STATE(14351), 1, + aux_sym_import_declaration_repeat1, + [198698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14153), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(14155), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15753), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15755), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15757), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15759), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4414), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4416), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15761), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15763), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15765), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15767), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15769), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15771), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15773), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15775), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15777), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15779), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15781), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15783), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15785), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15787), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15789), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15791), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15793), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15795), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15797), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15799), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15801), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15803), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15805), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15807), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15809), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15811), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14068), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(14070), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15813), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15815), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15817), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15819), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4468), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [198992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15821), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15823), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15825), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15827), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15829), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15831), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15833), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15835), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15837), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15839), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15841), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15843), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15845), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15847), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15849), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15851), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15853), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15855), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14157), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(14159), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15857), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15859), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15861), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15863), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15865), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15867), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15869), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15871), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199188] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15873), 1, + anon_sym_COMMA, + ACTIONS(15876), 1, + sym__newline, + STATE(11006), 1, + aux_sym_match_arm_repeat1, + STATE(14826), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(13842), 2, + anon_sym_PIPE, + anon_sym_COLON, + [199208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15879), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15881), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15883), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15885), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15887), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15889), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15891), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(15893), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [199264] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(15895), 1, + sym_identifier, + ACTIONS(15897), 1, + sym__newline, + STATE(4078), 1, + sym_block, + STATE(11528), 1, + aux_sym_import_declaration_repeat1, + [199283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15899), 1, + sym_identifier, + ACTIONS(15901), 1, + sym__newline, + STATE(9206), 1, + sym_block, + STATE(11028), 1, + aux_sym_import_declaration_repeat1, + [199302] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15903), 1, + sym_identifier, + ACTIONS(15905), 1, + sym__newline, + STATE(9208), 1, + sym_block, + STATE(11029), 1, + aux_sym_import_declaration_repeat1, + [199321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15907), 1, + sym_identifier, + ACTIONS(15909), 1, + sym__newline, + STATE(9209), 1, + sym_block, + STATE(11030), 1, + aux_sym_import_declaration_repeat1, + [199340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15911), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9210), 1, + sym_block, + [199359] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15913), 1, + sym_identifier, + ACTIONS(15915), 1, + sym__newline, + STATE(9213), 1, + sym_block, + STATE(11033), 1, + aux_sym_import_declaration_repeat1, + [199378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15917), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9219), 1, + sym_block, + [199397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15919), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9222), 1, + sym_block, + [199416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(15921), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7340), 1, + sym_block, + [199435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15923), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9228), 1, + sym_block, + [199454] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15925), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9231), 1, + sym_block, + [199473] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15927), 1, + sym_identifier, + ACTIONS(15929), 1, + sym__newline, + STATE(9232), 1, + sym_block, + STATE(11035), 1, + aux_sym_import_declaration_repeat1, + [199492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15931), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9235), 1, + sym_block, + [199511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15933), 1, + sym_identifier, + ACTIONS(15935), 1, + sym__newline, + STATE(9236), 1, + sym_block, + STATE(11036), 1, + aux_sym_import_declaration_repeat1, + [199530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15937), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9239), 1, + sym_block, + [199549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15939), 1, + sym_identifier, + ACTIONS(15941), 1, + sym__newline, + STATE(9240), 1, + sym_block, + STATE(11037), 1, + aux_sym_import_declaration_repeat1, + [199568] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15943), 1, + sym_identifier, + ACTIONS(15945), 1, + sym__newline, + STATE(9245), 1, + sym_block, + STATE(11039), 1, + aux_sym_import_declaration_repeat1, + [199587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15947), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9248), 1, + sym_block, + [199606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15949), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9256), 1, + sym_block, + [199625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15951), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9257), 1, + sym_block, + [199644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15953), 1, + sym_identifier, + ACTIONS(15955), 1, + sym__newline, + STATE(9258), 1, + sym_block, + STATE(11042), 1, + aux_sym_import_declaration_repeat1, + [199663] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15957), 1, + sym_identifier, + ACTIONS(15959), 1, + sym__newline, + STATE(9260), 1, + sym_block, + STATE(11043), 1, + aux_sym_import_declaration_repeat1, + [199682] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15961), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9261), 1, + sym_block, + [199701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15963), 1, + sym_identifier, + ACTIONS(15965), 1, + sym__newline, + STATE(9266), 1, + sym_block, + STATE(11044), 1, + aux_sym_import_declaration_repeat1, + [199720] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15967), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9276), 1, + sym_block, + [199739] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15969), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9280), 1, + sym_block, + [199758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15971), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9282), 1, + sym_block, + [199777] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15973), 1, + sym_identifier, + ACTIONS(15975), 1, + sym__newline, + STATE(9295), 1, + sym_block, + STATE(11045), 1, + aux_sym_import_declaration_repeat1, + [199796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15977), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9298), 1, + sym_block, + [199815] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15979), 1, + sym_identifier, + ACTIONS(15981), 1, + sym__newline, + STATE(9308), 1, + sym_block, + STATE(11046), 1, + aux_sym_import_declaration_repeat1, + [199834] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15983), 1, + sym_identifier, + ACTIONS(15985), 1, + sym__newline, + STATE(9310), 1, + sym_block, + STATE(11047), 1, + aux_sym_import_declaration_repeat1, + [199853] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15987), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9312), 1, + sym_block, + [199872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15989), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9315), 1, + sym_block, + [199891] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15991), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9320), 1, + sym_block, + [199910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15993), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9337), 1, + sym_block, + [199929] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15995), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9342), 1, + sym_block, + [199948] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15997), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9347), 1, + sym_block, + [199967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(15999), 1, + sym_identifier, + ACTIONS(16001), 1, + sym__newline, + STATE(9352), 1, + sym_block, + STATE(11049), 1, + aux_sym_import_declaration_repeat1, + [199986] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(16003), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9378), 1, + sym_block, + [200005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16005), 1, + sym_identifier, + ACTIONS(16007), 1, + sym__newline, + STATE(7341), 1, + sym_block, + STATE(11118), 1, + aux_sym_import_declaration_repeat1, + [200024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16009), 1, + anon_sym_LPAREN, + ACTIONS(16011), 1, + anon_sym_LBRACE, + ACTIONS(16013), 1, + sym__newline, + STATE(8927), 1, sym_record_body, - STATE(4418), 1, + STATE(13564), 1, aux_sym_import_declaration_repeat1, - [93855] = 6, + [200043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8070), 1, + ACTIONS(16015), 1, anon_sym_LPAREN, - ACTIONS(8072), 1, + ACTIONS(16017), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(16019), 1, sym__newline, - STATE(3689), 1, + STATE(9038), 1, sym_enum_body, - STATE(4312), 1, + STATE(12551), 1, aux_sym_import_declaration_repeat1, - [93874] = 6, + [200062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8076), 1, - anon_sym_COMMA, - ACTIONS(8078), 1, + ACTIONS(8836), 1, anon_sym_RBRACE, - ACTIONS(8080), 1, - sym__newline, - STATE(4027), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4285), 1, - aux_sym_import_declaration_repeat1, - [93893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5438), 1, - anon_sym_RBRACE, - ACTIONS(8052), 1, + ACTIONS(16021), 1, anon_sym_COMMA, - ACTIONS(8054), 1, + ACTIONS(16023), 1, sym__newline, - STATE(4103), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4517), 1, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12795), 1, aux_sym_import_declaration_repeat1, - [93912] = 6, + [200081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 1, + ACTIONS(10845), 1, + anon_sym_RBRACE, + ACTIONS(16025), 1, + anon_sym_COMMA, + ACTIONS(16027), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12850), 1, + aux_sym_import_declaration_repeat1, + [200100] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, sym_identifier, - ACTIONS(8082), 1, + ACTIONS(16031), 1, anon_sym_RBRACE, - ACTIONS(8084), 1, + ACTIONS(16033), 1, sym__newline, - STATE(4001), 1, + STATE(11885), 1, aux_sym_enum_body_repeat1, - STATE(4231), 1, + STATE(13733), 1, sym_enum_member, - [93931] = 6, + [200119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(826), 1, - anon_sym_EQ, - ACTIONS(7746), 1, - anon_sym_LBRACE, - ACTIONS(8086), 1, + ACTIONS(8842), 1, + anon_sym_RBRACK, + ACTIONS(16035), 1, + anon_sym_COMMA, + ACTIONS(16037), 1, sym__newline, - STATE(3297), 1, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12866), 1, + aux_sym_import_declaration_repeat1, + [200138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16039), 1, + anon_sym_RBRACE, + ACTIONS(16041), 1, + sym__newline, + STATE(11070), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [200157] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_RBRACE, + ACTIONS(13912), 1, + anon_sym_COMMA, + ACTIONS(13914), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13477), 1, + aux_sym_import_declaration_repeat1, + [200176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16043), 1, + anon_sym_COMMA, + ACTIONS(16045), 1, + anon_sym_RBRACE, + ACTIONS(16047), 1, + sym__newline, + STATE(11073), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12592), 1, + aux_sym_import_declaration_repeat1, + [200195] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16049), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7343), 1, + sym_block, + [200214] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_LBRACE, + ACTIONS(4406), 1, + sym_identifier, + ACTIONS(16051), 1, + anon_sym_else, + ACTIONS(16053), 1, + sym__newline, + STATE(14184), 1, + aux_sym_import_declaration_repeat1, + [200233] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16056), 1, + anon_sym_RBRACE, + ACTIONS(16058), 1, + sym__newline, + STATE(11125), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [200252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, + anon_sym_LBRACE, + ACTIONS(4428), 1, + sym_identifier, + ACTIONS(16060), 1, + anon_sym_else, + ACTIONS(16062), 1, + sym__newline, + STATE(14185), 1, + aux_sym_import_declaration_repeat1, + [200271] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(15683), 1, + anon_sym_LBRACE, + ACTIONS(16065), 1, + sym__newline, + STATE(9507), 1, sym_record_body, - STATE(4698), 1, + STATE(12557), 1, aux_sym_import_declaration_repeat1, - [93950] = 6, + [200290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8088), 1, - anon_sym_COMMA, - ACTIONS(8090), 1, - anon_sym_RBRACE, - ACTIONS(8092), 1, - sym__newline, - STATE(4004), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4322), 1, - aux_sym_import_declaration_repeat1, - [93969] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, - sym_identifier, - ACTIONS(8094), 1, - anon_sym_RBRACE, - ACTIONS(8096), 1, - sym__newline, - STATE(4006), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [93988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13513), 1, anon_sym_LBRACE, - ACTIONS(8098), 1, + ACTIONS(16067), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1931), 1, + ACTIONS(16069), 1, + sym__newline, + STATE(9863), 1, sym_block, - [94007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8100), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [94020] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_COMMA, - ACTIONS(8106), 1, - anon_sym_RBRACE, - ACTIONS(8108), 1, - sym__newline, - STATE(4080), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4412), 1, + STATE(11119), 1, aux_sym_import_declaration_repeat1, - [94039] = 6, + [200309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8110), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16071), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9543), 1, + sym_block, + [200328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16073), 1, anon_sym_BANG, - ACTIONS(8112), 1, - anon_sym_LBRACE, - ACTIONS(8114), 1, + ACTIONS(16075), 1, sym__newline, - STATE(2375), 1, + STATE(3069), 1, sym_block, - STATE(4330), 1, + STATE(12631), 1, aux_sym_import_declaration_repeat1, - [94058] = 6, + [200347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 1, - sym_identifier, - ACTIONS(8116), 1, + ACTIONS(2127), 1, anon_sym_RBRACE, - ACTIONS(8118), 1, - sym__newline, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [94077] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5414), 1, - anon_sym_RBRACE, - ACTIONS(8120), 1, + ACTIONS(13912), 1, anon_sym_COMMA, - ACTIONS(8122), 1, + ACTIONS(13914), 1, sym__newline, - STATE(4101), 1, + STATE(11805), 1, + aux_sym_initializer_list_repeat1, + STATE(13477), 1, + aux_sym_import_declaration_repeat1, + [200366] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16077), 1, + anon_sym_COMMA, + ACTIONS(16079), 1, + anon_sym_RBRACE, + ACTIONS(16081), 1, + sym__newline, + STATE(11151), 1, aux_sym_anonymous_record_literal_repeat1, - STATE(4386), 1, + STATE(13005), 1, aux_sym_import_declaration_repeat1, - [94096] = 6, + [200385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16083), 1, anon_sym_RBRACE, - ACTIONS(6772), 1, - anon_sym_COMMA, - ACTIONS(6774), 1, + ACTIONS(16085), 1, sym__newline, - STATE(3860), 1, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [200404] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9400), 1, + anon_sym_RBRACE, + ACTIONS(14092), 1, + anon_sym_COMMA, + ACTIONS(14094), 1, + sym__newline, + STATE(10949), 1, aux_sym_match_arm_repeat1, - STATE(4334), 1, + STATE(12648), 1, aux_sym_import_declaration_repeat1, - [94115] = 6, + [200423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 1, + ACTIONS(2147), 1, anon_sym_RBRACE, - ACTIONS(8124), 1, + ACTIONS(16087), 1, anon_sym_COMMA, - ACTIONS(8126), 1, + ACTIONS(16089), 1, sym__newline, - STATE(4101), 1, + STATE(11126), 1, aux_sym_anonymous_record_literal_repeat1, - STATE(4338), 1, + STATE(12926), 1, aux_sym_import_declaration_repeat1, - [94134] = 6, + [200442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 1, + ACTIONS(11119), 1, anon_sym_RBRACE, - ACTIONS(8124), 1, + ACTIONS(16091), 1, anon_sym_COMMA, - ACTIONS(8126), 1, + ACTIONS(16093), 1, sym__newline, - STATE(4016), 1, + STATE(11887), 1, aux_sym_anonymous_record_literal_repeat1, - STATE(4338), 1, + STATE(12654), 1, aux_sym_import_declaration_repeat1, - [94153] = 6, + [200461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 1, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16095), 1, sym_identifier, - ACTIONS(8118), 1, + ACTIONS(16097), 1, sym__newline, - ACTIONS(8128), 1, - anon_sym_RBRACE, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [94172] = 6, + STATE(7344), 1, + sym_block, + STATE(11124), 1, + aux_sym_import_declaration_repeat1, + [200480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, + ACTIONS(11119), 1, + anon_sym_RBRACE, + ACTIONS(16091), 1, + anon_sym_COMMA, + ACTIONS(16093), 1, + sym__newline, + STATE(11091), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12654), 1, + aux_sym_import_declaration_repeat1, + [200499] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16099), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7347), 1, + sym_block, + [200518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 1, anon_sym_RBRACK, - ACTIONS(6598), 1, + ACTIONS(13617), 1, anon_sym_COMMA, - ACTIONS(8130), 1, + ACTIONS(16101), 1, sym__newline, - STATE(3860), 1, + STATE(10949), 1, aux_sym_match_arm_repeat1, - STATE(4342), 1, + STATE(12673), 1, aux_sym_import_declaration_repeat1, - [94191] = 6, + [200537] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5414), 1, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16103), 1, + sym_identifier, + ACTIONS(16105), 1, + sym__newline, + STATE(7348), 1, + sym_block, + STATE(11138), 1, + aux_sym_import_declaration_repeat1, + [200556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16107), 1, + sym_identifier, + STATE(3553), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [200575] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16109), 1, + sym_identifier, + ACTIONS(16111), 1, + sym__newline, + STATE(7351), 1, + sym_block, + STATE(11169), 1, + aux_sym_import_declaration_repeat1, + [200594] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16113), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7353), 1, + sym_block, + [200613] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_RBRACE, - ACTIONS(8120), 1, + ACTIONS(14141), 1, anon_sym_COMMA, - ACTIONS(8122), 1, + ACTIONS(14143), 1, sym__newline, - STATE(4047), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4386), 1, + STATE(11102), 1, + aux_sym_initializer_list_repeat1, + STATE(12719), 1, aux_sym_import_declaration_repeat1, - [94210] = 6, + [200632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 1, + ACTIONS(9412), 1, anon_sym_RPAREN, - ACTIONS(8134), 1, + ACTIONS(13892), 1, anon_sym_COMMA, - ACTIONS(8137), 1, + ACTIONS(13894), 1, sym__newline, - STATE(4009), 1, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12740), 1, + aux_sym_import_declaration_repeat1, + [200651] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16115), 1, + anon_sym_BANG, + ACTIONS(16117), 1, + sym__newline, + STATE(3096), 1, + sym_block, + STATE(12746), 1, + aux_sym_import_declaration_repeat1, + [200670] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16119), 1, + sym_identifier, + ACTIONS(16121), 1, + sym__newline, + STATE(7354), 1, + sym_block, + STATE(11203), 1, + aux_sym_import_declaration_repeat1, + [200689] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16123), 1, + sym_identifier, + ACTIONS(16125), 1, + sym__newline, + STATE(7356), 1, + sym_block, + STATE(11204), 1, + aux_sym_import_declaration_repeat1, + [200708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16127), 1, + sym_identifier, + ACTIONS(16129), 1, + sym__newline, + STATE(7357), 1, + sym_block, + STATE(11216), 1, + aux_sym_import_declaration_repeat1, + [200727] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16131), 1, + anon_sym_RPAREN, + ACTIONS(16133), 1, + anon_sym_COMMA, + ACTIONS(16136), 1, + sym__newline, + STATE(11088), 1, aux_sym_parameter_list_repeat1, - STATE(4744), 1, + STATE(14674), 1, aux_sym_import_declaration_repeat1, - [94229] = 6, + [200746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_BANG, - ACTIONS(8142), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(8144), 1, - sym__newline, - STATE(3771), 1, - sym_block, - STATE(4328), 1, - aux_sym_import_declaration_repeat1, - [94248] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(780), 1, - anon_sym_RBRACE, - ACTIONS(6788), 1, - anon_sym_COMMA, - ACTIONS(6790), 1, - sym__newline, - STATE(4023), 1, - aux_sym_initializer_list_repeat1, - STATE(4347), 1, - aux_sym_import_declaration_repeat1, - [94267] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, + ACTIONS(16139), 1, sym_identifier, - ACTIONS(8118), 1, - sym__newline, - ACTIONS(8146), 1, - anon_sym_RBRACE, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [94286] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 1, - anon_sym_RPAREN, - ACTIONS(6792), 1, - anon_sym_COMMA, - ACTIONS(6794), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4354), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [94305] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8112), 1, - anon_sym_LBRACE, - ACTIONS(8148), 1, - anon_sym_BANG, - ACTIONS(8150), 1, - sym__newline, - STATE(2384), 1, + STATE(7358), 1, sym_block, - STATE(4357), 1, - aux_sym_import_declaration_repeat1, - [94324] = 6, + [200765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(9416), 1, anon_sym_RBRACE, - ACTIONS(8152), 1, + ACTIONS(16141), 1, anon_sym_COMMA, - ACTIONS(8154), 1, + ACTIONS(16143), 1, sym__newline, - STATE(3860), 1, + STATE(10949), 1, aux_sym_match_arm_repeat1, - STATE(4367), 1, + STATE(12808), 1, aux_sym_import_declaration_repeat1, - [94343] = 6, + [200784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 1, + ACTIONS(11123), 1, anon_sym_RBRACE, - ACTIONS(8156), 1, + ACTIONS(16145), 1, anon_sym_COMMA, - ACTIONS(8158), 1, + ACTIONS(16147), 1, sym__newline, - STATE(4101), 1, + STATE(11887), 1, aux_sym_anonymous_record_literal_repeat1, - STATE(4368), 1, + STATE(12849), 1, aux_sym_import_declaration_repeat1, - [94362] = 6, + [200803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5458), 1, + ACTIONS(2149), 1, anon_sym_RBRACE, - ACTIONS(8160), 1, + ACTIONS(14078), 1, anon_sym_COMMA, - ACTIONS(8162), 1, + ACTIONS(14080), 1, sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4291), 1, - aux_sym_import_declaration_repeat1, - [94381] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(612), 1, - anon_sym_RBRACE, - ACTIONS(8164), 1, - anon_sym_COMMA, - ACTIONS(8166), 1, - sym__newline, - STATE(4065), 1, + STATE(11792), 1, aux_sym_initializer_list_repeat1, - STATE(4405), 1, + STATE(12999), 1, aux_sym_import_declaration_repeat1, - [94400] = 6, + [200822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, - anon_sym_RBRACK, - ACTIONS(8168), 1, - anon_sym_COMMA, - ACTIONS(8170), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4371), 1, - aux_sym_import_declaration_repeat1, - [94419] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(782), 1, - anon_sym_RBRACE, - ACTIONS(8172), 1, - anon_sym_COMMA, - ACTIONS(8174), 1, - sym__newline, - STATE(4035), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4372), 1, - aux_sym_import_declaration_repeat1, - [94438] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5458), 1, - anon_sym_RBRACE, - ACTIONS(8160), 1, - anon_sym_COMMA, - ACTIONS(8162), 1, - sym__newline, - STATE(3987), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4291), 1, - aux_sym_import_declaration_repeat1, - [94457] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3561), 1, - anon_sym_RBRACK, - ACTIONS(6698), 1, - anon_sym_COMMA, - ACTIONS(8176), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4526), 1, - aux_sym_import_declaration_repeat1, - [94476] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_RBRACE, - ACTIONS(6808), 1, - anon_sym_COMMA, - ACTIONS(6810), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4377), 1, - aux_sym_import_declaration_repeat1, - [94495] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_RBRACE, - ACTIONS(6808), 1, - anon_sym_COMMA, - ACTIONS(6810), 1, - sym__newline, - STATE(4039), 1, - aux_sym_initializer_list_repeat1, - STATE(4377), 1, - aux_sym_import_declaration_repeat1, - [94514] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, - anon_sym_RBRACE, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(6814), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4344), 1, - aux_sym_import_declaration_repeat1, - [94533] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3329), 1, - anon_sym_RPAREN, - ACTIONS(8178), 1, - anon_sym_COMMA, - ACTIONS(8180), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4379), 1, - aux_sym_import_declaration_repeat1, - [94552] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5312), 1, - anon_sym_RBRACE, - ACTIONS(8182), 1, - anon_sym_COMMA, - ACTIONS(8184), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4353), 1, - aux_sym_import_declaration_repeat1, - [94571] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5312), 1, - anon_sym_RBRACE, - ACTIONS(8182), 1, - anon_sym_COMMA, - ACTIONS(8184), 1, - sym__newline, - STATE(4049), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4353), 1, - aux_sym_import_declaration_repeat1, - [94590] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 1, - anon_sym_RBRACK, - ACTIONS(6706), 1, - anon_sym_COMMA, - ACTIONS(8186), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4369), 1, - aux_sym_import_declaration_repeat1, - [94609] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(6760), 1, - anon_sym_COMMA, - ACTIONS(6762), 1, - sym__newline, - STATE(4073), 1, - aux_sym_initializer_list_repeat1, - STATE(4397), 1, - aux_sym_import_declaration_repeat1, - [94628] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_RPAREN, - ACTIONS(6922), 1, - anon_sym_COMMA, - ACTIONS(6924), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4421), 1, - aux_sym_import_declaration_repeat1, - [94647] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8142), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(8188), 1, + ACTIONS(16149), 1, + sym_identifier, + ACTIONS(16151), 1, + sym__newline, + STATE(7359), 1, + sym_block, + STATE(11310), 1, + aux_sym_import_declaration_repeat1, + [200841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 1, + anon_sym_RBRACE, + ACTIONS(14078), 1, + anon_sym_COMMA, + ACTIONS(14080), 1, + sym__newline, + STATE(11139), 1, + aux_sym_initializer_list_repeat1, + STATE(12999), 1, + aux_sym_import_declaration_repeat1, + [200860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9422), 1, + anon_sym_RBRACK, + ACTIONS(16153), 1, + anon_sym_COMMA, + ACTIONS(16155), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12853), 1, + aux_sym_import_declaration_repeat1, + [200879] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16157), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7361), 1, + sym_block, + [200898] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16159), 1, + sym_identifier, + ACTIONS(16161), 1, + sym__newline, + STATE(3569), 1, + sym_block, + STATE(11108), 1, + aux_sym_import_declaration_repeat1, + [200917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16163), 1, + sym_identifier, + STATE(3572), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [200936] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16165), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7364), 1, + sym_block, + [200955] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8856), 1, + anon_sym_RPAREN, + ACTIONS(16167), 1, + anon_sym_COMMA, + ACTIONS(16169), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13100), 1, + aux_sym_import_declaration_repeat1, + [200974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2049), 1, + anon_sym_RBRACE, + ACTIONS(16171), 1, + anon_sym_COMMA, + ACTIONS(16173), 1, + sym__newline, + STATE(11113), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12869), 1, + aux_sym_import_declaration_repeat1, + [200993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2051), 1, + anon_sym_RBRACE, + ACTIONS(13882), 1, + anon_sym_COMMA, + ACTIONS(13884), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(12888), 1, + aux_sym_import_declaration_repeat1, + [201012] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2051), 1, + anon_sym_RBRACE, + ACTIONS(13882), 1, + anon_sym_COMMA, + ACTIONS(13884), 1, + sym__newline, + STATE(11120), 1, + aux_sym_initializer_list_repeat1, + STATE(12888), 1, + aux_sym_import_declaration_repeat1, + [201031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11055), 1, + anon_sym_RBRACE, + ACTIONS(16175), 1, + anon_sym_COMMA, + ACTIONS(16177), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12951), 1, + aux_sym_import_declaration_repeat1, + [201050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9436), 1, + anon_sym_RPAREN, + ACTIONS(16179), 1, + anon_sym_COMMA, + ACTIONS(16181), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12901), 1, + aux_sym_import_declaration_repeat1, + [201069] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15613), 1, + anon_sym_RPAREN, + ACTIONS(16183), 1, + anon_sym_COMMA, + ACTIONS(16185), 1, + sym__newline, + STATE(11401), 1, + aux_sym_parameter_list_repeat1, + STATE(12402), 1, + aux_sym_import_declaration_repeat1, + [201088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16189), 1, + anon_sym_DOLLAR, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(16187), 2, + sym_sink, + sym_identifier, + [201105] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16191), 1, + sym_identifier, + STATE(3585), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16193), 1, + sym_identifier, + ACTIONS(16195), 1, + sym__newline, + STATE(3586), 1, + sym_block, + STATE(11128), 1, + aux_sym_import_declaration_repeat1, + [201143] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16197), 1, + sym_identifier, + ACTIONS(16199), 1, + sym__newline, + STATE(3589), 1, + sym_block, + STATE(11129), 1, + aux_sym_import_declaration_repeat1, + [201162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16201), 1, + sym_identifier, + ACTIONS(16203), 1, + sym__newline, + STATE(3591), 1, + sym_block, + STATE(11133), 1, + aux_sym_import_declaration_repeat1, + [201181] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15599), 1, + anon_sym_RPAREN, + ACTIONS(16205), 1, + anon_sym_COMMA, + ACTIONS(16207), 1, + sym__newline, + STATE(11088), 1, + aux_sym_parameter_list_repeat1, + STATE(13720), 1, + aux_sym_import_declaration_repeat1, + [201200] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11135), 1, + anon_sym_RBRACE, + ACTIONS(16209), 1, + anon_sym_COMMA, + ACTIONS(16211), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12962), 1, + aux_sym_import_declaration_repeat1, + [201219] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11135), 1, + anon_sym_RBRACE, + ACTIONS(16209), 1, + anon_sym_COMMA, + ACTIONS(16211), 1, + sym__newline, + STATE(11135), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12962), 1, + aux_sym_import_declaration_repeat1, + [201238] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16213), 1, anon_sym_BANG, - ACTIONS(8190), 1, + ACTIONS(16215), 1, + sym__newline, + STATE(9665), 1, + sym_block, + STATE(12342), 1, + aux_sym_import_declaration_repeat1, + [201257] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + anon_sym_LBRACE, + ACTIONS(4446), 1, + sym_identifier, + ACTIONS(16217), 1, + anon_sym_else, + ACTIONS(16219), 1, + sym__newline, + STATE(14192), 1, + aux_sym_import_declaration_repeat1, + [201276] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_LBRACE, + ACTIONS(4458), 1, + sym_identifier, + ACTIONS(16222), 1, + anon_sym_else, + ACTIONS(16224), 1, + sym__newline, + STATE(14193), 1, + aux_sym_import_declaration_repeat1, + [201295] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16227), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7369), 1, + sym_block, + [201314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16229), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9663), 1, + sym_block, + [201333] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2055), 1, + anon_sym_RBRACE, + ACTIONS(16231), 1, + anon_sym_COMMA, + ACTIONS(16233), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(12980), 1, + aux_sym_import_declaration_repeat1, + [201352] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16235), 1, + sym_identifier, + ACTIONS(16237), 1, + sym__newline, + STATE(9664), 1, + sym_block, + STATE(11210), 1, + aux_sym_import_declaration_repeat1, + [201371] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16239), 1, + sym_identifier, + ACTIONS(16241), 1, + sym__newline, + STATE(9691), 1, + sym_block, + STATE(11211), 1, + aux_sym_import_declaration_repeat1, + [201390] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16243), 1, + sym_identifier, + ACTIONS(16245), 1, + sym__newline, + STATE(9704), 1, + sym_block, + STATE(11215), 1, + aux_sym_import_declaration_repeat1, + [201409] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16247), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7371), 1, + sym_block, + [201428] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(16249), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [201447] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10859), 1, + anon_sym_RBRACE, + ACTIONS(16251), 1, + anon_sym_COMMA, + ACTIONS(16253), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13614), 1, + aux_sym_import_declaration_repeat1, + [201466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16255), 1, + sym_identifier, + ACTIONS(16257), 1, + sym__newline, + STATE(3602), 1, + sym_block, + STATE(11140), 1, + aux_sym_import_declaration_repeat1, + [201485] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16259), 1, + sym_identifier, + STATE(3604), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16261), 1, + sym_identifier, + STATE(3606), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201523] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16263), 1, + sym_identifier, + ACTIONS(16265), 1, + sym__newline, + STATE(3607), 1, + sym_block, + STATE(11144), 1, + aux_sym_import_declaration_repeat1, + [201542] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16267), 1, + sym_identifier, + ACTIONS(16269), 1, + sym__newline, + STATE(3610), 1, + sym_block, + STATE(11146), 1, + aux_sym_import_declaration_repeat1, + [201561] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16271), 1, + sym_identifier, + ACTIONS(16273), 1, + sym__newline, + STATE(3611), 1, + sym_block, + STATE(11148), 1, + aux_sym_import_declaration_repeat1, + [201580] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16275), 1, + sym_identifier, + STATE(3612), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201599] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10859), 1, + anon_sym_RBRACE, + ACTIONS(16251), 1, + anon_sym_COMMA, + ACTIONS(16253), 1, + sym__newline, + STATE(11221), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13614), 1, + aux_sym_import_declaration_repeat1, + [201618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11143), 1, + anon_sym_RBRACE, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(16279), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13101), 1, + aux_sym_import_declaration_repeat1, + [201637] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16281), 1, + sym_identifier, + ACTIONS(16283), 1, + sym__newline, + STATE(7372), 1, + sym_block, + STATE(11312), 1, + aux_sym_import_declaration_repeat1, + [201656] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9710), 1, + anon_sym_RBRACE, + ACTIONS(14036), 1, + anon_sym_COMMA, + ACTIONS(14038), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12352), 1, + aux_sym_import_declaration_repeat1, + [201675] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16285), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7375), 1, + sym_block, + [201694] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, + anon_sym_RBRACE, + ACTIONS(16287), 1, + anon_sym_COMMA, + ACTIONS(16289), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13719), 1, + aux_sym_import_declaration_repeat1, + [201713] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16291), 1, + sym_identifier, + STATE(3619), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201732] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16293), 1, + sym_identifier, + ACTIONS(16295), 1, + sym__newline, + STATE(3621), 1, + sym_block, + STATE(11154), 1, + aux_sym_import_declaration_repeat1, + [201751] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16297), 1, + sym_identifier, + ACTIONS(16299), 1, + sym__newline, + STATE(3624), 1, + sym_block, + STATE(11156), 1, + aux_sym_import_declaration_repeat1, + [201770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16301), 1, + sym_identifier, + ACTIONS(16303), 1, + sym__newline, + STATE(3626), 1, + sym_block, + STATE(11158), 1, + aux_sym_import_declaration_repeat1, + [201789] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16305), 1, + sym_identifier, + STATE(3628), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16307), 1, + sym_identifier, + ACTIONS(16309), 1, + sym__newline, + STATE(3630), 1, + sym_block, + STATE(11161), 1, + aux_sym_import_declaration_repeat1, + [201827] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16311), 1, + sym_identifier, + STATE(3631), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201846] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16313), 1, + sym_identifier, + ACTIONS(16315), 1, + sym__newline, + STATE(3632), 1, + sym_block, + STATE(11165), 1, + aux_sym_import_declaration_repeat1, + [201865] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16317), 1, + sym_identifier, + STATE(3633), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201884] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16319), 1, + sym_identifier, + ACTIONS(16321), 1, + sym__newline, + STATE(3634), 1, + sym_block, + STATE(11167), 1, + aux_sym_import_declaration_repeat1, + [201903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16323), 1, + sym_identifier, + ACTIONS(16325), 1, + sym__newline, + STATE(3636), 1, + sym_block, + STATE(11168), 1, + aux_sym_import_declaration_repeat1, + [201922] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11183), 1, + anon_sym_RBRACE, + ACTIONS(16327), 1, + anon_sym_COMMA, + ACTIONS(16329), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12354), 1, + aux_sym_import_declaration_repeat1, + [201941] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16331), 1, + sym_identifier, + ACTIONS(16333), 1, + sym__newline, + STATE(7376), 1, + sym_block, + STATE(11331), 1, + aux_sym_import_declaration_repeat1, + [201960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11183), 1, + anon_sym_RBRACE, + ACTIONS(16327), 1, + anon_sym_COMMA, + ACTIONS(16329), 1, + sym__newline, + STATE(11377), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12354), 1, + aux_sym_import_declaration_repeat1, + [201979] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16335), 1, + sym_identifier, + STATE(3644), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [201998] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16337), 1, + sym_identifier, + ACTIONS(16339), 1, + sym__newline, + STATE(3645), 1, + sym_block, + STATE(11172), 1, + aux_sym_import_declaration_repeat1, + [202017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16341), 1, + sym_identifier, + STATE(3647), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202036] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16343), 1, + sym_identifier, + ACTIONS(16345), 1, + sym__newline, + STATE(3648), 1, + sym_block, + STATE(11173), 1, + aux_sym_import_declaration_repeat1, + [202055] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16347), 1, + sym_identifier, + STATE(3651), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202074] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16349), 1, + sym_identifier, + ACTIONS(16351), 1, + sym__newline, + STATE(3652), 1, + sym_block, + STATE(11175), 1, + aux_sym_import_declaration_repeat1, + [202093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16353), 1, + sym_identifier, + ACTIONS(16355), 1, + sym__newline, + STATE(3655), 1, + sym_block, + STATE(11177), 1, + aux_sym_import_declaration_repeat1, + [202112] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16357), 1, + sym_identifier, + STATE(3657), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202131] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16359), 1, + sym_identifier, + ACTIONS(16361), 1, + sym__newline, + STATE(3658), 1, + sym_block, + STATE(11180), 1, + aux_sym_import_declaration_repeat1, + [202150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16363), 1, + sym_identifier, + ACTIONS(16365), 1, + sym__newline, + STATE(3660), 1, + sym_block, + STATE(11181), 1, + aux_sym_import_declaration_repeat1, + [202169] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16367), 1, + sym_identifier, + ACTIONS(16369), 1, + sym__newline, + STATE(3661), 1, + sym_block, + STATE(11182), 1, + aux_sym_import_declaration_repeat1, + [202188] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16371), 1, + sym_identifier, + STATE(3662), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202207] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16373), 1, + sym_identifier, + ACTIONS(16375), 1, + sym__newline, + STATE(3663), 1, + sym_block, + STATE(11185), 1, + aux_sym_import_declaration_repeat1, + [202226] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16377), 1, + sym_identifier, + STATE(3859), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202245] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16379), 1, + sym_identifier, + STATE(3668), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202264] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16381), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7378), 1, + sym_block, + [202283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9714), 1, + anon_sym_RBRACK, + ACTIONS(13685), 1, + anon_sym_COMMA, + ACTIONS(16383), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12358), 1, + aux_sym_import_declaration_repeat1, + [202302] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16385), 1, + sym_identifier, + ACTIONS(16387), 1, + sym__newline, + STATE(7379), 1, + sym_block, + STATE(11347), 1, + aux_sym_import_declaration_repeat1, + [202321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16389), 1, + sym_identifier, + STATE(3674), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16391), 1, + sym_identifier, + STATE(3676), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202359] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16393), 1, + sym_identifier, + ACTIONS(16395), 1, + sym__newline, + STATE(3677), 1, + sym_block, + STATE(11188), 1, + aux_sym_import_declaration_repeat1, + [202378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16397), 1, + sym_identifier, + STATE(3680), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16399), 1, + sym_identifier, + ACTIONS(16401), 1, + sym__newline, + STATE(3681), 1, + sym_block, + STATE(11189), 1, + aux_sym_import_declaration_repeat1, + [202416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16403), 1, + sym_identifier, + STATE(3683), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16405), 1, + sym_identifier, + ACTIONS(16407), 1, + sym__newline, + STATE(3684), 1, + sym_block, + STATE(11190), 1, + aux_sym_import_declaration_repeat1, + [202454] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16409), 1, + sym_identifier, + ACTIONS(16411), 1, + sym__newline, + STATE(3687), 1, + sym_block, + STATE(11192), 1, + aux_sym_import_declaration_repeat1, + [202473] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16413), 1, + sym_identifier, + STATE(3689), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16415), 1, + sym_identifier, + STATE(3696), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16417), 1, + sym_identifier, + STATE(3697), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16419), 1, + sym_identifier, + ACTIONS(16421), 1, + sym__newline, + STATE(3698), 1, + sym_block, + STATE(11195), 1, + aux_sym_import_declaration_repeat1, + [202549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16423), 1, + sym_identifier, + ACTIONS(16425), 1, + sym__newline, + STATE(3700), 1, + sym_block, + STATE(11196), 1, + aux_sym_import_declaration_repeat1, + [202568] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16427), 1, + sym_identifier, + STATE(3701), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16429), 1, + sym_identifier, + ACTIONS(16431), 1, sym__newline, STATE(3706), 1, sym_block, - STATE(4437), 1, + STATE(11197), 1, aux_sym_import_declaration_repeat1, - [94666] = 6, + [202606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(8192), 1, + ACTIONS(16433), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1891), 1, + ACTIONS(16435), 1, + sym__newline, + STATE(7382), 1, sym_block, - [94685] = 6, + STATE(11365), 1, + aux_sym_import_declaration_repeat1, + [202625] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8194), 1, + ACTIONS(16437), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1934), 1, + STATE(3715), 1, sym_block, - [94704] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 1, - anon_sym_RBRACE, - ACTIONS(8196), 1, - anon_sym_COMMA, - ACTIONS(8198), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4384), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [94723] = 6, + [202644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - anon_sym_RBRACE, - ACTIONS(8196), 1, - anon_sym_COMMA, - ACTIONS(8198), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4046), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4384), 1, - aux_sym_import_declaration_repeat1, - [94742] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, + ACTIONS(16439), 1, sym_identifier, - ACTIONS(8202), 1, - sym__newline, - STATE(1833), 1, + STATE(3719), 1, sym_block, - STATE(4109), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [94761] = 6, + [202663] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(826), 1, - anon_sym_EQ, - ACTIONS(8204), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8206), 1, - sym__newline, - STATE(564), 1, - sym_record_body, - STATE(4557), 1, - aux_sym_import_declaration_repeat1, - [94780] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(788), 1, - anon_sym_RBRACE, - ACTIONS(8208), 1, - anon_sym_COMMA, - ACTIONS(8210), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4389), 1, - aux_sym_import_declaration_repeat1, - [94799] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8212), 1, - anon_sym_BANG, - ACTIONS(8214), 1, - anon_sym_LBRACE, - ACTIONS(8216), 1, - sym__newline, - STATE(840), 1, + ACTIONS(16441), 1, + sym_identifier, + STATE(3721), 1, sym_block, - STATE(4416), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [94818] = 6, + [202682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_BANG, - ACTIONS(8220), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8222), 1, + ACTIONS(16443), 1, + sym_identifier, + ACTIONS(16445), 1, sym__newline, - STATE(3323), 1, + STATE(3722), 1, sym_block, - STATE(4586), 1, + STATE(11198), 1, aux_sym_import_declaration_repeat1, - [94837] = 6, + [202701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, - anon_sym_RBRACE, - ACTIONS(8224), 1, - anon_sym_COMMA, - ACTIONS(8226), 1, + ACTIONS(2257), 1, sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4451), 1, - aux_sym_import_declaration_repeat1, - [94856] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8228), 1, + ACTIONS(16447), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1894), 1, + STATE(3724), 1, sym_block, - [94875] = 6, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8230), 1, + ACTIONS(16449), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1895), 1, + ACTIONS(16451), 1, + sym__newline, + STATE(3729), 1, sym_block, - [94894] = 6, + STATE(11199), 1, + aux_sym_import_declaration_repeat1, + [202739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8232), 1, + ACTIONS(16453), 1, sym_identifier, - ACTIONS(8234), 1, + ACTIONS(16455), 1, sym__newline, - STATE(1896), 1, + STATE(3731), 1, sym_block, - STATE(3997), 1, + STATE(11200), 1, aux_sym_import_declaration_repeat1, - [94913] = 6, + [202758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - anon_sym_RBRACE, - ACTIONS(8236), 1, - anon_sym_COMMA, - ACTIONS(8238), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4399), 1, - aux_sym_import_declaration_repeat1, - [94932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5336), 1, - anon_sym_RBRACE, - ACTIONS(8240), 1, - anon_sym_COMMA, - ACTIONS(8242), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4431), 1, - aux_sym_import_declaration_repeat1, - [94951] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8244), 1, + ACTIONS(16457), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1793), 1, + STATE(3733), 1, sym_block, - [94970] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5380), 1, - anon_sym_RBRACE, - ACTIONS(8246), 1, - anon_sym_COMMA, - ACTIONS(8248), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4455), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [94989] = 6, + [202777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8250), 1, - sym_identifier, - ACTIONS(8253), 1, - anon_sym_RBRACE, - ACTIONS(8255), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [95008] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8258), 1, - anon_sym_LPAREN, - ACTIONS(8260), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8262), 1, - sym__newline, - STATE(3086), 1, - sym_record_body, - STATE(4448), 1, - aux_sym_import_declaration_repeat1, - [95027] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8264), 1, - anon_sym_LPAREN, - ACTIONS(8266), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - sym__newline, - STATE(3088), 1, - sym_enum_body, - STATE(4420), 1, - aux_sym_import_declaration_repeat1, - [95046] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_RBRACK, - ACTIONS(8270), 1, - anon_sym_COMMA, - ACTIONS(8272), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4470), 1, - aux_sym_import_declaration_repeat1, - [95065] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, + ACTIONS(16459), 1, sym_identifier, - ACTIONS(8118), 1, - sym__newline, - ACTIONS(8274), 1, - anon_sym_RBRACE, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [95084] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, - sym_identifier, - ACTIONS(8276), 1, - anon_sym_RBRACE, - ACTIONS(8278), 1, - sym__newline, - STATE(4060), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [95103] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(694), 1, - anon_sym_RBRACE, - ACTIONS(8280), 1, - anon_sym_COMMA, - ACTIONS(8282), 1, - sym__newline, - STATE(4104), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4478), 1, - aux_sym_import_declaration_repeat1, - [95122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2861), 1, - anon_sym_RBRACE, - ACTIONS(6882), 1, - anon_sym_COMMA, - ACTIONS(6884), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4627), 1, - aux_sym_import_declaration_repeat1, - [95141] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8286), 1, - anon_sym_DOLLAR, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(8284), 2, - sym_sink, - sym_identifier, - [95158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(810), 1, - anon_sym_RBRACE, - ACTIONS(8288), 1, - anon_sym_COMMA, - ACTIONS(8290), 1, - sym__newline, - STATE(4017), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4337), 1, - aux_sym_import_declaration_repeat1, - [95177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, - sym_identifier, - ACTIONS(8118), 1, - sym__newline, - ACTIONS(8292), 1, - anon_sym_RBRACE, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [95196] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3397), 1, - anon_sym_RPAREN, - ACTIONS(6894), 1, - anon_sym_COMMA, - ACTIONS(6896), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4432), 1, - aux_sym_import_declaration_repeat1, - [95215] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - anon_sym_RPAREN, - ACTIONS(8294), 1, - anon_sym_COMMA, - ACTIONS(8296), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4436), 1, - aux_sym_import_declaration_repeat1, - [95234] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8298), 1, - sym_identifier, - ACTIONS(8300), 1, - sym__newline, - STATE(1898), 1, + STATE(3736), 1, sym_block, - STATE(4034), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [95253] = 6, + [202796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8304), 1, + ACTIONS(2257), 1, sym__newline, - STATE(1889), 1, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16461), 1, + sym_identifier, + STATE(3742), 1, sym_block, - STATE(4135), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [95272] = 6, + [202815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7286), 1, - anon_sym_RBRACE, - ACTIONS(8306), 1, - anon_sym_COMMA, - ACTIONS(8309), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4950), 1, - aux_sym_import_declaration_repeat1, - [95291] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8312), 1, + ACTIONS(16463), 1, sym_identifier, - ACTIONS(8314), 1, - sym__newline, - STATE(1846), 1, + STATE(3759), 1, sym_block, - STATE(4033), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [95310] = 6, + [202834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8316), 1, - anon_sym_LPAREN, - ACTIONS(8318), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8320), 1, - sym__newline, - STATE(2251), 1, - sym_record_body, - STATE(4476), 1, - aux_sym_import_declaration_repeat1, - [95329] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8322), 1, - anon_sym_LPAREN, - ACTIONS(8324), 1, - anon_sym_LBRACE, - ACTIONS(8326), 1, - sym__newline, - STATE(2255), 1, - sym_enum_body, - STATE(4450), 1, - aux_sym_import_declaration_repeat1, - [95348] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(568), 1, - anon_sym_RBRACE, - ACTIONS(8328), 1, - anon_sym_COMMA, - ACTIONS(8330), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4318), 1, - aux_sym_import_declaration_repeat1, - [95367] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(16465), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1796), 1, + STATE(3764), 1, sym_block, - [95386] = 6, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [202853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8334), 1, - sym_identifier, - ACTIONS(8336), 1, + ACTIONS(2257), 1, sym__newline, - STATE(1798), 1, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(16467), 1, + sym_identifier, + STATE(3770), 1, sym_block, - STATE(4136), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [95405] = 6, + [202872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 1, - sym_identifier, - ACTIONS(8338), 1, - anon_sym_RBRACE, - ACTIONS(8340), 1, - sym__newline, - STATE(4074), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [95424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(696), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_COMMA, - ACTIONS(6904), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4516), 1, - aux_sym_import_declaration_repeat1, - [95443] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, - sym_identifier, - ACTIONS(8118), 1, - sym__newline, - ACTIONS(8342), 1, - anon_sym_RBRACE, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [95462] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(696), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_COMMA, - ACTIONS(6904), 1, - sym__newline, - STATE(4108), 1, - aux_sym_initializer_list_repeat1, - STATE(4516), 1, - aux_sym_import_declaration_repeat1, - [95481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8344), 1, + ACTIONS(16469), 1, sym_identifier, - ACTIONS(8346), 1, + ACTIONS(16471), 1, sym__newline, - STATE(1802), 1, + STATE(3775), 1, sym_block, - STATE(4107), 1, + STATE(11202), 1, aux_sym_import_declaration_repeat1, - [95500] = 6, + [202891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - anon_sym_RPAREN, - ACTIONS(6862), 1, - anon_sym_COMMA, - ACTIONS(6864), 1, + ACTIONS(2257), 1, sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4464), 1, - aux_sym_import_declaration_repeat1, - [95519] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3435), 1, - anon_sym_RPAREN, - ACTIONS(8348), 1, - anon_sym_COMMA, - ACTIONS(8350), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4469), 1, - aux_sym_import_declaration_repeat1, - [95538] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8352), 1, + ACTIONS(16473), 1, sym_identifier, - ACTIONS(8354), 1, - sym__newline, - STATE(1804), 1, - sym_block, - STATE(4082), 1, - aux_sym_import_declaration_repeat1, - [95557] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5462), 1, - anon_sym_RBRACE, - ACTIONS(8356), 1, - anon_sym_COMMA, - ACTIONS(8358), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4658), 1, - aux_sym_import_declaration_repeat1, - [95576] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5462), 1, - anon_sym_RBRACE, - ACTIONS(8356), 1, - anon_sym_COMMA, - ACTIONS(8358), 1, - sym__newline, - STATE(4158), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4658), 1, - aux_sym_import_declaration_repeat1, - [95595] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8360), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1839), 1, - sym_block, - [95614] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8362), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1939), 1, - sym_block, - [95633] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8364), 1, - sym_identifier, - ACTIONS(8366), 1, - sym__newline, - STATE(1840), 1, - sym_block, - STATE(4174), 1, - aux_sym_import_declaration_repeat1, - [95652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8368), 1, - anon_sym_LPAREN, - ACTIONS(8370), 1, - anon_sym_LBRACE, - ACTIONS(8372), 1, - sym__newline, STATE(3802), 1, - sym_record_body, - STATE(4701), 1, - aux_sym_import_declaration_repeat1, - [95671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(8376), 1, - sym__newline, - STATE(1848), 1, sym_block, - STATE(4043), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [95690] = 6, + [202910] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(8378), 1, + ACTIONS(16475), 1, sym_identifier, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(1806), 1, + STATE(7384), 1, sym_block, - [95709] = 6, + [202929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(8380), 1, + ACTIONS(16477), 1, sym_identifier, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(1899), 1, + STATE(7387), 1, sym_block, - [95728] = 6, + [202948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8382), 1, - sym_identifier, - ACTIONS(8384), 1, - sym__newline, - STATE(1849), 1, - sym_block, - STATE(4044), 1, - aux_sym_import_declaration_repeat1, - [95747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8386), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2056), 1, - sym_block, - [95766] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8388), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1810), 1, - sym_block, - [95785] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7733), 1, - anon_sym_RPAREN, - ACTIONS(8390), 1, - anon_sym_COMMA, - ACTIONS(8392), 1, - sym__newline, - STATE(4009), 1, - aux_sym_parameter_list_repeat1, - STATE(4515), 1, - aux_sym_import_declaration_repeat1, - [95804] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8394), 1, - sym_identifier, - ACTIONS(8396), 1, - sym__newline, - STATE(1811), 1, - sym_block, - STATE(4183), 1, - aux_sym_import_declaration_repeat1, - [95823] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 1, - anon_sym_RPAREN, - ACTIONS(8398), 1, - anon_sym_COMMA, - ACTIONS(8400), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4525), 1, - aux_sym_import_declaration_repeat1, - [95842] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8402), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1812), 1, - sym_block, - [95861] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8404), 1, - sym_identifier, - ACTIONS(8406), 1, - sym__newline, - STATE(1904), 1, - sym_block, - STATE(4083), 1, - aux_sym_import_declaration_repeat1, - [95880] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8408), 1, - sym_identifier, - ACTIONS(8410), 1, - sym__newline, - STATE(1815), 1, - sym_block, - STATE(4048), 1, - aux_sym_import_declaration_repeat1, - [95899] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2865), 1, - anon_sym_RBRACK, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(8412), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4694), 1, - aux_sym_import_declaration_repeat1, - [95918] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8414), 1, - sym_identifier, - ACTIONS(8416), 1, - sym__newline, - STATE(1817), 1, - sym_block, - STATE(4122), 1, - aux_sym_import_declaration_repeat1, - [95937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8418), 1, - anon_sym_COMMA, - ACTIONS(8420), 1, - anon_sym_RBRACE, - ACTIONS(8422), 1, - sym__newline, - STATE(3986), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4225), 1, - aux_sym_import_declaration_repeat1, - [95956] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym_COMMA, - ACTIONS(8427), 1, - anon_sym_RBRACE, - ACTIONS(8429), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4914), 1, - aux_sym_import_declaration_repeat1, - [95975] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_RBRACE, - ACTIONS(8432), 1, - anon_sym_COMMA, - ACTIONS(8434), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4547), 1, - aux_sym_import_declaration_repeat1, - [95994] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - anon_sym_RBRACE, - ACTIONS(8436), 1, - anon_sym_COMMA, - ACTIONS(8438), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4595), 1, - aux_sym_import_declaration_repeat1, - [96013] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5264), 1, - anon_sym_RBRACE, - ACTIONS(8440), 1, - anon_sym_COMMA, - ACTIONS(8442), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4548), 1, - aux_sym_import_declaration_repeat1, - [96032] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5264), 1, - anon_sym_RBRACE, - ACTIONS(8440), 1, - anon_sym_COMMA, - ACTIONS(8442), 1, - sym__newline, - STATE(4121), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4548), 1, - aux_sym_import_declaration_repeat1, - [96051] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8444), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1919), 1, - sym_block, - [96070] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8446), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1835), 1, - sym_block, - [96089] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(700), 1, - anon_sym_RBRACE, - ACTIONS(8448), 1, - anon_sym_COMMA, - ACTIONS(8450), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4566), 1, - aux_sym_import_declaration_repeat1, - [96108] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8452), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1869), 1, - sym_block, - [96127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(812), 1, - anon_sym_RBRACE, - ACTIONS(6780), 1, - anon_sym_COMMA, - ACTIONS(6782), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4439), 1, - aux_sym_import_declaration_repeat1, - [96146] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_RBRACK, - ACTIONS(8454), 1, - anon_sym_COMMA, - ACTIONS(8456), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4258), 1, - aux_sym_import_declaration_repeat1, - [96165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8458), 1, - sym_identifier, - ACTIONS(8460), 1, - sym__newline, - STATE(1920), 1, - sym_block, - STATE(4156), 1, - aux_sym_import_declaration_repeat1, - [96184] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - sym_identifier, - ACTIONS(8464), 1, - sym__newline, - STATE(1851), 1, - sym_block, - STATE(4088), 1, - aux_sym_import_declaration_repeat1, - [96203] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8466), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2008), 1, - sym_block, - [96222] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8468), 1, + ACTIONS(16479), 1, anon_sym_LPAREN, - ACTIONS(8470), 1, + ACTIONS(16481), 1, anon_sym_LBRACE, - ACTIONS(8472), 1, + ACTIONS(16483), 1, sym__newline, - STATE(3794), 1, + STATE(3827), 1, + sym_record_body, + STATE(12114), 1, + aux_sym_import_declaration_repeat1, + [202967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16485), 1, + anon_sym_LPAREN, + ACTIONS(16487), 1, + anon_sym_LBRACE, + ACTIONS(16489), 1, + sym__newline, + STATE(3828), 1, sym_enum_body, - STATE(4316), 1, + STATE(13568), 1, aux_sym_import_declaration_repeat1, - [96241] = 6, + [202986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5527), 1, - sym_identifier, - ACTIONS(5529), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(8474), 1, + ACTIONS(4476), 1, + sym_identifier, + ACTIONS(16491), 1, anon_sym_else, - ACTIONS(8476), 1, + ACTIONS(16493), 1, sym__newline, - STATE(4717), 1, + STATE(14201), 1, aux_sym_import_declaration_repeat1, - [96260] = 6, + [203005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16496), 1, sym_identifier, - ACTIONS(5549), 1, - anon_sym_LBRACE, - ACTIONS(8479), 1, - anon_sym_else, - ACTIONS(8482), 1, + ACTIONS(16498), 1, sym__newline, - STATE(5002), 1, - aux_sym_import_declaration_repeat1, - [96279] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8370), 1, - anon_sym_LBRACE, - ACTIONS(8485), 1, - anon_sym_LPAREN, - ACTIONS(8487), 1, - sym__newline, - STATE(906), 1, - sym_record_body, - STATE(4213), 1, - aux_sym_import_declaration_repeat1, - [96298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_RBRACE, - ACTIONS(6890), 1, - anon_sym_COMMA, - ACTIONS(6892), 1, - sym__newline, - STATE(3970), 1, - aux_sym_initializer_list_repeat1, - STATE(4248), 1, - aux_sym_import_declaration_repeat1, - [96317] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8489), 1, - anon_sym_LPAREN, - ACTIONS(8491), 1, - anon_sym_LBRACE, - ACTIONS(8493), 1, - sym__newline, - STATE(924), 1, - sym_enum_body, - STATE(4561), 1, - aux_sym_import_declaration_repeat1, - [96336] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym_RBRACE, - ACTIONS(8495), 1, - anon_sym_COMMA, - ACTIONS(8497), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4588), 1, - aux_sym_import_declaration_repeat1, - [96355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8499), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1855), 1, + STATE(9534), 1, sym_block, - [96374] = 6, + STATE(11240), 1, + aux_sym_import_declaration_repeat1, + [203024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 1, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16500), 1, + anon_sym_RBRACE, + ACTIONS(16502), 1, + sym__newline, + STATE(11218), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [203043] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16504), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9540), 1, + sym_block, + [203062] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16506), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9542), 1, + sym_block, + [203081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16508), 1, + sym_identifier, + ACTIONS(16510), 1, + sym__newline, + STATE(9547), 1, + sym_block, + STATE(11302), 1, + aux_sym_import_declaration_repeat1, + [203100] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16512), 1, + sym_identifier, + ACTIONS(16514), 1, + sym__newline, + STATE(9572), 1, + sym_block, + STATE(11304), 1, + aux_sym_import_declaration_repeat1, + [203119] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16516), 1, + sym_identifier, + ACTIONS(16518), 1, + sym__newline, + STATE(9590), 1, + sym_block, + STATE(11306), 1, + aux_sym_import_declaration_repeat1, + [203138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16520), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9592), 1, + sym_block, + [203157] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16522), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7388), 1, + sym_block, + [203176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(16524), 1, + anon_sym_LBRACE, + ACTIONS(16526), 1, + sym__newline, + STATE(2525), 1, + sym_record_body, + STATE(12863), 1, + aux_sym_import_declaration_repeat1, + [203195] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(16528), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [203214] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(16530), 1, + sym_identifier, + STATE(4325), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [203233] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16532), 1, + sym_identifier, + STATE(3273), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [203252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10869), 1, + anon_sym_RBRACE, + ACTIONS(16534), 1, + anon_sym_COMMA, + ACTIONS(16536), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12122), 1, + aux_sym_import_declaration_repeat1, + [203271] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9492), 1, anon_sym_RPAREN, - ACTIONS(6898), 1, + ACTIONS(14145), 1, anon_sym_COMMA, - ACTIONS(6900), 1, + ACTIONS(14147), 1, sym__newline, - STATE(3860), 1, + STATE(10949), 1, aux_sym_match_arm_repeat1, - STATE(4275), 1, + STATE(13721), 1, aux_sym_import_declaration_repeat1, - [96393] = 6, + [203290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(8501), 1, + ACTIONS(16538), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1820), 1, + ACTIONS(16540), 1, + sym__newline, + STATE(7389), 1, sym_block, - [96412] = 6, + STATE(11369), 1, + aux_sym_import_declaration_repeat1, + [203309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 1, - anon_sym_RBRACE, - ACTIONS(8503), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16542), 1, + sym_identifier, + ACTIONS(16544), 1, + sym__newline, + STATE(3291), 1, + sym_block, + STATE(11229), 1, + aux_sym_import_declaration_repeat1, + [203328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16546), 1, + sym_identifier, + STATE(3299), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [203347] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9696), 1, + anon_sym_RPAREN, + ACTIONS(16548), 1, anon_sym_COMMA, - ACTIONS(8505), 1, + ACTIONS(16550), 1, sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4360), 1, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13741), 1, aux_sym_import_declaration_repeat1, - [96431] = 6, + [203366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8507), 1, - anon_sym_LPAREN, - ACTIONS(8509), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(8511), 1, - sym__newline, - STATE(2953), 1, - sym_record_body, - STATE(4559), 1, - aux_sym_import_declaration_repeat1, - [96450] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8513), 1, + ACTIONS(16552), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1871), 1, + ACTIONS(16554), 1, + sym__newline, + STATE(7391), 1, sym_block, - [96469] = 6, + STATE(11374), 1, + aux_sym_import_declaration_repeat1, + [203385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8220), 1, + ACTIONS(9496), 1, + anon_sym_RPAREN, + ACTIONS(16556), 1, + anon_sym_COMMA, + ACTIONS(16558), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13758), 1, + aux_sym_import_declaration_repeat1, + [203404] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8515), 1, - anon_sym_BANG, - ACTIONS(8517), 1, + ACTIONS(16560), 1, + sym_identifier, + STATE(3312), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [203423] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16562), 1, + sym_identifier, + ACTIONS(16564), 1, + sym__newline, + STATE(3313), 1, + sym_block, + STATE(11234), 1, + aux_sym_import_declaration_repeat1, + [203442] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16566), 1, + sym_identifier, + ACTIONS(16568), 1, + sym__newline, + STATE(3316), 1, + sym_block, + STATE(11235), 1, + aux_sym_import_declaration_repeat1, + [203461] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16570), 1, + sym_identifier, + ACTIONS(16572), 1, + sym__newline, + STATE(3318), 1, + sym_block, + STATE(11239), 1, + aux_sym_import_declaration_repeat1, + [203480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16574), 1, + sym_identifier, + ACTIONS(16576), 1, + sym__newline, + STATE(3331), 1, + sym_block, + STATE(11242), 1, + aux_sym_import_declaration_repeat1, + [203499] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16578), 1, + sym_identifier, + STATE(3333), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [203518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16580), 1, + sym_identifier, + STATE(3335), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [203537] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16582), 1, + sym_identifier, + ACTIONS(16584), 1, + sym__newline, + STATE(3336), 1, + sym_block, + STATE(11246), 1, + aux_sym_import_declaration_repeat1, + [203556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16586), 1, + sym_identifier, + ACTIONS(16588), 1, sym__newline, STATE(3341), 1, sym_block, - STATE(4281), 1, + STATE(11248), 1, aux_sym_import_declaration_repeat1, - [96488] = 6, + [203575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7706), 1, - anon_sym_RPAREN, - ACTIONS(8519), 1, - anon_sym_COMMA, - ACTIONS(8521), 1, - sym__newline, - STATE(4189), 1, - aux_sym_parameter_list_repeat1, - STATE(4472), 1, - aux_sym_import_declaration_repeat1, - [96507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16590), 1, sym_identifier, - ACTIONS(8523), 1, - anon_sym_RBRACE, - ACTIONS(8525), 1, + ACTIONS(16592), 1, sym__newline, - STATE(4147), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [96526] = 6, + STATE(3015), 1, + sym_block, + STATE(11250), 1, + aux_sym_import_declaration_repeat1, + [203594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8527), 1, + ACTIONS(16594), 1, sym_identifier, - ACTIONS(8529), 1, - sym__newline, - STATE(1873), 1, + STATE(3118), 1, sym_block, - STATE(4175), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [96545] = 6, + [203613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8531), 1, - anon_sym_COMMA, - ACTIONS(8533), 1, - anon_sym_RBRACE, - ACTIONS(8535), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4149), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4593), 1, - aux_sym_import_declaration_repeat1, - [96564] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(812), 1, - anon_sym_RBRACE, - ACTIONS(6780), 1, - anon_sym_COMMA, - ACTIONS(6782), 1, - sym__newline, - STATE(4069), 1, - aux_sym_initializer_list_repeat1, - STATE(4439), 1, - aux_sym_import_declaration_repeat1, - [96583] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8537), 1, - anon_sym_LPAREN, - ACTIONS(8539), 1, + ACTIONS(13513), 1, anon_sym_LBRACE, - ACTIONS(8541), 1, - sym__newline, - STATE(2897), 1, - sym_enum_body, - STATE(4220), 1, - aux_sym_import_declaration_repeat1, - [96602] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8543), 1, + ACTIONS(16596), 1, sym_identifier, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(1922), 1, + STATE(9682), 1, sym_block, - [96621] = 6, + [203632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13513), 1, anon_sym_LBRACE, - ACTIONS(8545), 1, + ACTIONS(16598), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1832), 1, - sym_block, - [96640] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7746), 1, - anon_sym_LBRACE, - ACTIONS(8547), 1, - anon_sym_LPAREN, - ACTIONS(8549), 1, + ACTIONS(16600), 1, sym__newline, - STATE(3257), 1, - sym_record_body, - STATE(4693), 1, + STATE(9683), 1, + sym_block, + STATE(11315), 1, aux_sym_import_declaration_repeat1, - [96659] = 6, + [203651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8551), 1, + ACTIONS(16602), 1, sym_identifier, - ACTIONS(8553), 1, - sym__newline, - STATE(1927), 1, + STATE(2989), 1, sym_block, - STATE(4179), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [96678] = 6, + [203670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8555), 1, + ACTIONS(16604), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2038), 1, - sym_block, - [96697] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(764), 1, - anon_sym_RBRACE, - ACTIONS(6800), 1, - anon_sym_COMMA, - ACTIONS(6802), 1, + ACTIONS(16606), 1, sym__newline, - STATE(4110), 1, - aux_sym_initializer_list_repeat1, - STATE(4529), 1, + STATE(2990), 1, + sym_block, + STATE(11254), 1, aux_sym_import_declaration_repeat1, - [96716] = 6, + [203689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8557), 1, + ACTIONS(16608), 1, sym_identifier, - ACTIONS(8559), 1, + ACTIONS(16610), 1, sym__newline, - STATE(2039), 1, + STATE(3001), 1, sym_block, - STATE(4090), 1, + STATE(11256), 1, aux_sym_import_declaration_repeat1, - [96735] = 6, + [203708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16612), 1, sym_identifier, - ACTIONS(5514), 1, - anon_sym_LBRACE, - ACTIONS(8561), 1, - anon_sym_else, - ACTIONS(8564), 1, + ACTIONS(16614), 1, sym__newline, - STATE(5003), 1, + STATE(3003), 1, + sym_block, + STATE(11258), 1, aux_sym_import_declaration_repeat1, - [96754] = 6, + [203727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16616), 1, sym_identifier, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(8567), 1, - anon_sym_else, - ACTIONS(8570), 1, - sym__newline, - STATE(5004), 1, - aux_sym_import_declaration_repeat1, - [96773] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8573), 1, - anon_sym_BANG, - ACTIONS(8575), 1, - anon_sym_LBRACE, - ACTIONS(8577), 1, - sym__newline, - STATE(674), 1, + STATE(3005), 1, sym_block, - STATE(4649), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [96792] = 6, + [203746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8204), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8579), 1, - anon_sym_LPAREN, - ACTIONS(8581), 1, - sym__newline, - STATE(685), 1, - sym_record_body, - STATE(4310), 1, - aux_sym_import_declaration_repeat1, - [96811] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8583), 1, - anon_sym_LPAREN, - ACTIONS(8585), 1, - anon_sym_LBRACE, - ACTIONS(8587), 1, - sym__newline, - STATE(686), 1, - sym_enum_body, - STATE(4696), 1, - aux_sym_import_declaration_repeat1, - [96830] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, + ACTIONS(16618), 1, sym_identifier, - ACTIONS(8118), 1, + ACTIONS(16620), 1, sym__newline, - ACTIONS(8589), 1, - anon_sym_RBRACE, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [96849] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3629), 1, - anon_sym_RBRACE, - ACTIONS(6822), 1, - anon_sym_COMMA, - ACTIONS(6824), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4655), 1, - aux_sym_import_declaration_repeat1, - [96868] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5260), 1, - anon_sym_RBRACE, - ACTIONS(8591), 1, - anon_sym_COMMA, - ACTIONS(8593), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4657), 1, - aux_sym_import_declaration_repeat1, - [96887] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 1, - anon_sym_RBRACE, - ACTIONS(8595), 1, - anon_sym_COMMA, - ACTIONS(8597), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4293), 1, - aux_sym_import_declaration_repeat1, - [96906] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8599), 1, - anon_sym_LPAREN, - ACTIONS(8601), 1, - anon_sym_LBRACE, - ACTIONS(8603), 1, - sym__newline, - STATE(3228), 1, - sym_enum_body, - STATE(4219), 1, - aux_sym_import_declaration_repeat1, - [96925] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5260), 1, - anon_sym_RBRACE, - ACTIONS(8591), 1, - anon_sym_COMMA, - ACTIONS(8593), 1, - sym__newline, - STATE(4171), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4657), 1, - aux_sym_import_declaration_repeat1, - [96944] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3637), 1, - anon_sym_RBRACK, - ACTIONS(6642), 1, - anon_sym_COMMA, - ACTIONS(8605), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4662), 1, - aux_sym_import_declaration_repeat1, - [96963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8214), 1, - anon_sym_LBRACE, - ACTIONS(8607), 1, - anon_sym_BANG, - ACTIONS(8609), 1, - sym__newline, - STATE(804), 1, + STATE(3008), 1, sym_block, - STATE(4376), 1, + STATE(11261), 1, aux_sym_import_declaration_repeat1, - [96982] = 6, + [203765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16622), 1, sym_identifier, - ACTIONS(5549), 1, - anon_sym_LBRACE, - ACTIONS(8611), 1, - anon_sym_else, - ACTIONS(8613), 1, - sym__newline, - STATE(4953), 1, + STATE(3021), 1, + sym_block, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [97001] = 6, + [203784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8616), 1, + ACTIONS(16624), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1963), 1, + ACTIONS(16626), 1, + sym__newline, + STATE(3029), 1, sym_block, - [97020] = 6, + STATE(11265), 1, + aux_sym_import_declaration_repeat1, + [203803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8618), 1, + ACTIONS(16628), 1, sym_identifier, - ACTIONS(8620), 1, - sym__newline, - STATE(1836), 1, + STATE(3030), 1, sym_block, - STATE(4127), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [97039] = 6, + [203822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, - anon_sym_RBRACE, - ACTIONS(8622), 1, - anon_sym_COMMA, - ACTIONS(8624), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4295), 1, - aux_sym_import_declaration_repeat1, - [97058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8626), 1, + ACTIONS(16630), 1, sym_identifier, - ACTIONS(8628), 1, + ACTIONS(16632), 1, sym__newline, - STATE(2049), 1, + STATE(3031), 1, sym_block, - STATE(4139), 1, + STATE(11267), 1, aux_sym_import_declaration_repeat1, - [97077] = 6, + [203841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16634), 1, sym_identifier, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(8630), 1, - anon_sym_else, - ACTIONS(8633), 1, + ACTIONS(16636), 1, sym__newline, - STATE(5005), 1, + STATE(3050), 1, + sym_block, + STATE(11268), 1, aux_sym_import_declaration_repeat1, - [97096] = 6, + [203860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16638), 1, sym_identifier, - ACTIONS(5564), 1, - anon_sym_LBRACE, - ACTIONS(8636), 1, - anon_sym_else, - ACTIONS(8639), 1, + ACTIONS(16640), 1, sym__newline, - STATE(5006), 1, - aux_sym_import_declaration_repeat1, - [97115] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(650), 1, - anon_sym_RBRACE, - ACTIONS(6776), 1, - anon_sym_COMMA, - ACTIONS(6778), 1, - sym__newline, - STATE(4185), 1, - aux_sym_initializer_list_repeat1, - STATE(4679), 1, - aux_sym_import_declaration_repeat1, - [97134] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_RPAREN, - ACTIONS(6784), 1, - anon_sym_COMMA, - ACTIONS(6786), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4682), 1, - aux_sym_import_declaration_repeat1, - [97153] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8575), 1, - anon_sym_LBRACE, - ACTIONS(8642), 1, - anon_sym_BANG, - ACTIONS(8644), 1, - sym__newline, - STATE(649), 1, + STATE(9694), 1, sym_block, - STATE(4684), 1, + STATE(11318), 1, aux_sym_import_declaration_repeat1, - [97172] = 6, + [203879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, - anon_sym_RBRACE, - ACTIONS(6914), 1, - anon_sym_COMMA, - ACTIONS(6916), 1, + ACTIONS(2257), 1, sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4485), 1, - aux_sym_import_declaration_repeat1, - [97191] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16642), 1, sym_identifier, - ACTIONS(8646), 1, - anon_sym_RBRACE, - ACTIONS(8648), 1, - sym__newline, - STATE(4191), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [97210] = 6, + STATE(3084), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [203898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8650), 1, + ACTIONS(16644), 1, sym_identifier, - ACTIONS(8652), 1, + ACTIONS(16646), 1, sym__newline, - STATE(1867), 1, + STATE(3085), 1, sym_block, - STATE(4070), 1, + STATE(11269), 1, aux_sym_import_declaration_repeat1, - [97229] = 6, + [203917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8654), 1, - anon_sym_COMMA, - ACTIONS(8656), 1, - anon_sym_RBRACE, - ACTIONS(8658), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4193), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4217), 1, - aux_sym_import_declaration_repeat1, - [97248] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 1, - anon_sym_RBRACK, - ACTIONS(8660), 1, - anon_sym_COMMA, - ACTIONS(8662), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4304), 1, - aux_sym_import_declaration_repeat1, - [97267] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2845), 1, - anon_sym_RBRACE, - ACTIONS(8664), 1, - anon_sym_COMMA, - ACTIONS(8666), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4691), 1, - aux_sym_import_declaration_repeat1, - [97286] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5358), 1, - anon_sym_RBRACE, - ACTIONS(8668), 1, - anon_sym_COMMA, - ACTIONS(8670), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4692), 1, - aux_sym_import_declaration_repeat1, - [97305] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3551), 1, - anon_sym_RPAREN, - ACTIONS(8672), 1, - anon_sym_COMMA, - ACTIONS(8674), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4556), 1, - aux_sym_import_declaration_repeat1, - [97324] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2851), 1, - anon_sym_RBRACK, - ACTIONS(8676), 1, - anon_sym_COMMA, - ACTIONS(8678), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4695), 1, - aux_sym_import_declaration_repeat1, - [97343] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8680), 1, + ACTIONS(16648), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1876), 1, + STATE(3107), 1, sym_block, - [97362] = 6, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [203936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8682), 1, + ACTIONS(16650), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1913), 1, + ACTIONS(16652), 1, + sym__newline, + STATE(3109), 1, sym_block, - [97381] = 6, + STATE(11270), 1, + aux_sym_import_declaration_repeat1, + [203955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16654), 1, sym_identifier, - ACTIONS(5514), 1, - anon_sym_LBRACE, - ACTIONS(8684), 1, - anon_sym_else, - ACTIONS(8686), 1, - sym__newline, - STATE(4991), 1, + STATE(3112), 1, + sym_block, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [97400] = 6, + [203974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8689), 1, + ACTIONS(16656), 1, sym_identifier, - ACTIONS(8691), 1, + ACTIONS(16658), 1, sym__newline, - STATE(2046), 1, + STATE(3113), 1, sym_block, - STATE(3967), 1, + STATE(11272), 1, aux_sym_import_declaration_repeat1, - [97419] = 6, + [203993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5527), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16660), 1, sym_identifier, - ACTIONS(5529), 1, - anon_sym_LBRACE, - ACTIONS(8693), 1, - anon_sym_else, - ACTIONS(8696), 1, + ACTIONS(16662), 1, sym__newline, - STATE(5007), 1, + STATE(3129), 1, + sym_block, + STATE(11274), 1, aux_sym_import_declaration_repeat1, - [97438] = 6, + [204012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8699), 1, + ACTIONS(16664), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1968), 1, + STATE(3132), 1, sym_block, - [97457] = 6, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16666), 1, sym_identifier, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(8701), 1, - anon_sym_else, - ACTIONS(8703), 1, + ACTIONS(16668), 1, sym__newline, - STATE(4995), 1, + STATE(3133), 1, + sym_block, + STATE(11277), 1, aux_sym_import_declaration_repeat1, - [97476] = 6, + [204050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(652), 1, - anon_sym_RBRACE, - ACTIONS(8706), 1, - anon_sym_COMMA, - ACTIONS(8708), 1, - sym__newline, - STATE(4198), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4699), 1, - aux_sym_import_declaration_repeat1, - [97495] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8710), 1, + ACTIONS(16670), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1971), 1, + ACTIONS(16672), 1, + sym__newline, + STATE(3135), 1, sym_block, - [97514] = 6, + STATE(11278), 1, + aux_sym_import_declaration_repeat1, + [204069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8712), 1, + ACTIONS(16674), 1, sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1850), 1, + ACTIONS(16676), 1, + sym__newline, + STATE(3147), 1, sym_block, - [97533] = 6, + STATE(11279), 1, + aux_sym_import_declaration_repeat1, + [204088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8714), 1, - anon_sym_BANG, - ACTIONS(8716), 1, - sym__newline, - STATE(3186), 1, - sym_block, - STATE(4230), 1, - aux_sym_import_declaration_repeat1, - [97552] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - anon_sym_RBRACE, - ACTIONS(6816), 1, - anon_sym_COMMA, - ACTIONS(6818), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4706), 1, - aux_sym_import_declaration_repeat1, - [97571] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - anon_sym_RBRACE, - ACTIONS(6816), 1, - anon_sym_COMMA, - ACTIONS(6818), 1, - sym__newline, - STATE(4203), 1, - aux_sym_initializer_list_repeat1, - STATE(4706), 1, - aux_sym_import_declaration_repeat1, - [97590] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 1, - anon_sym_RPAREN, - ACTIONS(8718), 1, - anon_sym_COMMA, - ACTIONS(8720), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4708), 1, - aux_sym_import_declaration_repeat1, - [97609] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8722), 1, + ACTIONS(16678), 1, sym_identifier, - ACTIONS(8724), 1, - sym__newline, - STATE(1877), 1, + STATE(3148), 1, sym_block, - STATE(4199), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [97628] = 6, + [204107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7632), 1, - anon_sym_RPAREN, - ACTIONS(7998), 1, - anon_sym_COMMA, - ACTIONS(8000), 1, - sym__newline, - STATE(4009), 1, - aux_sym_parameter_list_repeat1, - STATE(4422), 1, - aux_sym_import_declaration_repeat1, - [97647] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8726), 1, + ACTIONS(16680), 1, sym_identifier, - ACTIONS(8728), 1, + ACTIONS(16682), 1, sym__newline, - STATE(1976), 1, + STATE(3149), 1, sym_block, - STATE(4114), 1, + STATE(11282), 1, aux_sym_import_declaration_repeat1, - [97666] = 6, + [204126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16684), 1, sym_identifier, - ACTIONS(8118), 1, - sym__newline, - ACTIONS(8730), 1, - anon_sym_RBRACE, - STATE(4050), 1, - aux_sym_enum_body_repeat1, - STATE(4231), 1, - sym_enum_member, - [97685] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 1, - anon_sym_RBRACE, - ACTIONS(6848), 1, - anon_sym_COMMA, - ACTIONS(6850), 1, - sym__newline, - STATE(3860), 1, - aux_sym_match_arm_repeat1, - STATE(4235), 1, + STATE(3152), 1, + sym_block, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [97704] = 6, + [204145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5338), 1, - anon_sym_RBRACE, - ACTIONS(8732), 1, - anon_sym_COMMA, - ACTIONS(8734), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4238), 1, - aux_sym_import_declaration_repeat1, - [97723] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16686), 1, sym_identifier, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(8736), 1, - anon_sym_else, - ACTIONS(8738), 1, - sym__newline, - STATE(4998), 1, - aux_sym_import_declaration_repeat1, - [97742] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - sym_identifier, - ACTIONS(5564), 1, - anon_sym_LBRACE, - ACTIONS(8741), 1, - anon_sym_else, - ACTIONS(8743), 1, - sym__newline, - STATE(4989), 1, - aux_sym_import_declaration_repeat1, - [97761] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8746), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1794), 1, - sym_block, - [97780] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8748), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1845), 1, - sym_block, - [97799] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5424), 1, - anon_sym_RBRACE, - ACTIONS(8750), 1, - anon_sym_COMMA, - ACTIONS(8752), 1, - sym__newline, - STATE(4101), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4443), 1, - aux_sym_import_declaration_repeat1, - [97818] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8754), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1917), 1, - sym_block, - [97837] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5424), 1, - anon_sym_RBRACE, - ACTIONS(8750), 1, - anon_sym_COMMA, - ACTIONS(8752), 1, - sym__newline, - STATE(4125), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4443), 1, - aux_sym_import_declaration_repeat1, - [97856] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5338), 1, - anon_sym_RBRACE, - ACTIONS(8732), 1, - anon_sym_COMMA, - ACTIONS(8734), 1, - sym__newline, - STATE(3962), 1, - aux_sym_anonymous_record_literal_repeat1, - STATE(4238), 1, - aux_sym_import_declaration_repeat1, - [97875] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8756), 1, - sym_identifier, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1879), 1, - sym_block, - [97894] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(658), 1, - anon_sym_RBRACE, - ACTIONS(8758), 1, - anon_sym_COMMA, - ACTIONS(8760), 1, - sym__newline, - STATE(4065), 1, - aux_sym_initializer_list_repeat1, - STATE(4241), 1, - aux_sym_import_declaration_repeat1, - [97913] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8762), 1, - sym_identifier, - ACTIONS(8764), 1, - sym__newline, - STATE(1881), 1, - sym_block, - STATE(4106), 1, - aux_sym_import_declaration_repeat1, - [97932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8766), 1, - sym_identifier, - ACTIONS(8768), 1, - sym__newline, - STATE(1809), 1, - sym_block, - STATE(4197), 1, - aux_sym_import_declaration_repeat1, - [97951] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1818), 1, - sym_block, - [97967] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8770), 1, - sym__newline, - STATE(2041), 1, - sym_block, - STATE(4242), 1, - aux_sym_import_declaration_repeat1, - [97983] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2017), 1, - sym_block, - [97999] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8772), 1, - sym__newline, - STATE(1928), 1, - sym_block, - STATE(4670), 1, - aux_sym_import_declaration_repeat1, - [98015] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7956), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3799), 1, - sym_record_body, - [98031] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8066), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3701), 1, - sym_record_body, - [98047] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2018), 1, - sym_block, - [98063] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8370), 1, - anon_sym_LBRACE, - STATE(960), 1, - sym_record_body, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98079] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3169), 1, - anon_sym_RBRACE, - ACTIONS(8774), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1883), 1, - sym_block, - [98111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, - sym__newline, - STATE(2047), 1, - sym_block, - STATE(4255), 1, - aux_sym_import_declaration_repeat1, - [98127] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5338), 1, - anon_sym_RBRACE, - ACTIONS(8778), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98143] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8780), 1, - sym__newline, - STATE(1886), 1, - sym_block, - STATE(4320), 1, - aux_sym_import_declaration_repeat1, - [98159] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8601), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3246), 1, - sym_enum_body, - [98175] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8539), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2912), 1, - sym_enum_body, - [98191] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8784), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8575), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98223] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2019), 1, - sym_block, - [98239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8786), 1, - sym__newline, - STATE(2020), 1, - sym_block, - STATE(4305), 1, - aux_sym_import_declaration_repeat1, - [98255] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5438), 1, - anon_sym_RBRACE, - ACTIONS(8788), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2021), 1, - sym_block, - [98287] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8790), 1, - sym__newline, - STATE(1831), 1, - sym_block, - STATE(4513), 1, - aux_sym_import_declaration_repeat1, - [98303] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8792), 1, - sym__newline, - STATE(1844), 1, - sym_block, - STATE(4215), 1, - aux_sym_import_declaration_repeat1, - [98319] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(8794), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98335] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7968), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3116), 1, - sym_block, - [98351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8798), 1, - anon_sym_COMMA, - ACTIONS(8796), 3, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [98363] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7746), 1, - anon_sym_LBRACE, - ACTIONS(8800), 1, - sym__newline, - STATE(3192), 1, - sym_record_body, - STATE(4253), 1, - aux_sym_import_declaration_repeat1, - [98379] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8585), 1, - anon_sym_LBRACE, - ACTIONS(8802), 1, - sym__newline, - STATE(586), 1, - sym_enum_body, - STATE(4254), 1, - aux_sym_import_declaration_repeat1, - [98395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2022), 1, - sym_block, - [98411] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3185), 1, - anon_sym_RBRACE, - ACTIONS(8804), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1983), 1, - sym_block, - [98443] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8806), 1, - sym__newline, - STATE(2023), 1, - sym_block, - STATE(4314), 1, - aux_sym_import_declaration_repeat1, - [98459] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5342), 1, - anon_sym_RBRACE, - ACTIONS(8808), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3191), 1, - anon_sym_RBRACK, - ACTIONS(8810), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8812), 1, - anon_sym_COMMA, - ACTIONS(8814), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98507] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8816), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98523] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1887), 1, - sym_block, - [98539] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2024), 1, - sym_block, - [98555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8818), 1, - sym__newline, - STATE(2025), 1, - sym_block, - STATE(4317), 1, - aux_sym_import_declaration_repeat1, - [98571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5959), 1, - sym__newline, - ACTIONS(8820), 1, - anon_sym_PIPE2, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(5051), 1, - sym__for_capture_bar, - [98587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(742), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8822), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3948), 1, - sym_string, - [98619] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(606), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8826), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1984), 1, - sym_block, - [98651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2833), 1, - anon_sym_RPAREN, - ACTIONS(8828), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98667] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym_LBRACE, - ACTIONS(8830), 1, - sym__newline, - STATE(3157), 1, - sym_block, - STATE(4273), 1, - aux_sym_import_declaration_repeat1, - [98683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7968), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, STATE(3159), 1, sym_block, - [98699] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(7746), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - STATE(1537), 1, + ACTIONS(16688), 1, + sym_identifier, + STATE(3176), 1, + sym_block, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(3218), 1, + [204183] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16690), 1, + sym_identifier, + STATE(3178), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204202] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16692), 1, + sym_identifier, + ACTIONS(16694), 1, + sym__newline, + STATE(3179), 1, + sym_block, + STATE(11284), 1, + aux_sym_import_declaration_repeat1, + [204221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16696), 1, + sym_identifier, + STATE(3187), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16698), 1, + sym_identifier, + ACTIONS(16700), 1, + sym__newline, + STATE(3188), 1, + sym_block, + STATE(11285), 1, + aux_sym_import_declaration_repeat1, + [204259] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16702), 1, + sym_identifier, + STATE(3190), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204278] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16704), 1, + sym_identifier, + ACTIONS(16706), 1, + sym__newline, + STATE(3191), 1, + sym_block, + STATE(11286), 1, + aux_sym_import_declaration_repeat1, + [204297] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16708), 1, + sym_identifier, + ACTIONS(16710), 1, + sym__newline, + STATE(3197), 1, + sym_block, + STATE(11288), 1, + aux_sym_import_declaration_repeat1, + [204316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16712), 1, + sym_identifier, + STATE(3199), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204335] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16714), 1, + sym_identifier, + STATE(3204), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16716), 1, + sym_identifier, + STATE(3205), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16718), 1, + sym_identifier, + ACTIONS(16720), 1, + sym__newline, + STATE(3206), 1, + sym_block, + STATE(11291), 1, + aux_sym_import_declaration_repeat1, + [204392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16722), 1, + sym_identifier, + ACTIONS(16724), 1, + sym__newline, + STATE(3209), 1, + sym_block, + STATE(11292), 1, + aux_sym_import_declaration_repeat1, + [204411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16726), 1, + sym_identifier, + STATE(3211), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16728), 1, + sym_identifier, + ACTIONS(16730), 1, + sym__newline, + STATE(3216), 1, + sym_block, + STATE(11293), 1, + aux_sym_import_declaration_repeat1, + [204449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16732), 1, + sym_identifier, + STATE(3225), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16734), 1, + sym_identifier, + STATE(3229), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16736), 1, + sym_identifier, + STATE(3231), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16738), 1, + sym_identifier, + ACTIONS(16740), 1, + sym__newline, + STATE(3232), 1, + sym_block, + STATE(11294), 1, + aux_sym_import_declaration_repeat1, + [204525] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16742), 1, + sym_identifier, + STATE(3234), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16744), 1, + sym_identifier, + ACTIONS(16746), 1, + sym__newline, + STATE(3245), 1, + sym_block, + STATE(11295), 1, + aux_sym_import_declaration_repeat1, + [204563] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16748), 1, + sym_identifier, + ACTIONS(16750), 1, + sym__newline, + STATE(3248), 1, + sym_block, + STATE(11296), 1, + aux_sym_import_declaration_repeat1, + [204582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16752), 1, + sym_identifier, + STATE(3254), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16754), 1, + sym_identifier, + STATE(3275), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204620] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16756), 1, + sym_identifier, + STATE(3295), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204639] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16758), 1, + sym_identifier, + STATE(3016), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204658] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16760), 1, + sym_identifier, + STATE(3058), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16762), 1, + sym_identifier, + STATE(3080), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16764), 1, + sym_identifier, + ACTIONS(16766), 1, + sym__newline, + STATE(3195), 1, + sym_block, + STATE(11298), 1, + aux_sym_import_declaration_repeat1, + [204715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(16768), 1, + sym_identifier, + STATE(2937), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [204734] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16770), 1, + sym_identifier, + ACTIONS(16772), 1, + sym__newline, + STATE(9697), 1, + sym_block, + STATE(11320), 1, + aux_sym_import_declaration_repeat1, + [204753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16774), 1, + anon_sym_LPAREN, + ACTIONS(16776), 1, + anon_sym_LBRACE, + ACTIONS(16778), 1, + sym__newline, + STATE(2970), 1, sym_record_body, - [98715] = 5, + STATE(12154), 1, + aux_sym_import_declaration_repeat1, + [204772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8585), 1, + ACTIONS(16780), 1, + anon_sym_LPAREN, + ACTIONS(16782), 1, anon_sym_LBRACE, - STATE(595), 1, + ACTIONS(16784), 1, + sym__newline, + STATE(2971), 1, sym_enum_body, - STATE(1537), 1, + STATE(12116), 1, aux_sym_import_declaration_repeat1, - [98731] = 5, + [204791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13513), 1, anon_sym_LBRACE, - STATE(1537), 1, + ACTIONS(16786), 1, + sym_identifier, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(1954), 1, + STATE(9700), 1, sym_block, - [98747] = 5, + [204810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13513), 1, anon_sym_LBRACE, + ACTIONS(16788), 1, + sym_identifier, + ACTIONS(16790), 1, + sym__newline, + STATE(9706), 1, + sym_block, + STATE(11323), 1, + aux_sym_import_declaration_repeat1, + [204829] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16792), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9707), 1, + sym_block, + [204848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16794), 1, + sym_identifier, + ACTIONS(16796), 1, + sym__newline, + STATE(9711), 1, + sym_block, + STATE(11327), 1, + aux_sym_import_declaration_repeat1, + [204867] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16798), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9732), 1, + sym_block, + [204886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16800), 1, + sym_identifier, + ACTIONS(16802), 1, + sym__newline, + STATE(9772), 1, + sym_block, + STATE(11329), 1, + aux_sym_import_declaration_repeat1, + [204905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16804), 1, + anon_sym_RBRACE, + ACTIONS(16806), 1, + sym__newline, + STATE(11313), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [204924] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16808), 1, + sym_identifier, + ACTIONS(16810), 1, + sym__newline, + STATE(9806), 1, + sym_block, + STATE(11330), 1, + aux_sym_import_declaration_repeat1, + [204943] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16812), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7392), 1, + sym_block, + [204962] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16814), 1, + sym_identifier, + ACTIONS(16816), 1, + sym__newline, + STATE(7397), 1, + sym_block, + STATE(11381), 1, + aux_sym_import_declaration_repeat1, + [204981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16818), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7406), 1, + sym_block, + [205000] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(16820), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [205019] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9520), 1, + anon_sym_RPAREN, + ACTIONS(13940), 1, + anon_sym_COMMA, + ACTIONS(13942), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12135), 1, + aux_sym_import_declaration_repeat1, + [205038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16822), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9555), 1, + sym_block, + [205057] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16824), 1, + sym_identifier, + ACTIONS(16826), 1, + sym__newline, + STATE(9808), 1, + sym_block, + STATE(11332), 1, + aux_sym_import_declaration_repeat1, + [205076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9524), 1, + anon_sym_RPAREN, + ACTIONS(16828), 1, + anon_sym_COMMA, + ACTIONS(16830), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12143), 1, + aux_sym_import_declaration_repeat1, + [205095] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16832), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9836), 1, + sym_block, + [205114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16834), 1, + sym_identifier, + ACTIONS(16836), 1, + sym__newline, + STATE(9840), 1, + sym_block, + STATE(11333), 1, + aux_sym_import_declaration_repeat1, + [205133] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16838), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9856), 1, + sym_block, + [205152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16840), 1, + sym_identifier, + ACTIONS(16842), 1, + sym__newline, + STATE(9631), 1, + sym_block, + STATE(11335), 1, + aux_sym_import_declaration_repeat1, + [205171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16844), 1, + sym_identifier, + ACTIONS(16846), 1, + sym__newline, + STATE(9599), 1, + sym_block, + STATE(11337), 1, + aux_sym_import_declaration_repeat1, + [205190] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16848), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9602), 1, + sym_block, + [205209] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16850), 1, + sym_identifier, + ACTIONS(16852), 1, + sym__newline, + STATE(9603), 1, + sym_block, + STATE(11340), 1, + aux_sym_import_declaration_repeat1, + [205228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16854), 1, + sym_identifier, + ACTIONS(16856), 1, + sym__newline, + STATE(9605), 1, + sym_block, + STATE(11341), 1, + aux_sym_import_declaration_repeat1, + [205247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16858), 1, + sym_identifier, + ACTIONS(16860), 1, + sym__newline, + STATE(9607), 1, + sym_block, + STATE(11342), 1, + aux_sym_import_declaration_repeat1, + [205266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16862), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9612), 1, + sym_block, + [205285] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16864), 1, + sym_identifier, + ACTIONS(16866), 1, + sym__newline, + STATE(9620), 1, + sym_block, + STATE(11345), 1, + aux_sym_import_declaration_repeat1, + [205304] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16868), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9624), 1, + sym_block, + [205323] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16870), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9601), 1, + sym_block, + [205342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16872), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7562), 1, + sym_block, + [205361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16874), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9667), 1, + sym_block, + [205380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16876), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9725), 1, + sym_block, + [205399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16878), 1, + sym_identifier, + ACTIONS(16880), 1, + sym__newline, + STATE(9747), 1, + sym_block, + STATE(11348), 1, + aux_sym_import_declaration_repeat1, + [205418] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16882), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9839), 1, + sym_block, + [205437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16884), 1, + sym_identifier, + ACTIONS(16886), 1, + sym__newline, + STATE(9841), 1, + sym_block, + STATE(11349), 1, + aux_sym_import_declaration_repeat1, + [205456] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16888), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9844), 1, + sym_block, + [205475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16890), 1, + sym_identifier, + ACTIONS(16892), 1, + sym__newline, + STATE(9506), 1, + sym_block, + STATE(11350), 1, + aux_sym_import_declaration_repeat1, + [205494] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16894), 1, + sym_identifier, + ACTIONS(16896), 1, + sym__newline, + STATE(9526), 1, + sym_block, + STATE(11352), 1, + aux_sym_import_declaration_repeat1, + [205513] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16898), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9661), 1, + sym_block, + [205532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16900), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9821), 1, + sym_block, + [205551] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16902), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9531), 1, + sym_block, + [205570] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16904), 1, + sym_identifier, + ACTIONS(16906), 1, + sym__newline, + STATE(9536), 1, + sym_block, + STATE(11355), 1, + aux_sym_import_declaration_repeat1, + [205589] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16908), 1, + sym_identifier, + ACTIONS(16910), 1, + sym__newline, + STATE(9640), 1, + sym_block, + STATE(11356), 1, + aux_sym_import_declaration_repeat1, + [205608] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16912), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9642), 1, + sym_block, + [205627] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16914), 1, + sym_identifier, + ACTIONS(16916), 1, + sym__newline, + STATE(9670), 1, + sym_block, + STATE(11359), 1, + aux_sym_import_declaration_repeat1, + [205646] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16918), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7411), 1, + sym_block, + [205665] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16920), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9744), 1, + sym_block, + [205684] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16922), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9751), 1, + sym_block, + [205703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16924), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9754), 1, + sym_block, + [205722] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16926), 1, + sym_identifier, + ACTIONS(16928), 1, + sym__newline, + STATE(9755), 1, + sym_block, + STATE(11360), 1, + aux_sym_import_declaration_repeat1, + [205741] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16930), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9758), 1, + sym_block, + [205760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16932), 1, + sym_identifier, + ACTIONS(16934), 1, + sym__newline, + STATE(9765), 1, + sym_block, + STATE(11361), 1, + aux_sym_import_declaration_repeat1, + [205779] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16936), 1, + sym_identifier, + ACTIONS(16938), 1, + sym__newline, + STATE(9494), 1, + sym_block, + STATE(11362), 1, + aux_sym_import_declaration_repeat1, + [205798] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16940), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9775), 1, + sym_block, + [205817] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16942), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9780), 1, + sym_block, + [205836] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16944), 1, + sym_identifier, + ACTIONS(16946), 1, + sym__newline, + STATE(7412), 1, + sym_block, + STATE(11387), 1, + aux_sym_import_declaration_repeat1, + [205855] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16948), 1, + anon_sym_LPAREN, + ACTIONS(16950), 1, + anon_sym_LBRACE, + ACTIONS(16952), 1, + sym__newline, + STATE(10842), 1, + sym_record_body, + STATE(12561), 1, + aux_sym_import_declaration_repeat1, + [205874] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16954), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9786), 1, + sym_block, + [205893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16956), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9812), 1, + sym_block, + [205912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16958), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9827), 1, + sym_block, + [205931] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16960), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9830), 1, + sym_block, + [205950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16962), 1, + sym_identifier, + ACTIONS(16964), 1, + sym__newline, + STATE(9846), 1, + sym_block, + STATE(11364), 1, + aux_sym_import_declaration_repeat1, + [205969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16966), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9619), 1, + sym_block, + [205988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16968), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7415), 1, + sym_block, + [206007] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16970), 1, + sym_identifier, + ACTIONS(16972), 1, + sym__newline, + STATE(7420), 1, + sym_block, + STATE(11388), 1, + aux_sym_import_declaration_repeat1, + [206026] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + anon_sym_RBRACE, + ACTIONS(13874), 1, + anon_sym_COMMA, + ACTIONS(13876), 1, + sym__newline, + STATE(11393), 1, + aux_sym_initializer_list_repeat1, + STATE(12384), 1, + aux_sym_import_declaration_repeat1, + [206045] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16974), 1, + sym_identifier, + ACTIONS(16976), 1, + sym__newline, + STATE(7422), 1, + sym_block, + STATE(11395), 1, + aux_sym_import_declaration_repeat1, + [206064] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16978), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7424), 1, + sym_block, + [206083] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9730), 1, + anon_sym_RPAREN, + ACTIONS(13878), 1, + anon_sym_COMMA, + ACTIONS(13880), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12389), 1, + aux_sym_import_declaration_repeat1, + [206102] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(16980), 1, + anon_sym_BANG, + ACTIONS(16982), 1, + sym__newline, + STATE(9771), 1, + sym_block, + STATE(12392), 1, + aux_sym_import_declaration_repeat1, + [206121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(16984), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6623), 1, + sym_block, + [206140] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(16986), 1, + sym_identifier, + ACTIONS(16988), 1, + sym__newline, + STATE(6669), 1, + sym_block, + STATE(11461), 1, + aux_sym_import_declaration_repeat1, + [206159] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(16990), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7427), 1, + sym_block, + [206178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(16992), 1, + sym_identifier, + ACTIONS(16994), 1, + sym__newline, + STATE(6651), 1, + sym_block, + STATE(11472), 1, + aux_sym_import_declaration_repeat1, + [206197] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9734), 1, + anon_sym_RBRACE, + ACTIONS(16996), 1, + anon_sym_COMMA, + ACTIONS(16998), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12398), 1, + aux_sym_import_declaration_repeat1, + [206216] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11187), 1, + anon_sym_RBRACE, + ACTIONS(17000), 1, + anon_sym_COMMA, + ACTIONS(17002), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12400), 1, + aux_sym_import_declaration_repeat1, + [206235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9740), 1, + anon_sym_RBRACK, + ACTIONS(17004), 1, + anon_sym_COMMA, + ACTIONS(17006), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12405), 1, + aux_sym_import_declaration_repeat1, + [206254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_RBRACE, + ACTIONS(14040), 1, + anon_sym_COMMA, + ACTIONS(14042), 1, + sym__newline, + STATE(11058), 1, + aux_sym_initializer_list_repeat1, + STATE(12549), 1, + aux_sym_import_declaration_repeat1, + [206273] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17008), 1, + sym_identifier, + ACTIONS(17010), 1, + sym__newline, + STATE(6653), 1, + sym_block, + STATE(11496), 1, + aux_sym_import_declaration_repeat1, + [206292] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17012), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7432), 1, + sym_block, + [206311] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17014), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6658), 1, + sym_block, + [206330] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17016), 1, + sym_identifier, + ACTIONS(17018), 1, + sym__newline, + STATE(4388), 1, + sym_block, + STATE(11410), 1, + aux_sym_import_declaration_repeat1, + [206349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17020), 1, + sym_identifier, + STATE(4405), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [206368] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2087), 1, + anon_sym_RBRACE, + ACTIONS(17022), 1, + anon_sym_COMMA, + ACTIONS(17024), 1, + sym__newline, + STATE(11415), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12433), 1, + aux_sym_import_declaration_repeat1, + [206387] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17026), 1, + sym_identifier, + ACTIONS(17028), 1, + sym__newline, + STATE(6688), 1, + sym_block, + STATE(11591), 1, + aux_sym_import_declaration_repeat1, + [206406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17030), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7449), 1, + sym_block, + [206425] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17032), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7454), 1, + sym_block, + [206444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17034), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6693), 1, + sym_block, + [206463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17036), 1, + sym_identifier, + ACTIONS(17038), 1, + sym__newline, + STATE(6696), 1, + sym_block, + STATE(11650), 1, + aux_sym_import_declaration_repeat1, + [206482] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17040), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6716), 1, + sym_block, + [206501] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17042), 1, + sym_identifier, + ACTIONS(17044), 1, + sym__newline, + STATE(6605), 1, + sym_block, + STATE(11663), 1, + aux_sym_import_declaration_repeat1, + [206520] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, + anon_sym_RBRACE, + ACTIONS(14019), 1, + anon_sym_COMMA, + ACTIONS(14021), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(12451), 1, + aux_sym_import_declaration_repeat1, + [206539] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, + anon_sym_RBRACE, + ACTIONS(14019), 1, + anon_sym_COMMA, + ACTIONS(14021), 1, + sym__newline, + STATE(11427), 1, + aux_sym_initializer_list_repeat1, + STATE(12451), 1, + aux_sym_import_declaration_repeat1, + [206558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17046), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7457), 1, + sym_block, + [206577] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17048), 1, + sym_identifier, + ACTIONS(17050), 1, + sym__newline, + STATE(6723), 1, + sym_block, + STATE(11697), 1, + aux_sym_import_declaration_repeat1, + [206596] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9754), 1, + anon_sym_RPAREN, + ACTIONS(17052), 1, + anon_sym_COMMA, + ACTIONS(17054), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12458), 1, + aux_sym_import_declaration_repeat1, + [206615] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17056), 1, + sym_identifier, + ACTIONS(17058), 1, + sym__newline, + STATE(7462), 1, + sym_block, + STATE(11399), 1, + aux_sym_import_declaration_repeat1, + [206634] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17060), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7489), 1, + sym_block, + [206653] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17062), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6777), 1, + sym_block, + [206672] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15653), 1, + anon_sym_RPAREN, + ACTIONS(17064), 1, + anon_sym_COMMA, + ACTIONS(17066), 1, + sym__newline, + STATE(11088), 1, + aux_sym_parameter_list_repeat1, + STATE(12627), 1, + aux_sym_import_declaration_repeat1, + [206691] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15683), 1, + anon_sym_LBRACE, + ACTIONS(17068), 1, + anon_sym_LPAREN, + ACTIONS(17070), 1, + sym__newline, + STATE(9466), 1, + sym_record_body, + STATE(12924), 1, + aux_sym_import_declaration_repeat1, + [206710] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17072), 1, + anon_sym_LPAREN, + ACTIONS(17074), 1, + anon_sym_LBRACE, + ACTIONS(17076), 1, + sym__newline, + STATE(9431), 1, + sym_enum_body, + STATE(12421), 1, + aux_sym_import_declaration_repeat1, + [206729] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17080), 1, + anon_sym_DOLLAR, + ACTIONS(17082), 1, + sym__newline, + STATE(11107), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(17078), 2, + sym_sink, + sym_identifier, + [206746] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15653), 1, + anon_sym_RPAREN, + ACTIONS(17064), 1, + anon_sym_COMMA, + ACTIONS(17066), 1, + sym__newline, + STATE(11112), 1, + aux_sym_parameter_list_repeat1, + STATE(12627), 1, + aux_sym_import_declaration_repeat1, + [206765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17084), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6694), 1, + sym_block, + [206784] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(17086), 1, + anon_sym_RBRACE, + ACTIONS(17088), 1, + sym__newline, + STATE(11418), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [206803] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11171), 1, + anon_sym_RBRACE, + ACTIONS(17090), 1, + anon_sym_COMMA, + ACTIONS(17092), 1, + sym__newline, + STATE(11892), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13739), 1, + aux_sym_import_declaration_repeat1, + [206822] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17094), 1, + anon_sym_COMMA, + ACTIONS(17096), 1, + anon_sym_RBRACE, + ACTIONS(17098), 1, + sym__newline, + STATE(11421), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12441), 1, + aux_sym_import_declaration_repeat1, + [206841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17100), 1, + sym_identifier, + STATE(4482), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [206860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17102), 1, + sym_identifier, + ACTIONS(17104), 1, + sym__newline, + STATE(4520), 1, + sym_block, + STATE(11448), 1, + aux_sym_import_declaration_repeat1, + [206879] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17106), 1, + sym_identifier, + ACTIONS(17108), 1, + sym__newline, + STATE(4544), 1, + sym_block, + STATE(11449), 1, + aux_sym_import_declaration_repeat1, + [206898] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17110), 1, + sym_identifier, + ACTIONS(17112), 1, + sym__newline, + STATE(4704), 1, + sym_block, + STATE(11455), 1, + aux_sym_import_declaration_repeat1, + [206917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9644), 1, + anon_sym_RBRACK, + ACTIONS(13665), 1, + anon_sym_COMMA, + ACTIONS(17114), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13791), 1, + aux_sym_import_declaration_repeat1, + [206936] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11199), 1, + anon_sym_RBRACE, + ACTIONS(17116), 1, + anon_sym_COMMA, + ACTIONS(17118), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12523), 1, + aux_sym_import_declaration_repeat1, + [206955] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17120), 1, + anon_sym_BANG, + ACTIONS(17122), 1, + sym__newline, + STATE(10752), 1, + sym_block, + STATE(12465), 1, + aux_sym_import_declaration_repeat1, + [206974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11199), 1, + anon_sym_RBRACE, + ACTIONS(17116), 1, + anon_sym_COMMA, + ACTIONS(17118), 1, + sym__newline, + STATE(11458), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12523), 1, + aux_sym_import_declaration_repeat1, + [206993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(17124), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [207012] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17126), 1, + sym_identifier, + ACTIONS(17128), 1, + sym__newline, + STATE(7309), 1, + sym_block, + STATE(11877), 1, + aux_sym_import_declaration_repeat1, + [207031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8922), 1, + anon_sym_RBRACE, + ACTIONS(14029), 1, + anon_sym_COMMA, + ACTIONS(14031), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12478), 1, + aux_sym_import_declaration_repeat1, + [207050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10895), 1, + anon_sym_RBRACE, + ACTIONS(17130), 1, + anon_sym_COMMA, + ACTIONS(17132), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12481), 1, + aux_sym_import_declaration_repeat1, + [207069] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10895), 1, + anon_sym_RBRACE, + ACTIONS(17130), 1, + anon_sym_COMMA, + ACTIONS(17132), 1, + sym__newline, + STATE(11439), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12481), 1, + aux_sym_import_declaration_repeat1, + [207088] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8926), 1, + anon_sym_RBRACK, + ACTIONS(13739), 1, + anon_sym_COMMA, + ACTIONS(17134), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12487), 1, + aux_sym_import_declaration_repeat1, + [207107] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17136), 1, + sym_identifier, + ACTIONS(17138), 1, + sym__newline, + STATE(6671), 1, + sym_block, + STATE(11716), 1, + aux_sym_import_declaration_repeat1, + [207126] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16950), 1, + anon_sym_LBRACE, + ACTIONS(17140), 1, + anon_sym_LPAREN, + ACTIONS(17142), 1, + sym__newline, + STATE(4331), 1, + sym_record_body, + STATE(12418), 1, + aux_sym_import_declaration_repeat1, + [207145] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17144), 1, + anon_sym_LPAREN, + ACTIONS(17146), 1, + anon_sym_LBRACE, + ACTIONS(17148), 1, + sym__newline, + STATE(4361), 1, + sym_enum_body, + STATE(12886), 1, + aux_sym_import_declaration_repeat1, + [207164] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_RBRACE, + ACTIONS(17150), 1, + anon_sym_COMMA, + ACTIONS(17152), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(12534), 1, + aux_sym_import_declaration_repeat1, + [207183] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17154), 1, + sym_identifier, + STATE(2183), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [207202] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17156), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7319), 1, + sym_block, + [207221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9660), 1, + anon_sym_RPAREN, + ACTIONS(13888), 1, + anon_sym_COMMA, + ACTIONS(14090), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13714), 1, + aux_sym_import_declaration_repeat1, + [207240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17158), 1, + sym_identifier, + ACTIONS(17160), 1, + sym__newline, + STATE(6814), 1, + sym_block, + STATE(11372), 1, + aux_sym_import_declaration_repeat1, + [207259] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_RBRACE, + ACTIONS(14108), 1, + anon_sym_COMMA, + ACTIONS(14110), 1, + sym__newline, + STATE(11451), 1, + aux_sym_initializer_list_repeat1, + STATE(12509), 1, + aux_sym_import_declaration_repeat1, + [207278] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8934), 1, + anon_sym_RPAREN, + ACTIONS(14124), 1, + anon_sym_COMMA, + ACTIONS(14126), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12515), 1, + aux_sym_import_declaration_repeat1, + [207297] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17162), 1, + anon_sym_BANG, + ACTIONS(17164), 1, + sym__newline, + STATE(10564), 1, + sym_block, + STATE(12518), 1, + aux_sym_import_declaration_repeat1, + [207316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17166), 1, + anon_sym_LPAREN, + ACTIONS(17168), 1, + anon_sym_LBRACE, + ACTIONS(17170), 1, + sym__newline, + STATE(7172), 1, + sym_record_body, + STATE(12548), 1, + aux_sym_import_declaration_repeat1, + [207335] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17172), 1, + anon_sym_LPAREN, + ACTIONS(17174), 1, + anon_sym_LBRACE, + ACTIONS(17176), 1, + sym__newline, + STATE(7173), 1, + sym_enum_body, + STATE(12880), 1, + aux_sym_import_declaration_repeat1, + [207354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(17178), 1, + anon_sym_RBRACE, + ACTIONS(17180), 1, + sym__newline, + STATE(11468), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [207373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8938), 1, + anon_sym_RBRACE, + ACTIONS(17182), 1, + anon_sym_COMMA, + ACTIONS(17184), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12526), 1, + aux_sym_import_declaration_repeat1, + [207392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10899), 1, + anon_sym_RBRACE, + ACTIONS(17186), 1, + anon_sym_COMMA, + ACTIONS(17188), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12527), 1, + aux_sym_import_declaration_repeat1, + [207411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8944), 1, + anon_sym_RBRACK, + ACTIONS(17190), 1, + anon_sym_COMMA, + ACTIONS(17192), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12532), 1, + aux_sym_import_declaration_repeat1, + [207430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17194), 1, + anon_sym_COMMA, + ACTIONS(17196), 1, + anon_sym_RBRACE, + ACTIONS(17198), 1, + sym__newline, + STATE(11473), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12975), 1, + aux_sym_import_declaration_repeat1, + [207449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(17200), 1, + anon_sym_RBRACE, + ACTIONS(17202), 1, + sym__newline, + STATE(11729), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [207468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17204), 1, + sym_identifier, + ACTIONS(17206), 1, + sym__newline, + STATE(2202), 1, + sym_block, + STATE(11463), 1, + aux_sym_import_declaration_repeat1, + [207487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17208), 1, + sym_identifier, + STATE(2204), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [207506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17210), 1, + anon_sym_COMMA, + ACTIONS(17212), 1, + anon_sym_RBRACE, + ACTIONS(17214), 1, + sym__newline, + STATE(11772), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13209), 1, + aux_sym_import_declaration_repeat1, + [207525] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17216), 1, + sym_identifier, + ACTIONS(17218), 1, + sym__newline, + STATE(3973), 1, + sym_block, + STATE(11476), 1, + aux_sym_import_declaration_repeat1, + [207544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + anon_sym_RBRACE, + ACTIONS(17220), 1, + anon_sym_COMMA, + ACTIONS(17222), 1, + sym__newline, + STATE(11469), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12546), 1, + aux_sym_import_declaration_repeat1, + [207563] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17224), 1, + sym_identifier, + STATE(3987), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [207582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17226), 1, + sym_identifier, + STATE(3990), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [207601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17228), 1, + sym_identifier, + ACTIONS(17230), 1, + sym__newline, + STATE(4007), 1, + sym_block, + STATE(11480), 1, + aux_sym_import_declaration_repeat1, + [207620] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_RBRACE, + ACTIONS(14048), 1, + anon_sym_COMMA, + ACTIONS(14050), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(12554), 1, + aux_sym_import_declaration_repeat1, + [207639] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17232), 1, + sym_identifier, + ACTIONS(17234), 1, + sym__newline, + STATE(4010), 1, + sym_block, + STATE(11489), 1, + aux_sym_import_declaration_repeat1, + [207658] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_RBRACE, + ACTIONS(14048), 1, + anon_sym_COMMA, + ACTIONS(14050), 1, + sym__newline, + STATE(11475), 1, + aux_sym_initializer_list_repeat1, + STATE(12554), 1, + aux_sym_import_declaration_repeat1, + [207677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17236), 1, + sym_identifier, + ACTIONS(17238), 1, + sym__newline, + STATE(4011), 1, + sym_block, + STATE(11491), 1, + aux_sym_import_declaration_repeat1, + [207696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17240), 1, + sym_identifier, + STATE(4013), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [207715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8958), 1, + anon_sym_RPAREN, + ACTIONS(17242), 1, + anon_sym_COMMA, + ACTIONS(17244), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12558), 1, + aux_sym_import_declaration_repeat1, + [207734] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17246), 1, + sym_identifier, + ACTIONS(17248), 1, + sym__newline, + STATE(7320), 1, + sym_block, + STATE(11019), 1, + aux_sym_import_declaration_repeat1, + [207753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10835), 1, + anon_sym_RBRACE, + ACTIONS(17250), 1, + anon_sym_COMMA, + ACTIONS(17252), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12596), 1, + aux_sym_import_declaration_repeat1, + [207772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17254), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6819), 1, + sym_block, + [207791] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 1, + anon_sym_RBRACE, + ACTIONS(17256), 1, + anon_sym_COMMA, + ACTIONS(17258), 1, + sym__newline, + STATE(11758), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13394), 1, + aux_sym_import_declaration_repeat1, + [207810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17260), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6747), 1, + sym_block, + [207829] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17262), 1, + sym_identifier, + ACTIONS(17264), 1, + sym__newline, + STATE(6757), 1, + sym_block, + STATE(11723), 1, + aux_sym_import_declaration_repeat1, + [207848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17266), 1, + sym_identifier, + STATE(2220), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [207867] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17268), 1, + sym_identifier, + ACTIONS(17270), 1, + sym__newline, + STATE(2221), 1, + sym_block, + STATE(11482), 1, + aux_sym_import_declaration_repeat1, + [207886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17272), 1, + sym_identifier, + ACTIONS(17274), 1, + sym__newline, + STATE(2224), 1, + sym_block, + STATE(11483), 1, + aux_sym_import_declaration_repeat1, + [207905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17276), 1, + sym_identifier, + ACTIONS(17278), 1, + sym__newline, + STATE(2226), 1, + sym_block, + STATE(11487), 1, + aux_sym_import_declaration_repeat1, + [207924] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(17280), 1, + anon_sym_BANG, + ACTIONS(17282), 1, + sym__newline, + STATE(3458), 1, + sym_block, + STATE(13106), 1, + aux_sym_import_declaration_repeat1, + [207943] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(17284), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [207962] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10913), 1, + anon_sym_RBRACE, + ACTIONS(17286), 1, + anon_sym_COMMA, + ACTIONS(17288), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12586), 1, + aux_sym_import_declaration_repeat1, + [207981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10913), 1, + anon_sym_RBRACE, + ACTIONS(17286), 1, + anon_sym_COMMA, + ACTIONS(17288), 1, + sym__newline, + STATE(11492), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12586), 1, + aux_sym_import_declaration_repeat1, + [208000] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9768), 1, + anon_sym_RBRACE, + ACTIONS(13870), 1, + anon_sym_COMMA, + ACTIONS(13872), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13126), 1, + aux_sym_import_declaration_repeat1, + [208019] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17290), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6762), 1, + sym_block, + [208038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11075), 1, + anon_sym_RBRACE, + ACTIONS(17292), 1, + anon_sym_COMMA, + ACTIONS(17294), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13128), 1, + aux_sym_import_declaration_repeat1, + [208057] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17296), 1, + sym_identifier, + ACTIONS(17298), 1, + sym__newline, + STATE(6763), 1, + sym_block, + STATE(11725), 1, + aux_sym_import_declaration_repeat1, + [208076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, + ACTIONS(17302), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(12594), 1, + aux_sym_import_declaration_repeat1, + [208095] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17304), 1, + sym_identifier, + STATE(4068), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17306), 1, + sym_identifier, + ACTIONS(17308), 1, + sym__newline, + STATE(4069), 1, + sym_block, + STATE(11511), 1, + aux_sym_import_declaration_repeat1, + [208133] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17310), 1, + sym_identifier, + ACTIONS(17312), 1, + sym__newline, + STATE(7305), 1, + sym_block, + STATE(11783), 1, + aux_sym_import_declaration_repeat1, + [208152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17314), 1, + sym_identifier, + ACTIONS(17316), 1, + sym__newline, + STATE(4080), 1, + sym_block, + STATE(11562), 1, + aux_sym_import_declaration_repeat1, + [208171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17318), 1, + sym_identifier, + STATE(4082), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208190] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17320), 1, + sym_identifier, + ACTIONS(17322), 1, + sym__newline, + STATE(2241), 1, + sym_block, + STATE(11499), 1, + aux_sym_import_declaration_repeat1, + [208209] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17324), 1, + sym_identifier, + STATE(2243), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17326), 1, + sym_identifier, + STATE(2245), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17328), 1, + sym_identifier, + ACTIONS(17330), 1, + sym__newline, + STATE(2246), 1, + sym_block, + STATE(11503), 1, + aux_sym_import_declaration_repeat1, + [208266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17332), 1, + sym_identifier, + ACTIONS(17334), 1, + sym__newline, + STATE(2249), 1, + sym_block, + STATE(11505), 1, + aux_sym_import_declaration_repeat1, + [208285] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17336), 1, + sym_identifier, + ACTIONS(17338), 1, + sym__newline, + STATE(2250), 1, + sym_block, + STATE(11507), 1, + aux_sym_import_declaration_repeat1, + [208304] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17340), 1, + sym_identifier, + STATE(2251), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208323] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17342), 1, + sym_identifier, + ACTIONS(17344), 1, + sym__newline, + STATE(4098), 1, + sym_block, + STATE(11565), 1, + aux_sym_import_declaration_repeat1, + [208342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17346), 1, + sym_identifier, + STATE(4103), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17348), 1, + sym_identifier, + ACTIONS(17350), 1, + sym__newline, + STATE(4107), 1, + sym_block, + STATE(11569), 1, + aux_sym_import_declaration_repeat1, + [208380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17352), 1, + sym_identifier, + STATE(4109), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10921), 1, + anon_sym_RBRACE, + ACTIONS(17354), 1, + anon_sym_COMMA, + ACTIONS(17356), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12624), 1, + aux_sym_import_declaration_repeat1, + [208418] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17358), 1, + sym_identifier, + ACTIONS(17360), 1, + sym__newline, + STATE(4112), 1, + sym_block, + STATE(11571), 1, + aux_sym_import_declaration_repeat1, + [208437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17362), 1, + sym_identifier, + ACTIONS(17364), 1, + sym__newline, + STATE(4114), 1, + sym_block, + STATE(11572), 1, + aux_sym_import_declaration_repeat1, + [208456] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11075), 1, + anon_sym_RBRACE, + ACTIONS(17292), 1, + anon_sym_COMMA, + ACTIONS(17294), 1, + sym__newline, + STATE(11713), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13128), 1, + aux_sym_import_declaration_repeat1, + [208475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17366), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6768), 1, + sym_block, + [208494] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17368), 1, + sym_identifier, + ACTIONS(17370), 1, + sym__newline, + STATE(6769), 1, + sym_block, + STATE(11730), 1, + aux_sym_import_declaration_repeat1, + [208513] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9312), 1, + anon_sym_RBRACK, + ACTIONS(13443), 1, + anon_sym_COMMA, + ACTIONS(17372), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13141), 1, + aux_sym_import_declaration_repeat1, + [208532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17374), 1, + sym_identifier, + STATE(2264), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208551] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17376), 1, + sym_identifier, + ACTIONS(17378), 1, + sym__newline, + STATE(2265), 1, + sym_block, + STATE(11513), 1, + aux_sym_import_declaration_repeat1, + [208570] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17380), 1, + sym_identifier, + ACTIONS(17382), 1, + sym__newline, + STATE(2268), 1, + sym_block, + STATE(11515), 1, + aux_sym_import_declaration_repeat1, + [208589] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17384), 1, + sym_identifier, + ACTIONS(17386), 1, + sym__newline, + STATE(2270), 1, + sym_block, + STATE(11517), 1, + aux_sym_import_declaration_repeat1, + [208608] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17388), 1, + sym_identifier, + STATE(2272), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208627] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17390), 1, + sym_identifier, + ACTIONS(17392), 1, + sym__newline, + STATE(2274), 1, + sym_block, + STATE(11520), 1, + aux_sym_import_declaration_repeat1, + [208646] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17394), 1, + sym_identifier, + STATE(2275), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208665] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17396), 1, + sym_identifier, + ACTIONS(17398), 1, + sym__newline, + STATE(2276), 1, + sym_block, + STATE(11524), 1, + aux_sym_import_declaration_repeat1, + [208684] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17400), 1, + sym_identifier, + STATE(2277), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17402), 1, + sym_identifier, + ACTIONS(17404), 1, + sym__newline, + STATE(2278), 1, + sym_block, + STATE(11526), 1, + aux_sym_import_declaration_repeat1, + [208722] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17406), 1, + sym_identifier, + ACTIONS(17408), 1, + sym__newline, + STATE(2280), 1, + sym_block, + STATE(11527), 1, + aux_sym_import_declaration_repeat1, + [208741] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17410), 1, + sym_identifier, + ACTIONS(17412), 1, + sym__newline, + STATE(6781), 1, + sym_block, + STATE(11735), 1, + aux_sym_import_declaration_repeat1, + [208760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17414), 1, + sym_identifier, + STATE(4132), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208779] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17416), 1, + sym_identifier, + ACTIONS(17418), 1, + sym__newline, + STATE(4155), 1, + sym_block, + STATE(11576), 1, + aux_sym_import_declaration_repeat1, + [208798] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17420), 1, + sym_identifier, + STATE(2286), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208817] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17422), 1, + sym_identifier, + ACTIONS(17424), 1, + sym__newline, + STATE(2289), 1, + sym_block, + STATE(11530), 1, + aux_sym_import_declaration_repeat1, + [208836] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17426), 1, + sym_identifier, + STATE(2291), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208855] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17428), 1, + sym_identifier, + ACTIONS(17430), 1, + sym__newline, + STATE(2292), 1, + sym_block, + STATE(11531), 1, + aux_sym_import_declaration_repeat1, + [208874] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17432), 1, + sym_identifier, + STATE(2297), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17434), 1, + sym_identifier, + ACTIONS(17436), 1, + sym__newline, + STATE(2298), 1, + sym_block, + STATE(11533), 1, + aux_sym_import_declaration_repeat1, + [208912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17438), 1, + sym_identifier, + ACTIONS(17440), 1, + sym__newline, + STATE(2302), 1, + sym_block, + STATE(11535), 1, + aux_sym_import_declaration_repeat1, + [208931] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17442), 1, + sym_identifier, + STATE(2304), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [208950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17444), 1, + sym_identifier, + ACTIONS(17446), 1, + sym__newline, + STATE(2305), 1, + sym_block, + STATE(11538), 1, + aux_sym_import_declaration_repeat1, + [208969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17448), 1, + sym_identifier, + ACTIONS(17450), 1, + sym__newline, + STATE(2307), 1, + sym_block, + STATE(11539), 1, + aux_sym_import_declaration_repeat1, + [208988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17452), 1, + sym_identifier, + ACTIONS(17454), 1, + sym__newline, + STATE(2308), 1, + sym_block, + STATE(11540), 1, + aux_sym_import_declaration_repeat1, + [209007] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17456), 1, + sym_identifier, + STATE(2309), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209026] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17458), 1, + sym_identifier, + ACTIONS(17460), 1, + sym__newline, + STATE(2310), 1, + sym_block, + STATE(11543), 1, + aux_sym_import_declaration_repeat1, + [209045] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17462), 1, + sym_identifier, + STATE(2312), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209064] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17464), 1, + sym_identifier, + STATE(2315), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209083] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17466), 1, + sym_identifier, + STATE(4239), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209102] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17468), 1, + sym_identifier, + ACTIONS(17470), 1, + sym__newline, + STATE(4310), 1, + sym_block, + STATE(11577), 1, + aux_sym_import_declaration_repeat1, + [209121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17472), 1, + sym_identifier, + STATE(2320), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209140] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17474), 1, + sym_identifier, + STATE(2322), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209159] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17476), 1, + sym_identifier, + ACTIONS(17478), 1, + sym__newline, + STATE(2323), 1, + sym_block, + STATE(11545), 1, + aux_sym_import_declaration_repeat1, + [209178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17480), 1, + sym_identifier, + STATE(2331), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209197] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17482), 1, + sym_identifier, + ACTIONS(17484), 1, + sym__newline, + STATE(2332), 1, + sym_block, + STATE(11546), 1, + aux_sym_import_declaration_repeat1, + [209216] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17486), 1, + sym_identifier, + STATE(2334), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17488), 1, + sym_identifier, + ACTIONS(17490), 1, + sym__newline, + STATE(2336), 1, + sym_block, + STATE(11964), 1, + aux_sym_import_declaration_repeat1, + [209254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17492), 1, + sym_identifier, + ACTIONS(17494), 1, + sym__newline, + STATE(2339), 1, + sym_block, + STATE(11549), 1, + aux_sym_import_declaration_repeat1, + [209273] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17496), 1, + sym_identifier, + STATE(2341), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209292] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17498), 1, + sym_identifier, + STATE(2344), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209311] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17500), 1, + sym_identifier, + STATE(2345), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209330] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17502), 1, + sym_identifier, + ACTIONS(17504), 1, + sym__newline, + STATE(2346), 1, + sym_block, + STATE(11552), 1, + aux_sym_import_declaration_repeat1, + [209349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17506), 1, + sym_identifier, + ACTIONS(17508), 1, + sym__newline, + STATE(2348), 1, + sym_block, + STATE(11553), 1, + aux_sym_import_declaration_repeat1, + [209368] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17510), 1, + sym_identifier, + STATE(2349), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209387] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17512), 1, + sym_identifier, + ACTIONS(17514), 1, + sym__newline, + STATE(2354), 1, + sym_block, + STATE(11555), 1, + aux_sym_import_declaration_repeat1, + [209406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17516), 1, + sym_identifier, + STATE(2368), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209425] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17518), 1, + sym_identifier, + STATE(2373), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17520), 1, + sym_identifier, + ACTIONS(17522), 1, + sym__newline, + STATE(7308), 1, + sym_block, + STATE(11875), 1, + aux_sym_import_declaration_repeat1, + [209463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17524), 1, + sym_identifier, + ACTIONS(17526), 1, + sym__newline, + STATE(2376), 1, + sym_block, + STATE(11556), 1, + aux_sym_import_declaration_repeat1, + [209482] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17528), 1, + sym_identifier, + STATE(2378), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209501] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17530), 1, + sym_identifier, + ACTIONS(17532), 1, + sym__newline, + STATE(2383), 1, + sym_block, + STATE(11557), 1, + aux_sym_import_declaration_repeat1, + [209520] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17534), 1, + sym_identifier, + ACTIONS(17536), 1, + sym__newline, + STATE(2385), 1, + sym_block, + STATE(11558), 1, + aux_sym_import_declaration_repeat1, + [209539] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17538), 1, + sym_identifier, + STATE(2387), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17540), 1, + sym_identifier, + STATE(2390), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209577] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17542), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7304), 1, + sym_block, + [209596] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17544), 1, + sym_identifier, + STATE(2395), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209615] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17546), 1, + sym_identifier, + STATE(2418), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209634] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17548), 1, + sym_identifier, + STATE(2423), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209653] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17550), 1, + sym_identifier, + STATE(2426), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209672] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17552), 1, + sym_identifier, + ACTIONS(17554), 1, + sym__newline, + STATE(2431), 1, + sym_block, + STATE(11561), 1, + aux_sym_import_declaration_repeat1, + [209691] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17556), 1, + sym_identifier, + ACTIONS(17558), 1, + sym__newline, + STATE(7323), 1, + sym_block, + STATE(11060), 1, + aux_sym_import_declaration_repeat1, + [209710] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(17560), 1, + sym_identifier, + STATE(2464), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209729] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17562), 1, + sym_identifier, + STATE(4348), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209748] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17564), 1, + sym_identifier, + ACTIONS(17566), 1, + sym__newline, + STATE(4357), 1, + sym_block, + STATE(11579), 1, + aux_sym_import_declaration_repeat1, + [209767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17568), 1, + sym_identifier, + ACTIONS(17570), 1, + sym__newline, + STATE(4397), 1, + sym_block, + STATE(11581), 1, + aux_sym_import_declaration_repeat1, + [209786] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17572), 1, + sym_identifier, + STATE(4429), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209805] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17574), 1, + sym_identifier, + ACTIONS(17576), 1, + sym__newline, + STATE(4432), 1, + sym_block, + STATE(11584), 1, + aux_sym_import_declaration_repeat1, + [209824] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17578), 1, + sym_identifier, + ACTIONS(17580), 1, + sym__newline, + STATE(4511), 1, + sym_block, + STATE(11585), 1, + aux_sym_import_declaration_repeat1, + [209843] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17582), 1, + sym_identifier, + ACTIONS(17584), 1, + sym__newline, + STATE(4513), 1, + sym_block, + STATE(11586), 1, + aux_sym_import_declaration_repeat1, + [209862] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17586), 1, + sym_identifier, + STATE(4518), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209881] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17588), 1, + sym_identifier, + ACTIONS(17590), 1, + sym__newline, + STATE(4727), 1, + sym_block, + STATE(11589), 1, + aux_sym_import_declaration_repeat1, + [209900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17592), 1, + sym_identifier, + STATE(4752), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17594), 1, + sym_identifier, + STATE(3956), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [209938] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(17596), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9102), 1, + sym_block, + [209957] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17598), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6829), 1, + sym_block, + [209976] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(17600), 1, + sym_identifier, + ACTIONS(17602), 1, + sym__newline, + STATE(7325), 1, + sym_block, + STATE(11076), 1, + aux_sym_import_declaration_repeat1, + [209995] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17604), 1, + sym_identifier, + STATE(4002), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210014] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17606), 1, + sym_identifier, + STATE(4049), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210033] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17608), 1, + sym_identifier, + ACTIONS(17610), 1, + sym__newline, + STATE(4051), 1, + sym_block, + STATE(11594), 1, + aux_sym_import_declaration_repeat1, + [210052] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17612), 1, + sym_identifier, + STATE(4091), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210071] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17614), 1, + sym_identifier, + ACTIONS(17616), 1, + sym__newline, + STATE(4094), 1, + sym_block, + STATE(11595), 1, + aux_sym_import_declaration_repeat1, + [210090] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17618), 1, + sym_identifier, + STATE(4131), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210109] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17620), 1, + sym_identifier, + ACTIONS(17622), 1, + sym__newline, + STATE(4134), 1, + sym_block, + STATE(11596), 1, + aux_sym_import_declaration_repeat1, + [210128] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17624), 1, + sym_identifier, + ACTIONS(17626), 1, + sym__newline, + STATE(4175), 1, + sym_block, + STATE(11600), 1, + aux_sym_import_declaration_repeat1, + [210147] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17628), 1, + sym_identifier, + STATE(4211), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210166] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17630), 1, + sym_identifier, + STATE(4252), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210185] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17632), 1, + sym_identifier, + STATE(4280), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210204] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17634), 1, + sym_identifier, + ACTIONS(17636), 1, + sym__newline, + STATE(4282), 1, + sym_block, + STATE(11603), 1, + aux_sym_import_declaration_repeat1, + [210223] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17638), 1, + sym_identifier, + ACTIONS(17640), 1, + sym__newline, + STATE(4316), 1, + sym_block, + STATE(11604), 1, + aux_sym_import_declaration_repeat1, + [210242] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17642), 1, + sym_identifier, + STATE(4318), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210261] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17644), 1, + sym_identifier, + ACTIONS(17646), 1, + sym__newline, + STATE(4378), 1, + sym_block, + STATE(11607), 1, + aux_sym_import_declaration_repeat1, + [210280] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17648), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6785), 1, + sym_block, + [210299] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16524), 1, + anon_sym_LBRACE, + ACTIONS(17650), 1, + anon_sym_LPAREN, + ACTIONS(17652), 1, + sym__newline, + STATE(2496), 1, + sym_record_body, + STATE(13358), 1, + aux_sym_import_declaration_repeat1, + [210318] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17654), 1, + anon_sym_LPAREN, + ACTIONS(17656), 1, + anon_sym_LBRACE, + ACTIONS(17658), 1, + sym__newline, + STATE(2497), 1, + sym_enum_body, + STATE(12927), 1, + aux_sym_import_declaration_repeat1, + [210337] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17660), 1, + sym_identifier, + STATE(4471), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17662), 1, + sym_identifier, + STATE(4504), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210375] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17664), 1, + sym_identifier, + STATE(4534), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210394] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(17666), 1, + anon_sym_RBRACE, + ACTIONS(17668), 1, + sym__newline, + STATE(11606), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [210413] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17670), 1, + sym_identifier, + ACTIONS(17672), 1, + sym__newline, + STATE(4561), 1, + sym_block, + STATE(11615), 1, + aux_sym_import_declaration_repeat1, + [210432] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17674), 1, + anon_sym_COMMA, + ACTIONS(17676), 1, + anon_sym_RBRACE, + ACTIONS(17678), 1, + sym__newline, + STATE(11609), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12956), 1, + aux_sym_import_declaration_repeat1, + [210451] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17680), 1, + sym_identifier, + STATE(4615), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210470] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17682), 1, + sym_identifier, + ACTIONS(17684), 1, + sym__newline, + STATE(4715), 1, + sym_block, + STATE(11617), 1, + aux_sym_import_declaration_repeat1, + [210489] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17686), 1, + sym_identifier, + ACTIONS(17688), 1, + sym__newline, + STATE(4743), 1, + sym_block, + STATE(11618), 1, + aux_sym_import_declaration_repeat1, + [210508] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17690), 1, + sym_identifier, + STATE(4320), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210527] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17692), 1, + sym_identifier, + STATE(4072), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210546] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(17694), 1, + anon_sym_BANG, + ACTIONS(17696), 1, + sym__newline, + STATE(8391), 1, + sym_block, + STATE(12981), 1, + aux_sym_import_declaration_repeat1, + [210565] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(17698), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [210584] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17700), 1, + sym_identifier, + STATE(4126), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210603] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9016), 1, + anon_sym_RBRACE, + ACTIONS(14056), 1, + anon_sym_COMMA, + ACTIONS(14058), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12993), 1, + aux_sym_import_declaration_repeat1, + [210622] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10941), 1, + anon_sym_RBRACE, + ACTIONS(17702), 1, + anon_sym_COMMA, + ACTIONS(17704), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12997), 1, + aux_sym_import_declaration_repeat1, + [210641] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10941), 1, + anon_sym_RBRACE, + ACTIONS(17702), 1, + anon_sym_COMMA, + ACTIONS(17704), 1, + sym__newline, + STATE(11620), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12997), 1, + aux_sym_import_declaration_repeat1, + [210660] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_RBRACK, + ACTIONS(13657), 1, + anon_sym_COMMA, + ACTIONS(17706), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13003), 1, + aux_sym_import_declaration_repeat1, + [210679] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17708), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10569), 1, + sym_block, + [210698] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1851), 1, + anon_sym_RBRACE, + ACTIONS(13983), 1, + anon_sym_COMMA, + ACTIONS(13985), 1, + sym__newline, + STATE(11626), 1, + aux_sym_initializer_list_repeat1, + STATE(13023), 1, + aux_sym_import_declaration_repeat1, + [210717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9028), 1, + anon_sym_RPAREN, + ACTIONS(14011), 1, + anon_sym_COMMA, + ACTIONS(14013), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13030), 1, + aux_sym_import_declaration_repeat1, + [210736] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17710), 1, + sym_identifier, + STATE(4726), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210755] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(17712), 1, + anon_sym_BANG, + ACTIONS(17714), 1, + sym__newline, + STATE(8663), 1, + sym_block, + STATE(13033), 1, + aux_sym_import_declaration_repeat1, + [210774] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17716), 1, + sym_identifier, + STATE(4371), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210793] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17718), 1, + sym_identifier, + STATE(3931), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [210812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9032), 1, + anon_sym_RBRACE, + ACTIONS(17720), 1, + anon_sym_COMMA, + ACTIONS(17722), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13045), 1, + aux_sym_import_declaration_repeat1, + [210831] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10945), 1, + anon_sym_RBRACE, + ACTIONS(17724), 1, + anon_sym_COMMA, + ACTIONS(17726), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13047), 1, + aux_sym_import_declaration_repeat1, + [210850] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17728), 1, + sym_identifier, + ACTIONS(17730), 1, + sym__newline, + STATE(4153), 1, + sym_block, + STATE(11629), 1, + aux_sym_import_declaration_repeat1, + [210869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9038), 1, + anon_sym_RBRACK, + ACTIONS(17732), 1, + anon_sym_COMMA, + ACTIONS(17734), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13052), 1, + aux_sym_import_declaration_repeat1, + [210888] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17736), 1, + sym_identifier, + ACTIONS(17738), 1, + sym__newline, + STATE(10566), 1, + sym_block, + STATE(11630), 1, + aux_sym_import_declaration_repeat1, + [210907] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17740), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10517), 1, + sym_block, + [210926] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, + anon_sym_RBRACE, + ACTIONS(17742), 1, + anon_sym_COMMA, + ACTIONS(17744), 1, + sym__newline, + STATE(11634), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13064), 1, + aux_sym_import_declaration_repeat1, + [210945] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym_RBRACE, + ACTIONS(14015), 1, + anon_sym_COMMA, + ACTIONS(14017), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13075), 1, + aux_sym_import_declaration_repeat1, + [210964] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym_RBRACE, + ACTIONS(14015), 1, + anon_sym_COMMA, + ACTIONS(14017), 1, + sym__newline, + STATE(11636), 1, + aux_sym_initializer_list_repeat1, + STATE(13075), 1, + aux_sym_import_declaration_repeat1, + [210983] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9052), 1, + anon_sym_RPAREN, + ACTIONS(17746), 1, + anon_sym_COMMA, + ACTIONS(17748), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13081), 1, + aux_sym_import_declaration_repeat1, + [211002] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(17750), 1, + sym_identifier, + STATE(4476), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [211021] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17752), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10789), 1, + sym_block, + [211040] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17754), 1, + sym_identifier, + ACTIONS(17756), 1, + sym__newline, + STATE(10790), 1, + sym_block, + STATE(11640), 1, + aux_sym_import_declaration_repeat1, + [211059] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17758), 1, + sym_identifier, + ACTIONS(17760), 1, + sym__newline, + STATE(10502), 1, + sym_block, + STATE(11641), 1, + aux_sym_import_declaration_repeat1, + [211078] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17762), 1, + sym_identifier, + ACTIONS(17764), 1, + sym__newline, + STATE(10509), 1, + sym_block, + STATE(11645), 1, + aux_sym_import_declaration_repeat1, + [211097] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10957), 1, + anon_sym_RBRACE, + ACTIONS(17766), 1, + anon_sym_COMMA, + ACTIONS(17768), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13105), 1, + aux_sym_import_declaration_repeat1, + [211116] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10957), 1, + anon_sym_RBRACE, + ACTIONS(17766), 1, + anon_sym_COMMA, + ACTIONS(17768), 1, + sym__newline, + STATE(11648), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13105), 1, + aux_sym_import_declaration_repeat1, + [211135] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(17770), 1, + anon_sym_COMMA, + ACTIONS(17772), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13110), 1, + aux_sym_import_declaration_repeat1, + [211154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17774), 1, + sym_identifier, + ACTIONS(17776), 1, + sym__newline, + STATE(6787), 1, + sym_block, + STATE(11742), 1, + aux_sym_import_declaration_repeat1, + [211173] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17778), 1, + sym_identifier, + ACTIONS(17780), 1, + sym__newline, + STATE(6831), 1, + sym_block, + STATE(11382), 1, + aux_sym_import_declaration_repeat1, + [211192] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17782), 1, + sym_identifier, + ACTIONS(17784), 1, + sym__newline, + STATE(10717), 1, + sym_block, + STATE(11652), 1, + aux_sym_import_declaration_repeat1, + [211211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17786), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10724), 1, + sym_block, + [211230] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17788), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10729), 1, + sym_block, + [211249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17790), 1, + sym_identifier, + ACTIONS(17792), 1, + sym__newline, + STATE(10734), 1, + sym_block, + STATE(11656), 1, + aux_sym_import_declaration_repeat1, + [211268] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17794), 1, + sym_identifier, + ACTIONS(17796), 1, + sym__newline, + STATE(10754), 1, + sym_block, + STATE(11658), 1, + aux_sym_import_declaration_repeat1, + [211287] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17798), 1, + sym_identifier, + ACTIONS(17800), 1, + sym__newline, + STATE(10760), 1, + sym_block, + STATE(11660), 1, + aux_sym_import_declaration_repeat1, + [211306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17802), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10771), 1, + sym_block, + [211325] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17804), 1, + sym_identifier, + ACTIONS(17806), 1, + sym__newline, + STATE(6667), 1, + sym_block, + STATE(11749), 1, + aux_sym_import_declaration_repeat1, + [211344] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17808), 1, + sym_identifier, + ACTIONS(17810), 1, + sym__newline, + STATE(6649), 1, + sym_block, + STATE(11752), 1, + aux_sym_import_declaration_repeat1, + [211363] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10965), 1, + anon_sym_RBRACE, + ACTIONS(17812), 1, + anon_sym_COMMA, + ACTIONS(17814), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13135), 1, + aux_sym_import_declaration_repeat1, + [211382] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 1, + anon_sym_RBRACE, + ACTIONS(13932), 1, + anon_sym_COMMA, + ACTIONS(13934), 1, + sym__newline, + STATE(11737), 1, + aux_sym_initializer_list_repeat1, + STATE(13180), 1, + aux_sym_import_declaration_repeat1, + [211401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17816), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6722), 1, + sym_block, + [211420] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17818), 1, + sym_identifier, + ACTIONS(17820), 1, + sym__newline, + STATE(6706), 1, + sym_block, + STATE(11759), 1, + aux_sym_import_declaration_repeat1, + [211439] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17822), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10764), 1, + sym_block, + [211458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17824), 1, + sym_identifier, + ACTIONS(17826), 1, + sym__newline, + STATE(10792), 1, + sym_block, + STATE(11666), 1, + aux_sym_import_declaration_repeat1, + [211477] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17828), 1, + sym_identifier, + ACTIONS(17830), 1, + sym__newline, + STATE(10649), 1, + sym_block, + STATE(11668), 1, + aux_sym_import_declaration_repeat1, + [211496] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17832), 1, + sym_identifier, + ACTIONS(17834), 1, + sym__newline, + STATE(10487), 1, + sym_block, + STATE(11670), 1, + aux_sym_import_declaration_repeat1, + [211515] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17836), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10692), 1, + sym_block, + [211534] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17838), 1, + sym_identifier, + ACTIONS(17840), 1, + sym__newline, + STATE(10715), 1, + sym_block, + STATE(11673), 1, + aux_sym_import_declaration_repeat1, + [211553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17842), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10719), 1, + sym_block, + [211572] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17844), 1, + sym_identifier, + ACTIONS(17846), 1, + sym__newline, + STATE(10721), 1, + sym_block, + STATE(11677), 1, + aux_sym_import_declaration_repeat1, + [211591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17848), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10497), 1, + sym_block, + [211610] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17850), 1, + sym_identifier, + ACTIONS(17852), 1, + sym__newline, + STATE(10547), 1, + sym_block, + STATE(11679), 1, + aux_sym_import_declaration_repeat1, + [211629] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17854), 1, + sym_identifier, + ACTIONS(17856), 1, + sym__newline, + STATE(10560), 1, + sym_block, + STATE(11680), 1, + aux_sym_import_declaration_repeat1, + [211648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17858), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6677), 1, + sym_block, + [211667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9320), 1, + anon_sym_RPAREN, + ACTIONS(14001), 1, + anon_sym_COMMA, + ACTIONS(14003), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13213), 1, + aux_sym_import_declaration_repeat1, + [211686] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(17860), 1, + anon_sym_BANG, + ACTIONS(17862), 1, + sym__newline, + STATE(3471), 1, + sym_block, + STATE(13223), 1, + aux_sym_import_declaration_repeat1, + [211705] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17864), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10624), 1, + sym_block, + [211724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17866), 1, + sym_identifier, + ACTIONS(17868), 1, + sym__newline, + STATE(10628), 1, + sym_block, + STATE(11682), 1, + aux_sym_import_declaration_repeat1, + [211743] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17870), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10632), 1, + sym_block, + [211762] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17872), 1, + sym_identifier, + ACTIONS(17874), 1, + sym__newline, + STATE(10660), 1, + sym_block, + STATE(11683), 1, + aux_sym_import_declaration_repeat1, + [211781] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17876), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10668), 1, + sym_block, + [211800] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17878), 1, + sym_identifier, + ACTIONS(17880), 1, + sym__newline, + STATE(10669), 1, + sym_block, + STATE(11685), 1, + aux_sym_import_declaration_repeat1, + [211819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17882), 1, + sym_identifier, + ACTIONS(17884), 1, + sym__newline, + STATE(10697), 1, + sym_block, + STATE(11687), 1, + aux_sym_import_declaration_repeat1, + [211838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17886), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10702), 1, + sym_block, + [211857] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17888), 1, + sym_identifier, + ACTIONS(17890), 1, + sym__newline, + STATE(10711), 1, + sym_block, + STATE(11690), 1, + aux_sym_import_declaration_repeat1, + [211876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17892), 1, + sym_identifier, + ACTIONS(17894), 1, + sym__newline, + STATE(10736), 1, + sym_block, + STATE(11691), 1, + aux_sym_import_declaration_repeat1, + [211895] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17896), 1, + sym_identifier, + ACTIONS(17898), 1, + sym__newline, + STATE(10737), 1, + sym_block, + STATE(11692), 1, + aux_sym_import_declaration_repeat1, + [211914] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17900), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10759), 1, + sym_block, + [211933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17902), 1, + sym_identifier, + ACTIONS(17904), 1, + sym__newline, + STATE(10761), 1, + sym_block, + STATE(11695), 1, + aux_sym_import_declaration_repeat1, + [211952] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17906), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10769), 1, + sym_block, + [211971] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17908), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10802), 1, + sym_block, + [211990] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9324), 1, + anon_sym_RBRACE, + ACTIONS(17910), 1, + anon_sym_COMMA, + ACTIONS(17912), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13361), 1, + aux_sym_import_declaration_repeat1, + [212009] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17914), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10821), 1, + sym_block, + [212028] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17916), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10823), 1, + sym_block, + [212047] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17918), 1, + sym_identifier, + ACTIONS(17920), 1, + sym__newline, + STATE(10825), 1, + sym_block, + STATE(11698), 1, + aux_sym_import_declaration_repeat1, + [212066] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17922), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10473), 1, + sym_block, + [212085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17924), 1, + sym_identifier, + ACTIONS(17926), 1, + sym__newline, + STATE(10507), 1, + sym_block, + STATE(11699), 1, + aux_sym_import_declaration_repeat1, + [212104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17928), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10690), 1, + sym_block, + [212123] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17930), 1, + sym_identifier, + ACTIONS(17932), 1, + sym__newline, + STATE(10515), 1, + sym_block, + STATE(11700), 1, + aux_sym_import_declaration_repeat1, + [212142] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17934), 1, + sym_identifier, + ACTIONS(17936), 1, + sym__newline, + STATE(10638), 1, + sym_block, + STATE(11702), 1, + aux_sym_import_declaration_repeat1, + [212161] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17938), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10490), 1, + sym_block, + [212180] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17940), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10533), 1, + sym_block, + [212199] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17942), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10534), 1, + sym_block, + [212218] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17944), 1, + sym_identifier, + ACTIONS(17946), 1, + sym__newline, + STATE(10589), 1, + sym_block, + STATE(11705), 1, + aux_sym_import_declaration_repeat1, + [212237] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17948), 1, + sym_identifier, + ACTIONS(17950), 1, + sym__newline, + STATE(10602), 1, + sym_block, + STATE(11706), 1, + aux_sym_import_declaration_repeat1, + [212256] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17952), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10610), 1, + sym_block, + [212275] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17954), 1, + sym_identifier, + ACTIONS(17956), 1, + sym__newline, + STATE(10598), 1, + sym_block, + STATE(11707), 1, + aux_sym_import_declaration_repeat1, + [212294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(17958), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6707), 1, + sym_block, + [212313] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17960), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10785), 1, + sym_block, + [212332] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17962), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10614), 1, + sym_block, + [212351] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17964), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10654), 1, + sym_block, + [212370] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17966), 1, + sym_identifier, + ACTIONS(17968), 1, + sym__newline, + STATE(10810), 1, + sym_block, + STATE(11708), 1, + aux_sym_import_declaration_repeat1, + [212389] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17970), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10555), 1, + sym_block, + [212408] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17972), 1, + sym_identifier, + ACTIONS(17974), 1, + sym__newline, + STATE(10803), 1, + sym_block, + STATE(11709), 1, + aux_sym_import_declaration_repeat1, + [212427] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17976), 1, + sym_identifier, + ACTIONS(17978), 1, + sym__newline, + STATE(10765), 1, + sym_block, + STATE(11710), 1, + aux_sym_import_declaration_repeat1, + [212446] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17980), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10511), 1, + sym_block, + [212465] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17982), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10554), 1, + sym_block, + [212484] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17984), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10634), 1, + sym_block, + [212503] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17986), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10809), 1, + sym_block, + [212522] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17988), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10643), 1, + sym_block, + [212541] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17990), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10558), 1, + sym_block, + [212560] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17992), 1, + sym_identifier, + ACTIONS(17994), 1, + sym__newline, + STATE(10791), 1, + sym_block, + STATE(11712), 1, + aux_sym_import_declaration_repeat1, + [212579] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(17996), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10637), 1, + sym_block, + [212598] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11079), 1, + anon_sym_RBRACE, + ACTIONS(17998), 1, + anon_sym_COMMA, + ACTIONS(18000), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13363), 1, + aux_sym_import_declaration_repeat1, + [212617] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9330), 1, + anon_sym_RBRACK, + ACTIONS(18002), 1, + anon_sym_COMMA, + ACTIONS(18004), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13409), 1, + aux_sym_import_declaration_repeat1, + [212636] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(18006), 1, + anon_sym_BANG, + ACTIONS(18008), 1, + sym__newline, + STATE(2554), 1, + sym_block, + STATE(13906), 1, + aux_sym_import_declaration_repeat1, + [212655] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18010), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6795), 1, + sym_block, + [212674] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18012), 1, + sym_identifier, + ACTIONS(18014), 1, + sym__newline, + STATE(6834), 1, + sym_block, + STATE(11389), 1, + aux_sym_import_declaration_repeat1, + [212693] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18016), 1, + sym_identifier, + ACTIONS(18018), 1, + sym__newline, + STATE(6797), 1, + sym_block, + STATE(11459), 1, + aux_sym_import_declaration_repeat1, + [212712] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(18020), 1, + anon_sym_BANG, + ACTIONS(18022), 1, + sym__newline, + STATE(4356), 1, + sym_block, + STATE(12364), 1, + aux_sym_import_declaration_repeat1, + [212731] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18024), 1, + sym_identifier, + ACTIONS(18026), 1, + sym__newline, + STATE(6808), 1, + sym_block, + STATE(11574), 1, + aux_sym_import_declaration_repeat1, + [212750] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18028), 1, + sym_identifier, + ACTIONS(18030), 1, + sym__newline, + STATE(9123), 1, + sym_block, + STATE(11788), 1, + aux_sym_import_declaration_repeat1, + [212769] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18032), 1, + sym_identifier, + ACTIONS(18034), 1, + sym__newline, + STATE(6835), 1, + sym_block, + STATE(11785), 1, + aux_sym_import_declaration_repeat1, + [212788] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18036), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6803), 1, + sym_block, + [212807] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18038), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9125), 1, + sym_block, + [212826] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18040), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6818), 1, + sym_block, + [212845] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18042), 1, + sym_identifier, + ACTIONS(18044), 1, + sym__newline, + STATE(6826), 1, + sym_block, + STATE(11787), 1, + aux_sym_import_declaration_repeat1, + [212864] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18046), 1, + anon_sym_LPAREN, + ACTIONS(18048), 1, + anon_sym_LBRACE, + ACTIONS(18050), 1, + sym__newline, + STATE(10468), 1, + sym_record_body, + STATE(13760), 1, + aux_sym_import_declaration_repeat1, + [212883] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18052), 1, + anon_sym_LPAREN, + ACTIONS(18054), 1, + anon_sym_LBRACE, + ACTIONS(18056), 1, + sym__newline, + STATE(10206), 1, + sym_enum_body, + STATE(13360), 1, + aux_sym_import_declaration_repeat1, + [212902] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(18058), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [212921] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18060), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6729), 1, + sym_block, + [212940] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18062), 1, + sym_identifier, + ACTIONS(18064), 1, + sym__newline, + STATE(6756), 1, + sym_block, + STATE(11791), 1, + aux_sym_import_declaration_repeat1, + [212959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 1, + anon_sym_RBRACE, + ACTIONS(18066), 1, + anon_sym_COMMA, + ACTIONS(18068), 1, + sym__newline, + STATE(11823), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13557), 1, + aux_sym_import_declaration_repeat1, + [212978] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(18070), 1, + anon_sym_RBRACE, + ACTIONS(18072), 1, + sym__newline, + STATE(11743), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [212997] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18074), 1, + anon_sym_COMMA, + ACTIONS(18076), 1, + anon_sym_RBRACE, + ACTIONS(18078), 1, + sym__newline, + STATE(11746), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13380), 1, + aux_sym_import_declaration_repeat1, + [213016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18080), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6622), 1, + sym_block, + [213035] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18082), 1, + sym_identifier, + ACTIONS(18084), 1, + sym__newline, + STATE(6700), 1, + sym_block, + STATE(11793), 1, + aux_sym_import_declaration_repeat1, + [213054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_RBRACE, + ACTIONS(14112), 1, + anon_sym_COMMA, + ACTIONS(14114), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13584), 1, + aux_sym_import_declaration_repeat1, + [213073] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_RBRACE, + ACTIONS(14112), 1, + anon_sym_COMMA, + ACTIONS(14114), 1, + sym__newline, + STATE(11872), 1, + aux_sym_initializer_list_repeat1, + STATE(13584), 1, + aux_sym_import_declaration_repeat1, + [213092] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18086), 1, + sym_identifier, + ACTIONS(18088), 1, + sym__newline, + STATE(6610), 1, + sym_block, + STATE(11806), 1, + aux_sym_import_declaration_repeat1, + [213111] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8820), 1, + anon_sym_RBRACE, + ACTIONS(14104), 1, + anon_sym_COMMA, + ACTIONS(14106), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12512), 1, + aux_sym_import_declaration_repeat1, + [213130] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18090), 1, + anon_sym_BANG, + ACTIONS(18092), 1, + sym__newline, + STATE(7525), 1, + sym_block, + STATE(13398), 1, + aux_sym_import_declaration_repeat1, + [213149] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18094), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6627), 1, + sym_block, + [213168] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(18096), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [213187] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_RPAREN, + ACTIONS(18098), 1, + anon_sym_COMMA, + ACTIONS(18100), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13604), 1, + aux_sym_import_declaration_repeat1, + [213206] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9114), 1, + anon_sym_RBRACE, + ACTIONS(14137), 1, + anon_sym_COMMA, + ACTIONS(14139), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13404), 1, + aux_sym_import_declaration_repeat1, + [213225] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10985), 1, + anon_sym_RBRACE, + ACTIONS(18102), 1, + anon_sym_COMMA, + ACTIONS(18104), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13408), 1, + aux_sym_import_declaration_repeat1, + [213244] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10985), 1, + anon_sym_RBRACE, + ACTIONS(18102), 1, + anon_sym_COMMA, + ACTIONS(18104), 1, + sym__newline, + STATE(11762), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13408), 1, + aux_sym_import_declaration_repeat1, + [213263] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9118), 1, + anon_sym_RBRACK, + ACTIONS(13583), 1, + anon_sym_COMMA, + ACTIONS(18106), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13413), 1, + aux_sym_import_declaration_repeat1, + [213282] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18108), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6721), 1, + sym_block, + [213301] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18110), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8578), 1, + sym_block, + [213320] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18112), 1, + sym_identifier, + ACTIONS(18115), 1, + anon_sym_RBRACE, + ACTIONS(18117), 1, + sym__newline, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [213339] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18120), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6670), 1, + sym_block, + [213358] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18122), 1, + sym_identifier, + ACTIONS(18124), 1, + sym__newline, + STATE(6691), 1, + sym_block, + STATE(11839), 1, + aux_sym_import_declaration_repeat1, + [213377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_RBRACE, + ACTIONS(14025), 1, + anon_sym_COMMA, + ACTIONS(14027), 1, + sym__newline, + STATE(11771), 1, + aux_sym_initializer_list_repeat1, + STATE(13426), 1, + aux_sym_import_declaration_repeat1, + [213396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9126), 1, + anon_sym_RPAREN, + ACTIONS(13860), 1, + anon_sym_COMMA, + ACTIONS(13862), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13432), 1, + aux_sym_import_declaration_repeat1, + [213415] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18126), 1, + sym_identifier, + ACTIONS(18128), 1, + sym__newline, + STATE(6857), 1, + sym_block, + STATE(11874), 1, + aux_sym_import_declaration_repeat1, + [213434] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18130), 1, + anon_sym_BANG, + ACTIONS(18132), 1, + sym__newline, + STATE(7367), 1, + sym_block, + STATE(13435), 1, + aux_sym_import_declaration_repeat1, + [213453] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11163), 1, + anon_sym_RBRACE, + ACTIONS(18134), 1, + anon_sym_COMMA, + ACTIONS(18136), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13775), 1, + aux_sym_import_declaration_repeat1, + [213472] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18138), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6866), 1, + sym_block, + [213491] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(18140), 1, + anon_sym_BANG, + ACTIONS(18142), 1, + sym__newline, + STATE(4556), 1, + sym_block, + STATE(13325), 1, + aux_sym_import_declaration_repeat1, + [213510] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9130), 1, + anon_sym_RBRACE, + ACTIONS(18144), 1, + anon_sym_COMMA, + ACTIONS(18146), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13442), 1, + aux_sym_import_declaration_repeat1, + [213529] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10989), 1, + anon_sym_RBRACE, + ACTIONS(18148), 1, + anon_sym_COMMA, + ACTIONS(18150), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13444), 1, + aux_sym_import_declaration_repeat1, + [213548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11163), 1, + anon_sym_RBRACE, + ACTIONS(18134), 1, + anon_sym_COMMA, + ACTIONS(18136), 1, + sym__newline, + STATE(11901), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13775), 1, + aux_sym_import_declaration_repeat1, + [213567] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9136), 1, + anon_sym_RBRACK, + ACTIONS(18152), 1, + anon_sym_COMMA, + ACTIONS(18154), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13448), 1, + aux_sym_import_declaration_repeat1, + [213586] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18156), 1, + sym_identifier, + ACTIONS(18158), 1, + sym__newline, + STATE(8722), 1, + sym_block, + STATE(11778), 1, + aux_sym_import_declaration_repeat1, + [213605] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18160), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8378), 1, + sym_block, + [213624] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18162), 1, + sym_identifier, + ACTIONS(18164), 1, + sym__newline, + STATE(6837), 1, + sym_block, + STATE(11882), 1, + aux_sym_import_declaration_repeat1, + [213643] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_RBRACE, + ACTIONS(18166), 1, + anon_sym_COMMA, + ACTIONS(18168), 1, + sym__newline, + STATE(11784), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13458), 1, + aux_sym_import_declaration_repeat1, + [213662] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18170), 1, + anon_sym_COMMA, + ACTIONS(18172), 1, + anon_sym_RBRACE, + ACTIONS(18174), 1, + sym__newline, + STATE(11958), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13908), 1, + aux_sym_import_declaration_repeat1, + [213681] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18176), 1, + anon_sym_LPAREN, + ACTIONS(18178), 1, + anon_sym_LBRACE, + ACTIONS(18180), 1, + sym__newline, + STATE(10842), 1, + sym_record_body, + STATE(13077), 1, + aux_sym_import_declaration_repeat1, + [213700] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_RBRACE, + ACTIONS(13924), 1, + anon_sym_COMMA, + ACTIONS(13926), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13468), 1, + aux_sym_import_declaration_repeat1, + [213719] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10839), 1, + anon_sym_RBRACE, + ACTIONS(18182), 1, + anon_sym_COMMA, + ACTIONS(18184), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12528), 1, + aux_sym_import_declaration_repeat1, + [213738] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_RBRACE, + ACTIONS(13924), 1, + anon_sym_COMMA, + ACTIONS(13926), 1, + sym__newline, + STATE(11790), 1, + aux_sym_initializer_list_repeat1, + STATE(13468), 1, + aux_sym_import_declaration_repeat1, + [213757] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18186), 1, + anon_sym_LPAREN, + ACTIONS(18188), 1, + anon_sym_LBRACE, + ACTIONS(18190), 1, + sym__newline, + STATE(10844), 1, + sym_enum_body, + STATE(12582), 1, + aux_sym_import_declaration_repeat1, + [213776] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9150), 1, + anon_sym_RPAREN, + ACTIONS(18192), 1, + anon_sym_COMMA, + ACTIONS(18194), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13471), 1, + aux_sym_import_declaration_repeat1, + [213795] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10839), 1, + anon_sym_RBRACE, + ACTIONS(18182), 1, + anon_sym_COMMA, + ACTIONS(18184), 1, + sym__newline, + STATE(11054), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12528), 1, + aux_sym_import_declaration_repeat1, + [213814] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18196), 1, + sym_identifier, + ACTIONS(18198), 1, + sym__newline, + STATE(6845), 1, + sym_block, + STATE(11391), 1, + aux_sym_import_declaration_repeat1, + [213833] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18200), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8507), 1, + sym_block, + [213852] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18202), 1, + sym_identifier, + ACTIONS(18204), 1, + sym__newline, + STATE(8508), 1, + sym_block, + STATE(11795), 1, + aux_sym_import_declaration_repeat1, + [213871] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18206), 1, + sym_identifier, + ACTIONS(18208), 1, + sym__newline, + STATE(8556), 1, + sym_block, + STATE(11796), 1, + aux_sym_import_declaration_repeat1, + [213890] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18210), 1, + sym_identifier, + ACTIONS(18212), 1, + sym__newline, + STATE(8560), 1, + sym_block, + STATE(11800), 1, + aux_sym_import_declaration_repeat1, + [213909] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8824), 1, + anon_sym_RBRACK, + ACTIONS(13495), 1, + anon_sym_COMMA, + ACTIONS(18214), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12541), 1, + aux_sym_import_declaration_repeat1, + [213928] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18216), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7327), 1, + sym_block, + [213947] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11001), 1, + anon_sym_RBRACE, + ACTIONS(18218), 1, + anon_sym_COMMA, + ACTIONS(18220), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13495), 1, + aux_sym_import_declaration_repeat1, + [213966] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18222), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6850), 1, + sym_block, + [213985] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11001), 1, + anon_sym_RBRACE, + ACTIONS(18218), 1, + anon_sym_COMMA, + ACTIONS(18220), 1, + sym__newline, + STATE(11804), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13495), 1, + aux_sym_import_declaration_repeat1, + [214004] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18224), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6637), 1, + sym_block, + [214023] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18226), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9137), 1, + sym_block, + [214042] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18228), 1, + sym_identifier, + ACTIONS(18230), 1, + sym__newline, + STATE(9138), 1, + sym_block, + STATE(11880), 1, + aux_sym_import_declaration_repeat1, + [214061] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1917), 1, + anon_sym_RBRACE, + ACTIONS(18232), 1, + anon_sym_COMMA, + ACTIONS(18234), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13502), 1, + aux_sym_import_declaration_repeat1, + [214080] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18236), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6742), 1, + sym_block, + [214099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15011), 1, + anon_sym_RBRACE, + ACTIONS(18238), 1, + anon_sym_COMMA, + ACTIONS(18241), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(14112), 1, + aux_sym_import_declaration_repeat1, + [214118] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18244), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6751), 1, + sym_block, + [214137] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18246), 1, + sym_identifier, + ACTIONS(18248), 1, + sym__newline, + STATE(8627), 1, + sym_block, + STATE(11809), 1, + aux_sym_import_declaration_repeat1, + [214156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18250), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8672), 1, + sym_block, + [214175] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18252), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8713), 1, + sym_block, + [214194] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18254), 1, + sym_identifier, + ACTIONS(18256), 1, + sym__newline, + STATE(8726), 1, + sym_block, + STATE(11813), 1, + aux_sym_import_declaration_repeat1, + [214213] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18258), 1, + sym_identifier, + ACTIONS(18260), 1, + sym__newline, + STATE(8563), 1, + sym_block, + STATE(11815), 1, + aux_sym_import_declaration_repeat1, + [214232] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18262), 1, + sym_identifier, + ACTIONS(18264), 1, + sym__newline, + STATE(8650), 1, + sym_block, + STATE(11817), 1, + aux_sym_import_declaration_repeat1, + [214251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18266), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8646), 1, + sym_block, + [214270] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18268), 1, + sym_identifier, + ACTIONS(18270), 1, + sym__newline, + STATE(6856), 1, + sym_block, + STATE(11903), 1, + aux_sym_import_declaration_repeat1, + [214289] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18272), 1, + sym_identifier, + ACTIONS(18274), 1, + sym__newline, + STATE(9141), 1, + sym_block, + STATE(11881), 1, + aux_sym_import_declaration_repeat1, + [214308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18278), 1, + anon_sym_EQ, + ACTIONS(18276), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [214321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11009), 1, + anon_sym_RBRACE, + ACTIONS(18280), 1, + anon_sym_COMMA, + ACTIONS(18282), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13528), 1, + aux_sym_import_declaration_repeat1, + [214340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2135), 1, + anon_sym_RBRACE, + ACTIONS(18284), 1, + anon_sym_COMMA, + ACTIONS(18286), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(12622), 1, + aux_sym_import_declaration_repeat1, + [214359] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18288), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6648), 1, + sym_block, + [214378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18290), 1, + sym_identifier, + ACTIONS(18292), 1, + sym__newline, + STATE(9143), 1, + sym_block, + STATE(11890), 1, + aux_sym_import_declaration_repeat1, + [214397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + anon_sym_LBRACE, + ACTIONS(4394), 1, + sym_identifier, + ACTIONS(18294), 1, + anon_sym_else, + ACTIONS(18296), 1, + sym__newline, + STATE(14163), 1, + aux_sym_import_declaration_repeat1, + [214416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18299), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8607), 1, + sym_block, + [214435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18301), 1, + sym_identifier, + ACTIONS(18303), 1, + sym__newline, + STATE(8623), 1, + sym_block, + STATE(11824), 1, + aux_sym_import_declaration_repeat1, + [214454] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18305), 1, + sym_identifier, + ACTIONS(18307), 1, + sym__newline, + STATE(8680), 1, + sym_block, + STATE(11826), 1, + aux_sym_import_declaration_repeat1, + [214473] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18309), 1, + sym_identifier, + ACTIONS(18311), 1, + sym__newline, + STATE(8376), 1, + sym_block, + STATE(11828), 1, + aux_sym_import_declaration_repeat1, + [214492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18313), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8583), 1, + sym_block, + [214511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18315), 1, + sym_identifier, + ACTIONS(18317), 1, + sym__newline, + STATE(8633), 1, + sym_block, + STATE(11831), 1, + aux_sym_import_declaration_repeat1, + [214530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18319), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8636), 1, + sym_block, + [214549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18321), 1, + sym_identifier, + ACTIONS(18323), 1, + sym__newline, + STATE(8702), 1, + sym_block, + STATE(11835), 1, + aux_sym_import_declaration_repeat1, + [214568] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18325), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8703), 1, + sym_block, + [214587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18327), 1, + sym_identifier, + ACTIONS(18329), 1, + sym__newline, + STATE(8705), 1, + sym_block, + STATE(11837), 1, + aux_sym_import_declaration_repeat1, + [214606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18331), 1, + sym_identifier, + ACTIONS(18333), 1, + sym__newline, + STATE(8711), 1, + sym_block, + STATE(11838), 1, + aux_sym_import_declaration_repeat1, + [214625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18335), 1, + sym_identifier, + ACTIONS(18337), 1, + sym__newline, + STATE(6616), 1, + sym_block, + STATE(11919), 1, + aux_sym_import_declaration_repeat1, + [214644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18339), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9498), 1, + sym_block, + [214663] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18341), 1, + sym_identifier, + ACTIONS(18343), 1, + sym__newline, + STATE(6836), 1, + sym_block, + STATE(11923), 1, + aux_sym_import_declaration_repeat1, + [214682] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11091), 1, + anon_sym_RBRACE, + ACTIONS(18345), 1, + anon_sym_COMMA, + ACTIONS(18347), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13778), 1, + aux_sym_import_declaration_repeat1, + [214701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18349), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8614), 1, + sym_block, + [214720] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18351), 1, + sym_identifier, + ACTIONS(18353), 1, + sym__newline, + STATE(8699), 1, + sym_block, + STATE(11840), 1, + aux_sym_import_declaration_repeat1, + [214739] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18355), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8375), 1, + sym_block, + [214758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18357), 1, + sym_identifier, + ACTIONS(18359), 1, + sym__newline, + STATE(8383), 1, + sym_block, + STATE(11841), 1, + aux_sym_import_declaration_repeat1, + [214777] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18361), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8482), 1, + sym_block, + [214796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18363), 1, + sym_identifier, + ACTIONS(18365), 1, + sym__newline, + STATE(8483), 1, + sym_block, + STATE(11843), 1, + aux_sym_import_declaration_repeat1, + [214815] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18367), 1, + sym_identifier, + ACTIONS(18369), 1, + sym__newline, + STATE(8503), 1, + sym_block, + STATE(11845), 1, + aux_sym_import_declaration_repeat1, + [214834] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18371), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8512), 1, + sym_block, + [214853] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18373), 1, + sym_identifier, + ACTIONS(18375), 1, + sym__newline, + STATE(8568), 1, + sym_block, + STATE(11848), 1, + aux_sym_import_declaration_repeat1, + [214872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18377), 1, + sym_identifier, + ACTIONS(18379), 1, + sym__newline, + STATE(8586), 1, + sym_block, + STATE(11849), 1, + aux_sym_import_declaration_repeat1, + [214891] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18381), 1, + sym_identifier, + ACTIONS(18383), 1, + sym__newline, + STATE(8589), 1, + sym_block, + STATE(11850), 1, + aux_sym_import_declaration_repeat1, + [214910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18385), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8590), 1, + sym_block, + [214929] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18387), 1, + sym_identifier, + ACTIONS(18389), 1, + sym__newline, + STATE(8593), 1, + sym_block, + STATE(11853), 1, + aux_sym_import_declaration_repeat1, + [214948] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18391), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8598), 1, + sym_block, + [214967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18393), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8604), 1, + sym_block, + [214986] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18395), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6858), 1, + sym_block, + [215005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18397), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8628), 1, + sym_block, + [215024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18399), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8635), 1, + sym_block, + [215043] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18401), 1, + sym_identifier, + ACTIONS(18403), 1, + sym__newline, + STATE(8648), 1, + sym_block, + STATE(11855), 1, + aux_sym_import_declaration_repeat1, + [215062] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18405), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8670), 1, + sym_block, + [215081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18407), 1, + sym_identifier, + ACTIONS(18409), 1, + sym__newline, + STATE(8698), 1, + sym_block, + STATE(11856), 1, + aux_sym_import_declaration_repeat1, + [215100] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18411), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8704), 1, + sym_block, + [215119] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18413), 1, + sym_identifier, + ACTIONS(18415), 1, + sym__newline, + STATE(8708), 1, + sym_block, + STATE(11857), 1, + aux_sym_import_declaration_repeat1, + [215138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18417), 1, + sym_identifier, + ACTIONS(18419), 1, + sym__newline, + STATE(8733), 1, + sym_block, + STATE(11859), 1, + aux_sym_import_declaration_repeat1, + [215157] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18421), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8372), 1, + sym_block, + [215176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18423), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8385), 1, + sym_block, + [215195] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18425), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8386), 1, + sym_block, + [215214] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18427), 1, + sym_identifier, + ACTIONS(18429), 1, + sym__newline, + STATE(8387), 1, + sym_block, + STATE(11862), 1, + aux_sym_import_declaration_repeat1, + [215233] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18431), 1, + sym_identifier, + ACTIONS(18433), 1, + sym__newline, + STATE(8389), 1, + sym_block, + STATE(11863), 1, + aux_sym_import_declaration_repeat1, + [215252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18435), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8390), 1, + sym_block, + [215271] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18437), 1, + sym_identifier, + ACTIONS(18439), 1, + sym__newline, + STATE(8401), 1, + sym_block, + STATE(11864), 1, + aux_sym_import_declaration_repeat1, + [215290] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18441), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8413), 1, + sym_block, + [215309] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18443), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8418), 1, + sym_block, + [215328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18445), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8421), 1, + sym_block, + [215347] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18447), 1, + sym_identifier, + ACTIONS(18449), 1, + sym__newline, + STATE(8422), 1, + sym_block, + STATE(11865), 1, + aux_sym_import_declaration_repeat1, + [215366] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18451), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8424), 1, + sym_block, + [215385] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18453), 1, + sym_identifier, + ACTIONS(18455), 1, + sym__newline, + STATE(8429), 1, + sym_block, + STATE(11866), 1, + aux_sym_import_declaration_repeat1, + [215404] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18457), 1, + sym_identifier, + ACTIONS(18459), 1, + sym__newline, + STATE(8431), 1, + sym_block, + STATE(11867), 1, + aux_sym_import_declaration_repeat1, + [215423] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18461), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8433), 1, + sym_block, + [215442] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18463), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8437), 1, + sym_block, + [215461] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18465), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8442), 1, + sym_block, + [215480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18467), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8464), 1, + sym_block, + [215499] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18469), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8469), 1, + sym_block, + [215518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18471), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8472), 1, + sym_block, + [215537] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18473), 1, + sym_identifier, + ACTIONS(18475), 1, + sym__newline, + STATE(8493), 1, + sym_block, + STATE(11869), 1, + aux_sym_import_declaration_repeat1, + [215556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(18477), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8536), 1, + sym_block, + [215575] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11091), 1, + anon_sym_RBRACE, + ACTIONS(18345), 1, + anon_sym_COMMA, + ACTIONS(18347), 1, + sym__newline, + STATE(11896), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13778), 1, + aux_sym_import_declaration_repeat1, + [215594] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18479), 1, + sym_identifier, + ACTIONS(18481), 1, + sym__newline, + STATE(7329), 1, + sym_block, + STATE(11081), 1, + aux_sym_import_declaration_repeat1, + [215613] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + anon_sym_RBRACE, + ACTIONS(18483), 1, + anon_sym_COMMA, + ACTIONS(18485), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13806), 1, + aux_sym_import_declaration_repeat1, + [215632] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18487), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6860), 1, + sym_block, + [215651] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18489), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6620), 1, + sym_block, + [215670] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18491), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7330), 1, + sym_block, + [215689] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18493), 1, + sym_identifier, + ACTIONS(18495), 1, + sym__newline, + STATE(7331), 1, + sym_block, + STATE(11089), 1, + aux_sym_import_declaration_repeat1, + [215708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18497), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7332), 1, + sym_block, + [215727] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18499), 1, + sym_identifier, + ACTIONS(18501), 1, + sym__newline, + STATE(7333), 1, + sym_block, + STATE(11096), 1, + aux_sym_import_declaration_repeat1, + [215746] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18503), 1, + sym_identifier, + ACTIONS(18505), 1, + sym__newline, + STATE(9152), 1, + sym_block, + STATE(11902), 1, + aux_sym_import_declaration_repeat1, + [215765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18507), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9154), 1, + sym_block, + [215784] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18509), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9156), 1, + sym_block, + [215803] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18511), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6867), 1, + sym_block, + [215822] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18513), 1, + sym_identifier, + ACTIONS(18515), 1, + sym__newline, + STATE(9157), 1, + sym_block, + STATE(11931), 1, + aux_sym_import_declaration_repeat1, + [215841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18517), 1, + sym_identifier, + ACTIONS(18519), 1, + sym__newline, + STATE(9160), 1, + sym_block, + STATE(11936), 1, + aux_sym_import_declaration_repeat1, + [215860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(18521), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [215879] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18523), 1, + sym_identifier, + ACTIONS(18525), 1, + sym__newline, + STATE(9161), 1, + sym_block, + STATE(11939), 1, + aux_sym_import_declaration_repeat1, + [215898] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18527), 1, + anon_sym_COMMA, + ACTIONS(18530), 1, + anon_sym_RBRACE, + ACTIONS(18532), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(14239), 1, + aux_sym_import_declaration_repeat1, + [215917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18535), 1, + anon_sym_LPAREN, + ACTIONS(18537), 1, + anon_sym_LBRACE, + ACTIONS(18539), 1, + sym__newline, + STATE(8343), 1, + sym_record_body, + STATE(12873), 1, + aux_sym_import_declaration_repeat1, + [215936] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18541), 1, + anon_sym_LPAREN, + ACTIONS(18543), 1, + anon_sym_LBRACE, + ACTIONS(18545), 1, + sym__newline, + STATE(8345), 1, + sym_enum_body, + STATE(13763), 1, + aux_sym_import_declaration_repeat1, + [215955] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18547), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9162), 1, + sym_block, + [215974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9620), 1, + anon_sym_RBRACE, + ACTIONS(18549), 1, + anon_sym_COMMA, + ACTIONS(18551), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12471), 1, + aux_sym_import_declaration_repeat1, + [215993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11041), 1, + anon_sym_RBRACE, + ACTIONS(18553), 1, + anon_sym_COMMA, + ACTIONS(18555), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12472), 1, + aux_sym_import_declaration_repeat1, + [216012] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(18557), 1, + anon_sym_RBRACE, + ACTIONS(18559), 1, + sym__newline, + STATE(11907), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [216031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18561), 1, + sym_identifier, + ACTIONS(18563), 1, + sym__newline, + STATE(7335), 1, + sym_block, + STATE(11099), 1, + aux_sym_import_declaration_repeat1, + [216050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18565), 1, + anon_sym_COMMA, + ACTIONS(18567), 1, + anon_sym_RBRACE, + ACTIONS(18569), 1, + sym__newline, + STATE(11909), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13784), 1, + aux_sym_import_declaration_repeat1, + [216069] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11099), 1, + anon_sym_RBRACE, + ACTIONS(18571), 1, + anon_sym_COMMA, + ACTIONS(18573), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13926), 1, + aux_sym_import_declaration_repeat1, + [216088] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2141), 1, + anon_sym_RBRACE, + ACTIONS(13838), 1, + anon_sym_COMMA, + ACTIONS(13840), 1, + sym__newline, + STATE(11092), 1, + aux_sym_initializer_list_repeat1, + STATE(12653), 1, + aux_sym_import_declaration_repeat1, + [216107] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18575), 1, + anon_sym_LPAREN, + ACTIONS(18577), 1, + anon_sym_LBRACE, + ACTIONS(18579), 1, + sym__newline, + STATE(8242), 1, + sym_record_body, + STATE(12876), 1, + aux_sym_import_declaration_repeat1, + [216126] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18581), 1, + anon_sym_LPAREN, + ACTIONS(18583), 1, + anon_sym_LBRACE, + ACTIONS(18585), 1, + sym__newline, + STATE(8243), 1, + sym_enum_body, + STATE(12571), 1, + aux_sym_import_declaration_repeat1, + [216145] = 6, + ACTIONS(3), 1, + sym_comment, ACTIONS(8832), 1, + anon_sym_RPAREN, + ACTIONS(14133), 1, + anon_sym_COMMA, + ACTIONS(14135), 1, sym__newline, - STATE(1955), 1, - sym_block, - STATE(4490), 1, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12694), 1, aux_sym_import_declaration_repeat1, - [98763] = 5, + [216164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(11175), 1, + anon_sym_RBRACE, + ACTIONS(18587), 1, + anon_sym_COMMA, + ACTIONS(18589), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(12415), 1, + aux_sym_import_declaration_repeat1, + [216183] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, anon_sym_LBRACE, - ACTIONS(8834), 1, - sym__newline, - STATE(1930), 1, - sym_block, - STATE(4676), 1, + ACTIONS(18591), 1, + sym_identifier, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [98779] = 5, + STATE(9170), 1, + sym_block, + [216202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3483), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18593), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6841), 1, + sym_block, + [216221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18595), 1, + sym_identifier, + ACTIONS(18597), 1, + sym__newline, + STATE(9171), 1, + sym_block, + STATE(11945), 1, + aux_sym_import_declaration_repeat1, + [216240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18599), 1, + anon_sym_BANG, + ACTIONS(18601), 1, + sym__newline, + STATE(9089), 1, + sym_block, + STATE(13808), 1, + aux_sym_import_declaration_repeat1, + [216259] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + anon_sym_LBRACE, + ACTIONS(4394), 1, + sym_identifier, + ACTIONS(18603), 1, + anon_sym_else, + ACTIONS(18606), 1, + sym__newline, + STATE(14596), 1, + aux_sym_import_declaration_repeat1, + [216278] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16029), 1, + sym_identifier, + ACTIONS(16085), 1, + sym__newline, + ACTIONS(18609), 1, + anon_sym_RBRACE, + STATE(11751), 1, + aux_sym_enum_body_repeat1, + STATE(13733), 1, + sym_enum_member, + [216297] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9208), 1, + anon_sym_RBRACE, + ACTIONS(14116), 1, + anon_sym_COMMA, + ACTIONS(14118), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13815), 1, + aux_sym_import_declaration_repeat1, + [216316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11029), 1, + anon_sym_RBRACE, + ACTIONS(18611), 1, + anon_sym_COMMA, + ACTIONS(18613), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13818), 1, + aux_sym_import_declaration_repeat1, + [216335] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11029), 1, + anon_sym_RBRACE, + ACTIONS(18611), 1, + anon_sym_COMMA, + ACTIONS(18613), 1, + sym__newline, + STATE(11925), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13818), 1, + aux_sym_import_declaration_repeat1, + [216354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_LBRACE, + ACTIONS(4406), 1, + sym_identifier, + ACTIONS(18615), 1, + anon_sym_else, + ACTIONS(18618), 1, + sym__newline, + STATE(14597), 1, + aux_sym_import_declaration_repeat1, + [216373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9212), 1, anon_sym_RBRACK, - ACTIONS(8836), 1, + ACTIONS(13731), 1, anon_sym_COMMA, - STATE(1537), 1, + ACTIONS(18621), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13824), 1, aux_sym_import_declaration_repeat1, - [98795] = 5, + [216392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3213), 1, - anon_sym_RBRACE, - ACTIONS(8838), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5368), 1, - anon_sym_RBRACE, - ACTIONS(8840), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98827] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - STATE(1537), 1, + ACTIONS(18623), 1, + sym_identifier, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(1985), 1, + STATE(7239), 1, sym_block, - [98843] = 5, + [216411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(4426), 1, + anon_sym_LBRACE, + ACTIONS(4428), 1, + sym_identifier, + ACTIONS(18625), 1, + anon_sym_else, + ACTIONS(18628), 1, sym__newline, - ACTIONS(3219), 1, + STATE(14598), 1, + aux_sym_import_declaration_repeat1, + [216430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + anon_sym_LBRACE, + ACTIONS(4446), 1, + sym_identifier, + ACTIONS(18631), 1, + anon_sym_else, + ACTIONS(18634), 1, + sym__newline, + STATE(14599), 1, + aux_sym_import_declaration_repeat1, + [216449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1953), 1, + anon_sym_RBRACE, + ACTIONS(13916), 1, + anon_sym_COMMA, + ACTIONS(13918), 1, + sym__newline, + STATE(11935), 1, + aux_sym_initializer_list_repeat1, + STATE(13844), 1, + aux_sym_import_declaration_repeat1, + [216468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_LBRACE, + ACTIONS(4458), 1, + sym_identifier, + ACTIONS(18637), 1, + anon_sym_else, + ACTIONS(18640), 1, + sym__newline, + STATE(14600), 1, + aux_sym_import_declaration_repeat1, + [216487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9220), 1, + anon_sym_RPAREN, + ACTIONS(14005), 1, + anon_sym_COMMA, + ACTIONS(14007), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13851), 1, + aux_sym_import_declaration_repeat1, + [216506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18643), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6689), 1, + sym_block, + [216525] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18645), 1, + anon_sym_BANG, + ACTIONS(18647), 1, + sym__newline, + STATE(9113), 1, + sym_block, + STATE(13854), 1, + aux_sym_import_declaration_repeat1, + [216544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9634), 1, anon_sym_RBRACK, - ACTIONS(8842), 1, + ACTIONS(18649), 1, anon_sym_COMMA, - STATE(1537), 1, + ACTIONS(18651), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(12486), 1, aux_sym_import_declaration_repeat1, - [98859] = 5, + [216563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18653), 1, + sym_identifier, + ACTIONS(18655), 1, sym__newline, - ACTIONS(5376), 1, + STATE(9174), 1, + sym_block, + STATE(11951), 1, + aux_sym_import_declaration_repeat1, + [216582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18657), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6613), 1, + sym_block, + [216601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9224), 1, anon_sym_RBRACE, - ACTIONS(8844), 1, + ACTIONS(18659), 1, anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98875] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8846), 1, + ACTIONS(18661), 1, sym__newline, - STATE(1986), 1, - sym_block, - STATE(4680), 1, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13865), 1, aux_sym_import_declaration_repeat1, - [98891] = 5, + [216620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(10813), 1, + anon_sym_RBRACE, + ACTIONS(18663), 1, + anon_sym_COMMA, + ACTIONS(18665), 1, sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13867), 1, aux_sym_import_declaration_repeat1, - STATE(3911), 1, - sym_block, - [98907] = 5, + [216639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(8848), 1, + ACTIONS(4476), 1, + sym_identifier, + ACTIONS(18667), 1, + anon_sym_else, + ACTIONS(18670), 1, + sym__newline, + STATE(14601), 1, + aux_sym_import_declaration_repeat1, + [216658] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_RBRACK, + ACTIONS(18673), 1, + anon_sym_COMMA, + ACTIONS(18675), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13874), 1, + aux_sym_import_declaration_repeat1, + [216677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18677), 1, + sym_identifier, + ACTIONS(18679), 1, + sym__newline, + STATE(7269), 1, + sym_block, + STATE(11946), 1, + aux_sym_import_declaration_repeat1, + [216696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18681), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7271), 1, + sym_block, + [216715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18683), 1, + sym_identifier, + ACTIONS(18685), 1, + sym__newline, + STATE(9176), 1, + sym_block, + STATE(11957), 1, + aux_sym_import_declaration_repeat1, + [216734] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18687), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9178), 1, + sym_block, + [216753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18689), 1, + sym_identifier, + ACTIONS(18691), 1, + sym__newline, + STATE(9180), 1, + sym_block, + STATE(11961), 1, + aux_sym_import_declaration_repeat1, + [216772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + anon_sym_RBRACE, + ACTIONS(18693), 1, + anon_sym_COMMA, + ACTIONS(18695), 1, + sym__newline, + STATE(11952), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13898), 1, + aux_sym_import_declaration_repeat1, + [216791] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18697), 1, + sym_identifier, + ACTIONS(18699), 1, + sym__newline, + STATE(6770), 1, + sym_block, + STATE(11400), 1, + aux_sym_import_declaration_repeat1, + [216810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1957), 1, + anon_sym_RBRACE, + ACTIONS(14096), 1, + anon_sym_COMMA, + ACTIONS(14098), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(13911), 1, + aux_sym_import_declaration_repeat1, + [216829] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18701), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9181), 1, + sym_block, + [216848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1957), 1, + anon_sym_RBRACE, + ACTIONS(14096), 1, + anon_sym_COMMA, + ACTIONS(14098), 1, + sym__newline, + STATE(11956), 1, + aux_sym_initializer_list_repeat1, + STATE(13911), 1, + aux_sym_import_declaration_repeat1, + [216867] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18703), 1, + sym_identifier, + ACTIONS(18705), 1, + sym__newline, + STATE(9182), 1, + sym_block, + STATE(11015), 1, + aux_sym_import_declaration_repeat1, + [216886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18707), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9183), 1, + sym_block, + [216905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18709), 1, + sym_identifier, + ACTIONS(18711), 1, + sym__newline, + STATE(9184), 1, + sym_block, + STATE(11017), 1, + aux_sym_import_declaration_repeat1, + [216924] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9244), 1, + anon_sym_RPAREN, + ACTIONS(18713), 1, + anon_sym_COMMA, + ACTIONS(18715), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13916), 1, + aux_sym_import_declaration_repeat1, + [216943] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18717), 1, + sym_identifier, + ACTIONS(18719), 1, + sym__newline, + STATE(9186), 1, + sym_block, + STATE(11018), 1, + aux_sym_import_declaration_repeat1, + [216962] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(18721), 1, + anon_sym_BANG, + ACTIONS(18723), 1, + sym__newline, + STATE(2645), 1, + sym_block, + STATE(12699), 1, + aux_sym_import_declaration_repeat1, + [216981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18725), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7310), 1, + sym_block, + [217000] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18727), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9192), 1, + sym_block, + [217019] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18729), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7286), 1, + sym_block, + [217038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18731), 1, + sym_identifier, + ACTIONS(18733), 1, + sym__newline, + STATE(7287), 1, + sym_block, + STATE(11963), 1, + aux_sym_import_declaration_repeat1, + [217057] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18735), 1, + sym_identifier, + ACTIONS(18737), 1, + sym__newline, + STATE(7290), 1, + sym_block, + STATE(11554), 1, + aux_sym_import_declaration_repeat1, + [217076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18739), 1, + sym_identifier, + ACTIONS(18741), 1, + sym__newline, + STATE(7292), 1, + sym_block, + STATE(11944), 1, + aux_sym_import_declaration_repeat1, + [217095] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18743), 1, + sym_identifier, + ACTIONS(18745), 1, + sym__newline, + STATE(9193), 1, + sym_block, + STATE(11020), 1, + aux_sym_import_declaration_repeat1, + [217114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18747), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9195), 1, + sym_block, + [217133] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, + anon_sym_RBRACE, + ACTIONS(18749), 1, + anon_sym_COMMA, + ACTIONS(18751), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13097), 1, + aux_sym_import_declaration_repeat1, + [217152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, + anon_sym_RBRACE, + ACTIONS(18749), 1, + anon_sym_COMMA, + ACTIONS(18751), 1, + sym__newline, + STATE(11104), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13097), 1, + aux_sym_import_declaration_repeat1, + [217171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9640), 1, + anon_sym_RBRACE, + ACTIONS(13975), 1, + anon_sym_COMMA, + ACTIONS(13977), 1, + sym__newline, + STATE(10949), 1, + aux_sym_match_arm_repeat1, + STATE(13499), 1, + aux_sym_import_declaration_repeat1, + [217190] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18753), 1, + sym_identifier, + ACTIONS(18755), 1, + sym__newline, + STATE(9196), 1, + sym_block, + STATE(11021), 1, + aux_sym_import_declaration_repeat1, + [217209] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1961), 1, + anon_sym_RBRACE, + ACTIONS(18757), 1, + anon_sym_COMMA, + ACTIONS(18759), 1, + sym__newline, + STATE(11792), 1, + aux_sym_initializer_list_repeat1, + STATE(12590), 1, + aux_sym_import_declaration_repeat1, + [217228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18761), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9199), 1, + sym_block, + [217247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11171), 1, + anon_sym_RBRACE, + ACTIONS(17090), 1, + anon_sym_COMMA, + ACTIONS(17092), 1, + sym__newline, + STATE(11887), 1, + aux_sym_anonymous_record_literal_repeat1, + STATE(13739), 1, + aux_sym_import_declaration_repeat1, + [217266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18763), 1, + sym_identifier, + ACTIONS(18765), 1, + sym__newline, + STATE(9200), 1, + sym_block, + STATE(11023), 1, + aux_sym_import_declaration_repeat1, + [217285] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18767), 1, + sym_identifier, + ACTIONS(18769), 1, + sym__newline, + STATE(9203), 1, + sym_block, + STATE(11025), 1, + aux_sym_import_declaration_repeat1, + [217304] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18771), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9205), 1, + sym_block, + [217323] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18773), 1, + sym_identifier, + ACTIONS(18775), 1, + sym__newline, + STATE(7300), 1, + sym_block, + STATE(11429), 1, + aux_sym_import_declaration_repeat1, + [217342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18777), 1, + sym_identifier, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7302), 1, + sym_block, + [217361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(18779), 1, + sym_identifier, + STATE(2375), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(18781), 1, + sym__newline, + STATE(2391), 1, + sym_block, + STATE(12797), 1, + aux_sym_import_declaration_repeat1, + [217396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18783), 1, + sym__newline, + STATE(7450), 1, + sym_block, + STATE(12165), 1, + aux_sym_import_declaration_repeat1, + [217412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3192), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18785), 1, + sym__newline, + STATE(3193), 1, + sym_block, + STATE(12001), 1, + aux_sym_import_declaration_repeat1, + [217444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18787), 1, + sym__newline, + STATE(9191), 1, + sym_block, + STATE(12110), 1, + aux_sym_import_declaration_repeat1, + [217460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18789), 1, + sym__newline, + STATE(3198), 1, + sym_block, + STATE(12003), 1, + aux_sym_import_declaration_repeat1, + [217476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7451), 1, + sym_block, + [217492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3202), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18791), 1, + sym__newline, + STATE(3203), 1, + sym_block, + STATE(12006), 1, + aux_sym_import_declaration_repeat1, + [217524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7452), 1, + sym_block, + [217540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9194), 1, + sym_block, + [217556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18793), 1, + sym__newline, + STATE(7453), 1, + sym_block, + STATE(12194), 1, + aux_sym_import_declaration_repeat1, + [217572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18795), 1, + sym__newline, + STATE(3207), 1, + sym_block, + STATE(12012), 1, + aux_sym_import_declaration_repeat1, + [217588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6709), 1, + sym_block, + [217604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9197), 1, + sym_block, + [217620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3212), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18797), 1, + sym__newline, + STATE(3213), 1, + sym_block, + STATE(12016), 1, + aux_sym_import_declaration_repeat1, + [217652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18799), 1, + sym__newline, + STATE(3214), 1, + sym_block, + STATE(12017), 1, + aux_sym_import_declaration_repeat1, + [217668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3215), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18801), 1, + sym__newline, + STATE(9198), 1, + sym_block, + STATE(12121), 1, + aux_sym_import_declaration_repeat1, + [217700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18803), 1, + sym__newline, + STATE(3217), 1, + sym_block, + STATE(12020), 1, + aux_sym_import_declaration_repeat1, + [217716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3218), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3219), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18805), 1, + sym__newline, + STATE(3220), 1, + sym_block, + STATE(12022), 1, + aux_sym_import_declaration_repeat1, + [217764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18807), 1, + sym__newline, + STATE(3221), 1, + sym_block, + STATE(12023), 1, + aux_sym_import_declaration_repeat1, + [217780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3222), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18809), 1, + sym__newline, + STATE(3223), 1, + sym_block, + STATE(12025), 1, + aux_sym_import_declaration_repeat1, + [217812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18811), 1, + sym__newline, + STATE(3224), 1, + sym_block, + STATE(12026), 1, + aux_sym_import_declaration_repeat1, + [217828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7455), 1, + sym_block, + [217844] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3226), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18813), 1, + sym__newline, + STATE(3227), 1, + sym_block, + STATE(12029), 1, + aux_sym_import_declaration_repeat1, + [217876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18815), 1, + sym__newline, + STATE(3228), 1, + sym_block, + STATE(12030), 1, + aux_sym_import_declaration_repeat1, + [217892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18817), 1, + sym__newline, + STATE(7456), 1, + sym_block, + STATE(12216), 1, + aux_sym_import_declaration_repeat1, + [217908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18819), 1, + sym__newline, + STATE(3230), 1, + sym_block, + STATE(12033), 1, + aux_sym_import_declaration_repeat1, + [217924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9201), 1, + sym_block, + [217940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18821), 1, + sym__newline, + STATE(9202), 1, + sym_block, + STATE(12133), 1, + aux_sym_import_declaration_repeat1, + [217956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3233), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [217972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7328), 1, + sym_block, + [217988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3235), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18823), 1, + sym__newline, + STATE(3242), 1, + sym_block, + STATE(12038), 1, + aux_sym_import_declaration_repeat1, + [218020] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18825), 1, + sym__newline, + STATE(3243), 1, + sym_block, + STATE(12039), 1, + aux_sym_import_declaration_repeat1, + [218036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3244), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18827), 1, + sym__newline, + STATE(9204), 1, + sym_block, + STATE(12140), 1, + aux_sym_import_declaration_repeat1, + [218068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18829), 1, + sym__newline, + STATE(3247), 1, + sym_block, + STATE(12042), 1, + aux_sym_import_declaration_repeat1, + [218084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7458), 1, + sym_block, + [218100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18831), 1, + sym__newline, + STATE(3253), 1, + sym_block, + STATE(12045), 1, + aux_sym_import_declaration_repeat1, + [218116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18833), 1, + sym__newline, + STATE(7459), 1, + sym_block, + STATE(12224), 1, + aux_sym_import_declaration_repeat1, + [218132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3255), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18835), 1, + sym__newline, + STATE(3257), 1, + sym_block, + STATE(12048), 1, + aux_sym_import_declaration_repeat1, + [218164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18837), 1, + sym__newline, + STATE(9207), 1, + sym_block, + STATE(12151), 1, + aux_sym_import_declaration_repeat1, + [218180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18839), 1, + sym__newline, + STATE(3277), 1, + sym_block, + STATE(12051), 1, + aux_sym_import_declaration_repeat1, + [218196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3283), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3293), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18841), 1, + sym__newline, + STATE(3294), 1, + sym_block, + STATE(12053), 1, + aux_sym_import_declaration_repeat1, + [218244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18843), 1, + sym__newline, + STATE(7460), 1, + sym_block, + STATE(12233), 1, + aux_sym_import_declaration_repeat1, + [218260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3296), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218276] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18845), 1, + sym__newline, + STATE(3298), 1, + sym_block, + STATE(12055), 1, + aux_sym_import_declaration_repeat1, + [218292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3307), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218308] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3308), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18847), 1, + sym__newline, + STATE(3310), 1, + sym_block, + STATE(12056), 1, + aux_sym_import_declaration_repeat1, + [218340] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3311), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3322), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18849), 1, + sym__newline, + STATE(3324), 1, + sym_block, + STATE(12057), 1, + aux_sym_import_declaration_repeat1, + [218388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18851), 1, + sym__newline, + STATE(3325), 1, + sym_block, + STATE(12058), 1, + aux_sym_import_declaration_repeat1, + [218404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3328), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218420] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3329), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18853), 1, + sym__newline, + STATE(3339), 1, + sym_block, + STATE(12060), 1, + aux_sym_import_declaration_repeat1, + [218452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18855), 1, + sym__newline, + STATE(3340), 1, + sym_block, + STATE(12061), 1, + aux_sym_import_declaration_repeat1, + [218468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3146), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18857), 1, + sym__newline, + STATE(3019), 1, + sym_block, + STATE(12063), 1, + aux_sym_import_declaration_repeat1, + [218500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18859), 1, + sym__newline, + STATE(2980), 1, + sym_block, + STATE(12064), 1, + aux_sym_import_declaration_repeat1, + [218516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7461), 1, + sym_block, + [218532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18861), 1, + sym__newline, + STATE(2932), 1, + sym_block, + STATE(12067), 1, + aux_sym_import_declaration_repeat1, + [218548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2933), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3027), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18863), 1, + sym__newline, + STATE(3041), 1, + sym_block, + STATE(12069), 1, + aux_sym_import_declaration_repeat1, + [218596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(18865), 1, + sym__newline, + STATE(6710), 1, + sym_block, + STATE(12681), 1, + aux_sym_import_declaration_repeat1, + [218612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3078), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18867), 1, + sym__newline, + STATE(3079), 1, + sym_block, + STATE(12071), 1, + aux_sym_import_declaration_repeat1, + [218644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18869), 1, + sym__newline, + STATE(7463), 1, + sym_block, + STATE(12318), 1, + aux_sym_import_declaration_repeat1, + [218660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3081), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18871), 1, sym__newline, STATE(3108), 1, sym_block, - STATE(4280), 1, + STATE(12073), 1, aux_sym_import_declaration_repeat1, - [98923] = 5, + [218692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8850), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [98939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8852), 1, + ACTIONS(18873), 1, sym__newline, - STATE(1890), 1, + STATE(3160), 1, sym_block, - STATE(4585), 1, + STATE(12074), 1, aux_sym_import_declaration_repeat1, - [98955] = 5, + [218708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2026), 1, + STATE(3162), 1, sym_block, - [98971] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6826), 1, - anon_sym_RPAREN, - ACTIONS(8854), 1, - anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [98987] = 5, + [218724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13611), 1, anon_sym_LBRACE, - ACTIONS(8856), 1, + ACTIONS(18875), 1, sym__newline, - STATE(2027), 1, + STATE(9214), 1, sym_block, - STATE(4333), 1, + STATE(12166), 1, aux_sym_import_declaration_repeat1, - [99003] = 5, + [218740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3231), 1, - anon_sym_RPAREN, - ACTIONS(8858), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99019] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7968), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3155), 1, + ACTIONS(18877), 1, + sym__newline, + STATE(3196), 1, sym_block, - [99035] = 5, + STATE(12077), 1, + aux_sym_import_declaration_repeat1, + [218756] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym_LBRACE, - ACTIONS(8860), 1, + ACTIONS(2257), 1, sym__newline, - STATE(3163), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3241), 1, sym_block, - STATE(4286), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [99051] = 5, + [218772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3001), 1, - anon_sym_RPAREN, - ACTIONS(8862), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99067] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3013), 1, - anon_sym_RBRACE, - ACTIONS(8864), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99083] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3155), 1, - anon_sym_RPAREN, - ACTIONS(8854), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99099] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5392), 1, - anon_sym_RBRACE, - ACTIONS(8866), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99115] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8220), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - ACTIONS(8868), 1, + ACTIONS(18879), 1, sym__newline, - STATE(3353), 1, + STATE(3246), 1, sym_block, - STATE(4349), 1, + STATE(12079), 1, aux_sym_import_declaration_repeat1, - [99131] = 5, + [218788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(7968), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3130), 1, + STATE(3260), 1, sym_block, - [99147] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8220), 1, + ACTIONS(13713), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3354), 1, - sym_block, - [99163] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, + ACTIONS(18881), 1, sym__newline, - ACTIONS(8370), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3810), 1, - sym_record_body, - [99179] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8539), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2905), 1, - sym_enum_body, - [99195] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(752), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8870), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99211] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5312), 1, - anon_sym_RBRACE, - ACTIONS(8872), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99227] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7968), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3132), 1, - sym_block, - [99243] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2028), 1, - sym_block, - [99259] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8575), 1, - anon_sym_LBRACE, - STATE(610), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99275] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2029), 1, - sym_block, - [99291] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5412), 1, - anon_sym_RBRACE, - ACTIONS(8874), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99307] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5334), 1, - anon_sym_RBRACE, - ACTIONS(8876), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1987), 1, - sym_block, - [99339] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3111), 1, - anon_sym_RBRACE, - ACTIONS(8878), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99355] = 4, - ACTIONS(8880), 1, - anon_sym_DQUOTE, - ACTIONS(8884), 1, - sym_comment, - STATE(4297), 1, - aux_sym_string_repeat1, - ACTIONS(8882), 2, - sym_string_content, - sym_escape_sequence, - [99369] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5294), 1, - anon_sym_RBRACE, - ACTIONS(8886), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99385] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8888), 1, - sym__newline, - STATE(1838), 1, - sym_block, - STATE(4601), 1, - aux_sym_import_declaration_repeat1, - [99401] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(8890), 1, - anon_sym_DQUOTE, - STATE(4429), 1, - aux_sym_string_repeat1, - ACTIONS(8892), 2, - sym_string_content, - sym_escape_sequence, - [99415] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8260), 1, - anon_sym_LBRACE, - ACTIONS(8894), 1, - sym__newline, - STATE(3178), 1, - sym_record_body, - STATE(4309), 1, - aux_sym_import_declaration_repeat1, - [99431] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8896), 1, - sym__newline, - STATE(3946), 1, - sym_string, - STATE(4669), 1, - aux_sym_import_declaration_repeat1, - [99447] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8898), 1, - anon_sym_COMMA, - ACTIONS(8900), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(8902), 1, - anon_sym_LBRACE, - STATE(2327), 1, - sym_initializer_list, - STATE(5109), 1, - sym_argument_list, - [99479] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1988), 1, - sym_block, - [99495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4901), 1, - sym__type_constant, - ACTIONS(8906), 2, - sym_integer, - sym_character, - [99509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3165), 1, - anon_sym_RBRACK, - ACTIONS(8908), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99525] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2030), 1, - sym_block, - [99541] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8370), 1, - anon_sym_LBRACE, - ACTIONS(8910), 1, - sym__newline, - STATE(990), 1, - sym_record_body, - STATE(4514), 1, - aux_sym_import_declaration_repeat1, - [99557] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8214), 1, - anon_sym_LBRACE, - STATE(921), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99573] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4765), 1, - sym__type_constant, - ACTIONS(8912), 2, - sym_integer, - sym_character, - [99587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8260), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3110), 1, - sym_record_body, - [99603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8204), 1, - anon_sym_LBRACE, - STATE(699), 1, - sym_record_body, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99619] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8914), 1, - sym__newline, - STATE(1989), 1, - sym_block, - STATE(4208), 1, - aux_sym_import_declaration_repeat1, - [99635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8072), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3630), 1, - sym_enum_body, - [99651] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8918), 1, - sym__newline, - STATE(4535), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(8916), 2, - sym_sink, - sym_identifier, - [99665] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2031), 1, - sym_block, - [99681] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1990), 1, - sym_block, - [99697] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8470), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3803), 1, - sym_enum_body, - [99713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2032), 1, - sym_block, - [99729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(610), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8920), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5414), 1, - anon_sym_RBRACE, - ACTIONS(8922), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99761] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1921), 1, - sym_block, - [99777] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3275), 1, - anon_sym_RBRACE, - ACTIONS(8924), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5442), 1, - anon_sym_RBRACE, - ACTIONS(8926), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99809] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3025), 1, - anon_sym_RPAREN, - ACTIONS(8928), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8930), 1, - anon_sym_COMMA, - ACTIONS(8932), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99841] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1932), 1, - sym_block, - [99857] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8898), 1, - anon_sym_COMMA, - ACTIONS(8934), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3301), 1, - anon_sym_RPAREN, - ACTIONS(8936), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [99889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8142), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3705), 1, - sym_block, - [99905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8938), 1, - sym__newline, - STATE(1933), 1, - sym_block, - STATE(4687), 1, - aux_sym_import_declaration_repeat1, - [99921] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8112), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2363), 1, - sym_block, - [99937] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8204), 1, - anon_sym_LBRACE, - ACTIONS(8940), 1, - sym__newline, - STATE(584), 1, - sym_record_body, - STATE(4358), 1, - aux_sym_import_declaration_repeat1, - [99953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8072), 1, - anon_sym_LBRACE, - ACTIONS(8942), 1, - sym__newline, - STATE(3606), 1, - sym_enum_body, - STATE(4359), 1, - aux_sym_import_declaration_repeat1, - [99969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2033), 1, - sym_block, - [99985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3305), 1, - anon_sym_RBRACE, - ACTIONS(8944), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8220), 1, - anon_sym_LBRACE, - ACTIONS(8946), 1, - sym__newline, - STATE(3263), 1, - sym_block, - STATE(4392), 1, - aux_sym_import_declaration_repeat1, - [100017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8948), 1, - sym__newline, - STATE(2034), 1, - sym_block, - STATE(4363), 1, - aux_sym_import_declaration_repeat1, - [100033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5458), 1, - anon_sym_RBRACE, - ACTIONS(8950), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5468), 1, - anon_sym_RBRACE, - ACTIONS(8952), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8370), 1, - anon_sym_LBRACE, - ACTIONS(8954), 1, - sym__newline, - STATE(823), 1, - sym_record_body, - STATE(4438), 1, - aux_sym_import_declaration_repeat1, - [100081] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8601), 1, - anon_sym_LBRACE, - ACTIONS(8956), 1, - sym__newline, - STATE(3194), 1, - sym_enum_body, - STATE(4440), 1, - aux_sym_import_declaration_repeat1, - [100097] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(612), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8958), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100113] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3311), 1, - anon_sym_RBRACK, - ACTIONS(8960), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8962), 1, - anon_sym_COMMA, - ACTIONS(8964), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3029), 1, - anon_sym_RBRACE, - ACTIONS(8966), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100161] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8968), 1, - sym__newline, - STATE(1852), 1, - sym_block, - STATE(4491), 1, - aux_sym_import_declaration_repeat1, - [100177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3427), 1, - anon_sym_RPAREN, - ACTIONS(8970), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8972), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1991), 1, - sym_block, - [100225] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8220), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, STATE(3265), 1, sym_block, - [100241] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, + STATE(12080), 1, aux_sym_import_declaration_repeat1, - STATE(1978), 1, - sym_block, - [100257] = 5, + [218820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LBRACE, - ACTIONS(8974), 1, + ACTIONS(2257), 1, sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, STATE(3266), 1, sym_block, - STATE(4414), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [100273] = 2, + [218836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(826), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2257), 1, sym__newline, - [100283] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5380), 1, - anon_sym_RBRACE, - ACTIONS(8976), 1, - anon_sym_COMMA, - STATE(1537), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3269), 1, + sym_block, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [100299] = 5, + [218852] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3329), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3270), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3271), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18883), 1, + sym__newline, + STATE(3276), 1, + sym_block, + STATE(12082), 1, + aux_sym_import_declaration_repeat1, + [218900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3288), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3289), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18885), 1, + sym__newline, + STATE(3292), 1, + sym_block, + STATE(12083), 1, + aux_sym_import_declaration_repeat1, + [218948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2922), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [218980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18887), 1, + sym__newline, + STATE(2924), 1, + sym_block, + STATE(12084), 1, + aux_sym_import_declaration_repeat1, + [218996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18889), 1, + sym__newline, + STATE(2925), 1, + sym_block, + STATE(12085), 1, + aux_sym_import_declaration_repeat1, + [219012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2926), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18891), 1, + sym__newline, + STATE(2927), 1, + sym_block, + STATE(12087), 1, + aux_sym_import_declaration_repeat1, + [219044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2928), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18893), 1, + sym__newline, + STATE(2929), 1, + sym_block, + STATE(12088), 1, + aux_sym_import_declaration_repeat1, + [219076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2930), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18895), 1, + sym__newline, + STATE(2931), 1, + sym_block, + STATE(12090), 1, + aux_sym_import_declaration_repeat1, + [219108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2934), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2935), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18897), 1, + sym__newline, + STATE(2936), 1, + sym_block, + STATE(12092), 1, + aux_sym_import_declaration_repeat1, + [219156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7464), 1, + sym_block, + [219172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18899), 1, + sym__newline, + STATE(2939), 1, + sym_block, + STATE(12094), 1, + aux_sym_import_declaration_repeat1, + [219204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2940), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2941), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219236] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18901), 1, + sym__newline, + STATE(2942), 1, + sym_block, + STATE(12095), 1, + aux_sym_import_declaration_repeat1, + [219252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2943), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2944), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2945), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2946), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18903), 1, + sym__newline, + STATE(2947), 1, + sym_block, + STATE(12096), 1, + aux_sym_import_declaration_repeat1, + [219332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2948), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2949), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18905), 1, + sym__newline, + STATE(2950), 1, + sym_block, + STATE(12097), 1, + aux_sym_import_declaration_repeat1, + [219380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2951), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18907), 1, + sym__newline, + STATE(2952), 1, + sym_block, + STATE(12098), 1, + aux_sym_import_declaration_repeat1, + [219412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2953), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18909), 1, + sym__newline, + STATE(2954), 1, + sym_block, + STATE(12099), 1, + aux_sym_import_declaration_repeat1, + [219444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2955), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2956), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2957), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2958), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2959), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2960), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(18911), 1, + sym__newline, + STATE(2961), 1, + sym_block, + STATE(12101), 1, + aux_sym_import_declaration_repeat1, + [219556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2962), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18913), 1, + sym__newline, + STATE(9695), 1, + sym_block, + STATE(12142), 1, + aux_sym_import_declaration_repeat1, + [219588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9415), 1, + sym_block, + [219604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18915), 1, + sym__newline, + STATE(9698), 1, + sym_block, + STATE(12147), 1, + aux_sym_import_declaration_repeat1, + [219620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18917), 1, + sym__newline, + STATE(9220), 1, + sym_block, + STATE(12175), 1, + aux_sym_import_declaration_repeat1, + [219636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18919), 1, + sym__newline, + STATE(7465), 1, + sym_block, + STATE(12376), 1, + aux_sym_import_declaration_repeat1, + [219652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7466), 1, + sym_block, + [219668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9705), 1, + sym_block, + [219684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(18921), 1, + anon_sym_LBRACE, + STATE(9650), 1, + sym_initializer_list, + STATE(14898), 1, + sym_argument_list, + [219700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9225), 1, + sym_block, + [219716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18923), 1, + sym__newline, + STATE(9226), 1, + sym_block, + STATE(12181), 1, + aux_sym_import_declaration_repeat1, + [219732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18925), 1, + sym__newline, + STATE(9227), 1, + sym_block, + STATE(12182), 1, + aux_sym_import_declaration_repeat1, + [219748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18927), 1, + sym__newline, + STATE(7467), 1, + sym_block, + STATE(12382), 1, + aux_sym_import_declaration_repeat1, + [219764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16481), 1, + anon_sym_LBRACE, + STATE(3832), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18929), 1, + sym__newline, + STATE(9229), 1, + sym_block, + STATE(12190), 1, + aux_sym_import_declaration_repeat1, + [219796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16782), 1, + anon_sym_LBRACE, + STATE(2985), 1, + sym_enum_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18931), 1, + sym__newline, + STATE(9805), 1, + sym_block, + STATE(12163), 1, + aux_sym_import_declaration_repeat1, + [219828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7468), 1, + sym_block, + [219844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(18933), 2, + sym_sink, + sym_identifier, + [219858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7469), 1, + sym_block, + [219874] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9233), 1, + sym_block, + [219890] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10879), 1, + anon_sym_RBRACE, + ACTIONS(18935), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219906] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18937), 1, + sym__newline, + STATE(9234), 1, + sym_block, + STATE(12195), 1, + aux_sym_import_declaration_repeat1, + [219922] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7470), 1, + sym_block, + [219938] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18939), 1, + anon_sym_COMMA, + ACTIONS(18941), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [219954] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(11009), 1, + sym_block, + [219970] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9520), 1, anon_sym_RPAREN, - ACTIONS(8978), 1, + ACTIONS(18943), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [100315] = 4, - ACTIONS(8884), 1, + [219986] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8980), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7471), 1, + sym_block, + [220002] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16481), 1, + anon_sym_LBRACE, + ACTIONS(18945), 1, + sym__newline, + STATE(3844), 1, + sym_record_body, + STATE(12137), 1, + aux_sym_import_declaration_repeat1, + [220018] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16782), 1, + anon_sym_LBRACE, + ACTIONS(18947), 1, + sym__newline, + STATE(3020), 1, + sym_enum_body, + STATE(12138), 1, + aux_sym_import_declaration_repeat1, + [220034] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18949), 1, + anon_sym_COMMA, + ACTIONS(18951), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [220050] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18953), 1, + sym__newline, + STATE(9554), 1, + sym_block, + STATE(12169), 1, + aux_sym_import_declaration_repeat1, + [220066] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9238), 1, + sym_block, + [220082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18955), 1, + sym__newline, + STATE(7472), 1, + sym_block, + STATE(12401), 1, + aux_sym_import_declaration_repeat1, + [220098] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9524), 1, + anon_sym_RPAREN, + ACTIONS(18957), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [220114] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7473), 1, + sym_block, + [220130] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16481), 1, + anon_sym_LBRACE, + STATE(3849), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [220146] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16782), 1, + anon_sym_LBRACE, + STATE(3049), 1, + sym_enum_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [220162] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9826), 1, + sym_block, + [220178] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9243), 1, + sym_block, + [220194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18959), 1, + sym__newline, + STATE(9244), 1, + sym_block, + STATE(12219), 1, + aux_sym_import_declaration_repeat1, + [220210] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9842), 1, + sym_block, + [220226] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9530), 1, + anon_sym_RPAREN, + ACTIONS(18961), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [220242] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18963), 1, + sym__newline, + STATE(9849), 1, + sym_block, + STATE(12176), 1, + aux_sym_import_declaration_repeat1, + [220258] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7474), 1, + sym_block, + [220274] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18965), 1, + sym__newline, + STATE(9247), 1, + sym_block, + STATE(12226), 1, + aux_sym_import_declaration_repeat1, + [220290] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9699), 1, + sym_block, + [220306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18967), 1, + sym__newline, + STATE(9598), 1, + sym_block, + STATE(12180), 1, + aux_sym_import_declaration_repeat1, + [220322] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18969), 1, + sym__newline, + STATE(7475), 1, + sym_block, + STATE(12452), 1, + aux_sym_import_declaration_repeat1, + [220338] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18971), 1, + sym__newline, + STATE(9600), 1, + sym_block, + STATE(12183), 1, + aux_sym_import_declaration_repeat1, + [220354] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9252), 1, + sym_block, + [220370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18973), 1, + sym__newline, + STATE(9253), 1, + sym_block, + STATE(12232), 1, + aux_sym_import_declaration_repeat1, + [220386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18975), 1, + sym__newline, + STATE(9604), 1, + sym_block, + STATE(12188), 1, + aux_sym_import_declaration_repeat1, + [220402] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16776), 1, + anon_sym_LBRACE, + STATE(2983), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [220418] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7476), 1, + sym_block, + [220434] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7477), 1, + sym_block, + [220450] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18977), 1, + sym__newline, + STATE(7478), 1, + sym_block, + STATE(12514), 1, + aux_sym_import_declaration_repeat1, + [220466] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(18979), 1, + sym__newline, + STATE(9259), 1, + sym_block, + STATE(12274), 1, + aux_sym_import_declaration_repeat1, + [220482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16776), 1, + anon_sym_LBRACE, + ACTIONS(18981), 1, + sym__newline, + STATE(3018), 1, + sym_record_body, + STATE(12160), 1, + aux_sym_import_declaration_repeat1, + [220498] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16776), 1, + anon_sym_LBRACE, + STATE(3048), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [220514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18983), 1, + sym__newline, + STATE(9621), 1, + sym_block, + STATE(12196), 1, + aux_sym_import_declaration_repeat1, + [220530] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(18985), 1, + sym__newline, + STATE(7479), 1, + sym_block, + STATE(12524), 1, + aux_sym_import_declaration_repeat1, + [220546] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9632), 1, + sym_block, + [220562] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18987), 1, + sym__newline, + STATE(9575), 1, + sym_block, + STATE(12199), 1, + aux_sym_import_declaration_repeat1, + [220578] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7480), 1, + sym_block, + [220594] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9262), 1, + sym_block, + [220610] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18989), 1, anon_sym_DQUOTE, - STATE(4413), 1, + ACTIONS(18991), 1, + sym__newline, + STATE(10960), 1, + sym_string, + STATE(12585), 1, + aux_sym_import_declaration_repeat1, + [220626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14281), 1, + sym__type_constant, + ACTIONS(18995), 2, + sym_integer, + sym_character, + [220640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9627), 1, + sym_block, + [220656] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18997), 1, + sym__newline, + STATE(9629), 1, + sym_block, + STATE(12203), 1, + aux_sym_import_declaration_repeat1, + [220672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(18999), 1, + sym__newline, + STATE(9641), 1, + sym_block, + STATE(12204), 1, + aux_sym_import_declaration_repeat1, + [220688] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19001), 1, + sym__newline, + STATE(9263), 1, + sym_block, + STATE(12336), 1, + aux_sym_import_declaration_repeat1, + [220704] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19003), 1, + sym__newline, + STATE(9722), 1, + sym_block, + STATE(12207), 1, + aux_sym_import_declaration_repeat1, + [220720] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19005), 1, + sym__newline, + STATE(9264), 1, + sym_block, + STATE(12337), 1, + aux_sym_import_declaration_repeat1, + [220736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9265), 1, + sym_block, + [220752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9815), 1, + sym_block, + [220768] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19007), 1, + sym__newline, + STATE(9824), 1, + sym_block, + STATE(12211), 1, + aux_sym_import_declaration_repeat1, + [220784] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19009), 1, + sym__newline, + STATE(7481), 1, + sym_block, + STATE(12530), 1, + aux_sym_import_declaration_repeat1, + [220800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19011), 1, + sym__newline, + STATE(9267), 1, + sym_block, + STATE(12343), 1, + aux_sym_import_declaration_repeat1, + [220816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9843), 1, + sym_block, + [220832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9268), 1, + sym_block, + [220848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9269), 1, + sym_block, + [220864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9515), 1, + sym_block, + [220880] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19013), 1, + sym__newline, + STATE(9516), 1, + sym_block, + STATE(12218), 1, + aux_sym_import_declaration_repeat1, + [220896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19015), 1, + sym__newline, + STATE(9270), 1, + sym_block, + STATE(12348), 1, + aux_sym_import_declaration_repeat1, + [220912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19017), 1, + sym__newline, + STATE(9558), 1, + sym_block, + STATE(12220), 1, + aux_sym_import_declaration_repeat1, + [220928] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19019), 1, + sym__newline, + STATE(9271), 1, + sym_block, + STATE(12349), 1, + aux_sym_import_declaration_repeat1, + [220944] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9810), 1, + sym_block, + [220960] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19021), 1, + sym__newline, + STATE(9818), 1, + sym_block, + STATE(12223), 1, + aux_sym_import_declaration_repeat1, + [220976] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9272), 1, + sym_block, + [220992] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19023), 1, + sym__newline, + STATE(9274), 1, + sym_block, + STATE(12355), 1, + aux_sym_import_declaration_repeat1, + [221008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19025), 1, + sym__newline, + STATE(9275), 1, + sym_block, + STATE(12356), 1, + aux_sym_import_declaration_repeat1, + [221024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19027), 1, + sym__newline, + STATE(9539), 1, + sym_block, + STATE(12229), 1, + aux_sym_import_declaration_repeat1, + [221040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7482), 1, + sym_block, + [221056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9277), 1, + sym_block, + [221072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9648), 1, + sym_block, + [221088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19029), 1, + sym__newline, + STATE(9652), 1, + sym_block, + STATE(12235), 1, + aux_sym_import_declaration_repeat1, + [221104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19031), 1, + sym__newline, + STATE(9653), 1, + sym_block, + STATE(12236), 1, + aux_sym_import_declaration_repeat1, + [221120] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9655), 1, + sym_block, + [221136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19033), 1, + sym__newline, + STATE(9278), 1, + sym_block, + STATE(12362), 1, + aux_sym_import_declaration_repeat1, + [221152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19035), 1, + sym__newline, + STATE(9671), 1, + sym_block, + STATE(12239), 1, + aux_sym_import_declaration_repeat1, + [221168] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19037), 1, + sym__newline, + STATE(9279), 1, + sym_block, + STATE(12366), 1, + aux_sym_import_declaration_repeat1, + [221184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9673), 1, + sym_block, + [221200] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9674), 1, + sym_block, + [221216] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19039), 1, + sym__newline, + STATE(9675), 1, + sym_block, + STATE(12242), 1, + aux_sym_import_declaration_repeat1, + [221232] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19041), 1, + sym__newline, + STATE(9713), 1, + sym_block, + STATE(12243), 1, + aux_sym_import_declaration_repeat1, + [221248] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9714), 1, + sym_block, + [221264] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19043), 1, + sym__newline, + STATE(9717), 1, + sym_block, + STATE(12245), 1, + aux_sym_import_declaration_repeat1, + [221280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19045), 1, + sym__newline, + STATE(9743), 1, + sym_block, + STATE(12246), 1, + aux_sym_import_declaration_repeat1, + [221296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19047), 1, + sym__newline, + STATE(7483), 1, + sym_block, + STATE(12531), 1, + aux_sym_import_declaration_repeat1, + [221312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9746), 1, + sym_block, + [221328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19049), 1, + sym__newline, + STATE(9748), 1, + sym_block, + STATE(12249), 1, + aux_sym_import_declaration_repeat1, + [221344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19051), 1, + sym__newline, + STATE(9750), 1, + sym_block, + STATE(12250), 1, + aux_sym_import_declaration_repeat1, + [221360] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19053), 1, + sym__newline, + STATE(9281), 1, + sym_block, + STATE(12370), 1, + aux_sym_import_declaration_repeat1, + [221376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19055), 1, + sym__newline, + STATE(9752), 1, + sym_block, + STATE(12253), 1, + aux_sym_import_declaration_repeat1, + [221392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7484), 1, + sym_block, + [221408] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19057), 1, + sym__newline, + STATE(7485), 1, + sym_block, + STATE(12545), 1, + aux_sym_import_declaration_repeat1, + [221424] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9757), 1, + sym_block, + [221440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9296), 1, + sym_block, + [221456] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9759), 1, + sym_block, + [221472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19059), 1, + sym__newline, + STATE(9761), 1, + sym_block, + STATE(12260), 1, + aux_sym_import_declaration_repeat1, + [221488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19061), 1, + sym__newline, + STATE(9762), 1, + sym_block, + STATE(12261), 1, + aux_sym_import_declaration_repeat1, + [221504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9764), 1, + sym_block, + [221520] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7486), 1, + sym_block, + [221536] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19063), 1, + sym__newline, + STATE(9767), 1, + sym_block, + STATE(12265), 1, + aux_sym_import_declaration_repeat1, + [221552] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9304), 1, + sym_block, + [221568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19065), 1, + sym__newline, + STATE(9774), 1, + sym_block, + STATE(12270), 1, + aux_sym_import_declaration_repeat1, + [221584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19067), 1, + sym__newline, + STATE(9305), 1, + sym_block, + STATE(12378), 1, + aux_sym_import_declaration_repeat1, + [221600] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9777), 1, + sym_block, + [221616] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19069), 1, + sym__newline, + STATE(9779), 1, + sym_block, + STATE(12273), 1, + aux_sym_import_declaration_repeat1, + [221632] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19071), 1, + sym__newline, + STATE(9306), 1, + sym_block, + STATE(12379), 1, + aux_sym_import_declaration_repeat1, + [221648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9307), 1, + sym_block, + [221664] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7487), 1, + sym_block, + [221680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19073), 1, + sym__newline, + STATE(9782), 1, + sym_block, + STATE(12276), 1, + aux_sym_import_declaration_repeat1, + [221696] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9783), 1, + sym_block, + [221712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9784), 1, + sym_block, + [221728] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19075), 1, + sym__newline, + STATE(9785), 1, + sym_block, + STATE(12278), 1, + aux_sym_import_declaration_repeat1, + [221744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19077), 1, + sym__newline, + STATE(9309), 1, + sym_block, + STATE(12385), 1, + aux_sym_import_declaration_repeat1, + [221760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9787), 1, + sym_block, + [221776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19079), 1, + sym__newline, + STATE(9788), 1, + sym_block, + STATE(12282), 1, + aux_sym_import_declaration_repeat1, + [221792] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14495), 1, + sym__type_constant, + ACTIONS(19081), 2, + sym_integer, + sym_character, + [221806] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9789), 1, + sym_block, + [221822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9790), 1, + sym_block, + [221838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19083), 1, + sym__newline, + STATE(9791), 1, + sym_block, + STATE(12283), 1, + aux_sym_import_declaration_repeat1, + [221854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9792), 1, + sym_block, + [221870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9793), 1, + sym_block, + [221886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19085), 1, + sym__newline, + STATE(9794), 1, + sym_block, + STATE(12284), 1, + aux_sym_import_declaration_repeat1, + [221902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19087), 1, + sym__newline, + STATE(9795), 1, + sym_block, + STATE(12285), 1, + aux_sym_import_declaration_repeat1, + [221918] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9796), 1, + sym_block, + [221934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9797), 1, + sym_block, + [221950] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19089), 1, + sym__newline, + STATE(9798), 1, + sym_block, + STATE(12287), 1, + aux_sym_import_declaration_repeat1, + [221966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19091), 1, + sym__newline, + STATE(9799), 1, + sym_block, + STATE(12289), 1, + aux_sym_import_declaration_repeat1, + [221982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9801), 1, + sym_block, + [221998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14088), 1, + sym__type_constant, + ACTIONS(19093), 2, + sym_integer, + sym_character, + [222012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14090), 1, + sym__type_constant, + ACTIONS(19095), 2, + sym_integer, + sym_character, + [222026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19097), 1, + sym__newline, + STATE(9802), 1, + sym_block, + STATE(12292), 1, + aux_sym_import_declaration_repeat1, + [222042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19099), 1, + sym__newline, + STATE(9809), 1, + sym_block, + STATE(12293), 1, + aux_sym_import_declaration_repeat1, + [222058] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19101), 1, + sym__newline, + STATE(7488), 1, + sym_block, + STATE(12552), 1, + aux_sym_import_declaration_repeat1, + [222074] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19103), 1, + sym__newline, + STATE(9813), 1, + sym_block, + STATE(12298), 1, + aux_sym_import_declaration_repeat1, + [222090] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9816), 1, + sym_block, + [222106] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9817), 1, + sym_block, + [222122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19105), 1, + sym__newline, + STATE(9820), 1, + sym_block, + STATE(12300), 1, + aux_sym_import_declaration_repeat1, + [222138] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + anon_sym_RPAREN, + ACTIONS(19107), 1, + anon_sym_else, + ACTIONS(19109), 1, + sym__newline, + STATE(14789), 1, + aux_sym_import_declaration_repeat1, + [222154] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19112), 1, + sym__newline, + STATE(9311), 1, + sym_block, + STATE(12388), 1, + aux_sym_import_declaration_repeat1, + [222170] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9828), 1, + sym_block, + [222186] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19114), 1, + sym__newline, + STATE(9829), 1, + sym_block, + STATE(12302), 1, + aux_sym_import_declaration_repeat1, + [222202] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14146), 1, + sym__type_constant, + ACTIONS(19116), 2, + sym_integer, + sym_character, + [222216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14147), 1, + sym__type_constant, + ACTIONS(19118), 2, + sym_integer, + sym_character, + [222230] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19120), 1, + sym__newline, + STATE(6705), 1, + sym_block, + STATE(12651), 1, + aux_sym_import_declaration_repeat1, + [222246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9831), 1, + sym_block, + [222262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19122), 1, + sym__newline, + STATE(9832), 1, + sym_block, + STATE(12305), 1, + aux_sym_import_declaration_repeat1, + [222278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19124), 1, + sym__newline, + STATE(9833), 1, + sym_block, + STATE(12306), 1, + aux_sym_import_declaration_repeat1, + [222294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9834), 1, + sym_block, + [222310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9313), 1, + sym_block, + [222326] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19126), 1, + sym__newline, + STATE(9847), 1, + sym_block, + STATE(12309), 1, + aux_sym_import_declaration_repeat1, + [222342] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9848), 1, + sym_block, + [222358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19128), 1, + sym__newline, + STATE(9851), 1, + sym_block, + STATE(12311), 1, + aux_sym_import_declaration_repeat1, + [222374] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9852), 1, + sym_block, + [222390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_RPAREN, + ACTIONS(19130), 1, + anon_sym_else, + ACTIONS(19132), 1, + sym__newline, + STATE(13940), 1, + aux_sym_import_declaration_repeat1, + [222406] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19135), 1, + sym__newline, + STATE(9853), 1, + sym_block, + STATE(12312), 1, + aux_sym_import_declaration_repeat1, + [222422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, + anon_sym_RPAREN, + ACTIONS(19137), 1, + anon_sym_else, + ACTIONS(19139), 1, + sym__newline, + STATE(13944), 1, + aux_sym_import_declaration_repeat1, + [222438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9854), 1, + sym_block, + [222454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9855), 1, + sym_block, + [222470] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9857), 1, + sym_block, + [222486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9858), 1, + sym_block, + [222502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19142), 1, + sym__newline, + STATE(9859), 1, + sym_block, + STATE(12314), 1, + aux_sym_import_declaration_repeat1, + [222518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9860), 1, + sym_block, + [222534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19144), 1, + anon_sym_COMMA, + ACTIONS(19146), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [222550] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9861), 1, + sym_block, + [222566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19148), 1, + sym__newline, + STATE(9862), 1, + sym_block, + STATE(12315), 1, + aux_sym_import_declaration_repeat1, + [222582] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + anon_sym_RPAREN, + ACTIONS(19150), 1, + anon_sym_else, + ACTIONS(19152), 1, + sym__newline, + STATE(13977), 1, + aux_sym_import_declaration_repeat1, + [222598] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9500), 1, + sym_block, + [222614] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9718), 1, + sym_block, + [222630] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_RPAREN, + ACTIONS(19155), 1, + anon_sym_else, + ACTIONS(19157), 1, + sym__newline, + STATE(13979), 1, + aux_sym_import_declaration_repeat1, + [222646] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19160), 1, + sym__newline, + STATE(9565), 1, + sym_block, + STATE(12316), 1, + aux_sym_import_declaration_repeat1, + [222662] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19162), 1, + sym__newline, + STATE(9573), 1, + sym_block, + STATE(12317), 1, + aux_sym_import_declaration_repeat1, + [222678] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19164), 1, + anon_sym_COMMA, + ACTIONS(19166), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [222694] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9825), 1, + sym_block, + [222710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19168), 1, + sym__newline, + STATE(9736), 1, + sym_block, + STATE(12320), 1, + aux_sym_import_declaration_repeat1, + [222726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9745), 1, + sym_block, + [222742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19170), 1, + sym__newline, + STATE(9509), 1, + sym_block, + STATE(12321), 1, + aux_sym_import_declaration_repeat1, + [222758] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9518), 1, + sym_block, + [222774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 1, + anon_sym_RPAREN, + ACTIONS(19172), 1, + anon_sym_else, + ACTIONS(19174), 1, + sym__newline, + STATE(14021), 1, + aux_sym_import_declaration_repeat1, + [222790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19177), 1, + sym__newline, + STATE(9519), 1, + sym_block, + STATE(12323), 1, + aux_sym_import_declaration_repeat1, + [222806] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9557), 1, + sym_block, + [222822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9588), 1, + sym_block, + [222838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19179), 1, + sym__newline, + STATE(9593), 1, + sym_block, + STATE(12325), 1, + aux_sym_import_declaration_repeat1, + [222854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19181), 1, + sym__newline, + STATE(9314), 1, + sym_block, + STATE(12397), 1, + aux_sym_import_declaration_repeat1, + [222870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9679), 1, + sym_block, + [222886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19183), 1, + sym__newline, + STATE(9681), 1, + sym_block, + STATE(12327), 1, + aux_sym_import_declaration_repeat1, + [222902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9731), 1, + sym_block, + [222918] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9838), 1, + sym_block, + [222934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19185), 1, + sym__newline, + STATE(9576), 1, + sym_block, + STATE(12328), 1, + aux_sym_import_declaration_repeat1, + [222950] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9596), 1, + sym_block, + [222966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9807), 1, + sym_block, + [222982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9819), 1, + sym_block, + [222998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9835), 1, + sym_block, + [223014] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7490), 1, + sym_block, + [223030] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19187), 1, + sym__newline, + STATE(9837), 1, + sym_block, + STATE(12329), 1, + aux_sym_import_declaration_repeat1, + [223046] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9845), 1, + sym_block, + [223062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9569), 1, + sym_block, + [223078] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19189), 1, + sym__newline, + STATE(9587), 1, + sym_block, + STATE(12330), 1, + aux_sym_import_declaration_repeat1, + [223094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9609), 1, + sym_block, + [223110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19191), 1, + sym__newline, + STATE(9645), 1, + sym_block, + STATE(12331), 1, + aux_sym_import_declaration_repeat1, + [223126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9658), 1, + sym_block, + [223142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19193), 1, + sym__newline, + STATE(9710), 1, + sym_block, + STATE(12332), 1, + aux_sym_import_declaration_repeat1, + [223158] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9742), 1, + sym_block, + [223174] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9756), 1, + sym_block, + [223190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9753), 1, + sym_block, + [223206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9766), 1, + sym_block, + [223222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9768), 1, + sym_block, + [223238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9769), 1, + sym_block, + [223254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19195), 1, + sym__newline, + STATE(9770), 1, + sym_block, + STATE(12334), 1, + aux_sym_import_declaration_repeat1, + [223270] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9803), 1, + sym_block, + [223286] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19197), 1, + sym__newline, + STATE(9316), 1, + sym_block, + STATE(12409), 1, + aux_sym_import_declaration_repeat1, + [223302] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9317), 1, + sym_block, + [223318] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9318), 1, + sym_block, + [223334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19199), 1, + sym__newline, + STATE(9319), 1, + sym_block, + STATE(12411), 1, + aux_sym_import_declaration_repeat1, + [223350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9730), 1, + anon_sym_RPAREN, + ACTIONS(19201), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [223366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19203), 1, + sym__newline, + STATE(7491), 1, + sym_block, + STATE(12564), 1, + aux_sym_import_declaration_repeat1, + [223382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10994), 1, + sym_block, + [223398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9763), 1, + sym_block, + [223414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9321), 1, + sym_block, + [223430] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16950), 1, + anon_sym_LBRACE, + ACTIONS(19205), 1, + sym__newline, + STATE(10851), 1, + sym_record_body, + STATE(12393), 1, + aux_sym_import_declaration_repeat1, + [223446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18583), 1, + anon_sym_LBRACE, + ACTIONS(19207), 1, + sym__newline, + STATE(8287), 1, + sym_enum_body, + STATE(12394), 1, + aux_sym_import_declaration_repeat1, + [223462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19209), 1, + sym__newline, + STATE(4313), 1, + sym_block, + STATE(13839), 1, + aux_sym_import_declaration_repeat1, + [223478] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19211), 1, + sym__newline, + STATE(9322), 1, + sym_block, + STATE(12416), 1, + aux_sym_import_declaration_repeat1, + [223494] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9323), 1, + sym_block, + [223510] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9324), 1, + sym_block, + [223526] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6672), 1, + sym_block, + [223542] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19213), 1, + sym__newline, + STATE(6631), 1, + sym_block, + STATE(12543), 1, + aux_sym_import_declaration_repeat1, + [223558] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9734), 1, + anon_sym_RBRACE, + ACTIONS(19215), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [223574] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19217), 1, + sym__newline, + STATE(9325), 1, + sym_block, + STATE(12420), 1, + aux_sym_import_declaration_repeat1, + [223590] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11187), 1, + anon_sym_RBRACE, + ACTIONS(19219), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [223606] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9326), 1, + sym_block, + [223622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9327), 1, + sym_block, + [223638] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19221), 1, + sym__newline, + STATE(6652), 1, + sym_block, + STATE(12553), 1, + aux_sym_import_declaration_repeat1, + [223654] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9740), 1, + anon_sym_RBRACK, + ACTIONS(19223), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [223670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19223), 1, + anon_sym_COMMA, + ACTIONS(19225), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [223686] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19227), 1, + sym__newline, + STATE(9328), 1, + sym_block, + STATE(12422), 1, + aux_sym_import_declaration_repeat1, + [223702] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19229), 1, + sym__newline, + STATE(9329), 1, + sym_block, + STATE(12423), 1, + aux_sym_import_declaration_repeat1, + [223718] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9330), 1, + sym_block, + [223734] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19231), 1, + sym__newline, + STATE(6656), 1, + sym_block, + STATE(12599), 1, + aux_sym_import_declaration_repeat1, + [223750] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4422), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [223766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19233), 1, + anon_sym_EQ, + ACTIONS(19235), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [223778] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9331), 1, + sym_block, + [223794] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19237), 1, + sym__newline, + STATE(9332), 1, + sym_block, + STATE(12425), 1, + aux_sym_import_declaration_repeat1, + [223810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19239), 1, + sym__newline, + STATE(9333), 1, + sym_block, + STATE(12428), 1, + aux_sym_import_declaration_repeat1, + [223826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19241), 1, + sym__newline, + STATE(4389), 1, + sym_block, + STATE(12426), 1, + aux_sym_import_declaration_repeat1, + [223842] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9334), 1, + sym_block, + [223858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18178), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10867), 1, + sym_record_body, + [223874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14294), 1, + sym__type_constant, + ACTIONS(19243), 2, + sym_integer, + sym_character, + [223888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6685), 1, + sym_block, + [223904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19245), 1, + sym__newline, + STATE(9335), 1, + sym_block, + STATE(12432), 1, + aux_sym_import_declaration_repeat1, + [223920] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19247), 1, + sym__newline, + STATE(9336), 1, + sym_block, + STATE(12434), 1, + aux_sym_import_declaration_repeat1, + [223936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7492), 1, + sym_block, + [223952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19249), 1, + sym__newline, + STATE(9338), 1, + sym_block, + STATE(12437), 1, + aux_sym_import_declaration_repeat1, + [223968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9339), 1, + sym_block, + [223984] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9340), 1, + sym_block, + [224000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18188), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10843), 1, + sym_enum_body, + [224016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19251), 1, + sym__newline, + STATE(9341), 1, + sym_block, + STATE(12440), 1, + aux_sym_import_declaration_repeat1, + [224032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7493), 1, + sym_block, + [224048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19253), 1, + sym__newline, + STATE(6719), 1, + sym_block, + STATE(13136), 1, + aux_sym_import_declaration_repeat1, + [224064] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19255), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9343), 1, + sym_block, + [224096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19257), 1, + sym__newline, + STATE(9344), 1, + sym_block, + STATE(12443), 1, + aux_sym_import_declaration_repeat1, + [224112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19259), 1, + sym__newline, + STATE(7494), 1, + sym_block, + STATE(12566), 1, + aux_sym_import_declaration_repeat1, + [224128] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9348), 1, + sym_block, + [224144] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9754), 1, + anon_sym_RPAREN, + ACTIONS(19261), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224160] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19263), 1, + sym__newline, + STATE(9349), 1, + sym_block, + STATE(12447), 1, + aux_sym_import_declaration_repeat1, + [224176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19265), 1, + sym__newline, + STATE(9800), 1, + sym_block, + STATE(12461), 1, + aux_sym_import_declaration_repeat1, + [224192] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9804), 1, + sym_block, + [224208] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16950), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10867), 1, + sym_record_body, + [224224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18583), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8232), 1, + sym_enum_body, + [224240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19267), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [224250] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19269), 1, + sym__newline, + STATE(9350), 1, + sym_block, + STATE(12449), 1, + aux_sym_import_declaration_repeat1, + [224266] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9351), 1, + sym_block, + [224282] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9760), 1, + anon_sym_RBRACE, + ACTIONS(19271), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224298] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18989), 1, + anon_sym_DQUOTE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(11005), 1, + sym_string, + [224314] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11193), 1, + anon_sym_RBRACE, + ACTIONS(19273), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224330] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7495), 1, + sym_block, + [224346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15653), 1, + anon_sym_RPAREN, + ACTIONS(19275), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224362] = 4, + ACTIONS(19277), 1, + anon_sym_DQUOTE, + ACTIONS(19281), 1, + sym_comment, + STATE(12407), 1, aux_sym_string_repeat1, - ACTIONS(8982), 2, + ACTIONS(19279), 2, sym_string_content, sym_escape_sequence, - [100329] = 5, + [224376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8112), 1, + ACTIONS(13611), 1, anon_sym_LBRACE, - ACTIONS(8984), 1, + ACTIONS(19283), 1, sym__newline, - STATE(2326), 1, + STATE(9353), 1, sym_block, - STATE(4380), 1, + STATE(12453), 1, aux_sym_import_declaration_repeat1, - [100345] = 5, + [224392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(8112), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2330), 1, - sym_block, - [100361] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8204), 1, - anon_sym_LBRACE, - STATE(594), 1, - sym_record_body, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100377] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8072), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3607), 1, - sym_enum_body, - [100393] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5472), 1, - anon_sym_RBRACE, - ACTIONS(8986), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100409] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(8988), 1, - sym__newline, - STATE(1992), 1, - sym_block, - STATE(4212), 1, - aux_sym_import_declaration_repeat1, - [100425] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3927), 1, - sym_block, - [100441] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2035), 1, - sym_block, - [100457] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3953), 1, - sym_block, - [100473] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8990), 1, - sym__newline, - STATE(3940), 1, - sym_string, - STATE(4468), 1, - aux_sym_import_declaration_repeat1, - [100489] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3910), 1, - sym_block, - [100505] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3335), 1, - anon_sym_RBRACE, - ACTIONS(8992), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100521] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5232), 1, - anon_sym_RBRACE, - ACTIONS(8994), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3035), 1, + ACTIONS(9308), 1, anon_sym_RBRACK, - ACTIONS(8812), 1, + ACTIONS(19285), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [100553] = 5, + [224408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(8996), 1, - anon_sym_COMMA, - ACTIONS(8998), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100569] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3341), 1, - anon_sym_RBRACK, - ACTIONS(9000), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100585] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5238), 1, - anon_sym_RBRACE, - ACTIONS(9002), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1892), 1, - sym_block, - [100617] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9004), 1, - sym__newline, - STATE(1935), 1, - sym_block, - STATE(4350), 1, - aux_sym_import_declaration_repeat1, - [100633] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8112), 1, - anon_sym_LBRACE, - ACTIONS(9006), 1, - sym__newline, - STATE(2394), 1, - sym_block, - STATE(4387), 1, - aux_sym_import_declaration_repeat1, - [100649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8214), 1, - anon_sym_LBRACE, - STATE(839), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100665] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(788), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9008), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100681] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9010), 1, - sym__newline, - STATE(1993), 1, - sym_block, - STATE(4223), 1, - aux_sym_import_declaration_repeat1, - [100697] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3353), 1, + ACTIONS(14064), 1, anon_sym_RPAREN, - ACTIONS(9012), 1, + ACTIONS(19287), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [100713] = 5, + [224424] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19289), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [224438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8112), 1, + ACTIONS(16524), 1, anon_sym_LBRACE, - STATE(1537), 1, + ACTIONS(16526), 1, + sym__newline, + STATE(2525), 1, + sym_record_body, + STATE(12863), 1, aux_sym_import_declaration_repeat1, + [224454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9354), 1, + sym_block, + [224470] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19293), 1, + sym__newline, + STATE(9355), 1, + sym_block, + STATE(12455), 1, + aux_sym_import_declaration_repeat1, + [224486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9356), 1, + sym_block, + [224502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19295), 1, + anon_sym_COMMA, + ACTIONS(19297), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(19299), 1, + anon_sym_LBRACE, + STATE(10655), 1, + sym_initializer_list, + STATE(15072), 1, + sym_argument_list, + [224534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19301), 1, + sym__newline, + STATE(9357), 1, + sym_block, + STATE(12457), 1, + aux_sym_import_declaration_repeat1, + [224550] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10833), 1, + anon_sym_RBRACE, + ACTIONS(19303), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9358), 1, + sym_block, + [224582] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18048), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10746), 1, + sym_record_body, + [224598] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16950), 1, + anon_sym_LBRACE, + STATE(4445), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224614] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10990), 1, + sym_block, + [224630] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9050), 1, + sym_block, + [224646] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17074), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9488), 1, + sym_enum_body, + [224662] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9359), 1, + sym_block, + [224678] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9360), 1, + sym_block, + [224694] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19305), 1, + sym__newline, + STATE(9361), 1, + sym_block, + STATE(12463), 1, + aux_sym_import_declaration_repeat1, + [224710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9362), 1, + sym_block, + [224726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4525), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19307), 1, + sym__newline, + STATE(4543), 1, + sym_block, + STATE(12504), 1, + aux_sym_import_declaration_repeat1, + [224758] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9363), 1, + sym_block, + [224774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19309), 1, + sym__newline, + STATE(4580), 1, + sym_block, + STATE(12507), 1, + aux_sym_import_declaration_repeat1, + [224790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19311), 1, + sym__newline, + STATE(2167), 1, + sym_block, + STATE(12456), 1, + aux_sym_import_declaration_repeat1, + [224806] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19313), 1, + sym__newline, + STATE(9364), 1, + sym_block, + STATE(12466), 1, + aux_sym_import_declaration_repeat1, + [224822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9365), 1, + sym_block, + [224838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11199), 1, + anon_sym_RBRACE, + ACTIONS(19315), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9366), 1, + sym_block, + [224870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19317), 1, + sym__newline, + STATE(9367), 1, + sym_block, + STATE(12473), 1, + aux_sym_import_declaration_repeat1, + [224886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19319), 1, + sym__newline, + STATE(9368), 1, + sym_block, + STATE(12474), 1, + aux_sym_import_declaration_repeat1, + [224902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9369), 1, + sym_block, + [224918] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19321), 1, + sym__newline, + STATE(9370), 1, + sym_block, + STATE(12482), 1, + aux_sym_import_declaration_repeat1, + [224934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8922), 1, + anon_sym_RBRACE, + ACTIONS(19323), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224950] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9371), 1, + sym_block, + [224966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10895), 1, + anon_sym_RBRACE, + ACTIONS(19325), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [224982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19327), 1, + sym__newline, + STATE(9372), 1, + sym_block, + STATE(12483), 1, + aux_sym_import_declaration_repeat1, + [224998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9373), 1, + sym_block, + [225014] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16950), 1, + anon_sym_LBRACE, + ACTIONS(19329), 1, + sym__newline, + STATE(4271), 1, + sym_record_body, + STATE(12925), 1, + aux_sym_import_declaration_repeat1, + [225030] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19331), 1, + anon_sym_COMMA, + ACTIONS(19333), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225046] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19335), 1, + sym__newline, + STATE(9374), 1, + sym_block, + STATE(12490), 1, + aux_sym_import_declaration_repeat1, + [225062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9375), 1, + sym_block, + [225078] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_RPAREN, + ACTIONS(19287), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9376), 1, + sym_block, + [225110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19337), 1, + sym__newline, + STATE(9377), 1, + sym_block, + STATE(12495), 1, + aux_sym_import_declaration_repeat1, + [225126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19339), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7496), 1, + sym_block, + [225158] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9379), 1, + sym_block, + [225174] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19341), 1, + sym__newline, + STATE(9380), 1, + sym_block, + STATE(12498), 1, + aux_sym_import_declaration_repeat1, + [225190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9381), 1, + sym_block, + [225206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2186), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9382), 1, + sym_block, + [225238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8778), 1, + anon_sym_RPAREN, + ACTIONS(19343), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19345), 1, + sym__newline, + STATE(9383), 1, + sym_block, + STATE(12500), 1, + aux_sym_import_declaration_repeat1, + [225270] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14711), 1, + sym__type_constant, + ACTIONS(19347), 2, + sym_integer, + sym_character, + [225284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9559), 1, + sym_block, + [225300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8934), 1, + anon_sym_RPAREN, + ACTIONS(19349), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9384), 1, + sym_block, + [225332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19351), 1, + sym__newline, + STATE(9561), 1, + sym_block, + STATE(12544), 1, + aux_sym_import_declaration_repeat1, + [225348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10562), 1, + sym_block, + [225364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9385), 1, + sym_block, + [225380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14087), 1, + sym__type_constant, + ACTIONS(19353), 2, + sym_integer, + sym_character, + [225394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14093), 1, + sym__type_constant, + ACTIONS(19355), 2, + sym_integer, + sym_character, + [225408] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16950), 1, + anon_sym_LBRACE, + ACTIONS(19357), 1, + sym__newline, + STATE(4273), 1, + sym_record_body, + STATE(12519), 1, + aux_sym_import_declaration_repeat1, + [225424] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17074), 1, + anon_sym_LBRACE, + ACTIONS(19359), 1, + sym__newline, + STATE(9469), 1, + sym_enum_body, + STATE(12520), 1, + aux_sym_import_declaration_repeat1, + [225440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8808), 1, + anon_sym_RBRACE, + ACTIONS(19361), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225456] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10863), 1, + anon_sym_RBRACE, + ACTIONS(19363), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9386), 1, + sym_block, + [225488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9387), 1, + sym_block, + [225504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14368), 1, + sym__type_constant, + ACTIONS(19365), 2, + sym_integer, + sym_character, + [225518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14379), 1, + sym__type_constant, + ACTIONS(19367), 2, + sym_integer, + sym_character, + [225532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19369), 1, + sym__newline, + STATE(9388), 1, + sym_block, + STATE(12502), 1, + aux_sym_import_declaration_repeat1, + [225548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8938), 1, + anon_sym_RBRACE, + ACTIONS(19371), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19373), 1, + anon_sym_RPAREN, + ACTIONS(19375), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18178), 1, + anon_sym_LBRACE, + ACTIONS(19377), 1, + sym__newline, + STATE(11003), 1, + sym_record_body, + STATE(13092), 1, + aux_sym_import_declaration_repeat1, + [225596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10899), 1, + anon_sym_RBRACE, + ACTIONS(19379), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9389), 1, + sym_block, + [225628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9390), 1, + sym_block, + [225644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19381), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [225654] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19383), 1, + anon_sym_COMMA, + ACTIONS(19385), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8910), 1, + anon_sym_RBRACK, + ACTIONS(19387), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225686] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8944), 1, + anon_sym_RBRACK, + ACTIONS(19389), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225702] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19391), 1, + anon_sym_COMMA, + ACTIONS(19393), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225718] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19395), 1, + sym__newline, + STATE(9391), 1, + sym_block, + STATE(12503), 1, + aux_sym_import_declaration_repeat1, + [225734] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9393), 1, + sym_block, + [225750] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13886), 1, + anon_sym_RPAREN, + ACTIONS(19287), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19397), 1, + sym__newline, + STATE(9394), 1, + sym_block, + STATE(12505), 1, + aux_sym_import_declaration_repeat1, + [225782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14149), 1, + sym__type_constant, + ACTIONS(19399), 2, + sym_integer, + sym_character, + [225796] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19403), 1, + sym__newline, + STATE(13044), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(19401), 2, + sym_sink, + sym_identifier, + [225810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9395), 1, + sym_block, + [225826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19405), 1, + sym__newline, + STATE(2203), 1, + sym_block, + STATE(12537), 1, + aux_sym_import_declaration_repeat1, + [225842] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19407), 1, + sym__newline, + STATE(9397), 1, + sym_block, + STATE(12506), 1, + aux_sym_import_declaration_repeat1, + [225858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9398), 1, + sym_block, + [225874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14154), 1, + sym__type_constant, + ACTIONS(19409), 2, + sym_integer, + sym_character, + [225888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9399), 1, + sym_block, + [225904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19411), 1, + sym__newline, + STATE(3974), 1, + sym_block, + STATE(12562), 1, + aux_sym_import_declaration_repeat1, + [225920] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9400), 1, + sym_block, + [225936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9404), 1, + sym_block, + [225952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(3988), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [225968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9073), 1, + sym_block, + [225984] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9062), 1, + sym_block, + [226000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4008), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19413), 1, + sym__newline, + STATE(4009), 1, + sym_block, + STATE(12569), 1, + aux_sym_import_declaration_repeat1, + [226032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19415), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19417), 1, + sym__newline, + STATE(9401), 1, + sym_block, + STATE(12511), 1, + aux_sym_import_declaration_repeat1, + [226064] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9146), 1, + sym_block, + [226080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8836), 1, + anon_sym_RBRACE, + ACTIONS(19419), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226096] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19421), 1, + anon_sym_DQUOTE, + STATE(12516), 1, + aux_sym_string_repeat1, + ACTIONS(19423), 2, + sym_string_content, + sym_escape_sequence, + [226110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7497), 1, + sym_block, + [226126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8958), 1, + anon_sym_RPAREN, + ACTIONS(19425), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226142] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19427), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [226156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(19429), 1, + sym__newline, + STATE(10501), 1, + sym_block, + STATE(12559), 1, + aux_sym_import_declaration_repeat1, + [226172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10518), 1, + sym_block, + [226188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16950), 1, + anon_sym_LBRACE, + STATE(4023), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17074), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9479), 1, + sym_enum_body, + [226220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16481), 1, + anon_sym_LBRACE, + ACTIONS(19431), 1, + sym__newline, + STATE(3529), 1, + sym_record_body, + STATE(12547), 1, + aux_sym_import_declaration_repeat1, + [226236] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19433), 1, + sym__newline, + STATE(6745), 1, + sym_block, + STATE(13333), 1, + aux_sym_import_declaration_repeat1, + [226252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10835), 1, + anon_sym_RBRACE, + ACTIONS(19435), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7498), 1, + sym_block, + [226284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19437), 1, + sym__newline, + STATE(7499), 1, + sym_block, + STATE(12568), 1, + aux_sym_import_declaration_repeat1, + [226300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8964), 1, + anon_sym_RBRACE, + ACTIONS(19439), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10907), 1, + anon_sym_RBRACE, + ACTIONS(19441), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10845), 1, + anon_sym_RBRACE, + ACTIONS(19443), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19445), 1, + anon_sym_COMMA, + ACTIONS(19447), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7500), 1, + sym_block, + [226380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7501), 1, + sym_block, + [226396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8970), 1, + anon_sym_RBRACK, + ACTIONS(19449), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19451), 1, + anon_sym_COMMA, + ACTIONS(19453), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2101), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19455), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(19457), 1, + anon_sym_LBRACE, + STATE(3038), 1, + sym_initializer_list, + STATE(14941), 1, + sym_argument_list, + [226460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6830), 1, + sym_block, + [226476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2222), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19459), 1, + sym__newline, + STATE(2223), 1, + sym_block, + STATE(12574), 1, + aux_sym_import_declaration_repeat1, + [226508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19461), 1, + sym__newline, + STATE(7502), 1, + sym_block, + STATE(12575), 1, + aux_sym_import_declaration_repeat1, + [226524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19463), 1, + sym__newline, + STATE(2225), 1, + sym_block, + STATE(12577), 1, + aux_sym_import_declaration_repeat1, + [226540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8842), 1, + anon_sym_RBRACK, + ACTIONS(19465), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19465), 1, + anon_sym_COMMA, + ACTIONS(19467), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6759), 1, + sym_block, + [226588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9686), 1, + sym_block, + [226604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7503), 1, + sym_block, + [226620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10913), 1, + anon_sym_RBRACE, + ACTIONS(19469), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16481), 1, + anon_sym_LBRACE, + STATE(3533), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17168), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7175), 1, + sym_record_body, + [226668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19471), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19473), 1, + sym__newline, + STATE(7504), 1, + sym_block, + STATE(12576), 1, + aux_sym_import_declaration_repeat1, + [226700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16017), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9043), 1, + sym_enum_body, + [226716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7505), 1, + sym_block, + [226732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6764), 1, + sym_block, + [226748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19475), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19477), 1, + sym__newline, + STATE(7506), 1, + sym_block, + STATE(12579), 1, + aux_sym_import_declaration_repeat1, + [226780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19479), 1, + sym__newline, + STATE(6765), 1, + sym_block, + STATE(13343), 1, + aux_sym_import_declaration_repeat1, + [226796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15683), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9525), 1, + sym_record_body, + [226812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8982), 1, + anon_sym_RPAREN, + ACTIONS(19481), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10710), 1, + sym_block, + [226844] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(19483), 1, + sym__newline, + STATE(10730), 1, + sym_block, + STATE(12597), 1, + aux_sym_import_declaration_repeat1, + [226860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16950), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10863), 1, + sym_record_body, + [226876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4070), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [226892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19485), 1, + sym__newline, + STATE(4075), 1, + sym_block, + STATE(12662), 1, + aux_sym_import_declaration_repeat1, + [226908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7507), 1, + sym_block, + [226924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19487), 1, + sym__newline, + STATE(4079), 1, + sym_block, + STATE(12667), 1, + aux_sym_import_declaration_repeat1, + [226940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7508), 1, + sym_block, + [226956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19489), 1, + sym__newline, + STATE(4081), 1, + sym_block, + STATE(12851), 1, + aux_sym_import_declaration_repeat1, + [226972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7509), 1, + sym_block, + [226988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4084), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19491), 1, + anon_sym_COMMA, + ACTIONS(19493), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227020] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18583), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8253), 1, + sym_enum_body, + [227036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19495), 1, + sym__newline, + STATE(2242), 1, + sym_block, + STATE(12605), 1, + aux_sym_import_declaration_repeat1, + [227052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(19497), 1, + sym__newline, + STATE(3542), 1, + sym_block, + STATE(12617), 1, + aux_sym_import_declaration_repeat1, + [227068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2244), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7510), 1, + sym_block, + [227100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7511), 1, + sym_block, + [227116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2247), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19499), 1, + sym__newline, + STATE(2248), 1, + sym_block, + STATE(12614), 1, + aux_sym_import_declaration_repeat1, + [227148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7512), 1, + sym_block, + [227164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19501), 1, + sym__newline, + STATE(9495), 1, + sym_block, + STATE(12893), 1, + aux_sym_import_declaration_repeat1, + [227180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19503), 1, + sym__newline, + STATE(7513), 1, + sym_block, + STATE(12583), 1, + aux_sym_import_declaration_repeat1, + [227196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18188), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10865), 1, + sym_enum_body, + [227212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7514), 1, + sym_block, + [227228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19507), 1, + sym__newline, + STATE(12119), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(19505), 2, + sym_sink, + sym_identifier, + [227242] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18989), 1, + anon_sym_DQUOTE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(11002), 1, + sym_string, + [227258] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10921), 1, + anon_sym_RBRACE, + ACTIONS(19509), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227274] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19511), 1, + sym__newline, + STATE(7360), 1, + sym_block, + STATE(13151), 1, + aux_sym_import_declaration_repeat1, + [227290] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9400), 1, + anon_sym_RBRACE, + ACTIONS(19513), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19515), 1, + sym__newline, + STATE(4113), 1, + sym_block, + STATE(12864), 1, + aux_sym_import_declaration_repeat1, + [227322] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1967), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19517), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227338] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6780), 1, + sym_block, + [227354] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11119), 1, + anon_sym_RBRACE, + ACTIONS(19519), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19521), 1, + sym__newline, + STATE(6782), 1, + sym_block, + STATE(12928), 1, + aux_sym_import_declaration_repeat1, + [227386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19523), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14203), 1, + sym__type_constant, + ACTIONS(19525), 2, + sym_integer, + sym_character, + [227416] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10817), 1, + anon_sym_RBRACE, + ACTIONS(19527), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227432] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10567), 1, + sym_block, + [227448] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7362), 1, + sym_block, + [227464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6778), 1, + sym_block, + [227480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19529), 1, + sym__newline, + STATE(6779), 1, + sym_block, + STATE(13356), 1, + aux_sym_import_declaration_repeat1, + [227496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14268), 1, + sym__type_constant, + ACTIONS(19531), 2, + sym_integer, + sym_character, + [227510] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14272), 1, + sym__type_constant, + ACTIONS(19533), 2, + sym_integer, + sym_character, + [227524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6784), 1, + sym_block, + [227540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(19535), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15117), 1, + sym__for_capture_bar, + [227556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2266), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19537), 1, + sym__newline, + STATE(2267), 1, + sym_block, + STATE(12634), 1, + aux_sym_import_declaration_repeat1, + [227588] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14356), 1, + sym__type_constant, + ACTIONS(19539), 2, + sym_integer, + sym_character, + [227602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14357), 1, + sym__type_constant, + ACTIONS(19541), 2, + sym_integer, + sym_character, + [227616] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19295), 1, + anon_sym_COMMA, + ACTIONS(19543), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227632] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19545), 1, + sym__newline, + STATE(2269), 1, + sym_block, + STATE(12637), 1, + aux_sym_import_declaration_repeat1, + [227648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19465), 1, + anon_sym_COMMA, + ACTIONS(19547), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227664] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19549), 1, + sym__newline, + STATE(2271), 1, + sym_block, + STATE(12643), 1, + aux_sym_import_declaration_repeat1, + [227680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6802), 1, + sym_block, + [227696] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2273), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19551), 1, + sym__newline, + STATE(6804), 1, + sym_block, + STATE(12954), 1, + aux_sym_import_declaration_repeat1, + [227728] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19331), 1, + anon_sym_COMMA, + ACTIONS(19553), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3556), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6807), 1, + sym_block, + [227776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19555), 1, + sym__newline, + STATE(4230), 1, + sym_block, + STATE(13716), 1, + aux_sym_import_declaration_repeat1, + [227792] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19557), 1, + sym__newline, + STATE(2279), 1, + sym_block, + STATE(12657), 1, + aux_sym_import_declaration_repeat1, + [227808] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19559), 1, + sym__newline, + STATE(7363), 1, + sym_block, + STATE(13157), 1, + aux_sym_import_declaration_repeat1, + [227824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1891), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19561), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227840] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19563), 1, + sym__newline, + STATE(6783), 1, + sym_block, + STATE(13365), 1, + aux_sym_import_declaration_repeat1, + [227856] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10929), 1, + anon_sym_RBRACE, + ACTIONS(19565), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14139), 1, + sym__type_constant, + ACTIONS(19567), 2, + sym_integer, + sym_character, + [227886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19569), 1, + sym__newline, + STATE(4119), 1, + sym_block, + STATE(12870), 1, + aux_sym_import_declaration_repeat1, + [227902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15599), 1, + anon_sym_RPAREN, + ACTIONS(19571), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227918] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9412), 1, + anon_sym_RPAREN, + ACTIONS(19573), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19575), 1, + sym__newline, + STATE(2284), 1, + sym_block, + STATE(12668), 1, + aux_sym_import_declaration_repeat1, + [227950] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6811), 1, + sym_block, + [227966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3095), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [227982] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14171), 1, + sym__type_constant, + ACTIONS(19577), 2, + sym_integer, + sym_character, + [227996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14173), 1, + sym__type_constant, + ACTIONS(19579), 2, + sym_integer, + sym_character, + [228010] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2290), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18989), 1, + anon_sym_DQUOTE, + ACTIONS(19581), 1, + sym__newline, + STATE(10979), 1, + sym_string, + STATE(13464), 1, + aux_sym_import_declaration_repeat1, + [228042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17168), 1, + anon_sym_LBRACE, + ACTIONS(19583), 1, + sym__newline, + STATE(7181), 1, + sym_record_body, + STATE(12751), 1, + aux_sym_import_declaration_repeat1, + [228058] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2295), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14216), 1, + sym__type_constant, + ACTIONS(19585), 2, + sym_integer, + sym_character, + [228088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14217), 1, + sym__type_constant, + ACTIONS(19587), 2, + sym_integer, + sym_character, + [228102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19589), 1, + sym__newline, + STATE(2296), 1, + sym_block, + STATE(12675), 1, + aux_sym_import_declaration_repeat1, + [228118] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16017), 1, + anon_sym_LBRACE, + ACTIONS(19591), 1, + sym__newline, + STATE(8920), 1, + sym_enum_body, + STATE(12782), 1, + aux_sym_import_declaration_repeat1, + [228134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6738), 1, + sym_block, + [228150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2300), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19593), 1, + sym__newline, + STATE(2301), 1, + sym_block, + STATE(12680), 1, + aux_sym_import_declaration_repeat1, + [228182] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19595), 1, + anon_sym_DQUOTE, + STATE(12656), 1, + aux_sym_string_repeat1, + ACTIONS(19597), 2, + sym_string_content, + sym_escape_sequence, + [228196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19599), 1, + sym__newline, + STATE(2303), 1, + sym_block, + STATE(12683), 1, + aux_sym_import_declaration_repeat1, + [228212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6812), 1, + sym_block, + [228228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9416), 1, + anon_sym_RBRACE, + ACTIONS(19601), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19603), 1, + sym__newline, + STATE(2306), 1, + sym_block, + STATE(12692), 1, + aux_sym_import_declaration_repeat1, + [228260] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19605), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [228274] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6813), 1, + sym_block, + [228290] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14446), 1, + sym__type_constant, + ACTIONS(19607), 2, + sym_integer, + sym_character, + [228304] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19609), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228320] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11123), 1, + anon_sym_RBRACE, + ACTIONS(19611), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228336] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19613), 1, + sym__newline, + STATE(2311), 1, + sym_block, + STATE(12700), 1, + aux_sym_import_declaration_repeat1, + [228352] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19615), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [228366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, STATE(2313), 1, sym_block, - [100729] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8112), 1, + ACTIONS(13763), 1, anon_sym_LBRACE, - ACTIONS(9014), 1, + ACTIONS(19617), 1, sym__newline, STATE(2314), 1, sym_block, - STATE(4393), 1, + STATE(12704), 1, aux_sym_import_declaration_repeat1, - [100745] = 5, + [228398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14474), 1, + sym__type_constant, + ACTIONS(19619), 2, + sym_integer, + sym_character, + [228412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14476), 1, + sym__type_constant, + ACTIONS(19621), 2, + sym_integer, + sym_character, + [228426] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3935), 1, + ACTIONS(19623), 1, + sym__newline, + STATE(6821), 1, sym_block, - [100761] = 5, + STATE(13026), 1, + aux_sym_import_declaration_repeat1, + [228442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(8214), 1, + ACTIONS(13545), 1, anon_sym_LBRACE, - STATE(928), 1, + STATE(4236), 1, sym_block, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [100777] = 5, + [228458] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5254), 1, - anon_sym_RBRACE, - ACTIONS(9016), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2861), 1, - anon_sym_RBRACE, - ACTIONS(9018), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100809] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5336), 1, - anon_sym_RBRACE, - ACTIONS(9020), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8112), 1, + ACTIONS(18048), 1, anon_sym_LBRACE, - STATE(1537), 1, + ACTIONS(19625), 1, + sym__newline, + STATE(10508), 1, + sym_record_body, + STATE(12417), 1, aux_sym_import_declaration_repeat1, + [228474] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19627), 1, + sym__newline, + STATE(6805), 1, + sym_block, + STATE(13326), 1, + aux_sym_import_declaration_repeat1, + [228490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14509), 1, + sym__type_constant, + ACTIONS(19629), 2, + sym_integer, + sym_character, + [228504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14510), 1, + sym__type_constant, + ACTIONS(19631), 2, + sym_integer, + sym_character, + [228518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4312), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2317), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228550] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19633), 1, + sym__newline, + STATE(2318), 1, + sym_block, + STATE(12710), 1, + aux_sym_import_declaration_repeat1, + [228566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19635), 1, + sym__newline, + STATE(2319), 1, + sym_block, + STATE(12711), 1, + aux_sym_import_declaration_repeat1, + [228582] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6868), 1, + sym_block, + [228598] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19637), 1, + sym__newline, + STATE(2321), 1, + sym_block, + STATE(12716), 1, + aux_sym_import_declaration_repeat1, + [228614] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9422), 1, + anon_sym_RBRACK, + ACTIONS(18949), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228630] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19383), 1, + anon_sym_COMMA, + ACTIONS(19639), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228646] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2327), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228662] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19641), 1, + sym__newline, + STATE(2328), 1, + sym_block, + STATE(12720), 1, + aux_sym_import_declaration_repeat1, + [228678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14766), 1, + sym__type_constant, + ACTIONS(19643), 2, + sym_integer, + sym_character, + [228692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7366), 1, + sym_block, + [228708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19645), 1, + sym__newline, + STATE(7209), 1, + sym_block, + STATE(13184), 1, + aux_sym_import_declaration_repeat1, + [228724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2333), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6824), 1, + sym_block, + [228756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(19647), 1, + sym__newline, + STATE(3570), 1, + sym_block, + STATE(12858), 1, + aux_sym_import_declaration_repeat1, + [228772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, STATE(2337), 1, sym_block, - [100841] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14772), 1, + sym__type_constant, + ACTIONS(19649), 2, + sym_integer, + sym_character, + [228802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14774), 1, + sym__type_constant, + ACTIONS(19651), 2, + sym_integer, + sym_character, + [228816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, anon_sym_LBRACE, - ACTIONS(9022), 1, + ACTIONS(19653), 1, sym__newline, - STATE(1847), 1, + STATE(2338), 1, sym_block, - STATE(4373), 1, + STATE(12728), 1, aux_sym_import_declaration_repeat1, - [100857] = 5, + [228832] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19655), 1, + anon_sym_DQUOTE, + STATE(12695), 1, + aux_sym_string_repeat1, + ACTIONS(19657), 2, + sym_string_content, + sym_escape_sequence, + [228846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(794), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9024), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [100873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13763), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3899), 1, - sym_block, - [100889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8214), 1, - anon_sym_LBRACE, - ACTIONS(9026), 1, + ACTIONS(19659), 1, sym__newline, - STATE(877), 1, - sym_block, - STATE(4681), 1, - aux_sym_import_declaration_repeat1, - [100905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8220), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3275), 1, - sym_block, - [100921] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8112), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, STATE(2340), 1, sym_block, - [100937] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9028), 1, - sym__newline, - STATE(1979), 1, - sym_block, - STATE(4602), 1, + STATE(12730), 1, aux_sym_import_declaration_repeat1, - [100953] = 5, + [228862] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(19661), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1936), 1, + STATE(2531), 1, + sym_initializer_list, + STATE(14854), 1, + sym_argument_list, + [228878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14798), 1, + sym__type_constant, + ACTIONS(19663), 2, + sym_integer, + sym_character, + [228892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14799), 1, + sym__type_constant, + ACTIONS(19665), 2, + sym_integer, + sym_character, + [228906] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2342), 1, sym_block, - [100969] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7956), 1, + ACTIONS(13763), 1, anon_sym_LBRACE, - ACTIONS(9030), 1, + ACTIONS(19667), 1, sym__newline, - STATE(3796), 1, + STATE(2343), 1, + sym_block, + STATE(12735), 1, + aux_sym_import_declaration_repeat1, + [228938] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8856), 1, + anon_sym_RPAREN, + ACTIONS(19669), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [228954] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19671), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [228968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16011), 1, + anon_sym_LBRACE, + ACTIONS(19673), 1, + sym__newline, + STATE(9075), 1, sym_record_body, - STATE(4541), 1, + STATE(12868), 1, aux_sym_import_declaration_repeat1, - [100985] = 5, + [228984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19675), 1, + sym__newline, + STATE(2347), 1, + sym_block, + STATE(12743), 1, + aux_sym_import_declaration_repeat1, + [229000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19677), 1, + sym__newline, + STATE(2703), 1, + sym_block, + STATE(13102), 1, + aux_sym_import_declaration_repeat1, + [229016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2712), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2350), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19679), 1, + sym__newline, + STATE(2351), 1, + sym_block, + STATE(12747), 1, + aux_sym_import_declaration_repeat1, + [229064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14786), 1, + sym__type_constant, + ACTIONS(19681), 2, + sym_integer, + sym_character, + [229078] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19683), 1, + sym__newline, + STATE(2352), 1, + sym_block, + STATE(12748), 1, + aux_sym_import_declaration_repeat1, + [229094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2353), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18577), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8288), 1, + sym_record_body, + [229126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19685), 1, + sym__newline, + STATE(2355), 1, + sym_block, + STATE(12754), 1, + aux_sym_import_declaration_repeat1, + [229142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19687), 1, + sym__newline, + STATE(4314), 1, + sym_block, + STATE(12877), 1, + aux_sym_import_declaration_repeat1, + [229158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14493), 1, + sym__type_constant, + ACTIONS(19689), 2, + sym_integer, + sym_character, + [229172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14566), 1, + sym__type_constant, + ACTIONS(19691), 2, + sym_integer, + sym_character, + [229186] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2356), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229202] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229218] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19693), 1, + sym__newline, + STATE(2358), 1, + sym_block, + STATE(12758), 1, + aux_sym_import_declaration_repeat1, + [229234] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19695), 1, + sym__newline, + STATE(2359), 1, + sym_block, + STATE(12759), 1, + aux_sym_import_declaration_repeat1, + [229250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14165), 1, + sym__type_constant, + ACTIONS(19697), 2, + sym_integer, + sym_character, + [229264] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14166), 1, + sym__type_constant, + ACTIONS(19699), 2, + sym_integer, + sym_character, + [229278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2363), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19701), 1, + sym__newline, + STATE(2364), 1, + sym_block, + STATE(12761), 1, + aux_sym_import_declaration_repeat1, + [229310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19703), 1, + sym__newline, + STATE(2367), 1, + sym_block, + STATE(12762), 1, + aux_sym_import_declaration_repeat1, + [229326] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2051), 1, anon_sym_RBRACE, - ACTIONS(848), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19705), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229342] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2369), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19707), 1, + sym__newline, + STATE(2370), 1, + sym_block, + STATE(12775), 1, + aux_sym_import_declaration_repeat1, + [229374] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19709), 1, + sym__newline, + STATE(2372), 1, + sym_block, + STATE(12776), 1, + aux_sym_import_declaration_repeat1, + [229390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19711), 1, + sym__newline, + STATE(7368), 1, + sym_block, + STATE(13191), 1, + aux_sym_import_declaration_repeat1, + [229406] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19713), 1, + sym__newline, + STATE(2374), 1, + sym_block, + STATE(12779), 1, + aux_sym_import_declaration_repeat1, + [229422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17146), 1, + anon_sym_LBRACE, + STATE(4024), 1, + sym_enum_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14022), 1, + sym__type_constant, + ACTIONS(19715), 2, + sym_integer, + sym_character, + [229452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19717), 1, + sym__newline, + STATE(7334), 1, + sym_block, + STATE(12598), 1, + aux_sym_import_declaration_repeat1, + [229468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2377), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10962), 1, + sym_block, + [229500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2379), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19719), 1, + sym__newline, + STATE(2380), 1, + sym_block, + STATE(12784), 1, + aux_sym_import_declaration_repeat1, + [229532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14153), 1, + sym__type_constant, + ACTIONS(19721), 2, + sym_integer, + sym_character, + [229546] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14161), 1, + sym__type_constant, + ACTIONS(19723), 2, + sym_integer, + sym_character, + [229560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19725), 1, + sym__newline, + STATE(2381), 1, + sym_block, + STATE(12785), 1, + aux_sym_import_declaration_repeat1, + [229576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2382), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229592] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6825), 1, + sym_block, + [229608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19727), 1, + sym__newline, + STATE(2384), 1, + sym_block, + STATE(12788), 1, + aux_sym_import_declaration_repeat1, + [229624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14471), 1, + sym__type_constant, + ACTIONS(19729), 2, + sym_integer, + sym_character, + [229638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14472), 1, + sym__type_constant, + ACTIONS(19731), 2, + sym_integer, + sym_character, + [229652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9436), 1, + anon_sym_RPAREN, + ACTIONS(19733), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19735), 1, + sym__newline, + STATE(2386), 1, + sym_block, + STATE(12791), 1, + aux_sym_import_declaration_repeat1, + [229684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19737), 1, + sym__newline, + STATE(6828), 1, + sym_block, + STATE(13076), 1, + aux_sym_import_declaration_repeat1, + [229700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2388), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19739), 1, + sym__newline, + STATE(2389), 1, + sym_block, + STATE(12794), 1, + aux_sym_import_declaration_repeat1, + [229732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(19741), 1, + sym__newline, + STATE(3124), 1, + sym_block, + STATE(12903), 1, + aux_sym_import_declaration_repeat1, + [229748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3125), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2392), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2393), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229796] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14078), 1, + sym__type_constant, + ACTIONS(19743), 2, + sym_integer, + sym_character, + [229810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19745), 1, + sym__newline, + STATE(2394), 1, + sym_block, + STATE(12799), 1, + aux_sym_import_declaration_repeat1, + [229826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17168), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7183), 1, + sym_record_body, + [229842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14104), 1, + sym__type_constant, + ACTIONS(19747), 2, + sym_integer, + sym_character, + [229856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14108), 1, + sym__type_constant, + ACTIONS(19749), 2, + sym_integer, + sym_character, + [229870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2399), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19751), 1, + sym__newline, + STATE(2400), 1, + sym_block, + STATE(12801), 1, + aux_sym_import_declaration_repeat1, + [229902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14135), 1, + sym__type_constant, + ACTIONS(19753), 2, + sym_integer, + sym_character, + [229916] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14141), 1, + sym__type_constant, + ACTIONS(19755), 2, + sym_integer, + sym_character, + [229930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2403), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229946] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2404), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229962] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19757), 1, + sym__newline, + STATE(2405), 1, + sym_block, + STATE(12802), 1, + aux_sym_import_declaration_repeat1, + [229978] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2406), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [229994] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2408), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230010] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19759), 1, + sym__newline, + STATE(2409), 1, + sym_block, + STATE(12803), 1, + aux_sym_import_declaration_repeat1, + [230026] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14133), 1, + sym__type_constant, + ACTIONS(19761), 2, + sym_integer, + sym_character, + [230040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14155), 1, + sym__type_constant, + ACTIONS(19763), 2, + sym_integer, + sym_character, + [230054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14158), 1, + sym__type_constant, + ACTIONS(19765), 2, + sym_integer, + sym_character, + [230068] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14180), 1, + sym__type_constant, + ACTIONS(19767), 2, + sym_integer, + sym_character, + [230082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14182), 1, + sym__type_constant, + ACTIONS(19769), 2, + sym_integer, + sym_character, + [230096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19771), 1, + sym__newline, + STATE(2410), 1, + sym_block, + STATE(12804), 1, + aux_sym_import_declaration_repeat1, + [230112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14229), 1, + sym__type_constant, + ACTIONS(19773), 2, + sym_integer, + sym_character, + [230126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14234), 1, + sym__type_constant, + ACTIONS(19775), 2, + sym_integer, + sym_character, + [230140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14236), 1, + sym__type_constant, + ACTIONS(19777), 2, + sym_integer, + sym_character, + [230154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14261), 1, + sym__type_constant, + ACTIONS(19779), 2, + sym_integer, + sym_character, + [230168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14262), 1, + sym__type_constant, + ACTIONS(19781), 2, + sym_integer, + sym_character, + [230182] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2411), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230198] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2412), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19783), 1, + sym__newline, + STATE(2413), 1, + sym_block, + STATE(12806), 1, + aux_sym_import_declaration_repeat1, + [230230] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19785), 1, + sym__newline, + STATE(2414), 1, + sym_block, + STATE(12807), 1, + aux_sym_import_declaration_repeat1, + [230246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2415), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19787), 1, + sym__newline, + STATE(2416), 1, + sym_block, + STATE(12810), 1, + aux_sym_import_declaration_repeat1, + [230278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19789), 1, + sym__newline, + STATE(2417), 1, + sym_block, + STATE(12811), 1, + aux_sym_import_declaration_repeat1, + [230294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16017), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9036), 1, + sym_enum_body, + [230310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19791), 1, + sym__newline, + STATE(2419), 1, + sym_block, + STATE(12814), 1, + aux_sym_import_declaration_repeat1, + [230326] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2420), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230342] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19793), 1, + sym__newline, + STATE(2422), 1, + sym_block, + STATE(12816), 1, + aux_sym_import_declaration_repeat1, + [230374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [230384] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230400] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19795), 1, + sym__newline, + STATE(2425), 1, + sym_block, + STATE(12818), 1, + aux_sym_import_declaration_repeat1, + [230416] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(19797), 1, + anon_sym_LBRACE, + STATE(3443), 1, + sym_initializer_list, + STATE(15049), 1, + sym_argument_list, + [230432] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2427), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230448] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19799), 1, + sym__newline, + STATE(2428), 1, + sym_block, + STATE(12820), 1, + aux_sym_import_declaration_repeat1, + [230464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19801), 1, + sym__newline, + STATE(2429), 1, + sym_block, + STATE(12821), 1, + aux_sym_import_declaration_repeat1, + [230480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2430), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230496] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8862), 1, + anon_sym_RBRACE, + ACTIONS(19803), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230512] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19805), 1, + sym__newline, + STATE(2435), 1, + sym_block, + STATE(12824), 1, + aux_sym_import_declaration_repeat1, + [230528] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2436), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230544] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19807), 1, + sym__newline, + STATE(2439), 1, + sym_block, + STATE(12826), 1, + aux_sym_import_declaration_repeat1, + [230560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2440), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19809), 1, + sym__newline, + STATE(2441), 1, + sym_block, + STATE(12827), 1, + aux_sym_import_declaration_repeat1, + [230592] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2442), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2444), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230624] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2445), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2446), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230656] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19811), 1, + sym__newline, + STATE(2447), 1, + sym_block, + STATE(12829), 1, + aux_sym_import_declaration_repeat1, + [230672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230688] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2449), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230704] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9442), 1, + anon_sym_RBRACE, + ACTIONS(19813), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230720] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19815), 1, + sym__newline, + STATE(2450), 1, + sym_block, + STATE(12830), 1, + aux_sym_import_declaration_repeat1, + [230736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2451), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2452), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230768] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19817), 1, + sym__newline, + STATE(2453), 1, + sym_block, + STATE(12831), 1, + aux_sym_import_declaration_repeat1, + [230784] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19819), 1, + sym__newline, + STATE(2454), 1, + sym_block, + STATE(12832), 1, + aux_sym_import_declaration_repeat1, + [230800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2455), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19821), 1, + sym__newline, + STATE(2456), 1, + sym_block, + STATE(12834), 1, + aux_sym_import_declaration_repeat1, + [230832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2457), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19823), 1, + sym__newline, + STATE(2458), 1, + sym_block, + STATE(12835), 1, + aux_sym_import_declaration_repeat1, + [230864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2459), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230880] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19825), 1, + sym__newline, + STATE(2460), 1, + sym_block, + STATE(12837), 1, + aux_sym_import_declaration_repeat1, + [230896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2461), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2462), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230928] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19827), 1, + sym__newline, + STATE(2463), 1, + sym_block, + STATE(12839), 1, + aux_sym_import_declaration_repeat1, + [230944] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19829), 1, + sym__newline, + STATE(10967), 1, + sym_block, + STATE(12126), 1, + aux_sym_import_declaration_repeat1, + [230960] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2465), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [230976] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19831), 1, + sym__newline, + STATE(2466), 1, + sym_block, + STATE(12841), 1, + aux_sym_import_declaration_repeat1, + [230992] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2467), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2471), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19833), 1, + sym__newline, + STATE(2472), 1, + sym_block, + STATE(12842), 1, + aux_sym_import_declaration_repeat1, + [231040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2475), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2476), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2477), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2478), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19835), 1, + sym__newline, + STATE(2480), 1, + sym_block, + STATE(12843), 1, + aux_sym_import_declaration_repeat1, + [231120] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2481), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2482), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19837), 1, + sym__newline, + STATE(2483), 1, + sym_block, + STATE(12844), 1, + aux_sym_import_declaration_repeat1, + [231168] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2484), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19839), 1, + sym__newline, + STATE(2485), 1, + sym_block, + STATE(12845), 1, + aux_sym_import_declaration_repeat1, + [231200] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2486), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231216] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19841), 1, + sym__newline, + STATE(2487), 1, + sym_block, + STATE(12846), 1, + aux_sym_import_declaration_repeat1, + [231232] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2488), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231248] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2489), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231264] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2490), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2491), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2492), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2493), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(19843), 1, + sym__newline, + STATE(2494), 1, + sym_block, + STATE(12848), 1, + aux_sym_import_declaration_repeat1, + [231344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2495), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231360] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11129), 1, + anon_sym_RBRACE, + ACTIONS(19845), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10853), 1, + anon_sym_RBRACE, + ACTIONS(19847), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4360), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231408] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19849), 1, + sym__newline, + STATE(4395), 1, + sym_block, + STATE(12881), 1, + aux_sym_import_declaration_repeat1, + [231424] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9448), 1, + anon_sym_RBRACK, + ACTIONS(19851), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19853), 1, + sym__newline, + STATE(4426), 1, + sym_block, + STATE(12884), 1, + aux_sym_import_declaration_repeat1, + [231456] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19855), 1, + sym__newline, + STATE(6816), 1, + sym_block, + STATE(12350), 1, + aux_sym_import_declaration_repeat1, + [231472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6849), 1, + sym_block, + [231488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19857), 1, + sym__newline, + STATE(4436), 1, + sym_block, + STATE(12889), 1, + aux_sym_import_declaration_repeat1, + [231504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3587), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231520] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(19859), 1, + sym__newline, + STATE(3588), 1, + sym_block, + STATE(12939), 1, + aux_sym_import_declaration_repeat1, + [231536] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19861), 1, + sym__newline, + STATE(6851), 1, + sym_block, + STATE(13120), 1, + aux_sym_import_declaration_repeat1, + [231552] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(19863), 1, + sym__newline, + STATE(3590), 1, + sym_block, + STATE(12946), 1, + aux_sym_import_declaration_repeat1, + [231568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19865), 1, + sym__newline, + STATE(4737), 1, + sym_block, + STATE(12897), 1, + aux_sym_import_declaration_repeat1, + [231584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16524), 1, + anon_sym_LBRACE, + STATE(2535), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231600] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(3950), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231616] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19867), 1, + sym__newline, + STATE(3952), 1, + sym_block, + STATE(12900), 1, + aux_sym_import_declaration_repeat1, + [231632] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8868), 1, + anon_sym_RBRACK, + ACTIONS(19869), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(14086), 1, + anon_sym_RPAREN, + ACTIONS(19287), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231664] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16011), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9081), 1, + sym_record_body, + [231680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11135), 1, + anon_sym_RBRACE, + ACTIONS(19871), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231696] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(3960), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19873), 1, + sym__newline, + STATE(3997), 1, + sym_block, + STATE(12905), 1, + aux_sym_import_declaration_repeat1, + [231728] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19875), 1, + sym__newline, + STATE(3999), 1, + sym_block, + STATE(12906), 1, + aux_sym_import_declaration_repeat1, + [231744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8317), 1, + sym_record_body, + [231760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19877), 1, + sym__newline, + STATE(4041), 1, + sym_block, + STATE(12913), 1, + aux_sym_import_declaration_repeat1, + [231776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18939), 1, + anon_sym_COMMA, + ACTIONS(19879), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231792] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18577), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8248), 1, + sym_record_body, + [231808] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4054), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19881), 1, + sym__newline, + STATE(4089), 1, + sym_block, + STATE(12918), 1, + aux_sym_import_declaration_repeat1, + [231840] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19883), 1, + sym__newline, + STATE(7370), 1, + sym_block, + STATE(13324), 1, + aux_sym_import_declaration_repeat1, + [231856] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17174), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7177), 1, + sym_enum_body, + [231872] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4129), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6714), 1, + sym_block, + [231904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9412), 1, + sym_block, + [231920] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4170), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19885), 1, + sym__newline, + STATE(4172), 1, + sym_block, + STATE(12930), 1, + aux_sym_import_declaration_repeat1, + [231952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17146), 1, + anon_sym_LBRACE, + STATE(4590), 1, + sym_enum_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [231968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19887), 1, + sym__newline, + STATE(4209), 1, + sym_block, + STATE(12932), 1, + aux_sym_import_declaration_repeat1, + [231984] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2055), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19889), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4213), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19891), 1, + sym__newline, + STATE(4249), 1, + sym_block, + STATE(12935), 1, + aux_sym_import_declaration_repeat1, + [232032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6852), 1, + sym_block, + [232048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7373), 1, + sym_block, + [232064] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9680), 1, + sym_block, + [232080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19893), 1, + sym__newline, + STATE(4285), 1, + sym_block, + STATE(12942), 1, + aux_sym_import_declaration_repeat1, + [232096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19895), 1, + sym__newline, + STATE(9688), 1, + sym_block, + STATE(13571), 1, + aux_sym_import_declaration_repeat1, + [232112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19897), 1, + sym__newline, + STATE(6853), 1, + sym_block, + STATE(13138), 1, + aux_sym_import_declaration_repeat1, + [232128] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4321), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232144] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19899), 1, + sym__newline, + STATE(4349), 1, + sym_block, + STATE(12947), 1, + aux_sym_import_declaration_repeat1, + [232160] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19901), 1, + sym__newline, + STATE(4351), 1, + sym_block, + STATE(12948), 1, + aux_sym_import_declaration_repeat1, + [232176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4354), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232192] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9460), 1, + anon_sym_RPAREN, + ACTIONS(19903), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232208] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19905), 1, + sym__newline, + STATE(4380), 1, + sym_block, + STATE(12952), 1, + aux_sym_import_declaration_repeat1, + [232224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3151), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232240] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19907), 1, + anon_sym_DQUOTE, + STATE(12908), 1, + aux_sym_string_repeat1, + ACTIONS(19909), 2, + sym_string_content, + sym_escape_sequence, + [232254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4382), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232270] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4409), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232286] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19911), 1, + sym__newline, + STATE(4411), 1, + sym_block, + STATE(12958), 1, + aux_sym_import_declaration_repeat1, + [232302] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(19913), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [232316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18577), 1, + anon_sym_LBRACE, + ACTIONS(19915), 1, + sym__newline, + STATE(8292), 1, + sym_record_body, + STATE(12923), 1, + aux_sym_import_declaration_repeat1, + [232332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(19917), 1, + sym__newline, + STATE(3153), 1, + sym_block, + STATE(12998), 1, + aux_sym_import_declaration_repeat1, + [232348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19919), 1, + sym__newline, + STATE(9692), 1, + sym_block, + STATE(13577), 1, + aux_sym_import_declaration_repeat1, + [232364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19921), 1, + sym__newline, + STATE(4414), 1, + sym_block, + STATE(12960), 1, + aux_sym_import_declaration_repeat1, + [232380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4440), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19923), 1, + sym__newline, + STATE(4442), 1, + sym_block, + STATE(12964), 1, + aux_sym_import_declaration_repeat1, + [232412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(19925), 1, + anon_sym_LBRACE, + STATE(8499), 1, + sym_initializer_list, + STATE(15089), 1, + sym_argument_list, + [232428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19927), 1, + sym__newline, + STATE(4469), 1, + sym_block, + STATE(12965), 1, + aux_sym_import_declaration_repeat1, + [232444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(19929), 1, + sym__newline, + STATE(9087), 1, + sym_block, + STATE(13065), 1, + aux_sym_import_declaration_repeat1, + [232460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4474), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19931), 1, + sym__newline, + STATE(4499), 1, + sym_block, + STATE(12969), 1, + aux_sym_import_declaration_repeat1, + [232492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19933), 1, + sym__newline, + STATE(4501), 1, + sym_block, + STATE(12970), 1, + aux_sym_import_declaration_repeat1, + [232508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(19935), 1, + sym__newline, + STATE(7374), 1, + sym_block, + STATE(13370), 1, + aux_sym_import_declaration_repeat1, + [232524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19937), 1, + sym__newline, + STATE(4531), 1, + sym_block, + STATE(12974), 1, + aux_sym_import_declaration_repeat1, + [232540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18577), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8291), 1, + sym_record_body, + [232556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15683), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9434), 1, + sym_record_body, + [232572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16950), 1, + anon_sym_LBRACE, + STATE(4705), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10859), 1, + anon_sym_RBRACE, + ACTIONS(19939), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17656), 1, + anon_sym_LBRACE, + STATE(2506), 1, + sym_enum_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6855), 1, + sym_block, + [232636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6724), 1, + sym_block, + [232652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4564), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(19941), 1, + sym__newline, + STATE(3603), 1, + sym_block, + STATE(13016), 1, + aux_sym_import_declaration_repeat1, + [232684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4617), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19943), 1, + sym__newline, + STATE(4675), 1, + sym_block, + STATE(12986), 1, + aux_sym_import_declaration_repeat1, + [232716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19945), 1, + sym__newline, + STATE(4676), 1, + sym_block, + STATE(12987), 1, + aux_sym_import_declaration_repeat1, + [232732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4679), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(19947), 1, + sym__newline, + STATE(6725), 1, + sym_block, + STATE(12856), 1, + aux_sym_import_declaration_repeat1, + [232764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(19949), 1, + sym__newline, + STATE(10689), 1, + sym_block, + STATE(12971), 1, + aux_sym_import_declaration_repeat1, + [232780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19951), 1, + sym__newline, + STATE(4740), 1, + sym_block, + STATE(12990), 1, + aux_sym_import_declaration_repeat1, + [232796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3605), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19953), 1, + sym__newline, + STATE(4464), 1, + sym_block, + STATE(12994), 1, + aux_sym_import_declaration_repeat1, + [232828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7377), 1, + sym_block, + [232844] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4368), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19955), 1, + sym__newline, + STATE(4434), 1, + sym_block, + STATE(13000), 1, + aux_sym_import_declaration_repeat1, + [232876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(19957), 1, + sym__newline, + STATE(9823), 1, + sym_block, + STATE(13575), 1, + aux_sym_import_declaration_repeat1, + [232892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19959), 1, + sym__newline, + STATE(4073), 1, + sym_block, + STATE(13006), 1, + aux_sym_import_declaration_repeat1, + [232908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3608), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4093), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4097), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [232956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(19961), 1, + sym__newline, + STATE(3609), 1, + sym_block, + STATE(13057), 1, + aux_sym_import_declaration_repeat1, + [232972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19963), 1, + sym__newline, + STATE(4122), 1, + sym_block, + STATE(13008), 1, + aux_sym_import_declaration_repeat1, + [232988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11063), 1, + anon_sym_RBRACE, + ACTIONS(19965), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4144), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233020] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9016), 1, + anon_sym_RBRACE, + ACTIONS(19967), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6854), 1, + sym_block, + [233052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19969), 1, + sym__newline, + STATE(4147), 1, + sym_block, + STATE(13013), 1, + aux_sym_import_declaration_repeat1, + [233068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10941), 1, + anon_sym_RBRACE, + ACTIONS(19971), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9768), 1, + anon_sym_RBRACE, + ACTIONS(19973), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4148), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19375), 1, + anon_sym_COMMA, + ACTIONS(19975), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4185), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19977), 1, + anon_sym_COMMA, + ACTIONS(19979), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11143), 1, + anon_sym_RBRACE, + ACTIONS(19981), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19983), 1, + sym__newline, + STATE(4194), 1, + sym_block, + STATE(13014), 1, + aux_sym_import_declaration_repeat1, + [233196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4505), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4506), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19985), 1, + sym__newline, + STATE(4507), 1, + sym_block, + STATE(13015), 1, + aux_sym_import_declaration_repeat1, + [233244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6820), 1, + sym_block, + [233260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19987), 1, + sym__newline, + STATE(4554), 1, + sym_block, + STATE(13017), 1, + aux_sym_import_declaration_repeat1, + [233276] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4563), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4565), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233308] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10583), 1, + sym_block, + [233324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19989), 1, + sym__newline, + STATE(4566), 1, + sym_block, + STATE(13019), 1, + aux_sym_import_declaration_repeat1, + [233340] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19991), 1, + sym__newline, + STATE(4700), 1, + sym_block, + STATE(13020), 1, + aux_sym_import_declaration_repeat1, + [233356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4702), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11075), 1, + anon_sym_RBRACE, + ACTIONS(19993), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19995), 1, + sym__newline, + STATE(4703), 1, + sym_block, + STATE(13022), 1, + aux_sym_import_declaration_repeat1, + [233404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(19997), 1, + sym__newline, + STATE(4717), 1, + sym_block, + STATE(13025), 1, + aux_sym_import_declaration_repeat1, + [233420] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9028), 1, + anon_sym_RPAREN, + ACTIONS(19999), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(11010), 1, + sym_block, + [233452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2061), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20001), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8662), 1, + sym_block, + [233484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9710), 1, + anon_sym_RBRACE, + ACTIONS(20003), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15683), 1, + anon_sym_LBRACE, + ACTIONS(20005), 1, + sym__newline, + STATE(9463), 1, + sym_record_body, + STATE(13034), 1, + aux_sym_import_declaration_repeat1, + [233516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17656), 1, + anon_sym_LBRACE, + ACTIONS(20007), 1, + sym__newline, + STATE(2514), 1, + sym_enum_body, + STATE(13035), 1, + aux_sym_import_declaration_repeat1, + [233532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20009), 1, + sym__newline, + STATE(3917), 1, + sym_block, + STATE(13029), 1, + aux_sym_import_declaration_repeat1, + [233548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4208), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4369), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20011), 1, + sym__newline, + STATE(4370), 1, + sym_block, + STATE(13037), 1, + aux_sym_import_declaration_repeat1, + [233596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7380), 1, + sym_block, + [233612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4372), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20013), 1, + sym__newline, + STATE(4758), 1, + sym_block, + STATE(13039), 1, + aux_sym_import_declaration_repeat1, + [233644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20015), 1, + sym__newline, + STATE(7381), 1, + sym_block, + STATE(13554), 1, + aux_sym_import_declaration_repeat1, + [233660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, sym__newline, ACTIONS(9032), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8470), 1, - anon_sym_LBRACE, - ACTIONS(9034), 1, - sym__newline, - STATE(3790), 1, - sym_enum_body, - STATE(4551), 1, - aux_sym_import_declaration_repeat1, - [101017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5274), 1, anon_sym_RBRACE, - ACTIONS(9036), 1, + ACTIONS(20017), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101033] = 5, + [233676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9038), 1, + ACTIONS(2257), 1, sym__newline, - STATE(1897), 1, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4108), 1, sym_block, - STATE(4325), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101049] = 2, + [233692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9040), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20019), 1, sym__newline, - [101059] = 2, + STATE(4110), 1, + sym_block, + STATE(13041), 1, + aux_sym_import_declaration_repeat1, + [233708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9042), 4, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20021), 1, + sym__newline, + STATE(4111), 1, + sym_block, + STATE(13042), 1, + aux_sym_import_declaration_repeat1, + [233724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10945), 1, + anon_sym_RBRACE, + ACTIONS(20023), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3172), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20025), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4151), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20027), 1, + anon_sym_COMMA, + ACTIONS(20029), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20031), 1, + sym__newline, + STATE(4154), 1, + sym_block, + STATE(13046), 1, + aux_sym_import_declaration_repeat1, + [233820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9038), 1, + anon_sym_RBRACK, + ACTIONS(19164), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19389), 1, + anon_sym_COMMA, + ACTIONS(20033), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11183), 1, + anon_sym_RBRACE, + ACTIONS(20035), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4157), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20037), 1, + sym__newline, + STATE(4586), 1, + sym_block, + STATE(13049), 1, + aux_sym_import_declaration_repeat1, + [233900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4587), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15702), 4, anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, sym__newline, - [101069] = 5, + [233926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13537), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1937), 1, + ACTIONS(20039), 1, + sym__newline, + STATE(10506), 1, sym_block, - [101085] = 4, + STATE(13055), 1, + aux_sym_import_declaration_repeat1, + [233942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20041), 1, sym__newline, - STATE(1537), 1, + STATE(7383), 1, + sym_block, + STATE(13569), 1, aux_sym_import_declaration_repeat1, - ACTIONS(9044), 2, + [233958] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20043), 1, + sym__newline, + STATE(4588), 1, + sym_block, + STATE(13050), 1, + aux_sym_import_declaration_repeat1, + [233974] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4589), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [233990] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4692), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234006] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4693), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234022] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3622), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4694), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234054] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20045), 1, + sym__newline, + STATE(4730), 1, + sym_block, + STATE(13060), 1, + aux_sym_import_declaration_repeat1, + [234070] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4179), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234086] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4323), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20047), 1, + sym__newline, + STATE(4197), 1, + sym_block, + STATE(13061), 1, + aux_sym_import_declaration_repeat1, + [234118] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4071), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20049), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20051), 1, + sym__newline, + STATE(3623), 1, + sym_block, + STATE(13109), 1, + aux_sym_import_declaration_repeat1, + [234166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4198), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234182] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6666), 1, + sym_block, + [234198] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20053), 1, + sym__newline, + STATE(4199), 1, + sym_block, + STATE(13062), 1, + aux_sym_import_declaration_repeat1, + [234214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20055), 1, + sym__newline, + STATE(4203), 1, + sym_block, + STATE(13063), 1, + aux_sym_import_declaration_repeat1, + [234230] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4270), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9052), 1, + anon_sym_RPAREN, + ACTIONS(20057), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20059), 1, + sym__newline, + STATE(3625), 1, + sym_block, + STATE(13115), 1, + aux_sym_import_declaration_repeat1, + [234278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20061), 1, + sym__newline, + STATE(8417), 1, + sym_block, + STATE(13082), 1, + aux_sym_import_declaration_repeat1, + [234294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8420), 1, + sym_block, + [234310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15683), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9430), 1, + sym_record_body, + [234326] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17656), 1, + anon_sym_LBRACE, + STATE(2527), 1, + sym_enum_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234342] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20063), 1, + sym__newline, + STATE(4272), 1, + sym_block, + STATE(13068), 1, + aux_sym_import_declaration_repeat1, + [234358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4322), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234374] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20065), 1, + sym__newline, + STATE(4332), 1, + sym_block, + STATE(13069), 1, + aux_sym_import_declaration_repeat1, + [234390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4174), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234406] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20067), 1, + sym__newline, + STATE(4192), 1, + sym_block, + STATE(13071), 1, + aux_sym_import_declaration_repeat1, + [234422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4193), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4195), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20069), 1, + sym__newline, + STATE(4196), 1, + sym_block, + STATE(13073), 1, + aux_sym_import_declaration_repeat1, + [234470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(19505), 2, sym_sink, sym_identifier, - [101099] = 5, + [234484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9046), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101115] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9048), 1, - sym__newline, - STATE(1800), 1, - sym_block, - STATE(4206), 1, - aux_sym_import_declaration_repeat1, - [101131] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9050), 1, - anon_sym_DQUOTE, - STATE(4410), 1, - aux_sym_string_repeat1, - ACTIONS(9052), 2, - sym_string_content, - sym_escape_sequence, - [101145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9054), 1, - sym__newline, - STATE(1938), 1, - sym_block, - STATE(4710), 1, - aux_sym_import_declaration_repeat1, - [101161] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7956), 1, - anon_sym_LBRACE, - ACTIONS(9056), 1, - sym__newline, - STATE(3907), 1, - sym_record_body, - STATE(4523), 1, - aux_sym_import_declaration_repeat1, - [101177] = 4, - ACTIONS(8884), 1, - sym_comment, ACTIONS(9058), 1, - anon_sym_DQUOTE, - STATE(4429), 1, - aux_sym_string_repeat1, - ACTIONS(8892), 2, - sym_string_content, - sym_escape_sequence, - [101191] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8318), 1, - anon_sym_LBRACE, - ACTIONS(9060), 1, - sym__newline, - STATE(2380), 1, - sym_record_body, - STATE(4417), 1, - aux_sym_import_declaration_repeat1, - [101207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5462), 1, anon_sym_RBRACE, - ACTIONS(9062), 1, + ACTIONS(20071), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101223] = 4, - ACTIONS(8884), 1, + [234500] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4478), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10951), 1, + anon_sym_RBRACE, + ACTIONS(20073), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20075), 1, + sym__newline, + STATE(4489), 1, + sym_block, + STATE(13931), 1, + aux_sym_import_declaration_repeat1, + [234548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4503), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4509), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20077), 1, + sym__newline, + STATE(4529), 1, + sym_block, + STATE(13078), 1, + aux_sym_import_declaration_repeat1, + [234596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, ACTIONS(9064), 1, - anon_sym_DQUOTE, - STATE(4429), 1, - aux_sym_string_repeat1, - ACTIONS(8892), 2, - sym_string_content, - sym_escape_sequence, - [101237] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8220), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3277), 1, - sym_block, - [101253] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9066), 1, - sym__newline, - STATE(1893), 1, - sym_block, - STATE(4546), 1, - aux_sym_import_declaration_repeat1, - [101269] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8214), 1, - anon_sym_LBRACE, - STATE(878), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101285] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8318), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2389), 1, - sym_record_body, - [101301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8066), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3626), 1, - sym_record_body, - [101317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7746), 1, - anon_sym_LBRACE, - ACTIONS(8086), 1, - sym__newline, - STATE(3297), 1, - sym_record_body, - STATE(4698), 1, - aux_sym_import_declaration_repeat1, - [101333] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8266), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3063), 1, - sym_enum_body, - [101349] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3049), 1, - anon_sym_RPAREN, - ACTIONS(9068), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101365] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7733), 1, - anon_sym_RPAREN, - ACTIONS(9070), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101381] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9072), 1, - anon_sym_COMMA, - ACTIONS(9074), 1, anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101397] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8214), 1, - anon_sym_LBRACE, - ACTIONS(9076), 1, - sym__newline, - STATE(894), 1, - sym_block, - STATE(4307), 1, - aux_sym_import_declaration_repeat1, - [101413] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3397), 1, - anon_sym_RPAREN, - ACTIONS(9078), 1, + ACTIONS(20079), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101429] = 5, + [234612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8066), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, + ACTIONS(20081), 1, sym__newline, - STATE(3680), 1, - sym_record_body, - STATE(4434), 1, - aux_sym_import_declaration_repeat1, - [101445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8266), 1, - anon_sym_LBRACE, - ACTIONS(9082), 1, - sym__newline, - STATE(3093), 1, - sym_enum_body, - STATE(4435), 1, - aux_sym_import_declaration_repeat1, - [101461] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8810), 1, - anon_sym_COMMA, - ACTIONS(9084), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101477] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9086), 1, - anon_sym_DQUOTE, - STATE(4429), 1, - aux_sym_string_repeat1, - ACTIONS(9088), 2, - sym_string_content, - sym_escape_sequence, - [101491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1853), 1, + STATE(3627), 1, sym_block, - [101507] = 5, + STATE(13124), 1, + aux_sym_import_declaration_repeat1, + [234628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(5252), 1, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7385), 1, + sym_block, + [234644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10493), 1, + sym_block, + [234660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20083), 1, + sym__newline, + STATE(10494), 1, + sym_block, + STATE(13095), 1, + aux_sym_import_declaration_repeat1, + [234676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3629), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20085), 1, + sym__newline, + STATE(10504), 1, + sym_block, + STATE(13098), 1, + aux_sym_import_declaration_repeat1, + [234708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20087), 1, + sym__newline, + STATE(7386), 1, + sym_block, + STATE(13590), 1, + aux_sym_import_declaration_repeat1, + [234724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4530), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4324), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4269), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4028), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10957), 1, anon_sym_RBRACE, - ACTIONS(9091), 1, + ACTIONS(20089), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101523] = 5, + [234804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3401), 1, - anon_sym_RPAREN, - ACTIONS(9093), 1, - anon_sym_COMMA, - STATE(1537), 1, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101539] = 5, + STATE(9105), 1, + sym_block, + [234820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8142), 1, + ACTIONS(13545), 1, anon_sym_LBRACE, - ACTIONS(9095), 1, + ACTIONS(20091), 1, + sym__newline, + STATE(4162), 1, + sym_block, + STATE(13079), 1, + aux_sym_import_declaration_repeat1, + [234836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20093), 1, + sym__newline, + STATE(7339), 1, + sym_block, + STATE(12678), 1, + aux_sym_import_declaration_repeat1, + [234852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4184), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4204), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20095), 1, + sym__newline, + STATE(4206), 1, + sym_block, + STATE(13080), 1, + aux_sym_import_declaration_repeat1, + [234900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4333), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20097), 1, + sym__newline, + STATE(4446), 1, + sym_block, + STATE(13084), 1, + aux_sym_import_declaration_repeat1, + [234932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4716), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20099), 1, + sym__newline, + STATE(3927), 1, + sym_block, + STATE(13085), 1, + aux_sym_import_declaration_repeat1, + [234964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20101), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [234980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6675), 1, + sym_block, + [234996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18178), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10863), 1, + sym_record_body, + [235012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4297), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4340), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4345), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9078), 1, + anon_sym_RPAREN, + ACTIONS(20103), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8611), 1, + sym_block, + [235092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20105), 1, + sym__newline, + STATE(8612), 1, + sym_block, + STATE(13113), 1, + aux_sym_import_declaration_repeat1, + [235108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4460), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4666), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(20107), 1, + sym__newline, + STATE(3915), 1, + sym_block, + STATE(13087), 1, + aux_sym_import_declaration_repeat1, + [235156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(3949), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20109), 1, + sym__newline, + STATE(6717), 1, + sym_block, + STATE(12736), 1, + aux_sym_import_declaration_repeat1, + [235188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20111), 1, + sym__newline, + STATE(6789), 1, + sym_block, + STATE(13379), 1, + aux_sym_import_declaration_repeat1, + [235204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20113), 1, + sym__newline, + STATE(3635), 1, + sym_block, + STATE(13147), 1, + aux_sym_import_declaration_repeat1, + [235220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10981), 1, + sym_block, + [235236] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18178), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10956), 1, + sym_record_body, + [235252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20115), 1, + sym__newline, + STATE(10720), 1, + sym_block, + STATE(13116), 1, + aux_sym_import_declaration_repeat1, + [235268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6832), 1, + sym_block, + [235284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10727), 1, + sym_block, + [235300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9320), 1, + anon_sym_RPAREN, + ACTIONS(20117), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11055), 1, + anon_sym_RBRACE, + ACTIONS(20119), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10738), 1, + sym_block, + [235348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20121), 1, + sym__newline, + STATE(10742), 1, + sym_block, + STATE(13123), 1, + aux_sym_import_declaration_repeat1, + [235364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8880), 1, + anon_sym_RPAREN, + ACTIONS(20123), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11151), 1, + anon_sym_RBRACE, + ACTIONS(20125), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2814), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13763), 1, + anon_sym_LBRACE, + ACTIONS(20127), 1, + sym__newline, + STATE(2815), 1, + sym_block, + STATE(13751), 1, + aux_sym_import_declaration_repeat1, + [235428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20129), 1, + sym__newline, + STATE(3643), 1, + sym_block, + STATE(13158), 1, + aux_sym_import_declaration_repeat1, + [235444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10965), 1, + anon_sym_RBRACE, + ACTIONS(20131), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3470), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20133), 1, + sym__newline, + STATE(7390), 1, + sym_block, + STATE(13729), 1, + aux_sym_import_declaration_repeat1, + [235492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + anon_sym_RPAREN, + ACTIONS(20135), 1, + anon_sym_else, + ACTIONS(20138), 1, + sym__newline, + STATE(14663), 1, + aux_sym_import_declaration_repeat1, + [235508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3646), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20141), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18537), 1, + anon_sym_LBRACE, + ACTIONS(20143), 1, + sym__newline, + STATE(8364), 1, + sym_record_body, + STATE(13252), 1, + aux_sym_import_declaration_repeat1, + [235556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20145), 1, + sym__newline, + STATE(6843), 1, + sym_block, + STATE(13406), 1, + aux_sym_import_declaration_repeat1, + [235572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8654), 1, + sym_block, + [235588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17174), 1, + anon_sym_LBRACE, + ACTIONS(20147), 1, + sym__newline, + STATE(7182), 1, + sym_enum_body, + STATE(13260), 1, + aux_sym_import_declaration_repeat1, + [235604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3649), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10793), 1, + sym_block, + [235636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20149), 1, + sym__newline, + STATE(10795), 1, + sym_block, + STATE(13142), 1, + aux_sym_import_declaration_repeat1, + [235652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20151), 1, + sym__newline, + STATE(3650), 1, + sym_block, + STATE(13174), 1, + aux_sym_import_declaration_repeat1, + [235668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20153), 1, + sym__newline, + STATE(10728), 1, + sym_block, + STATE(13145), 1, + aux_sym_import_declaration_repeat1, + [235684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6681), 1, + sym_block, + [235700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20155), 1, + sym__newline, + STATE(10679), 1, + sym_block, + STATE(13149), 1, + aux_sym_import_declaration_repeat1, + [235716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20157), 1, + sym__newline, + STATE(6833), 1, + sym_block, + STATE(12373), 1, + aux_sym_import_declaration_repeat1, + [235732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10708), 1, + sym_block, + [235748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3653), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20159), 1, + sym__newline, + STATE(3654), 1, + sym_block, + STATE(13181), 1, + aux_sym_import_declaration_repeat1, + [235780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9324), 1, + anon_sym_RBRACE, + ACTIONS(20161), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20163), 1, + sym__newline, + STATE(3656), 1, + sym_block, + STATE(13189), 1, + aux_sym_import_declaration_repeat1, + [235812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11079), 1, + anon_sym_RBRACE, + ACTIONS(20165), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20167), 1, + sym__newline, + STATE(10550), 1, + sym_block, + STATE(13162), 1, + aux_sym_import_declaration_repeat1, + [235844] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7342), 1, + sym_block, + [235860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_RPAREN, + ACTIONS(20169), 1, + anon_sym_else, + ACTIONS(20172), 1, + sym__newline, + STATE(14664), 1, + aux_sym_import_declaration_repeat1, + [235876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20175), 1, + sym__newline, + STATE(3659), 1, + sym_block, + STATE(13199), 1, + aux_sym_import_declaration_repeat1, + [235892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20177), 1, + sym__newline, + STATE(7307), 1, + sym_block, + STATE(12002), 1, + aux_sym_import_declaration_repeat1, + [235908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, + anon_sym_RPAREN, + ACTIONS(20179), 1, + anon_sym_else, + ACTIONS(20182), 1, + sym__newline, + STATE(14665), 1, + aux_sym_import_declaration_repeat1, + [235924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10973), 1, + anon_sym_RBRACE, + ACTIONS(20185), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [235940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6859), 1, + sym_block, + [235956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20187), 1, + sym__newline, + STATE(6755), 1, + sym_block, + STATE(13416), 1, + aux_sym_import_declaration_repeat1, + [235972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6760), 1, + sym_block, + [235988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20189), 1, + sym__newline, + STATE(10609), 1, + sym_block, + STATE(13168), 1, + aux_sym_import_declaration_repeat1, + [236004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20191), 1, + sym__newline, + STATE(6790), 1, + sym_block, + STATE(13336), 1, + aux_sym_import_declaration_repeat1, + [236020] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9330), 1, + anon_sym_RBRACK, + ACTIONS(19491), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10629), 1, + sym_block, + [236052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20193), 1, + sym__newline, + STATE(3664), 1, + sym_block, + STATE(13225), 1, + aux_sym_import_declaration_repeat1, + [236068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20195), 1, + anon_sym_COMMA, + ACTIONS(20197), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10666), 1, + sym_block, + [236100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20199), 1, + sym__newline, + STATE(10667), 1, + sym_block, + STATE(13175), 1, + aux_sym_import_declaration_repeat1, + [236116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3665), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20201), 1, + sym__newline, + STATE(3667), 1, + sym_block, + STATE(13235), 1, + aux_sym_import_declaration_repeat1, + [236148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10693), 1, + sym_block, + [236164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20203), 1, + sym__newline, + STATE(10696), 1, + sym_block, + STATE(13179), 1, + aux_sym_import_declaration_repeat1, + [236180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7393), 1, + sym_block, + [236196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20205), 1, + sym__newline, + STATE(10699), 1, + sym_block, + STATE(13182), 1, + aux_sym_import_declaration_repeat1, + [236212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20207), 1, + sym__newline, + STATE(7394), 1, + sym_block, + STATE(13769), 1, + aux_sym_import_declaration_repeat1, + [236228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20209), 1, + anon_sym_COMMA, + ACTIONS(20211), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20213), 1, + sym__newline, + STATE(10731), 1, + sym_block, + STATE(13187), 1, + aux_sym_import_declaration_repeat1, + [236260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20215), 1, + sym__newline, + STATE(7395), 1, + sym_block, + STATE(13774), 1, + aux_sym_import_declaration_repeat1, + [236276] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7396), 1, + sym_block, + [236292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3671), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236308] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20217), 1, + sym__newline, + STATE(3672), 1, + sym_block, + STATE(13265), 1, + aux_sym_import_declaration_repeat1, + [236324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20219), 1, + sym__newline, + STATE(10768), 1, + sym_block, + STATE(13195), 1, + aux_sym_import_declaration_repeat1, + [236340] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20221), 1, + sym__newline, + STATE(3673), 1, + sym_block, + STATE(13292), 1, + aux_sym_import_declaration_repeat1, + [236356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10772), 1, + sym_block, + [236372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20223), 1, + sym__newline, + STATE(10773), 1, + sym_block, + STATE(13198), 1, + aux_sym_import_declaration_repeat1, + [236388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(20225), 1, + sym__newline, + STATE(9124), 1, + sym_block, + STATE(13430), 1, + aux_sym_import_declaration_repeat1, + [236404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + anon_sym_RPAREN, + ACTIONS(20227), 1, + anon_sym_else, + ACTIONS(20230), 1, + sym__newline, + STATE(14666), 1, + aux_sym_import_declaration_repeat1, + [236420] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_RPAREN, + ACTIONS(20233), 1, + anon_sym_else, + ACTIONS(20236), 1, + sym__newline, + STATE(14667), 1, + aux_sym_import_declaration_repeat1, + [236436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20239), 1, + sym__newline, + STATE(3675), 1, + sym_block, + STATE(13321), 1, + aux_sym_import_declaration_repeat1, + [236452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10818), 1, + sym_block, + [236468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20241), 1, + sym__newline, + STATE(10819), 1, + sym_block, + STATE(13202), 1, + aux_sym_import_declaration_repeat1, + [236484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20243), 1, + sym__newline, + STATE(10820), 1, + sym_block, + STATE(13203), 1, + aux_sym_import_declaration_repeat1, + [236500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7321), 1, + sym_block, + [236516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20245), 1, + sym__newline, + STATE(10471), 1, + sym_block, + STATE(13206), 1, + aux_sym_import_declaration_repeat1, + [236532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20247), 1, + sym__newline, + STATE(7398), 1, + sym_block, + STATE(13790), 1, + aux_sym_import_declaration_repeat1, + [236548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3678), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10826), 1, + sym_block, + [236580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20249), 1, + sym__newline, + STATE(10648), 1, + sym_block, + STATE(13210), 1, + aux_sym_import_declaration_repeat1, + [236596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20251), 1, + sym__newline, + STATE(3679), 1, + sym_block, + STATE(13328), 1, + aux_sym_import_declaration_repeat1, + [236612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20253), 1, + sym__newline, + STATE(6758), 1, + sym_block, + STATE(12891), 1, + aux_sym_import_declaration_repeat1, + [236628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10522), 1, + sym_block, + [236644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20255), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3682), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10675), 1, + sym_block, + [236692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20257), 1, + sym__newline, + STATE(10627), 1, + sym_block, + STATE(13217), 1, + aux_sym_import_declaration_repeat1, + [236708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7399), 1, + sym_block, + [236724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20259), 1, + sym__newline, + STATE(10747), 1, + sym_block, + STATE(13219), 1, + aux_sym_import_declaration_repeat1, + [236740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8820), 1, + anon_sym_RBRACE, + ACTIONS(20261), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10574), 1, + sym_block, + [236772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20263), 1, + sym__newline, + STATE(10532), 1, + sym_block, + STATE(13222), 1, + aux_sym_import_declaration_repeat1, + [236788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3685), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20265), 1, + sym__newline, + STATE(3686), 1, + sym_block, + STATE(13341), 1, + aux_sym_import_declaration_repeat1, + [236820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7400), 1, + sym_block, + [236836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20267), 1, + sym__newline, + STATE(10599), 1, + sym_block, + STATE(13228), 1, + aux_sym_import_declaration_repeat1, + [236852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20269), 1, + sym__newline, + STATE(3688), 1, + sym_block, + STATE(13347), 1, + aux_sym_import_declaration_repeat1, + [236868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20271), 1, + sym__newline, + STATE(7401), 1, + sym_block, + STATE(13802), 1, + aux_sym_import_declaration_repeat1, + [236884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10604), 1, + sym_block, + [236900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20273), 1, + sym__newline, + STATE(10606), 1, + sym_block, + STATE(13232), 1, + aux_sym_import_declaration_repeat1, + [236916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20275), 1, + sym__newline, + STATE(10541), 1, + sym_block, + STATE(13233), 1, + aux_sym_import_declaration_repeat1, + [236932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10582), 1, + sym_block, + [236948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3693), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [236964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20277), 1, + sym__newline, + STATE(10784), 1, + sym_block, + STATE(13236), 1, + aux_sym_import_declaration_repeat1, + [236980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20279), 1, + sym__newline, + STATE(3695), 1, + sym_block, + STATE(13353), 1, + aux_sym_import_declaration_repeat1, + [236996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10548), 1, + sym_block, + [237012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10605), 1, + sym_block, + [237028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20281), 1, + sym__newline, + STATE(10617), 1, + sym_block, + STATE(13238), 1, + aux_sym_import_declaration_repeat1, + [237044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20283), 1, + sym__newline, + STATE(10676), 1, + sym_block, + STATE(13239), 1, + aux_sym_import_declaration_repeat1, + [237060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10701), 1, + sym_block, + [237076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20285), 1, + sym__newline, + STATE(10735), 1, + sym_block, + STATE(13241), 1, + aux_sym_import_declaration_repeat1, + [237092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20287), 1, + sym__newline, + STATE(10739), 1, + sym_block, + STATE(13242), 1, + aux_sym_import_declaration_repeat1, + [237108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10839), 1, + anon_sym_RBRACE, + ACTIONS(20289), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [237124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10786), 1, + sym_block, + [237140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20291), 1, + sym__newline, + STATE(10563), 1, + sym_block, + STATE(13245), 1, + aux_sym_import_declaration_repeat1, + [237156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20293), 1, + sym__newline, + STATE(10568), 1, + sym_block, + STATE(13246), 1, + aux_sym_import_declaration_repeat1, + [237172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8770), 1, + anon_sym_RPAREN, + ACTIONS(20295), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [237188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20297), 1, + sym__newline, + STATE(10619), 1, + sym_block, + STATE(13249), 1, + aux_sym_import_declaration_repeat1, + [237204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20299), 1, + sym__newline, + STATE(7402), 1, + sym_block, + STATE(13809), 1, + aux_sym_import_declaration_repeat1, + [237220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20301), 1, + sym__newline, + STATE(3699), 1, + sym_block, + STATE(13366), 1, + aux_sym_import_declaration_repeat1, + [237236] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10492), 1, + sym_block, + [237252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20303), 1, + sym__newline, + STATE(3489), 1, + sym_block, + STATE(13609), 1, + aux_sym_import_declaration_repeat1, + [237268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10557), 1, + sym_block, + [237284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20305), 1, + sym__newline, + STATE(10477), 1, + sym_block, + STATE(13254), 1, + aux_sym_import_declaration_repeat1, + [237300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20307), 1, + sym__newline, + STATE(10573), 1, + sym_block, + STATE(13255), 1, + aux_sym_import_declaration_repeat1, + [237316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10575), 1, + sym_block, + [237332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3490), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [237348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20309), 1, + sym__newline, + STATE(10796), 1, + sym_block, + STATE(13258), 1, + aux_sym_import_declaration_repeat1, + [237364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3702), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [237380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20311), 1, + sym__newline, + STATE(10616), 1, + sym_block, + STATE(13261), 1, + aux_sym_import_declaration_repeat1, + [237396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20313), 1, + sym__newline, + STATE(3703), 1, + sym_block, + STATE(13373), 1, + aux_sym_import_declaration_repeat1, + [237412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10545), 1, + sym_block, + [237428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20315), 1, + sym__newline, + STATE(10485), 1, + sym_block, + STATE(13264), 1, + aux_sym_import_declaration_repeat1, + [237444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20317), 1, + sym__newline, + STATE(3704), 1, + sym_block, + STATE(13374), 1, + aux_sym_import_declaration_repeat1, + [237460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20319), 1, + sym__newline, + STATE(10664), 1, + sym_block, + STATE(13267), 1, + aux_sym_import_declaration_repeat1, + [237476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10832), 1, + sym_block, + [237492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10691), 1, + sym_block, + [237508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20321), 1, + sym__newline, + STATE(10775), 1, + sym_block, + STATE(13269), 1, + aux_sym_import_declaration_repeat1, + [237524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3705), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [237540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10745), 1, + sym_block, + [237556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20323), 1, + sym__newline, + STATE(10800), 1, + sym_block, + STATE(13271), 1, + aux_sym_import_declaration_repeat1, + [237572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10620), 1, + sym_block, + [237588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10631), 1, + sym_block, + [237604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20325), 1, + sym__newline, + STATE(10635), 1, + sym_block, + STATE(13272), 1, + aux_sym_import_declaration_repeat1, + [237620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10642), 1, + sym_block, + [237636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10650), 1, + sym_block, + [237652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20327), 1, + sym__newline, + STATE(10656), 1, + sym_block, + STATE(13273), 1, + aux_sym_import_declaration_repeat1, + [237668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20329), 1, + sym__newline, + STATE(10698), 1, + sym_block, + STATE(13274), 1, + aux_sym_import_declaration_repeat1, + [237684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10716), 1, + sym_block, + [237700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10733), 1, + sym_block, + [237716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20331), 1, + sym__newline, + STATE(10740), 1, + sym_block, + STATE(13276), 1, + aux_sym_import_declaration_repeat1, + [237732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20333), 1, + sym__newline, + STATE(10744), 1, + sym_block, + STATE(13277), 1, + aux_sym_import_declaration_repeat1, + [237748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10770), 1, + sym_block, + [237764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20335), 1, + sym__newline, + STATE(10774), 1, + sym_block, + STATE(13279), 1, + aux_sym_import_declaration_repeat1, + [237780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20337), 1, + sym__newline, + STATE(10801), 1, + sym_block, + STATE(13280), 1, + aux_sym_import_declaration_repeat1, + [237796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8300), 1, + sym_record_body, + [237812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20339), 1, + sym__newline, + STATE(10601), 1, + sym_block, + STATE(13283), 1, + aux_sym_import_declaration_repeat1, + [237828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10657), 1, + sym_block, + [237844] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10694), 1, + sym_block, + [237860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20341), 1, + sym__newline, + STATE(10607), 1, + sym_block, + STATE(13285), 1, + aux_sym_import_declaration_repeat1, + [237876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20343), 1, + sym__newline, + STATE(3707), 1, + sym_block, + STATE(13378), 1, + aux_sym_import_declaration_repeat1, + [237892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10709), 1, + sym_block, + [237908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20345), 1, + sym__newline, + STATE(10777), 1, + sym_block, + STATE(13287), 1, + aux_sym_import_declaration_repeat1, + [237924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17174), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7184), 1, + sym_enum_body, + [237940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10565), 1, + sym_block, + [237956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20347), 1, + sym__newline, + STATE(10626), 1, + sym_block, + STATE(13289), 1, + aux_sym_import_declaration_repeat1, + [237972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20349), 1, + sym__newline, + STATE(10815), 1, + sym_block, + STATE(13290), 1, + aux_sym_import_declaration_repeat1, + [237988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10476), 1, + sym_block, + [238004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3708), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [238020] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20351), 1, + sym__newline, + STATE(10544), 1, + sym_block, + STATE(13293), 1, + aux_sym_import_declaration_repeat1, + [238036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10500), 1, + sym_block, + [238052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20353), 1, + sym__newline, + STATE(10499), 1, + sym_block, + STATE(13295), 1, + aux_sym_import_declaration_repeat1, + [238068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10503), 1, + sym_block, + [238084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20355), 1, + sym__newline, + STATE(10543), 1, + sym_block, + STATE(13296), 1, + aux_sym_import_declaration_repeat1, + [238100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10707), 1, + sym_block, + [238116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10584), 1, + sym_block, + [238132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10663), 1, + sym_block, + [238148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10705), 1, + sym_block, + [238164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20357), 1, + sym__newline, + STATE(10713), 1, + sym_block, + STATE(13298), 1, + aux_sym_import_declaration_repeat1, + [238180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10794), 1, + sym_block, + [238196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10686), 1, + sym_block, + [238212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20359), 1, + sym__newline, + STATE(10674), 1, + sym_block, + STATE(13299), 1, + aux_sym_import_declaration_repeat1, + [238228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10480), 1, + sym_block, + [238244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10481), 1, + sym_block, + [238260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20361), 1, + sym__newline, + STATE(10496), 1, + sym_block, + STATE(13300), 1, + aux_sym_import_declaration_repeat1, + [238276] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20363), 1, + sym__newline, + STATE(10516), 1, + sym_block, + STATE(13301), 1, + aux_sym_import_declaration_repeat1, + [238292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10529), 1, + sym_block, + [238308] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20365), 1, + sym__newline, + STATE(10535), 1, + sym_block, + STATE(13303), 1, + aux_sym_import_declaration_repeat1, + [238324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10536), 1, + sym_block, + [238340] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20367), 1, + sym__newline, + STATE(10537), 1, + sym_block, + STATE(13304), 1, + aux_sym_import_declaration_repeat1, + [238356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10538), 1, + sym_block, + [238372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20369), 1, + sym__newline, + STATE(10549), 1, + sym_block, + STATE(13306), 1, + aux_sym_import_declaration_repeat1, + [238388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10659), 1, + sym_block, + [238404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10680), 1, + sym_block, + [238420] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20371), 1, + sym__newline, + STATE(10811), 1, + sym_block, + STATE(13308), 1, + aux_sym_import_declaration_repeat1, + [238436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3709), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [238452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10687), 1, + sym_block, + [238468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20373), 1, + sym__newline, + STATE(10688), 1, + sym_block, + STATE(13310), 1, + aux_sym_import_declaration_repeat1, + [238484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10723), 1, + sym_block, + [238500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10748), 1, + sym_block, + [238516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20375), 1, + sym__newline, + STATE(10788), 1, + sym_block, + STATE(13311), 1, + aux_sym_import_declaration_repeat1, + [238532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10797), 1, + sym_block, + [238548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10799), 1, + sym_block, + [238564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10806), 1, + sym_block, + [238580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10623), 1, + sym_block, + [238596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20377), 1, + sym__newline, + STATE(10662), 1, + sym_block, + STATE(13312), 1, + aux_sym_import_declaration_repeat1, + [238612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10813), 1, + sym_block, + [238628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10474), 1, + sym_block, + [238644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20379), 1, + sym__newline, + STATE(10526), 1, + sym_block, + STATE(13313), 1, + aux_sym_import_declaration_repeat1, + [238660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10551), 1, + sym_block, + [238676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20381), 1, + sym__newline, + STATE(10553), 1, + sym_block, + STATE(13314), 1, + aux_sym_import_declaration_repeat1, + [238692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10570), 1, + sym_block, + [238708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20383), 1, + sym__newline, + STATE(10576), 1, + sym_block, + STATE(13315), 1, + aux_sym_import_declaration_repeat1, + [238724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10579), 1, + sym_block, + [238740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10488), 1, + sym_block, + [238756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10524), 1, + sym_block, + [238772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10525), 1, + sym_block, + [238788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10528), 1, + sym_block, + [238804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10539), 1, + sym_block, + [238820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LBRACE, + ACTIONS(20385), 1, + sym__newline, + STATE(10542), 1, + sym_block, + STATE(13317), 1, + aux_sym_import_declaration_repeat1, + [238836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10580), 1, + sym_block, + [238852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 1, + anon_sym_RPAREN, + ACTIONS(20387), 1, + anon_sym_else, + ACTIONS(20390), 1, + sym__newline, + STATE(14668), 1, + aux_sym_import_declaration_repeat1, + [238868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20393), 1, + sym__newline, + STATE(3710), 1, + sym_block, + STATE(13383), 1, + aux_sym_import_declaration_repeat1, + [238884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20395), 1, + sym__newline, + STATE(3711), 1, + sym_block, + STATE(13385), 1, + aux_sym_import_declaration_repeat1, + [238900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3712), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [238916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20397), 1, + sym__newline, + STATE(3713), 1, + sym_block, + STATE(13387), 1, + aux_sym_import_declaration_repeat1, + [238932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20399), 1, + sym__newline, + STATE(3714), 1, + sym_block, + STATE(13388), 1, + aux_sym_import_declaration_repeat1, + [238948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7403), 1, + sym_block, + [238964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4124), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [238980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6800), 1, + sym_block, + [238996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20401), 1, + sym__newline, + STATE(6801), 1, + sym_block, + STATE(12967), 1, + aux_sym_import_declaration_repeat1, + [239012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3716), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20403), 1, + sym__newline, + STATE(3717), 1, + sym_block, + STATE(13393), 1, + aux_sym_import_declaration_repeat1, + [239044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20405), 1, + sym__newline, + STATE(3718), 1, + sym_block, + STATE(13396), 1, + aux_sym_import_declaration_repeat1, + [239060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20407), 1, + sym__newline, + STATE(6810), 1, + sym_block, + STATE(13094), 1, + aux_sym_import_declaration_repeat1, + [239076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(20409), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14961), 1, + sym__for_capture_bar, + [239092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6607), 1, + sym_block, + [239108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20411), 1, + sym__newline, + STATE(6754), 1, + sym_block, + STATE(13431), 1, + aux_sym_import_declaration_repeat1, + [239124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20413), 1, + sym__newline, + STATE(6766), 1, + sym_block, + STATE(13438), 1, + aux_sym_import_declaration_repeat1, + [239140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6798), 1, + sym_block, + [239156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20415), 1, + sym__newline, + STATE(3720), 1, + sym_block, + STATE(13402), 1, + aux_sym_import_declaration_repeat1, + [239172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20417), 1, + sym__newline, + STATE(6817), 1, + sym_block, + STATE(13443), 1, + aux_sym_import_declaration_repeat1, + [239188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20419), 1, + sym__newline, + STATE(7404), 1, + sym_block, + STATE(13819), 1, + aux_sym_import_declaration_repeat1, + [239204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20421), 1, + sym__newline, + STATE(7405), 1, + sym_block, + STATE(13820), 1, + aux_sym_import_declaration_repeat1, + [239220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3723), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239236] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_DQUOTE, + STATE(13344), 1, + aux_sym_string_repeat1, + ACTIONS(20425), 2, + sym_string_content, + sym_escape_sequence, + [239250] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6847), 1, + sym_block, + [239266] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20427), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [239280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18537), 1, + anon_sym_LBRACE, + ACTIONS(20429), 1, + sym__newline, + STATE(8723), 1, + sym_record_body, + STATE(13357), 1, + aux_sym_import_declaration_repeat1, + [239296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19445), 1, + anon_sym_COMMA, + ACTIONS(20431), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3725), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20433), 1, + sym__newline, + STATE(6692), 1, + sym_block, + STATE(13466), 1, + aux_sym_import_declaration_repeat1, + [239344] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18993), 1, + anon_sym_DASH, + STATE(14084), 1, + sym__type_constant, + ACTIONS(20435), 2, + sym_integer, + sym_character, + [239358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(20437), 1, + anon_sym_LBRACE, + STATE(7530), 1, + sym_initializer_list, + STATE(14924), 1, + sym_argument_list, + [239374] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20439), 1, + sym__newline, + STATE(3726), 1, + sym_block, + STATE(13412), 1, + aux_sym_import_declaration_repeat1, + [239390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20441), 1, sym__newline, STATE(3727), 1, sym_block, - STATE(4527), 1, + STATE(13415), 1, aux_sym_import_declaration_repeat1, - [101555] = 5, + [239406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(8066), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3599), 1, - sym_record_body, - [101571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8266), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3035), 1, - sym_enum_body, - [101587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3407), 1, - anon_sym_RPAREN, - ACTIONS(9097), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8142), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, STATE(3728), 1, sym_block, - [101619] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8370), 1, + ACTIONS(18178), 1, anon_sym_LBRACE, - STATE(837), 1, + ACTIONS(20443), 1, + sym__newline, + STATE(10851), 1, sym_record_body, - STATE(1537), 1, + STATE(12371), 1, aux_sym_import_declaration_repeat1, - [101635] = 5, + [239438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(568), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9099), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8601), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(3219), 1, + STATE(7345), 1, + sym_block, + [239454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6822), 1, + sym_block, + [239470] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18537), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8395), 1, + sym_record_body, + [239486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16524), 1, + anon_sym_LBRACE, + STATE(2504), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20445), 1, + sym__newline, + STATE(3730), 1, + sym_block, + STATE(13420), 1, + aux_sym_import_declaration_repeat1, + [239518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18054), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10301), 1, sym_enum_body, - [101667] = 5, + [239534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1994), 1, - sym_block, - [101683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9101), 1, - anon_sym_COMMA, - ACTIONS(9103), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101699] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5450), 1, + ACTIONS(9348), 1, anon_sym_RBRACE, - ACTIONS(9105), 1, + ACTIONS(20447), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101715] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9107), 1, - anon_sym_DQUOTE, - STATE(4429), 1, - aux_sym_string_repeat1, - ACTIONS(8892), 2, - sym_string_content, - sym_escape_sequence, - [101729] = 5, + [239550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 1, - sym__newline, - ACTIONS(9109), 1, - anon_sym_PIPE2, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(5097), 1, - sym__for_capture_bar, - [101745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(9111), 1, + ACTIONS(20449), 1, sym__newline, - STATE(1854), 1, + STATE(3732), 1, sym_block, - STATE(4504), 1, + STATE(13425), 1, aux_sym_import_declaration_repeat1, - [101761] = 5, + [239566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9113), 1, + ACTIONS(2257), 1, sym__newline, - STATE(1995), 1, - sym_block, - STATE(4226), 1, - aux_sym_import_declaration_repeat1, - [101777] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8260), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3053), 1, - sym_record_body, - [101793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8930), 1, + ACTIONS(11085), 1, + anon_sym_RBRACE, + ACTIONS(20451), 1, anon_sym_COMMA, - ACTIONS(9115), 1, - anon_sym_RBRACK, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101809] = 5, + [239582] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8324), 1, + ACTIONS(18188), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2274), 1, + ACTIONS(20453), 1, + sym__newline, + STATE(10852), 1, sym_enum_body, - [101825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3055), 1, - anon_sym_RBRACE, - ACTIONS(9117), 1, - anon_sym_COMMA, - STATE(1537), 1, + STATE(12380), 1, aux_sym_import_declaration_repeat1, - [101841] = 5, + [239598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(1799), 1, + STATE(6720), 1, sym_block, - [101857] = 5, + [239614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9119), 1, + ACTIONS(2257), 1, sym__newline, - STATE(1801), 1, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3734), 1, sym_block, - STATE(4481), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [101873] = 5, + [239630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9121), 1, - anon_sym_COMMA, - ACTIONS(9123), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5228), 1, - anon_sym_RBRACE, - ACTIONS(9125), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [101905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1996), 1, + ACTIONS(20455), 1, + sym__newline, + STATE(6609), 1, sym_block, - [101921] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3431), 1, - anon_sym_RPAREN, - ACTIONS(9127), 1, - anon_sym_COMMA, - STATE(1537), 1, + STATE(13494), 1, aux_sym_import_declaration_repeat1, - [101937] = 5, + [239646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13455), 1, anon_sym_LBRACE, - ACTIONS(9129), 1, + ACTIONS(20457), 1, sym__newline, - STATE(1997), 1, + STATE(8478), 1, sym_block, - STATE(4234), 1, + STATE(13390), 1, aux_sym_import_declaration_repeat1, - [101953] = 5, + [239662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(9131), 1, - anon_sym_else, - ACTIONS(9134), 1, - sym__newline, - STATE(5008), 1, - aux_sym_import_declaration_repeat1, - [101969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8260), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(9137), 1, + ACTIONS(20459), 1, sym__newline, - STATE(3092), 1, - sym_record_body, - STATE(4465), 1, - aux_sym_import_declaration_repeat1, - [101985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8324), 1, - anon_sym_LBRACE, - ACTIONS(9139), 1, - sym__newline, - STATE(2298), 1, - sym_enum_body, - STATE(4466), 1, - aux_sym_import_declaration_repeat1, - [102001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(9141), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9143), 1, - sym__newline, - STATE(1803), 1, + STATE(3735), 1, sym_block, - STATE(4484), 1, + STATE(13429), 1, aux_sym_import_declaration_repeat1, - [102033] = 5, + [239678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3435), 1, - anon_sym_RPAREN, - ACTIONS(9145), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8260), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(3034), 1, - sym_record_body, - [102065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8324), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2228), 1, - sym_enum_body, - [102081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4945), 1, - sym__type_constant, - ACTIONS(9147), 2, - sym_integer, - sym_character, - [102095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3916), 1, - sym_string, - [102111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3441), 1, - anon_sym_RPAREN, - ACTIONS(9149), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102127] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3061), 1, - anon_sym_RBRACK, - ACTIONS(9151), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102143] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - anon_sym_RPAREN, - ACTIONS(9153), 1, - anon_sym_else, - ACTIONS(9156), 1, - sym__newline, - STATE(5009), 1, - aux_sym_import_declaration_repeat1, - [102159] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7632), 1, - anon_sym_RPAREN, - ACTIONS(9159), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102175] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_RPAREN, - ACTIONS(9161), 1, - anon_sym_else, - ACTIONS(9164), 1, - sym__newline, - STATE(5010), 1, - aux_sym_import_declaration_repeat1, - [102191] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 1, - anon_sym_RPAREN, - ACTIONS(9167), 1, - anon_sym_else, - ACTIONS(9170), 1, - sym__newline, - STATE(5011), 1, - aux_sym_import_declaration_repeat1, - [102207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_RPAREN, - ACTIONS(9173), 1, - anon_sym_else, - ACTIONS(9176), 1, - sym__newline, - STATE(5012), 1, - aux_sym_import_declaration_repeat1, - [102223] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8318), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2272), 1, - sym_record_body, - [102239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5529), 1, - anon_sym_RPAREN, - ACTIONS(9179), 1, - anon_sym_else, - ACTIONS(9182), 1, - sym__newline, - STATE(5013), 1, - aux_sym_import_declaration_repeat1, - [102255] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5264), 1, - anon_sym_RBRACE, - ACTIONS(9185), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8318), 1, - anon_sym_LBRACE, - ACTIONS(9187), 1, - sym__newline, - STATE(2297), 1, - sym_record_body, - STATE(4480), 1, - aux_sym_import_declaration_repeat1, - [102287] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8318), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2227), 1, - sym_record_body, - [102303] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1834), 1, + STATE(7407), 1, sym_block, - [102319] = 5, + [239694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(9189), 1, + ACTIONS(20461), 1, sym__newline, - STATE(1805), 1, + STATE(3737), 1, sym_block, - STATE(4600), 1, + STATE(13441), 1, aux_sym_import_declaration_repeat1, - [102335] = 4, + [239710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4776), 1, - sym__type_constant, - ACTIONS(9191), 2, - sym_integer, - sym_character, - [102349] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1837), 1, + ACTIONS(20463), 1, + sym__newline, + STATE(6626), 1, sym_block, - [102365] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3075), 1, - anon_sym_RBRACE, - ACTIONS(9193), 1, - anon_sym_COMMA, - STATE(1537), 1, + STATE(13500), 1, aux_sym_import_declaration_repeat1, - [102381] = 5, + [239726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8575), 1, - anon_sym_LBRACE, - ACTIONS(9195), 1, + ACTIONS(2257), 1, sym__newline, - STATE(695), 1, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3738), 1, sym_block, - STATE(4288), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [102397] = 4, + [239742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4858), 1, - sym__type_constant, - ACTIONS(9197), 2, - sym_integer, - sym_character, - [102411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4876), 1, - sym__type_constant, - ACTIONS(9199), 2, - sym_integer, - sym_character, - [102425] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2002), 1, + STATE(3739), 1, sym_block, - [102441] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1808), 1, - sym_block, - [102457] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1900), 1, - sym_block, - [102473] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(9201), 1, - anon_sym_else, - ACTIONS(9203), 1, - sym__newline, - STATE(4787), 1, - aux_sym_import_declaration_repeat1, - [102489] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9206), 1, - anon_sym_RPAREN, - ACTIONS(9208), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4801), 1, - sym__type_constant, - ACTIONS(9210), 2, - sym_integer, - sym_character, - [102519] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4811), 1, - sym__type_constant, - ACTIONS(9212), 2, - sym_integer, - sym_character, - [102533] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9214), 1, - sym__newline, - STATE(1901), 1, - sym_block, - STATE(4395), 1, - aux_sym_import_declaration_repeat1, - [102549] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9216), 1, - sym__newline, - STATE(1902), 1, - sym_block, - STATE(4403), 1, - aux_sym_import_declaration_repeat1, - [102565] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9218), 1, - sym__newline, - STATE(2003), 1, - sym_block, - STATE(4243), 1, - aux_sym_import_declaration_repeat1, - [102581] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - anon_sym_RPAREN, - ACTIONS(9220), 1, - anon_sym_else, - ACTIONS(9222), 1, - sym__newline, - STATE(4790), 1, - aux_sym_import_declaration_repeat1, - [102597] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_RPAREN, - ACTIONS(9225), 1, - anon_sym_else, - ACTIONS(9227), 1, - sym__newline, - STATE(4796), 1, - aux_sym_import_declaration_repeat1, - [102613] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9072), 1, - anon_sym_COMMA, - ACTIONS(9230), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102629] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4881), 1, - sym__type_constant, - ACTIONS(9232), 2, - sym_integer, - sym_character, - [102643] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 1, - anon_sym_RPAREN, - ACTIONS(9234), 1, - anon_sym_else, - ACTIONS(9236), 1, - sym__newline, - STATE(4798), 1, - aux_sym_import_declaration_repeat1, - [102659] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1903), 1, - sym_block, - [102675] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_RPAREN, - ACTIONS(9239), 1, - anon_sym_else, - ACTIONS(9241), 1, - sym__newline, - STATE(4799), 1, - aux_sym_import_declaration_repeat1, - [102691] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8142), 1, - anon_sym_LBRACE, - ACTIONS(9244), 1, + ACTIONS(20465), 1, sym__newline, STATE(3740), 1, sym_block, - STATE(4558), 1, + STATE(13449), 1, aux_sym_import_declaration_repeat1, - [102707] = 5, + [239774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8810), 1, - anon_sym_COMMA, - ACTIONS(9246), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102723] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(9248), 1, + ACTIONS(20467), 1, sym__newline, - STATE(1981), 1, + STATE(7408), 1, sym_block, - STATE(4614), 1, + STATE(13848), 1, aux_sym_import_declaration_repeat1, - [102739] = 5, + [239790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9250), 1, + ACTIONS(2257), 1, sym__newline, - STATE(1905), 1, - sym_block, - STATE(4536), 1, - aux_sym_import_declaration_repeat1, - [102755] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5529), 1, - anon_sym_RPAREN, - ACTIONS(9252), 1, - anon_sym_else, - ACTIONS(9254), 1, - sym__newline, - STATE(4804), 1, - aux_sym_import_declaration_repeat1, - [102771] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9257), 1, - sym__newline, - STATE(1816), 1, - sym_block, - STATE(4430), 1, - aux_sym_import_declaration_repeat1, - [102787] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(9259), 1, - sym__newline, - STATE(3937), 1, - sym_string, - STATE(4675), 1, - aux_sym_import_declaration_repeat1, - [102803] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1865), 1, - sym_block, - [102819] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8370), 1, - anon_sym_LBRACE, - STATE(980), 1, - sym_record_body, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102835] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7685), 1, - anon_sym_RPAREN, - ACTIONS(9261), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102851] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(700), 1, + ACTIONS(9114), 1, anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9263), 1, + ACTIONS(20469), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [102867] = 5, + [239806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(5456), 1, - anon_sym_RBRACE, - ACTIONS(9265), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [102883] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(9267), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(3302), 1, - sym_initializer_list, - STATE(5056), 1, - sym_argument_list, - [102899] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3938), 1, - sym_block, - [102915] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9269), 1, - sym__newline, - STATE(1866), 1, - sym_block, - STATE(4564), 1, - aux_sym_import_declaration_repeat1, - [102931] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2004), 1, - sym_block, - [102947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7845), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [102957] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7956), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3947), 1, - sym_record_body, - [102973] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9271), 1, - sym__newline, - STATE(1868), 1, - sym_block, - STATE(4571), 1, - aux_sym_import_declaration_repeat1, - [102989] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3079), 1, - anon_sym_RPAREN, - ACTIONS(9273), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [103005] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2857), 1, - anon_sym_RBRACK, - ACTIONS(8996), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [103021] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8142), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, STATE(3743), 1, sym_block, - [103037] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5244), 1, - anon_sym_RBRACE, - ACTIONS(9275), 1, - anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103053] = 5, + [239822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(812), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9277), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [103069] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8142), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - ACTIONS(9279), 1, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6628), 1, + sym_block, + [239838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10985), 1, + anon_sym_RBRACE, + ACTIONS(20471), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20473), 1, sym__newline, STATE(3744), 1, sym_block, - STATE(4573), 1, + STATE(13453), 1, aux_sym_import_declaration_repeat1, - [103085] = 5, + [239870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2006), 1, + ACTIONS(20475), 1, + sym__newline, + STATE(6629), 1, sym_block, - [103101] = 5, + STATE(13507), 1, + aux_sym_import_declaration_repeat1, + [239886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(9281), 1, - sym__newline, - STATE(1870), 1, + STATE(3745), 1, sym_block, - STATE(4584), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103117] = 5, + [239902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(8996), 1, + ACTIONS(19445), 1, anon_sym_COMMA, - ACTIONS(9283), 1, + ACTIONS(20477), 1, anon_sym_RBRACK, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103133] = 5, + [239918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9285), 1, + ACTIONS(2257), 1, sym__newline, - STATE(2007), 1, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3746), 1, sym_block, - STATE(4269), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103149] = 4, + [239934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(9287), 2, - sym_sink, - sym_identifier, - [103163] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1940), 1, + ACTIONS(20479), 1, + sym__newline, + STATE(3747), 1, sym_block, - [103179] = 5, + STATE(13455), 1, + aux_sym_import_declaration_repeat1, + [239950] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9289), 1, + ACTIONS(2257), 1, sym__newline, - STATE(1941), 1, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3748), 1, sym_block, - STATE(4666), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103195] = 5, + [239966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(9291), 1, + ACTIONS(2257), 1, sym__newline, - STATE(3920), 1, - sym_string, - STATE(4247), 1, - aux_sym_import_declaration_repeat1, - [103211] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9293), 1, - anon_sym_DQUOTE, - STATE(4542), 1, - aux_sym_string_repeat1, - ACTIONS(9295), 2, - sym_string_content, - sym_escape_sequence, - [103225] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3917), 1, + STATE(3749), 1, sym_block, - [103241] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [239982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7956), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3810), 1, - sym_record_body, - [103257] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9297), 1, - anon_sym_DQUOTE, - STATE(4429), 1, - aux_sym_string_repeat1, - ACTIONS(8892), 2, - sym_string_content, - sym_escape_sequence, - [103271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8066), 1, - anon_sym_LBRACE, - ACTIONS(9299), 1, + ACTIONS(20481), 1, sym__newline, - STATE(3699), 1, - sym_record_body, - STATE(4211), 1, - aux_sym_import_declaration_repeat1, - [103287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9301), 1, - sym__newline, - STATE(4404), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(9287), 2, - sym_sink, - sym_identifier, - [103301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2009), 1, + STATE(3750), 1, sym_block, - [103317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, + STATE(13456), 1, aux_sym_import_declaration_repeat1, - STATE(1926), 1, - sym_block, - [103333] = 5, + [239998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3097), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8591), 1, + sym_block, + [240014] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20483), 1, + sym__newline, + STATE(3751), 1, + sym_block, + STATE(13457), 1, + aux_sym_import_declaration_repeat1, + [240030] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20485), 1, + sym__newline, + STATE(6806), 1, + sym_block, + STATE(13592), 1, + aux_sym_import_declaration_repeat1, + [240046] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3752), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11163), 1, anon_sym_RBRACE, - ACTIONS(9303), 1, + ACTIONS(20487), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103349] = 5, + [240078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(5304), 1, - anon_sym_RBRACE, - ACTIONS(9305), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [103365] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(9307), 1, - anon_sym_LBRACE, - STATE(569), 1, - sym_initializer_list, - STATE(5035), 1, - sym_argument_list, - [103381] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1942), 1, - sym_block, - [103397] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8470), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3787), 1, - sym_enum_body, - [103413] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1943), 1, - sym_block, - [103429] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9309), 1, - sym__newline, - STATE(2010), 1, - sym_block, - STATE(4287), 1, - aux_sym_import_declaration_repeat1, - [103445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9311), 1, - sym__newline, - STATE(1944), 1, - sym_block, - STATE(4236), 1, - aux_sym_import_declaration_repeat1, - [103461] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4840), 1, - sym__type_constant, - ACTIONS(9313), 2, - sym_integer, - sym_character, - [103475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2941), 1, + ACTIONS(9126), 1, anon_sym_RPAREN, - ACTIONS(9315), 1, + ACTIONS(20489), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103491] = 5, + [240094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(8204), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(573), 1, - sym_record_body, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [103507] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8142), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, STATE(3753), 1, sym_block, - [103523] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8509), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, + ACTIONS(20491), 1, + sym__newline, + STATE(3754), 1, + sym_block, + STATE(13460), 1, aux_sym_import_declaration_repeat1, - STATE(2907), 1, + [240126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7561), 1, + sym_block, + [240142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20493), 1, + sym__newline, + STATE(3755), 1, + sym_block, + STATE(13461), 1, + aux_sym_import_declaration_repeat1, + [240158] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16524), 1, + anon_sym_LBRACE, + ACTIONS(20495), 1, + sym__newline, + STATE(2513), 1, sym_record_body, - [103539] = 2, + STATE(13436), 1, + aux_sym_import_declaration_repeat1, + [240174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9317), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [103549] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8491), 1, + ACTIONS(18054), 1, anon_sym_LBRACE, - STATE(803), 1, + ACTIONS(20497), 1, + sym__newline, + STATE(10450), 1, sym_enum_body, - STATE(1537), 1, + STATE(13437), 1, aux_sym_import_declaration_repeat1, - [103565] = 5, + [240190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1945), 1, - sym_block, - [103581] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2955), 1, - anon_sym_RPAREN, - ACTIONS(9319), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [103597] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1906), 1, - sym_block, - [103613] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1946), 1, - sym_block, - [103629] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(706), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9321), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [103645] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9323), 1, - sym__newline, - STATE(1947), 1, - sym_block, - STATE(4249), 1, - aux_sym_import_declaration_repeat1, - [103661] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9325), 1, - anon_sym_DQUOTE, - STATE(4597), 1, - aux_sym_string_repeat1, - ACTIONS(9327), 2, - sym_string_content, - sym_escape_sequence, - [103675] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9329), 1, - sym__newline, - STATE(1948), 1, - sym_block, - STATE(4261), 1, - aux_sym_import_declaration_repeat1, - [103691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4871), 1, - sym__type_constant, - ACTIONS(9331), 2, - sym_integer, - sym_character, - [103705] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1907), 1, - sym_block, - [103721] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1949), 1, - sym_block, - [103737] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8142), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, STATE(3756), 1, sym_block, - [103753] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(1950), 1, - sym_block, - [103769] = 5, + [240206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(9333), 1, + ACTIONS(20499), 1, sym__newline, - STATE(1908), 1, + STATE(3757), 1, sym_block, - STATE(4550), 1, + STATE(13463), 1, aux_sym_import_declaration_repeat1, - [103785] = 5, + [240222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9130), 1, + anon_sym_RBRACE, + ACTIONS(20501), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(9335), 1, + ACTIONS(20503), 1, sym__newline, - STATE(1951), 1, + STATE(3758), 1, sym_block, - STATE(4292), 1, + STATE(13465), 1, aux_sym_import_declaration_repeat1, - [103801] = 5, + [240254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, anon_sym_LBRACE, - ACTIONS(9337), 1, - sym__newline, - STATE(1909), 1, - sym_block, - STATE(4552), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103817] = 4, + STATE(6660), 1, + sym_block, + [240270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4919), 1, - sym__type_constant, - ACTIONS(9339), 2, - sym_integer, - sym_character, - [103831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4922), 1, - sym__type_constant, - ACTIONS(9341), 2, - sym_integer, - sym_character, - [103845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - ACTIONS(9343), 1, + ACTIONS(20505), 1, sym__newline, - STATE(1952), 1, + STATE(6698), 1, sym_block, - STATE(4302), 1, + STATE(13722), 1, aux_sym_import_declaration_repeat1, - [103861] = 4, + [240286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4980), 1, - sym__type_constant, - ACTIONS(9345), 2, - sym_integer, - sym_character, - [103875] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4981), 1, - sym__type_constant, - ACTIONS(9347), 2, - sym_integer, - sym_character, - [103889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3551), 1, + ACTIONS(10989), 1, + anon_sym_RBRACE, + ACTIONS(20507), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240302] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9354), 1, + anon_sym_RBRACK, + ACTIONS(20509), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240318] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20511), 1, + sym__newline, + STATE(3760), 1, + sym_block, + STATE(13478), 1, + aux_sym_import_declaration_repeat1, + [240334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20513), 1, + sym__newline, + STATE(6727), 1, + sym_block, + STATE(13724), 1, + aux_sym_import_declaration_repeat1, + [240350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3761), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9136), 1, + anon_sym_RBRACK, + ACTIONS(20195), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19465), 1, + anon_sym_COMMA, + ACTIONS(20515), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3762), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6752), 1, + sym_block, + [240430] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20517), 1, + sym__newline, + STATE(3763), 1, + sym_block, + STATE(13480), 1, + aux_sym_import_declaration_repeat1, + [240446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20519), 1, + sym__newline, + STATE(8377), 1, + sym_block, + STATE(13451), 1, + aux_sym_import_declaration_repeat1, + [240462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20521), 1, + sym__newline, + STATE(7409), 1, + sym_block, + STATE(13852), 1, + aux_sym_import_declaration_repeat1, + [240478] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3765), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240494] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20523), 1, + sym__newline, + STATE(6844), 1, + sym_block, + STATE(13730), 1, + aux_sym_import_declaration_repeat1, + [240510] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20525), 1, + anon_sym_DQUOTE, + STATE(12650), 1, + aux_sym_string_repeat1, + ACTIONS(20527), 2, + sym_string_content, + sym_escape_sequence, + [240524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20529), 1, + sym__newline, + STATE(3769), 1, + sym_block, + STATE(13484), 1, + aux_sym_import_declaration_repeat1, + [240540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20531), 1, + sym__newline, + STATE(7346), 1, + sym_block, + STATE(12892), 1, + aux_sym_import_declaration_repeat1, + [240556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3771), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20533), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20535), 1, + sym__newline, + STATE(3772), 1, + sym_block, + STATE(13488), 1, + aux_sym_import_declaration_repeat1, + [240604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20537), 1, + sym__newline, + STATE(3773), 1, + sym_block, + STATE(13489), 1, + aux_sym_import_declaration_repeat1, + [240620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3774), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9139), 1, + sym_block, + [240652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6634), 1, + sym_block, + [240668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9150), 1, anon_sym_RPAREN, - ACTIONS(9208), 1, + ACTIONS(20539), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103905] = 5, + [240684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1910), 1, + ACTIONS(20541), 1, + sym__newline, + STATE(3776), 1, sym_block, - [103921] = 5, + STATE(13492), 1, + aux_sym_import_declaration_repeat1, + [240700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1923), 1, + ACTIONS(20543), 1, + sym__newline, + STATE(7264), 1, sym_block, - [103937] = 5, + STATE(13472), 1, + aux_sym_import_declaration_repeat1, + [240716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(8220), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(3340), 1, + STATE(7274), 1, sym_block, - [103953] = 5, + [240732] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16524), 1, anon_sym_LBRACE, - ACTIONS(9349), 1, - sym__newline, - STATE(1924), 1, - sym_block, - STATE(4620), 1, + STATE(2526), 1, + sym_record_body, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103969] = 5, + [240748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(5320), 1, + ACTIONS(18054), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10324), 1, + sym_enum_body, + [240764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6708), 1, + sym_block, + [240780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20545), 1, + sym__newline, + STATE(6736), 1, + sym_block, + STATE(13735), 1, + aux_sym_import_declaration_repeat1, + [240796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20547), 1, + sym__newline, + STATE(6674), 1, + sym_block, + STATE(13737), 1, + aux_sym_import_declaration_repeat1, + [240812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3777), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9156), 1, anon_sym_RBRACE, - ACTIONS(9351), 1, + ACTIONS(20549), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [103985] = 5, + [240844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(1960), 1, + STATE(6748), 1, sym_block, - [104001] = 5, + [240860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3629), 1, + ACTIONS(10995), 1, anon_sym_RBRACE, - ACTIONS(9353), 1, + ACTIONS(20551), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [104017] = 5, + [240876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8370), 1, + ACTIONS(13695), 1, anon_sym_LBRACE, - ACTIONS(9355), 1, + ACTIONS(20553), 1, + sym__newline, + STATE(6753), 1, + sym_block, + STATE(13740), 1, + aux_sym_import_declaration_repeat1, + [240892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20555), 1, + sym__newline, + STATE(6636), 1, + sym_block, + STATE(13742), 1, + aux_sym_import_declaration_repeat1, + [240908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20557), 1, + sym__newline, + STATE(3778), 1, + sym_block, + STATE(13496), 1, + aux_sym_import_declaration_repeat1, + [240924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9162), 1, + anon_sym_RBRACK, + ACTIONS(20559), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3779), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [240956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20561), 1, + sym__newline, + STATE(3780), 1, + sym_block, + STATE(13497), 1, + aux_sym_import_declaration_repeat1, + [240972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8513), 1, + sym_block, + [240988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20563), 1, + sym__newline, + STATE(8554), 1, + sym_block, + STATE(13483), 1, + aux_sym_import_declaration_repeat1, + [241004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3781), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241020] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20565), 1, + sym__newline, + STATE(8558), 1, + sym_block, + STATE(13486), 1, + aux_sym_import_declaration_repeat1, + [241036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3782), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3783), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3784), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11001), 1, + anon_sym_RBRACE, + ACTIONS(20567), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20569), 1, + sym__newline, + STATE(3785), 1, + sym_block, + STATE(13505), 1, + aux_sym_import_declaration_repeat1, + [241116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3786), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3787), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20571), 1, + sym__newline, + STATE(3788), 1, + sym_block, + STATE(13506), 1, + aux_sym_import_declaration_repeat1, + [241164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3789), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18989), 1, + anon_sym_DQUOTE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10976), 1, + sym_string, + [241196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3790), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6654), 1, + sym_block, + [241228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20573), 1, + sym__newline, + STATE(6619), 1, + sym_block, + STATE(13752), 1, + aux_sym_import_declaration_repeat1, + [241244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1917), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20575), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20577), 1, + sym__newline, + STATE(3791), 1, + sym_block, + STATE(13508), 1, + aux_sym_import_declaration_repeat1, + [241276] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20579), 1, + sym__newline, + STATE(6733), 1, + sym_block, + STATE(13755), 1, + aux_sym_import_declaration_repeat1, + [241292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9174), 1, + anon_sym_RPAREN, + ACTIONS(20581), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241308] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7552), 1, + sym_block, + [241324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20583), 1, + sym__newline, + STATE(7556), 1, + sym_block, + STATE(13504), 1, + aux_sym_import_declaration_repeat1, + [241340] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18989), 1, + anon_sym_DQUOTE, + ACTIONS(20585), 1, + sym__newline, + STATE(10986), 1, + sym_string, + STATE(13713), 1, + aux_sym_import_declaration_repeat1, + [241356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20587), 1, + sym__newline, + STATE(3792), 1, + sym_block, + STATE(13509), 1, + aux_sym_import_declaration_repeat1, + [241372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20589), 1, + sym__newline, + STATE(6746), 1, + sym_block, + STATE(13761), 1, + aux_sym_import_declaration_repeat1, + [241388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2135), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20591), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3793), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241420] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20593), 1, + sym__newline, + STATE(3794), 1, + sym_block, + STATE(13514), 1, + aux_sym_import_declaration_repeat1, + [241436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3795), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20595), 1, + sym__newline, + STATE(8649), 1, + sym_block, + STATE(13510), 1, + aux_sym_import_declaration_repeat1, + [241468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20597), 1, sym__newline, STATE(3796), 1, - sym_record_body, - STATE(4282), 1, - aux_sym_import_declaration_repeat1, - [104033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9357), 1, - sym__newline, - STATE(1961), 1, sym_block, - STATE(4315), 1, + STATE(13516), 1, aux_sym_import_declaration_repeat1, - [104049] = 5, + [241484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(5260), 1, - anon_sym_RBRACE, - ACTIONS(9359), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8962), 1, - anon_sym_COMMA, - ACTIONS(9361), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104081] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5290), 1, - anon_sym_RBRACE, - ACTIONS(9363), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104097] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, + ACTIONS(13455), 1, anon_sym_LBRACE, - ACTIONS(9365), 1, - sym__newline, - STATE(1962), 1, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8710), 1, sym_block, - STATE(4348), 1, - aux_sym_import_declaration_repeat1, - [104113] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9367), 1, - anon_sym_DQUOTE, - STATE(4429), 1, - aux_sym_string_repeat1, - ACTIONS(8892), 2, - sym_string_content, - sym_escape_sequence, - [104127] = 5, + [241500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(8930), 1, - anon_sym_COMMA, - ACTIONS(9369), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104143] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8539), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(9371), 1, - sym__newline, - STATE(2901), 1, - sym_enum_body, - STATE(4283), 1, - aux_sym_import_declaration_repeat1, - [104159] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1841), 1, + STATE(3797), 1, sym_block, - [104175] = 5, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, + ACTIONS(13725), 1, anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1874), 1, + ACTIONS(20599), 1, + sym__newline, + STATE(3798), 1, sym_block, - [104191] = 5, + STATE(13519), 1, + aux_sym_import_declaration_repeat1, + [241532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(6608), 1, + ACTIONS(13455), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - STATE(2011), 1, + STATE(8681), 1, sym_block, - [104207] = 5, + [241548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13455), 1, anon_sym_LBRACE, - ACTIONS(9373), 1, + ACTIONS(20601), 1, sym__newline, - STATE(1875), 1, + STATE(8727), 1, sym_block, - STATE(4672), 1, + STATE(13517), 1, aux_sym_import_declaration_repeat1, - [104223] = 4, + [241564] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4839), 1, - sym__type_constant, - ACTIONS(9375), 2, - sym_integer, - sym_character, - [104237] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8204), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, anon_sym_LBRACE, - ACTIONS(8206), 1, - sym__newline, - STATE(564), 1, - sym_record_body, - STATE(4557), 1, - aux_sym_import_declaration_repeat1, - [104253] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5959), 1, - sym__newline, - ACTIONS(9377), 1, - anon_sym_PIPE2, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - STATE(5077), 1, - sym__for_capture_bar, - [104269] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4719), 1, - sym__type_constant, - ACTIONS(9379), 2, - sym_integer, - sym_character, - [104283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4726), 1, - sym__type_constant, - ACTIONS(9381), 2, - sym_integer, - sym_character, - [104297] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9383), 1, - anon_sym_DQUOTE, - STATE(4444), 1, - aux_sym_string_repeat1, - ACTIONS(9385), 2, - sym_string_content, - sym_escape_sequence, - [104311] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4933), 1, - sym__type_constant, - ACTIONS(9387), 2, - sym_integer, - sym_character, - [104325] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4944), 1, - sym__type_constant, - ACTIONS(9389), 2, - sym_integer, - sym_character, - [104339] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9391), 1, - sym__newline, - STATE(1964), 1, - sym_block, - STATE(4441), 1, - aux_sym_import_declaration_repeat1, - [104355] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9393), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [104365] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2012), 1, - sym_block, - [104381] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4887), 1, - sym__type_constant, - ACTIONS(9395), 2, - sym_integer, - sym_character, - [104395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9397), 1, - sym__newline, - STATE(1842), 1, - sym_block, - STATE(4702), 1, - aux_sym_import_declaration_repeat1, - [104411] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9399), 1, - sym__newline, - STATE(2014), 1, - sym_block, - STATE(4289), 1, - aux_sym_import_declaration_repeat1, - [104427] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4820), 1, - sym__type_constant, - ACTIONS(9401), 2, - sym_integer, - sym_character, - [104441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4826), 1, - sym__type_constant, - ACTIONS(9403), 2, - sym_integer, - sym_character, - [104455] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1965), 1, - sym_block, - [104471] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4885), 1, - sym__type_constant, - ACTIONS(9405), 2, - sym_integer, - sym_character, - [104485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4886), 1, - sym__type_constant, - ACTIONS(9407), 2, - sym_integer, - sym_character, - [104499] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9409), 1, - sym__newline, - STATE(2052), 1, - sym_block, - STATE(4688), 1, - aux_sym_import_declaration_repeat1, - [104515] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9411), 1, - sym__newline, - STATE(3908), 1, - sym_block, - STATE(4364), 1, - aux_sym_import_declaration_repeat1, - [104531] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9413), 1, - sym__newline, - STATE(1911), 1, - sym_block, - STATE(4562), 1, - aux_sym_import_declaration_repeat1, - [104547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4970), 1, - sym__type_constant, - ACTIONS(9415), 2, - sym_integer, - sym_character, - [104561] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3419), 1, - anon_sym_RBRACE, - ACTIONS(9417), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104577] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9419), 1, - sym__newline, - STATE(1912), 1, - sym_block, - STATE(4565), 1, - aux_sym_import_declaration_repeat1, - [104593] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4737), 1, - sym__type_constant, - ACTIONS(9421), 2, - sym_integer, - sym_character, - [104607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4743), 1, - sym__type_constant, - ACTIONS(9423), 2, - sym_integer, - sym_character, - [104621] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2841), 1, - anon_sym_RPAREN, - ACTIONS(9425), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104637] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4805), 1, - sym__type_constant, - ACTIONS(9427), 2, - sym_integer, - sym_character, - [104651] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4806), 1, - sym__type_constant, - ACTIONS(9429), 2, - sym_integer, - sym_character, - [104665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4928), 1, - sym__type_constant, - ACTIONS(9431), 2, - sym_integer, - sym_character, - [104679] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4946), 1, - sym__type_constant, - ACTIONS(9433), 2, - sym_integer, - sym_character, - [104693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4948), 1, - sym__type_constant, - ACTIONS(9435), 2, - sym_integer, - sym_character, - [104707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4959), 1, - sym__type_constant, - ACTIONS(9437), 2, - sym_integer, - sym_character, - [104721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4963), 1, - sym__type_constant, - ACTIONS(9439), 2, - sym_integer, - sym_character, - [104735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4712), 1, - sym__type_constant, - ACTIONS(9441), 2, - sym_integer, - sym_character, - [104749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4721), 1, - sym__type_constant, - ACTIONS(9443), 2, - sym_integer, - sym_character, - [104763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4723), 1, - sym__type_constant, - ACTIONS(9445), 2, - sym_integer, - sym_character, - [104777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4733), 1, - sym__type_constant, - ACTIONS(9447), 2, - sym_integer, - sym_character, - [104791] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4734), 1, - sym__type_constant, - ACTIONS(9449), 2, - sym_integer, - sym_character, - [104805] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4750), 1, - sym__type_constant, - ACTIONS(9451), 2, - sym_integer, - sym_character, - [104819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4754), 1, - sym__type_constant, - ACTIONS(9453), 2, - sym_integer, - sym_character, - [104833] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4756), 1, - sym__type_constant, - ACTIONS(9455), 2, - sym_integer, - sym_character, - [104847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4760), 1, - sym__type_constant, - ACTIONS(9457), 2, - sym_integer, - sym_character, - [104861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8904), 1, - anon_sym_DASH, - STATE(4761), 1, - sym__type_constant, - ACTIONS(9459), 2, - sym_integer, - sym_character, - [104875] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8575), 1, - anon_sym_LBRACE, - STATE(705), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104891] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3107), 1, - anon_sym_RBRACE, - ACTIONS(9461), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104907] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8509), 1, - anon_sym_LBRACE, - ACTIONS(9463), 1, - sym__newline, - STATE(2899), 1, - sym_record_body, - STATE(4685), 1, - aux_sym_import_declaration_repeat1, - [104923] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8491), 1, - anon_sym_LBRACE, - ACTIONS(9465), 1, - sym__newline, - STATE(824), 1, - sym_enum_body, - STATE(4686), 1, - aux_sym_import_declaration_repeat1, - [104939] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9467), 1, - anon_sym_DQUOTE, - STATE(4660), 1, - aux_sym_string_repeat1, - ACTIONS(9469), 2, - sym_string_content, - sym_escape_sequence, - [104953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3923), 1, - sym_block, - [104969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2845), 1, - anon_sym_RBRACE, - ACTIONS(9471), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [104985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1966), 1, - sym_block, - [105001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5358), 1, - anon_sym_RBRACE, - ACTIONS(9473), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5246), 1, - anon_sym_RBRACE, - ACTIONS(9475), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9477), 1, - anon_sym_EQ, - ACTIONS(9479), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [105045] = 4, - ACTIONS(8884), 1, - sym_comment, - ACTIONS(9481), 1, - anon_sym_DQUOTE, - STATE(4429), 1, - aux_sym_string_repeat1, - ACTIONS(8892), 2, - sym_string_content, - sym_escape_sequence, - [105059] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9483), 1, - sym__newline, - STATE(1967), 1, - sym_block, - STATE(4456), 1, - aux_sym_import_declaration_repeat1, - [105075] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2851), 1, - anon_sym_RBRACK, - ACTIONS(8962), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105091] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8962), 1, - anon_sym_COMMA, - ACTIONS(9485), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105107] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8509), 1, - anon_sym_LBRACE, - ACTIONS(9487), 1, - sym__newline, - STATE(2957), 1, - sym_record_body, - STATE(4689), 1, - aux_sym_import_declaration_repeat1, - [105123] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(9489), 1, - anon_sym_LBRACE, - STATE(3768), 1, - sym_initializer_list, - STATE(5031), 1, - sym_argument_list, - [105139] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1982), 1, - sym_block, - [105155] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(9491), 1, - anon_sym_LBRACE, - STATE(913), 1, - sym_initializer_list, - STATE(5063), 1, - sym_argument_list, - [105171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - ACTIONS(9493), 1, - anon_sym_LBRACE, - STATE(3150), 1, - sym_initializer_list, - STATE(5115), 1, - sym_argument_list, - [105187] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3937), 1, - sym_string, - [105203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1969), 1, - sym_block, - [105219] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9495), 1, - sym__newline, - STATE(1970), 1, - sym_block, - STATE(4489), 1, - aux_sym_import_declaration_repeat1, - [105235] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1914), 1, - sym_block, - [105251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9497), 1, - sym__newline, - STATE(1915), 1, - sym_block, - STATE(4572), 1, - aux_sym_import_declaration_repeat1, - [105267] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9499), 1, - sym__newline, - STATE(1916), 1, - sym_block, - STATE(4574), 1, - aux_sym_import_declaration_repeat1, - [105283] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3934), 1, - sym_string, - [105299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1972), 1, - sym_block, - [105315] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9501), 1, - sym__newline, - STATE(1973), 1, - sym_block, - STATE(4521), 1, - aux_sym_import_declaration_repeat1, - [105331] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9503), 1, - sym__newline, - STATE(1974), 1, - sym_block, - STATE(4531), 1, - aux_sym_import_declaration_repeat1, - [105347] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9505), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105363] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2015), 1, - sym_block, - [105379] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8214), 1, - anon_sym_LBRACE, - STATE(907), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2923), 1, - anon_sym_RPAREN, - ACTIONS(9507), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105411] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8575), 1, - anon_sym_LBRACE, - ACTIONS(9509), 1, - sym__newline, - STATE(668), 1, - sym_block, - STATE(4709), 1, - aux_sym_import_declaration_repeat1, - [105427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8575), 1, - anon_sym_LBRACE, - STATE(669), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105443] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8509), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2903), 1, - sym_record_body, - [105459] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8491), 1, - anon_sym_LBRACE, - STATE(838), 1, - sym_enum_body, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1975), 1, - sym_block, - [105491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2040), 1, - sym_block, - [105507] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8509), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(2958), 1, - sym_record_body, - [105523] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9511), 1, - sym__newline, - STATE(1977), 1, - sym_block, - STATE(4545), 1, - aux_sym_import_declaration_repeat1, - [105539] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2929), 1, - anon_sym_RBRACE, - ACTIONS(9513), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5400), 1, - anon_sym_RBRACE, - ACTIONS(9515), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7746), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3242), 1, - sym_record_body, - [105587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3515), 1, - anon_sym_RBRACK, - ACTIONS(9517), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2935), 1, - anon_sym_RBRACK, - ACTIONS(9519), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105619] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8585), 1, - anon_sym_LBRACE, - STATE(702), 1, - sym_enum_body, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_LBRACE, - ACTIONS(9521), 1, - sym__newline, - STATE(1925), 1, - sym_block, - STATE(4656), 1, - aux_sym_import_declaration_repeat1, - [105651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7746), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(3303), 1, - sym_record_body, - [105667] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5424), 1, - anon_sym_RBRACE, - ACTIONS(9523), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9517), 1, - anon_sym_COMMA, - ACTIONS(9525), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105699] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8370), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, STATE(3799), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3800), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20603), 1, + sym__newline, + STATE(3801), 1, + sym_block, + STATE(13521), 1, + aux_sym_import_declaration_repeat1, + [241612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(20605), 1, + sym__newline, + STATE(9140), 1, + sym_block, + STATE(13732), 1, + aux_sym_import_declaration_repeat1, + [241628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3803), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20607), 1, + sym__newline, + STATE(3804), 1, + sym_block, + STATE(13524), 1, + aux_sym_import_declaration_repeat1, + [241660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6771), 1, + sym_block, + [241676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11009), 1, + anon_sym_RBRACE, + ACTIONS(20609), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3805), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3806), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20611), 1, + sym__newline, + STATE(3807), 1, + sym_block, + STATE(13525), 1, + aux_sym_import_declaration_repeat1, + [241740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9620), 1, + anon_sym_RBRACE, + ACTIONS(20613), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6726), 1, + sym_block, + [241772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20615), 1, + sym__newline, + STATE(6728), 1, + sym_block, + STATE(13793), 1, + aux_sym_import_declaration_repeat1, + [241788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20617), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20619), 1, + sym__newline, + STATE(6786), 1, + sym_block, + STATE(13797), 1, + aux_sym_import_declaration_repeat1, + [241820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7244), 1, + sym_block, + [241836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3808), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3809), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6749), 1, + sym_block, + [241884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3810), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3811), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8667), 1, + sym_block, + [241932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20621), 1, + sym__newline, + STATE(8668), 1, + sym_block, + STATE(13535), 1, + aux_sym_import_declaration_repeat1, + [241948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20623), 1, + sym__newline, + STATE(3435), 1, + sym_block, + STATE(13527), 1, + aux_sym_import_declaration_repeat1, + [241964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20625), 1, + sym__newline, + STATE(8720), 1, + sym_block, + STATE(13538), 1, + aux_sym_import_declaration_repeat1, + [241980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3812), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [241996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20627), 1, + sym__newline, + STATE(8576), 1, + sym_block, + STATE(13542), 1, + aux_sym_import_declaration_repeat1, + [242012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3813), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8632), 1, + sym_block, + [242044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20629), 1, + sym__newline, + STATE(3814), 1, + sym_block, + STATE(13529), 1, + aux_sym_import_declaration_repeat1, + [242060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3815), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20631), 1, + sym__newline, + STATE(3816), 1, + sym_block, + STATE(13531), 1, + aux_sym_import_declaration_repeat1, + [242092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3817), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20633), 1, + sym__newline, + STATE(3818), 1, + sym_block, + STATE(13533), 1, + aux_sym_import_declaration_repeat1, + [242124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20635), 1, + sym__newline, + STATE(8706), 1, + sym_block, + STATE(13555), 1, + aux_sym_import_declaration_repeat1, + [242140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3819), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3820), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20637), 1, + sym__newline, + STATE(6741), 1, + sym_block, + STATE(13813), 1, + aux_sym_import_declaration_repeat1, + [242188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3821), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11017), 1, + anon_sym_RBRACE, + ACTIONS(20639), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3822), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242236] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20641), 1, + sym__newline, + STATE(6861), 1, + sym_block, + STATE(13823), 1, + aux_sym_import_declaration_repeat1, + [242252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3823), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20643), 1, + sym__newline, + STATE(8737), 1, + sym_block, + STATE(13559), 1, + aux_sym_import_declaration_repeat1, + [242284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3824), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20645), 1, + sym__newline, + STATE(3825), 1, + sym_block, + STATE(13536), 1, + aux_sym_import_declaration_repeat1, + [242316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8712), 1, + sym_block, + [242332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3826), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242348] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20647), 1, + anon_sym_DQUOTE, + STATE(13544), 1, + aux_sym_string_repeat1, + ACTIONS(20649), 2, + sym_string_content, + sym_escape_sequence, + [242362] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8475), 1, + sym_block, + [242378] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20651), 1, + sym__newline, + STATE(8477), 1, + sym_block, + STATE(13566), 1, + aux_sym_import_declaration_repeat1, + [242394] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20653), 1, + sym__newline, + STATE(7410), 1, + sym_block, + STATE(13872), 1, + aux_sym_import_declaration_repeat1, + [242410] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(20655), 1, + sym__newline, + STATE(9142), 1, + sym_block, + STATE(13762), 1, + aux_sym_import_declaration_repeat1, + [242426] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8484), 1, + sym_block, + [242442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20657), 1, + sym__newline, + STATE(8492), 1, + sym_block, + STATE(13570), 1, + aux_sym_import_declaration_repeat1, + [242458] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20659), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [242472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20661), 1, + sym__newline, + STATE(8506), 1, + sym_block, + STATE(13573), 1, + aux_sym_import_declaration_repeat1, + [242488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16776), 1, + anon_sym_LBRACE, + ACTIONS(20663), 1, + sym__newline, + STATE(3238), 1, sym_record_body, - [105715] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, + STATE(13562), 1, aux_sym_import_declaration_repeat1, - STATE(1878), 1, - sym_block, - [105731] = 5, + [242504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(9527), 1, + ACTIONS(20665), 1, sym__newline, - STATE(1918), 1, + STATE(7322), 1, sym_block, - STATE(4589), 1, + STATE(13130), 1, aux_sym_import_declaration_repeat1, - [105747] = 5, + [242520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(13455), 1, anon_sym_LBRACE, - ACTIONS(9529), 1, + ACTIONS(20667), 1, sym__newline, - STATE(1885), 1, + STATE(8585), 1, sym_block, - STATE(4452), 1, + STATE(13578), 1, aux_sym_import_declaration_repeat1, - [105763] = 5, + [242536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8575), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, anon_sym_LBRACE, - ACTIONS(9531), 1, - sym__newline, - STATE(692), 1, - sym_block, - STATE(4222), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [105779] = 5, + STATE(7306), 1, + sym_block, + [242552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(658), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10965), 1, + sym_block, + [242568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19375), 1, + anon_sym_COMMA, + ACTIONS(20669), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18949), 1, + anon_sym_COMMA, + ACTIONS(20671), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242600] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20673), 1, + sym__newline, + STATE(8594), 1, + sym_block, + STATE(13586), 1, + aux_sym_import_declaration_repeat1, + [242616] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7413), 1, + sym_block, + [242632] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8599), 1, + sym_block, + [242648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20675), 1, + sym__newline, + STATE(8603), 1, + sym_block, + STATE(13589), 1, + aux_sym_import_declaration_repeat1, + [242664] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11091), 1, anon_sym_RBRACE, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9533), 1, + ACTIONS(20677), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [105795] = 5, + [242680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8214), 1, + ACTIONS(13513), 1, anon_sym_LBRACE, - ACTIONS(9535), 1, + ACTIONS(20679), 1, sym__newline, - STATE(908), 1, + STATE(9535), 1, sym_block, - STATE(4383), 1, + STATE(13779), 1, aux_sym_import_declaration_repeat1, - [105811] = 5, + [242696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(2959), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8619), 1, + sym_block, + [242712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20681), 1, + sym__newline, + STATE(8621), 1, + sym_block, + STATE(13593), 1, + aux_sym_import_declaration_repeat1, + [242728] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20683), 1, + sym__newline, + STATE(8625), 1, + sym_block, + STATE(13594), 1, + aux_sym_import_declaration_repeat1, + [242744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16776), 1, + anon_sym_LBRACE, + STATE(3249), 1, + sym_record_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20685), 1, + sym__newline, + STATE(8629), 1, + sym_block, + STATE(13597), 1, + aux_sym_import_declaration_repeat1, + [242776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16011), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9041), 1, + sym_record_body, + [242792] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7349), 1, + sym_block, + [242808] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8652), 1, + sym_block, + [242824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20687), 1, + sym__newline, + STATE(8658), 1, + sym_block, + STATE(13601), 1, + aux_sym_import_declaration_repeat1, + [242840] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16487), 1, + anon_sym_LBRACE, + STATE(3834), 1, + sym_enum_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [242856] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7416), 1, + sym_block, + [242872] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8700), 1, + sym_block, + [242888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9541), 1, + sym_block, + [242904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20689), 1, + sym__newline, + STATE(7417), 1, + sym_block, + STATE(11971), 1, + aux_sym_import_declaration_repeat1, + [242920] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8714), 1, + sym_block, + [242936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20691), 1, + sym__newline, + STATE(8730), 1, + sym_block, + STATE(13608), 1, + aux_sym_import_declaration_repeat1, + [242952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9672), 1, + sym_block, + [242968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20693), 1, + sym__newline, + STATE(8371), 1, + sym_block, + STATE(13610), 1, + aux_sym_import_declaration_repeat1, + [242984] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9556), 1, + sym_block, + [243000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8374), 1, + sym_block, + [243016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20695), 1, + sym__newline, + STATE(8384), 1, + sym_block, + STATE(13613), 1, + aux_sym_import_declaration_repeat1, + [243032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(20697), 1, + sym__newline, + STATE(9568), 1, + sym_block, + STATE(12108), 1, + aux_sym_import_declaration_repeat1, + [243048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20699), 1, + sym__newline, + STATE(3259), 1, + sym_block, + STATE(13621), 1, + aux_sym_import_declaration_repeat1, + [243064] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18989), 1, + anon_sym_DQUOTE, + ACTIONS(20701), 1, + sym__newline, + STATE(11002), 1, + sym_string, + STATE(12399), 1, + aux_sym_import_declaration_repeat1, + [243080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20703), 1, + sym__newline, + STATE(8388), 1, + sym_block, + STATE(13619), 1, + aux_sym_import_declaration_repeat1, + [243096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20705), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [243112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20707), 1, + sym__newline, + STATE(7418), 1, + sym_block, + STATE(11974), 1, + aux_sym_import_declaration_repeat1, + [243128] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8393), 1, + sym_block, + [243144] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20709), 1, + sym__newline, + STATE(8396), 1, + sym_block, + STATE(13623), 1, + aux_sym_import_declaration_repeat1, + [243160] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20711), 1, + sym__newline, + STATE(8398), 1, + sym_block, + STATE(13624), 1, + aux_sym_import_declaration_repeat1, + [243176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8399), 1, + sym_block, + [243192] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7419), 1, + sym_block, + [243208] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20713), 1, + sym__newline, + STATE(8402), 1, + sym_block, + STATE(13627), 1, + aux_sym_import_declaration_repeat1, + [243224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6863), 1, + sym_block, + [243240] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8405), 1, + sym_block, + [243256] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8406), 1, + sym_block, + [243272] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20715), 1, + sym__newline, + STATE(8407), 1, + sym_block, + STATE(13629), 1, + aux_sym_import_declaration_repeat1, + [243288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20717), 1, + sym__newline, + STATE(8409), 1, + sym_block, + STATE(13630), 1, + aux_sym_import_declaration_repeat1, + [243304] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8410), 1, + sym_block, + [243320] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20719), 1, + sym__newline, + STATE(8411), 1, + sym_block, + STATE(13632), 1, + aux_sym_import_declaration_repeat1, + [243336] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20721), 1, + sym__newline, + STATE(8412), 1, + sym_block, + STATE(13633), 1, + aux_sym_import_declaration_repeat1, + [243352] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20723), 1, + sym__newline, + STATE(7350), 1, + sym_block, + STATE(12941), 1, + aux_sym_import_declaration_repeat1, + [243368] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8414), 1, + sym_block, + [243384] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20725), 1, + sym__newline, + STATE(8415), 1, + sym_block, + STATE(13636), 1, + aux_sym_import_declaration_repeat1, + [243400] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20727), 1, + sym__newline, + STATE(8416), 1, + sym_block, + STATE(13637), 1, + aux_sym_import_declaration_repeat1, + [243416] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9366), 1, anon_sym_RPAREN, - ACTIONS(9537), 1, + ACTIONS(20729), 1, anon_sym_COMMA, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [105827] = 5, + [243432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(8575), 1, + ACTIONS(13455), 1, anon_sym_LBRACE, - STATE(694), 1, - sym_block, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105843] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, + ACTIONS(20731), 1, sym__newline, - ACTIONS(6608), 1, - anon_sym_LBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - STATE(1980), 1, + STATE(8419), 1, sym_block, - [105859] = 2, + STATE(13640), 1, + aux_sym_import_declaration_repeat1, + [243448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9539), 3, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19451), 1, + anon_sym_COMMA, + ACTIONS(20733), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [243464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4557), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [243480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8423), 1, + sym_block, + [243496] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [243512] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8425), 1, + sym_block, + [243528] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20735), 1, + sym__newline, + STATE(8426), 1, + sym_block, + STATE(13645), 1, + aux_sym_import_declaration_repeat1, + [243544] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20737), 1, + sym__newline, + STATE(8427), 1, + sym_block, + STATE(13646), 1, + aux_sym_import_declaration_repeat1, + [243560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8428), 1, + sym_block, + [243576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10869), 1, + anon_sym_RBRACE, + ACTIONS(20739), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [243592] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20741), 1, + sym__newline, + STATE(8430), 1, + sym_block, + STATE(13649), 1, + aux_sym_import_declaration_repeat1, + [243608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13725), 1, + anon_sym_LBRACE, + ACTIONS(20743), 1, + sym__newline, + STATE(3504), 1, + sym_block, + STATE(13816), 1, + aux_sym_import_declaration_repeat1, + [243624] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20745), 1, + sym__newline, + STATE(8432), 1, + sym_block, + STATE(13652), 1, + aux_sym_import_declaration_repeat1, + [243640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20747), 1, + sym__newline, + STATE(7421), 1, + sym_block, + STATE(11993), 1, + aux_sym_import_declaration_repeat1, + [243656] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8434), 1, + sym_block, + [243672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20749), 1, + sym__newline, + STATE(8435), 1, + sym_block, + STATE(13655), 1, + aux_sym_import_declaration_repeat1, + [243688] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3279), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [243704] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20751), 1, + sym__newline, + STATE(8438), 1, + sym_block, + STATE(13658), 1, + aux_sym_import_declaration_repeat1, + [243720] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8439), 1, + sym_block, + [243736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8440), 1, + sym_block, + [243752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20753), 1, + sym__newline, + STATE(8441), 1, + sym_block, + STATE(13660), 1, + aux_sym_import_declaration_repeat1, + [243768] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9492), 1, anon_sym_RPAREN, + ACTIONS(20755), 1, anon_sym_COMMA, - sym__newline, - [105868] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9541), 1, - anon_sym_RBRACK, - ACTIONS(9543), 1, - sym__newline, - STATE(4722), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [105881] = 4, + [243784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9545), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [105894] = 4, + STATE(8446), 1, + sym_block, + [243800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9547), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20757), 1, + sym__newline, + STATE(8447), 1, + sym_block, + STATE(13662), 1, + aux_sym_import_declaration_repeat1, + [243816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8448), 1, + sym_block, + [243832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8449), 1, + sym_block, + [243848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20759), 1, + sym__newline, + STATE(8450), 1, + sym_block, + STATE(13663), 1, + aux_sym_import_declaration_repeat1, + [243864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8451), 1, + sym_block, + [243880] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8452), 1, + sym_block, + [243896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20761), 1, + sym__newline, + STATE(8453), 1, + sym_block, + STATE(13664), 1, + aux_sym_import_declaration_repeat1, + [243912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20763), 1, + sym__newline, + STATE(8454), 1, + sym_block, + STATE(13665), 1, + aux_sym_import_declaration_repeat1, + [243928] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8455), 1, + sym_block, + [243944] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8456), 1, + sym_block, + [243960] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20765), 1, + sym__newline, + STATE(8457), 1, + sym_block, + STATE(13667), 1, + aux_sym_import_declaration_repeat1, + [243976] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20767), 1, + sym__newline, + STATE(8458), 1, + sym_block, + STATE(13668), 1, + aux_sym_import_declaration_repeat1, + [243992] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8459), 1, + sym_block, + [244008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20769), 1, + sym__newline, + STATE(8460), 1, + sym_block, + STATE(13670), 1, + aux_sym_import_declaration_repeat1, + [244024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20771), 1, + sym__newline, + STATE(8463), 1, + sym_block, + STATE(13671), 1, + aux_sym_import_declaration_repeat1, + [244040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20773), 1, + sym__newline, + STATE(7324), 1, + sym_block, + STATE(13355), 1, + aux_sym_import_declaration_repeat1, + [244056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20775), 1, + sym__newline, + STATE(8465), 1, + sym_block, + STATE(13674), 1, + aux_sym_import_declaration_repeat1, + [244072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8466), 1, + sym_block, + [244088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8467), 1, + sym_block, + [244104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20777), 1, + sym__newline, + STATE(8468), 1, + sym_block, + STATE(13676), 1, + aux_sym_import_declaration_repeat1, + [244120] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16011), 1, + anon_sym_LBRACE, + ACTIONS(20779), 1, + sym__newline, + STATE(8914), 1, + sym_record_body, + STATE(13727), 1, + aux_sym_import_declaration_repeat1, + [244136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8470), 1, + sym_block, + [244152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20781), 1, + sym__newline, + STATE(8471), 1, + sym_block, + STATE(13678), 1, + aux_sym_import_declaration_repeat1, + [244168] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16487), 1, + anon_sym_LBRACE, + ACTIONS(20783), 1, + sym__newline, + STATE(3845), 1, + sym_enum_body, + STATE(13728), 1, + aux_sym_import_declaration_repeat1, + [244184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8473), 1, + sym_block, + [244200] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20785), 1, + sym__newline, + STATE(8474), 1, + sym_block, + STATE(13680), 1, + aux_sym_import_declaration_repeat1, + [244216] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20787), 1, + sym__newline, + STATE(8485), 1, + sym_block, + STATE(13681), 1, + aux_sym_import_declaration_repeat1, + [244232] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8489), 1, + sym_block, + [244248] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19491), 1, anon_sym_COMMA, - ACTIONS(9549), 1, + ACTIONS(20789), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [244264] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20791), 1, + sym__newline, + STATE(8502), 1, + sym_block, + STATE(13684), 1, + aux_sym_import_declaration_repeat1, + [244280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8509), 1, + sym_block, + [244296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20793), 1, + sym__newline, + STATE(8510), 1, + sym_block, + STATE(13686), 1, + aux_sym_import_declaration_repeat1, + [244312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8511), 1, + sym_block, + [244328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20795), 1, + sym__newline, + STATE(8514), 1, + sym_block, + STATE(13687), 1, + aux_sym_import_declaration_repeat1, + [244344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8515), 1, + sym_block, + [244360] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8516), 1, + sym_block, + [244376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8517), 1, + sym_block, + [244392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8518), 1, + sym_block, + [244408] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20797), 1, + sym__newline, + STATE(8519), 1, + sym_block, + STATE(13689), 1, + aux_sym_import_declaration_repeat1, + [244424] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8520), 1, + sym_block, + [244440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8521), 1, + sym_block, + [244456] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20799), 1, + sym__newline, + STATE(8522), 1, + sym_block, + STATE(13690), 1, + aux_sym_import_declaration_repeat1, + [244472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8523), 1, + sym_block, + [244488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8524), 1, + sym_block, + [244504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20801), 1, + sym__newline, + STATE(8525), 1, + sym_block, + STATE(13691), 1, + aux_sym_import_declaration_repeat1, + [244520] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20803), 1, + sym__newline, + STATE(8526), 1, + sym_block, + STATE(13692), 1, + aux_sym_import_declaration_repeat1, + [244536] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8527), 1, + sym_block, + [244552] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20805), 1, + sym__newline, + STATE(8528), 1, + sym_block, + STATE(13694), 1, + aux_sym_import_declaration_repeat1, + [244568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8529), 1, + sym_block, + [244584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20807), 1, + sym__newline, + STATE(8530), 1, + sym_block, + STATE(13695), 1, + aux_sym_import_declaration_repeat1, + [244600] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8531), 1, + sym_block, + [244616] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20809), 1, + sym__newline, + STATE(8532), 1, + sym_block, + STATE(13697), 1, + aux_sym_import_declaration_repeat1, + [244632] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8366), 1, + sym_block, + [244648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8534), 1, + sym_block, + [244664] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20811), 1, + sym__newline, + STATE(8535), 1, + sym_block, + STATE(13699), 1, + aux_sym_import_declaration_repeat1, + [244680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(20813), 1, anon_sym_PIPE2, - STATE(3985), 1, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15050), 1, sym__for_capture_bar, - [105907] = 4, + [244696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9551), 1, - anon_sym_RPAREN, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [105920] = 4, + STATE(8537), 1, + sym_block, + [244712] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20815), 1, sym__newline, - ACTIONS(9553), 1, - anon_sym_RPAREN, - STATE(1537), 1, + STATE(8538), 1, + sym_block, + STATE(13701), 1, aux_sym_import_declaration_repeat1, - [105933] = 4, + [244728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9555), 1, - anon_sym_else, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [105946] = 2, + STATE(8539), 1, + sym_block, + [244744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9557), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2257), 1, sym__newline, - [105955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9559), 1, - anon_sym_RBRACK, - ACTIONS(9561), 1, - sym__newline, - STATE(4930), 1, - aux_sym_import_declaration_repeat1, - [105968] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9563), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [105981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9565), 1, - anon_sym_RBRACK, - ACTIONS(9567), 1, - sym__newline, - STATE(4731), 1, - aux_sym_import_declaration_repeat1, - [105994] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9569), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9571), 1, - anon_sym_RBRACK, - ACTIONS(9573), 1, - sym__newline, - STATE(4732), 1, - aux_sym_import_declaration_repeat1, - [106020] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9575), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106033] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9577), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9579), 1, - anon_sym_RBRACK, - ACTIONS(9581), 1, - sym__newline, - STATE(4931), 1, - aux_sym_import_declaration_repeat1, - [106059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9583), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9583), 1, - anon_sym_RPAREN, - ACTIONS(9585), 1, - sym__newline, - STATE(4984), 1, - aux_sym_import_declaration_repeat1, - [106085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9587), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106098] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9591), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9593), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9595), 1, - anon_sym_RBRACK, - ACTIONS(9597), 1, - sym__newline, - STATE(4738), 1, - aux_sym_import_declaration_repeat1, - [106150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9599), 1, - anon_sym_RBRACK, - ACTIONS(9601), 1, - sym__newline, - STATE(4739), 1, - aux_sym_import_declaration_repeat1, - [106163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9603), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106176] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9605), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106189] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9607), 1, - anon_sym_RBRACK, - ACTIONS(9609), 1, - sym__newline, - STATE(4802), 1, - aux_sym_import_declaration_repeat1, - [106202] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9611), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106215] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9613), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106228] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9615), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9615), 1, - anon_sym_RPAREN, - ACTIONS(9617), 1, - sym__newline, - STATE(4778), 1, - aux_sym_import_declaration_repeat1, - [106254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9619), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9621), 1, - anon_sym_RBRACK, - ACTIONS(9623), 1, - sym__newline, - STATE(4803), 1, - aux_sym_import_declaration_repeat1, - [106280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9625), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9627), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5264), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7344), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9629), 1, - anon_sym_COMMA, - ACTIONS(9631), 1, - anon_sym_PIPE2, - STATE(4099), 1, - sym__for_capture_bar, - [106345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9633), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106358] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9635), 1, - anon_sym_RBRACK, - ACTIONS(9637), 1, - sym__newline, - STATE(4755), 1, - aux_sym_import_declaration_repeat1, - [106371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9639), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106384] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5450), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9641), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9643), 1, - anon_sym_RBRACK, - ACTIONS(9645), 1, - sym__newline, - STATE(4758), 1, - aux_sym_import_declaration_repeat1, - [106423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9647), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9649), 1, - anon_sym_RBRACK, - ACTIONS(9651), 1, - sym__newline, - STATE(4759), 1, - aux_sym_import_declaration_repeat1, - [106449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9653), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9655), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9657), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106488] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9659), 1, - anon_sym_RBRACK, - ACTIONS(9661), 1, - sym__newline, - STATE(4763), 1, - aux_sym_import_declaration_repeat1, - [106501] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9663), 1, - anon_sym_RBRACK, - ACTIONS(9665), 1, - sym__newline, - STATE(4764), 1, - aux_sym_import_declaration_repeat1, - [106514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9667), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9669), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9671), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9673), 1, - anon_sym_RBRACK, - ACTIONS(9675), 1, - sym__newline, - STATE(4907), 1, - aux_sym_import_declaration_repeat1, - [106566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9677), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [106575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9679), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9681), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9683), 1, - anon_sym_RPAREN, - ACTIONS(9685), 1, - sym__newline, - STATE(4800), 1, - aux_sym_import_declaration_repeat1, - [106614] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9687), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9689), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106640] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8427), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [106649] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9691), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106662] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9693), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9695), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9697), 1, - anon_sym_RBRACK, - ACTIONS(9699), 1, - sym__newline, - STATE(4869), 1, - aux_sym_import_declaration_repeat1, - [106701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9701), 1, - anon_sym_RPAREN, - ACTIONS(9703), 1, - sym__newline, - STATE(4740), 1, - aux_sym_import_declaration_repeat1, - [106714] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9705), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9707), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106740] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9709), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106753] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9711), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3321), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106779] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9713), 1, - anon_sym_COMMA, - ACTIONS(9715), 1, - anon_sym_PIPE2, - STATE(4086), 1, - sym__for_capture_bar, - [106792] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9717), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106805] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9719), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [106818] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9721), 1, - anon_sym_COMMA, - ACTIONS(9723), 1, - anon_sym_PIPE2, - STATE(4089), 1, - sym__for_capture_bar, - [106831] = 4, + STATE(8540), 1, + sym_block, + [244760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20817), 1, sym__newline, - ACTIONS(9725), 1, - anon_sym_else, - STATE(1537), 1, + STATE(8541), 1, + sym_block, + STATE(13702), 1, aux_sym_import_declaration_repeat1, - [106844] = 4, + [244776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9727), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106857] = 4, + STATE(8542), 1, + sym_block, + [244792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9729), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106870] = 4, + STATE(8543), 1, + sym_block, + [244808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9731), 1, - anon_sym_else, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106883] = 4, + STATE(8544), 1, + sym_block, + [244824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9733), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106896] = 4, + STATE(8545), 1, + sym_block, + [244840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20819), 1, sym__newline, - ACTIONS(9735), 1, - anon_sym_RBRACK, - STATE(1537), 1, + STATE(8546), 1, + sym_block, + STATE(13703), 1, aux_sym_import_declaration_repeat1, - [106909] = 4, + [244856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(7229), 1, - anon_sym_RPAREN, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106922] = 4, + STATE(8547), 1, + sym_block, + [244872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9737), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106935] = 4, + STATE(8548), 1, + sym_block, + [244888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20821), 1, sym__newline, - ACTIONS(9739), 1, - anon_sym_RPAREN, - STATE(1537), 1, + STATE(8549), 1, + sym_block, + STATE(13704), 1, aux_sym_import_declaration_repeat1, - [106948] = 4, + [244904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9741), 1, - anon_sym_else, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106961] = 4, + STATE(8550), 1, + sym_block, + [244920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20823), 1, sym__newline, - ACTIONS(9743), 1, - anon_sym_RBRACK, - STATE(1537), 1, + STATE(8551), 1, + sym_block, + STATE(13705), 1, aux_sym_import_declaration_repeat1, - [106974] = 4, + [244936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9745), 1, - anon_sym_else, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [106987] = 4, + STATE(8552), 1, + sym_block, + [244952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20825), 1, sym__newline, - ACTIONS(9747), 1, - anon_sym_else, - STATE(1537), 1, + STATE(8553), 1, + sym_block, + STATE(13706), 1, aux_sym_import_declaration_repeat1, - [107000] = 4, + [244968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9749), 1, - anon_sym_RPAREN, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107013] = 4, + STATE(8555), 1, + sym_block, + [244984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9751), 1, - anon_sym_RBRACK, - ACTIONS(9753), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4789), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107026] = 4, + STATE(8557), 1, + sym_block, + [245000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9755), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107039] = 4, + STATE(8559), 1, + sym_block, + [245016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9757), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107052] = 4, + STATE(8738), 1, + sym_block, + [245032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9759), 1, - anon_sym_else, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107065] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9761), 1, - anon_sym_RBRACK, - ACTIONS(9763), 1, - sym__newline, - STATE(4841), 1, - aux_sym_import_declaration_repeat1, - [107078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9765), 1, - anon_sym_RBRACK, - ACTIONS(9767), 1, - sym__newline, - STATE(4843), 1, - aux_sym_import_declaration_repeat1, - [107091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3201), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5392), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9769), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9771), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9773), 1, - anon_sym_RBRACK, - ACTIONS(9775), 1, - sym__newline, - STATE(4791), 1, - aux_sym_import_declaration_repeat1, - [107156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9777), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9779), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9781), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107195] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9783), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9785), 1, - anon_sym_COMMA, - ACTIONS(9787), 1, - anon_sym_PIPE2, - STATE(3975), 1, - sym__for_capture_bar, - [107221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9779), 1, - anon_sym_RPAREN, - ACTIONS(9789), 1, - sym__newline, - STATE(4715), 1, - aux_sym_import_declaration_repeat1, - [107234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3653), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107247] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7421), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9791), 1, - anon_sym_RBRACK, - ACTIONS(9793), 1, - sym__newline, - STATE(4864), 1, - aux_sym_import_declaration_repeat1, - [107273] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9795), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107286] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9797), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_AT, - ACTIONS(9799), 2, - sym_sink, - sym_identifier, - [107310] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5238), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9801), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9803), 1, - anon_sym_RBRACK, - ACTIONS(9805), 1, - sym__newline, - STATE(4884), 1, - aux_sym_import_declaration_repeat1, - [107349] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7304), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [107358] = 4, + STATE(8566), 1, + sym_block, + [245048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9807), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107371] = 4, + STATE(8567), 1, + sym_block, + [245064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9809), 1, - anon_sym_RPAREN, - ACTIONS(9811), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + ACTIONS(20827), 1, sym__newline, - STATE(4986), 1, + STATE(8569), 1, + sym_block, + STATE(13708), 1, aux_sym_import_declaration_repeat1, - [107384] = 4, + [245080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9813), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13455), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107397] = 4, + STATE(8573), 1, + sym_block, + [245096] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20829), 1, sym__newline, - ACTIONS(9815), 1, - anon_sym_RBRACK, - STATE(1537), 1, + STATE(6865), 1, + sym_block, + STATE(13836), 1, aux_sym_import_declaration_repeat1, - [107410] = 4, + [245112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(826), 1, - anon_sym_EQ, - ACTIONS(7904), 1, + ACTIONS(6832), 1, anon_sym_LPAREN, - STATE(2507), 1, - sym_parameter_list, - [107423] = 4, + ACTIONS(20831), 1, + anon_sym_LBRACE, + STATE(4363), 1, + sym_initializer_list, + STATE(15111), 1, + sym_argument_list, + [245128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20833), 1, sym__newline, - ACTIONS(9817), 1, - anon_sym_RBRACK, - STATE(1537), 1, + STATE(7423), 1, + sym_block, + STATE(12009), 1, aux_sym_import_declaration_repeat1, - [107436] = 4, + [245144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20835), 1, sym__newline, - ACTIONS(5304), 1, - anon_sym_RBRACE, - STATE(1537), 1, + STATE(3297), 1, + sym_block, + STATE(13734), 1, aux_sym_import_declaration_repeat1, - [107449] = 4, + [245160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9819), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18989), 1, + anon_sym_DQUOTE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10995), 1, + sym_string, + [245176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9696), 1, anon_sym_RPAREN, - ACTIONS(9821), 1, - sym__newline, - STATE(4866), 1, + ACTIONS(19375), 1, + anon_sym_COMMA, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107462] = 4, + [245192] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20837), 1, sym__newline, - ACTIONS(9823), 1, - anon_sym_RBRACK, - STATE(1537), 1, + STATE(6678), 1, + sym_block, + STATE(13860), 1, aux_sym_import_declaration_repeat1, - [107475] = 3, + [245208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9827), 1, - anon_sym_AT, - ACTIONS(9825), 2, - sym_sink, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4328), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [245224] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20839), 1, + anon_sym_DQUOTE, + STATE(13777), 1, + aux_sym_string_repeat1, + ACTIONS(20841), 2, + sym_string_content, + sym_escape_sequence, + [245238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20843), 1, + sym__newline, + STATE(7352), 1, + sym_block, + STATE(12989), 1, + aux_sym_import_declaration_repeat1, + [245254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20845), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [245270] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15588), 1, + anon_sym_RPAREN, + ACTIONS(20847), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [245286] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9496), 1, + anon_sym_RPAREN, + ACTIONS(20849), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [245302] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6632), 1, + sym_block, + [245318] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(20851), 1, + sym__newline, + STATE(9153), 1, + sym_block, + STATE(13826), 1, + aux_sym_import_declaration_repeat1, + [245334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6679), 1, + sym_block, + [245350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20853), 1, + sym__newline, + STATE(6686), 1, + sym_block, + STATE(13864), 1, + aux_sym_import_declaration_repeat1, + [245366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10978), 1, + sym_block, + [245382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16011), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9035), 1, + sym_record_body, + [245398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(16487), 1, + anon_sym_LBRACE, + STATE(3850), 1, + sym_enum_body, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [245414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7425), 1, + sym_block, + [245430] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6690), 1, + sym_block, + [245446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20855), 1, + sym__newline, + STATE(6695), 1, + sym_block, + STATE(13888), 1, + aux_sym_import_declaration_repeat1, + [245462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9155), 1, + sym_block, + [245478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20859), 1, + anon_sym_COMMA, + ACTIONS(20857), 3, + anon_sym_RBRACE, sym_identifier, - [107486] = 4, + sym__newline, + [245490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9829), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3314), 1, + sym_block, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107499] = 4, + [245506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9831), 1, - anon_sym_RBRACK, - ACTIONS(9833), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4720), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107512] = 4, + STATE(6697), 1, + sym_block, + [245522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9835), 1, - anon_sym_RBRACK, - ACTIONS(9837), 1, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20861), 1, sym__newline, - STATE(4958), 1, + STATE(3315), 1, + sym_block, + STATE(13766), 1, aux_sym_import_declaration_repeat1, - [107525] = 4, + [245538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9839), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107538] = 4, + STATE(6773), 1, + sym_block, + [245554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20863), 1, sym__newline, - ACTIONS(9841), 1, - anon_sym_RPAREN, - STATE(1537), 1, + STATE(6614), 1, + sym_block, + STATE(13902), 1, aux_sym_import_declaration_repeat1, - [107551] = 4, + [245570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9843), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107564] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9845), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9847), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9849), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9851), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107616] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9853), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107629] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9855), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9857), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107655] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9859), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107668] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9861), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9863), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9865), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5334), 1, + ACTIONS(11041), 1, anon_sym_RBRACE, - STATE(1537), 1, + ACTIONS(20865), 1, + anon_sym_COMMA, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107720] = 4, + [245586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(3045), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107733] = 4, + STATE(6624), 1, + sym_block, + [245602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9749), 1, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9572), 1, anon_sym_RPAREN, - ACTIONS(9867), 1, - sym__newline, - STATE(4781), 1, + ACTIONS(20867), 1, + anon_sym_COMMA, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107746] = 4, + [245618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9869), 1, - anon_sym_RBRACK, - ACTIONS(9871), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4794), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107759] = 4, + STATE(6630), 1, + sym_block, + [245634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20869), 1, sym__newline, - ACTIONS(9873), 1, - anon_sym_else, - STATE(1537), 1, + STATE(6650), 1, + sym_block, + STATE(13907), 1, aux_sym_import_declaration_repeat1, - [107772] = 4, + [245650] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20871), 1, + anon_sym_DQUOTE, + STATE(13747), 1, + aux_sym_string_repeat1, + ACTIONS(20873), 2, + sym_string_content, + sym_escape_sequence, + [245664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 1, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20875), 1, + sym__newline, + STATE(6662), 1, + sym_block, + STATE(13909), 1, + aux_sym_import_declaration_repeat1, + [245680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20877), 1, + sym__newline, + STATE(7426), 1, + sym_block, + STATE(12036), 1, + aux_sym_import_declaration_repeat1, + [245696] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20879), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [245710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17168), 1, + anon_sym_LBRACE, + ACTIONS(20881), 1, + sym__newline, + STATE(7210), 1, + sym_record_body, + STATE(13759), 1, + aux_sym_import_declaration_repeat1, + [245726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20883), 1, + sym__newline, + STATE(3317), 1, + sym_block, + STATE(13771), 1, + aux_sym_import_declaration_repeat1, + [245742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20885), 1, + sym__newline, + STATE(6704), 1, + sym_block, + STATE(12647), 1, + aux_sym_import_declaration_repeat1, + [245758] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2846), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [245774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6676), 1, + sym_block, + [245790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(20887), 1, + anon_sym_LBRACE, + STATE(9135), 1, + sym_initializer_list, + STATE(15014), 1, + sym_argument_list, + [245806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20889), 4, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(7750), 1, + sym__newline, + [245816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6699), 1, + sym_block, + [245832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20891), 1, + sym__newline, + STATE(6730), 1, + sym_block, + STATE(13915), 1, + aux_sym_import_declaration_repeat1, + [245848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20893), 1, + sym__newline, + STATE(6740), 1, + sym_block, + STATE(13920), 1, + aux_sym_import_declaration_repeat1, + [245864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9502), 1, + anon_sym_RPAREN, + ACTIONS(20895), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [245880] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(17168), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7217), 1, + sym_record_body, + [245896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18048), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10287), 1, + sym_record_body, + [245912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6793), 1, + sym_block, + [245928] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9158), 1, + sym_block, + [245944] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18543), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8319), 1, + sym_enum_body, + [245960] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20897), 1, + sym__newline, + STATE(3332), 1, + sym_block, + STATE(13786), 1, + aux_sym_import_declaration_repeat1, + [245976] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(20899), 1, + sym__newline, + STATE(9159), 1, + sym_block, + STATE(13850), 1, + aux_sym_import_declaration_repeat1, + [245992] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3334), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20901), 1, + sym__newline, + STATE(6815), 1, + sym_block, + STATE(13923), 1, + aux_sym_import_declaration_repeat1, + [246024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20903), 1, + sym__newline, + STATE(7428), 1, + sym_block, + STATE(12076), 1, + aux_sym_import_declaration_repeat1, + [246040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7429), 1, + sym_block, + [246056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20905), 1, + sym__newline, + STATE(6823), 1, + sym_block, + STATE(13925), 1, + aux_sym_import_declaration_repeat1, + [246072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3337), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20907), 1, + sym__newline, + STATE(7223), 1, + sym_block, + STATE(13799), 1, + aux_sym_import_declaration_repeat1, + [246104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20909), 1, + sym__newline, + STATE(3338), 1, + sym_block, + STATE(13804), 1, + aux_sym_import_declaration_repeat1, + [246120] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7430), 1, + sym_block, + [246136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11175), 1, + anon_sym_RBRACE, + ACTIONS(20911), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20913), 1, + sym__newline, + STATE(7431), 1, + sym_block, + STATE(12107), 1, + aux_sym_import_declaration_repeat1, + [246168] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20915), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(19291), 2, + sym_string_content, + sym_escape_sequence, + [246182] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11099), 1, + anon_sym_RBRACE, + ACTIONS(20917), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246198] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13513), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9689), 1, + sym_block, + [246214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20919), 1, + sym__newline, + STATE(6846), 1, + sym_block, + STATE(11978), 1, + aux_sym_import_declaration_repeat1, + [246230] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13513), 1, + anon_sym_LBRACE, + ACTIONS(20921), 1, + sym__newline, + STATE(9690), 1, + sym_block, + STATE(12139), 1, + aux_sym_import_declaration_repeat1, + [246246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9208), 1, + anon_sym_RBRACE, + ACTIONS(20923), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20925), 1, + sym__newline, + STATE(7326), 1, + sym_block, + STATE(13565), 1, + aux_sym_import_declaration_repeat1, + [246278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11029), 1, + anon_sym_RBRACE, + ACTIONS(20927), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15683), 1, + anon_sym_LBRACE, + ACTIONS(16065), 1, + sym__newline, + STATE(9507), 1, + sym_record_body, + STATE(12557), 1, + aux_sym_import_declaration_repeat1, + [246310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(2991), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246326] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20929), 1, + sym__newline, + STATE(3000), 1, + sym_block, + STATE(13831), 1, + aux_sym_import_declaration_repeat1, + [246342] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19144), 1, + anon_sym_COMMA, + ACTIONS(20931), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(20933), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14987), 1, + sym__for_capture_bar, + [246374] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7433), 1, + sym_block, + [246390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9634), 1, + anon_sym_RBRACK, + ACTIONS(19391), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246406] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(20935), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15040), 1, + sym__for_capture_bar, + [246422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6718), 1, + sym_block, + [246438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20937), 1, + sym__newline, + STATE(3002), 1, + sym_block, + STATE(13834), 1, + aux_sym_import_declaration_repeat1, + [246454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(20939), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15054), 1, + sym__for_capture_bar, + [246470] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20941), 1, + sym__newline, + STATE(7434), 1, + sym_block, + STATE(12118), 1, + aux_sym_import_declaration_repeat1, + [246486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6682), 1, + sym_block, + [246502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20943), 1, + sym__newline, + STATE(6684), 1, + sym_block, + STATE(12882), 1, + aux_sym_import_declaration_repeat1, + [246518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7242), 1, + sym_block, + [246534] = 4, + ACTIONS(19281), 1, + sym_comment, + ACTIONS(20945), 1, + anon_sym_DQUOTE, + STATE(13800), 1, + aux_sym_string_repeat1, + ACTIONS(20947), 2, + sym_string_content, + sym_escape_sequence, + [246548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20950), 1, + sym__newline, + STATE(3004), 1, + sym_block, + STATE(13846), 1, + aux_sym_import_declaration_repeat1, + [246564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7435), 1, + sym_block, + [246580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19391), 1, + anon_sym_COMMA, + ACTIONS(20952), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3006), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9220), 1, + anon_sym_RPAREN, + ACTIONS(20954), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(20956), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8832), 1, + anon_sym_RPAREN, + ACTIONS(20958), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9112), 1, + sym_block, + [246676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7436), 1, + sym_block, + [246692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18048), 1, + anon_sym_LBRACE, + ACTIONS(20960), 1, + sym__newline, + STATE(10448), 1, + sym_record_body, + STATE(13855), 1, + aux_sym_import_declaration_repeat1, + [246708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18543), 1, + anon_sym_LBRACE, + ACTIONS(20962), 1, + sym__newline, + STATE(8305), 1, + sym_enum_body, + STATE(13858), 1, + aux_sym_import_declaration_repeat1, + [246724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20964), 1, + sym__newline, + STATE(7437), 1, + sym_block, + STATE(12120), 1, + aux_sym_import_declaration_repeat1, + [246740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6611), 1, + sym_block, + [246756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20966), 1, + sym__newline, + STATE(6612), 1, + sym_block, + STATE(12929), 1, + aux_sym_import_declaration_repeat1, + [246772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9224), 1, + anon_sym_RBRACE, + ACTIONS(20968), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13725), 1, + anon_sym_LBRACE, + STATE(3515), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20970), 1, + sym__newline, + STATE(3032), 1, + sym_block, + STATE(13887), 1, + aux_sym_import_declaration_repeat1, + [246820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10813), 1, + anon_sym_RBRACE, + ACTIONS(20972), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7438), 1, + sym_block, + [246852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7439), 1, + sym_block, + [246868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20974), 1, + sym__newline, + STATE(3083), 1, + sym_block, + STATE(13899), 1, + aux_sym_import_declaration_repeat1, + [246884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10957), 1, + sym_block, + [246900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6638), 1, + sym_block, + [246916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9230), 1, + anon_sym_RBRACK, + ACTIONS(19383), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(19164), 1, + anon_sym_COMMA, + ACTIONS(20976), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [246948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9172), 1, + sym_block, + [246964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20978), 1, + sym__newline, + STATE(6731), 1, + sym_block, + STATE(12642), 1, + aux_sym_import_declaration_repeat1, + [246980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20980), 1, + sym__newline, + STATE(6750), 1, + sym_block, + STATE(12671), 1, + aux_sym_import_declaration_repeat1, + [246996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(20982), 1, + sym__newline, + STATE(9173), 1, + sym_block, + STATE(11975), 1, + aux_sym_import_declaration_repeat1, + [247012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20984), 1, + sym__newline, + STATE(7270), 1, + sym_block, + STATE(13879), 1, + aux_sym_import_declaration_repeat1, + [247028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3099), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20986), 1, + sym__newline, + STATE(7440), 1, + sym_block, + STATE(12124), 1, + aux_sym_import_declaration_repeat1, + [247060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(20988), 1, + sym__newline, + STATE(9175), 1, + sym_block, + STATE(11979), 1, + aux_sym_import_declaration_repeat1, + [247076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3110), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(20990), 1, + sym__newline, + STATE(3111), 1, + sym_block, + STATE(13922), 1, + aux_sym_import_declaration_repeat1, + [247108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6767), 1, + sym_block, + [247124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(20992), 1, + sym__newline, + STATE(7441), 1, + sym_block, + STATE(12128), 1, + aux_sym_import_declaration_repeat1, + [247140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(20994), 1, + sym__newline, + STATE(6788), 1, + sym_block, + STATE(12591), 1, + aux_sym_import_declaration_repeat1, + [247156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(3969), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(20996), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14859), 1, + sym__for_capture_bar, + [247188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(20998), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14861), 1, + sym__for_capture_bar, + [247204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13545), 1, + anon_sym_LBRACE, + ACTIONS(21000), 1, + sym__newline, + STATE(3986), 1, + sym_block, + STATE(13607), 1, + aux_sym_import_declaration_repeat1, + [247220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21002), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14865), 1, + sym__for_capture_bar, + [247236] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1957), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21004), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(21006), 1, + sym__newline, + STATE(9177), 1, + sym_block, + STATE(11999), 1, + aux_sym_import_declaration_repeat1, + [247268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21008), 1, + sym__newline, + STATE(3115), 1, + sym_block, + STATE(13930), 1, + aux_sym_import_declaration_repeat1, + [247300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7442), 1, + sym_block, + [247316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21010), 1, + sym__newline, + STATE(3131), 1, + sym_block, + STATE(11967), 1, + aux_sym_import_declaration_repeat1, + [247332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9179), 1, + sym_block, + [247348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9244), 1, + anon_sym_RPAREN, + ACTIONS(21012), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7443), 1, + sym_block, + [247380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(21014), 1, + sym__newline, + STATE(9246), 1, + sym_block, + STATE(13917), 1, + aux_sym_import_declaration_repeat1, + [247396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9249), 1, + sym_block, + [247412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18048), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(10467), 1, + sym_record_body, + [247428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21016), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14931), 1, + sym__for_capture_bar, + [247444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21018), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14934), 1, + sym__for_capture_bar, + [247460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(18543), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(8301), 1, + sym_enum_body, + [247476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21020), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14938), 1, + sym__for_capture_bar, + [247492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6791), 1, + sym_block, + [247508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21022), 1, + sym__newline, + STATE(3134), 1, + sym_block, + STATE(11972), 1, + aux_sym_import_declaration_repeat1, + [247524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(21024), 1, + sym__newline, + STATE(6862), 1, + sym_block, + STATE(12603), 1, + aux_sym_import_declaration_repeat1, + [247540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(21026), 1, + sym__newline, + STATE(7444), 1, + sym_block, + STATE(12136), 1, + aux_sym_import_declaration_repeat1, + [247556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6625), 1, + sym_block, + [247572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9250), 1, + anon_sym_RBRACE, + ACTIONS(21028), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(21030), 1, + sym__newline, + STATE(6633), 1, + sym_block, + STATE(12613), 1, + aux_sym_import_declaration_repeat1, + [247604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11035), 1, + anon_sym_RBRACE, + ACTIONS(21032), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21034), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14964), 1, + sym__for_capture_bar, + [247636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21036), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14968), 1, + sym__for_capture_bar, + [247652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21038), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14972), 1, + sym__for_capture_bar, + [247668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(21040), 1, + sym__newline, + STATE(7445), 1, + sym_block, + STATE(12145), 1, + aux_sym_import_declaration_repeat1, + [247684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7446), 1, + sym_block, + [247700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21042), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [247710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9256), 1, + anon_sym_RBRACK, + ACTIONS(21044), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(21046), 1, + sym__newline, + STATE(7447), 1, + sym_block, + STATE(12155), 1, + aux_sym_import_declaration_repeat1, + [247742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21048), 1, + sym__newline, + STATE(3150), 1, + sym_block, + STATE(11980), 1, + aux_sym_import_declaration_repeat1, + [247758] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21050), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14983), 1, + sym__for_capture_bar, + [247774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21052), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14985), 1, + sym__for_capture_bar, + [247790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7288), 1, + sym_block, + [247806] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21054), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15119), 1, + sym__for_capture_bar, + [247822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(21056), 1, + sym__newline, + STATE(7289), 1, + sym_block, + STATE(13927), 1, + aux_sym_import_declaration_repeat1, + [247838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(21058), 1, + sym__newline, + STATE(9185), 1, + sym_block, + STATE(12103), 1, + aux_sym_import_declaration_repeat1, + [247854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21060), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14997), 1, + sym__for_capture_bar, + [247870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21062), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(14998), 1, + sym__for_capture_bar, + [247886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(21064), 1, + sym__newline, + STATE(7291), 1, + sym_block, + STATE(13549), 1, + aux_sym_import_declaration_repeat1, + [247902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21066), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15002), 1, + sym__for_capture_bar, + [247918] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3157), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [247934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6635), 1, + sym_block, + [247950] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21068), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15007), 1, + sym__for_capture_bar, + [247966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21070), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15008), 1, + sym__for_capture_bar, + [247982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21072), 1, + sym__newline, + STATE(3158), 1, + sym_block, + STATE(11983), 1, + aux_sym_import_declaration_repeat1, + [247998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21074), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15011), 1, + sym__for_capture_bar, + [248014] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(21076), 1, + sym__newline, + STATE(7448), 1, + sym_block, + STATE(12156), 1, + aux_sym_import_declaration_repeat1, + [248030] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21078), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15019), 1, + sym__for_capture_bar, + [248046] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21080), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15022), 1, + sym__for_capture_bar, + [248062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9640), 1, + anon_sym_RBRACE, + ACTIONS(21082), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248078] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21084), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15025), 1, + sym__for_capture_bar, + [248094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11043), 1, + anon_sym_RBRACE, + ACTIONS(21086), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21088), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15031), 1, + sym__for_capture_bar, + [248142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21090), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15032), 1, + sym__for_capture_bar, + [248158] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6639), 1, + sym_block, + [248174] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11801), 1, + sym__newline, + ACTIONS(21092), 1, + anon_sym_PIPE2, + STATE(8496), 1, + aux_sym_import_declaration_repeat1, + STATE(15035), 1, + sym__for_capture_bar, + [248190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21094), 1, + sym__newline, + STATE(3164), 1, + sym_block, + STATE(11986), 1, + aux_sym_import_declaration_repeat1, + [248206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21096), 1, + sym__newline, + STATE(3165), 1, + sym_block, + STATE(11987), 1, + aux_sym_import_declaration_repeat1, + [248222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13763), 1, + anon_sym_LBRACE, + STATE(2635), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6640), 1, + sym_block, + [248254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11171), 1, + anon_sym_RBRACE, + ACTIONS(21098), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248270] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6641), 1, + sym_block, + [248286] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(21100), 1, + sym__newline, + STATE(6642), 1, + sym_block, + STATE(12618), 1, + aux_sym_import_declaration_repeat1, + [248302] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1961), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21102), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248318] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21104), 1, + sym__newline, + STATE(3177), 1, + sym_block, + STATE(11990), 1, + aux_sym_import_declaration_repeat1, + [248334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(21106), 1, + sym__newline, + STATE(7355), 1, + sym_block, + STATE(13054), 1, + aux_sym_import_declaration_repeat1, + [248350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18577), 1, + anon_sym_LBRACE, + ACTIONS(21108), 1, + sym__newline, + STATE(8282), 1, + sym_record_body, + STATE(12705), 1, + aux_sym_import_declaration_repeat1, + [248366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6647), 1, + sym_block, + [248382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9274), 1, + anon_sym_RPAREN, + ACTIONS(21110), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13611), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(9294), 1, + sym_block, + [248414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13611), 1, + anon_sym_LBRACE, + ACTIONS(21112), 1, + sym__newline, + STATE(9345), 1, + sym_block, + STATE(12883), 1, + aux_sym_import_declaration_repeat1, + [248430] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(21114), 1, + sym__newline, + STATE(6655), 1, + sym_block, + STATE(12536), 1, + aux_sym_import_declaration_repeat1, + [248446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6659), 1, + sym_block, + [248462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13695), 1, + anon_sym_LBRACE, + ACTIONS(21116), 1, + sym__newline, + STATE(6701), 1, + sym_block, + STATE(12630), 1, + aux_sym_import_declaration_repeat1, + [248478] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3180), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248494] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6702), 1, + sym_block, + [248510] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_LBRACE, + ACTIONS(21118), 1, + sym__newline, + STATE(3183), 1, + sym_block, + STATE(11994), 1, + aux_sym_import_declaration_repeat1, + [248526] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13695), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(6703), 1, + sym_block, + [248542] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11107), 1, + anon_sym_RBRACE, + ACTIONS(21120), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248558] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13573), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + STATE(7303), 1, + sym_block, + [248574] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17146), 1, + anon_sym_LBRACE, + ACTIONS(21122), 1, + sym__newline, + STATE(4275), 1, + sym_enum_body, + STATE(12725), 1, + aux_sym_import_declaration_repeat1, + [248590] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13573), 1, + anon_sym_LBRACE, + ACTIONS(21124), 1, + sym__newline, + STATE(7301), 1, + sym_block, + STATE(13171), 1, + aux_sym_import_declaration_repeat1, + [248606] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13713), 1, + anon_sym_LBRACE, + STATE(3189), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(13545), 1, + anon_sym_LBRACE, + STATE(4143), 1, + sym_block, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21126), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248651] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21128), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248664] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21130), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7690), 1, + sym_parameter_list, + [248690] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21132), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248703] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21134), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21136), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21138), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248742] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21140), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248755] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11055), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21142), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11099), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21144), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21146), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21148), 1, + anon_sym_RPAREN, + ACTIONS(21150), 1, + sym__newline, + STATE(13983), 1, + aux_sym_import_declaration_repeat1, + [248833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21152), 1, + anon_sym_COMMA, + ACTIONS(21154), 1, + anon_sym_PIPE2, + STATE(11452), 1, + sym__for_capture_bar, + [248846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21156), 1, + anon_sym_COMMA, + ACTIONS(21158), 1, + anon_sym_PIPE2, + STATE(11454), 1, + sym__for_capture_bar, + [248859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21160), 1, + anon_sym_COMMA, + ACTIONS(21162), 1, + anon_sym_PIPE2, + STATE(11807), 1, + sym__for_capture_bar, + [248872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21164), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21166), 1, + anon_sym_RPAREN, + ACTIONS(21168), 1, + sym__newline, + STATE(13955), 1, + aux_sym_import_declaration_repeat1, + [248898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21170), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21172), 1, + anon_sym_COMMA, + ACTIONS(21174), 1, + anon_sym_PIPE2, + STATE(11884), 1, + sym__for_capture_bar, + [248924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21176), 1, + anon_sym_COMMA, + ACTIONS(21178), 1, + anon_sym_PIPE2, + STATE(11886), 1, + sym__for_capture_bar, + [248937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21180), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [248950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21180), 1, + anon_sym_RPAREN, + ACTIONS(21182), 1, + sym__newline, + STATE(13962), 1, + aux_sym_import_declaration_repeat1, + [248963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21184), 1, + anon_sym_RPAREN, + ACTIONS(21186), 1, + sym__newline, + STATE(13963), 1, + aux_sym_import_declaration_repeat1, + [248976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21188), 1, + anon_sym_RPAREN, + ACTIONS(21190), 1, + sym__newline, + STATE(13965), 1, + aux_sym_import_declaration_repeat1, + [248989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21192), 1, + anon_sym_COMMA, + ACTIONS(21194), 1, + anon_sym_PIPE2, + STATE(11932), 1, + sym__for_capture_bar, + [249002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21196), 1, + anon_sym_COMMA, + ACTIONS(21198), 1, + anon_sym_PIPE2, + STATE(11938), 1, + sym__for_capture_bar, + [249015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21200), 1, + anon_sym_COMMA, + ACTIONS(21202), 1, + anon_sym_PIPE2, + STATE(11942), 1, + sym__for_capture_bar, + [249028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21204), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21206), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21206), 1, + anon_sym_RPAREN, + ACTIONS(21208), 1, + sym__newline, + STATE(13970), 1, + aux_sym_import_declaration_repeat1, + [249067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21210), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21210), 1, + anon_sym_RPAREN, + ACTIONS(21212), 1, + sym__newline, + STATE(13971), 1, + aux_sym_import_declaration_repeat1, + [249093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21214), 1, + anon_sym_RPAREN, + ACTIONS(21216), 1, + sym__newline, + STATE(13972), 1, + aux_sym_import_declaration_repeat1, + [249106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21218), 1, + anon_sym_COMMA, + ACTIONS(21220), 1, + anon_sym_PIPE2, + STATE(11013), 1, + sym__for_capture_bar, + [249119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21222), 1, + anon_sym_COMMA, + ACTIONS(21224), 1, + anon_sym_PIPE2, + STATE(11014), 1, + sym__for_capture_bar, + [249132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21226), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21228), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21230), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21230), 1, + anon_sym_RPAREN, + ACTIONS(21232), 1, + sym__newline, + STATE(13975), 1, + aux_sym_import_declaration_repeat1, + [249184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21234), 1, + anon_sym_COMMA, + ACTIONS(21236), 1, + anon_sym_PIPE2, + STATE(11032), 1, + sym__for_capture_bar, + [249197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21238), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21240), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21242), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21244), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21246), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249262] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21244), 1, + anon_sym_RPAREN, + ACTIONS(21248), 1, + sym__newline, + STATE(14122), 1, + aux_sym_import_declaration_repeat1, + [249275] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21250), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249288] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11175), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21252), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249314] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21252), 1, + anon_sym_RPAREN, + ACTIONS(21254), 1, + sym__newline, + STATE(14023), 1, + aux_sym_import_declaration_repeat1, + [249327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21256), 1, + anon_sym_RPAREN, + ACTIONS(21258), 1, + sym__newline, + STATE(14024), 1, + aux_sym_import_declaration_repeat1, + [249340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21260), 1, + anon_sym_RPAREN, + ACTIONS(21262), 1, + sym__newline, + STATE(14026), 1, + aux_sym_import_declaration_repeat1, + [249353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21264), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21266), 1, + anon_sym_COMMA, + ACTIONS(21268), 1, + anon_sym_PIPE2, + STATE(11488), 1, + sym__for_capture_bar, + [249379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21270), 1, + anon_sym_COMMA, + ACTIONS(21272), 1, + anon_sym_PIPE2, + STATE(11490), 1, + sym__for_capture_bar, + [249392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21274), 1, + anon_sym_COMMA, + ACTIONS(21276), 1, + anon_sym_PIPE2, + STATE(11494), 1, + sym__for_capture_bar, + [249405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21278), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21280), 1, + anon_sym_COMMA, + ACTIONS(21282), 1, + anon_sym_PIPE2, + STATE(11111), 1, + sym__for_capture_bar, + [249431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21284), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21286), 1, + anon_sym_RPAREN, + ACTIONS(21288), 1, + sym__newline, + STATE(13998), 1, + aux_sym_import_declaration_repeat1, + [249457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21290), 1, + anon_sym_RPAREN, + ACTIONS(21292), 1, + sym__newline, + STATE(14075), 1, + aux_sym_import_declaration_repeat1, + [249470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21294), 1, + anon_sym_COMMA, + ACTIONS(21296), 1, + anon_sym_PIPE2, + STATE(11131), 1, + sym__for_capture_bar, + [249483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21298), 1, + anon_sym_COMMA, + ACTIONS(21300), 1, + anon_sym_PIPE2, + STATE(11132), 1, + sym__for_capture_bar, + [249496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21302), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249509] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21302), 1, + anon_sym_RPAREN, + ACTIONS(21304), 1, + sym__newline, + STATE(14005), 1, + aux_sym_import_declaration_repeat1, + [249522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21306), 1, + anon_sym_RPAREN, + ACTIONS(21308), 1, + sym__newline, + STATE(14006), 1, + aux_sym_import_declaration_repeat1, + [249535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21310), 1, + anon_sym_RPAREN, + ACTIONS(21312), 1, + sym__newline, + STATE(14008), 1, + aux_sym_import_declaration_repeat1, + [249548] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21314), 1, + anon_sym_COMMA, + ACTIONS(21316), 1, + anon_sym_PIPE2, + STATE(11145), 1, + sym__for_capture_bar, + [249561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21318), 1, + anon_sym_COMMA, + ACTIONS(21320), 1, + anon_sym_PIPE2, + STATE(11147), 1, + sym__for_capture_bar, + [249574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21322), 1, + anon_sym_COMMA, + ACTIONS(21324), 1, + anon_sym_PIPE2, + STATE(11150), 1, + sym__for_capture_bar, + [249587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21326), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21328), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21328), 1, + anon_sym_RPAREN, + ACTIONS(21330), 1, + sym__newline, + STATE(14013), 1, + aux_sym_import_declaration_repeat1, + [249626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21332), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249639] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21332), 1, + anon_sym_RPAREN, + ACTIONS(21334), 1, + sym__newline, + STATE(14014), 1, + aux_sym_import_declaration_repeat1, + [249652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21336), 1, + anon_sym_RPAREN, + ACTIONS(21338), 1, + sym__newline, + STATE(14015), 1, + aux_sym_import_declaration_repeat1, + [249665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21340), 1, + anon_sym_COMMA, + ACTIONS(21342), 1, + anon_sym_PIPE2, + STATE(11163), 1, + sym__for_capture_bar, + [249678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21344), 1, + anon_sym_COMMA, + ACTIONS(21346), 1, + anon_sym_PIPE2, + STATE(11164), 1, + sym__for_capture_bar, + [249691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21348), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21350), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249717] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21352), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21352), 1, + anon_sym_RPAREN, + ACTIONS(21354), 1, + sym__newline, + STATE(14018), 1, + aux_sym_import_declaration_repeat1, + [249743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21356), 1, + anon_sym_COMMA, + ACTIONS(21358), 1, + anon_sym_PIPE2, + STATE(11184), 1, + sym__for_capture_bar, + [249756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21360), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21362), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15040), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21364), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21366), 1, + anon_sym_RBRACK, + ACTIONS(21368), 1, + sym__newline, + STATE(14160), 1, + aux_sym_import_declaration_repeat1, + [249821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21370), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21372), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249847] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21372), 1, + anon_sym_RPAREN, + ACTIONS(21374), 1, + sym__newline, + STATE(14060), 1, + aux_sym_import_declaration_repeat1, + [249860] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21376), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21378), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249886] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21376), 1, + anon_sym_RPAREN, + ACTIONS(21380), 1, + sym__newline, + STATE(14061), 1, + aux_sym_import_declaration_repeat1, + [249899] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21382), 1, + anon_sym_RPAREN, + ACTIONS(21384), 1, + sym__newline, + STATE(14062), 1, + aux_sym_import_declaration_repeat1, + [249912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21386), 1, + anon_sym_COMMA, + ACTIONS(21388), 1, + anon_sym_PIPE2, + STATE(11232), 1, + sym__for_capture_bar, + [249925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21390), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249938] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21392), 1, + anon_sym_RPAREN, + ACTIONS(21394), 1, + sym__newline, + STATE(14035), 1, + aux_sym_import_declaration_repeat1, + [249951] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21396), 1, + anon_sym_COMMA, + ACTIONS(21398), 1, + anon_sym_PIPE2, + STATE(11237), 1, + sym__for_capture_bar, + [249964] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21400), 1, + anon_sym_COMMA, + ACTIONS(21402), 1, + anon_sym_PIPE2, + STATE(11238), 1, + sym__for_capture_bar, + [249977] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21404), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [249990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21404), 1, + anon_sym_RPAREN, + ACTIONS(21406), 1, + sym__newline, + STATE(14042), 1, + aux_sym_import_declaration_repeat1, + [250003] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21408), 1, + anon_sym_RPAREN, + ACTIONS(21410), 1, + sym__newline, + STATE(14043), 1, + aux_sym_import_declaration_repeat1, + [250016] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21412), 1, + anon_sym_RPAREN, + ACTIONS(21414), 1, + sym__newline, + STATE(14045), 1, + aux_sym_import_declaration_repeat1, + [250029] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21416), 1, + anon_sym_COMMA, + ACTIONS(21418), 1, + anon_sym_PIPE2, + STATE(11247), 1, + sym__for_capture_bar, + [250042] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21420), 1, + anon_sym_COMMA, + ACTIONS(21422), 1, + anon_sym_PIPE2, + STATE(11249), 1, + sym__for_capture_bar, + [250055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21424), 1, + anon_sym_COMMA, + ACTIONS(21426), 1, + anon_sym_PIPE2, + STATE(11252), 1, + sym__for_capture_bar, + [250068] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21428), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250081] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21430), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21430), 1, + anon_sym_RPAREN, + ACTIONS(21432), 1, + sym__newline, + STATE(14050), 1, + aux_sym_import_declaration_repeat1, + [250107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21434), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21434), 1, + anon_sym_RPAREN, + ACTIONS(21436), 1, + sym__newline, + STATE(14051), 1, + aux_sym_import_declaration_repeat1, + [250133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21438), 1, + anon_sym_RPAREN, + ACTIONS(21440), 1, + sym__newline, + STATE(14052), 1, + aux_sym_import_declaration_repeat1, + [250146] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21442), 1, + anon_sym_COMMA, + ACTIONS(21444), 1, + anon_sym_PIPE2, + STATE(11263), 1, + sym__for_capture_bar, + [250159] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21446), 1, + anon_sym_COMMA, + ACTIONS(21448), 1, + anon_sym_PIPE2, + STATE(11264), 1, + sym__for_capture_bar, + [250172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21450), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21452), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21454), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21454), 1, + anon_sym_RPAREN, + ACTIONS(21456), 1, + sym__newline, + STATE(14055), 1, + aux_sym_import_declaration_repeat1, + [250224] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21458), 1, + anon_sym_COMMA, + ACTIONS(21460), 1, + anon_sym_PIPE2, + STATE(11281), 1, + sym__for_capture_bar, + [250237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21462), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21464), 1, + anon_sym_COMMA, + ACTIONS(21466), 1, + anon_sym_PIPE2, + STATE(11567), 1, + sym__for_capture_bar, + [250263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21468), 1, + anon_sym_COMMA, + ACTIONS(21470), 1, + anon_sym_PIPE2, + STATE(11568), 1, + sym__for_capture_bar, + [250276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21472), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250289] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21474), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250302] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21476), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21478), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250328] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21480), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250341] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21480), 1, + anon_sym_RPAREN, + ACTIONS(21482), 1, + sym__newline, + STATE(14066), 1, + aux_sym_import_declaration_repeat1, + [250354] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21484), 1, + anon_sym_COMMA, + ACTIONS(21486), 1, + anon_sym_PIPE2, + STATE(11588), 1, + sym__for_capture_bar, + [250367] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21488), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21490), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21492), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21494), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250419] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21496), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21498), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21500), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21502), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15098), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21504), 1, + anon_sym_RPAREN, + ACTIONS(21506), 1, + sym__newline, + STATE(14491), 1, + aux_sym_import_declaration_repeat1, + [250497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21508), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250510] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21508), 1, + anon_sym_RPAREN, + ACTIONS(21510), 1, + sym__newline, + STATE(14098), 1, + aux_sym_import_declaration_repeat1, + [250523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15253), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [250532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21512), 1, + anon_sym_RBRACK, + ACTIONS(21514), 1, + sym__newline, + STATE(14107), 1, + aux_sym_import_declaration_repeat1, + [250545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21516), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250558] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21518), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21520), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250597] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21522), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21524), 1, + anon_sym_RBRACK, + ACTIONS(21526), 1, + sym__newline, + STATE(14289), 1, + aux_sym_import_declaration_repeat1, + [250623] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21528), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250636] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21530), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250649] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21532), 1, + anon_sym_RBRACK, + ACTIONS(21534), 1, + sym__newline, + STATE(14352), 1, + aux_sym_import_declaration_repeat1, + [250662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21536), 1, + anon_sym_RBRACK, + ACTIONS(21538), 1, + sym__newline, + STATE(14143), 1, + aux_sym_import_declaration_repeat1, + [250675] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21540), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21542), 1, + anon_sym_RBRACK, + ACTIONS(21544), 1, + sym__newline, + STATE(14144), 1, + aux_sym_import_declaration_repeat1, + [250701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21546), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250714] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21548), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250727] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21550), 1, + anon_sym_RBRACK, + ACTIONS(21552), 1, + sym__newline, + STATE(14367), 1, + aux_sym_import_declaration_repeat1, + [250740] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21554), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250753] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21556), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10869), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21558), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250792] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21560), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21562), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250818] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21564), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21566), 1, + anon_sym_COMMA, + ACTIONS(21568), 1, + anon_sym_PIPE2, + STATE(11390), 1, + sym__for_capture_bar, + [250844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16131), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [250853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21570), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250866] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21572), 1, + anon_sym_RBRACK, + ACTIONS(21574), 1, + sym__newline, + STATE(14131), 1, + aux_sym_import_declaration_repeat1, + [250879] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21576), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21576), 1, + anon_sym_RPAREN, + ACTIONS(21578), 1, + sym__newline, + STATE(14395), 1, + aux_sym_import_declaration_repeat1, + [250905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21580), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21582), 1, + anon_sym_RBRACK, + ACTIONS(21584), 1, + sym__newline, + STATE(14132), 1, + aux_sym_import_declaration_repeat1, + [250931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21586), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8852), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(14925), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21588), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21590), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [250996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21592), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21592), 1, + anon_sym_RPAREN, + ACTIONS(21594), 1, + sym__newline, + STATE(14473), 1, + aux_sym_import_declaration_repeat1, + [251022] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21596), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21598), 1, + anon_sym_RPAREN, + ACTIONS(21600), 1, + sym__newline, + STATE(14568), 1, + aux_sym_import_declaration_repeat1, + [251048] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21602), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21604), 1, + anon_sym_RPAREN, + ACTIONS(21606), 1, + sym__newline, + STATE(14129), 1, + aux_sym_import_declaration_repeat1, + [251074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21608), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21610), 1, + anon_sym_RPAREN, + ACTIONS(21612), 1, + sym__newline, + STATE(14136), 1, + aux_sym_import_declaration_repeat1, + [251100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21614), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21616), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9750), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21618), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21620), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21622), 1, + anon_sym_COMMA, + ACTIONS(21624), 1, + anon_sym_PIPE2, + STATE(11646), 1, + sym__for_capture_bar, + [251178] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21626), 1, + anon_sym_COMMA, + ACTIONS(21628), 1, + anon_sym_PIPE2, + STATE(11647), 1, + sym__for_capture_bar, + [251191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21630), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21630), 1, + anon_sym_RPAREN, + ACTIONS(21632), 1, + sym__newline, + STATE(14150), 1, + aux_sym_import_declaration_repeat1, + [251217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21634), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21636), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21638), 1, + anon_sym_RBRACK, + ACTIONS(21640), 1, + sym__newline, + STATE(14156), 1, + aux_sym_import_declaration_repeat1, + [251256] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21642), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21644), 1, + anon_sym_RBRACK, + ACTIONS(21646), 1, + sym__newline, + STATE(14189), 1, + aux_sym_import_declaration_repeat1, + [251282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21648), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251295] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21648), 1, + anon_sym_RPAREN, + ACTIONS(21650), 1, + sym__newline, + STATE(14167), 1, + aux_sym_import_declaration_repeat1, + [251308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21652), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21654), 1, + anon_sym_RBRACK, + ACTIONS(21656), 1, + sym__newline, + STATE(14172), 1, + aux_sym_import_declaration_repeat1, + [251334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21658), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251347] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21660), 1, + anon_sym_RBRACK, + ACTIONS(21662), 1, + sym__newline, + STATE(14194), 1, + aux_sym_import_declaration_repeat1, + [251360] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21664), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21666), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21668), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15333), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21670), 1, + anon_sym_RBRACK, + ACTIONS(21672), 1, + sym__newline, + STATE(14260), 1, + aux_sym_import_declaration_repeat1, + [251425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21674), 1, + anon_sym_RBRACK, + ACTIONS(21676), 1, + sym__newline, + STATE(14263), 1, + aux_sym_import_declaration_repeat1, + [251438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21678), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [251447] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21680), 1, + anon_sym_RBRACK, + ACTIONS(21682), 1, + sym__newline, + STATE(14769), 1, + aux_sym_import_declaration_repeat1, + [251460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21684), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21686), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21688), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21690), 1, + anon_sym_RBRACK, + ACTIONS(21692), 1, + sym__newline, + STATE(14468), 1, + aux_sym_import_declaration_repeat1, + [251512] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21694), 1, + anon_sym_RBRACK, + ACTIONS(21696), 1, + sym__newline, + STATE(14770), 1, + aux_sym_import_declaration_repeat1, + [251525] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21698), 1, + anon_sym_RBRACK, + ACTIONS(21700), 1, + sym__newline, + STATE(14170), 1, + aux_sym_import_declaration_repeat1, + [251538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21702), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251551] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21704), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251564] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21706), 1, + anon_sym_RBRACK, + ACTIONS(21708), 1, + sym__newline, + STATE(14175), 1, + aux_sym_import_declaration_repeat1, + [251577] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21710), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251590] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21712), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21714), 1, + anon_sym_RBRACK, + ACTIONS(21716), 1, + sym__newline, + STATE(14469), 1, + aux_sym_import_declaration_repeat1, + [251616] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21718), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21720), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251642] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21722), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21724), 1, + anon_sym_RBRACK, + ACTIONS(21726), 1, + sym__newline, + STATE(14670), 1, + aux_sym_import_declaration_repeat1, + [251668] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21728), 1, + anon_sym_RBRACK, + ACTIONS(21730), 1, + sym__newline, + STATE(14671), 1, + aux_sym_import_declaration_repeat1, + [251681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21732), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21734), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21734), 1, + anon_sym_RPAREN, + ACTIONS(21736), 1, + sym__newline, + STATE(14226), 1, + aux_sym_import_declaration_repeat1, + [251720] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21738), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21740), 1, + anon_sym_RBRACK, + ACTIONS(21742), 1, + sym__newline, + STATE(14214), 1, + aux_sym_import_declaration_repeat1, + [251746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21744), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21746), 1, + anon_sym_RBRACK, + ACTIONS(21748), 1, + sym__newline, + STATE(14215), 1, + aux_sym_import_declaration_repeat1, + [251772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21750), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21752), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21754), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [251807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21756), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21758), 1, + anon_sym_RPAREN, + ACTIONS(21760), 1, + sym__newline, + STATE(14199), 1, + aux_sym_import_declaration_repeat1, + [251833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21762), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21764), 1, + anon_sym_RBRACK, + ACTIONS(21766), 1, + sym__newline, + STATE(14190), 1, + aux_sym_import_declaration_repeat1, + [251859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21768), 1, + anon_sym_RPAREN, + ACTIONS(21770), 1, + sym__newline, + STATE(14168), 1, + aux_sym_import_declaration_repeat1, + [251872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21772), 1, + anon_sym_RBRACK, + ACTIONS(21774), 1, + sym__newline, + STATE(14191), 1, + aux_sym_import_declaration_repeat1, + [251885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21776), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21778), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21780), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21782), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21784), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21786), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21788), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21790), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [251989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21792), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21794), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21796), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21798), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21800), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21802), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21804), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21806), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21808), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21808), 1, + anon_sym_RPAREN, + ACTIONS(21810), 1, + sym__newline, + STATE(14264), 1, + aux_sym_import_declaration_repeat1, + [252119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21812), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11199), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21814), 1, + anon_sym_RBRACK, + ACTIONS(21816), 1, + sym__newline, + STATE(14271), 1, + aux_sym_import_declaration_repeat1, + [252158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9048), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21818), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21820), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21822), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21824), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14973), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [252232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(14808), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252245] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21826), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21828), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21830), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21832), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21834), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21836), 1, + anon_sym_RBRACK, + ACTIONS(21838), 1, + sym__newline, + STATE(14258), 1, + aux_sym_import_declaration_repeat1, + [252323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21840), 1, + anon_sym_RBRACK, + ACTIONS(21842), 1, + sym__newline, + STATE(14259), 1, + aux_sym_import_declaration_repeat1, + [252336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21844), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21846), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252362] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21848), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21850), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252388] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21852), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21854), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21856), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [252423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21858), 1, + anon_sym_RPAREN, + ACTIONS(21860), 1, + sym__newline, + STATE(14779), 1, + aux_sym_import_declaration_repeat1, + [252436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21862), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21864), 1, + anon_sym_RPAREN, + ACTIONS(21866), 1, + sym__newline, + STATE(14114), 1, + aux_sym_import_declaration_repeat1, + [252462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21868), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21870), 1, + anon_sym_RBRACK, + ACTIONS(21872), 1, + sym__newline, + STATE(14235), 1, + aux_sym_import_declaration_repeat1, + [252488] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21874), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252501] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21876), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21878), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21880), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252540] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21882), 1, + anon_sym_RBRACK, + ACTIONS(21884), 1, + sym__newline, + STATE(14256), 1, + aux_sym_import_declaration_repeat1, + [252553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21886), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252566] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21888), 1, + anon_sym_RBRACK, + ACTIONS(21890), 1, + sym__newline, + STATE(14257), 1, + aux_sym_import_declaration_repeat1, + [252579] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21892), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10957), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252605] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21894), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252618] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21896), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252631] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21898), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21900), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252657] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21902), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21904), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252683] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21906), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21908), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252709] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21910), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21912), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252735] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21914), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252748] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21916), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252761] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21918), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21920), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252787] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21922), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252800] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21924), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21926), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21928), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252839] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21930), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21932), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21934), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21936), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252891] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21938), 1, + anon_sym_RBRACK, + ACTIONS(21940), 1, + sym__newline, + STATE(14267), 1, + aux_sym_import_declaration_repeat1, + [252904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21942), 1, + anon_sym_RBRACK, + ACTIONS(21944), 1, + sym__newline, + STATE(14274), 1, + aux_sym_import_declaration_repeat1, + [252917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21946), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252930] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21948), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21950), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21952), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21954), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [252982] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21956), 1, + anon_sym_RBRACK, + ACTIONS(21958), 1, + sym__newline, + STATE(14354), 1, + aux_sym_import_declaration_repeat1, + [252995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21960), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253008] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21962), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21964), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253034] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21966), 1, + anon_sym_RBRACK, + ACTIONS(21968), 1, + sym__newline, + STATE(14355), 1, + aux_sym_import_declaration_repeat1, + [253047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21970), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21972), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253073] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21974), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21976), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253099] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21978), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21980), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21982), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10965), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253151] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21984), 1, + anon_sym_RBRACK, + ACTIONS(21986), 1, + sym__newline, + STATE(14123), 1, + aux_sym_import_declaration_repeat1, + [253164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21988), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21990), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21992), 1, + anon_sym_COMMA, + ACTIONS(21994), 1, + anon_sym_PIPE2, + STATE(11756), 1, + sym__for_capture_bar, + [253203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21996), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(21998), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22000), 1, + anon_sym_RPAREN, + ACTIONS(22002), 1, + sym__newline, + STATE(14487), 1, + aux_sym_import_declaration_repeat1, + [253242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22004), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22006), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22008), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22010), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22012), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22014), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22016), 1, + anon_sym_RBRACK, + ACTIONS(22018), 1, + sym__newline, + STATE(14126), 1, + aux_sym_import_declaration_repeat1, + [253333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22020), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22022), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22024), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22026), 1, + anon_sym_COMMA, + ACTIONS(22028), 1, + anon_sym_PIPE2, + STATE(11123), 1, + sym__for_capture_bar, + [253385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22030), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22032), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22034), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22036), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22038), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22040), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22042), 1, + anon_sym_RPAREN, + ACTIONS(22044), 1, + sym__newline, + STATE(14309), 1, + aux_sym_import_declaration_repeat1, + [253476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22046), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22048), 1, + anon_sym_COMMA, + ACTIONS(22050), 1, + anon_sym_PIPE2, + STATE(11213), 1, + sym__for_capture_bar, + [253502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22052), 1, + anon_sym_COMMA, + ACTIONS(22054), 1, + anon_sym_PIPE2, + STATE(11214), 1, + sym__for_capture_bar, + [253515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22056), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22056), 1, + anon_sym_RPAREN, + ACTIONS(22058), 1, + sym__newline, + STATE(14316), 1, + aux_sym_import_declaration_repeat1, + [253541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22060), 1, + anon_sym_RPAREN, + ACTIONS(22062), 1, + sym__newline, + STATE(14317), 1, + aux_sym_import_declaration_repeat1, + [253554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22064), 1, + anon_sym_RPAREN, + ACTIONS(22066), 1, + sym__newline, + STATE(14319), 1, + aux_sym_import_declaration_repeat1, + [253567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22068), 1, + anon_sym_COMMA, + ACTIONS(22070), 1, + anon_sym_PIPE2, + STATE(11303), 1, + sym__for_capture_bar, + [253580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22072), 1, + anon_sym_COMMA, + ACTIONS(22074), 1, + anon_sym_PIPE2, + STATE(11305), 1, + sym__for_capture_bar, + [253593] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22076), 1, + anon_sym_COMMA, + ACTIONS(22078), 1, + anon_sym_PIPE2, + STATE(11309), 1, + sym__for_capture_bar, + [253606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22080), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22082), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22082), 1, + anon_sym_RPAREN, + ACTIONS(22084), 1, + sym__newline, + STATE(14324), 1, + aux_sym_import_declaration_repeat1, + [253645] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22086), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253658] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22086), 1, + anon_sym_RPAREN, + ACTIONS(22088), 1, + sym__newline, + STATE(14325), 1, + aux_sym_import_declaration_repeat1, + [253671] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22090), 1, + anon_sym_RPAREN, + ACTIONS(22092), 1, + sym__newline, + STATE(14326), 1, + aux_sym_import_declaration_repeat1, + [253684] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22094), 1, + anon_sym_COMMA, + ACTIONS(22096), 1, + anon_sym_PIPE2, + STATE(11325), 1, + sym__for_capture_bar, + [253697] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22098), 1, + anon_sym_COMMA, + ACTIONS(22100), 1, + anon_sym_PIPE2, + STATE(11326), 1, + sym__for_capture_bar, + [253710] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22102), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253723] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22104), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22106), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22106), 1, + anon_sym_RPAREN, + ACTIONS(22108), 1, + sym__newline, + STATE(14329), 1, + aux_sym_import_declaration_repeat1, + [253762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22110), 1, + anon_sym_COMMA, + ACTIONS(22112), 1, + anon_sym_PIPE2, + STATE(11344), 1, + sym__for_capture_bar, + [253775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22114), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22116), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253801] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22118), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253814] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22120), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22122), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253840] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22124), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22126), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253866] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22128), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253879] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22130), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22132), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22134), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22136), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(8954), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22138), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22140), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22142), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22144), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [253996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22146), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22148), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254022] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22150), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22152), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254048] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22154), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22156), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22158), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22160), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22162), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22164), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22166), 1, + anon_sym_RBRACK, + ACTIONS(22168), 1, + sym__newline, + STATE(14402), 1, + aux_sym_import_declaration_repeat1, + [254139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22170), 1, + anon_sym_RBRACK, + ACTIONS(22172), 1, + sym__newline, + STATE(14403), 1, + aux_sym_import_declaration_repeat1, + [254152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22174), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22176), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254178] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22178), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22180), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22182), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10835), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22184), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22186), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254256] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22188), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22190), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22192), 1, + anon_sym_RBRACK, + ACTIONS(22194), 1, + sym__newline, + STATE(14082), 1, + aux_sym_import_declaration_repeat1, + [254295] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22196), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22198), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22200), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22202), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254347] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22204), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254360] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22206), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22208), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22210), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22212), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9432), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22214), 1, + anon_sym_RBRACK, + ACTIONS(22216), 1, + sym__newline, + STATE(14083), 1, + aux_sym_import_declaration_repeat1, + [254438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22218), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254451] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22220), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22222), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254477] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22224), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22226), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254503] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22228), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254516] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10913), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254529] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22230), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254542] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22232), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254555] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22234), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254568] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22236), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22238), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254594] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22240), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254607] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22242), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254620] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22244), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22246), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254646] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22248), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22250), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22252), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22254), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22256), 1, + anon_sym_COMMA, + ACTIONS(22258), 1, + anon_sym_PIPE2, + STATE(11717), 1, + sym__for_capture_bar, + [254711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22260), 1, + anon_sym_COMMA, + ACTIONS(22262), 1, + anon_sym_PIPE2, + STATE(11777), 1, + sym__for_capture_bar, + [254724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22264), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22266), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22268), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22270), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22272), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9270), 1, + anon_sym_AT, + ACTIONS(22274), 2, + sym_sink, + sym_identifier, + [254800] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22276), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22278), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22280), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22284), 1, + anon_sym_AT, + ACTIONS(22282), 2, + sym_sink, + sym_identifier, + [254850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22286), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22288), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22290), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22292), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22294), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22296), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22298), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254941] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22300), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22302), 1, + anon_sym_RPAREN, + ACTIONS(22304), 1, + sym__newline, + STATE(14441), 1, + aux_sym_import_declaration_repeat1, + [254967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22306), 1, + anon_sym_COMMA, + ACTIONS(22308), 1, + anon_sym_PIPE2, + STATE(11722), 1, + sym__for_capture_bar, + [254980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22310), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [254993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22312), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22314), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22316), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255032] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22318), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22320), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22322), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22324), 1, + anon_sym_COMMA, + ACTIONS(22326), 1, + anon_sym_PIPE2, + STATE(11396), 1, + sym__for_capture_bar, + [255084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22328), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22330), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22332), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22334), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255136] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22336), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22338), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22340), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22342), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255188] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22344), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22346), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255214] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22348), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22350), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255240] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22350), 1, + anon_sym_RPAREN, + ACTIONS(22352), 1, + sym__newline, + STATE(14470), 1, + aux_sym_import_declaration_repeat1, + [255253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22354), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10921), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22356), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22358), 1, + anon_sym_RBRACK, + ACTIONS(22360), 1, + sym__newline, + STATE(14475), 1, + aux_sym_import_declaration_repeat1, + [255305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22362), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22364), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18115), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [255340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(14743), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22366), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22368), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22370), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22372), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22374), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22376), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22378), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22380), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22382), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22384), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11163), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22386), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255509] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22388), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22390), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22392), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255548] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11091), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22394), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22396), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22398), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22400), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22402), 1, + anon_sym_RBRACK, + ACTIONS(22404), 1, + sym__newline, + STATE(14712), 1, + aux_sym_import_declaration_repeat1, + [255626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22406), 1, + anon_sym_RBRACK, + ACTIONS(22408), 1, + sym__newline, + STATE(14713), 1, + aux_sym_import_declaration_repeat1, + [255639] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22410), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22412), 1, + anon_sym_RBRACK, + ACTIONS(22414), 1, + sym__newline, + STATE(14507), 1, + aux_sym_import_declaration_repeat1, + [255665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22416), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22418), 1, + anon_sym_RBRACK, + ACTIONS(22420), 1, + sym__newline, + STATE(14508), 1, + aux_sym_import_declaration_repeat1, + [255691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22422), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22424), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255717] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22426), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22428), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22430), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22432), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [255765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22434), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22436), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255791] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22436), 1, + anon_sym_RPAREN, + ACTIONS(22438), 1, + sym__newline, + STATE(14086), 1, + aux_sym_import_declaration_repeat1, + [255804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22440), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255817] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22442), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22444), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22446), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22448), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255869] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22450), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255882] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9690), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255895] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22452), 1, + anon_sym_RBRACK, + ACTIONS(22454), 1, + sym__newline, + STATE(14142), 1, + aux_sym_import_declaration_repeat1, + [255908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22456), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22458), 1, + anon_sym_RBRACK, + ACTIONS(22460), 1, + sym__newline, + STATE(14089), 1, + aux_sym_import_declaration_repeat1, + [255934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(9146), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22462), 1, + anon_sym_COMMA, + ACTIONS(22464), 1, + anon_sym_PIPE2, + STATE(11466), 1, + sym__for_capture_bar, + [255960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22466), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22468), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22470), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [255999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22472), 1, + anon_sym_RPAREN, + ACTIONS(22474), 1, + sym__newline, + STATE(14506), 1, + aux_sym_import_declaration_repeat1, + [256012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22476), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [256021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22478), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256034] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22480), 1, + anon_sym_COMMA, + ACTIONS(22482), 1, + anon_sym_PIPE2, + STATE(11485), 1, + sym__for_capture_bar, + [256047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22484), 1, + anon_sym_COMMA, + ACTIONS(22486), 1, + anon_sym_PIPE2, + STATE(11486), 1, + sym__for_capture_bar, + [256060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22488), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256073] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22490), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22492), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256099] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22494), 1, + anon_sym_RBRACK, + ACTIONS(22496), 1, + sym__newline, + STATE(14538), 1, + aux_sym_import_declaration_repeat1, + [256112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22498), 1, + anon_sym_RBRACK, + ACTIONS(22500), 1, + sym__newline, + STATE(14539), 1, + aux_sym_import_declaration_repeat1, + [256125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22488), 1, + anon_sym_RPAREN, + ACTIONS(22502), 1, + sym__newline, + STATE(14518), 1, + aux_sym_import_declaration_repeat1, + [256138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22504), 1, + anon_sym_RPAREN, + ACTIONS(22506), 1, + sym__newline, + STATE(14519), 1, + aux_sym_import_declaration_repeat1, + [256151] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22508), 1, + anon_sym_RPAREN, + ACTIONS(22510), 1, + sym__newline, + STATE(14523), 1, + aux_sym_import_declaration_repeat1, + [256164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22512), 1, + anon_sym_COMMA, + ACTIONS(22514), 1, + anon_sym_PIPE2, + STATE(11504), 1, + sym__for_capture_bar, + [256177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22516), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22518), 1, + anon_sym_COMMA, + ACTIONS(22520), 1, + anon_sym_PIPE2, + STATE(11506), 1, + sym__for_capture_bar, + [256203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22522), 1, + anon_sym_COMMA, + ACTIONS(22524), 1, + anon_sym_PIPE2, + STATE(11509), 1, + sym__for_capture_bar, + [256216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22526), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22528), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22528), 1, + anon_sym_RPAREN, + ACTIONS(22530), 1, + sym__newline, + STATE(14531), 1, + aux_sym_import_declaration_repeat1, + [256255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22532), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22534), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22536), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22536), 1, + anon_sym_RPAREN, + ACTIONS(22538), 1, + sym__newline, + STATE(14534), 1, + aux_sym_import_declaration_repeat1, + [256307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22540), 1, + anon_sym_RPAREN, + ACTIONS(22542), 1, + sym__newline, + STATE(14535), 1, + aux_sym_import_declaration_repeat1, + [256320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11001), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22544), 1, + anon_sym_COMMA, + ACTIONS(22546), 1, + anon_sym_PIPE2, + STATE(11522), 1, + sym__for_capture_bar, + [256346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22548), 1, + anon_sym_COMMA, + ACTIONS(22550), 1, + anon_sym_PIPE2, + STATE(11523), 1, + sym__for_capture_bar, + [256359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22552), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22554), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22556), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22558), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15011), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [256420] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22560), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256433] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22562), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256446] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22562), 1, + anon_sym_RPAREN, + ACTIONS(22564), 1, + sym__newline, + STATE(14543), 1, + aux_sym_import_declaration_repeat1, + [256459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(14783), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22566), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22568), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256498] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22570), 1, + anon_sym_COMMA, + ACTIONS(22572), 1, + anon_sym_PIPE2, + STATE(11542), 1, + sym__for_capture_bar, + [256511] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22574), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256524] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22576), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256537] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22578), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11009), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256563] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22580), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22582), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22584), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22586), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22588), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22590), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22592), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22594), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22596), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [256676] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22598), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22600), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22602), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22604), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22606), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256741] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22608), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22610), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256767] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22612), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22614), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22616), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22618), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22620), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22622), 1, + anon_sym_RBRACK, + ACTIONS(22624), 1, + sym__newline, + STATE(14164), 1, + aux_sym_import_declaration_repeat1, + [256845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22626), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22628), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22628), 1, + anon_sym_RPAREN, + ACTIONS(22630), 1, + sym__newline, + STATE(14434), 1, + aux_sym_import_declaration_repeat1, + [256884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22632), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256897] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22634), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256910] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22636), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22638), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256936] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22640), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22642), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22644), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22646), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [256988] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22648), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22650), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257014] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22652), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257027] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22654), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22656), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257053] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22658), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257066] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22660), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22662), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257092] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22664), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22666), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22668), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257131] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22670), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22672), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257157] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22674), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22676), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22678), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257196] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22680), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257209] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22682), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257222] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22684), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22686), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257248] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22688), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257261] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22690), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22692), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257287] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22694), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257300] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22696), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257313] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22698), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257326] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22700), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257339] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22702), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257352] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22704), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257365] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22706), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257378] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22708), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257391] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22710), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22712), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257417] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22714), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257430] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22716), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22718), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22720), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22722), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257482] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22724), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257495] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22726), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22728), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22730), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22732), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22734), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257560] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22736), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22738), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22740), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257599] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22742), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257612] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22744), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257625] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22746), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22748), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257651] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22750), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257664] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22752), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22754), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257690] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22756), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257703] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22758), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22760), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22762), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257742] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22764), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257755] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22766), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22768), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22770), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22772), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22774), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22776), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22778), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22780), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22782), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22784), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22786), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22788), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22790), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22792), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22794), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22796), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22798), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22800), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [257989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22802), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22804), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22806), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22808), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22810), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22812), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22814), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22816), 1, + anon_sym_RPAREN, + ACTIONS(22818), 1, + sym__newline, + STATE(14105), 1, + aux_sym_import_declaration_repeat1, + [258093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22820), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22822), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22824), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22826), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22828), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22830), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11135), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22832), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22834), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22836), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22838), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22840), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22842), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [258258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22844), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22846), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22848), 1, + anon_sym_RPAREN, + ACTIONS(22850), 1, + sym__newline, + STATE(14484), 1, + aux_sym_import_declaration_repeat1, + [258297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22852), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22450), 1, + anon_sym_RPAREN, + ACTIONS(22854), 1, + sym__newline, + STATE(14065), 1, + aux_sym_import_declaration_repeat1, + [258323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22856), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22858), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22860), 1, + anon_sym_COMMA, + ACTIONS(22862), 1, + anon_sym_PIPE2, + STATE(11633), 1, + sym__for_capture_bar, + [258362] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22864), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22866), 1, + anon_sym_RPAREN, + ACTIONS(22868), 1, + sym__newline, + STATE(14688), 1, + aux_sym_import_declaration_repeat1, + [258388] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22870), 1, + anon_sym_COMMA, + ACTIONS(22872), 1, + anon_sym_PIPE2, + STATE(11643), 1, + sym__for_capture_bar, + [258401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22874), 1, + anon_sym_COMMA, + ACTIONS(22876), 1, + anon_sym_PIPE2, + STATE(11644), 1, + sym__for_capture_bar, + [258414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22878), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22878), 1, + anon_sym_RPAREN, + ACTIONS(22880), 1, + sym__newline, + STATE(14695), 1, + aux_sym_import_declaration_repeat1, + [258440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22882), 1, + anon_sym_RPAREN, + ACTIONS(22884), 1, + sym__newline, + STATE(14696), 1, + aux_sym_import_declaration_repeat1, + [258453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22886), 1, + anon_sym_RPAREN, + ACTIONS(22888), 1, + sym__newline, + STATE(14698), 1, + aux_sym_import_declaration_repeat1, + [258466] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22890), 1, + anon_sym_COMMA, + ACTIONS(22892), 1, + anon_sym_PIPE2, + STATE(11657), 1, + sym__for_capture_bar, + [258479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22894), 1, + anon_sym_COMMA, + ACTIONS(22896), 1, + anon_sym_PIPE2, + STATE(11659), 1, + sym__for_capture_bar, + [258492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22898), 1, + anon_sym_COMMA, + ACTIONS(22900), 1, + anon_sym_PIPE2, + STATE(11662), 1, + sym__for_capture_bar, + [258505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22902), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22904), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22904), 1, + anon_sym_RPAREN, + ACTIONS(22906), 1, + sym__newline, + STATE(14703), 1, + aux_sym_import_declaration_repeat1, + [258544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22908), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22908), 1, + anon_sym_RPAREN, + ACTIONS(22910), 1, + sym__newline, + STATE(14704), 1, + aux_sym_import_declaration_repeat1, + [258570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22912), 1, + anon_sym_RPAREN, + ACTIONS(22914), 1, + sym__newline, + STATE(14705), 1, + aux_sym_import_declaration_repeat1, + [258583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22916), 1, + anon_sym_COMMA, + ACTIONS(22918), 1, + anon_sym_PIPE2, + STATE(11675), 1, + sym__for_capture_bar, + [258596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22920), 1, + anon_sym_COMMA, + ACTIONS(22922), 1, + anon_sym_PIPE2, + STATE(11676), 1, + sym__for_capture_bar, + [258609] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22924), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258622] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22926), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258635] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22928), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258648] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22928), 1, + anon_sym_RPAREN, + ACTIONS(22930), 1, + sym__newline, + STATE(14708), 1, + aux_sym_import_declaration_repeat1, + [258661] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22932), 1, + anon_sym_COMMA, + ACTIONS(22934), 1, + anon_sym_PIPE2, + STATE(11694), 1, + sym__for_capture_bar, + [258674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22936), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22938), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22940), 1, + anon_sym_COMMA, + ACTIONS(22942), 1, + anon_sym_PIPE2, + STATE(11386), 1, + sym__for_capture_bar, + [258713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22944), 1, + anon_sym_RBRACK, + ACTIONS(22946), 1, + sym__newline, + STATE(14092), 1, + aux_sym_import_declaration_repeat1, + [258726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22948), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22950), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22952), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22954), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22956), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258791] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22958), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22960), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258817] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22962), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22964), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22966), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15203), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258869] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22968), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258882] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22970), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258895] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22972), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22974), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22976), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22978), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22980), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22982), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(10859), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [258986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22984), 1, + anon_sym_RPAREN, + ACTIONS(22986), 1, + sym__newline, + STATE(13978), 1, + aux_sym_import_declaration_repeat1, + [258999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22988), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22990), 1, + anon_sym_COMMA, + ACTIONS(22992), 1, + anon_sym_PIPE2, + STATE(11781), 1, + sym__for_capture_bar, + [259025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22994), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(22996), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22998), 1, + anon_sym_RPAREN, + ACTIONS(23000), 1, + sym__newline, + STATE(14741), 1, + aux_sym_import_declaration_repeat1, + [259064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23002), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23004), 1, + anon_sym_COMMA, + ACTIONS(23006), 1, + anon_sym_PIPE2, + STATE(11798), 1, + sym__for_capture_bar, + [259090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23008), 1, + anon_sym_COMMA, + ACTIONS(23010), 1, + anon_sym_PIPE2, + STATE(11799), 1, + sym__for_capture_bar, + [259103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23012), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23012), 1, + anon_sym_RPAREN, + ACTIONS(23014), 1, + sym__newline, + STATE(14748), 1, + aux_sym_import_declaration_repeat1, + [259129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23016), 1, + anon_sym_RPAREN, + ACTIONS(23018), 1, + sym__newline, + STATE(14749), 1, + aux_sym_import_declaration_repeat1, + [259142] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23020), 1, + anon_sym_RPAREN, + ACTIONS(23022), 1, + sym__newline, + STATE(14752), 1, + aux_sym_import_declaration_repeat1, + [259155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23024), 1, + anon_sym_COMMA, + ACTIONS(23026), 1, + anon_sym_PIPE2, + STATE(11814), 1, + sym__for_capture_bar, + [259168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23028), 1, + anon_sym_COMMA, + ACTIONS(23030), 1, + anon_sym_PIPE2, + STATE(11816), 1, + sym__for_capture_bar, + [259181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23032), 1, + anon_sym_COMMA, + ACTIONS(23034), 1, + anon_sym_PIPE2, + STATE(11819), 1, + sym__for_capture_bar, + [259194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23036), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23038), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18530), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [259229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23038), 1, + anon_sym_RPAREN, + ACTIONS(23040), 1, + sym__newline, + STATE(14757), 1, + aux_sym_import_declaration_repeat1, + [259242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23042), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23042), 1, + anon_sym_RPAREN, + ACTIONS(23044), 1, + sym__newline, + STATE(14758), 1, + aux_sym_import_declaration_repeat1, + [259268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23046), 1, + anon_sym_RPAREN, + ACTIONS(23048), 1, + sym__newline, + STATE(14759), 1, + aux_sym_import_declaration_repeat1, + [259281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23050), 1, + anon_sym_COMMA, + ACTIONS(23052), 1, + anon_sym_PIPE2, + STATE(11833), 1, + sym__for_capture_bar, + [259294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23054), 1, + anon_sym_COMMA, + ACTIONS(23056), 1, + anon_sym_PIPE2, + STATE(11834), 1, + sym__for_capture_bar, + [259307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23058), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23060), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23062), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23064), 1, + anon_sym_RPAREN, + ACTIONS(23066), 1, + sym__newline, + STATE(14763), 1, + aux_sym_import_declaration_repeat1, + [259359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23062), 1, + anon_sym_RPAREN, + ACTIONS(23068), 1, + sym__newline, + STATE(14765), 1, + aux_sym_import_declaration_repeat1, + [259372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23070), 1, + anon_sym_COMMA, + ACTIONS(23072), 1, + anon_sym_PIPE2, + STATE(11852), 1, + sym__for_capture_bar, + [259385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23074), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23074), 1, + anon_sym_RPAREN, + ACTIONS(23076), 1, + sym__newline, + STATE(14771), 1, + aux_sym_import_declaration_repeat1, + [259411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23078), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23080), 1, + anon_sym_RBRACK, + ACTIONS(23082), 1, + sym__newline, + STATE(14773), 1, + aux_sym_import_declaration_repeat1, + [259437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23084), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(15102), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23086), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23088), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23090), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23092), 1, + anon_sym_RBRACK, + ACTIONS(23094), 1, + sym__newline, + STATE(14796), 1, + aux_sym_import_declaration_repeat1, + [259515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23096), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23098), 1, + anon_sym_RBRACK, + ACTIONS(23100), 1, + sym__newline, + STATE(14797), 1, + aux_sym_import_declaration_repeat1, + [259541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23102), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23104), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23106), 1, + anon_sym_LBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(22442), 1, + anon_sym_RPAREN, + ACTIONS(23108), 1, + sym__newline, + STATE(14099), 1, + aux_sym_import_declaration_repeat1, + [259593] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23110), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23110), 1, + anon_sym_RPAREN, + ACTIONS(23112), 1, + sym__newline, + STATE(14833), 1, + aux_sym_import_declaration_repeat1, + [259619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23114), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13805), 1, + anon_sym_COLON, + ACTIONS(15679), 1, anon_sym_PIPE, - STATE(5143), 1, + STATE(15985), 1, sym_match_capture, - [107785] = 4, + [259645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(9875), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9877), 1, + ACTIONS(23116), 1, anon_sym_RBRACK, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [107811] = 4, + [259658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(5254), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9879), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107837] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9881), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9883), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9883), 1, - anon_sym_RPAREN, - ACTIONS(9885), 1, - sym__newline, - STATE(4915), 1, - aux_sym_import_declaration_repeat1, - [107876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9887), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9889), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9891), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9893), 1, - anon_sym_RBRACK, - ACTIONS(9895), 1, - sym__newline, - STATE(4920), 1, - aux_sym_import_declaration_repeat1, - [107928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9897), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9899), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9901), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5336), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [107980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9903), 1, - anon_sym_RBRACK, - ACTIONS(9905), 1, - sym__newline, - STATE(4797), 1, - aux_sym_import_declaration_repeat1, - [107993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9907), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9909), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9911), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7243), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9913), 1, - anon_sym_RBRACK, - ACTIONS(9915), 1, - sym__newline, - STATE(5018), 1, - aux_sym_import_declaration_repeat1, - [108058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9917), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9919), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9921), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9923), 1, - anon_sym_RBRACK, - ACTIONS(9925), 1, - sym__newline, - STATE(4774), 1, - aux_sym_import_declaration_repeat1, - [108110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9927), 1, - anon_sym_RBRACK, - ACTIONS(9929), 1, - sym__newline, - STATE(4775), 1, - aux_sym_import_declaration_repeat1, - [108123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9931), 1, - anon_sym_RBRACK, - ACTIONS(9933), 1, - sym__newline, - STATE(4825), 1, - aux_sym_import_declaration_repeat1, - [108136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9935), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9937), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108162] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9939), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108175] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9941), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9943), 1, - anon_sym_RPAREN, - ACTIONS(9945), 1, - sym__newline, - STATE(4997), 1, - aux_sym_import_declaration_repeat1, - [108201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9947), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8253), 3, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [108223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9949), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9951), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9953), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9955), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9957), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9959), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108301] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9961), 1, - anon_sym_RBRACK, - ACTIONS(9963), 1, - sym__newline, - STATE(4902), 1, - aux_sym_import_declaration_repeat1, - [108314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9965), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108327] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9967), 1, - anon_sym_COMMA, - ACTIONS(9969), 1, - anon_sym_PIPE2, - STATE(3974), 1, - sym__for_capture_bar, - [108340] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9971), 1, - anon_sym_RPAREN, - ACTIONS(9973), 1, - sym__newline, - STATE(4951), 1, - aux_sym_import_declaration_repeat1, - [108353] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9975), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9977), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9979), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9981), 1, - anon_sym_COMMA, - ACTIONS(9983), 1, - anon_sym_PIPE2, - STATE(4205), 1, - sym__for_capture_bar, - [108405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9681), 1, - anon_sym_RPAREN, - ACTIONS(9985), 1, - sym__newline, - STATE(4770), 1, - aux_sym_import_declaration_repeat1, - [108418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9987), 1, - anon_sym_RPAREN, - ACTIONS(9989), 1, - sym__newline, - STATE(4961), 1, - aux_sym_import_declaration_repeat1, - [108431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8132), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [108440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9991), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9993), 1, - anon_sym_RPAREN, - ACTIONS(9995), 1, - sym__newline, - STATE(4924), 1, - aux_sym_import_declaration_repeat1, - [108466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9997), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(9999), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10001), 1, + ACTIONS(23118), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [108505] = 4, + [259671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(10003), 1, - anon_sym_else, - STATE(1537), 1, + ACTIONS(9240), 1, + anon_sym_RBRACK, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [108518] = 4, + [259684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, + ACTIONS(23120), 1, + anon_sym_RBRACK, + ACTIONS(23122), 1, + sym__newline, + STATE(14565), 1, + aux_sym_import_declaration_repeat1, + [259697] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23124), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259710] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11143), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259723] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23126), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23128), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23130), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23132), 1, anon_sym_COMMA, - ACTIONS(10007), 1, + ACTIONS(23134), 1, anon_sym_PIPE2, - STATE(4093), 1, + STATE(11949), 1, sym__for_capture_bar, - [108531] = 4, + [259775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10009), 1, - anon_sym_RBRACK, - ACTIONS(10011), 1, + ACTIONS(2257), 1, sym__newline, - STATE(4978), 1, - aux_sym_import_declaration_repeat1, - [108544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10013), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7403), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [108566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10015), 1, - anon_sym_RBRACK, - ACTIONS(10017), 1, - sym__newline, - STATE(4979), 1, - aux_sym_import_declaration_repeat1, - [108579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10019), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10021), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108605] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10021), 1, - anon_sym_RPAREN, - ACTIONS(10023), 1, - sym__newline, - STATE(4941), 1, - aux_sym_import_declaration_repeat1, - [108618] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10025), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108631] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10027), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108644] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10029), 1, - anon_sym_RBRACK, - ACTIONS(10031), 1, - sym__newline, - STATE(4947), 1, - aux_sym_import_declaration_repeat1, - [108657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10033), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108670] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10035), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108683] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10037), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108696] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10039), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108709] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10041), 1, - anon_sym_RBRACK, - ACTIONS(10043), 1, - sym__newline, - STATE(4814), 1, - aux_sym_import_declaration_repeat1, - [108722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10045), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10047), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108748] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10049), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108761] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10051), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10053), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10055), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108800] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10057), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10059), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10061), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10063), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10065), 1, - anon_sym_RBRACK, - ACTIONS(10067), 1, - sym__newline, - STATE(4815), 1, - aux_sym_import_declaration_repeat1, - [108865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10069), 1, - anon_sym_RBRACK, - ACTIONS(10071), 1, - sym__newline, - STATE(4870), 1, - aux_sym_import_declaration_repeat1, - [108878] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10073), 1, - anon_sym_RBRACK, - ACTIONS(10075), 1, - sym__newline, - STATE(4956), 1, - aux_sym_import_declaration_repeat1, - [108891] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10077), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108904] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10079), 1, - anon_sym_RBRACK, - ACTIONS(10081), 1, - sym__newline, - STATE(4957), 1, - aux_sym_import_declaration_repeat1, - [108917] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10083), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108930] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10085), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108943] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10087), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108956] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10087), 1, - anon_sym_RPAREN, - ACTIONS(10089), 1, - sym__newline, - STATE(4730), 1, - aux_sym_import_declaration_repeat1, - [108969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10091), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5376), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [108995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10093), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10095), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10097), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109034] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10099), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109047] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10101), 1, - anon_sym_RBRACK, - ACTIONS(10103), 1, - sym__newline, - STATE(4972), 1, - aux_sym_import_declaration_repeat1, - [109060] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10105), 1, + ACTIONS(23136), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [109073] = 4, + [259788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10107), 1, + ACTIONS(23138), 1, anon_sym_RPAREN, - STATE(1537), 1, + ACTIONS(23140), 1, + sym__newline, + STATE(14802), 1, aux_sym_import_declaration_repeat1, - [109086] = 4, + [259801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(2915), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10109), 1, - anon_sym_RBRACK, - ACTIONS(10111), 1, - sym__newline, - STATE(4974), 1, - aux_sym_import_declaration_repeat1, - [109112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10113), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10115), 1, + ACTIONS(23142), 1, anon_sym_COMMA, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10117), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109151] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10119), 1, - anon_sym_RPAREN, - ACTIONS(10121), 1, - sym__newline, - STATE(4768), 1, - aux_sym_import_declaration_repeat1, - [109164] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10123), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7286), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [109186] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10125), 1, - anon_sym_RBRACK, - ACTIONS(10127), 1, - sym__newline, - STATE(4742), 1, - aux_sym_import_declaration_repeat1, - [109199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10129), 1, - anon_sym_RPAREN, - ACTIONS(10131), 1, - sym__newline, - STATE(4813), 1, - aux_sym_import_declaration_repeat1, - [109212] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10133), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109225] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_COMMA, - ACTIONS(10137), 1, + ACTIONS(23144), 1, anon_sym_PIPE2, - STATE(4063), 1, + STATE(11413), 1, sym__for_capture_bar, - [109238] = 4, + [259814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(2257), 1, sym__newline, - ACTIONS(10139), 1, + ACTIONS(23146), 1, anon_sym_RBRACK, - STATE(1537), 1, + STATE(6273), 1, aux_sym_import_declaration_repeat1, - [109251] = 2, + [259827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10141), 3, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23148), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259840] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23150), 1, + anon_sym_RBRACK, + ACTIONS(23152), 1, + sym__newline, + STATE(14831), 1, + aux_sym_import_declaration_repeat1, + [259853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23154), 1, + anon_sym_RBRACK, + ACTIONS(23156), 1, + sym__newline, + STATE(14832), 1, + aux_sym_import_declaration_repeat1, + [259866] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23158), 1, anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [109260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10143), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10145), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [109282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10147), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10149), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10151), 1, - anon_sym_RBRACK, - ACTIONS(10153), 1, - sym__newline, - STATE(5022), 1, - aux_sym_import_declaration_repeat1, - [109321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10155), 1, - anon_sym_RBRACK, - ACTIONS(10157), 1, - sym__newline, - STATE(5023), 1, - aux_sym_import_declaration_repeat1, - [109334] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5414), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5458), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109360] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10159), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10161), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [109382] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10163), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10165), 1, - anon_sym_RPAREN, - ACTIONS(10167), 1, - sym__newline, - STATE(4727), 1, - aux_sym_import_declaration_repeat1, - [109408] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7429), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10169), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10171), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109447] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10173), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10175), 1, - anon_sym_RPAREN, - ACTIONS(10177), 1, - sym__newline, - STATE(5021), 1, - aux_sym_import_declaration_repeat1, - [109473] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, - anon_sym_RPAREN, - ACTIONS(10179), 1, - sym__newline, - STATE(4795), 1, - aux_sym_import_declaration_repeat1, - [109486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10163), 1, - anon_sym_RPAREN, - ACTIONS(10181), 1, - sym__newline, - STATE(4842), 1, - aux_sym_import_declaration_repeat1, - [109499] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10183), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(5424), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109525] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10185), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109538] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10187), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109551] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10185), 1, - anon_sym_RPAREN, - ACTIONS(10189), 1, - sym__newline, - STATE(5020), 1, - aux_sym_import_declaration_repeat1, - [109564] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(7322), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10191), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10193), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10195), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109616] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10197), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109629] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10199), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10201), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109655] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10203), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109668] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10205), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10207), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10209), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10211), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10213), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10215), 1, - anon_sym_else, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10217), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109759] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10219), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [109768] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10221), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109781] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10223), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109794] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10225), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109807] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10227), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [109816] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10229), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109829] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10231), 1, - anon_sym_RPAREN, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10233), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10235), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109868] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10231), 1, - anon_sym_RPAREN, - ACTIONS(10237), 1, - sym__newline, - STATE(4716), 1, - aux_sym_import_declaration_repeat1, - [109881] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(10239), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - sym__newline, - ACTIONS(3381), 1, - anon_sym_RBRACK, - STATE(1537), 1, - aux_sym_import_declaration_repeat1, - [109907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10241), 1, + ACTIONS(23160), 1, anon_sym_PIPE2, - STATE(4138), 1, + STATE(11547), 1, sym__for_capture_bar, - [109917] = 3, + [259879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(23162), 1, + anon_sym_COMMA, + ACTIONS(23164), 1, + anon_sym_PIPE2, + STATE(11419), 1, + sym__for_capture_bar, + [259892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23166), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23166), 1, + anon_sym_RPAREN, + ACTIONS(23168), 1, + sym__newline, + STATE(14809), 1, + aux_sym_import_declaration_repeat1, + [259918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23170), 1, + anon_sym_RPAREN, + ACTIONS(23172), 1, + sym__newline, + STATE(14810), 1, + aux_sym_import_declaration_repeat1, + [259931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23174), 1, + anon_sym_RPAREN, + ACTIONS(23176), 1, + sym__newline, + STATE(14812), 1, + aux_sym_import_declaration_repeat1, + [259944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23178), 1, + anon_sym_COMMA, + ACTIONS(23180), 1, + anon_sym_PIPE2, + STATE(11871), 1, + sym__for_capture_bar, + [259957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23182), 1, + anon_sym_COMMA, + ACTIONS(23184), 1, + anon_sym_PIPE2, + STATE(11876), 1, + sym__for_capture_bar, + [259970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23186), 1, + anon_sym_COMMA, + ACTIONS(23188), 1, + anon_sym_PIPE2, + STATE(11894), 1, + sym__for_capture_bar, + [259983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23190), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [259996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23192), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23192), 1, + anon_sym_RPAREN, + ACTIONS(23194), 1, + sym__newline, + STATE(14819), 1, + aux_sym_import_declaration_repeat1, + [260022] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23196), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23196), 1, + anon_sym_RPAREN, + ACTIONS(23198), 1, + sym__newline, + STATE(14820), 1, + aux_sym_import_declaration_repeat1, + [260048] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23200), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23202), 1, + anon_sym_else, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23204), 1, + anon_sym_RPAREN, + ACTIONS(23206), 1, + sym__newline, + STATE(14821), 1, + aux_sym_import_declaration_repeat1, + [260087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23208), 1, + anon_sym_COMMA, + ACTIONS(23210), 1, + anon_sym_PIPE2, + STATE(11086), 1, + sym__for_capture_bar, + [260100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23212), 1, + anon_sym_COMMA, + ACTIONS(23214), 1, + anon_sym_PIPE2, + STATE(11087), 1, + sym__for_capture_bar, + [260113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23216), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23218), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23220), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23220), 1, + anon_sym_RPAREN, + ACTIONS(23222), 1, + sym__newline, + STATE(14829), 1, + aux_sym_import_declaration_repeat1, + [260165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(11043), 1, + anon_sym_RBRACE, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260178] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23224), 1, + anon_sym_COMMA, + ACTIONS(23226), 1, + anon_sym_PIPE2, + STATE(11227), 1, + sym__for_capture_bar, + [260191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23228), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23230), 1, + anon_sym_COMMA, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23232), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23234), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23236), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23238), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [260265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23240), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23242), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(23244), 1, + anon_sym_RPAREN, + STATE(6273), 1, + aux_sym_import_declaration_repeat1, + [260304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, anon_sym_LPAREN, - STATE(2498), 1, + STATE(7683), 1, sym_parameter_list, - [109927] = 2, + [260314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10243), 2, - sym_identifier, - sym_integer, - [109935] = 3, + ACTIONS(23246), 1, + anon_sym_PIPE2, + STATE(11040), 1, + sym__for_capture_bar, + [260324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, + ACTIONS(23248), 1, + anon_sym_PIPE2, + STATE(11521), 1, + sym__for_capture_bar, + [260334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23250), 1, + anon_sym_PIPE2, + STATE(11283), 1, + sym__for_capture_bar, + [260344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23252), 1, + anon_sym_PIPE2, + STATE(11493), 1, + sym__for_capture_bar, + [260354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23254), 1, + anon_sym_PIPE2, + STATE(11739), 1, + sym__for_capture_bar, + [260364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23256), 1, + anon_sym_PIPE2, + STATE(11525), 1, + sym__for_capture_bar, + [260374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15481), 1, anon_sym_LPAREN, - STATE(3021), 1, + STATE(10855), 1, sym_argument_list, - [109945] = 3, + [260384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9489), 1, + ACTIONS(23258), 1, + anon_sym_PIPE2, + STATE(11289), 1, + sym__for_capture_bar, + [260394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23260), 1, + anon_sym_COLON_COLON, + ACTIONS(23262), 1, + anon_sym_EQ, + [260404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23264), 1, + anon_sym_COLON_COLON, + ACTIONS(23266), 1, + anon_sym_EQ, + [260414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23268), 1, + anon_sym_COLON_COLON, + ACTIONS(23270), 1, + anon_sym_EQ, + [260424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23272), 1, + anon_sym_COLON_COLON, + ACTIONS(23274), 1, + anon_sym_EQ, + [260434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23276), 1, + anon_sym_COLON_COLON, + ACTIONS(23278), 1, + anon_sym_EQ, + [260444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7718), 1, + sym_parameter_list, + [260454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23280), 1, + anon_sym_PIPE2, + STATE(11767), 1, + sym__for_capture_bar, + [260464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11234), 1, + anon_sym_LPAREN, + STATE(7195), 1, + sym_argument_list, + [260474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23282), 1, + anon_sym_COLON_COLON, + ACTIONS(23284), 1, + anon_sym_EQ, + [260484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23286), 1, + anon_sym_COLON_COLON, + ACTIONS(23288), 1, + anon_sym_EQ, + [260494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23290), 1, + anon_sym_PIPE2, + STATE(11290), 1, + sym__for_capture_bar, + [260504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19661), 1, anon_sym_LBRACE, - STATE(3722), 1, + STATE(2553), 1, sym_initializer_list, - [109955] = 3, + [260514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10245), 1, + ACTIONS(23292), 1, + anon_sym_COLON_COLON, + ACTIONS(23294), 1, + anon_sym_EQ, + [260524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23296), 1, + sym_identifier, + ACTIONS(23298), 1, + anon_sym_AT, + [260534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + STATE(10464), 1, + sym_argument_list, + [260544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23300), 1, + sym_identifier, + ACTIONS(23302), 1, + anon_sym_AT, + [260554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23304), 1, + sym_identifier, + ACTIONS(23306), 1, + anon_sym_AT, + [260564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23308), 1, + anon_sym_PIPE2, + STATE(11297), 1, + sym__for_capture_bar, + [260574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23310), 1, + sym_identifier, + ACTIONS(23312), 1, + anon_sym_AT, + [260584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23314), 1, + sym_identifier, + ACTIONS(23316), 1, + anon_sym_AT, + [260594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23318), 1, + anon_sym_PIPE2, + STATE(11537), 1, + sym__for_capture_bar, + [260604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23320), 1, + anon_sym_PIPE2, + STATE(11041), 1, + sym__for_capture_bar, + [260614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23322), 1, + sym_identifier, + ACTIONS(23324), 1, + anon_sym_AT, + [260624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23326), 1, + anon_sym_PIPE2, + STATE(11048), 1, + sym__for_capture_bar, + [260634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + STATE(8976), 1, + sym_argument_list, + [260644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23328), 1, + anon_sym_PIPE2, + STATE(11541), 1, + sym__for_capture_bar, + [260654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23330), 1, + sym_identifier, + ACTIONS(23332), 1, + anon_sym_AT, + [260664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7711), 1, + sym_parameter_list, + [260674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23334), 1, + anon_sym_PIPE2, + STATE(11544), 1, + sym__for_capture_bar, + [260684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7710), 1, + sym_parameter_list, + [260694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23336), 1, + anon_sym_PIPE2, + STATE(11570), 1, + sym__for_capture_bar, + [260704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23338), 1, + anon_sym_PIPE2, + STATE(11307), 1, + sym__for_capture_bar, + [260714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23340), 1, + anon_sym_PIPE2, + STATE(11550), 1, + sym__for_capture_bar, + [260724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23342), 1, + anon_sym_PIPE2, + STATE(11551), 1, + sym__for_capture_bar, + [260734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23344), 1, anon_sym_COMMA, - ACTIONS(10247), 1, + ACTIONS(23346), 1, anon_sym_PIPE, - [109965] = 3, + [260744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2480), 1, - sym_parameter_list, - [109975] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10249), 2, - sym_sink, - sym_identifier, - [109983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9307), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_initializer_list, - [109993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10251), 2, - sym_sink, - sym_identifier, - [110001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10253), 1, + ACTIONS(23348), 1, anon_sym_PIPE2, - STATE(4097), 1, + STATE(11661), 1, sym__for_capture_bar, - [110011] = 3, + [260754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2519), 1, - sym_parameter_list, - [110021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10255), 2, - sym_sink, - sym_identifier, - [110029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2503), 1, - sym_parameter_list, - [110039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2494), 1, - sym_parameter_list, - [110049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10257), 1, + ACTIONS(23350), 1, anon_sym_COLON_COLON, - ACTIONS(10259), 1, + ACTIONS(23352), 1, anon_sym_EQ, - [110059] = 3, + [260764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10261), 1, + ACTIONS(23354), 1, sym_identifier, - ACTIONS(10263), 1, - sym_integer, - [110069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2476), 1, - sym_parameter_list, - [110079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10263), 1, - sym_integer, - ACTIONS(10265), 1, - sym_identifier, - [110089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - STATE(3235), 1, - sym_argument_list, - [110099] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10267), 2, - sym_identifier, - sym_integer, - [110107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10263), 2, - sym_identifier, - sym_integer, - [110115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10269), 2, - sym_identifier, - sym_integer, - [110123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10271), 1, - anon_sym_PIPE, - STATE(5150), 1, - sym_expand_match_capture, - [110133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10273), 1, - sym_identifier, - ACTIONS(10275), 1, + ACTIONS(23356), 1, anon_sym_AT, - [110143] = 3, + [260774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10277), 1, - anon_sym_PIPE2, - STATE(4190), 1, - sym__for_capture_bar, - [110153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10279), 1, - anon_sym_COLON_COLON, - ACTIONS(10281), 1, - anon_sym_EQ, - [110163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10283), 2, - sym_identifier, - sym_integer, - [110171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10285), 2, - anon_sym_RBRACK, - sym__newline, - [110179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9267), 1, - anon_sym_LBRACE, - STATE(3322), 1, - sym_initializer_list, - [110189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, + ACTIONS(15689), 1, anon_sym_LPAREN, - STATE(3766), 1, - sym_argument_list, - [110199] = 3, + STATE(7704), 1, + sym_parameter_list, + [260784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 1, - anon_sym_LPAREN, - STATE(2246), 1, - sym_argument_list, - [110209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10287), 1, - anon_sym_PIPE2, - STATE(4066), 1, - sym__for_capture_bar, - [110219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10289), 1, - anon_sym_COLON_COLON, - ACTIONS(10291), 1, - anon_sym_EQ, - [110229] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10293), 2, + ACTIONS(23358), 2, sym_sink, sym_identifier, - [110237] = 3, + [260792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10295), 1, + ACTIONS(23360), 1, + sym_identifier, + ACTIONS(23362), 1, + sym_integer, + [260802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23364), 1, + anon_sym_PIPE2, + STATE(11566), 1, + sym__for_capture_bar, + [260812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23366), 1, + anon_sym_COLON_COLON, + ACTIONS(23368), 1, + anon_sym_EQ, + [260822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23370), 1, + anon_sym_PIPE2, + STATE(11674), 1, + sym__for_capture_bar, + [260832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23372), 1, + anon_sym_PIPE2, + STATE(11012), 1, + sym__for_capture_bar, + [260842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23374), 1, + anon_sym_PIPE2, + STATE(11324), 1, + sym__for_capture_bar, + [260852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23376), 1, + anon_sym_PIPE2, + STATE(11678), 1, + sym__for_capture_bar, + [260862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23378), 1, + anon_sym_PIPE2, + STATE(11162), 1, + sym__for_capture_bar, + [260872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23380), 1, + anon_sym_PIPE2, + STATE(11940), 1, + sym__for_capture_bar, + [260882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23382), 1, + anon_sym_PIPE2, + STATE(11559), 1, + sym__for_capture_bar, + [260892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23384), 1, + anon_sym_COLON_COLON, + ACTIONS(23386), 1, + anon_sym_EQ, + [260902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23388), 1, + anon_sym_PIPE2, + STATE(11689), 1, + sym__for_capture_bar, + [260912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23390), 1, + anon_sym_PIPE2, + STATE(11693), 1, + sym__for_capture_bar, + [260922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23392), 1, + anon_sym_PIPE2, + STATE(11328), 1, + sym__for_capture_bar, + [260932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23394), 1, + anon_sym_PIPE2, + STATE(11696), 1, + sym__for_capture_bar, + [260942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18921), 1, + anon_sym_LBRACE, + STATE(9659), 1, + sym_initializer_list, + [260952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23396), 1, + anon_sym_PIPE2, + STATE(11703), 1, + sym__for_capture_bar, + [260962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23398), 1, + anon_sym_PIPE2, + STATE(11704), 1, + sym__for_capture_bar, + [260972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23400), 1, + anon_sym_PIPE2, + STATE(11711), 1, + sym__for_capture_bar, + [260982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7705), 1, + sym_parameter_list, + [260992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23402), 1, + anon_sym_PIPE2, + STATE(11392), 1, + sym__for_capture_bar, + [261002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6712), 1, + anon_sym_LPAREN, + STATE(3453), 1, + sym_argument_list, + [261012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23362), 1, + sym_integer, + ACTIONS(23404), 1, + sym_identifier, + [261022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23406), 1, + anon_sym_COLON_COLON, + ACTIONS(23408), 1, + anon_sym_EQ, + [261032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7703), 1, + sym_parameter_list, + [261042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23410), 1, + anon_sym_PIPE2, + STATE(11339), 1, + sym__for_capture_bar, + [261052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12228), 1, + anon_sym_LPAREN, + STATE(8235), 1, + sym_argument_list, + [261062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23412), 1, + anon_sym_PIPE2, + STATE(11343), 1, + sym__for_capture_bar, + [261072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23414), 1, + anon_sym_PIPE2, + STATE(11166), 1, + sym__for_capture_bar, + [261082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23416), 1, + anon_sym_COLON_COLON, + ACTIONS(23418), 1, + anon_sym_EQ, + [261092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23420), 1, + anon_sym_PIPE2, + STATE(11346), 1, + sym__for_capture_bar, + [261102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23422), 2, + sym_sink, + sym_identifier, + [261110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23424), 1, anon_sym_COMMA, - ACTIONS(10297), 1, + ACTIONS(23426), 1, anon_sym_PIPE, - [110247] = 3, + [261120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9491), 1, - anon_sym_LBRACE, - STATE(927), 1, - sym_initializer_list, - [110257] = 3, + ACTIONS(23428), 1, + anon_sym_PIPE2, + STATE(11583), 1, + sym__for_capture_bar, + [261130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(23430), 1, + anon_sym_PIPE2, + STATE(11353), 1, + sym__for_capture_bar, + [261140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11234), 1, anon_sym_LPAREN, - STATE(2491), 1, - sym_parameter_list, - [110267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10299), 1, - anon_sym_COLON_COLON, - ACTIONS(10301), 1, - anon_sym_EQ, - [110277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2489), 1, - sym_parameter_list, - [110287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10303), 1, - anon_sym_COLON_COLON, - ACTIONS(10305), 1, - anon_sym_EQ, - [110297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7564), 1, - anon_sym_LPAREN, - STATE(3795), 1, + STATE(7523), 1, sym_argument_list, - [110307] = 3, + [261150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, - anon_sym_LPAREN, - STATE(3663), 1, - sym_argument_list, - [110317] = 3, + ACTIONS(23432), 1, + anon_sym_PIPE2, + STATE(11354), 1, + sym__for_capture_bar, + [261160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2501), 1, - sym_parameter_list, - [110327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10307), 1, - sym_identifier, - ACTIONS(10309), 1, - anon_sym_AT, - [110337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10311), 1, - sym_identifier, - ACTIONS(10313), 1, - anon_sym_AT, - [110347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - STATE(3795), 1, - sym_argument_list, - [110357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - STATE(883), 1, - sym_argument_list, - [110367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_LPAREN, - STATE(3310), 1, - sym_argument_list, - [110377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10315), 2, - sym_sink, - sym_identifier, - [110385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10317), 1, - sym_identifier, - ACTIONS(10319), 1, - anon_sym_AT, - [110395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10321), 1, + ACTIONS(23434), 1, anon_sym_COLON_COLON, - ACTIONS(10323), 1, + ACTIONS(23436), 1, anon_sym_EQ, - [110405] = 3, + [261170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2482), 1, - sym_parameter_list, - [110415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10325), 1, - anon_sym_COLON_COLON, - ACTIONS(10327), 1, - anon_sym_EQ, - [110425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10329), 1, - anon_sym_COLON_COLON, - ACTIONS(10331), 1, - anon_sym_EQ, - [110435] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8284), 2, - sym_sink, + ACTIONS(23438), 2, sym_identifier, - [110443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10333), 1, - anon_sym_DASH, - ACTIONS(10335), 1, sym_integer, - [110453] = 3, + [261178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(23440), 1, anon_sym_PIPE2, - STATE(4045), 1, + STATE(11363), 1, sym__for_capture_bar, - [110463] = 3, + [261188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_LPAREN, - STATE(850), 1, - sym_argument_list, - [110473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10339), 1, - anon_sym_PIPE2, - STATE(4064), 1, - sym__for_capture_bar, - [110483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10341), 1, - anon_sym_COLON_COLON, - ACTIONS(10343), 1, - anon_sym_EQ, - [110493] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10345), 2, + ACTIONS(23442), 2, sym_sink, sym_identifier, - [110501] = 2, + [261196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 2, + ACTIONS(20437), 1, + anon_sym_LBRACE, + STATE(7276), 1, + sym_initializer_list, + [261206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23444), 1, + anon_sym_COLON_COLON, + ACTIONS(23446), 1, + anon_sym_EQ, + [261216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23448), 1, + anon_sym_COLON_COLON, + ACTIONS(23450), 1, + anon_sym_EQ, + [261226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7678), 1, + sym_parameter_list, + [261236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7690), 1, + sym_parameter_list, + [261246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23452), 1, + sym_identifier, + ACTIONS(23454), 1, + anon_sym_AT, + [261256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23456), 1, + sym_identifier, + ACTIONS(23458), 1, + anon_sym_AT, + [261266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23460), 1, + sym_identifier, + ACTIONS(23462), 1, + anon_sym_AT, + [261276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23464), 1, + anon_sym_COLON_COLON, + ACTIONS(23466), 1, + anon_sym_EQ, + [261286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + STATE(9426), 1, + sym_argument_list, + [261296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23468), 1, + sym_identifier, + ACTIONS(23470), 1, + anon_sym_AT, + [261306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23472), 1, + sym_identifier, + ACTIONS(23474), 1, + anon_sym_AT, + [261316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23476), 1, + anon_sym_PIPE2, + STATE(11587), 1, + sym__for_capture_bar, + [261326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23362), 1, + sym_integer, + ACTIONS(23478), 1, + sym_identifier, + [261336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23480), 1, + sym_identifier, + ACTIONS(23482), 1, + anon_sym_AT, + [261346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7721), 1, + sym_parameter_list, + [261356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23484), 1, + anon_sym_COLON_COLON, + ACTIONS(23486), 1, + anon_sym_EQ, + [261366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19457), 1, + anon_sym_LBRACE, + STATE(3068), 1, + sym_initializer_list, + [261376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23488), 1, + anon_sym_COLON_COLON, + ACTIONS(23490), 1, + anon_sym_EQ, + [261386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23362), 1, + sym_integer, + ACTIONS(23492), 1, + sym_identifier, + [261396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23494), 1, + anon_sym_PIPE2, + STATE(11934), 1, + sym__for_capture_bar, + [261406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23496), 2, sym_integer, sym_character, - [110509] = 3, + [261414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - STATE(683), 1, - sym_argument_list, - [110519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_LPAREN, - STATE(620), 1, - sym_argument_list, - [110529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6290), 1, - anon_sym_LPAREN, - STATE(2955), 1, - sym_argument_list, - [110539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2483), 1, - sym_parameter_list, - [110549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2513), 1, - sym_parameter_list, - [110559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10349), 2, - sym_sink, - sym_identifier, - [110567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10351), 1, - anon_sym_PIPE2, - STATE(4096), 1, - sym__for_capture_bar, - [110577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10353), 1, - sym_identifier, - ACTIONS(10355), 1, - anon_sym_AT, - [110587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5582), 1, - anon_sym_LPAREN, - STATE(2342), 1, - sym_argument_list, - [110597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10357), 1, + ACTIONS(23498), 1, anon_sym_COLON_COLON, - ACTIONS(10359), 1, + ACTIONS(23500), 1, anon_sym_EQ, - [110607] = 2, + [261424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10361), 2, - sym_sink, - sym_identifier, - [110615] = 3, + ACTIONS(23502), 1, + anon_sym_COLON_COLON, + ACTIONS(23504), 1, + anon_sym_EQ, + [261434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2507), 1, - sym_parameter_list, - [110625] = 2, + ACTIONS(23506), 1, + anon_sym_DASH, + ACTIONS(23508), 1, + sym_integer, + [261444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 2, + ACTIONS(23510), 1, + anon_sym_PIPE2, + STATE(11590), 1, + sym__for_capture_bar, + [261454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23512), 2, sym_identifier, sym_integer, - [110633] = 2, + [261462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10365), 2, + ACTIONS(23514), 2, sym_sink, sym_identifier, - [110641] = 3, + [261470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2517), 1, - sym_parameter_list, - [110651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10367), 1, + ACTIONS(23516), 1, anon_sym_PIPE2, - STATE(3960), 1, + STATE(11016), 1, sym__for_capture_bar, - [110661] = 3, + [261480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, + ACTIONS(6388), 1, anon_sym_LPAREN, - STATE(3103), 1, + STATE(2965), 1, sym_argument_list, - [110671] = 2, + [261490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10369), 2, - sym_sink, - sym_identifier, - [110679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2522), 1, - sym_parameter_list, - [110689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8902), 1, - anon_sym_LBRACE, - STATE(2345), 1, - sym_initializer_list, - [110699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(826), 1, - anon_sym_EQ, - ACTIONS(10371), 1, - anon_sym_for, - [110709] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10373), 2, - sym_sink, - sym_identifier, - [110717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2474), 1, - sym_parameter_list, - [110727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10375), 2, - sym_sink, - sym_identifier, - [110735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10377), 1, - sym_identifier, - ACTIONS(10379), 1, - anon_sym_AT, - [110745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9493), 1, - anon_sym_LBRACE, - STATE(3106), 1, - sym_initializer_list, - [110755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10381), 2, - sym_sink, - sym_identifier, - [110763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10383), 1, - anon_sym_PIPE2, - STATE(4113), 1, - sym__for_capture_bar, - [110773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(2484), 1, - sym_parameter_list, - [110783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10385), 1, + ACTIONS(23518), 1, anon_sym_COLON_COLON, - ACTIONS(10387), 1, + ACTIONS(23520), 1, anon_sym_EQ, - [110793] = 2, + [261500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, - anon_sym_SEMI, - [110800] = 2, + ACTIONS(23522), 1, + anon_sym_PIPE2, + STATE(11601), 1, + sym__for_capture_bar, + [261510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10389), 1, + ACTIONS(23524), 1, + anon_sym_COLON_COLON, + ACTIONS(23526), 1, + anon_sym_EQ, + [261520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23528), 1, + anon_sym_COLON_COLON, + ACTIONS(23530), 1, + anon_sym_EQ, + [261530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7699), 1, + sym_parameter_list, + [261540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7729), 1, + sym_parameter_list, + [261550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23532), 1, + anon_sym_PIPE2, + STATE(11818), 1, + sym__for_capture_bar, + [261560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23534), 1, sym_identifier, - [110807] = 2, + ACTIONS(23536), 1, + anon_sym_AT, + [261570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, - anon_sym_SEMI, - [110814] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10391), 1, - anon_sym_COLON, - [110821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10371), 1, - anon_sym_for, - [110828] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10393), 1, - anon_sym_COLON, - [110835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10395), 1, - anon_sym_COLON, - [110842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10397), 1, - anon_sym_COLON, - [110849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10399), 1, - anon_sym_COLON, - [110856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10401), 1, - anon_sym_SEMI, - [110863] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10403), 1, + ACTIONS(23538), 1, sym_identifier, - [110870] = 2, + ACTIONS(23540), 1, + anon_sym_AT, + [261580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10405), 1, - anon_sym_COLON, - [110877] = 2, + ACTIONS(23542), 1, + sym_identifier, + ACTIONS(23544), 1, + anon_sym_AT, + [261590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - [110884] = 2, + ACTIONS(23546), 1, + sym_identifier, + ACTIONS(23548), 1, + anon_sym_AT, + [261600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + ACTIONS(23550), 1, + anon_sym_PIPE2, + STATE(11602), 1, + sym__for_capture_bar, + [261610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23552), 1, + anon_sym_COLON_COLON, + ACTIONS(23554), 1, + anon_sym_EQ, + [261620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7725), 1, + sym_parameter_list, + [261630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23556), 1, + sym_identifier, + ACTIONS(23558), 1, + anon_sym_AT, + [261640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23560), 1, + sym_identifier, + ACTIONS(23562), 1, + anon_sym_AT, + [261650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23564), 1, + anon_sym_COLON_COLON, + ACTIONS(23566), 1, + anon_sym_EQ, + [261660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23568), 1, + sym_identifier, + ACTIONS(23570), 1, + anon_sym_AT, + [261670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23572), 1, + sym_identifier, + ACTIONS(23574), 1, + anon_sym_AT, + [261680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23576), 1, + anon_sym_PIPE2, + STATE(11820), 1, + sym__for_capture_bar, + [261690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23578), 1, + anon_sym_COLON_COLON, + ACTIONS(23580), 1, + anon_sym_EQ, + [261700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23582), 1, + anon_sym_PIPE2, + STATE(11832), 1, + sym__for_capture_bar, + [261710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23584), 1, anon_sym_PIPE, - [110891] = 2, + STATE(16005), 1, + sym_expand_match_capture, + [261720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10411), 1, - anon_sym_COLON, - [110898] = 2, + ACTIONS(23586), 1, + anon_sym_COLON_COLON, + ACTIONS(23588), 1, + anon_sym_EQ, + [261730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10413), 1, - anon_sym_COLON, - [110905] = 2, + ACTIONS(12236), 1, + anon_sym_LPAREN, + STATE(8310), 1, + sym_argument_list, + [261740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10415), 1, - anon_sym_PIPE, - [110912] = 2, + ACTIONS(23590), 1, + anon_sym_PIPE2, + STATE(11836), 1, + sym__for_capture_bar, + [261750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10417), 1, - anon_sym_COLON, - [110919] = 2, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7709), 1, + sym_parameter_list, + [261760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10419), 1, + ACTIONS(23592), 1, sym_identifier, - [110926] = 2, + ACTIONS(23594), 1, + anon_sym_AT, + [261770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10421), 1, + ACTIONS(23596), 1, sym_identifier, - [110933] = 2, + ACTIONS(23598), 1, + anon_sym_AT, + [261780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10423), 1, - anon_sym_RPAREN, - [110940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10425), 1, + ACTIONS(23600), 1, sym_identifier, - [110947] = 2, + ACTIONS(23602), 1, + anon_sym_AT, + [261790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10427), 1, + ACTIONS(23604), 1, sym_identifier, - [110954] = 2, + ACTIONS(23606), 1, + anon_sym_AT, + [261800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10429), 1, - anon_sym_COLON, - [110961] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10431), 1, + ACTIONS(23608), 1, sym_identifier, - [110968] = 2, + ACTIONS(23610), 1, + anon_sym_AT, + [261810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10433), 1, - anon_sym_RPAREN, - [110975] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, + ACTIONS(23612), 1, sym_identifier, - [110982] = 2, + ACTIONS(23614), 1, + anon_sym_AT, + [261820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, - anon_sym_RPAREN, - [110989] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10439), 1, - anon_sym_PIPE, - [110996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10441), 1, - anon_sym_COLON, - [111003] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10443), 1, - anon_sym_COLON, - [111010] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10445), 1, - anon_sym_COLON, - [111017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10447), 1, + ACTIONS(23616), 1, sym_identifier, - [111024] = 2, + ACTIONS(23618), 1, + anon_sym_AT, + [261830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10449), 1, - anon_sym_COLON, - [111031] = 2, + ACTIONS(23620), 1, + anon_sym_PIPE2, + STATE(11822), 1, + sym__for_capture_bar, + [261840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10451), 1, + ACTIONS(23622), 1, + anon_sym_PIPE2, + STATE(11398), 1, + sym__for_capture_bar, + [261850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23624), 1, + anon_sym_COLON_COLON, + ACTIONS(23626), 1, + anon_sym_EQ, + [261860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23362), 2, sym_identifier, - [111038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10453), 1, - sym_identifier, - [111045] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10455), 1, - sym_identifier, - [111052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10457), 1, - anon_sym_PIPE, - [111059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10459), 1, - anon_sym_COLON, - [111066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10461), 1, - anon_sym_COLON, - [111073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10463), 1, - anon_sym_COLON, - [111080] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10465), 1, - sym_identifier, - [111087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10467), 1, - anon_sym_COLON, - [111094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10469), 1, - sym_identifier, - [111101] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10471), 1, - anon_sym_COLON, - [111108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10473), 1, - anon_sym_COLON, - [111115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10475), 1, sym_integer, - [111122] = 2, + [261868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10477), 1, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7675), 1, + sym_parameter_list, + [261878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7731), 1, + sym_parameter_list, + [261888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23628), 1, + anon_sym_PIPE2, + STATE(11847), 1, + sym__for_capture_bar, + [261898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23630), 1, sym_identifier, - [111129] = 2, + ACTIONS(23632), 1, + anon_sym_AT, + [261908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10479), 1, - anon_sym_COLON, - [111136] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10481), 1, - anon_sym_COLON, - [111143] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10483), 1, - anon_sym_COLON, - [111150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10485), 1, - anon_sym_COLON, - [111157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10487), 1, - anon_sym_COLON, - [111164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10489), 1, - anon_sym_COLON, - [111171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10491), 1, - anon_sym_COLON, - [111178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10493), 1, + ACTIONS(23634), 1, sym_identifier, - [111185] = 2, + ACTIONS(23636), 1, + anon_sym_AT, + [261918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10495), 1, + ACTIONS(23638), 1, + sym_identifier, + ACTIONS(23640), 1, + anon_sym_AT, + [261928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23642), 1, + sym_identifier, + ACTIONS(23644), 1, + anon_sym_AT, + [261938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23646), 1, + sym_identifier, + ACTIONS(23648), 1, + anon_sym_AT, + [261948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23650), 1, + anon_sym_PIPE2, + STATE(11851), 1, + sym__for_capture_bar, + [261958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23652), 1, + anon_sym_PIPE2, + STATE(11179), 1, + sym__for_capture_bar, + [261968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23654), 1, + sym_identifier, + ACTIONS(23656), 1, + anon_sym_AT, + [261978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7681), 1, + sym_parameter_list, + [261988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23658), 1, + anon_sym_PIPE2, + STATE(11854), 1, + sym__for_capture_bar, + [261998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23660), 1, + sym_identifier, + ACTIONS(23662), 1, + anon_sym_AT, + [262008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23664), 1, + sym_identifier, + ACTIONS(23666), 1, + anon_sym_AT, + [262018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23668), 1, + sym_identifier, + ACTIONS(23670), 1, + anon_sym_AT, + [262028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23672), 1, + sym_identifier, + ACTIONS(23674), 1, + anon_sym_AT, + [262038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23676), 1, + sym_identifier, + ACTIONS(23678), 1, + anon_sym_AT, + [262048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + anon_sym_LPAREN, + STATE(9071), 1, + sym_argument_list, + [262058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23680), 1, + sym_identifier, + ACTIONS(23682), 1, + anon_sym_AT, + [262068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23684), 2, + sym_identifier, + sym_integer, + [262076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7687), 1, + sym_parameter_list, + [262086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20887), 1, + anon_sym_LBRACE, + STATE(9088), 1, + sym_initializer_list, + [262096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23686), 1, + anon_sym_COLON_COLON, + ACTIONS(23688), 1, anon_sym_EQ, - [111192] = 2, + [262106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10497), 1, - anon_sym_COLON, - [111199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10499), 1, - anon_sym_PIPE, - [111206] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10501), 1, - anon_sym_COLON, - [111213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10503), 1, - anon_sym_COLON, - [111220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10505), 1, - anon_sym_COLON, - [111227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10507), 1, - anon_sym_COLON, - [111234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10509), 1, + ACTIONS(23690), 2, + sym_sink, sym_identifier, - [111241] = 2, + [262114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10511), 1, + ACTIONS(23692), 1, sym_identifier, - [111248] = 2, + ACTIONS(23694), 1, + anon_sym_AT, + [262124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10513), 1, + ACTIONS(23696), 1, sym_identifier, - [111255] = 2, + ACTIONS(23698), 1, + anon_sym_AT, + [262134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10515), 1, - anon_sym_COLON, - [111262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10517), 1, - anon_sym_COLON, - [111269] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10519), 1, - anon_sym_COLON, - [111276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10521), 1, + ACTIONS(23700), 1, sym_identifier, - [111283] = 2, + ACTIONS(23702), 1, + anon_sym_AT, + [262144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10523), 1, - anon_sym_COLON, - [111290] = 2, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(23704), 1, + anon_sym_for, + [262154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10525), 1, + ACTIONS(2649), 1, + anon_sym_LPAREN, + STATE(2606), 1, + sym_argument_list, + [262164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23706), 1, sym_identifier, - [111297] = 2, + ACTIONS(23708), 1, + anon_sym_AT, + [262174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10527), 1, + ACTIONS(23710), 1, + sym_identifier, + ACTIONS(23712), 1, + anon_sym_AT, + [262184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23714), 1, + anon_sym_PIPE2, + STATE(11183), 1, + sym__for_capture_bar, + [262194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23716), 1, + sym_identifier, + ACTIONS(23718), 1, + anon_sym_AT, + [262204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23720), 1, + anon_sym_PIPE2, + STATE(11860), 1, + sym__for_capture_bar, + [262214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23722), 1, + anon_sym_PIPE2, + STATE(11861), 1, + sym__for_capture_bar, + [262224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7738), 1, + sym_parameter_list, + [262234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23724), 1, + sym_identifier, + ACTIONS(23726), 1, + anon_sym_AT, + [262244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23728), 1, + sym_identifier, + ACTIONS(23730), 1, + anon_sym_AT, + [262254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23732), 1, + sym_identifier, + ACTIONS(23734), 1, + anon_sym_AT, + [262264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23736), 1, + sym_identifier, + ACTIONS(23738), 1, + anon_sym_AT, + [262274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23740), 1, + sym_identifier, + ACTIONS(23742), 1, + anon_sym_AT, + [262284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23744), 1, + anon_sym_COLON_COLON, + ACTIONS(23746), 1, + anon_sym_EQ, + [262294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23748), 1, + sym_identifier, + ACTIONS(23750), 1, + anon_sym_AT, + [262304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23752), 2, + sym_sink, + sym_identifier, + [262312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23754), 1, + anon_sym_PIPE2, + STATE(11621), 1, + sym__for_capture_bar, + [262322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23756), 1, + anon_sym_COLON_COLON, + ACTIONS(23758), 1, + anon_sym_EQ, + [262332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23760), 1, + anon_sym_PIPE2, + STATE(11868), 1, + sym__for_capture_bar, + [262342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23762), 1, + sym_identifier, + ACTIONS(23764), 1, + anon_sym_AT, + [262352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13217), 1, + anon_sym_LPAREN, + STATE(9571), 1, + sym_argument_list, + [262362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23766), 1, + anon_sym_COLON_COLON, + ACTIONS(23768), 1, + anon_sym_EQ, + [262372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7698), 1, + sym_parameter_list, + [262382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23770), 1, + anon_sym_COLON_COLON, + ACTIONS(23772), 1, + anon_sym_EQ, + [262392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23774), 1, + sym_identifier, + ACTIONS(23776), 1, + anon_sym_AT, + [262402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23778), 1, + anon_sym_COLON_COLON, + ACTIONS(23780), 1, + anon_sym_EQ, + [262412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23782), 2, + sym_identifier, + sym_integer, + [262420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23784), 1, + anon_sym_PIPE2, + STATE(11251), 1, + sym__for_capture_bar, + [262430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19797), 1, + anon_sym_LBRACE, + STATE(3457), 1, + sym_initializer_list, + [262440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23786), 1, + sym_identifier, + ACTIONS(23788), 1, + anon_sym_AT, + [262450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6388), 1, + anon_sym_LPAREN, + STATE(3057), 1, + sym_argument_list, + [262460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7735), 1, + sym_parameter_list, + [262470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23790), 1, + anon_sym_PIPE2, + STATE(11637), 1, + sym__for_capture_bar, + [262480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23792), 1, + sym_identifier, + ACTIONS(23794), 1, + anon_sym_AT, + [262490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23796), 1, + anon_sym_COLON_COLON, + ACTIONS(23798), 1, + anon_sym_EQ, + [262500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23800), 1, + anon_sym_COLON_COLON, + ACTIONS(23802), 1, + anon_sym_EQ, + [262510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23804), 1, + anon_sym_COLON_COLON, + ACTIONS(23806), 1, + anon_sym_EQ, + [262520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23808), 1, + anon_sym_PIPE2, + STATE(11186), 1, + sym__for_capture_bar, + [262530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23362), 1, + sym_integer, + ACTIONS(23810), 1, + sym_identifier, + [262540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23812), 1, + anon_sym_PIPE2, + STATE(11193), 1, + sym__for_capture_bar, + [262550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23814), 1, + anon_sym_COLON_COLON, + ACTIONS(23816), 1, + anon_sym_EQ, + [262560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23818), 1, + anon_sym_COLON_COLON, + ACTIONS(23820), 1, + anon_sym_EQ, + [262570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7671), 1, + sym_parameter_list, + [262580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16187), 2, + sym_sink, + sym_identifier, + [262588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23822), 1, + anon_sym_COLON_COLON, + ACTIONS(23824), 1, + anon_sym_EQ, + [262598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14241), 1, + anon_sym_LPAREN, + STATE(10587), 1, + sym_argument_list, + [262608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23826), 1, + anon_sym_COLON_COLON, + ACTIONS(23828), 1, + anon_sym_EQ, + [262618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + STATE(10855), 1, + sym_argument_list, + [262628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23830), 1, + anon_sym_PIPE2, + STATE(11651), 1, + sym__for_capture_bar, + [262638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23832), 2, + sym_identifier, + sym_integer, + [262646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23834), 1, + anon_sym_PIPE2, + STATE(11194), 1, + sym__for_capture_bar, + [262656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19299), 1, + anon_sym_LBRACE, + STATE(10782), 1, + sym_initializer_list, + [262666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23836), 1, + anon_sym_PIPE2, + STATE(11201), 1, + sym__for_capture_bar, + [262676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_LPAREN, + STATE(2549), 1, + sym_argument_list, + [262686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23838), 1, + anon_sym_PIPE2, + STATE(11262), 1, + sym__for_capture_bar, + [262696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23840), 1, + anon_sym_PIPE2, + STATE(11753), 1, + sym__for_capture_bar, + [262706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23842), 1, + anon_sym_COLON_COLON, + ACTIONS(23844), 1, + anon_sym_EQ, + [262716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23846), 1, + anon_sym_COLON_COLON, + ACTIONS(23848), 1, + anon_sym_EQ, + [262726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23850), 2, + anon_sym_RBRACK, + sym__newline, + [262734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23852), 1, + anon_sym_COLON_COLON, + ACTIONS(23854), 1, + anon_sym_EQ, + [262744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23856), 1, + anon_sym_COLON_COLON, + ACTIONS(23858), 1, + anon_sym_EQ, + [262754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23860), 1, + anon_sym_PIPE2, + STATE(11027), 1, + sym__for_capture_bar, + [262764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym_LPAREN, + STATE(8693), 1, + sym_argument_list, + [262774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23862), 1, + anon_sym_PIPE2, + STATE(11878), 1, + sym__for_capture_bar, + [262784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23864), 1, + anon_sym_COLON_COLON, + ACTIONS(23866), 1, + anon_sym_EQ, + [262794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23868), 1, + anon_sym_PIPE2, + STATE(11031), 1, + sym__for_capture_bar, + [262804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23870), 1, + anon_sym_COLON_COLON, + ACTIONS(23872), 1, + anon_sym_EQ, + [262814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23874), 2, + sym_identifier, + sym_integer, + [262822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19925), 1, + anon_sym_LBRACE, + STATE(8572), 1, + sym_initializer_list, + [262832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23876), 1, + anon_sym_PIPE2, + STATE(11266), 1, + sym__for_capture_bar, + [262842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23878), 2, + sym_identifier, + sym_integer, + [262850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23880), 1, + anon_sym_COLON_COLON, + ACTIONS(23882), 1, + anon_sym_EQ, + [262860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6712), 1, + anon_sym_LPAREN, + STATE(3575), 1, + sym_argument_list, + [262870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23884), 1, + anon_sym_PIPE2, + STATE(11085), 1, + sym__for_capture_bar, + [262880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23886), 1, + anon_sym_COLON_COLON, + ACTIONS(23888), 1, + anon_sym_EQ, + [262890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23890), 1, + anon_sym_PIPE2, + STATE(11149), 1, + sym__for_capture_bar, + [262900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23892), 1, + anon_sym_PIPE2, + STATE(11093), 1, + sym__for_capture_bar, + [262910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23894), 1, + anon_sym_COLON_COLON, + ACTIONS(23896), 1, + anon_sym_EQ, + [262920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + STATE(4455), 1, + sym_argument_list, + [262930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15689), 1, + anon_sym_LPAREN, + STATE(7706), 1, + sym_parameter_list, + [262940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23898), 2, + sym_sink, + sym_identifier, + [262948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23900), 1, + anon_sym_PIPE2, + STATE(11034), 1, + sym__for_capture_bar, + [262958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23902), 1, + anon_sym_PIPE2, + STATE(11187), 1, + sym__for_capture_bar, + [262968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23904), 1, + anon_sym_PIPE2, + STATE(11223), 1, + sym__for_capture_bar, + [262978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23906), 1, + anon_sym_COLON_COLON, + ACTIONS(23908), 1, + anon_sym_EQ, + [262988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23910), 1, + anon_sym_PIPE2, + STATE(11311), 1, + sym__for_capture_bar, + [262998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23912), 2, + sym_identifier, + sym_integer, + [263006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23914), 1, + anon_sym_PIPE2, + STATE(11508), 1, + sym__for_capture_bar, + [263016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LPAREN, + STATE(4240), 1, + sym_argument_list, + [263026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23916), 1, + anon_sym_PIPE2, + STATE(11276), 1, + sym__for_capture_bar, + [263036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20831), 1, + anon_sym_LBRACE, + STATE(3918), 1, + sym_initializer_list, + [263046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23918), 1, + anon_sym_COLON_COLON, + ACTIONS(23920), 1, + anon_sym_EQ, + [263056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23922), 1, + anon_sym_PIPE2, + STATE(11366), 1, + sym__for_capture_bar, + [263066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23924), 1, + anon_sym_COLON_COLON, + ACTIONS(23926), 1, + anon_sym_EQ, + [263076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23928), 1, + anon_sym_PIPE2, + STATE(11368), 1, + sym__for_capture_bar, + [263086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23930), 1, + anon_sym_PIPE2, + STATE(11280), 1, + sym__for_capture_bar, + [263096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23932), 1, + sym_identifier, + ACTIONS(23934), 1, + anon_sym_AT, + [263106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23936), 1, + sym_identifier, + ACTIONS(23938), 1, + anon_sym_AT, + [263116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23940), 1, + sym_identifier, + ACTIONS(23942), 1, + anon_sym_AT, + [263126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23944), 1, anon_sym_RPAREN, - [111304] = 2, + [263133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10529), 1, + ACTIONS(23946), 1, + anon_sym_COLON, + [263140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23948), 1, + anon_sym_COLON, + [263147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23950), 1, + anon_sym_COLON, + [263154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23952), 1, + anon_sym_COLON, + [263161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23954), 1, anon_sym_RPAREN, - [111311] = 2, + [263168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10531), 1, - anon_sym_COLON, - [111318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10533), 1, - sym_identifier, - [111325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10535), 1, - sym_identifier, - [111332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10537), 1, - sym_identifier, - [111339] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10539), 1, - anon_sym_COLON, - [111346] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10541), 1, - anon_sym_PIPE, - [111353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10543), 1, - sym_identifier, - [111360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10545), 1, - anon_sym_COLON, - [111367] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10547), 1, - sym_identifier, - [111374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10549), 1, + ACTIONS(23956), 1, anon_sym_RPAREN, - [111381] = 2, + [263175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10551), 1, + ACTIONS(23958), 1, anon_sym_COLON, - [111388] = 2, + [263182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10553), 1, + ACTIONS(23960), 1, anon_sym_COLON, - [111395] = 2, + [263189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10555), 1, + ACTIONS(23962), 1, anon_sym_COLON, - [111402] = 2, + [263196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10557), 1, + ACTIONS(23964), 1, anon_sym_COLON, - [111409] = 2, + [263203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10559), 1, + ACTIONS(23966), 1, sym_identifier, - [111416] = 2, + [263210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10561), 1, + ACTIONS(23968), 1, anon_sym_COLON, - [111423] = 2, + [263217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10563), 1, + ACTIONS(23970), 1, anon_sym_COLON, - [111430] = 2, + [263224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10565), 1, + ACTIONS(23972), 1, anon_sym_COLON, - [111437] = 2, + [263231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(23974), 1, + anon_sym_COLON, + [263238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23976), 1, + anon_sym_COLON, + [263245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23978), 1, + anon_sym_COLON, + [263252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23980), 1, + anon_sym_COLON, + [263259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23982), 1, + anon_sym_COLON, + [263266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23984), 1, + anon_sym_COLON, + [263273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23986), 1, sym_identifier, - [111444] = 2, + [263280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10567), 1, - sym_identifier, - [111451] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10569), 1, + ACTIONS(23988), 1, anon_sym_COLON, - [111458] = 2, + [263287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10571), 1, - sym_identifier, - [111465] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10573), 1, - sym_identifier, - [111472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10575), 1, + ACTIONS(23990), 1, anon_sym_COLON, - [111479] = 2, + [263294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10577), 1, + ACTIONS(23992), 1, anon_sym_COLON, - [111486] = 2, + [263301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10579), 1, - anon_sym_COLON, - [111493] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10581), 1, - anon_sym_RPAREN, - [111500] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, + ACTIONS(23994), 1, anon_sym_SEMI, - [111507] = 2, + [263308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10583), 1, + ACTIONS(23996), 1, anon_sym_COLON, - [111514] = 2, + [263315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10585), 1, + ACTIONS(23998), 1, + anon_sym_COLON, + [263322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24000), 1, + anon_sym_PIPE, + [263329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24002), 1, + anon_sym_COLON, + [263336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24004), 1, + anon_sym_COLON, + [263343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24006), 1, anon_sym_RPAREN, - [111521] = 2, + [263350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10587), 1, - anon_sym_PIPE, - [111528] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10589), 1, - anon_sym_import, - [111535] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10591), 1, - sym_identifier, - [111542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10593), 1, - anon_sym_COLON, - [111549] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10595), 1, - anon_sym_PIPE, - [111556] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10597), 1, - anon_sym_COLON, - [111563] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10353), 1, - sym_identifier, - [111570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10599), 1, - sym_identifier, - [111577] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10601), 1, - anon_sym_COLON, - [111584] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10603), 1, - anon_sym_COLON, - [111591] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10605), 1, - anon_sym_PIPE, - [111598] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10607), 1, - sym_identifier, - [111605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10609), 1, - sym_identifier, - [111612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10273), 1, - sym_identifier, - [111619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10611), 1, - anon_sym_COLON, - [111626] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10613), 1, - anon_sym_COLON, - [111633] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10615), 1, - anon_sym_COLON, - [111640] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10617), 1, - anon_sym_COLON, - [111647] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10619), 1, - sym_identifier, - [111654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10621), 1, - anon_sym_COLON, - [111661] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10623), 1, - sym_identifier, - [111668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10625), 1, - anon_sym_COLON, - [111675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10627), 1, + ACTIONS(24008), 1, anon_sym_RPAREN, - [111682] = 2, + [263357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10629), 1, - anon_sym_RPAREN, - [111689] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10631), 1, - anon_sym_COLON, - [111696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10633), 1, - anon_sym_COLON, - [111703] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10635), 1, + ACTIONS(24010), 1, sym_identifier, - [111710] = 2, + [263364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10637), 1, + ACTIONS(24012), 1, + anon_sym_COLON, + [263371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24014), 1, + anon_sym_COLON, + [263378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24016), 1, + anon_sym_COLON, + [263385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24018), 1, + anon_sym_COLON, + [263392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24020), 1, sym_identifier, - [111717] = 2, + [263399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10639), 1, + ACTIONS(24022), 1, + anon_sym_COLON, + [263406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24024), 1, + anon_sym_COLON, + [263413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24026), 1, + anon_sym_COLON, + [263420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24028), 1, + anon_sym_COLON, + [263427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24030), 1, + anon_sym_COLON, + [263434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24032), 1, + anon_sym_COLON, + [263441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24034), 1, + anon_sym_COLON, + [263448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24036), 1, + anon_sym_COLON, + [263455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24038), 1, + anon_sym_COLON, + [263462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24040), 1, + anon_sym_COLON, + [263469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24042), 1, + anon_sym_COLON, + [263476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24044), 1, + anon_sym_COLON, + [263483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24046), 1, + anon_sym_COLON, + [263490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24048), 1, anon_sym_PIPE, - [111724] = 2, + [263497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, - anon_sym_SEMI, - [111731] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10641), 1, + ACTIONS(24050), 1, anon_sym_COLON, - [111738] = 2, + [263504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10643), 1, + ACTIONS(24052), 1, + sym_identifier, + [263511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24054), 1, anon_sym_COLON, - [111745] = 2, + [263518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10645), 1, + ACTIONS(24056), 1, ts_builtin_sym_end, - [111752] = 2, + [263525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10647), 1, - anon_sym_COLON, - [111759] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10649), 1, - anon_sym_COLON, - [111766] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10651), 1, - anon_sym_SEMI, - [111773] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10653), 1, - sym_identifier, - [111780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10655), 1, - sym_identifier, - [111787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10657), 1, - anon_sym_COLON, - [111794] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10659), 1, - anon_sym_RPAREN, - [111801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_SEMI, - [111808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10661), 1, - anon_sym_COLON, - [111815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10663), 1, - anon_sym_RPAREN, - [111822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10665), 1, - anon_sym_SEMI, - [111829] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10667), 1, - anon_sym_COLON, - [111836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10669), 1, - anon_sym_COLON, - [111843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2566), 1, - anon_sym_SEMI, - [111850] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10671), 1, - anon_sym_SEMI, - [111857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10673), 1, - anon_sym_COLON, - [111864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10675), 1, - anon_sym_SEMI, - [111871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10677), 1, - anon_sym_RPAREN, - [111878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10679), 1, - anon_sym_RPAREN, - [111885] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2712), 1, - anon_sym_SEMI, - [111892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10681), 1, - anon_sym_COLON, - [111899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10683), 1, - anon_sym_RPAREN, - [111906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10685), 1, - anon_sym_SEMI, - [111913] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_RPAREN, - [111920] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2628), 1, - anon_sym_SEMI, - [111927] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10689), 1, + ACTIONS(24058), 1, anon_sym_PIPE, - [111934] = 2, + [263532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10691), 1, + ACTIONS(24060), 1, + anon_sym_EQ, + [263539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24062), 1, anon_sym_COLON, - [111941] = 2, + [263546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10693), 1, - anon_sym_SEMI, - [111948] = 2, + ACTIONS(24064), 1, + anon_sym_COLON, + [263553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, - anon_sym_SEMI, - [111955] = 2, + ACTIONS(24066), 1, + anon_sym_COLON, + [263560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10695), 1, + ACTIONS(24068), 1, + anon_sym_COLON, + [263567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24070), 1, + anon_sym_COLON, + [263574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24072), 1, + anon_sym_COLON, + [263581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24074), 1, + anon_sym_COLON, + [263588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24076), 1, sym_identifier, - [111962] = 2, + [263595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10697), 1, + ACTIONS(24078), 1, anon_sym_COLON, - [111969] = 2, + [263602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10699), 1, - anon_sym_SEMI, - [111976] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10701), 1, + ACTIONS(24080), 1, anon_sym_COLON, - [111983] = 2, + [263609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10703), 1, + ACTIONS(24082), 1, anon_sym_COLON, - [111990] = 2, + [263616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10705), 1, - anon_sym_SEMI, - [111997] = 2, + ACTIONS(24084), 1, + anon_sym_COLON, + [263623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10707), 1, + ACTIONS(24086), 1, + anon_sym_COLON, + [263630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24088), 1, + anon_sym_COLON, + [263637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24090), 1, + anon_sym_COLON, + [263644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24092), 1, + anon_sym_COLON, + [263651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24094), 1, + anon_sym_COLON, + [263658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24096), 1, + anon_sym_COLON, + [263665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24098), 1, + sym_identifier, + [263672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24100), 1, + anon_sym_COLON, + [263679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24102), 1, + anon_sym_COLON, + [263686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24104), 1, + anon_sym_COLON, + [263693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24106), 1, + anon_sym_COLON, + [263700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24108), 1, + anon_sym_COLON, + [263707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24110), 1, + anon_sym_COLON, + [263714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24112), 1, + anon_sym_COLON, + [263721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24114), 1, + anon_sym_COLON, + [263728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24116), 1, + anon_sym_COLON, + [263735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24118), 1, + anon_sym_COLON, + [263742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24120), 1, + anon_sym_COLON, + [263749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24122), 1, + anon_sym_COLON, + [263756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24124), 1, + anon_sym_COLON, + [263763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24126), 1, + anon_sym_COLON, + [263770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24128), 1, + anon_sym_import, + [263777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24130), 1, + anon_sym_COLON, + [263784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24132), 1, + anon_sym_COLON, + [263791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24134), 1, + anon_sym_COLON, + [263798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24136), 1, + anon_sym_COLON, + [263805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24138), 1, + anon_sym_COLON, + [263812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24140), 1, + anon_sym_COLON, + [263819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24142), 1, + anon_sym_COLON, + [263826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24144), 1, + anon_sym_COLON, + [263833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24146), 1, anon_sym_RPAREN, - [112004] = 2, + [263840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10709), 1, + ACTIONS(24148), 1, anon_sym_COLON, - [112011] = 2, + [263847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(24150), 1, anon_sym_COLON, - [112018] = 2, + [263854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10713), 1, + ACTIONS(24152), 1, + anon_sym_COLON, + [263861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24154), 1, + sym_identifier, + [263868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24156), 1, + anon_sym_COLON, + [263875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24158), 1, + anon_sym_COLON, + [263882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24160), 1, + anon_sym_COLON, + [263889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24162), 1, + anon_sym_COLON, + [263896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24164), 1, + anon_sym_COLON, + [263903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24166), 1, + anon_sym_COLON, + [263910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24168), 1, + anon_sym_COLON, + [263917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24170), 1, + anon_sym_COLON, + [263924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24172), 1, + anon_sym_COLON, + [263931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24174), 1, + anon_sym_COLON, + [263938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24176), 1, + anon_sym_COLON, + [263945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24178), 1, + anon_sym_COLON, + [263952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24180), 1, + anon_sym_COLON, + [263959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24182), 1, + anon_sym_COLON, + [263966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24184), 1, + sym_identifier, + [263973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24186), 1, + anon_sym_COLON, + [263980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24188), 1, + anon_sym_COLON, + [263987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24190), 1, + anon_sym_COLON, + [263994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24192), 1, + anon_sym_COLON, + [264001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24194), 1, + anon_sym_COLON, + [264008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24196), 1, + anon_sym_COLON, + [264015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24198), 1, + anon_sym_COLON, + [264022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24200), 1, + anon_sym_COLON, + [264029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24202), 1, + anon_sym_COLON, + [264036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24204), 1, + anon_sym_COLON, + [264043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24206), 1, + sym_identifier, + [264050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24208), 1, + anon_sym_COLON, + [264057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24210), 1, + anon_sym_RPAREN, + [264064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24212), 1, + sym_identifier, + [264071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24214), 1, + anon_sym_COLON, + [264078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24216), 1, + anon_sym_COLON, + [264085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24218), 1, + anon_sym_COLON, + [264092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24220), 1, + anon_sym_COLON, + [264099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24222), 1, + anon_sym_COLON, + [264106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24224), 1, + anon_sym_COLON, + [264113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24226), 1, + anon_sym_COLON, + [264120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24228), 1, + anon_sym_COLON, + [264127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24230), 1, + anon_sym_COLON, + [264134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24232), 1, + anon_sym_COLON, + [264141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24234), 1, + anon_sym_COLON, + [264148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24236), 1, + anon_sym_COLON, + [264155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24238), 1, + anon_sym_COLON, + [264162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24240), 1, + anon_sym_COLON, + [264169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24242), 1, + anon_sym_COLON, + [264176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24244), 1, + anon_sym_COLON, + [264183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24246), 1, + anon_sym_COLON, + [264190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24248), 1, + anon_sym_COLON, + [264197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24250), 1, + anon_sym_COLON, + [264204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24252), 1, + anon_sym_COLON, + [264211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24254), 1, + anon_sym_COLON, + [264218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24256), 1, + anon_sym_COLON, + [264225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24258), 1, + anon_sym_COLON, + [264232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24260), 1, + sym_identifier, + [264239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24262), 1, + anon_sym_COLON, + [264246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24264), 1, + sym_identifier, + [264253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24266), 1, + anon_sym_COLON, + [264260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24268), 1, + anon_sym_COLON, + [264267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24270), 1, + anon_sym_COLON, + [264274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24272), 1, + anon_sym_COLON, + [264281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24274), 1, + anon_sym_COLON, + [264288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24276), 1, + anon_sym_COLON, + [264295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24278), 1, + anon_sym_COLON, + [264302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24280), 1, + anon_sym_COLON, + [264309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24282), 1, + anon_sym_COLON, + [264316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24284), 1, + anon_sym_COLON, + [264323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24286), 1, + anon_sym_COLON, + [264330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24288), 1, + anon_sym_COLON, + [264337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24290), 1, + anon_sym_COLON, + [264344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24292), 1, + anon_sym_COLON, + [264351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24294), 1, + anon_sym_COLON, + [264358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24296), 1, + anon_sym_COLON, + [264365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24298), 1, + anon_sym_COLON, + [264372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24300), 1, + anon_sym_COLON, + [264379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24302), 1, + anon_sym_COLON, + [264386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24304), 1, + anon_sym_COLON, + [264393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24306), 1, + anon_sym_COLON, + [264400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24308), 1, + anon_sym_COLON, + [264407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24310), 1, + anon_sym_COLON, + [264414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24312), 1, + anon_sym_COLON, + [264421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24314), 1, + anon_sym_COLON, + [264428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24316), 1, + anon_sym_COLON, + [264435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24318), 1, + anon_sym_COLON, + [264442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24320), 1, + anon_sym_COLON, + [264449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24322), 1, + anon_sym_COLON, + [264456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24324), 1, + anon_sym_COLON, + [264463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24326), 1, + anon_sym_COLON, + [264470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24328), 1, + anon_sym_COLON, + [264477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24330), 1, + anon_sym_COLON, + [264484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24332), 1, + anon_sym_COLON, + [264491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24334), 1, + anon_sym_COLON, + [264498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24336), 1, + anon_sym_COLON, + [264505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24338), 1, + anon_sym_COLON, + [264512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24340), 1, + anon_sym_COLON, + [264519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24342), 1, + anon_sym_COLON, + [264526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24344), 1, + anon_sym_COLON, + [264533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24346), 1, + sym_identifier, + [264540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24348), 1, + anon_sym_COLON, + [264547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24350), 1, + anon_sym_COLON, + [264554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24352), 1, + anon_sym_COLON, + [264561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24354), 1, + anon_sym_COLON, + [264568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24356), 1, + anon_sym_COLON, + [264575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24358), 1, + anon_sym_COLON, + [264582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24360), 1, + anon_sym_COLON, + [264589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24362), 1, + anon_sym_COLON, + [264596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24364), 1, + anon_sym_COLON, + [264603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24366), 1, + anon_sym_COLON, + [264610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24368), 1, + anon_sym_COLON, + [264617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24370), 1, + sym_identifier, + [264624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24372), 1, + anon_sym_COLON, + [264631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24374), 1, + sym_identifier, + [264638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24376), 1, + anon_sym_COLON, + [264645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24378), 1, + anon_sym_COLON, + [264652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24380), 1, + anon_sym_COLON, + [264659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24382), 1, + anon_sym_COLON, + [264666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24384), 1, + anon_sym_RPAREN, + [264673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24386), 1, + anon_sym_COLON, + [264680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24388), 1, + anon_sym_COLON, + [264687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24390), 1, + anon_sym_COLON, + [264694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24392), 1, + anon_sym_COLON, + [264701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24394), 1, + sym_identifier, + [264708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24396), 1, + anon_sym_COLON, + [264715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24398), 1, + anon_sym_COLON, + [264722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24400), 1, + anon_sym_COLON, + [264729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24402), 1, + anon_sym_COLON, + [264736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24404), 1, + anon_sym_COLON, + [264743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24406), 1, + anon_sym_COLON, + [264750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24408), 1, + sym_identifier, + [264757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24410), 1, + anon_sym_COLON, + [264764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24412), 1, + anon_sym_COLON, + [264771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24414), 1, + sym_identifier, + [264778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24416), 1, + anon_sym_COLON, + [264785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24418), 1, + anon_sym_COLON, + [264792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24420), 1, + anon_sym_COLON, + [264799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24422), 1, + anon_sym_COLON, + [264806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24424), 1, + anon_sym_COLON, + [264813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24426), 1, + anon_sym_COLON, + [264820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24428), 1, + anon_sym_COLON, + [264827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24430), 1, + sym_identifier, + [264834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24432), 1, + anon_sym_RPAREN, + [264841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24434), 1, + anon_sym_COLON, + [264848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24436), 1, + anon_sym_COLON, + [264855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24438), 1, + anon_sym_COLON, + [264862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24440), 1, + anon_sym_COLON, + [264869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24442), 1, + anon_sym_COLON, + [264876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24444), 1, + sym_identifier, + [264883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24446), 1, + sym_identifier, + [264890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24448), 1, + anon_sym_RPAREN, + [264897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24450), 1, + anon_sym_RPAREN, + [264904] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24452), 1, + anon_sym_COLON, + [264911] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24454), 1, + sym_identifier, + [264918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24456), 1, + anon_sym_COLON, + [264925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24458), 1, + anon_sym_COLON, + [264932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24460), 1, + anon_sym_COLON, + [264939] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24462), 1, + sym_identifier, + [264946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24464), 1, + anon_sym_COLON, + [264953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24466), 1, + anon_sym_COLON, + [264960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24468), 1, + anon_sym_RPAREN, + [264967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24470), 1, + anon_sym_COLON, + [264974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24472), 1, + anon_sym_COLON, + [264981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24474), 1, + anon_sym_COLON, + [264988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24476), 1, + anon_sym_COLON, + [264995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24478), 1, + sym_identifier, + [265002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24480), 1, + anon_sym_RPAREN, + [265009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24482), 1, + anon_sym_RPAREN, + [265016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24484), 1, + anon_sym_COLON, + [265023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24486), 1, + anon_sym_COLON, + [265030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24488), 1, + anon_sym_COLON, + [265037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24490), 1, + anon_sym_COLON, + [265044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24492), 1, + anon_sym_COLON, + [265051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24494), 1, + sym_identifier, + [265058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24496), 1, + anon_sym_COLON, + [265065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24498), 1, + anon_sym_RPAREN, + [265072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24500), 1, + anon_sym_RPAREN, + [265079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24502), 1, + sym_identifier, + [265086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24504), 1, + sym_identifier, + [265093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24506), 1, + anon_sym_COLON, + [265100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24508), 1, + sym_identifier, + [265107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24510), 1, + sym_identifier, + [265114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24512), 1, + sym_identifier, + [265121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24514), 1, + anon_sym_COLON, + [265128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24516), 1, + anon_sym_COLON, + [265135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24518), 1, + anon_sym_COLON, + [265142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24520), 1, + anon_sym_COLON, + [265149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24522), 1, + anon_sym_COLON, + [265156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24524), 1, + anon_sym_COLON, + [265163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24526), 1, + sym_identifier, + [265170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24528), 1, + anon_sym_COLON, + [265177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24530), 1, + anon_sym_COLON, + [265184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24532), 1, + anon_sym_COLON, + [265191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24534), 1, + anon_sym_COLON, + [265198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24536), 1, + anon_sym_COLON, + [265205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24538), 1, + sym_identifier, + [265212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24540), 1, + anon_sym_COLON, + [265219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24542), 1, + sym_identifier, + [265226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24544), 1, + anon_sym_COLON, + [265233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24546), 1, + anon_sym_COLON, + [265240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24548), 1, + anon_sym_COLON, + [265247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24550), 1, + anon_sym_COLON, + [265254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24552), 1, + anon_sym_COLON, + [265261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24554), 1, + anon_sym_COLON, + [265268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24556), 1, + anon_sym_COLON, + [265275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24558), 1, + sym_identifier, + [265282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24560), 1, + anon_sym_COLON, + [265289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24562), 1, + anon_sym_COLON, + [265296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24564), 1, + anon_sym_COLON, + [265303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24566), 1, + anon_sym_COLON, + [265310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24568), 1, + anon_sym_COLON, + [265317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24570), 1, + anon_sym_COLON, + [265324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24572), 1, + anon_sym_COLON, + [265331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24574), 1, + sym_identifier, + [265338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24576), 1, + anon_sym_COLON, + [265345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24578), 1, + sym_identifier, + [265352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8347), 1, + anon_sym_SEMI, + [265359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24580), 1, + anon_sym_COLON, + [265366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24582), 1, + sym_identifier, + [265373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24584), 1, + anon_sym_COLON, + [265380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24586), 1, + anon_sym_COLON, + [265387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24588), 1, + anon_sym_COLON, + [265394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24590), 1, + anon_sym_COLON, + [265401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24592), 1, + anon_sym_COLON, + [265408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24594), 1, + anon_sym_COLON, + [265415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24596), 1, + sym_identifier, + [265422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24598), 1, + anon_sym_COLON, + [265429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24600), 1, + anon_sym_COLON, + [265436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24602), 1, + anon_sym_COLON, + [265443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24604), 1, + anon_sym_SEMI, + [265450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24606), 1, + sym_identifier, + [265457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24608), 1, + anon_sym_COLON, + [265464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24610), 1, + anon_sym_COLON, + [265471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24612), 1, + sym_identifier, + [265478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24614), 1, + anon_sym_COLON, + [265485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24616), 1, + anon_sym_COLON, + [265492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24618), 1, + anon_sym_COLON, + [265499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24620), 1, + anon_sym_COLON, + [265506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24622), 1, + anon_sym_COLON, + [265513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24624), 1, + anon_sym_COLON, + [265520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24626), 1, + anon_sym_COLON, + [265527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24628), 1, + anon_sym_COLON, + [265534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24630), 1, + anon_sym_COLON, + [265541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24632), 1, + anon_sym_COLON, + [265548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24634), 1, + anon_sym_COLON, + [265555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23616), 1, + sym_identifier, + [265562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24636), 1, + anon_sym_COLON, + [265569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24638), 1, + anon_sym_COLON, + [265576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24640), 1, + anon_sym_COLON, + [265583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24642), 1, + anon_sym_COLON, + [265590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24644), 1, + anon_sym_COLON, + [265597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24646), 1, + anon_sym_COLON, + [265604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24648), 1, + anon_sym_COLON, + [265611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24650), 1, + anon_sym_COLON, + [265618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24652), 1, + sym_identifier, + [265625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24654), 1, + anon_sym_COLON, + [265632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24656), 1, + anon_sym_COLON, + [265639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24658), 1, + anon_sym_COLON, + [265646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24660), 1, + anon_sym_COLON, + [265653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24662), 1, + anon_sym_COLON, + [265660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24664), 1, + anon_sym_COLON, + [265667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23762), 1, + sym_identifier, + [265674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24666), 1, + anon_sym_COLON, + [265681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24668), 1, + sym_identifier, + [265688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24670), 1, + anon_sym_COLON, + [265695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24672), 1, + anon_sym_RPAREN, + [265702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24674), 1, + anon_sym_RPAREN, + [265709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24676), 1, + sym_identifier, + [265716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24678), 1, + anon_sym_COLON, + [265723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24680), 1, + anon_sym_COLON, + [265730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24682), 1, + sym_identifier, + [265737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24684), 1, + anon_sym_COLON, + [265744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24686), 1, + anon_sym_COLON, + [265751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24688), 1, + sym_identifier, + [265758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24690), 1, + sym_identifier, + [265765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24692), 1, + sym_identifier, + [265772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24694), 1, + anon_sym_COLON, + [265779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8527), 1, + anon_sym_SEMI, + [265786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24696), 1, + anon_sym_COLON, + [265793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24698), 1, + anon_sym_COLON, + [265800] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24700), 1, + anon_sym_COLON, + [265807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24702), 1, + anon_sym_COLON, + [265814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24704), 1, + anon_sym_COLON, + [265821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24706), 1, + anon_sym_COLON, + [265828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24708), 1, + anon_sym_SEMI, + [265835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24710), 1, + sym_identifier, + [265842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24712), 1, + anon_sym_COLON, + [265849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24714), 1, + anon_sym_COLON, + [265856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24716), 1, + anon_sym_COLON, + [265863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24718), 1, + anon_sym_COLON, + [265870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23304), 1, + sym_identifier, + [265877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24720), 1, + anon_sym_COLON, + [265884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24722), 1, + anon_sym_COLON, + [265891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24724), 1, + anon_sym_COLON, + [265898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24726), 1, + anon_sym_COLON, + [265905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23310), 1, + sym_identifier, + [265912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24728), 1, + anon_sym_COLON, + [265919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24730), 1, + anon_sym_COLON, + [265926] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24732), 1, + sym_identifier, + [265933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24734), 1, + sym_identifier, + [265940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24736), 1, + sym_identifier, + [265947] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24738), 1, + anon_sym_COLON, + [265954] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24740), 1, + anon_sym_COLON, + [265961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24742), 1, + sym_identifier, + [265968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24744), 1, + sym_identifier, + [265975] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23322), 1, + sym_identifier, + [265982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24746), 1, + sym_identifier, + [265989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24748), 1, + sym_identifier, + [265996] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24750), 1, + anon_sym_COLON, + [266003] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24752), 1, + sym_identifier, + [266010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24754), 1, + sym_identifier, + [266017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24756), 1, + sym_identifier, + [266024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24758), 1, + sym_identifier, + [266031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24760), 1, + sym_identifier, + [266038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24762), 1, + sym_identifier, + [266045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24764), 1, + sym_identifier, + [266052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24766), 1, + anon_sym_COLON, + [266059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23792), 1, + sym_identifier, + [266066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24768), 1, + anon_sym_COLON, + [266073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24770), 1, + anon_sym_COLON, + [266080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24772), 1, + anon_sym_COLON, + [266087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24774), 1, + anon_sym_COLON, + [266094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24776), 1, + anon_sym_COLON, + [266101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24778), 1, + anon_sym_COLON, + [266108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24780), 1, + anon_sym_COLON, + [266115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24782), 1, + anon_sym_COLON, + [266122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24784), 1, + anon_sym_COLON, + [266129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24786), 1, + anon_sym_COLON, + [266136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24788), 1, + anon_sym_COLON, + [266143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24790), 1, + anon_sym_COLON, + [266150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24792), 1, + anon_sym_COLON, + [266157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24794), 1, + anon_sym_COLON, + [266164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24796), 1, + anon_sym_COLON, + [266171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24798), 1, + anon_sym_COLON, + [266178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24800), 1, + anon_sym_COLON, + [266185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24802), 1, + anon_sym_COLON, + [266192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24804), 1, + sym_identifier, + [266199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24806), 1, + anon_sym_COLON, + [266206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24808), 1, + anon_sym_COLON, + [266213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24810), 1, + anon_sym_COLON, + [266220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24812), 1, + anon_sym_COLON, + [266227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24814), 1, + anon_sym_COLON, + [266234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24816), 1, + anon_sym_COLON, + [266241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24818), 1, + anon_sym_COLON, + [266248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24820), 1, + anon_sym_COLON, + [266255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24822), 1, + anon_sym_COLON, + [266262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24824), 1, + anon_sym_COLON, + [266269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24826), 1, + anon_sym_COLON, + [266276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24828), 1, + anon_sym_COLON, + [266283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24830), 1, + anon_sym_COLON, + [266290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24832), 1, + anon_sym_COLON, + [266297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24834), 1, + anon_sym_COLON, + [266304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24836), 1, + anon_sym_COLON, + [266311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24838), 1, + anon_sym_COLON, + [266318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24840), 1, + anon_sym_COLON, + [266325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24842), 1, + anon_sym_COLON, + [266332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24844), 1, + anon_sym_COLON, + [266339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24846), 1, + anon_sym_COLON, + [266346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24848), 1, + anon_sym_COLON, + [266353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24850), 1, + anon_sym_COLON, + [266360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24852), 1, + anon_sym_COLON, + [266367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24854), 1, + anon_sym_COLON, + [266374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24856), 1, + anon_sym_COLON, + [266381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24858), 1, + anon_sym_COLON, + [266388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24860), 1, + anon_sym_COLON, + [266395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24862), 1, + anon_sym_COLON, + [266402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24864), 1, + anon_sym_COLON, + [266409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24866), 1, + anon_sym_COLON, + [266416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24868), 1, + anon_sym_COLON, + [266423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24870), 1, + anon_sym_COLON, + [266430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24872), 1, + anon_sym_COLON, + [266437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24874), 1, + anon_sym_COLON, + [266444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24876), 1, + anon_sym_COLON, + [266451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24878), 1, + anon_sym_COLON, + [266458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24880), 1, + anon_sym_COLON, + [266465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24882), 1, + anon_sym_COLON, + [266472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24884), 1, + anon_sym_COLON, + [266479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24886), 1, + anon_sym_COLON, + [266486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24888), 1, + anon_sym_COLON, + [266493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24890), 1, + anon_sym_COLON, + [266500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24892), 1, + anon_sym_COLON, + [266507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24894), 1, + anon_sym_COLON, + [266514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24896), 1, + anon_sym_COLON, + [266521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24898), 1, + anon_sym_COLON, + [266528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24900), 1, + anon_sym_COLON, + [266535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24902), 1, + anon_sym_COLON, + [266542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24904), 1, + anon_sym_COLON, + [266549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24906), 1, + anon_sym_COLON, + [266556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24908), 1, + anon_sym_COLON, + [266563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24910), 1, + anon_sym_COLON, + [266570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24912), 1, + anon_sym_COLON, + [266577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24914), 1, + anon_sym_COLON, + [266584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24916), 1, + anon_sym_COLON, + [266591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24918), 1, + anon_sym_COLON, + [266598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24920), 1, + anon_sym_COLON, + [266605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24922), 1, + anon_sym_COLON, + [266612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24924), 1, + anon_sym_COLON, + [266619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24926), 1, + anon_sym_COLON, + [266626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24928), 1, + anon_sym_COLON, + [266633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24930), 1, + anon_sym_COLON, + [266640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24932), 1, + anon_sym_COLON, + [266647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24934), 1, + anon_sym_COLON, + [266654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24936), 1, + anon_sym_COLON, + [266661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24938), 1, + anon_sym_COLON, + [266668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24940), 1, + anon_sym_COLON, + [266675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24942), 1, + anon_sym_COLON, + [266682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24944), 1, + anon_sym_COLON, + [266689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24946), 1, + anon_sym_COLON, + [266696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24948), 1, + anon_sym_COLON, + [266703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24950), 1, + anon_sym_COLON, + [266710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24952), 1, + anon_sym_COLON, + [266717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24954), 1, + anon_sym_COLON, + [266724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24956), 1, + anon_sym_COLON, + [266731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24958), 1, + anon_sym_COLON, + [266738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24960), 1, + anon_sym_COLON, + [266745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24962), 1, + anon_sym_COLON, + [266752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24964), 1, + anon_sym_COLON, + [266759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24966), 1, + anon_sym_COLON, + [266766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24968), 1, + anon_sym_COLON, + [266773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24970), 1, + anon_sym_COLON, + [266780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24972), 1, + anon_sym_COLON, + [266787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24974), 1, + anon_sym_COLON, + [266794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24976), 1, + anon_sym_COLON, + [266801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24978), 1, + anon_sym_COLON, + [266808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24980), 1, + anon_sym_COLON, + [266815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24982), 1, + anon_sym_COLON, + [266822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24984), 1, + anon_sym_COLON, + [266829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24986), 1, + anon_sym_COLON, + [266836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24988), 1, + anon_sym_COLON, + [266843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24990), 1, + anon_sym_COLON, + [266850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24992), 1, + anon_sym_COLON, + [266857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24994), 1, + sym_identifier, + [266864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24996), 1, + sym_identifier, + [266871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(24998), 1, + anon_sym_COLON, + [266878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25000), 1, + anon_sym_COLON, + [266885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25002), 1, + anon_sym_COLON, + [266892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25004), 1, + anon_sym_COLON, + [266899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25006), 1, + anon_sym_COLON, + [266906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25008), 1, + anon_sym_COLON, + [266913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25010), 1, + anon_sym_COLON, + [266920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25012), 1, + sym_identifier, + [266927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25014), 1, + sym_identifier, + [266934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25016), 1, + sym_identifier, + [266941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25018), 1, + sym_identifier, + [266948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25020), 1, + sym_identifier, + [266955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25022), 1, + sym_identifier, + [266962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25024), 1, + sym_identifier, + [266969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25026), 1, + sym_identifier, + [266976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25028), 1, + sym_identifier, + [266983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25030), 1, + sym_identifier, + [266990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25032), 1, + anon_sym_RPAREN, + [266997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25034), 1, + anon_sym_COLON, + [267004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25036), 1, + anon_sym_RPAREN, + [267011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8497), 1, + anon_sym_SEMI, + [267018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25038), 1, + sym_identifier, + [267025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25040), 1, + anon_sym_RPAREN, + [267032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25042), 1, + anon_sym_RPAREN, + [267039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25044), 1, + anon_sym_SEMI, + [267046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25046), 1, + anon_sym_COLON, + [267053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25048), 1, + sym_identifier, + [267060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25050), 1, + anon_sym_COLON, + [267067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23460), 1, + sym_identifier, + [267074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25052), 1, + anon_sym_COLON, + [267081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25054), 1, + anon_sym_COLON, + [267088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25056), 1, + anon_sym_COLON, + [267095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25058), 1, + anon_sym_COLON, + [267102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23468), 1, + sym_identifier, + [267109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25060), 1, + anon_sym_COLON, + [267116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25062), 1, + anon_sym_COLON, + [267123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25064), 1, + sym_identifier, + [267130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25066), 1, + sym_identifier, + [267137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25068), 1, + anon_sym_COLON, + [267144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25070), 1, + anon_sym_COLON, + [267151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25072), 1, + sym_identifier, + [267158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25074), 1, + sym_identifier, + [267165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25076), 1, + sym_identifier, + [267172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23480), 1, + sym_identifier, + [267179] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25078), 1, + anon_sym_COLON, + [267186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25080), 1, + sym_identifier, + [267193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25082), 1, + sym_identifier, + [267200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25084), 1, + sym_identifier, + [267207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25086), 1, + sym_identifier, + [267214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25088), 1, + sym_identifier, + [267221] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25090), 1, + sym_identifier, + [267228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25092), 1, + sym_identifier, + [267235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25094), 1, + sym_identifier, + [267242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25096), 1, + sym_identifier, + [267249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25098), 1, + anon_sym_COLON, + [267256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25100), 1, + sym_identifier, + [267263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25102), 1, + anon_sym_COLON, + [267270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25104), 1, + anon_sym_COLON, + [267277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25106), 1, + anon_sym_COLON, + [267284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25108), 1, + anon_sym_COLON, + [267291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25110), 1, + sym_identifier, + [267298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25112), 1, + sym_identifier, + [267305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25114), 1, + anon_sym_COLON, + [267312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25116), 1, + sym_identifier, + [267319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25118), 1, + sym_identifier, + [267326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25120), 1, + anon_sym_COLON, + [267333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25122), 1, + anon_sym_COLON, + [267340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25124), 1, + anon_sym_COLON, + [267347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25126), 1, + anon_sym_COLON, + [267354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25128), 1, + anon_sym_COLON, + [267361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25130), 1, + anon_sym_COLON, + [267368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25132), 1, + anon_sym_COLON, + [267375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25134), 1, + sym_identifier, + [267382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25136), 1, + anon_sym_COLON, + [267389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25138), 1, + sym_identifier, + [267396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25140), 1, + anon_sym_COLON, + [267403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25142), 1, + anon_sym_COLON, + [267410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25144), 1, + anon_sym_COLON, + [267417] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25146), 1, + anon_sym_COLON, + [267424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25148), 1, + anon_sym_COLON, + [267431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25150), 1, + anon_sym_COLON, + [267438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25152), 1, + anon_sym_COLON, + [267445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25154), 1, + anon_sym_COLON, + [267452] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25156), 1, + anon_sym_COLON, + [267459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25158), 1, + anon_sym_COLON, + [267466] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7996), 1, + anon_sym_SEMI, + [267473] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25160), 1, + anon_sym_COLON, + [267480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25162), 1, + anon_sym_COLON, + [267487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25164), 1, + anon_sym_COLON, + [267494] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25166), 1, + anon_sym_SEMI, + [267501] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25168), 1, + sym_identifier, + [267508] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25170), 1, + anon_sym_COLON, + [267515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25172), 1, + anon_sym_COLON, + [267522] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23546), 1, + sym_identifier, + [267529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25174), 1, + sym_identifier, + [267536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25176), 1, + anon_sym_COLON, + [267543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25178), 1, + sym_identifier, + [267550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25180), 1, + anon_sym_COLON, + [267557] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23556), 1, + sym_identifier, + [267564] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25182), 1, + anon_sym_COLON, + [267571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25184), 1, + sym_identifier, + [267578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25186), 1, + sym_identifier, + [267585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25188), 1, + sym_identifier, + [267592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23534), 1, + sym_identifier, + [267599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25190), 1, + anon_sym_COLON, + [267606] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25192), 1, + anon_sym_COLON, + [267613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25194), 1, + sym_identifier, + [267620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25196), 1, + sym_identifier, + [267627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23572), 1, + sym_identifier, + [267634] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25198), 1, + anon_sym_COLON, + [267641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25200), 1, + sym_identifier, + [267648] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25202), 1, + anon_sym_COLON, + [267655] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25204), 1, + sym_identifier, + [267662] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25206), 1, + sym_identifier, + [267669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25208), 1, + sym_identifier, + [267676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25210), 1, + sym_identifier, + [267683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25212), 1, + sym_identifier, + [267690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25214), 1, + sym_identifier, + [267697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25216), 1, + sym_identifier, + [267704] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25218), 1, + anon_sym_COLON, + [267711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25220), 1, + sym_identifier, + [267718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25222), 1, + anon_sym_COLON, + [267725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25224), 1, + anon_sym_COLON, + [267732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25226), 1, + anon_sym_COLON, + [267739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25228), 1, + anon_sym_COLON, + [267746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25230), 1, + anon_sym_COLON, + [267753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25232), 1, + anon_sym_COLON, + [267760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25234), 1, + anon_sym_COLON, + [267767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25236), 1, + anon_sym_COLON, + [267774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25238), 1, + anon_sym_COLON, + [267781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25240), 1, + anon_sym_COLON, + [267788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25242), 1, + anon_sym_COLON, + [267795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25244), 1, + anon_sym_COLON, + [267802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8443), 1, + anon_sym_SEMI, + [267809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25246), 1, + anon_sym_COLON, + [267816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25248), 1, + anon_sym_COLON, + [267823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25250), 1, + anon_sym_COLON, + [267830] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25252), 1, + anon_sym_SEMI, + [267837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25254), 1, + anon_sym_COLON, + [267844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25256), 1, + sym_identifier, + [267851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25258), 1, + sym_identifier, + [267858] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23600), 1, + sym_identifier, + [267865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25260), 1, + anon_sym_COLON, + [267872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25262), 1, + anon_sym_COLON, + [267879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25264), 1, + anon_sym_COLON, + [267886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25266), 1, + sym_identifier, + [267893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23608), 1, + sym_identifier, + [267900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25268), 1, + anon_sym_COLON, + [267907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25270), 1, + anon_sym_COLON, + [267914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25272), 1, + sym_identifier, + [267921] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25274), 1, + sym_identifier, + [267928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25276), 1, + anon_sym_COLON, + [267935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25278), 1, + anon_sym_COLON, + [267942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25280), 1, + anon_sym_COLON, + [267949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25282), 1, + sym_identifier, + [267956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25284), 1, + sym_identifier, + [267963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23940), 1, + sym_identifier, + [267970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25286), 1, + anon_sym_COLON, + [267977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25288), 1, + sym_identifier, + [267984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25290), 1, + anon_sym_COLON, + [267991] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25292), 1, + sym_identifier, + [267998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25294), 1, + sym_identifier, + [268005] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25296), 1, + sym_identifier, + [268012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25298), 1, + sym_identifier, + [268019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25300), 1, + sym_identifier, + [268026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25302), 1, + sym_identifier, + [268033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25304), 1, + sym_identifier, + [268040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25306), 1, + anon_sym_COLON, + [268047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25308), 1, + sym_identifier, + [268054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8383), 1, + anon_sym_SEMI, + [268061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25310), 1, + anon_sym_COLON, + [268068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25312), 1, + anon_sym_COLON, + [268075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25314), 1, + anon_sym_COLON, + [268082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25316), 1, + anon_sym_SEMI, + [268089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25318), 1, + anon_sym_COLON, + [268096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25320), 1, + anon_sym_COLON, + [268103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25322), 1, + anon_sym_COLON, + [268110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23638), 1, + sym_identifier, + [268117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25324), 1, + anon_sym_COLON, + [268124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25326), 1, + sym_identifier, + [268131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25328), 1, + sym_identifier, + [268138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25330), 1, + anon_sym_COLON, + [268145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23642), 1, + sym_identifier, + [268152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25332), 1, + anon_sym_COLON, + [268159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25334), 1, + anon_sym_COLON, + [268166] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25336), 1, + sym_identifier, + [268173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25338), 1, + sym_identifier, + [268180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25340), 1, + anon_sym_COLON, + [268187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25342), 1, + anon_sym_COLON, + [268194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25344), 1, + anon_sym_COLON, + [268201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25346), 1, + sym_identifier, + [268208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25348), 1, + sym_identifier, + [268215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23654), 1, + sym_identifier, + [268222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25350), 1, + anon_sym_COLON, + [268229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25352), 1, + sym_identifier, + [268236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25354), 1, + anon_sym_COLON, + [268243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25356), 1, + sym_identifier, + [268250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25358), 1, + sym_identifier, + [268257] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25360), 1, + sym_identifier, + [268264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25362), 1, + sym_identifier, + [268271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25364), 1, + sym_identifier, + [268278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25366), 1, + sym_identifier, + [268285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25368), 1, + sym_identifier, + [268292] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25370), 1, + anon_sym_COLON, + [268299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25372), 1, + anon_sym_COLON, + [268306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym_SEMI, + [268313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25374), 1, + anon_sym_COLON, + [268320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25376), 1, + anon_sym_COLON, + [268327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25378), 1, + anon_sym_COLON, + [268334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25380), 1, + anon_sym_SEMI, + [268341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25382), 1, + anon_sym_PIPE, + [268348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25384), 1, + anon_sym_COLON, + [268355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25386), 1, + anon_sym_COLON, + [268362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23668), 1, + sym_identifier, + [268369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25388), 1, + anon_sym_COLON, + [268376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25390), 1, + anon_sym_COLON, + [268383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25392), 1, + anon_sym_COLON, + [268390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25394), 1, + anon_sym_COLON, + [268397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23672), 1, + sym_identifier, + [268404] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25396), 1, + anon_sym_COLON, + [268411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25398), 1, + anon_sym_COLON, + [268418] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25400), 1, + sym_identifier, + [268425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25402), 1, + sym_identifier, + [268432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25404), 1, + anon_sym_COLON, + [268439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25406), 1, + anon_sym_COLON, + [268446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25408), 1, + anon_sym_COLON, + [268453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25410), 1, + sym_identifier, + [268460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25412), 1, + sym_identifier, + [268467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23680), 1, + sym_identifier, + [268474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25414), 1, + anon_sym_COLON, + [268481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25416), 1, + sym_identifier, + [268488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25418), 1, + anon_sym_COLON, + [268495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25420), 1, + sym_identifier, + [268502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25422), 1, + sym_identifier, + [268509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25424), 1, + sym_identifier, + [268516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25426), 1, + sym_identifier, + [268523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25428), 1, + sym_identifier, + [268530] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25430), 1, + sym_identifier, + [268537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25432), 1, + sym_identifier, + [268544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25434), 1, + anon_sym_COLON, + [268551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25436), 1, + sym_identifier, + [268558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8429), 1, + anon_sym_SEMI, + [268565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25438), 1, + anon_sym_COLON, + [268572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25440), 1, + anon_sym_COLON, + [268579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25442), 1, + sym_identifier, + [268586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25444), 1, + anon_sym_SEMI, + [268593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25446), 1, + anon_sym_COLON, + [268600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25448), 1, + anon_sym_COLON, + [268607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8455), 1, + anon_sym_SEMI, + [268614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23700), 1, + sym_identifier, + [268621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23932), 1, + sym_identifier, + [268628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25450), 1, + anon_sym_COLON, + [268635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25452), 1, + anon_sym_COLON, + [268642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25454), 1, + anon_sym_COLON, + [268649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23706), 1, + sym_identifier, + [268656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25456), 1, + anon_sym_COLON, + [268663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25458), 1, + anon_sym_COLON, + [268670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25460), 1, + sym_identifier, + [268677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25462), 1, + sym_identifier, + [268684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25464), 1, + anon_sym_COLON, + [268691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25466), 1, + anon_sym_COLON, + [268698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25468), 1, + anon_sym_COLON, + [268705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25470), 1, + sym_identifier, + [268712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25472), 1, + sym_identifier, + [268719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23716), 1, + sym_identifier, + [268726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25474), 1, + sym_identifier, + [268733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25476), 1, + sym_identifier, + [268740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25478), 1, + anon_sym_COLON, + [268747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25480), 1, + sym_identifier, + [268754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25482), 1, + sym_identifier, + [268761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25484), 1, + sym_identifier, + [268768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25486), 1, + sym_identifier, + [268775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25488), 1, + sym_identifier, + [268782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25490), 1, + sym_identifier, + [268789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25492), 1, + sym_identifier, + [268796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25494), 1, + anon_sym_COLON, + [268803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8034), 1, + anon_sym_SEMI, + [268810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25496), 1, + sym_identifier, + [268817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25498), 1, + anon_sym_COLON, + [268824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25500), 1, + anon_sym_COLON, + [268831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25502), 1, + anon_sym_SEMI, + [268838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25504), 1, + anon_sym_COLON, + [268845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25506), 1, + anon_sym_COLON, + [268852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25508), 1, + anon_sym_COLON, + [268859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23732), 1, + sym_identifier, + [268866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25510), 1, + anon_sym_COLON, + [268873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25512), 1, + sym_identifier, + [268880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25514), 1, + sym_identifier, + [268887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25516), 1, + sym_identifier, + [268894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23736), 1, + sym_identifier, + [268901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25518), 1, + sym_identifier, + [268908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25520), 1, + anon_sym_COLON, + [268915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25522), 1, + sym_identifier, + [268922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25524), 1, + sym_identifier, + [268929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25526), 1, + anon_sym_COLON, + [268936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25528), 1, + anon_sym_COLON, + [268943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25530), 1, + anon_sym_COLON, + [268950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25532), 1, + sym_identifier, + [268957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25534), 1, + sym_identifier, + [268964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23748), 1, + sym_identifier, + [268971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25536), 1, + anon_sym_COLON, + [268978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25538), 1, + sym_identifier, + [268985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25540), 1, + anon_sym_COLON, + [268992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25542), 1, + sym_identifier, + [268999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25544), 1, + sym_identifier, + [269006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25546), 1, + sym_identifier, + [269013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25548), 1, + sym_identifier, + [269020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25550), 1, + sym_identifier, + [269027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25552), 1, + sym_identifier, + [269034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25554), 1, + sym_identifier, + [269041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8136), 1, + anon_sym_SEMI, + [269048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25556), 1, + anon_sym_COLON, + [269055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25558), 1, + anon_sym_COLON, + [269062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25560), 1, + anon_sym_SEMI, + [269069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8084), 1, + anon_sym_SEMI, + [269076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25562), 1, + anon_sym_COLON, + [269083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25564), 1, + anon_sym_SEMI, + [269090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25566), 1, + anon_sym_COLON, + [269097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25568), 1, + anon_sym_COLON, + [269104] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25570), 1, + anon_sym_COLON, + [269111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25572), 1, + anon_sym_COLON, + [269118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25574), 1, + anon_sym_COLON, + [269125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25576), 1, + anon_sym_COLON, + [269132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25578), 1, + anon_sym_COLON, + [269139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25580), 1, + anon_sym_COLON, + [269146] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25582), 1, + anon_sym_COLON, + [269153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25584), 1, + anon_sym_COLON, + [269160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25586), 1, + anon_sym_COLON, + [269167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25588), 1, + anon_sym_COLON, + [269174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25590), 1, + anon_sym_COLON, + [269181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25592), 1, + anon_sym_COLON, + [269188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25594), 1, + anon_sym_COLON, + [269195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25596), 1, + anon_sym_COLON, + [269202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25598), 1, + anon_sym_COLON, + [269209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25600), 1, + anon_sym_COLON, + [269216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25602), 1, + anon_sym_COLON, + [269223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25604), 1, + anon_sym_COLON, + [269230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25606), 1, + anon_sym_COLON, + [269237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25608), 1, + sym_identifier, + [269244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25610), 1, + anon_sym_COLON, + [269251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25612), 1, + anon_sym_COLON, + [269258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25614), 1, + anon_sym_COLON, + [269265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25616), 1, + anon_sym_COLON, + [269272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25618), 1, + anon_sym_COLON, + [269279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23786), 1, + sym_identifier, + [269286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25620), 1, + sym_identifier, + [269293] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25622), 1, + sym_identifier, + [269300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25624), 1, + anon_sym_COLON, + [269307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25626), 1, + anon_sym_COLON, + [269314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25628), 1, + anon_sym_COLON, + [269321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25630), 1, + anon_sym_COLON, + [269328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25632), 1, + anon_sym_COLON, + [269335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25634), 1, + anon_sym_COLON, + [269342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25636), 1, + anon_sym_COLON, + [269349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25638), 1, + anon_sym_COLON, + [269356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25640), 1, + anon_sym_COLON, + [269363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25642), 1, + anon_sym_COLON, + [269370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25644), 1, + anon_sym_COLON, + [269377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25646), 1, + sym_identifier, + [269384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25648), 1, + sym_identifier, + [269391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25650), 1, + sym_identifier, + [269398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25652), 1, + sym_identifier, + [269405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25654), 1, + sym_identifier, + [269412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25656), 1, + sym_identifier, + [269419] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25658), 1, + anon_sym_COLON, + [269426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25660), 1, + anon_sym_COLON, + [269433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25662), 1, + sym_identifier, + [269440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25664), 1, + anon_sym_COLON, + [269447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25666), 1, + anon_sym_COLON, + [269454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25668), 1, + sym_identifier, + [269461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25670), 1, + anon_sym_COLON, + [269468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25672), 1, + sym_identifier, + [269475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25674), 1, + anon_sym_COLON, + [269482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25676), 1, + anon_sym_RPAREN, + [269489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25678), 1, + anon_sym_COLON, + [269496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25680), 1, + anon_sym_COLON, + [269503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25682), 1, + sym_identifier, + [269510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25684), 1, + anon_sym_COLON, + [269517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25686), 1, + sym_identifier, + [269524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25688), 1, + anon_sym_COLON, + [269531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25690), 1, + anon_sym_COLON, + [269538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25692), 1, + anon_sym_COLON, + [269545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25694), 1, + anon_sym_COLON, + [269552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25696), 1, + sym_identifier, + [269559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25698), 1, + anon_sym_COLON, + [269566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25700), 1, + anon_sym_COLON, + [269573] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25702), 1, + anon_sym_COLON, + [269580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25704), 1, + anon_sym_COLON, + [269587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25706), 1, + sym_identifier, + [269594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25708), 1, + anon_sym_COLON, + [269601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25710), 1, + anon_sym_COLON, + [269608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25712), 1, + anon_sym_COLON, + [269615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25714), 1, + anon_sym_COLON, + [269622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25716), 1, + anon_sym_COLON, + [269629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25718), 1, + sym_identifier, + [269636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25720), 1, + anon_sym_COLON, + [269643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25722), 1, + anon_sym_COLON, + [269650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25724), 1, + anon_sym_COLON, + [269657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25726), 1, + sym_identifier, + [269664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25728), 1, + sym_identifier, + [269671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25730), 1, + anon_sym_COLON, + [269678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25732), 1, + anon_sym_COLON, + [269685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25734), 1, + anon_sym_COLON, + [269692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25736), 1, + anon_sym_COLON, + [269699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25738), 1, + anon_sym_COLON, + [269706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25740), 1, + anon_sym_COLON, + [269713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25742), 1, + anon_sym_COLON, + [269720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25744), 1, + anon_sym_COLON, + [269727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25746), 1, + anon_sym_COLON, + [269734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25748), 1, + anon_sym_COLON, + [269741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25750), 1, + anon_sym_COLON, + [269748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25752), 1, + anon_sym_COLON, + [269755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25754), 1, + anon_sym_COLON, + [269762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25756), 1, + anon_sym_COLON, + [269769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25758), 1, + anon_sym_COLON, + [269776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25760), 1, + anon_sym_COLON, + [269783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25762), 1, + anon_sym_COLON, + [269790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25764), 1, + anon_sym_COLON, + [269797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25766), 1, + anon_sym_COLON, + [269804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25768), 1, + anon_sym_COLON, + [269811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25770), 1, + anon_sym_COLON, + [269818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25772), 1, + anon_sym_COLON, + [269825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25774), 1, + anon_sym_COLON, + [269832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25776), 1, + sym_integer, + [269839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25778), 1, + sym_identifier, + [269846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25780), 1, + anon_sym_COLON, + [269853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25782), 1, + anon_sym_COLON, + [269860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25784), 1, + anon_sym_COLON, + [269867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25786), 1, + anon_sym_COLON, + [269874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25788), 1, + anon_sym_COLON, + [269881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25790), 1, + anon_sym_COLON, + [269888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25792), 1, + anon_sym_COLON, + [269895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25794), 1, + anon_sym_COLON, + [269902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25796), 1, + anon_sym_COLON, + [269909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25798), 1, + anon_sym_COLON, + [269916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25800), 1, + sym_identifier, + [269923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25802), 1, + anon_sym_COLON, + [269930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25804), 1, + anon_sym_COLON, + [269937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25806), 1, + anon_sym_COLON, + [269944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25808), 1, + anon_sym_COLON, + [269951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25810), 1, + anon_sym_COLON, + [269958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25812), 1, + anon_sym_COLON, + [269965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25814), 1, + anon_sym_COLON, + [269972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25816), 1, + anon_sym_COLON, + [269979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25818), 1, + anon_sym_COLON, + [269986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25820), 1, + anon_sym_COLON, + [269993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25822), 1, + sym_identifier, + [270000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25824), 1, + sym_identifier, + [270007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25826), 1, + anon_sym_COLON, + [270014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25828), 1, + sym_identifier, + [270021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25830), 1, + anon_sym_COLON, + [270028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25832), 1, + anon_sym_COLON, + [270035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25834), 1, + anon_sym_COLON, + [270042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25836), 1, + sym_identifier, + [270049] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25838), 1, + anon_sym_COLON, + [270056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25840), 1, + sym_identifier, + [270063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25842), 1, + anon_sym_COLON, + [270070] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25844), 1, + anon_sym_COLON, + [270077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25846), 1, + sym_identifier, + [270084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25848), 1, + anon_sym_COLON, + [270091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25850), 1, + anon_sym_COLON, + [270098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25852), 1, + sym_identifier, + [270105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25854), 1, + anon_sym_COLON, + [270112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23704), 1, + anon_sym_for, + [270119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25856), 1, + anon_sym_COLON, + [270126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25858), 1, + anon_sym_COLON, + [270133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25860), 1, + anon_sym_COLON, + [270140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25862), 1, + anon_sym_COLON, + [270147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25864), 1, + anon_sym_COLON, + [270154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25866), 1, + anon_sym_COLON, + [270161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25868), 1, + anon_sym_COLON, + [270168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25870), 1, + anon_sym_COLON, + [270175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25872), 1, + anon_sym_COLON, + [270182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25874), 1, + anon_sym_COLON, + [270189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25876), 1, + anon_sym_COLON, + [270196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25878), 1, + anon_sym_COLON, + [270203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25880), 1, + anon_sym_PIPE, + [270210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25882), 1, + anon_sym_COLON, + [270217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25884), 1, + anon_sym_COLON, + [270224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25886), 1, + anon_sym_COLON, + [270231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25888), 1, + anon_sym_COLON, + [270238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25890), 1, + anon_sym_COLON, + [270245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25892), 1, + anon_sym_COLON, + [270252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25894), 1, + anon_sym_COLON, + [270259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25896), 1, + anon_sym_COLON, + [270266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25898), 1, + anon_sym_COLON, + [270273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25900), 1, + anon_sym_COLON, + [270280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25902), 1, + anon_sym_COLON, + [270287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25904), 1, + anon_sym_COLON, + [270294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25906), 1, + anon_sym_COLON, + [270301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25908), 1, + anon_sym_COLON, + [270308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25910), 1, + anon_sym_COLON, + [270315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25912), 1, + anon_sym_COLON, + [270322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25914), 1, + anon_sym_COLON, + [270329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25916), 1, + anon_sym_COLON, + [270336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25918), 1, + anon_sym_COLON, + [270343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25920), 1, + anon_sym_COLON, + [270350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25922), 1, + anon_sym_COLON, + [270357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25924), 1, + anon_sym_for, + [270364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25926), 1, + anon_sym_for, + [270371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25928), 1, + anon_sym_for, + [270378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25930), 1, + anon_sym_for, + [270385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25932), 1, + anon_sym_for, + [270392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25934), 1, + anon_sym_for, + [270399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25936), 1, + anon_sym_for, + [270406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25938), 1, + anon_sym_for, + [270413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25940), 1, + anon_sym_for, + [270420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25942), 1, anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2413)] = 0, - [SMALL_STATE(2414)] = 71, - [SMALL_STATE(2415)] = 142, - [SMALL_STATE(2416)] = 213, - [SMALL_STATE(2417)] = 284, - [SMALL_STATE(2418)] = 355, - [SMALL_STATE(2419)] = 426, - [SMALL_STATE(2420)] = 497, - [SMALL_STATE(2421)] = 568, - [SMALL_STATE(2422)] = 662, - [SMALL_STATE(2423)] = 759, - [SMALL_STATE(2424)] = 856, - [SMALL_STATE(2425)] = 953, - [SMALL_STATE(2426)] = 1050, - [SMALL_STATE(2427)] = 1147, - [SMALL_STATE(2428)] = 1244, - [SMALL_STATE(2429)] = 1341, - [SMALL_STATE(2430)] = 1438, - [SMALL_STATE(2431)] = 1535, - [SMALL_STATE(2432)] = 1632, - [SMALL_STATE(2433)] = 1729, - [SMALL_STATE(2434)] = 1826, - [SMALL_STATE(2435)] = 1923, - [SMALL_STATE(2436)] = 2020, - [SMALL_STATE(2437)] = 2117, - [SMALL_STATE(2438)] = 2214, - [SMALL_STATE(2439)] = 2311, - [SMALL_STATE(2440)] = 2401, - [SMALL_STATE(2441)] = 2491, - [SMALL_STATE(2442)] = 2581, - [SMALL_STATE(2443)] = 2671, - [SMALL_STATE(2444)] = 2761, - [SMALL_STATE(2445)] = 2851, - [SMALL_STATE(2446)] = 2941, - [SMALL_STATE(2447)] = 3031, - [SMALL_STATE(2448)] = 3121, - [SMALL_STATE(2449)] = 3211, - [SMALL_STATE(2450)] = 3301, - [SMALL_STATE(2451)] = 3391, - [SMALL_STATE(2452)] = 3481, - [SMALL_STATE(2453)] = 3571, - [SMALL_STATE(2454)] = 3661, - [SMALL_STATE(2455)] = 3751, - [SMALL_STATE(2456)] = 3841, - [SMALL_STATE(2457)] = 3931, - [SMALL_STATE(2458)] = 4021, - [SMALL_STATE(2459)] = 4111, - [SMALL_STATE(2460)] = 4201, - [SMALL_STATE(2461)] = 4291, - [SMALL_STATE(2462)] = 4381, - [SMALL_STATE(2463)] = 4471, - [SMALL_STATE(2464)] = 4561, - [SMALL_STATE(2465)] = 4651, - [SMALL_STATE(2466)] = 4741, - [SMALL_STATE(2467)] = 4831, - [SMALL_STATE(2468)] = 4921, - [SMALL_STATE(2469)] = 5011, - [SMALL_STATE(2470)] = 5101, - [SMALL_STATE(2471)] = 5191, - [SMALL_STATE(2472)] = 5281, - [SMALL_STATE(2473)] = 5371, - [SMALL_STATE(2474)] = 5461, - [SMALL_STATE(2475)] = 5548, - [SMALL_STATE(2476)] = 5635, - [SMALL_STATE(2477)] = 5722, - [SMALL_STATE(2478)] = 5809, - [SMALL_STATE(2479)] = 5896, - [SMALL_STATE(2480)] = 5983, - [SMALL_STATE(2481)] = 6070, - [SMALL_STATE(2482)] = 6157, - [SMALL_STATE(2483)] = 6244, - [SMALL_STATE(2484)] = 6331, - [SMALL_STATE(2485)] = 6418, - [SMALL_STATE(2486)] = 6505, - [SMALL_STATE(2487)] = 6592, - [SMALL_STATE(2488)] = 6679, - [SMALL_STATE(2489)] = 6766, - [SMALL_STATE(2490)] = 6853, - [SMALL_STATE(2491)] = 6940, - [SMALL_STATE(2492)] = 7027, - [SMALL_STATE(2493)] = 7114, - [SMALL_STATE(2494)] = 7201, - [SMALL_STATE(2495)] = 7288, - [SMALL_STATE(2496)] = 7375, - [SMALL_STATE(2497)] = 7462, - [SMALL_STATE(2498)] = 7549, - [SMALL_STATE(2499)] = 7636, - [SMALL_STATE(2500)] = 7723, - [SMALL_STATE(2501)] = 7810, - [SMALL_STATE(2502)] = 7897, - [SMALL_STATE(2503)] = 7984, - [SMALL_STATE(2504)] = 8071, - [SMALL_STATE(2505)] = 8158, - [SMALL_STATE(2506)] = 8245, - [SMALL_STATE(2507)] = 8332, - [SMALL_STATE(2508)] = 8419, - [SMALL_STATE(2509)] = 8506, - [SMALL_STATE(2510)] = 8593, - [SMALL_STATE(2511)] = 8680, - [SMALL_STATE(2512)] = 8767, - [SMALL_STATE(2513)] = 8854, - [SMALL_STATE(2514)] = 8941, - [SMALL_STATE(2515)] = 9028, - [SMALL_STATE(2516)] = 9115, - [SMALL_STATE(2517)] = 9202, - [SMALL_STATE(2518)] = 9289, - [SMALL_STATE(2519)] = 9376, - [SMALL_STATE(2520)] = 9463, - [SMALL_STATE(2521)] = 9550, - [SMALL_STATE(2522)] = 9637, - [SMALL_STATE(2523)] = 9724, - [SMALL_STATE(2524)] = 9811, - [SMALL_STATE(2525)] = 9898, - [SMALL_STATE(2526)] = 9985, - [SMALL_STATE(2527)] = 10072, - [SMALL_STATE(2528)] = 10159, - [SMALL_STATE(2529)] = 10246, - [SMALL_STATE(2530)] = 10330, - [SMALL_STATE(2531)] = 10414, - [SMALL_STATE(2532)] = 10498, - [SMALL_STATE(2533)] = 10582, - [SMALL_STATE(2534)] = 10666, - [SMALL_STATE(2535)] = 10750, - [SMALL_STATE(2536)] = 10834, - [SMALL_STATE(2537)] = 10918, - [SMALL_STATE(2538)] = 11002, - [SMALL_STATE(2539)] = 11086, - [SMALL_STATE(2540)] = 11170, - [SMALL_STATE(2541)] = 11254, - [SMALL_STATE(2542)] = 11338, - [SMALL_STATE(2543)] = 11422, - [SMALL_STATE(2544)] = 11506, - [SMALL_STATE(2545)] = 11590, - [SMALL_STATE(2546)] = 11674, - [SMALL_STATE(2547)] = 11758, - [SMALL_STATE(2548)] = 11842, - [SMALL_STATE(2549)] = 11926, - [SMALL_STATE(2550)] = 12010, - [SMALL_STATE(2551)] = 12094, - [SMALL_STATE(2552)] = 12178, - [SMALL_STATE(2553)] = 12262, - [SMALL_STATE(2554)] = 12346, - [SMALL_STATE(2555)] = 12430, - [SMALL_STATE(2556)] = 12514, - [SMALL_STATE(2557)] = 12598, - [SMALL_STATE(2558)] = 12682, - [SMALL_STATE(2559)] = 12766, - [SMALL_STATE(2560)] = 12850, - [SMALL_STATE(2561)] = 12934, - [SMALL_STATE(2562)] = 13018, - [SMALL_STATE(2563)] = 13102, - [SMALL_STATE(2564)] = 13186, - [SMALL_STATE(2565)] = 13270, - [SMALL_STATE(2566)] = 13354, - [SMALL_STATE(2567)] = 13438, - [SMALL_STATE(2568)] = 13522, - [SMALL_STATE(2569)] = 13606, - [SMALL_STATE(2570)] = 13690, - [SMALL_STATE(2571)] = 13774, - [SMALL_STATE(2572)] = 13858, - [SMALL_STATE(2573)] = 13942, - [SMALL_STATE(2574)] = 14026, - [SMALL_STATE(2575)] = 14110, - [SMALL_STATE(2576)] = 14194, - [SMALL_STATE(2577)] = 14278, - [SMALL_STATE(2578)] = 14362, - [SMALL_STATE(2579)] = 14446, - [SMALL_STATE(2580)] = 14530, - [SMALL_STATE(2581)] = 14614, - [SMALL_STATE(2582)] = 14698, - [SMALL_STATE(2583)] = 14782, - [SMALL_STATE(2584)] = 14866, - [SMALL_STATE(2585)] = 14950, - [SMALL_STATE(2586)] = 15034, - [SMALL_STATE(2587)] = 15118, - [SMALL_STATE(2588)] = 15202, - [SMALL_STATE(2589)] = 15286, - [SMALL_STATE(2590)] = 15370, - [SMALL_STATE(2591)] = 15454, - [SMALL_STATE(2592)] = 15538, - [SMALL_STATE(2593)] = 15622, - [SMALL_STATE(2594)] = 15706, - [SMALL_STATE(2595)] = 15790, - [SMALL_STATE(2596)] = 15874, - [SMALL_STATE(2597)] = 15958, - [SMALL_STATE(2598)] = 16042, - [SMALL_STATE(2599)] = 16126, - [SMALL_STATE(2600)] = 16210, - [SMALL_STATE(2601)] = 16294, - [SMALL_STATE(2602)] = 16378, - [SMALL_STATE(2603)] = 16462, - [SMALL_STATE(2604)] = 16546, - [SMALL_STATE(2605)] = 16630, - [SMALL_STATE(2606)] = 16714, - [SMALL_STATE(2607)] = 16798, - [SMALL_STATE(2608)] = 16882, - [SMALL_STATE(2609)] = 16966, - [SMALL_STATE(2610)] = 17050, - [SMALL_STATE(2611)] = 17134, - [SMALL_STATE(2612)] = 17218, - [SMALL_STATE(2613)] = 17302, - [SMALL_STATE(2614)] = 17386, - [SMALL_STATE(2615)] = 17470, - [SMALL_STATE(2616)] = 17554, - [SMALL_STATE(2617)] = 17638, - [SMALL_STATE(2618)] = 17722, - [SMALL_STATE(2619)] = 17806, - [SMALL_STATE(2620)] = 17890, - [SMALL_STATE(2621)] = 17974, - [SMALL_STATE(2622)] = 18058, - [SMALL_STATE(2623)] = 18142, - [SMALL_STATE(2624)] = 18226, - [SMALL_STATE(2625)] = 18310, - [SMALL_STATE(2626)] = 18394, - [SMALL_STATE(2627)] = 18478, - [SMALL_STATE(2628)] = 18562, - [SMALL_STATE(2629)] = 18646, - [SMALL_STATE(2630)] = 18730, - [SMALL_STATE(2631)] = 18814, - [SMALL_STATE(2632)] = 18898, - [SMALL_STATE(2633)] = 18982, - [SMALL_STATE(2634)] = 19066, - [SMALL_STATE(2635)] = 19150, - [SMALL_STATE(2636)] = 19234, - [SMALL_STATE(2637)] = 19318, - [SMALL_STATE(2638)] = 19402, - [SMALL_STATE(2639)] = 19486, - [SMALL_STATE(2640)] = 19570, - [SMALL_STATE(2641)] = 19654, - [SMALL_STATE(2642)] = 19738, - [SMALL_STATE(2643)] = 19822, - [SMALL_STATE(2644)] = 19906, - [SMALL_STATE(2645)] = 19990, - [SMALL_STATE(2646)] = 20074, - [SMALL_STATE(2647)] = 20158, - [SMALL_STATE(2648)] = 20242, - [SMALL_STATE(2649)] = 20326, - [SMALL_STATE(2650)] = 20410, - [SMALL_STATE(2651)] = 20494, - [SMALL_STATE(2652)] = 20578, - [SMALL_STATE(2653)] = 20662, - [SMALL_STATE(2654)] = 20746, - [SMALL_STATE(2655)] = 20830, - [SMALL_STATE(2656)] = 20914, - [SMALL_STATE(2657)] = 20998, - [SMALL_STATE(2658)] = 21082, - [SMALL_STATE(2659)] = 21166, - [SMALL_STATE(2660)] = 21250, - [SMALL_STATE(2661)] = 21334, - [SMALL_STATE(2662)] = 21418, - [SMALL_STATE(2663)] = 21502, - [SMALL_STATE(2664)] = 21586, - [SMALL_STATE(2665)] = 21670, - [SMALL_STATE(2666)] = 21754, - [SMALL_STATE(2667)] = 21838, - [SMALL_STATE(2668)] = 21922, - [SMALL_STATE(2669)] = 22006, - [SMALL_STATE(2670)] = 22090, - [SMALL_STATE(2671)] = 22174, - [SMALL_STATE(2672)] = 22258, - [SMALL_STATE(2673)] = 22342, - [SMALL_STATE(2674)] = 22426, - [SMALL_STATE(2675)] = 22510, - [SMALL_STATE(2676)] = 22594, - [SMALL_STATE(2677)] = 22678, - [SMALL_STATE(2678)] = 22762, - [SMALL_STATE(2679)] = 22846, - [SMALL_STATE(2680)] = 22930, - [SMALL_STATE(2681)] = 23014, - [SMALL_STATE(2682)] = 23098, - [SMALL_STATE(2683)] = 23182, - [SMALL_STATE(2684)] = 23266, - [SMALL_STATE(2685)] = 23350, - [SMALL_STATE(2686)] = 23434, - [SMALL_STATE(2687)] = 23518, - [SMALL_STATE(2688)] = 23602, - [SMALL_STATE(2689)] = 23686, - [SMALL_STATE(2690)] = 23770, - [SMALL_STATE(2691)] = 23854, - [SMALL_STATE(2692)] = 23938, - [SMALL_STATE(2693)] = 24022, - [SMALL_STATE(2694)] = 24106, - [SMALL_STATE(2695)] = 24190, - [SMALL_STATE(2696)] = 24274, - [SMALL_STATE(2697)] = 24358, - [SMALL_STATE(2698)] = 24442, - [SMALL_STATE(2699)] = 24526, - [SMALL_STATE(2700)] = 24610, - [SMALL_STATE(2701)] = 24691, - [SMALL_STATE(2702)] = 24772, - [SMALL_STATE(2703)] = 24853, - [SMALL_STATE(2704)] = 24934, - [SMALL_STATE(2705)] = 25015, - [SMALL_STATE(2706)] = 25096, - [SMALL_STATE(2707)] = 25177, - [SMALL_STATE(2708)] = 25258, - [SMALL_STATE(2709)] = 25339, - [SMALL_STATE(2710)] = 25420, - [SMALL_STATE(2711)] = 25501, - [SMALL_STATE(2712)] = 25582, - [SMALL_STATE(2713)] = 25663, - [SMALL_STATE(2714)] = 25744, - [SMALL_STATE(2715)] = 25825, - [SMALL_STATE(2716)] = 25906, - [SMALL_STATE(2717)] = 25987, - [SMALL_STATE(2718)] = 26068, - [SMALL_STATE(2719)] = 26149, - [SMALL_STATE(2720)] = 26230, - [SMALL_STATE(2721)] = 26311, - [SMALL_STATE(2722)] = 26392, - [SMALL_STATE(2723)] = 26473, - [SMALL_STATE(2724)] = 26554, - [SMALL_STATE(2725)] = 26635, - [SMALL_STATE(2726)] = 26716, - [SMALL_STATE(2727)] = 26797, - [SMALL_STATE(2728)] = 26878, - [SMALL_STATE(2729)] = 26959, - [SMALL_STATE(2730)] = 27040, - [SMALL_STATE(2731)] = 27121, - [SMALL_STATE(2732)] = 27202, - [SMALL_STATE(2733)] = 27283, - [SMALL_STATE(2734)] = 27364, - [SMALL_STATE(2735)] = 27445, - [SMALL_STATE(2736)] = 27526, - [SMALL_STATE(2737)] = 27607, - [SMALL_STATE(2738)] = 27688, - [SMALL_STATE(2739)] = 27769, - [SMALL_STATE(2740)] = 27850, - [SMALL_STATE(2741)] = 27931, - [SMALL_STATE(2742)] = 28012, - [SMALL_STATE(2743)] = 28093, - [SMALL_STATE(2744)] = 28174, - [SMALL_STATE(2745)] = 28255, - [SMALL_STATE(2746)] = 28336, - [SMALL_STATE(2747)] = 28417, - [SMALL_STATE(2748)] = 28498, - [SMALL_STATE(2749)] = 28579, - [SMALL_STATE(2750)] = 28660, - [SMALL_STATE(2751)] = 28741, - [SMALL_STATE(2752)] = 28822, - [SMALL_STATE(2753)] = 28903, - [SMALL_STATE(2754)] = 28984, - [SMALL_STATE(2755)] = 29065, - [SMALL_STATE(2756)] = 29146, - [SMALL_STATE(2757)] = 29227, - [SMALL_STATE(2758)] = 29308, - [SMALL_STATE(2759)] = 29389, - [SMALL_STATE(2760)] = 29470, - [SMALL_STATE(2761)] = 29551, - [SMALL_STATE(2762)] = 29632, - [SMALL_STATE(2763)] = 29713, - [SMALL_STATE(2764)] = 29794, - [SMALL_STATE(2765)] = 29875, - [SMALL_STATE(2766)] = 29956, - [SMALL_STATE(2767)] = 30037, - [SMALL_STATE(2768)] = 30118, - [SMALL_STATE(2769)] = 30199, - [SMALL_STATE(2770)] = 30280, - [SMALL_STATE(2771)] = 30361, - [SMALL_STATE(2772)] = 30442, - [SMALL_STATE(2773)] = 30523, - [SMALL_STATE(2774)] = 30604, - [SMALL_STATE(2775)] = 30685, - [SMALL_STATE(2776)] = 30766, - [SMALL_STATE(2777)] = 30847, - [SMALL_STATE(2778)] = 30928, - [SMALL_STATE(2779)] = 31009, - [SMALL_STATE(2780)] = 31090, - [SMALL_STATE(2781)] = 31171, - [SMALL_STATE(2782)] = 31252, - [SMALL_STATE(2783)] = 31333, - [SMALL_STATE(2784)] = 31414, - [SMALL_STATE(2785)] = 31495, - [SMALL_STATE(2786)] = 31576, - [SMALL_STATE(2787)] = 31657, - [SMALL_STATE(2788)] = 31738, - [SMALL_STATE(2789)] = 31819, - [SMALL_STATE(2790)] = 31900, - [SMALL_STATE(2791)] = 31981, - [SMALL_STATE(2792)] = 32062, - [SMALL_STATE(2793)] = 32143, - [SMALL_STATE(2794)] = 32224, - [SMALL_STATE(2795)] = 32305, - [SMALL_STATE(2796)] = 32386, - [SMALL_STATE(2797)] = 32467, - [SMALL_STATE(2798)] = 32548, - [SMALL_STATE(2799)] = 32629, - [SMALL_STATE(2800)] = 32710, - [SMALL_STATE(2801)] = 32791, - [SMALL_STATE(2802)] = 32872, - [SMALL_STATE(2803)] = 32953, - [SMALL_STATE(2804)] = 33034, - [SMALL_STATE(2805)] = 33115, - [SMALL_STATE(2806)] = 33196, - [SMALL_STATE(2807)] = 33277, - [SMALL_STATE(2808)] = 33358, - [SMALL_STATE(2809)] = 33439, - [SMALL_STATE(2810)] = 33520, - [SMALL_STATE(2811)] = 33601, - [SMALL_STATE(2812)] = 33682, - [SMALL_STATE(2813)] = 33763, - [SMALL_STATE(2814)] = 33844, - [SMALL_STATE(2815)] = 33925, - [SMALL_STATE(2816)] = 34006, - [SMALL_STATE(2817)] = 34087, - [SMALL_STATE(2818)] = 34168, - [SMALL_STATE(2819)] = 34249, - [SMALL_STATE(2820)] = 34330, - [SMALL_STATE(2821)] = 34411, - [SMALL_STATE(2822)] = 34492, - [SMALL_STATE(2823)] = 34573, - [SMALL_STATE(2824)] = 34654, - [SMALL_STATE(2825)] = 34735, - [SMALL_STATE(2826)] = 34816, - [SMALL_STATE(2827)] = 34897, - [SMALL_STATE(2828)] = 34978, - [SMALL_STATE(2829)] = 35059, - [SMALL_STATE(2830)] = 35140, - [SMALL_STATE(2831)] = 35221, - [SMALL_STATE(2832)] = 35302, - [SMALL_STATE(2833)] = 35383, - [SMALL_STATE(2834)] = 35464, - [SMALL_STATE(2835)] = 35545, - [SMALL_STATE(2836)] = 35626, - [SMALL_STATE(2837)] = 35707, - [SMALL_STATE(2838)] = 35788, - [SMALL_STATE(2839)] = 35869, - [SMALL_STATE(2840)] = 35950, - [SMALL_STATE(2841)] = 36031, - [SMALL_STATE(2842)] = 36112, - [SMALL_STATE(2843)] = 36193, - [SMALL_STATE(2844)] = 36274, - [SMALL_STATE(2845)] = 36355, - [SMALL_STATE(2846)] = 36436, - [SMALL_STATE(2847)] = 36517, - [SMALL_STATE(2848)] = 36598, - [SMALL_STATE(2849)] = 36679, - [SMALL_STATE(2850)] = 36760, - [SMALL_STATE(2851)] = 36841, - [SMALL_STATE(2852)] = 36922, - [SMALL_STATE(2853)] = 37003, - [SMALL_STATE(2854)] = 37084, - [SMALL_STATE(2855)] = 37165, - [SMALL_STATE(2856)] = 37246, - [SMALL_STATE(2857)] = 37327, - [SMALL_STATE(2858)] = 37408, - [SMALL_STATE(2859)] = 37489, - [SMALL_STATE(2860)] = 37570, - [SMALL_STATE(2861)] = 37651, - [SMALL_STATE(2862)] = 37732, - [SMALL_STATE(2863)] = 37813, - [SMALL_STATE(2864)] = 37894, - [SMALL_STATE(2865)] = 37975, - [SMALL_STATE(2866)] = 38056, - [SMALL_STATE(2867)] = 38137, - [SMALL_STATE(2868)] = 38218, - [SMALL_STATE(2869)] = 38299, - [SMALL_STATE(2870)] = 38380, - [SMALL_STATE(2871)] = 38461, - [SMALL_STATE(2872)] = 38542, - [SMALL_STATE(2873)] = 38623, - [SMALL_STATE(2874)] = 38704, - [SMALL_STATE(2875)] = 38785, - [SMALL_STATE(2876)] = 38866, - [SMALL_STATE(2877)] = 38947, - [SMALL_STATE(2878)] = 39028, - [SMALL_STATE(2879)] = 39109, - [SMALL_STATE(2880)] = 39190, - [SMALL_STATE(2881)] = 39271, - [SMALL_STATE(2882)] = 39349, - [SMALL_STATE(2883)] = 39427, - [SMALL_STATE(2884)] = 39505, - [SMALL_STATE(2885)] = 39583, - [SMALL_STATE(2886)] = 39661, - [SMALL_STATE(2887)] = 39739, - [SMALL_STATE(2888)] = 39817, - [SMALL_STATE(2889)] = 39895, - [SMALL_STATE(2890)] = 39973, - [SMALL_STATE(2891)] = 40035, - [SMALL_STATE(2892)] = 40099, - [SMALL_STATE(2893)] = 40163, - [SMALL_STATE(2894)] = 40225, - [SMALL_STATE(2895)] = 40287, - [SMALL_STATE(2896)] = 40346, - [SMALL_STATE(2897)] = 40405, - [SMALL_STATE(2898)] = 40464, - [SMALL_STATE(2899)] = 40523, - [SMALL_STATE(2900)] = 40582, - [SMALL_STATE(2901)] = 40641, - [SMALL_STATE(2902)] = 40700, - [SMALL_STATE(2903)] = 40759, - [SMALL_STATE(2904)] = 40818, - [SMALL_STATE(2905)] = 40877, - [SMALL_STATE(2906)] = 40936, - [SMALL_STATE(2907)] = 40995, - [SMALL_STATE(2908)] = 41054, - [SMALL_STATE(2909)] = 41117, - [SMALL_STATE(2910)] = 41176, - [SMALL_STATE(2911)] = 41235, - [SMALL_STATE(2912)] = 41298, - [SMALL_STATE(2913)] = 41357, - [SMALL_STATE(2914)] = 41416, - [SMALL_STATE(2915)] = 41475, - [SMALL_STATE(2916)] = 41534, - [SMALL_STATE(2917)] = 41593, - [SMALL_STATE(2918)] = 41652, - [SMALL_STATE(2919)] = 41711, - [SMALL_STATE(2920)] = 41770, - [SMALL_STATE(2921)] = 41829, - [SMALL_STATE(2922)] = 41888, - [SMALL_STATE(2923)] = 41947, - [SMALL_STATE(2924)] = 42006, - [SMALL_STATE(2925)] = 42065, - [SMALL_STATE(2926)] = 42124, - [SMALL_STATE(2927)] = 42183, - [SMALL_STATE(2928)] = 42242, - [SMALL_STATE(2929)] = 42301, - [SMALL_STATE(2930)] = 42360, - [SMALL_STATE(2931)] = 42419, - [SMALL_STATE(2932)] = 42478, - [SMALL_STATE(2933)] = 42537, - [SMALL_STATE(2934)] = 42596, - [SMALL_STATE(2935)] = 42655, - [SMALL_STATE(2936)] = 42714, - [SMALL_STATE(2937)] = 42773, - [SMALL_STATE(2938)] = 42832, - [SMALL_STATE(2939)] = 42891, - [SMALL_STATE(2940)] = 42952, - [SMALL_STATE(2941)] = 43011, - [SMALL_STATE(2942)] = 43070, - [SMALL_STATE(2943)] = 43129, - [SMALL_STATE(2944)] = 43188, - [SMALL_STATE(2945)] = 43249, - [SMALL_STATE(2946)] = 43308, - [SMALL_STATE(2947)] = 43367, - [SMALL_STATE(2948)] = 43426, - [SMALL_STATE(2949)] = 43485, - [SMALL_STATE(2950)] = 43544, - [SMALL_STATE(2951)] = 43603, - [SMALL_STATE(2952)] = 43662, - [SMALL_STATE(2953)] = 43721, - [SMALL_STATE(2954)] = 43780, - [SMALL_STATE(2955)] = 43839, - [SMALL_STATE(2956)] = 43898, - [SMALL_STATE(2957)] = 43957, - [SMALL_STATE(2958)] = 44014, - [SMALL_STATE(2959)] = 44071, - [SMALL_STATE(2960)] = 44127, - [SMALL_STATE(2961)] = 44185, - [SMALL_STATE(2962)] = 44248, - [SMALL_STATE(2963)] = 44307, - [SMALL_STATE(2964)] = 44366, - [SMALL_STATE(2965)] = 44421, - [SMALL_STATE(2966)] = 44489, - [SMALL_STATE(2967)] = 44555, - [SMALL_STATE(2968)] = 44639, - [SMALL_STATE(2969)] = 44709, - [SMALL_STATE(2970)] = 44767, - [SMALL_STATE(2971)] = 44843, - [SMALL_STATE(2972)] = 44909, - [SMALL_STATE(2973)] = 44977, - [SMALL_STATE(2974)] = 45057, - [SMALL_STATE(2975)] = 45129, - [SMALL_STATE(2976)] = 45221, - [SMALL_STATE(2977)] = 45305, - [SMALL_STATE(2978)] = 45385, - [SMALL_STATE(2979)] = 45455, - [SMALL_STATE(2980)] = 45533, - [SMALL_STATE(2981)] = 45611, - [SMALL_STATE(2982)] = 45687, - [SMALL_STATE(2983)] = 45759, - [SMALL_STATE(2984)] = 45812, - [SMALL_STATE(2985)] = 45865, - [SMALL_STATE(2986)] = 45918, - [SMALL_STATE(2987)] = 45971, - [SMALL_STATE(2988)] = 46024, - [SMALL_STATE(2989)] = 46077, - [SMALL_STATE(2990)] = 46130, - [SMALL_STATE(2991)] = 46183, - [SMALL_STATE(2992)] = 46236, - [SMALL_STATE(2993)] = 46327, - [SMALL_STATE(2994)] = 46380, - [SMALL_STATE(2995)] = 46449, - [SMALL_STATE(2996)] = 46504, - [SMALL_STATE(2997)] = 46571, - [SMALL_STATE(2998)] = 46648, - [SMALL_STATE(2999)] = 46729, - [SMALL_STATE(3000)] = 46782, - [SMALL_STATE(3001)] = 46859, - [SMALL_STATE(3002)] = 46934, - [SMALL_STATE(3003)] = 47023, - [SMALL_STATE(3004)] = 47096, - [SMALL_STATE(3005)] = 47151, - [SMALL_STATE(3006)] = 47226, - [SMALL_STATE(3007)] = 47291, - [SMALL_STATE(3008)] = 47354, - [SMALL_STATE(3009)] = 47427, - [SMALL_STATE(3010)] = 47486, - [SMALL_STATE(3011)] = 47555, - [SMALL_STATE(3012)] = 47620, - [SMALL_STATE(3013)] = 47683, - [SMALL_STATE(3014)] = 47750, - [SMALL_STATE(3015)] = 47803, - [SMALL_STATE(3016)] = 47884, - [SMALL_STATE(3017)] = 47939, - [SMALL_STATE(3018)] = 47999, - [SMALL_STATE(3019)] = 48059, - [SMALL_STATE(3020)] = 48109, - [SMALL_STATE(3021)] = 48159, - [SMALL_STATE(3022)] = 48209, - [SMALL_STATE(3023)] = 48259, - [SMALL_STATE(3024)] = 48321, - [SMALL_STATE(3025)] = 48387, - [SMALL_STATE(3026)] = 48467, - [SMALL_STATE(3027)] = 48543, - [SMALL_STATE(3028)] = 48593, - [SMALL_STATE(3029)] = 48667, - [SMALL_STATE(3030)] = 48717, - [SMALL_STATE(3031)] = 48789, - [SMALL_STATE(3032)] = 48839, - [SMALL_STATE(3033)] = 48907, - [SMALL_STATE(3034)] = 48971, - [SMALL_STATE(3035)] = 49021, - [SMALL_STATE(3036)] = 49071, - [SMALL_STATE(3037)] = 49161, - [SMALL_STATE(3038)] = 49211, - [SMALL_STATE(3039)] = 49261, - [SMALL_STATE(3040)] = 49311, - [SMALL_STATE(3041)] = 49361, - [SMALL_STATE(3042)] = 49411, - [SMALL_STATE(3043)] = 49461, - [SMALL_STATE(3044)] = 49511, - [SMALL_STATE(3045)] = 49561, - [SMALL_STATE(3046)] = 49611, - [SMALL_STATE(3047)] = 49697, - [SMALL_STATE(3048)] = 49747, - [SMALL_STATE(3049)] = 49797, - [SMALL_STATE(3050)] = 49847, - [SMALL_STATE(3051)] = 49897, - [SMALL_STATE(3052)] = 49947, - [SMALL_STATE(3053)] = 49997, - [SMALL_STATE(3054)] = 50047, - [SMALL_STATE(3055)] = 50097, - [SMALL_STATE(3056)] = 50147, - [SMALL_STATE(3057)] = 50209, - [SMALL_STATE(3058)] = 50259, - [SMALL_STATE(3059)] = 50325, - [SMALL_STATE(3060)] = 50375, - [SMALL_STATE(3061)] = 50455, - [SMALL_STATE(3062)] = 50505, - [SMALL_STATE(3063)] = 50581, - [SMALL_STATE(3064)] = 50631, - [SMALL_STATE(3065)] = 50705, - [SMALL_STATE(3066)] = 50777, - [SMALL_STATE(3067)] = 50845, - [SMALL_STATE(3068)] = 50933, - [SMALL_STATE(3069)] = 50997, - [SMALL_STATE(3070)] = 51047, - [SMALL_STATE(3071)] = 51099, - [SMALL_STATE(3072)] = 51149, - [SMALL_STATE(3073)] = 51199, - [SMALL_STATE(3074)] = 51249, - [SMALL_STATE(3075)] = 51299, - [SMALL_STATE(3076)] = 51349, - [SMALL_STATE(3077)] = 51399, - [SMALL_STATE(3078)] = 51449, - [SMALL_STATE(3079)] = 51499, - [SMALL_STATE(3080)] = 51549, - [SMALL_STATE(3081)] = 51601, - [SMALL_STATE(3082)] = 51651, - [SMALL_STATE(3083)] = 51701, - [SMALL_STATE(3084)] = 51761, - [SMALL_STATE(3085)] = 51813, - [SMALL_STATE(3086)] = 51863, - [SMALL_STATE(3087)] = 51913, - [SMALL_STATE(3088)] = 51963, - [SMALL_STATE(3089)] = 52013, - [SMALL_STATE(3090)] = 52063, - [SMALL_STATE(3091)] = 52113, - [SMALL_STATE(3092)] = 52173, - [SMALL_STATE(3093)] = 52223, - [SMALL_STATE(3094)] = 52273, - [SMALL_STATE(3095)] = 52323, - [SMALL_STATE(3096)] = 52373, - [SMALL_STATE(3097)] = 52423, - [SMALL_STATE(3098)] = 52473, - [SMALL_STATE(3099)] = 52563, - [SMALL_STATE(3100)] = 52613, - [SMALL_STATE(3101)] = 52663, - [SMALL_STATE(3102)] = 52712, - [SMALL_STATE(3103)] = 52761, - [SMALL_STATE(3104)] = 52810, - [SMALL_STATE(3105)] = 52859, - [SMALL_STATE(3106)] = 52908, - [SMALL_STATE(3107)] = 52957, - [SMALL_STATE(3108)] = 53006, - [SMALL_STATE(3109)] = 53055, - [SMALL_STATE(3110)] = 53104, - [SMALL_STATE(3111)] = 53153, - [SMALL_STATE(3112)] = 53202, - [SMALL_STATE(3113)] = 53251, - [SMALL_STATE(3114)] = 53300, - [SMALL_STATE(3115)] = 53349, - [SMALL_STATE(3116)] = 53398, - [SMALL_STATE(3117)] = 53447, - [SMALL_STATE(3118)] = 53496, - [SMALL_STATE(3119)] = 53545, - [SMALL_STATE(3120)] = 53594, - [SMALL_STATE(3121)] = 53643, - [SMALL_STATE(3122)] = 53692, - [SMALL_STATE(3123)] = 53741, - [SMALL_STATE(3124)] = 53790, - [SMALL_STATE(3125)] = 53839, - [SMALL_STATE(3126)] = 53888, - [SMALL_STATE(3127)] = 53937, - [SMALL_STATE(3128)] = 53986, - [SMALL_STATE(3129)] = 54035, - [SMALL_STATE(3130)] = 54084, - [SMALL_STATE(3131)] = 54133, - [SMALL_STATE(3132)] = 54182, - [SMALL_STATE(3133)] = 54231, - [SMALL_STATE(3134)] = 54280, - [SMALL_STATE(3135)] = 54329, - [SMALL_STATE(3136)] = 54378, - [SMALL_STATE(3137)] = 54427, - [SMALL_STATE(3138)] = 54476, - [SMALL_STATE(3139)] = 54525, - [SMALL_STATE(3140)] = 54574, - [SMALL_STATE(3141)] = 54623, - [SMALL_STATE(3142)] = 54672, - [SMALL_STATE(3143)] = 54721, - [SMALL_STATE(3144)] = 54770, - [SMALL_STATE(3145)] = 54819, - [SMALL_STATE(3146)] = 54868, - [SMALL_STATE(3147)] = 54917, - [SMALL_STATE(3148)] = 55002, - [SMALL_STATE(3149)] = 55051, - [SMALL_STATE(3150)] = 55100, - [SMALL_STATE(3151)] = 55149, - [SMALL_STATE(3152)] = 55198, - [SMALL_STATE(3153)] = 55247, - [SMALL_STATE(3154)] = 55296, - [SMALL_STATE(3155)] = 55345, - [SMALL_STATE(3156)] = 55394, - [SMALL_STATE(3157)] = 55443, - [SMALL_STATE(3158)] = 55492, - [SMALL_STATE(3159)] = 55541, - [SMALL_STATE(3160)] = 55590, - [SMALL_STATE(3161)] = 55639, - [SMALL_STATE(3162)] = 55688, - [SMALL_STATE(3163)] = 55737, - [SMALL_STATE(3164)] = 55786, - [SMALL_STATE(3165)] = 55835, - [SMALL_STATE(3166)] = 55884, - [SMALL_STATE(3167)] = 55933, - [SMALL_STATE(3168)] = 55982, - [SMALL_STATE(3169)] = 56031, - [SMALL_STATE(3170)] = 56080, - [SMALL_STATE(3171)] = 56129, - [SMALL_STATE(3172)] = 56178, - [SMALL_STATE(3173)] = 56227, - [SMALL_STATE(3174)] = 56276, - [SMALL_STATE(3175)] = 56325, - [SMALL_STATE(3176)] = 56374, - [SMALL_STATE(3177)] = 56423, - [SMALL_STATE(3178)] = 56472, - [SMALL_STATE(3179)] = 56521, - [SMALL_STATE(3180)] = 56570, - [SMALL_STATE(3181)] = 56619, - [SMALL_STATE(3182)] = 56668, - [SMALL_STATE(3183)] = 56717, - [SMALL_STATE(3184)] = 56766, - [SMALL_STATE(3185)] = 56815, - [SMALL_STATE(3186)] = 56864, - [SMALL_STATE(3187)] = 56913, - [SMALL_STATE(3188)] = 56961, - [SMALL_STATE(3189)] = 57011, - [SMALL_STATE(3190)] = 57059, - [SMALL_STATE(3191)] = 57109, - [SMALL_STATE(3192)] = 57154, - [SMALL_STATE(3193)] = 57199, - [SMALL_STATE(3194)] = 57244, - [SMALL_STATE(3195)] = 57289, - [SMALL_STATE(3196)] = 57334, - [SMALL_STATE(3197)] = 57379, - [SMALL_STATE(3198)] = 57434, - [SMALL_STATE(3199)] = 57479, - [SMALL_STATE(3200)] = 57524, - [SMALL_STATE(3201)] = 57579, - [SMALL_STATE(3202)] = 57624, - [SMALL_STATE(3203)] = 57669, - [SMALL_STATE(3204)] = 57714, - [SMALL_STATE(3205)] = 57759, - [SMALL_STATE(3206)] = 57804, - [SMALL_STATE(3207)] = 57849, - [SMALL_STATE(3208)] = 57894, - [SMALL_STATE(3209)] = 57941, - [SMALL_STATE(3210)] = 57986, - [SMALL_STATE(3211)] = 58031, - [SMALL_STATE(3212)] = 58084, - [SMALL_STATE(3213)] = 58133, - [SMALL_STATE(3214)] = 58178, - [SMALL_STATE(3215)] = 58223, - [SMALL_STATE(3216)] = 58268, - [SMALL_STATE(3217)] = 58323, - [SMALL_STATE(3218)] = 58368, - [SMALL_STATE(3219)] = 58413, - [SMALL_STATE(3220)] = 58458, - [SMALL_STATE(3221)] = 58513, - [SMALL_STATE(3222)] = 58558, - [SMALL_STATE(3223)] = 58603, - [SMALL_STATE(3224)] = 58648, - [SMALL_STATE(3225)] = 58703, - [SMALL_STATE(3226)] = 58748, - [SMALL_STATE(3227)] = 58793, - [SMALL_STATE(3228)] = 58838, - [SMALL_STATE(3229)] = 58883, - [SMALL_STATE(3230)] = 58928, - [SMALL_STATE(3231)] = 58973, - [SMALL_STATE(3232)] = 59018, - [SMALL_STATE(3233)] = 59063, - [SMALL_STATE(3234)] = 59108, - [SMALL_STATE(3235)] = 59153, - [SMALL_STATE(3236)] = 59198, - [SMALL_STATE(3237)] = 59243, - [SMALL_STATE(3238)] = 59288, - [SMALL_STATE(3239)] = 59333, - [SMALL_STATE(3240)] = 59378, - [SMALL_STATE(3241)] = 59423, - [SMALL_STATE(3242)] = 59468, - [SMALL_STATE(3243)] = 59513, - [SMALL_STATE(3244)] = 59558, - [SMALL_STATE(3245)] = 59603, - [SMALL_STATE(3246)] = 59648, - [SMALL_STATE(3247)] = 59693, - [SMALL_STATE(3248)] = 59738, - [SMALL_STATE(3249)] = 59783, - [SMALL_STATE(3250)] = 59828, - [SMALL_STATE(3251)] = 59875, - [SMALL_STATE(3252)] = 59920, - [SMALL_STATE(3253)] = 59965, - [SMALL_STATE(3254)] = 60010, - [SMALL_STATE(3255)] = 60057, - [SMALL_STATE(3256)] = 60102, - [SMALL_STATE(3257)] = 60147, - [SMALL_STATE(3258)] = 60192, - [SMALL_STATE(3259)] = 60236, - [SMALL_STATE(3260)] = 60280, - [SMALL_STATE(3261)] = 60324, - [SMALL_STATE(3262)] = 60368, - [SMALL_STATE(3263)] = 60412, - [SMALL_STATE(3264)] = 60456, - [SMALL_STATE(3265)] = 60500, - [SMALL_STATE(3266)] = 60544, - [SMALL_STATE(3267)] = 60588, - [SMALL_STATE(3268)] = 60632, - [SMALL_STATE(3269)] = 60676, - [SMALL_STATE(3270)] = 60720, - [SMALL_STATE(3271)] = 60764, - [SMALL_STATE(3272)] = 60808, - [SMALL_STATE(3273)] = 60852, - [SMALL_STATE(3274)] = 60896, - [SMALL_STATE(3275)] = 60940, - [SMALL_STATE(3276)] = 60984, - [SMALL_STATE(3277)] = 61028, - [SMALL_STATE(3278)] = 61072, - [SMALL_STATE(3279)] = 61116, - [SMALL_STATE(3280)] = 61160, - [SMALL_STATE(3281)] = 61204, - [SMALL_STATE(3282)] = 61248, - [SMALL_STATE(3283)] = 61292, - [SMALL_STATE(3284)] = 61336, - [SMALL_STATE(3285)] = 61380, - [SMALL_STATE(3286)] = 61424, - [SMALL_STATE(3287)] = 61468, - [SMALL_STATE(3288)] = 61512, - [SMALL_STATE(3289)] = 61556, - [SMALL_STATE(3290)] = 61600, - [SMALL_STATE(3291)] = 61644, - [SMALL_STATE(3292)] = 61688, - [SMALL_STATE(3293)] = 61732, - [SMALL_STATE(3294)] = 61776, - [SMALL_STATE(3295)] = 61820, - [SMALL_STATE(3296)] = 61872, - [SMALL_STATE(3297)] = 61916, - [SMALL_STATE(3298)] = 61960, - [SMALL_STATE(3299)] = 62004, - [SMALL_STATE(3300)] = 62048, - [SMALL_STATE(3301)] = 62092, - [SMALL_STATE(3302)] = 62136, - [SMALL_STATE(3303)] = 62180, - [SMALL_STATE(3304)] = 62224, - [SMALL_STATE(3305)] = 62268, - [SMALL_STATE(3306)] = 62312, - [SMALL_STATE(3307)] = 62356, - [SMALL_STATE(3308)] = 62400, - [SMALL_STATE(3309)] = 62444, - [SMALL_STATE(3310)] = 62488, - [SMALL_STATE(3311)] = 62532, - [SMALL_STATE(3312)] = 62588, - [SMALL_STATE(3313)] = 62650, - [SMALL_STATE(3314)] = 62698, - [SMALL_STATE(3315)] = 62774, - [SMALL_STATE(3316)] = 62846, - [SMALL_STATE(3317)] = 62916, - [SMALL_STATE(3318)] = 62984, - [SMALL_STATE(3319)] = 63048, - [SMALL_STATE(3320)] = 63106, - [SMALL_STATE(3321)] = 63150, - [SMALL_STATE(3322)] = 63194, - [SMALL_STATE(3323)] = 63238, - [SMALL_STATE(3324)] = 63282, - [SMALL_STATE(3325)] = 63326, - [SMALL_STATE(3326)] = 63370, - [SMALL_STATE(3327)] = 63414, - [SMALL_STATE(3328)] = 63458, - [SMALL_STATE(3329)] = 63502, - [SMALL_STATE(3330)] = 63558, - [SMALL_STATE(3331)] = 63620, - [SMALL_STATE(3332)] = 63664, - [SMALL_STATE(3333)] = 63708, - [SMALL_STATE(3334)] = 63784, - [SMALL_STATE(3335)] = 63856, - [SMALL_STATE(3336)] = 63926, - [SMALL_STATE(3337)] = 63994, - [SMALL_STATE(3338)] = 64058, - [SMALL_STATE(3339)] = 64116, - [SMALL_STATE(3340)] = 64160, - [SMALL_STATE(3341)] = 64204, - [SMALL_STATE(3342)] = 64248, - [SMALL_STATE(3343)] = 64292, - [SMALL_STATE(3344)] = 64336, - [SMALL_STATE(3345)] = 64380, - [SMALL_STATE(3346)] = 64424, - [SMALL_STATE(3347)] = 64468, - [SMALL_STATE(3348)] = 64512, - [SMALL_STATE(3349)] = 64556, - [SMALL_STATE(3350)] = 64600, - [SMALL_STATE(3351)] = 64644, - [SMALL_STATE(3352)] = 64688, - [SMALL_STATE(3353)] = 64732, - [SMALL_STATE(3354)] = 64776, - [SMALL_STATE(3355)] = 64820, - [SMALL_STATE(3356)] = 64864, - [SMALL_STATE(3357)] = 64908, - [SMALL_STATE(3358)] = 64952, - [SMALL_STATE(3359)] = 64996, - [SMALL_STATE(3360)] = 65040, - [SMALL_STATE(3361)] = 65084, - [SMALL_STATE(3362)] = 65161, - [SMALL_STATE(3363)] = 65216, - [SMALL_STATE(3364)] = 65285, - [SMALL_STATE(3365)] = 65358, - [SMALL_STATE(3366)] = 65429, - [SMALL_STATE(3367)] = 65500, - [SMALL_STATE(3368)] = 65555, - [SMALL_STATE(3369)] = 65620, - [SMALL_STATE(3370)] = 65677, - [SMALL_STATE(3371)] = 65758, - [SMALL_STATE(3372)] = 65835, - [SMALL_STATE(3373)] = 65896, - [SMALL_STATE(3374)] = 65969, - [SMALL_STATE(3375)] = 66034, - [SMALL_STATE(3376)] = 66095, - [SMALL_STATE(3377)] = 66164, - [SMALL_STATE(3378)] = 66221, - [SMALL_STATE(3379)] = 66307, - [SMALL_STATE(3380)] = 66393, - [SMALL_STATE(3381)] = 66479, - [SMALL_STATE(3382)] = 66555, - [SMALL_STATE(3383)] = 66641, - [SMALL_STATE(3384)] = 66729, - [SMALL_STATE(3385)] = 66815, - [SMALL_STATE(3386)] = 66901, - [SMALL_STATE(3387)] = 66987, - [SMALL_STATE(3388)] = 67073, - [SMALL_STATE(3389)] = 67159, - [SMALL_STATE(3390)] = 67245, - [SMALL_STATE(3391)] = 67331, - [SMALL_STATE(3392)] = 67417, - [SMALL_STATE(3393)] = 67503, - [SMALL_STATE(3394)] = 67589, - [SMALL_STATE(3395)] = 67675, - [SMALL_STATE(3396)] = 67763, - [SMALL_STATE(3397)] = 67851, - [SMALL_STATE(3398)] = 67937, - [SMALL_STATE(3399)] = 68013, - [SMALL_STATE(3400)] = 68099, - [SMALL_STATE(3401)] = 68185, - [SMALL_STATE(3402)] = 68271, - [SMALL_STATE(3403)] = 68347, - [SMALL_STATE(3404)] = 68433, - [SMALL_STATE(3405)] = 68516, - [SMALL_STATE(3406)] = 68599, - [SMALL_STATE(3407)] = 68666, - [SMALL_STATE(3408)] = 68749, - [SMALL_STATE(3409)] = 68812, - [SMALL_STATE(3410)] = 68857, - [SMALL_STATE(3411)] = 68940, - [SMALL_STATE(3412)] = 68995, - [SMALL_STATE(3413)] = 69078, - [SMALL_STATE(3414)] = 69161, - [SMALL_STATE(3415)] = 69244, - [SMALL_STATE(3416)] = 69327, - [SMALL_STATE(3417)] = 69410, - [SMALL_STATE(3418)] = 69493, - [SMALL_STATE(3419)] = 69576, - [SMALL_STATE(3420)] = 69627, - [SMALL_STATE(3421)] = 69710, - [SMALL_STATE(3422)] = 69761, - [SMALL_STATE(3423)] = 69840, - [SMALL_STATE(3424)] = 69893, - [SMALL_STATE(3425)] = 69952, - [SMALL_STATE(3426)] = 70035, - [SMALL_STATE(3427)] = 70118, - [SMALL_STATE(3428)] = 70193, - [SMALL_STATE(3429)] = 70264, - [SMALL_STATE(3430)] = 70333, - [SMALL_STATE(3431)] = 70400, - [SMALL_STATE(3432)] = 70463, - [SMALL_STATE(3433)] = 70518, - [SMALL_STATE(3434)] = 70601, - [SMALL_STATE(3435)] = 70684, - [SMALL_STATE(3436)] = 70737, - [SMALL_STATE(3437)] = 70820, - [SMALL_STATE(3438)] = 70903, - [SMALL_STATE(3439)] = 70986, - [SMALL_STATE(3440)] = 71031, - [SMALL_STATE(3441)] = 71076, - [SMALL_STATE(3442)] = 71159, - [SMALL_STATE(3443)] = 71242, - [SMALL_STATE(3444)] = 71325, - [SMALL_STATE(3445)] = 71408, - [SMALL_STATE(3446)] = 71491, - [SMALL_STATE(3447)] = 71574, - [SMALL_STATE(3448)] = 71653, - [SMALL_STATE(3449)] = 71736, - [SMALL_STATE(3450)] = 71819, - [SMALL_STATE(3451)] = 71902, - [SMALL_STATE(3452)] = 71985, - [SMALL_STATE(3453)] = 72068, - [SMALL_STATE(3454)] = 72151, - [SMALL_STATE(3455)] = 72204, - [SMALL_STATE(3456)] = 72287, - [SMALL_STATE(3457)] = 72346, - [SMALL_STATE(3458)] = 72391, - [SMALL_STATE(3459)] = 72474, - [SMALL_STATE(3460)] = 72549, - [SMALL_STATE(3461)] = 72632, - [SMALL_STATE(3462)] = 72715, - [SMALL_STATE(3463)] = 72798, - [SMALL_STATE(3464)] = 72869, - [SMALL_STATE(3465)] = 72952, - [SMALL_STATE(3466)] = 73021, - [SMALL_STATE(3467)] = 73104, - [SMALL_STATE(3468)] = 73187, - [SMALL_STATE(3469)] = 73270, - [SMALL_STATE(3470)] = 73353, - [SMALL_STATE(3471)] = 73436, - [SMALL_STATE(3472)] = 73516, - [SMALL_STATE(3473)] = 73596, - [SMALL_STATE(3474)] = 73678, - [SMALL_STATE(3475)] = 73726, - [SMALL_STATE(3476)] = 73806, - [SMALL_STATE(3477)] = 73886, - [SMALL_STATE(3478)] = 73966, - [SMALL_STATE(3479)] = 74048, - [SMALL_STATE(3480)] = 74096, - [SMALL_STATE(3481)] = 74176, - [SMALL_STATE(3482)] = 74224, - [SMALL_STATE(3483)] = 74304, - [SMALL_STATE(3484)] = 74352, - [SMALL_STATE(3485)] = 74432, - [SMALL_STATE(3486)] = 74480, - [SMALL_STATE(3487)] = 74560, - [SMALL_STATE(3488)] = 74640, - [SMALL_STATE(3489)] = 74720, - [SMALL_STATE(3490)] = 74768, - [SMALL_STATE(3491)] = 74816, - [SMALL_STATE(3492)] = 74896, - [SMALL_STATE(3493)] = 74976, - [SMALL_STATE(3494)] = 75056, - [SMALL_STATE(3495)] = 75106, - [SMALL_STATE(3496)] = 75184, - [SMALL_STATE(3497)] = 75232, - [SMALL_STATE(3498)] = 75312, - [SMALL_STATE(3499)] = 75360, - [SMALL_STATE(3500)] = 75440, - [SMALL_STATE(3501)] = 75488, - [SMALL_STATE(3502)] = 75536, - [SMALL_STATE(3503)] = 75616, - [SMALL_STATE(3504)] = 75696, - [SMALL_STATE(3505)] = 75778, - [SMALL_STATE(3506)] = 75826, - [SMALL_STATE(3507)] = 75903, - [SMALL_STATE(3508)] = 75980, - [SMALL_STATE(3509)] = 76027, - [SMALL_STATE(3510)] = 76104, - [SMALL_STATE(3511)] = 76147, - [SMALL_STATE(3512)] = 76224, - [SMALL_STATE(3513)] = 76301, - [SMALL_STATE(3514)] = 76344, - [SMALL_STATE(3515)] = 76421, - [SMALL_STATE(3516)] = 76498, - [SMALL_STATE(3517)] = 76575, - [SMALL_STATE(3518)] = 76618, - [SMALL_STATE(3519)] = 76661, - [SMALL_STATE(3520)] = 76704, - [SMALL_STATE(3521)] = 76747, - [SMALL_STATE(3522)] = 76824, - [SMALL_STATE(3523)] = 76897, - [SMALL_STATE(3524)] = 76974, - [SMALL_STATE(3525)] = 77051, - [SMALL_STATE(3526)] = 77098, - [SMALL_STATE(3527)] = 77175, - [SMALL_STATE(3528)] = 77252, - [SMALL_STATE(3529)] = 77293, - [SMALL_STATE(3530)] = 77334, - [SMALL_STATE(3531)] = 77381, - [SMALL_STATE(3532)] = 77422, - [SMALL_STATE(3533)] = 77499, - [SMALL_STATE(3534)] = 77572, - [SMALL_STATE(3535)] = 77613, - [SMALL_STATE(3536)] = 77690, - [SMALL_STATE(3537)] = 77731, - [SMALL_STATE(3538)] = 77804, - [SMALL_STATE(3539)] = 77881, - [SMALL_STATE(3540)] = 77958, - [SMALL_STATE(3541)] = 78035, - [SMALL_STATE(3542)] = 78108, - [SMALL_STATE(3543)] = 78185, - [SMALL_STATE(3544)] = 78262, - [SMALL_STATE(3545)] = 78339, - [SMALL_STATE(3546)] = 78416, - [SMALL_STATE(3547)] = 78489, - [SMALL_STATE(3548)] = 78566, - [SMALL_STATE(3549)] = 78643, - [SMALL_STATE(3550)] = 78720, - [SMALL_STATE(3551)] = 78793, - [SMALL_STATE(3552)] = 78870, - [SMALL_STATE(3553)] = 78947, - [SMALL_STATE(3554)] = 79024, - [SMALL_STATE(3555)] = 79101, - [SMALL_STATE(3556)] = 79142, - [SMALL_STATE(3557)] = 79219, - [SMALL_STATE(3558)] = 79266, - [SMALL_STATE(3559)] = 79343, - [SMALL_STATE(3560)] = 79420, - [SMALL_STATE(3561)] = 79497, - [SMALL_STATE(3562)] = 79574, - [SMALL_STATE(3563)] = 79617, - [SMALL_STATE(3564)] = 79694, - [SMALL_STATE(3565)] = 79771, - [SMALL_STATE(3566)] = 79818, - [SMALL_STATE(3567)] = 79865, - [SMALL_STATE(3568)] = 79942, - [SMALL_STATE(3569)] = 80019, - [SMALL_STATE(3570)] = 80092, - [SMALL_STATE(3571)] = 80169, - [SMALL_STATE(3572)] = 80242, - [SMALL_STATE(3573)] = 80319, - [SMALL_STATE(3574)] = 80396, - [SMALL_STATE(3575)] = 80473, - [SMALL_STATE(3576)] = 80550, - [SMALL_STATE(3577)] = 80627, - [SMALL_STATE(3578)] = 80704, - [SMALL_STATE(3579)] = 80781, - [SMALL_STATE(3580)] = 80858, - [SMALL_STATE(3581)] = 80935, - [SMALL_STATE(3582)] = 80978, - [SMALL_STATE(3583)] = 81055, - [SMALL_STATE(3584)] = 81132, - [SMALL_STATE(3585)] = 81209, - [SMALL_STATE(3586)] = 81286, - [SMALL_STATE(3587)] = 81327, - [SMALL_STATE(3588)] = 81404, - [SMALL_STATE(3589)] = 81481, - [SMALL_STATE(3590)] = 81558, - [SMALL_STATE(3591)] = 81605, - [SMALL_STATE(3592)] = 81682, - [SMALL_STATE(3593)] = 81759, - [SMALL_STATE(3594)] = 81836, - [SMALL_STATE(3595)] = 81913, - [SMALL_STATE(3596)] = 81990, - [SMALL_STATE(3597)] = 82028, - [SMALL_STATE(3598)] = 82076, - [SMALL_STATE(3599)] = 82114, - [SMALL_STATE(3600)] = 82152, - [SMALL_STATE(3601)] = 82216, - [SMALL_STATE(3602)] = 82258, - [SMALL_STATE(3603)] = 82296, - [SMALL_STATE(3604)] = 82334, - [SMALL_STATE(3605)] = 82372, - [SMALL_STATE(3606)] = 82420, - [SMALL_STATE(3607)] = 82458, - [SMALL_STATE(3608)] = 82496, - [SMALL_STATE(3609)] = 82546, - [SMALL_STATE(3610)] = 82602, - [SMALL_STATE(3611)] = 82640, - [SMALL_STATE(3612)] = 82688, - [SMALL_STATE(3613)] = 82760, - [SMALL_STATE(3614)] = 82798, - [SMALL_STATE(3615)] = 82866, - [SMALL_STATE(3616)] = 82904, - [SMALL_STATE(3617)] = 82942, - [SMALL_STATE(3618)] = 83008, - [SMALL_STATE(3619)] = 83072, - [SMALL_STATE(3620)] = 83110, - [SMALL_STATE(3621)] = 83170, - [SMALL_STATE(3622)] = 83222, - [SMALL_STATE(3623)] = 83262, - [SMALL_STATE(3624)] = 83324, - [SMALL_STATE(3625)] = 83362, - [SMALL_STATE(3626)] = 83402, - [SMALL_STATE(3627)] = 83440, - [SMALL_STATE(3628)] = 83478, - [SMALL_STATE(3629)] = 83518, - [SMALL_STATE(3630)] = 83556, - [SMALL_STATE(3631)] = 83594, - [SMALL_STATE(3632)] = 83632, - [SMALL_STATE(3633)] = 83670, - [SMALL_STATE(3634)] = 83708, - [SMALL_STATE(3635)] = 83778, - [SMALL_STATE(3636)] = 83844, - [SMALL_STATE(3637)] = 83884, - [SMALL_STATE(3638)] = 83922, - [SMALL_STATE(3639)] = 83972, - [SMALL_STATE(3640)] = 84028, - [SMALL_STATE(3641)] = 84076, - [SMALL_STATE(3642)] = 84148, - [SMALL_STATE(3643)] = 84216, - [SMALL_STATE(3644)] = 84282, - [SMALL_STATE(3645)] = 84346, - [SMALL_STATE(3646)] = 84406, - [SMALL_STATE(3647)] = 84458, - [SMALL_STATE(3648)] = 84496, - [SMALL_STATE(3649)] = 84534, - [SMALL_STATE(3650)] = 84572, - [SMALL_STATE(3651)] = 84610, - [SMALL_STATE(3652)] = 84648, - [SMALL_STATE(3653)] = 84686, - [SMALL_STATE(3654)] = 84724, - [SMALL_STATE(3655)] = 84762, - [SMALL_STATE(3656)] = 84800, - [SMALL_STATE(3657)] = 84864, - [SMALL_STATE(3658)] = 84902, - [SMALL_STATE(3659)] = 84940, - [SMALL_STATE(3660)] = 85002, - [SMALL_STATE(3661)] = 85040, - [SMALL_STATE(3662)] = 85098, - [SMALL_STATE(3663)] = 85154, - [SMALL_STATE(3664)] = 85192, - [SMALL_STATE(3665)] = 85258, - [SMALL_STATE(3666)] = 85296, - [SMALL_STATE(3667)] = 85348, - [SMALL_STATE(3668)] = 85386, - [SMALL_STATE(3669)] = 85424, - [SMALL_STATE(3670)] = 85462, - [SMALL_STATE(3671)] = 85500, - [SMALL_STATE(3672)] = 85538, - [SMALL_STATE(3673)] = 85596, - [SMALL_STATE(3674)] = 85634, - [SMALL_STATE(3675)] = 85672, - [SMALL_STATE(3676)] = 85710, - [SMALL_STATE(3677)] = 85748, - [SMALL_STATE(3678)] = 85786, - [SMALL_STATE(3679)] = 85824, - [SMALL_STATE(3680)] = 85862, - [SMALL_STATE(3681)] = 85900, - [SMALL_STATE(3682)] = 85938, - [SMALL_STATE(3683)] = 85990, - [SMALL_STATE(3684)] = 86028, - [SMALL_STATE(3685)] = 86072, - [SMALL_STATE(3686)] = 86122, - [SMALL_STATE(3687)] = 86160, - [SMALL_STATE(3688)] = 86210, - [SMALL_STATE(3689)] = 86266, - [SMALL_STATE(3690)] = 86304, - [SMALL_STATE(3691)] = 86342, - [SMALL_STATE(3692)] = 86380, - [SMALL_STATE(3693)] = 86418, - [SMALL_STATE(3694)] = 86488, - [SMALL_STATE(3695)] = 86526, - [SMALL_STATE(3696)] = 86563, - [SMALL_STATE(3697)] = 86600, - [SMALL_STATE(3698)] = 86637, - [SMALL_STATE(3699)] = 86674, - [SMALL_STATE(3700)] = 86711, - [SMALL_STATE(3701)] = 86748, - [SMALL_STATE(3702)] = 86785, - [SMALL_STATE(3703)] = 86822, - [SMALL_STATE(3704)] = 86859, - [SMALL_STATE(3705)] = 86896, - [SMALL_STATE(3706)] = 86933, - [SMALL_STATE(3707)] = 86970, - [SMALL_STATE(3708)] = 87007, - [SMALL_STATE(3709)] = 87044, - [SMALL_STATE(3710)] = 87081, - [SMALL_STATE(3711)] = 87118, - [SMALL_STATE(3712)] = 87155, - [SMALL_STATE(3713)] = 87192, - [SMALL_STATE(3714)] = 87229, - [SMALL_STATE(3715)] = 87266, - [SMALL_STATE(3716)] = 87303, - [SMALL_STATE(3717)] = 87340, - [SMALL_STATE(3718)] = 87377, - [SMALL_STATE(3719)] = 87414, - [SMALL_STATE(3720)] = 87451, - [SMALL_STATE(3721)] = 87488, - [SMALL_STATE(3722)] = 87525, - [SMALL_STATE(3723)] = 87562, - [SMALL_STATE(3724)] = 87599, - [SMALL_STATE(3725)] = 87636, - [SMALL_STATE(3726)] = 87673, - [SMALL_STATE(3727)] = 87710, - [SMALL_STATE(3728)] = 87747, - [SMALL_STATE(3729)] = 87784, - [SMALL_STATE(3730)] = 87821, - [SMALL_STATE(3731)] = 87858, - [SMALL_STATE(3732)] = 87895, - [SMALL_STATE(3733)] = 87932, - [SMALL_STATE(3734)] = 87969, - [SMALL_STATE(3735)] = 88006, - [SMALL_STATE(3736)] = 88043, - [SMALL_STATE(3737)] = 88080, - [SMALL_STATE(3738)] = 88117, - [SMALL_STATE(3739)] = 88154, - [SMALL_STATE(3740)] = 88191, - [SMALL_STATE(3741)] = 88228, - [SMALL_STATE(3742)] = 88265, - [SMALL_STATE(3743)] = 88302, - [SMALL_STATE(3744)] = 88339, - [SMALL_STATE(3745)] = 88376, - [SMALL_STATE(3746)] = 88413, - [SMALL_STATE(3747)] = 88450, - [SMALL_STATE(3748)] = 88487, - [SMALL_STATE(3749)] = 88524, - [SMALL_STATE(3750)] = 88561, - [SMALL_STATE(3751)] = 88598, - [SMALL_STATE(3752)] = 88635, - [SMALL_STATE(3753)] = 88672, - [SMALL_STATE(3754)] = 88709, - [SMALL_STATE(3755)] = 88746, - [SMALL_STATE(3756)] = 88783, - [SMALL_STATE(3757)] = 88820, - [SMALL_STATE(3758)] = 88857, - [SMALL_STATE(3759)] = 88894, - [SMALL_STATE(3760)] = 88931, - [SMALL_STATE(3761)] = 88968, - [SMALL_STATE(3762)] = 89005, - [SMALL_STATE(3763)] = 89042, - [SMALL_STATE(3764)] = 89079, - [SMALL_STATE(3765)] = 89116, - [SMALL_STATE(3766)] = 89153, - [SMALL_STATE(3767)] = 89190, - [SMALL_STATE(3768)] = 89227, - [SMALL_STATE(3769)] = 89264, - [SMALL_STATE(3770)] = 89301, - [SMALL_STATE(3771)] = 89338, - [SMALL_STATE(3772)] = 89375, - [SMALL_STATE(3773)] = 89412, - [SMALL_STATE(3774)] = 89449, - [SMALL_STATE(3775)] = 89486, - [SMALL_STATE(3776)] = 89523, - [SMALL_STATE(3777)] = 89560, - [SMALL_STATE(3778)] = 89597, - [SMALL_STATE(3779)] = 89634, - [SMALL_STATE(3780)] = 89671, - [SMALL_STATE(3781)] = 89741, - [SMALL_STATE(3782)] = 89811, - [SMALL_STATE(3783)] = 89844, - [SMALL_STATE(3784)] = 89869, - [SMALL_STATE(3785)] = 89902, - [SMALL_STATE(3786)] = 89924, - [SMALL_STATE(3787)] = 89957, - [SMALL_STATE(3788)] = 89978, - [SMALL_STATE(3789)] = 89999, - [SMALL_STATE(3790)] = 90020, - [SMALL_STATE(3791)] = 90041, - [SMALL_STATE(3792)] = 90062, - [SMALL_STATE(3793)] = 90083, - [SMALL_STATE(3794)] = 90116, - [SMALL_STATE(3795)] = 90137, - [SMALL_STATE(3796)] = 90158, - [SMALL_STATE(3797)] = 90179, - [SMALL_STATE(3798)] = 90200, - [SMALL_STATE(3799)] = 90221, - [SMALL_STATE(3800)] = 90242, - [SMALL_STATE(3801)] = 90267, - [SMALL_STATE(3802)] = 90288, - [SMALL_STATE(3803)] = 90309, - [SMALL_STATE(3804)] = 90330, - [SMALL_STATE(3805)] = 90351, - [SMALL_STATE(3806)] = 90372, - [SMALL_STATE(3807)] = 90393, - [SMALL_STATE(3808)] = 90414, - [SMALL_STATE(3809)] = 90447, - [SMALL_STATE(3810)] = 90468, - [SMALL_STATE(3811)] = 90489, - [SMALL_STATE(3812)] = 90522, - [SMALL_STATE(3813)] = 90552, - [SMALL_STATE(3814)] = 90582, - [SMALL_STATE(3815)] = 90612, - [SMALL_STATE(3816)] = 90634, - [SMALL_STATE(3817)] = 90656, - [SMALL_STATE(3818)] = 90680, - [SMALL_STATE(3819)] = 90710, - [SMALL_STATE(3820)] = 90729, - [SMALL_STATE(3821)] = 90748, - [SMALL_STATE(3822)] = 90767, - [SMALL_STATE(3823)] = 90786, - [SMALL_STATE(3824)] = 90805, - [SMALL_STATE(3825)] = 90824, - [SMALL_STATE(3826)] = 90843, - [SMALL_STATE(3827)] = 90862, - [SMALL_STATE(3828)] = 90881, - [SMALL_STATE(3829)] = 90900, - [SMALL_STATE(3830)] = 90919, - [SMALL_STATE(3831)] = 90938, - [SMALL_STATE(3832)] = 90957, - [SMALL_STATE(3833)] = 90976, - [SMALL_STATE(3834)] = 90997, - [SMALL_STATE(3835)] = 91016, - [SMALL_STATE(3836)] = 91035, - [SMALL_STATE(3837)] = 91054, - [SMALL_STATE(3838)] = 91073, - [SMALL_STATE(3839)] = 91092, - [SMALL_STATE(3840)] = 91111, - [SMALL_STATE(3841)] = 91130, - [SMALL_STATE(3842)] = 91149, - [SMALL_STATE(3843)] = 91168, - [SMALL_STATE(3844)] = 91187, - [SMALL_STATE(3845)] = 91206, - [SMALL_STATE(3846)] = 91227, - [SMALL_STATE(3847)] = 91246, - [SMALL_STATE(3848)] = 91265, - [SMALL_STATE(3849)] = 91284, - [SMALL_STATE(3850)] = 91303, - [SMALL_STATE(3851)] = 91322, - [SMALL_STATE(3852)] = 91341, - [SMALL_STATE(3853)] = 91360, - [SMALL_STATE(3854)] = 91379, - [SMALL_STATE(3855)] = 91398, - [SMALL_STATE(3856)] = 91417, - [SMALL_STATE(3857)] = 91437, - [SMALL_STATE(3858)] = 91456, - [SMALL_STATE(3859)] = 91475, - [SMALL_STATE(3860)] = 91492, - [SMALL_STATE(3861)] = 91515, - [SMALL_STATE(3862)] = 91534, - [SMALL_STATE(3863)] = 91551, - [SMALL_STATE(3864)] = 91577, - [SMALL_STATE(3865)] = 91597, - [SMALL_STATE(3866)] = 91619, - [SMALL_STATE(3867)] = 91641, - [SMALL_STATE(3868)] = 91663, - [SMALL_STATE(3869)] = 91683, - [SMALL_STATE(3870)] = 91705, - [SMALL_STATE(3871)] = 91721, - [SMALL_STATE(3872)] = 91747, - [SMALL_STATE(3873)] = 91773, - [SMALL_STATE(3874)] = 91799, - [SMALL_STATE(3875)] = 91825, - [SMALL_STATE(3876)] = 91847, - [SMALL_STATE(3877)] = 91873, - [SMALL_STATE(3878)] = 91899, - [SMALL_STATE(3879)] = 91925, - [SMALL_STATE(3880)] = 91951, - [SMALL_STATE(3881)] = 91973, - [SMALL_STATE(3882)] = 91989, - [SMALL_STATE(3883)] = 92015, - [SMALL_STATE(3884)] = 92037, - [SMALL_STATE(3885)] = 92063, - [SMALL_STATE(3886)] = 92085, - [SMALL_STATE(3887)] = 92107, - [SMALL_STATE(3888)] = 92129, - [SMALL_STATE(3889)] = 92151, - [SMALL_STATE(3890)] = 92177, - [SMALL_STATE(3891)] = 92203, - [SMALL_STATE(3892)] = 92229, - [SMALL_STATE(3893)] = 92251, - [SMALL_STATE(3894)] = 92274, - [SMALL_STATE(3895)] = 92297, - [SMALL_STATE(3896)] = 92316, - [SMALL_STATE(3897)] = 92339, - [SMALL_STATE(3898)] = 92364, - [SMALL_STATE(3899)] = 92387, - [SMALL_STATE(3900)] = 92401, - [SMALL_STATE(3901)] = 92415, - [SMALL_STATE(3902)] = 92429, - [SMALL_STATE(3903)] = 92443, - [SMALL_STATE(3904)] = 92457, - [SMALL_STATE(3905)] = 92471, - [SMALL_STATE(3906)] = 92485, - [SMALL_STATE(3907)] = 92499, - [SMALL_STATE(3908)] = 92513, - [SMALL_STATE(3909)] = 92527, - [SMALL_STATE(3910)] = 92541, - [SMALL_STATE(3911)] = 92555, - [SMALL_STATE(3912)] = 92569, - [SMALL_STATE(3913)] = 92583, - [SMALL_STATE(3914)] = 92597, - [SMALL_STATE(3915)] = 92611, - [SMALL_STATE(3916)] = 92625, - [SMALL_STATE(3917)] = 92639, - [SMALL_STATE(3918)] = 92653, - [SMALL_STATE(3919)] = 92667, - [SMALL_STATE(3920)] = 92681, - [SMALL_STATE(3921)] = 92695, - [SMALL_STATE(3922)] = 92709, - [SMALL_STATE(3923)] = 92723, - [SMALL_STATE(3924)] = 92737, - [SMALL_STATE(3925)] = 92751, - [SMALL_STATE(3926)] = 92771, - [SMALL_STATE(3927)] = 92793, - [SMALL_STATE(3928)] = 92807, - [SMALL_STATE(3929)] = 92821, - [SMALL_STATE(3930)] = 92835, - [SMALL_STATE(3931)] = 92849, - [SMALL_STATE(3932)] = 92863, - [SMALL_STATE(3933)] = 92877, - [SMALL_STATE(3934)] = 92891, - [SMALL_STATE(3935)] = 92905, - [SMALL_STATE(3936)] = 92919, - [SMALL_STATE(3937)] = 92933, - [SMALL_STATE(3938)] = 92947, - [SMALL_STATE(3939)] = 92961, - [SMALL_STATE(3940)] = 92975, - [SMALL_STATE(3941)] = 92989, - [SMALL_STATE(3942)] = 93005, - [SMALL_STATE(3943)] = 93019, - [SMALL_STATE(3944)] = 93033, - [SMALL_STATE(3945)] = 93047, - [SMALL_STATE(3946)] = 93061, - [SMALL_STATE(3947)] = 93075, - [SMALL_STATE(3948)] = 93089, - [SMALL_STATE(3949)] = 93103, - [SMALL_STATE(3950)] = 93117, - [SMALL_STATE(3951)] = 93131, - [SMALL_STATE(3952)] = 93145, - [SMALL_STATE(3953)] = 93159, - [SMALL_STATE(3954)] = 93173, - [SMALL_STATE(3955)] = 93192, - [SMALL_STATE(3956)] = 93211, - [SMALL_STATE(3957)] = 93230, - [SMALL_STATE(3958)] = 93249, - [SMALL_STATE(3959)] = 93268, - [SMALL_STATE(3960)] = 93287, - [SMALL_STATE(3961)] = 93306, - [SMALL_STATE(3962)] = 93325, - [SMALL_STATE(3963)] = 93344, - [SMALL_STATE(3964)] = 93361, - [SMALL_STATE(3965)] = 93380, - [SMALL_STATE(3966)] = 93399, - [SMALL_STATE(3967)] = 93418, - [SMALL_STATE(3968)] = 93437, - [SMALL_STATE(3969)] = 93456, - [SMALL_STATE(3970)] = 93475, - [SMALL_STATE(3971)] = 93494, - [SMALL_STATE(3972)] = 93513, - [SMALL_STATE(3973)] = 93532, - [SMALL_STATE(3974)] = 93551, - [SMALL_STATE(3975)] = 93570, - [SMALL_STATE(3976)] = 93589, - [SMALL_STATE(3977)] = 93608, - [SMALL_STATE(3978)] = 93627, - [SMALL_STATE(3979)] = 93646, - [SMALL_STATE(3980)] = 93665, - [SMALL_STATE(3981)] = 93684, - [SMALL_STATE(3982)] = 93703, - [SMALL_STATE(3983)] = 93722, - [SMALL_STATE(3984)] = 93741, - [SMALL_STATE(3985)] = 93760, - [SMALL_STATE(3986)] = 93779, - [SMALL_STATE(3987)] = 93798, - [SMALL_STATE(3988)] = 93817, - [SMALL_STATE(3989)] = 93836, - [SMALL_STATE(3990)] = 93855, - [SMALL_STATE(3991)] = 93874, - [SMALL_STATE(3992)] = 93893, - [SMALL_STATE(3993)] = 93912, - [SMALL_STATE(3994)] = 93931, - [SMALL_STATE(3995)] = 93950, - [SMALL_STATE(3996)] = 93969, - [SMALL_STATE(3997)] = 93988, - [SMALL_STATE(3998)] = 94007, - [SMALL_STATE(3999)] = 94020, - [SMALL_STATE(4000)] = 94039, - [SMALL_STATE(4001)] = 94058, - [SMALL_STATE(4002)] = 94077, - [SMALL_STATE(4003)] = 94096, - [SMALL_STATE(4004)] = 94115, - [SMALL_STATE(4005)] = 94134, - [SMALL_STATE(4006)] = 94153, - [SMALL_STATE(4007)] = 94172, - [SMALL_STATE(4008)] = 94191, - [SMALL_STATE(4009)] = 94210, - [SMALL_STATE(4010)] = 94229, - [SMALL_STATE(4011)] = 94248, - [SMALL_STATE(4012)] = 94267, - [SMALL_STATE(4013)] = 94286, - [SMALL_STATE(4014)] = 94305, - [SMALL_STATE(4015)] = 94324, - [SMALL_STATE(4016)] = 94343, - [SMALL_STATE(4017)] = 94362, - [SMALL_STATE(4018)] = 94381, - [SMALL_STATE(4019)] = 94400, - [SMALL_STATE(4020)] = 94419, - [SMALL_STATE(4021)] = 94438, - [SMALL_STATE(4022)] = 94457, - [SMALL_STATE(4023)] = 94476, - [SMALL_STATE(4024)] = 94495, - [SMALL_STATE(4025)] = 94514, - [SMALL_STATE(4026)] = 94533, - [SMALL_STATE(4027)] = 94552, - [SMALL_STATE(4028)] = 94571, - [SMALL_STATE(4029)] = 94590, - [SMALL_STATE(4030)] = 94609, - [SMALL_STATE(4031)] = 94628, - [SMALL_STATE(4032)] = 94647, - [SMALL_STATE(4033)] = 94666, - [SMALL_STATE(4034)] = 94685, - [SMALL_STATE(4035)] = 94704, - [SMALL_STATE(4036)] = 94723, - [SMALL_STATE(4037)] = 94742, - [SMALL_STATE(4038)] = 94761, - [SMALL_STATE(4039)] = 94780, - [SMALL_STATE(4040)] = 94799, - [SMALL_STATE(4041)] = 94818, - [SMALL_STATE(4042)] = 94837, - [SMALL_STATE(4043)] = 94856, - [SMALL_STATE(4044)] = 94875, - [SMALL_STATE(4045)] = 94894, - [SMALL_STATE(4046)] = 94913, - [SMALL_STATE(4047)] = 94932, - [SMALL_STATE(4048)] = 94951, - [SMALL_STATE(4049)] = 94970, - [SMALL_STATE(4050)] = 94989, - [SMALL_STATE(4051)] = 95008, - [SMALL_STATE(4052)] = 95027, - [SMALL_STATE(4053)] = 95046, - [SMALL_STATE(4054)] = 95065, - [SMALL_STATE(4055)] = 95084, - [SMALL_STATE(4056)] = 95103, - [SMALL_STATE(4057)] = 95122, - [SMALL_STATE(4058)] = 95141, - [SMALL_STATE(4059)] = 95158, - [SMALL_STATE(4060)] = 95177, - [SMALL_STATE(4061)] = 95196, - [SMALL_STATE(4062)] = 95215, - [SMALL_STATE(4063)] = 95234, - [SMALL_STATE(4064)] = 95253, - [SMALL_STATE(4065)] = 95272, - [SMALL_STATE(4066)] = 95291, - [SMALL_STATE(4067)] = 95310, - [SMALL_STATE(4068)] = 95329, - [SMALL_STATE(4069)] = 95348, - [SMALL_STATE(4070)] = 95367, - [SMALL_STATE(4071)] = 95386, - [SMALL_STATE(4072)] = 95405, - [SMALL_STATE(4073)] = 95424, - [SMALL_STATE(4074)] = 95443, - [SMALL_STATE(4075)] = 95462, - [SMALL_STATE(4076)] = 95481, - [SMALL_STATE(4077)] = 95500, - [SMALL_STATE(4078)] = 95519, - [SMALL_STATE(4079)] = 95538, - [SMALL_STATE(4080)] = 95557, - [SMALL_STATE(4081)] = 95576, - [SMALL_STATE(4082)] = 95595, - [SMALL_STATE(4083)] = 95614, - [SMALL_STATE(4084)] = 95633, - [SMALL_STATE(4085)] = 95652, - [SMALL_STATE(4086)] = 95671, - [SMALL_STATE(4087)] = 95690, - [SMALL_STATE(4088)] = 95709, - [SMALL_STATE(4089)] = 95728, - [SMALL_STATE(4090)] = 95747, - [SMALL_STATE(4091)] = 95766, - [SMALL_STATE(4092)] = 95785, - [SMALL_STATE(4093)] = 95804, - [SMALL_STATE(4094)] = 95823, - [SMALL_STATE(4095)] = 95842, - [SMALL_STATE(4096)] = 95861, - [SMALL_STATE(4097)] = 95880, - [SMALL_STATE(4098)] = 95899, - [SMALL_STATE(4099)] = 95918, - [SMALL_STATE(4100)] = 95937, - [SMALL_STATE(4101)] = 95956, - [SMALL_STATE(4102)] = 95975, - [SMALL_STATE(4103)] = 95994, - [SMALL_STATE(4104)] = 96013, - [SMALL_STATE(4105)] = 96032, - [SMALL_STATE(4106)] = 96051, - [SMALL_STATE(4107)] = 96070, - [SMALL_STATE(4108)] = 96089, - [SMALL_STATE(4109)] = 96108, - [SMALL_STATE(4110)] = 96127, - [SMALL_STATE(4111)] = 96146, - [SMALL_STATE(4112)] = 96165, - [SMALL_STATE(4113)] = 96184, - [SMALL_STATE(4114)] = 96203, - [SMALL_STATE(4115)] = 96222, - [SMALL_STATE(4116)] = 96241, - [SMALL_STATE(4117)] = 96260, - [SMALL_STATE(4118)] = 96279, - [SMALL_STATE(4119)] = 96298, - [SMALL_STATE(4120)] = 96317, - [SMALL_STATE(4121)] = 96336, - [SMALL_STATE(4122)] = 96355, - [SMALL_STATE(4123)] = 96374, - [SMALL_STATE(4124)] = 96393, - [SMALL_STATE(4125)] = 96412, - [SMALL_STATE(4126)] = 96431, - [SMALL_STATE(4127)] = 96450, - [SMALL_STATE(4128)] = 96469, - [SMALL_STATE(4129)] = 96488, - [SMALL_STATE(4130)] = 96507, - [SMALL_STATE(4131)] = 96526, - [SMALL_STATE(4132)] = 96545, - [SMALL_STATE(4133)] = 96564, - [SMALL_STATE(4134)] = 96583, - [SMALL_STATE(4135)] = 96602, - [SMALL_STATE(4136)] = 96621, - [SMALL_STATE(4137)] = 96640, - [SMALL_STATE(4138)] = 96659, - [SMALL_STATE(4139)] = 96678, - [SMALL_STATE(4140)] = 96697, - [SMALL_STATE(4141)] = 96716, - [SMALL_STATE(4142)] = 96735, - [SMALL_STATE(4143)] = 96754, - [SMALL_STATE(4144)] = 96773, - [SMALL_STATE(4145)] = 96792, - [SMALL_STATE(4146)] = 96811, - [SMALL_STATE(4147)] = 96830, - [SMALL_STATE(4148)] = 96849, - [SMALL_STATE(4149)] = 96868, - [SMALL_STATE(4150)] = 96887, - [SMALL_STATE(4151)] = 96906, - [SMALL_STATE(4152)] = 96925, - [SMALL_STATE(4153)] = 96944, - [SMALL_STATE(4154)] = 96963, - [SMALL_STATE(4155)] = 96982, - [SMALL_STATE(4156)] = 97001, - [SMALL_STATE(4157)] = 97020, - [SMALL_STATE(4158)] = 97039, - [SMALL_STATE(4159)] = 97058, - [SMALL_STATE(4160)] = 97077, - [SMALL_STATE(4161)] = 97096, - [SMALL_STATE(4162)] = 97115, - [SMALL_STATE(4163)] = 97134, - [SMALL_STATE(4164)] = 97153, - [SMALL_STATE(4165)] = 97172, - [SMALL_STATE(4166)] = 97191, - [SMALL_STATE(4167)] = 97210, - [SMALL_STATE(4168)] = 97229, - [SMALL_STATE(4169)] = 97248, - [SMALL_STATE(4170)] = 97267, - [SMALL_STATE(4171)] = 97286, - [SMALL_STATE(4172)] = 97305, - [SMALL_STATE(4173)] = 97324, - [SMALL_STATE(4174)] = 97343, - [SMALL_STATE(4175)] = 97362, - [SMALL_STATE(4176)] = 97381, - [SMALL_STATE(4177)] = 97400, - [SMALL_STATE(4178)] = 97419, - [SMALL_STATE(4179)] = 97438, - [SMALL_STATE(4180)] = 97457, - [SMALL_STATE(4181)] = 97476, - [SMALL_STATE(4182)] = 97495, - [SMALL_STATE(4183)] = 97514, - [SMALL_STATE(4184)] = 97533, - [SMALL_STATE(4185)] = 97552, - [SMALL_STATE(4186)] = 97571, - [SMALL_STATE(4187)] = 97590, - [SMALL_STATE(4188)] = 97609, - [SMALL_STATE(4189)] = 97628, - [SMALL_STATE(4190)] = 97647, - [SMALL_STATE(4191)] = 97666, - [SMALL_STATE(4192)] = 97685, - [SMALL_STATE(4193)] = 97704, - [SMALL_STATE(4194)] = 97723, - [SMALL_STATE(4195)] = 97742, - [SMALL_STATE(4196)] = 97761, - [SMALL_STATE(4197)] = 97780, - [SMALL_STATE(4198)] = 97799, - [SMALL_STATE(4199)] = 97818, - [SMALL_STATE(4200)] = 97837, - [SMALL_STATE(4201)] = 97856, - [SMALL_STATE(4202)] = 97875, - [SMALL_STATE(4203)] = 97894, - [SMALL_STATE(4204)] = 97913, - [SMALL_STATE(4205)] = 97932, - [SMALL_STATE(4206)] = 97951, - [SMALL_STATE(4207)] = 97967, - [SMALL_STATE(4208)] = 97983, - [SMALL_STATE(4209)] = 97999, - [SMALL_STATE(4210)] = 98015, - [SMALL_STATE(4211)] = 98031, - [SMALL_STATE(4212)] = 98047, - [SMALL_STATE(4213)] = 98063, - [SMALL_STATE(4214)] = 98079, - [SMALL_STATE(4215)] = 98095, - [SMALL_STATE(4216)] = 98111, - [SMALL_STATE(4217)] = 98127, - [SMALL_STATE(4218)] = 98143, - [SMALL_STATE(4219)] = 98159, - [SMALL_STATE(4220)] = 98175, - [SMALL_STATE(4221)] = 98191, - [SMALL_STATE(4222)] = 98207, - [SMALL_STATE(4223)] = 98223, - [SMALL_STATE(4224)] = 98239, - [SMALL_STATE(4225)] = 98255, - [SMALL_STATE(4226)] = 98271, - [SMALL_STATE(4227)] = 98287, - [SMALL_STATE(4228)] = 98303, - [SMALL_STATE(4229)] = 98319, - [SMALL_STATE(4230)] = 98335, - [SMALL_STATE(4231)] = 98351, - [SMALL_STATE(4232)] = 98363, - [SMALL_STATE(4233)] = 98379, - [SMALL_STATE(4234)] = 98395, - [SMALL_STATE(4235)] = 98411, - [SMALL_STATE(4236)] = 98427, - [SMALL_STATE(4237)] = 98443, - [SMALL_STATE(4238)] = 98459, - [SMALL_STATE(4239)] = 98475, - [SMALL_STATE(4240)] = 98491, - [SMALL_STATE(4241)] = 98507, - [SMALL_STATE(4242)] = 98523, - [SMALL_STATE(4243)] = 98539, - [SMALL_STATE(4244)] = 98555, - [SMALL_STATE(4245)] = 98571, - [SMALL_STATE(4246)] = 98587, - [SMALL_STATE(4247)] = 98603, - [SMALL_STATE(4248)] = 98619, - [SMALL_STATE(4249)] = 98635, - [SMALL_STATE(4250)] = 98651, - [SMALL_STATE(4251)] = 98667, - [SMALL_STATE(4252)] = 98683, - [SMALL_STATE(4253)] = 98699, - [SMALL_STATE(4254)] = 98715, - [SMALL_STATE(4255)] = 98731, - [SMALL_STATE(4256)] = 98747, - [SMALL_STATE(4257)] = 98763, - [SMALL_STATE(4258)] = 98779, - [SMALL_STATE(4259)] = 98795, - [SMALL_STATE(4260)] = 98811, - [SMALL_STATE(4261)] = 98827, - [SMALL_STATE(4262)] = 98843, - [SMALL_STATE(4263)] = 98859, - [SMALL_STATE(4264)] = 98875, - [SMALL_STATE(4265)] = 98891, - [SMALL_STATE(4266)] = 98907, - [SMALL_STATE(4267)] = 98923, - [SMALL_STATE(4268)] = 98939, - [SMALL_STATE(4269)] = 98955, - [SMALL_STATE(4270)] = 98971, - [SMALL_STATE(4271)] = 98987, - [SMALL_STATE(4272)] = 99003, - [SMALL_STATE(4273)] = 99019, - [SMALL_STATE(4274)] = 99035, - [SMALL_STATE(4275)] = 99051, - [SMALL_STATE(4276)] = 99067, - [SMALL_STATE(4277)] = 99083, - [SMALL_STATE(4278)] = 99099, - [SMALL_STATE(4279)] = 99115, - [SMALL_STATE(4280)] = 99131, - [SMALL_STATE(4281)] = 99147, - [SMALL_STATE(4282)] = 99163, - [SMALL_STATE(4283)] = 99179, - [SMALL_STATE(4284)] = 99195, - [SMALL_STATE(4285)] = 99211, - [SMALL_STATE(4286)] = 99227, - [SMALL_STATE(4287)] = 99243, - [SMALL_STATE(4288)] = 99259, - [SMALL_STATE(4289)] = 99275, - [SMALL_STATE(4290)] = 99291, - [SMALL_STATE(4291)] = 99307, - [SMALL_STATE(4292)] = 99323, - [SMALL_STATE(4293)] = 99339, - [SMALL_STATE(4294)] = 99355, - [SMALL_STATE(4295)] = 99369, - [SMALL_STATE(4296)] = 99385, - [SMALL_STATE(4297)] = 99401, - [SMALL_STATE(4298)] = 99415, - [SMALL_STATE(4299)] = 99431, - [SMALL_STATE(4300)] = 99447, - [SMALL_STATE(4301)] = 99463, - [SMALL_STATE(4302)] = 99479, - [SMALL_STATE(4303)] = 99495, - [SMALL_STATE(4304)] = 99509, - [SMALL_STATE(4305)] = 99525, - [SMALL_STATE(4306)] = 99541, - [SMALL_STATE(4307)] = 99557, - [SMALL_STATE(4308)] = 99573, - [SMALL_STATE(4309)] = 99587, - [SMALL_STATE(4310)] = 99603, - [SMALL_STATE(4311)] = 99619, - [SMALL_STATE(4312)] = 99635, - [SMALL_STATE(4313)] = 99651, - [SMALL_STATE(4314)] = 99665, - [SMALL_STATE(4315)] = 99681, - [SMALL_STATE(4316)] = 99697, - [SMALL_STATE(4317)] = 99713, - [SMALL_STATE(4318)] = 99729, - [SMALL_STATE(4319)] = 99745, - [SMALL_STATE(4320)] = 99761, - [SMALL_STATE(4321)] = 99777, - [SMALL_STATE(4322)] = 99793, - [SMALL_STATE(4323)] = 99809, - [SMALL_STATE(4324)] = 99825, - [SMALL_STATE(4325)] = 99841, - [SMALL_STATE(4326)] = 99857, - [SMALL_STATE(4327)] = 99873, - [SMALL_STATE(4328)] = 99889, - [SMALL_STATE(4329)] = 99905, - [SMALL_STATE(4330)] = 99921, - [SMALL_STATE(4331)] = 99937, - [SMALL_STATE(4332)] = 99953, - [SMALL_STATE(4333)] = 99969, - [SMALL_STATE(4334)] = 99985, - [SMALL_STATE(4335)] = 100001, - [SMALL_STATE(4336)] = 100017, - [SMALL_STATE(4337)] = 100033, - [SMALL_STATE(4338)] = 100049, - [SMALL_STATE(4339)] = 100065, - [SMALL_STATE(4340)] = 100081, - [SMALL_STATE(4341)] = 100097, - [SMALL_STATE(4342)] = 100113, - [SMALL_STATE(4343)] = 100129, - [SMALL_STATE(4344)] = 100145, - [SMALL_STATE(4345)] = 100161, - [SMALL_STATE(4346)] = 100177, - [SMALL_STATE(4347)] = 100193, - [SMALL_STATE(4348)] = 100209, - [SMALL_STATE(4349)] = 100225, - [SMALL_STATE(4350)] = 100241, - [SMALL_STATE(4351)] = 100257, - [SMALL_STATE(4352)] = 100273, - [SMALL_STATE(4353)] = 100283, - [SMALL_STATE(4354)] = 100299, - [SMALL_STATE(4355)] = 100315, - [SMALL_STATE(4356)] = 100329, - [SMALL_STATE(4357)] = 100345, - [SMALL_STATE(4358)] = 100361, - [SMALL_STATE(4359)] = 100377, - [SMALL_STATE(4360)] = 100393, - [SMALL_STATE(4361)] = 100409, - [SMALL_STATE(4362)] = 100425, - [SMALL_STATE(4363)] = 100441, - [SMALL_STATE(4364)] = 100457, - [SMALL_STATE(4365)] = 100473, - [SMALL_STATE(4366)] = 100489, - [SMALL_STATE(4367)] = 100505, - [SMALL_STATE(4368)] = 100521, - [SMALL_STATE(4369)] = 100537, - [SMALL_STATE(4370)] = 100553, - [SMALL_STATE(4371)] = 100569, - [SMALL_STATE(4372)] = 100585, - [SMALL_STATE(4373)] = 100601, - [SMALL_STATE(4374)] = 100617, - [SMALL_STATE(4375)] = 100633, - [SMALL_STATE(4376)] = 100649, - [SMALL_STATE(4377)] = 100665, - [SMALL_STATE(4378)] = 100681, - [SMALL_STATE(4379)] = 100697, - [SMALL_STATE(4380)] = 100713, - [SMALL_STATE(4381)] = 100729, - [SMALL_STATE(4382)] = 100745, - [SMALL_STATE(4383)] = 100761, - [SMALL_STATE(4384)] = 100777, - [SMALL_STATE(4385)] = 100793, - [SMALL_STATE(4386)] = 100809, - [SMALL_STATE(4387)] = 100825, - [SMALL_STATE(4388)] = 100841, - [SMALL_STATE(4389)] = 100857, - [SMALL_STATE(4390)] = 100873, - [SMALL_STATE(4391)] = 100889, - [SMALL_STATE(4392)] = 100905, - [SMALL_STATE(4393)] = 100921, - [SMALL_STATE(4394)] = 100937, - [SMALL_STATE(4395)] = 100953, - [SMALL_STATE(4396)] = 100969, - [SMALL_STATE(4397)] = 100985, - [SMALL_STATE(4398)] = 101001, - [SMALL_STATE(4399)] = 101017, - [SMALL_STATE(4400)] = 101033, - [SMALL_STATE(4401)] = 101049, - [SMALL_STATE(4402)] = 101059, - [SMALL_STATE(4403)] = 101069, - [SMALL_STATE(4404)] = 101085, - [SMALL_STATE(4405)] = 101099, - [SMALL_STATE(4406)] = 101115, - [SMALL_STATE(4407)] = 101131, - [SMALL_STATE(4408)] = 101145, - [SMALL_STATE(4409)] = 101161, - [SMALL_STATE(4410)] = 101177, - [SMALL_STATE(4411)] = 101191, - [SMALL_STATE(4412)] = 101207, - [SMALL_STATE(4413)] = 101223, - [SMALL_STATE(4414)] = 101237, - [SMALL_STATE(4415)] = 101253, - [SMALL_STATE(4416)] = 101269, - [SMALL_STATE(4417)] = 101285, - [SMALL_STATE(4418)] = 101301, - [SMALL_STATE(4419)] = 101317, - [SMALL_STATE(4420)] = 101333, - [SMALL_STATE(4421)] = 101349, - [SMALL_STATE(4422)] = 101365, - [SMALL_STATE(4423)] = 101381, - [SMALL_STATE(4424)] = 101397, - [SMALL_STATE(4425)] = 101413, - [SMALL_STATE(4426)] = 101429, - [SMALL_STATE(4427)] = 101445, - [SMALL_STATE(4428)] = 101461, - [SMALL_STATE(4429)] = 101477, - [SMALL_STATE(4430)] = 101491, - [SMALL_STATE(4431)] = 101507, - [SMALL_STATE(4432)] = 101523, - [SMALL_STATE(4433)] = 101539, - [SMALL_STATE(4434)] = 101555, - [SMALL_STATE(4435)] = 101571, - [SMALL_STATE(4436)] = 101587, - [SMALL_STATE(4437)] = 101603, - [SMALL_STATE(4438)] = 101619, - [SMALL_STATE(4439)] = 101635, - [SMALL_STATE(4440)] = 101651, - [SMALL_STATE(4441)] = 101667, - [SMALL_STATE(4442)] = 101683, - [SMALL_STATE(4443)] = 101699, - [SMALL_STATE(4444)] = 101715, - [SMALL_STATE(4445)] = 101729, - [SMALL_STATE(4446)] = 101745, - [SMALL_STATE(4447)] = 101761, - [SMALL_STATE(4448)] = 101777, - [SMALL_STATE(4449)] = 101793, - [SMALL_STATE(4450)] = 101809, - [SMALL_STATE(4451)] = 101825, - [SMALL_STATE(4452)] = 101841, - [SMALL_STATE(4453)] = 101857, - [SMALL_STATE(4454)] = 101873, - [SMALL_STATE(4455)] = 101889, - [SMALL_STATE(4456)] = 101905, - [SMALL_STATE(4457)] = 101921, - [SMALL_STATE(4458)] = 101937, - [SMALL_STATE(4459)] = 101953, - [SMALL_STATE(4460)] = 101969, - [SMALL_STATE(4461)] = 101985, - [SMALL_STATE(4462)] = 102001, - [SMALL_STATE(4463)] = 102017, - [SMALL_STATE(4464)] = 102033, - [SMALL_STATE(4465)] = 102049, - [SMALL_STATE(4466)] = 102065, - [SMALL_STATE(4467)] = 102081, - [SMALL_STATE(4468)] = 102095, - [SMALL_STATE(4469)] = 102111, - [SMALL_STATE(4470)] = 102127, - [SMALL_STATE(4471)] = 102143, - [SMALL_STATE(4472)] = 102159, - [SMALL_STATE(4473)] = 102175, - [SMALL_STATE(4474)] = 102191, - [SMALL_STATE(4475)] = 102207, - [SMALL_STATE(4476)] = 102223, - [SMALL_STATE(4477)] = 102239, - [SMALL_STATE(4478)] = 102255, - [SMALL_STATE(4479)] = 102271, - [SMALL_STATE(4480)] = 102287, - [SMALL_STATE(4481)] = 102303, - [SMALL_STATE(4482)] = 102319, - [SMALL_STATE(4483)] = 102335, - [SMALL_STATE(4484)] = 102349, - [SMALL_STATE(4485)] = 102365, - [SMALL_STATE(4486)] = 102381, - [SMALL_STATE(4487)] = 102397, - [SMALL_STATE(4488)] = 102411, - [SMALL_STATE(4489)] = 102425, - [SMALL_STATE(4490)] = 102441, - [SMALL_STATE(4491)] = 102457, - [SMALL_STATE(4492)] = 102473, - [SMALL_STATE(4493)] = 102489, - [SMALL_STATE(4494)] = 102505, - [SMALL_STATE(4495)] = 102519, - [SMALL_STATE(4496)] = 102533, - [SMALL_STATE(4497)] = 102549, - [SMALL_STATE(4498)] = 102565, - [SMALL_STATE(4499)] = 102581, - [SMALL_STATE(4500)] = 102597, - [SMALL_STATE(4501)] = 102613, - [SMALL_STATE(4502)] = 102629, - [SMALL_STATE(4503)] = 102643, - [SMALL_STATE(4504)] = 102659, - [SMALL_STATE(4505)] = 102675, - [SMALL_STATE(4506)] = 102691, - [SMALL_STATE(4507)] = 102707, - [SMALL_STATE(4508)] = 102723, - [SMALL_STATE(4509)] = 102739, - [SMALL_STATE(4510)] = 102755, - [SMALL_STATE(4511)] = 102771, - [SMALL_STATE(4512)] = 102787, - [SMALL_STATE(4513)] = 102803, - [SMALL_STATE(4514)] = 102819, - [SMALL_STATE(4515)] = 102835, - [SMALL_STATE(4516)] = 102851, - [SMALL_STATE(4517)] = 102867, - [SMALL_STATE(4518)] = 102883, - [SMALL_STATE(4519)] = 102899, - [SMALL_STATE(4520)] = 102915, - [SMALL_STATE(4521)] = 102931, - [SMALL_STATE(4522)] = 102947, - [SMALL_STATE(4523)] = 102957, - [SMALL_STATE(4524)] = 102973, - [SMALL_STATE(4525)] = 102989, - [SMALL_STATE(4526)] = 103005, - [SMALL_STATE(4527)] = 103021, - [SMALL_STATE(4528)] = 103037, - [SMALL_STATE(4529)] = 103053, - [SMALL_STATE(4530)] = 103069, - [SMALL_STATE(4531)] = 103085, - [SMALL_STATE(4532)] = 103101, - [SMALL_STATE(4533)] = 103117, - [SMALL_STATE(4534)] = 103133, - [SMALL_STATE(4535)] = 103149, - [SMALL_STATE(4536)] = 103163, - [SMALL_STATE(4537)] = 103179, - [SMALL_STATE(4538)] = 103195, - [SMALL_STATE(4539)] = 103211, - [SMALL_STATE(4540)] = 103225, - [SMALL_STATE(4541)] = 103241, - [SMALL_STATE(4542)] = 103257, - [SMALL_STATE(4543)] = 103271, - [SMALL_STATE(4544)] = 103287, - [SMALL_STATE(4545)] = 103301, - [SMALL_STATE(4546)] = 103317, - [SMALL_STATE(4547)] = 103333, - [SMALL_STATE(4548)] = 103349, - [SMALL_STATE(4549)] = 103365, - [SMALL_STATE(4550)] = 103381, - [SMALL_STATE(4551)] = 103397, - [SMALL_STATE(4552)] = 103413, - [SMALL_STATE(4553)] = 103429, - [SMALL_STATE(4554)] = 103445, - [SMALL_STATE(4555)] = 103461, - [SMALL_STATE(4556)] = 103475, - [SMALL_STATE(4557)] = 103491, - [SMALL_STATE(4558)] = 103507, - [SMALL_STATE(4559)] = 103523, - [SMALL_STATE(4560)] = 103539, - [SMALL_STATE(4561)] = 103549, - [SMALL_STATE(4562)] = 103565, - [SMALL_STATE(4563)] = 103581, - [SMALL_STATE(4564)] = 103597, - [SMALL_STATE(4565)] = 103613, - [SMALL_STATE(4566)] = 103629, - [SMALL_STATE(4567)] = 103645, - [SMALL_STATE(4568)] = 103661, - [SMALL_STATE(4569)] = 103675, - [SMALL_STATE(4570)] = 103691, - [SMALL_STATE(4571)] = 103705, - [SMALL_STATE(4572)] = 103721, - [SMALL_STATE(4573)] = 103737, - [SMALL_STATE(4574)] = 103753, - [SMALL_STATE(4575)] = 103769, - [SMALL_STATE(4576)] = 103785, - [SMALL_STATE(4577)] = 103801, - [SMALL_STATE(4578)] = 103817, - [SMALL_STATE(4579)] = 103831, - [SMALL_STATE(4580)] = 103845, - [SMALL_STATE(4581)] = 103861, - [SMALL_STATE(4582)] = 103875, - [SMALL_STATE(4583)] = 103889, - [SMALL_STATE(4584)] = 103905, - [SMALL_STATE(4585)] = 103921, - [SMALL_STATE(4586)] = 103937, - [SMALL_STATE(4587)] = 103953, - [SMALL_STATE(4588)] = 103969, - [SMALL_STATE(4589)] = 103985, - [SMALL_STATE(4590)] = 104001, - [SMALL_STATE(4591)] = 104017, - [SMALL_STATE(4592)] = 104033, - [SMALL_STATE(4593)] = 104049, - [SMALL_STATE(4594)] = 104065, - [SMALL_STATE(4595)] = 104081, - [SMALL_STATE(4596)] = 104097, - [SMALL_STATE(4597)] = 104113, - [SMALL_STATE(4598)] = 104127, - [SMALL_STATE(4599)] = 104143, - [SMALL_STATE(4600)] = 104159, - [SMALL_STATE(4601)] = 104175, - [SMALL_STATE(4602)] = 104191, - [SMALL_STATE(4603)] = 104207, - [SMALL_STATE(4604)] = 104223, - [SMALL_STATE(4605)] = 104237, - [SMALL_STATE(4606)] = 104253, - [SMALL_STATE(4607)] = 104269, - [SMALL_STATE(4608)] = 104283, - [SMALL_STATE(4609)] = 104297, - [SMALL_STATE(4610)] = 104311, - [SMALL_STATE(4611)] = 104325, - [SMALL_STATE(4612)] = 104339, - [SMALL_STATE(4613)] = 104355, - [SMALL_STATE(4614)] = 104365, - [SMALL_STATE(4615)] = 104381, - [SMALL_STATE(4616)] = 104395, - [SMALL_STATE(4617)] = 104411, - [SMALL_STATE(4618)] = 104427, - [SMALL_STATE(4619)] = 104441, - [SMALL_STATE(4620)] = 104455, - [SMALL_STATE(4621)] = 104471, - [SMALL_STATE(4622)] = 104485, - [SMALL_STATE(4623)] = 104499, - [SMALL_STATE(4624)] = 104515, - [SMALL_STATE(4625)] = 104531, - [SMALL_STATE(4626)] = 104547, - [SMALL_STATE(4627)] = 104561, - [SMALL_STATE(4628)] = 104577, - [SMALL_STATE(4629)] = 104593, - [SMALL_STATE(4630)] = 104607, - [SMALL_STATE(4631)] = 104621, - [SMALL_STATE(4632)] = 104637, - [SMALL_STATE(4633)] = 104651, - [SMALL_STATE(4634)] = 104665, - [SMALL_STATE(4635)] = 104679, - [SMALL_STATE(4636)] = 104693, - [SMALL_STATE(4637)] = 104707, - [SMALL_STATE(4638)] = 104721, - [SMALL_STATE(4639)] = 104735, - [SMALL_STATE(4640)] = 104749, - [SMALL_STATE(4641)] = 104763, - [SMALL_STATE(4642)] = 104777, - [SMALL_STATE(4643)] = 104791, - [SMALL_STATE(4644)] = 104805, - [SMALL_STATE(4645)] = 104819, - [SMALL_STATE(4646)] = 104833, - [SMALL_STATE(4647)] = 104847, - [SMALL_STATE(4648)] = 104861, - [SMALL_STATE(4649)] = 104875, - [SMALL_STATE(4650)] = 104891, - [SMALL_STATE(4651)] = 104907, - [SMALL_STATE(4652)] = 104923, - [SMALL_STATE(4653)] = 104939, - [SMALL_STATE(4654)] = 104953, - [SMALL_STATE(4655)] = 104969, - [SMALL_STATE(4656)] = 104985, - [SMALL_STATE(4657)] = 105001, - [SMALL_STATE(4658)] = 105017, - [SMALL_STATE(4659)] = 105033, - [SMALL_STATE(4660)] = 105045, - [SMALL_STATE(4661)] = 105059, - [SMALL_STATE(4662)] = 105075, - [SMALL_STATE(4663)] = 105091, - [SMALL_STATE(4664)] = 105107, - [SMALL_STATE(4665)] = 105123, - [SMALL_STATE(4666)] = 105139, - [SMALL_STATE(4667)] = 105155, - [SMALL_STATE(4668)] = 105171, - [SMALL_STATE(4669)] = 105187, - [SMALL_STATE(4670)] = 105203, - [SMALL_STATE(4671)] = 105219, - [SMALL_STATE(4672)] = 105235, - [SMALL_STATE(4673)] = 105251, - [SMALL_STATE(4674)] = 105267, - [SMALL_STATE(4675)] = 105283, - [SMALL_STATE(4676)] = 105299, - [SMALL_STATE(4677)] = 105315, - [SMALL_STATE(4678)] = 105331, - [SMALL_STATE(4679)] = 105347, - [SMALL_STATE(4680)] = 105363, - [SMALL_STATE(4681)] = 105379, - [SMALL_STATE(4682)] = 105395, - [SMALL_STATE(4683)] = 105411, - [SMALL_STATE(4684)] = 105427, - [SMALL_STATE(4685)] = 105443, - [SMALL_STATE(4686)] = 105459, - [SMALL_STATE(4687)] = 105475, - [SMALL_STATE(4688)] = 105491, - [SMALL_STATE(4689)] = 105507, - [SMALL_STATE(4690)] = 105523, - [SMALL_STATE(4691)] = 105539, - [SMALL_STATE(4692)] = 105555, - [SMALL_STATE(4693)] = 105571, - [SMALL_STATE(4694)] = 105587, - [SMALL_STATE(4695)] = 105603, - [SMALL_STATE(4696)] = 105619, - [SMALL_STATE(4697)] = 105635, - [SMALL_STATE(4698)] = 105651, - [SMALL_STATE(4699)] = 105667, - [SMALL_STATE(4700)] = 105683, - [SMALL_STATE(4701)] = 105699, - [SMALL_STATE(4702)] = 105715, - [SMALL_STATE(4703)] = 105731, - [SMALL_STATE(4704)] = 105747, - [SMALL_STATE(4705)] = 105763, - [SMALL_STATE(4706)] = 105779, - [SMALL_STATE(4707)] = 105795, - [SMALL_STATE(4708)] = 105811, - [SMALL_STATE(4709)] = 105827, - [SMALL_STATE(4710)] = 105843, - [SMALL_STATE(4711)] = 105859, - [SMALL_STATE(4712)] = 105868, - [SMALL_STATE(4713)] = 105881, - [SMALL_STATE(4714)] = 105894, - [SMALL_STATE(4715)] = 105907, - [SMALL_STATE(4716)] = 105920, - [SMALL_STATE(4717)] = 105933, - [SMALL_STATE(4718)] = 105946, - [SMALL_STATE(4719)] = 105955, - [SMALL_STATE(4720)] = 105968, - [SMALL_STATE(4721)] = 105981, - [SMALL_STATE(4722)] = 105994, - [SMALL_STATE(4723)] = 106007, - [SMALL_STATE(4724)] = 106020, - [SMALL_STATE(4725)] = 106033, - [SMALL_STATE(4726)] = 106046, - [SMALL_STATE(4727)] = 106059, - [SMALL_STATE(4728)] = 106072, - [SMALL_STATE(4729)] = 106085, - [SMALL_STATE(4730)] = 106098, - [SMALL_STATE(4731)] = 106111, - [SMALL_STATE(4732)] = 106124, - [SMALL_STATE(4733)] = 106137, - [SMALL_STATE(4734)] = 106150, - [SMALL_STATE(4735)] = 106163, - [SMALL_STATE(4736)] = 106176, - [SMALL_STATE(4737)] = 106189, - [SMALL_STATE(4738)] = 106202, - [SMALL_STATE(4739)] = 106215, - [SMALL_STATE(4740)] = 106228, - [SMALL_STATE(4741)] = 106241, - [SMALL_STATE(4742)] = 106254, - [SMALL_STATE(4743)] = 106267, - [SMALL_STATE(4744)] = 106280, - [SMALL_STATE(4745)] = 106293, - [SMALL_STATE(4746)] = 106306, - [SMALL_STATE(4747)] = 106319, - [SMALL_STATE(4748)] = 106332, - [SMALL_STATE(4749)] = 106345, - [SMALL_STATE(4750)] = 106358, - [SMALL_STATE(4751)] = 106371, - [SMALL_STATE(4752)] = 106384, - [SMALL_STATE(4753)] = 106397, - [SMALL_STATE(4754)] = 106410, - [SMALL_STATE(4755)] = 106423, - [SMALL_STATE(4756)] = 106436, - [SMALL_STATE(4757)] = 106449, - [SMALL_STATE(4758)] = 106462, - [SMALL_STATE(4759)] = 106475, - [SMALL_STATE(4760)] = 106488, - [SMALL_STATE(4761)] = 106501, - [SMALL_STATE(4762)] = 106514, - [SMALL_STATE(4763)] = 106527, - [SMALL_STATE(4764)] = 106540, - [SMALL_STATE(4765)] = 106553, - [SMALL_STATE(4766)] = 106566, - [SMALL_STATE(4767)] = 106575, - [SMALL_STATE(4768)] = 106588, - [SMALL_STATE(4769)] = 106601, - [SMALL_STATE(4770)] = 106614, - [SMALL_STATE(4771)] = 106627, - [SMALL_STATE(4772)] = 106640, - [SMALL_STATE(4773)] = 106649, - [SMALL_STATE(4774)] = 106662, - [SMALL_STATE(4775)] = 106675, - [SMALL_STATE(4776)] = 106688, - [SMALL_STATE(4777)] = 106701, - [SMALL_STATE(4778)] = 106714, - [SMALL_STATE(4779)] = 106727, - [SMALL_STATE(4780)] = 106740, - [SMALL_STATE(4781)] = 106753, - [SMALL_STATE(4782)] = 106766, - [SMALL_STATE(4783)] = 106779, - [SMALL_STATE(4784)] = 106792, - [SMALL_STATE(4785)] = 106805, - [SMALL_STATE(4786)] = 106818, - [SMALL_STATE(4787)] = 106831, - [SMALL_STATE(4788)] = 106844, - [SMALL_STATE(4789)] = 106857, - [SMALL_STATE(4790)] = 106870, - [SMALL_STATE(4791)] = 106883, - [SMALL_STATE(4792)] = 106896, - [SMALL_STATE(4793)] = 106909, - [SMALL_STATE(4794)] = 106922, - [SMALL_STATE(4795)] = 106935, - [SMALL_STATE(4796)] = 106948, - [SMALL_STATE(4797)] = 106961, - [SMALL_STATE(4798)] = 106974, - [SMALL_STATE(4799)] = 106987, - [SMALL_STATE(4800)] = 107000, - [SMALL_STATE(4801)] = 107013, - [SMALL_STATE(4802)] = 107026, - [SMALL_STATE(4803)] = 107039, - [SMALL_STATE(4804)] = 107052, - [SMALL_STATE(4805)] = 107065, - [SMALL_STATE(4806)] = 107078, - [SMALL_STATE(4807)] = 107091, - [SMALL_STATE(4808)] = 107104, - [SMALL_STATE(4809)] = 107117, - [SMALL_STATE(4810)] = 107130, - [SMALL_STATE(4811)] = 107143, - [SMALL_STATE(4812)] = 107156, - [SMALL_STATE(4813)] = 107169, - [SMALL_STATE(4814)] = 107182, - [SMALL_STATE(4815)] = 107195, - [SMALL_STATE(4816)] = 107208, - [SMALL_STATE(4817)] = 107221, - [SMALL_STATE(4818)] = 107234, - [SMALL_STATE(4819)] = 107247, - [SMALL_STATE(4820)] = 107260, - [SMALL_STATE(4821)] = 107273, - [SMALL_STATE(4822)] = 107286, - [SMALL_STATE(4823)] = 107299, - [SMALL_STATE(4824)] = 107310, - [SMALL_STATE(4825)] = 107323, - [SMALL_STATE(4826)] = 107336, - [SMALL_STATE(4827)] = 107349, - [SMALL_STATE(4828)] = 107358, - [SMALL_STATE(4829)] = 107371, - [SMALL_STATE(4830)] = 107384, - [SMALL_STATE(4831)] = 107397, - [SMALL_STATE(4832)] = 107410, - [SMALL_STATE(4833)] = 107423, - [SMALL_STATE(4834)] = 107436, - [SMALL_STATE(4835)] = 107449, - [SMALL_STATE(4836)] = 107462, - [SMALL_STATE(4837)] = 107475, - [SMALL_STATE(4838)] = 107486, - [SMALL_STATE(4839)] = 107499, - [SMALL_STATE(4840)] = 107512, - [SMALL_STATE(4841)] = 107525, - [SMALL_STATE(4842)] = 107538, - [SMALL_STATE(4843)] = 107551, - [SMALL_STATE(4844)] = 107564, - [SMALL_STATE(4845)] = 107577, - [SMALL_STATE(4846)] = 107590, - [SMALL_STATE(4847)] = 107603, - [SMALL_STATE(4848)] = 107616, - [SMALL_STATE(4849)] = 107629, - [SMALL_STATE(4850)] = 107642, - [SMALL_STATE(4851)] = 107655, - [SMALL_STATE(4852)] = 107668, - [SMALL_STATE(4853)] = 107681, - [SMALL_STATE(4854)] = 107694, - [SMALL_STATE(4855)] = 107707, - [SMALL_STATE(4856)] = 107720, - [SMALL_STATE(4857)] = 107733, - [SMALL_STATE(4858)] = 107746, - [SMALL_STATE(4859)] = 107759, - [SMALL_STATE(4860)] = 107772, - [SMALL_STATE(4861)] = 107785, - [SMALL_STATE(4862)] = 107798, - [SMALL_STATE(4863)] = 107811, - [SMALL_STATE(4864)] = 107824, - [SMALL_STATE(4865)] = 107837, - [SMALL_STATE(4866)] = 107850, - [SMALL_STATE(4867)] = 107863, - [SMALL_STATE(4868)] = 107876, - [SMALL_STATE(4869)] = 107889, - [SMALL_STATE(4870)] = 107902, - [SMALL_STATE(4871)] = 107915, - [SMALL_STATE(4872)] = 107928, - [SMALL_STATE(4873)] = 107941, - [SMALL_STATE(4874)] = 107954, - [SMALL_STATE(4875)] = 107967, - [SMALL_STATE(4876)] = 107980, - [SMALL_STATE(4877)] = 107993, - [SMALL_STATE(4878)] = 108006, - [SMALL_STATE(4879)] = 108019, - [SMALL_STATE(4880)] = 108032, - [SMALL_STATE(4881)] = 108045, - [SMALL_STATE(4882)] = 108058, - [SMALL_STATE(4883)] = 108071, - [SMALL_STATE(4884)] = 108084, - [SMALL_STATE(4885)] = 108097, - [SMALL_STATE(4886)] = 108110, - [SMALL_STATE(4887)] = 108123, - [SMALL_STATE(4888)] = 108136, - [SMALL_STATE(4889)] = 108149, - [SMALL_STATE(4890)] = 108162, - [SMALL_STATE(4891)] = 108175, - [SMALL_STATE(4892)] = 108188, - [SMALL_STATE(4893)] = 108201, - [SMALL_STATE(4894)] = 108214, - [SMALL_STATE(4895)] = 108223, - [SMALL_STATE(4896)] = 108236, - [SMALL_STATE(4897)] = 108249, - [SMALL_STATE(4898)] = 108262, - [SMALL_STATE(4899)] = 108275, - [SMALL_STATE(4900)] = 108288, - [SMALL_STATE(4901)] = 108301, - [SMALL_STATE(4902)] = 108314, - [SMALL_STATE(4903)] = 108327, - [SMALL_STATE(4904)] = 108340, - [SMALL_STATE(4905)] = 108353, - [SMALL_STATE(4906)] = 108366, - [SMALL_STATE(4907)] = 108379, - [SMALL_STATE(4908)] = 108392, - [SMALL_STATE(4909)] = 108405, - [SMALL_STATE(4910)] = 108418, - [SMALL_STATE(4911)] = 108431, - [SMALL_STATE(4912)] = 108440, - [SMALL_STATE(4913)] = 108453, - [SMALL_STATE(4914)] = 108466, - [SMALL_STATE(4915)] = 108479, - [SMALL_STATE(4916)] = 108492, - [SMALL_STATE(4917)] = 108505, - [SMALL_STATE(4918)] = 108518, - [SMALL_STATE(4919)] = 108531, - [SMALL_STATE(4920)] = 108544, - [SMALL_STATE(4921)] = 108557, - [SMALL_STATE(4922)] = 108566, - [SMALL_STATE(4923)] = 108579, - [SMALL_STATE(4924)] = 108592, - [SMALL_STATE(4925)] = 108605, - [SMALL_STATE(4926)] = 108618, - [SMALL_STATE(4927)] = 108631, - [SMALL_STATE(4928)] = 108644, - [SMALL_STATE(4929)] = 108657, - [SMALL_STATE(4930)] = 108670, - [SMALL_STATE(4931)] = 108683, - [SMALL_STATE(4932)] = 108696, - [SMALL_STATE(4933)] = 108709, - [SMALL_STATE(4934)] = 108722, - [SMALL_STATE(4935)] = 108735, - [SMALL_STATE(4936)] = 108748, - [SMALL_STATE(4937)] = 108761, - [SMALL_STATE(4938)] = 108774, - [SMALL_STATE(4939)] = 108787, - [SMALL_STATE(4940)] = 108800, - [SMALL_STATE(4941)] = 108813, - [SMALL_STATE(4942)] = 108826, - [SMALL_STATE(4943)] = 108839, - [SMALL_STATE(4944)] = 108852, - [SMALL_STATE(4945)] = 108865, - [SMALL_STATE(4946)] = 108878, - [SMALL_STATE(4947)] = 108891, - [SMALL_STATE(4948)] = 108904, - [SMALL_STATE(4949)] = 108917, - [SMALL_STATE(4950)] = 108930, - [SMALL_STATE(4951)] = 108943, - [SMALL_STATE(4952)] = 108956, - [SMALL_STATE(4953)] = 108969, - [SMALL_STATE(4954)] = 108982, - [SMALL_STATE(4955)] = 108995, - [SMALL_STATE(4956)] = 109008, - [SMALL_STATE(4957)] = 109021, - [SMALL_STATE(4958)] = 109034, - [SMALL_STATE(4959)] = 109047, - [SMALL_STATE(4960)] = 109060, - [SMALL_STATE(4961)] = 109073, - [SMALL_STATE(4962)] = 109086, - [SMALL_STATE(4963)] = 109099, - [SMALL_STATE(4964)] = 109112, - [SMALL_STATE(4965)] = 109125, - [SMALL_STATE(4966)] = 109138, - [SMALL_STATE(4967)] = 109151, - [SMALL_STATE(4968)] = 109164, - [SMALL_STATE(4969)] = 109177, - [SMALL_STATE(4970)] = 109186, - [SMALL_STATE(4971)] = 109199, - [SMALL_STATE(4972)] = 109212, - [SMALL_STATE(4973)] = 109225, - [SMALL_STATE(4974)] = 109238, - [SMALL_STATE(4975)] = 109251, - [SMALL_STATE(4976)] = 109260, - [SMALL_STATE(4977)] = 109273, - [SMALL_STATE(4978)] = 109282, - [SMALL_STATE(4979)] = 109295, - [SMALL_STATE(4980)] = 109308, - [SMALL_STATE(4981)] = 109321, - [SMALL_STATE(4982)] = 109334, - [SMALL_STATE(4983)] = 109347, - [SMALL_STATE(4984)] = 109360, - [SMALL_STATE(4985)] = 109373, - [SMALL_STATE(4986)] = 109382, - [SMALL_STATE(4987)] = 109395, - [SMALL_STATE(4988)] = 109408, - [SMALL_STATE(4989)] = 109421, - [SMALL_STATE(4990)] = 109434, - [SMALL_STATE(4991)] = 109447, - [SMALL_STATE(4992)] = 109460, - [SMALL_STATE(4993)] = 109473, - [SMALL_STATE(4994)] = 109486, - [SMALL_STATE(4995)] = 109499, - [SMALL_STATE(4996)] = 109512, - [SMALL_STATE(4997)] = 109525, - [SMALL_STATE(4998)] = 109538, - [SMALL_STATE(4999)] = 109551, - [SMALL_STATE(5000)] = 109564, - [SMALL_STATE(5001)] = 109577, - [SMALL_STATE(5002)] = 109590, - [SMALL_STATE(5003)] = 109603, - [SMALL_STATE(5004)] = 109616, - [SMALL_STATE(5005)] = 109629, - [SMALL_STATE(5006)] = 109642, - [SMALL_STATE(5007)] = 109655, - [SMALL_STATE(5008)] = 109668, - [SMALL_STATE(5009)] = 109681, - [SMALL_STATE(5010)] = 109694, - [SMALL_STATE(5011)] = 109707, - [SMALL_STATE(5012)] = 109720, - [SMALL_STATE(5013)] = 109733, - [SMALL_STATE(5014)] = 109746, - [SMALL_STATE(5015)] = 109759, - [SMALL_STATE(5016)] = 109768, - [SMALL_STATE(5017)] = 109781, - [SMALL_STATE(5018)] = 109794, - [SMALL_STATE(5019)] = 109807, - [SMALL_STATE(5020)] = 109816, - [SMALL_STATE(5021)] = 109829, - [SMALL_STATE(5022)] = 109842, - [SMALL_STATE(5023)] = 109855, - [SMALL_STATE(5024)] = 109868, - [SMALL_STATE(5025)] = 109881, - [SMALL_STATE(5026)] = 109894, - [SMALL_STATE(5027)] = 109907, - [SMALL_STATE(5028)] = 109917, - [SMALL_STATE(5029)] = 109927, - [SMALL_STATE(5030)] = 109935, - [SMALL_STATE(5031)] = 109945, - [SMALL_STATE(5032)] = 109955, - [SMALL_STATE(5033)] = 109965, - [SMALL_STATE(5034)] = 109975, - [SMALL_STATE(5035)] = 109983, - [SMALL_STATE(5036)] = 109993, - [SMALL_STATE(5037)] = 110001, - [SMALL_STATE(5038)] = 110011, - [SMALL_STATE(5039)] = 110021, - [SMALL_STATE(5040)] = 110029, - [SMALL_STATE(5041)] = 110039, - [SMALL_STATE(5042)] = 110049, - [SMALL_STATE(5043)] = 110059, - [SMALL_STATE(5044)] = 110069, - [SMALL_STATE(5045)] = 110079, - [SMALL_STATE(5046)] = 110089, - [SMALL_STATE(5047)] = 110099, - [SMALL_STATE(5048)] = 110107, - [SMALL_STATE(5049)] = 110115, - [SMALL_STATE(5050)] = 110123, - [SMALL_STATE(5051)] = 110133, - [SMALL_STATE(5052)] = 110143, - [SMALL_STATE(5053)] = 110153, - [SMALL_STATE(5054)] = 110163, - [SMALL_STATE(5055)] = 110171, - [SMALL_STATE(5056)] = 110179, - [SMALL_STATE(5057)] = 110189, - [SMALL_STATE(5058)] = 110199, - [SMALL_STATE(5059)] = 110209, - [SMALL_STATE(5060)] = 110219, - [SMALL_STATE(5061)] = 110229, - [SMALL_STATE(5062)] = 110237, - [SMALL_STATE(5063)] = 110247, - [SMALL_STATE(5064)] = 110257, - [SMALL_STATE(5065)] = 110267, - [SMALL_STATE(5066)] = 110277, - [SMALL_STATE(5067)] = 110287, - [SMALL_STATE(5068)] = 110297, - [SMALL_STATE(5069)] = 110307, - [SMALL_STATE(5070)] = 110317, - [SMALL_STATE(5071)] = 110327, - [SMALL_STATE(5072)] = 110337, - [SMALL_STATE(5073)] = 110347, - [SMALL_STATE(5074)] = 110357, - [SMALL_STATE(5075)] = 110367, - [SMALL_STATE(5076)] = 110377, - [SMALL_STATE(5077)] = 110385, - [SMALL_STATE(5078)] = 110395, - [SMALL_STATE(5079)] = 110405, - [SMALL_STATE(5080)] = 110415, - [SMALL_STATE(5081)] = 110425, - [SMALL_STATE(5082)] = 110435, - [SMALL_STATE(5083)] = 110443, - [SMALL_STATE(5084)] = 110453, - [SMALL_STATE(5085)] = 110463, - [SMALL_STATE(5086)] = 110473, - [SMALL_STATE(5087)] = 110483, - [SMALL_STATE(5088)] = 110493, - [SMALL_STATE(5089)] = 110501, - [SMALL_STATE(5090)] = 110509, - [SMALL_STATE(5091)] = 110519, - [SMALL_STATE(5092)] = 110529, - [SMALL_STATE(5093)] = 110539, - [SMALL_STATE(5094)] = 110549, - [SMALL_STATE(5095)] = 110559, - [SMALL_STATE(5096)] = 110567, - [SMALL_STATE(5097)] = 110577, - [SMALL_STATE(5098)] = 110587, - [SMALL_STATE(5099)] = 110597, - [SMALL_STATE(5100)] = 110607, - [SMALL_STATE(5101)] = 110615, - [SMALL_STATE(5102)] = 110625, - [SMALL_STATE(5103)] = 110633, - [SMALL_STATE(5104)] = 110641, - [SMALL_STATE(5105)] = 110651, - [SMALL_STATE(5106)] = 110661, - [SMALL_STATE(5107)] = 110671, - [SMALL_STATE(5108)] = 110679, - [SMALL_STATE(5109)] = 110689, - [SMALL_STATE(5110)] = 110699, - [SMALL_STATE(5111)] = 110709, - [SMALL_STATE(5112)] = 110717, - [SMALL_STATE(5113)] = 110727, - [SMALL_STATE(5114)] = 110735, - [SMALL_STATE(5115)] = 110745, - [SMALL_STATE(5116)] = 110755, - [SMALL_STATE(5117)] = 110763, - [SMALL_STATE(5118)] = 110773, - [SMALL_STATE(5119)] = 110783, - [SMALL_STATE(5120)] = 110793, - [SMALL_STATE(5121)] = 110800, - [SMALL_STATE(5122)] = 110807, - [SMALL_STATE(5123)] = 110814, - [SMALL_STATE(5124)] = 110821, - [SMALL_STATE(5125)] = 110828, - [SMALL_STATE(5126)] = 110835, - [SMALL_STATE(5127)] = 110842, - [SMALL_STATE(5128)] = 110849, - [SMALL_STATE(5129)] = 110856, - [SMALL_STATE(5130)] = 110863, - [SMALL_STATE(5131)] = 110870, - [SMALL_STATE(5132)] = 110877, - [SMALL_STATE(5133)] = 110884, - [SMALL_STATE(5134)] = 110891, - [SMALL_STATE(5135)] = 110898, - [SMALL_STATE(5136)] = 110905, - [SMALL_STATE(5137)] = 110912, - [SMALL_STATE(5138)] = 110919, - [SMALL_STATE(5139)] = 110926, - [SMALL_STATE(5140)] = 110933, - [SMALL_STATE(5141)] = 110940, - [SMALL_STATE(5142)] = 110947, - [SMALL_STATE(5143)] = 110954, - [SMALL_STATE(5144)] = 110961, - [SMALL_STATE(5145)] = 110968, - [SMALL_STATE(5146)] = 110975, - [SMALL_STATE(5147)] = 110982, - [SMALL_STATE(5148)] = 110989, - [SMALL_STATE(5149)] = 110996, - [SMALL_STATE(5150)] = 111003, - [SMALL_STATE(5151)] = 111010, - [SMALL_STATE(5152)] = 111017, - [SMALL_STATE(5153)] = 111024, - [SMALL_STATE(5154)] = 111031, - [SMALL_STATE(5155)] = 111038, - [SMALL_STATE(5156)] = 111045, - [SMALL_STATE(5157)] = 111052, - [SMALL_STATE(5158)] = 111059, - [SMALL_STATE(5159)] = 111066, - [SMALL_STATE(5160)] = 111073, - [SMALL_STATE(5161)] = 111080, - [SMALL_STATE(5162)] = 111087, - [SMALL_STATE(5163)] = 111094, - [SMALL_STATE(5164)] = 111101, - [SMALL_STATE(5165)] = 111108, - [SMALL_STATE(5166)] = 111115, - [SMALL_STATE(5167)] = 111122, - [SMALL_STATE(5168)] = 111129, - [SMALL_STATE(5169)] = 111136, - [SMALL_STATE(5170)] = 111143, - [SMALL_STATE(5171)] = 111150, - [SMALL_STATE(5172)] = 111157, - [SMALL_STATE(5173)] = 111164, - [SMALL_STATE(5174)] = 111171, - [SMALL_STATE(5175)] = 111178, - [SMALL_STATE(5176)] = 111185, - [SMALL_STATE(5177)] = 111192, - [SMALL_STATE(5178)] = 111199, - [SMALL_STATE(5179)] = 111206, - [SMALL_STATE(5180)] = 111213, - [SMALL_STATE(5181)] = 111220, - [SMALL_STATE(5182)] = 111227, - [SMALL_STATE(5183)] = 111234, - [SMALL_STATE(5184)] = 111241, - [SMALL_STATE(5185)] = 111248, - [SMALL_STATE(5186)] = 111255, - [SMALL_STATE(5187)] = 111262, - [SMALL_STATE(5188)] = 111269, - [SMALL_STATE(5189)] = 111276, - [SMALL_STATE(5190)] = 111283, - [SMALL_STATE(5191)] = 111290, - [SMALL_STATE(5192)] = 111297, - [SMALL_STATE(5193)] = 111304, - [SMALL_STATE(5194)] = 111311, - [SMALL_STATE(5195)] = 111318, - [SMALL_STATE(5196)] = 111325, - [SMALL_STATE(5197)] = 111332, - [SMALL_STATE(5198)] = 111339, - [SMALL_STATE(5199)] = 111346, - [SMALL_STATE(5200)] = 111353, - [SMALL_STATE(5201)] = 111360, - [SMALL_STATE(5202)] = 111367, - [SMALL_STATE(5203)] = 111374, - [SMALL_STATE(5204)] = 111381, - [SMALL_STATE(5205)] = 111388, - [SMALL_STATE(5206)] = 111395, - [SMALL_STATE(5207)] = 111402, - [SMALL_STATE(5208)] = 111409, - [SMALL_STATE(5209)] = 111416, - [SMALL_STATE(5210)] = 111423, - [SMALL_STATE(5211)] = 111430, - [SMALL_STATE(5212)] = 111437, - [SMALL_STATE(5213)] = 111444, - [SMALL_STATE(5214)] = 111451, - [SMALL_STATE(5215)] = 111458, - [SMALL_STATE(5216)] = 111465, - [SMALL_STATE(5217)] = 111472, - [SMALL_STATE(5218)] = 111479, - [SMALL_STATE(5219)] = 111486, - [SMALL_STATE(5220)] = 111493, - [SMALL_STATE(5221)] = 111500, - [SMALL_STATE(5222)] = 111507, - [SMALL_STATE(5223)] = 111514, - [SMALL_STATE(5224)] = 111521, - [SMALL_STATE(5225)] = 111528, - [SMALL_STATE(5226)] = 111535, - [SMALL_STATE(5227)] = 111542, - [SMALL_STATE(5228)] = 111549, - [SMALL_STATE(5229)] = 111556, - [SMALL_STATE(5230)] = 111563, - [SMALL_STATE(5231)] = 111570, - [SMALL_STATE(5232)] = 111577, - [SMALL_STATE(5233)] = 111584, - [SMALL_STATE(5234)] = 111591, - [SMALL_STATE(5235)] = 111598, - [SMALL_STATE(5236)] = 111605, - [SMALL_STATE(5237)] = 111612, - [SMALL_STATE(5238)] = 111619, - [SMALL_STATE(5239)] = 111626, - [SMALL_STATE(5240)] = 111633, - [SMALL_STATE(5241)] = 111640, - [SMALL_STATE(5242)] = 111647, - [SMALL_STATE(5243)] = 111654, - [SMALL_STATE(5244)] = 111661, - [SMALL_STATE(5245)] = 111668, - [SMALL_STATE(5246)] = 111675, - [SMALL_STATE(5247)] = 111682, - [SMALL_STATE(5248)] = 111689, - [SMALL_STATE(5249)] = 111696, - [SMALL_STATE(5250)] = 111703, - [SMALL_STATE(5251)] = 111710, - [SMALL_STATE(5252)] = 111717, - [SMALL_STATE(5253)] = 111724, - [SMALL_STATE(5254)] = 111731, - [SMALL_STATE(5255)] = 111738, - [SMALL_STATE(5256)] = 111745, - [SMALL_STATE(5257)] = 111752, - [SMALL_STATE(5258)] = 111759, - [SMALL_STATE(5259)] = 111766, - [SMALL_STATE(5260)] = 111773, - [SMALL_STATE(5261)] = 111780, - [SMALL_STATE(5262)] = 111787, - [SMALL_STATE(5263)] = 111794, - [SMALL_STATE(5264)] = 111801, - [SMALL_STATE(5265)] = 111808, - [SMALL_STATE(5266)] = 111815, - [SMALL_STATE(5267)] = 111822, - [SMALL_STATE(5268)] = 111829, - [SMALL_STATE(5269)] = 111836, - [SMALL_STATE(5270)] = 111843, - [SMALL_STATE(5271)] = 111850, - [SMALL_STATE(5272)] = 111857, - [SMALL_STATE(5273)] = 111864, - [SMALL_STATE(5274)] = 111871, - [SMALL_STATE(5275)] = 111878, - [SMALL_STATE(5276)] = 111885, - [SMALL_STATE(5277)] = 111892, - [SMALL_STATE(5278)] = 111899, - [SMALL_STATE(5279)] = 111906, - [SMALL_STATE(5280)] = 111913, - [SMALL_STATE(5281)] = 111920, - [SMALL_STATE(5282)] = 111927, - [SMALL_STATE(5283)] = 111934, - [SMALL_STATE(5284)] = 111941, - [SMALL_STATE(5285)] = 111948, - [SMALL_STATE(5286)] = 111955, - [SMALL_STATE(5287)] = 111962, - [SMALL_STATE(5288)] = 111969, - [SMALL_STATE(5289)] = 111976, - [SMALL_STATE(5290)] = 111983, - [SMALL_STATE(5291)] = 111990, - [SMALL_STATE(5292)] = 111997, - [SMALL_STATE(5293)] = 112004, - [SMALL_STATE(5294)] = 112011, - [SMALL_STATE(5295)] = 112018, + [SMALL_STATE(7590)] = 0, + [SMALL_STATE(7591)] = 71, + [SMALL_STATE(7592)] = 142, + [SMALL_STATE(7593)] = 213, + [SMALL_STATE(7594)] = 284, + [SMALL_STATE(7595)] = 355, + [SMALL_STATE(7596)] = 426, + [SMALL_STATE(7597)] = 497, + [SMALL_STATE(7598)] = 568, + [SMALL_STATE(7599)] = 662, + [SMALL_STATE(7600)] = 759, + [SMALL_STATE(7601)] = 856, + [SMALL_STATE(7602)] = 953, + [SMALL_STATE(7603)] = 1050, + [SMALL_STATE(7604)] = 1147, + [SMALL_STATE(7605)] = 1244, + [SMALL_STATE(7606)] = 1341, + [SMALL_STATE(7607)] = 1438, + [SMALL_STATE(7608)] = 1535, + [SMALL_STATE(7609)] = 1632, + [SMALL_STATE(7610)] = 1729, + [SMALL_STATE(7611)] = 1826, + [SMALL_STATE(7612)] = 1923, + [SMALL_STATE(7613)] = 2020, + [SMALL_STATE(7614)] = 2117, + [SMALL_STATE(7615)] = 2214, + [SMALL_STATE(7616)] = 2311, + [SMALL_STATE(7617)] = 2408, + [SMALL_STATE(7618)] = 2505, + [SMALL_STATE(7619)] = 2602, + [SMALL_STATE(7620)] = 2699, + [SMALL_STATE(7621)] = 2796, + [SMALL_STATE(7622)] = 2893, + [SMALL_STATE(7623)] = 2983, + [SMALL_STATE(7624)] = 3073, + [SMALL_STATE(7625)] = 3163, + [SMALL_STATE(7626)] = 3253, + [SMALL_STATE(7627)] = 3343, + [SMALL_STATE(7628)] = 3433, + [SMALL_STATE(7629)] = 3523, + [SMALL_STATE(7630)] = 3613, + [SMALL_STATE(7631)] = 3703, + [SMALL_STATE(7632)] = 3793, + [SMALL_STATE(7633)] = 3883, + [SMALL_STATE(7634)] = 3973, + [SMALL_STATE(7635)] = 4063, + [SMALL_STATE(7636)] = 4153, + [SMALL_STATE(7637)] = 4243, + [SMALL_STATE(7638)] = 4333, + [SMALL_STATE(7639)] = 4423, + [SMALL_STATE(7640)] = 4513, + [SMALL_STATE(7641)] = 4603, + [SMALL_STATE(7642)] = 4693, + [SMALL_STATE(7643)] = 4783, + [SMALL_STATE(7644)] = 4873, + [SMALL_STATE(7645)] = 4963, + [SMALL_STATE(7646)] = 5053, + [SMALL_STATE(7647)] = 5143, + [SMALL_STATE(7648)] = 5233, + [SMALL_STATE(7649)] = 5323, + [SMALL_STATE(7650)] = 5413, + [SMALL_STATE(7651)] = 5503, + [SMALL_STATE(7652)] = 5593, + [SMALL_STATE(7653)] = 5683, + [SMALL_STATE(7654)] = 5773, + [SMALL_STATE(7655)] = 5863, + [SMALL_STATE(7656)] = 5953, + [SMALL_STATE(7657)] = 6043, + [SMALL_STATE(7658)] = 6133, + [SMALL_STATE(7659)] = 6223, + [SMALL_STATE(7660)] = 6313, + [SMALL_STATE(7661)] = 6403, + [SMALL_STATE(7662)] = 6493, + [SMALL_STATE(7663)] = 6583, + [SMALL_STATE(7664)] = 6673, + [SMALL_STATE(7665)] = 6763, + [SMALL_STATE(7666)] = 6853, + [SMALL_STATE(7667)] = 6943, + [SMALL_STATE(7668)] = 7033, + [SMALL_STATE(7669)] = 7123, + [SMALL_STATE(7670)] = 7210, + [SMALL_STATE(7671)] = 7297, + [SMALL_STATE(7672)] = 7384, + [SMALL_STATE(7673)] = 7471, + [SMALL_STATE(7674)] = 7558, + [SMALL_STATE(7675)] = 7645, + [SMALL_STATE(7676)] = 7732, + [SMALL_STATE(7677)] = 7819, + [SMALL_STATE(7678)] = 7906, + [SMALL_STATE(7679)] = 7993, + [SMALL_STATE(7680)] = 8080, + [SMALL_STATE(7681)] = 8167, + [SMALL_STATE(7682)] = 8254, + [SMALL_STATE(7683)] = 8341, + [SMALL_STATE(7684)] = 8428, + [SMALL_STATE(7685)] = 8515, + [SMALL_STATE(7686)] = 8602, + [SMALL_STATE(7687)] = 8689, + [SMALL_STATE(7688)] = 8776, + [SMALL_STATE(7689)] = 8863, + [SMALL_STATE(7690)] = 8950, + [SMALL_STATE(7691)] = 9037, + [SMALL_STATE(7692)] = 9124, + [SMALL_STATE(7693)] = 9211, + [SMALL_STATE(7694)] = 9298, + [SMALL_STATE(7695)] = 9385, + [SMALL_STATE(7696)] = 9472, + [SMALL_STATE(7697)] = 9559, + [SMALL_STATE(7698)] = 9646, + [SMALL_STATE(7699)] = 9733, + [SMALL_STATE(7700)] = 9820, + [SMALL_STATE(7701)] = 9907, + [SMALL_STATE(7702)] = 9994, + [SMALL_STATE(7703)] = 10081, + [SMALL_STATE(7704)] = 10168, + [SMALL_STATE(7705)] = 10255, + [SMALL_STATE(7706)] = 10342, + [SMALL_STATE(7707)] = 10429, + [SMALL_STATE(7708)] = 10516, + [SMALL_STATE(7709)] = 10603, + [SMALL_STATE(7710)] = 10690, + [SMALL_STATE(7711)] = 10777, + [SMALL_STATE(7712)] = 10864, + [SMALL_STATE(7713)] = 10951, + [SMALL_STATE(7714)] = 11038, + [SMALL_STATE(7715)] = 11125, + [SMALL_STATE(7716)] = 11212, + [SMALL_STATE(7717)] = 11299, + [SMALL_STATE(7718)] = 11386, + [SMALL_STATE(7719)] = 11473, + [SMALL_STATE(7720)] = 11560, + [SMALL_STATE(7721)] = 11647, + [SMALL_STATE(7722)] = 11734, + [SMALL_STATE(7723)] = 11821, + [SMALL_STATE(7724)] = 11908, + [SMALL_STATE(7725)] = 11995, + [SMALL_STATE(7726)] = 12082, + [SMALL_STATE(7727)] = 12169, + [SMALL_STATE(7728)] = 12256, + [SMALL_STATE(7729)] = 12343, + [SMALL_STATE(7730)] = 12430, + [SMALL_STATE(7731)] = 12517, + [SMALL_STATE(7732)] = 12604, + [SMALL_STATE(7733)] = 12691, + [SMALL_STATE(7734)] = 12778, + [SMALL_STATE(7735)] = 12865, + [SMALL_STATE(7736)] = 12952, + [SMALL_STATE(7737)] = 13039, + [SMALL_STATE(7738)] = 13126, + [SMALL_STATE(7739)] = 13213, + [SMALL_STATE(7740)] = 13300, + [SMALL_STATE(7741)] = 13387, + [SMALL_STATE(7742)] = 13474, + [SMALL_STATE(7743)] = 13558, + [SMALL_STATE(7744)] = 13642, + [SMALL_STATE(7745)] = 13726, + [SMALL_STATE(7746)] = 13810, + [SMALL_STATE(7747)] = 13894, + [SMALL_STATE(7748)] = 13978, + [SMALL_STATE(7749)] = 14062, + [SMALL_STATE(7750)] = 14146, + [SMALL_STATE(7751)] = 14230, + [SMALL_STATE(7752)] = 14314, + [SMALL_STATE(7753)] = 14398, + [SMALL_STATE(7754)] = 14482, + [SMALL_STATE(7755)] = 14566, + [SMALL_STATE(7756)] = 14650, + [SMALL_STATE(7757)] = 14734, + [SMALL_STATE(7758)] = 14818, + [SMALL_STATE(7759)] = 14902, + [SMALL_STATE(7760)] = 14986, + [SMALL_STATE(7761)] = 15070, + [SMALL_STATE(7762)] = 15154, + [SMALL_STATE(7763)] = 15238, + [SMALL_STATE(7764)] = 15322, + [SMALL_STATE(7765)] = 15406, + [SMALL_STATE(7766)] = 15490, + [SMALL_STATE(7767)] = 15574, + [SMALL_STATE(7768)] = 15658, + [SMALL_STATE(7769)] = 15742, + [SMALL_STATE(7770)] = 15826, + [SMALL_STATE(7771)] = 15910, + [SMALL_STATE(7772)] = 15994, + [SMALL_STATE(7773)] = 16078, + [SMALL_STATE(7774)] = 16162, + [SMALL_STATE(7775)] = 16246, + [SMALL_STATE(7776)] = 16330, + [SMALL_STATE(7777)] = 16414, + [SMALL_STATE(7778)] = 16498, + [SMALL_STATE(7779)] = 16582, + [SMALL_STATE(7780)] = 16666, + [SMALL_STATE(7781)] = 16750, + [SMALL_STATE(7782)] = 16834, + [SMALL_STATE(7783)] = 16918, + [SMALL_STATE(7784)] = 17002, + [SMALL_STATE(7785)] = 17086, + [SMALL_STATE(7786)] = 17170, + [SMALL_STATE(7787)] = 17254, + [SMALL_STATE(7788)] = 17338, + [SMALL_STATE(7789)] = 17422, + [SMALL_STATE(7790)] = 17506, + [SMALL_STATE(7791)] = 17590, + [SMALL_STATE(7792)] = 17674, + [SMALL_STATE(7793)] = 17758, + [SMALL_STATE(7794)] = 17842, + [SMALL_STATE(7795)] = 17926, + [SMALL_STATE(7796)] = 18010, + [SMALL_STATE(7797)] = 18094, + [SMALL_STATE(7798)] = 18178, + [SMALL_STATE(7799)] = 18262, + [SMALL_STATE(7800)] = 18346, + [SMALL_STATE(7801)] = 18430, + [SMALL_STATE(7802)] = 18514, + [SMALL_STATE(7803)] = 18598, + [SMALL_STATE(7804)] = 18682, + [SMALL_STATE(7805)] = 18766, + [SMALL_STATE(7806)] = 18850, + [SMALL_STATE(7807)] = 18934, + [SMALL_STATE(7808)] = 19018, + [SMALL_STATE(7809)] = 19102, + [SMALL_STATE(7810)] = 19186, + [SMALL_STATE(7811)] = 19270, + [SMALL_STATE(7812)] = 19354, + [SMALL_STATE(7813)] = 19438, + [SMALL_STATE(7814)] = 19522, + [SMALL_STATE(7815)] = 19606, + [SMALL_STATE(7816)] = 19690, + [SMALL_STATE(7817)] = 19774, + [SMALL_STATE(7818)] = 19858, + [SMALL_STATE(7819)] = 19942, + [SMALL_STATE(7820)] = 20026, + [SMALL_STATE(7821)] = 20110, + [SMALL_STATE(7822)] = 20194, + [SMALL_STATE(7823)] = 20278, + [SMALL_STATE(7824)] = 20362, + [SMALL_STATE(7825)] = 20446, + [SMALL_STATE(7826)] = 20530, + [SMALL_STATE(7827)] = 20614, + [SMALL_STATE(7828)] = 20698, + [SMALL_STATE(7829)] = 20782, + [SMALL_STATE(7830)] = 20866, + [SMALL_STATE(7831)] = 20950, + [SMALL_STATE(7832)] = 21034, + [SMALL_STATE(7833)] = 21118, + [SMALL_STATE(7834)] = 21202, + [SMALL_STATE(7835)] = 21286, + [SMALL_STATE(7836)] = 21370, + [SMALL_STATE(7837)] = 21454, + [SMALL_STATE(7838)] = 21538, + [SMALL_STATE(7839)] = 21622, + [SMALL_STATE(7840)] = 21706, + [SMALL_STATE(7841)] = 21790, + [SMALL_STATE(7842)] = 21874, + [SMALL_STATE(7843)] = 21958, + [SMALL_STATE(7844)] = 22042, + [SMALL_STATE(7845)] = 22126, + [SMALL_STATE(7846)] = 22210, + [SMALL_STATE(7847)] = 22294, + [SMALL_STATE(7848)] = 22378, + [SMALL_STATE(7849)] = 22462, + [SMALL_STATE(7850)] = 22546, + [SMALL_STATE(7851)] = 22630, + [SMALL_STATE(7852)] = 22714, + [SMALL_STATE(7853)] = 22798, + [SMALL_STATE(7854)] = 22882, + [SMALL_STATE(7855)] = 22966, + [SMALL_STATE(7856)] = 23050, + [SMALL_STATE(7857)] = 23134, + [SMALL_STATE(7858)] = 23218, + [SMALL_STATE(7859)] = 23302, + [SMALL_STATE(7860)] = 23386, + [SMALL_STATE(7861)] = 23470, + [SMALL_STATE(7862)] = 23554, + [SMALL_STATE(7863)] = 23638, + [SMALL_STATE(7864)] = 23722, + [SMALL_STATE(7865)] = 23806, + [SMALL_STATE(7866)] = 23890, + [SMALL_STATE(7867)] = 23974, + [SMALL_STATE(7868)] = 24058, + [SMALL_STATE(7869)] = 24142, + [SMALL_STATE(7870)] = 24226, + [SMALL_STATE(7871)] = 24310, + [SMALL_STATE(7872)] = 24394, + [SMALL_STATE(7873)] = 24478, + [SMALL_STATE(7874)] = 24562, + [SMALL_STATE(7875)] = 24646, + [SMALL_STATE(7876)] = 24730, + [SMALL_STATE(7877)] = 24814, + [SMALL_STATE(7878)] = 24898, + [SMALL_STATE(7879)] = 24982, + [SMALL_STATE(7880)] = 25066, + [SMALL_STATE(7881)] = 25150, + [SMALL_STATE(7882)] = 25234, + [SMALL_STATE(7883)] = 25318, + [SMALL_STATE(7884)] = 25402, + [SMALL_STATE(7885)] = 25486, + [SMALL_STATE(7886)] = 25570, + [SMALL_STATE(7887)] = 25654, + [SMALL_STATE(7888)] = 25738, + [SMALL_STATE(7889)] = 25822, + [SMALL_STATE(7890)] = 25906, + [SMALL_STATE(7891)] = 25990, + [SMALL_STATE(7892)] = 26074, + [SMALL_STATE(7893)] = 26158, + [SMALL_STATE(7894)] = 26242, + [SMALL_STATE(7895)] = 26326, + [SMALL_STATE(7896)] = 26410, + [SMALL_STATE(7897)] = 26494, + [SMALL_STATE(7898)] = 26578, + [SMALL_STATE(7899)] = 26662, + [SMALL_STATE(7900)] = 26746, + [SMALL_STATE(7901)] = 26830, + [SMALL_STATE(7902)] = 26914, + [SMALL_STATE(7903)] = 26998, + [SMALL_STATE(7904)] = 27082, + [SMALL_STATE(7905)] = 27166, + [SMALL_STATE(7906)] = 27250, + [SMALL_STATE(7907)] = 27334, + [SMALL_STATE(7908)] = 27418, + [SMALL_STATE(7909)] = 27502, + [SMALL_STATE(7910)] = 27586, + [SMALL_STATE(7911)] = 27670, + [SMALL_STATE(7912)] = 27754, + [SMALL_STATE(7913)] = 27838, + [SMALL_STATE(7914)] = 27922, + [SMALL_STATE(7915)] = 28006, + [SMALL_STATE(7916)] = 28090, + [SMALL_STATE(7917)] = 28174, + [SMALL_STATE(7918)] = 28258, + [SMALL_STATE(7919)] = 28342, + [SMALL_STATE(7920)] = 28426, + [SMALL_STATE(7921)] = 28510, + [SMALL_STATE(7922)] = 28594, + [SMALL_STATE(7923)] = 28678, + [SMALL_STATE(7924)] = 28762, + [SMALL_STATE(7925)] = 28846, + [SMALL_STATE(7926)] = 28930, + [SMALL_STATE(7927)] = 29014, + [SMALL_STATE(7928)] = 29098, + [SMALL_STATE(7929)] = 29182, + [SMALL_STATE(7930)] = 29266, + [SMALL_STATE(7931)] = 29350, + [SMALL_STATE(7932)] = 29434, + [SMALL_STATE(7933)] = 29518, + [SMALL_STATE(7934)] = 29602, + [SMALL_STATE(7935)] = 29686, + [SMALL_STATE(7936)] = 29770, + [SMALL_STATE(7937)] = 29854, + [SMALL_STATE(7938)] = 29938, + [SMALL_STATE(7939)] = 30022, + [SMALL_STATE(7940)] = 30106, + [SMALL_STATE(7941)] = 30190, + [SMALL_STATE(7942)] = 30274, + [SMALL_STATE(7943)] = 30358, + [SMALL_STATE(7944)] = 30442, + [SMALL_STATE(7945)] = 30526, + [SMALL_STATE(7946)] = 30610, + [SMALL_STATE(7947)] = 30694, + [SMALL_STATE(7948)] = 30778, + [SMALL_STATE(7949)] = 30862, + [SMALL_STATE(7950)] = 30946, + [SMALL_STATE(7951)] = 31030, + [SMALL_STATE(7952)] = 31114, + [SMALL_STATE(7953)] = 31198, + [SMALL_STATE(7954)] = 31282, + [SMALL_STATE(7955)] = 31366, + [SMALL_STATE(7956)] = 31450, + [SMALL_STATE(7957)] = 31534, + [SMALL_STATE(7958)] = 31618, + [SMALL_STATE(7959)] = 31702, + [SMALL_STATE(7960)] = 31786, + [SMALL_STATE(7961)] = 31870, + [SMALL_STATE(7962)] = 31954, + [SMALL_STATE(7963)] = 32038, + [SMALL_STATE(7964)] = 32122, + [SMALL_STATE(7965)] = 32206, + [SMALL_STATE(7966)] = 32290, + [SMALL_STATE(7967)] = 32374, + [SMALL_STATE(7968)] = 32458, + [SMALL_STATE(7969)] = 32542, + [SMALL_STATE(7970)] = 32626, + [SMALL_STATE(7971)] = 32707, + [SMALL_STATE(7972)] = 32788, + [SMALL_STATE(7973)] = 32869, + [SMALL_STATE(7974)] = 32950, + [SMALL_STATE(7975)] = 33031, + [SMALL_STATE(7976)] = 33112, + [SMALL_STATE(7977)] = 33193, + [SMALL_STATE(7978)] = 33274, + [SMALL_STATE(7979)] = 33355, + [SMALL_STATE(7980)] = 33436, + [SMALL_STATE(7981)] = 33517, + [SMALL_STATE(7982)] = 33598, + [SMALL_STATE(7983)] = 33679, + [SMALL_STATE(7984)] = 33760, + [SMALL_STATE(7985)] = 33841, + [SMALL_STATE(7986)] = 33922, + [SMALL_STATE(7987)] = 34003, + [SMALL_STATE(7988)] = 34084, + [SMALL_STATE(7989)] = 34165, + [SMALL_STATE(7990)] = 34246, + [SMALL_STATE(7991)] = 34327, + [SMALL_STATE(7992)] = 34408, + [SMALL_STATE(7993)] = 34489, + [SMALL_STATE(7994)] = 34570, + [SMALL_STATE(7995)] = 34651, + [SMALL_STATE(7996)] = 34732, + [SMALL_STATE(7997)] = 34813, + [SMALL_STATE(7998)] = 34894, + [SMALL_STATE(7999)] = 34975, + [SMALL_STATE(8000)] = 35056, + [SMALL_STATE(8001)] = 35137, + [SMALL_STATE(8002)] = 35218, + [SMALL_STATE(8003)] = 35299, + [SMALL_STATE(8004)] = 35380, + [SMALL_STATE(8005)] = 35461, + [SMALL_STATE(8006)] = 35542, + [SMALL_STATE(8007)] = 35623, + [SMALL_STATE(8008)] = 35704, + [SMALL_STATE(8009)] = 35785, + [SMALL_STATE(8010)] = 35866, + [SMALL_STATE(8011)] = 35947, + [SMALL_STATE(8012)] = 36028, + [SMALL_STATE(8013)] = 36109, + [SMALL_STATE(8014)] = 36190, + [SMALL_STATE(8015)] = 36271, + [SMALL_STATE(8016)] = 36352, + [SMALL_STATE(8017)] = 36433, + [SMALL_STATE(8018)] = 36514, + [SMALL_STATE(8019)] = 36595, + [SMALL_STATE(8020)] = 36676, + [SMALL_STATE(8021)] = 36757, + [SMALL_STATE(8022)] = 36838, + [SMALL_STATE(8023)] = 36919, + [SMALL_STATE(8024)] = 37000, + [SMALL_STATE(8025)] = 37081, + [SMALL_STATE(8026)] = 37162, + [SMALL_STATE(8027)] = 37243, + [SMALL_STATE(8028)] = 37324, + [SMALL_STATE(8029)] = 37405, + [SMALL_STATE(8030)] = 37486, + [SMALL_STATE(8031)] = 37567, + [SMALL_STATE(8032)] = 37648, + [SMALL_STATE(8033)] = 37729, + [SMALL_STATE(8034)] = 37810, + [SMALL_STATE(8035)] = 37891, + [SMALL_STATE(8036)] = 37972, + [SMALL_STATE(8037)] = 38053, + [SMALL_STATE(8038)] = 38134, + [SMALL_STATE(8039)] = 38215, + [SMALL_STATE(8040)] = 38296, + [SMALL_STATE(8041)] = 38377, + [SMALL_STATE(8042)] = 38458, + [SMALL_STATE(8043)] = 38539, + [SMALL_STATE(8044)] = 38620, + [SMALL_STATE(8045)] = 38701, + [SMALL_STATE(8046)] = 38782, + [SMALL_STATE(8047)] = 38863, + [SMALL_STATE(8048)] = 38944, + [SMALL_STATE(8049)] = 39025, + [SMALL_STATE(8050)] = 39106, + [SMALL_STATE(8051)] = 39187, + [SMALL_STATE(8052)] = 39268, + [SMALL_STATE(8053)] = 39349, + [SMALL_STATE(8054)] = 39430, + [SMALL_STATE(8055)] = 39511, + [SMALL_STATE(8056)] = 39592, + [SMALL_STATE(8057)] = 39673, + [SMALL_STATE(8058)] = 39754, + [SMALL_STATE(8059)] = 39835, + [SMALL_STATE(8060)] = 39916, + [SMALL_STATE(8061)] = 39997, + [SMALL_STATE(8062)] = 40078, + [SMALL_STATE(8063)] = 40159, + [SMALL_STATE(8064)] = 40240, + [SMALL_STATE(8065)] = 40321, + [SMALL_STATE(8066)] = 40402, + [SMALL_STATE(8067)] = 40483, + [SMALL_STATE(8068)] = 40564, + [SMALL_STATE(8069)] = 40645, + [SMALL_STATE(8070)] = 40726, + [SMALL_STATE(8071)] = 40807, + [SMALL_STATE(8072)] = 40888, + [SMALL_STATE(8073)] = 40969, + [SMALL_STATE(8074)] = 41050, + [SMALL_STATE(8075)] = 41131, + [SMALL_STATE(8076)] = 41212, + [SMALL_STATE(8077)] = 41293, + [SMALL_STATE(8078)] = 41374, + [SMALL_STATE(8079)] = 41455, + [SMALL_STATE(8080)] = 41536, + [SMALL_STATE(8081)] = 41617, + [SMALL_STATE(8082)] = 41698, + [SMALL_STATE(8083)] = 41779, + [SMALL_STATE(8084)] = 41860, + [SMALL_STATE(8085)] = 41941, + [SMALL_STATE(8086)] = 42022, + [SMALL_STATE(8087)] = 42103, + [SMALL_STATE(8088)] = 42184, + [SMALL_STATE(8089)] = 42265, + [SMALL_STATE(8090)] = 42346, + [SMALL_STATE(8091)] = 42427, + [SMALL_STATE(8092)] = 42508, + [SMALL_STATE(8093)] = 42589, + [SMALL_STATE(8094)] = 42670, + [SMALL_STATE(8095)] = 42751, + [SMALL_STATE(8096)] = 42832, + [SMALL_STATE(8097)] = 42913, + [SMALL_STATE(8098)] = 42994, + [SMALL_STATE(8099)] = 43075, + [SMALL_STATE(8100)] = 43156, + [SMALL_STATE(8101)] = 43237, + [SMALL_STATE(8102)] = 43318, + [SMALL_STATE(8103)] = 43399, + [SMALL_STATE(8104)] = 43480, + [SMALL_STATE(8105)] = 43561, + [SMALL_STATE(8106)] = 43642, + [SMALL_STATE(8107)] = 43723, + [SMALL_STATE(8108)] = 43804, + [SMALL_STATE(8109)] = 43885, + [SMALL_STATE(8110)] = 43966, + [SMALL_STATE(8111)] = 44047, + [SMALL_STATE(8112)] = 44128, + [SMALL_STATE(8113)] = 44209, + [SMALL_STATE(8114)] = 44290, + [SMALL_STATE(8115)] = 44371, + [SMALL_STATE(8116)] = 44452, + [SMALL_STATE(8117)] = 44533, + [SMALL_STATE(8118)] = 44614, + [SMALL_STATE(8119)] = 44695, + [SMALL_STATE(8120)] = 44776, + [SMALL_STATE(8121)] = 44857, + [SMALL_STATE(8122)] = 44938, + [SMALL_STATE(8123)] = 45019, + [SMALL_STATE(8124)] = 45100, + [SMALL_STATE(8125)] = 45181, + [SMALL_STATE(8126)] = 45262, + [SMALL_STATE(8127)] = 45343, + [SMALL_STATE(8128)] = 45424, + [SMALL_STATE(8129)] = 45505, + [SMALL_STATE(8130)] = 45586, + [SMALL_STATE(8131)] = 45667, + [SMALL_STATE(8132)] = 45748, + [SMALL_STATE(8133)] = 45829, + [SMALL_STATE(8134)] = 45910, + [SMALL_STATE(8135)] = 45991, + [SMALL_STATE(8136)] = 46072, + [SMALL_STATE(8137)] = 46153, + [SMALL_STATE(8138)] = 46234, + [SMALL_STATE(8139)] = 46315, + [SMALL_STATE(8140)] = 46396, + [SMALL_STATE(8141)] = 46477, + [SMALL_STATE(8142)] = 46558, + [SMALL_STATE(8143)] = 46639, + [SMALL_STATE(8144)] = 46720, + [SMALL_STATE(8145)] = 46801, + [SMALL_STATE(8146)] = 46882, + [SMALL_STATE(8147)] = 46963, + [SMALL_STATE(8148)] = 47044, + [SMALL_STATE(8149)] = 47125, + [SMALL_STATE(8150)] = 47206, + [SMALL_STATE(8151)] = 47287, + [SMALL_STATE(8152)] = 47368, + [SMALL_STATE(8153)] = 47449, + [SMALL_STATE(8154)] = 47530, + [SMALL_STATE(8155)] = 47611, + [SMALL_STATE(8156)] = 47692, + [SMALL_STATE(8157)] = 47773, + [SMALL_STATE(8158)] = 47854, + [SMALL_STATE(8159)] = 47935, + [SMALL_STATE(8160)] = 48016, + [SMALL_STATE(8161)] = 48097, + [SMALL_STATE(8162)] = 48178, + [SMALL_STATE(8163)] = 48259, + [SMALL_STATE(8164)] = 48340, + [SMALL_STATE(8165)] = 48421, + [SMALL_STATE(8166)] = 48502, + [SMALL_STATE(8167)] = 48583, + [SMALL_STATE(8168)] = 48664, + [SMALL_STATE(8169)] = 48745, + [SMALL_STATE(8170)] = 48826, + [SMALL_STATE(8171)] = 48907, + [SMALL_STATE(8172)] = 48988, + [SMALL_STATE(8173)] = 49069, + [SMALL_STATE(8174)] = 49150, + [SMALL_STATE(8175)] = 49231, + [SMALL_STATE(8176)] = 49312, + [SMALL_STATE(8177)] = 49393, + [SMALL_STATE(8178)] = 49474, + [SMALL_STATE(8179)] = 49555, + [SMALL_STATE(8180)] = 49636, + [SMALL_STATE(8181)] = 49717, + [SMALL_STATE(8182)] = 49798, + [SMALL_STATE(8183)] = 49879, + [SMALL_STATE(8184)] = 49960, + [SMALL_STATE(8185)] = 50041, + [SMALL_STATE(8186)] = 50122, + [SMALL_STATE(8187)] = 50203, + [SMALL_STATE(8188)] = 50284, + [SMALL_STATE(8189)] = 50365, + [SMALL_STATE(8190)] = 50446, + [SMALL_STATE(8191)] = 50527, + [SMALL_STATE(8192)] = 50608, + [SMALL_STATE(8193)] = 50689, + [SMALL_STATE(8194)] = 50770, + [SMALL_STATE(8195)] = 50851, + [SMALL_STATE(8196)] = 50932, + [SMALL_STATE(8197)] = 51013, + [SMALL_STATE(8198)] = 51094, + [SMALL_STATE(8199)] = 51175, + [SMALL_STATE(8200)] = 51256, + [SMALL_STATE(8201)] = 51337, + [SMALL_STATE(8202)] = 51418, + [SMALL_STATE(8203)] = 51499, + [SMALL_STATE(8204)] = 51580, + [SMALL_STATE(8205)] = 51661, + [SMALL_STATE(8206)] = 51742, + [SMALL_STATE(8207)] = 51823, + [SMALL_STATE(8208)] = 51904, + [SMALL_STATE(8209)] = 51985, + [SMALL_STATE(8210)] = 52066, + [SMALL_STATE(8211)] = 52147, + [SMALL_STATE(8212)] = 52225, + [SMALL_STATE(8213)] = 52303, + [SMALL_STATE(8214)] = 52381, + [SMALL_STATE(8215)] = 52459, + [SMALL_STATE(8216)] = 52537, + [SMALL_STATE(8217)] = 52615, + [SMALL_STATE(8218)] = 52693, + [SMALL_STATE(8219)] = 52771, + [SMALL_STATE(8220)] = 52849, + [SMALL_STATE(8221)] = 52927, + [SMALL_STATE(8222)] = 53005, + [SMALL_STATE(8223)] = 53083, + [SMALL_STATE(8224)] = 53147, + [SMALL_STATE(8225)] = 53209, + [SMALL_STATE(8226)] = 53273, + [SMALL_STATE(8227)] = 53335, + [SMALL_STATE(8228)] = 53397, + [SMALL_STATE(8229)] = 53456, + [SMALL_STATE(8230)] = 53515, + [SMALL_STATE(8231)] = 53576, + [SMALL_STATE(8232)] = 53635, + [SMALL_STATE(8233)] = 53694, + [SMALL_STATE(8234)] = 53755, + [SMALL_STATE(8235)] = 53814, + [SMALL_STATE(8236)] = 53873, + [SMALL_STATE(8237)] = 53932, + [SMALL_STATE(8238)] = 53991, + [SMALL_STATE(8239)] = 54054, + [SMALL_STATE(8240)] = 54113, + [SMALL_STATE(8241)] = 54172, + [SMALL_STATE(8242)] = 54231, + [SMALL_STATE(8243)] = 54290, + [SMALL_STATE(8244)] = 54349, + [SMALL_STATE(8245)] = 54408, + [SMALL_STATE(8246)] = 54467, + [SMALL_STATE(8247)] = 54526, + [SMALL_STATE(8248)] = 54585, + [SMALL_STATE(8249)] = 54644, + [SMALL_STATE(8250)] = 54703, + [SMALL_STATE(8251)] = 54762, + [SMALL_STATE(8252)] = 54821, + [SMALL_STATE(8253)] = 54880, + [SMALL_STATE(8254)] = 54939, + [SMALL_STATE(8255)] = 54998, + [SMALL_STATE(8256)] = 55057, + [SMALL_STATE(8257)] = 55116, + [SMALL_STATE(8258)] = 55175, + [SMALL_STATE(8259)] = 55234, + [SMALL_STATE(8260)] = 55293, + [SMALL_STATE(8261)] = 55352, + [SMALL_STATE(8262)] = 55411, + [SMALL_STATE(8263)] = 55474, + [SMALL_STATE(8264)] = 55533, + [SMALL_STATE(8265)] = 55592, + [SMALL_STATE(8266)] = 55651, + [SMALL_STATE(8267)] = 55710, + [SMALL_STATE(8268)] = 55769, + [SMALL_STATE(8269)] = 55828, + [SMALL_STATE(8270)] = 55887, + [SMALL_STATE(8271)] = 55946, + [SMALL_STATE(8272)] = 56005, + [SMALL_STATE(8273)] = 56064, + [SMALL_STATE(8274)] = 56123, + [SMALL_STATE(8275)] = 56182, + [SMALL_STATE(8276)] = 56241, + [SMALL_STATE(8277)] = 56300, + [SMALL_STATE(8278)] = 56359, + [SMALL_STATE(8279)] = 56418, + [SMALL_STATE(8280)] = 56477, + [SMALL_STATE(8281)] = 56536, + [SMALL_STATE(8282)] = 56595, + [SMALL_STATE(8283)] = 56654, + [SMALL_STATE(8284)] = 56713, + [SMALL_STATE(8285)] = 56772, + [SMALL_STATE(8286)] = 56831, + [SMALL_STATE(8287)] = 56890, + [SMALL_STATE(8288)] = 56949, + [SMALL_STATE(8289)] = 57008, + [SMALL_STATE(8290)] = 57069, + [SMALL_STATE(8291)] = 57130, + [SMALL_STATE(8292)] = 57187, + [SMALL_STATE(8293)] = 57244, + [SMALL_STATE(8294)] = 57303, + [SMALL_STATE(8295)] = 57362, + [SMALL_STATE(8296)] = 57421, + [SMALL_STATE(8297)] = 57477, + [SMALL_STATE(8298)] = 57533, + [SMALL_STATE(8299)] = 57597, + [SMALL_STATE(8300)] = 57653, + [SMALL_STATE(8301)] = 57709, + [SMALL_STATE(8302)] = 57765, + [SMALL_STATE(8303)] = 57821, + [SMALL_STATE(8304)] = 57877, + [SMALL_STATE(8305)] = 57943, + [SMALL_STATE(8306)] = 57999, + [SMALL_STATE(8307)] = 58065, + [SMALL_STATE(8308)] = 58131, + [SMALL_STATE(8309)] = 58187, + [SMALL_STATE(8310)] = 58243, + [SMALL_STATE(8311)] = 58299, + [SMALL_STATE(8312)] = 58359, + [SMALL_STATE(8313)] = 58415, + [SMALL_STATE(8314)] = 58471, + [SMALL_STATE(8315)] = 58529, + [SMALL_STATE(8316)] = 58585, + [SMALL_STATE(8317)] = 58641, + [SMALL_STATE(8318)] = 58697, + [SMALL_STATE(8319)] = 58753, + [SMALL_STATE(8320)] = 58809, + [SMALL_STATE(8321)] = 58865, + [SMALL_STATE(8322)] = 58921, + [SMALL_STATE(8323)] = 58977, + [SMALL_STATE(8324)] = 59033, + [SMALL_STATE(8325)] = 59089, + [SMALL_STATE(8326)] = 59145, + [SMALL_STATE(8327)] = 59203, + [SMALL_STATE(8328)] = 59259, + [SMALL_STATE(8329)] = 59315, + [SMALL_STATE(8330)] = 59371, + [SMALL_STATE(8331)] = 59427, + [SMALL_STATE(8332)] = 59483, + [SMALL_STATE(8333)] = 59549, + [SMALL_STATE(8334)] = 59605, + [SMALL_STATE(8335)] = 59661, + [SMALL_STATE(8336)] = 59717, + [SMALL_STATE(8337)] = 59773, + [SMALL_STATE(8338)] = 59829, + [SMALL_STATE(8339)] = 59885, + [SMALL_STATE(8340)] = 59941, + [SMALL_STATE(8341)] = 59997, + [SMALL_STATE(8342)] = 60053, + [SMALL_STATE(8343)] = 60109, + [SMALL_STATE(8344)] = 60165, + [SMALL_STATE(8345)] = 60221, + [SMALL_STATE(8346)] = 60277, + [SMALL_STATE(8347)] = 60333, + [SMALL_STATE(8348)] = 60389, + [SMALL_STATE(8349)] = 60445, + [SMALL_STATE(8350)] = 60511, + [SMALL_STATE(8351)] = 60567, + [SMALL_STATE(8352)] = 60623, + [SMALL_STATE(8353)] = 60689, + [SMALL_STATE(8354)] = 60745, + [SMALL_STATE(8355)] = 60801, + [SMALL_STATE(8356)] = 60859, + [SMALL_STATE(8357)] = 60915, + [SMALL_STATE(8358)] = 60971, + [SMALL_STATE(8359)] = 61029, + [SMALL_STATE(8360)] = 61085, + [SMALL_STATE(8361)] = 61141, + [SMALL_STATE(8362)] = 61197, + [SMALL_STATE(8363)] = 61253, + [SMALL_STATE(8364)] = 61309, + [SMALL_STATE(8365)] = 61365, + [SMALL_STATE(8366)] = 61421, + [SMALL_STATE(8367)] = 61476, + [SMALL_STATE(8368)] = 61531, + [SMALL_STATE(8369)] = 61586, + [SMALL_STATE(8370)] = 61641, + [SMALL_STATE(8371)] = 61696, + [SMALL_STATE(8372)] = 61751, + [SMALL_STATE(8373)] = 61806, + [SMALL_STATE(8374)] = 61861, + [SMALL_STATE(8375)] = 61916, + [SMALL_STATE(8376)] = 61971, + [SMALL_STATE(8377)] = 62026, + [SMALL_STATE(8378)] = 62081, + [SMALL_STATE(8379)] = 62136, + [SMALL_STATE(8380)] = 62191, + [SMALL_STATE(8381)] = 62246, + [SMALL_STATE(8382)] = 62301, + [SMALL_STATE(8383)] = 62356, + [SMALL_STATE(8384)] = 62411, + [SMALL_STATE(8385)] = 62466, + [SMALL_STATE(8386)] = 62521, + [SMALL_STATE(8387)] = 62576, + [SMALL_STATE(8388)] = 62631, + [SMALL_STATE(8389)] = 62686, + [SMALL_STATE(8390)] = 62741, + [SMALL_STATE(8391)] = 62796, + [SMALL_STATE(8392)] = 62851, + [SMALL_STATE(8393)] = 62906, + [SMALL_STATE(8394)] = 62961, + [SMALL_STATE(8395)] = 63016, + [SMALL_STATE(8396)] = 63071, + [SMALL_STATE(8397)] = 63126, + [SMALL_STATE(8398)] = 63181, + [SMALL_STATE(8399)] = 63236, + [SMALL_STATE(8400)] = 63291, + [SMALL_STATE(8401)] = 63346, + [SMALL_STATE(8402)] = 63401, + [SMALL_STATE(8403)] = 63456, + [SMALL_STATE(8404)] = 63511, + [SMALL_STATE(8405)] = 63566, + [SMALL_STATE(8406)] = 63621, + [SMALL_STATE(8407)] = 63676, + [SMALL_STATE(8408)] = 63731, + [SMALL_STATE(8409)] = 63786, + [SMALL_STATE(8410)] = 63841, + [SMALL_STATE(8411)] = 63896, + [SMALL_STATE(8412)] = 63951, + [SMALL_STATE(8413)] = 64006, + [SMALL_STATE(8414)] = 64061, + [SMALL_STATE(8415)] = 64116, + [SMALL_STATE(8416)] = 64171, + [SMALL_STATE(8417)] = 64226, + [SMALL_STATE(8418)] = 64281, + [SMALL_STATE(8419)] = 64336, + [SMALL_STATE(8420)] = 64391, + [SMALL_STATE(8421)] = 64446, + [SMALL_STATE(8422)] = 64501, + [SMALL_STATE(8423)] = 64556, + [SMALL_STATE(8424)] = 64611, + [SMALL_STATE(8425)] = 64666, + [SMALL_STATE(8426)] = 64721, + [SMALL_STATE(8427)] = 64776, + [SMALL_STATE(8428)] = 64831, + [SMALL_STATE(8429)] = 64886, + [SMALL_STATE(8430)] = 64941, + [SMALL_STATE(8431)] = 64996, + [SMALL_STATE(8432)] = 65051, + [SMALL_STATE(8433)] = 65106, + [SMALL_STATE(8434)] = 65161, + [SMALL_STATE(8435)] = 65216, + [SMALL_STATE(8436)] = 65271, + [SMALL_STATE(8437)] = 65326, + [SMALL_STATE(8438)] = 65381, + [SMALL_STATE(8439)] = 65436, + [SMALL_STATE(8440)] = 65491, + [SMALL_STATE(8441)] = 65546, + [SMALL_STATE(8442)] = 65601, + [SMALL_STATE(8443)] = 65656, + [SMALL_STATE(8444)] = 65711, + [SMALL_STATE(8445)] = 65766, + [SMALL_STATE(8446)] = 65821, + [SMALL_STATE(8447)] = 65876, + [SMALL_STATE(8448)] = 65931, + [SMALL_STATE(8449)] = 65986, + [SMALL_STATE(8450)] = 66041, + [SMALL_STATE(8451)] = 66096, + [SMALL_STATE(8452)] = 66151, + [SMALL_STATE(8453)] = 66206, + [SMALL_STATE(8454)] = 66261, + [SMALL_STATE(8455)] = 66316, + [SMALL_STATE(8456)] = 66371, + [SMALL_STATE(8457)] = 66426, + [SMALL_STATE(8458)] = 66481, + [SMALL_STATE(8459)] = 66536, + [SMALL_STATE(8460)] = 66591, + [SMALL_STATE(8461)] = 66646, + [SMALL_STATE(8462)] = 66701, + [SMALL_STATE(8463)] = 66782, + [SMALL_STATE(8464)] = 66837, + [SMALL_STATE(8465)] = 66892, + [SMALL_STATE(8466)] = 66947, + [SMALL_STATE(8467)] = 67002, + [SMALL_STATE(8468)] = 67057, + [SMALL_STATE(8469)] = 67112, + [SMALL_STATE(8470)] = 67167, + [SMALL_STATE(8471)] = 67222, + [SMALL_STATE(8472)] = 67277, + [SMALL_STATE(8473)] = 67332, + [SMALL_STATE(8474)] = 67387, + [SMALL_STATE(8475)] = 67442, + [SMALL_STATE(8476)] = 67497, + [SMALL_STATE(8477)] = 67552, + [SMALL_STATE(8478)] = 67607, + [SMALL_STATE(8479)] = 67662, + [SMALL_STATE(8480)] = 67717, + [SMALL_STATE(8481)] = 67784, + [SMALL_STATE(8482)] = 67855, + [SMALL_STATE(8483)] = 67910, + [SMALL_STATE(8484)] = 67965, + [SMALL_STATE(8485)] = 68020, + [SMALL_STATE(8486)] = 68075, + [SMALL_STATE(8487)] = 68130, + [SMALL_STATE(8488)] = 68185, + [SMALL_STATE(8489)] = 68240, + [SMALL_STATE(8490)] = 68295, + [SMALL_STATE(8491)] = 68376, + [SMALL_STATE(8492)] = 68455, + [SMALL_STATE(8493)] = 68510, + [SMALL_STATE(8494)] = 68565, + [SMALL_STATE(8495)] = 68620, + [SMALL_STATE(8496)] = 68675, + [SMALL_STATE(8497)] = 68734, + [SMALL_STATE(8498)] = 68811, + [SMALL_STATE(8499)] = 68866, + [SMALL_STATE(8500)] = 68921, + [SMALL_STATE(8501)] = 68976, + [SMALL_STATE(8502)] = 69049, + [SMALL_STATE(8503)] = 69104, + [SMALL_STATE(8504)] = 69159, + [SMALL_STATE(8505)] = 69228, + [SMALL_STATE(8506)] = 69283, + [SMALL_STATE(8507)] = 69338, + [SMALL_STATE(8508)] = 69393, + [SMALL_STATE(8509)] = 69448, + [SMALL_STATE(8510)] = 69503, + [SMALL_STATE(8511)] = 69558, + [SMALL_STATE(8512)] = 69613, + [SMALL_STATE(8513)] = 69668, + [SMALL_STATE(8514)] = 69723, + [SMALL_STATE(8515)] = 69778, + [SMALL_STATE(8516)] = 69833, + [SMALL_STATE(8517)] = 69888, + [SMALL_STATE(8518)] = 69943, + [SMALL_STATE(8519)] = 69998, + [SMALL_STATE(8520)] = 70053, + [SMALL_STATE(8521)] = 70108, + [SMALL_STATE(8522)] = 70163, + [SMALL_STATE(8523)] = 70218, + [SMALL_STATE(8524)] = 70273, + [SMALL_STATE(8525)] = 70328, + [SMALL_STATE(8526)] = 70383, + [SMALL_STATE(8527)] = 70438, + [SMALL_STATE(8528)] = 70493, + [SMALL_STATE(8529)] = 70548, + [SMALL_STATE(8530)] = 70603, + [SMALL_STATE(8531)] = 70658, + [SMALL_STATE(8532)] = 70713, + [SMALL_STATE(8533)] = 70768, + [SMALL_STATE(8534)] = 70823, + [SMALL_STATE(8535)] = 70878, + [SMALL_STATE(8536)] = 70933, + [SMALL_STATE(8537)] = 70988, + [SMALL_STATE(8538)] = 71043, + [SMALL_STATE(8539)] = 71098, + [SMALL_STATE(8540)] = 71153, + [SMALL_STATE(8541)] = 71208, + [SMALL_STATE(8542)] = 71263, + [SMALL_STATE(8543)] = 71318, + [SMALL_STATE(8544)] = 71373, + [SMALL_STATE(8545)] = 71428, + [SMALL_STATE(8546)] = 71483, + [SMALL_STATE(8547)] = 71538, + [SMALL_STATE(8548)] = 71593, + [SMALL_STATE(8549)] = 71648, + [SMALL_STATE(8550)] = 71703, + [SMALL_STATE(8551)] = 71758, + [SMALL_STATE(8552)] = 71813, + [SMALL_STATE(8553)] = 71868, + [SMALL_STATE(8554)] = 71923, + [SMALL_STATE(8555)] = 71978, + [SMALL_STATE(8556)] = 72033, + [SMALL_STATE(8557)] = 72088, + [SMALL_STATE(8558)] = 72143, + [SMALL_STATE(8559)] = 72198, + [SMALL_STATE(8560)] = 72253, + [SMALL_STATE(8561)] = 72308, + [SMALL_STATE(8562)] = 72363, + [SMALL_STATE(8563)] = 72418, + [SMALL_STATE(8564)] = 72473, + [SMALL_STATE(8565)] = 72528, + [SMALL_STATE(8566)] = 72583, + [SMALL_STATE(8567)] = 72638, + [SMALL_STATE(8568)] = 72693, + [SMALL_STATE(8569)] = 72748, + [SMALL_STATE(8570)] = 72803, + [SMALL_STATE(8571)] = 72858, + [SMALL_STATE(8572)] = 72913, + [SMALL_STATE(8573)] = 72968, + [SMALL_STATE(8574)] = 73023, + [SMALL_STATE(8575)] = 73104, + [SMALL_STATE(8576)] = 73159, + [SMALL_STATE(8577)] = 73214, + [SMALL_STATE(8578)] = 73269, + [SMALL_STATE(8579)] = 73324, + [SMALL_STATE(8580)] = 73379, + [SMALL_STATE(8581)] = 73434, + [SMALL_STATE(8582)] = 73497, + [SMALL_STATE(8583)] = 73552, + [SMALL_STATE(8584)] = 73607, + [SMALL_STATE(8585)] = 73662, + [SMALL_STATE(8586)] = 73717, + [SMALL_STATE(8587)] = 73772, + [SMALL_STATE(8588)] = 73827, + [SMALL_STATE(8589)] = 73882, + [SMALL_STATE(8590)] = 73937, + [SMALL_STATE(8591)] = 73992, + [SMALL_STATE(8592)] = 74047, + [SMALL_STATE(8593)] = 74102, + [SMALL_STATE(8594)] = 74157, + [SMALL_STATE(8595)] = 74212, + [SMALL_STATE(8596)] = 74267, + [SMALL_STATE(8597)] = 74334, + [SMALL_STATE(8598)] = 74389, + [SMALL_STATE(8599)] = 74444, + [SMALL_STATE(8600)] = 74499, + [SMALL_STATE(8601)] = 74554, + [SMALL_STATE(8602)] = 74609, + [SMALL_STATE(8603)] = 74664, + [SMALL_STATE(8604)] = 74719, + [SMALL_STATE(8605)] = 74774, + [SMALL_STATE(8606)] = 74833, + [SMALL_STATE(8607)] = 74888, + [SMALL_STATE(8608)] = 74943, + [SMALL_STATE(8609)] = 74998, + [SMALL_STATE(8610)] = 75053, + [SMALL_STATE(8611)] = 75108, + [SMALL_STATE(8612)] = 75163, + [SMALL_STATE(8613)] = 75218, + [SMALL_STATE(8614)] = 75273, + [SMALL_STATE(8615)] = 75328, + [SMALL_STATE(8616)] = 75383, + [SMALL_STATE(8617)] = 75438, + [SMALL_STATE(8618)] = 75493, + [SMALL_STATE(8619)] = 75548, + [SMALL_STATE(8620)] = 75603, + [SMALL_STATE(8621)] = 75658, + [SMALL_STATE(8622)] = 75713, + [SMALL_STATE(8623)] = 75784, + [SMALL_STATE(8624)] = 75839, + [SMALL_STATE(8625)] = 75894, + [SMALL_STATE(8626)] = 75949, + [SMALL_STATE(8627)] = 76004, + [SMALL_STATE(8628)] = 76059, + [SMALL_STATE(8629)] = 76114, + [SMALL_STATE(8630)] = 76169, + [SMALL_STATE(8631)] = 76224, + [SMALL_STATE(8632)] = 76279, + [SMALL_STATE(8633)] = 76334, + [SMALL_STATE(8634)] = 76389, + [SMALL_STATE(8635)] = 76444, + [SMALL_STATE(8636)] = 76499, + [SMALL_STATE(8637)] = 76554, + [SMALL_STATE(8638)] = 76609, + [SMALL_STATE(8639)] = 76664, + [SMALL_STATE(8640)] = 76719, + [SMALL_STATE(8641)] = 76774, + [SMALL_STATE(8642)] = 76829, + [SMALL_STATE(8643)] = 76884, + [SMALL_STATE(8644)] = 76939, + [SMALL_STATE(8645)] = 76994, + [SMALL_STATE(8646)] = 77049, + [SMALL_STATE(8647)] = 77104, + [SMALL_STATE(8648)] = 77159, + [SMALL_STATE(8649)] = 77214, + [SMALL_STATE(8650)] = 77269, + [SMALL_STATE(8651)] = 77324, + [SMALL_STATE(8652)] = 77379, + [SMALL_STATE(8653)] = 77434, + [SMALL_STATE(8654)] = 77489, + [SMALL_STATE(8655)] = 77544, + [SMALL_STATE(8656)] = 77599, + [SMALL_STATE(8657)] = 77654, + [SMALL_STATE(8658)] = 77709, + [SMALL_STATE(8659)] = 77764, + [SMALL_STATE(8660)] = 77819, + [SMALL_STATE(8661)] = 77874, + [SMALL_STATE(8662)] = 77929, + [SMALL_STATE(8663)] = 77984, + [SMALL_STATE(8664)] = 78039, + [SMALL_STATE(8665)] = 78120, + [SMALL_STATE(8666)] = 78175, + [SMALL_STATE(8667)] = 78230, + [SMALL_STATE(8668)] = 78285, + [SMALL_STATE(8669)] = 78340, + [SMALL_STATE(8670)] = 78395, + [SMALL_STATE(8671)] = 78450, + [SMALL_STATE(8672)] = 78529, + [SMALL_STATE(8673)] = 78584, + [SMALL_STATE(8674)] = 78639, + [SMALL_STATE(8675)] = 78694, + [SMALL_STATE(8676)] = 78749, + [SMALL_STATE(8677)] = 78826, + [SMALL_STATE(8678)] = 78881, + [SMALL_STATE(8679)] = 78936, + [SMALL_STATE(8680)] = 78991, + [SMALL_STATE(8681)] = 79046, + [SMALL_STATE(8682)] = 79101, + [SMALL_STATE(8683)] = 79174, + [SMALL_STATE(8684)] = 79243, + [SMALL_STATE(8685)] = 79298, + [SMALL_STATE(8686)] = 79353, + [SMALL_STATE(8687)] = 79408, + [SMALL_STATE(8688)] = 79463, + [SMALL_STATE(8689)] = 79518, + [SMALL_STATE(8690)] = 79599, + [SMALL_STATE(8691)] = 79654, + [SMALL_STATE(8692)] = 79709, + [SMALL_STATE(8693)] = 79764, + [SMALL_STATE(8694)] = 79819, + [SMALL_STATE(8695)] = 79874, + [SMALL_STATE(8696)] = 79929, + [SMALL_STATE(8697)] = 80010, + [SMALL_STATE(8698)] = 80065, + [SMALL_STATE(8699)] = 80120, + [SMALL_STATE(8700)] = 80175, + [SMALL_STATE(8701)] = 80230, + [SMALL_STATE(8702)] = 80285, + [SMALL_STATE(8703)] = 80340, + [SMALL_STATE(8704)] = 80395, + [SMALL_STATE(8705)] = 80450, + [SMALL_STATE(8706)] = 80505, + [SMALL_STATE(8707)] = 80560, + [SMALL_STATE(8708)] = 80615, + [SMALL_STATE(8709)] = 80670, + [SMALL_STATE(8710)] = 80725, + [SMALL_STATE(8711)] = 80780, + [SMALL_STATE(8712)] = 80835, + [SMALL_STATE(8713)] = 80890, + [SMALL_STATE(8714)] = 80945, + [SMALL_STATE(8715)] = 81000, + [SMALL_STATE(8716)] = 81055, + [SMALL_STATE(8717)] = 81112, + [SMALL_STATE(8718)] = 81169, + [SMALL_STATE(8719)] = 81224, + [SMALL_STATE(8720)] = 81279, + [SMALL_STATE(8721)] = 81334, + [SMALL_STATE(8722)] = 81389, + [SMALL_STATE(8723)] = 81444, + [SMALL_STATE(8724)] = 81499, + [SMALL_STATE(8725)] = 81554, + [SMALL_STATE(8726)] = 81609, + [SMALL_STATE(8727)] = 81664, + [SMALL_STATE(8728)] = 81719, + [SMALL_STATE(8729)] = 81774, + [SMALL_STATE(8730)] = 81829, + [SMALL_STATE(8731)] = 81884, + [SMALL_STATE(8732)] = 81939, + [SMALL_STATE(8733)] = 81994, + [SMALL_STATE(8734)] = 82049, + [SMALL_STATE(8735)] = 82104, + [SMALL_STATE(8736)] = 82159, + [SMALL_STATE(8737)] = 82214, + [SMALL_STATE(8738)] = 82269, + [SMALL_STATE(8739)] = 82324, + [SMALL_STATE(8740)] = 82384, + [SMALL_STATE(8741)] = 82460, + [SMALL_STATE(8742)] = 82520, + [SMALL_STATE(8743)] = 82596, + [SMALL_STATE(8744)] = 82666, + [SMALL_STATE(8745)] = 82726, + [SMALL_STATE(8746)] = 82818, + [SMALL_STATE(8747)] = 82890, + [SMALL_STATE(8748)] = 82958, + [SMALL_STATE(8749)] = 83018, + [SMALL_STATE(8750)] = 83078, + [SMALL_STATE(8751)] = 83158, + [SMALL_STATE(8752)] = 83218, + [SMALL_STATE(8753)] = 83290, + [SMALL_STATE(8754)] = 83350, + [SMALL_STATE(8755)] = 83430, + [SMALL_STATE(8756)] = 83498, + [SMALL_STATE(8757)] = 83590, + [SMALL_STATE(8758)] = 83670, + [SMALL_STATE(8759)] = 83750, + [SMALL_STATE(8760)] = 83810, + [SMALL_STATE(8761)] = 83870, + [SMALL_STATE(8762)] = 83954, + [SMALL_STATE(8763)] = 84014, + [SMALL_STATE(8764)] = 84094, + [SMALL_STATE(8765)] = 84154, + [SMALL_STATE(8766)] = 84214, + [SMALL_STATE(8767)] = 84274, + [SMALL_STATE(8768)] = 84354, + [SMALL_STATE(8769)] = 84414, + [SMALL_STATE(8770)] = 84474, + [SMALL_STATE(8771)] = 84562, + [SMALL_STATE(8772)] = 84622, + [SMALL_STATE(8773)] = 84706, + [SMALL_STATE(8774)] = 84772, + [SMALL_STATE(8775)] = 84842, + [SMALL_STATE(8776)] = 84920, + [SMALL_STATE(8777)] = 84980, + [SMALL_STATE(8778)] = 85070, + [SMALL_STATE(8779)] = 85130, + [SMALL_STATE(8780)] = 85190, + [SMALL_STATE(8781)] = 85268, + [SMALL_STATE(8782)] = 85360, + [SMALL_STATE(8783)] = 85420, + [SMALL_STATE(8784)] = 85510, + [SMALL_STATE(8785)] = 85594, + [SMALL_STATE(8786)] = 85682, + [SMALL_STATE(8787)] = 85742, + [SMALL_STATE(8788)] = 85802, + [SMALL_STATE(8789)] = 85862, + [SMALL_STATE(8790)] = 85946, + [SMALL_STATE(8791)] = 86006, + [SMALL_STATE(8792)] = 86064, + [SMALL_STATE(8793)] = 86130, + [SMALL_STATE(8794)] = 86183, + [SMALL_STATE(8795)] = 86236, + [SMALL_STATE(8796)] = 86289, + [SMALL_STATE(8797)] = 86380, + [SMALL_STATE(8798)] = 86463, + [SMALL_STATE(8799)] = 86516, + [SMALL_STATE(8800)] = 86599, + [SMALL_STATE(8801)] = 86690, + [SMALL_STATE(8802)] = 86781, + [SMALL_STATE(8803)] = 86870, + [SMALL_STATE(8804)] = 86957, + [SMALL_STATE(8805)] = 87046, + [SMALL_STATE(8806)] = 87099, + [SMALL_STATE(8807)] = 87152, + [SMALL_STATE(8808)] = 87205, + [SMALL_STATE(8809)] = 87288, + [SMALL_STATE(8810)] = 87341, + [SMALL_STATE(8811)] = 87394, + [SMALL_STATE(8812)] = 87477, + [SMALL_STATE(8813)] = 87530, + [SMALL_STATE(8814)] = 87617, + [SMALL_STATE(8815)] = 87675, + [SMALL_STATE(8816)] = 87753, + [SMALL_STATE(8817)] = 87815, + [SMALL_STATE(8818)] = 87897, + [SMALL_STATE(8819)] = 87979, + [SMALL_STATE(8820)] = 88037, + [SMALL_STATE(8821)] = 88095, + [SMALL_STATE(8822)] = 88169, + [SMALL_STATE(8823)] = 88227, + [SMALL_STATE(8824)] = 88285, + [SMALL_STATE(8825)] = 88349, + [SMALL_STATE(8826)] = 88417, + [SMALL_STATE(8827)] = 88479, + [SMALL_STATE(8828)] = 88549, + [SMALL_STATE(8829)] = 88607, + [SMALL_STATE(8830)] = 88671, + [SMALL_STATE(8831)] = 88745, + [SMALL_STATE(8832)] = 88823, + [SMALL_STATE(8833)] = 88901, + [SMALL_STATE(8834)] = 88987, + [SMALL_STATE(8835)] = 89057, + [SMALL_STATE(8836)] = 89133, + [SMALL_STATE(8837)] = 89223, + [SMALL_STATE(8838)] = 89281, + [SMALL_STATE(8839)] = 89339, + [SMALL_STATE(8840)] = 89405, + [SMALL_STATE(8841)] = 89463, + [SMALL_STATE(8842)] = 89521, + [SMALL_STATE(8843)] = 89611, + [SMALL_STATE(8844)] = 89669, + [SMALL_STATE(8845)] = 89735, + [SMALL_STATE(8846)] = 89813, + [SMALL_STATE(8847)] = 89881, + [SMALL_STATE(8848)] = 89957, + [SMALL_STATE(8849)] = 90035, + [SMALL_STATE(8850)] = 90113, + [SMALL_STATE(8851)] = 90171, + [SMALL_STATE(8852)] = 90228, + [SMALL_STATE(8853)] = 90285, + [SMALL_STATE(8854)] = 90372, + [SMALL_STATE(8855)] = 90429, + [SMALL_STATE(8856)] = 90486, + [SMALL_STATE(8857)] = 90543, + [SMALL_STATE(8858)] = 90628, + [SMALL_STATE(8859)] = 90717, + [SMALL_STATE(8860)] = 90774, + [SMALL_STATE(8861)] = 90861, + [SMALL_STATE(8862)] = 90914, + [SMALL_STATE(8863)] = 91003, + [SMALL_STATE(8864)] = 91056, + [SMALL_STATE(8865)] = 91113, + [SMALL_STATE(8866)] = 91170, + [SMALL_STATE(8867)] = 91227, + [SMALL_STATE(8868)] = 91284, + [SMALL_STATE(8869)] = 91341, + [SMALL_STATE(8870)] = 91398, + [SMALL_STATE(8871)] = 91457, + [SMALL_STATE(8872)] = 91512, + [SMALL_STATE(8873)] = 91569, + [SMALL_STATE(8874)] = 91626, + [SMALL_STATE(8875)] = 91683, + [SMALL_STATE(8876)] = 91740, + [SMALL_STATE(8877)] = 91797, + [SMALL_STATE(8878)] = 91854, + [SMALL_STATE(8879)] = 91943, + [SMALL_STATE(8880)] = 92000, + [SMALL_STATE(8881)] = 92057, + [SMALL_STATE(8882)] = 92146, + [SMALL_STATE(8883)] = 92203, + [SMALL_STATE(8884)] = 92260, + [SMALL_STATE(8885)] = 92317, + [SMALL_STATE(8886)] = 92374, + [SMALL_STATE(8887)] = 92463, + [SMALL_STATE(8888)] = 92544, + [SMALL_STATE(8889)] = 92625, + [SMALL_STATE(8890)] = 92706, + [SMALL_STATE(8891)] = 92787, + [SMALL_STATE(8892)] = 92868, + [SMALL_STATE(8893)] = 92949, + [SMALL_STATE(8894)] = 93008, + [SMALL_STATE(8895)] = 93063, + [SMALL_STATE(8896)] = 93148, + [SMALL_STATE(8897)] = 93233, + [SMALL_STATE(8898)] = 93288, + [SMALL_STATE(8899)] = 93364, + [SMALL_STATE(8900)] = 93450, + [SMALL_STATE(8901)] = 93500, + [SMALL_STATE(8902)] = 93560, + [SMALL_STATE(8903)] = 93610, + [SMALL_STATE(8904)] = 93698, + [SMALL_STATE(8905)] = 93748, + [SMALL_STATE(8906)] = 93798, + [SMALL_STATE(8907)] = 93848, + [SMALL_STATE(8908)] = 93908, + [SMALL_STATE(8909)] = 93958, + [SMALL_STATE(8910)] = 94020, + [SMALL_STATE(8911)] = 94086, + [SMALL_STATE(8912)] = 94136, + [SMALL_STATE(8913)] = 94222, + [SMALL_STATE(8914)] = 94302, + [SMALL_STATE(8915)] = 94352, + [SMALL_STATE(8916)] = 94432, + [SMALL_STATE(8917)] = 94492, + [SMALL_STATE(8918)] = 94542, + [SMALL_STATE(8919)] = 94628, + [SMALL_STATE(8920)] = 94708, + [SMALL_STATE(8921)] = 94758, + [SMALL_STATE(8922)] = 94808, + [SMALL_STATE(8923)] = 94858, + [SMALL_STATE(8924)] = 94910, + [SMALL_STATE(8925)] = 94966, + [SMALL_STATE(8926)] = 95020, + [SMALL_STATE(8927)] = 95110, + [SMALL_STATE(8928)] = 95160, + [SMALL_STATE(8929)] = 95210, + [SMALL_STATE(8930)] = 95260, + [SMALL_STATE(8931)] = 95310, + [SMALL_STATE(8932)] = 95360, + [SMALL_STATE(8933)] = 95410, + [SMALL_STATE(8934)] = 95500, + [SMALL_STATE(8935)] = 95552, + [SMALL_STATE(8936)] = 95602, + [SMALL_STATE(8937)] = 95678, + [SMALL_STATE(8938)] = 95734, + [SMALL_STATE(8939)] = 95808, + [SMALL_STATE(8940)] = 95858, + [SMALL_STATE(8941)] = 95930, + [SMALL_STATE(8942)] = 95986, + [SMALL_STATE(8943)] = 96036, + [SMALL_STATE(8944)] = 96086, + [SMALL_STATE(8945)] = 96142, + [SMALL_STATE(8946)] = 96198, + [SMALL_STATE(8947)] = 96254, + [SMALL_STATE(8948)] = 96322, + [SMALL_STATE(8949)] = 96378, + [SMALL_STATE(8950)] = 96428, + [SMALL_STATE(8951)] = 96480, + [SMALL_STATE(8952)] = 96532, + [SMALL_STATE(8953)] = 96594, + [SMALL_STATE(8954)] = 96660, + [SMALL_STATE(8955)] = 96740, + [SMALL_STATE(8956)] = 96816, + [SMALL_STATE(8957)] = 96890, + [SMALL_STATE(8958)] = 96962, + [SMALL_STATE(8959)] = 97030, + [SMALL_STATE(8960)] = 97094, + [SMALL_STATE(8961)] = 97170, + [SMALL_STATE(8962)] = 97220, + [SMALL_STATE(8963)] = 97272, + [SMALL_STATE(8964)] = 97322, + [SMALL_STATE(8965)] = 97384, + [SMALL_STATE(8966)] = 97450, + [SMALL_STATE(8967)] = 97500, + [SMALL_STATE(8968)] = 97580, + [SMALL_STATE(8969)] = 97630, + [SMALL_STATE(8970)] = 97704, + [SMALL_STATE(8971)] = 97776, + [SMALL_STATE(8972)] = 97844, + [SMALL_STATE(8973)] = 97908, + [SMALL_STATE(8974)] = 97984, + [SMALL_STATE(8975)] = 98060, + [SMALL_STATE(8976)] = 98110, + [SMALL_STATE(8977)] = 98160, + [SMALL_STATE(8978)] = 98210, + [SMALL_STATE(8979)] = 98260, + [SMALL_STATE(8980)] = 98310, + [SMALL_STATE(8981)] = 98386, + [SMALL_STATE(8982)] = 98436, + [SMALL_STATE(8983)] = 98492, + [SMALL_STATE(8984)] = 98548, + [SMALL_STATE(8985)] = 98604, + [SMALL_STATE(8986)] = 98660, + [SMALL_STATE(8987)] = 98716, + [SMALL_STATE(8988)] = 98772, + [SMALL_STATE(8989)] = 98822, + [SMALL_STATE(8990)] = 98872, + [SMALL_STATE(8991)] = 98922, + [SMALL_STATE(8992)] = 98972, + [SMALL_STATE(8993)] = 99022, + [SMALL_STATE(8994)] = 99072, + [SMALL_STATE(8995)] = 99128, + [SMALL_STATE(8996)] = 99184, + [SMALL_STATE(8997)] = 99240, + [SMALL_STATE(8998)] = 99296, + [SMALL_STATE(8999)] = 99352, + [SMALL_STATE(9000)] = 99408, + [SMALL_STATE(9001)] = 99472, + [SMALL_STATE(9002)] = 99522, + [SMALL_STATE(9003)] = 99598, + [SMALL_STATE(9004)] = 99648, + [SMALL_STATE(9005)] = 99698, + [SMALL_STATE(9006)] = 99760, + [SMALL_STATE(9007)] = 99816, + [SMALL_STATE(9008)] = 99872, + [SMALL_STATE(9009)] = 99928, + [SMALL_STATE(9010)] = 100014, + [SMALL_STATE(9011)] = 100070, + [SMALL_STATE(9012)] = 100158, + [SMALL_STATE(9013)] = 100214, + [SMALL_STATE(9014)] = 100270, + [SMALL_STATE(9015)] = 100336, + [SMALL_STATE(9016)] = 100416, + [SMALL_STATE(9017)] = 100492, + [SMALL_STATE(9018)] = 100542, + [SMALL_STATE(9019)] = 100616, + [SMALL_STATE(9020)] = 100688, + [SMALL_STATE(9021)] = 100772, + [SMALL_STATE(9022)] = 100840, + [SMALL_STATE(9023)] = 100924, + [SMALL_STATE(9024)] = 101010, + [SMALL_STATE(9025)] = 101096, + [SMALL_STATE(9026)] = 101184, + [SMALL_STATE(9027)] = 101248, + [SMALL_STATE(9028)] = 101324, + [SMALL_STATE(9029)] = 101374, + [SMALL_STATE(9030)] = 101450, + [SMALL_STATE(9031)] = 101530, + [SMALL_STATE(9032)] = 101610, + [SMALL_STATE(9033)] = 101660, + [SMALL_STATE(9034)] = 101736, + [SMALL_STATE(9035)] = 101786, + [SMALL_STATE(9036)] = 101836, + [SMALL_STATE(9037)] = 101886, + [SMALL_STATE(9038)] = 101970, + [SMALL_STATE(9039)] = 102020, + [SMALL_STATE(9040)] = 102070, + [SMALL_STATE(9041)] = 102120, + [SMALL_STATE(9042)] = 102170, + [SMALL_STATE(9043)] = 102220, + [SMALL_STATE(9044)] = 102270, + [SMALL_STATE(9045)] = 102356, + [SMALL_STATE(9046)] = 102416, + [SMALL_STATE(9047)] = 102466, + [SMALL_STATE(9048)] = 102550, + [SMALL_STATE(9049)] = 102600, + [SMALL_STATE(9050)] = 102650, + [SMALL_STATE(9051)] = 102699, + [SMALL_STATE(9052)] = 102748, + [SMALL_STATE(9053)] = 102797, + [SMALL_STATE(9054)] = 102846, + [SMALL_STATE(9055)] = 102895, + [SMALL_STATE(9056)] = 102974, + [SMALL_STATE(9057)] = 103053, + [SMALL_STATE(9058)] = 103102, + [SMALL_STATE(9059)] = 103151, + [SMALL_STATE(9060)] = 103200, + [SMALL_STATE(9061)] = 103249, + [SMALL_STATE(9062)] = 103298, + [SMALL_STATE(9063)] = 103347, + [SMALL_STATE(9064)] = 103396, + [SMALL_STATE(9065)] = 103445, + [SMALL_STATE(9066)] = 103494, + [SMALL_STATE(9067)] = 103543, + [SMALL_STATE(9068)] = 103592, + [SMALL_STATE(9069)] = 103641, + [SMALL_STATE(9070)] = 103690, + [SMALL_STATE(9071)] = 103739, + [SMALL_STATE(9072)] = 103788, + [SMALL_STATE(9073)] = 103837, + [SMALL_STATE(9074)] = 103886, + [SMALL_STATE(9075)] = 103935, + [SMALL_STATE(9076)] = 103984, + [SMALL_STATE(9077)] = 104033, + [SMALL_STATE(9078)] = 104082, + [SMALL_STATE(9079)] = 104131, + [SMALL_STATE(9080)] = 104180, + [SMALL_STATE(9081)] = 104229, + [SMALL_STATE(9082)] = 104278, + [SMALL_STATE(9083)] = 104327, + [SMALL_STATE(9084)] = 104376, + [SMALL_STATE(9085)] = 104425, + [SMALL_STATE(9086)] = 104474, + [SMALL_STATE(9087)] = 104523, + [SMALL_STATE(9088)] = 104572, + [SMALL_STATE(9089)] = 104621, + [SMALL_STATE(9090)] = 104670, + [SMALL_STATE(9091)] = 104719, + [SMALL_STATE(9092)] = 104768, + [SMALL_STATE(9093)] = 104817, + [SMALL_STATE(9094)] = 104866, + [SMALL_STATE(9095)] = 104915, + [SMALL_STATE(9096)] = 104964, + [SMALL_STATE(9097)] = 105013, + [SMALL_STATE(9098)] = 105062, + [SMALL_STATE(9099)] = 105111, + [SMALL_STATE(9100)] = 105160, + [SMALL_STATE(9101)] = 105209, + [SMALL_STATE(9102)] = 105258, + [SMALL_STATE(9103)] = 105307, + [SMALL_STATE(9104)] = 105356, + [SMALL_STATE(9105)] = 105405, + [SMALL_STATE(9106)] = 105454, + [SMALL_STATE(9107)] = 105503, + [SMALL_STATE(9108)] = 105552, + [SMALL_STATE(9109)] = 105601, + [SMALL_STATE(9110)] = 105650, + [SMALL_STATE(9111)] = 105699, + [SMALL_STATE(9112)] = 105748, + [SMALL_STATE(9113)] = 105797, + [SMALL_STATE(9114)] = 105846, + [SMALL_STATE(9115)] = 105895, + [SMALL_STATE(9116)] = 105944, + [SMALL_STATE(9117)] = 105993, + [SMALL_STATE(9118)] = 106042, + [SMALL_STATE(9119)] = 106091, + [SMALL_STATE(9120)] = 106140, + [SMALL_STATE(9121)] = 106189, + [SMALL_STATE(9122)] = 106238, + [SMALL_STATE(9123)] = 106287, + [SMALL_STATE(9124)] = 106336, + [SMALL_STATE(9125)] = 106385, + [SMALL_STATE(9126)] = 106434, + [SMALL_STATE(9127)] = 106483, + [SMALL_STATE(9128)] = 106532, + [SMALL_STATE(9129)] = 106581, + [SMALL_STATE(9130)] = 106630, + [SMALL_STATE(9131)] = 106679, + [SMALL_STATE(9132)] = 106728, + [SMALL_STATE(9133)] = 106777, + [SMALL_STATE(9134)] = 106826, + [SMALL_STATE(9135)] = 106875, + [SMALL_STATE(9136)] = 106924, + [SMALL_STATE(9137)] = 106973, + [SMALL_STATE(9138)] = 107022, + [SMALL_STATE(9139)] = 107071, + [SMALL_STATE(9140)] = 107120, + [SMALL_STATE(9141)] = 107169, + [SMALL_STATE(9142)] = 107218, + [SMALL_STATE(9143)] = 107267, + [SMALL_STATE(9144)] = 107316, + [SMALL_STATE(9145)] = 107365, + [SMALL_STATE(9146)] = 107414, + [SMALL_STATE(9147)] = 107463, + [SMALL_STATE(9148)] = 107512, + [SMALL_STATE(9149)] = 107561, + [SMALL_STATE(9150)] = 107610, + [SMALL_STATE(9151)] = 107659, + [SMALL_STATE(9152)] = 107708, + [SMALL_STATE(9153)] = 107757, + [SMALL_STATE(9154)] = 107806, + [SMALL_STATE(9155)] = 107855, + [SMALL_STATE(9156)] = 107904, + [SMALL_STATE(9157)] = 107953, + [SMALL_STATE(9158)] = 108002, + [SMALL_STATE(9159)] = 108051, + [SMALL_STATE(9160)] = 108100, + [SMALL_STATE(9161)] = 108149, + [SMALL_STATE(9162)] = 108198, + [SMALL_STATE(9163)] = 108247, + [SMALL_STATE(9164)] = 108296, + [SMALL_STATE(9165)] = 108345, + [SMALL_STATE(9166)] = 108394, + [SMALL_STATE(9167)] = 108443, + [SMALL_STATE(9168)] = 108492, + [SMALL_STATE(9169)] = 108541, + [SMALL_STATE(9170)] = 108590, + [SMALL_STATE(9171)] = 108639, + [SMALL_STATE(9172)] = 108688, + [SMALL_STATE(9173)] = 108737, + [SMALL_STATE(9174)] = 108786, + [SMALL_STATE(9175)] = 108835, + [SMALL_STATE(9176)] = 108884, + [SMALL_STATE(9177)] = 108933, + [SMALL_STATE(9178)] = 108982, + [SMALL_STATE(9179)] = 109031, + [SMALL_STATE(9180)] = 109080, + [SMALL_STATE(9181)] = 109129, + [SMALL_STATE(9182)] = 109178, + [SMALL_STATE(9183)] = 109227, + [SMALL_STATE(9184)] = 109276, + [SMALL_STATE(9185)] = 109325, + [SMALL_STATE(9186)] = 109374, + [SMALL_STATE(9187)] = 109423, + [SMALL_STATE(9188)] = 109508, + [SMALL_STATE(9189)] = 109557, + [SMALL_STATE(9190)] = 109606, + [SMALL_STATE(9191)] = 109655, + [SMALL_STATE(9192)] = 109704, + [SMALL_STATE(9193)] = 109753, + [SMALL_STATE(9194)] = 109802, + [SMALL_STATE(9195)] = 109851, + [SMALL_STATE(9196)] = 109900, + [SMALL_STATE(9197)] = 109949, + [SMALL_STATE(9198)] = 109998, + [SMALL_STATE(9199)] = 110047, + [SMALL_STATE(9200)] = 110096, + [SMALL_STATE(9201)] = 110145, + [SMALL_STATE(9202)] = 110194, + [SMALL_STATE(9203)] = 110243, + [SMALL_STATE(9204)] = 110292, + [SMALL_STATE(9205)] = 110341, + [SMALL_STATE(9206)] = 110390, + [SMALL_STATE(9207)] = 110439, + [SMALL_STATE(9208)] = 110488, + [SMALL_STATE(9209)] = 110537, + [SMALL_STATE(9210)] = 110586, + [SMALL_STATE(9211)] = 110635, + [SMALL_STATE(9212)] = 110684, + [SMALL_STATE(9213)] = 110733, + [SMALL_STATE(9214)] = 110782, + [SMALL_STATE(9215)] = 110831, + [SMALL_STATE(9216)] = 110910, + [SMALL_STATE(9217)] = 110959, + [SMALL_STATE(9218)] = 111038, + [SMALL_STATE(9219)] = 111087, + [SMALL_STATE(9220)] = 111136, + [SMALL_STATE(9221)] = 111185, + [SMALL_STATE(9222)] = 111234, + [SMALL_STATE(9223)] = 111283, + [SMALL_STATE(9224)] = 111332, + [SMALL_STATE(9225)] = 111381, + [SMALL_STATE(9226)] = 111430, + [SMALL_STATE(9227)] = 111479, + [SMALL_STATE(9228)] = 111528, + [SMALL_STATE(9229)] = 111577, + [SMALL_STATE(9230)] = 111626, + [SMALL_STATE(9231)] = 111675, + [SMALL_STATE(9232)] = 111724, + [SMALL_STATE(9233)] = 111773, + [SMALL_STATE(9234)] = 111822, + [SMALL_STATE(9235)] = 111871, + [SMALL_STATE(9236)] = 111920, + [SMALL_STATE(9237)] = 111969, + [SMALL_STATE(9238)] = 112018, + [SMALL_STATE(9239)] = 112067, + [SMALL_STATE(9240)] = 112116, + [SMALL_STATE(9241)] = 112165, + [SMALL_STATE(9242)] = 112214, + [SMALL_STATE(9243)] = 112263, + [SMALL_STATE(9244)] = 112312, + [SMALL_STATE(9245)] = 112361, + [SMALL_STATE(9246)] = 112410, + [SMALL_STATE(9247)] = 112459, + [SMALL_STATE(9248)] = 112508, + [SMALL_STATE(9249)] = 112557, + [SMALL_STATE(9250)] = 112606, + [SMALL_STATE(9251)] = 112655, + [SMALL_STATE(9252)] = 112704, + [SMALL_STATE(9253)] = 112753, + [SMALL_STATE(9254)] = 112802, + [SMALL_STATE(9255)] = 112851, + [SMALL_STATE(9256)] = 112900, + [SMALL_STATE(9257)] = 112949, + [SMALL_STATE(9258)] = 112998, + [SMALL_STATE(9259)] = 113047, + [SMALL_STATE(9260)] = 113096, + [SMALL_STATE(9261)] = 113145, + [SMALL_STATE(9262)] = 113194, + [SMALL_STATE(9263)] = 113243, + [SMALL_STATE(9264)] = 113292, + [SMALL_STATE(9265)] = 113341, + [SMALL_STATE(9266)] = 113390, + [SMALL_STATE(9267)] = 113439, + [SMALL_STATE(9268)] = 113488, + [SMALL_STATE(9269)] = 113537, + [SMALL_STATE(9270)] = 113586, + [SMALL_STATE(9271)] = 113635, + [SMALL_STATE(9272)] = 113684, + [SMALL_STATE(9273)] = 113733, + [SMALL_STATE(9274)] = 113782, + [SMALL_STATE(9275)] = 113831, + [SMALL_STATE(9276)] = 113880, + [SMALL_STATE(9277)] = 113929, + [SMALL_STATE(9278)] = 113978, + [SMALL_STATE(9279)] = 114027, + [SMALL_STATE(9280)] = 114076, + [SMALL_STATE(9281)] = 114125, + [SMALL_STATE(9282)] = 114174, + [SMALL_STATE(9283)] = 114223, + [SMALL_STATE(9284)] = 114272, + [SMALL_STATE(9285)] = 114321, + [SMALL_STATE(9286)] = 114370, + [SMALL_STATE(9287)] = 114419, + [SMALL_STATE(9288)] = 114504, + [SMALL_STATE(9289)] = 114553, + [SMALL_STATE(9290)] = 114602, + [SMALL_STATE(9291)] = 114651, + [SMALL_STATE(9292)] = 114734, + [SMALL_STATE(9293)] = 114819, + [SMALL_STATE(9294)] = 114868, + [SMALL_STATE(9295)] = 114917, + [SMALL_STATE(9296)] = 114966, + [SMALL_STATE(9297)] = 115015, + [SMALL_STATE(9298)] = 115070, + [SMALL_STATE(9299)] = 115119, + [SMALL_STATE(9300)] = 115174, + [SMALL_STATE(9301)] = 115229, + [SMALL_STATE(9302)] = 115284, + [SMALL_STATE(9303)] = 115339, + [SMALL_STATE(9304)] = 115394, + [SMALL_STATE(9305)] = 115443, + [SMALL_STATE(9306)] = 115492, + [SMALL_STATE(9307)] = 115541, + [SMALL_STATE(9308)] = 115590, + [SMALL_STATE(9309)] = 115639, + [SMALL_STATE(9310)] = 115688, + [SMALL_STATE(9311)] = 115737, + [SMALL_STATE(9312)] = 115786, + [SMALL_STATE(9313)] = 115835, + [SMALL_STATE(9314)] = 115884, + [SMALL_STATE(9315)] = 115933, + [SMALL_STATE(9316)] = 115982, + [SMALL_STATE(9317)] = 116031, + [SMALL_STATE(9318)] = 116080, + [SMALL_STATE(9319)] = 116129, + [SMALL_STATE(9320)] = 116178, + [SMALL_STATE(9321)] = 116227, + [SMALL_STATE(9322)] = 116276, + [SMALL_STATE(9323)] = 116325, + [SMALL_STATE(9324)] = 116374, + [SMALL_STATE(9325)] = 116423, + [SMALL_STATE(9326)] = 116472, + [SMALL_STATE(9327)] = 116521, + [SMALL_STATE(9328)] = 116570, + [SMALL_STATE(9329)] = 116619, + [SMALL_STATE(9330)] = 116668, + [SMALL_STATE(9331)] = 116717, + [SMALL_STATE(9332)] = 116766, + [SMALL_STATE(9333)] = 116815, + [SMALL_STATE(9334)] = 116864, + [SMALL_STATE(9335)] = 116913, + [SMALL_STATE(9336)] = 116962, + [SMALL_STATE(9337)] = 117011, + [SMALL_STATE(9338)] = 117060, + [SMALL_STATE(9339)] = 117109, + [SMALL_STATE(9340)] = 117158, + [SMALL_STATE(9341)] = 117207, + [SMALL_STATE(9342)] = 117256, + [SMALL_STATE(9343)] = 117305, + [SMALL_STATE(9344)] = 117354, + [SMALL_STATE(9345)] = 117403, + [SMALL_STATE(9346)] = 117452, + [SMALL_STATE(9347)] = 117501, + [SMALL_STATE(9348)] = 117550, + [SMALL_STATE(9349)] = 117599, + [SMALL_STATE(9350)] = 117648, + [SMALL_STATE(9351)] = 117697, + [SMALL_STATE(9352)] = 117746, + [SMALL_STATE(9353)] = 117795, + [SMALL_STATE(9354)] = 117844, + [SMALL_STATE(9355)] = 117893, + [SMALL_STATE(9356)] = 117942, + [SMALL_STATE(9357)] = 117991, + [SMALL_STATE(9358)] = 118040, + [SMALL_STATE(9359)] = 118089, + [SMALL_STATE(9360)] = 118138, + [SMALL_STATE(9361)] = 118187, + [SMALL_STATE(9362)] = 118236, + [SMALL_STATE(9363)] = 118285, + [SMALL_STATE(9364)] = 118334, + [SMALL_STATE(9365)] = 118383, + [SMALL_STATE(9366)] = 118432, + [SMALL_STATE(9367)] = 118481, + [SMALL_STATE(9368)] = 118530, + [SMALL_STATE(9369)] = 118579, + [SMALL_STATE(9370)] = 118628, + [SMALL_STATE(9371)] = 118677, + [SMALL_STATE(9372)] = 118726, + [SMALL_STATE(9373)] = 118775, + [SMALL_STATE(9374)] = 118824, + [SMALL_STATE(9375)] = 118873, + [SMALL_STATE(9376)] = 118922, + [SMALL_STATE(9377)] = 118971, + [SMALL_STATE(9378)] = 119020, + [SMALL_STATE(9379)] = 119069, + [SMALL_STATE(9380)] = 119118, + [SMALL_STATE(9381)] = 119167, + [SMALL_STATE(9382)] = 119216, + [SMALL_STATE(9383)] = 119265, + [SMALL_STATE(9384)] = 119314, + [SMALL_STATE(9385)] = 119363, + [SMALL_STATE(9386)] = 119412, + [SMALL_STATE(9387)] = 119461, + [SMALL_STATE(9388)] = 119510, + [SMALL_STATE(9389)] = 119559, + [SMALL_STATE(9390)] = 119608, + [SMALL_STATE(9391)] = 119657, + [SMALL_STATE(9392)] = 119706, + [SMALL_STATE(9393)] = 119755, + [SMALL_STATE(9394)] = 119804, + [SMALL_STATE(9395)] = 119853, + [SMALL_STATE(9396)] = 119902, + [SMALL_STATE(9397)] = 119951, + [SMALL_STATE(9398)] = 120000, + [SMALL_STATE(9399)] = 120049, + [SMALL_STATE(9400)] = 120098, + [SMALL_STATE(9401)] = 120147, + [SMALL_STATE(9402)] = 120196, + [SMALL_STATE(9403)] = 120245, + [SMALL_STATE(9404)] = 120294, + [SMALL_STATE(9405)] = 120343, + [SMALL_STATE(9406)] = 120428, + [SMALL_STATE(9407)] = 120477, + [SMALL_STATE(9408)] = 120526, + [SMALL_STATE(9409)] = 120575, + [SMALL_STATE(9410)] = 120658, + [SMALL_STATE(9411)] = 120707, + [SMALL_STATE(9412)] = 120792, + [SMALL_STATE(9413)] = 120841, + [SMALL_STATE(9414)] = 120890, + [SMALL_STATE(9415)] = 120939, + [SMALL_STATE(9416)] = 120988, + [SMALL_STATE(9417)] = 121065, + [SMALL_STATE(9418)] = 121146, + [SMALL_STATE(9419)] = 121227, + [SMALL_STATE(9420)] = 121308, + [SMALL_STATE(9421)] = 121385, + [SMALL_STATE(9422)] = 121435, + [SMALL_STATE(9423)] = 121485, + [SMALL_STATE(9424)] = 121533, + [SMALL_STATE(9425)] = 121581, + [SMALL_STATE(9426)] = 121636, + [SMALL_STATE(9427)] = 121681, + [SMALL_STATE(9428)] = 121726, + [SMALL_STATE(9429)] = 121771, + [SMALL_STATE(9430)] = 121816, + [SMALL_STATE(9431)] = 121861, + [SMALL_STATE(9432)] = 121906, + [SMALL_STATE(9433)] = 121951, + [SMALL_STATE(9434)] = 121996, + [SMALL_STATE(9435)] = 122041, + [SMALL_STATE(9436)] = 122086, + [SMALL_STATE(9437)] = 122131, + [SMALL_STATE(9438)] = 122186, + [SMALL_STATE(9439)] = 122231, + [SMALL_STATE(9440)] = 122276, + [SMALL_STATE(9441)] = 122321, + [SMALL_STATE(9442)] = 122376, + [SMALL_STATE(9443)] = 122421, + [SMALL_STATE(9444)] = 122466, + [SMALL_STATE(9445)] = 122521, + [SMALL_STATE(9446)] = 122576, + [SMALL_STATE(9447)] = 122623, + [SMALL_STATE(9448)] = 122670, + [SMALL_STATE(9449)] = 122715, + [SMALL_STATE(9450)] = 122760, + [SMALL_STATE(9451)] = 122805, + [SMALL_STATE(9452)] = 122850, + [SMALL_STATE(9453)] = 122899, + [SMALL_STATE(9454)] = 122944, + [SMALL_STATE(9455)] = 122989, + [SMALL_STATE(9456)] = 123042, + [SMALL_STATE(9457)] = 123087, + [SMALL_STATE(9458)] = 123132, + [SMALL_STATE(9459)] = 123177, + [SMALL_STATE(9460)] = 123222, + [SMALL_STATE(9461)] = 123267, + [SMALL_STATE(9462)] = 123312, + [SMALL_STATE(9463)] = 123357, + [SMALL_STATE(9464)] = 123402, + [SMALL_STATE(9465)] = 123457, + [SMALL_STATE(9466)] = 123502, + [SMALL_STATE(9467)] = 123547, + [SMALL_STATE(9468)] = 123592, + [SMALL_STATE(9469)] = 123637, + [SMALL_STATE(9470)] = 123682, + [SMALL_STATE(9471)] = 123727, + [SMALL_STATE(9472)] = 123772, + [SMALL_STATE(9473)] = 123817, + [SMALL_STATE(9474)] = 123864, + [SMALL_STATE(9475)] = 123909, + [SMALL_STATE(9476)] = 123954, + [SMALL_STATE(9477)] = 123999, + [SMALL_STATE(9478)] = 124044, + [SMALL_STATE(9479)] = 124089, + [SMALL_STATE(9480)] = 124134, + [SMALL_STATE(9481)] = 124179, + [SMALL_STATE(9482)] = 124224, + [SMALL_STATE(9483)] = 124269, + [SMALL_STATE(9484)] = 124314, + [SMALL_STATE(9485)] = 124359, + [SMALL_STATE(9486)] = 124404, + [SMALL_STATE(9487)] = 124459, + [SMALL_STATE(9488)] = 124504, + [SMALL_STATE(9489)] = 124549, + [SMALL_STATE(9490)] = 124594, + [SMALL_STATE(9491)] = 124639, + [SMALL_STATE(9492)] = 124684, + [SMALL_STATE(9493)] = 124729, + [SMALL_STATE(9494)] = 124774, + [SMALL_STATE(9495)] = 124818, + [SMALL_STATE(9496)] = 124862, + [SMALL_STATE(9497)] = 124906, + [SMALL_STATE(9498)] = 124950, + [SMALL_STATE(9499)] = 124994, + [SMALL_STATE(9500)] = 125038, + [SMALL_STATE(9501)] = 125082, + [SMALL_STATE(9502)] = 125126, + [SMALL_STATE(9503)] = 125170, + [SMALL_STATE(9504)] = 125214, + [SMALL_STATE(9505)] = 125258, + [SMALL_STATE(9506)] = 125302, + [SMALL_STATE(9507)] = 125346, + [SMALL_STATE(9508)] = 125390, + [SMALL_STATE(9509)] = 125434, + [SMALL_STATE(9510)] = 125478, + [SMALL_STATE(9511)] = 125522, + [SMALL_STATE(9512)] = 125566, + [SMALL_STATE(9513)] = 125610, + [SMALL_STATE(9514)] = 125654, + [SMALL_STATE(9515)] = 125698, + [SMALL_STATE(9516)] = 125742, + [SMALL_STATE(9517)] = 125786, + [SMALL_STATE(9518)] = 125830, + [SMALL_STATE(9519)] = 125874, + [SMALL_STATE(9520)] = 125918, + [SMALL_STATE(9521)] = 125962, + [SMALL_STATE(9522)] = 126006, + [SMALL_STATE(9523)] = 126050, + [SMALL_STATE(9524)] = 126094, + [SMALL_STATE(9525)] = 126138, + [SMALL_STATE(9526)] = 126182, + [SMALL_STATE(9527)] = 126226, + [SMALL_STATE(9528)] = 126270, + [SMALL_STATE(9529)] = 126314, + [SMALL_STATE(9530)] = 126358, + [SMALL_STATE(9531)] = 126402, + [SMALL_STATE(9532)] = 126446, + [SMALL_STATE(9533)] = 126490, + [SMALL_STATE(9534)] = 126534, + [SMALL_STATE(9535)] = 126578, + [SMALL_STATE(9536)] = 126622, + [SMALL_STATE(9537)] = 126666, + [SMALL_STATE(9538)] = 126710, + [SMALL_STATE(9539)] = 126754, + [SMALL_STATE(9540)] = 126798, + [SMALL_STATE(9541)] = 126842, + [SMALL_STATE(9542)] = 126886, + [SMALL_STATE(9543)] = 126930, + [SMALL_STATE(9544)] = 126974, + [SMALL_STATE(9545)] = 127018, + [SMALL_STATE(9546)] = 127062, + [SMALL_STATE(9547)] = 127106, + [SMALL_STATE(9548)] = 127150, + [SMALL_STATE(9549)] = 127194, + [SMALL_STATE(9550)] = 127238, + [SMALL_STATE(9551)] = 127282, + [SMALL_STATE(9552)] = 127328, + [SMALL_STATE(9553)] = 127374, + [SMALL_STATE(9554)] = 127418, + [SMALL_STATE(9555)] = 127462, + [SMALL_STATE(9556)] = 127506, + [SMALL_STATE(9557)] = 127550, + [SMALL_STATE(9558)] = 127594, + [SMALL_STATE(9559)] = 127638, + [SMALL_STATE(9560)] = 127682, + [SMALL_STATE(9561)] = 127726, + [SMALL_STATE(9562)] = 127770, + [SMALL_STATE(9563)] = 127814, + [SMALL_STATE(9564)] = 127858, + [SMALL_STATE(9565)] = 127902, + [SMALL_STATE(9566)] = 127946, + [SMALL_STATE(9567)] = 127990, + [SMALL_STATE(9568)] = 128034, + [SMALL_STATE(9569)] = 128078, + [SMALL_STATE(9570)] = 128122, + [SMALL_STATE(9571)] = 128166, + [SMALL_STATE(9572)] = 128210, + [SMALL_STATE(9573)] = 128254, + [SMALL_STATE(9574)] = 128298, + [SMALL_STATE(9575)] = 128342, + [SMALL_STATE(9576)] = 128386, + [SMALL_STATE(9577)] = 128430, + [SMALL_STATE(9578)] = 128474, + [SMALL_STATE(9579)] = 128518, + [SMALL_STATE(9580)] = 128562, + [SMALL_STATE(9581)] = 128634, + [SMALL_STATE(9582)] = 128678, + [SMALL_STATE(9583)] = 128722, + [SMALL_STATE(9584)] = 128766, + [SMALL_STATE(9585)] = 128810, + [SMALL_STATE(9586)] = 128854, + [SMALL_STATE(9587)] = 128910, + [SMALL_STATE(9588)] = 128954, + [SMALL_STATE(9589)] = 128998, + [SMALL_STATE(9590)] = 129042, + [SMALL_STATE(9591)] = 129086, + [SMALL_STATE(9592)] = 129148, + [SMALL_STATE(9593)] = 129192, + [SMALL_STATE(9594)] = 129236, + [SMALL_STATE(9595)] = 129280, + [SMALL_STATE(9596)] = 129324, + [SMALL_STATE(9597)] = 129368, + [SMALL_STATE(9598)] = 129412, + [SMALL_STATE(9599)] = 129456, + [SMALL_STATE(9600)] = 129500, + [SMALL_STATE(9601)] = 129544, + [SMALL_STATE(9602)] = 129588, + [SMALL_STATE(9603)] = 129632, + [SMALL_STATE(9604)] = 129676, + [SMALL_STATE(9605)] = 129720, + [SMALL_STATE(9606)] = 129764, + [SMALL_STATE(9607)] = 129808, + [SMALL_STATE(9608)] = 129852, + [SMALL_STATE(9609)] = 129896, + [SMALL_STATE(9610)] = 129940, + [SMALL_STATE(9611)] = 129984, + [SMALL_STATE(9612)] = 130028, + [SMALL_STATE(9613)] = 130072, + [SMALL_STATE(9614)] = 130116, + [SMALL_STATE(9615)] = 130160, + [SMALL_STATE(9616)] = 130204, + [SMALL_STATE(9617)] = 130248, + [SMALL_STATE(9618)] = 130292, + [SMALL_STATE(9619)] = 130336, + [SMALL_STATE(9620)] = 130380, + [SMALL_STATE(9621)] = 130424, + [SMALL_STATE(9622)] = 130468, + [SMALL_STATE(9623)] = 130512, + [SMALL_STATE(9624)] = 130556, + [SMALL_STATE(9625)] = 130600, + [SMALL_STATE(9626)] = 130644, + [SMALL_STATE(9627)] = 130688, + [SMALL_STATE(9628)] = 130732, + [SMALL_STATE(9629)] = 130804, + [SMALL_STATE(9630)] = 130848, + [SMALL_STATE(9631)] = 130892, + [SMALL_STATE(9632)] = 130936, + [SMALL_STATE(9633)] = 130980, + [SMALL_STATE(9634)] = 131024, + [SMALL_STATE(9635)] = 131094, + [SMALL_STATE(9636)] = 131138, + [SMALL_STATE(9637)] = 131182, + [SMALL_STATE(9638)] = 131250, + [SMALL_STATE(9639)] = 131294, + [SMALL_STATE(9640)] = 131338, + [SMALL_STATE(9641)] = 131382, + [SMALL_STATE(9642)] = 131426, + [SMALL_STATE(9643)] = 131470, + [SMALL_STATE(9644)] = 131534, + [SMALL_STATE(9645)] = 131578, + [SMALL_STATE(9646)] = 131622, + [SMALL_STATE(9647)] = 131666, + [SMALL_STATE(9648)] = 131724, + [SMALL_STATE(9649)] = 131768, + [SMALL_STATE(9650)] = 131812, + [SMALL_STATE(9651)] = 131856, + [SMALL_STATE(9652)] = 131900, + [SMALL_STATE(9653)] = 131944, + [SMALL_STATE(9654)] = 131988, + [SMALL_STATE(9655)] = 132060, + [SMALL_STATE(9656)] = 132104, + [SMALL_STATE(9657)] = 132148, + [SMALL_STATE(9658)] = 132192, + [SMALL_STATE(9659)] = 132236, + [SMALL_STATE(9660)] = 132280, + [SMALL_STATE(9661)] = 132324, + [SMALL_STATE(9662)] = 132368, + [SMALL_STATE(9663)] = 132412, + [SMALL_STATE(9664)] = 132456, + [SMALL_STATE(9665)] = 132500, + [SMALL_STATE(9666)] = 132544, + [SMALL_STATE(9667)] = 132588, + [SMALL_STATE(9668)] = 132632, + [SMALL_STATE(9669)] = 132676, + [SMALL_STATE(9670)] = 132720, + [SMALL_STATE(9671)] = 132764, + [SMALL_STATE(9672)] = 132808, + [SMALL_STATE(9673)] = 132852, + [SMALL_STATE(9674)] = 132896, + [SMALL_STATE(9675)] = 132940, + [SMALL_STATE(9676)] = 132984, + [SMALL_STATE(9677)] = 133028, + [SMALL_STATE(9678)] = 133072, + [SMALL_STATE(9679)] = 133116, + [SMALL_STATE(9680)] = 133160, + [SMALL_STATE(9681)] = 133204, + [SMALL_STATE(9682)] = 133248, + [SMALL_STATE(9683)] = 133292, + [SMALL_STATE(9684)] = 133336, + [SMALL_STATE(9685)] = 133380, + [SMALL_STATE(9686)] = 133424, + [SMALL_STATE(9687)] = 133468, + [SMALL_STATE(9688)] = 133512, + [SMALL_STATE(9689)] = 133556, + [SMALL_STATE(9690)] = 133600, + [SMALL_STATE(9691)] = 133644, + [SMALL_STATE(9692)] = 133688, + [SMALL_STATE(9693)] = 133732, + [SMALL_STATE(9694)] = 133776, + [SMALL_STATE(9695)] = 133820, + [SMALL_STATE(9696)] = 133864, + [SMALL_STATE(9697)] = 133908, + [SMALL_STATE(9698)] = 133952, + [SMALL_STATE(9699)] = 133996, + [SMALL_STATE(9700)] = 134040, + [SMALL_STATE(9701)] = 134084, + [SMALL_STATE(9702)] = 134128, + [SMALL_STATE(9703)] = 134172, + [SMALL_STATE(9704)] = 134220, + [SMALL_STATE(9705)] = 134264, + [SMALL_STATE(9706)] = 134308, + [SMALL_STATE(9707)] = 134352, + [SMALL_STATE(9708)] = 134396, + [SMALL_STATE(9709)] = 134440, + [SMALL_STATE(9710)] = 134484, + [SMALL_STATE(9711)] = 134528, + [SMALL_STATE(9712)] = 134572, + [SMALL_STATE(9713)] = 134616, + [SMALL_STATE(9714)] = 134660, + [SMALL_STATE(9715)] = 134704, + [SMALL_STATE(9716)] = 134760, + [SMALL_STATE(9717)] = 134822, + [SMALL_STATE(9718)] = 134866, + [SMALL_STATE(9719)] = 134910, + [SMALL_STATE(9720)] = 134954, + [SMALL_STATE(9721)] = 134998, + [SMALL_STATE(9722)] = 135070, + [SMALL_STATE(9723)] = 135114, + [SMALL_STATE(9724)] = 135184, + [SMALL_STATE(9725)] = 135252, + [SMALL_STATE(9726)] = 135296, + [SMALL_STATE(9727)] = 135360, + [SMALL_STATE(9728)] = 135418, + [SMALL_STATE(9729)] = 135462, + [SMALL_STATE(9730)] = 135506, + [SMALL_STATE(9731)] = 135578, + [SMALL_STATE(9732)] = 135622, + [SMALL_STATE(9733)] = 135666, + [SMALL_STATE(9734)] = 135710, + [SMALL_STATE(9735)] = 135782, + [SMALL_STATE(9736)] = 135826, + [SMALL_STATE(9737)] = 135870, + [SMALL_STATE(9738)] = 135914, + [SMALL_STATE(9739)] = 135958, + [SMALL_STATE(9740)] = 136002, + [SMALL_STATE(9741)] = 136046, + [SMALL_STATE(9742)] = 136090, + [SMALL_STATE(9743)] = 136134, + [SMALL_STATE(9744)] = 136178, + [SMALL_STATE(9745)] = 136222, + [SMALL_STATE(9746)] = 136266, + [SMALL_STATE(9747)] = 136310, + [SMALL_STATE(9748)] = 136354, + [SMALL_STATE(9749)] = 136398, + [SMALL_STATE(9750)] = 136450, + [SMALL_STATE(9751)] = 136494, + [SMALL_STATE(9752)] = 136538, + [SMALL_STATE(9753)] = 136582, + [SMALL_STATE(9754)] = 136626, + [SMALL_STATE(9755)] = 136670, + [SMALL_STATE(9756)] = 136714, + [SMALL_STATE(9757)] = 136758, + [SMALL_STATE(9758)] = 136802, + [SMALL_STATE(9759)] = 136846, + [SMALL_STATE(9760)] = 136890, + [SMALL_STATE(9761)] = 136934, + [SMALL_STATE(9762)] = 136978, + [SMALL_STATE(9763)] = 137022, + [SMALL_STATE(9764)] = 137066, + [SMALL_STATE(9765)] = 137110, + [SMALL_STATE(9766)] = 137154, + [SMALL_STATE(9767)] = 137198, + [SMALL_STATE(9768)] = 137242, + [SMALL_STATE(9769)] = 137286, + [SMALL_STATE(9770)] = 137330, + [SMALL_STATE(9771)] = 137374, + [SMALL_STATE(9772)] = 137418, + [SMALL_STATE(9773)] = 137462, + [SMALL_STATE(9774)] = 137506, + [SMALL_STATE(9775)] = 137550, + [SMALL_STATE(9776)] = 137594, + [SMALL_STATE(9777)] = 137638, + [SMALL_STATE(9778)] = 137682, + [SMALL_STATE(9779)] = 137726, + [SMALL_STATE(9780)] = 137770, + [SMALL_STATE(9781)] = 137814, + [SMALL_STATE(9782)] = 137858, + [SMALL_STATE(9783)] = 137902, + [SMALL_STATE(9784)] = 137946, + [SMALL_STATE(9785)] = 137990, + [SMALL_STATE(9786)] = 138034, + [SMALL_STATE(9787)] = 138078, + [SMALL_STATE(9788)] = 138122, + [SMALL_STATE(9789)] = 138166, + [SMALL_STATE(9790)] = 138210, + [SMALL_STATE(9791)] = 138254, + [SMALL_STATE(9792)] = 138298, + [SMALL_STATE(9793)] = 138342, + [SMALL_STATE(9794)] = 138386, + [SMALL_STATE(9795)] = 138430, + [SMALL_STATE(9796)] = 138474, + [SMALL_STATE(9797)] = 138518, + [SMALL_STATE(9798)] = 138562, + [SMALL_STATE(9799)] = 138606, + [SMALL_STATE(9800)] = 138650, + [SMALL_STATE(9801)] = 138694, + [SMALL_STATE(9802)] = 138738, + [SMALL_STATE(9803)] = 138782, + [SMALL_STATE(9804)] = 138826, + [SMALL_STATE(9805)] = 138870, + [SMALL_STATE(9806)] = 138914, + [SMALL_STATE(9807)] = 138958, + [SMALL_STATE(9808)] = 139002, + [SMALL_STATE(9809)] = 139046, + [SMALL_STATE(9810)] = 139090, + [SMALL_STATE(9811)] = 139134, + [SMALL_STATE(9812)] = 139178, + [SMALL_STATE(9813)] = 139222, + [SMALL_STATE(9814)] = 139266, + [SMALL_STATE(9815)] = 139310, + [SMALL_STATE(9816)] = 139354, + [SMALL_STATE(9817)] = 139398, + [SMALL_STATE(9818)] = 139442, + [SMALL_STATE(9819)] = 139486, + [SMALL_STATE(9820)] = 139530, + [SMALL_STATE(9821)] = 139574, + [SMALL_STATE(9822)] = 139618, + [SMALL_STATE(9823)] = 139662, + [SMALL_STATE(9824)] = 139706, + [SMALL_STATE(9825)] = 139750, + [SMALL_STATE(9826)] = 139794, + [SMALL_STATE(9827)] = 139838, + [SMALL_STATE(9828)] = 139882, + [SMALL_STATE(9829)] = 139926, + [SMALL_STATE(9830)] = 139970, + [SMALL_STATE(9831)] = 140014, + [SMALL_STATE(9832)] = 140058, + [SMALL_STATE(9833)] = 140102, + [SMALL_STATE(9834)] = 140146, + [SMALL_STATE(9835)] = 140190, + [SMALL_STATE(9836)] = 140234, + [SMALL_STATE(9837)] = 140278, + [SMALL_STATE(9838)] = 140322, + [SMALL_STATE(9839)] = 140366, + [SMALL_STATE(9840)] = 140410, + [SMALL_STATE(9841)] = 140454, + [SMALL_STATE(9842)] = 140498, + [SMALL_STATE(9843)] = 140542, + [SMALL_STATE(9844)] = 140586, + [SMALL_STATE(9845)] = 140630, + [SMALL_STATE(9846)] = 140674, + [SMALL_STATE(9847)] = 140718, + [SMALL_STATE(9848)] = 140762, + [SMALL_STATE(9849)] = 140806, + [SMALL_STATE(9850)] = 140850, + [SMALL_STATE(9851)] = 140894, + [SMALL_STATE(9852)] = 140938, + [SMALL_STATE(9853)] = 140982, + [SMALL_STATE(9854)] = 141026, + [SMALL_STATE(9855)] = 141070, + [SMALL_STATE(9856)] = 141114, + [SMALL_STATE(9857)] = 141158, + [SMALL_STATE(9858)] = 141202, + [SMALL_STATE(9859)] = 141246, + [SMALL_STATE(9860)] = 141290, + [SMALL_STATE(9861)] = 141334, + [SMALL_STATE(9862)] = 141378, + [SMALL_STATE(9863)] = 141422, + [SMALL_STATE(9864)] = 141466, + [SMALL_STATE(9865)] = 141510, + [SMALL_STATE(9866)] = 141575, + [SMALL_STATE(9867)] = 141624, + [SMALL_STATE(9868)] = 141679, + [SMALL_STATE(9869)] = 141736, + [SMALL_STATE(9870)] = 141797, + [SMALL_STATE(9871)] = 141846, + [SMALL_STATE(9872)] = 141923, + [SMALL_STATE(9873)] = 141994, + [SMALL_STATE(9874)] = 142043, + [SMALL_STATE(9875)] = 142092, + [SMALL_STATE(9876)] = 142141, + [SMALL_STATE(9877)] = 142190, + [SMALL_STATE(9878)] = 142239, + [SMALL_STATE(9879)] = 142288, + [SMALL_STATE(9880)] = 142363, + [SMALL_STATE(9881)] = 142412, + [SMALL_STATE(9882)] = 142487, + [SMALL_STATE(9883)] = 142536, + [SMALL_STATE(9884)] = 142585, + [SMALL_STATE(9885)] = 142634, + [SMALL_STATE(9886)] = 142707, + [SMALL_STATE(9887)] = 142756, + [SMALL_STATE(9888)] = 142805, + [SMALL_STATE(9889)] = 142854, + [SMALL_STATE(9890)] = 142915, + [SMALL_STATE(9891)] = 142964, + [SMALL_STATE(9892)] = 143029, + [SMALL_STATE(9893)] = 143086, + [SMALL_STATE(9894)] = 143135, + [SMALL_STATE(9895)] = 143184, + [SMALL_STATE(9896)] = 143233, + [SMALL_STATE(9897)] = 143314, + [SMALL_STATE(9898)] = 143387, + [SMALL_STATE(9899)] = 143456, + [SMALL_STATE(9900)] = 143505, + [SMALL_STATE(9901)] = 143576, + [SMALL_STATE(9902)] = 143649, + [SMALL_STATE(9903)] = 143718, + [SMALL_STATE(9904)] = 143791, + [SMALL_STATE(9905)] = 143864, + [SMALL_STATE(9906)] = 143913, + [SMALL_STATE(9907)] = 143990, + [SMALL_STATE(9908)] = 144063, + [SMALL_STATE(9909)] = 144112, + [SMALL_STATE(9910)] = 144189, + [SMALL_STATE(9911)] = 144238, + [SMALL_STATE(9912)] = 144293, + [SMALL_STATE(9913)] = 144342, + [SMALL_STATE(9914)] = 144428, + [SMALL_STATE(9915)] = 144514, + [SMALL_STATE(9916)] = 144588, + [SMALL_STATE(9917)] = 144676, + [SMALL_STATE(9918)] = 144756, + [SMALL_STATE(9919)] = 144832, + [SMALL_STATE(9920)] = 144918, + [SMALL_STATE(9921)] = 145004, + [SMALL_STATE(9922)] = 145078, + [SMALL_STATE(9923)] = 145166, + [SMALL_STATE(9924)] = 145252, + [SMALL_STATE(9925)] = 145338, + [SMALL_STATE(9926)] = 145426, + [SMALL_STATE(9927)] = 145514, + [SMALL_STATE(9928)] = 145600, + [SMALL_STATE(9929)] = 145686, + [SMALL_STATE(9930)] = 145772, + [SMALL_STATE(9931)] = 145860, + [SMALL_STATE(9932)] = 145946, + [SMALL_STATE(9933)] = 146032, + [SMALL_STATE(9934)] = 146118, + [SMALL_STATE(9935)] = 146204, + [SMALL_STATE(9936)] = 146292, + [SMALL_STATE(9937)] = 146378, + [SMALL_STATE(9938)] = 146454, + [SMALL_STATE(9939)] = 146540, + [SMALL_STATE(9940)] = 146616, + [SMALL_STATE(9941)] = 146702, + [SMALL_STATE(9942)] = 146788, + [SMALL_STATE(9943)] = 146874, + [SMALL_STATE(9944)] = 146962, + [SMALL_STATE(9945)] = 147050, + [SMALL_STATE(9946)] = 147136, + [SMALL_STATE(9947)] = 147222, + [SMALL_STATE(9948)] = 147308, + [SMALL_STATE(9949)] = 147394, + [SMALL_STATE(9950)] = 147480, + [SMALL_STATE(9951)] = 147566, + [SMALL_STATE(9952)] = 147654, + [SMALL_STATE(9953)] = 147742, + [SMALL_STATE(9954)] = 147828, + [SMALL_STATE(9955)] = 147916, + [SMALL_STATE(9956)] = 148002, + [SMALL_STATE(9957)] = 148090, + [SMALL_STATE(9958)] = 148176, + [SMALL_STATE(9959)] = 148262, + [SMALL_STATE(9960)] = 148350, + [SMALL_STATE(9961)] = 148436, + [SMALL_STATE(9962)] = 148522, + [SMALL_STATE(9963)] = 148610, + [SMALL_STATE(9964)] = 148696, + [SMALL_STATE(9965)] = 148784, + [SMALL_STATE(9966)] = 148870, + [SMALL_STATE(9967)] = 148958, + [SMALL_STATE(9968)] = 149046, + [SMALL_STATE(9969)] = 149134, + [SMALL_STATE(9970)] = 149222, + [SMALL_STATE(9971)] = 149310, + [SMALL_STATE(9972)] = 149398, + [SMALL_STATE(9973)] = 149481, + [SMALL_STATE(9974)] = 149528, + [SMALL_STATE(9975)] = 149611, + [SMALL_STATE(9976)] = 149686, + [SMALL_STATE(9977)] = 149733, + [SMALL_STATE(9978)] = 149786, + [SMALL_STATE(9979)] = 149833, + [SMALL_STATE(9980)] = 149882, + [SMALL_STATE(9981)] = 149965, + [SMALL_STATE(9982)] = 150048, + [SMALL_STATE(9983)] = 150123, + [SMALL_STATE(9984)] = 150206, + [SMALL_STATE(9985)] = 150289, + [SMALL_STATE(9986)] = 150356, + [SMALL_STATE(9987)] = 150419, + [SMALL_STATE(9988)] = 150502, + [SMALL_STATE(9989)] = 150573, + [SMALL_STATE(9990)] = 150644, + [SMALL_STATE(9991)] = 150727, + [SMALL_STATE(9992)] = 150810, + [SMALL_STATE(9993)] = 150863, + [SMALL_STATE(9994)] = 150946, + [SMALL_STATE(9995)] = 150993, + [SMALL_STATE(9996)] = 151076, + [SMALL_STATE(9997)] = 151145, + [SMALL_STATE(9998)] = 151192, + [SMALL_STATE(9999)] = 151275, + [SMALL_STATE(10000)] = 151358, + [SMALL_STATE(10001)] = 151441, + [SMALL_STATE(10002)] = 151500, + [SMALL_STATE(10003)] = 151583, + [SMALL_STATE(10004)] = 151666, + [SMALL_STATE(10005)] = 151749, + [SMALL_STATE(10006)] = 151832, + [SMALL_STATE(10007)] = 151911, + [SMALL_STATE(10008)] = 151994, + [SMALL_STATE(10009)] = 152041, + [SMALL_STATE(10010)] = 152096, + [SMALL_STATE(10011)] = 152143, + [SMALL_STATE(10012)] = 152194, + [SMALL_STATE(10013)] = 152277, + [SMALL_STATE(10014)] = 152324, + [SMALL_STATE(10015)] = 152371, + [SMALL_STATE(10016)] = 152454, + [SMALL_STATE(10017)] = 152525, + [SMALL_STATE(10018)] = 152608, + [SMALL_STATE(10019)] = 152691, + [SMALL_STATE(10020)] = 152774, + [SMALL_STATE(10021)] = 152857, + [SMALL_STATE(10022)] = 152940, + [SMALL_STATE(10023)] = 152987, + [SMALL_STATE(10024)] = 153070, + [SMALL_STATE(10025)] = 153153, + [SMALL_STATE(10026)] = 153200, + [SMALL_STATE(10027)] = 153283, + [SMALL_STATE(10028)] = 153366, + [SMALL_STATE(10029)] = 153449, + [SMALL_STATE(10030)] = 153532, + [SMALL_STATE(10031)] = 153615, + [SMALL_STATE(10032)] = 153686, + [SMALL_STATE(10033)] = 153769, + [SMALL_STATE(10034)] = 153820, + [SMALL_STATE(10035)] = 153895, + [SMALL_STATE(10036)] = 153978, + [SMALL_STATE(10037)] = 154061, + [SMALL_STATE(10038)] = 154112, + [SMALL_STATE(10039)] = 154195, + [SMALL_STATE(10040)] = 154266, + [SMALL_STATE(10041)] = 154349, + [SMALL_STATE(10042)] = 154404, + [SMALL_STATE(10043)] = 154449, + [SMALL_STATE(10044)] = 154502, + [SMALL_STATE(10045)] = 154585, + [SMALL_STATE(10046)] = 154654, + [SMALL_STATE(10047)] = 154733, + [SMALL_STATE(10048)] = 154804, + [SMALL_STATE(10049)] = 154887, + [SMALL_STATE(10050)] = 154970, + [SMALL_STATE(10051)] = 155049, + [SMALL_STATE(10052)] = 155132, + [SMALL_STATE(10053)] = 155195, + [SMALL_STATE(10054)] = 155240, + [SMALL_STATE(10055)] = 155315, + [SMALL_STATE(10056)] = 155374, + [SMALL_STATE(10057)] = 155449, + [SMALL_STATE(10058)] = 155532, + [SMALL_STATE(10059)] = 155599, + [SMALL_STATE(10060)] = 155682, + [SMALL_STATE(10061)] = 155765, + [SMALL_STATE(10062)] = 155848, + [SMALL_STATE(10063)] = 155931, + [SMALL_STATE(10064)] = 156014, + [SMALL_STATE(10065)] = 156097, + [SMALL_STATE(10066)] = 156180, + [SMALL_STATE(10067)] = 156263, + [SMALL_STATE(10068)] = 156346, + [SMALL_STATE(10069)] = 156397, + [SMALL_STATE(10070)] = 156480, + [SMALL_STATE(10071)] = 156563, + [SMALL_STATE(10072)] = 156646, + [SMALL_STATE(10073)] = 156729, + [SMALL_STATE(10074)] = 156812, + [SMALL_STATE(10075)] = 156895, + [SMALL_STATE(10076)] = 156978, + [SMALL_STATE(10077)] = 157025, + [SMALL_STATE(10078)] = 157108, + [SMALL_STATE(10079)] = 157191, + [SMALL_STATE(10080)] = 157274, + [SMALL_STATE(10081)] = 157357, + [SMALL_STATE(10082)] = 157440, + [SMALL_STATE(10083)] = 157485, + [SMALL_STATE(10084)] = 157530, + [SMALL_STATE(10085)] = 157572, + [SMALL_STATE(10086)] = 157620, + [SMALL_STATE(10087)] = 157668, + [SMALL_STATE(10088)] = 157748, + [SMALL_STATE(10089)] = 157796, + [SMALL_STATE(10090)] = 157842, + [SMALL_STATE(10091)] = 157922, + [SMALL_STATE(10092)] = 157996, + [SMALL_STATE(10093)] = 158044, + [SMALL_STATE(10094)] = 158124, + [SMALL_STATE(10095)] = 158172, + [SMALL_STATE(10096)] = 158252, + [SMALL_STATE(10097)] = 158300, + [SMALL_STATE(10098)] = 158344, + [SMALL_STATE(10099)] = 158390, + [SMALL_STATE(10100)] = 158436, + [SMALL_STATE(10101)] = 158480, + [SMALL_STATE(10102)] = 158526, + [SMALL_STATE(10103)] = 158572, + [SMALL_STATE(10104)] = 158620, + [SMALL_STATE(10105)] = 158694, + [SMALL_STATE(10106)] = 158740, + [SMALL_STATE(10107)] = 158786, + [SMALL_STATE(10108)] = 158834, + [SMALL_STATE(10109)] = 158882, + [SMALL_STATE(10110)] = 158962, + [SMALL_STATE(10111)] = 159010, + [SMALL_STATE(10112)] = 159090, + [SMALL_STATE(10113)] = 159170, + [SMALL_STATE(10114)] = 159250, + [SMALL_STATE(10115)] = 159330, + [SMALL_STATE(10116)] = 159378, + [SMALL_STATE(10117)] = 159424, + [SMALL_STATE(10118)] = 159504, + [SMALL_STATE(10119)] = 159550, + [SMALL_STATE(10120)] = 159596, + [SMALL_STATE(10121)] = 159642, + [SMALL_STATE(10122)] = 159688, + [SMALL_STATE(10123)] = 159734, + [SMALL_STATE(10124)] = 159814, + [SMALL_STATE(10125)] = 159894, + [SMALL_STATE(10126)] = 159972, + [SMALL_STATE(10127)] = 160052, + [SMALL_STATE(10128)] = 160094, + [SMALL_STATE(10129)] = 160174, + [SMALL_STATE(10130)] = 160256, + [SMALL_STATE(10131)] = 160336, + [SMALL_STATE(10132)] = 160384, + [SMALL_STATE(10133)] = 160464, + [SMALL_STATE(10134)] = 160544, + [SMALL_STATE(10135)] = 160592, + [SMALL_STATE(10136)] = 160672, + [SMALL_STATE(10137)] = 160720, + [SMALL_STATE(10138)] = 160800, + [SMALL_STATE(10139)] = 160848, + [SMALL_STATE(10140)] = 160898, + [SMALL_STATE(10141)] = 160972, + [SMALL_STATE(10142)] = 161046, + [SMALL_STATE(10143)] = 161094, + [SMALL_STATE(10144)] = 161142, + [SMALL_STATE(10145)] = 161188, + [SMALL_STATE(10146)] = 161236, + [SMALL_STATE(10147)] = 161316, + [SMALL_STATE(10148)] = 161388, + [SMALL_STATE(10149)] = 161460, + [SMALL_STATE(10150)] = 161504, + [SMALL_STATE(10151)] = 161550, + [SMALL_STATE(10152)] = 161598, + [SMALL_STATE(10153)] = 161678, + [SMALL_STATE(10154)] = 161724, + [SMALL_STATE(10155)] = 161770, + [SMALL_STATE(10156)] = 161818, + [SMALL_STATE(10157)] = 161900, + [SMALL_STATE(10158)] = 161982, + [SMALL_STATE(10159)] = 162064, + [SMALL_STATE(10160)] = 162146, + [SMALL_STATE(10161)] = 162226, + [SMALL_STATE(10162)] = 162272, + [SMALL_STATE(10163)] = 162318, + [SMALL_STATE(10164)] = 162398, + [SMALL_STATE(10165)] = 162444, + [SMALL_STATE(10166)] = 162526, + [SMALL_STATE(10167)] = 162572, + [SMALL_STATE(10168)] = 162618, + [SMALL_STATE(10169)] = 162664, + [SMALL_STATE(10170)] = 162746, + [SMALL_STATE(10171)] = 162828, + [SMALL_STATE(10172)] = 162910, + [SMALL_STATE(10173)] = 162984, + [SMALL_STATE(10174)] = 163030, + [SMALL_STATE(10175)] = 163108, + [SMALL_STATE(10176)] = 163190, + [SMALL_STATE(10177)] = 163272, + [SMALL_STATE(10178)] = 163354, + [SMALL_STATE(10179)] = 163436, + [SMALL_STATE(10180)] = 163518, + [SMALL_STATE(10181)] = 163600, + [SMALL_STATE(10182)] = 163682, + [SMALL_STATE(10183)] = 163764, + [SMALL_STATE(10184)] = 163846, + [SMALL_STATE(10185)] = 163928, + [SMALL_STATE(10186)] = 164010, + [SMALL_STATE(10187)] = 164092, + [SMALL_STATE(10188)] = 164174, + [SMALL_STATE(10189)] = 164256, + [SMALL_STATE(10190)] = 164338, + [SMALL_STATE(10191)] = 164420, + [SMALL_STATE(10192)] = 164502, + [SMALL_STATE(10193)] = 164584, + [SMALL_STATE(10194)] = 164666, + [SMALL_STATE(10195)] = 164748, + [SMALL_STATE(10196)] = 164830, + [SMALL_STATE(10197)] = 164910, + [SMALL_STATE(10198)] = 164949, + [SMALL_STATE(10199)] = 165026, + [SMALL_STATE(10200)] = 165103, + [SMALL_STATE(10201)] = 165180, + [SMALL_STATE(10202)] = 165247, + [SMALL_STATE(10203)] = 165292, + [SMALL_STATE(10204)] = 165369, + [SMALL_STATE(10205)] = 165440, + [SMALL_STATE(10206)] = 165487, + [SMALL_STATE(10207)] = 165526, + [SMALL_STATE(10208)] = 165565, + [SMALL_STATE(10209)] = 165642, + [SMALL_STATE(10210)] = 165719, + [SMALL_STATE(10211)] = 165796, + [SMALL_STATE(10212)] = 165867, + [SMALL_STATE(10213)] = 165912, + [SMALL_STATE(10214)] = 165989, + [SMALL_STATE(10215)] = 166066, + [SMALL_STATE(10216)] = 166105, + [SMALL_STATE(10217)] = 166150, + [SMALL_STATE(10218)] = 166221, + [SMALL_STATE(10219)] = 166262, + [SMALL_STATE(10220)] = 166307, + [SMALL_STATE(10221)] = 166374, + [SMALL_STATE(10222)] = 166451, + [SMALL_STATE(10223)] = 166496, + [SMALL_STATE(10224)] = 166541, + [SMALL_STATE(10225)] = 166580, + [SMALL_STATE(10226)] = 166625, + [SMALL_STATE(10227)] = 166666, + [SMALL_STATE(10228)] = 166743, + [SMALL_STATE(10229)] = 166788, + [SMALL_STATE(10230)] = 166833, + [SMALL_STATE(10231)] = 166872, + [SMALL_STATE(10232)] = 166917, + [SMALL_STATE(10233)] = 166956, + [SMALL_STATE(10234)] = 167001, + [SMALL_STATE(10235)] = 167074, + [SMALL_STATE(10236)] = 167147, + [SMALL_STATE(10237)] = 167196, + [SMALL_STATE(10238)] = 167241, + [SMALL_STATE(10239)] = 167280, + [SMALL_STATE(10240)] = 167357, + [SMALL_STATE(10241)] = 167402, + [SMALL_STATE(10242)] = 167479, + [SMALL_STATE(10243)] = 167524, + [SMALL_STATE(10244)] = 167597, + [SMALL_STATE(10245)] = 167674, + [SMALL_STATE(10246)] = 167713, + [SMALL_STATE(10247)] = 167752, + [SMALL_STATE(10248)] = 167793, + [SMALL_STATE(10249)] = 167862, + [SMALL_STATE(10250)] = 167929, + [SMALL_STATE(10251)] = 167970, + [SMALL_STATE(10252)] = 168011, + [SMALL_STATE(10253)] = 168076, + [SMALL_STATE(10254)] = 168117, + [SMALL_STATE(10255)] = 168156, + [SMALL_STATE(10256)] = 168219, + [SMALL_STATE(10257)] = 168264, + [SMALL_STATE(10258)] = 168341, + [SMALL_STATE(10259)] = 168418, + [SMALL_STATE(10260)] = 168477, + [SMALL_STATE(10261)] = 168516, + [SMALL_STATE(10262)] = 168593, + [SMALL_STATE(10263)] = 168666, + [SMALL_STATE(10264)] = 168743, + [SMALL_STATE(10265)] = 168796, + [SMALL_STATE(10266)] = 168873, + [SMALL_STATE(10267)] = 168946, + [SMALL_STATE(10268)] = 169023, + [SMALL_STATE(10269)] = 169100, + [SMALL_STATE(10270)] = 169167, + [SMALL_STATE(10271)] = 169244, + [SMALL_STATE(10272)] = 169285, + [SMALL_STATE(10273)] = 169324, + [SMALL_STATE(10274)] = 169401, + [SMALL_STATE(10275)] = 169478, + [SMALL_STATE(10276)] = 169555, + [SMALL_STATE(10277)] = 169632, + [SMALL_STATE(10278)] = 169705, + [SMALL_STATE(10279)] = 169744, + [SMALL_STATE(10280)] = 169821, + [SMALL_STATE(10281)] = 169898, + [SMALL_STATE(10282)] = 169937, + [SMALL_STATE(10283)] = 169976, + [SMALL_STATE(10284)] = 170027, + [SMALL_STATE(10285)] = 170066, + [SMALL_STATE(10286)] = 170105, + [SMALL_STATE(10287)] = 170182, + [SMALL_STATE(10288)] = 170221, + [SMALL_STATE(10289)] = 170272, + [SMALL_STATE(10290)] = 170311, + [SMALL_STATE(10291)] = 170368, + [SMALL_STATE(10292)] = 170417, + [SMALL_STATE(10293)] = 170494, + [SMALL_STATE(10294)] = 170571, + [SMALL_STATE(10295)] = 170648, + [SMALL_STATE(10296)] = 170725, + [SMALL_STATE(10297)] = 170764, + [SMALL_STATE(10298)] = 170833, + [SMALL_STATE(10299)] = 170900, + [SMALL_STATE(10300)] = 170945, + [SMALL_STATE(10301)] = 171018, + [SMALL_STATE(10302)] = 171057, + [SMALL_STATE(10303)] = 171134, + [SMALL_STATE(10304)] = 171211, + [SMALL_STATE(10305)] = 171258, + [SMALL_STATE(10306)] = 171297, + [SMALL_STATE(10307)] = 171362, + [SMALL_STATE(10308)] = 171439, + [SMALL_STATE(10309)] = 171500, + [SMALL_STATE(10310)] = 171539, + [SMALL_STATE(10311)] = 171578, + [SMALL_STATE(10312)] = 171643, + [SMALL_STATE(10313)] = 171696, + [SMALL_STATE(10314)] = 171773, + [SMALL_STATE(10315)] = 171842, + [SMALL_STATE(10316)] = 171919, + [SMALL_STATE(10317)] = 171996, + [SMALL_STATE(10318)] = 172073, + [SMALL_STATE(10319)] = 172112, + [SMALL_STATE(10320)] = 172181, + [SMALL_STATE(10321)] = 172258, + [SMALL_STATE(10322)] = 172297, + [SMALL_STATE(10323)] = 172336, + [SMALL_STATE(10324)] = 172413, + [SMALL_STATE(10325)] = 172452, + [SMALL_STATE(10326)] = 172497, + [SMALL_STATE(10327)] = 172566, + [SMALL_STATE(10328)] = 172643, + [SMALL_STATE(10329)] = 172720, + [SMALL_STATE(10330)] = 172797, + [SMALL_STATE(10331)] = 172874, + [SMALL_STATE(10332)] = 172921, + [SMALL_STATE(10333)] = 172998, + [SMALL_STATE(10334)] = 173047, + [SMALL_STATE(10335)] = 173124, + [SMALL_STATE(10336)] = 173201, + [SMALL_STATE(10337)] = 173278, + [SMALL_STATE(10338)] = 173355, + [SMALL_STATE(10339)] = 173432, + [SMALL_STATE(10340)] = 173471, + [SMALL_STATE(10341)] = 173548, + [SMALL_STATE(10342)] = 173625, + [SMALL_STATE(10343)] = 173698, + [SMALL_STATE(10344)] = 173737, + [SMALL_STATE(10345)] = 173814, + [SMALL_STATE(10346)] = 173853, + [SMALL_STATE(10347)] = 173892, + [SMALL_STATE(10348)] = 173969, + [SMALL_STATE(10349)] = 174008, + [SMALL_STATE(10350)] = 174085, + [SMALL_STATE(10351)] = 174162, + [SMALL_STATE(10352)] = 174239, + [SMALL_STATE(10353)] = 174316, + [SMALL_STATE(10354)] = 174355, + [SMALL_STATE(10355)] = 174394, + [SMALL_STATE(10356)] = 174471, + [SMALL_STATE(10357)] = 174510, + [SMALL_STATE(10358)] = 174587, + [SMALL_STATE(10359)] = 174632, + [SMALL_STATE(10360)] = 174675, + [SMALL_STATE(10361)] = 174752, + [SMALL_STATE(10362)] = 174829, + [SMALL_STATE(10363)] = 174906, + [SMALL_STATE(10364)] = 174947, + [SMALL_STATE(10365)] = 174986, + [SMALL_STATE(10366)] = 175025, + [SMALL_STATE(10367)] = 175066, + [SMALL_STATE(10368)] = 175141, + [SMALL_STATE(10369)] = 175180, + [SMALL_STATE(10370)] = 175231, + [SMALL_STATE(10371)] = 175274, + [SMALL_STATE(10372)] = 175331, + [SMALL_STATE(10373)] = 175374, + [SMALL_STATE(10374)] = 175451, + [SMALL_STATE(10375)] = 175494, + [SMALL_STATE(10376)] = 175571, + [SMALL_STATE(10377)] = 175610, + [SMALL_STATE(10378)] = 175649, + [SMALL_STATE(10379)] = 175726, + [SMALL_STATE(10380)] = 175769, + [SMALL_STATE(10381)] = 175846, + [SMALL_STATE(10382)] = 175889, + [SMALL_STATE(10383)] = 175966, + [SMALL_STATE(10384)] = 176043, + [SMALL_STATE(10385)] = 176082, + [SMALL_STATE(10386)] = 176139, + [SMALL_STATE(10387)] = 176178, + [SMALL_STATE(10388)] = 176255, + [SMALL_STATE(10389)] = 176294, + [SMALL_STATE(10390)] = 176333, + [SMALL_STATE(10391)] = 176410, + [SMALL_STATE(10392)] = 176487, + [SMALL_STATE(10393)] = 176532, + [SMALL_STATE(10394)] = 176571, + [SMALL_STATE(10395)] = 176638, + [SMALL_STATE(10396)] = 176703, + [SMALL_STATE(10397)] = 176780, + [SMALL_STATE(10398)] = 176857, + [SMALL_STATE(10399)] = 176934, + [SMALL_STATE(10400)] = 176997, + [SMALL_STATE(10401)] = 177056, + [SMALL_STATE(10402)] = 177097, + [SMALL_STATE(10403)] = 177150, + [SMALL_STATE(10404)] = 177227, + [SMALL_STATE(10405)] = 177304, + [SMALL_STATE(10406)] = 177343, + [SMALL_STATE(10407)] = 177420, + [SMALL_STATE(10408)] = 177493, + [SMALL_STATE(10409)] = 177560, + [SMALL_STATE(10410)] = 177605, + [SMALL_STATE(10411)] = 177650, + [SMALL_STATE(10412)] = 177727, + [SMALL_STATE(10413)] = 177800, + [SMALL_STATE(10414)] = 177861, + [SMALL_STATE(10415)] = 177938, + [SMALL_STATE(10416)] = 178005, + [SMALL_STATE(10417)] = 178082, + [SMALL_STATE(10418)] = 178159, + [SMALL_STATE(10419)] = 178236, + [SMALL_STATE(10420)] = 178313, + [SMALL_STATE(10421)] = 178386, + [SMALL_STATE(10422)] = 178459, + [SMALL_STATE(10423)] = 178532, + [SMALL_STATE(10424)] = 178577, + [SMALL_STATE(10425)] = 178654, + [SMALL_STATE(10426)] = 178731, + [SMALL_STATE(10427)] = 178808, + [SMALL_STATE(10428)] = 178885, + [SMALL_STATE(10429)] = 178938, + [SMALL_STATE(10430)] = 179007, + [SMALL_STATE(10431)] = 179084, + [SMALL_STATE(10432)] = 179131, + [SMALL_STATE(10433)] = 179208, + [SMALL_STATE(10434)] = 179285, + [SMALL_STATE(10435)] = 179362, + [SMALL_STATE(10436)] = 179409, + [SMALL_STATE(10437)] = 179460, + [SMALL_STATE(10438)] = 179537, + [SMALL_STATE(10439)] = 179614, + [SMALL_STATE(10440)] = 179691, + [SMALL_STATE(10441)] = 179738, + [SMALL_STATE(10442)] = 179783, + [SMALL_STATE(10443)] = 179860, + [SMALL_STATE(10444)] = 179905, + [SMALL_STATE(10445)] = 179944, + [SMALL_STATE(10446)] = 180017, + [SMALL_STATE(10447)] = 180056, + [SMALL_STATE(10448)] = 180133, + [SMALL_STATE(10449)] = 180172, + [SMALL_STATE(10450)] = 180245, + [SMALL_STATE(10451)] = 180284, + [SMALL_STATE(10452)] = 180357, + [SMALL_STATE(10453)] = 180434, + [SMALL_STATE(10454)] = 180491, + [SMALL_STATE(10455)] = 180540, + [SMALL_STATE(10456)] = 180617, + [SMALL_STATE(10457)] = 180694, + [SMALL_STATE(10458)] = 180771, + [SMALL_STATE(10459)] = 180842, + [SMALL_STATE(10460)] = 180919, + [SMALL_STATE(10461)] = 180964, + [SMALL_STATE(10462)] = 181041, + [SMALL_STATE(10463)] = 181118, + [SMALL_STATE(10464)] = 181195, + [SMALL_STATE(10465)] = 181234, + [SMALL_STATE(10466)] = 181273, + [SMALL_STATE(10467)] = 181312, + [SMALL_STATE(10468)] = 181351, + [SMALL_STATE(10469)] = 181390, + [SMALL_STATE(10470)] = 181467, + [SMALL_STATE(10471)] = 181544, + [SMALL_STATE(10472)] = 181582, + [SMALL_STATE(10473)] = 181620, + [SMALL_STATE(10474)] = 181658, + [SMALL_STATE(10475)] = 181696, + [SMALL_STATE(10476)] = 181734, + [SMALL_STATE(10477)] = 181772, + [SMALL_STATE(10478)] = 181810, + [SMALL_STATE(10479)] = 181848, + [SMALL_STATE(10480)] = 181886, + [SMALL_STATE(10481)] = 181924, + [SMALL_STATE(10482)] = 181962, + [SMALL_STATE(10483)] = 182000, + [SMALL_STATE(10484)] = 182038, + [SMALL_STATE(10485)] = 182076, + [SMALL_STATE(10486)] = 182114, + [SMALL_STATE(10487)] = 182152, + [SMALL_STATE(10488)] = 182190, + [SMALL_STATE(10489)] = 182228, + [SMALL_STATE(10490)] = 182266, + [SMALL_STATE(10491)] = 182304, + [SMALL_STATE(10492)] = 182342, + [SMALL_STATE(10493)] = 182380, + [SMALL_STATE(10494)] = 182418, + [SMALL_STATE(10495)] = 182456, + [SMALL_STATE(10496)] = 182494, + [SMALL_STATE(10497)] = 182532, + [SMALL_STATE(10498)] = 182570, + [SMALL_STATE(10499)] = 182608, + [SMALL_STATE(10500)] = 182646, + [SMALL_STATE(10501)] = 182684, + [SMALL_STATE(10502)] = 182722, + [SMALL_STATE(10503)] = 182760, + [SMALL_STATE(10504)] = 182798, + [SMALL_STATE(10505)] = 182836, + [SMALL_STATE(10506)] = 182874, + [SMALL_STATE(10507)] = 182912, + [SMALL_STATE(10508)] = 182950, + [SMALL_STATE(10509)] = 182988, + [SMALL_STATE(10510)] = 183026, + [SMALL_STATE(10511)] = 183064, + [SMALL_STATE(10512)] = 183102, + [SMALL_STATE(10513)] = 183140, + [SMALL_STATE(10514)] = 183178, + [SMALL_STATE(10515)] = 183216, + [SMALL_STATE(10516)] = 183254, + [SMALL_STATE(10517)] = 183292, + [SMALL_STATE(10518)] = 183330, + [SMALL_STATE(10519)] = 183368, + [SMALL_STATE(10520)] = 183406, + [SMALL_STATE(10521)] = 183444, + [SMALL_STATE(10522)] = 183482, + [SMALL_STATE(10523)] = 183520, + [SMALL_STATE(10524)] = 183558, + [SMALL_STATE(10525)] = 183596, + [SMALL_STATE(10526)] = 183634, + [SMALL_STATE(10527)] = 183672, + [SMALL_STATE(10528)] = 183710, + [SMALL_STATE(10529)] = 183748, + [SMALL_STATE(10530)] = 183786, + [SMALL_STATE(10531)] = 183824, + [SMALL_STATE(10532)] = 183862, + [SMALL_STATE(10533)] = 183900, + [SMALL_STATE(10534)] = 183938, + [SMALL_STATE(10535)] = 183976, + [SMALL_STATE(10536)] = 184014, + [SMALL_STATE(10537)] = 184052, + [SMALL_STATE(10538)] = 184090, + [SMALL_STATE(10539)] = 184128, + [SMALL_STATE(10540)] = 184166, + [SMALL_STATE(10541)] = 184204, + [SMALL_STATE(10542)] = 184242, + [SMALL_STATE(10543)] = 184280, + [SMALL_STATE(10544)] = 184318, + [SMALL_STATE(10545)] = 184356, + [SMALL_STATE(10546)] = 184394, + [SMALL_STATE(10547)] = 184432, + [SMALL_STATE(10548)] = 184470, + [SMALL_STATE(10549)] = 184508, + [SMALL_STATE(10550)] = 184546, + [SMALL_STATE(10551)] = 184584, + [SMALL_STATE(10552)] = 184622, + [SMALL_STATE(10553)] = 184660, + [SMALL_STATE(10554)] = 184698, + [SMALL_STATE(10555)] = 184736, + [SMALL_STATE(10556)] = 184774, + [SMALL_STATE(10557)] = 184812, + [SMALL_STATE(10558)] = 184850, + [SMALL_STATE(10559)] = 184888, + [SMALL_STATE(10560)] = 184926, + [SMALL_STATE(10561)] = 184964, + [SMALL_STATE(10562)] = 185002, + [SMALL_STATE(10563)] = 185040, + [SMALL_STATE(10564)] = 185078, + [SMALL_STATE(10565)] = 185116, + [SMALL_STATE(10566)] = 185154, + [SMALL_STATE(10567)] = 185192, + [SMALL_STATE(10568)] = 185230, + [SMALL_STATE(10569)] = 185268, + [SMALL_STATE(10570)] = 185306, + [SMALL_STATE(10571)] = 185344, + [SMALL_STATE(10572)] = 185382, + [SMALL_STATE(10573)] = 185420, + [SMALL_STATE(10574)] = 185458, + [SMALL_STATE(10575)] = 185496, + [SMALL_STATE(10576)] = 185534, + [SMALL_STATE(10577)] = 185572, + [SMALL_STATE(10578)] = 185610, + [SMALL_STATE(10579)] = 185648, + [SMALL_STATE(10580)] = 185686, + [SMALL_STATE(10581)] = 185724, + [SMALL_STATE(10582)] = 185762, + [SMALL_STATE(10583)] = 185800, + [SMALL_STATE(10584)] = 185838, + [SMALL_STATE(10585)] = 185876, + [SMALL_STATE(10586)] = 185916, + [SMALL_STATE(10587)] = 185960, + [SMALL_STATE(10588)] = 185998, + [SMALL_STATE(10589)] = 186036, + [SMALL_STATE(10590)] = 186074, + [SMALL_STATE(10591)] = 186112, + [SMALL_STATE(10592)] = 186150, + [SMALL_STATE(10593)] = 186188, + [SMALL_STATE(10594)] = 186226, + [SMALL_STATE(10595)] = 186264, + [SMALL_STATE(10596)] = 186302, + [SMALL_STATE(10597)] = 186340, + [SMALL_STATE(10598)] = 186412, + [SMALL_STATE(10599)] = 186450, + [SMALL_STATE(10600)] = 186488, + [SMALL_STATE(10601)] = 186526, + [SMALL_STATE(10602)] = 186564, + [SMALL_STATE(10603)] = 186602, + [SMALL_STATE(10604)] = 186640, + [SMALL_STATE(10605)] = 186678, + [SMALL_STATE(10606)] = 186716, + [SMALL_STATE(10607)] = 186754, + [SMALL_STATE(10608)] = 186792, + [SMALL_STATE(10609)] = 186830, + [SMALL_STATE(10610)] = 186868, + [SMALL_STATE(10611)] = 186906, + [SMALL_STATE(10612)] = 186944, + [SMALL_STATE(10613)] = 186982, + [SMALL_STATE(10614)] = 187020, + [SMALL_STATE(10615)] = 187058, + [SMALL_STATE(10616)] = 187096, + [SMALL_STATE(10617)] = 187134, + [SMALL_STATE(10618)] = 187172, + [SMALL_STATE(10619)] = 187210, + [SMALL_STATE(10620)] = 187248, + [SMALL_STATE(10621)] = 187286, + [SMALL_STATE(10622)] = 187324, + [SMALL_STATE(10623)] = 187394, + [SMALL_STATE(10624)] = 187432, + [SMALL_STATE(10625)] = 187470, + [SMALL_STATE(10626)] = 187508, + [SMALL_STATE(10627)] = 187546, + [SMALL_STATE(10628)] = 187584, + [SMALL_STATE(10629)] = 187622, + [SMALL_STATE(10630)] = 187660, + [SMALL_STATE(10631)] = 187698, + [SMALL_STATE(10632)] = 187736, + [SMALL_STATE(10633)] = 187774, + [SMALL_STATE(10634)] = 187844, + [SMALL_STATE(10635)] = 187882, + [SMALL_STATE(10636)] = 187920, + [SMALL_STATE(10637)] = 187958, + [SMALL_STATE(10638)] = 187996, + [SMALL_STATE(10639)] = 188034, + [SMALL_STATE(10640)] = 188072, + [SMALL_STATE(10641)] = 188110, + [SMALL_STATE(10642)] = 188148, + [SMALL_STATE(10643)] = 188186, + [SMALL_STATE(10644)] = 188224, + [SMALL_STATE(10645)] = 188262, + [SMALL_STATE(10646)] = 188306, + [SMALL_STATE(10647)] = 188344, + [SMALL_STATE(10648)] = 188382, + [SMALL_STATE(10649)] = 188420, + [SMALL_STATE(10650)] = 188458, + [SMALL_STATE(10651)] = 188496, + [SMALL_STATE(10652)] = 188534, + [SMALL_STATE(10653)] = 188572, + [SMALL_STATE(10654)] = 188610, + [SMALL_STATE(10655)] = 188648, + [SMALL_STATE(10656)] = 188686, + [SMALL_STATE(10657)] = 188724, + [SMALL_STATE(10658)] = 188762, + [SMALL_STATE(10659)] = 188800, + [SMALL_STATE(10660)] = 188838, + [SMALL_STATE(10661)] = 188876, + [SMALL_STATE(10662)] = 188948, + [SMALL_STATE(10663)] = 188986, + [SMALL_STATE(10664)] = 189024, + [SMALL_STATE(10665)] = 189062, + [SMALL_STATE(10666)] = 189100, + [SMALL_STATE(10667)] = 189138, + [SMALL_STATE(10668)] = 189176, + [SMALL_STATE(10669)] = 189214, + [SMALL_STATE(10670)] = 189252, + [SMALL_STATE(10671)] = 189290, + [SMALL_STATE(10672)] = 189328, + [SMALL_STATE(10673)] = 189366, + [SMALL_STATE(10674)] = 189404, + [SMALL_STATE(10675)] = 189442, + [SMALL_STATE(10676)] = 189480, + [SMALL_STATE(10677)] = 189518, + [SMALL_STATE(10678)] = 189556, + [SMALL_STATE(10679)] = 189594, + [SMALL_STATE(10680)] = 189632, + [SMALL_STATE(10681)] = 189670, + [SMALL_STATE(10682)] = 189708, + [SMALL_STATE(10683)] = 189746, + [SMALL_STATE(10684)] = 189784, + [SMALL_STATE(10685)] = 189822, + [SMALL_STATE(10686)] = 189860, + [SMALL_STATE(10687)] = 189898, + [SMALL_STATE(10688)] = 189936, + [SMALL_STATE(10689)] = 189974, + [SMALL_STATE(10690)] = 190012, + [SMALL_STATE(10691)] = 190050, + [SMALL_STATE(10692)] = 190088, + [SMALL_STATE(10693)] = 190126, + [SMALL_STATE(10694)] = 190164, + [SMALL_STATE(10695)] = 190202, + [SMALL_STATE(10696)] = 190240, + [SMALL_STATE(10697)] = 190278, + [SMALL_STATE(10698)] = 190316, + [SMALL_STATE(10699)] = 190354, + [SMALL_STATE(10700)] = 190392, + [SMALL_STATE(10701)] = 190430, + [SMALL_STATE(10702)] = 190468, + [SMALL_STATE(10703)] = 190506, + [SMALL_STATE(10704)] = 190544, + [SMALL_STATE(10705)] = 190618, + [SMALL_STATE(10706)] = 190656, + [SMALL_STATE(10707)] = 190694, + [SMALL_STATE(10708)] = 190732, + [SMALL_STATE(10709)] = 190770, + [SMALL_STATE(10710)] = 190808, + [SMALL_STATE(10711)] = 190846, + [SMALL_STATE(10712)] = 190884, + [SMALL_STATE(10713)] = 190922, + [SMALL_STATE(10714)] = 190960, + [SMALL_STATE(10715)] = 190998, + [SMALL_STATE(10716)] = 191036, + [SMALL_STATE(10717)] = 191074, + [SMALL_STATE(10718)] = 191112, + [SMALL_STATE(10719)] = 191150, + [SMALL_STATE(10720)] = 191188, + [SMALL_STATE(10721)] = 191226, + [SMALL_STATE(10722)] = 191264, + [SMALL_STATE(10723)] = 191302, + [SMALL_STATE(10724)] = 191340, + [SMALL_STATE(10725)] = 191378, + [SMALL_STATE(10726)] = 191416, + [SMALL_STATE(10727)] = 191454, + [SMALL_STATE(10728)] = 191492, + [SMALL_STATE(10729)] = 191530, + [SMALL_STATE(10730)] = 191568, + [SMALL_STATE(10731)] = 191606, + [SMALL_STATE(10732)] = 191644, + [SMALL_STATE(10733)] = 191682, + [SMALL_STATE(10734)] = 191720, + [SMALL_STATE(10735)] = 191758, + [SMALL_STATE(10736)] = 191796, + [SMALL_STATE(10737)] = 191834, + [SMALL_STATE(10738)] = 191872, + [SMALL_STATE(10739)] = 191910, + [SMALL_STATE(10740)] = 191948, + [SMALL_STATE(10741)] = 191986, + [SMALL_STATE(10742)] = 192024, + [SMALL_STATE(10743)] = 192062, + [SMALL_STATE(10744)] = 192100, + [SMALL_STATE(10745)] = 192138, + [SMALL_STATE(10746)] = 192176, + [SMALL_STATE(10747)] = 192214, + [SMALL_STATE(10748)] = 192252, + [SMALL_STATE(10749)] = 192290, + [SMALL_STATE(10750)] = 192328, + [SMALL_STATE(10751)] = 192366, + [SMALL_STATE(10752)] = 192410, + [SMALL_STATE(10753)] = 192448, + [SMALL_STATE(10754)] = 192486, + [SMALL_STATE(10755)] = 192524, + [SMALL_STATE(10756)] = 192562, + [SMALL_STATE(10757)] = 192600, + [SMALL_STATE(10758)] = 192638, + [SMALL_STATE(10759)] = 192676, + [SMALL_STATE(10760)] = 192714, + [SMALL_STATE(10761)] = 192752, + [SMALL_STATE(10762)] = 192790, + [SMALL_STATE(10763)] = 192828, + [SMALL_STATE(10764)] = 192866, + [SMALL_STATE(10765)] = 192904, + [SMALL_STATE(10766)] = 192942, + [SMALL_STATE(10767)] = 192980, + [SMALL_STATE(10768)] = 193024, + [SMALL_STATE(10769)] = 193062, + [SMALL_STATE(10770)] = 193100, + [SMALL_STATE(10771)] = 193138, + [SMALL_STATE(10772)] = 193176, + [SMALL_STATE(10773)] = 193214, + [SMALL_STATE(10774)] = 193252, + [SMALL_STATE(10775)] = 193290, + [SMALL_STATE(10776)] = 193328, + [SMALL_STATE(10777)] = 193366, + [SMALL_STATE(10778)] = 193404, + [SMALL_STATE(10779)] = 193442, + [SMALL_STATE(10780)] = 193480, + [SMALL_STATE(10781)] = 193518, + [SMALL_STATE(10782)] = 193556, + [SMALL_STATE(10783)] = 193594, + [SMALL_STATE(10784)] = 193632, + [SMALL_STATE(10785)] = 193670, + [SMALL_STATE(10786)] = 193708, + [SMALL_STATE(10787)] = 193746, + [SMALL_STATE(10788)] = 193784, + [SMALL_STATE(10789)] = 193822, + [SMALL_STATE(10790)] = 193860, + [SMALL_STATE(10791)] = 193898, + [SMALL_STATE(10792)] = 193936, + [SMALL_STATE(10793)] = 193974, + [SMALL_STATE(10794)] = 194012, + [SMALL_STATE(10795)] = 194050, + [SMALL_STATE(10796)] = 194088, + [SMALL_STATE(10797)] = 194126, + [SMALL_STATE(10798)] = 194164, + [SMALL_STATE(10799)] = 194202, + [SMALL_STATE(10800)] = 194240, + [SMALL_STATE(10801)] = 194278, + [SMALL_STATE(10802)] = 194316, + [SMALL_STATE(10803)] = 194354, + [SMALL_STATE(10804)] = 194392, + [SMALL_STATE(10805)] = 194430, + [SMALL_STATE(10806)] = 194474, + [SMALL_STATE(10807)] = 194512, + [SMALL_STATE(10808)] = 194550, + [SMALL_STATE(10809)] = 194588, + [SMALL_STATE(10810)] = 194626, + [SMALL_STATE(10811)] = 194664, + [SMALL_STATE(10812)] = 194702, + [SMALL_STATE(10813)] = 194740, + [SMALL_STATE(10814)] = 194778, + [SMALL_STATE(10815)] = 194850, + [SMALL_STATE(10816)] = 194888, + [SMALL_STATE(10817)] = 194926, + [SMALL_STATE(10818)] = 194964, + [SMALL_STATE(10819)] = 195002, + [SMALL_STATE(10820)] = 195040, + [SMALL_STATE(10821)] = 195078, + [SMALL_STATE(10822)] = 195116, + [SMALL_STATE(10823)] = 195154, + [SMALL_STATE(10824)] = 195192, + [SMALL_STATE(10825)] = 195230, + [SMALL_STATE(10826)] = 195268, + [SMALL_STATE(10827)] = 195306, + [SMALL_STATE(10828)] = 195350, + [SMALL_STATE(10829)] = 195388, + [SMALL_STATE(10830)] = 195426, + [SMALL_STATE(10831)] = 195464, + [SMALL_STATE(10832)] = 195502, + [SMALL_STATE(10833)] = 195540, + [SMALL_STATE(10834)] = 195608, + [SMALL_STATE(10835)] = 195676, + [SMALL_STATE(10836)] = 195744, + [SMALL_STATE(10837)] = 195814, + [SMALL_STATE(10838)] = 195884, + [SMALL_STATE(10839)] = 195909, + [SMALL_STATE(10840)] = 195942, + [SMALL_STATE(10841)] = 195975, + [SMALL_STATE(10842)] = 195997, + [SMALL_STATE(10843)] = 196018, + [SMALL_STATE(10844)] = 196039, + [SMALL_STATE(10845)] = 196060, + [SMALL_STATE(10846)] = 196081, + [SMALL_STATE(10847)] = 196102, + [SMALL_STATE(10848)] = 196123, + [SMALL_STATE(10849)] = 196148, + [SMALL_STATE(10850)] = 196181, + [SMALL_STATE(10851)] = 196202, + [SMALL_STATE(10852)] = 196223, + [SMALL_STATE(10853)] = 196244, + [SMALL_STATE(10854)] = 196277, + [SMALL_STATE(10855)] = 196298, + [SMALL_STATE(10856)] = 196319, + [SMALL_STATE(10857)] = 196340, + [SMALL_STATE(10858)] = 196361, + [SMALL_STATE(10859)] = 196382, + [SMALL_STATE(10860)] = 196415, + [SMALL_STATE(10861)] = 196436, + [SMALL_STATE(10862)] = 196469, + [SMALL_STATE(10863)] = 196490, + [SMALL_STATE(10864)] = 196511, + [SMALL_STATE(10865)] = 196532, + [SMALL_STATE(10866)] = 196553, + [SMALL_STATE(10867)] = 196574, + [SMALL_STATE(10868)] = 196595, + [SMALL_STATE(10869)] = 196619, + [SMALL_STATE(10870)] = 196649, + [SMALL_STATE(10871)] = 196679, + [SMALL_STATE(10872)] = 196701, + [SMALL_STATE(10873)] = 196731, + [SMALL_STATE(10874)] = 196753, + [SMALL_STATE(10875)] = 196783, + [SMALL_STATE(10876)] = 196802, + [SMALL_STATE(10877)] = 196823, + [SMALL_STATE(10878)] = 196842, + [SMALL_STATE(10879)] = 196863, + [SMALL_STATE(10880)] = 196882, + [SMALL_STATE(10881)] = 196901, + [SMALL_STATE(10882)] = 196920, + [SMALL_STATE(10883)] = 196939, + [SMALL_STATE(10884)] = 196958, + [SMALL_STATE(10885)] = 196977, + [SMALL_STATE(10886)] = 196996, + [SMALL_STATE(10887)] = 197015, + [SMALL_STATE(10888)] = 197034, + [SMALL_STATE(10889)] = 197053, + [SMALL_STATE(10890)] = 197072, + [SMALL_STATE(10891)] = 197091, + [SMALL_STATE(10892)] = 197110, + [SMALL_STATE(10893)] = 197129, + [SMALL_STATE(10894)] = 197148, + [SMALL_STATE(10895)] = 197167, + [SMALL_STATE(10896)] = 197186, + [SMALL_STATE(10897)] = 197205, + [SMALL_STATE(10898)] = 197224, + [SMALL_STATE(10899)] = 197243, + [SMALL_STATE(10900)] = 197262, + [SMALL_STATE(10901)] = 197281, + [SMALL_STATE(10902)] = 197300, + [SMALL_STATE(10903)] = 197319, + [SMALL_STATE(10904)] = 197338, + [SMALL_STATE(10905)] = 197357, + [SMALL_STATE(10906)] = 197376, + [SMALL_STATE(10907)] = 197395, + [SMALL_STATE(10908)] = 197414, + [SMALL_STATE(10909)] = 197433, + [SMALL_STATE(10910)] = 197452, + [SMALL_STATE(10911)] = 197471, + [SMALL_STATE(10912)] = 197490, + [SMALL_STATE(10913)] = 197510, + [SMALL_STATE(10914)] = 197529, + [SMALL_STATE(10915)] = 197546, + [SMALL_STATE(10916)] = 197565, + [SMALL_STATE(10917)] = 197584, + [SMALL_STATE(10918)] = 197601, + [SMALL_STATE(10919)] = 197621, + [SMALL_STATE(10920)] = 197647, + [SMALL_STATE(10921)] = 197667, + [SMALL_STATE(10922)] = 197689, + [SMALL_STATE(10923)] = 197715, + [SMALL_STATE(10924)] = 197737, + [SMALL_STATE(10925)] = 197759, + [SMALL_STATE(10926)] = 197785, + [SMALL_STATE(10927)] = 197807, + [SMALL_STATE(10928)] = 197833, + [SMALL_STATE(10929)] = 197859, + [SMALL_STATE(10930)] = 197881, + [SMALL_STATE(10931)] = 197907, + [SMALL_STATE(10932)] = 197933, + [SMALL_STATE(10933)] = 197955, + [SMALL_STATE(10934)] = 197971, + [SMALL_STATE(10935)] = 197993, + [SMALL_STATE(10936)] = 198015, + [SMALL_STATE(10937)] = 198037, + [SMALL_STATE(10938)] = 198063, + [SMALL_STATE(10939)] = 198085, + [SMALL_STATE(10940)] = 198111, + [SMALL_STATE(10941)] = 198137, + [SMALL_STATE(10942)] = 198153, + [SMALL_STATE(10943)] = 198179, + [SMALL_STATE(10944)] = 198205, + [SMALL_STATE(10945)] = 198231, + [SMALL_STATE(10946)] = 198257, + [SMALL_STATE(10947)] = 198279, + [SMALL_STATE(10948)] = 198301, + [SMALL_STATE(10949)] = 198324, + [SMALL_STATE(10950)] = 198345, + [SMALL_STATE(10951)] = 198368, + [SMALL_STATE(10952)] = 198393, + [SMALL_STATE(10953)] = 198412, + [SMALL_STATE(10954)] = 198435, + [SMALL_STATE(10955)] = 198458, + [SMALL_STATE(10956)] = 198474, + [SMALL_STATE(10957)] = 198488, + [SMALL_STATE(10958)] = 198502, + [SMALL_STATE(10959)] = 198522, + [SMALL_STATE(10960)] = 198536, + [SMALL_STATE(10961)] = 198550, + [SMALL_STATE(10962)] = 198564, + [SMALL_STATE(10963)] = 198578, + [SMALL_STATE(10964)] = 198592, + [SMALL_STATE(10965)] = 198606, + [SMALL_STATE(10966)] = 198620, + [SMALL_STATE(10967)] = 198634, + [SMALL_STATE(10968)] = 198648, + [SMALL_STATE(10969)] = 198662, + [SMALL_STATE(10970)] = 198676, + [SMALL_STATE(10971)] = 198698, + [SMALL_STATE(10972)] = 198712, + [SMALL_STATE(10973)] = 198726, + [SMALL_STATE(10974)] = 198740, + [SMALL_STATE(10975)] = 198754, + [SMALL_STATE(10976)] = 198768, + [SMALL_STATE(10977)] = 198782, + [SMALL_STATE(10978)] = 198796, + [SMALL_STATE(10979)] = 198810, + [SMALL_STATE(10980)] = 198824, + [SMALL_STATE(10981)] = 198838, + [SMALL_STATE(10982)] = 198852, + [SMALL_STATE(10983)] = 198866, + [SMALL_STATE(10984)] = 198880, + [SMALL_STATE(10985)] = 198894, + [SMALL_STATE(10986)] = 198908, + [SMALL_STATE(10987)] = 198922, + [SMALL_STATE(10988)] = 198936, + [SMALL_STATE(10989)] = 198950, + [SMALL_STATE(10990)] = 198964, + [SMALL_STATE(10991)] = 198978, + [SMALL_STATE(10992)] = 198992, + [SMALL_STATE(10993)] = 199006, + [SMALL_STATE(10994)] = 199020, + [SMALL_STATE(10995)] = 199034, + [SMALL_STATE(10996)] = 199048, + [SMALL_STATE(10997)] = 199062, + [SMALL_STATE(10998)] = 199076, + [SMALL_STATE(10999)] = 199090, + [SMALL_STATE(11000)] = 199104, + [SMALL_STATE(11001)] = 199118, + [SMALL_STATE(11002)] = 199132, + [SMALL_STATE(11003)] = 199146, + [SMALL_STATE(11004)] = 199160, + [SMALL_STATE(11005)] = 199174, + [SMALL_STATE(11006)] = 199188, + [SMALL_STATE(11007)] = 199208, + [SMALL_STATE(11008)] = 199222, + [SMALL_STATE(11009)] = 199236, + [SMALL_STATE(11010)] = 199250, + [SMALL_STATE(11011)] = 199264, + [SMALL_STATE(11012)] = 199283, + [SMALL_STATE(11013)] = 199302, + [SMALL_STATE(11014)] = 199321, + [SMALL_STATE(11015)] = 199340, + [SMALL_STATE(11016)] = 199359, + [SMALL_STATE(11017)] = 199378, + [SMALL_STATE(11018)] = 199397, + [SMALL_STATE(11019)] = 199416, + [SMALL_STATE(11020)] = 199435, + [SMALL_STATE(11021)] = 199454, + [SMALL_STATE(11022)] = 199473, + [SMALL_STATE(11023)] = 199492, + [SMALL_STATE(11024)] = 199511, + [SMALL_STATE(11025)] = 199530, + [SMALL_STATE(11026)] = 199549, + [SMALL_STATE(11027)] = 199568, + [SMALL_STATE(11028)] = 199587, + [SMALL_STATE(11029)] = 199606, + [SMALL_STATE(11030)] = 199625, + [SMALL_STATE(11031)] = 199644, + [SMALL_STATE(11032)] = 199663, + [SMALL_STATE(11033)] = 199682, + [SMALL_STATE(11034)] = 199701, + [SMALL_STATE(11035)] = 199720, + [SMALL_STATE(11036)] = 199739, + [SMALL_STATE(11037)] = 199758, + [SMALL_STATE(11038)] = 199777, + [SMALL_STATE(11039)] = 199796, + [SMALL_STATE(11040)] = 199815, + [SMALL_STATE(11041)] = 199834, + [SMALL_STATE(11042)] = 199853, + [SMALL_STATE(11043)] = 199872, + [SMALL_STATE(11044)] = 199891, + [SMALL_STATE(11045)] = 199910, + [SMALL_STATE(11046)] = 199929, + [SMALL_STATE(11047)] = 199948, + [SMALL_STATE(11048)] = 199967, + [SMALL_STATE(11049)] = 199986, + [SMALL_STATE(11050)] = 200005, + [SMALL_STATE(11051)] = 200024, + [SMALL_STATE(11052)] = 200043, + [SMALL_STATE(11053)] = 200062, + [SMALL_STATE(11054)] = 200081, + [SMALL_STATE(11055)] = 200100, + [SMALL_STATE(11056)] = 200119, + [SMALL_STATE(11057)] = 200138, + [SMALL_STATE(11058)] = 200157, + [SMALL_STATE(11059)] = 200176, + [SMALL_STATE(11060)] = 200195, + [SMALL_STATE(11061)] = 200214, + [SMALL_STATE(11062)] = 200233, + [SMALL_STATE(11063)] = 200252, + [SMALL_STATE(11064)] = 200271, + [SMALL_STATE(11065)] = 200290, + [SMALL_STATE(11066)] = 200309, + [SMALL_STATE(11067)] = 200328, + [SMALL_STATE(11068)] = 200347, + [SMALL_STATE(11069)] = 200366, + [SMALL_STATE(11070)] = 200385, + [SMALL_STATE(11071)] = 200404, + [SMALL_STATE(11072)] = 200423, + [SMALL_STATE(11073)] = 200442, + [SMALL_STATE(11074)] = 200461, + [SMALL_STATE(11075)] = 200480, + [SMALL_STATE(11076)] = 200499, + [SMALL_STATE(11077)] = 200518, + [SMALL_STATE(11078)] = 200537, + [SMALL_STATE(11079)] = 200556, + [SMALL_STATE(11080)] = 200575, + [SMALL_STATE(11081)] = 200594, + [SMALL_STATE(11082)] = 200613, + [SMALL_STATE(11083)] = 200632, + [SMALL_STATE(11084)] = 200651, + [SMALL_STATE(11085)] = 200670, + [SMALL_STATE(11086)] = 200689, + [SMALL_STATE(11087)] = 200708, + [SMALL_STATE(11088)] = 200727, + [SMALL_STATE(11089)] = 200746, + [SMALL_STATE(11090)] = 200765, + [SMALL_STATE(11091)] = 200784, + [SMALL_STATE(11092)] = 200803, + [SMALL_STATE(11093)] = 200822, + [SMALL_STATE(11094)] = 200841, + [SMALL_STATE(11095)] = 200860, + [SMALL_STATE(11096)] = 200879, + [SMALL_STATE(11097)] = 200898, + [SMALL_STATE(11098)] = 200917, + [SMALL_STATE(11099)] = 200936, + [SMALL_STATE(11100)] = 200955, + [SMALL_STATE(11101)] = 200974, + [SMALL_STATE(11102)] = 200993, + [SMALL_STATE(11103)] = 201012, + [SMALL_STATE(11104)] = 201031, + [SMALL_STATE(11105)] = 201050, + [SMALL_STATE(11106)] = 201069, + [SMALL_STATE(11107)] = 201088, + [SMALL_STATE(11108)] = 201105, + [SMALL_STATE(11109)] = 201124, + [SMALL_STATE(11110)] = 201143, + [SMALL_STATE(11111)] = 201162, + [SMALL_STATE(11112)] = 201181, + [SMALL_STATE(11113)] = 201200, + [SMALL_STATE(11114)] = 201219, + [SMALL_STATE(11115)] = 201238, + [SMALL_STATE(11116)] = 201257, + [SMALL_STATE(11117)] = 201276, + [SMALL_STATE(11118)] = 201295, + [SMALL_STATE(11119)] = 201314, + [SMALL_STATE(11120)] = 201333, + [SMALL_STATE(11121)] = 201352, + [SMALL_STATE(11122)] = 201371, + [SMALL_STATE(11123)] = 201390, + [SMALL_STATE(11124)] = 201409, + [SMALL_STATE(11125)] = 201428, + [SMALL_STATE(11126)] = 201447, + [SMALL_STATE(11127)] = 201466, + [SMALL_STATE(11128)] = 201485, + [SMALL_STATE(11129)] = 201504, + [SMALL_STATE(11130)] = 201523, + [SMALL_STATE(11131)] = 201542, + [SMALL_STATE(11132)] = 201561, + [SMALL_STATE(11133)] = 201580, + [SMALL_STATE(11134)] = 201599, + [SMALL_STATE(11135)] = 201618, + [SMALL_STATE(11136)] = 201637, + [SMALL_STATE(11137)] = 201656, + [SMALL_STATE(11138)] = 201675, + [SMALL_STATE(11139)] = 201694, + [SMALL_STATE(11140)] = 201713, + [SMALL_STATE(11141)] = 201732, + [SMALL_STATE(11142)] = 201751, + [SMALL_STATE(11143)] = 201770, + [SMALL_STATE(11144)] = 201789, + [SMALL_STATE(11145)] = 201808, + [SMALL_STATE(11146)] = 201827, + [SMALL_STATE(11147)] = 201846, + [SMALL_STATE(11148)] = 201865, + [SMALL_STATE(11149)] = 201884, + [SMALL_STATE(11150)] = 201903, + [SMALL_STATE(11151)] = 201922, + [SMALL_STATE(11152)] = 201941, + [SMALL_STATE(11153)] = 201960, + [SMALL_STATE(11154)] = 201979, + [SMALL_STATE(11155)] = 201998, + [SMALL_STATE(11156)] = 202017, + [SMALL_STATE(11157)] = 202036, + [SMALL_STATE(11158)] = 202055, + [SMALL_STATE(11159)] = 202074, + [SMALL_STATE(11160)] = 202093, + [SMALL_STATE(11161)] = 202112, + [SMALL_STATE(11162)] = 202131, + [SMALL_STATE(11163)] = 202150, + [SMALL_STATE(11164)] = 202169, + [SMALL_STATE(11165)] = 202188, + [SMALL_STATE(11166)] = 202207, + [SMALL_STATE(11167)] = 202226, + [SMALL_STATE(11168)] = 202245, + [SMALL_STATE(11169)] = 202264, + [SMALL_STATE(11170)] = 202283, + [SMALL_STATE(11171)] = 202302, + [SMALL_STATE(11172)] = 202321, + [SMALL_STATE(11173)] = 202340, + [SMALL_STATE(11174)] = 202359, + [SMALL_STATE(11175)] = 202378, + [SMALL_STATE(11176)] = 202397, + [SMALL_STATE(11177)] = 202416, + [SMALL_STATE(11178)] = 202435, + [SMALL_STATE(11179)] = 202454, + [SMALL_STATE(11180)] = 202473, + [SMALL_STATE(11181)] = 202492, + [SMALL_STATE(11182)] = 202511, + [SMALL_STATE(11183)] = 202530, + [SMALL_STATE(11184)] = 202549, + [SMALL_STATE(11185)] = 202568, + [SMALL_STATE(11186)] = 202587, + [SMALL_STATE(11187)] = 202606, + [SMALL_STATE(11188)] = 202625, + [SMALL_STATE(11189)] = 202644, + [SMALL_STATE(11190)] = 202663, + [SMALL_STATE(11191)] = 202682, + [SMALL_STATE(11192)] = 202701, + [SMALL_STATE(11193)] = 202720, + [SMALL_STATE(11194)] = 202739, + [SMALL_STATE(11195)] = 202758, + [SMALL_STATE(11196)] = 202777, + [SMALL_STATE(11197)] = 202796, + [SMALL_STATE(11198)] = 202815, + [SMALL_STATE(11199)] = 202834, + [SMALL_STATE(11200)] = 202853, + [SMALL_STATE(11201)] = 202872, + [SMALL_STATE(11202)] = 202891, + [SMALL_STATE(11203)] = 202910, + [SMALL_STATE(11204)] = 202929, + [SMALL_STATE(11205)] = 202948, + [SMALL_STATE(11206)] = 202967, + [SMALL_STATE(11207)] = 202986, + [SMALL_STATE(11208)] = 203005, + [SMALL_STATE(11209)] = 203024, + [SMALL_STATE(11210)] = 203043, + [SMALL_STATE(11211)] = 203062, + [SMALL_STATE(11212)] = 203081, + [SMALL_STATE(11213)] = 203100, + [SMALL_STATE(11214)] = 203119, + [SMALL_STATE(11215)] = 203138, + [SMALL_STATE(11216)] = 203157, + [SMALL_STATE(11217)] = 203176, + [SMALL_STATE(11218)] = 203195, + [SMALL_STATE(11219)] = 203214, + [SMALL_STATE(11220)] = 203233, + [SMALL_STATE(11221)] = 203252, + [SMALL_STATE(11222)] = 203271, + [SMALL_STATE(11223)] = 203290, + [SMALL_STATE(11224)] = 203309, + [SMALL_STATE(11225)] = 203328, + [SMALL_STATE(11226)] = 203347, + [SMALL_STATE(11227)] = 203366, + [SMALL_STATE(11228)] = 203385, + [SMALL_STATE(11229)] = 203404, + [SMALL_STATE(11230)] = 203423, + [SMALL_STATE(11231)] = 203442, + [SMALL_STATE(11232)] = 203461, + [SMALL_STATE(11233)] = 203480, + [SMALL_STATE(11234)] = 203499, + [SMALL_STATE(11235)] = 203518, + [SMALL_STATE(11236)] = 203537, + [SMALL_STATE(11237)] = 203556, + [SMALL_STATE(11238)] = 203575, + [SMALL_STATE(11239)] = 203594, + [SMALL_STATE(11240)] = 203613, + [SMALL_STATE(11241)] = 203632, + [SMALL_STATE(11242)] = 203651, + [SMALL_STATE(11243)] = 203670, + [SMALL_STATE(11244)] = 203689, + [SMALL_STATE(11245)] = 203708, + [SMALL_STATE(11246)] = 203727, + [SMALL_STATE(11247)] = 203746, + [SMALL_STATE(11248)] = 203765, + [SMALL_STATE(11249)] = 203784, + [SMALL_STATE(11250)] = 203803, + [SMALL_STATE(11251)] = 203822, + [SMALL_STATE(11252)] = 203841, + [SMALL_STATE(11253)] = 203860, + [SMALL_STATE(11254)] = 203879, + [SMALL_STATE(11255)] = 203898, + [SMALL_STATE(11256)] = 203917, + [SMALL_STATE(11257)] = 203936, + [SMALL_STATE(11258)] = 203955, + [SMALL_STATE(11259)] = 203974, + [SMALL_STATE(11260)] = 203993, + [SMALL_STATE(11261)] = 204012, + [SMALL_STATE(11262)] = 204031, + [SMALL_STATE(11263)] = 204050, + [SMALL_STATE(11264)] = 204069, + [SMALL_STATE(11265)] = 204088, + [SMALL_STATE(11266)] = 204107, + [SMALL_STATE(11267)] = 204126, + [SMALL_STATE(11268)] = 204145, + [SMALL_STATE(11269)] = 204164, + [SMALL_STATE(11270)] = 204183, + [SMALL_STATE(11271)] = 204202, + [SMALL_STATE(11272)] = 204221, + [SMALL_STATE(11273)] = 204240, + [SMALL_STATE(11274)] = 204259, + [SMALL_STATE(11275)] = 204278, + [SMALL_STATE(11276)] = 204297, + [SMALL_STATE(11277)] = 204316, + [SMALL_STATE(11278)] = 204335, + [SMALL_STATE(11279)] = 204354, + [SMALL_STATE(11280)] = 204373, + [SMALL_STATE(11281)] = 204392, + [SMALL_STATE(11282)] = 204411, + [SMALL_STATE(11283)] = 204430, + [SMALL_STATE(11284)] = 204449, + [SMALL_STATE(11285)] = 204468, + [SMALL_STATE(11286)] = 204487, + [SMALL_STATE(11287)] = 204506, + [SMALL_STATE(11288)] = 204525, + [SMALL_STATE(11289)] = 204544, + [SMALL_STATE(11290)] = 204563, + [SMALL_STATE(11291)] = 204582, + [SMALL_STATE(11292)] = 204601, + [SMALL_STATE(11293)] = 204620, + [SMALL_STATE(11294)] = 204639, + [SMALL_STATE(11295)] = 204658, + [SMALL_STATE(11296)] = 204677, + [SMALL_STATE(11297)] = 204696, + [SMALL_STATE(11298)] = 204715, + [SMALL_STATE(11299)] = 204734, + [SMALL_STATE(11300)] = 204753, + [SMALL_STATE(11301)] = 204772, + [SMALL_STATE(11302)] = 204791, + [SMALL_STATE(11303)] = 204810, + [SMALL_STATE(11304)] = 204829, + [SMALL_STATE(11305)] = 204848, + [SMALL_STATE(11306)] = 204867, + [SMALL_STATE(11307)] = 204886, + [SMALL_STATE(11308)] = 204905, + [SMALL_STATE(11309)] = 204924, + [SMALL_STATE(11310)] = 204943, + [SMALL_STATE(11311)] = 204962, + [SMALL_STATE(11312)] = 204981, + [SMALL_STATE(11313)] = 205000, + [SMALL_STATE(11314)] = 205019, + [SMALL_STATE(11315)] = 205038, + [SMALL_STATE(11316)] = 205057, + [SMALL_STATE(11317)] = 205076, + [SMALL_STATE(11318)] = 205095, + [SMALL_STATE(11319)] = 205114, + [SMALL_STATE(11320)] = 205133, + [SMALL_STATE(11321)] = 205152, + [SMALL_STATE(11322)] = 205171, + [SMALL_STATE(11323)] = 205190, + [SMALL_STATE(11324)] = 205209, + [SMALL_STATE(11325)] = 205228, + [SMALL_STATE(11326)] = 205247, + [SMALL_STATE(11327)] = 205266, + [SMALL_STATE(11328)] = 205285, + [SMALL_STATE(11329)] = 205304, + [SMALL_STATE(11330)] = 205323, + [SMALL_STATE(11331)] = 205342, + [SMALL_STATE(11332)] = 205361, + [SMALL_STATE(11333)] = 205380, + [SMALL_STATE(11334)] = 205399, + [SMALL_STATE(11335)] = 205418, + [SMALL_STATE(11336)] = 205437, + [SMALL_STATE(11337)] = 205456, + [SMALL_STATE(11338)] = 205475, + [SMALL_STATE(11339)] = 205494, + [SMALL_STATE(11340)] = 205513, + [SMALL_STATE(11341)] = 205532, + [SMALL_STATE(11342)] = 205551, + [SMALL_STATE(11343)] = 205570, + [SMALL_STATE(11344)] = 205589, + [SMALL_STATE(11345)] = 205608, + [SMALL_STATE(11346)] = 205627, + [SMALL_STATE(11347)] = 205646, + [SMALL_STATE(11348)] = 205665, + [SMALL_STATE(11349)] = 205684, + [SMALL_STATE(11350)] = 205703, + [SMALL_STATE(11351)] = 205722, + [SMALL_STATE(11352)] = 205741, + [SMALL_STATE(11353)] = 205760, + [SMALL_STATE(11354)] = 205779, + [SMALL_STATE(11355)] = 205798, + [SMALL_STATE(11356)] = 205817, + [SMALL_STATE(11357)] = 205836, + [SMALL_STATE(11358)] = 205855, + [SMALL_STATE(11359)] = 205874, + [SMALL_STATE(11360)] = 205893, + [SMALL_STATE(11361)] = 205912, + [SMALL_STATE(11362)] = 205931, + [SMALL_STATE(11363)] = 205950, + [SMALL_STATE(11364)] = 205969, + [SMALL_STATE(11365)] = 205988, + [SMALL_STATE(11366)] = 206007, + [SMALL_STATE(11367)] = 206026, + [SMALL_STATE(11368)] = 206045, + [SMALL_STATE(11369)] = 206064, + [SMALL_STATE(11370)] = 206083, + [SMALL_STATE(11371)] = 206102, + [SMALL_STATE(11372)] = 206121, + [SMALL_STATE(11373)] = 206140, + [SMALL_STATE(11374)] = 206159, + [SMALL_STATE(11375)] = 206178, + [SMALL_STATE(11376)] = 206197, + [SMALL_STATE(11377)] = 206216, + [SMALL_STATE(11378)] = 206235, + [SMALL_STATE(11379)] = 206254, + [SMALL_STATE(11380)] = 206273, + [SMALL_STATE(11381)] = 206292, + [SMALL_STATE(11382)] = 206311, + [SMALL_STATE(11383)] = 206330, + [SMALL_STATE(11384)] = 206349, + [SMALL_STATE(11385)] = 206368, + [SMALL_STATE(11386)] = 206387, + [SMALL_STATE(11387)] = 206406, + [SMALL_STATE(11388)] = 206425, + [SMALL_STATE(11389)] = 206444, + [SMALL_STATE(11390)] = 206463, + [SMALL_STATE(11391)] = 206482, + [SMALL_STATE(11392)] = 206501, + [SMALL_STATE(11393)] = 206520, + [SMALL_STATE(11394)] = 206539, + [SMALL_STATE(11395)] = 206558, + [SMALL_STATE(11396)] = 206577, + [SMALL_STATE(11397)] = 206596, + [SMALL_STATE(11398)] = 206615, + [SMALL_STATE(11399)] = 206634, + [SMALL_STATE(11400)] = 206653, + [SMALL_STATE(11401)] = 206672, + [SMALL_STATE(11402)] = 206691, + [SMALL_STATE(11403)] = 206710, + [SMALL_STATE(11404)] = 206729, + [SMALL_STATE(11405)] = 206746, + [SMALL_STATE(11406)] = 206765, + [SMALL_STATE(11407)] = 206784, + [SMALL_STATE(11408)] = 206803, + [SMALL_STATE(11409)] = 206822, + [SMALL_STATE(11410)] = 206841, + [SMALL_STATE(11411)] = 206860, + [SMALL_STATE(11412)] = 206879, + [SMALL_STATE(11413)] = 206898, + [SMALL_STATE(11414)] = 206917, + [SMALL_STATE(11415)] = 206936, + [SMALL_STATE(11416)] = 206955, + [SMALL_STATE(11417)] = 206974, + [SMALL_STATE(11418)] = 206993, + [SMALL_STATE(11419)] = 207012, + [SMALL_STATE(11420)] = 207031, + [SMALL_STATE(11421)] = 207050, + [SMALL_STATE(11422)] = 207069, + [SMALL_STATE(11423)] = 207088, + [SMALL_STATE(11424)] = 207107, + [SMALL_STATE(11425)] = 207126, + [SMALL_STATE(11426)] = 207145, + [SMALL_STATE(11427)] = 207164, + [SMALL_STATE(11428)] = 207183, + [SMALL_STATE(11429)] = 207202, + [SMALL_STATE(11430)] = 207221, + [SMALL_STATE(11431)] = 207240, + [SMALL_STATE(11432)] = 207259, + [SMALL_STATE(11433)] = 207278, + [SMALL_STATE(11434)] = 207297, + [SMALL_STATE(11435)] = 207316, + [SMALL_STATE(11436)] = 207335, + [SMALL_STATE(11437)] = 207354, + [SMALL_STATE(11438)] = 207373, + [SMALL_STATE(11439)] = 207392, + [SMALL_STATE(11440)] = 207411, + [SMALL_STATE(11441)] = 207430, + [SMALL_STATE(11442)] = 207449, + [SMALL_STATE(11443)] = 207468, + [SMALL_STATE(11444)] = 207487, + [SMALL_STATE(11445)] = 207506, + [SMALL_STATE(11446)] = 207525, + [SMALL_STATE(11447)] = 207544, + [SMALL_STATE(11448)] = 207563, + [SMALL_STATE(11449)] = 207582, + [SMALL_STATE(11450)] = 207601, + [SMALL_STATE(11451)] = 207620, + [SMALL_STATE(11452)] = 207639, + [SMALL_STATE(11453)] = 207658, + [SMALL_STATE(11454)] = 207677, + [SMALL_STATE(11455)] = 207696, + [SMALL_STATE(11456)] = 207715, + [SMALL_STATE(11457)] = 207734, + [SMALL_STATE(11458)] = 207753, + [SMALL_STATE(11459)] = 207772, + [SMALL_STATE(11460)] = 207791, + [SMALL_STATE(11461)] = 207810, + [SMALL_STATE(11462)] = 207829, + [SMALL_STATE(11463)] = 207848, + [SMALL_STATE(11464)] = 207867, + [SMALL_STATE(11465)] = 207886, + [SMALL_STATE(11466)] = 207905, + [SMALL_STATE(11467)] = 207924, + [SMALL_STATE(11468)] = 207943, + [SMALL_STATE(11469)] = 207962, + [SMALL_STATE(11470)] = 207981, + [SMALL_STATE(11471)] = 208000, + [SMALL_STATE(11472)] = 208019, + [SMALL_STATE(11473)] = 208038, + [SMALL_STATE(11474)] = 208057, + [SMALL_STATE(11475)] = 208076, + [SMALL_STATE(11476)] = 208095, + [SMALL_STATE(11477)] = 208114, + [SMALL_STATE(11478)] = 208133, + [SMALL_STATE(11479)] = 208152, + [SMALL_STATE(11480)] = 208171, + [SMALL_STATE(11481)] = 208190, + [SMALL_STATE(11482)] = 208209, + [SMALL_STATE(11483)] = 208228, + [SMALL_STATE(11484)] = 208247, + [SMALL_STATE(11485)] = 208266, + [SMALL_STATE(11486)] = 208285, + [SMALL_STATE(11487)] = 208304, + [SMALL_STATE(11488)] = 208323, + [SMALL_STATE(11489)] = 208342, + [SMALL_STATE(11490)] = 208361, + [SMALL_STATE(11491)] = 208380, + [SMALL_STATE(11492)] = 208399, + [SMALL_STATE(11493)] = 208418, + [SMALL_STATE(11494)] = 208437, + [SMALL_STATE(11495)] = 208456, + [SMALL_STATE(11496)] = 208475, + [SMALL_STATE(11497)] = 208494, + [SMALL_STATE(11498)] = 208513, + [SMALL_STATE(11499)] = 208532, + [SMALL_STATE(11500)] = 208551, + [SMALL_STATE(11501)] = 208570, + [SMALL_STATE(11502)] = 208589, + [SMALL_STATE(11503)] = 208608, + [SMALL_STATE(11504)] = 208627, + [SMALL_STATE(11505)] = 208646, + [SMALL_STATE(11506)] = 208665, + [SMALL_STATE(11507)] = 208684, + [SMALL_STATE(11508)] = 208703, + [SMALL_STATE(11509)] = 208722, + [SMALL_STATE(11510)] = 208741, + [SMALL_STATE(11511)] = 208760, + [SMALL_STATE(11512)] = 208779, + [SMALL_STATE(11513)] = 208798, + [SMALL_STATE(11514)] = 208817, + [SMALL_STATE(11515)] = 208836, + [SMALL_STATE(11516)] = 208855, + [SMALL_STATE(11517)] = 208874, + [SMALL_STATE(11518)] = 208893, + [SMALL_STATE(11519)] = 208912, + [SMALL_STATE(11520)] = 208931, + [SMALL_STATE(11521)] = 208950, + [SMALL_STATE(11522)] = 208969, + [SMALL_STATE(11523)] = 208988, + [SMALL_STATE(11524)] = 209007, + [SMALL_STATE(11525)] = 209026, + [SMALL_STATE(11526)] = 209045, + [SMALL_STATE(11527)] = 209064, + [SMALL_STATE(11528)] = 209083, + [SMALL_STATE(11529)] = 209102, + [SMALL_STATE(11530)] = 209121, + [SMALL_STATE(11531)] = 209140, + [SMALL_STATE(11532)] = 209159, + [SMALL_STATE(11533)] = 209178, + [SMALL_STATE(11534)] = 209197, + [SMALL_STATE(11535)] = 209216, + [SMALL_STATE(11536)] = 209235, + [SMALL_STATE(11537)] = 209254, + [SMALL_STATE(11538)] = 209273, + [SMALL_STATE(11539)] = 209292, + [SMALL_STATE(11540)] = 209311, + [SMALL_STATE(11541)] = 209330, + [SMALL_STATE(11542)] = 209349, + [SMALL_STATE(11543)] = 209368, + [SMALL_STATE(11544)] = 209387, + [SMALL_STATE(11545)] = 209406, + [SMALL_STATE(11546)] = 209425, + [SMALL_STATE(11547)] = 209444, + [SMALL_STATE(11548)] = 209463, + [SMALL_STATE(11549)] = 209482, + [SMALL_STATE(11550)] = 209501, + [SMALL_STATE(11551)] = 209520, + [SMALL_STATE(11552)] = 209539, + [SMALL_STATE(11553)] = 209558, + [SMALL_STATE(11554)] = 209577, + [SMALL_STATE(11555)] = 209596, + [SMALL_STATE(11556)] = 209615, + [SMALL_STATE(11557)] = 209634, + [SMALL_STATE(11558)] = 209653, + [SMALL_STATE(11559)] = 209672, + [SMALL_STATE(11560)] = 209691, + [SMALL_STATE(11561)] = 209710, + [SMALL_STATE(11562)] = 209729, + [SMALL_STATE(11563)] = 209748, + [SMALL_STATE(11564)] = 209767, + [SMALL_STATE(11565)] = 209786, + [SMALL_STATE(11566)] = 209805, + [SMALL_STATE(11567)] = 209824, + [SMALL_STATE(11568)] = 209843, + [SMALL_STATE(11569)] = 209862, + [SMALL_STATE(11570)] = 209881, + [SMALL_STATE(11571)] = 209900, + [SMALL_STATE(11572)] = 209919, + [SMALL_STATE(11573)] = 209938, + [SMALL_STATE(11574)] = 209957, + [SMALL_STATE(11575)] = 209976, + [SMALL_STATE(11576)] = 209995, + [SMALL_STATE(11577)] = 210014, + [SMALL_STATE(11578)] = 210033, + [SMALL_STATE(11579)] = 210052, + [SMALL_STATE(11580)] = 210071, + [SMALL_STATE(11581)] = 210090, + [SMALL_STATE(11582)] = 210109, + [SMALL_STATE(11583)] = 210128, + [SMALL_STATE(11584)] = 210147, + [SMALL_STATE(11585)] = 210166, + [SMALL_STATE(11586)] = 210185, + [SMALL_STATE(11587)] = 210204, + [SMALL_STATE(11588)] = 210223, + [SMALL_STATE(11589)] = 210242, + [SMALL_STATE(11590)] = 210261, + [SMALL_STATE(11591)] = 210280, + [SMALL_STATE(11592)] = 210299, + [SMALL_STATE(11593)] = 210318, + [SMALL_STATE(11594)] = 210337, + [SMALL_STATE(11595)] = 210356, + [SMALL_STATE(11596)] = 210375, + [SMALL_STATE(11597)] = 210394, + [SMALL_STATE(11598)] = 210413, + [SMALL_STATE(11599)] = 210432, + [SMALL_STATE(11600)] = 210451, + [SMALL_STATE(11601)] = 210470, + [SMALL_STATE(11602)] = 210489, + [SMALL_STATE(11603)] = 210508, + [SMALL_STATE(11604)] = 210527, + [SMALL_STATE(11605)] = 210546, + [SMALL_STATE(11606)] = 210565, + [SMALL_STATE(11607)] = 210584, + [SMALL_STATE(11608)] = 210603, + [SMALL_STATE(11609)] = 210622, + [SMALL_STATE(11610)] = 210641, + [SMALL_STATE(11611)] = 210660, + [SMALL_STATE(11612)] = 210679, + [SMALL_STATE(11613)] = 210698, + [SMALL_STATE(11614)] = 210717, + [SMALL_STATE(11615)] = 210736, + [SMALL_STATE(11616)] = 210755, + [SMALL_STATE(11617)] = 210774, + [SMALL_STATE(11618)] = 210793, + [SMALL_STATE(11619)] = 210812, + [SMALL_STATE(11620)] = 210831, + [SMALL_STATE(11621)] = 210850, + [SMALL_STATE(11622)] = 210869, + [SMALL_STATE(11623)] = 210888, + [SMALL_STATE(11624)] = 210907, + [SMALL_STATE(11625)] = 210926, + [SMALL_STATE(11626)] = 210945, + [SMALL_STATE(11627)] = 210964, + [SMALL_STATE(11628)] = 210983, + [SMALL_STATE(11629)] = 211002, + [SMALL_STATE(11630)] = 211021, + [SMALL_STATE(11631)] = 211040, + [SMALL_STATE(11632)] = 211059, + [SMALL_STATE(11633)] = 211078, + [SMALL_STATE(11634)] = 211097, + [SMALL_STATE(11635)] = 211116, + [SMALL_STATE(11636)] = 211135, + [SMALL_STATE(11637)] = 211154, + [SMALL_STATE(11638)] = 211173, + [SMALL_STATE(11639)] = 211192, + [SMALL_STATE(11640)] = 211211, + [SMALL_STATE(11641)] = 211230, + [SMALL_STATE(11642)] = 211249, + [SMALL_STATE(11643)] = 211268, + [SMALL_STATE(11644)] = 211287, + [SMALL_STATE(11645)] = 211306, + [SMALL_STATE(11646)] = 211325, + [SMALL_STATE(11647)] = 211344, + [SMALL_STATE(11648)] = 211363, + [SMALL_STATE(11649)] = 211382, + [SMALL_STATE(11650)] = 211401, + [SMALL_STATE(11651)] = 211420, + [SMALL_STATE(11652)] = 211439, + [SMALL_STATE(11653)] = 211458, + [SMALL_STATE(11654)] = 211477, + [SMALL_STATE(11655)] = 211496, + [SMALL_STATE(11656)] = 211515, + [SMALL_STATE(11657)] = 211534, + [SMALL_STATE(11658)] = 211553, + [SMALL_STATE(11659)] = 211572, + [SMALL_STATE(11660)] = 211591, + [SMALL_STATE(11661)] = 211610, + [SMALL_STATE(11662)] = 211629, + [SMALL_STATE(11663)] = 211648, + [SMALL_STATE(11664)] = 211667, + [SMALL_STATE(11665)] = 211686, + [SMALL_STATE(11666)] = 211705, + [SMALL_STATE(11667)] = 211724, + [SMALL_STATE(11668)] = 211743, + [SMALL_STATE(11669)] = 211762, + [SMALL_STATE(11670)] = 211781, + [SMALL_STATE(11671)] = 211800, + [SMALL_STATE(11672)] = 211819, + [SMALL_STATE(11673)] = 211838, + [SMALL_STATE(11674)] = 211857, + [SMALL_STATE(11675)] = 211876, + [SMALL_STATE(11676)] = 211895, + [SMALL_STATE(11677)] = 211914, + [SMALL_STATE(11678)] = 211933, + [SMALL_STATE(11679)] = 211952, + [SMALL_STATE(11680)] = 211971, + [SMALL_STATE(11681)] = 211990, + [SMALL_STATE(11682)] = 212009, + [SMALL_STATE(11683)] = 212028, + [SMALL_STATE(11684)] = 212047, + [SMALL_STATE(11685)] = 212066, + [SMALL_STATE(11686)] = 212085, + [SMALL_STATE(11687)] = 212104, + [SMALL_STATE(11688)] = 212123, + [SMALL_STATE(11689)] = 212142, + [SMALL_STATE(11690)] = 212161, + [SMALL_STATE(11691)] = 212180, + [SMALL_STATE(11692)] = 212199, + [SMALL_STATE(11693)] = 212218, + [SMALL_STATE(11694)] = 212237, + [SMALL_STATE(11695)] = 212256, + [SMALL_STATE(11696)] = 212275, + [SMALL_STATE(11697)] = 212294, + [SMALL_STATE(11698)] = 212313, + [SMALL_STATE(11699)] = 212332, + [SMALL_STATE(11700)] = 212351, + [SMALL_STATE(11701)] = 212370, + [SMALL_STATE(11702)] = 212389, + [SMALL_STATE(11703)] = 212408, + [SMALL_STATE(11704)] = 212427, + [SMALL_STATE(11705)] = 212446, + [SMALL_STATE(11706)] = 212465, + [SMALL_STATE(11707)] = 212484, + [SMALL_STATE(11708)] = 212503, + [SMALL_STATE(11709)] = 212522, + [SMALL_STATE(11710)] = 212541, + [SMALL_STATE(11711)] = 212560, + [SMALL_STATE(11712)] = 212579, + [SMALL_STATE(11713)] = 212598, + [SMALL_STATE(11714)] = 212617, + [SMALL_STATE(11715)] = 212636, + [SMALL_STATE(11716)] = 212655, + [SMALL_STATE(11717)] = 212674, + [SMALL_STATE(11718)] = 212693, + [SMALL_STATE(11719)] = 212712, + [SMALL_STATE(11720)] = 212731, + [SMALL_STATE(11721)] = 212750, + [SMALL_STATE(11722)] = 212769, + [SMALL_STATE(11723)] = 212788, + [SMALL_STATE(11724)] = 212807, + [SMALL_STATE(11725)] = 212826, + [SMALL_STATE(11726)] = 212845, + [SMALL_STATE(11727)] = 212864, + [SMALL_STATE(11728)] = 212883, + [SMALL_STATE(11729)] = 212902, + [SMALL_STATE(11730)] = 212921, + [SMALL_STATE(11731)] = 212940, + [SMALL_STATE(11732)] = 212959, + [SMALL_STATE(11733)] = 212978, + [SMALL_STATE(11734)] = 212997, + [SMALL_STATE(11735)] = 213016, + [SMALL_STATE(11736)] = 213035, + [SMALL_STATE(11737)] = 213054, + [SMALL_STATE(11738)] = 213073, + [SMALL_STATE(11739)] = 213092, + [SMALL_STATE(11740)] = 213111, + [SMALL_STATE(11741)] = 213130, + [SMALL_STATE(11742)] = 213149, + [SMALL_STATE(11743)] = 213168, + [SMALL_STATE(11744)] = 213187, + [SMALL_STATE(11745)] = 213206, + [SMALL_STATE(11746)] = 213225, + [SMALL_STATE(11747)] = 213244, + [SMALL_STATE(11748)] = 213263, + [SMALL_STATE(11749)] = 213282, + [SMALL_STATE(11750)] = 213301, + [SMALL_STATE(11751)] = 213320, + [SMALL_STATE(11752)] = 213339, + [SMALL_STATE(11753)] = 213358, + [SMALL_STATE(11754)] = 213377, + [SMALL_STATE(11755)] = 213396, + [SMALL_STATE(11756)] = 213415, + [SMALL_STATE(11757)] = 213434, + [SMALL_STATE(11758)] = 213453, + [SMALL_STATE(11759)] = 213472, + [SMALL_STATE(11760)] = 213491, + [SMALL_STATE(11761)] = 213510, + [SMALL_STATE(11762)] = 213529, + [SMALL_STATE(11763)] = 213548, + [SMALL_STATE(11764)] = 213567, + [SMALL_STATE(11765)] = 213586, + [SMALL_STATE(11766)] = 213605, + [SMALL_STATE(11767)] = 213624, + [SMALL_STATE(11768)] = 213643, + [SMALL_STATE(11769)] = 213662, + [SMALL_STATE(11770)] = 213681, + [SMALL_STATE(11771)] = 213700, + [SMALL_STATE(11772)] = 213719, + [SMALL_STATE(11773)] = 213738, + [SMALL_STATE(11774)] = 213757, + [SMALL_STATE(11775)] = 213776, + [SMALL_STATE(11776)] = 213795, + [SMALL_STATE(11777)] = 213814, + [SMALL_STATE(11778)] = 213833, + [SMALL_STATE(11779)] = 213852, + [SMALL_STATE(11780)] = 213871, + [SMALL_STATE(11781)] = 213890, + [SMALL_STATE(11782)] = 213909, + [SMALL_STATE(11783)] = 213928, + [SMALL_STATE(11784)] = 213947, + [SMALL_STATE(11785)] = 213966, + [SMALL_STATE(11786)] = 213985, + [SMALL_STATE(11787)] = 214004, + [SMALL_STATE(11788)] = 214023, + [SMALL_STATE(11789)] = 214042, + [SMALL_STATE(11790)] = 214061, + [SMALL_STATE(11791)] = 214080, + [SMALL_STATE(11792)] = 214099, + [SMALL_STATE(11793)] = 214118, + [SMALL_STATE(11794)] = 214137, + [SMALL_STATE(11795)] = 214156, + [SMALL_STATE(11796)] = 214175, + [SMALL_STATE(11797)] = 214194, + [SMALL_STATE(11798)] = 214213, + [SMALL_STATE(11799)] = 214232, + [SMALL_STATE(11800)] = 214251, + [SMALL_STATE(11801)] = 214270, + [SMALL_STATE(11802)] = 214289, + [SMALL_STATE(11803)] = 214308, + [SMALL_STATE(11804)] = 214321, + [SMALL_STATE(11805)] = 214340, + [SMALL_STATE(11806)] = 214359, + [SMALL_STATE(11807)] = 214378, + [SMALL_STATE(11808)] = 214397, + [SMALL_STATE(11809)] = 214416, + [SMALL_STATE(11810)] = 214435, + [SMALL_STATE(11811)] = 214454, + [SMALL_STATE(11812)] = 214473, + [SMALL_STATE(11813)] = 214492, + [SMALL_STATE(11814)] = 214511, + [SMALL_STATE(11815)] = 214530, + [SMALL_STATE(11816)] = 214549, + [SMALL_STATE(11817)] = 214568, + [SMALL_STATE(11818)] = 214587, + [SMALL_STATE(11819)] = 214606, + [SMALL_STATE(11820)] = 214625, + [SMALL_STATE(11821)] = 214644, + [SMALL_STATE(11822)] = 214663, + [SMALL_STATE(11823)] = 214682, + [SMALL_STATE(11824)] = 214701, + [SMALL_STATE(11825)] = 214720, + [SMALL_STATE(11826)] = 214739, + [SMALL_STATE(11827)] = 214758, + [SMALL_STATE(11828)] = 214777, + [SMALL_STATE(11829)] = 214796, + [SMALL_STATE(11830)] = 214815, + [SMALL_STATE(11831)] = 214834, + [SMALL_STATE(11832)] = 214853, + [SMALL_STATE(11833)] = 214872, + [SMALL_STATE(11834)] = 214891, + [SMALL_STATE(11835)] = 214910, + [SMALL_STATE(11836)] = 214929, + [SMALL_STATE(11837)] = 214948, + [SMALL_STATE(11838)] = 214967, + [SMALL_STATE(11839)] = 214986, + [SMALL_STATE(11840)] = 215005, + [SMALL_STATE(11841)] = 215024, + [SMALL_STATE(11842)] = 215043, + [SMALL_STATE(11843)] = 215062, + [SMALL_STATE(11844)] = 215081, + [SMALL_STATE(11845)] = 215100, + [SMALL_STATE(11846)] = 215119, + [SMALL_STATE(11847)] = 215138, + [SMALL_STATE(11848)] = 215157, + [SMALL_STATE(11849)] = 215176, + [SMALL_STATE(11850)] = 215195, + [SMALL_STATE(11851)] = 215214, + [SMALL_STATE(11852)] = 215233, + [SMALL_STATE(11853)] = 215252, + [SMALL_STATE(11854)] = 215271, + [SMALL_STATE(11855)] = 215290, + [SMALL_STATE(11856)] = 215309, + [SMALL_STATE(11857)] = 215328, + [SMALL_STATE(11858)] = 215347, + [SMALL_STATE(11859)] = 215366, + [SMALL_STATE(11860)] = 215385, + [SMALL_STATE(11861)] = 215404, + [SMALL_STATE(11862)] = 215423, + [SMALL_STATE(11863)] = 215442, + [SMALL_STATE(11864)] = 215461, + [SMALL_STATE(11865)] = 215480, + [SMALL_STATE(11866)] = 215499, + [SMALL_STATE(11867)] = 215518, + [SMALL_STATE(11868)] = 215537, + [SMALL_STATE(11869)] = 215556, + [SMALL_STATE(11870)] = 215575, + [SMALL_STATE(11871)] = 215594, + [SMALL_STATE(11872)] = 215613, + [SMALL_STATE(11873)] = 215632, + [SMALL_STATE(11874)] = 215651, + [SMALL_STATE(11875)] = 215670, + [SMALL_STATE(11876)] = 215689, + [SMALL_STATE(11877)] = 215708, + [SMALL_STATE(11878)] = 215727, + [SMALL_STATE(11879)] = 215746, + [SMALL_STATE(11880)] = 215765, + [SMALL_STATE(11881)] = 215784, + [SMALL_STATE(11882)] = 215803, + [SMALL_STATE(11883)] = 215822, + [SMALL_STATE(11884)] = 215841, + [SMALL_STATE(11885)] = 215860, + [SMALL_STATE(11886)] = 215879, + [SMALL_STATE(11887)] = 215898, + [SMALL_STATE(11888)] = 215917, + [SMALL_STATE(11889)] = 215936, + [SMALL_STATE(11890)] = 215955, + [SMALL_STATE(11891)] = 215974, + [SMALL_STATE(11892)] = 215993, + [SMALL_STATE(11893)] = 216012, + [SMALL_STATE(11894)] = 216031, + [SMALL_STATE(11895)] = 216050, + [SMALL_STATE(11896)] = 216069, + [SMALL_STATE(11897)] = 216088, + [SMALL_STATE(11898)] = 216107, + [SMALL_STATE(11899)] = 216126, + [SMALL_STATE(11900)] = 216145, + [SMALL_STATE(11901)] = 216164, + [SMALL_STATE(11902)] = 216183, + [SMALL_STATE(11903)] = 216202, + [SMALL_STATE(11904)] = 216221, + [SMALL_STATE(11905)] = 216240, + [SMALL_STATE(11906)] = 216259, + [SMALL_STATE(11907)] = 216278, + [SMALL_STATE(11908)] = 216297, + [SMALL_STATE(11909)] = 216316, + [SMALL_STATE(11910)] = 216335, + [SMALL_STATE(11911)] = 216354, + [SMALL_STATE(11912)] = 216373, + [SMALL_STATE(11913)] = 216392, + [SMALL_STATE(11914)] = 216411, + [SMALL_STATE(11915)] = 216430, + [SMALL_STATE(11916)] = 216449, + [SMALL_STATE(11917)] = 216468, + [SMALL_STATE(11918)] = 216487, + [SMALL_STATE(11919)] = 216506, + [SMALL_STATE(11920)] = 216525, + [SMALL_STATE(11921)] = 216544, + [SMALL_STATE(11922)] = 216563, + [SMALL_STATE(11923)] = 216582, + [SMALL_STATE(11924)] = 216601, + [SMALL_STATE(11925)] = 216620, + [SMALL_STATE(11926)] = 216639, + [SMALL_STATE(11927)] = 216658, + [SMALL_STATE(11928)] = 216677, + [SMALL_STATE(11929)] = 216696, + [SMALL_STATE(11930)] = 216715, + [SMALL_STATE(11931)] = 216734, + [SMALL_STATE(11932)] = 216753, + [SMALL_STATE(11933)] = 216772, + [SMALL_STATE(11934)] = 216791, + [SMALL_STATE(11935)] = 216810, + [SMALL_STATE(11936)] = 216829, + [SMALL_STATE(11937)] = 216848, + [SMALL_STATE(11938)] = 216867, + [SMALL_STATE(11939)] = 216886, + [SMALL_STATE(11940)] = 216905, + [SMALL_STATE(11941)] = 216924, + [SMALL_STATE(11942)] = 216943, + [SMALL_STATE(11943)] = 216962, + [SMALL_STATE(11944)] = 216981, + [SMALL_STATE(11945)] = 217000, + [SMALL_STATE(11946)] = 217019, + [SMALL_STATE(11947)] = 217038, + [SMALL_STATE(11948)] = 217057, + [SMALL_STATE(11949)] = 217076, + [SMALL_STATE(11950)] = 217095, + [SMALL_STATE(11951)] = 217114, + [SMALL_STATE(11952)] = 217133, + [SMALL_STATE(11953)] = 217152, + [SMALL_STATE(11954)] = 217171, + [SMALL_STATE(11955)] = 217190, + [SMALL_STATE(11956)] = 217209, + [SMALL_STATE(11957)] = 217228, + [SMALL_STATE(11958)] = 217247, + [SMALL_STATE(11959)] = 217266, + [SMALL_STATE(11960)] = 217285, + [SMALL_STATE(11961)] = 217304, + [SMALL_STATE(11962)] = 217323, + [SMALL_STATE(11963)] = 217342, + [SMALL_STATE(11964)] = 217361, + [SMALL_STATE(11965)] = 217380, + [SMALL_STATE(11966)] = 217396, + [SMALL_STATE(11967)] = 217412, + [SMALL_STATE(11968)] = 217428, + [SMALL_STATE(11969)] = 217444, + [SMALL_STATE(11970)] = 217460, + [SMALL_STATE(11971)] = 217476, + [SMALL_STATE(11972)] = 217492, + [SMALL_STATE(11973)] = 217508, + [SMALL_STATE(11974)] = 217524, + [SMALL_STATE(11975)] = 217540, + [SMALL_STATE(11976)] = 217556, + [SMALL_STATE(11977)] = 217572, + [SMALL_STATE(11978)] = 217588, + [SMALL_STATE(11979)] = 217604, + [SMALL_STATE(11980)] = 217620, + [SMALL_STATE(11981)] = 217636, + [SMALL_STATE(11982)] = 217652, + [SMALL_STATE(11983)] = 217668, + [SMALL_STATE(11984)] = 217684, + [SMALL_STATE(11985)] = 217700, + [SMALL_STATE(11986)] = 217716, + [SMALL_STATE(11987)] = 217732, + [SMALL_STATE(11988)] = 217748, + [SMALL_STATE(11989)] = 217764, + [SMALL_STATE(11990)] = 217780, + [SMALL_STATE(11991)] = 217796, + [SMALL_STATE(11992)] = 217812, + [SMALL_STATE(11993)] = 217828, + [SMALL_STATE(11994)] = 217844, + [SMALL_STATE(11995)] = 217860, + [SMALL_STATE(11996)] = 217876, + [SMALL_STATE(11997)] = 217892, + [SMALL_STATE(11998)] = 217908, + [SMALL_STATE(11999)] = 217924, + [SMALL_STATE(12000)] = 217940, + [SMALL_STATE(12001)] = 217956, + [SMALL_STATE(12002)] = 217972, + [SMALL_STATE(12003)] = 217988, + [SMALL_STATE(12004)] = 218004, + [SMALL_STATE(12005)] = 218020, + [SMALL_STATE(12006)] = 218036, + [SMALL_STATE(12007)] = 218052, + [SMALL_STATE(12008)] = 218068, + [SMALL_STATE(12009)] = 218084, + [SMALL_STATE(12010)] = 218100, + [SMALL_STATE(12011)] = 218116, + [SMALL_STATE(12012)] = 218132, + [SMALL_STATE(12013)] = 218148, + [SMALL_STATE(12014)] = 218164, + [SMALL_STATE(12015)] = 218180, + [SMALL_STATE(12016)] = 218196, + [SMALL_STATE(12017)] = 218212, + [SMALL_STATE(12018)] = 218228, + [SMALL_STATE(12019)] = 218244, + [SMALL_STATE(12020)] = 218260, + [SMALL_STATE(12021)] = 218276, + [SMALL_STATE(12022)] = 218292, + [SMALL_STATE(12023)] = 218308, + [SMALL_STATE(12024)] = 218324, + [SMALL_STATE(12025)] = 218340, + [SMALL_STATE(12026)] = 218356, + [SMALL_STATE(12027)] = 218372, + [SMALL_STATE(12028)] = 218388, + [SMALL_STATE(12029)] = 218404, + [SMALL_STATE(12030)] = 218420, + [SMALL_STATE(12031)] = 218436, + [SMALL_STATE(12032)] = 218452, + [SMALL_STATE(12033)] = 218468, + [SMALL_STATE(12034)] = 218484, + [SMALL_STATE(12035)] = 218500, + [SMALL_STATE(12036)] = 218516, + [SMALL_STATE(12037)] = 218532, + [SMALL_STATE(12038)] = 218548, + [SMALL_STATE(12039)] = 218564, + [SMALL_STATE(12040)] = 218580, + [SMALL_STATE(12041)] = 218596, + [SMALL_STATE(12042)] = 218612, + [SMALL_STATE(12043)] = 218628, + [SMALL_STATE(12044)] = 218644, + [SMALL_STATE(12045)] = 218660, + [SMALL_STATE(12046)] = 218676, + [SMALL_STATE(12047)] = 218692, + [SMALL_STATE(12048)] = 218708, + [SMALL_STATE(12049)] = 218724, + [SMALL_STATE(12050)] = 218740, + [SMALL_STATE(12051)] = 218756, + [SMALL_STATE(12052)] = 218772, + [SMALL_STATE(12053)] = 218788, + [SMALL_STATE(12054)] = 218804, + [SMALL_STATE(12055)] = 218820, + [SMALL_STATE(12056)] = 218836, + [SMALL_STATE(12057)] = 218852, + [SMALL_STATE(12058)] = 218868, + [SMALL_STATE(12059)] = 218884, + [SMALL_STATE(12060)] = 218900, + [SMALL_STATE(12061)] = 218916, + [SMALL_STATE(12062)] = 218932, + [SMALL_STATE(12063)] = 218948, + [SMALL_STATE(12064)] = 218964, + [SMALL_STATE(12065)] = 218980, + [SMALL_STATE(12066)] = 218996, + [SMALL_STATE(12067)] = 219012, + [SMALL_STATE(12068)] = 219028, + [SMALL_STATE(12069)] = 219044, + [SMALL_STATE(12070)] = 219060, + [SMALL_STATE(12071)] = 219076, + [SMALL_STATE(12072)] = 219092, + [SMALL_STATE(12073)] = 219108, + [SMALL_STATE(12074)] = 219124, + [SMALL_STATE(12075)] = 219140, + [SMALL_STATE(12076)] = 219156, + [SMALL_STATE(12077)] = 219172, + [SMALL_STATE(12078)] = 219188, + [SMALL_STATE(12079)] = 219204, + [SMALL_STATE(12080)] = 219220, + [SMALL_STATE(12081)] = 219236, + [SMALL_STATE(12082)] = 219252, + [SMALL_STATE(12083)] = 219268, + [SMALL_STATE(12084)] = 219284, + [SMALL_STATE(12085)] = 219300, + [SMALL_STATE(12086)] = 219316, + [SMALL_STATE(12087)] = 219332, + [SMALL_STATE(12088)] = 219348, + [SMALL_STATE(12089)] = 219364, + [SMALL_STATE(12090)] = 219380, + [SMALL_STATE(12091)] = 219396, + [SMALL_STATE(12092)] = 219412, + [SMALL_STATE(12093)] = 219428, + [SMALL_STATE(12094)] = 219444, + [SMALL_STATE(12095)] = 219460, + [SMALL_STATE(12096)] = 219476, + [SMALL_STATE(12097)] = 219492, + [SMALL_STATE(12098)] = 219508, + [SMALL_STATE(12099)] = 219524, + [SMALL_STATE(12100)] = 219540, + [SMALL_STATE(12101)] = 219556, + [SMALL_STATE(12102)] = 219572, + [SMALL_STATE(12103)] = 219588, + [SMALL_STATE(12104)] = 219604, + [SMALL_STATE(12105)] = 219620, + [SMALL_STATE(12106)] = 219636, + [SMALL_STATE(12107)] = 219652, + [SMALL_STATE(12108)] = 219668, + [SMALL_STATE(12109)] = 219684, + [SMALL_STATE(12110)] = 219700, + [SMALL_STATE(12111)] = 219716, + [SMALL_STATE(12112)] = 219732, + [SMALL_STATE(12113)] = 219748, + [SMALL_STATE(12114)] = 219764, + [SMALL_STATE(12115)] = 219780, + [SMALL_STATE(12116)] = 219796, + [SMALL_STATE(12117)] = 219812, + [SMALL_STATE(12118)] = 219828, + [SMALL_STATE(12119)] = 219844, + [SMALL_STATE(12120)] = 219858, + [SMALL_STATE(12121)] = 219874, + [SMALL_STATE(12122)] = 219890, + [SMALL_STATE(12123)] = 219906, + [SMALL_STATE(12124)] = 219922, + [SMALL_STATE(12125)] = 219938, + [SMALL_STATE(12126)] = 219954, + [SMALL_STATE(12127)] = 219970, + [SMALL_STATE(12128)] = 219986, + [SMALL_STATE(12129)] = 220002, + [SMALL_STATE(12130)] = 220018, + [SMALL_STATE(12131)] = 220034, + [SMALL_STATE(12132)] = 220050, + [SMALL_STATE(12133)] = 220066, + [SMALL_STATE(12134)] = 220082, + [SMALL_STATE(12135)] = 220098, + [SMALL_STATE(12136)] = 220114, + [SMALL_STATE(12137)] = 220130, + [SMALL_STATE(12138)] = 220146, + [SMALL_STATE(12139)] = 220162, + [SMALL_STATE(12140)] = 220178, + [SMALL_STATE(12141)] = 220194, + [SMALL_STATE(12142)] = 220210, + [SMALL_STATE(12143)] = 220226, + [SMALL_STATE(12144)] = 220242, + [SMALL_STATE(12145)] = 220258, + [SMALL_STATE(12146)] = 220274, + [SMALL_STATE(12147)] = 220290, + [SMALL_STATE(12148)] = 220306, + [SMALL_STATE(12149)] = 220322, + [SMALL_STATE(12150)] = 220338, + [SMALL_STATE(12151)] = 220354, + [SMALL_STATE(12152)] = 220370, + [SMALL_STATE(12153)] = 220386, + [SMALL_STATE(12154)] = 220402, + [SMALL_STATE(12155)] = 220418, + [SMALL_STATE(12156)] = 220434, + [SMALL_STATE(12157)] = 220450, + [SMALL_STATE(12158)] = 220466, + [SMALL_STATE(12159)] = 220482, + [SMALL_STATE(12160)] = 220498, + [SMALL_STATE(12161)] = 220514, + [SMALL_STATE(12162)] = 220530, + [SMALL_STATE(12163)] = 220546, + [SMALL_STATE(12164)] = 220562, + [SMALL_STATE(12165)] = 220578, + [SMALL_STATE(12166)] = 220594, + [SMALL_STATE(12167)] = 220610, + [SMALL_STATE(12168)] = 220626, + [SMALL_STATE(12169)] = 220640, + [SMALL_STATE(12170)] = 220656, + [SMALL_STATE(12171)] = 220672, + [SMALL_STATE(12172)] = 220688, + [SMALL_STATE(12173)] = 220704, + [SMALL_STATE(12174)] = 220720, + [SMALL_STATE(12175)] = 220736, + [SMALL_STATE(12176)] = 220752, + [SMALL_STATE(12177)] = 220768, + [SMALL_STATE(12178)] = 220784, + [SMALL_STATE(12179)] = 220800, + [SMALL_STATE(12180)] = 220816, + [SMALL_STATE(12181)] = 220832, + [SMALL_STATE(12182)] = 220848, + [SMALL_STATE(12183)] = 220864, + [SMALL_STATE(12184)] = 220880, + [SMALL_STATE(12185)] = 220896, + [SMALL_STATE(12186)] = 220912, + [SMALL_STATE(12187)] = 220928, + [SMALL_STATE(12188)] = 220944, + [SMALL_STATE(12189)] = 220960, + [SMALL_STATE(12190)] = 220976, + [SMALL_STATE(12191)] = 220992, + [SMALL_STATE(12192)] = 221008, + [SMALL_STATE(12193)] = 221024, + [SMALL_STATE(12194)] = 221040, + [SMALL_STATE(12195)] = 221056, + [SMALL_STATE(12196)] = 221072, + [SMALL_STATE(12197)] = 221088, + [SMALL_STATE(12198)] = 221104, + [SMALL_STATE(12199)] = 221120, + [SMALL_STATE(12200)] = 221136, + [SMALL_STATE(12201)] = 221152, + [SMALL_STATE(12202)] = 221168, + [SMALL_STATE(12203)] = 221184, + [SMALL_STATE(12204)] = 221200, + [SMALL_STATE(12205)] = 221216, + [SMALL_STATE(12206)] = 221232, + [SMALL_STATE(12207)] = 221248, + [SMALL_STATE(12208)] = 221264, + [SMALL_STATE(12209)] = 221280, + [SMALL_STATE(12210)] = 221296, + [SMALL_STATE(12211)] = 221312, + [SMALL_STATE(12212)] = 221328, + [SMALL_STATE(12213)] = 221344, + [SMALL_STATE(12214)] = 221360, + [SMALL_STATE(12215)] = 221376, + [SMALL_STATE(12216)] = 221392, + [SMALL_STATE(12217)] = 221408, + [SMALL_STATE(12218)] = 221424, + [SMALL_STATE(12219)] = 221440, + [SMALL_STATE(12220)] = 221456, + [SMALL_STATE(12221)] = 221472, + [SMALL_STATE(12222)] = 221488, + [SMALL_STATE(12223)] = 221504, + [SMALL_STATE(12224)] = 221520, + [SMALL_STATE(12225)] = 221536, + [SMALL_STATE(12226)] = 221552, + [SMALL_STATE(12227)] = 221568, + [SMALL_STATE(12228)] = 221584, + [SMALL_STATE(12229)] = 221600, + [SMALL_STATE(12230)] = 221616, + [SMALL_STATE(12231)] = 221632, + [SMALL_STATE(12232)] = 221648, + [SMALL_STATE(12233)] = 221664, + [SMALL_STATE(12234)] = 221680, + [SMALL_STATE(12235)] = 221696, + [SMALL_STATE(12236)] = 221712, + [SMALL_STATE(12237)] = 221728, + [SMALL_STATE(12238)] = 221744, + [SMALL_STATE(12239)] = 221760, + [SMALL_STATE(12240)] = 221776, + [SMALL_STATE(12241)] = 221792, + [SMALL_STATE(12242)] = 221806, + [SMALL_STATE(12243)] = 221822, + [SMALL_STATE(12244)] = 221838, + [SMALL_STATE(12245)] = 221854, + [SMALL_STATE(12246)] = 221870, + [SMALL_STATE(12247)] = 221886, + [SMALL_STATE(12248)] = 221902, + [SMALL_STATE(12249)] = 221918, + [SMALL_STATE(12250)] = 221934, + [SMALL_STATE(12251)] = 221950, + [SMALL_STATE(12252)] = 221966, + [SMALL_STATE(12253)] = 221982, + [SMALL_STATE(12254)] = 221998, + [SMALL_STATE(12255)] = 222012, + [SMALL_STATE(12256)] = 222026, + [SMALL_STATE(12257)] = 222042, + [SMALL_STATE(12258)] = 222058, + [SMALL_STATE(12259)] = 222074, + [SMALL_STATE(12260)] = 222090, + [SMALL_STATE(12261)] = 222106, + [SMALL_STATE(12262)] = 222122, + [SMALL_STATE(12263)] = 222138, + [SMALL_STATE(12264)] = 222154, + [SMALL_STATE(12265)] = 222170, + [SMALL_STATE(12266)] = 222186, + [SMALL_STATE(12267)] = 222202, + [SMALL_STATE(12268)] = 222216, + [SMALL_STATE(12269)] = 222230, + [SMALL_STATE(12270)] = 222246, + [SMALL_STATE(12271)] = 222262, + [SMALL_STATE(12272)] = 222278, + [SMALL_STATE(12273)] = 222294, + [SMALL_STATE(12274)] = 222310, + [SMALL_STATE(12275)] = 222326, + [SMALL_STATE(12276)] = 222342, + [SMALL_STATE(12277)] = 222358, + [SMALL_STATE(12278)] = 222374, + [SMALL_STATE(12279)] = 222390, + [SMALL_STATE(12280)] = 222406, + [SMALL_STATE(12281)] = 222422, + [SMALL_STATE(12282)] = 222438, + [SMALL_STATE(12283)] = 222454, + [SMALL_STATE(12284)] = 222470, + [SMALL_STATE(12285)] = 222486, + [SMALL_STATE(12286)] = 222502, + [SMALL_STATE(12287)] = 222518, + [SMALL_STATE(12288)] = 222534, + [SMALL_STATE(12289)] = 222550, + [SMALL_STATE(12290)] = 222566, + [SMALL_STATE(12291)] = 222582, + [SMALL_STATE(12292)] = 222598, + [SMALL_STATE(12293)] = 222614, + [SMALL_STATE(12294)] = 222630, + [SMALL_STATE(12295)] = 222646, + [SMALL_STATE(12296)] = 222662, + [SMALL_STATE(12297)] = 222678, + [SMALL_STATE(12298)] = 222694, + [SMALL_STATE(12299)] = 222710, + [SMALL_STATE(12300)] = 222726, + [SMALL_STATE(12301)] = 222742, + [SMALL_STATE(12302)] = 222758, + [SMALL_STATE(12303)] = 222774, + [SMALL_STATE(12304)] = 222790, + [SMALL_STATE(12305)] = 222806, + [SMALL_STATE(12306)] = 222822, + [SMALL_STATE(12307)] = 222838, + [SMALL_STATE(12308)] = 222854, + [SMALL_STATE(12309)] = 222870, + [SMALL_STATE(12310)] = 222886, + [SMALL_STATE(12311)] = 222902, + [SMALL_STATE(12312)] = 222918, + [SMALL_STATE(12313)] = 222934, + [SMALL_STATE(12314)] = 222950, + [SMALL_STATE(12315)] = 222966, + [SMALL_STATE(12316)] = 222982, + [SMALL_STATE(12317)] = 222998, + [SMALL_STATE(12318)] = 223014, + [SMALL_STATE(12319)] = 223030, + [SMALL_STATE(12320)] = 223046, + [SMALL_STATE(12321)] = 223062, + [SMALL_STATE(12322)] = 223078, + [SMALL_STATE(12323)] = 223094, + [SMALL_STATE(12324)] = 223110, + [SMALL_STATE(12325)] = 223126, + [SMALL_STATE(12326)] = 223142, + [SMALL_STATE(12327)] = 223158, + [SMALL_STATE(12328)] = 223174, + [SMALL_STATE(12329)] = 223190, + [SMALL_STATE(12330)] = 223206, + [SMALL_STATE(12331)] = 223222, + [SMALL_STATE(12332)] = 223238, + [SMALL_STATE(12333)] = 223254, + [SMALL_STATE(12334)] = 223270, + [SMALL_STATE(12335)] = 223286, + [SMALL_STATE(12336)] = 223302, + [SMALL_STATE(12337)] = 223318, + [SMALL_STATE(12338)] = 223334, + [SMALL_STATE(12339)] = 223350, + [SMALL_STATE(12340)] = 223366, + [SMALL_STATE(12341)] = 223382, + [SMALL_STATE(12342)] = 223398, + [SMALL_STATE(12343)] = 223414, + [SMALL_STATE(12344)] = 223430, + [SMALL_STATE(12345)] = 223446, + [SMALL_STATE(12346)] = 223462, + [SMALL_STATE(12347)] = 223478, + [SMALL_STATE(12348)] = 223494, + [SMALL_STATE(12349)] = 223510, + [SMALL_STATE(12350)] = 223526, + [SMALL_STATE(12351)] = 223542, + [SMALL_STATE(12352)] = 223558, + [SMALL_STATE(12353)] = 223574, + [SMALL_STATE(12354)] = 223590, + [SMALL_STATE(12355)] = 223606, + [SMALL_STATE(12356)] = 223622, + [SMALL_STATE(12357)] = 223638, + [SMALL_STATE(12358)] = 223654, + [SMALL_STATE(12359)] = 223670, + [SMALL_STATE(12360)] = 223686, + [SMALL_STATE(12361)] = 223702, + [SMALL_STATE(12362)] = 223718, + [SMALL_STATE(12363)] = 223734, + [SMALL_STATE(12364)] = 223750, + [SMALL_STATE(12365)] = 223766, + [SMALL_STATE(12366)] = 223778, + [SMALL_STATE(12367)] = 223794, + [SMALL_STATE(12368)] = 223810, + [SMALL_STATE(12369)] = 223826, + [SMALL_STATE(12370)] = 223842, + [SMALL_STATE(12371)] = 223858, + [SMALL_STATE(12372)] = 223874, + [SMALL_STATE(12373)] = 223888, + [SMALL_STATE(12374)] = 223904, + [SMALL_STATE(12375)] = 223920, + [SMALL_STATE(12376)] = 223936, + [SMALL_STATE(12377)] = 223952, + [SMALL_STATE(12378)] = 223968, + [SMALL_STATE(12379)] = 223984, + [SMALL_STATE(12380)] = 224000, + [SMALL_STATE(12381)] = 224016, + [SMALL_STATE(12382)] = 224032, + [SMALL_STATE(12383)] = 224048, + [SMALL_STATE(12384)] = 224064, + [SMALL_STATE(12385)] = 224080, + [SMALL_STATE(12386)] = 224096, + [SMALL_STATE(12387)] = 224112, + [SMALL_STATE(12388)] = 224128, + [SMALL_STATE(12389)] = 224144, + [SMALL_STATE(12390)] = 224160, + [SMALL_STATE(12391)] = 224176, + [SMALL_STATE(12392)] = 224192, + [SMALL_STATE(12393)] = 224208, + [SMALL_STATE(12394)] = 224224, + [SMALL_STATE(12395)] = 224240, + [SMALL_STATE(12396)] = 224250, + [SMALL_STATE(12397)] = 224266, + [SMALL_STATE(12398)] = 224282, + [SMALL_STATE(12399)] = 224298, + [SMALL_STATE(12400)] = 224314, + [SMALL_STATE(12401)] = 224330, + [SMALL_STATE(12402)] = 224346, + [SMALL_STATE(12403)] = 224362, + [SMALL_STATE(12404)] = 224376, + [SMALL_STATE(12405)] = 224392, + [SMALL_STATE(12406)] = 224408, + [SMALL_STATE(12407)] = 224424, + [SMALL_STATE(12408)] = 224438, + [SMALL_STATE(12409)] = 224454, + [SMALL_STATE(12410)] = 224470, + [SMALL_STATE(12411)] = 224486, + [SMALL_STATE(12412)] = 224502, + [SMALL_STATE(12413)] = 224518, + [SMALL_STATE(12414)] = 224534, + [SMALL_STATE(12415)] = 224550, + [SMALL_STATE(12416)] = 224566, + [SMALL_STATE(12417)] = 224582, + [SMALL_STATE(12418)] = 224598, + [SMALL_STATE(12419)] = 224614, + [SMALL_STATE(12420)] = 224630, + [SMALL_STATE(12421)] = 224646, + [SMALL_STATE(12422)] = 224662, + [SMALL_STATE(12423)] = 224678, + [SMALL_STATE(12424)] = 224694, + [SMALL_STATE(12425)] = 224710, + [SMALL_STATE(12426)] = 224726, + [SMALL_STATE(12427)] = 224742, + [SMALL_STATE(12428)] = 224758, + [SMALL_STATE(12429)] = 224774, + [SMALL_STATE(12430)] = 224790, + [SMALL_STATE(12431)] = 224806, + [SMALL_STATE(12432)] = 224822, + [SMALL_STATE(12433)] = 224838, + [SMALL_STATE(12434)] = 224854, + [SMALL_STATE(12435)] = 224870, + [SMALL_STATE(12436)] = 224886, + [SMALL_STATE(12437)] = 224902, + [SMALL_STATE(12438)] = 224918, + [SMALL_STATE(12439)] = 224934, + [SMALL_STATE(12440)] = 224950, + [SMALL_STATE(12441)] = 224966, + [SMALL_STATE(12442)] = 224982, + [SMALL_STATE(12443)] = 224998, + [SMALL_STATE(12444)] = 225014, + [SMALL_STATE(12445)] = 225030, + [SMALL_STATE(12446)] = 225046, + [SMALL_STATE(12447)] = 225062, + [SMALL_STATE(12448)] = 225078, + [SMALL_STATE(12449)] = 225094, + [SMALL_STATE(12450)] = 225110, + [SMALL_STATE(12451)] = 225126, + [SMALL_STATE(12452)] = 225142, + [SMALL_STATE(12453)] = 225158, + [SMALL_STATE(12454)] = 225174, + [SMALL_STATE(12455)] = 225190, + [SMALL_STATE(12456)] = 225206, + [SMALL_STATE(12457)] = 225222, + [SMALL_STATE(12458)] = 225238, + [SMALL_STATE(12459)] = 225254, + [SMALL_STATE(12460)] = 225270, + [SMALL_STATE(12461)] = 225284, + [SMALL_STATE(12462)] = 225300, + [SMALL_STATE(12463)] = 225316, + [SMALL_STATE(12464)] = 225332, + [SMALL_STATE(12465)] = 225348, + [SMALL_STATE(12466)] = 225364, + [SMALL_STATE(12467)] = 225380, + [SMALL_STATE(12468)] = 225394, + [SMALL_STATE(12469)] = 225408, + [SMALL_STATE(12470)] = 225424, + [SMALL_STATE(12471)] = 225440, + [SMALL_STATE(12472)] = 225456, + [SMALL_STATE(12473)] = 225472, + [SMALL_STATE(12474)] = 225488, + [SMALL_STATE(12475)] = 225504, + [SMALL_STATE(12476)] = 225518, + [SMALL_STATE(12477)] = 225532, + [SMALL_STATE(12478)] = 225548, + [SMALL_STATE(12479)] = 225564, + [SMALL_STATE(12480)] = 225580, + [SMALL_STATE(12481)] = 225596, + [SMALL_STATE(12482)] = 225612, + [SMALL_STATE(12483)] = 225628, + [SMALL_STATE(12484)] = 225644, + [SMALL_STATE(12485)] = 225654, + [SMALL_STATE(12486)] = 225670, + [SMALL_STATE(12487)] = 225686, + [SMALL_STATE(12488)] = 225702, + [SMALL_STATE(12489)] = 225718, + [SMALL_STATE(12490)] = 225734, + [SMALL_STATE(12491)] = 225750, + [SMALL_STATE(12492)] = 225766, + [SMALL_STATE(12493)] = 225782, + [SMALL_STATE(12494)] = 225796, + [SMALL_STATE(12495)] = 225810, + [SMALL_STATE(12496)] = 225826, + [SMALL_STATE(12497)] = 225842, + [SMALL_STATE(12498)] = 225858, + [SMALL_STATE(12499)] = 225874, + [SMALL_STATE(12500)] = 225888, + [SMALL_STATE(12501)] = 225904, + [SMALL_STATE(12502)] = 225920, + [SMALL_STATE(12503)] = 225936, + [SMALL_STATE(12504)] = 225952, + [SMALL_STATE(12505)] = 225968, + [SMALL_STATE(12506)] = 225984, + [SMALL_STATE(12507)] = 226000, + [SMALL_STATE(12508)] = 226016, + [SMALL_STATE(12509)] = 226032, + [SMALL_STATE(12510)] = 226048, + [SMALL_STATE(12511)] = 226064, + [SMALL_STATE(12512)] = 226080, + [SMALL_STATE(12513)] = 226096, + [SMALL_STATE(12514)] = 226110, + [SMALL_STATE(12515)] = 226126, + [SMALL_STATE(12516)] = 226142, + [SMALL_STATE(12517)] = 226156, + [SMALL_STATE(12518)] = 226172, + [SMALL_STATE(12519)] = 226188, + [SMALL_STATE(12520)] = 226204, + [SMALL_STATE(12521)] = 226220, + [SMALL_STATE(12522)] = 226236, + [SMALL_STATE(12523)] = 226252, + [SMALL_STATE(12524)] = 226268, + [SMALL_STATE(12525)] = 226284, + [SMALL_STATE(12526)] = 226300, + [SMALL_STATE(12527)] = 226316, + [SMALL_STATE(12528)] = 226332, + [SMALL_STATE(12529)] = 226348, + [SMALL_STATE(12530)] = 226364, + [SMALL_STATE(12531)] = 226380, + [SMALL_STATE(12532)] = 226396, + [SMALL_STATE(12533)] = 226412, + [SMALL_STATE(12534)] = 226428, + [SMALL_STATE(12535)] = 226444, + [SMALL_STATE(12536)] = 226460, + [SMALL_STATE(12537)] = 226476, + [SMALL_STATE(12538)] = 226492, + [SMALL_STATE(12539)] = 226508, + [SMALL_STATE(12540)] = 226524, + [SMALL_STATE(12541)] = 226540, + [SMALL_STATE(12542)] = 226556, + [SMALL_STATE(12543)] = 226572, + [SMALL_STATE(12544)] = 226588, + [SMALL_STATE(12545)] = 226604, + [SMALL_STATE(12546)] = 226620, + [SMALL_STATE(12547)] = 226636, + [SMALL_STATE(12548)] = 226652, + [SMALL_STATE(12549)] = 226668, + [SMALL_STATE(12550)] = 226684, + [SMALL_STATE(12551)] = 226700, + [SMALL_STATE(12552)] = 226716, + [SMALL_STATE(12553)] = 226732, + [SMALL_STATE(12554)] = 226748, + [SMALL_STATE(12555)] = 226764, + [SMALL_STATE(12556)] = 226780, + [SMALL_STATE(12557)] = 226796, + [SMALL_STATE(12558)] = 226812, + [SMALL_STATE(12559)] = 226828, + [SMALL_STATE(12560)] = 226844, + [SMALL_STATE(12561)] = 226860, + [SMALL_STATE(12562)] = 226876, + [SMALL_STATE(12563)] = 226892, + [SMALL_STATE(12564)] = 226908, + [SMALL_STATE(12565)] = 226924, + [SMALL_STATE(12566)] = 226940, + [SMALL_STATE(12567)] = 226956, + [SMALL_STATE(12568)] = 226972, + [SMALL_STATE(12569)] = 226988, + [SMALL_STATE(12570)] = 227004, + [SMALL_STATE(12571)] = 227020, + [SMALL_STATE(12572)] = 227036, + [SMALL_STATE(12573)] = 227052, + [SMALL_STATE(12574)] = 227068, + [SMALL_STATE(12575)] = 227084, + [SMALL_STATE(12576)] = 227100, + [SMALL_STATE(12577)] = 227116, + [SMALL_STATE(12578)] = 227132, + [SMALL_STATE(12579)] = 227148, + [SMALL_STATE(12580)] = 227164, + [SMALL_STATE(12581)] = 227180, + [SMALL_STATE(12582)] = 227196, + [SMALL_STATE(12583)] = 227212, + [SMALL_STATE(12584)] = 227228, + [SMALL_STATE(12585)] = 227242, + [SMALL_STATE(12586)] = 227258, + [SMALL_STATE(12587)] = 227274, + [SMALL_STATE(12588)] = 227290, + [SMALL_STATE(12589)] = 227306, + [SMALL_STATE(12590)] = 227322, + [SMALL_STATE(12591)] = 227338, + [SMALL_STATE(12592)] = 227354, + [SMALL_STATE(12593)] = 227370, + [SMALL_STATE(12594)] = 227386, + [SMALL_STATE(12595)] = 227402, + [SMALL_STATE(12596)] = 227416, + [SMALL_STATE(12597)] = 227432, + [SMALL_STATE(12598)] = 227448, + [SMALL_STATE(12599)] = 227464, + [SMALL_STATE(12600)] = 227480, + [SMALL_STATE(12601)] = 227496, + [SMALL_STATE(12602)] = 227510, + [SMALL_STATE(12603)] = 227524, + [SMALL_STATE(12604)] = 227540, + [SMALL_STATE(12605)] = 227556, + [SMALL_STATE(12606)] = 227572, + [SMALL_STATE(12607)] = 227588, + [SMALL_STATE(12608)] = 227602, + [SMALL_STATE(12609)] = 227616, + [SMALL_STATE(12610)] = 227632, + [SMALL_STATE(12611)] = 227648, + [SMALL_STATE(12612)] = 227664, + [SMALL_STATE(12613)] = 227680, + [SMALL_STATE(12614)] = 227696, + [SMALL_STATE(12615)] = 227712, + [SMALL_STATE(12616)] = 227728, + [SMALL_STATE(12617)] = 227744, + [SMALL_STATE(12618)] = 227760, + [SMALL_STATE(12619)] = 227776, + [SMALL_STATE(12620)] = 227792, + [SMALL_STATE(12621)] = 227808, + [SMALL_STATE(12622)] = 227824, + [SMALL_STATE(12623)] = 227840, + [SMALL_STATE(12624)] = 227856, + [SMALL_STATE(12625)] = 227872, + [SMALL_STATE(12626)] = 227886, + [SMALL_STATE(12627)] = 227902, + [SMALL_STATE(12628)] = 227918, + [SMALL_STATE(12629)] = 227934, + [SMALL_STATE(12630)] = 227950, + [SMALL_STATE(12631)] = 227966, + [SMALL_STATE(12632)] = 227982, + [SMALL_STATE(12633)] = 227996, + [SMALL_STATE(12634)] = 228010, + [SMALL_STATE(12635)] = 228026, + [SMALL_STATE(12636)] = 228042, + [SMALL_STATE(12637)] = 228058, + [SMALL_STATE(12638)] = 228074, + [SMALL_STATE(12639)] = 228088, + [SMALL_STATE(12640)] = 228102, + [SMALL_STATE(12641)] = 228118, + [SMALL_STATE(12642)] = 228134, + [SMALL_STATE(12643)] = 228150, + [SMALL_STATE(12644)] = 228166, + [SMALL_STATE(12645)] = 228182, + [SMALL_STATE(12646)] = 228196, + [SMALL_STATE(12647)] = 228212, + [SMALL_STATE(12648)] = 228228, + [SMALL_STATE(12649)] = 228244, + [SMALL_STATE(12650)] = 228260, + [SMALL_STATE(12651)] = 228274, + [SMALL_STATE(12652)] = 228290, + [SMALL_STATE(12653)] = 228304, + [SMALL_STATE(12654)] = 228320, + [SMALL_STATE(12655)] = 228336, + [SMALL_STATE(12656)] = 228352, + [SMALL_STATE(12657)] = 228366, + [SMALL_STATE(12658)] = 228382, + [SMALL_STATE(12659)] = 228398, + [SMALL_STATE(12660)] = 228412, + [SMALL_STATE(12661)] = 228426, + [SMALL_STATE(12662)] = 228442, + [SMALL_STATE(12663)] = 228458, + [SMALL_STATE(12664)] = 228474, + [SMALL_STATE(12665)] = 228490, + [SMALL_STATE(12666)] = 228504, + [SMALL_STATE(12667)] = 228518, + [SMALL_STATE(12668)] = 228534, + [SMALL_STATE(12669)] = 228550, + [SMALL_STATE(12670)] = 228566, + [SMALL_STATE(12671)] = 228582, + [SMALL_STATE(12672)] = 228598, + [SMALL_STATE(12673)] = 228614, + [SMALL_STATE(12674)] = 228630, + [SMALL_STATE(12675)] = 228646, + [SMALL_STATE(12676)] = 228662, + [SMALL_STATE(12677)] = 228678, + [SMALL_STATE(12678)] = 228692, + [SMALL_STATE(12679)] = 228708, + [SMALL_STATE(12680)] = 228724, + [SMALL_STATE(12681)] = 228740, + [SMALL_STATE(12682)] = 228756, + [SMALL_STATE(12683)] = 228772, + [SMALL_STATE(12684)] = 228788, + [SMALL_STATE(12685)] = 228802, + [SMALL_STATE(12686)] = 228816, + [SMALL_STATE(12687)] = 228832, + [SMALL_STATE(12688)] = 228846, + [SMALL_STATE(12689)] = 228862, + [SMALL_STATE(12690)] = 228878, + [SMALL_STATE(12691)] = 228892, + [SMALL_STATE(12692)] = 228906, + [SMALL_STATE(12693)] = 228922, + [SMALL_STATE(12694)] = 228938, + [SMALL_STATE(12695)] = 228954, + [SMALL_STATE(12696)] = 228968, + [SMALL_STATE(12697)] = 228984, + [SMALL_STATE(12698)] = 229000, + [SMALL_STATE(12699)] = 229016, + [SMALL_STATE(12700)] = 229032, + [SMALL_STATE(12701)] = 229048, + [SMALL_STATE(12702)] = 229064, + [SMALL_STATE(12703)] = 229078, + [SMALL_STATE(12704)] = 229094, + [SMALL_STATE(12705)] = 229110, + [SMALL_STATE(12706)] = 229126, + [SMALL_STATE(12707)] = 229142, + [SMALL_STATE(12708)] = 229158, + [SMALL_STATE(12709)] = 229172, + [SMALL_STATE(12710)] = 229186, + [SMALL_STATE(12711)] = 229202, + [SMALL_STATE(12712)] = 229218, + [SMALL_STATE(12713)] = 229234, + [SMALL_STATE(12714)] = 229250, + [SMALL_STATE(12715)] = 229264, + [SMALL_STATE(12716)] = 229278, + [SMALL_STATE(12717)] = 229294, + [SMALL_STATE(12718)] = 229310, + [SMALL_STATE(12719)] = 229326, + [SMALL_STATE(12720)] = 229342, + [SMALL_STATE(12721)] = 229358, + [SMALL_STATE(12722)] = 229374, + [SMALL_STATE(12723)] = 229390, + [SMALL_STATE(12724)] = 229406, + [SMALL_STATE(12725)] = 229422, + [SMALL_STATE(12726)] = 229438, + [SMALL_STATE(12727)] = 229452, + [SMALL_STATE(12728)] = 229468, + [SMALL_STATE(12729)] = 229484, + [SMALL_STATE(12730)] = 229500, + [SMALL_STATE(12731)] = 229516, + [SMALL_STATE(12732)] = 229532, + [SMALL_STATE(12733)] = 229546, + [SMALL_STATE(12734)] = 229560, + [SMALL_STATE(12735)] = 229576, + [SMALL_STATE(12736)] = 229592, + [SMALL_STATE(12737)] = 229608, + [SMALL_STATE(12738)] = 229624, + [SMALL_STATE(12739)] = 229638, + [SMALL_STATE(12740)] = 229652, + [SMALL_STATE(12741)] = 229668, + [SMALL_STATE(12742)] = 229684, + [SMALL_STATE(12743)] = 229700, + [SMALL_STATE(12744)] = 229716, + [SMALL_STATE(12745)] = 229732, + [SMALL_STATE(12746)] = 229748, + [SMALL_STATE(12747)] = 229764, + [SMALL_STATE(12748)] = 229780, + [SMALL_STATE(12749)] = 229796, + [SMALL_STATE(12750)] = 229810, + [SMALL_STATE(12751)] = 229826, + [SMALL_STATE(12752)] = 229842, + [SMALL_STATE(12753)] = 229856, + [SMALL_STATE(12754)] = 229870, + [SMALL_STATE(12755)] = 229886, + [SMALL_STATE(12756)] = 229902, + [SMALL_STATE(12757)] = 229916, + [SMALL_STATE(12758)] = 229930, + [SMALL_STATE(12759)] = 229946, + [SMALL_STATE(12760)] = 229962, + [SMALL_STATE(12761)] = 229978, + [SMALL_STATE(12762)] = 229994, + [SMALL_STATE(12763)] = 230010, + [SMALL_STATE(12764)] = 230026, + [SMALL_STATE(12765)] = 230040, + [SMALL_STATE(12766)] = 230054, + [SMALL_STATE(12767)] = 230068, + [SMALL_STATE(12768)] = 230082, + [SMALL_STATE(12769)] = 230096, + [SMALL_STATE(12770)] = 230112, + [SMALL_STATE(12771)] = 230126, + [SMALL_STATE(12772)] = 230140, + [SMALL_STATE(12773)] = 230154, + [SMALL_STATE(12774)] = 230168, + [SMALL_STATE(12775)] = 230182, + [SMALL_STATE(12776)] = 230198, + [SMALL_STATE(12777)] = 230214, + [SMALL_STATE(12778)] = 230230, + [SMALL_STATE(12779)] = 230246, + [SMALL_STATE(12780)] = 230262, + [SMALL_STATE(12781)] = 230278, + [SMALL_STATE(12782)] = 230294, + [SMALL_STATE(12783)] = 230310, + [SMALL_STATE(12784)] = 230326, + [SMALL_STATE(12785)] = 230342, + [SMALL_STATE(12786)] = 230358, + [SMALL_STATE(12787)] = 230374, + [SMALL_STATE(12788)] = 230384, + [SMALL_STATE(12789)] = 230400, + [SMALL_STATE(12790)] = 230416, + [SMALL_STATE(12791)] = 230432, + [SMALL_STATE(12792)] = 230448, + [SMALL_STATE(12793)] = 230464, + [SMALL_STATE(12794)] = 230480, + [SMALL_STATE(12795)] = 230496, + [SMALL_STATE(12796)] = 230512, + [SMALL_STATE(12797)] = 230528, + [SMALL_STATE(12798)] = 230544, + [SMALL_STATE(12799)] = 230560, + [SMALL_STATE(12800)] = 230576, + [SMALL_STATE(12801)] = 230592, + [SMALL_STATE(12802)] = 230608, + [SMALL_STATE(12803)] = 230624, + [SMALL_STATE(12804)] = 230640, + [SMALL_STATE(12805)] = 230656, + [SMALL_STATE(12806)] = 230672, + [SMALL_STATE(12807)] = 230688, + [SMALL_STATE(12808)] = 230704, + [SMALL_STATE(12809)] = 230720, + [SMALL_STATE(12810)] = 230736, + [SMALL_STATE(12811)] = 230752, + [SMALL_STATE(12812)] = 230768, + [SMALL_STATE(12813)] = 230784, + [SMALL_STATE(12814)] = 230800, + [SMALL_STATE(12815)] = 230816, + [SMALL_STATE(12816)] = 230832, + [SMALL_STATE(12817)] = 230848, + [SMALL_STATE(12818)] = 230864, + [SMALL_STATE(12819)] = 230880, + [SMALL_STATE(12820)] = 230896, + [SMALL_STATE(12821)] = 230912, + [SMALL_STATE(12822)] = 230928, + [SMALL_STATE(12823)] = 230944, + [SMALL_STATE(12824)] = 230960, + [SMALL_STATE(12825)] = 230976, + [SMALL_STATE(12826)] = 230992, + [SMALL_STATE(12827)] = 231008, + [SMALL_STATE(12828)] = 231024, + [SMALL_STATE(12829)] = 231040, + [SMALL_STATE(12830)] = 231056, + [SMALL_STATE(12831)] = 231072, + [SMALL_STATE(12832)] = 231088, + [SMALL_STATE(12833)] = 231104, + [SMALL_STATE(12834)] = 231120, + [SMALL_STATE(12835)] = 231136, + [SMALL_STATE(12836)] = 231152, + [SMALL_STATE(12837)] = 231168, + [SMALL_STATE(12838)] = 231184, + [SMALL_STATE(12839)] = 231200, + [SMALL_STATE(12840)] = 231216, + [SMALL_STATE(12841)] = 231232, + [SMALL_STATE(12842)] = 231248, + [SMALL_STATE(12843)] = 231264, + [SMALL_STATE(12844)] = 231280, + [SMALL_STATE(12845)] = 231296, + [SMALL_STATE(12846)] = 231312, + [SMALL_STATE(12847)] = 231328, + [SMALL_STATE(12848)] = 231344, + [SMALL_STATE(12849)] = 231360, + [SMALL_STATE(12850)] = 231376, + [SMALL_STATE(12851)] = 231392, + [SMALL_STATE(12852)] = 231408, + [SMALL_STATE(12853)] = 231424, + [SMALL_STATE(12854)] = 231440, + [SMALL_STATE(12855)] = 231456, + [SMALL_STATE(12856)] = 231472, + [SMALL_STATE(12857)] = 231488, + [SMALL_STATE(12858)] = 231504, + [SMALL_STATE(12859)] = 231520, + [SMALL_STATE(12860)] = 231536, + [SMALL_STATE(12861)] = 231552, + [SMALL_STATE(12862)] = 231568, + [SMALL_STATE(12863)] = 231584, + [SMALL_STATE(12864)] = 231600, + [SMALL_STATE(12865)] = 231616, + [SMALL_STATE(12866)] = 231632, + [SMALL_STATE(12867)] = 231648, + [SMALL_STATE(12868)] = 231664, + [SMALL_STATE(12869)] = 231680, + [SMALL_STATE(12870)] = 231696, + [SMALL_STATE(12871)] = 231712, + [SMALL_STATE(12872)] = 231728, + [SMALL_STATE(12873)] = 231744, + [SMALL_STATE(12874)] = 231760, + [SMALL_STATE(12875)] = 231776, + [SMALL_STATE(12876)] = 231792, + [SMALL_STATE(12877)] = 231808, + [SMALL_STATE(12878)] = 231824, + [SMALL_STATE(12879)] = 231840, + [SMALL_STATE(12880)] = 231856, + [SMALL_STATE(12881)] = 231872, + [SMALL_STATE(12882)] = 231888, + [SMALL_STATE(12883)] = 231904, + [SMALL_STATE(12884)] = 231920, + [SMALL_STATE(12885)] = 231936, + [SMALL_STATE(12886)] = 231952, + [SMALL_STATE(12887)] = 231968, + [SMALL_STATE(12888)] = 231984, + [SMALL_STATE(12889)] = 232000, + [SMALL_STATE(12890)] = 232016, + [SMALL_STATE(12891)] = 232032, + [SMALL_STATE(12892)] = 232048, + [SMALL_STATE(12893)] = 232064, + [SMALL_STATE(12894)] = 232080, + [SMALL_STATE(12895)] = 232096, + [SMALL_STATE(12896)] = 232112, + [SMALL_STATE(12897)] = 232128, + [SMALL_STATE(12898)] = 232144, + [SMALL_STATE(12899)] = 232160, + [SMALL_STATE(12900)] = 232176, + [SMALL_STATE(12901)] = 232192, + [SMALL_STATE(12902)] = 232208, + [SMALL_STATE(12903)] = 232224, + [SMALL_STATE(12904)] = 232240, + [SMALL_STATE(12905)] = 232254, + [SMALL_STATE(12906)] = 232270, + [SMALL_STATE(12907)] = 232286, + [SMALL_STATE(12908)] = 232302, + [SMALL_STATE(12909)] = 232316, + [SMALL_STATE(12910)] = 232332, + [SMALL_STATE(12911)] = 232348, + [SMALL_STATE(12912)] = 232364, + [SMALL_STATE(12913)] = 232380, + [SMALL_STATE(12914)] = 232396, + [SMALL_STATE(12915)] = 232412, + [SMALL_STATE(12916)] = 232428, + [SMALL_STATE(12917)] = 232444, + [SMALL_STATE(12918)] = 232460, + [SMALL_STATE(12919)] = 232476, + [SMALL_STATE(12920)] = 232492, + [SMALL_STATE(12921)] = 232508, + [SMALL_STATE(12922)] = 232524, + [SMALL_STATE(12923)] = 232540, + [SMALL_STATE(12924)] = 232556, + [SMALL_STATE(12925)] = 232572, + [SMALL_STATE(12926)] = 232588, + [SMALL_STATE(12927)] = 232604, + [SMALL_STATE(12928)] = 232620, + [SMALL_STATE(12929)] = 232636, + [SMALL_STATE(12930)] = 232652, + [SMALL_STATE(12931)] = 232668, + [SMALL_STATE(12932)] = 232684, + [SMALL_STATE(12933)] = 232700, + [SMALL_STATE(12934)] = 232716, + [SMALL_STATE(12935)] = 232732, + [SMALL_STATE(12936)] = 232748, + [SMALL_STATE(12937)] = 232764, + [SMALL_STATE(12938)] = 232780, + [SMALL_STATE(12939)] = 232796, + [SMALL_STATE(12940)] = 232812, + [SMALL_STATE(12941)] = 232828, + [SMALL_STATE(12942)] = 232844, + [SMALL_STATE(12943)] = 232860, + [SMALL_STATE(12944)] = 232876, + [SMALL_STATE(12945)] = 232892, + [SMALL_STATE(12946)] = 232908, + [SMALL_STATE(12947)] = 232924, + [SMALL_STATE(12948)] = 232940, + [SMALL_STATE(12949)] = 232956, + [SMALL_STATE(12950)] = 232972, + [SMALL_STATE(12951)] = 232988, + [SMALL_STATE(12952)] = 233004, + [SMALL_STATE(12953)] = 233020, + [SMALL_STATE(12954)] = 233036, + [SMALL_STATE(12955)] = 233052, + [SMALL_STATE(12956)] = 233068, + [SMALL_STATE(12957)] = 233084, + [SMALL_STATE(12958)] = 233100, + [SMALL_STATE(12959)] = 233116, + [SMALL_STATE(12960)] = 233132, + [SMALL_STATE(12961)] = 233148, + [SMALL_STATE(12962)] = 233164, + [SMALL_STATE(12963)] = 233180, + [SMALL_STATE(12964)] = 233196, + [SMALL_STATE(12965)] = 233212, + [SMALL_STATE(12966)] = 233228, + [SMALL_STATE(12967)] = 233244, + [SMALL_STATE(12968)] = 233260, + [SMALL_STATE(12969)] = 233276, + [SMALL_STATE(12970)] = 233292, + [SMALL_STATE(12971)] = 233308, + [SMALL_STATE(12972)] = 233324, + [SMALL_STATE(12973)] = 233340, + [SMALL_STATE(12974)] = 233356, + [SMALL_STATE(12975)] = 233372, + [SMALL_STATE(12976)] = 233388, + [SMALL_STATE(12977)] = 233404, + [SMALL_STATE(12978)] = 233420, + [SMALL_STATE(12979)] = 233436, + [SMALL_STATE(12980)] = 233452, + [SMALL_STATE(12981)] = 233468, + [SMALL_STATE(12982)] = 233484, + [SMALL_STATE(12983)] = 233500, + [SMALL_STATE(12984)] = 233516, + [SMALL_STATE(12985)] = 233532, + [SMALL_STATE(12986)] = 233548, + [SMALL_STATE(12987)] = 233564, + [SMALL_STATE(12988)] = 233580, + [SMALL_STATE(12989)] = 233596, + [SMALL_STATE(12990)] = 233612, + [SMALL_STATE(12991)] = 233628, + [SMALL_STATE(12992)] = 233644, + [SMALL_STATE(12993)] = 233660, + [SMALL_STATE(12994)] = 233676, + [SMALL_STATE(12995)] = 233692, + [SMALL_STATE(12996)] = 233708, + [SMALL_STATE(12997)] = 233724, + [SMALL_STATE(12998)] = 233740, + [SMALL_STATE(12999)] = 233756, + [SMALL_STATE(13000)] = 233772, + [SMALL_STATE(13001)] = 233788, + [SMALL_STATE(13002)] = 233804, + [SMALL_STATE(13003)] = 233820, + [SMALL_STATE(13004)] = 233836, + [SMALL_STATE(13005)] = 233852, + [SMALL_STATE(13006)] = 233868, + [SMALL_STATE(13007)] = 233884, + [SMALL_STATE(13008)] = 233900, + [SMALL_STATE(13009)] = 233916, + [SMALL_STATE(13010)] = 233926, + [SMALL_STATE(13011)] = 233942, + [SMALL_STATE(13012)] = 233958, + [SMALL_STATE(13013)] = 233974, + [SMALL_STATE(13014)] = 233990, + [SMALL_STATE(13015)] = 234006, + [SMALL_STATE(13016)] = 234022, + [SMALL_STATE(13017)] = 234038, + [SMALL_STATE(13018)] = 234054, + [SMALL_STATE(13019)] = 234070, + [SMALL_STATE(13020)] = 234086, + [SMALL_STATE(13021)] = 234102, + [SMALL_STATE(13022)] = 234118, + [SMALL_STATE(13023)] = 234134, + [SMALL_STATE(13024)] = 234150, + [SMALL_STATE(13025)] = 234166, + [SMALL_STATE(13026)] = 234182, + [SMALL_STATE(13027)] = 234198, + [SMALL_STATE(13028)] = 234214, + [SMALL_STATE(13029)] = 234230, + [SMALL_STATE(13030)] = 234246, + [SMALL_STATE(13031)] = 234262, + [SMALL_STATE(13032)] = 234278, + [SMALL_STATE(13033)] = 234294, + [SMALL_STATE(13034)] = 234310, + [SMALL_STATE(13035)] = 234326, + [SMALL_STATE(13036)] = 234342, + [SMALL_STATE(13037)] = 234358, + [SMALL_STATE(13038)] = 234374, + [SMALL_STATE(13039)] = 234390, + [SMALL_STATE(13040)] = 234406, + [SMALL_STATE(13041)] = 234422, + [SMALL_STATE(13042)] = 234438, + [SMALL_STATE(13043)] = 234454, + [SMALL_STATE(13044)] = 234470, + [SMALL_STATE(13045)] = 234484, + [SMALL_STATE(13046)] = 234500, + [SMALL_STATE(13047)] = 234516, + [SMALL_STATE(13048)] = 234532, + [SMALL_STATE(13049)] = 234548, + [SMALL_STATE(13050)] = 234564, + [SMALL_STATE(13051)] = 234580, + [SMALL_STATE(13052)] = 234596, + [SMALL_STATE(13053)] = 234612, + [SMALL_STATE(13054)] = 234628, + [SMALL_STATE(13055)] = 234644, + [SMALL_STATE(13056)] = 234660, + [SMALL_STATE(13057)] = 234676, + [SMALL_STATE(13058)] = 234692, + [SMALL_STATE(13059)] = 234708, + [SMALL_STATE(13060)] = 234724, + [SMALL_STATE(13061)] = 234740, + [SMALL_STATE(13062)] = 234756, + [SMALL_STATE(13063)] = 234772, + [SMALL_STATE(13064)] = 234788, + [SMALL_STATE(13065)] = 234804, + [SMALL_STATE(13066)] = 234820, + [SMALL_STATE(13067)] = 234836, + [SMALL_STATE(13068)] = 234852, + [SMALL_STATE(13069)] = 234868, + [SMALL_STATE(13070)] = 234884, + [SMALL_STATE(13071)] = 234900, + [SMALL_STATE(13072)] = 234916, + [SMALL_STATE(13073)] = 234932, + [SMALL_STATE(13074)] = 234948, + [SMALL_STATE(13075)] = 234964, + [SMALL_STATE(13076)] = 234980, + [SMALL_STATE(13077)] = 234996, + [SMALL_STATE(13078)] = 235012, + [SMALL_STATE(13079)] = 235028, + [SMALL_STATE(13080)] = 235044, + [SMALL_STATE(13081)] = 235060, + [SMALL_STATE(13082)] = 235076, + [SMALL_STATE(13083)] = 235092, + [SMALL_STATE(13084)] = 235108, + [SMALL_STATE(13085)] = 235124, + [SMALL_STATE(13086)] = 235140, + [SMALL_STATE(13087)] = 235156, + [SMALL_STATE(13088)] = 235172, + [SMALL_STATE(13089)] = 235188, + [SMALL_STATE(13090)] = 235204, + [SMALL_STATE(13091)] = 235220, + [SMALL_STATE(13092)] = 235236, + [SMALL_STATE(13093)] = 235252, + [SMALL_STATE(13094)] = 235268, + [SMALL_STATE(13095)] = 235284, + [SMALL_STATE(13096)] = 235300, + [SMALL_STATE(13097)] = 235316, + [SMALL_STATE(13098)] = 235332, + [SMALL_STATE(13099)] = 235348, + [SMALL_STATE(13100)] = 235364, + [SMALL_STATE(13101)] = 235380, + [SMALL_STATE(13102)] = 235396, + [SMALL_STATE(13103)] = 235412, + [SMALL_STATE(13104)] = 235428, + [SMALL_STATE(13105)] = 235444, + [SMALL_STATE(13106)] = 235460, + [SMALL_STATE(13107)] = 235476, + [SMALL_STATE(13108)] = 235492, + [SMALL_STATE(13109)] = 235508, + [SMALL_STATE(13110)] = 235524, + [SMALL_STATE(13111)] = 235540, + [SMALL_STATE(13112)] = 235556, + [SMALL_STATE(13113)] = 235572, + [SMALL_STATE(13114)] = 235588, + [SMALL_STATE(13115)] = 235604, + [SMALL_STATE(13116)] = 235620, + [SMALL_STATE(13117)] = 235636, + [SMALL_STATE(13118)] = 235652, + [SMALL_STATE(13119)] = 235668, + [SMALL_STATE(13120)] = 235684, + [SMALL_STATE(13121)] = 235700, + [SMALL_STATE(13122)] = 235716, + [SMALL_STATE(13123)] = 235732, + [SMALL_STATE(13124)] = 235748, + [SMALL_STATE(13125)] = 235764, + [SMALL_STATE(13126)] = 235780, + [SMALL_STATE(13127)] = 235796, + [SMALL_STATE(13128)] = 235812, + [SMALL_STATE(13129)] = 235828, + [SMALL_STATE(13130)] = 235844, + [SMALL_STATE(13131)] = 235860, + [SMALL_STATE(13132)] = 235876, + [SMALL_STATE(13133)] = 235892, + [SMALL_STATE(13134)] = 235908, + [SMALL_STATE(13135)] = 235924, + [SMALL_STATE(13136)] = 235940, + [SMALL_STATE(13137)] = 235956, + [SMALL_STATE(13138)] = 235972, + [SMALL_STATE(13139)] = 235988, + [SMALL_STATE(13140)] = 236004, + [SMALL_STATE(13141)] = 236020, + [SMALL_STATE(13142)] = 236036, + [SMALL_STATE(13143)] = 236052, + [SMALL_STATE(13144)] = 236068, + [SMALL_STATE(13145)] = 236084, + [SMALL_STATE(13146)] = 236100, + [SMALL_STATE(13147)] = 236116, + [SMALL_STATE(13148)] = 236132, + [SMALL_STATE(13149)] = 236148, + [SMALL_STATE(13150)] = 236164, + [SMALL_STATE(13151)] = 236180, + [SMALL_STATE(13152)] = 236196, + [SMALL_STATE(13153)] = 236212, + [SMALL_STATE(13154)] = 236228, + [SMALL_STATE(13155)] = 236244, + [SMALL_STATE(13156)] = 236260, + [SMALL_STATE(13157)] = 236276, + [SMALL_STATE(13158)] = 236292, + [SMALL_STATE(13159)] = 236308, + [SMALL_STATE(13160)] = 236324, + [SMALL_STATE(13161)] = 236340, + [SMALL_STATE(13162)] = 236356, + [SMALL_STATE(13163)] = 236372, + [SMALL_STATE(13164)] = 236388, + [SMALL_STATE(13165)] = 236404, + [SMALL_STATE(13166)] = 236420, + [SMALL_STATE(13167)] = 236436, + [SMALL_STATE(13168)] = 236452, + [SMALL_STATE(13169)] = 236468, + [SMALL_STATE(13170)] = 236484, + [SMALL_STATE(13171)] = 236500, + [SMALL_STATE(13172)] = 236516, + [SMALL_STATE(13173)] = 236532, + [SMALL_STATE(13174)] = 236548, + [SMALL_STATE(13175)] = 236564, + [SMALL_STATE(13176)] = 236580, + [SMALL_STATE(13177)] = 236596, + [SMALL_STATE(13178)] = 236612, + [SMALL_STATE(13179)] = 236628, + [SMALL_STATE(13180)] = 236644, + [SMALL_STATE(13181)] = 236660, + [SMALL_STATE(13182)] = 236676, + [SMALL_STATE(13183)] = 236692, + [SMALL_STATE(13184)] = 236708, + [SMALL_STATE(13185)] = 236724, + [SMALL_STATE(13186)] = 236740, + [SMALL_STATE(13187)] = 236756, + [SMALL_STATE(13188)] = 236772, + [SMALL_STATE(13189)] = 236788, + [SMALL_STATE(13190)] = 236804, + [SMALL_STATE(13191)] = 236820, + [SMALL_STATE(13192)] = 236836, + [SMALL_STATE(13193)] = 236852, + [SMALL_STATE(13194)] = 236868, + [SMALL_STATE(13195)] = 236884, + [SMALL_STATE(13196)] = 236900, + [SMALL_STATE(13197)] = 236916, + [SMALL_STATE(13198)] = 236932, + [SMALL_STATE(13199)] = 236948, + [SMALL_STATE(13200)] = 236964, + [SMALL_STATE(13201)] = 236980, + [SMALL_STATE(13202)] = 236996, + [SMALL_STATE(13203)] = 237012, + [SMALL_STATE(13204)] = 237028, + [SMALL_STATE(13205)] = 237044, + [SMALL_STATE(13206)] = 237060, + [SMALL_STATE(13207)] = 237076, + [SMALL_STATE(13208)] = 237092, + [SMALL_STATE(13209)] = 237108, + [SMALL_STATE(13210)] = 237124, + [SMALL_STATE(13211)] = 237140, + [SMALL_STATE(13212)] = 237156, + [SMALL_STATE(13213)] = 237172, + [SMALL_STATE(13214)] = 237188, + [SMALL_STATE(13215)] = 237204, + [SMALL_STATE(13216)] = 237220, + [SMALL_STATE(13217)] = 237236, + [SMALL_STATE(13218)] = 237252, + [SMALL_STATE(13219)] = 237268, + [SMALL_STATE(13220)] = 237284, + [SMALL_STATE(13221)] = 237300, + [SMALL_STATE(13222)] = 237316, + [SMALL_STATE(13223)] = 237332, + [SMALL_STATE(13224)] = 237348, + [SMALL_STATE(13225)] = 237364, + [SMALL_STATE(13226)] = 237380, + [SMALL_STATE(13227)] = 237396, + [SMALL_STATE(13228)] = 237412, + [SMALL_STATE(13229)] = 237428, + [SMALL_STATE(13230)] = 237444, + [SMALL_STATE(13231)] = 237460, + [SMALL_STATE(13232)] = 237476, + [SMALL_STATE(13233)] = 237492, + [SMALL_STATE(13234)] = 237508, + [SMALL_STATE(13235)] = 237524, + [SMALL_STATE(13236)] = 237540, + [SMALL_STATE(13237)] = 237556, + [SMALL_STATE(13238)] = 237572, + [SMALL_STATE(13239)] = 237588, + [SMALL_STATE(13240)] = 237604, + [SMALL_STATE(13241)] = 237620, + [SMALL_STATE(13242)] = 237636, + [SMALL_STATE(13243)] = 237652, + [SMALL_STATE(13244)] = 237668, + [SMALL_STATE(13245)] = 237684, + [SMALL_STATE(13246)] = 237700, + [SMALL_STATE(13247)] = 237716, + [SMALL_STATE(13248)] = 237732, + [SMALL_STATE(13249)] = 237748, + [SMALL_STATE(13250)] = 237764, + [SMALL_STATE(13251)] = 237780, + [SMALL_STATE(13252)] = 237796, + [SMALL_STATE(13253)] = 237812, + [SMALL_STATE(13254)] = 237828, + [SMALL_STATE(13255)] = 237844, + [SMALL_STATE(13256)] = 237860, + [SMALL_STATE(13257)] = 237876, + [SMALL_STATE(13258)] = 237892, + [SMALL_STATE(13259)] = 237908, + [SMALL_STATE(13260)] = 237924, + [SMALL_STATE(13261)] = 237940, + [SMALL_STATE(13262)] = 237956, + [SMALL_STATE(13263)] = 237972, + [SMALL_STATE(13264)] = 237988, + [SMALL_STATE(13265)] = 238004, + [SMALL_STATE(13266)] = 238020, + [SMALL_STATE(13267)] = 238036, + [SMALL_STATE(13268)] = 238052, + [SMALL_STATE(13269)] = 238068, + [SMALL_STATE(13270)] = 238084, + [SMALL_STATE(13271)] = 238100, + [SMALL_STATE(13272)] = 238116, + [SMALL_STATE(13273)] = 238132, + [SMALL_STATE(13274)] = 238148, + [SMALL_STATE(13275)] = 238164, + [SMALL_STATE(13276)] = 238180, + [SMALL_STATE(13277)] = 238196, + [SMALL_STATE(13278)] = 238212, + [SMALL_STATE(13279)] = 238228, + [SMALL_STATE(13280)] = 238244, + [SMALL_STATE(13281)] = 238260, + [SMALL_STATE(13282)] = 238276, + [SMALL_STATE(13283)] = 238292, + [SMALL_STATE(13284)] = 238308, + [SMALL_STATE(13285)] = 238324, + [SMALL_STATE(13286)] = 238340, + [SMALL_STATE(13287)] = 238356, + [SMALL_STATE(13288)] = 238372, + [SMALL_STATE(13289)] = 238388, + [SMALL_STATE(13290)] = 238404, + [SMALL_STATE(13291)] = 238420, + [SMALL_STATE(13292)] = 238436, + [SMALL_STATE(13293)] = 238452, + [SMALL_STATE(13294)] = 238468, + [SMALL_STATE(13295)] = 238484, + [SMALL_STATE(13296)] = 238500, + [SMALL_STATE(13297)] = 238516, + [SMALL_STATE(13298)] = 238532, + [SMALL_STATE(13299)] = 238548, + [SMALL_STATE(13300)] = 238564, + [SMALL_STATE(13301)] = 238580, + [SMALL_STATE(13302)] = 238596, + [SMALL_STATE(13303)] = 238612, + [SMALL_STATE(13304)] = 238628, + [SMALL_STATE(13305)] = 238644, + [SMALL_STATE(13306)] = 238660, + [SMALL_STATE(13307)] = 238676, + [SMALL_STATE(13308)] = 238692, + [SMALL_STATE(13309)] = 238708, + [SMALL_STATE(13310)] = 238724, + [SMALL_STATE(13311)] = 238740, + [SMALL_STATE(13312)] = 238756, + [SMALL_STATE(13313)] = 238772, + [SMALL_STATE(13314)] = 238788, + [SMALL_STATE(13315)] = 238804, + [SMALL_STATE(13316)] = 238820, + [SMALL_STATE(13317)] = 238836, + [SMALL_STATE(13318)] = 238852, + [SMALL_STATE(13319)] = 238868, + [SMALL_STATE(13320)] = 238884, + [SMALL_STATE(13321)] = 238900, + [SMALL_STATE(13322)] = 238916, + [SMALL_STATE(13323)] = 238932, + [SMALL_STATE(13324)] = 238948, + [SMALL_STATE(13325)] = 238964, + [SMALL_STATE(13326)] = 238980, + [SMALL_STATE(13327)] = 238996, + [SMALL_STATE(13328)] = 239012, + [SMALL_STATE(13329)] = 239028, + [SMALL_STATE(13330)] = 239044, + [SMALL_STATE(13331)] = 239060, + [SMALL_STATE(13332)] = 239076, + [SMALL_STATE(13333)] = 239092, + [SMALL_STATE(13334)] = 239108, + [SMALL_STATE(13335)] = 239124, + [SMALL_STATE(13336)] = 239140, + [SMALL_STATE(13337)] = 239156, + [SMALL_STATE(13338)] = 239172, + [SMALL_STATE(13339)] = 239188, + [SMALL_STATE(13340)] = 239204, + [SMALL_STATE(13341)] = 239220, + [SMALL_STATE(13342)] = 239236, + [SMALL_STATE(13343)] = 239250, + [SMALL_STATE(13344)] = 239266, + [SMALL_STATE(13345)] = 239280, + [SMALL_STATE(13346)] = 239296, + [SMALL_STATE(13347)] = 239312, + [SMALL_STATE(13348)] = 239328, + [SMALL_STATE(13349)] = 239344, + [SMALL_STATE(13350)] = 239358, + [SMALL_STATE(13351)] = 239374, + [SMALL_STATE(13352)] = 239390, + [SMALL_STATE(13353)] = 239406, + [SMALL_STATE(13354)] = 239422, + [SMALL_STATE(13355)] = 239438, + [SMALL_STATE(13356)] = 239454, + [SMALL_STATE(13357)] = 239470, + [SMALL_STATE(13358)] = 239486, + [SMALL_STATE(13359)] = 239502, + [SMALL_STATE(13360)] = 239518, + [SMALL_STATE(13361)] = 239534, + [SMALL_STATE(13362)] = 239550, + [SMALL_STATE(13363)] = 239566, + [SMALL_STATE(13364)] = 239582, + [SMALL_STATE(13365)] = 239598, + [SMALL_STATE(13366)] = 239614, + [SMALL_STATE(13367)] = 239630, + [SMALL_STATE(13368)] = 239646, + [SMALL_STATE(13369)] = 239662, + [SMALL_STATE(13370)] = 239678, + [SMALL_STATE(13371)] = 239694, + [SMALL_STATE(13372)] = 239710, + [SMALL_STATE(13373)] = 239726, + [SMALL_STATE(13374)] = 239742, + [SMALL_STATE(13375)] = 239758, + [SMALL_STATE(13376)] = 239774, + [SMALL_STATE(13377)] = 239790, + [SMALL_STATE(13378)] = 239806, + [SMALL_STATE(13379)] = 239822, + [SMALL_STATE(13380)] = 239838, + [SMALL_STATE(13381)] = 239854, + [SMALL_STATE(13382)] = 239870, + [SMALL_STATE(13383)] = 239886, + [SMALL_STATE(13384)] = 239902, + [SMALL_STATE(13385)] = 239918, + [SMALL_STATE(13386)] = 239934, + [SMALL_STATE(13387)] = 239950, + [SMALL_STATE(13388)] = 239966, + [SMALL_STATE(13389)] = 239982, + [SMALL_STATE(13390)] = 239998, + [SMALL_STATE(13391)] = 240014, + [SMALL_STATE(13392)] = 240030, + [SMALL_STATE(13393)] = 240046, + [SMALL_STATE(13394)] = 240062, + [SMALL_STATE(13395)] = 240078, + [SMALL_STATE(13396)] = 240094, + [SMALL_STATE(13397)] = 240110, + [SMALL_STATE(13398)] = 240126, + [SMALL_STATE(13399)] = 240142, + [SMALL_STATE(13400)] = 240158, + [SMALL_STATE(13401)] = 240174, + [SMALL_STATE(13402)] = 240190, + [SMALL_STATE(13403)] = 240206, + [SMALL_STATE(13404)] = 240222, + [SMALL_STATE(13405)] = 240238, + [SMALL_STATE(13406)] = 240254, + [SMALL_STATE(13407)] = 240270, + [SMALL_STATE(13408)] = 240286, + [SMALL_STATE(13409)] = 240302, + [SMALL_STATE(13410)] = 240318, + [SMALL_STATE(13411)] = 240334, + [SMALL_STATE(13412)] = 240350, + [SMALL_STATE(13413)] = 240366, + [SMALL_STATE(13414)] = 240382, + [SMALL_STATE(13415)] = 240398, + [SMALL_STATE(13416)] = 240414, + [SMALL_STATE(13417)] = 240430, + [SMALL_STATE(13418)] = 240446, + [SMALL_STATE(13419)] = 240462, + [SMALL_STATE(13420)] = 240478, + [SMALL_STATE(13421)] = 240494, + [SMALL_STATE(13422)] = 240510, + [SMALL_STATE(13423)] = 240524, + [SMALL_STATE(13424)] = 240540, + [SMALL_STATE(13425)] = 240556, + [SMALL_STATE(13426)] = 240572, + [SMALL_STATE(13427)] = 240588, + [SMALL_STATE(13428)] = 240604, + [SMALL_STATE(13429)] = 240620, + [SMALL_STATE(13430)] = 240636, + [SMALL_STATE(13431)] = 240652, + [SMALL_STATE(13432)] = 240668, + [SMALL_STATE(13433)] = 240684, + [SMALL_STATE(13434)] = 240700, + [SMALL_STATE(13435)] = 240716, + [SMALL_STATE(13436)] = 240732, + [SMALL_STATE(13437)] = 240748, + [SMALL_STATE(13438)] = 240764, + [SMALL_STATE(13439)] = 240780, + [SMALL_STATE(13440)] = 240796, + [SMALL_STATE(13441)] = 240812, + [SMALL_STATE(13442)] = 240828, + [SMALL_STATE(13443)] = 240844, + [SMALL_STATE(13444)] = 240860, + [SMALL_STATE(13445)] = 240876, + [SMALL_STATE(13446)] = 240892, + [SMALL_STATE(13447)] = 240908, + [SMALL_STATE(13448)] = 240924, + [SMALL_STATE(13449)] = 240940, + [SMALL_STATE(13450)] = 240956, + [SMALL_STATE(13451)] = 240972, + [SMALL_STATE(13452)] = 240988, + [SMALL_STATE(13453)] = 241004, + [SMALL_STATE(13454)] = 241020, + [SMALL_STATE(13455)] = 241036, + [SMALL_STATE(13456)] = 241052, + [SMALL_STATE(13457)] = 241068, + [SMALL_STATE(13458)] = 241084, + [SMALL_STATE(13459)] = 241100, + [SMALL_STATE(13460)] = 241116, + [SMALL_STATE(13461)] = 241132, + [SMALL_STATE(13462)] = 241148, + [SMALL_STATE(13463)] = 241164, + [SMALL_STATE(13464)] = 241180, + [SMALL_STATE(13465)] = 241196, + [SMALL_STATE(13466)] = 241212, + [SMALL_STATE(13467)] = 241228, + [SMALL_STATE(13468)] = 241244, + [SMALL_STATE(13469)] = 241260, + [SMALL_STATE(13470)] = 241276, + [SMALL_STATE(13471)] = 241292, + [SMALL_STATE(13472)] = 241308, + [SMALL_STATE(13473)] = 241324, + [SMALL_STATE(13474)] = 241340, + [SMALL_STATE(13475)] = 241356, + [SMALL_STATE(13476)] = 241372, + [SMALL_STATE(13477)] = 241388, + [SMALL_STATE(13478)] = 241404, + [SMALL_STATE(13479)] = 241420, + [SMALL_STATE(13480)] = 241436, + [SMALL_STATE(13481)] = 241452, + [SMALL_STATE(13482)] = 241468, + [SMALL_STATE(13483)] = 241484, + [SMALL_STATE(13484)] = 241500, + [SMALL_STATE(13485)] = 241516, + [SMALL_STATE(13486)] = 241532, + [SMALL_STATE(13487)] = 241548, + [SMALL_STATE(13488)] = 241564, + [SMALL_STATE(13489)] = 241580, + [SMALL_STATE(13490)] = 241596, + [SMALL_STATE(13491)] = 241612, + [SMALL_STATE(13492)] = 241628, + [SMALL_STATE(13493)] = 241644, + [SMALL_STATE(13494)] = 241660, + [SMALL_STATE(13495)] = 241676, + [SMALL_STATE(13496)] = 241692, + [SMALL_STATE(13497)] = 241708, + [SMALL_STATE(13498)] = 241724, + [SMALL_STATE(13499)] = 241740, + [SMALL_STATE(13500)] = 241756, + [SMALL_STATE(13501)] = 241772, + [SMALL_STATE(13502)] = 241788, + [SMALL_STATE(13503)] = 241804, + [SMALL_STATE(13504)] = 241820, + [SMALL_STATE(13505)] = 241836, + [SMALL_STATE(13506)] = 241852, + [SMALL_STATE(13507)] = 241868, + [SMALL_STATE(13508)] = 241884, + [SMALL_STATE(13509)] = 241900, + [SMALL_STATE(13510)] = 241916, + [SMALL_STATE(13511)] = 241932, + [SMALL_STATE(13512)] = 241948, + [SMALL_STATE(13513)] = 241964, + [SMALL_STATE(13514)] = 241980, + [SMALL_STATE(13515)] = 241996, + [SMALL_STATE(13516)] = 242012, + [SMALL_STATE(13517)] = 242028, + [SMALL_STATE(13518)] = 242044, + [SMALL_STATE(13519)] = 242060, + [SMALL_STATE(13520)] = 242076, + [SMALL_STATE(13521)] = 242092, + [SMALL_STATE(13522)] = 242108, + [SMALL_STATE(13523)] = 242124, + [SMALL_STATE(13524)] = 242140, + [SMALL_STATE(13525)] = 242156, + [SMALL_STATE(13526)] = 242172, + [SMALL_STATE(13527)] = 242188, + [SMALL_STATE(13528)] = 242204, + [SMALL_STATE(13529)] = 242220, + [SMALL_STATE(13530)] = 242236, + [SMALL_STATE(13531)] = 242252, + [SMALL_STATE(13532)] = 242268, + [SMALL_STATE(13533)] = 242284, + [SMALL_STATE(13534)] = 242300, + [SMALL_STATE(13535)] = 242316, + [SMALL_STATE(13536)] = 242332, + [SMALL_STATE(13537)] = 242348, + [SMALL_STATE(13538)] = 242362, + [SMALL_STATE(13539)] = 242378, + [SMALL_STATE(13540)] = 242394, + [SMALL_STATE(13541)] = 242410, + [SMALL_STATE(13542)] = 242426, + [SMALL_STATE(13543)] = 242442, + [SMALL_STATE(13544)] = 242458, + [SMALL_STATE(13545)] = 242472, + [SMALL_STATE(13546)] = 242488, + [SMALL_STATE(13547)] = 242504, + [SMALL_STATE(13548)] = 242520, + [SMALL_STATE(13549)] = 242536, + [SMALL_STATE(13550)] = 242552, + [SMALL_STATE(13551)] = 242568, + [SMALL_STATE(13552)] = 242584, + [SMALL_STATE(13553)] = 242600, + [SMALL_STATE(13554)] = 242616, + [SMALL_STATE(13555)] = 242632, + [SMALL_STATE(13556)] = 242648, + [SMALL_STATE(13557)] = 242664, + [SMALL_STATE(13558)] = 242680, + [SMALL_STATE(13559)] = 242696, + [SMALL_STATE(13560)] = 242712, + [SMALL_STATE(13561)] = 242728, + [SMALL_STATE(13562)] = 242744, + [SMALL_STATE(13563)] = 242760, + [SMALL_STATE(13564)] = 242776, + [SMALL_STATE(13565)] = 242792, + [SMALL_STATE(13566)] = 242808, + [SMALL_STATE(13567)] = 242824, + [SMALL_STATE(13568)] = 242840, + [SMALL_STATE(13569)] = 242856, + [SMALL_STATE(13570)] = 242872, + [SMALL_STATE(13571)] = 242888, + [SMALL_STATE(13572)] = 242904, + [SMALL_STATE(13573)] = 242920, + [SMALL_STATE(13574)] = 242936, + [SMALL_STATE(13575)] = 242952, + [SMALL_STATE(13576)] = 242968, + [SMALL_STATE(13577)] = 242984, + [SMALL_STATE(13578)] = 243000, + [SMALL_STATE(13579)] = 243016, + [SMALL_STATE(13580)] = 243032, + [SMALL_STATE(13581)] = 243048, + [SMALL_STATE(13582)] = 243064, + [SMALL_STATE(13583)] = 243080, + [SMALL_STATE(13584)] = 243096, + [SMALL_STATE(13585)] = 243112, + [SMALL_STATE(13586)] = 243128, + [SMALL_STATE(13587)] = 243144, + [SMALL_STATE(13588)] = 243160, + [SMALL_STATE(13589)] = 243176, + [SMALL_STATE(13590)] = 243192, + [SMALL_STATE(13591)] = 243208, + [SMALL_STATE(13592)] = 243224, + [SMALL_STATE(13593)] = 243240, + [SMALL_STATE(13594)] = 243256, + [SMALL_STATE(13595)] = 243272, + [SMALL_STATE(13596)] = 243288, + [SMALL_STATE(13597)] = 243304, + [SMALL_STATE(13598)] = 243320, + [SMALL_STATE(13599)] = 243336, + [SMALL_STATE(13600)] = 243352, + [SMALL_STATE(13601)] = 243368, + [SMALL_STATE(13602)] = 243384, + [SMALL_STATE(13603)] = 243400, + [SMALL_STATE(13604)] = 243416, + [SMALL_STATE(13605)] = 243432, + [SMALL_STATE(13606)] = 243448, + [SMALL_STATE(13607)] = 243464, + [SMALL_STATE(13608)] = 243480, + [SMALL_STATE(13609)] = 243496, + [SMALL_STATE(13610)] = 243512, + [SMALL_STATE(13611)] = 243528, + [SMALL_STATE(13612)] = 243544, + [SMALL_STATE(13613)] = 243560, + [SMALL_STATE(13614)] = 243576, + [SMALL_STATE(13615)] = 243592, + [SMALL_STATE(13616)] = 243608, + [SMALL_STATE(13617)] = 243624, + [SMALL_STATE(13618)] = 243640, + [SMALL_STATE(13619)] = 243656, + [SMALL_STATE(13620)] = 243672, + [SMALL_STATE(13621)] = 243688, + [SMALL_STATE(13622)] = 243704, + [SMALL_STATE(13623)] = 243720, + [SMALL_STATE(13624)] = 243736, + [SMALL_STATE(13625)] = 243752, + [SMALL_STATE(13626)] = 243768, + [SMALL_STATE(13627)] = 243784, + [SMALL_STATE(13628)] = 243800, + [SMALL_STATE(13629)] = 243816, + [SMALL_STATE(13630)] = 243832, + [SMALL_STATE(13631)] = 243848, + [SMALL_STATE(13632)] = 243864, + [SMALL_STATE(13633)] = 243880, + [SMALL_STATE(13634)] = 243896, + [SMALL_STATE(13635)] = 243912, + [SMALL_STATE(13636)] = 243928, + [SMALL_STATE(13637)] = 243944, + [SMALL_STATE(13638)] = 243960, + [SMALL_STATE(13639)] = 243976, + [SMALL_STATE(13640)] = 243992, + [SMALL_STATE(13641)] = 244008, + [SMALL_STATE(13642)] = 244024, + [SMALL_STATE(13643)] = 244040, + [SMALL_STATE(13644)] = 244056, + [SMALL_STATE(13645)] = 244072, + [SMALL_STATE(13646)] = 244088, + [SMALL_STATE(13647)] = 244104, + [SMALL_STATE(13648)] = 244120, + [SMALL_STATE(13649)] = 244136, + [SMALL_STATE(13650)] = 244152, + [SMALL_STATE(13651)] = 244168, + [SMALL_STATE(13652)] = 244184, + [SMALL_STATE(13653)] = 244200, + [SMALL_STATE(13654)] = 244216, + [SMALL_STATE(13655)] = 244232, + [SMALL_STATE(13656)] = 244248, + [SMALL_STATE(13657)] = 244264, + [SMALL_STATE(13658)] = 244280, + [SMALL_STATE(13659)] = 244296, + [SMALL_STATE(13660)] = 244312, + [SMALL_STATE(13661)] = 244328, + [SMALL_STATE(13662)] = 244344, + [SMALL_STATE(13663)] = 244360, + [SMALL_STATE(13664)] = 244376, + [SMALL_STATE(13665)] = 244392, + [SMALL_STATE(13666)] = 244408, + [SMALL_STATE(13667)] = 244424, + [SMALL_STATE(13668)] = 244440, + [SMALL_STATE(13669)] = 244456, + [SMALL_STATE(13670)] = 244472, + [SMALL_STATE(13671)] = 244488, + [SMALL_STATE(13672)] = 244504, + [SMALL_STATE(13673)] = 244520, + [SMALL_STATE(13674)] = 244536, + [SMALL_STATE(13675)] = 244552, + [SMALL_STATE(13676)] = 244568, + [SMALL_STATE(13677)] = 244584, + [SMALL_STATE(13678)] = 244600, + [SMALL_STATE(13679)] = 244616, + [SMALL_STATE(13680)] = 244632, + [SMALL_STATE(13681)] = 244648, + [SMALL_STATE(13682)] = 244664, + [SMALL_STATE(13683)] = 244680, + [SMALL_STATE(13684)] = 244696, + [SMALL_STATE(13685)] = 244712, + [SMALL_STATE(13686)] = 244728, + [SMALL_STATE(13687)] = 244744, + [SMALL_STATE(13688)] = 244760, + [SMALL_STATE(13689)] = 244776, + [SMALL_STATE(13690)] = 244792, + [SMALL_STATE(13691)] = 244808, + [SMALL_STATE(13692)] = 244824, + [SMALL_STATE(13693)] = 244840, + [SMALL_STATE(13694)] = 244856, + [SMALL_STATE(13695)] = 244872, + [SMALL_STATE(13696)] = 244888, + [SMALL_STATE(13697)] = 244904, + [SMALL_STATE(13698)] = 244920, + [SMALL_STATE(13699)] = 244936, + [SMALL_STATE(13700)] = 244952, + [SMALL_STATE(13701)] = 244968, + [SMALL_STATE(13702)] = 244984, + [SMALL_STATE(13703)] = 245000, + [SMALL_STATE(13704)] = 245016, + [SMALL_STATE(13705)] = 245032, + [SMALL_STATE(13706)] = 245048, + [SMALL_STATE(13707)] = 245064, + [SMALL_STATE(13708)] = 245080, + [SMALL_STATE(13709)] = 245096, + [SMALL_STATE(13710)] = 245112, + [SMALL_STATE(13711)] = 245128, + [SMALL_STATE(13712)] = 245144, + [SMALL_STATE(13713)] = 245160, + [SMALL_STATE(13714)] = 245176, + [SMALL_STATE(13715)] = 245192, + [SMALL_STATE(13716)] = 245208, + [SMALL_STATE(13717)] = 245224, + [SMALL_STATE(13718)] = 245238, + [SMALL_STATE(13719)] = 245254, + [SMALL_STATE(13720)] = 245270, + [SMALL_STATE(13721)] = 245286, + [SMALL_STATE(13722)] = 245302, + [SMALL_STATE(13723)] = 245318, + [SMALL_STATE(13724)] = 245334, + [SMALL_STATE(13725)] = 245350, + [SMALL_STATE(13726)] = 245366, + [SMALL_STATE(13727)] = 245382, + [SMALL_STATE(13728)] = 245398, + [SMALL_STATE(13729)] = 245414, + [SMALL_STATE(13730)] = 245430, + [SMALL_STATE(13731)] = 245446, + [SMALL_STATE(13732)] = 245462, + [SMALL_STATE(13733)] = 245478, + [SMALL_STATE(13734)] = 245490, + [SMALL_STATE(13735)] = 245506, + [SMALL_STATE(13736)] = 245522, + [SMALL_STATE(13737)] = 245538, + [SMALL_STATE(13738)] = 245554, + [SMALL_STATE(13739)] = 245570, + [SMALL_STATE(13740)] = 245586, + [SMALL_STATE(13741)] = 245602, + [SMALL_STATE(13742)] = 245618, + [SMALL_STATE(13743)] = 245634, + [SMALL_STATE(13744)] = 245650, + [SMALL_STATE(13745)] = 245664, + [SMALL_STATE(13746)] = 245680, + [SMALL_STATE(13747)] = 245696, + [SMALL_STATE(13748)] = 245710, + [SMALL_STATE(13749)] = 245726, + [SMALL_STATE(13750)] = 245742, + [SMALL_STATE(13751)] = 245758, + [SMALL_STATE(13752)] = 245774, + [SMALL_STATE(13753)] = 245790, + [SMALL_STATE(13754)] = 245806, + [SMALL_STATE(13755)] = 245816, + [SMALL_STATE(13756)] = 245832, + [SMALL_STATE(13757)] = 245848, + [SMALL_STATE(13758)] = 245864, + [SMALL_STATE(13759)] = 245880, + [SMALL_STATE(13760)] = 245896, + [SMALL_STATE(13761)] = 245912, + [SMALL_STATE(13762)] = 245928, + [SMALL_STATE(13763)] = 245944, + [SMALL_STATE(13764)] = 245960, + [SMALL_STATE(13765)] = 245976, + [SMALL_STATE(13766)] = 245992, + [SMALL_STATE(13767)] = 246008, + [SMALL_STATE(13768)] = 246024, + [SMALL_STATE(13769)] = 246040, + [SMALL_STATE(13770)] = 246056, + [SMALL_STATE(13771)] = 246072, + [SMALL_STATE(13772)] = 246088, + [SMALL_STATE(13773)] = 246104, + [SMALL_STATE(13774)] = 246120, + [SMALL_STATE(13775)] = 246136, + [SMALL_STATE(13776)] = 246152, + [SMALL_STATE(13777)] = 246168, + [SMALL_STATE(13778)] = 246182, + [SMALL_STATE(13779)] = 246198, + [SMALL_STATE(13780)] = 246214, + [SMALL_STATE(13781)] = 246230, + [SMALL_STATE(13782)] = 246246, + [SMALL_STATE(13783)] = 246262, + [SMALL_STATE(13784)] = 246278, + [SMALL_STATE(13785)] = 246294, + [SMALL_STATE(13786)] = 246310, + [SMALL_STATE(13787)] = 246326, + [SMALL_STATE(13788)] = 246342, + [SMALL_STATE(13789)] = 246358, + [SMALL_STATE(13790)] = 246374, + [SMALL_STATE(13791)] = 246390, + [SMALL_STATE(13792)] = 246406, + [SMALL_STATE(13793)] = 246422, + [SMALL_STATE(13794)] = 246438, + [SMALL_STATE(13795)] = 246454, + [SMALL_STATE(13796)] = 246470, + [SMALL_STATE(13797)] = 246486, + [SMALL_STATE(13798)] = 246502, + [SMALL_STATE(13799)] = 246518, + [SMALL_STATE(13800)] = 246534, + [SMALL_STATE(13801)] = 246548, + [SMALL_STATE(13802)] = 246564, + [SMALL_STATE(13803)] = 246580, + [SMALL_STATE(13804)] = 246596, + [SMALL_STATE(13805)] = 246612, + [SMALL_STATE(13806)] = 246628, + [SMALL_STATE(13807)] = 246644, + [SMALL_STATE(13808)] = 246660, + [SMALL_STATE(13809)] = 246676, + [SMALL_STATE(13810)] = 246692, + [SMALL_STATE(13811)] = 246708, + [SMALL_STATE(13812)] = 246724, + [SMALL_STATE(13813)] = 246740, + [SMALL_STATE(13814)] = 246756, + [SMALL_STATE(13815)] = 246772, + [SMALL_STATE(13816)] = 246788, + [SMALL_STATE(13817)] = 246804, + [SMALL_STATE(13818)] = 246820, + [SMALL_STATE(13819)] = 246836, + [SMALL_STATE(13820)] = 246852, + [SMALL_STATE(13821)] = 246868, + [SMALL_STATE(13822)] = 246884, + [SMALL_STATE(13823)] = 246900, + [SMALL_STATE(13824)] = 246916, + [SMALL_STATE(13825)] = 246932, + [SMALL_STATE(13826)] = 246948, + [SMALL_STATE(13827)] = 246964, + [SMALL_STATE(13828)] = 246980, + [SMALL_STATE(13829)] = 246996, + [SMALL_STATE(13830)] = 247012, + [SMALL_STATE(13831)] = 247028, + [SMALL_STATE(13832)] = 247044, + [SMALL_STATE(13833)] = 247060, + [SMALL_STATE(13834)] = 247076, + [SMALL_STATE(13835)] = 247092, + [SMALL_STATE(13836)] = 247108, + [SMALL_STATE(13837)] = 247124, + [SMALL_STATE(13838)] = 247140, + [SMALL_STATE(13839)] = 247156, + [SMALL_STATE(13840)] = 247172, + [SMALL_STATE(13841)] = 247188, + [SMALL_STATE(13842)] = 247204, + [SMALL_STATE(13843)] = 247220, + [SMALL_STATE(13844)] = 247236, + [SMALL_STATE(13845)] = 247252, + [SMALL_STATE(13846)] = 247268, + [SMALL_STATE(13847)] = 247284, + [SMALL_STATE(13848)] = 247300, + [SMALL_STATE(13849)] = 247316, + [SMALL_STATE(13850)] = 247332, + [SMALL_STATE(13851)] = 247348, + [SMALL_STATE(13852)] = 247364, + [SMALL_STATE(13853)] = 247380, + [SMALL_STATE(13854)] = 247396, + [SMALL_STATE(13855)] = 247412, + [SMALL_STATE(13856)] = 247428, + [SMALL_STATE(13857)] = 247444, + [SMALL_STATE(13858)] = 247460, + [SMALL_STATE(13859)] = 247476, + [SMALL_STATE(13860)] = 247492, + [SMALL_STATE(13861)] = 247508, + [SMALL_STATE(13862)] = 247524, + [SMALL_STATE(13863)] = 247540, + [SMALL_STATE(13864)] = 247556, + [SMALL_STATE(13865)] = 247572, + [SMALL_STATE(13866)] = 247588, + [SMALL_STATE(13867)] = 247604, + [SMALL_STATE(13868)] = 247620, + [SMALL_STATE(13869)] = 247636, + [SMALL_STATE(13870)] = 247652, + [SMALL_STATE(13871)] = 247668, + [SMALL_STATE(13872)] = 247684, + [SMALL_STATE(13873)] = 247700, + [SMALL_STATE(13874)] = 247710, + [SMALL_STATE(13875)] = 247726, + [SMALL_STATE(13876)] = 247742, + [SMALL_STATE(13877)] = 247758, + [SMALL_STATE(13878)] = 247774, + [SMALL_STATE(13879)] = 247790, + [SMALL_STATE(13880)] = 247806, + [SMALL_STATE(13881)] = 247822, + [SMALL_STATE(13882)] = 247838, + [SMALL_STATE(13883)] = 247854, + [SMALL_STATE(13884)] = 247870, + [SMALL_STATE(13885)] = 247886, + [SMALL_STATE(13886)] = 247902, + [SMALL_STATE(13887)] = 247918, + [SMALL_STATE(13888)] = 247934, + [SMALL_STATE(13889)] = 247950, + [SMALL_STATE(13890)] = 247966, + [SMALL_STATE(13891)] = 247982, + [SMALL_STATE(13892)] = 247998, + [SMALL_STATE(13893)] = 248014, + [SMALL_STATE(13894)] = 248030, + [SMALL_STATE(13895)] = 248046, + [SMALL_STATE(13896)] = 248062, + [SMALL_STATE(13897)] = 248078, + [SMALL_STATE(13898)] = 248094, + [SMALL_STATE(13899)] = 248110, + [SMALL_STATE(13900)] = 248126, + [SMALL_STATE(13901)] = 248142, + [SMALL_STATE(13902)] = 248158, + [SMALL_STATE(13903)] = 248174, + [SMALL_STATE(13904)] = 248190, + [SMALL_STATE(13905)] = 248206, + [SMALL_STATE(13906)] = 248222, + [SMALL_STATE(13907)] = 248238, + [SMALL_STATE(13908)] = 248254, + [SMALL_STATE(13909)] = 248270, + [SMALL_STATE(13910)] = 248286, + [SMALL_STATE(13911)] = 248302, + [SMALL_STATE(13912)] = 248318, + [SMALL_STATE(13913)] = 248334, + [SMALL_STATE(13914)] = 248350, + [SMALL_STATE(13915)] = 248366, + [SMALL_STATE(13916)] = 248382, + [SMALL_STATE(13917)] = 248398, + [SMALL_STATE(13918)] = 248414, + [SMALL_STATE(13919)] = 248430, + [SMALL_STATE(13920)] = 248446, + [SMALL_STATE(13921)] = 248462, + [SMALL_STATE(13922)] = 248478, + [SMALL_STATE(13923)] = 248494, + [SMALL_STATE(13924)] = 248510, + [SMALL_STATE(13925)] = 248526, + [SMALL_STATE(13926)] = 248542, + [SMALL_STATE(13927)] = 248558, + [SMALL_STATE(13928)] = 248574, + [SMALL_STATE(13929)] = 248590, + [SMALL_STATE(13930)] = 248606, + [SMALL_STATE(13931)] = 248622, + [SMALL_STATE(13932)] = 248638, + [SMALL_STATE(13933)] = 248651, + [SMALL_STATE(13934)] = 248664, + [SMALL_STATE(13935)] = 248677, + [SMALL_STATE(13936)] = 248690, + [SMALL_STATE(13937)] = 248703, + [SMALL_STATE(13938)] = 248716, + [SMALL_STATE(13939)] = 248729, + [SMALL_STATE(13940)] = 248742, + [SMALL_STATE(13941)] = 248755, + [SMALL_STATE(13942)] = 248768, + [SMALL_STATE(13943)] = 248781, + [SMALL_STATE(13944)] = 248794, + [SMALL_STATE(13945)] = 248807, + [SMALL_STATE(13946)] = 248820, + [SMALL_STATE(13947)] = 248833, + [SMALL_STATE(13948)] = 248846, + [SMALL_STATE(13949)] = 248859, + [SMALL_STATE(13950)] = 248872, + [SMALL_STATE(13951)] = 248885, + [SMALL_STATE(13952)] = 248898, + [SMALL_STATE(13953)] = 248911, + [SMALL_STATE(13954)] = 248924, + [SMALL_STATE(13955)] = 248937, + [SMALL_STATE(13956)] = 248950, + [SMALL_STATE(13957)] = 248963, + [SMALL_STATE(13958)] = 248976, + [SMALL_STATE(13959)] = 248989, + [SMALL_STATE(13960)] = 249002, + [SMALL_STATE(13961)] = 249015, + [SMALL_STATE(13962)] = 249028, + [SMALL_STATE(13963)] = 249041, + [SMALL_STATE(13964)] = 249054, + [SMALL_STATE(13965)] = 249067, + [SMALL_STATE(13966)] = 249080, + [SMALL_STATE(13967)] = 249093, + [SMALL_STATE(13968)] = 249106, + [SMALL_STATE(13969)] = 249119, + [SMALL_STATE(13970)] = 249132, + [SMALL_STATE(13971)] = 249145, + [SMALL_STATE(13972)] = 249158, + [SMALL_STATE(13973)] = 249171, + [SMALL_STATE(13974)] = 249184, + [SMALL_STATE(13975)] = 249197, + [SMALL_STATE(13976)] = 249210, + [SMALL_STATE(13977)] = 249223, + [SMALL_STATE(13978)] = 249236, + [SMALL_STATE(13979)] = 249249, + [SMALL_STATE(13980)] = 249262, + [SMALL_STATE(13981)] = 249275, + [SMALL_STATE(13982)] = 249288, + [SMALL_STATE(13983)] = 249301, + [SMALL_STATE(13984)] = 249314, + [SMALL_STATE(13985)] = 249327, + [SMALL_STATE(13986)] = 249340, + [SMALL_STATE(13987)] = 249353, + [SMALL_STATE(13988)] = 249366, + [SMALL_STATE(13989)] = 249379, + [SMALL_STATE(13990)] = 249392, + [SMALL_STATE(13991)] = 249405, + [SMALL_STATE(13992)] = 249418, + [SMALL_STATE(13993)] = 249431, + [SMALL_STATE(13994)] = 249444, + [SMALL_STATE(13995)] = 249457, + [SMALL_STATE(13996)] = 249470, + [SMALL_STATE(13997)] = 249483, + [SMALL_STATE(13998)] = 249496, + [SMALL_STATE(13999)] = 249509, + [SMALL_STATE(14000)] = 249522, + [SMALL_STATE(14001)] = 249535, + [SMALL_STATE(14002)] = 249548, + [SMALL_STATE(14003)] = 249561, + [SMALL_STATE(14004)] = 249574, + [SMALL_STATE(14005)] = 249587, + [SMALL_STATE(14006)] = 249600, + [SMALL_STATE(14007)] = 249613, + [SMALL_STATE(14008)] = 249626, + [SMALL_STATE(14009)] = 249639, + [SMALL_STATE(14010)] = 249652, + [SMALL_STATE(14011)] = 249665, + [SMALL_STATE(14012)] = 249678, + [SMALL_STATE(14013)] = 249691, + [SMALL_STATE(14014)] = 249704, + [SMALL_STATE(14015)] = 249717, + [SMALL_STATE(14016)] = 249730, + [SMALL_STATE(14017)] = 249743, + [SMALL_STATE(14018)] = 249756, + [SMALL_STATE(14019)] = 249769, + [SMALL_STATE(14020)] = 249782, + [SMALL_STATE(14021)] = 249795, + [SMALL_STATE(14022)] = 249808, + [SMALL_STATE(14023)] = 249821, + [SMALL_STATE(14024)] = 249834, + [SMALL_STATE(14025)] = 249847, + [SMALL_STATE(14026)] = 249860, + [SMALL_STATE(14027)] = 249873, + [SMALL_STATE(14028)] = 249886, + [SMALL_STATE(14029)] = 249899, + [SMALL_STATE(14030)] = 249912, + [SMALL_STATE(14031)] = 249925, + [SMALL_STATE(14032)] = 249938, + [SMALL_STATE(14033)] = 249951, + [SMALL_STATE(14034)] = 249964, + [SMALL_STATE(14035)] = 249977, + [SMALL_STATE(14036)] = 249990, + [SMALL_STATE(14037)] = 250003, + [SMALL_STATE(14038)] = 250016, + [SMALL_STATE(14039)] = 250029, + [SMALL_STATE(14040)] = 250042, + [SMALL_STATE(14041)] = 250055, + [SMALL_STATE(14042)] = 250068, + [SMALL_STATE(14043)] = 250081, + [SMALL_STATE(14044)] = 250094, + [SMALL_STATE(14045)] = 250107, + [SMALL_STATE(14046)] = 250120, + [SMALL_STATE(14047)] = 250133, + [SMALL_STATE(14048)] = 250146, + [SMALL_STATE(14049)] = 250159, + [SMALL_STATE(14050)] = 250172, + [SMALL_STATE(14051)] = 250185, + [SMALL_STATE(14052)] = 250198, + [SMALL_STATE(14053)] = 250211, + [SMALL_STATE(14054)] = 250224, + [SMALL_STATE(14055)] = 250237, + [SMALL_STATE(14056)] = 250250, + [SMALL_STATE(14057)] = 250263, + [SMALL_STATE(14058)] = 250276, + [SMALL_STATE(14059)] = 250289, + [SMALL_STATE(14060)] = 250302, + [SMALL_STATE(14061)] = 250315, + [SMALL_STATE(14062)] = 250328, + [SMALL_STATE(14063)] = 250341, + [SMALL_STATE(14064)] = 250354, + [SMALL_STATE(14065)] = 250367, + [SMALL_STATE(14066)] = 250380, + [SMALL_STATE(14067)] = 250393, + [SMALL_STATE(14068)] = 250406, + [SMALL_STATE(14069)] = 250419, + [SMALL_STATE(14070)] = 250432, + [SMALL_STATE(14071)] = 250445, + [SMALL_STATE(14072)] = 250458, + [SMALL_STATE(14073)] = 250471, + [SMALL_STATE(14074)] = 250484, + [SMALL_STATE(14075)] = 250497, + [SMALL_STATE(14076)] = 250510, + [SMALL_STATE(14077)] = 250523, + [SMALL_STATE(14078)] = 250532, + [SMALL_STATE(14079)] = 250545, + [SMALL_STATE(14080)] = 250558, + [SMALL_STATE(14081)] = 250571, + [SMALL_STATE(14082)] = 250584, + [SMALL_STATE(14083)] = 250597, + [SMALL_STATE(14084)] = 250610, + [SMALL_STATE(14085)] = 250623, + [SMALL_STATE(14086)] = 250636, + [SMALL_STATE(14087)] = 250649, + [SMALL_STATE(14088)] = 250662, + [SMALL_STATE(14089)] = 250675, + [SMALL_STATE(14090)] = 250688, + [SMALL_STATE(14091)] = 250701, + [SMALL_STATE(14092)] = 250714, + [SMALL_STATE(14093)] = 250727, + [SMALL_STATE(14094)] = 250740, + [SMALL_STATE(14095)] = 250753, + [SMALL_STATE(14096)] = 250766, + [SMALL_STATE(14097)] = 250779, + [SMALL_STATE(14098)] = 250792, + [SMALL_STATE(14099)] = 250805, + [SMALL_STATE(14100)] = 250818, + [SMALL_STATE(14101)] = 250831, + [SMALL_STATE(14102)] = 250844, + [SMALL_STATE(14103)] = 250853, + [SMALL_STATE(14104)] = 250866, + [SMALL_STATE(14105)] = 250879, + [SMALL_STATE(14106)] = 250892, + [SMALL_STATE(14107)] = 250905, + [SMALL_STATE(14108)] = 250918, + [SMALL_STATE(14109)] = 250931, + [SMALL_STATE(14110)] = 250944, + [SMALL_STATE(14111)] = 250957, + [SMALL_STATE(14112)] = 250970, + [SMALL_STATE(14113)] = 250983, + [SMALL_STATE(14114)] = 250996, + [SMALL_STATE(14115)] = 251009, + [SMALL_STATE(14116)] = 251022, + [SMALL_STATE(14117)] = 251035, + [SMALL_STATE(14118)] = 251048, + [SMALL_STATE(14119)] = 251061, + [SMALL_STATE(14120)] = 251074, + [SMALL_STATE(14121)] = 251087, + [SMALL_STATE(14122)] = 251100, + [SMALL_STATE(14123)] = 251113, + [SMALL_STATE(14124)] = 251126, + [SMALL_STATE(14125)] = 251139, + [SMALL_STATE(14126)] = 251152, + [SMALL_STATE(14127)] = 251165, + [SMALL_STATE(14128)] = 251178, + [SMALL_STATE(14129)] = 251191, + [SMALL_STATE(14130)] = 251204, + [SMALL_STATE(14131)] = 251217, + [SMALL_STATE(14132)] = 251230, + [SMALL_STATE(14133)] = 251243, + [SMALL_STATE(14134)] = 251256, + [SMALL_STATE(14135)] = 251269, + [SMALL_STATE(14136)] = 251282, + [SMALL_STATE(14137)] = 251295, + [SMALL_STATE(14138)] = 251308, + [SMALL_STATE(14139)] = 251321, + [SMALL_STATE(14140)] = 251334, + [SMALL_STATE(14141)] = 251347, + [SMALL_STATE(14142)] = 251360, + [SMALL_STATE(14143)] = 251373, + [SMALL_STATE(14144)] = 251386, + [SMALL_STATE(14145)] = 251399, + [SMALL_STATE(14146)] = 251412, + [SMALL_STATE(14147)] = 251425, + [SMALL_STATE(14148)] = 251438, + [SMALL_STATE(14149)] = 251447, + [SMALL_STATE(14150)] = 251460, + [SMALL_STATE(14151)] = 251473, + [SMALL_STATE(14152)] = 251486, + [SMALL_STATE(14153)] = 251499, + [SMALL_STATE(14154)] = 251512, + [SMALL_STATE(14155)] = 251525, + [SMALL_STATE(14156)] = 251538, + [SMALL_STATE(14157)] = 251551, + [SMALL_STATE(14158)] = 251564, + [SMALL_STATE(14159)] = 251577, + [SMALL_STATE(14160)] = 251590, + [SMALL_STATE(14161)] = 251603, + [SMALL_STATE(14162)] = 251616, + [SMALL_STATE(14163)] = 251629, + [SMALL_STATE(14164)] = 251642, + [SMALL_STATE(14165)] = 251655, + [SMALL_STATE(14166)] = 251668, + [SMALL_STATE(14167)] = 251681, + [SMALL_STATE(14168)] = 251694, + [SMALL_STATE(14169)] = 251707, + [SMALL_STATE(14170)] = 251720, + [SMALL_STATE(14171)] = 251733, + [SMALL_STATE(14172)] = 251746, + [SMALL_STATE(14173)] = 251759, + [SMALL_STATE(14174)] = 251772, + [SMALL_STATE(14175)] = 251785, + [SMALL_STATE(14176)] = 251798, + [SMALL_STATE(14177)] = 251807, + [SMALL_STATE(14178)] = 251820, + [SMALL_STATE(14179)] = 251833, + [SMALL_STATE(14180)] = 251846, + [SMALL_STATE(14181)] = 251859, + [SMALL_STATE(14182)] = 251872, + [SMALL_STATE(14183)] = 251885, + [SMALL_STATE(14184)] = 251898, + [SMALL_STATE(14185)] = 251911, + [SMALL_STATE(14186)] = 251924, + [SMALL_STATE(14187)] = 251937, + [SMALL_STATE(14188)] = 251950, + [SMALL_STATE(14189)] = 251963, + [SMALL_STATE(14190)] = 251976, + [SMALL_STATE(14191)] = 251989, + [SMALL_STATE(14192)] = 252002, + [SMALL_STATE(14193)] = 252015, + [SMALL_STATE(14194)] = 252028, + [SMALL_STATE(14195)] = 252041, + [SMALL_STATE(14196)] = 252054, + [SMALL_STATE(14197)] = 252067, + [SMALL_STATE(14198)] = 252080, + [SMALL_STATE(14199)] = 252093, + [SMALL_STATE(14200)] = 252106, + [SMALL_STATE(14201)] = 252119, + [SMALL_STATE(14202)] = 252132, + [SMALL_STATE(14203)] = 252145, + [SMALL_STATE(14204)] = 252158, + [SMALL_STATE(14205)] = 252171, + [SMALL_STATE(14206)] = 252184, + [SMALL_STATE(14207)] = 252197, + [SMALL_STATE(14208)] = 252210, + [SMALL_STATE(14209)] = 252223, + [SMALL_STATE(14210)] = 252232, + [SMALL_STATE(14211)] = 252245, + [SMALL_STATE(14212)] = 252258, + [SMALL_STATE(14213)] = 252271, + [SMALL_STATE(14214)] = 252284, + [SMALL_STATE(14215)] = 252297, + [SMALL_STATE(14216)] = 252310, + [SMALL_STATE(14217)] = 252323, + [SMALL_STATE(14218)] = 252336, + [SMALL_STATE(14219)] = 252349, + [SMALL_STATE(14220)] = 252362, + [SMALL_STATE(14221)] = 252375, + [SMALL_STATE(14222)] = 252388, + [SMALL_STATE(14223)] = 252401, + [SMALL_STATE(14224)] = 252414, + [SMALL_STATE(14225)] = 252423, + [SMALL_STATE(14226)] = 252436, + [SMALL_STATE(14227)] = 252449, + [SMALL_STATE(14228)] = 252462, + [SMALL_STATE(14229)] = 252475, + [SMALL_STATE(14230)] = 252488, + [SMALL_STATE(14231)] = 252501, + [SMALL_STATE(14232)] = 252514, + [SMALL_STATE(14233)] = 252527, + [SMALL_STATE(14234)] = 252540, + [SMALL_STATE(14235)] = 252553, + [SMALL_STATE(14236)] = 252566, + [SMALL_STATE(14237)] = 252579, + [SMALL_STATE(14238)] = 252592, + [SMALL_STATE(14239)] = 252605, + [SMALL_STATE(14240)] = 252618, + [SMALL_STATE(14241)] = 252631, + [SMALL_STATE(14242)] = 252644, + [SMALL_STATE(14243)] = 252657, + [SMALL_STATE(14244)] = 252670, + [SMALL_STATE(14245)] = 252683, + [SMALL_STATE(14246)] = 252696, + [SMALL_STATE(14247)] = 252709, + [SMALL_STATE(14248)] = 252722, + [SMALL_STATE(14249)] = 252735, + [SMALL_STATE(14250)] = 252748, + [SMALL_STATE(14251)] = 252761, + [SMALL_STATE(14252)] = 252774, + [SMALL_STATE(14253)] = 252787, + [SMALL_STATE(14254)] = 252800, + [SMALL_STATE(14255)] = 252813, + [SMALL_STATE(14256)] = 252826, + [SMALL_STATE(14257)] = 252839, + [SMALL_STATE(14258)] = 252852, + [SMALL_STATE(14259)] = 252865, + [SMALL_STATE(14260)] = 252878, + [SMALL_STATE(14261)] = 252891, + [SMALL_STATE(14262)] = 252904, + [SMALL_STATE(14263)] = 252917, + [SMALL_STATE(14264)] = 252930, + [SMALL_STATE(14265)] = 252943, + [SMALL_STATE(14266)] = 252956, + [SMALL_STATE(14267)] = 252969, + [SMALL_STATE(14268)] = 252982, + [SMALL_STATE(14269)] = 252995, + [SMALL_STATE(14270)] = 253008, + [SMALL_STATE(14271)] = 253021, + [SMALL_STATE(14272)] = 253034, + [SMALL_STATE(14273)] = 253047, + [SMALL_STATE(14274)] = 253060, + [SMALL_STATE(14275)] = 253073, + [SMALL_STATE(14276)] = 253086, + [SMALL_STATE(14277)] = 253099, + [SMALL_STATE(14278)] = 253112, + [SMALL_STATE(14279)] = 253125, + [SMALL_STATE(14280)] = 253138, + [SMALL_STATE(14281)] = 253151, + [SMALL_STATE(14282)] = 253164, + [SMALL_STATE(14283)] = 253177, + [SMALL_STATE(14284)] = 253190, + [SMALL_STATE(14285)] = 253203, + [SMALL_STATE(14286)] = 253216, + [SMALL_STATE(14287)] = 253229, + [SMALL_STATE(14288)] = 253242, + [SMALL_STATE(14289)] = 253255, + [SMALL_STATE(14290)] = 253268, + [SMALL_STATE(14291)] = 253281, + [SMALL_STATE(14292)] = 253294, + [SMALL_STATE(14293)] = 253307, + [SMALL_STATE(14294)] = 253320, + [SMALL_STATE(14295)] = 253333, + [SMALL_STATE(14296)] = 253346, + [SMALL_STATE(14297)] = 253359, + [SMALL_STATE(14298)] = 253372, + [SMALL_STATE(14299)] = 253385, + [SMALL_STATE(14300)] = 253398, + [SMALL_STATE(14301)] = 253411, + [SMALL_STATE(14302)] = 253424, + [SMALL_STATE(14303)] = 253437, + [SMALL_STATE(14304)] = 253450, + [SMALL_STATE(14305)] = 253463, + [SMALL_STATE(14306)] = 253476, + [SMALL_STATE(14307)] = 253489, + [SMALL_STATE(14308)] = 253502, + [SMALL_STATE(14309)] = 253515, + [SMALL_STATE(14310)] = 253528, + [SMALL_STATE(14311)] = 253541, + [SMALL_STATE(14312)] = 253554, + [SMALL_STATE(14313)] = 253567, + [SMALL_STATE(14314)] = 253580, + [SMALL_STATE(14315)] = 253593, + [SMALL_STATE(14316)] = 253606, + [SMALL_STATE(14317)] = 253619, + [SMALL_STATE(14318)] = 253632, + [SMALL_STATE(14319)] = 253645, + [SMALL_STATE(14320)] = 253658, + [SMALL_STATE(14321)] = 253671, + [SMALL_STATE(14322)] = 253684, + [SMALL_STATE(14323)] = 253697, + [SMALL_STATE(14324)] = 253710, + [SMALL_STATE(14325)] = 253723, + [SMALL_STATE(14326)] = 253736, + [SMALL_STATE(14327)] = 253749, + [SMALL_STATE(14328)] = 253762, + [SMALL_STATE(14329)] = 253775, + [SMALL_STATE(14330)] = 253788, + [SMALL_STATE(14331)] = 253801, + [SMALL_STATE(14332)] = 253814, + [SMALL_STATE(14333)] = 253827, + [SMALL_STATE(14334)] = 253840, + [SMALL_STATE(14335)] = 253853, + [SMALL_STATE(14336)] = 253866, + [SMALL_STATE(14337)] = 253879, + [SMALL_STATE(14338)] = 253892, + [SMALL_STATE(14339)] = 253905, + [SMALL_STATE(14340)] = 253918, + [SMALL_STATE(14341)] = 253931, + [SMALL_STATE(14342)] = 253944, + [SMALL_STATE(14343)] = 253957, + [SMALL_STATE(14344)] = 253970, + [SMALL_STATE(14345)] = 253983, + [SMALL_STATE(14346)] = 253996, + [SMALL_STATE(14347)] = 254009, + [SMALL_STATE(14348)] = 254022, + [SMALL_STATE(14349)] = 254035, + [SMALL_STATE(14350)] = 254048, + [SMALL_STATE(14351)] = 254061, + [SMALL_STATE(14352)] = 254074, + [SMALL_STATE(14353)] = 254087, + [SMALL_STATE(14354)] = 254100, + [SMALL_STATE(14355)] = 254113, + [SMALL_STATE(14356)] = 254126, + [SMALL_STATE(14357)] = 254139, + [SMALL_STATE(14358)] = 254152, + [SMALL_STATE(14359)] = 254165, + [SMALL_STATE(14360)] = 254178, + [SMALL_STATE(14361)] = 254191, + [SMALL_STATE(14362)] = 254204, + [SMALL_STATE(14363)] = 254217, + [SMALL_STATE(14364)] = 254230, + [SMALL_STATE(14365)] = 254243, + [SMALL_STATE(14366)] = 254256, + [SMALL_STATE(14367)] = 254269, + [SMALL_STATE(14368)] = 254282, + [SMALL_STATE(14369)] = 254295, + [SMALL_STATE(14370)] = 254308, + [SMALL_STATE(14371)] = 254321, + [SMALL_STATE(14372)] = 254334, + [SMALL_STATE(14373)] = 254347, + [SMALL_STATE(14374)] = 254360, + [SMALL_STATE(14375)] = 254373, + [SMALL_STATE(14376)] = 254386, + [SMALL_STATE(14377)] = 254399, + [SMALL_STATE(14378)] = 254412, + [SMALL_STATE(14379)] = 254425, + [SMALL_STATE(14380)] = 254438, + [SMALL_STATE(14381)] = 254451, + [SMALL_STATE(14382)] = 254464, + [SMALL_STATE(14383)] = 254477, + [SMALL_STATE(14384)] = 254490, + [SMALL_STATE(14385)] = 254503, + [SMALL_STATE(14386)] = 254516, + [SMALL_STATE(14387)] = 254529, + [SMALL_STATE(14388)] = 254542, + [SMALL_STATE(14389)] = 254555, + [SMALL_STATE(14390)] = 254568, + [SMALL_STATE(14391)] = 254581, + [SMALL_STATE(14392)] = 254594, + [SMALL_STATE(14393)] = 254607, + [SMALL_STATE(14394)] = 254620, + [SMALL_STATE(14395)] = 254633, + [SMALL_STATE(14396)] = 254646, + [SMALL_STATE(14397)] = 254659, + [SMALL_STATE(14398)] = 254672, + [SMALL_STATE(14399)] = 254685, + [SMALL_STATE(14400)] = 254698, + [SMALL_STATE(14401)] = 254711, + [SMALL_STATE(14402)] = 254724, + [SMALL_STATE(14403)] = 254737, + [SMALL_STATE(14404)] = 254750, + [SMALL_STATE(14405)] = 254763, + [SMALL_STATE(14406)] = 254776, + [SMALL_STATE(14407)] = 254789, + [SMALL_STATE(14408)] = 254800, + [SMALL_STATE(14409)] = 254813, + [SMALL_STATE(14410)] = 254826, + [SMALL_STATE(14411)] = 254839, + [SMALL_STATE(14412)] = 254850, + [SMALL_STATE(14413)] = 254863, + [SMALL_STATE(14414)] = 254876, + [SMALL_STATE(14415)] = 254889, + [SMALL_STATE(14416)] = 254902, + [SMALL_STATE(14417)] = 254915, + [SMALL_STATE(14418)] = 254928, + [SMALL_STATE(14419)] = 254941, + [SMALL_STATE(14420)] = 254954, + [SMALL_STATE(14421)] = 254967, + [SMALL_STATE(14422)] = 254980, + [SMALL_STATE(14423)] = 254993, + [SMALL_STATE(14424)] = 255006, + [SMALL_STATE(14425)] = 255019, + [SMALL_STATE(14426)] = 255032, + [SMALL_STATE(14427)] = 255045, + [SMALL_STATE(14428)] = 255058, + [SMALL_STATE(14429)] = 255071, + [SMALL_STATE(14430)] = 255084, + [SMALL_STATE(14431)] = 255097, + [SMALL_STATE(14432)] = 255110, + [SMALL_STATE(14433)] = 255123, + [SMALL_STATE(14434)] = 255136, + [SMALL_STATE(14435)] = 255149, + [SMALL_STATE(14436)] = 255162, + [SMALL_STATE(14437)] = 255175, + [SMALL_STATE(14438)] = 255188, + [SMALL_STATE(14439)] = 255201, + [SMALL_STATE(14440)] = 255214, + [SMALL_STATE(14441)] = 255227, + [SMALL_STATE(14442)] = 255240, + [SMALL_STATE(14443)] = 255253, + [SMALL_STATE(14444)] = 255266, + [SMALL_STATE(14445)] = 255279, + [SMALL_STATE(14446)] = 255292, + [SMALL_STATE(14447)] = 255305, + [SMALL_STATE(14448)] = 255318, + [SMALL_STATE(14449)] = 255331, + [SMALL_STATE(14450)] = 255340, + [SMALL_STATE(14451)] = 255353, + [SMALL_STATE(14452)] = 255366, + [SMALL_STATE(14453)] = 255379, + [SMALL_STATE(14454)] = 255392, + [SMALL_STATE(14455)] = 255405, + [SMALL_STATE(14456)] = 255418, + [SMALL_STATE(14457)] = 255431, + [SMALL_STATE(14458)] = 255444, + [SMALL_STATE(14459)] = 255457, + [SMALL_STATE(14460)] = 255470, + [SMALL_STATE(14461)] = 255483, + [SMALL_STATE(14462)] = 255496, + [SMALL_STATE(14463)] = 255509, + [SMALL_STATE(14464)] = 255522, + [SMALL_STATE(14465)] = 255535, + [SMALL_STATE(14466)] = 255548, + [SMALL_STATE(14467)] = 255561, + [SMALL_STATE(14468)] = 255574, + [SMALL_STATE(14469)] = 255587, + [SMALL_STATE(14470)] = 255600, + [SMALL_STATE(14471)] = 255613, + [SMALL_STATE(14472)] = 255626, + [SMALL_STATE(14473)] = 255639, + [SMALL_STATE(14474)] = 255652, + [SMALL_STATE(14475)] = 255665, + [SMALL_STATE(14476)] = 255678, + [SMALL_STATE(14477)] = 255691, + [SMALL_STATE(14478)] = 255704, + [SMALL_STATE(14479)] = 255717, + [SMALL_STATE(14480)] = 255730, + [SMALL_STATE(14481)] = 255743, + [SMALL_STATE(14482)] = 255756, + [SMALL_STATE(14483)] = 255765, + [SMALL_STATE(14484)] = 255778, + [SMALL_STATE(14485)] = 255791, + [SMALL_STATE(14486)] = 255804, + [SMALL_STATE(14487)] = 255817, + [SMALL_STATE(14488)] = 255830, + [SMALL_STATE(14489)] = 255843, + [SMALL_STATE(14490)] = 255856, + [SMALL_STATE(14491)] = 255869, + [SMALL_STATE(14492)] = 255882, + [SMALL_STATE(14493)] = 255895, + [SMALL_STATE(14494)] = 255908, + [SMALL_STATE(14495)] = 255921, + [SMALL_STATE(14496)] = 255934, + [SMALL_STATE(14497)] = 255947, + [SMALL_STATE(14498)] = 255960, + [SMALL_STATE(14499)] = 255973, + [SMALL_STATE(14500)] = 255986, + [SMALL_STATE(14501)] = 255999, + [SMALL_STATE(14502)] = 256012, + [SMALL_STATE(14503)] = 256021, + [SMALL_STATE(14504)] = 256034, + [SMALL_STATE(14505)] = 256047, + [SMALL_STATE(14506)] = 256060, + [SMALL_STATE(14507)] = 256073, + [SMALL_STATE(14508)] = 256086, + [SMALL_STATE(14509)] = 256099, + [SMALL_STATE(14510)] = 256112, + [SMALL_STATE(14511)] = 256125, + [SMALL_STATE(14512)] = 256138, + [SMALL_STATE(14513)] = 256151, + [SMALL_STATE(14514)] = 256164, + [SMALL_STATE(14515)] = 256177, + [SMALL_STATE(14516)] = 256190, + [SMALL_STATE(14517)] = 256203, + [SMALL_STATE(14518)] = 256216, + [SMALL_STATE(14519)] = 256229, + [SMALL_STATE(14520)] = 256242, + [SMALL_STATE(14521)] = 256255, + [SMALL_STATE(14522)] = 256268, + [SMALL_STATE(14523)] = 256281, + [SMALL_STATE(14524)] = 256294, + [SMALL_STATE(14525)] = 256307, + [SMALL_STATE(14526)] = 256320, + [SMALL_STATE(14527)] = 256333, + [SMALL_STATE(14528)] = 256346, + [SMALL_STATE(14529)] = 256359, + [SMALL_STATE(14530)] = 256372, + [SMALL_STATE(14531)] = 256385, + [SMALL_STATE(14532)] = 256398, + [SMALL_STATE(14533)] = 256411, + [SMALL_STATE(14534)] = 256420, + [SMALL_STATE(14535)] = 256433, + [SMALL_STATE(14536)] = 256446, + [SMALL_STATE(14537)] = 256459, + [SMALL_STATE(14538)] = 256472, + [SMALL_STATE(14539)] = 256485, + [SMALL_STATE(14540)] = 256498, + [SMALL_STATE(14541)] = 256511, + [SMALL_STATE(14542)] = 256524, + [SMALL_STATE(14543)] = 256537, + [SMALL_STATE(14544)] = 256550, + [SMALL_STATE(14545)] = 256563, + [SMALL_STATE(14546)] = 256576, + [SMALL_STATE(14547)] = 256589, + [SMALL_STATE(14548)] = 256602, + [SMALL_STATE(14549)] = 256615, + [SMALL_STATE(14550)] = 256628, + [SMALL_STATE(14551)] = 256641, + [SMALL_STATE(14552)] = 256654, + [SMALL_STATE(14553)] = 256667, + [SMALL_STATE(14554)] = 256676, + [SMALL_STATE(14555)] = 256689, + [SMALL_STATE(14556)] = 256702, + [SMALL_STATE(14557)] = 256715, + [SMALL_STATE(14558)] = 256728, + [SMALL_STATE(14559)] = 256741, + [SMALL_STATE(14560)] = 256754, + [SMALL_STATE(14561)] = 256767, + [SMALL_STATE(14562)] = 256780, + [SMALL_STATE(14563)] = 256793, + [SMALL_STATE(14564)] = 256806, + [SMALL_STATE(14565)] = 256819, + [SMALL_STATE(14566)] = 256832, + [SMALL_STATE(14567)] = 256845, + [SMALL_STATE(14568)] = 256858, + [SMALL_STATE(14569)] = 256871, + [SMALL_STATE(14570)] = 256884, + [SMALL_STATE(14571)] = 256897, + [SMALL_STATE(14572)] = 256910, + [SMALL_STATE(14573)] = 256923, + [SMALL_STATE(14574)] = 256936, + [SMALL_STATE(14575)] = 256949, + [SMALL_STATE(14576)] = 256962, + [SMALL_STATE(14577)] = 256975, + [SMALL_STATE(14578)] = 256988, + [SMALL_STATE(14579)] = 257001, + [SMALL_STATE(14580)] = 257014, + [SMALL_STATE(14581)] = 257027, + [SMALL_STATE(14582)] = 257040, + [SMALL_STATE(14583)] = 257053, + [SMALL_STATE(14584)] = 257066, + [SMALL_STATE(14585)] = 257079, + [SMALL_STATE(14586)] = 257092, + [SMALL_STATE(14587)] = 257105, + [SMALL_STATE(14588)] = 257118, + [SMALL_STATE(14589)] = 257131, + [SMALL_STATE(14590)] = 257144, + [SMALL_STATE(14591)] = 257157, + [SMALL_STATE(14592)] = 257170, + [SMALL_STATE(14593)] = 257183, + [SMALL_STATE(14594)] = 257196, + [SMALL_STATE(14595)] = 257209, + [SMALL_STATE(14596)] = 257222, + [SMALL_STATE(14597)] = 257235, + [SMALL_STATE(14598)] = 257248, + [SMALL_STATE(14599)] = 257261, + [SMALL_STATE(14600)] = 257274, + [SMALL_STATE(14601)] = 257287, + [SMALL_STATE(14602)] = 257300, + [SMALL_STATE(14603)] = 257313, + [SMALL_STATE(14604)] = 257326, + [SMALL_STATE(14605)] = 257339, + [SMALL_STATE(14606)] = 257352, + [SMALL_STATE(14607)] = 257365, + [SMALL_STATE(14608)] = 257378, + [SMALL_STATE(14609)] = 257391, + [SMALL_STATE(14610)] = 257404, + [SMALL_STATE(14611)] = 257417, + [SMALL_STATE(14612)] = 257430, + [SMALL_STATE(14613)] = 257443, + [SMALL_STATE(14614)] = 257456, + [SMALL_STATE(14615)] = 257469, + [SMALL_STATE(14616)] = 257482, + [SMALL_STATE(14617)] = 257495, + [SMALL_STATE(14618)] = 257508, + [SMALL_STATE(14619)] = 257521, + [SMALL_STATE(14620)] = 257534, + [SMALL_STATE(14621)] = 257547, + [SMALL_STATE(14622)] = 257560, + [SMALL_STATE(14623)] = 257573, + [SMALL_STATE(14624)] = 257586, + [SMALL_STATE(14625)] = 257599, + [SMALL_STATE(14626)] = 257612, + [SMALL_STATE(14627)] = 257625, + [SMALL_STATE(14628)] = 257638, + [SMALL_STATE(14629)] = 257651, + [SMALL_STATE(14630)] = 257664, + [SMALL_STATE(14631)] = 257677, + [SMALL_STATE(14632)] = 257690, + [SMALL_STATE(14633)] = 257703, + [SMALL_STATE(14634)] = 257716, + [SMALL_STATE(14635)] = 257729, + [SMALL_STATE(14636)] = 257742, + [SMALL_STATE(14637)] = 257755, + [SMALL_STATE(14638)] = 257768, + [SMALL_STATE(14639)] = 257781, + [SMALL_STATE(14640)] = 257794, + [SMALL_STATE(14641)] = 257807, + [SMALL_STATE(14642)] = 257820, + [SMALL_STATE(14643)] = 257833, + [SMALL_STATE(14644)] = 257846, + [SMALL_STATE(14645)] = 257859, + [SMALL_STATE(14646)] = 257872, + [SMALL_STATE(14647)] = 257885, + [SMALL_STATE(14648)] = 257898, + [SMALL_STATE(14649)] = 257911, + [SMALL_STATE(14650)] = 257924, + [SMALL_STATE(14651)] = 257937, + [SMALL_STATE(14652)] = 257950, + [SMALL_STATE(14653)] = 257963, + [SMALL_STATE(14654)] = 257976, + [SMALL_STATE(14655)] = 257989, + [SMALL_STATE(14656)] = 258002, + [SMALL_STATE(14657)] = 258015, + [SMALL_STATE(14658)] = 258028, + [SMALL_STATE(14659)] = 258041, + [SMALL_STATE(14660)] = 258054, + [SMALL_STATE(14661)] = 258067, + [SMALL_STATE(14662)] = 258080, + [SMALL_STATE(14663)] = 258093, + [SMALL_STATE(14664)] = 258106, + [SMALL_STATE(14665)] = 258119, + [SMALL_STATE(14666)] = 258132, + [SMALL_STATE(14667)] = 258145, + [SMALL_STATE(14668)] = 258158, + [SMALL_STATE(14669)] = 258171, + [SMALL_STATE(14670)] = 258184, + [SMALL_STATE(14671)] = 258197, + [SMALL_STATE(14672)] = 258210, + [SMALL_STATE(14673)] = 258223, + [SMALL_STATE(14674)] = 258236, + [SMALL_STATE(14675)] = 258249, + [SMALL_STATE(14676)] = 258258, + [SMALL_STATE(14677)] = 258271, + [SMALL_STATE(14678)] = 258284, + [SMALL_STATE(14679)] = 258297, + [SMALL_STATE(14680)] = 258310, + [SMALL_STATE(14681)] = 258323, + [SMALL_STATE(14682)] = 258336, + [SMALL_STATE(14683)] = 258349, + [SMALL_STATE(14684)] = 258362, + [SMALL_STATE(14685)] = 258375, + [SMALL_STATE(14686)] = 258388, + [SMALL_STATE(14687)] = 258401, + [SMALL_STATE(14688)] = 258414, + [SMALL_STATE(14689)] = 258427, + [SMALL_STATE(14690)] = 258440, + [SMALL_STATE(14691)] = 258453, + [SMALL_STATE(14692)] = 258466, + [SMALL_STATE(14693)] = 258479, + [SMALL_STATE(14694)] = 258492, + [SMALL_STATE(14695)] = 258505, + [SMALL_STATE(14696)] = 258518, + [SMALL_STATE(14697)] = 258531, + [SMALL_STATE(14698)] = 258544, + [SMALL_STATE(14699)] = 258557, + [SMALL_STATE(14700)] = 258570, + [SMALL_STATE(14701)] = 258583, + [SMALL_STATE(14702)] = 258596, + [SMALL_STATE(14703)] = 258609, + [SMALL_STATE(14704)] = 258622, + [SMALL_STATE(14705)] = 258635, + [SMALL_STATE(14706)] = 258648, + [SMALL_STATE(14707)] = 258661, + [SMALL_STATE(14708)] = 258674, + [SMALL_STATE(14709)] = 258687, + [SMALL_STATE(14710)] = 258700, + [SMALL_STATE(14711)] = 258713, + [SMALL_STATE(14712)] = 258726, + [SMALL_STATE(14713)] = 258739, + [SMALL_STATE(14714)] = 258752, + [SMALL_STATE(14715)] = 258765, + [SMALL_STATE(14716)] = 258778, + [SMALL_STATE(14717)] = 258791, + [SMALL_STATE(14718)] = 258804, + [SMALL_STATE(14719)] = 258817, + [SMALL_STATE(14720)] = 258830, + [SMALL_STATE(14721)] = 258843, + [SMALL_STATE(14722)] = 258856, + [SMALL_STATE(14723)] = 258869, + [SMALL_STATE(14724)] = 258882, + [SMALL_STATE(14725)] = 258895, + [SMALL_STATE(14726)] = 258908, + [SMALL_STATE(14727)] = 258921, + [SMALL_STATE(14728)] = 258934, + [SMALL_STATE(14729)] = 258947, + [SMALL_STATE(14730)] = 258960, + [SMALL_STATE(14731)] = 258973, + [SMALL_STATE(14732)] = 258986, + [SMALL_STATE(14733)] = 258999, + [SMALL_STATE(14734)] = 259012, + [SMALL_STATE(14735)] = 259025, + [SMALL_STATE(14736)] = 259038, + [SMALL_STATE(14737)] = 259051, + [SMALL_STATE(14738)] = 259064, + [SMALL_STATE(14739)] = 259077, + [SMALL_STATE(14740)] = 259090, + [SMALL_STATE(14741)] = 259103, + [SMALL_STATE(14742)] = 259116, + [SMALL_STATE(14743)] = 259129, + [SMALL_STATE(14744)] = 259142, + [SMALL_STATE(14745)] = 259155, + [SMALL_STATE(14746)] = 259168, + [SMALL_STATE(14747)] = 259181, + [SMALL_STATE(14748)] = 259194, + [SMALL_STATE(14749)] = 259207, + [SMALL_STATE(14750)] = 259220, + [SMALL_STATE(14751)] = 259229, + [SMALL_STATE(14752)] = 259242, + [SMALL_STATE(14753)] = 259255, + [SMALL_STATE(14754)] = 259268, + [SMALL_STATE(14755)] = 259281, + [SMALL_STATE(14756)] = 259294, + [SMALL_STATE(14757)] = 259307, + [SMALL_STATE(14758)] = 259320, + [SMALL_STATE(14759)] = 259333, + [SMALL_STATE(14760)] = 259346, + [SMALL_STATE(14761)] = 259359, + [SMALL_STATE(14762)] = 259372, + [SMALL_STATE(14763)] = 259385, + [SMALL_STATE(14764)] = 259398, + [SMALL_STATE(14765)] = 259411, + [SMALL_STATE(14766)] = 259424, + [SMALL_STATE(14767)] = 259437, + [SMALL_STATE(14768)] = 259450, + [SMALL_STATE(14769)] = 259463, + [SMALL_STATE(14770)] = 259476, + [SMALL_STATE(14771)] = 259489, + [SMALL_STATE(14772)] = 259502, + [SMALL_STATE(14773)] = 259515, + [SMALL_STATE(14774)] = 259528, + [SMALL_STATE(14775)] = 259541, + [SMALL_STATE(14776)] = 259554, + [SMALL_STATE(14777)] = 259567, + [SMALL_STATE(14778)] = 259580, + [SMALL_STATE(14779)] = 259593, + [SMALL_STATE(14780)] = 259606, + [SMALL_STATE(14781)] = 259619, + [SMALL_STATE(14782)] = 259632, + [SMALL_STATE(14783)] = 259645, + [SMALL_STATE(14784)] = 259658, + [SMALL_STATE(14785)] = 259671, + [SMALL_STATE(14786)] = 259684, + [SMALL_STATE(14787)] = 259697, + [SMALL_STATE(14788)] = 259710, + [SMALL_STATE(14789)] = 259723, + [SMALL_STATE(14790)] = 259736, + [SMALL_STATE(14791)] = 259749, + [SMALL_STATE(14792)] = 259762, + [SMALL_STATE(14793)] = 259775, + [SMALL_STATE(14794)] = 259788, + [SMALL_STATE(14795)] = 259801, + [SMALL_STATE(14796)] = 259814, + [SMALL_STATE(14797)] = 259827, + [SMALL_STATE(14798)] = 259840, + [SMALL_STATE(14799)] = 259853, + [SMALL_STATE(14800)] = 259866, + [SMALL_STATE(14801)] = 259879, + [SMALL_STATE(14802)] = 259892, + [SMALL_STATE(14803)] = 259905, + [SMALL_STATE(14804)] = 259918, + [SMALL_STATE(14805)] = 259931, + [SMALL_STATE(14806)] = 259944, + [SMALL_STATE(14807)] = 259957, + [SMALL_STATE(14808)] = 259970, + [SMALL_STATE(14809)] = 259983, + [SMALL_STATE(14810)] = 259996, + [SMALL_STATE(14811)] = 260009, + [SMALL_STATE(14812)] = 260022, + [SMALL_STATE(14813)] = 260035, + [SMALL_STATE(14814)] = 260048, + [SMALL_STATE(14815)] = 260061, + [SMALL_STATE(14816)] = 260074, + [SMALL_STATE(14817)] = 260087, + [SMALL_STATE(14818)] = 260100, + [SMALL_STATE(14819)] = 260113, + [SMALL_STATE(14820)] = 260126, + [SMALL_STATE(14821)] = 260139, + [SMALL_STATE(14822)] = 260152, + [SMALL_STATE(14823)] = 260165, + [SMALL_STATE(14824)] = 260178, + [SMALL_STATE(14825)] = 260191, + [SMALL_STATE(14826)] = 260204, + [SMALL_STATE(14827)] = 260217, + [SMALL_STATE(14828)] = 260230, + [SMALL_STATE(14829)] = 260243, + [SMALL_STATE(14830)] = 260256, + [SMALL_STATE(14831)] = 260265, + [SMALL_STATE(14832)] = 260278, + [SMALL_STATE(14833)] = 260291, + [SMALL_STATE(14834)] = 260304, + [SMALL_STATE(14835)] = 260314, + [SMALL_STATE(14836)] = 260324, + [SMALL_STATE(14837)] = 260334, + [SMALL_STATE(14838)] = 260344, + [SMALL_STATE(14839)] = 260354, + [SMALL_STATE(14840)] = 260364, + [SMALL_STATE(14841)] = 260374, + [SMALL_STATE(14842)] = 260384, + [SMALL_STATE(14843)] = 260394, + [SMALL_STATE(14844)] = 260404, + [SMALL_STATE(14845)] = 260414, + [SMALL_STATE(14846)] = 260424, + [SMALL_STATE(14847)] = 260434, + [SMALL_STATE(14848)] = 260444, + [SMALL_STATE(14849)] = 260454, + [SMALL_STATE(14850)] = 260464, + [SMALL_STATE(14851)] = 260474, + [SMALL_STATE(14852)] = 260484, + [SMALL_STATE(14853)] = 260494, + [SMALL_STATE(14854)] = 260504, + [SMALL_STATE(14855)] = 260514, + [SMALL_STATE(14856)] = 260524, + [SMALL_STATE(14857)] = 260534, + [SMALL_STATE(14858)] = 260544, + [SMALL_STATE(14859)] = 260554, + [SMALL_STATE(14860)] = 260564, + [SMALL_STATE(14861)] = 260574, + [SMALL_STATE(14862)] = 260584, + [SMALL_STATE(14863)] = 260594, + [SMALL_STATE(14864)] = 260604, + [SMALL_STATE(14865)] = 260614, + [SMALL_STATE(14866)] = 260624, + [SMALL_STATE(14867)] = 260634, + [SMALL_STATE(14868)] = 260644, + [SMALL_STATE(14869)] = 260654, + [SMALL_STATE(14870)] = 260664, + [SMALL_STATE(14871)] = 260674, + [SMALL_STATE(14872)] = 260684, + [SMALL_STATE(14873)] = 260694, + [SMALL_STATE(14874)] = 260704, + [SMALL_STATE(14875)] = 260714, + [SMALL_STATE(14876)] = 260724, + [SMALL_STATE(14877)] = 260734, + [SMALL_STATE(14878)] = 260744, + [SMALL_STATE(14879)] = 260754, + [SMALL_STATE(14880)] = 260764, + [SMALL_STATE(14881)] = 260774, + [SMALL_STATE(14882)] = 260784, + [SMALL_STATE(14883)] = 260792, + [SMALL_STATE(14884)] = 260802, + [SMALL_STATE(14885)] = 260812, + [SMALL_STATE(14886)] = 260822, + [SMALL_STATE(14887)] = 260832, + [SMALL_STATE(14888)] = 260842, + [SMALL_STATE(14889)] = 260852, + [SMALL_STATE(14890)] = 260862, + [SMALL_STATE(14891)] = 260872, + [SMALL_STATE(14892)] = 260882, + [SMALL_STATE(14893)] = 260892, + [SMALL_STATE(14894)] = 260902, + [SMALL_STATE(14895)] = 260912, + [SMALL_STATE(14896)] = 260922, + [SMALL_STATE(14897)] = 260932, + [SMALL_STATE(14898)] = 260942, + [SMALL_STATE(14899)] = 260952, + [SMALL_STATE(14900)] = 260962, + [SMALL_STATE(14901)] = 260972, + [SMALL_STATE(14902)] = 260982, + [SMALL_STATE(14903)] = 260992, + [SMALL_STATE(14904)] = 261002, + [SMALL_STATE(14905)] = 261012, + [SMALL_STATE(14906)] = 261022, + [SMALL_STATE(14907)] = 261032, + [SMALL_STATE(14908)] = 261042, + [SMALL_STATE(14909)] = 261052, + [SMALL_STATE(14910)] = 261062, + [SMALL_STATE(14911)] = 261072, + [SMALL_STATE(14912)] = 261082, + [SMALL_STATE(14913)] = 261092, + [SMALL_STATE(14914)] = 261102, + [SMALL_STATE(14915)] = 261110, + [SMALL_STATE(14916)] = 261120, + [SMALL_STATE(14917)] = 261130, + [SMALL_STATE(14918)] = 261140, + [SMALL_STATE(14919)] = 261150, + [SMALL_STATE(14920)] = 261160, + [SMALL_STATE(14921)] = 261170, + [SMALL_STATE(14922)] = 261178, + [SMALL_STATE(14923)] = 261188, + [SMALL_STATE(14924)] = 261196, + [SMALL_STATE(14925)] = 261206, + [SMALL_STATE(14926)] = 261216, + [SMALL_STATE(14927)] = 261226, + [SMALL_STATE(14928)] = 261236, + [SMALL_STATE(14929)] = 261246, + [SMALL_STATE(14930)] = 261256, + [SMALL_STATE(14931)] = 261266, + [SMALL_STATE(14932)] = 261276, + [SMALL_STATE(14933)] = 261286, + [SMALL_STATE(14934)] = 261296, + [SMALL_STATE(14935)] = 261306, + [SMALL_STATE(14936)] = 261316, + [SMALL_STATE(14937)] = 261326, + [SMALL_STATE(14938)] = 261336, + [SMALL_STATE(14939)] = 261346, + [SMALL_STATE(14940)] = 261356, + [SMALL_STATE(14941)] = 261366, + [SMALL_STATE(14942)] = 261376, + [SMALL_STATE(14943)] = 261386, + [SMALL_STATE(14944)] = 261396, + [SMALL_STATE(14945)] = 261406, + [SMALL_STATE(14946)] = 261414, + [SMALL_STATE(14947)] = 261424, + [SMALL_STATE(14948)] = 261434, + [SMALL_STATE(14949)] = 261444, + [SMALL_STATE(14950)] = 261454, + [SMALL_STATE(14951)] = 261462, + [SMALL_STATE(14952)] = 261470, + [SMALL_STATE(14953)] = 261480, + [SMALL_STATE(14954)] = 261490, + [SMALL_STATE(14955)] = 261500, + [SMALL_STATE(14956)] = 261510, + [SMALL_STATE(14957)] = 261520, + [SMALL_STATE(14958)] = 261530, + [SMALL_STATE(14959)] = 261540, + [SMALL_STATE(14960)] = 261550, + [SMALL_STATE(14961)] = 261560, + [SMALL_STATE(14962)] = 261570, + [SMALL_STATE(14963)] = 261580, + [SMALL_STATE(14964)] = 261590, + [SMALL_STATE(14965)] = 261600, + [SMALL_STATE(14966)] = 261610, + [SMALL_STATE(14967)] = 261620, + [SMALL_STATE(14968)] = 261630, + [SMALL_STATE(14969)] = 261640, + [SMALL_STATE(14970)] = 261650, + [SMALL_STATE(14971)] = 261660, + [SMALL_STATE(14972)] = 261670, + [SMALL_STATE(14973)] = 261680, + [SMALL_STATE(14974)] = 261690, + [SMALL_STATE(14975)] = 261700, + [SMALL_STATE(14976)] = 261710, + [SMALL_STATE(14977)] = 261720, + [SMALL_STATE(14978)] = 261730, + [SMALL_STATE(14979)] = 261740, + [SMALL_STATE(14980)] = 261750, + [SMALL_STATE(14981)] = 261760, + [SMALL_STATE(14982)] = 261770, + [SMALL_STATE(14983)] = 261780, + [SMALL_STATE(14984)] = 261790, + [SMALL_STATE(14985)] = 261800, + [SMALL_STATE(14986)] = 261810, + [SMALL_STATE(14987)] = 261820, + [SMALL_STATE(14988)] = 261830, + [SMALL_STATE(14989)] = 261840, + [SMALL_STATE(14990)] = 261850, + [SMALL_STATE(14991)] = 261860, + [SMALL_STATE(14992)] = 261868, + [SMALL_STATE(14993)] = 261878, + [SMALL_STATE(14994)] = 261888, + [SMALL_STATE(14995)] = 261898, + [SMALL_STATE(14996)] = 261908, + [SMALL_STATE(14997)] = 261918, + [SMALL_STATE(14998)] = 261928, + [SMALL_STATE(14999)] = 261938, + [SMALL_STATE(15000)] = 261948, + [SMALL_STATE(15001)] = 261958, + [SMALL_STATE(15002)] = 261968, + [SMALL_STATE(15003)] = 261978, + [SMALL_STATE(15004)] = 261988, + [SMALL_STATE(15005)] = 261998, + [SMALL_STATE(15006)] = 262008, + [SMALL_STATE(15007)] = 262018, + [SMALL_STATE(15008)] = 262028, + [SMALL_STATE(15009)] = 262038, + [SMALL_STATE(15010)] = 262048, + [SMALL_STATE(15011)] = 262058, + [SMALL_STATE(15012)] = 262068, + [SMALL_STATE(15013)] = 262076, + [SMALL_STATE(15014)] = 262086, + [SMALL_STATE(15015)] = 262096, + [SMALL_STATE(15016)] = 262106, + [SMALL_STATE(15017)] = 262114, + [SMALL_STATE(15018)] = 262124, + [SMALL_STATE(15019)] = 262134, + [SMALL_STATE(15020)] = 262144, + [SMALL_STATE(15021)] = 262154, + [SMALL_STATE(15022)] = 262164, + [SMALL_STATE(15023)] = 262174, + [SMALL_STATE(15024)] = 262184, + [SMALL_STATE(15025)] = 262194, + [SMALL_STATE(15026)] = 262204, + [SMALL_STATE(15027)] = 262214, + [SMALL_STATE(15028)] = 262224, + [SMALL_STATE(15029)] = 262234, + [SMALL_STATE(15030)] = 262244, + [SMALL_STATE(15031)] = 262254, + [SMALL_STATE(15032)] = 262264, + [SMALL_STATE(15033)] = 262274, + [SMALL_STATE(15034)] = 262284, + [SMALL_STATE(15035)] = 262294, + [SMALL_STATE(15036)] = 262304, + [SMALL_STATE(15037)] = 262312, + [SMALL_STATE(15038)] = 262322, + [SMALL_STATE(15039)] = 262332, + [SMALL_STATE(15040)] = 262342, + [SMALL_STATE(15041)] = 262352, + [SMALL_STATE(15042)] = 262362, + [SMALL_STATE(15043)] = 262372, + [SMALL_STATE(15044)] = 262382, + [SMALL_STATE(15045)] = 262392, + [SMALL_STATE(15046)] = 262402, + [SMALL_STATE(15047)] = 262412, + [SMALL_STATE(15048)] = 262420, + [SMALL_STATE(15049)] = 262430, + [SMALL_STATE(15050)] = 262440, + [SMALL_STATE(15051)] = 262450, + [SMALL_STATE(15052)] = 262460, + [SMALL_STATE(15053)] = 262470, + [SMALL_STATE(15054)] = 262480, + [SMALL_STATE(15055)] = 262490, + [SMALL_STATE(15056)] = 262500, + [SMALL_STATE(15057)] = 262510, + [SMALL_STATE(15058)] = 262520, + [SMALL_STATE(15059)] = 262530, + [SMALL_STATE(15060)] = 262540, + [SMALL_STATE(15061)] = 262550, + [SMALL_STATE(15062)] = 262560, + [SMALL_STATE(15063)] = 262570, + [SMALL_STATE(15064)] = 262580, + [SMALL_STATE(15065)] = 262588, + [SMALL_STATE(15066)] = 262598, + [SMALL_STATE(15067)] = 262608, + [SMALL_STATE(15068)] = 262618, + [SMALL_STATE(15069)] = 262628, + [SMALL_STATE(15070)] = 262638, + [SMALL_STATE(15071)] = 262646, + [SMALL_STATE(15072)] = 262656, + [SMALL_STATE(15073)] = 262666, + [SMALL_STATE(15074)] = 262676, + [SMALL_STATE(15075)] = 262686, + [SMALL_STATE(15076)] = 262696, + [SMALL_STATE(15077)] = 262706, + [SMALL_STATE(15078)] = 262716, + [SMALL_STATE(15079)] = 262726, + [SMALL_STATE(15080)] = 262734, + [SMALL_STATE(15081)] = 262744, + [SMALL_STATE(15082)] = 262754, + [SMALL_STATE(15083)] = 262764, + [SMALL_STATE(15084)] = 262774, + [SMALL_STATE(15085)] = 262784, + [SMALL_STATE(15086)] = 262794, + [SMALL_STATE(15087)] = 262804, + [SMALL_STATE(15088)] = 262814, + [SMALL_STATE(15089)] = 262822, + [SMALL_STATE(15090)] = 262832, + [SMALL_STATE(15091)] = 262842, + [SMALL_STATE(15092)] = 262850, + [SMALL_STATE(15093)] = 262860, + [SMALL_STATE(15094)] = 262870, + [SMALL_STATE(15095)] = 262880, + [SMALL_STATE(15096)] = 262890, + [SMALL_STATE(15097)] = 262900, + [SMALL_STATE(15098)] = 262910, + [SMALL_STATE(15099)] = 262920, + [SMALL_STATE(15100)] = 262930, + [SMALL_STATE(15101)] = 262940, + [SMALL_STATE(15102)] = 262948, + [SMALL_STATE(15103)] = 262958, + [SMALL_STATE(15104)] = 262968, + [SMALL_STATE(15105)] = 262978, + [SMALL_STATE(15106)] = 262988, + [SMALL_STATE(15107)] = 262998, + [SMALL_STATE(15108)] = 263006, + [SMALL_STATE(15109)] = 263016, + [SMALL_STATE(15110)] = 263026, + [SMALL_STATE(15111)] = 263036, + [SMALL_STATE(15112)] = 263046, + [SMALL_STATE(15113)] = 263056, + [SMALL_STATE(15114)] = 263066, + [SMALL_STATE(15115)] = 263076, + [SMALL_STATE(15116)] = 263086, + [SMALL_STATE(15117)] = 263096, + [SMALL_STATE(15118)] = 263106, + [SMALL_STATE(15119)] = 263116, + [SMALL_STATE(15120)] = 263126, + [SMALL_STATE(15121)] = 263133, + [SMALL_STATE(15122)] = 263140, + [SMALL_STATE(15123)] = 263147, + [SMALL_STATE(15124)] = 263154, + [SMALL_STATE(15125)] = 263161, + [SMALL_STATE(15126)] = 263168, + [SMALL_STATE(15127)] = 263175, + [SMALL_STATE(15128)] = 263182, + [SMALL_STATE(15129)] = 263189, + [SMALL_STATE(15130)] = 263196, + [SMALL_STATE(15131)] = 263203, + [SMALL_STATE(15132)] = 263210, + [SMALL_STATE(15133)] = 263217, + [SMALL_STATE(15134)] = 263224, + [SMALL_STATE(15135)] = 263231, + [SMALL_STATE(15136)] = 263238, + [SMALL_STATE(15137)] = 263245, + [SMALL_STATE(15138)] = 263252, + [SMALL_STATE(15139)] = 263259, + [SMALL_STATE(15140)] = 263266, + [SMALL_STATE(15141)] = 263273, + [SMALL_STATE(15142)] = 263280, + [SMALL_STATE(15143)] = 263287, + [SMALL_STATE(15144)] = 263294, + [SMALL_STATE(15145)] = 263301, + [SMALL_STATE(15146)] = 263308, + [SMALL_STATE(15147)] = 263315, + [SMALL_STATE(15148)] = 263322, + [SMALL_STATE(15149)] = 263329, + [SMALL_STATE(15150)] = 263336, + [SMALL_STATE(15151)] = 263343, + [SMALL_STATE(15152)] = 263350, + [SMALL_STATE(15153)] = 263357, + [SMALL_STATE(15154)] = 263364, + [SMALL_STATE(15155)] = 263371, + [SMALL_STATE(15156)] = 263378, + [SMALL_STATE(15157)] = 263385, + [SMALL_STATE(15158)] = 263392, + [SMALL_STATE(15159)] = 263399, + [SMALL_STATE(15160)] = 263406, + [SMALL_STATE(15161)] = 263413, + [SMALL_STATE(15162)] = 263420, + [SMALL_STATE(15163)] = 263427, + [SMALL_STATE(15164)] = 263434, + [SMALL_STATE(15165)] = 263441, + [SMALL_STATE(15166)] = 263448, + [SMALL_STATE(15167)] = 263455, + [SMALL_STATE(15168)] = 263462, + [SMALL_STATE(15169)] = 263469, + [SMALL_STATE(15170)] = 263476, + [SMALL_STATE(15171)] = 263483, + [SMALL_STATE(15172)] = 263490, + [SMALL_STATE(15173)] = 263497, + [SMALL_STATE(15174)] = 263504, + [SMALL_STATE(15175)] = 263511, + [SMALL_STATE(15176)] = 263518, + [SMALL_STATE(15177)] = 263525, + [SMALL_STATE(15178)] = 263532, + [SMALL_STATE(15179)] = 263539, + [SMALL_STATE(15180)] = 263546, + [SMALL_STATE(15181)] = 263553, + [SMALL_STATE(15182)] = 263560, + [SMALL_STATE(15183)] = 263567, + [SMALL_STATE(15184)] = 263574, + [SMALL_STATE(15185)] = 263581, + [SMALL_STATE(15186)] = 263588, + [SMALL_STATE(15187)] = 263595, + [SMALL_STATE(15188)] = 263602, + [SMALL_STATE(15189)] = 263609, + [SMALL_STATE(15190)] = 263616, + [SMALL_STATE(15191)] = 263623, + [SMALL_STATE(15192)] = 263630, + [SMALL_STATE(15193)] = 263637, + [SMALL_STATE(15194)] = 263644, + [SMALL_STATE(15195)] = 263651, + [SMALL_STATE(15196)] = 263658, + [SMALL_STATE(15197)] = 263665, + [SMALL_STATE(15198)] = 263672, + [SMALL_STATE(15199)] = 263679, + [SMALL_STATE(15200)] = 263686, + [SMALL_STATE(15201)] = 263693, + [SMALL_STATE(15202)] = 263700, + [SMALL_STATE(15203)] = 263707, + [SMALL_STATE(15204)] = 263714, + [SMALL_STATE(15205)] = 263721, + [SMALL_STATE(15206)] = 263728, + [SMALL_STATE(15207)] = 263735, + [SMALL_STATE(15208)] = 263742, + [SMALL_STATE(15209)] = 263749, + [SMALL_STATE(15210)] = 263756, + [SMALL_STATE(15211)] = 263763, + [SMALL_STATE(15212)] = 263770, + [SMALL_STATE(15213)] = 263777, + [SMALL_STATE(15214)] = 263784, + [SMALL_STATE(15215)] = 263791, + [SMALL_STATE(15216)] = 263798, + [SMALL_STATE(15217)] = 263805, + [SMALL_STATE(15218)] = 263812, + [SMALL_STATE(15219)] = 263819, + [SMALL_STATE(15220)] = 263826, + [SMALL_STATE(15221)] = 263833, + [SMALL_STATE(15222)] = 263840, + [SMALL_STATE(15223)] = 263847, + [SMALL_STATE(15224)] = 263854, + [SMALL_STATE(15225)] = 263861, + [SMALL_STATE(15226)] = 263868, + [SMALL_STATE(15227)] = 263875, + [SMALL_STATE(15228)] = 263882, + [SMALL_STATE(15229)] = 263889, + [SMALL_STATE(15230)] = 263896, + [SMALL_STATE(15231)] = 263903, + [SMALL_STATE(15232)] = 263910, + [SMALL_STATE(15233)] = 263917, + [SMALL_STATE(15234)] = 263924, + [SMALL_STATE(15235)] = 263931, + [SMALL_STATE(15236)] = 263938, + [SMALL_STATE(15237)] = 263945, + [SMALL_STATE(15238)] = 263952, + [SMALL_STATE(15239)] = 263959, + [SMALL_STATE(15240)] = 263966, + [SMALL_STATE(15241)] = 263973, + [SMALL_STATE(15242)] = 263980, + [SMALL_STATE(15243)] = 263987, + [SMALL_STATE(15244)] = 263994, + [SMALL_STATE(15245)] = 264001, + [SMALL_STATE(15246)] = 264008, + [SMALL_STATE(15247)] = 264015, + [SMALL_STATE(15248)] = 264022, + [SMALL_STATE(15249)] = 264029, + [SMALL_STATE(15250)] = 264036, + [SMALL_STATE(15251)] = 264043, + [SMALL_STATE(15252)] = 264050, + [SMALL_STATE(15253)] = 264057, + [SMALL_STATE(15254)] = 264064, + [SMALL_STATE(15255)] = 264071, + [SMALL_STATE(15256)] = 264078, + [SMALL_STATE(15257)] = 264085, + [SMALL_STATE(15258)] = 264092, + [SMALL_STATE(15259)] = 264099, + [SMALL_STATE(15260)] = 264106, + [SMALL_STATE(15261)] = 264113, + [SMALL_STATE(15262)] = 264120, + [SMALL_STATE(15263)] = 264127, + [SMALL_STATE(15264)] = 264134, + [SMALL_STATE(15265)] = 264141, + [SMALL_STATE(15266)] = 264148, + [SMALL_STATE(15267)] = 264155, + [SMALL_STATE(15268)] = 264162, + [SMALL_STATE(15269)] = 264169, + [SMALL_STATE(15270)] = 264176, + [SMALL_STATE(15271)] = 264183, + [SMALL_STATE(15272)] = 264190, + [SMALL_STATE(15273)] = 264197, + [SMALL_STATE(15274)] = 264204, + [SMALL_STATE(15275)] = 264211, + [SMALL_STATE(15276)] = 264218, + [SMALL_STATE(15277)] = 264225, + [SMALL_STATE(15278)] = 264232, + [SMALL_STATE(15279)] = 264239, + [SMALL_STATE(15280)] = 264246, + [SMALL_STATE(15281)] = 264253, + [SMALL_STATE(15282)] = 264260, + [SMALL_STATE(15283)] = 264267, + [SMALL_STATE(15284)] = 264274, + [SMALL_STATE(15285)] = 264281, + [SMALL_STATE(15286)] = 264288, + [SMALL_STATE(15287)] = 264295, + [SMALL_STATE(15288)] = 264302, + [SMALL_STATE(15289)] = 264309, + [SMALL_STATE(15290)] = 264316, + [SMALL_STATE(15291)] = 264323, + [SMALL_STATE(15292)] = 264330, + [SMALL_STATE(15293)] = 264337, + [SMALL_STATE(15294)] = 264344, + [SMALL_STATE(15295)] = 264351, + [SMALL_STATE(15296)] = 264358, + [SMALL_STATE(15297)] = 264365, + [SMALL_STATE(15298)] = 264372, + [SMALL_STATE(15299)] = 264379, + [SMALL_STATE(15300)] = 264386, + [SMALL_STATE(15301)] = 264393, + [SMALL_STATE(15302)] = 264400, + [SMALL_STATE(15303)] = 264407, + [SMALL_STATE(15304)] = 264414, + [SMALL_STATE(15305)] = 264421, + [SMALL_STATE(15306)] = 264428, + [SMALL_STATE(15307)] = 264435, + [SMALL_STATE(15308)] = 264442, + [SMALL_STATE(15309)] = 264449, + [SMALL_STATE(15310)] = 264456, + [SMALL_STATE(15311)] = 264463, + [SMALL_STATE(15312)] = 264470, + [SMALL_STATE(15313)] = 264477, + [SMALL_STATE(15314)] = 264484, + [SMALL_STATE(15315)] = 264491, + [SMALL_STATE(15316)] = 264498, + [SMALL_STATE(15317)] = 264505, + [SMALL_STATE(15318)] = 264512, + [SMALL_STATE(15319)] = 264519, + [SMALL_STATE(15320)] = 264526, + [SMALL_STATE(15321)] = 264533, + [SMALL_STATE(15322)] = 264540, + [SMALL_STATE(15323)] = 264547, + [SMALL_STATE(15324)] = 264554, + [SMALL_STATE(15325)] = 264561, + [SMALL_STATE(15326)] = 264568, + [SMALL_STATE(15327)] = 264575, + [SMALL_STATE(15328)] = 264582, + [SMALL_STATE(15329)] = 264589, + [SMALL_STATE(15330)] = 264596, + [SMALL_STATE(15331)] = 264603, + [SMALL_STATE(15332)] = 264610, + [SMALL_STATE(15333)] = 264617, + [SMALL_STATE(15334)] = 264624, + [SMALL_STATE(15335)] = 264631, + [SMALL_STATE(15336)] = 264638, + [SMALL_STATE(15337)] = 264645, + [SMALL_STATE(15338)] = 264652, + [SMALL_STATE(15339)] = 264659, + [SMALL_STATE(15340)] = 264666, + [SMALL_STATE(15341)] = 264673, + [SMALL_STATE(15342)] = 264680, + [SMALL_STATE(15343)] = 264687, + [SMALL_STATE(15344)] = 264694, + [SMALL_STATE(15345)] = 264701, + [SMALL_STATE(15346)] = 264708, + [SMALL_STATE(15347)] = 264715, + [SMALL_STATE(15348)] = 264722, + [SMALL_STATE(15349)] = 264729, + [SMALL_STATE(15350)] = 264736, + [SMALL_STATE(15351)] = 264743, + [SMALL_STATE(15352)] = 264750, + [SMALL_STATE(15353)] = 264757, + [SMALL_STATE(15354)] = 264764, + [SMALL_STATE(15355)] = 264771, + [SMALL_STATE(15356)] = 264778, + [SMALL_STATE(15357)] = 264785, + [SMALL_STATE(15358)] = 264792, + [SMALL_STATE(15359)] = 264799, + [SMALL_STATE(15360)] = 264806, + [SMALL_STATE(15361)] = 264813, + [SMALL_STATE(15362)] = 264820, + [SMALL_STATE(15363)] = 264827, + [SMALL_STATE(15364)] = 264834, + [SMALL_STATE(15365)] = 264841, + [SMALL_STATE(15366)] = 264848, + [SMALL_STATE(15367)] = 264855, + [SMALL_STATE(15368)] = 264862, + [SMALL_STATE(15369)] = 264869, + [SMALL_STATE(15370)] = 264876, + [SMALL_STATE(15371)] = 264883, + [SMALL_STATE(15372)] = 264890, + [SMALL_STATE(15373)] = 264897, + [SMALL_STATE(15374)] = 264904, + [SMALL_STATE(15375)] = 264911, + [SMALL_STATE(15376)] = 264918, + [SMALL_STATE(15377)] = 264925, + [SMALL_STATE(15378)] = 264932, + [SMALL_STATE(15379)] = 264939, + [SMALL_STATE(15380)] = 264946, + [SMALL_STATE(15381)] = 264953, + [SMALL_STATE(15382)] = 264960, + [SMALL_STATE(15383)] = 264967, + [SMALL_STATE(15384)] = 264974, + [SMALL_STATE(15385)] = 264981, + [SMALL_STATE(15386)] = 264988, + [SMALL_STATE(15387)] = 264995, + [SMALL_STATE(15388)] = 265002, + [SMALL_STATE(15389)] = 265009, + [SMALL_STATE(15390)] = 265016, + [SMALL_STATE(15391)] = 265023, + [SMALL_STATE(15392)] = 265030, + [SMALL_STATE(15393)] = 265037, + [SMALL_STATE(15394)] = 265044, + [SMALL_STATE(15395)] = 265051, + [SMALL_STATE(15396)] = 265058, + [SMALL_STATE(15397)] = 265065, + [SMALL_STATE(15398)] = 265072, + [SMALL_STATE(15399)] = 265079, + [SMALL_STATE(15400)] = 265086, + [SMALL_STATE(15401)] = 265093, + [SMALL_STATE(15402)] = 265100, + [SMALL_STATE(15403)] = 265107, + [SMALL_STATE(15404)] = 265114, + [SMALL_STATE(15405)] = 265121, + [SMALL_STATE(15406)] = 265128, + [SMALL_STATE(15407)] = 265135, + [SMALL_STATE(15408)] = 265142, + [SMALL_STATE(15409)] = 265149, + [SMALL_STATE(15410)] = 265156, + [SMALL_STATE(15411)] = 265163, + [SMALL_STATE(15412)] = 265170, + [SMALL_STATE(15413)] = 265177, + [SMALL_STATE(15414)] = 265184, + [SMALL_STATE(15415)] = 265191, + [SMALL_STATE(15416)] = 265198, + [SMALL_STATE(15417)] = 265205, + [SMALL_STATE(15418)] = 265212, + [SMALL_STATE(15419)] = 265219, + [SMALL_STATE(15420)] = 265226, + [SMALL_STATE(15421)] = 265233, + [SMALL_STATE(15422)] = 265240, + [SMALL_STATE(15423)] = 265247, + [SMALL_STATE(15424)] = 265254, + [SMALL_STATE(15425)] = 265261, + [SMALL_STATE(15426)] = 265268, + [SMALL_STATE(15427)] = 265275, + [SMALL_STATE(15428)] = 265282, + [SMALL_STATE(15429)] = 265289, + [SMALL_STATE(15430)] = 265296, + [SMALL_STATE(15431)] = 265303, + [SMALL_STATE(15432)] = 265310, + [SMALL_STATE(15433)] = 265317, + [SMALL_STATE(15434)] = 265324, + [SMALL_STATE(15435)] = 265331, + [SMALL_STATE(15436)] = 265338, + [SMALL_STATE(15437)] = 265345, + [SMALL_STATE(15438)] = 265352, + [SMALL_STATE(15439)] = 265359, + [SMALL_STATE(15440)] = 265366, + [SMALL_STATE(15441)] = 265373, + [SMALL_STATE(15442)] = 265380, + [SMALL_STATE(15443)] = 265387, + [SMALL_STATE(15444)] = 265394, + [SMALL_STATE(15445)] = 265401, + [SMALL_STATE(15446)] = 265408, + [SMALL_STATE(15447)] = 265415, + [SMALL_STATE(15448)] = 265422, + [SMALL_STATE(15449)] = 265429, + [SMALL_STATE(15450)] = 265436, + [SMALL_STATE(15451)] = 265443, + [SMALL_STATE(15452)] = 265450, + [SMALL_STATE(15453)] = 265457, + [SMALL_STATE(15454)] = 265464, + [SMALL_STATE(15455)] = 265471, + [SMALL_STATE(15456)] = 265478, + [SMALL_STATE(15457)] = 265485, + [SMALL_STATE(15458)] = 265492, + [SMALL_STATE(15459)] = 265499, + [SMALL_STATE(15460)] = 265506, + [SMALL_STATE(15461)] = 265513, + [SMALL_STATE(15462)] = 265520, + [SMALL_STATE(15463)] = 265527, + [SMALL_STATE(15464)] = 265534, + [SMALL_STATE(15465)] = 265541, + [SMALL_STATE(15466)] = 265548, + [SMALL_STATE(15467)] = 265555, + [SMALL_STATE(15468)] = 265562, + [SMALL_STATE(15469)] = 265569, + [SMALL_STATE(15470)] = 265576, + [SMALL_STATE(15471)] = 265583, + [SMALL_STATE(15472)] = 265590, + [SMALL_STATE(15473)] = 265597, + [SMALL_STATE(15474)] = 265604, + [SMALL_STATE(15475)] = 265611, + [SMALL_STATE(15476)] = 265618, + [SMALL_STATE(15477)] = 265625, + [SMALL_STATE(15478)] = 265632, + [SMALL_STATE(15479)] = 265639, + [SMALL_STATE(15480)] = 265646, + [SMALL_STATE(15481)] = 265653, + [SMALL_STATE(15482)] = 265660, + [SMALL_STATE(15483)] = 265667, + [SMALL_STATE(15484)] = 265674, + [SMALL_STATE(15485)] = 265681, + [SMALL_STATE(15486)] = 265688, + [SMALL_STATE(15487)] = 265695, + [SMALL_STATE(15488)] = 265702, + [SMALL_STATE(15489)] = 265709, + [SMALL_STATE(15490)] = 265716, + [SMALL_STATE(15491)] = 265723, + [SMALL_STATE(15492)] = 265730, + [SMALL_STATE(15493)] = 265737, + [SMALL_STATE(15494)] = 265744, + [SMALL_STATE(15495)] = 265751, + [SMALL_STATE(15496)] = 265758, + [SMALL_STATE(15497)] = 265765, + [SMALL_STATE(15498)] = 265772, + [SMALL_STATE(15499)] = 265779, + [SMALL_STATE(15500)] = 265786, + [SMALL_STATE(15501)] = 265793, + [SMALL_STATE(15502)] = 265800, + [SMALL_STATE(15503)] = 265807, + [SMALL_STATE(15504)] = 265814, + [SMALL_STATE(15505)] = 265821, + [SMALL_STATE(15506)] = 265828, + [SMALL_STATE(15507)] = 265835, + [SMALL_STATE(15508)] = 265842, + [SMALL_STATE(15509)] = 265849, + [SMALL_STATE(15510)] = 265856, + [SMALL_STATE(15511)] = 265863, + [SMALL_STATE(15512)] = 265870, + [SMALL_STATE(15513)] = 265877, + [SMALL_STATE(15514)] = 265884, + [SMALL_STATE(15515)] = 265891, + [SMALL_STATE(15516)] = 265898, + [SMALL_STATE(15517)] = 265905, + [SMALL_STATE(15518)] = 265912, + [SMALL_STATE(15519)] = 265919, + [SMALL_STATE(15520)] = 265926, + [SMALL_STATE(15521)] = 265933, + [SMALL_STATE(15522)] = 265940, + [SMALL_STATE(15523)] = 265947, + [SMALL_STATE(15524)] = 265954, + [SMALL_STATE(15525)] = 265961, + [SMALL_STATE(15526)] = 265968, + [SMALL_STATE(15527)] = 265975, + [SMALL_STATE(15528)] = 265982, + [SMALL_STATE(15529)] = 265989, + [SMALL_STATE(15530)] = 265996, + [SMALL_STATE(15531)] = 266003, + [SMALL_STATE(15532)] = 266010, + [SMALL_STATE(15533)] = 266017, + [SMALL_STATE(15534)] = 266024, + [SMALL_STATE(15535)] = 266031, + [SMALL_STATE(15536)] = 266038, + [SMALL_STATE(15537)] = 266045, + [SMALL_STATE(15538)] = 266052, + [SMALL_STATE(15539)] = 266059, + [SMALL_STATE(15540)] = 266066, + [SMALL_STATE(15541)] = 266073, + [SMALL_STATE(15542)] = 266080, + [SMALL_STATE(15543)] = 266087, + [SMALL_STATE(15544)] = 266094, + [SMALL_STATE(15545)] = 266101, + [SMALL_STATE(15546)] = 266108, + [SMALL_STATE(15547)] = 266115, + [SMALL_STATE(15548)] = 266122, + [SMALL_STATE(15549)] = 266129, + [SMALL_STATE(15550)] = 266136, + [SMALL_STATE(15551)] = 266143, + [SMALL_STATE(15552)] = 266150, + [SMALL_STATE(15553)] = 266157, + [SMALL_STATE(15554)] = 266164, + [SMALL_STATE(15555)] = 266171, + [SMALL_STATE(15556)] = 266178, + [SMALL_STATE(15557)] = 266185, + [SMALL_STATE(15558)] = 266192, + [SMALL_STATE(15559)] = 266199, + [SMALL_STATE(15560)] = 266206, + [SMALL_STATE(15561)] = 266213, + [SMALL_STATE(15562)] = 266220, + [SMALL_STATE(15563)] = 266227, + [SMALL_STATE(15564)] = 266234, + [SMALL_STATE(15565)] = 266241, + [SMALL_STATE(15566)] = 266248, + [SMALL_STATE(15567)] = 266255, + [SMALL_STATE(15568)] = 266262, + [SMALL_STATE(15569)] = 266269, + [SMALL_STATE(15570)] = 266276, + [SMALL_STATE(15571)] = 266283, + [SMALL_STATE(15572)] = 266290, + [SMALL_STATE(15573)] = 266297, + [SMALL_STATE(15574)] = 266304, + [SMALL_STATE(15575)] = 266311, + [SMALL_STATE(15576)] = 266318, + [SMALL_STATE(15577)] = 266325, + [SMALL_STATE(15578)] = 266332, + [SMALL_STATE(15579)] = 266339, + [SMALL_STATE(15580)] = 266346, + [SMALL_STATE(15581)] = 266353, + [SMALL_STATE(15582)] = 266360, + [SMALL_STATE(15583)] = 266367, + [SMALL_STATE(15584)] = 266374, + [SMALL_STATE(15585)] = 266381, + [SMALL_STATE(15586)] = 266388, + [SMALL_STATE(15587)] = 266395, + [SMALL_STATE(15588)] = 266402, + [SMALL_STATE(15589)] = 266409, + [SMALL_STATE(15590)] = 266416, + [SMALL_STATE(15591)] = 266423, + [SMALL_STATE(15592)] = 266430, + [SMALL_STATE(15593)] = 266437, + [SMALL_STATE(15594)] = 266444, + [SMALL_STATE(15595)] = 266451, + [SMALL_STATE(15596)] = 266458, + [SMALL_STATE(15597)] = 266465, + [SMALL_STATE(15598)] = 266472, + [SMALL_STATE(15599)] = 266479, + [SMALL_STATE(15600)] = 266486, + [SMALL_STATE(15601)] = 266493, + [SMALL_STATE(15602)] = 266500, + [SMALL_STATE(15603)] = 266507, + [SMALL_STATE(15604)] = 266514, + [SMALL_STATE(15605)] = 266521, + [SMALL_STATE(15606)] = 266528, + [SMALL_STATE(15607)] = 266535, + [SMALL_STATE(15608)] = 266542, + [SMALL_STATE(15609)] = 266549, + [SMALL_STATE(15610)] = 266556, + [SMALL_STATE(15611)] = 266563, + [SMALL_STATE(15612)] = 266570, + [SMALL_STATE(15613)] = 266577, + [SMALL_STATE(15614)] = 266584, + [SMALL_STATE(15615)] = 266591, + [SMALL_STATE(15616)] = 266598, + [SMALL_STATE(15617)] = 266605, + [SMALL_STATE(15618)] = 266612, + [SMALL_STATE(15619)] = 266619, + [SMALL_STATE(15620)] = 266626, + [SMALL_STATE(15621)] = 266633, + [SMALL_STATE(15622)] = 266640, + [SMALL_STATE(15623)] = 266647, + [SMALL_STATE(15624)] = 266654, + [SMALL_STATE(15625)] = 266661, + [SMALL_STATE(15626)] = 266668, + [SMALL_STATE(15627)] = 266675, + [SMALL_STATE(15628)] = 266682, + [SMALL_STATE(15629)] = 266689, + [SMALL_STATE(15630)] = 266696, + [SMALL_STATE(15631)] = 266703, + [SMALL_STATE(15632)] = 266710, + [SMALL_STATE(15633)] = 266717, + [SMALL_STATE(15634)] = 266724, + [SMALL_STATE(15635)] = 266731, + [SMALL_STATE(15636)] = 266738, + [SMALL_STATE(15637)] = 266745, + [SMALL_STATE(15638)] = 266752, + [SMALL_STATE(15639)] = 266759, + [SMALL_STATE(15640)] = 266766, + [SMALL_STATE(15641)] = 266773, + [SMALL_STATE(15642)] = 266780, + [SMALL_STATE(15643)] = 266787, + [SMALL_STATE(15644)] = 266794, + [SMALL_STATE(15645)] = 266801, + [SMALL_STATE(15646)] = 266808, + [SMALL_STATE(15647)] = 266815, + [SMALL_STATE(15648)] = 266822, + [SMALL_STATE(15649)] = 266829, + [SMALL_STATE(15650)] = 266836, + [SMALL_STATE(15651)] = 266843, + [SMALL_STATE(15652)] = 266850, + [SMALL_STATE(15653)] = 266857, + [SMALL_STATE(15654)] = 266864, + [SMALL_STATE(15655)] = 266871, + [SMALL_STATE(15656)] = 266878, + [SMALL_STATE(15657)] = 266885, + [SMALL_STATE(15658)] = 266892, + [SMALL_STATE(15659)] = 266899, + [SMALL_STATE(15660)] = 266906, + [SMALL_STATE(15661)] = 266913, + [SMALL_STATE(15662)] = 266920, + [SMALL_STATE(15663)] = 266927, + [SMALL_STATE(15664)] = 266934, + [SMALL_STATE(15665)] = 266941, + [SMALL_STATE(15666)] = 266948, + [SMALL_STATE(15667)] = 266955, + [SMALL_STATE(15668)] = 266962, + [SMALL_STATE(15669)] = 266969, + [SMALL_STATE(15670)] = 266976, + [SMALL_STATE(15671)] = 266983, + [SMALL_STATE(15672)] = 266990, + [SMALL_STATE(15673)] = 266997, + [SMALL_STATE(15674)] = 267004, + [SMALL_STATE(15675)] = 267011, + [SMALL_STATE(15676)] = 267018, + [SMALL_STATE(15677)] = 267025, + [SMALL_STATE(15678)] = 267032, + [SMALL_STATE(15679)] = 267039, + [SMALL_STATE(15680)] = 267046, + [SMALL_STATE(15681)] = 267053, + [SMALL_STATE(15682)] = 267060, + [SMALL_STATE(15683)] = 267067, + [SMALL_STATE(15684)] = 267074, + [SMALL_STATE(15685)] = 267081, + [SMALL_STATE(15686)] = 267088, + [SMALL_STATE(15687)] = 267095, + [SMALL_STATE(15688)] = 267102, + [SMALL_STATE(15689)] = 267109, + [SMALL_STATE(15690)] = 267116, + [SMALL_STATE(15691)] = 267123, + [SMALL_STATE(15692)] = 267130, + [SMALL_STATE(15693)] = 267137, + [SMALL_STATE(15694)] = 267144, + [SMALL_STATE(15695)] = 267151, + [SMALL_STATE(15696)] = 267158, + [SMALL_STATE(15697)] = 267165, + [SMALL_STATE(15698)] = 267172, + [SMALL_STATE(15699)] = 267179, + [SMALL_STATE(15700)] = 267186, + [SMALL_STATE(15701)] = 267193, + [SMALL_STATE(15702)] = 267200, + [SMALL_STATE(15703)] = 267207, + [SMALL_STATE(15704)] = 267214, + [SMALL_STATE(15705)] = 267221, + [SMALL_STATE(15706)] = 267228, + [SMALL_STATE(15707)] = 267235, + [SMALL_STATE(15708)] = 267242, + [SMALL_STATE(15709)] = 267249, + [SMALL_STATE(15710)] = 267256, + [SMALL_STATE(15711)] = 267263, + [SMALL_STATE(15712)] = 267270, + [SMALL_STATE(15713)] = 267277, + [SMALL_STATE(15714)] = 267284, + [SMALL_STATE(15715)] = 267291, + [SMALL_STATE(15716)] = 267298, + [SMALL_STATE(15717)] = 267305, + [SMALL_STATE(15718)] = 267312, + [SMALL_STATE(15719)] = 267319, + [SMALL_STATE(15720)] = 267326, + [SMALL_STATE(15721)] = 267333, + [SMALL_STATE(15722)] = 267340, + [SMALL_STATE(15723)] = 267347, + [SMALL_STATE(15724)] = 267354, + [SMALL_STATE(15725)] = 267361, + [SMALL_STATE(15726)] = 267368, + [SMALL_STATE(15727)] = 267375, + [SMALL_STATE(15728)] = 267382, + [SMALL_STATE(15729)] = 267389, + [SMALL_STATE(15730)] = 267396, + [SMALL_STATE(15731)] = 267403, + [SMALL_STATE(15732)] = 267410, + [SMALL_STATE(15733)] = 267417, + [SMALL_STATE(15734)] = 267424, + [SMALL_STATE(15735)] = 267431, + [SMALL_STATE(15736)] = 267438, + [SMALL_STATE(15737)] = 267445, + [SMALL_STATE(15738)] = 267452, + [SMALL_STATE(15739)] = 267459, + [SMALL_STATE(15740)] = 267466, + [SMALL_STATE(15741)] = 267473, + [SMALL_STATE(15742)] = 267480, + [SMALL_STATE(15743)] = 267487, + [SMALL_STATE(15744)] = 267494, + [SMALL_STATE(15745)] = 267501, + [SMALL_STATE(15746)] = 267508, + [SMALL_STATE(15747)] = 267515, + [SMALL_STATE(15748)] = 267522, + [SMALL_STATE(15749)] = 267529, + [SMALL_STATE(15750)] = 267536, + [SMALL_STATE(15751)] = 267543, + [SMALL_STATE(15752)] = 267550, + [SMALL_STATE(15753)] = 267557, + [SMALL_STATE(15754)] = 267564, + [SMALL_STATE(15755)] = 267571, + [SMALL_STATE(15756)] = 267578, + [SMALL_STATE(15757)] = 267585, + [SMALL_STATE(15758)] = 267592, + [SMALL_STATE(15759)] = 267599, + [SMALL_STATE(15760)] = 267606, + [SMALL_STATE(15761)] = 267613, + [SMALL_STATE(15762)] = 267620, + [SMALL_STATE(15763)] = 267627, + [SMALL_STATE(15764)] = 267634, + [SMALL_STATE(15765)] = 267641, + [SMALL_STATE(15766)] = 267648, + [SMALL_STATE(15767)] = 267655, + [SMALL_STATE(15768)] = 267662, + [SMALL_STATE(15769)] = 267669, + [SMALL_STATE(15770)] = 267676, + [SMALL_STATE(15771)] = 267683, + [SMALL_STATE(15772)] = 267690, + [SMALL_STATE(15773)] = 267697, + [SMALL_STATE(15774)] = 267704, + [SMALL_STATE(15775)] = 267711, + [SMALL_STATE(15776)] = 267718, + [SMALL_STATE(15777)] = 267725, + [SMALL_STATE(15778)] = 267732, + [SMALL_STATE(15779)] = 267739, + [SMALL_STATE(15780)] = 267746, + [SMALL_STATE(15781)] = 267753, + [SMALL_STATE(15782)] = 267760, + [SMALL_STATE(15783)] = 267767, + [SMALL_STATE(15784)] = 267774, + [SMALL_STATE(15785)] = 267781, + [SMALL_STATE(15786)] = 267788, + [SMALL_STATE(15787)] = 267795, + [SMALL_STATE(15788)] = 267802, + [SMALL_STATE(15789)] = 267809, + [SMALL_STATE(15790)] = 267816, + [SMALL_STATE(15791)] = 267823, + [SMALL_STATE(15792)] = 267830, + [SMALL_STATE(15793)] = 267837, + [SMALL_STATE(15794)] = 267844, + [SMALL_STATE(15795)] = 267851, + [SMALL_STATE(15796)] = 267858, + [SMALL_STATE(15797)] = 267865, + [SMALL_STATE(15798)] = 267872, + [SMALL_STATE(15799)] = 267879, + [SMALL_STATE(15800)] = 267886, + [SMALL_STATE(15801)] = 267893, + [SMALL_STATE(15802)] = 267900, + [SMALL_STATE(15803)] = 267907, + [SMALL_STATE(15804)] = 267914, + [SMALL_STATE(15805)] = 267921, + [SMALL_STATE(15806)] = 267928, + [SMALL_STATE(15807)] = 267935, + [SMALL_STATE(15808)] = 267942, + [SMALL_STATE(15809)] = 267949, + [SMALL_STATE(15810)] = 267956, + [SMALL_STATE(15811)] = 267963, + [SMALL_STATE(15812)] = 267970, + [SMALL_STATE(15813)] = 267977, + [SMALL_STATE(15814)] = 267984, + [SMALL_STATE(15815)] = 267991, + [SMALL_STATE(15816)] = 267998, + [SMALL_STATE(15817)] = 268005, + [SMALL_STATE(15818)] = 268012, + [SMALL_STATE(15819)] = 268019, + [SMALL_STATE(15820)] = 268026, + [SMALL_STATE(15821)] = 268033, + [SMALL_STATE(15822)] = 268040, + [SMALL_STATE(15823)] = 268047, + [SMALL_STATE(15824)] = 268054, + [SMALL_STATE(15825)] = 268061, + [SMALL_STATE(15826)] = 268068, + [SMALL_STATE(15827)] = 268075, + [SMALL_STATE(15828)] = 268082, + [SMALL_STATE(15829)] = 268089, + [SMALL_STATE(15830)] = 268096, + [SMALL_STATE(15831)] = 268103, + [SMALL_STATE(15832)] = 268110, + [SMALL_STATE(15833)] = 268117, + [SMALL_STATE(15834)] = 268124, + [SMALL_STATE(15835)] = 268131, + [SMALL_STATE(15836)] = 268138, + [SMALL_STATE(15837)] = 268145, + [SMALL_STATE(15838)] = 268152, + [SMALL_STATE(15839)] = 268159, + [SMALL_STATE(15840)] = 268166, + [SMALL_STATE(15841)] = 268173, + [SMALL_STATE(15842)] = 268180, + [SMALL_STATE(15843)] = 268187, + [SMALL_STATE(15844)] = 268194, + [SMALL_STATE(15845)] = 268201, + [SMALL_STATE(15846)] = 268208, + [SMALL_STATE(15847)] = 268215, + [SMALL_STATE(15848)] = 268222, + [SMALL_STATE(15849)] = 268229, + [SMALL_STATE(15850)] = 268236, + [SMALL_STATE(15851)] = 268243, + [SMALL_STATE(15852)] = 268250, + [SMALL_STATE(15853)] = 268257, + [SMALL_STATE(15854)] = 268264, + [SMALL_STATE(15855)] = 268271, + [SMALL_STATE(15856)] = 268278, + [SMALL_STATE(15857)] = 268285, + [SMALL_STATE(15858)] = 268292, + [SMALL_STATE(15859)] = 268299, + [SMALL_STATE(15860)] = 268306, + [SMALL_STATE(15861)] = 268313, + [SMALL_STATE(15862)] = 268320, + [SMALL_STATE(15863)] = 268327, + [SMALL_STATE(15864)] = 268334, + [SMALL_STATE(15865)] = 268341, + [SMALL_STATE(15866)] = 268348, + [SMALL_STATE(15867)] = 268355, + [SMALL_STATE(15868)] = 268362, + [SMALL_STATE(15869)] = 268369, + [SMALL_STATE(15870)] = 268376, + [SMALL_STATE(15871)] = 268383, + [SMALL_STATE(15872)] = 268390, + [SMALL_STATE(15873)] = 268397, + [SMALL_STATE(15874)] = 268404, + [SMALL_STATE(15875)] = 268411, + [SMALL_STATE(15876)] = 268418, + [SMALL_STATE(15877)] = 268425, + [SMALL_STATE(15878)] = 268432, + [SMALL_STATE(15879)] = 268439, + [SMALL_STATE(15880)] = 268446, + [SMALL_STATE(15881)] = 268453, + [SMALL_STATE(15882)] = 268460, + [SMALL_STATE(15883)] = 268467, + [SMALL_STATE(15884)] = 268474, + [SMALL_STATE(15885)] = 268481, + [SMALL_STATE(15886)] = 268488, + [SMALL_STATE(15887)] = 268495, + [SMALL_STATE(15888)] = 268502, + [SMALL_STATE(15889)] = 268509, + [SMALL_STATE(15890)] = 268516, + [SMALL_STATE(15891)] = 268523, + [SMALL_STATE(15892)] = 268530, + [SMALL_STATE(15893)] = 268537, + [SMALL_STATE(15894)] = 268544, + [SMALL_STATE(15895)] = 268551, + [SMALL_STATE(15896)] = 268558, + [SMALL_STATE(15897)] = 268565, + [SMALL_STATE(15898)] = 268572, + [SMALL_STATE(15899)] = 268579, + [SMALL_STATE(15900)] = 268586, + [SMALL_STATE(15901)] = 268593, + [SMALL_STATE(15902)] = 268600, + [SMALL_STATE(15903)] = 268607, + [SMALL_STATE(15904)] = 268614, + [SMALL_STATE(15905)] = 268621, + [SMALL_STATE(15906)] = 268628, + [SMALL_STATE(15907)] = 268635, + [SMALL_STATE(15908)] = 268642, + [SMALL_STATE(15909)] = 268649, + [SMALL_STATE(15910)] = 268656, + [SMALL_STATE(15911)] = 268663, + [SMALL_STATE(15912)] = 268670, + [SMALL_STATE(15913)] = 268677, + [SMALL_STATE(15914)] = 268684, + [SMALL_STATE(15915)] = 268691, + [SMALL_STATE(15916)] = 268698, + [SMALL_STATE(15917)] = 268705, + [SMALL_STATE(15918)] = 268712, + [SMALL_STATE(15919)] = 268719, + [SMALL_STATE(15920)] = 268726, + [SMALL_STATE(15921)] = 268733, + [SMALL_STATE(15922)] = 268740, + [SMALL_STATE(15923)] = 268747, + [SMALL_STATE(15924)] = 268754, + [SMALL_STATE(15925)] = 268761, + [SMALL_STATE(15926)] = 268768, + [SMALL_STATE(15927)] = 268775, + [SMALL_STATE(15928)] = 268782, + [SMALL_STATE(15929)] = 268789, + [SMALL_STATE(15930)] = 268796, + [SMALL_STATE(15931)] = 268803, + [SMALL_STATE(15932)] = 268810, + [SMALL_STATE(15933)] = 268817, + [SMALL_STATE(15934)] = 268824, + [SMALL_STATE(15935)] = 268831, + [SMALL_STATE(15936)] = 268838, + [SMALL_STATE(15937)] = 268845, + [SMALL_STATE(15938)] = 268852, + [SMALL_STATE(15939)] = 268859, + [SMALL_STATE(15940)] = 268866, + [SMALL_STATE(15941)] = 268873, + [SMALL_STATE(15942)] = 268880, + [SMALL_STATE(15943)] = 268887, + [SMALL_STATE(15944)] = 268894, + [SMALL_STATE(15945)] = 268901, + [SMALL_STATE(15946)] = 268908, + [SMALL_STATE(15947)] = 268915, + [SMALL_STATE(15948)] = 268922, + [SMALL_STATE(15949)] = 268929, + [SMALL_STATE(15950)] = 268936, + [SMALL_STATE(15951)] = 268943, + [SMALL_STATE(15952)] = 268950, + [SMALL_STATE(15953)] = 268957, + [SMALL_STATE(15954)] = 268964, + [SMALL_STATE(15955)] = 268971, + [SMALL_STATE(15956)] = 268978, + [SMALL_STATE(15957)] = 268985, + [SMALL_STATE(15958)] = 268992, + [SMALL_STATE(15959)] = 268999, + [SMALL_STATE(15960)] = 269006, + [SMALL_STATE(15961)] = 269013, + [SMALL_STATE(15962)] = 269020, + [SMALL_STATE(15963)] = 269027, + [SMALL_STATE(15964)] = 269034, + [SMALL_STATE(15965)] = 269041, + [SMALL_STATE(15966)] = 269048, + [SMALL_STATE(15967)] = 269055, + [SMALL_STATE(15968)] = 269062, + [SMALL_STATE(15969)] = 269069, + [SMALL_STATE(15970)] = 269076, + [SMALL_STATE(15971)] = 269083, + [SMALL_STATE(15972)] = 269090, + [SMALL_STATE(15973)] = 269097, + [SMALL_STATE(15974)] = 269104, + [SMALL_STATE(15975)] = 269111, + [SMALL_STATE(15976)] = 269118, + [SMALL_STATE(15977)] = 269125, + [SMALL_STATE(15978)] = 269132, + [SMALL_STATE(15979)] = 269139, + [SMALL_STATE(15980)] = 269146, + [SMALL_STATE(15981)] = 269153, + [SMALL_STATE(15982)] = 269160, + [SMALL_STATE(15983)] = 269167, + [SMALL_STATE(15984)] = 269174, + [SMALL_STATE(15985)] = 269181, + [SMALL_STATE(15986)] = 269188, + [SMALL_STATE(15987)] = 269195, + [SMALL_STATE(15988)] = 269202, + [SMALL_STATE(15989)] = 269209, + [SMALL_STATE(15990)] = 269216, + [SMALL_STATE(15991)] = 269223, + [SMALL_STATE(15992)] = 269230, + [SMALL_STATE(15993)] = 269237, + [SMALL_STATE(15994)] = 269244, + [SMALL_STATE(15995)] = 269251, + [SMALL_STATE(15996)] = 269258, + [SMALL_STATE(15997)] = 269265, + [SMALL_STATE(15998)] = 269272, + [SMALL_STATE(15999)] = 269279, + [SMALL_STATE(16000)] = 269286, + [SMALL_STATE(16001)] = 269293, + [SMALL_STATE(16002)] = 269300, + [SMALL_STATE(16003)] = 269307, + [SMALL_STATE(16004)] = 269314, + [SMALL_STATE(16005)] = 269321, + [SMALL_STATE(16006)] = 269328, + [SMALL_STATE(16007)] = 269335, + [SMALL_STATE(16008)] = 269342, + [SMALL_STATE(16009)] = 269349, + [SMALL_STATE(16010)] = 269356, + [SMALL_STATE(16011)] = 269363, + [SMALL_STATE(16012)] = 269370, + [SMALL_STATE(16013)] = 269377, + [SMALL_STATE(16014)] = 269384, + [SMALL_STATE(16015)] = 269391, + [SMALL_STATE(16016)] = 269398, + [SMALL_STATE(16017)] = 269405, + [SMALL_STATE(16018)] = 269412, + [SMALL_STATE(16019)] = 269419, + [SMALL_STATE(16020)] = 269426, + [SMALL_STATE(16021)] = 269433, + [SMALL_STATE(16022)] = 269440, + [SMALL_STATE(16023)] = 269447, + [SMALL_STATE(16024)] = 269454, + [SMALL_STATE(16025)] = 269461, + [SMALL_STATE(16026)] = 269468, + [SMALL_STATE(16027)] = 269475, + [SMALL_STATE(16028)] = 269482, + [SMALL_STATE(16029)] = 269489, + [SMALL_STATE(16030)] = 269496, + [SMALL_STATE(16031)] = 269503, + [SMALL_STATE(16032)] = 269510, + [SMALL_STATE(16033)] = 269517, + [SMALL_STATE(16034)] = 269524, + [SMALL_STATE(16035)] = 269531, + [SMALL_STATE(16036)] = 269538, + [SMALL_STATE(16037)] = 269545, + [SMALL_STATE(16038)] = 269552, + [SMALL_STATE(16039)] = 269559, + [SMALL_STATE(16040)] = 269566, + [SMALL_STATE(16041)] = 269573, + [SMALL_STATE(16042)] = 269580, + [SMALL_STATE(16043)] = 269587, + [SMALL_STATE(16044)] = 269594, + [SMALL_STATE(16045)] = 269601, + [SMALL_STATE(16046)] = 269608, + [SMALL_STATE(16047)] = 269615, + [SMALL_STATE(16048)] = 269622, + [SMALL_STATE(16049)] = 269629, + [SMALL_STATE(16050)] = 269636, + [SMALL_STATE(16051)] = 269643, + [SMALL_STATE(16052)] = 269650, + [SMALL_STATE(16053)] = 269657, + [SMALL_STATE(16054)] = 269664, + [SMALL_STATE(16055)] = 269671, + [SMALL_STATE(16056)] = 269678, + [SMALL_STATE(16057)] = 269685, + [SMALL_STATE(16058)] = 269692, + [SMALL_STATE(16059)] = 269699, + [SMALL_STATE(16060)] = 269706, + [SMALL_STATE(16061)] = 269713, + [SMALL_STATE(16062)] = 269720, + [SMALL_STATE(16063)] = 269727, + [SMALL_STATE(16064)] = 269734, + [SMALL_STATE(16065)] = 269741, + [SMALL_STATE(16066)] = 269748, + [SMALL_STATE(16067)] = 269755, + [SMALL_STATE(16068)] = 269762, + [SMALL_STATE(16069)] = 269769, + [SMALL_STATE(16070)] = 269776, + [SMALL_STATE(16071)] = 269783, + [SMALL_STATE(16072)] = 269790, + [SMALL_STATE(16073)] = 269797, + [SMALL_STATE(16074)] = 269804, + [SMALL_STATE(16075)] = 269811, + [SMALL_STATE(16076)] = 269818, + [SMALL_STATE(16077)] = 269825, + [SMALL_STATE(16078)] = 269832, + [SMALL_STATE(16079)] = 269839, + [SMALL_STATE(16080)] = 269846, + [SMALL_STATE(16081)] = 269853, + [SMALL_STATE(16082)] = 269860, + [SMALL_STATE(16083)] = 269867, + [SMALL_STATE(16084)] = 269874, + [SMALL_STATE(16085)] = 269881, + [SMALL_STATE(16086)] = 269888, + [SMALL_STATE(16087)] = 269895, + [SMALL_STATE(16088)] = 269902, + [SMALL_STATE(16089)] = 269909, + [SMALL_STATE(16090)] = 269916, + [SMALL_STATE(16091)] = 269923, + [SMALL_STATE(16092)] = 269930, + [SMALL_STATE(16093)] = 269937, + [SMALL_STATE(16094)] = 269944, + [SMALL_STATE(16095)] = 269951, + [SMALL_STATE(16096)] = 269958, + [SMALL_STATE(16097)] = 269965, + [SMALL_STATE(16098)] = 269972, + [SMALL_STATE(16099)] = 269979, + [SMALL_STATE(16100)] = 269986, + [SMALL_STATE(16101)] = 269993, + [SMALL_STATE(16102)] = 270000, + [SMALL_STATE(16103)] = 270007, + [SMALL_STATE(16104)] = 270014, + [SMALL_STATE(16105)] = 270021, + [SMALL_STATE(16106)] = 270028, + [SMALL_STATE(16107)] = 270035, + [SMALL_STATE(16108)] = 270042, + [SMALL_STATE(16109)] = 270049, + [SMALL_STATE(16110)] = 270056, + [SMALL_STATE(16111)] = 270063, + [SMALL_STATE(16112)] = 270070, + [SMALL_STATE(16113)] = 270077, + [SMALL_STATE(16114)] = 270084, + [SMALL_STATE(16115)] = 270091, + [SMALL_STATE(16116)] = 270098, + [SMALL_STATE(16117)] = 270105, + [SMALL_STATE(16118)] = 270112, + [SMALL_STATE(16119)] = 270119, + [SMALL_STATE(16120)] = 270126, + [SMALL_STATE(16121)] = 270133, + [SMALL_STATE(16122)] = 270140, + [SMALL_STATE(16123)] = 270147, + [SMALL_STATE(16124)] = 270154, + [SMALL_STATE(16125)] = 270161, + [SMALL_STATE(16126)] = 270168, + [SMALL_STATE(16127)] = 270175, + [SMALL_STATE(16128)] = 270182, + [SMALL_STATE(16129)] = 270189, + [SMALL_STATE(16130)] = 270196, + [SMALL_STATE(16131)] = 270203, + [SMALL_STATE(16132)] = 270210, + [SMALL_STATE(16133)] = 270217, + [SMALL_STATE(16134)] = 270224, + [SMALL_STATE(16135)] = 270231, + [SMALL_STATE(16136)] = 270238, + [SMALL_STATE(16137)] = 270245, + [SMALL_STATE(16138)] = 270252, + [SMALL_STATE(16139)] = 270259, + [SMALL_STATE(16140)] = 270266, + [SMALL_STATE(16141)] = 270273, + [SMALL_STATE(16142)] = 270280, + [SMALL_STATE(16143)] = 270287, + [SMALL_STATE(16144)] = 270294, + [SMALL_STATE(16145)] = 270301, + [SMALL_STATE(16146)] = 270308, + [SMALL_STATE(16147)] = 270315, + [SMALL_STATE(16148)] = 270322, + [SMALL_STATE(16149)] = 270329, + [SMALL_STATE(16150)] = 270336, + [SMALL_STATE(16151)] = 270343, + [SMALL_STATE(16152)] = 270350, + [SMALL_STATE(16153)] = 270357, + [SMALL_STATE(16154)] = 270364, + [SMALL_STATE(16155)] = 270371, + [SMALL_STATE(16156)] = 270378, + [SMALL_STATE(16157)] = 270385, + [SMALL_STATE(16158)] = 270392, + [SMALL_STATE(16159)] = 270399, + [SMALL_STATE(16160)] = 270406, + [SMALL_STATE(16161)] = 270413, + [SMALL_STATE(16162)] = 270420, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -347990,5156 +1064479,12496 @@ 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(2473), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(557), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5118), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2515), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2810), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2624), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1115), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(684), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(557), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5118), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2515), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2810), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2624), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1115), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(684), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(557), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5118), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2515), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2810), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2624), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1115), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(684), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(557), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5118), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2515), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2810), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2624), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1115), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(684), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 61), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 61), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 93), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 93), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 61), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 61), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 93), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 93), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3783), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(5038), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_name, 1, 0, 0), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [479] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), SHIFT(2488), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2795), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2603), - [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1083), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(771), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(5197), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2488), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_name, 1, 0, 12), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5101), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4605), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(512), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5124), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1748), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5141), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(578), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(562), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(562), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4568), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 59), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 59), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 36), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 36), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 27), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 27), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 37), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 37), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2888), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 62), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 62), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 10), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 10), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 13), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(79), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 44), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 44), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 45), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 45), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 14), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 14), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 6), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 6), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 15), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 15), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 71), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 71), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 72), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 72), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 73), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 73), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 74), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 74), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 3, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 3, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unreachable, 1, 0, 0), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unreachable, 1, 0, 0), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 2, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 2, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 80), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 80), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 100), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 100), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 101), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 101), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 102), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 102), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 103), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 103), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 104), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 104), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 105), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 105), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 80), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 80), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 132), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 132), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 133), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 133), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 134), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 134), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 135), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 135), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 136), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 136), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 137), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 137), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 166), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 166), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 167), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 167), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 168), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 168), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undefined, 1, 0, 0), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undefined, 1, 0, 0), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 3, 0, 0), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 3, 0, 0), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 171), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 171), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 8, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 8, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 8, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 8, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 169), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 169), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 199), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 199), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 200), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 200), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_type, 2, 0, 6), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_type, 2, 0, 6), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 21), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 21), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 126), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 126), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 18), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 18), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 4, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 4, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 42), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 42), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 5, 0, 0), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 5, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 67), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 67), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 97), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 97), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 163), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 163), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 60), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 60), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 127), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 127), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 163), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 163), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 125), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 125), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 79), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 79), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 7, 0, 0), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 7, 0, 0), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 5, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 5, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 5, 0, 0), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 5, 0, 0), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 38), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 38), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 7, 0, 164), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 7, 0, 164), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 13), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 13), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 91), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 91), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 60), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 60), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 92), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 92), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 109), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 109), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 110), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 110), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 6, 0, 0), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 6, 0, 0), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 6, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 6, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 39), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 39), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 50), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 50), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 4, 0, 0), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 4, 0, 0), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 4, 0, 0), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 4, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 91), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 91), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 125), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 125), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 92), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 92), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 126), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 126), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 34), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 34), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 20), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 20), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 60), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 60), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 127), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 127), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 6, 0, 128), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 6, 0, 128), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 140), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 140), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 141), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 141), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 7, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 7, 0, 0), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 7, 0, 0), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 7, 0, 0), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 78), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 78), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(903), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5040), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2505), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2794), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2602), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1086), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(771), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(903), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5040), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2505), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2794), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2602), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1086), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(771), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(903), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5040), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2505), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2794), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2602), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1086), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(771), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(903), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5040), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2505), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2794), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2602), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1086), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(771), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_name, 1, 0, 12), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2889), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 172), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 143), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2348), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4861), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(116), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2524), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2833), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2642), - [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1106), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2524), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2833), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2642), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1106), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2524), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2833), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2642), - [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1106), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2524), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2833), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2642), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1106), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3211), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5070), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4419), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), - [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1440), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4860), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5050), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5154), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3288), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3289), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3291), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4539), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), - [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2511), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2805), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2611), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1093), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2511), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2805), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2611), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1093), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2511), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2805), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2611), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1093), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2511), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2805), - [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2611), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1093), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2245), - [3989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5064), - [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2526), - [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5058), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2834), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2643), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1110), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2244), - [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2245), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5064), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2526), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5058), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2834), - [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2643), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1110), - [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2244), - [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2245), - [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5064), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2526), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5058), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2834), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2643), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1110), - [4061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2244), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2245), - [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5064), - [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2526), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5058), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2834), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2643), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1110), - [4091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2244), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2520), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2827), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2638), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1101), - [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2520), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2827), - [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2638), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1101), - [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2520), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2827), - [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2638), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1101), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2520), - [4147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2827), - [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2638), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1101), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 226), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 226), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 89), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 89), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 177), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 177), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 178), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 178), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 81), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 81), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 179), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 179), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 180), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 180), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 35), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 35), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 181), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 181), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 182), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 182), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 183), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 183), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 184), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 184), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 185), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 185), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 186), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 186), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 90), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 90), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 187), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 187), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 188), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 188), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 189), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 189), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 190), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 190), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 191), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 191), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 33), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 33), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 192), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 192), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 193), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 193), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 194), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 194), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 35), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 35), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 82), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 82), - [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_match_statement, 6, 0, 58), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 58), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 83), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 83), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 90), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 90), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 16), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 16), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 22), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 22), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 144), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 144), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 22), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 22), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 201), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 201), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 202), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 202), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 203), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 203), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 204), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 204), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 205), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 205), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 206), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 206), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 207), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 207), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 208), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 208), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 209), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 209), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 210), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 210), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 211), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 211), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 212), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 212), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 213), - [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 213), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 214), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 214), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 215), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 215), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 216), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 216), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 217), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 217), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 218), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 218), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 219), - [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 219), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 220), - [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 220), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 221), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 221), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 222), - [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 222), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 223), - [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 223), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 224), - [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 224), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 225), - [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 225), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 227), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 227), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 228), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 228), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 229), - [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 229), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 59), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 59), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 145), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 145), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 90), - [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 90), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), - [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 146), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 146), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 147), - [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 147), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 148), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 148), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 232), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 232), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 233), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 233), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 234), - [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 234), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 149), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 149), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 235), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 235), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 236), - [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 236), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 237), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 237), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 238), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 238), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 36), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 36), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 239), - [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 239), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 240), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 240), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 241), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 241), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 242), - [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 242), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 243), - [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 243), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 244), - [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 244), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 245), - [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 245), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 112), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 112), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 246), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 246), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 46), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 46), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 247), - [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 247), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 46), - [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 46), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 150), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 150), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 248), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 248), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 152), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 152), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 153), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 153), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 249), - [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 249), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 250), - [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 250), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 251), - [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 251), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 252), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 252), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 253), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 253), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 254), - [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 254), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 255), - [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 255), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 256), - [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 256), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 257), - [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 257), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 258), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 258), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 259), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 259), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 260), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 260), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 261), - [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 261), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 262), - [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 262), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 263), - [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 263), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 264), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 264), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 265), - [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 265), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 267), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 267), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 268), - [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 268), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 269), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 269), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 270), - [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 270), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 271), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 271), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 272), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 272), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 273), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 273), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 274), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 274), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 275), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 275), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 276), - [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 276), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 277), - [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 277), - [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 278), - [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 278), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 279), - [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 279), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 280), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 280), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 281), - [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 281), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 282), - [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 282), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 283), - [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 283), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 284), - [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 284), - [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 285), - [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 285), - [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 286), - [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 286), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 287), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 287), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 288), - [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 288), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 289), - [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 289), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 290), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 290), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 291), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 291), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 292), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 292), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 293), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 293), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 294), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 294), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 295), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 295), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 296), - [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 296), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 297), - [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 297), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 298), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 298), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 299), - [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 299), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 300), - [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 300), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 301), - [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 301), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 302), - [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 302), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 303), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 303), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 304), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 304), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 305), - [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 305), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 306), - [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 306), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 307), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 307), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 308), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 308), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 309), - [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 309), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 310), - [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 310), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 311), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 311), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 312), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 312), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 313), - [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 313), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 154), - [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 154), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 155), - [4816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 155), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 156), - [4820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 156), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 157), - [4824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 157), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 158), - [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 158), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 159), - [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 159), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 314), - [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 314), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 315), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 315), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 316), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 316), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 317), - [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 317), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 318), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 318), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 319), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 319), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 320), - [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 320), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 321), - [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 321), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 322), - [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 322), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 323), - [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 323), - [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 324), - [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 324), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 325), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 325), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 326), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 326), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 327), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 327), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 328), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 328), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 329), - [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 329), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 330), - [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 330), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 331), - [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 331), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 332), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 332), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 333), - [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 333), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 334), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 334), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 335), - [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 335), - [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 336), - [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 336), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 337), - [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 337), - [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 338), - [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 338), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 339), - [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 339), - [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 340), - [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 340), - [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 341), - [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 341), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 342), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 342), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 343), - [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 343), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 344), - [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 344), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 345), - [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 345), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 346), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 346), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 347), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 347), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 348), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 348), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 349), - [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 349), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 350), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 350), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 351), - [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 351), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 51), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 51), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 51), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 51), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 52), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 52), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 53), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 53), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 352), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 352), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 353), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 353), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 354), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 354), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 355), - [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 355), - [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 356), - [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 356), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 357), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 357), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 358), - [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 358), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 359), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 359), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 360), - [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 360), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 361), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 361), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 362), - [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 362), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 363), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 363), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 57), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 57), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 364), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 364), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 365), - [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 365), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 366), - [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 366), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 367), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 367), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 368), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 368), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 369), - [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 369), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 370), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 370), - [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 371), - [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 371), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 372), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 372), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 373), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 373), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 374), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 374), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 375), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 375), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 376), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 376), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 377), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 377), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 378), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 378), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 379), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 379), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 380), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 380), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 381), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 381), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, 0, 382), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, 0, 382), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 116), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 116), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 58), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 58), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), - [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 118), - [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 118), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 119), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 119), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 120), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 120), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 173), - [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 173), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 174), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 174), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 175), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 175), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 121), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 121), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 122), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 122), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 123), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 123), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 87), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 87), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), - [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 30), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 30), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 88), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 88), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 30), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 30), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 31), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 31), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 176), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 176), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 151), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 151), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), - [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), - [5496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(374), - [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(4850), - [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), - [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), - [5506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(377), - [5509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(4851), - [5512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(4917), - [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(371), - [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(4849), - [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 115), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), - [5531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(387), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(4853), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(4932), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(4854), - [5547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), - [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(370), - [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(4848), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(4966), - [5562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 86), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(4859), - [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(379), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(4852), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [5579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(4779), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 4, 0, 111), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, 0, 111), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 5, 0, 142), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5, 0, 142), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [5639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), - [5643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), - [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), - [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), - [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), - [5654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2540), - [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2544), - [5660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(402), - [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(4895), - [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2627), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(411), - [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(4899), - [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2660), - [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(409), - [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(4898), - [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2557), - [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2648), - [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(403), - [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(4896), - [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2622), - [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2679), - [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(419), - [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(4900), - [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(406), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(4897), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2585), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 162), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 162), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 231), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 231), - [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 198), - [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 198), - [5729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 161), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 161), - [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 195), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 195), - [5737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 160), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 160), - [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 124), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 124), - [5745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 197), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 197), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [5810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5041), - [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4664), - [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2499), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), - [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), - [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2775), - [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), - [5830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2906), - [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2434), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [6287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2881), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 2, 0, 40), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 40), - [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 1, 0, 28), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 1, 0, 28), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), - [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [6341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 66), - [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 66), - [6345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 66), SHIFT_REPEAT(3963), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 95), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 95), - [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 4, 0, 129), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 4, 0, 129), - [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 13), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 13), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [6463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(576), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [6472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4880), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [6489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(675), - [6492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4934), - [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 3, 0, 0), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 23), - [6770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 23), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [6820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_name, 1, 0, 0), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 8), - [6834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 8), - [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), - [6838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 16), - [6888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 16), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4579), - [6983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2614), - [6986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4872), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4619), - [7010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2618), - [7013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4888), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [7020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4641), - [7023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2534), - [7026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4713), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [7033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4622), - [7036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2536), - [7039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4847), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [7046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4643), - [7049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2539), - [7052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4724), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [7067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4582), - [7070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2699), - [7073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4923), - [7076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4648), - [7079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2556), - [7082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4757), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [7101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(5149), - [7104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4488), - [7107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2573), - [7110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4780), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [7119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4630), - [7122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2616), - [7125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4976), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [7132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4633), - [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2647), - [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4745), - [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4495), - [7144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2584), - [7147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4877), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4646), - [7167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2552), - [7170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4751), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4611), - [7182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2659), - [7185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4735), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [7192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2886), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [7251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4502), - [7254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2612), - [7257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4831), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 3, 0, 4), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 16), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [7348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4636), - [7351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2675), - [7354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4929), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4638), - [7380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2678), - [7383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4949), - [7386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4308), - [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2626), - [7392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4943), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 16), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4608), - [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2651), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4845), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [7510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(55), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [7525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), - [7528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4365), - [7531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5225), - [7534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5191), - [7537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3782), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 43), - [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 43), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [7552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 43), SHIFT(4540), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 24), - [7557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 24), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 24), SHIFT(4366), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 19), - [7568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 19), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 19), SHIFT(4265), - [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 48), - [7577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 48), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [7581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 48), SHIFT(4390), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 75), - [7586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 75), - [7588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 75), SHIFT(4654), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 98), - [7593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 98), - [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 98), SHIFT(4362), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 107), - [7600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 107), - [7602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 107), SHIFT(4382), - [7605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), - [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 68), - [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 68), - [7612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 68), SHIFT(4519), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2884), - [7624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [7627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(4965), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [7642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(363), - [7645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(4940), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [7650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(4942), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(4955), - [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [7660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(4927), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(355), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(4939), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(346), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(4935), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [7703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(4767), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(4844), - [7715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(347), - [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(4936), - [7721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(353), - [7724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(4938), - [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(350), - [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(4937), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [7741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(4874), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 108), - [7756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 108), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 139), - [7760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 139), - [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), - [7764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), - [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 8), - [7768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 8), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opaque_type, 1, 0, 0), - [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_opaque_type, 1, 0, 0), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 41), - [7776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 41), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), - [7780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 3, 0, 5), - [7784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 3, 0, 5), - [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 22), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 22), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 76), - [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 76), - [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 69), - [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 69), - [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 46), - [7800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 46), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 96), - [7804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 96), - [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 16), - [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 16), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), - [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), - [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 99), - [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 99), - [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 70), - [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 70), - [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 23), - [7824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 23), - [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 3, 0, 3), - [7828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 3, 0, 3), - [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 46), - [7832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 46), - [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 138), - [7836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 138), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 11), - [7840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 11), - [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4313), - [7845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), - [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4861), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 165), - [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 165), - [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 23), - [7862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 23), - [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 25), - [7866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 25), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 25), - [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 25), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), - [7874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 63), - [7878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 63), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 170), - [7882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 170), - [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 8), - [7886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 8), - [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 26), - [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 26), - [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 130), - [7894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 130), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 16), - [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 16), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), - [7902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), - [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 106), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 131), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 131), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), - [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 6, 0, 49), - [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 6, 0, 49), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 9), - [7924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 9), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), - [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 4, 0, 7), - [7932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 4, 0, 7), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 77), - [7936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 77), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 6, 0, 49), - [7940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 6, 0, 49), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 22), - [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 22), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 11), - [7948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 11), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 4, 0, 17), - [7952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 4, 0, 17), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 29), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [8134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), - [8137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [8250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3998), - [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [8255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [8306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [8309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4950), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [8424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2204), - [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 2, 0, 0), - [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4914), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [8476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(4717), - [8479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(428), - [8482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(5002), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [8561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(429), - [8564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(5003), - [8567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(432), - [8570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(5004), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [8613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(4953), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [8630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(435), - [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(5005), - [8636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(437), - [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(5006), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [8686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(4991), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [8693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(445), - [8696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(5007), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [8703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(4995), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [8738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(4998), - [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [8743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(4989), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 16), - [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), - [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [9088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4429), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [9131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(452), - [9134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(5008), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(453), - [9156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(5009), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [9161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(456), - [9164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(5010), - [9167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(459), - [9170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(5011), - [9173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(461), - [9176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(5012), - [9179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(469), - [9182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(5013), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [9203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(4787), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [9222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(4790), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [9227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(4796), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), SHIFT(4798), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [9241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 86), SHIFT(4799), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [9254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), SHIFT(4804), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [9317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [9393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [9479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 1, 0, 29), - [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 94), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [9557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 64), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [9677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 40), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 3, 0, 0), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 4, 0, 0), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [10161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 65), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [10219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [10227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 13), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [10479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 95), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [10489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 3, 0, 30), - [10491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 4, 0, 196), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [10645] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 6, 0, 266), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 5, 0, 230), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12635), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15212), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15775), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10839), + [17] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [21] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14928), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12408), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16155), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15476), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12403), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15013), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13546), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16161), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15437), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13537), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14959), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13345), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16118), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14943), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8644), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8653), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8659), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8660), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8661), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13342), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14883), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16153), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9551), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9552), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16154), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14992), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12696), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8961), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10366), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10401), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16156), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15059), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9057), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9059), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9064), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9065), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12687), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8716), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8717), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16157), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16158), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14937), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15003), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12521), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16160), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15932), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12513), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8950), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8951), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16159), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14905), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15186), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15404), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8332), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15800), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12787), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13935), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11217), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15020), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15476), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10572), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8816), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8826), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15435), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8870), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15280), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2603), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(14881), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14881), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7727), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15021), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(8088), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7899), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5263), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2556), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 96), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 96), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2603), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(14881), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7727), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(8088), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7899), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5263), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2556), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2603), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(14881), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7727), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(8088), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7899), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5263), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2556), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 96), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 96), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2603), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(14881), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7727), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(8088), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7899), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8098), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5263), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2556), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(10838), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14872), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14872), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15074), + [1301] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), SHIFT(7700), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15068), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(8035), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7831), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(5257), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3869), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12430), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(15197), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 62), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 62), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 62), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 62), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7700), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14958), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12444), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15158), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13717), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14980), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13748), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15653), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13744), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14967), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13785), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9483), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15141), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9739), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9741), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9760), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9501), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9538), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12645), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15100), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14978), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9437), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16053), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7985), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7998), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10037), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15051), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(15068), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7831), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13581), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9979), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10068), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14848), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12663), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10207), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16015), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10822), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10783), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10611), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10741), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10824), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12904), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12619), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(14870), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(14953), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7805), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(14870), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(14953), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7805), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10107), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16026), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2964), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(14870), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7693), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(14953), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(8064), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7805), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7805), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5277), + [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2963), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2964), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7693), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(8064), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7805), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5277), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2963), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2964), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(14870), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7693), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(14953), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(8064), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7805), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7805), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5277), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2963), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2964), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7693), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(8064), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7805), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5277), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2963), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13919), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12430), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14904), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12573), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_name, 1, 0, 0), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15028), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15093), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3469), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(15028), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7691), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(8046), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7791), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8179), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5272), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3843), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3469), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(15028), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7691), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(8046), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7791), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8189), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5272), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3843), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3469), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(15028), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7691), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(8046), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7791), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5272), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3843), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14907), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14867), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3469), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(15028), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7691), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(8046), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7791), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5272), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3843), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9977), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10955), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10952), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10359), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15141), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10370), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10372), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10374), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10379), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10033), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11064), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10218), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10247), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10250), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10251), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10253), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9111), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9061), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9735), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9581), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9662), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9597), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10621), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10798), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10678), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10725), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10726), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10527), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10695), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10591), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10615), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_name, 1, 0, 12), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15036), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15280), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15800), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15932), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15186), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15404), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15437), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15435), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 10), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 10), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15091), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 13), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(346), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 27), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 27), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 36), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 36), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 37), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 37), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 3, 0, 38), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 3, 0, 38), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 60), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 60), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 63), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 63), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 4, 0, 64), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 4, 0, 64), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 4, 0, 65), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 4, 0, 65), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 5, 0, 97), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 5, 0, 97), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14928), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6316), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12408), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6108), + [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5852), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5239), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2556), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3508), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4811), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6604), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6603), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2533), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6388), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6139), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(16118), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6251), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6263), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6316), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15476), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2135), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2523), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2523), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12403), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8213), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 39), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 39), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10776), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8715), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 166), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 166), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 7, 0, 0), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 7, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), + [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1500), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14240), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), + [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1501), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14241), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), + [4430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1504), + [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14243), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unreachable, 1, 0, 0), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unreachable, 1, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undefined, 1, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undefined, 1, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), + [4448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1507), + [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14244), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12430), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), + [4460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1509), + [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14245), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), + [4478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1517), + [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14247), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15251), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15254), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 2, 0, 0), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 2, 0, 0), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), + [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 30), + [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 30), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 30), + [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 30), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 31), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 31), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 33), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 33), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 35), + [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 35), + [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 52), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 52), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 52), + [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 52), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 53), + [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 53), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 54), + [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 54), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 36), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 36), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 57), + [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 57), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 58), + [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 58), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 59), + [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 59), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 35), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 35), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 84), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 84), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 85), + [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 85), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 86), + [4606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 86), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 16), + [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 16), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 22), + [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 22), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 22), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 22), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 60), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 60), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 88), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 88), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 90), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 90), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 91), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 91), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 92), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 92), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 59), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 59), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 93), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 93), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 116), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 116), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 47), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 47), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 47), + [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 47), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 117), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 117), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 118), + [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 118), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 120), + [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 120), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 121), + [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 121), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 122), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 122), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 123), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 123), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 124), + [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 124), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 125), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 125), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 126), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 126), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 127), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 127), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 59), + [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 59), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 93), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 93), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 147), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 147), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 148), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 148), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 149), + [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 149), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 150), + [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 150), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 151), + [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 151), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 152), + [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 152), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 153), + [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 153), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 154), + [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 154), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 155), + [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 155), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 156), + [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 156), + [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 157), + [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 157), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 158), + [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 158), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 159), + [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 159), + [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 160), + [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 160), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 161), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 161), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 162), + [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 162), + [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 93), + [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 93), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 175), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 175), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 176), + [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 176), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 177), + [4816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 177), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 178), + [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 178), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 179), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 179), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 180), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 180), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 181), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 181), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 182), + [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 182), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 183), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 183), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 184), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 184), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 185), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 185), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 186), + [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 186), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 187), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 187), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 188), + [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 188), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 189), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 189), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 190), + [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 190), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 191), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 191), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 192), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 192), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 193), + [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 193), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 194), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 194), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 195), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 195), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 196), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 196), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 203), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 203), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 204), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 204), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 205), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 205), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 206), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 206), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 207), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 207), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 208), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 208), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 209), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 209), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 210), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 210), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 211), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 211), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 212), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 212), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 213), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 213), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 214), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 214), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 215), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 215), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 216), + [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 216), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 217), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 217), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 218), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 218), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 219), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 219), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 220), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 220), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 221), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 221), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 222), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 222), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 223), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 223), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 224), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 224), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 225), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 225), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 226), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 226), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 227), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 227), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 228), + [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 228), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 229), + [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 229), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 230), + [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 230), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 231), + [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 231), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 234), + [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 234), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 235), + [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 235), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 236), + [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 236), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 237), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 237), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 238), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 238), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 239), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 239), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 240), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 240), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 241), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 241), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 242), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 242), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 243), + [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 243), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 244), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 244), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 245), + [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 245), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 246), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 246), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 247), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 247), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 248), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 248), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 249), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 249), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 250), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 250), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 251), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 251), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 252), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 252), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 253), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 253), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 254), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 254), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 255), + [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 255), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 256), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 256), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 257), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 257), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 258), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 258), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 259), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 259), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 260), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 260), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 261), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 261), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 262), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 262), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 263), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 263), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 264), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 264), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 265), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 265), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 266), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 266), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 267), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 267), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 269), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 269), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 270), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 270), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 271), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 271), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 272), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 272), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 273), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 273), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 274), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 274), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 275), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 275), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 276), + [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 276), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 277), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 277), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 278), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 278), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 279), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 279), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 280), + [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 280), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 281), + [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 281), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 282), + [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 282), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 283), + [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 283), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 284), + [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 284), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 285), + [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 285), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 286), + [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 286), + [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 287), + [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 287), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 288), + [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 288), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 289), + [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 289), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 290), + [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 290), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 291), + [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 291), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 292), + [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 292), + [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 293), + [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 293), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 294), + [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 294), + [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 295), + [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 295), + [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 296), + [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 296), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 297), + [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 297), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 298), + [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 298), + [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 299), + [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 299), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 300), + [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 300), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 301), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 301), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 302), + [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 302), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 303), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 303), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 304), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 304), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 305), + [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 305), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 306), + [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 306), + [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 307), + [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 307), + [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 308), + [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 308), + [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 309), + [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 309), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 310), + [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 310), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 311), + [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 311), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 312), + [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 312), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 313), + [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 313), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 314), + [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 314), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 315), + [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 315), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 316), + [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 316), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 317), + [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 317), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 318), + [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 318), + [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 319), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 319), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 320), + [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 320), + [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 321), + [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 321), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 322), + [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 322), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 323), + [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 323), + [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 324), + [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 324), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 325), + [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 325), + [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 326), + [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 326), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 327), + [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 327), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 328), + [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 328), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 329), + [5414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 329), + [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 330), + [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 330), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 331), + [5422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 331), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 332), + [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 332), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 333), + [5434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 333), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 334), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 334), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 335), + [5444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 335), + [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 336), + [5448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 336), + [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 337), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 337), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 338), + [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 338), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 339), + [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 339), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 340), + [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 340), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 341), + [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 341), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 342), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 342), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 343), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 343), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 344), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 344), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 345), + [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 345), + [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 346), + [5488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 346), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 347), + [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 347), + [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 348), + [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 348), + [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 349), + [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 349), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 350), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 350), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 351), + [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 351), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 352), + [5512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 352), + [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 353), + [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 353), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 354), + [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 354), + [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 355), + [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 355), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 356), + [5528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 356), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 357), + [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 357), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 358), + [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 358), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 359), + [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 359), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 360), + [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 360), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 361), + [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 361), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 362), + [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 362), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 363), + [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 363), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 364), + [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 364), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 365), + [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 365), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 366), + [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 366), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 367), + [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 367), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 368), + [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 368), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 369), + [5586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 369), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 370), + [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 370), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 371), + [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 371), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 372), + [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 372), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 373), + [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 373), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 374), + [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 374), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 375), + [5610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 375), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 376), + [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 376), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 377), + [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 377), + [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 378), + [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 378), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 379), + [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 379), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 380), + [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 380), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 381), + [5634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 381), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 382), + [5638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 382), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 383), + [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 383), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, 0, 384), + [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, 0, 384), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), + [5654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), + [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), + [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 83), + [5690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 83), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [5700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [5702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), + [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), + [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 83), + [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 83), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 14), + [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 14), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 6), + [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 6), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 15), + [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 15), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [5752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4173), + [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4173), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 3, 0, 0), + [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 3, 0, 0), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 3, 0, 0), + [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 3, 0, 0), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), + [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 13), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 13), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 34), + [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 34), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 40), + [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 40), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 51), + [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 51), + [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 20), + [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 20), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 45), + [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 45), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 46), + [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 46), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 74), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 74), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 75), + [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 75), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 76), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 76), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 77), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 77), + [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 4, 0, 0), + [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 4, 0, 0), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 4, 0, 0), + [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 4, 0, 0), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 104), + [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 104), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 105), + [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 105), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 106), + [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 106), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 107), + [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 107), + [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 108), + [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 108), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 109), + [5884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 109), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), + [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), + [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 135), + [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 135), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 136), + [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 136), + [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 137), + [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 137), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 138), + [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 138), + [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 139), + [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 139), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 140), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 140), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), + [5916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 61), + [5920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 61), + [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), + [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 168), + [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 168), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 169), + [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 169), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 170), + [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 170), + [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 171), + [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 171), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), + [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 201), + [5948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 201), + [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 202), + [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 202), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16038), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_type, 2, 0, 6), + [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_type, 2, 0, 6), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), + [5980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 21), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 21), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 18), + [6000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 18), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 4, 0, 0), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 4, 0, 0), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 81), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 81), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 43), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 43), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), + [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 5, 0, 0), + [6032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 5, 0, 0), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 82), + [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 82), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 70), + [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 70), + [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 5, 0, 0), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 5, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 5, 0, 0), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 5, 0, 0), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 101), + [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 101), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 94), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 94), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 61), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 61), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 95), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 95), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 113), + [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 113), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 114), + [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 114), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 6, 0, 0), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 6, 0, 0), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 6, 0, 0), + [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 6, 0, 0), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), + [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), + [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), + [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 94), + [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 94), + [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 129), + [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 129), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 95), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 95), + [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 130), + [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 130), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 61), + [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 61), + [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 131), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 131), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 143), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 143), + [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 144), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 144), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 7, 0, 0), + [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 7, 0, 0), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 7, 0, 0), + [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 7, 0, 0), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), + [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 129), + [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 129), + [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 130), + [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 130), + [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 166), + [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 166), + [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 131), + [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 131), + [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), + [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 173), + [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 173), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 8, 0, 0), + [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 8, 0, 0), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_record_literal, 8, 0, 0), + [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_record_literal, 8, 0, 0), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), + [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9445), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12167), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12480), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10996), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11770), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11774), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16053), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13582), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14950), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13581), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4216), + [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4216), + [6428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8221), + [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(302), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15749), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15751), + [6438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1169), + [6441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14432), + [6444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1172), + [6447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14433), + [6450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1176), + [6453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14435), + [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1179), + [6459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14436), + [6462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1181), + [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14445), + [6468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1189), + [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14452), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16000), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), + [6480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(4699), + [6483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(14993), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14993), + [6488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7684), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15099), + [6493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7977), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [6498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7942), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), + [6503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5236), + [6506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3869), + [6509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(4699), + [6512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(14993), + [6515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7684), + [6518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7977), + [6521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7942), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [6526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5236), + [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3869), + [6532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(4699), + [6535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(14993), + [6538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7684), + [6541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7977), + [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7942), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7979), + [6549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5236), + [6552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3869), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), + [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(4699), + [6560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(14993), + [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7684), + [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7977), + [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7942), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5236), + [6577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3869), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12957), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12953), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13896), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12439), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13186), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12588), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13782), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12982), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13377), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [6630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1061), + [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14397), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14269), + [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1069), + [6644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14398), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [6649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14232), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [6654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14231), + [6657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1049), + [6660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14389), + [6663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1052), + [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14390), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [6671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14270), + [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4678), + [6677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4678), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [6684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1056), + [6687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14391), + [6690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1059), + [6693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14393), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14288), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [6703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14196), + [6706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4303), + [6709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4303), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15047), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12573), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [6742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12430), + [6745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(282), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15158), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15718), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15719), + [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1079), + [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14404), + [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8220), + [6773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1082), + [6776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14405), + [6779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1086), + [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14406), + [6785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1089), + [6788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14408), + [6791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1091), + [6794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14409), + [6797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1099), + [6800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14410), + [6803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4404), + [6806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4404), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15370), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), + [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_name, 1, 0, 12), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [6825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8219), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10011), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14991), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16026), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8581), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9749), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9455), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8924), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10094), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16015), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10237), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8298), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15653), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8893), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16033), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16024), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10838), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15083), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12944), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15794), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13368), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15333), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15352), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15355), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15395), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15278), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15447), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16090), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15153), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15507), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15440), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15695), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15755), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15663), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), + [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7673), + [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(8019), + [7444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7879), + [7447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5267), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15676), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15492), + [7454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7673), + [7457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(8019), + [7460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7879), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), + [7465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5267), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15387), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15321), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15941), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15701), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15363), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16101), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15495), + [7484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7673), + [7487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(8019), + [7490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7879), + [7493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5267), + [7496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 174), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15371), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15419), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15489), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15716), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16110), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15899), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15399), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15823), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15745), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15654), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15379), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16108), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15411), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15710), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15729), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15670), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15225), + [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7673), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(8019), + [7548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7879), + [7551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5267), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15681), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15427), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15240), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15345), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16031), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15795), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15455), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15993), + [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 146), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15417), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15452), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15485), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15403), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15335), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13772), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1590), + [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14453), + [7688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1591), + [7691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14454), + [7694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1594), + [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14455), + [7700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1597), + [7703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14456), + [7706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1599), + [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14457), + [7712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1607), + [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14458), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12494), + [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7563), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [7725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14351), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15109), + [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(375), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4486), + [7752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4486), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12944), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12619), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14521), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [7773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14522), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [7782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14541), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [7787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14542), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [7792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14554), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(13368), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15010), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12917), + [7806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1524), + [7809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14249), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12937), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13919), + [7818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1525), + [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14250), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14490), + [7829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1528), + [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14251), + [7835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1531), + [7838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14252), + [7841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1533), + [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14253), + [7847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1541), + [7850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14254), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12619), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8962), + [7900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7685), + [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(8039), + [7906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7786), + [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5259), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), + [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7685), + [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(8039), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7786), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), + [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5259), + [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7685), + [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(8039), + [7934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7786), + [7937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5259), + [7940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7685), + [7943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(8039), + [7946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7786), + [7949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5259), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9781), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14782), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14976), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15864), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12708), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10110), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9728), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9738), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9595), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15744), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12632), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10155), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15931), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12749), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10085), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15935), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12752), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10088), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15969), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12770), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10138), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10578), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15740), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12625), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15971), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12771), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10142), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10552), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10700), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10512), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10540), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10780), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15965), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12764), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10096), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15968), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12765), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10103), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15860), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12702), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10108), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9145), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), + [8214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9455), + [8217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(14967), + [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6149), + [8223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13785), + [8226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6067), + [8229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), + [8234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5810), + [8237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5241), + [8240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9483), + [8243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(14782), + [8246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(14976), + [8249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6149), + [8252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(15141), + [8255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9739), + [8258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9741), + [8261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9760), + [8264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9501), + [8267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9538), + [8270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9538), + [8273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12645), + [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15438), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12241), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10136), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15451), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12254), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10143), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15675), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12595), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10440), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15499), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12460), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10151), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15828), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12684), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10331), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15824), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12677), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10304), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15896), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12726), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10131), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15788), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12652), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10086), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15900), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12732), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10134), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15792), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12659), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10092), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15145), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12168), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10431), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15903), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13349), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10435), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15679), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12601), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10205), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15506), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12467), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10115), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [8601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [8605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5302), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9443), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9864), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10883), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14110), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10911), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13936), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10892), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10899), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10906), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10875), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10593), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10665), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10644), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14341), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10677), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10472), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10478), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14392), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10618), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10639), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10556), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10807), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10520), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10581), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10600), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10322), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10281), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14204), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10365), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14246), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10346), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10224), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10282), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14496), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14530), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14785), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14827), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10139), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15016), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10585), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9822), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14080), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14494), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14378), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14679), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14492), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14503), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9684), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14124), + [9722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [9725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), + [9727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9564), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14228), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9811), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9473), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15043), + [10010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7716), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14933), + [10015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(8008), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [10020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7853), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8144), + [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5279), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [10140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7716), + [10143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(8008), + [10146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7853), + [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8164), + [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5279), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [10172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6273), + [10175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7716), + [10178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(8008), + [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7853), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8150), + [10186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5279), + [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [10231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7716), + [10234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(8008), + [10237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7853), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8091), + [10242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5279), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [10477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1618), + [10480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14462), + [10483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1614), + [10486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14459), + [10489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1615), + [10492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14460), + [10495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1621), + [10498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14463), + [10501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1623), + [10504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14464), + [10507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1631), + [10510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14465), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [10517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14660), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [10536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1139), + [10539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14423), + [10542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1142), + [10545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14424), + [10548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1146), + [10551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14425), + [10554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1149), + [10557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14426), + [10560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1151), + [10563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14427), + [10566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1159), + [10569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14428), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [10574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14656), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [10583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14657), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [10588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14658), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [10593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14659), + [10596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7193), + [10599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(14939), + [10602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7679), + [10605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(14850), + [10608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(8149), + [10611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7763), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), + [10616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5246), + [10619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7192), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [10624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14661), + [10627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4299), + [10630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4299), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [10643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7193), + [10646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(14939), + [10649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7679), + [10652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(14850), + [10655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(8149), + [10658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7763), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8068), + [10663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5246), + [10666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7192), + [10669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7193), + [10672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(14939), + [10675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7679), + [10678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(14850), + [10681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(8149), + [10684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7763), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [10689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5246), + [10692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7192), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [10697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7193), + [10700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(14939), + [10703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7679), + [10706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(14850), + [10709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(8149), + [10712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7763), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [10717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5246), + [10720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7192), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [10733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4287), + [10736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4287), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10226), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14834), + [10743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7737), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14857), + [10748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(8047), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [10753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(7813), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), + [10758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(5248), + [10761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7737), + [10764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(8047), + [10767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(7813), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [10772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(5248), + [10775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7737), + [10778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(8047), + [10781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(7813), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [10786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(5248), + [10789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7737), + [10792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(8047), + [10795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(7813), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), + [10800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(5248), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15895), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15835), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15178), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9638), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9594), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9778), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10641), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10651), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10505), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10482), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10828), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10830), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10588), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9273), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9060), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9685), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9814), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14918), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13772), + [11217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1476), + [11220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14213), + [11223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1477), + [11226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14219), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [11231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14118), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [11236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1480), + [11239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14220), + [11242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1483), + [11245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14221), + [11248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1485), + [11251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14222), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [11256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14179), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [11261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14188), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [11266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14330), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [11271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14333), + [11274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1493), + [11277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14223), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [11282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14399), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [11287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8215), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14921), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15942), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15943), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [11326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14334), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [11331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14335), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [11336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14336), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [11341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14338), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [11346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14339), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [11357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1878), + [11360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14620), + [11363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1879), + [11366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14621), + [11369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1882), + [11372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14622), + [11375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1885), + [11378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14623), + [11381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1887), + [11384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14624), + [11387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1895), + [11390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14625), + [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15668), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [11397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14337), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [11402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 4, 0, 115), + [11404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, 0, 115), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [11410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 5, 0, 145), + [11412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5, 0, 145), + [11414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), + [11416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), + [11418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), + [11420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), + [11422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), + [11424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), + [11426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7826), + [11429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7568), + [11432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7808), + [11435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7839), + [11438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7932), + [11441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7959), + [11444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7886), + [11447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7750), + [11450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1567), + [11453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14437), + [11456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1570), + [11459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14438), + [11462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1583), + [11465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14443), + [11468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1573), + [11471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14439), + [11474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1575), + [11477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14440), + [11480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7960), + [11483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7865), + [11486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7762), + [11489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7845), + [11492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1566), + [11495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14431), + [11498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(7768), + [11501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 200), + [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 200), + [11505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 199), + [11507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 199), + [11509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 233), + [11511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 233), + [11513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 197), + [11515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 197), + [11517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 128), + [11519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 128), + [11521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 163), + [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 163), + [11525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 164), + [11527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 164), + [11529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 165), + [11531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 165), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15052), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12909), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14909), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16014), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10345), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10197), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9429), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [11617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7598), + [11620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(15052), + [11623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(12909), + [11626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7720), + [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), + [11631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(14909), + [11634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8027), + [11637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7864), + [11640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5245), + [11643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8244), + [11646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7619), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10877), + [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11358), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11051), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11052), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14927), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14841), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10879), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11592), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11593), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11727), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [11701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11728), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [11707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11425), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [11713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11888), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [11723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11889), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11898), + [11731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11899), + [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14870), + [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11300), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11301), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14953), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [11751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11402), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [11755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11403), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [11761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14939), + [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11435), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11436), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14850), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [11779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11205), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11206), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12823), + [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15063), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11404), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14902), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15382), + [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), + [11881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), + [11883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), + [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8096), + [11889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), + [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), + [11895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8025), + [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), + [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), + [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), + [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8158), + [11907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), + [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [11911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), + [11913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), + [11915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), + [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), + [11919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), + [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), + [11923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), + [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), + [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), + [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), + [11931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8029), + [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), + [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), + [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), + [11941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [11943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [11945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [11947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8063), + [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [11951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), + [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [11957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15672), + [11959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [11961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), + [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8116), + [11965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), + [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [11969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8152), + [11971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8048), + [11973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15221), + [11975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), + [11977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), + [11979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8160), + [11981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), + [11983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), + [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), + [11987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), + [11989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), + [11991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8114), + [11993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), + [11995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8101), + [11997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), + [11999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), + [12001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), + [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [12005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), + [12009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7987), + [12011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8159), + [12013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), + [12015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), + [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), + [12019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), + [12021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7999), + [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), + [12025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), + [12027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), + [12029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), + [12031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), + [12033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), + [12035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [12037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), + [12039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), + [12041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [12043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), + [12045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), + [12047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [12049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), + [12051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7996), + [12053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), + [12055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), + [12057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), + [12059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), + [12061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8024), + [12063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8105), + [12065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), + [12067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), + [12069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7997), + [12071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [12073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), + [12075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), + [12077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8128), + [12079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [12081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8065), + [12083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8071), + [12085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), + [12087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), + [12089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8075), + [12091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), + [12093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8208), + [12095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), + [12097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [12099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8082), + [12101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [12103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8086), + [12105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8087), + [12107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), + [12109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), + [12111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), + [12113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), + [12115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [12117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), + [12119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), + [12121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8095), + [12123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [12125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), + [12127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8097), + [12129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), + [12131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), + [12133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), + [12135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), + [12137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), + [12141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8140), + [12143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), + [12145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8171), + [12147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8133), + [12149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), + [12151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), + [12153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), + [12155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), + [12157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8131), + [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), + [12161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [12163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [12165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [12167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), + [12169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), + [12171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8009), + [12173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15397), + [12175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8090), + [12177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15151), + [12179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15487), + [12181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [12183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), + [12185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15677), + [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16028), + [12189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15340), + [12191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15388), + [12193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), + [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15125), + [12197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8192), + [12199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [12201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15372), + [12203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8201), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), + [12209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8203), + [12211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), + [12213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8206), + [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8185), + [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8108), + [12221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), + [12223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8094), + [12225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8216), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [12238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8212), + [12241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 2, 0, 41), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [12245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 41), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [12251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15088), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [12255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7647), + [12257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13368), + [12261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), + [12263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15834), + [12269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 1, 0, 28), + [12271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 1, 0, 28), + [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [12275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [12277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [12279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [12285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [12287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [12289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), + [12291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8496), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16102), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16104), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [12302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14302), + [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [12309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [12315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [12319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14594), + [12322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(739), + [12325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14116), + [12328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [12332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [12336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [12338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [12340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [12344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1854), + [12347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14614), + [12350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1861), + [12353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14617), + [12356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [12358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14595), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [12363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14300), + [12366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [12370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1858), + [12373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14616), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [12378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14301), + [12381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1855), + [12384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14615), + [12387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(742), + [12390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14151), + [12393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(746), + [12396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14152), + [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [12401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14590), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [12406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14303), + [12409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1863), + [12412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14618), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [12417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14306), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [12424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(749), + [12427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14195), + [12430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4532), + [12433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4532), + [12436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [12440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(751), + [12443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14197), + [12446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [12448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14591), + [12451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4288), + [12454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4288), + [12457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [12459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14592), + [12462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [12466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [12468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14593), + [12471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1871), + [12474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14619), + [12477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(759), + [12480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14279), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [12485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14331), + [12488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 69), + [12490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 69), + [12492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 69), SHIFT_REPEAT(11404), + [12495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), + [12497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [12499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 13), + [12501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 13), + [12503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 99), + [12505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 99), + [12507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4056), + [12510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4056), + [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [12517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [12519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), + [12521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), + [12523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [12527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [12531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [12535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [12541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4136), + [12544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4136), + [12547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), + [12549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), + [12551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [12553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [12555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [12557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [12559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), + [12561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), + [12563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [12565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [12567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 4, 0, 132), + [12569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 4, 0, 132), + [12571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(975), + [12574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14364), + [12577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [12579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [12581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [12583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [12585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [12589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [12591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [12593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(13368), + [12596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [12598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [12600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [12602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14632), + [12605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [12607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14633), + [12610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [12612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14634), + [12615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(965), + [12618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14361), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12917), + [12623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(967), + [12626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14362), + [12629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [12633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4017), + [12636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4017), + [12639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [12641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14636), + [12644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(955), + [12647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14358), + [12650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(958), + [12653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14359), + [12656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [12658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14637), + [12661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [12665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(962), + [12668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14360), + [12671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [12673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14635), + [12676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1815), + [12679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14606), + [12682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1806), + [12685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14602), + [12688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [12692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [12698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1807), + [12701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14603), + [12704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1810), + [12707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14604), + [12710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1813), + [12713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14605), + [12716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [12720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [12722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3959), + [12725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3959), + [12728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1823), + [12731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14607), + [12734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4689), + [12737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4689), + [12740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [12744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [12746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14255), + [12749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [12751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14265), + [12754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [12756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14266), + [12759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [12761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14275), + [12764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [12766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14276), + [12769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [12771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14277), + [12774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8222), + [12777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1109), + [12780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14412), + [12783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1112), + [12786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14413), + [12789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1116), + [12792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14414), + [12795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1119), + [12798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14415), + [12801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1121), + [12804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14418), + [12807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1129), + [12810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14419), + [12813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4619), + [12816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4619), + [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [12823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [12827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14650), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [12832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14651), + [12835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [12841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14652), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [12846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14653), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [12851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14654), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [12856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14655), + [12859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [12867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), + [12869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [12873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [12877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [12883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [12885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [12887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15012), + [12889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4159), + [12892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4159), + [12895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [12903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [12907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [12911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [12913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [12915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [12917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [12919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [12923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [12925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [12929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [12935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [12941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [12945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), + [12947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(383), + [12950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [12952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2555), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [12957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(14212), + [12960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2536), + [12963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(14020), + [12966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), + [12968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(989), + [12971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14369), + [12974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(992), + [12977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14370), + [12980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(996), + [12983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14371), + [12986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(999), + [12989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14372), + [12992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1001), + [12995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14373), + [12998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1008), + [13001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14374), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16001), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16018), + [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16017), + [13010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1019), + [13013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14380), + [13016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1022), + [13019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14381), + [13022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1026), + [13025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14382), + [13028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1029), + [13031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14383), + [13034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1031), + [13037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14384), + [13040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1039), + [13043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14385), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [13048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14638), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [13053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14639), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [13058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14640), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [13063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14641), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [13068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14642), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [13073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14643), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [13078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14644), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [13083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14645), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [13088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14646), + [13091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [13095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [13103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14647), + [13106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4608), + [13109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4608), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [13114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14648), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [13119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14649), + [13122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4643), + [13125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4643), + [13128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4077), + [13131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4077), + [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [13154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4627), + [13157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4627), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14723), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14724), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14725), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14726), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14727), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14728), + [13184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [13188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [13192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4215), + [13195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4215), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [13200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4708), + [13203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(4708), + [13206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [13210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [13214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8211), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [13219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15041), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12944), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [13227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15107), + [13229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), + [13231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [13235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15174), + [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15715), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15727), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [13247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [13253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [13255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [13267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [13269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [13273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [13275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(13942), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [13280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14417), + [13283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [13291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [13295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [13297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1679), + [13300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14561), + [13303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1663), + [13306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14557), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [13311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14483), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [13316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14375), + [13319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1666), + [13322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14558), + [13325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1655), + [13328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14552), + [13331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [13333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14677), + [13336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [13338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14187), + [13341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1662), + [13344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14556), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [13349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14416), + [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [13354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1647), + [13357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14551), + [13360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1671), + [13363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14560), + [13366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [13368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(13991), + [13371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1638), + [13374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14547), + [13377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [13379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14019), + [13382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [13384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14682), + [13387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1642), + [13390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14549), + [13393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [13397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [13399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [13401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1639), + [13404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14548), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [13409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14332), + [13412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1669), + [13415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14559), + [13418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1645), + [13421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14550), + [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [13426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14377), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12660), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [13435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12961), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12768), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [13449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12570), + [13453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15687), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [13469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [13471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [13473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [13477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [13479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [13481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [13485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11750), + [13489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [13493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12639), + [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12542), + [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12468), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13154), + [13511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15418), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11821), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12772), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12125), + [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12255), + [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12616), + [13535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15501), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11612), + [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16012), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11219), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12611), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12709), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13788), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12733), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13001), + [13571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16034), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11913), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13656), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12739), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13144), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12633), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13384), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12753), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [13605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12412), + [13609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15728), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11724), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12774), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12131), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12529), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12875), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12766), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13606), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12533), + [13645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15386), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11573), + [13651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15714), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11766), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12715), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13825), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12268), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13803), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12297), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12288), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12488), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12476), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12359), + [13693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15332), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11873), + [13701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16050), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11384), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12609), + [13711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15129), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11220), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13552), + [13723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15394), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11079), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12757), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12485), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12666), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13004), + [13747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15645), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13346), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12445), + [13761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15171), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11444), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12674), + [13773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15157), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11428), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13414), + [13783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16047), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11929), + [13789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15461), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [13795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15523), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11624), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [13807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14826), + [13815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15138), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11225), + [13821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15443), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11066), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12491), + [13833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [13835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14815), + [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12653), + [13842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [13844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [13846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14781), + [13849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_name, 1, 0, 0), + [13851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1695), + [13854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14576), + [13857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12619), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13432), + [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12127), + [13868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13126), + [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12384), + [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12389), + [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12888), + [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12959), + [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12740), + [13896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1703), + [13899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14577), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12978), + [13906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1690), + [13909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14574), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13477), + [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13844), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12406), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13468), + [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13807), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13180), + [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14198), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12135), + [13944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [13946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(13932), + [13949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1693), + [13952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14575), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12462), + [13959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1686), + [13962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14572), + [13965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1687), + [13968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14573), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13805), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13499), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12339), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13023), + [13987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [13989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14467), + [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13395), + [13996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [13998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14340), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13213), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13851), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12448), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13030), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13075), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12451), + [14023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13426), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12478), + [14033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12944), + [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12352), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12549), + [14044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 16), + [14046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 16), + [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12554), + [14052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12993), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14481), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12479), + [14068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), + [14070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), + [14072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 3, 0, 0), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12628), + [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12999), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13096), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13551), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13714), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12648), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13911), + [14100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15066), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12937), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12512), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12509), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13584), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13815), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13626), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12515), + [14128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [14130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14814), + [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12694), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13404), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12719), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13721), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12867), + [14153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 23), + [14155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 23), + [14157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 8), + [14159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 8), + [14161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12753), + [14164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7815), + [14167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14079), + [14170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12660), + [14173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7860), + [14176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14447), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14140), + [14183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12757), + [14186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7931), + [14189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14109), + [14192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [14194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14350), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14500), + [14201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12666), + [14204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7761), + [14207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14477), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14174), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14091), + [14218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12766), + [14221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7951), + [14224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14134), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [14229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1902), + [14232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14626), + [14235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1903), + [14238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14627), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [14243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1906), + [14246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14628), + [14249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1909), + [14252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14629), + [14255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12768), + [14258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7958), + [14261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14159), + [14264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1911), + [14267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14630), + [14270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1919), + [14273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14631), + [14276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12709), + [14279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7833), + [14282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(13937), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14079), + [14289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12715), + [14292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7838), + [14295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14567), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14109), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12372), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14157), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14058), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14162), + [14316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12476), + [14319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7792), + [14322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14186), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [14327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14290), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12691), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14775), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [14338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14291), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [14343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14292), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [14348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14293), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [14353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14295), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [14358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14296), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14134), + [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14159), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14447), + [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14230), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [14379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10670), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14869), + [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [14395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [14401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [14411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15070), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13683), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14237), + [14419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12733), + [14422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7880), + [14425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14058), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14477), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13937), + [14436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12739), + [14439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7885), + [14442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14162), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14567), + [14449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12255), + [14452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7882), + [14455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14500), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12602), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14205), + [14464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12772), + [14467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7787), + [14470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14230), + [14473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(16132), + [14476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [14478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12774), + [14481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7807), + [14484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14237), + [14487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12268), + [14490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7749), + [14493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14091), + [14496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1847), + [14499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14613), + [14502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12633), + [14505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7746), + [14508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14140), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14738), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [14517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8218), + [14520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [14522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14345), + [14525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12468), + [14528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7928), + [14531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14738), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12685), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14767), + [14540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [14542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14346), + [14545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [14547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14347), + [14550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12639), + [14553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7825), + [14556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14174), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14971), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13789), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14984), + [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13792), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15118), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13332), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15045), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13795), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14186), + [14579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1830), + [14582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14608), + [14585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1831), + [14588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14609), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12499), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14376), + [14597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1834), + [14600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14610), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14880), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12604), + [14607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1837), + [14610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14611), + [14613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [14615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14348), + [14618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [14620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14349), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14856), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13840), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14858), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13841), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14862), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13843), + [14635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [14639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1839), + [14642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14612), + [14645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14929), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13856), + [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14930), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13857), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14935), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13859), + [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14962), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13868), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14963), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13869), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14969), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13870), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14981), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13877), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14982), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13878), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14986), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13880), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14995), + [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13883), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14996), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13884), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14999), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13886), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15005), + [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13889), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15006), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13890), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15009), + [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13892), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15017), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13894), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15018), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13895), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15023), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13897), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15029), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13900), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15030), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13901), + [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15033), + [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13903), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12608), + [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14273), + [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14515), + [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14479), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [14755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [14761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [14767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [14769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13934), + [14777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1751), + [14780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14589), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14430), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [14789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12608), + [14792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7953), + [14795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14273), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14138), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [14804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14248), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10787), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14278), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [14814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(13976), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14537), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14498), + [14827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1741), + [14830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14587), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [14835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14342), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10647), + [14840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14343), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [14846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14344), + [14849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1738), + [14852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14586), + [14855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1734), + [14858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14584), + [14861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16043), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [14865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14113), + [14869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1735), + [14872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14585), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [14877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14733), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [14882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(13939), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [14887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14715), + [14890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 3, 0, 4), + [14892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13982), + [14898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1743), + [14901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14588), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14461), + [14906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1710), + [14909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14578), + [14912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14111), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [14920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14729), + [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14386), + [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14672), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10763), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14388), + [14933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [14937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14097), + [14941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14526), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10636), + [14949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14394), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14486), + [14957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14304), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14499), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14466), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14489), + [14973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [14977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14564), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14783), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14529), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [14991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14532), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13943), + [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13952), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13981), + [15005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1711), + [15008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14579), + [15011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14444), + [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10546), + [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14448), + [15019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12685), + [15022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7755), + [15025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14767), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10559), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14451), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14211), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9058), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14768), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14212), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14676), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14238), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14684), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [15056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14736), + [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14571), + [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14280), + [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14714), + [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14242), + [15073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12691), + [15076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7767), + [15079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14775), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14073), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14730), + [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14450), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14735), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14183), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14776), + [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [15108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14387), + [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14784), + [15116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 16), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14793), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), + [15124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14787), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14478), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14709), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14673), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [15142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14681), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13945), + [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), + [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14722), + [15154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1714), + [15157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14580), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14777), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13950), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14285), + [15172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16113), + [15176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14788), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14790), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14791), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14555), + [15196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 13), SHIFT(319), + [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14353), + [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9666), + [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14095), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13987), + [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13993), + [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14823), + [15217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1717), + [15220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14581), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14145), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9218), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14825), + [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9720), + [15233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14125), + [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16116), + [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14027), + [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [15245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14828), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14031), + [15253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [15257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14297), + [15260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1719), + [15263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14582), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14081), + [15270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 16), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14544), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14096), + [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14545), + [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [15282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13938), + [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14299), + [15290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1727), + [15293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14583), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14546), + [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14020), + [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14100), + [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14202), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14218), + [15314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12499), + [15317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7863), + [15320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14376), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9578), + [15325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14233), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14103), + [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14177), + [15337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12372), + [15340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7969), + [15343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14157), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14488), + [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13941), + [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), + [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14120), + [15356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(12602), + [15359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7919), + [15362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(14205), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [15367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14094), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14422), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [15376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14562), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14210), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14363), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14570), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14282), + [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14283), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9639), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14365), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [15403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14563), + [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9508), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14366), + [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), + [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14208), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14731), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [15418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14206), + [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14669), + [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14721), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14718), + [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14719), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14720), + [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14716), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14717), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [15450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15197), + [15460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10840), + [15464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [15466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7668), + [15469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(12635), + [15472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(15212), + [15475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(15775), + [15478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10840), + [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [15483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 19), + [15485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 19), + [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [15489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 19), SHIFT(12419), + [15492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 44), + [15494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 44), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [15498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 44), SHIFT(12979), + [15501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 24), + [15503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 24), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [15507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 24), SHIFT(13091), + [15510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 49), + [15512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 49), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [15516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 49), SHIFT(12341), + [15519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8217), + [15522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 78), + [15524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 78), + [15526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 78), SHIFT(13822), + [15529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 71), + [15531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 71), + [15533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 71), SHIFT(13726), + [15536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 102), + [15538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 102), + [15540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 102), SHIFT(12729), + [15543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 111), + [15545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 111), + [15547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 111), SHIFT(13550), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [15556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8214), + [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [15561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), + [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14148), + [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14923), + [15569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [15571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14085), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), + [15576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1459), + [15579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14070), + [15582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1461), + [15585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14071), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14102), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10928), + [15594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [15596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14480), + [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10942), + [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14553), + [15605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1452), + [15608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14067), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10919), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11405), + [15617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [15619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14059), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [15624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [15626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(13933), + [15629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1453), + [15632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14068), + [15635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1456), + [15638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14069), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), + [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11106), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10931), + [15647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1469), + [15650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14072), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10943), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10939), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10922), + [15663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [15665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14396), + [15668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [15670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14286), + [15673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(6246), + [15676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(14207), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14407), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10950), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10948), + [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10937), + [15691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [15693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [15695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 141), + [15697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 141), + [15699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12494), + [15702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), + [15704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(14351), + [15707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 142), + [15709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 142), + [15711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 9), + [15713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 9), + [15715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 16), + [15717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 16), + [15719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 167), + [15721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 167), + [15723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 22), + [15725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 22), + [15727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 11), + [15729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 11), + [15731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 172), + [15733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 172), + [15735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 22), + [15737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 22), + [15739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 3, 0, 5), + [15741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 3, 0, 5), + [15743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 11), + [15745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 11), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14351), + [15753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 16), + [15755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 16), + [15757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 23), + [15759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 23), + [15761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 47), + [15763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 47), + [15765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), + [15767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), + [15769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 100), + [15771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 100), + [15773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 133), + [15775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 133), + [15777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), + [15779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), + [15781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 47), + [15783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 47), + [15785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 79), + [15787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 79), + [15789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 134), + [15791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 134), + [15793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 48), + [15795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 48), + [15797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 80), + [15799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 80), + [15801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [15803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [15805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 3, 0, 3), + [15807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 3, 0, 3), + [15809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 6, 0, 50), + [15811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 6, 0, 50), + [15813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 6, 0, 50), + [15815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 6, 0, 50), + [15817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 72), + [15819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 72), + [15821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 110), + [15823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 110), + [15825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 73), + [15827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 73), + [15829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 112), + [15831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 112), + [15833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 4, 0, 7), + [15835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 4, 0, 7), + [15837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opaque_type, 1, 0, 0), + [15839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_opaque_type, 1, 0, 0), + [15841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 23), + [15843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 23), + [15845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 25), + [15847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 25), + [15849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 25), + [15851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 25), + [15853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [15855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [15857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 26), + [15859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 26), + [15861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [15863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [15865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 8), + [15867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 8), + [15869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 66), + [15871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 66), + [15873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(6448), + [15876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(14826), + [15879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), + [15881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 42), + [15883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 8), + [15885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 8), + [15887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 4, 0, 17), + [15889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 4, 0, 17), + [15891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 103), + [15893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 103), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15381), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11528), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16122), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11028), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16128), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16142), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11030), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16149), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15122), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11033), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15128), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15130), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16115), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15132), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15134), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15137), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), + [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15139), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15140), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), + [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15142), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15149), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11037), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15150), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11039), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15154), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15156), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15160), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15162), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11042), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15165), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11043), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15166), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15170), + [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11044), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15179), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15180), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15181), + [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15184), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11045), + [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15187), + [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15189), + [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11046), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15191), + [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11047), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15193), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15195), + [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15198), + [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15208), + [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15211), + [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15213), + [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15215), + [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11049), + [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15218), + [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16117), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11118), + [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13564), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), + [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12551), + [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12795), + [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12850), + [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11803), + [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10864), + [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11885), + [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12866), + [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), + [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), + [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12592), + [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16119), + [16051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [16053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14184), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11125), + [16060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [16062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14185), + [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12557), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15453), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11119), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15457), + [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12631), + [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13005), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), + [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11751), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12926), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12654), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16123), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11124), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16125), + [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12673), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16126), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15454), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16127), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11169), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16129), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12746), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16130), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11203), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16133), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11204), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16137), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11216), + [16131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [16133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10954), + [16136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(14674), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16138), + [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12808), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12849), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16139), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11310), + [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12853), + [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16140), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15475), + [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11108), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15493), + [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16141), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13100), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12869), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12951), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12901), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10940), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12402), + [16187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8795), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14951), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15711), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15720), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11128), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15725), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11129), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15733), + [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), + [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10925), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13720), + [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12962), + [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12342), + [16217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [16219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14192), + [16222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [16224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14193), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16143), + [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15462), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12980), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15464), + [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11210), + [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15466), + [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11211), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15470), + [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), + [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16144), + [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13614), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15737), + [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11140), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15750), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15764), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15776), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11144), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15781), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15793), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11148), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15797), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13101), + [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16145), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11312), + [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16146), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13719), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15802), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15803), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11154), + [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15806), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11156), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15808), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11158), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15829), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15833), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11161), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15838), + [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15848), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11165), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15869), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15874), + [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11167), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15879), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11168), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12354), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16147), + [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11331), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15884), + [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15897), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11172), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15907), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15908), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11173), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15910), + [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15914), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11175), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15922), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11177), + [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15938), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15949), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11180), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15972), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11181), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16019), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16020), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16025), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11185), + [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16027), + [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16035), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16148), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12358), + [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16150), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11347), + [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16037), + [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16040), + [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16041), + [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11188), + [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16042), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16046), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16048), + [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16055), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16057), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11192), + [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16059), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16060), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16061), + [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16062), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11195), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16066), + [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11196), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16068), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16070), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), + [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16151), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11365), + [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16071), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16072), + [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16074), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16076), + [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11198), + [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16081), + [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16082), + [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11199), + [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16083), + [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11200), + [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16086), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16091), + [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16092), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16098), + [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16100), + [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16105), + [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16120), + [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11202), + [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16121), + [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16152), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16030), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12114), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13568), + [16491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [16493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14201), + [16496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15472), + [16498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11240), + [16500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11218), + [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15477), + [16506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15482), + [16508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15484), + [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11302), + [16512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15491), + [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11304), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15498), + [16518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11306), + [16520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15500), + [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15712), + [16524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [16526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12863), + [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [16530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16044), + [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15136), + [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12122), + [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15486), + [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11369), + [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15143), + [16544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11229), + [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15147), + [16548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [16550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13741), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15509), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11374), + [16556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13758), + [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15159), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15161), + [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11234), + [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15163), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11235), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15167), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11239), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15175), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11242), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15183), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15188), + [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15190), + [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11246), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15192), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11248), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15200), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11250), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15202), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15502), + [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15503), + [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), + [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15203), + [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15204), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11254), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15206), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11256), + [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15209), + [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11258), + [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15216), + [16618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15220), + [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11261), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15224), + [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15227), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11265), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15234), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15235), + [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11267), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15237), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11268), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15504), + [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11318), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15239), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15241), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11269), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15244), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15246), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11270), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15247), + [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15248), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15259), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11274), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15261), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15270), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11277), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15275), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11278), + [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15282), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11279), + [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15283), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15288), + [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11282), + [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15293), + [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15294), + [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15295), + [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15296), + [16692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15297), + [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11284), + [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15304), + [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15308), + [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11285), + [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15323), + [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15329), + [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11286), + [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15330), + [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11288), + [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15334), + [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15336), + [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15337), + [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15339), + [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11291), + [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15341), + [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11292), + [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15342), + [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15343), + [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11293), + [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15344), + [16734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15346), + [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15347), + [16738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15348), + [16740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11294), + [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15349), + [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15350), + [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11295), + [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15351), + [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11296), + [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15353), + [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15356), + [16756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15357), + [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15358), + [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15359), + [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15360), + [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15361), + [16766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11298), + [16768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15362), + [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15508), + [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11320), + [16774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [16776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [16778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12154), + [16780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [16782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11308), + [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12116), + [16786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15513), + [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15518), + [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11323), + [16792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15519), + [16794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15524), + [16796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11327), + [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15530), + [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15538), + [16802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11329), + [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [16806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11313), + [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15541), + [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), + [16812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15735), + [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15738), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11381), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15742), + [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15543), + [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15544), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11332), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12143), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15545), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15546), + [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11333), + [16838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15548), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15550), + [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11335), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15552), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11337), + [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15554), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15556), + [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11340), + [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15559), + [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11341), + [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15562), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11342), + [16862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15563), + [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15565), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11345), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15567), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15569), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15752), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15570), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15571), + [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15577), + [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11348), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15579), + [16884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15580), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11349), + [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15581), + [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15583), + [16892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11350), + [16894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15586), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11352), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15588), + [16900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15591), + [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15600), + [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15603), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11355), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15623), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11356), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15642), + [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15643), + [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11359), + [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15783), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15644), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15646), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15647), + [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15648), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11360), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15649), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15650), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11361), + [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15651), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11362), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15652), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15655), + [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15998), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11387), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12561), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15656), + [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15657), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15658), + [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15659), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15660), + [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11364), + [16966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15661), + [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16124), + [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16135), + [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11388), + [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15164), + [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11395), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15230), + [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [16982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12392), + [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15739), + [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15754), + [16988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15260), + [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15826), + [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11472), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12398), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12400), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12405), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15898), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11496), + [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15279), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15354), + [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15426), + [17018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11410), + [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15465), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12433), + [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15780), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11591), + [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15367), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15405), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15383), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15412), + [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11650), + [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15421), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15424), + [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11663), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15408), + [17048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15494), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11697), + [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12458), + [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15432), + [17058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11399), + [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15473), + [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15515), + [17064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10927), + [17066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12627), + [17068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), + [17070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12924), + [17072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [17074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11407), + [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12421), + [17078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8794), + [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15064), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11107), + [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15901), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11418), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13739), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12441), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15374), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15384), + [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11448), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15391), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11449), + [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15430), + [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11455), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13791), + [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [17118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12523), + [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12465), + [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), + [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16093), + [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11877), + [17130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [17132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12481), + [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12487), + [17136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15844), + [17138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11716), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12418), + [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11442), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12886), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12534), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15168), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16095), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15798), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11372), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12518), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12548), + [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12880), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11468), + [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12526), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12527), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12532), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12975), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11729), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15182), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), + [17208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15185), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [17212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13209), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16136), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11476), + [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12546), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15124), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15133), + [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15135), + [17230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11480), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15146), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11489), + [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15368), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11491), + [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15369), + [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12558), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16096), + [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11019), + [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12596), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15867), + [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [17258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13394), + [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15936), + [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15940), + [17264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11723), + [17266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15194), + [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15196), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11482), + [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15199), + [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11483), + [17276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15205), + [17278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11487), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13106), + [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12586), + [17290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15966), + [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13128), + [17296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15981), + [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11725), + [17300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12594), + [17304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15377), + [17306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15380), + [17308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11511), + [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16087), + [17312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11783), + [17314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15385), + [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11562), + [17318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15390), + [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15207), + [17322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11499), + [17324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15214), + [17326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15217), + [17328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15219), + [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11503), + [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15222), + [17334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11505), + [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15228), + [17338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11507), + [17340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15229), + [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15392), + [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11565), + [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15393), + [17348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15401), + [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11569), + [17352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15406), + [17354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [17356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12624), + [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15407), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11571), + [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15409), + [17364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11572), + [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16023), + [17368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16032), + [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11730), + [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13141), + [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15231), + [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15232), + [17378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11513), + [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15233), + [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11515), + [17384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15238), + [17386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11517), + [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15242), + [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15249), + [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11520), + [17394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15250), + [17396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15252), + [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11524), + [17400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15256), + [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15258), + [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11526), + [17406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15262), + [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11527), + [17410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16051), + [17412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11735), + [17414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15413), + [17416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15415), + [17418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11576), + [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15263), + [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15264), + [17424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11530), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15265), + [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15266), + [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11531), + [17432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15267), + [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15268), + [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11533), + [17438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15269), + [17440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11535), + [17442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15271), + [17444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15272), + [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11538), + [17448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15274), + [17450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11539), + [17452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15276), + [17454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11540), + [17456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15277), + [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15281), + [17460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11543), + [17462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15285), + [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15286), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15416), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15420), + [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11577), + [17472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15287), + [17474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15289), + [17476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15290), + [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11545), + [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15291), + [17482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15292), + [17484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11546), + [17486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15300), + [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15301), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11964), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15302), + [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11549), + [17496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15303), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15305), + [17500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15306), + [17502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15307), + [17504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11552), + [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15309), + [17508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11553), + [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15310), + [17512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15311), + [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11555), + [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15312), + [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15313), + [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16089), + [17522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11875), + [17524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15315), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11556), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15316), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15317), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11557), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15318), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11558), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15319), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15320), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16085), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15322), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15324), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15325), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15327), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15328), + [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11561), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16097), + [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11060), + [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15331), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15422), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15423), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11579), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15425), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11581), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15428), + [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15429), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11584), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15431), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11585), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15433), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11586), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15434), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15436), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11589), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15439), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15442), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15505), + [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15911), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16099), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11076), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15444), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15445), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15446), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11594), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15448), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15449), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11595), + [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15450), + [17620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15458), + [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11596), + [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15459), + [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11600), + [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15460), + [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15463), + [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15469), + [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15471), + [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11603), + [17638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15480), + [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11604), + [17642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15481), + [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15510), + [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11607), + [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16084), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13358), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11597), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12927), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15511), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15514), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15605), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11606), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15673), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11615), + [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), + [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12956), + [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15680), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15682), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11617), + [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15684), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11618), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15685), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15686), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12981), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15689), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12997), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13003), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15516), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15690), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13033), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15693), + [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15694), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13045), + [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13047), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15699), + [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11629), + [17732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13052), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15540), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11630), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15542), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13064), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13081), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15709), + [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15547), + [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15549), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11640), + [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15551), + [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15555), + [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11645), + [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13105), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13110), + [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16088), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11742), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15946), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11382), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15557), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11652), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15561), + [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15564), + [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15566), + [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), + [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15568), + [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11658), + [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15572), + [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11660), + [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15573), + [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16134), + [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11749), + [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15121), + [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11752), + [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13135), + [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15127), + [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15144), + [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11759), + [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15574), + [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15575), + [17826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11666), + [17828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15576), + [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11668), + [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15578), + [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11670), + [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15582), + [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15584), + [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11673), + [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15585), + [17844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15587), + [17846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11677), + [17848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15589), + [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15590), + [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11679), + [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15592), + [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), + [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15155), + [17860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13223), + [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15593), + [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15594), + [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11682), + [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15595), + [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15596), + [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11683), + [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15597), + [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15598), + [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11685), + [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15599), + [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11687), + [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15601), + [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15602), + [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11690), + [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15604), + [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11691), + [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15606), + [17898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11692), + [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15607), + [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15608), + [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11695), + [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15609), + [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15610), + [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13361), + [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15611), + [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15612), + [17918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15613), + [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11698), + [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15614), + [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15615), + [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11699), + [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15616), + [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15617), + [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11700), + [17934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15618), + [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11702), + [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15619), + [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15620), + [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15621), + [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15622), + [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11705), + [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15624), + [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), + [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15625), + [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15626), + [17956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11707), + [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15169), + [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15627), + [17962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15628), + [17964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15629), + [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15630), + [17968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11708), + [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15631), + [17972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15632), + [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11709), + [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15633), + [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11710), + [17980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15634), + [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15635), + [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15636), + [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15637), + [17988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15638), + [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15639), + [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15640), + [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11712), + [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15641), + [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13363), + [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [18004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13409), + [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13906), + [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15414), + [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16036), + [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11389), + [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16022), + [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11459), + [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [18022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12364), + [18024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15366), + [18026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11574), + [18028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15778), + [18030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11788), + [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15378), + [18034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11785), + [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15201), + [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15812), + [18040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15210), + [18042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15223), + [18044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11787), + [18046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [18048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [18050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13760), + [18052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [18054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11733), + [18056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13360), + [18058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [18060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15243), + [18062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15245), + [18064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11791), + [18066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [18068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13557), + [18070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10289), + [18072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11743), + [18074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [18076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [18078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13380), + [18080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15255), + [18082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15257), + [18084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11793), + [18086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15284), + [18088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11806), + [18090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [18092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13398), + [18094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15298), + [18096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10384), + [18098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [18100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13604), + [18102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [18104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13408), + [18106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13413), + [18108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15326), + [18110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16162), + [18112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(11803), + [18115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [18117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(11751), + [18120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15338), + [18122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15490), + [18124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11839), + [18126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15717), + [18128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11874), + [18130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [18132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13435), + [18134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [18136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13775), + [18138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15724), + [18140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [18142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13325), + [18144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [18146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13442), + [18148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [18150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13444), + [18152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [18154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13448), + [18156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15721), + [18158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11778), + [18160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15723), + [18162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15736), + [18164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11882), + [18166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [18168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13458), + [18170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [18172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [18174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13908), + [18176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [18178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [18180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13077), + [18182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [18184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12528), + [18186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [18188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11055), + [18190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12582), + [18192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [18194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13471), + [18196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16056), + [18198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), + [18200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15730), + [18202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15732), + [18204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11795), + [18206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15734), + [18208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11796), + [18210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15741), + [18212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11800), + [18214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12541), + [18216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16103), + [18218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [18220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13495), + [18222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16069), + [18224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15784), + [18226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15226), + [18228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15236), + [18230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11880), + [18232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [18234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13502), + [18236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15827), + [18238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [18241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(14112), + [18244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15872), + [18246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15743), + [18248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11809), + [18250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15759), + [18252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15774), + [18254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15777), + [18256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11813), + [18258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15779), + [18260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11815), + [18262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15785), + [18264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11817), + [18266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15787), + [18268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15902), + [18270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11903), + [18272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15273), + [18274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11881), + [18276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 29), + [18278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14948), + [18280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [18282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13528), + [18284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [18286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12622), + [18288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15950), + [18290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15365), + [18292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11890), + [18294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [18296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14163), + [18299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15789), + [18301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15790), + [18303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11824), + [18305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15791), + [18307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11826), + [18309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15799), + [18311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11828), + [18313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15825), + [18315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15830), + [18317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11831), + [18319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15836), + [18321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15843), + [18323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11835), + [18325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15850), + [18327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15859), + [18329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11837), + [18331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15862), + [18333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11838), + [18335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15990), + [18337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11919), + [18339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15441), + [18341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16011), + [18343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11923), + [18345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [18347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13778), + [18349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15863), + [18351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15866), + [18353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11840), + [18355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15870), + [18357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15871), + [18359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11841), + [18361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15878), + [18363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15880), + [18365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11843), + [18367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15906), + [18369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11845), + [18371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15915), + [18373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15916), + [18375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11848), + [18377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15930), + [18379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11849), + [18381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15934), + [18383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11850), + [18385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15937), + [18387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15951), + [18389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11853), + [18391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15957), + [18393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15967), + [18395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16029), + [18397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15970), + [18399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15973), + [18401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15974), + [18403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11855), + [18405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15975), + [18407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15976), + [18409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11856), + [18411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15977), + [18413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15978), + [18415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11857), + [18417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15979), + [18419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11859), + [18421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15980), + [18423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15982), + [18425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15983), + [18427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15984), + [18429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11862), + [18431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15986), + [18433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11863), + [18435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15987), + [18437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15988), + [18439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11864), + [18441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15989), + [18443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15991), + [18445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15992), + [18447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15994), + [18449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11865), + [18451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15995), + [18453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15996), + [18455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11866), + [18457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15997), + [18459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11867), + [18461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16002), + [18463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16003), + [18465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16004), + [18467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16006), + [18469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16007), + [18471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16008), + [18473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16009), + [18475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11869), + [18477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16010), + [18479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16106), + [18481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11081), + [18483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [18485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13806), + [18487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15396), + [18489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16039), + [18491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16107), + [18493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16109), + [18495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11089), + [18497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16111), + [18499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16112), + [18501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11096), + [18503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15376), + [18505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11902), + [18507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15410), + [18509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15456), + [18511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16077), + [18513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15468), + [18515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11931), + [18517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15474), + [18519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11936), + [18521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), + [18523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15553), + [18525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11939), + [18527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7087), + [18530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 2, 0, 0), + [18532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(14239), + [18535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [18537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [18539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12873), + [18541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [18543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11893), + [18545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13763), + [18547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15560), + [18549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [18551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12471), + [18553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [18555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12472), + [18557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [18559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11907), + [18561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16114), + [18563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11099), + [18565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [18567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), + [18569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13784), + [18571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [18573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13926), + [18575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [18577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [18579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12876), + [18581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [18583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), + [18585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12571), + [18587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [18589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12415), + [18591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15713), + [18593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15479), + [18595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15722), + [18597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11945), + [18599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [18601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13808), + [18603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(1782), + [18606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14596), + [18609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [18611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [18613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13818), + [18615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(1783), + [18618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14597), + [18621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13824), + [18623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16045), + [18625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(1786), + [18628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14598), + [18631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(1789), + [18634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14599), + [18637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(1791), + [18640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14600), + [18643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15299), + [18645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [18647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13854), + [18649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [18651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12486), + [18653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15726), + [18655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11951), + [18657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15886), + [18659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [18661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13865), + [18663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [18665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13867), + [18667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(1799), + [18670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14601), + [18673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [18675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13874), + [18677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16052), + [18679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11946), + [18681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16058), + [18683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15731), + [18685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11957), + [18687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15747), + [18689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15760), + [18691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11961), + [18693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [18695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13898), + [18697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15894), + [18699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), + [18701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15766), + [18703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15782), + [18705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), + [18707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15786), + [18709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15807), + [18711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11017), + [18713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [18715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13916), + [18717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15814), + [18719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11018), + [18721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [18723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12699), + [18725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16094), + [18727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15822), + [18729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16063), + [18731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16065), + [18733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11963), + [18735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16067), + [18737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11554), + [18739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16073), + [18741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11944), + [18743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15831), + [18745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), + [18747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15839), + [18749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [18751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13097), + [18753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15858), + [18755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), + [18757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [18759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12590), + [18761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15875), + [18763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15933), + [18765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), + [18767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15955), + [18769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11025), + [18771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16064), + [18773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16075), + [18775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11429), + [18777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16080), + [18779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15314), + [18781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12797), + [18783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12165), + [18785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12001), + [18787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12110), + [18789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12003), + [18791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12006), + [18793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12194), + [18795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12012), + [18797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12016), + [18799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12017), + [18801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12121), + [18803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12020), + [18805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12022), + [18807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12023), + [18809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12025), + [18811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12026), + [18813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12029), + [18815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12030), + [18817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12216), + [18819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12033), + [18821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12133), + [18823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12038), + [18825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12039), + [18827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12140), + [18829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12042), + [18831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12045), + [18833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12224), + [18835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12048), + [18837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12151), + [18839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12051), + [18841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12053), + [18843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12233), + [18845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12055), + [18847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12056), + [18849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12057), + [18851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12058), + [18853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12060), + [18855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12061), + [18857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12063), + [18859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12064), + [18861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12067), + [18863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12069), + [18865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12681), + [18867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12071), + [18869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12318), + [18871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12073), + [18873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12074), + [18875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12166), + [18877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12077), + [18879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12079), + [18881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12080), + [18883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12082), + [18885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12083), + [18887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12084), + [18889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12085), + [18891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12087), + [18893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12088), + [18895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12090), + [18897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12092), + [18899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12094), + [18901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12095), + [18903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12096), + [18905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12097), + [18907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12098), + [18909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12099), + [18911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12101), + [18913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12142), + [18915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12147), + [18917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12175), + [18919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12376), + [18921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [18923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12181), + [18925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12182), + [18927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12382), + [18929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12190), + [18931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12163), + [18933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12484), + [18935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [18937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12195), + [18939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [18941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [18943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [18945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12137), + [18947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12138), + [18949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [18951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [18953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12169), + [18955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12401), + [18957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [18959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12219), + [18961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [18963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12176), + [18965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12226), + [18967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12180), + [18969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12452), + [18971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12183), + [18973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12232), + [18975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12188), + [18977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12514), + [18979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12274), + [18981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12160), + [18983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12196), + [18985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12524), + [18987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12199), + [18989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13422), + [18991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12585), + [18993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14945), + [18995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14281), + [18997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12203), + [18999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12204), + [19001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12336), + [19003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12207), + [19005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12337), + [19007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12211), + [19009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12530), + [19011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12343), + [19013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12218), + [19015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12348), + [19017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12220), + [19019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12349), + [19021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12223), + [19023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12355), + [19025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12356), + [19027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12229), + [19029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12235), + [19031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12236), + [19033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12362), + [19035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12239), + [19037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12366), + [19039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12242), + [19041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12243), + [19043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12245), + [19045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12246), + [19047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12531), + [19049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12249), + [19051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12250), + [19053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12370), + [19055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12253), + [19057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12545), + [19059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12260), + [19061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12261), + [19063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12265), + [19065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12270), + [19067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12378), + [19069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12273), + [19071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12379), + [19073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12276), + [19075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12278), + [19077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12385), + [19079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12282), + [19081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14495), + [19083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12283), + [19085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12284), + [19087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12285), + [19089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12287), + [19091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12289), + [19093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14088), + [19095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14090), + [19097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12292), + [19099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12293), + [19101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12552), + [19103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12298), + [19105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12300), + [19107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [19109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14789), + [19112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12388), + [19114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12302), + [19116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14146), + [19118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14147), + [19120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12651), + [19122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12305), + [19124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12306), + [19126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12309), + [19128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12311), + [19130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [19132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(13940), + [19135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12312), + [19137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [19139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(13944), + [19142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12314), + [19144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [19146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [19148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12315), + [19150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [19152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(13977), + [19155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [19157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(13979), + [19160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12316), + [19162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12317), + [19164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [19166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [19168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12320), + [19170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12321), + [19172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [19174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14021), + [19177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12323), + [19179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12325), + [19181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12397), + [19183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12327), + [19185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12328), + [19187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12329), + [19189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12330), + [19191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12331), + [19193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12332), + [19195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12334), + [19197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12409), + [19199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12411), + [19201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [19203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12564), + [19205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12393), + [19207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12394), + [19209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13839), + [19211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12416), + [19213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12543), + [19215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [19217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12420), + [19219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [19221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12553), + [19223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [19225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [19227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12422), + [19229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12423), + [19231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12599), + [19233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [19235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 1, 0, 29), + [19237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12425), + [19239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12428), + [19241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12426), + [19243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14294), + [19245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12432), + [19247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12434), + [19249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12437), + [19251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12440), + [19253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13136), + [19255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [19257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12443), + [19259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12566), + [19261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [19263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12447), + [19265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12461), + [19267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), + [19269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12449), + [19271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [19273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [19275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10944), + [19277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [19279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12407), + [19281] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [19283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12453), + [19285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [19287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [19289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [19291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13800), + [19293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12455), + [19295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [19297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [19299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [19301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12457), + [19303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [19305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12463), + [19307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12504), + [19309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12507), + [19311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12456), + [19313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12466), + [19315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [19317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12473), + [19319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12474), + [19321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12482), + [19323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [19325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [19327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12483), + [19329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12925), + [19331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [19333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [19335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12490), + [19337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12495), + [19339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [19341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12498), + [19343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [19345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12500), + [19347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14711), + [19349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [19351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12544), + [19353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14087), + [19355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14093), + [19357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12519), + [19359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12520), + [19361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [19363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [19365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14368), + [19367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14379), + [19369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12502), + [19371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [19373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [19375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [19377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13092), + [19379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [19381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), + [19383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [19385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [19387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [19389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [19391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [19393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [19395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12503), + [19397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12505), + [19399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14149), + [19401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13009), + [19403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13044), + [19405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12537), + [19407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12506), + [19409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14154), + [19411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12562), + [19413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12569), + [19415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [19417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12511), + [19419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [19421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [19423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12516), + [19425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [19427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [19429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12559), + [19431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12547), + [19433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13333), + [19435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [19437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12568), + [19439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [19441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [19443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [19445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [19447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [19449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [19451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [19453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [19455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [19457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [19459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12574), + [19461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12575), + [19463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12577), + [19465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [19467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [19469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [19471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [19473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12576), + [19475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [19477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12579), + [19479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13343), + [19481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [19483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12597), + [19485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12662), + [19487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12667), + [19489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12851), + [19491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [19493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [19495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12605), + [19497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12617), + [19499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12614), + [19501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12893), + [19503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12583), + [19505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13754), + [19507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12119), + [19509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [19511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13151), + [19513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [19515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12864), + [19517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [19519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [19521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12928), + [19523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [19525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14203), + [19527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [19529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13356), + [19531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14268), + [19533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14272), + [19535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15117), + [19537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12634), + [19539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14356), + [19541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14357), + [19543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [19545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12637), + [19547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [19549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12643), + [19551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12954), + [19553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [19555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13716), + [19557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12657), + [19559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13157), + [19561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [19563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13365), + [19565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [19567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14139), + [19569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12870), + [19571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10945), + [19573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [19575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12668), + [19577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14171), + [19579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14173), + [19581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13464), + [19583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12751), + [19585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14216), + [19587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14217), + [19589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12675), + [19591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12782), + [19593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12680), + [19595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), + [19597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12656), + [19599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12683), + [19601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [19603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12692), + [19605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10991), + [19607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14446), + [19609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [19611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [19613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12700), + [19615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9521), + [19617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12704), + [19619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14474), + [19621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14476), + [19623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13026), + [19625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12417), + [19627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13326), + [19629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14509), + [19631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14510), + [19633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12710), + [19635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12711), + [19637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12716), + [19639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [19641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12720), + [19643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14766), + [19645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13184), + [19647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12858), + [19649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14772), + [19651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14774), + [19653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12728), + [19655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9072), + [19657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12695), + [19659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12730), + [19661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [19663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14798), + [19665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14799), + [19667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12735), + [19669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [19671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9074), + [19673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12868), + [19675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12743), + [19677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13102), + [19679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12747), + [19681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14786), + [19683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12748), + [19685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12754), + [19687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12877), + [19689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14493), + [19691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14566), + [19693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12758), + [19695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12759), + [19697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14165), + [19699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14166), + [19701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12761), + [19703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12762), + [19705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [19707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12775), + [19709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12776), + [19711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13191), + [19713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12779), + [19715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14022), + [19717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12598), + [19719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12784), + [19721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14153), + [19723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14161), + [19725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12785), + [19727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12788), + [19729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14471), + [19731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14472), + [19733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [19735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12791), + [19737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13076), + [19739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12794), + [19741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12903), + [19743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14078), + [19745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12799), + [19747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14104), + [19749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14108), + [19751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12801), + [19753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14135), + [19755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14141), + [19757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12802), + [19759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12803), + [19761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14133), + [19763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14155), + [19765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14158), + [19767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14180), + [19769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14182), + [19771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12804), + [19773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14229), + [19775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14234), + [19777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14236), + [19779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14261), + [19781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14262), + [19783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12806), + [19785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12807), + [19787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12810), + [19789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12811), + [19791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12814), + [19793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12816), + [19795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12818), + [19797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [19799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12820), + [19801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12821), + [19803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [19805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12824), + [19807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12826), + [19809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12827), + [19811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12829), + [19813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [19815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12830), + [19817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12831), + [19819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12832), + [19821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12834), + [19823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12835), + [19825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12837), + [19827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12839), + [19829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12126), + [19831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12841), + [19833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12842), + [19835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12843), + [19837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12844), + [19839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12845), + [19841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12846), + [19843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12848), + [19845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [19847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [19849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12881), + [19851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [19853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12884), + [19855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12350), + [19857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12889), + [19859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12939), + [19861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13120), + [19863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12946), + [19865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12897), + [19867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12900), + [19869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [19871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [19873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12905), + [19875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12906), + [19877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12913), + [19879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [19881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12918), + [19883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13324), + [19885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12930), + [19887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12932), + [19889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [19891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12935), + [19893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12942), + [19895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13571), + [19897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13138), + [19899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12947), + [19901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12948), + [19903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [19905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12952), + [19907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10778), + [19909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12908), + [19911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12958), + [19913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10531), + [19915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12923), + [19917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12998), + [19919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13577), + [19921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12960), + [19923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12964), + [19925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [19927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12965), + [19929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13065), + [19931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12969), + [19933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12970), + [19935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13370), + [19937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12974), + [19939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [19941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13016), + [19943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12986), + [19945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12987), + [19947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12856), + [19949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12971), + [19951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12990), + [19953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12994), + [19955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13000), + [19957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13575), + [19959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13006), + [19961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13057), + [19963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13008), + [19965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [19967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [19969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13013), + [19971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [19973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [19975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [19977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [19979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [19981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [19983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13014), + [19985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13015), + [19987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13017), + [19989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13019), + [19991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13020), + [19993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [19995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13022), + [19997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13025), + [19999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [20001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [20003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [20005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13034), + [20007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13035), + [20009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13029), + [20011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13037), + [20013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13039), + [20015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13554), + [20017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [20019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13041), + [20021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13042), + [20023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [20025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [20027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [20029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [20031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13046), + [20033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [20035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [20037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13049), + [20039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13055), + [20041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13569), + [20043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13050), + [20045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13060), + [20047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13061), + [20049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [20051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13109), + [20053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13062), + [20055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13063), + [20057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [20059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13115), + [20061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13082), + [20063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13068), + [20065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13069), + [20067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13071), + [20069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13073), + [20071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [20073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [20075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13931), + [20077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13078), + [20079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [20081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13124), + [20083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13095), + [20085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13098), + [20087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13590), + [20089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [20091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13079), + [20093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12678), + [20095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13080), + [20097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13084), + [20099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13085), + [20101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [20103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [20105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13113), + [20107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13087), + [20109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12736), + [20111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13379), + [20113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13147), + [20115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13116), + [20117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [20119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [20121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13123), + [20123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [20125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [20127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13751), + [20129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13158), + [20131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [20133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13729), + [20135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(2046), + [20138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 32), SHIFT(14663), + [20141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [20143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13252), + [20145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13406), + [20147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13260), + [20149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13142), + [20151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13174), + [20153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13145), + [20155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13149), + [20157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12373), + [20159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13181), + [20161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [20163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13189), + [20165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [20167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13162), + [20169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(2047), + [20172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), SHIFT(14664), + [20175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13199), + [20177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12002), + [20179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(2050), + [20182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), SHIFT(14665), + [20185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [20187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13416), + [20189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13168), + [20191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13336), + [20193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13225), + [20195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [20197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [20199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13175), + [20201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13235), + [20203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13179), + [20205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13182), + [20207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13769), + [20209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [20211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [20213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13187), + [20215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13774), + [20217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13265), + [20219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13195), + [20221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13292), + [20223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13198), + [20225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13430), + [20227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(2053), + [20230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), SHIFT(14666), + [20233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(2055), + [20236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 89), SHIFT(14667), + [20239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13321), + [20241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13202), + [20243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13203), + [20245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13206), + [20247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13790), + [20249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13210), + [20251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13328), + [20253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12891), + [20255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [20257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13217), + [20259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13219), + [20261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [20263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13222), + [20265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13341), + [20267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13228), + [20269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13347), + [20271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13802), + [20273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13232), + [20275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13233), + [20277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13236), + [20279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13353), + [20281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13238), + [20283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13239), + [20285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13241), + [20287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13242), + [20289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [20291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13245), + [20293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13246), + [20295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [20297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13249), + [20299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13809), + [20301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13366), + [20303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13609), + [20305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13254), + [20307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13255), + [20309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13258), + [20311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13261), + [20313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13373), + [20315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13264), + [20317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13374), + [20319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13267), + [20321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13269), + [20323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13271), + [20325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13272), + [20327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13273), + [20329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13274), + [20331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13276), + [20333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13277), + [20335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13279), + [20337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13280), + [20339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13283), + [20341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13285), + [20343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13378), + [20345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13287), + [20347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13289), + [20349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13290), + [20351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13293), + [20353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13295), + [20355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13296), + [20357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13298), + [20359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13299), + [20361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13300), + [20363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13301), + [20365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13303), + [20367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13304), + [20369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13306), + [20371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13308), + [20373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13310), + [20375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13311), + [20377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13312), + [20379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13313), + [20381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13314), + [20383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13315), + [20385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13317), + [20387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(2063), + [20390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 119), SHIFT(14668), + [20393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13383), + [20395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13385), + [20397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13387), + [20399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13388), + [20401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12967), + [20403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13393), + [20405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13396), + [20407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13094), + [20409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14961), + [20411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13431), + [20413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13438), + [20415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13402), + [20417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13443), + [20419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13819), + [20421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13820), + [20423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8673), + [20425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13344), + [20427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8695), + [20429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13357), + [20431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [20433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13466), + [20435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14084), + [20437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [20439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13412), + [20441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13415), + [20443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12371), + [20445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13420), + [20447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [20449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13425), + [20451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [20453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12380), + [20455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13494), + [20457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13390), + [20459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13429), + [20461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13441), + [20463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13500), + [20465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13449), + [20467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13848), + [20469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [20471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [20473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13453), + [20475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13507), + [20477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [20479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13455), + [20481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13456), + [20483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13457), + [20485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13592), + [20487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [20489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [20491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13460), + [20493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13461), + [20495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13436), + [20497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13437), + [20499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13463), + [20501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [20503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13465), + [20505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13722), + [20507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [20509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [20511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13478), + [20513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13724), + [20515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [20517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13480), + [20519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13451), + [20521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13852), + [20523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13730), + [20525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10974), + [20527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12650), + [20529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13484), + [20531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12892), + [20533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [20535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13488), + [20537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13489), + [20539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [20541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13492), + [20543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13472), + [20545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13735), + [20547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13737), + [20549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [20551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [20553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13740), + [20555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13742), + [20557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13496), + [20559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [20561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13497), + [20563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13483), + [20565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13486), + [20567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [20569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13505), + [20571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13506), + [20573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13752), + [20575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [20577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13508), + [20579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13755), + [20581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [20583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13504), + [20585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13713), + [20587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13509), + [20589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13761), + [20591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [20593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13514), + [20595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13510), + [20597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13516), + [20599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13519), + [20601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13517), + [20603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13521), + [20605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13732), + [20607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13524), + [20609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [20611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13525), + [20613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [20615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13793), + [20617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [20619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13797), + [20621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13535), + [20623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13527), + [20625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13538), + [20627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13542), + [20629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13529), + [20631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13531), + [20633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13533), + [20635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13555), + [20637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13813), + [20639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [20641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13823), + [20643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13559), + [20645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13536), + [20647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [20649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13544), + [20651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13566), + [20653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13872), + [20655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13762), + [20657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13570), + [20659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [20661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13573), + [20663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13562), + [20665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13130), + [20667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13578), + [20669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [20671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [20673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13586), + [20675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13589), + [20677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [20679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13779), + [20681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13593), + [20683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13594), + [20685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13597), + [20687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13601), + [20689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11971), + [20691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13608), + [20693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13610), + [20695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13613), + [20697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12108), + [20699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13621), + [20701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12399), + [20703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13619), + [20705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [20707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11974), + [20709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13623), + [20711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13624), + [20713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13627), + [20715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13629), + [20717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13630), + [20719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13632), + [20721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13633), + [20723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12941), + [20725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13636), + [20727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13637), + [20729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [20731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13640), + [20733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [20735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13645), + [20737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13646), + [20739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [20741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13649), + [20743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13816), + [20745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13652), + [20747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11993), + [20749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13655), + [20751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13658), + [20753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13660), + [20755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [20757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13662), + [20759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13663), + [20761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13664), + [20763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13665), + [20765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13667), + [20767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13668), + [20769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13670), + [20771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13671), + [20773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13355), + [20775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13674), + [20777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13676), + [20779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13727), + [20781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13678), + [20783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13728), + [20785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13680), + [20787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13681), + [20789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [20791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13684), + [20793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13686), + [20795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13687), + [20797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13689), + [20799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13690), + [20801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13691), + [20803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13692), + [20805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13694), + [20807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13695), + [20809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13697), + [20811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13699), + [20813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15050), + [20815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13701), + [20817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13702), + [20819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13703), + [20821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13704), + [20823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13705), + [20825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13706), + [20827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13708), + [20829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13836), + [20831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [20833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12009), + [20835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13734), + [20837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13860), + [20839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [20841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13777), + [20843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12989), + [20845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [20847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10930), + [20849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [20851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13826), + [20853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13864), + [20855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13888), + [20857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), + [20859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14449), + [20861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13766), + [20863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13902), + [20865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [20867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [20869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13907), + [20871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), + [20873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13747), + [20875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13909), + [20877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12036), + [20879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), + [20881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13759), + [20883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13771), + [20885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12647), + [20887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [20889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), + [20891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13915), + [20893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13920), + [20895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [20897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13786), + [20899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13850), + [20901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13923), + [20903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12076), + [20905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13925), + [20907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13799), + [20909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13804), + [20911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [20913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12107), + [20915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [20917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [20919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11978), + [20921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12139), + [20923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [20925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13565), + [20927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [20929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13831), + [20931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [20933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14987), + [20935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15040), + [20937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13834), + [20939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15054), + [20941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12118), + [20943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12882), + [20945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [20947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(13800), + [20950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13846), + [20952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [20954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [20956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [20958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [20960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13855), + [20962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13858), + [20964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12120), + [20966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12929), + [20968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [20970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13887), + [20972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [20974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13899), + [20976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [20978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12642), + [20980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12671), + [20982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11975), + [20984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13879), + [20986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12124), + [20988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11979), + [20990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13922), + [20992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12128), + [20994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12591), + [20996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14859), + [20998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14861), + [21000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13607), + [21002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14865), + [21004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [21006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11999), + [21008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13930), + [21010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11967), + [21012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [21014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13917), + [21016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14931), + [21018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14934), + [21020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14938), + [21022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11972), + [21024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12603), + [21026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12136), + [21028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [21030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12613), + [21032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [21034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14964), + [21036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14968), + [21038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14972), + [21040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12145), + [21042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 16), + [21044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [21046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12155), + [21048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11980), + [21050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14983), + [21052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14985), + [21054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15119), + [21056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13927), + [21058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12103), + [21060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14997), + [21062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14998), + [21064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13549), + [21066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15002), + [21068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15007), + [21070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15008), + [21072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11983), + [21074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15011), + [21076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12156), + [21078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15019), + [21080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15022), + [21082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [21084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15025), + [21086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [21088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15031), + [21090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15032), + [21092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15035), + [21094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11986), + [21096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11987), + [21098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [21100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12618), + [21102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [21104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11990), + [21106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13054), + [21108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12705), + [21110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [21112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12883), + [21114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12536), + [21116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12630), + [21118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11994), + [21120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [21122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12725), + [21124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13171), + [21126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [21128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [21130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [21132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [21134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [21136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [21138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [21140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [21142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [21144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [21146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [21148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11446), + [21150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13983), + [21152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15522), + [21154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11452), + [21156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15558), + [21158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11454), + [21160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15876), + [21162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11807), + [21164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [21166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11879), + [21168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13955), + [21170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [21172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15881), + [21174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11884), + [21176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15885), + [21178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11886), + [21180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11904), + [21182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13962), + [21184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11922), + [21186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13963), + [21188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11930), + [21190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13965), + [21192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15887), + [21194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11932), + [21196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15888), + [21198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11938), + [21200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15890), + [21202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11942), + [21204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11950), + [21206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11955), + [21208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13970), + [21210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11959), + [21212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13971), + [21214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11960), + [21216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13972), + [21218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15891), + [21220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11013), + [21222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15892), + [21224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11014), + [21226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11022), + [21228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11024), + [21230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11026), + [21232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13975), + [21234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15893), + [21236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11032), + [21238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11038), + [21240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [21242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [21244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [21246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [21248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14122), + [21250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [21252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11477), + [21254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14023), + [21256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11011), + [21258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14024), + [21260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), + [21262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14026), + [21264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [21266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15662), + [21268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11488), + [21270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15664), + [21272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11490), + [21274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15666), + [21276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11494), + [21278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [21280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15912), + [21282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11111), + [21284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [21286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11127), + [21288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13998), + [21290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [21292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14075), + [21294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15917), + [21296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11131), + [21298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15921), + [21300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11132), + [21302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11141), + [21304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14005), + [21306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11142), + [21308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14006), + [21310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), + [21312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14008), + [21314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15923), + [21316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11145), + [21318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15924), + [21320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11147), + [21322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15926), + [21324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11150), + [21326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), + [21328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11157), + [21330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14013), + [21332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11159), + [21334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14014), + [21336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11160), + [21338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14015), + [21340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15927), + [21342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11163), + [21344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15928), + [21346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11164), + [21348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), + [21350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11176), + [21352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11178), + [21354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14018), + [21356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15929), + [21358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11184), + [21360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11191), + [21362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [21364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [21366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [21368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14160), + [21370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11512), + [21372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11529), + [21374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14060), + [21376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11563), + [21378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [21380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14061), + [21382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11564), + [21384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14062), + [21386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15947), + [21388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11232), + [21390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [21392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11233), + [21394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14035), + [21396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15952), + [21398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11237), + [21400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15956), + [21402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11238), + [21404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11243), + [21406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14042), + [21408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11244), + [21410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14043), + [21412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11245), + [21414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14045), + [21416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15958), + [21418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11247), + [21420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15959), + [21422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), + [21424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15961), + [21426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), + [21428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11255), + [21430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), + [21432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14050), + [21434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11259), + [21436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14051), + [21438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), + [21440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14052), + [21442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15962), + [21444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), + [21446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15963), + [21448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11264), + [21450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), + [21452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11273), + [21454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11275), + [21456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14055), + [21458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15964), + [21460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11281), + [21462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11287), + [21464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15667), + [21466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11567), + [21468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15669), + [21470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11568), + [21472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [21474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [21476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11578), + [21478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11580), + [21480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11582), + [21482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14066), + [21484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15671), + [21486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11588), + [21488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [21490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11598), + [21492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [21494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [21496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [21498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [21500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [21502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [21504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [21506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14491), + [21508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [21510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14098), + [21512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [21514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14107), + [21516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [21518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [21520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [21522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), + [21524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [21526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14289), + [21528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [21530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [21532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [21534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14352), + [21536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [21538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14143), + [21540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [21542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [21544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14144), + [21546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [21548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [21550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [21552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14367), + [21554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [21556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), + [21558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [21560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [21562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11462), + [21564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [21566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16049), + [21568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11390), + [21570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [21572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [21574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14131), + [21576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11474), + [21578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14395), + [21580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [21582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [21584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14132), + [21586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [21588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [21590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [21592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11497), + [21594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14473), + [21596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [21598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11510), + [21600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14568), + [21602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [21604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [21606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14129), + [21608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9403), + [21610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [21612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14136), + [21614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [21616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [21618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), + [21620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [21622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15400), + [21624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), + [21626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15402), + [21628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11647), + [21630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [21632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14150), + [21634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [21636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [21638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [21640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14156), + [21642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [21644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [21646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14189), + [21648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [21650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14167), + [21652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [21654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [21656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14172), + [21658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [21660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [21662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14194), + [21664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [21666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [21668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [21670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [21672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14260), + [21674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [21676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14263), + [21678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), + [21680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [21682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14769), + [21684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [21686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [21688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [21690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [21692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14468), + [21694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [21696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14770), + [21698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [21700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14170), + [21702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [21704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [21706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), + [21708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14175), + [21710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [21712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [21714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [21716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14469), + [21718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [21720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [21722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [21724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [21726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14670), + [21728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [21730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14671), + [21732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [21734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), + [21736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14226), + [21738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [21740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [21742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14214), + [21744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [21746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [21748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14215), + [21750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [21752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), + [21754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 41), + [21756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [21758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), + [21760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14199), + [21762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [21764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [21766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14190), + [21768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10846), + [21770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14168), + [21772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [21774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14191), + [21776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [21778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [21780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [21782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [21784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [21786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [21788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [21790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [21792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [21794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [21796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [21798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [21800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [21802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [21804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [21806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [21808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), + [21810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14264), + [21812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [21814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [21816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14271), + [21818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [21820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [21822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [21824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9406), + [21826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [21828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [21830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [21832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [21834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [21836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [21838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14258), + [21840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [21842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14259), + [21844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), + [21846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [21848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [21850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [21852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [21854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [21856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 3, 0, 0), + [21858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [21860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14779), + [21862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10847), + [21864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11380), + [21866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14114), + [21868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), + [21870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [21872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14235), + [21874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [21876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [21878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [21880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [21882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [21884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14256), + [21886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [21888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [21890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14257), + [21892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [21894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [21896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [21898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [21900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [21902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [21904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [21906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [21908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [21910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [21912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [21914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [21916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [21918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [21920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [21922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [21924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [21926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [21928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [21930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [21932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [21934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), + [21936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [21938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [21940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14267), + [21942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [21944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14274), + [21946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [21948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), + [21950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [21952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [21954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [21956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [21958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14354), + [21960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [21962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [21964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [21966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [21968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14355), + [21970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [21972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [21974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [21976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [21978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [21980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10625), + [21982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [21984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [21986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14123), + [21988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), + [21990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [21992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15131), + [21994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11756), + [21996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [21998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [22000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), + [22002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14487), + [22004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [22006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [22008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [22010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [22012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [22014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [22016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [22018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14126), + [22020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [22022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [22024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [22026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15520), + [22028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11123), + [22030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [22032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [22034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [22036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [22038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [22040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), + [22042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11208), + [22044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14309), + [22046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [22048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15525), + [22050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11213), + [22052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15529), + [22054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11214), + [22056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11241), + [22058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14316), + [22060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11253), + [22062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14317), + [22064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11299), + [22066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14319), + [22068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15531), + [22070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11303), + [22072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15532), + [22074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11305), + [22076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15534), + [22078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11309), + [22080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11316), + [22082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11319), + [22084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14324), + [22086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11321), + [22088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14325), + [22090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11322), + [22092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14326), + [22094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15535), + [22096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11325), + [22098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15536), + [22100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11326), + [22102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11334), + [22104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), + [22106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11338), + [22108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14329), + [22110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15537), + [22112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11344), + [22114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11351), + [22116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [22118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [22120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [22122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [22124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [22126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [22128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [22130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [22132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [22134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [22136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [22138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [22140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10519), + [22142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [22144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [22146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [22148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [22150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [22152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [22154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [22156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12584), + [22158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [22160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9053), + [22162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [22164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [22166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [22168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14402), + [22170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [22172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14403), + [22174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [22176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [22178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [22180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [22182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [22184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [22186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), + [22188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9613), + [22190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [22192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [22194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14082), + [22196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [22198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [22200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [22202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [22204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [22206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [22208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [22210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [22212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [22214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [22216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14083), + [22218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [22220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [22222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [22224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [22226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [22228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [22230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [22232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10523), + [22234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [22236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [22238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [22240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10561), + [22242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [22244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10646), + [22246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11726), + [22248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [22250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [22252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [22254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [22256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16021), + [22258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11717), + [22260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16013), + [22262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11777), + [22264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), + [22266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [22268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [22270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [22272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [22274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15148), + [22276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [22278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [22280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [22282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14915), + [22284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14914), + [22286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [22288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [22290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [22292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [22294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [22296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [22298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [22300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [22302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10318), + [22304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14441), + [22306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15920), + [22308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11722), + [22310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [22312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [22314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [22316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [22318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [22320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [22322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [22324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16079), + [22326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11396), + [22328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [22330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [22332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [22334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [22336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11801), + [22338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [22340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [22342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [22344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [22346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [22348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [22350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10278), + [22352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14470), + [22354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [22356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [22358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [22360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14475), + [22362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [22364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10831), + [22366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10484), + [22368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [22370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [22372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [22374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [22376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [22378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [22380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [22382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [22384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [22386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [22388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [22390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [22392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [22394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [22396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [22398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), + [22400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10364), + [22402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [22404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14712), + [22406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [22408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14713), + [22410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11731), + [22412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [22414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14507), + [22416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [22418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [22420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14508), + [22422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [22424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9644), + [22426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [22428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [22430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [22432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 67), + [22434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [22436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [22438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14086), + [22440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [22442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11373), + [22444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [22446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [22448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [22450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [22452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [22454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14142), + [22456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [22458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [22460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14089), + [22462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15691), + [22464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11466), + [22466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [22468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [22470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [22472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11481), + [22474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14506), + [22476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 68), + [22478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [22480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15696), + [22482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11485), + [22484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15700), + [22486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11486), + [22488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11500), + [22490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [22492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [22494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [22496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14538), + [22498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [22500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14539), + [22502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14518), + [22504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11501), + [22506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14519), + [22508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11502), + [22510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14523), + [22512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15702), + [22514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11504), + [22516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [22518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15703), + [22520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11506), + [22522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15705), + [22524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11509), + [22526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11514), + [22528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11516), + [22530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14531), + [22532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [22534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [22536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11518), + [22538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14534), + [22540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11519), + [22542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14535), + [22544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15706), + [22546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11522), + [22548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15707), + [22550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11523), + [22552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [22554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [22556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), + [22558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [22560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11534), + [22562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11536), + [22564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14543), + [22566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [22568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [22570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15708), + [22572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11542), + [22574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [22576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [22578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11548), + [22580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [22582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [22584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [22586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [22588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [22590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [22592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [22594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [22596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), + [22598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [22600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [22602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [22604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [22606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [22608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [22610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [22612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [22614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [22616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [22618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [22620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), + [22622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [22624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14164), + [22626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [22628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11736), + [22630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14434), + [22632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [22634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10475), + [22636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [22638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [22640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [22642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [22644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [22646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [22648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [22650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [22652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [22654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [22656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [22658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [22660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [22662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [22664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [22666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [22668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [22670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [22672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [22674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [22676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [22678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [22680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [22682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [22684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [22686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [22688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [22690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [22692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [22694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [22696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [22698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [22700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [22702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [22704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [22706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [22708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [22710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [22712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [22714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [22716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [22718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [22720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [22722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [22724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [22726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [22728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [22730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [22732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [22734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [22736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [22738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [22740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [22742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [22744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [22746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [22748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [22750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [22752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [22754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [22756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [22758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [22760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [22762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [22764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [22766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [22768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [22770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [22772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [22774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [22776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [22778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [22780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [22782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [22784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [22786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [22788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [22790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [22792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [22794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [22796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [22798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [22800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [22802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [22804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [22806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [22808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [22810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [22812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [22814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [22816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11375), + [22818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14105), + [22820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [22822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [22824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [22826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [22828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [22830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [22832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [22834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [22836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [22838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [22840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10953), + [22842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 98), + [22844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [22846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [22848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [22850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14484), + [22852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [22854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14065), + [22856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [22858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [22860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15756), + [22862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11633), + [22864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [22866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11639), + [22868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14688), + [22870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15761), + [22872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11643), + [22874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15765), + [22876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11644), + [22878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11653), + [22880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14695), + [22882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11654), + [22884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14696), + [22886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11655), + [22888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14698), + [22890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15767), + [22892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11657), + [22894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15768), + [22896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11659), + [22898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15770), + [22900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11662), + [22902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11667), + [22904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11669), + [22906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14703), + [22908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11671), + [22910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14704), + [22912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11672), + [22914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14705), + [22916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15771), + [22918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11675), + [22920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15772), + [22922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11676), + [22924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11684), + [22926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11686), + [22928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11688), + [22930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14708), + [22932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15773), + [22934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11694), + [22936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11701), + [22938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [22940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16016), + [22942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), + [22944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [22946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14092), + [22948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [22950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [22952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [22954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [22956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [22958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [22960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [22962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [22964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [22966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [22968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [22970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [22972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [22974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [22976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [22978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [22980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [22982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [22984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8988), + [22986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13978), + [22988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [22990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15804), + [22992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11781), + [22994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [22996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [22998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11794), + [23000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14741), + [23002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [23004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15809), + [23006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11798), + [23008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15813), + [23010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11799), + [23012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11810), + [23014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14748), + [23016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11811), + [23018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14749), + [23020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11812), + [23022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14752), + [23024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15815), + [23026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11814), + [23028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15816), + [23030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11816), + [23032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15818), + [23034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11819), + [23036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11825), + [23038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11827), + [23040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14757), + [23042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11829), + [23044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14758), + [23046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11830), + [23048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14759), + [23050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15819), + [23052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11833), + [23054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15820), + [23056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11834), + [23058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11842), + [23060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11844), + [23062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11846), + [23064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [23066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14763), + [23068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14765), + [23070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15821), + [23072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11852), + [23074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [23076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14771), + [23078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11858), + [23080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [23082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14773), + [23084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [23086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [23088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), + [23090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [23092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [23094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14796), + [23096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [23098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [23100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14797), + [23102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [23104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), + [23106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [23108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14099), + [23110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [23112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14833), + [23114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [23116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [23118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [23120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [23122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14565), + [23124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), + [23126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [23128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [23130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [23132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15840), + [23134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11949), + [23136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [23138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11962), + [23140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14802), + [23142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15496), + [23144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11413), + [23146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [23148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [23150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [23152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14831), + [23154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [23156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14832), + [23158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15845), + [23160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11547), + [23162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15849), + [23164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11419), + [23166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), + [23168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14809), + [23170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11560), + [23172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14810), + [23174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11575), + [23176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14812), + [23178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15851), + [23180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11871), + [23182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15852), + [23184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11876), + [23186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15854), + [23188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11894), + [23190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11050), + [23192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11074), + [23194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14819), + [23196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), + [23198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14820), + [23200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [23202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [23204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11080), + [23206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14821), + [23208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15855), + [23210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11086), + [23212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15856), + [23214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11087), + [23216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11136), + [23218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11152), + [23220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11171), + [23222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14829), + [23224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15857), + [23226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11227), + [23228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), + [23230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [23232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), + [23234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), + [23236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11357), + [23238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_record_literal_repeat1, 4, 0, 0), + [23240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [23242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [23244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [23246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), + [23248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11521), + [23250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11283), + [23252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11493), + [23254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11739), + [23256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11525), + [23258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), + [23260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [23262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [23264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [23266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [23268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [23270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [23272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [23274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [23276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [23278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [23280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11767), + [23282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [23284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [23286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [23288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [23290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11290), + [23292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [23294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [23296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14298), + [23298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15512), + [23300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14307), + [23302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15517), + [23304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14308), + [23306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15521), + [23308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), + [23310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14313), + [23312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15526), + [23314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14314), + [23316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15527), + [23318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11537), + [23320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11041), + [23322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14323), + [23324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15533), + [23326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11048), + [23328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11541), + [23330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14421), + [23332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15999), + [23334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11544), + [23336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11570), + [23338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11307), + [23340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11550), + [23342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11551), + [23344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15101), + [23346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15861), + [23348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11661), + [23350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [23352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [23354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14400), + [23356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15905), + [23358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15865), + [23360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [23362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [23364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11566), + [23366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [23368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [23370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11674), + [23372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11012), + [23374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11324), + [23376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11678), + [23378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11162), + [23380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11940), + [23382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11559), + [23384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [23386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [23388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11689), + [23390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), + [23392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11328), + [23394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11696), + [23396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11703), + [23398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11704), + [23400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11711), + [23402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), + [23404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [23406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [23408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [23410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), + [23412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11343), + [23414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11166), + [23416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [23418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [23420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11346), + [23422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14877), + [23424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14882), + [23426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15123), + [23428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11583), + [23430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11353), + [23432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11354), + [23434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [23436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [23438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [23440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), + [23442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [23444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [23446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [23448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [23450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [23452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14497), + [23454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15683), + [23456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14504), + [23458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15688), + [23460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14505), + [23462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15692), + [23464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [23466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [23468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14514), + [23470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15697), + [23472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14516), + [23474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15698), + [23476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11587), + [23478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [23480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14528), + [23482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15704), + [23484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [23486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [23488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [23490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [23492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [23494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11934), + [23496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15079), + [23498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [23500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [23502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [23504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [23506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16078), + [23508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12395), + [23510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11590), + [23512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [23514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8812), + [23516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11016), + [23518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [23520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [23522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11601), + [23524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [23526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [23528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [23530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [23532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11818), + [23534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14128), + [23536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16054), + [23538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14683), + [23540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15748), + [23542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14686), + [23544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15753), + [23546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14687), + [23548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15757), + [23550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11602), + [23552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [23554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [23556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14692), + [23558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15762), + [23560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14693), + [23562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15763), + [23564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [23566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [23568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14795), + [23570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15467), + [23572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14702), + [23574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15769), + [23576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11820), + [23578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [23580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [23582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11832), + [23584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14411), + [23586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [23588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [23590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11836), + [23592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14734), + [23594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15796), + [23596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14739), + [23598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15801), + [23600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14740), + [23602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15805), + [23604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13947), + [23606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15483), + [23608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14745), + [23610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15810), + [23612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14746), + [23614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15811), + [23616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13948), + [23618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15497), + [23620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11822), + [23622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11398), + [23624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [23626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [23628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11847), + [23630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14792), + [23632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15832), + [23634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14800), + [23636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15837), + [23638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14801), + [23640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15841), + [23642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14806), + [23644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15846), + [23646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14807), + [23648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15847), + [23650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11851), + [23652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11179), + [23654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14818), + [23656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15853), + [23658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11854), + [23660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13949), + [23662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15868), + [23664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13953), + [23666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15873), + [23668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13954), + [23670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15877), + [23672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13959), + [23674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15882), + [23676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13960), + [23678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15883), + [23680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13969), + [23682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15889), + [23684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [23686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [23688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [23690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16131), + [23692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13992), + [23694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15904), + [23696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13996), + [23698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15909), + [23700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13997), + [23702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15913), + [23704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [23706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14002), + [23708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15918), + [23710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14003), + [23712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15919), + [23714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11183), + [23716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14012), + [23718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15925), + [23720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11860), + [23722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11861), + [23724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14030), + [23726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15939), + [23728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14033), + [23730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15944), + [23732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14034), + [23734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15948), + [23736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14039), + [23738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15953), + [23740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14040), + [23742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15954), + [23744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [23746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [23748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14049), + [23750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15960), + [23752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15177), + [23754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11621), + [23756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [23758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [23760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11868), + [23762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13988), + [23764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15528), + [23766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [23768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [23770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [23772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [23774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13989), + [23776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15539), + [23778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [23780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [23782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [23784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11251), + [23786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14401), + [23788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15945), + [23790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11637), + [23792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14057), + [23794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15665), + [23796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [23798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [23800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [23802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [23804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [23806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [23808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), + [23810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [23812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11193), + [23814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [23816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [23818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [23820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [23822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [23824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [23826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [23828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [23830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11651), + [23832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10672), + [23834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11194), + [23836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11201), + [23838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11262), + [23840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11753), + [23842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [23844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [23846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [23848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [23850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), + [23852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [23854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [23856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [23858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [23860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11027), + [23862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11878), + [23864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [23866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [23868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11031), + [23870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [23872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [23874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), + [23876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11266), + [23878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [23880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [23882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [23884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [23886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [23888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [23890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11149), + [23892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11093), + [23894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [23896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [23898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15172), + [23900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11034), + [23902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11187), + [23904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), + [23906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [23908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [23910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11311), + [23912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), + [23914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11508), + [23916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11276), + [23918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [23920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [23922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), + [23924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [23926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [23928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11368), + [23930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11280), + [23932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14710), + [23934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15375), + [23936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14101), + [23938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15758), + [23940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14756), + [23942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15817), + [23944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13811), + [23946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13530), + [23948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12335), + [23950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 3, 0, 30), + [23952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12707), + [23954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13648), + [23956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13651), + [23958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13709), + [23960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12338), + [23962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13712), + [23964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12347), + [23966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14944), + [23968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12353), + [23970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12852), + [23972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12360), + [23974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12854), + [23976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13736), + [23978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12361), + [23980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13749), + [23982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12367), + [23984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12368), + [23986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), + [23988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12374), + [23990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13764), + [23992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13715), + [23994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12493), + [23996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12857), + [23998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13773), + [24000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16132), + [24002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12375), + [24004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12377), + [24006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12469), + [24008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12470), + [24010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [24012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12381), + [24014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13725), + [24016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12386), + [24018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12496), + [24020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [24022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13787), + [24024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12390), + [24026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13794), + [24028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12396), + [24030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13801), + [24032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12217), + [24034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12404), + [24036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12410), + [24038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13817), + [24040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12538), + [24042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13731), + [24044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12414), + [24046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12540), + [24048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15746), + [24050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 5, 0, 232), + [24052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), + [24054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13821), + [24056] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [24058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [24060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [24062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12424), + [24064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12431), + [24066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12435), + [24068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12572), + [24070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13835), + [24072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12436), + [24074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12578), + [24076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [24078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12438), + [24080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13847), + [24082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12442), + [24084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13849), + [24086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12446), + [24088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13861), + [24090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12450), + [24092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12606), + [24094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12454), + [24096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12610), + [24098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10841), + [24100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12459), + [24102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12612), + [24104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13876), + [24106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13738), + [24108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13891), + [24110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13904), + [24112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13905), + [24114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12620), + [24116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13912), + [24118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12629), + [24120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12477), + [24122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13924), + [24124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13743), + [24126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12489), + [24128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13474), + [24130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12492), + [24132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12640), + [24134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12497), + [24136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11968), + [24138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12644), + [24140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12510), + [24142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12646), + [24144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11970), + [24146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13354), + [24148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12649), + [24150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13745), + [24152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11973), + [24154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [24156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13829), + [24158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11977), + [24160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12655), + [24162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12658), + [24164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12258), + [24166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12669), + [24168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12670), + [24170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12672), + [24172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11981), + [24174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11982), + [24176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13833), + [24178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11985), + [24180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12676), + [24182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11988), + [24184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [24186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11989), + [24188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12686), + [24190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13756), + [24192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11991), + [24194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13757), + [24196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11992), + [24198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11995), + [24200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11996), + [24202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12688), + [24204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12693), + [24206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [24208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12697), + [24210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13364), + [24212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [24214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13767), + [24216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12701), + [24218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13770), + [24220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12703), + [24222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11998), + [24224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12340), + [24226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12004), + [24228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12706), + [24230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12712), + [24232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12713), + [24234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12717), + [24236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12718), + [24238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12721), + [24240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12722), + [24242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12724), + [24244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12005), + [24246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12731), + [24248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12734), + [24250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13845), + [24252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12737), + [24254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12008), + [24256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12741), + [24258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12744), + [24260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [24262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12387), + [24264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), + [24266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11965), + [24268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12010), + [24270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12013), + [24272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13780), + [24274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12750), + [24276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12755), + [24278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12760), + [24280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12015), + [24282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12763), + [24284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12769), + [24286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12777), + [24288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12778), + [24290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12018), + [24292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12021), + [24294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12024), + [24296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12027), + [24298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12028), + [24300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13798), + [24302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12742), + [24304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12780), + [24306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12781), + [24308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12783), + [24310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12786), + [24312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12031), + [24314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12789), + [24316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12792), + [24318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12793), + [24320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12032), + [24322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12796), + [24324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12798), + [24326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12800), + [24328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12805), + [24330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12809), + [24332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12812), + [24334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12813), + [24336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12815), + [24338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12817), + [24340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12819), + [24342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12822), + [24344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12825), + [24346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [24348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12828), + [24350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12034), + [24352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12833), + [24354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12836), + [24356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13814), + [24358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12838), + [24360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12840), + [24362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12035), + [24364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12037), + [24366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12847), + [24368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12664), + [24370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [24372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12040), + [24374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [24376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12043), + [24378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12046), + [24380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13827), + [24382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12047), + [24384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13111), + [24386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12050), + [24388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12052), + [24390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12054), + [24392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12059), + [24394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [24396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12062), + [24398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12065), + [24400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12066), + [24402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12068), + [24404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12070), + [24406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12072), + [24408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [24410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12075), + [24412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13367), + [24414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [24416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12078), + [24418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12081), + [24420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12086), + [24422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12089), + [24424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12091), + [24426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12093), + [24428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12100), + [24430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [24432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13114), + [24434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13882), + [24436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12363), + [24438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12525), + [24440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12862), + [24442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12865), + [24444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [24446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [24448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12129), + [24450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12130), + [24452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12563), + [24454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14127), + [24456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11969), + [24458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12871), + [24460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12383), + [24462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [24464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12872), + [24466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12874), + [24468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12159), + [24470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13382), + [24472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12565), + [24474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12878), + [24476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13164), + [24478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [24480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12636), + [24482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12641), + [24484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12885), + [24486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12567), + [24488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12887), + [24490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12890), + [24492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12682), + [24494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [24496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13327), + [24498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13914), + [24500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13928), + [24502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [24504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14973), + [24506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12894), + [24508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14988), + [24510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [24512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [24514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12539), + [24516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12898), + [24518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12899), + [24520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12550), + [24522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12902), + [24524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11984), + [24526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [24528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13392), + [24530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12907), + [24532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12351), + [24534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12912), + [24536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12914), + [24538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [24540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12580), + [24542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [24544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12916), + [24546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13407), + [24548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12919), + [24550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12920), + [24552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13411), + [24554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12922), + [24556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12501), + [24558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [24560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12933), + [24562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12934), + [24564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12589), + [24566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12938), + [24568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12555), + [24570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12940), + [24572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12943), + [24574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [24576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12945), + [24578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [24580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12950), + [24582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [24584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12895), + [24586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12955), + [24588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12911), + [24590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12963), + [24592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12966), + [24594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12968), + [24596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [24598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12972), + [24600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12973), + [24602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12976), + [24604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12267), + [24606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [24608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13558), + [24610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12859), + [24612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [24614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12000), + [24616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13580), + [24618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12977), + [24620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12985), + [24622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12988), + [24624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12861), + [24626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13781), + [24628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12991), + [24630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12102), + [24632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12508), + [24634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12104), + [24636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12007), + [24638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12995), + [24640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12117), + [24642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12996), + [24644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12132), + [24646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12581), + [24648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12014), + [24650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12931), + [24652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [24654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12144), + [24656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [24658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12661), + [24660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13002), + [24662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13007), + [24664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12148), + [24666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12150), + [24668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [24670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12019), + [24672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12983), + [24674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12984), + [24676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [24678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13828), + [24680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12153), + [24682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [24684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12949), + [24686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13421), + [24688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [24690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14838), + [24692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13990), + [24694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12161), + [24696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12164), + [24698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13010), + [24700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12170), + [24702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12171), + [24704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12173), + [24706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13491), + [24708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12475), + [24710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [24712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12177), + [24714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12044), + [24716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13012), + [24718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13018), + [24720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12184), + [24722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13021), + [24724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13140), + [24726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13056), + [24728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12186), + [24730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12189), + [24732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14874), + [24734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14315), + [24736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14884), + [24738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13058), + [24740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12193), + [24742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14888), + [24744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14322), + [24746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14056), + [24748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14896), + [24750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12197), + [24752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14908), + [24754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14910), + [24756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14328), + [24758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14913), + [24760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14917), + [24762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14919), + [24764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14922), + [24766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12198), + [24768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13093), + [24770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12201), + [24772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13099), + [24774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12205), + [24776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12206), + [24778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12208), + [24780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12209), + [24782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13117), + [24784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12212), + [24786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13119), + [24788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12213), + [24790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13121), + [24792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12215), + [24794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12049), + [24796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12221), + [24798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13129), + [24800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12222), + [24802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13139), + [24804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14873), + [24806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12225), + [24808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12105), + [24810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13146), + [24812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12227), + [24814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12230), + [24816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13150), + [24818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12234), + [24820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13152), + [24822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12237), + [24824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13155), + [24826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12240), + [24828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12244), + [24830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12247), + [24832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13160), + [24834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13163), + [24836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13169), + [24838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13170), + [24840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13172), + [24842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12248), + [24844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13176), + [24846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12251), + [24848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12252), + [24850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12256), + [24852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13183), + [24854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12257), + [24856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13185), + [24858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13188), + [24860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12259), + [24862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13192), + [24864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12262), + [24866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13196), + [24868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13197), + [24870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12266), + [24872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13200), + [24874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13204), + [24876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13205), + [24878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13207), + [24880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13208), + [24882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13211), + [24884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13212), + [24886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13214), + [24888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12271), + [24890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13220), + [24892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13221), + [24894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12272), + [24896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13224), + [24898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13027), + [24900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13226), + [24902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13229), + [24904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13231), + [24906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13234), + [24908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13237), + [24910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13240), + [24912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13243), + [24914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13244), + [24916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13247), + [24918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13248), + [24920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13250), + [24922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13251), + [24924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13253), + [24926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13256), + [24928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13259), + [24930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13262), + [24932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13263), + [24934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12275), + [24936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13266), + [24938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13268), + [24940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13270), + [24942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13275), + [24944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13278), + [24946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13281), + [24948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13282), + [24950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13284), + [24952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13286), + [24954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13288), + [24956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13291), + [24958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13294), + [24960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13297), + [24962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13302), + [24964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13305), + [24966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13307), + [24968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13309), + [24970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13316), + [24972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12277), + [24974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12280), + [24976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12286), + [24978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13331), + [24980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12290), + [24982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12295), + [24984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12296), + [24986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12299), + [24988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12301), + [24990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12304), + [24992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12307), + [24994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [24996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [24998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12310), + [25000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12313), + [25002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12319), + [25004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12322), + [25006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12324), + [25008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12326), + [25010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12333), + [25012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14916), + [25014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [25016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14936), + [25018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14064), + [25020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14949), + [25022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14955), + [25024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [25026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14965), + [25028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [25030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15037), + [25032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12344), + [25034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13028), + [25036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12345), + [25038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [25040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13400), + [25042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13401), + [25044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12607), + [25046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13036), + [25048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [25050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13038), + [25052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13040), + [25054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13043), + [25056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13048), + [25058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13418), + [25060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13051), + [25062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13066), + [25064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15108), + [25066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14517), + [25068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13070), + [25070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13072), + [25072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [25074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14836), + [25076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14527), + [25078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13074), + [25080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14840), + [25082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [25084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14863), + [25086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14868), + [25088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14540), + [25090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14871), + [25092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14875), + [25094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14876), + [25096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14892), + [25098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13086), + [25100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [25102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13024), + [25104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12011), + [25106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12111), + [25108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13454), + [25110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [25112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [25114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13838), + [25116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [25118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [25120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13031), + [25122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13481), + [25124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12112), + [25126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13487), + [25128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13862), + [25130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13053), + [25132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12115), + [25134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), + [25136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13541), + [25138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [25140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13511), + [25142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12123), + [25144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13513), + [25146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13090), + [25148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13515), + [25150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12106), + [25152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13866), + [25154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13104), + [25156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12113), + [25158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13334), + [25160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13523), + [25162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12134), + [25164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13532), + [25166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12638), + [25168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [25170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 6, 0, 268), + [25172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12141), + [25174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [25176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13118), + [25178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [25180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12149), + [25182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13335), + [25184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [25186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14878), + [25188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14694), + [25190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13539), + [25192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12146), + [25194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14886), + [25196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14701), + [25198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13125), + [25200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14889), + [25202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12152), + [25204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14894), + [25206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14895), + [25208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14707), + [25210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14897), + [25212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14899), + [25214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14900), + [25216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14901), + [25218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13543), + [25220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [25222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13127), + [25224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13545), + [25226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13723), + [25228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13548), + [25230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13372), + [25232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13132), + [25234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12158), + [25236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12157), + [25238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13910), + [25240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13553), + [25242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12172), + [25244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13556), + [25246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13560), + [25248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13561), + [25250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13563), + [25252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12665), + [25254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13143), + [25256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [25258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [25260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13148), + [25262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12522), + [25264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13567), + [25266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [25268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13159), + [25270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13161), + [25272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14960), + [25274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14747), + [25276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13167), + [25278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12174), + [25280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13177), + [25282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14975), + [25284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14755), + [25286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13765), + [25288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14979), + [25290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12179), + [25292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14994), + [25294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15000), + [25296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14762), + [25298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15004), + [25300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15026), + [25302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15027), + [25304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15039), + [25306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12185), + [25308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [25310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13574), + [25312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13338), + [25314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13921), + [25316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12690), + [25318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13190), + [25320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13576), + [25322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12187), + [25324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13193), + [25326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [25328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [25330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13579), + [25332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13201), + [25334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12191), + [25336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15084), + [25338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14808), + [25340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 99), + [25342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13583), + [25344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12855), + [25346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15094), + [25348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14817), + [25350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13216), + [25352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15097), + [25354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13587), + [25356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15103), + [25358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15104), + [25360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14824), + [25362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15106), + [25364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15113), + [25366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15115), + [25368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14989), + [25370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12192), + [25372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13588), + [25374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 4, 0, 198), + [25376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13591), + [25378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13595), + [25380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12714), + [25382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15173), + [25384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13596), + [25386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12556), + [25388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13227), + [25390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13598), + [25392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13599), + [25394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13750), + [25396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13230), + [25398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12200), + [25400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14891), + [25402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13961), + [25404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13602), + [25406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13257), + [25408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13603), + [25410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14887), + [25412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13968), + [25414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13319), + [25416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14952), + [25418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12860), + [25420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15082), + [25422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15086), + [25424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13974), + [25426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15102), + [25428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14835), + [25430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14864), + [25432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14866), + [25434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12896), + [25436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [25438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13320), + [25440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13348), + [25442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [25444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12738), + [25446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13122), + [25448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12269), + [25450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13605), + [25452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13322), + [25454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13323), + [25456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13329), + [25458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12600), + [25460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15096), + [25462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14004), + [25464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13330), + [25466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13611), + [25468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13612), + [25470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14890), + [25472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14011), + [25474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14903), + [25476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14911), + [25478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13337), + [25480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15001), + [25482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15024), + [25484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14017), + [25486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15058), + [25488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15060), + [25490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15071), + [25492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15073), + [25494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13615), + [25496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [25498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12202), + [25500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13617), + [25502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12756), + [25504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13439), + [25506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13620), + [25508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13351), + [25510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13440), + [25512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [25514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [25516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [25518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14429), + [25520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12623), + [25522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15048), + [25524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14041), + [25526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13352), + [25528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12041), + [25530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13622), + [25532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15075), + [25534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14048), + [25536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12214), + [25538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15090), + [25540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13625), + [25542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15110), + [25544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15116), + [25546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14054), + [25548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14837), + [25550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14842), + [25552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14853), + [25554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14860), + [25556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13445), + [25558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13628), + [25560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12767), + [25562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13631), + [25564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12773), + [25566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13359), + [25568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13634), + [25570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13635), + [25572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13638), + [25574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13639), + [25576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13641), + [25578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13642), + [25580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13644), + [25582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13647), + [25584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13446), + [25586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13650), + [25588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13653), + [25590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13654), + [25592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [25594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13657), + [25596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13659), + [25598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13661), + [25600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13666), + [25602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13088), + [25604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13669), + [25606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13672), + [25608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [25610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13673), + [25612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13675), + [25614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13677), + [25616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13679), + [25618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12162), + [25620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [25622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), + [25624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13682), + [25626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13685), + [25628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13688), + [25630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [25632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13693), + [25634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13696), + [25636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13698), + [25638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13700), + [25640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13707), + [25642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12936), + [25644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12369), + [25646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15069), + [25648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), + [25650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), + [25652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14839), + [25654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8992), + [25656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [25658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13362), + [25660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13369), + [25662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15053), + [25664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12357), + [25666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13467), + [25668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [25670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13371), + [25672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10381), + [25674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13375), + [25676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13810), + [25678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13178), + [25680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11997), + [25682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [25684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13470), + [25686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [25688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13830), + [25690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13381), + [25692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13089), + [25694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13386), + [25696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [25698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12593), + [25700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13389), + [25702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13391), + [25704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13397), + [25706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), + [25708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12427), + [25710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13881), + [25712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13399), + [25714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13885), + [25716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13403), + [25718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15076), + [25720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12429), + [25722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13476), + [25724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13929), + [25726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9703), + [25728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14284), + [25730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13405), + [25732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13112), + [25734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13410), + [25736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13133), + [25738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13417), + [25740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13423), + [25742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13427), + [25744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13428), + [25746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13547), + [25748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12228), + [25750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13643), + [25752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13433), + [25754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13783), + [25756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13447), + [25758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13137), + [25760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13450), + [25762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13459), + [25764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13462), + [25766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12727), + [25768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13469), + [25770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13067), + [25772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13475), + [25774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12615), + [25776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13873), + [25778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14849), + [25780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13424), + [25782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13479), + [25784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13482), + [25786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13485), + [25788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13501), + [25790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13600), + [25792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13490), + [25794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13718), + [25796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13503), + [25798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13913), + [25800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [25802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13493), + [25804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13498), + [25806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12587), + [25808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12621), + [25810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12679), + [25812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12723), + [25814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12879), + [25816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13512), + [25818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12921), + [25820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13518), + [25822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [25824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), + [25826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12992), + [25828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [25830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13520), + [25832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13011), + [25834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13059), + [25836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [25838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13107), + [25840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [25842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13153), + [25844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13156), + [25846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10483), + [25848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13173), + [25850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13194), + [25852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10489), + [25854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13215), + [25856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13339), + [25858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13522), + [25860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13534), + [25862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12231), + [25864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13340), + [25866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12178), + [25868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13376), + [25870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13419), + [25872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13540), + [25874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12238), + [25876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13572), + [25878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13585), + [25880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15842), + [25882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 13), + [25884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13618), + [25886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13526), + [25888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12210), + [25890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12626), + [25892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13711), + [25894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13746), + [25896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13768), + [25898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13776), + [25900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13796), + [25902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12264), + [25904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13812), + [25906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13832), + [25908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13837), + [25910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13863), + [25912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13871), + [25914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13875), + [25916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12308), + [25918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13893), + [25920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11966), + [25922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11976), + [25924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [25926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [25928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [25930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [25932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [25934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [25936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [25938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [25940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [25942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13452), }; #ifdef __cplusplus diff --git a/tree-sitter-brolang/test/corpus/catch.txt b/tree-sitter-brolang/test/corpus/catch.txt new file mode 100644 index 0000000..61aee05 --- /dev/null +++ b/tree-sitter-brolang/test/corpus/catch.txt @@ -0,0 +1,110 @@ +================== +Catch value sources +================== + +recover func() void { + a :: fail() catch |err| handle(err) + b :: fail() catch |err| match err { + .bad: 1 + else: 2 + } + c :: fail() catch { yield 3 } + d :: fail() catch if true { yield 4 } else { yield 5 } +} + +--- + +(source_file + (function_declaration + (identifier) + (parameter_list) + (type + (builtin_type)) + (block + (statement + (constant_declaration + (identifier) + (expression + (catch_expression + (expression + (call_expression + (expression + (identifier)) + (argument_list))) + (error_capture + (identifier)) + (expression + (call_expression + (expression + (identifier)) + (argument_list + (expression + (identifier))))))))) + (statement + (constant_declaration + (identifier) + (expression + (catch_expression + (expression + (call_expression + (expression + (identifier)) + (argument_list))) + (error_capture + (identifier)) + (match_statement + (expression + (identifier)) + (match_arm + (expression + (enum_literal + (identifier))) + (statement + (expression_statement + (expression + (integer))))) + (match_arm + (statement + (expression_statement + (expression + (integer)))))))))) + (statement + (constant_declaration + (identifier) + (expression + (catch_expression + (expression + (call_expression + (expression + (identifier)) + (argument_list))) + (block + (statement + (yield_statement + (expression + (integer))))))))) + (statement + (constant_declaration + (identifier) + (expression + (catch_expression + (expression + (call_expression + (expression + (identifier)) + (argument_list))) + (if_statement + (expression + (boolean)) + (statement + (block + (statement + (yield_statement + (expression + (integer)))))) + (statement + (block + (statement + (yield_statement + (expression + (integer))))))))))))))